From 8ebb1a8e6985bd8716d561762d70bb522a0a644e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=CC=88rg=20Prante?= Date: Thu, 8 Apr 2021 22:36:40 +0200 Subject: [PATCH] working on more data structures --- LICENSE.txt | 202 + build.gradle | 1 + datastructures-bytes/build.gradle | 6 + .../chronicle/bytes/AbstractBytes.java | 1056 + .../chronicle/bytes/AbstractBytesStore.java | 72 + .../chronicle/bytes/AppendableUtil.java | 332 + ...aryBytesMethodWriterInvocationHandler.java | 55 + .../chronicle/bytes/BinaryWireCode.java | 126 + .../chronicle/bytes/ByteStringAppender.java | 308 + .../chronicle/bytes/ByteStringParser.java | 252 + .../chronicle/bytes/ByteStringReader.java | 66 + .../chronicle/bytes/ByteStringWriter.java | 94 + .../net/openhft/chronicle/bytes/Byteable.java | 52 + .../net/openhft/chronicle/bytes/Bytes.java | 944 + .../openhft/chronicle/bytes/BytesComment.java | 51 + .../chronicle/bytes/BytesConsumer.java | 36 + .../openhft/chronicle/bytes/BytesContext.java | 42 + .../net/openhft/chronicle/bytes/BytesIn.java | 76 + .../chronicle/bytes/BytesInternal.java | 2702 + .../chronicle/bytes/BytesMarshallable.java | 48 + .../chronicle/bytes/BytesMarshaller.java | 759 + .../chronicle/bytes/BytesMethodReader.java | 94 + .../bytes/BytesMethodReaderBuilder.java | 72 + .../BytesMethodWriterInvocationHandler.java | 27 + .../net/openhft/chronicle/bytes/BytesOut.java | 96 + .../chronicle/bytes/BytesParselet.java | 24 + .../chronicle/bytes/BytesPrepender.java | 109 + .../chronicle/bytes/BytesRingBuffer.java | 115 + .../chronicle/bytes/BytesRingBufferStats.java | 44 + .../openhft/chronicle/bytes/BytesStore.java | 570 + .../bytes/BytesTextMethodTester.java | 115 + .../openhft/chronicle/bytes/BytesUtil.java | 331 + .../chronicle/bytes/CommonMarshallable.java | 30 + .../bytes/ConnectionDroppedException.java | 39 + .../chronicle/bytes/DynamicallySized.java | 25 + .../chronicle/bytes/GuardedNativeBytes.java | 179 + .../chronicle/bytes/HeapBytesStore.java | 402 + .../openhft/chronicle/bytes/HexDumpBytes.java | 1543 + .../openhft/chronicle/bytes/Invocation.java | 9 + .../openhft/chronicle/bytes/MappedBytes.java | 1056 + .../chronicle/bytes/MappedBytesStore.java | 115 + .../bytes/MappedBytesStoreFactory.java | 28 + .../openhft/chronicle/bytes/MappedFile.java | 541 + .../bytes/MappedUniqueMicroTimeProvider.java | 99 + .../bytes/MappedUniqueTimeProvider.java | 104 + .../chronicle/bytes/MethodEncoder.java | 28 + .../chronicle/bytes/MethodEncoderLookup.java | 61 + .../net/openhft/chronicle/bytes/MethodId.java | 27 + .../openhft/chronicle/bytes/MethodReader.java | 53 + .../chronicle/bytes/MethodReaderBuilder.java | 33 + .../bytes/MethodReaderInterceptor.java | 30 + .../bytes/MethodReaderInterceptorReturns.java | 26 + .../chronicle/bytes/MethodWriterBuilder.java | 48 + .../bytes/MethodWriterInterceptor.java | 55 + .../bytes/MethodWriterInterceptorReturns.java | 60 + .../bytes/MethodWriterInvocationHandler.java | 42 + .../chronicle/bytes/MethodWriterListener.java | 29 + .../bytes/MultiReaderBytesRingBuffer.java | 37 + .../openhft/chronicle/bytes/NativeBytes.java | 409 + .../chronicle/bytes/NativeBytesStore.java | 852 + .../chronicle/bytes/NewChunkListener.java | 24 + .../openhft/chronicle/bytes/NoBytesStore.java | 338 + .../openhft/chronicle/bytes/OffsetFormat.java | 24 + .../openhft/chronicle/bytes/OnHeapBytes.java | 103 + .../chronicle/bytes/PointerBytesStore.java | 55 + .../openhft/chronicle/bytes/RandomCommon.java | 207 + .../chronicle/bytes/RandomDataInput.java | 578 + .../chronicle/bytes/RandomDataOutput.java | 351 + .../bytes/ReadBytesMarshallable.java | 37 + .../bytes/ReadOnlyMappedBytesStore.java | 183 + .../chronicle/bytes/ReleasedBytesStore.java | 319 + .../chronicle/bytes/RingBufferReader.java | 69 + .../bytes/RingBufferReaderStats.java | 27 + .../chronicle/bytes/StopCharTester.java | 42 + .../chronicle/bytes/StopCharTesters.java | 107 + .../chronicle/bytes/StopCharsTester.java | 43 + .../chronicle/bytes/StreamingCommon.java | 32 + .../chronicle/bytes/StreamingDataInput.java | 438 + .../chronicle/bytes/StreamingDataOutput.java | 562 + .../chronicle/bytes/StreamingInputStream.java | 70 + .../bytes/StreamingOutputStream.java | 64 + .../net/openhft/chronicle/bytes/SubBytes.java | 58 + .../bytes/UTFDataFormatRuntimeException.java | 31 + .../chronicle/bytes/UncheckedBytes.java | 294 + .../chronicle/bytes/UncheckedNativeBytes.java | 930 + .../chronicle/bytes/UpdateInterceptor.java | 18 + .../openhft/chronicle/bytes/VanillaBytes.java | 597 + .../bytes/WriteBytesMarshallable.java | 36 + .../chronicle/bytes/algo/BytesStoreHash.java | 54 + .../bytes/algo/OptimisedBytesStoreHash.java | 274 + .../bytes/algo/VanillaBytesStoreHash.java | 116 + .../openhft/chronicle/bytes/algo/XxHash.java | 161 + .../bytes/internal/package-info.java | 16 + .../chronicle/bytes/pool/BytesPool.java | 48 + .../bytes/ref/AbstractReference.java | 93 + .../bytes/ref/BinaryBooleanReference.java | 51 + .../bytes/ref/BinaryIntArrayReference.java | 282 + .../bytes/ref/BinaryIntReference.java | 101 + .../bytes/ref/BinaryLongArrayReference.java | 282 + .../bytes/ref/BinaryLongReference.java | 136 + .../bytes/ref/BinaryTwoLongReference.java | 113 + .../bytes/ref/ByteableIntArrayValues.java | 31 + .../bytes/ref/ByteableLongArrayValues.java | 31 + .../chronicle/bytes/ref/LongReference.java | 26 + .../bytes/ref/TextBooleanReference.java | 61 + .../bytes/ref/TextIntArrayReference.java | 239 + .../chronicle/bytes/ref/TextIntReference.java | 167 + .../bytes/ref/TextLongArrayReference.java | 239 + .../bytes/ref/TextLongReference.java | 167 + .../chronicle/bytes/ref/TwoLongReference.java | 26 + .../bytes/ref/UncheckedLongReference.java | 124 + .../bytes/util/AbstractInterner.java | 121 + .../chronicle/bytes/util/BigCopyMain.java | 53 + .../bytes/util/Bit8StringInterner.java | 42 + .../chronicle/bytes/util/Compression.java | 153 + .../chronicle/bytes/util/Compressions.java | 107 + .../DecoratedBufferOverflowException.java | 33 + .../DecoratedBufferUnderflowException.java | 33 + .../bytes/util/EscapingStopCharTester.java | 45 + .../bytes/util/EscapingStopCharsTester.java | 43 + .../bytes/util/PropertyReplacer.java | 102 + .../bytes/util/StringInternerBytes.java | 72 + .../bytes/util/UTF8StringInterner.java | 43 + .../chronicle/bytes/AllocationRatesTest.java | 89 + .../openhft/chronicle/bytes/Allocator.java | 102 + .../chronicle/bytes/AppendableUtilTest.java | 50 + .../chronicle/bytes/ByteCheckSumTest.java | 31 + .../chronicle/bytes/ByteStoreTest.java | 668 + .../bytes/ByteStringAppenderTest.java | 256 + .../chronicle/bytes/ByteStringParserTest.java | 245 + .../openhft/chronicle/bytes/Bytes2Test.java | 138 + .../chronicle/bytes/BytesInternalTest.java | 455 + .../bytes/BytesMarshallableTest.java | 567 + .../bytes/BytesMethodWriterBuilderTest.java | 137 + .../chronicle/bytes/BytesStoreTest.java | 20 + .../openhft/chronicle/bytes/BytesTest.java | 802 + .../chronicle/bytes/BytesTestCommon.java | 19 + .../bytes/BytesTextMethodTesterTest.java | 50 + .../chronicle/bytes/BytesUtilTest.java | 87 + .../chronicle/bytes/CipherPerfMain.java | 16 + .../bytes/CommonMarshallableTest.java | 14 + .../bytes/ConcurrentRafAccessTest.java | 168 + .../chronicle/bytes/CopyBytesTest.java | 81 + .../chronicle/bytes/HeapByteStoreTest.java | 50 + .../chronicle/bytes/HexDumpBytesTest.java | 25 + .../openhft/chronicle/bytes/IBytesMethod.java | 12 + .../openhft/chronicle/bytes/Issue128Test.java | 53 + .../openhft/chronicle/bytes/Issue85Test.java | 117 + .../chronicle/bytes/MappedBytesTest.java | 455 + .../bytes/MappedFileMultiThreadTest.java | 114 + .../chronicle/bytes/MappedFileTest.java | 225 + .../chronicle/bytes/MappedMemoryTest.java | 174 + .../MappedUniqueMicroTimeProviderTest.java | 35 + .../bytes/MappedUniqueTimeProviderTest.java | 72 + .../chronicle/bytes/MoreBytesTest.java | 325 + .../openhft/chronicle/bytes/MyByteable.java | 43 + .../net/openhft/chronicle/bytes/MyBytes.java | 32 + .../net/openhft/chronicle/bytes/MyNested.java | 25 + .../openhft/chronicle/bytes/MyScalars.java | 51 + .../bytes/NativeBytesOverflowTest.java | 57 + .../chronicle/bytes/NativeBytesStoreTest.java | 276 + .../chronicle/bytes/NativeBytesTest.java | 159 + .../bytes/PointerBytesStoreTest.java | 49 + .../openhft/chronicle/bytes/PrewriteTest.java | 44 + .../chronicle/bytes/PrintVdsoMain.java | 53 + .../chronicle/bytes/ReadLenientTest.java | 46 + .../bytes/ReadWriteMarshallableTest.java | 72 + .../bytes/ReleasedBytesStoreTest.java | 25 + .../chronicle/bytes/StopBitDecimalTest.java | 36 + .../bytes/StreamingDataInputTest.java | 18 + .../bytes/StreamingInputStreamTest.java | 84 + .../chronicle/bytes/UTF8BytesTest.java | 26 + .../chronicle/bytes/UnsafeRWObjectTest.java | 101 + .../chronicle/bytes/UnsafeTextBytesTest.java | 95 + .../chronicle/bytes/VanillaBytesTest.java | 47 + .../chronicle/bytes/WriteLimitTest.java | 78 + .../algo/OptimisedBytesStoreHashTest.java | 221 + .../bytes/jitter/MemoryMessager.java | 85 + .../bytes/jitter/MemoryReadJitterMain.java | 126 + .../bytes/jitter/MemoryWriteJitterMain.java | 113 + .../chronicle/bytes/readme/CASTest.java | 56 + .../chronicle/bytes/readme/PrimitiveTest.java | 310 + .../chronicle/bytes/readme/StopBitTest.java | 76 + .../chronicle/bytes/readme/StringsTest.java | 68 + .../ref/BinaryIntArrayReferenceTest.java | 98 + .../bytes/ref/BinaryIntReferenceTest.java | 57 + .../ref/BinaryLongArrayReferenceTest.java | 100 + .../bytes/ref/BinaryLongReferenceTest.java | 57 + .../bytes/ref/BinaryTwoLongReferenceTest.java | 63 + .../bytes/ref/BooleanReferenceTest.java | 68 + .../bytes/ref/ByteableReferenceTest.java | 76 + .../bytes/ref/TextIntArrayReferenceTest.java | 52 + .../bytes/ref/TextIntReferenceTest.java | 55 + .../bytes/ref/TextLongArrayReferenceTest.java | 53 + .../bytes/ref/TextLongReferenceTest.java | 57 + .../bytes/ref/UncheckedLongReferenceTest.java | 57 + .../chronicle/bytes/util/GzipTest.java | 95 + .../openhft/chronicle/bytes/util/LZWTest.java | 92 + .../bytes/util/PropertyReplacerTest.java | 83 + .../bytes/util/StringInternerBytesTest.java | 41 + .../bytes/util/ThreadIndexAssignerTest.java | 102 + .../src/test/resources/btmtt/prim-input.txt | 59 + .../src/test/resources/btmtt/prim-output.txt | 59 + .../src/test/resources/file-to-find.txt | 1 + datastructures-charset/NOTICE.txt | 34 + datastructures-charset/build.gradle | 3 + .../charset/AirwideIA5Charset.java | 62 + .../datastructures/charset/BaseCharset.java | 34 + .../datastructures/charset/CharArrayUtil.java | 4 + .../xbib/datastructures/charset/Charset.java | 57 + .../datastructures/charset/CharsetUtil.java | 160 + .../datastructures/charset/GSMBitPacker.java | 197 + .../datastructures/charset/GSMCharset.java | 219 + .../charset/ISO885915Charset.java | 31 + .../charset/ISO88591Charset.java | 30 + .../datastructures/charset/JavaCharset.java | 50 + .../charset/MobileTextUtil.java | 116 + .../charset/ModifiedUTF8Charset.java | 285 + .../charset/PackedGSMCharset.java | 23 + .../charset/TMobileNlGSMCharset.java | 146 + .../datastructures/charset/UCS2Charset.java | 33 + .../datastructures/charset/UCS2LECharset.java | 38 + .../datastructures/charset/UTF8Charset.java | 39 + .../charset/VFD2GSMCharset.java | 64 + .../charset/VFTRGSMCharset.java | 79 + .../charset/CharsetUtilTest.java | 463 + .../charset/GSMBitPackerTest.java | 87 + .../charset/GSMCharsetTest.java | 52 + .../charset/MobileTextUtilTest.java | 75 + .../charset/ModifiedUTF8CharsetTest.java | 115 + .../charset/TMobileNlGSMCharsetTest.java | 83 + .../charset/UTF8CharsetTest.java | 26 + .../charset/demo/BenchmarkMain.java | 27 + .../charset/demo/Charset2Main.java | 28 + .../charset/demo/Charset3Main.java | 28 + .../charset/demo/Charset4Main.java | 24 + .../charset/demo/Charset5Main.java | 20 + .../charset/demo/Charset6Main.java | 22 + .../charset/demo/CharsetMain.java | 36 + .../charset/demo/GSMBenchmarkMain.java | 39 + .../charset/demo/PrintGSMMain.java | 24 + .../charset/demo/UTF8BenchmarkMain.java | 200 + .../xbib/datastructures/charset/util/Hex.java | 28 + datastructures-common/build.gradle | 8 + .../common/jmh/StructuresBenchmark.java | 102 + .../common/CompactCharSequence.java | 43 + .../common/FastBufferedWriter.java | 65 + .../common/FastByteArrayOutputStream.java | 174 + .../datastructures/common/InputReader.java | 515 + .../datastructures/common/StrictArrayMap.java | 206 + .../datastructures/common/StrictArraySet.java | 44 + .../xbib/datastructures/common/Utf8Util.java | 99 + .../common/StrictArrayMapTest.java | 32 + .../common/StrictArraySetTest.java | 31 + .../src/main/java/module-info.java | 3 + .../xbib/datastructures/csv/Constants.java | 13 + .../xbib/datastructures/csv/Generator.java | 95 + .../org/xbib/datastructures/csv/Lexer.java | 254 + .../datastructures/csv/LookAheadReader.java | 87 + .../org/xbib/datastructures/csv/Parser.java | 112 + .../org/xbib/datastructures/csv/Token.java | 17 + .../xbib/datastructures/csv/TokenType.java | 9 + .../csv/test/GeneratorTest.java | 25 + .../datastructures/csv/test/ParserTest.java | 85 + .../datastructures/csv/test/2076831-X-web.txt | 615 + .../org/xbib/datastructures/csv/test/test.csv | 2 + .../datastructures/csv/test/titleFile.csv | 44447 ++++++++++++++++ datastructures-io/build.gradle | 0 .../datastructures/io/jmh/StreamTest.java | 80 + .../datastructures/io/jmh/StringTest.java | 95 + .../src/jmh/resources/periouni.mrc | 1 + .../io/BufferedSeparatorInputStream.java | 189 + .../xbib/datastructures/io/ByteOutput.java | 14 + .../datastructures/io/BytesStreamOutput.java | 136 + .../io/FilteredSeparatorInputStream.java | 115 + .../xbib/datastructures/io/Information.java | 24 + .../io/InformationSeparator.java | 32 + .../io/InfostreamGenerator.java | 222 + .../datastructures/io/InfostreamParser.java | 31 + .../org/xbib/datastructures/io/Types.java | 29 + .../BufferedSeparatorInputStreamTest.java | 171 + .../io/test/InfostreamGeneratorTest.java | 110 + .../src/test/resources/periouni.mrc | 1 + .../src/test/resources/sequential.groupstream | 10 + .../src/test/resources/summerland.mrc | 1 + datastructures-json-boon/NOTICE.txt | 5 + .../src/main/java/org/boon/Boon.java | 1579 + .../src/main/java/org/boon/Classpaths.java | 254 + .../src/main/java/org/boon/Entry.java | 16 + .../src/main/java/org/boon/Exceptions.java | 504 + .../src/main/java/org/boon/Functional.java | 180 + .../src/main/java/org/boon/HTTP.java | 639 + .../src/main/java/org/boon/IO.java | 1357 + .../src/main/java/org/boon/Lists.java | 929 + .../src/main/java/org/boon/Logger.java | 226 + .../src/main/java/org/boon/MBeans.java | 244 + .../src/main/java/org/boon/Maps.java | 1736 + .../src/main/java/org/boon/Ok.java | 149 + .../src/main/java/org/boon/Pair.java | 136 + .../src/main/java/org/boon/Runner.java | 600 + .../src/main/java/org/boon/Sets.java | 451 + .../src/main/java/org/boon/Str.java | 1054 + .../src/main/java/org/boon/StringScanner.java | 316 + .../src/main/java/org/boon/Terminal.java | 54 + .../src/main/java/org/boon/Universal.java | 38 + .../java/org/boon/UniversalOperations.java | 567 + .../src/main/java/org/boon/cache/Cache.java | 58 + .../main/java/org/boon/cache/CacheEntry.java | 232 + .../main/java/org/boon/cache/CacheType.java | 36 + .../org/boon/cache/ConcurrentLruCache.java | 165 + .../FastConcurrentReadLruLfuFifoCache.java | 250 + .../cache/FastReaderSingleThreadedCache.java | 96 + .../main/java/org/boon/cache/SimpleCache.java | 118 + .../org/boon/cache/SimpleConcurrentCache.java | 389 + .../main/java/org/boon/cache/Tradeoffs.java | 37 + .../boon/collections/CollectionConstants.java | 138 + .../boon/collections/ConcurrentHashSet.java | 127 + .../collections/ConcurrentLinkedHashSet.java | 121 + .../collections/ConcurrentWeakHashMap.java | 422 + .../java/org/boon/collections/DoubleList.java | 442 + .../org/boon/collections/FakeMapEntrySet.java | 36 + .../java/org/boon/collections/FloatList.java | 441 + .../java/org/boon/collections/IntList.java | 389 + .../java/org/boon/collections/LazyMap.java | 260 + .../java/org/boon/collections/LongList.java | 395 + .../java/org/boon/collections/MultiMap.java | 33 + .../org/boon/collections/MultiMapImpl.java | 388 + .../java/org/boon/collections/MultiMaps.java | 17 + .../collections/SortableConcurrentList.java | 323 + .../java/org/boon/concurrent/Counter.java | 95 + .../org/boon/concurrent/SimpleExecutors.java | 43 + .../main/java/org/boon/concurrent/Timer.java | 110 + .../java/org/boon/config/ContextConfig.java | 170 + .../org/boon/config/ContextConfigReader.java | 138 + .../org/boon/config/MetaConfigEvents.java | 37 + .../boon/config/NamespaceEventHandler.java | 160 + .../java/org/boon/core/AsyncFunction.java | 44 + .../main/java/org/boon/core/Conversions.java | 1638 + .../src/main/java/org/boon/core/Dates.java | 976 + .../src/main/java/org/boon/core/Fn.java | 35 + .../src/main/java/org/boon/core/Function.java | 44 + .../src/main/java/org/boon/core/Handler.java | 37 + .../boon/core/HandlerWithErrorHandling.java | 6 + .../src/main/java/org/boon/core/Handlers.java | 24 + .../main/java/org/boon/core/NameAware.java | 49 + .../main/java/org/boon/core/Predicate.java | 34 + .../src/main/java/org/boon/core/Reducer.java | 45 + .../src/main/java/org/boon/core/Supplier.java | 39 + .../src/main/java/org/boon/core/Sys.java | 809 + .../java/org/boon/core/SystemTimeKeeper.java | 75 + .../src/main/java/org/boon/core/Typ.java | 239 + .../src/main/java/org/boon/core/TypeType.java | 492 + .../src/main/java/org/boon/core/Value.java | 82 + .../org/boon/core/reflection/Annotated.java | 41 + .../boon/core/reflection/AnnotationData.java | 165 + .../org/boon/core/reflection/Annotations.java | 487 + .../org/boon/core/reflection/BaseAccess.java | 45 + .../org/boon/core/reflection/BeanUtils.java | 2023 + .../org/boon/core/reflection/ClassMeta.java | 556 + .../core/reflection/ConstructorAccess.java | 39 + .../boon/core/reflection/FastStringUtils.java | 216 + .../java/org/boon/core/reflection/Fields.java | 311 + .../org/boon/core/reflection/Invoker.java | 995 + .../core/reflection/MapObjectConversion.java | 323 + .../java/org/boon/core/reflection/Mapper.java | 34 + .../boon/core/reflection/MapperComplex.java | 1845 + .../boon/core/reflection/MapperSimple.java | 1689 + .../boon/core/reflection/MethodAccess.java | 86 + .../org/boon/core/reflection/Reflection.java | 799 + .../core/reflection/fields/BaseField.java | 844 + .../core/reflection/fields/FieldAccess.java | 124 + .../reflection/fields/FieldAccessMode.java | 76 + .../fields/FieldFieldsAccessor.java | 126 + .../reflection/fields/FieldsAccessor.java | 41 + .../fields/FieldsAccessorFieldThenProp.java | 121 + .../FieldsAccessorsPropertyThenField.java | 117 + .../boon/core/reflection/fields/MapField.java | 387 + .../core/reflection/fields/PropertyField.java | 290 + .../fields/PropertyFieldAccessor.java | 123 + .../core/reflection/fields/ReflectField.java | 285 + .../core/reflection/fields/UnsafeField.java | 626 + .../impl/ConstructorAccessImpl.java | 125 + .../reflection/impl/MethodAccessImpl.java | 584 + .../reflection/impl/OverloadedMethod.java | 582 + .../java/org/boon/core/timer/TimeKeeper.java | 35 + .../org/boon/core/timer/TimeKeeperBasic.java | 109 + .../boon/core/value/CharSequenceValue.java | 343 + .../org/boon/core/value/LazyValueMap.java | 276 + .../org/boon/core/value/MapItemValue.java | 102 + .../java/org/boon/core/value/NumberValue.java | 297 + .../org/boon/core/value/ValueContainer.java | 241 + .../java/org/boon/core/value/ValueList.java | 157 + .../java/org/boon/core/value/ValueMap.java | 48 + .../org/boon/core/value/ValueMapImpl.java | 153 + .../java/org/boon/criteria/Criterion.java | 1727 + .../org/boon/criteria/DoubleCollector.java | 92 + .../org/boon/criteria/FloatCollector.java | 90 + .../java/org/boon/criteria/IntCollector.java | 88 + .../java/org/boon/criteria/ObjectFilter.java | 1562 + .../org/boon/criteria/ProjectedSelector.java | 563 + .../main/java/org/boon/criteria/Selector.java | 490 + .../main/java/org/boon/criteria/Update.java | 153 + .../org/boon/criteria/internal/Criteria.java | 41 + .../org/boon/criteria/internal/Group.java | 149 + .../org/boon/criteria/internal/Grouping.java | 34 + .../java/org/boon/criteria/internal/Not.java | 45 + .../org/boon/criteria/internal/Operator.java | 63 + .../boon/criteria/internal/QueryFactory.java | 70 + .../org/boon/criteria/internal/Visitor.java | 38 + .../src/main/java/org/boon/datarepo/Bag.java | 54 + .../boon/datarepo/CollectionDecorator.java | 50 + .../java/org/boon/datarepo/Collections.java | 495 + .../org/boon/datarepo/DataRepoException.java | 55 + .../main/java/org/boon/datarepo/Filter.java | 44 + .../java/org/boon/datarepo/LookupIndex.java | 60 + .../java/org/boon/datarepo/ObjectEditor.java | 190 + .../main/java/org/boon/datarepo/PlanStep.java | 34 + .../java/org/boon/datarepo/PlanSteps.java | 34 + .../src/main/java/org/boon/datarepo/Repo.java | 68 + .../java/org/boon/datarepo/RepoBuilder.java | 122 + .../main/java/org/boon/datarepo/Repos.java | 71 + .../java/org/boon/datarepo/ResultSet.java | 130 + .../boon/datarepo/SearchableCollection.java | 131 + .../org/boon/datarepo/impl/FilterDefault.java | 432 + .../datarepo/impl/ObjectEditorDefault.java | 824 + .../datarepo/impl/RepoBuilderDefault.java | 1138 + .../org/boon/datarepo/impl/RepoDefault.java | 786 + .../org/boon/datarepo/impl/ResultSetImpl.java | 644 + .../impl/SearchableCollectionDefault.java | 729 + .../impl/decorators/FilterDecoratorBase.java | 55 + .../impl/decorators/FilterWithCache.java | 79 + .../decorators/FilterWithSimpleCache.java | 85 + .../ObjectEditorCloneDecorator.java | 76 + .../decorators/ObjectEditorDecoratorBase.java | 394 + .../ObjectEditorEventDecorator.java | 310 + .../ObjectEditorLogNullCheckDecorator.java | 454 + .../impl/indexes/BaseIndexWrapper.java | 210 + .../impl/indexes/LookupIndexDefault.java | 313 + .../datarepo/impl/indexes/MultiValue.java | 103 + .../impl/indexes/NestedKeySearchIndex.java | 74 + .../impl/indexes/SearchIndexDefault.java | 363 + .../impl/indexes/TypeHierarchyIndex.java | 75 + .../impl/indexes/UniqueLookupIndex.java | 182 + .../impl/indexes/UniqueSearchIndex.java | 229 + .../boon/datarepo/impl/maps/JavaUtilMap.java | 157 + .../impl/maps/JavaUtilNavigableMap.java | 163 + .../datarepo/impl/maps/MapCreatorImpl.java | 61 + .../modification/ModificationEvent.java | 259 + .../modification/ModificationListener.java | 36 + .../modification/ModificationType.java | 48 + .../org/boon/datarepo/spi/FilterComposer.java | 49 + .../org/boon/datarepo/spi/MapCreator.java | 42 + .../datarepo/spi/ObjectEditorComposer.java | 47 + .../org/boon/datarepo/spi/RepoComposer.java | 45 + .../boon/datarepo/spi/ResultSetInternal.java | 46 + .../org/boon/datarepo/spi/SPIFactory.java | 231 + .../org/boon/datarepo/spi/SearchIndex.java | 89 + .../spi/SearchableCollectionComposer.java | 50 + .../java/org/boon/datarepo/spi/TypedMap.java | 81 + .../src/main/java/org/boon/di/Context.java | 65 + .../src/main/java/org/boon/di/Creator.java | 59 + .../java/org/boon/di/DependencyInjection.java | 82 + .../src/main/java/org/boon/di/In.java | 53 + .../src/main/java/org/boon/di/Inject.java | 43 + .../src/main/java/org/boon/di/Module.java | 77 + .../src/main/java/org/boon/di/Named.java | 43 + .../main/java/org/boon/di/PostConstruct.java | 43 + .../main/java/org/boon/di/ProviderInfo.java | 168 + .../src/main/java/org/boon/di/Required.java | 43 + .../java/org/boon/di/impl/ContextImpl.java | 765 + .../java/org/boon/di/modules/BaseModule.java | 84 + .../org/boon/di/modules/InstanceModule.java | 289 + .../java/org/boon/di/modules/NamedUtils.java | 98 + .../org/boon/di/modules/SupplierModule.java | 370 + .../expression/BoonExpressionContext.java | 504 + .../boon/expression/ExpressionContext.java | 70 + .../boon/expression/StandardFunctions.java | 370 + .../org/boon/functions/PropertyNameUtils.java | 80 + .../main/java/org/boon/json/JsonCreator.java | 75 + .../java/org/boon/json/JsonException.java | 52 + .../main/java/org/boon/json/JsonFactory.java | 116 + .../java/org/boon/json/JsonMappingParser.java | 840 + .../main/java/org/boon/json/JsonParser.java | 44 + .../org/boon/json/JsonParserAndMapper.java | 184 + .../java/org/boon/json/JsonParserEvents.java | 56 + .../java/org/boon/json/JsonParserFactory.java | 355 + .../java/org/boon/json/JsonSerializer.java | 43 + .../org/boon/json/JsonSerializerFactory.java | 416 + .../main/java/org/boon/json/JsonSlurper.java | 212 + .../main/java/org/boon/json/ObjectMapper.java | 281 + .../boon/json/ObjectSerializationData.java | 47 + .../org/boon/json/annotations/Expose.java | 50 + .../org/boon/json/annotations/JsonIgnore.java | 46 + .../annotations/JsonIgnoreProperties.java | 41 + .../boon/json/annotations/JsonInclude.java | 46 + .../boon/json/annotations/JsonProperty.java | 40 + .../org/boon/json/annotations/JsonViews.java | 48 + .../boon/json/annotations/SerializedName.java | 41 + .../json/implementation/BaseJsonParser.java | 177 + .../BaseJsonParserAndMapper.java | 805 + .../json/implementation/JsonAsciiParser.java | 78 + .../JsonBaseByteArrayParser.java | 640 + .../json/implementation/JsonFastParser.java | 335 + .../implementation/JsonParserCharArray.java | 521 + .../json/implementation/JsonParserLax.java | 802 + .../JsonParserUsingCharacterSource.java | 448 + .../implementation/JsonStringDecoder.java | 69 + .../json/implementation/JsonUTF8Parser.java | 77 + .../json/implementation/ObjectMapperImpl.java | 325 + .../boon/json/implementation/PlistParser.java | 567 + .../json/serializers/ArraySerializer.java | 41 + .../serializers/CollectionSerializer.java | 42 + .../serializers/CustomFieldSerializer.java | 41 + .../serializers/CustomObjectSerializer.java | 42 + .../boon/json/serializers/DateSerializer.java | 43 + .../boon/json/serializers/FieldFilter.java | 38 + .../json/serializers/FieldSerializer.java | 42 + .../json/serializers/InstanceSerializer.java | 42 + .../serializers/JsonSerializerInternal.java | 72 + .../boon/json/serializers/MapSerializer.java | 41 + .../json/serializers/ObjectSerializer.java | 40 + .../json/serializers/StringSerializer.java | 41 + .../json/serializers/UnknownSerializer.java | 39 + .../impl/AbstractCustomFieldSerializer.java | 62 + .../impl/AbstractCustomObjectSerializer.java | 46 + .../impl/BasicObjectSerializerImpl.java | 186 + .../impl/CollectionSerializerImpl.java | 89 + .../impl/CustomObjectSerializerImpl.java | 167 + .../serializers/impl/DateSerializerImpl.java | 45 + .../serializers/impl/FieldSerializerImpl.java | 283 + .../FieldSerializerUseAnnotationsImpl.java | 417 + .../impl/InstanceSerializerImpl.java | 130 + .../serializers/impl/JsonDateSerializer.java | 65 + .../serializers/impl/JsonSerializerImpl.java | 259 + .../impl/JsonSimpleSerializerImpl.java | 821 + .../serializers/impl/MapSerializerImpl.java | 92 + .../impl/MapSerializerThatEncodesKeys.java | 66 + .../json/serializers/impl/SerializeUtils.java | 79 + .../impl/StringSerializerImpl.java | 64 + .../impl/UnknownSerializerImpl.java | 43 + .../org/boon/logging/ConfigurableLogger.java | 318 + .../java/org/boon/logging/HandlerNoOP.java | 40 + .../java/org/boon/logging/InMemoryLogger.java | 311 + .../logging/InMemoryThreadLocalLogger.java | 344 + .../main/java/org/boon/logging/JDKLogger.java | 284 + .../org/boon/logging/JDKLoggerFactory.java | 41 + .../main/java/org/boon/logging/LogLevel.java | 44 + .../main/java/org/boon/logging/LogRecord.java | 102 + .../java/org/boon/logging/LoggerDelegate.java | 100 + .../java/org/boon/logging/LoggerFactory.java | 35 + .../main/java/org/boon/logging/Logging.java | 204 + .../org/boon/logging/TeeLoggerWrapper.java | 264 + .../java/org/boon/logging/TerminalLogger.java | 311 + .../boon/messages/MessageSpecification.java | 267 + .../java/org/boon/messages/MessageUtils.java | 285 + .../boon/messages/ResourceBundleLocator.java | 35 + .../main/java/org/boon/primitive/Arry.java | 473 + .../src/main/java/org/boon/primitive/Byt.java | 879 + .../main/java/org/boon/primitive/ByteBuf.java | 749 + .../java/org/boon/primitive/ByteScanner.java | 1195 + .../primitive/CharArrayCharacterSource.java | 169 + .../main/java/org/boon/primitive/CharBuf.java | 1676 + .../java/org/boon/primitive/CharScanner.java | 1704 + .../org/boon/primitive/CharacterSource.java | 70 + .../src/main/java/org/boon/primitive/Chr.java | 1031 + .../src/main/java/org/boon/primitive/Dbl.java | 1182 + .../src/main/java/org/boon/primitive/Flt.java | 1253 + .../org/boon/primitive/IOInputStream.java | 260 + .../java/org/boon/primitive/IOReader.java | 208 + .../boon/primitive/InMemoryInputStream.java | 132 + .../org/boon/primitive/InMemoryReader.java | 147 + .../main/java/org/boon/primitive/Input.java | 121 + .../org/boon/primitive/InputByteArray.java | 419 + .../src/main/java/org/boon/primitive/Int.java | 1536 + .../src/main/java/org/boon/primitive/Lng.java | 1242 + .../main/java/org/boon/primitive/Output.java | 112 + .../boon/primitive/ReaderCharacterSource.java | 396 + .../main/java/org/boon/primitive/Shrt.java | 511 + .../main/java/org/boon/service/Request.java | 58 + .../main/java/org/boon/service/Response.java | 110 + .../src/main/java/org/boon/sort/Ordering.java | 398 + .../src/main/java/org/boon/sort/Sort.java | 375 + .../src/main/java/org/boon/sort/SortType.java | 34 + .../src/main/java/org/boon/sort/Sorting.java | 752 + .../java/org/boon/sort/SortingInternal.java | 106 + .../org/boon/sort/UniversalComparator.java | 136 + .../template/BoonCommandArgumentParser.java | 133 + .../boon/template/BoonCoreTemplateParser.java | 628 + .../template/BoonModernTemplateParser.java | 550 + .../java/org/boon/template/BoonTemplate.java | 612 + .../main/java/org/boon/template/Commands.java | 53 + .../main/java/org/boon/template/Template.java | 20 + .../org/boon/template/TemplateParser.java | 17 + .../boon/template/support/LoopTagStatus.java | 83 + .../java/org/boon/template/support/Token.java | 79 + .../org/boon/template/support/TokenTypes.java | 52 + .../org/boon/validation/FieldValidator.java | 53 + .../RecursiveDescentPropertyValidator.java | 291 + .../java/org/boon/validation/Validatable.java | 38 + .../boon/validation/ValidationContext.java | 321 + .../boon/validation/ValidationException.java | 47 + .../org/boon/validation/ValidatorMessage.java | 100 + .../validation/ValidatorMessageHolder.java | 42 + .../boon/validation/ValidatorMessages.java | 65 + .../boon/validation/ValidatorMetaData.java | 74 + .../validation/ValidatorMetaDataReader.java | 48 + .../java/org/boon/validation/Validators.java | 132 + .../boon/validation/annotations/Currency.java | 45 + .../org/boon/validation/annotations/Date.java | 45 + .../annotations/DomainValidation.java | 48 + .../boon/validation/annotations/Email.java | 45 + .../boon/validation/annotations/Equals.java | 47 + .../boon/validation/annotations/Length.java | 47 + .../validation/annotations/LongRange.java | 49 + .../org/boon/validation/annotations/Loop.java | 42 + .../boon/validation/annotations/Number.java | 45 + .../boon/validation/annotations/Phone.java | 45 + .../validation/annotations/ProperNoun.java | 42 + .../boon/validation/annotations/Range.java | 47 + .../boon/validation/annotations/Regex.java | 49 + .../boon/validation/annotations/Required.java | 42 + .../validation/annotations/StopOnRule.java | 42 + .../boon/validation/annotations/Street.java | 45 + .../org/boon/validation/annotations/Zip.java | 45 + .../AnnotationValidatorMetaDataReader.java | 211 + .../readers/ChainValidatorMetaDataReader.java | 91 + ...PropertiesFileValidatorMetaDataReader.java | 247 + .../validators/AbstractCompareValidator.java | 127 + .../validators/AbstractRangeValidator.java | 72 + .../validation/validators/BaseValidator.java | 80 + .../validators/CommonBridgeValidator.java | 110 + .../validators/CompositeValidator.java | 154 + .../validators/DomainValidator.java | 204 + .../validators/EqualsCompareValidator.java | 42 + .../validators/LengthValidator.java | 82 + .../validators/LongRangeValidator.java | 160 + .../validators/MatchAllRegexValidator.java | 98 + .../validators/MatchAnyRegexValidator.java | 98 + .../validation/validators/RegexValidator.java | 113 + .../validators/RequiredValidator.java | 79 + .../validators/StopOnRuleValidator.java | 60 + datastructures-json-minimal/NOTICE.txt | 5 + datastructures-json-minimal/build.gradle | 5 + .../src/main/java/module-info.java | 3 + .../datastructures/json/DefaultHandler.java | 58 + .../datastructures/json/HashIndexTable.java | 37 + .../org/xbib/datastructures/json/Json.java | 264 + .../xbib/datastructures/json/JsonArray.java | 382 + .../xbib/datastructures/json/JsonBool.java | 17 + .../datastructures/json/JsonException.java | 16 + .../xbib/datastructures/json/JsonHandler.java | 96 + .../xbib/datastructures/json/JsonLiteral.java | 75 + .../xbib/datastructures/json/JsonMapper.java | 93 + .../xbib/datastructures/json/JsonNull.java | 11 + .../xbib/datastructures/json/JsonNumber.java | 95 + .../xbib/datastructures/json/JsonObject.java | 658 + .../datastructures/json/JsonObjectMember.java | 69 + .../xbib/datastructures/json/JsonReader.java | 428 + .../xbib/datastructures/json/JsonString.java | 40 + .../xbib/datastructures/json/JsonValue.java | 277 + .../xbib/datastructures/json/JsonWriter.java | 118 + .../datastructures/json/JsonWriterConfig.java | 28 + .../xbib/datastructures/json/PrettyPrint.java | 45 + .../json/PrettyPrintWriter.java | 77 + .../datastructures/json/package-info.java | 4 + .../json/test/JsonArrayTest.java | 509 + .../json/test/JsonLiteralTest.java | 114 + .../json/test/JsonMapperTest.java | 59 + .../json/test/JsonNumberTest.java | 147 + .../json/test/JsonObjectTest.java | 904 + .../json/test/JsonReaderTest.java | 762 + .../json/test/JsonStringTest.java | 90 + .../datastructures/json/test/JsonTest.java | 212 + .../json/test/JsonWriterTest.java | 145 + .../json/test/LargeFileTest.java | 29 + .../json/test/PrettyPrintTest.java | 103 + .../json/test/package-info.java | 1 + .../src/main/java/org/noggit/CharArr.java | 376 + .../src/main/java/org/noggit/CharUtil.java | 54 + .../src/main/java/org/noggit/JSONParser.java | 1234 + .../main/java/org/noggit/JSONParserWS.java | 139 + .../src/main/java/org/noggit/JSONUtil.java | 195 + .../src/main/java/org/noggit/JSONWriter.java | 349 + .../main/java/org/noggit/ObjectBuilder.java | 155 + .../src/test/java/org/noggit/CharArrTest.java | 22 + .../src/test/java/org/noggit/MyParse.java | 104 + .../src/test/java/org/noggit/StaxPerf.java | 117 + .../test/java/org/noggit/TestJSONParser.java | 698 + .../test/java/org/noggit/TestJSONWriter.java | 89 + .../java/org/noggit/TestObjectBuilder.java | 102 + .../src/test/java/org/noggit/TestPerf.java | 167 + datastructures-json/NOTICE.txt | 11 + datastructures-json/build.gradle | 4 + .../src/main/java/module-info.java | 6 + .../org/xbib/datastructures/json/Builder.java | 4 + .../xbib/datastructures/json/Generator.java | 331 + .../datastructures/json/JsonException.java | 16 + .../org/xbib/datastructures/json/Lexer.java | 1158 + .../xbib/datastructures/json/OldLexer.java | 1124 + .../org/xbib/datastructures/json/Parser.java | 85 + .../datastructures/json/model/HashNode.java | 30 + .../datastructures/json/model/ListNode.java | 34 + .../xbib/datastructures/json/model/Node.java | 14 + .../datastructures/json/model/ValueNode.java | 45 + .../xbib/datastructures/json/token/Token.java | 32 + .../datastructures/json/token/TokenType.java | 13 + .../json/test/GeneratorTest.java | 110 + .../json/test/LargeFileTest.java | 30 + .../datastructures/json/test/LexerText.java | 174 + datastructures-tiny/NOTICE.txt | 5 +- datastructures-tiny/build.gradle | 16 - .../tiny/jmh/CollectionAdditionTest.java | 6 +- .../tiny/jmh/CollectionRemovalTest.java | 6 +- .../tiny/jmh/CollectionRetrievalTest.java | 6 +- .../tiny/jmh/MapAdditionTest.java | 6 +- .../tiny/jmh/MapRemovalTest.java | 6 +- .../tiny/jmh/MapRetrievalTest.java | 6 +- .../src/main/java/module-info.java | 3 +- .../tiny/IndexedCollectionBase.java | 2 +- .../xbib/datastructures/tiny/IndexedList.java | 11 + .../datastructures/tiny/IndexedListBase.java | 186 + .../datastructures/tiny/Preconditions.java | 18 +- .../xbib/datastructures/tiny/TinyList.java | 91 + .../org/xbib/datastructures/tiny/TinyMap.java | 35 +- .../org/xbib/datastructures/tiny/TinySet.java | 143 +- .../datastructures/tiny/TinyListTest.java | 102 + .../xbib/datastructures/tiny/TinySetTest.java | 13 +- .../tools/excel/support/CellFormat.java | 62 + .../tools/excel/support/XLSReaderSupport.java | 143 + .../tools/excel/support/XLSWriterSupport.java | 146 + .../excel/support/XLSXReaderSupport.java | 175 + .../excel/support/XLSXWriterSupport.java | 101 + .../com/incesoft/tools/excel/xlsx/Cell.java | 93 + .../incesoft/tools/excel/xlsx/CellStyle.java | 86 + .../incesoft/tools/excel/xlsx/ExcelUtils.java | 79 + .../com/incesoft/tools/excel/xlsx/Fill.java | 71 + .../com/incesoft/tools/excel/xlsx/Font.java | 83 + .../incesoft/tools/excel/xlsx/FontRegion.java | 40 + .../tools/excel/xlsx/IndexedObject.java | 19 + .../tools/excel/xlsx/ParsableEntry.java | 12 + .../incesoft/tools/excel/xlsx/RichText.java | 106 + .../tools/excel/xlsx/SerializableEntry.java | 13 + .../tools/excel/xlsx/SharedStringText.java | 43 + .../com/incesoft/tools/excel/xlsx/Sheet.java | 737 + .../tools/excel/xlsx/SheetCommentWriter.java | 176 + .../tools/excel/xlsx/SimpleXLSXWorkbook.java | 1170 + .../incesoft/tools/excel/xlsx/TestSJXLSX.java | 198 + .../datastructures/xslx/ExcelRowIterator.java | 18 + .../datastructures/xslx/ReaderSupport.java | 31 + .../datastructures/xslx/WriterSupport.java | 82 + datastructures-yaml/build.gradle | 3 + .../org/xbib/datastructures/yaml/Builder.java | 50 + .../xbib/datastructures/yaml/Generator.java | 149 + .../org/xbib/datastructures/yaml/Lexer.java | 320 + .../org/xbib/datastructures/yaml/Parser.java | 150 + .../org/xbib/datastructures/yaml/Yaml.java | 366 + .../datastructures/yaml/YamlException.java | 9 + .../datastructures/yaml/model/HashNode.java | 56 + .../datastructures/yaml/model/ListNode.java | 65 + .../xbib/datastructures/yaml/model/Node.java | 14 + .../datastructures/yaml/model/ValueNode.java | 63 + .../xbib/datastructures/yaml/token/Token.java | 32 + .../datastructures/yaml/token/TokenType.java | 14 + .../datastructures/yaml/test/Formatter.java | 172 + .../datastructures/yaml/test/YamlTest.java | 174 + .../xbib/datastructures/yaml/test/example.yml | 0 .../xbib/datastructures/yaml/test/test.yml | 84 + gradle.properties | 3 +- gradle/compile/java.gradle | 9 +- gradle/test/jmh.gradle | 22 + gradle/test/junit5.gradle | 5 +- settings.gradle | 12 + 772 files changed, 198255 insertions(+), 145 deletions(-) create mode 100644 LICENSE.txt create mode 100644 datastructures-bytes/build.gradle create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/AbstractBytes.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/AbstractBytesStore.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/AppendableUtil.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BinaryBytesMethodWriterInvocationHandler.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BinaryWireCode.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ByteStringAppender.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ByteStringParser.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ByteStringReader.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ByteStringWriter.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/Byteable.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/Bytes.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesComment.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesConsumer.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesContext.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesIn.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesInternal.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesMarshallable.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesMarshaller.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesMethodReader.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesMethodReaderBuilder.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesMethodWriterInvocationHandler.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesOut.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesParselet.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesPrepender.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesRingBuffer.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesRingBufferStats.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesStore.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesTextMethodTester.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesUtil.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/CommonMarshallable.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ConnectionDroppedException.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/DynamicallySized.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/GuardedNativeBytes.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/HeapBytesStore.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/HexDumpBytes.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/Invocation.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MappedBytes.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MappedBytesStore.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MappedBytesStoreFactory.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MappedFile.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MappedUniqueMicroTimeProvider.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MappedUniqueTimeProvider.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodEncoder.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodEncoderLookup.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodId.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodReader.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodReaderBuilder.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodReaderInterceptor.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodReaderInterceptorReturns.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodWriterBuilder.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodWriterInterceptor.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodWriterInterceptorReturns.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodWriterInvocationHandler.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodWriterListener.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MultiReaderBytesRingBuffer.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/NativeBytes.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/NativeBytesStore.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/NewChunkListener.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/NoBytesStore.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/OffsetFormat.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/OnHeapBytes.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/PointerBytesStore.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/RandomCommon.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/RandomDataInput.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/RandomDataOutput.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ReadBytesMarshallable.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ReadOnlyMappedBytesStore.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ReleasedBytesStore.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/RingBufferReader.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/RingBufferReaderStats.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StopCharTester.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StopCharTesters.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StopCharsTester.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StreamingCommon.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StreamingDataInput.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StreamingDataOutput.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StreamingInputStream.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StreamingOutputStream.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/SubBytes.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/UTFDataFormatRuntimeException.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/UncheckedBytes.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/UncheckedNativeBytes.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/UpdateInterceptor.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/VanillaBytes.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/WriteBytesMarshallable.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/algo/BytesStoreHash.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/algo/OptimisedBytesStoreHash.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/algo/VanillaBytesStoreHash.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/algo/XxHash.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/internal/package-info.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/pool/BytesPool.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/AbstractReference.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/BinaryBooleanReference.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/BinaryIntArrayReference.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/BinaryIntReference.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/BinaryLongArrayReference.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/BinaryLongReference.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/BinaryTwoLongReference.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/ByteableIntArrayValues.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/ByteableLongArrayValues.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/LongReference.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/TextBooleanReference.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/TextIntArrayReference.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/TextIntReference.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/TextLongArrayReference.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/TextLongReference.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/TwoLongReference.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/UncheckedLongReference.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/AbstractInterner.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/BigCopyMain.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/Bit8StringInterner.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/Compression.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/Compressions.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/DecoratedBufferOverflowException.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/DecoratedBufferUnderflowException.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/EscapingStopCharTester.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/EscapingStopCharsTester.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/PropertyReplacer.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/StringInternerBytes.java create mode 100644 datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/UTF8StringInterner.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/AllocationRatesTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/Allocator.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/AppendableUtilTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ByteCheckSumTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ByteStoreTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ByteStringAppenderTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ByteStringParserTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/Bytes2Test.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesInternalTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesMarshallableTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesMethodWriterBuilderTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesStoreTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesTestCommon.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesTextMethodTesterTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesUtilTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/CipherPerfMain.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/CommonMarshallableTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ConcurrentRafAccessTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/CopyBytesTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/HeapByteStoreTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/HexDumpBytesTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/IBytesMethod.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/Issue128Test.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/Issue85Test.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MappedBytesTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MappedFileMultiThreadTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MappedFileTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MappedMemoryTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MappedUniqueMicroTimeProviderTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MappedUniqueTimeProviderTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MoreBytesTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MyByteable.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MyBytes.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MyNested.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MyScalars.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/NativeBytesOverflowTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/NativeBytesStoreTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/NativeBytesTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/PointerBytesStoreTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/PrewriteTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/PrintVdsoMain.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ReadLenientTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ReadWriteMarshallableTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ReleasedBytesStoreTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/StopBitDecimalTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/StreamingDataInputTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/StreamingInputStreamTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/UTF8BytesTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/UnsafeRWObjectTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/UnsafeTextBytesTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/VanillaBytesTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/WriteLimitTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/algo/OptimisedBytesStoreHashTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/jitter/MemoryMessager.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/jitter/MemoryReadJitterMain.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/jitter/MemoryWriteJitterMain.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/readme/CASTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/readme/PrimitiveTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/readme/StopBitTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/readme/StringsTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/BinaryIntArrayReferenceTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/BinaryIntReferenceTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/BinaryLongArrayReferenceTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/BinaryLongReferenceTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/BinaryTwoLongReferenceTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/BooleanReferenceTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/ByteableReferenceTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/TextIntArrayReferenceTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/TextIntReferenceTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/TextLongArrayReferenceTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/TextLongReferenceTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/UncheckedLongReferenceTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/util/GzipTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/util/LZWTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/util/PropertyReplacerTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/util/StringInternerBytesTest.java create mode 100644 datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/util/ThreadIndexAssignerTest.java create mode 100644 datastructures-bytes/src/test/resources/btmtt/prim-input.txt create mode 100644 datastructures-bytes/src/test/resources/btmtt/prim-output.txt create mode 100644 datastructures-bytes/src/test/resources/file-to-find.txt create mode 100644 datastructures-charset/NOTICE.txt create mode 100644 datastructures-charset/build.gradle create mode 100644 datastructures-charset/src/main/java/org/xbib/datastructures/charset/AirwideIA5Charset.java create mode 100644 datastructures-charset/src/main/java/org/xbib/datastructures/charset/BaseCharset.java create mode 100644 datastructures-charset/src/main/java/org/xbib/datastructures/charset/CharArrayUtil.java create mode 100644 datastructures-charset/src/main/java/org/xbib/datastructures/charset/Charset.java create mode 100644 datastructures-charset/src/main/java/org/xbib/datastructures/charset/CharsetUtil.java create mode 100644 datastructures-charset/src/main/java/org/xbib/datastructures/charset/GSMBitPacker.java create mode 100644 datastructures-charset/src/main/java/org/xbib/datastructures/charset/GSMCharset.java create mode 100644 datastructures-charset/src/main/java/org/xbib/datastructures/charset/ISO885915Charset.java create mode 100644 datastructures-charset/src/main/java/org/xbib/datastructures/charset/ISO88591Charset.java create mode 100644 datastructures-charset/src/main/java/org/xbib/datastructures/charset/JavaCharset.java create mode 100644 datastructures-charset/src/main/java/org/xbib/datastructures/charset/MobileTextUtil.java create mode 100644 datastructures-charset/src/main/java/org/xbib/datastructures/charset/ModifiedUTF8Charset.java create mode 100644 datastructures-charset/src/main/java/org/xbib/datastructures/charset/PackedGSMCharset.java create mode 100644 datastructures-charset/src/main/java/org/xbib/datastructures/charset/TMobileNlGSMCharset.java create mode 100644 datastructures-charset/src/main/java/org/xbib/datastructures/charset/UCS2Charset.java create mode 100644 datastructures-charset/src/main/java/org/xbib/datastructures/charset/UCS2LECharset.java create mode 100644 datastructures-charset/src/main/java/org/xbib/datastructures/charset/UTF8Charset.java create mode 100644 datastructures-charset/src/main/java/org/xbib/datastructures/charset/VFD2GSMCharset.java create mode 100644 datastructures-charset/src/main/java/org/xbib/datastructures/charset/VFTRGSMCharset.java create mode 100644 datastructures-charset/src/test/java/org/xbib/datastructures/charset/CharsetUtilTest.java create mode 100644 datastructures-charset/src/test/java/org/xbib/datastructures/charset/GSMBitPackerTest.java create mode 100644 datastructures-charset/src/test/java/org/xbib/datastructures/charset/GSMCharsetTest.java create mode 100644 datastructures-charset/src/test/java/org/xbib/datastructures/charset/MobileTextUtilTest.java create mode 100644 datastructures-charset/src/test/java/org/xbib/datastructures/charset/ModifiedUTF8CharsetTest.java create mode 100644 datastructures-charset/src/test/java/org/xbib/datastructures/charset/TMobileNlGSMCharsetTest.java create mode 100644 datastructures-charset/src/test/java/org/xbib/datastructures/charset/UTF8CharsetTest.java create mode 100644 datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/BenchmarkMain.java create mode 100644 datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/Charset2Main.java create mode 100644 datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/Charset3Main.java create mode 100644 datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/Charset4Main.java create mode 100644 datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/Charset5Main.java create mode 100644 datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/Charset6Main.java create mode 100644 datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/CharsetMain.java create mode 100644 datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/GSMBenchmarkMain.java create mode 100644 datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/PrintGSMMain.java create mode 100644 datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/UTF8BenchmarkMain.java create mode 100644 datastructures-charset/src/test/java/org/xbib/datastructures/charset/util/Hex.java create mode 100644 datastructures-common/build.gradle create mode 100644 datastructures-common/src/jmh/java/org/xbib/datastructures/common/jmh/StructuresBenchmark.java create mode 100644 datastructures-common/src/main/java/org/xbib/datastructures/common/CompactCharSequence.java create mode 100644 datastructures-common/src/main/java/org/xbib/datastructures/common/FastBufferedWriter.java create mode 100644 datastructures-common/src/main/java/org/xbib/datastructures/common/FastByteArrayOutputStream.java create mode 100644 datastructures-common/src/main/java/org/xbib/datastructures/common/InputReader.java create mode 100644 datastructures-common/src/main/java/org/xbib/datastructures/common/StrictArrayMap.java create mode 100644 datastructures-common/src/main/java/org/xbib/datastructures/common/StrictArraySet.java create mode 100644 datastructures-common/src/main/java/org/xbib/datastructures/common/Utf8Util.java create mode 100644 datastructures-common/src/test/java/org/xbib/datastructures/common/StrictArrayMapTest.java create mode 100644 datastructures-common/src/test/java/org/xbib/datastructures/common/StrictArraySetTest.java create mode 100644 datastructures-csv/src/main/java/module-info.java create mode 100644 datastructures-csv/src/main/java/org/xbib/datastructures/csv/Constants.java create mode 100644 datastructures-csv/src/main/java/org/xbib/datastructures/csv/Generator.java create mode 100644 datastructures-csv/src/main/java/org/xbib/datastructures/csv/Lexer.java create mode 100644 datastructures-csv/src/main/java/org/xbib/datastructures/csv/LookAheadReader.java create mode 100644 datastructures-csv/src/main/java/org/xbib/datastructures/csv/Parser.java create mode 100644 datastructures-csv/src/main/java/org/xbib/datastructures/csv/Token.java create mode 100644 datastructures-csv/src/main/java/org/xbib/datastructures/csv/TokenType.java create mode 100644 datastructures-csv/src/test/java/org/xbib/datastructures/csv/test/GeneratorTest.java create mode 100644 datastructures-csv/src/test/java/org/xbib/datastructures/csv/test/ParserTest.java create mode 100644 datastructures-csv/src/test/resources/org/xbib/datastructures/csv/test/2076831-X-web.txt create mode 100644 datastructures-csv/src/test/resources/org/xbib/datastructures/csv/test/test.csv create mode 100644 datastructures-csv/src/test/resources/org/xbib/datastructures/csv/test/titleFile.csv create mode 100644 datastructures-io/build.gradle create mode 100644 datastructures-io/src/jmh/java/org/xbib/datastructures/io/jmh/StreamTest.java create mode 100644 datastructures-io/src/jmh/java/org/xbib/datastructures/io/jmh/StringTest.java create mode 100644 datastructures-io/src/jmh/resources/periouni.mrc create mode 100644 datastructures-io/src/main/java/org/xbib/datastructures/io/BufferedSeparatorInputStream.java create mode 100644 datastructures-io/src/main/java/org/xbib/datastructures/io/ByteOutput.java create mode 100644 datastructures-io/src/main/java/org/xbib/datastructures/io/BytesStreamOutput.java create mode 100644 datastructures-io/src/main/java/org/xbib/datastructures/io/FilteredSeparatorInputStream.java create mode 100644 datastructures-io/src/main/java/org/xbib/datastructures/io/Information.java create mode 100644 datastructures-io/src/main/java/org/xbib/datastructures/io/InformationSeparator.java create mode 100644 datastructures-io/src/main/java/org/xbib/datastructures/io/InfostreamGenerator.java create mode 100644 datastructures-io/src/main/java/org/xbib/datastructures/io/InfostreamParser.java create mode 100644 datastructures-io/src/main/java/org/xbib/datastructures/io/Types.java create mode 100644 datastructures-io/src/test/java/org/xbib/datastructures/io/test/BufferedSeparatorInputStreamTest.java create mode 100644 datastructures-io/src/test/java/org/xbib/datastructures/io/test/InfostreamGeneratorTest.java create mode 100644 datastructures-io/src/test/resources/periouni.mrc create mode 100644 datastructures-io/src/test/resources/sequential.groupstream create mode 100644 datastructures-io/src/test/resources/summerland.mrc create mode 100644 datastructures-json-boon/NOTICE.txt create mode 100644 datastructures-json-boon/src/main/java/org/boon/Boon.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/Classpaths.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/Entry.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/Exceptions.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/Functional.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/HTTP.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/IO.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/Lists.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/Logger.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/MBeans.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/Maps.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/Ok.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/Pair.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/Runner.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/Sets.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/Str.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/StringScanner.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/Terminal.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/Universal.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/UniversalOperations.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/cache/Cache.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/cache/CacheEntry.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/cache/CacheType.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/cache/ConcurrentLruCache.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/cache/FastConcurrentReadLruLfuFifoCache.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/cache/FastReaderSingleThreadedCache.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/cache/SimpleCache.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/cache/SimpleConcurrentCache.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/cache/Tradeoffs.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/collections/CollectionConstants.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/collections/ConcurrentHashSet.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/collections/ConcurrentLinkedHashSet.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/collections/ConcurrentWeakHashMap.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/collections/DoubleList.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/collections/FakeMapEntrySet.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/collections/FloatList.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/collections/IntList.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/collections/LazyMap.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/collections/LongList.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/collections/MultiMap.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/collections/MultiMapImpl.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/collections/MultiMaps.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/collections/SortableConcurrentList.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/concurrent/Counter.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/concurrent/SimpleExecutors.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/concurrent/Timer.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/config/ContextConfig.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/config/ContextConfigReader.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/config/MetaConfigEvents.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/config/NamespaceEventHandler.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/AsyncFunction.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/Conversions.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/Dates.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/Fn.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/Function.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/Handler.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/HandlerWithErrorHandling.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/Handlers.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/NameAware.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/Predicate.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/Reducer.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/Supplier.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/Sys.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/SystemTimeKeeper.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/Typ.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/TypeType.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/Value.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/Annotated.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/AnnotationData.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/Annotations.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/BaseAccess.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/BeanUtils.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/ClassMeta.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/ConstructorAccess.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/FastStringUtils.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/Fields.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/Invoker.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/MapObjectConversion.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/Mapper.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/MapperComplex.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/MapperSimple.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/MethodAccess.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/Reflection.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/BaseField.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/FieldAccess.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/FieldAccessMode.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/FieldFieldsAccessor.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/FieldsAccessor.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/FieldsAccessorFieldThenProp.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/FieldsAccessorsPropertyThenField.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/MapField.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/PropertyField.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/PropertyFieldAccessor.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/ReflectField.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/UnsafeField.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/impl/ConstructorAccessImpl.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/impl/MethodAccessImpl.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/reflection/impl/OverloadedMethod.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/timer/TimeKeeper.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/timer/TimeKeeperBasic.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/value/CharSequenceValue.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/value/LazyValueMap.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/value/MapItemValue.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/value/NumberValue.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/value/ValueContainer.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/value/ValueList.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/value/ValueMap.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/core/value/ValueMapImpl.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/criteria/Criterion.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/criteria/DoubleCollector.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/criteria/FloatCollector.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/criteria/IntCollector.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/criteria/ObjectFilter.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/criteria/ProjectedSelector.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/criteria/Selector.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/criteria/Update.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/criteria/internal/Criteria.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/criteria/internal/Group.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/criteria/internal/Grouping.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/criteria/internal/Not.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/criteria/internal/Operator.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/criteria/internal/QueryFactory.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/criteria/internal/Visitor.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/Bag.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/CollectionDecorator.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/Collections.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/DataRepoException.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/Filter.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/LookupIndex.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/ObjectEditor.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/PlanStep.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/PlanSteps.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/Repo.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/RepoBuilder.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/Repos.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/ResultSet.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/SearchableCollection.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/impl/FilterDefault.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/impl/ObjectEditorDefault.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/impl/RepoBuilderDefault.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/impl/RepoDefault.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/impl/ResultSetImpl.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/impl/SearchableCollectionDefault.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/impl/decorators/FilterDecoratorBase.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/impl/decorators/FilterWithCache.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/impl/decorators/FilterWithSimpleCache.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/impl/decorators/ObjectEditorCloneDecorator.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/impl/decorators/ObjectEditorDecoratorBase.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/impl/decorators/ObjectEditorEventDecorator.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/impl/decorators/ObjectEditorLogNullCheckDecorator.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/BaseIndexWrapper.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/LookupIndexDefault.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/MultiValue.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/NestedKeySearchIndex.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/SearchIndexDefault.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/TypeHierarchyIndex.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/UniqueLookupIndex.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/UniqueSearchIndex.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/impl/maps/JavaUtilMap.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/impl/maps/JavaUtilNavigableMap.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/impl/maps/MapCreatorImpl.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/modification/ModificationEvent.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/modification/ModificationListener.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/modification/ModificationType.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/spi/FilterComposer.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/spi/MapCreator.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/spi/ObjectEditorComposer.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/spi/RepoComposer.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/spi/ResultSetInternal.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/spi/SPIFactory.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/spi/SearchIndex.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/spi/SearchableCollectionComposer.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/datarepo/spi/TypedMap.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/di/Context.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/di/Creator.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/di/DependencyInjection.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/di/In.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/di/Inject.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/di/Module.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/di/Named.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/di/PostConstruct.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/di/ProviderInfo.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/di/Required.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/di/impl/ContextImpl.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/di/modules/BaseModule.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/di/modules/InstanceModule.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/di/modules/NamedUtils.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/di/modules/SupplierModule.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/expression/BoonExpressionContext.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/expression/ExpressionContext.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/expression/StandardFunctions.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/functions/PropertyNameUtils.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/JsonCreator.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/JsonException.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/JsonFactory.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/JsonMappingParser.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/JsonParser.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/JsonParserAndMapper.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/JsonParserEvents.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/JsonParserFactory.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/JsonSerializer.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/JsonSerializerFactory.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/JsonSlurper.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/ObjectMapper.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/ObjectSerializationData.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/annotations/Expose.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/annotations/JsonIgnore.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/annotations/JsonIgnoreProperties.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/annotations/JsonInclude.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/annotations/JsonProperty.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/annotations/JsonViews.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/annotations/SerializedName.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/implementation/BaseJsonParser.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/implementation/BaseJsonParserAndMapper.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonAsciiParser.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonBaseByteArrayParser.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonFastParser.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonParserCharArray.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonParserLax.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonParserUsingCharacterSource.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonStringDecoder.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonUTF8Parser.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/implementation/ObjectMapperImpl.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/implementation/PlistParser.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/serializers/ArraySerializer.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/serializers/CollectionSerializer.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/serializers/CustomFieldSerializer.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/serializers/CustomObjectSerializer.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/serializers/DateSerializer.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/serializers/FieldFilter.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/serializers/FieldSerializer.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/serializers/InstanceSerializer.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/serializers/JsonSerializerInternal.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/serializers/MapSerializer.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/serializers/ObjectSerializer.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/serializers/StringSerializer.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/serializers/UnknownSerializer.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/AbstractCustomFieldSerializer.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/AbstractCustomObjectSerializer.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/BasicObjectSerializerImpl.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/CollectionSerializerImpl.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/CustomObjectSerializerImpl.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/DateSerializerImpl.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/FieldSerializerImpl.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/FieldSerializerUseAnnotationsImpl.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/InstanceSerializerImpl.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/JsonDateSerializer.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/JsonSerializerImpl.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/JsonSimpleSerializerImpl.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/MapSerializerImpl.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/MapSerializerThatEncodesKeys.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/SerializeUtils.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/StringSerializerImpl.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/UnknownSerializerImpl.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/logging/ConfigurableLogger.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/logging/HandlerNoOP.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/logging/InMemoryLogger.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/logging/InMemoryThreadLocalLogger.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/logging/JDKLogger.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/logging/JDKLoggerFactory.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/logging/LogLevel.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/logging/LogRecord.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/logging/LoggerDelegate.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/logging/LoggerFactory.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/logging/Logging.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/logging/TeeLoggerWrapper.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/logging/TerminalLogger.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/messages/MessageSpecification.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/messages/MessageUtils.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/messages/ResourceBundleLocator.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/primitive/Arry.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/primitive/Byt.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/primitive/ByteBuf.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/primitive/ByteScanner.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/primitive/CharArrayCharacterSource.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/primitive/CharBuf.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/primitive/CharScanner.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/primitive/CharacterSource.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/primitive/Chr.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/primitive/Dbl.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/primitive/Flt.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/primitive/IOInputStream.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/primitive/IOReader.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/primitive/InMemoryInputStream.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/primitive/InMemoryReader.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/primitive/Input.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/primitive/InputByteArray.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/primitive/Int.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/primitive/Lng.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/primitive/Output.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/primitive/ReaderCharacterSource.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/primitive/Shrt.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/service/Request.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/service/Response.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/sort/Ordering.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/sort/Sort.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/sort/SortType.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/sort/Sorting.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/sort/SortingInternal.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/sort/UniversalComparator.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/template/BoonCommandArgumentParser.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/template/BoonCoreTemplateParser.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/template/BoonModernTemplateParser.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/template/BoonTemplate.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/template/Commands.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/template/Template.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/template/TemplateParser.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/template/support/LoopTagStatus.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/template/support/Token.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/template/support/TokenTypes.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/FieldValidator.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/RecursiveDescentPropertyValidator.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/Validatable.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/ValidationContext.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/ValidationException.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/ValidatorMessage.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/ValidatorMessageHolder.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/ValidatorMessages.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/ValidatorMetaData.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/ValidatorMetaDataReader.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/Validators.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/annotations/Currency.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/annotations/Date.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/annotations/DomainValidation.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/annotations/Email.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/annotations/Equals.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/annotations/Length.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/annotations/LongRange.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/annotations/Loop.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/annotations/Number.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/annotations/Phone.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/annotations/ProperNoun.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/annotations/Range.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/annotations/Regex.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/annotations/Required.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/annotations/StopOnRule.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/annotations/Street.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/annotations/Zip.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/readers/AnnotationValidatorMetaDataReader.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/readers/ChainValidatorMetaDataReader.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/readers/PropertiesFileValidatorMetaDataReader.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/validators/AbstractCompareValidator.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/validators/AbstractRangeValidator.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/validators/BaseValidator.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/validators/CommonBridgeValidator.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/validators/CompositeValidator.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/validators/DomainValidator.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/validators/EqualsCompareValidator.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/validators/LengthValidator.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/validators/LongRangeValidator.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/validators/MatchAllRegexValidator.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/validators/MatchAnyRegexValidator.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/validators/RegexValidator.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/validators/RequiredValidator.java create mode 100644 datastructures-json-boon/src/main/java/org/boon/validation/validators/StopOnRuleValidator.java create mode 100644 datastructures-json-minimal/NOTICE.txt create mode 100644 datastructures-json-minimal/build.gradle create mode 100644 datastructures-json-minimal/src/main/java/module-info.java create mode 100644 datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/DefaultHandler.java create mode 100644 datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/HashIndexTable.java create mode 100755 datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/Json.java create mode 100755 datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonArray.java create mode 100644 datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonBool.java create mode 100755 datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonException.java create mode 100755 datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonHandler.java create mode 100755 datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonLiteral.java create mode 100644 datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonMapper.java create mode 100644 datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonNull.java create mode 100755 datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonNumber.java create mode 100755 datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonObject.java create mode 100644 datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonObjectMember.java create mode 100755 datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonReader.java create mode 100755 datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonString.java create mode 100755 datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonValue.java create mode 100755 datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonWriter.java create mode 100755 datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonWriterConfig.java create mode 100644 datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/PrettyPrint.java create mode 100644 datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/PrettyPrintWriter.java create mode 100644 datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/package-info.java create mode 100755 datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonArrayTest.java create mode 100755 datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonLiteralTest.java create mode 100644 datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonMapperTest.java create mode 100755 datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonNumberTest.java create mode 100755 datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonObjectTest.java create mode 100755 datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonReaderTest.java create mode 100755 datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonStringTest.java create mode 100755 datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonTest.java create mode 100755 datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonWriterTest.java create mode 100644 datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/LargeFileTest.java create mode 100755 datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/PrettyPrintTest.java create mode 100644 datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/package-info.java create mode 100755 datastructures-json-noggit/src/main/java/org/noggit/CharArr.java create mode 100755 datastructures-json-noggit/src/main/java/org/noggit/CharUtil.java create mode 100755 datastructures-json-noggit/src/main/java/org/noggit/JSONParser.java create mode 100644 datastructures-json-noggit/src/main/java/org/noggit/JSONParserWS.java create mode 100755 datastructures-json-noggit/src/main/java/org/noggit/JSONUtil.java create mode 100755 datastructures-json-noggit/src/main/java/org/noggit/JSONWriter.java create mode 100644 datastructures-json-noggit/src/main/java/org/noggit/ObjectBuilder.java create mode 100644 datastructures-json-noggit/src/test/java/org/noggit/CharArrTest.java create mode 100755 datastructures-json-noggit/src/test/java/org/noggit/MyParse.java create mode 100755 datastructures-json-noggit/src/test/java/org/noggit/StaxPerf.java create mode 100755 datastructures-json-noggit/src/test/java/org/noggit/TestJSONParser.java create mode 100644 datastructures-json-noggit/src/test/java/org/noggit/TestJSONWriter.java create mode 100644 datastructures-json-noggit/src/test/java/org/noggit/TestObjectBuilder.java create mode 100755 datastructures-json-noggit/src/test/java/org/noggit/TestPerf.java create mode 100644 datastructures-json/NOTICE.txt create mode 100644 datastructures-json/build.gradle create mode 100644 datastructures-json/src/main/java/module-info.java create mode 100644 datastructures-json/src/main/java/org/xbib/datastructures/json/Builder.java create mode 100644 datastructures-json/src/main/java/org/xbib/datastructures/json/Generator.java create mode 100644 datastructures-json/src/main/java/org/xbib/datastructures/json/JsonException.java create mode 100644 datastructures-json/src/main/java/org/xbib/datastructures/json/Lexer.java create mode 100644 datastructures-json/src/main/java/org/xbib/datastructures/json/OldLexer.java create mode 100644 datastructures-json/src/main/java/org/xbib/datastructures/json/Parser.java create mode 100644 datastructures-json/src/main/java/org/xbib/datastructures/json/model/HashNode.java create mode 100644 datastructures-json/src/main/java/org/xbib/datastructures/json/model/ListNode.java create mode 100644 datastructures-json/src/main/java/org/xbib/datastructures/json/model/Node.java create mode 100644 datastructures-json/src/main/java/org/xbib/datastructures/json/model/ValueNode.java create mode 100644 datastructures-json/src/main/java/org/xbib/datastructures/json/token/Token.java create mode 100644 datastructures-json/src/main/java/org/xbib/datastructures/json/token/TokenType.java create mode 100644 datastructures-json/src/test/java/org/xbib/datastructures/json/test/GeneratorTest.java create mode 100644 datastructures-json/src/test/java/org/xbib/datastructures/json/test/LargeFileTest.java create mode 100644 datastructures-json/src/test/java/org/xbib/datastructures/json/test/LexerText.java create mode 100644 datastructures-tiny/src/main/java/org/xbib/datastructures/tiny/IndexedList.java create mode 100644 datastructures-tiny/src/main/java/org/xbib/datastructures/tiny/IndexedListBase.java create mode 100644 datastructures-tiny/src/main/java/org/xbib/datastructures/tiny/TinyList.java create mode 100644 datastructures-tiny/src/test/java/org/xbib/datastructures/tiny/TinyListTest.java create mode 100644 datastructures-xslx/src/main/java/com/incesoft/tools/excel/support/CellFormat.java create mode 100644 datastructures-xslx/src/main/java/com/incesoft/tools/excel/support/XLSReaderSupport.java create mode 100644 datastructures-xslx/src/main/java/com/incesoft/tools/excel/support/XLSWriterSupport.java create mode 100644 datastructures-xslx/src/main/java/com/incesoft/tools/excel/support/XLSXReaderSupport.java create mode 100644 datastructures-xslx/src/main/java/com/incesoft/tools/excel/support/XLSXWriterSupport.java create mode 100644 datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/Cell.java create mode 100644 datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/CellStyle.java create mode 100644 datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/ExcelUtils.java create mode 100644 datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/Fill.java create mode 100644 datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/Font.java create mode 100644 datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/FontRegion.java create mode 100644 datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/IndexedObject.java create mode 100644 datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/ParsableEntry.java create mode 100644 datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/RichText.java create mode 100644 datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/SerializableEntry.java create mode 100644 datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/SharedStringText.java create mode 100644 datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/Sheet.java create mode 100644 datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/SheetCommentWriter.java create mode 100644 datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/SimpleXLSXWorkbook.java create mode 100644 datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/TestSJXLSX.java create mode 100644 datastructures-xslx/src/main/java/org/xbib/datastructures/xslx/ExcelRowIterator.java create mode 100644 datastructures-xslx/src/main/java/org/xbib/datastructures/xslx/ReaderSupport.java create mode 100644 datastructures-xslx/src/main/java/org/xbib/datastructures/xslx/WriterSupport.java create mode 100644 datastructures-yaml/build.gradle create mode 100644 datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/Builder.java create mode 100644 datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/Generator.java create mode 100644 datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/Lexer.java create mode 100644 datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/Parser.java create mode 100644 datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/Yaml.java create mode 100644 datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/YamlException.java create mode 100644 datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/model/HashNode.java create mode 100644 datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/model/ListNode.java create mode 100644 datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/model/Node.java create mode 100644 datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/model/ValueNode.java create mode 100644 datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/token/Token.java create mode 100644 datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/token/TokenType.java create mode 100644 datastructures-yaml/src/test/java/org/xbib/datastructures/yaml/test/Formatter.java create mode 100644 datastructures-yaml/src/test/java/org/xbib/datastructures/yaml/test/YamlTest.java create mode 100644 datastructures-yaml/src/test/resources/org/xbib/datastructures/yaml/test/example.yml create mode 100644 datastructures-yaml/src/test/resources/org/xbib/datastructures/yaml/test/test.yml create mode 100644 gradle/test/jmh.gradle diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..d645695 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/build.gradle b/build.gradle index e945311..b8f68cd 100644 --- a/build.gradle +++ b/build.gradle @@ -28,6 +28,7 @@ subprojects { apply from: rootProject.file('gradle/ide/idea.gradle') apply from: rootProject.file('gradle/compile/java.gradle') apply from: rootProject.file('gradle/test/junit5.gradle') + apply from: rootProject.file('gradle/test/jmh.gradle') apply from: rootProject.file('gradle/publishing/publication.gradle') } diff --git a/datastructures-bytes/build.gradle b/datastructures-bytes/build.gradle new file mode 100644 index 0000000..a99b0b0 --- /dev/null +++ b/datastructures-bytes/build.gradle @@ -0,0 +1,6 @@ +dependencies { + api "net.openhft:chronicle-core:2.21ea14" + testImplementation "org.junit.vintage:junit-vintage-engine:5.7.0" + testImplementation "junit:junit:4.13" + testImplementation "net.openhft:affinity:3.21ea0" +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/AbstractBytes.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/AbstractBytes.java new file mode 100644 index 0000000..70f4c65 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/AbstractBytes.java @@ -0,0 +1,1056 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.bytes.algo.BytesStoreHash; +import net.openhft.chronicle.bytes.util.DecoratedBufferOverflowException; +import net.openhft.chronicle.bytes.util.DecoratedBufferUnderflowException; +import net.openhft.chronicle.core.Jvm; +import net.openhft.chronicle.core.annotation.UsedViaReflection; +import net.openhft.chronicle.core.io.AbstractReferenceCounted; +import net.openhft.chronicle.core.io.IORuntimeException; +import net.openhft.chronicle.core.io.UnsafeText; +import org.jetbrains.annotations.NotNull; +import org.jetbrains.annotations.Nullable; + +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; +import java.nio.ByteBuffer; + +@SuppressWarnings("rawtypes") +public abstract class AbstractBytes + extends AbstractReferenceCounted + implements Bytes { + private static final boolean BYTES_BOUNDS_UNCHECKED = Jvm.getBoolean("bytes.bounds.unchecked", false); + // used for debugging + @UsedViaReflection + private final String name; + + protected BytesStore, Underlying> bytesStore; + protected long readPosition; + protected long writePosition; + protected long writeLimit; + protected boolean isPresent; + private int lastDecimalPlaces = 0; + private boolean lenient = false; + + AbstractBytes( BytesStore, Underlying> bytesStore, long writePosition, long writeLimit) + throws IllegalStateException { + this(bytesStore, writePosition, writeLimit, ""); + } + + AbstractBytes( BytesStore, Underlying> bytesStore, long writePosition, long writeLimit, String name) + throws IllegalStateException { + super(bytesStore.isDirectMemory()); + this.bytesStore(bytesStore); + bytesStore.reserve(this); + readPosition = bytesStore.readPosition(); + this.uncheckedWritePosition(writePosition); + this.writeLimit = writeLimit; + // used for debugging + this.name = name; + } + + @Override + public boolean isDirectMemory() { + return bytesStore.isDirectMemory(); + } + + @Override + public boolean canReadDirect(long length) { + long remaining = writePosition - readPosition; + return bytesStore.isDirectMemory() && remaining >= length; + } + + @Override + public void move(long from, long to, long length) throws BufferUnderflowException { + long start = start(); + bytesStore.move(from - start, to - start, length); + } + + + @Override + public Bytes compact() { + long start = start(); + long readRemaining = readRemaining(); + if ((readRemaining > 0) && (start < readPosition)) { + bytesStore.move(readPosition, start, readRemaining); + readPosition = start; + uncheckedWritePosition(readPosition + readRemaining); + } + return this; + } + + @Override + + public Bytes clear() { + long start = start(); + readPosition = start; + uncheckedWritePosition(start); + writeLimit = capacity(); + return this; + } + + + @Override + public Bytes clearAndPad(long length) throws BufferOverflowException { + if ((start() + length) > capacity()) { + throw newBOERange(start(), length, "clearAndPad failed. Start: %d + length: %d > capacity: %d", capacity()); + } + long l = start() + length; + readPosition = l; + uncheckedWritePosition(l); + writeLimit = capacity(); + return this; + } + + @Override + public long readLimit() { + return writePosition; + } + + @Override + public long writeLimit() { + return writeLimit; + } + + @Override + public long realCapacity() { + return bytesStore.capacity(); + } + + @Override + public long realWriteRemaining() { + return bytesStore.capacity() - writePosition; + } + + @Override + public boolean canWriteDirect(long count) { + return isDirectMemory() && + Math.min(writeLimit, bytesStore.realCapacity()) + >= count + writePosition; + } + + @Override + public long capacity() { + return bytesStore.capacity(); + } + + + @Override + public Underlying underlyingObject() { + return bytesStore.underlyingObject(); + } + + @Override + public long start() { + return bytesStore.start(); + } + + @Override + public long readPosition() { + return readPosition; + } + + @Override + public long writePosition() { + return writePosition; + } + + @Override + public boolean compareAndSwapInt(long offset, int expected, int value) throws BufferOverflowException { + writeCheckOffset(offset, 4); + return bytesStore.compareAndSwapInt(offset, expected, value); + } + + @Override + public void testAndSetInt(long offset, int expected, int value) { + writeCheckOffset(offset, 4); + bytesStore.testAndSetInt(offset, expected, value); + } + + @Override + public boolean compareAndSwapLong(long offset, long expected, long value) throws BufferOverflowException { + writeCheckOffset(offset, 8); + return bytesStore.compareAndSwapLong(offset, expected, value); + } + + public AbstractBytes append(double d) throws BufferOverflowException { + boolean fits = canWriteDirect(380); + double ad = Math.abs(d); + if (ad < 1e-18) { + append(Double.toString(d)); + return this; + } + if (!fits) { + fits = 1e-6 <= ad && ad < 1e20 && canWriteDirect(24); + } + if (fits) { + long address = addressForWrite(writePosition); + long address2 = UnsafeText.appendDouble(address, d); + writeSkip(address2 - address); + return this; + } + BytesInternal.append(this, d); + return this; + } + + + @Override + public Bytes readPosition(long position) throws BufferUnderflowException { + if (position < start()) { + throw new DecoratedBufferUnderflowException(String.format("readPosition failed. Position: %d < start: %d", position, start())); + } + if (position > readLimit()) { + throw new DecoratedBufferUnderflowException( + String.format("readPosition failed. Position: %d > readLimit: %d", position, readLimit())); + } + this.readPosition = position; + return this; + } + + + @Override + public Bytes readLimit(long limit) throws BufferUnderflowException { + if (limit < start()) + throw limitLessThanStart(limit); + + if (limit > writeLimit()) + throw limitGreaterThanWriteLimit(limit); + + uncheckedWritePosition(limit); + return this; + } + + private DecoratedBufferUnderflowException limitGreaterThanWriteLimit(long limit) { + return new DecoratedBufferUnderflowException(String.format("readLimit failed. Limit: %d > writeLimit: %d", limit, writeLimit())); + } + + private DecoratedBufferUnderflowException limitLessThanStart(long limit) { + return new DecoratedBufferUnderflowException(String.format("readLimit failed. Limit: %d < start: %d", limit, start())); + } + + + @Override + public Bytes writePosition(long position) throws BufferOverflowException { + if (position > writeLimit()) + throw writePositionTooLarge(position); + + if (position < start()) + throw writePositionTooSmall(position); + + if (position < readPosition()) + this.readPosition = position; + + uncheckedWritePosition(position); + return this; + } + + + private DecoratedBufferOverflowException writePositionTooSmall(long position) { + return new DecoratedBufferOverflowException(String.format("writePosition failed. Position: %d < start: %d", position, start())); + } + + private DecoratedBufferOverflowException writePositionTooLarge(long position) { + return new DecoratedBufferOverflowException( + String.format("writePosition failed. Position: %d > writeLimit: %d", position, writeLimit())); + } + + + @Override + public Bytes readSkip(long bytesToSkip) throws BufferUnderflowException { + if (lenient) { + bytesToSkip = Math.min(bytesToSkip, readRemaining()); + } + readOffsetPositionMoved(bytesToSkip); + return this; + } + + @Override + public void uncheckedReadSkipOne() { + readPosition++; + } + + @Override + public void uncheckedReadSkipBackOne() { + readPosition--; + } + + + @Override + public Bytes writeSkip(long bytesToSkip) throws BufferOverflowException { + writeCheckOffset(writePosition, bytesToSkip); + uncheckedWritePosition(writePosition + bytesToSkip); + return this; + } + + + @Override + public Bytes writeLimit(long limit) throws BufferOverflowException { + if (limit < start()) { + throw writeLimitTooSmall(limit); + } + long capacity = capacity(); + if (limit > capacity) { + throw writeLimitTooBig(limit, capacity); + } + this.writeLimit = limit; + return this; + } + + + private DecoratedBufferOverflowException writeLimitTooBig(long limit, long capacity) { + return new DecoratedBufferOverflowException(String.format("writeLimit failed. Limit: %d > capacity: %d", limit, capacity)); + } + + + private DecoratedBufferOverflowException writeLimitTooSmall(long limit) { + return new DecoratedBufferOverflowException(String.format("writeLimit failed. Limit: %d < start: %d", limit, start())); + } + + @Override + protected void performRelease() throws IllegalStateException { + try { + this.bytesStore.release(this); + } finally { + this.bytesStore(ReleasedBytesStore.releasedBytesStore()); + } + } + + @Override + public int readUnsignedByte() { + try { + long offset = readOffsetPositionMoved(1); + return bytesStore.readUnsignedByte(offset); + + } catch (BufferUnderflowException e) { + return -1; + } + } + + public int readUnsignedByte(long offset) throws BufferUnderflowException { + return readByte(offset) & 0xFF; + } + + @Override + public int uncheckedReadUnsignedByte() { + try { + int unsignedByte = bytesStore.readUnsignedByte(readPosition); + readPosition++; + return unsignedByte; + } catch (BufferUnderflowException e) { + return -1; + } + } + + @Override + public byte readByte() { + try { + long offset = readOffsetPositionMoved(1); + return bytesStore.readByte(offset); + + } catch (BufferUnderflowException e) { + return 0; + } + } + + @Override + public int peekUnsignedByte() { + return readPosition >= writePosition ? -1 : bytesStore.readUnsignedByte(readPosition); + } + + @Override + public short readShort() throws BufferUnderflowException { + try { + long offset = readOffsetPositionMoved(2); + return bytesStore.readShort(offset); + } catch (BufferUnderflowException e) { + if (lenient) { + return 0; + } + throw e; + } + } + + @Override + public int readInt() throws BufferUnderflowException { + try { + long offset = readOffsetPositionMoved(4); + return bytesStore.readInt(offset); + } catch (BufferUnderflowException e) { + if (lenient) { + return 0; + } + throw e; + } + } + + @Override + public byte readVolatileByte(long offset) throws BufferUnderflowException { + readCheckOffset(offset, 1, true); + return bytesStore.readVolatileByte(offset); + } + + @Override + public short readVolatileShort(long offset) throws BufferUnderflowException { + readCheckOffset(offset, 2, true); + return bytesStore.readVolatileShort(offset); + } + + @Override + public int readVolatileInt(long offset) throws BufferUnderflowException { + readCheckOffset(offset, 4, true); + return bytesStore.readVolatileInt(offset); + } + + @Override + public long readVolatileLong(long offset) throws BufferUnderflowException { + readCheckOffset(offset, 8, true); + return bytesStore.readVolatileLong(offset); + } + + @Override + public long readLong() throws BufferUnderflowException { + try { + long offset = readOffsetPositionMoved(8); + return bytesStore.readLong(offset); + } catch (BufferUnderflowException e) { + if (lenient) { + return 0; + } + throw e; + } + } + + @Override + public float readFloat() throws BufferUnderflowException { + try { + long offset = readOffsetPositionMoved(4); + return bytesStore.readFloat(offset); + } catch (BufferUnderflowException e) { + if (lenient) { + return 0; + } + throw e; + } + } + + @Override + public double readDouble() throws BufferUnderflowException { + try { + long offset = readOffsetPositionMoved(8); + return bytesStore.readDouble(offset); + } catch (BufferUnderflowException e) { + if (lenient) { + return 0; + } + throw e; + } + } + + @Override + public int readVolatileInt() throws BufferUnderflowException { + try { + long offset = readOffsetPositionMoved(4); + return bytesStore.readVolatileInt(offset); + } catch (BufferUnderflowException e) { + if (lenient) { + return 0; + } + throw e; + } + } + + @Override + public long readVolatileLong() throws BufferUnderflowException { + try { + long offset = readOffsetPositionMoved(8); + return bytesStore.readVolatileLong(offset); + } catch (BufferUnderflowException e) { + if (lenient) { + return 0; + } + throw e; + } + } + + protected long readOffsetPositionMoved(long adding) throws BufferUnderflowException { + long offset = readPosition; + readCheckOffset(readPosition, Math.toIntExact(adding), false); + readPosition += adding; + assert readPosition <= readLimit(); + return offset; + } + + + @Override + public Bytes writeByte(long offset, byte i) throws BufferOverflowException { + writeCheckOffset(offset, 1); + bytesStore.writeByte(offset, i); + return this; + } + + + @Override + public Bytes writeShort(long offset, short i) throws BufferOverflowException { + writeCheckOffset(offset, 2); + bytesStore.writeShort(offset, i); + return this; + } + + + @Override + public Bytes writeInt(long offset, int i) throws BufferOverflowException { + writeCheckOffset(offset, 4); + bytesStore.writeInt(offset, i); + return this; + } + + + @Override + public Bytes writeOrderedInt(long offset, int i) throws BufferOverflowException { + writeCheckOffset(offset, 4); + bytesStore.writeOrderedInt(offset, i); + return this; + } + + + @Override + public Bytes writeLong(long offset, long i) throws BufferOverflowException { + writeCheckOffset(offset, 8); + bytesStore.writeLong(offset, i); + return this; + } + + + @Override + public Bytes writeOrderedLong(long offset, long i) throws BufferOverflowException { + writeCheckOffset(offset, 8); + bytesStore.writeOrderedLong(offset, i); + return this; + } + + + @Override + public Bytes writeFloat(long offset, float d) throws BufferOverflowException { + writeCheckOffset(offset, 4); + bytesStore.writeFloat(offset, d); + return this; + } + + + @Override + public Bytes writeDouble(long offset, double d) throws BufferOverflowException { + writeCheckOffset(offset, 8); + bytesStore.writeDouble(offset, d); + return this; + } + + + @Override + public Bytes writeVolatileByte(long offset, byte i8) throws BufferOverflowException { + writeCheckOffset(offset, 1); + bytesStore.writeVolatileByte(offset, i8); + return this; + } + + + @Override + public Bytes writeVolatileShort(long offset, short i16) throws BufferOverflowException { + writeCheckOffset(offset, 2); + bytesStore.writeVolatileShort(offset, i16); + return this; + } + + + @Override + public Bytes writeVolatileInt(long offset, int i32) throws BufferOverflowException { + writeCheckOffset(offset, 4); + bytesStore.writeVolatileInt(offset, i32); + return this; + } + + + @Override + public Bytes writeVolatileLong(long offset, long i64) throws BufferOverflowException { + writeCheckOffset(offset, 8); + bytesStore.writeVolatileLong(offset, i64); + return this; + } + + @Override + + public Bytes write( RandomDataInput bytes) { + assert bytes != this : "you should not write to yourself !"; + + try { + return write(bytes, bytes.readPosition(), Math.min(writeLimit() - writePosition(), bytes.readRemaining())); + } catch (BufferOverflowException | BufferUnderflowException e) { + throw new AssertionError(e); + } + } + + @Override + + public Bytes write(long offsetInRDO, byte[] bytes, int offset, int length) throws BufferOverflowException { + long remaining = length; + while (remaining > 0) { + int copy = (int) Math.min(remaining, safeCopySize()); // copy 64 KB at a time. + writeCheckOffset(offsetInRDO, copy); + bytesStore.write(offsetInRDO, bytes, offset, copy); + offsetInRDO += copy; + offset += copy; + remaining -= copy; + } + return this; + } + + @Override + public void write(long offsetInRDO, ByteBuffer bytes, int offset, int length) throws BufferOverflowException { + writeCheckOffset(offsetInRDO, length); + bytesStore.write(offsetInRDO, bytes, offset, length); + } + + @Override + + public Bytes write(long writeOffset, RandomDataInput bytes, long readOffset, long length) + throws BufferOverflowException, BufferUnderflowException { + + long remaining = length; + while (remaining > 0) { + int copy = (int) Math.min(remaining, safeCopySize()); // copy 64 KB at a time. + writeCheckOffset(writeOffset, copy); + bytesStore.write(writeOffset, bytes, readOffset, copy); + writeOffset += copy; + readOffset += copy; + remaining -= copy; + } + return this; + } + + void writeCheckOffset(long offset, long adding) throws BufferOverflowException { + if (BYTES_BOUNDS_UNCHECKED) + return; + writeCheckOffset0(offset, adding); + } + + private void writeCheckOffset0(long offset, long adding) { + if (offset < start()) { + throw newBOELower(offset); + } + if ((offset + adding) > writeLimit()) { + throw newBOERange(offset, adding, "writeCheckOffset failed. Offset: %d + adding %d> writeLimit: %d", writeLimit()); + } + } + + + private DecoratedBufferOverflowException newBOERange(long offset, long adding, String msg, long limit) { + return new DecoratedBufferOverflowException( + String.format(msg, offset, adding, limit)); + } + + + private DecoratedBufferOverflowException newBOELower(long offset) { + return new DecoratedBufferOverflowException(String.format("writeCheckOffset failed. Offset: %d < start: %d", offset, start())); + } + + @Override + public byte readByte(long offset) throws BufferUnderflowException { + readCheckOffset(offset, 1, true); + return bytesStore.readByte(offset); + } + + @Override + public int peekUnsignedByte(long offset) throws BufferUnderflowException { + return offset >= readLimit() ? -1 : bytesStore.peekUnsignedByte(offset); + } + + @Override + public short readShort(long offset) throws BufferUnderflowException { + readCheckOffset(offset, 2, true); + return bytesStore.readShort(offset); + } + + @Override + public int readInt(long offset) throws BufferUnderflowException { + readCheckOffset(offset, 4, true); + return bytesStore.readInt(offset); + } + + @Override + public long readLong(long offset) throws BufferUnderflowException { + readCheckOffset(offset, 8, true); + return bytesStore.readLong(offset); + } + + @Override + public float readFloat(long offset) throws BufferUnderflowException { + readCheckOffset(offset, 4, true); + return bytesStore.readFloat(offset); + } + + @Override + public double readDouble(long offset) throws BufferUnderflowException { + readCheckOffset(offset, 8, true); + return bytesStore.readDouble(offset); + } + + void readCheckOffset(long offset, long adding, boolean given) throws BufferUnderflowException { + if (BYTES_BOUNDS_UNCHECKED) + return; + readCheckOffset0(offset, adding, given); + } + + private void readCheckOffset0(long offset, long adding, boolean given) { + if (offset < start()) { + throw newBOEReadLower(offset); + } + long limit0 = given ? writeLimit() : readLimit(); + if ((offset + adding) > limit0) { + throw newBOEReadUpper(offset, adding, given); + } + } + + + private DecoratedBufferUnderflowException newBOEReadUpper(long offset, long adding, boolean given) { + long limit2 = given ? writeLimit() : readLimit(); + DecoratedBufferUnderflowException e = new DecoratedBufferUnderflowException(String + .format("readCheckOffset0 failed. Offset: %d + adding: %d > limit: %d (given: %s)", offset, adding, limit2, given)); + return e; + } + + + private DecoratedBufferUnderflowException newBOEReadLower(long offset) { + return new DecoratedBufferUnderflowException(String.format("readCheckOffset0 failed. Offset: %d < start: %d", offset, start())); + } + + void prewriteCheckOffset(long offset, long subtracting) throws BufferOverflowException { + if (BYTES_BOUNDS_UNCHECKED) + return; + prewriteCheckOffset0(offset, subtracting); + } + + private void prewriteCheckOffset0(long offset, long subtracting) { + if ((offset - subtracting) < start()) { + throw newBOERange(offset, subtracting, "prewriteCheckOffset0 failed. Offset: %d - subtracting: %d < start: %d", start()); + } + long limit0 = readLimit(); + if (offset > limit0) { + // assert false : "can't read bytes past the limit : limit=" + limit0 + ",offset=" + + // offset + + // ",adding=" + adding; + throw new DecoratedBufferOverflowException( + String.format("prewriteCheckOffset0 failed. Offset: %d > readLimit: %d", offset, limit0)); + } + } + + + @Override + public Bytes writeByte(byte i8) throws BufferOverflowException { + long offset = writeOffsetPositionMoved(1, 1); + bytesStore.writeByte(offset, i8); + return this; + } + + + @Override + public Bytes prewrite( byte[] bytes) throws BufferOverflowException { + long offset = prewriteOffsetPositionMoved(bytes.length); + bytesStore.write(offset, bytes); + return this; + } + + + @Override + public Bytes prewrite( BytesStore bytes) throws BufferOverflowException { + long offset = prewriteOffsetPositionMoved(bytes.readRemaining()); + bytesStore.write(offset, bytes); + return this; + } + + + @Override + public Bytes prewriteByte(byte i8) throws BufferOverflowException { + long offset = prewriteOffsetPositionMoved(1); + bytesStore.writeByte(offset, i8); + return this; + } + + + @Override + public Bytes prewriteInt(int i) throws BufferOverflowException { + long offset = prewriteOffsetPositionMoved(4); + bytesStore.writeInt(offset, i); + return this; + } + + + @Override + public Bytes prewriteShort(short i) throws BufferOverflowException { + long offset = prewriteOffsetPositionMoved(2); + bytesStore.writeShort(offset, i); + return this; + } + + + @Override + public Bytes prewriteLong(long l) throws BufferOverflowException { + long offset = prewriteOffsetPositionMoved(8); + bytesStore.writeLong(offset, l); + return this; + } + + protected final long writeOffsetPositionMoved(long adding) throws BufferOverflowException { + return writeOffsetPositionMoved(adding, adding); + } + + protected long writeOffsetPositionMoved(long adding, long advance) throws BufferOverflowException { + long oldPosition = writePosition; + writeCheckOffset(writePosition, adding); + uncheckedWritePosition(writePosition + advance); + return oldPosition; + } + + void uncheckedWritePosition(long writePosition) { + this.writePosition = writePosition; + } + + protected long prewriteOffsetPositionMoved(long subtracting) throws BufferOverflowException { + prewriteCheckOffset(readPosition, subtracting); + return readPosition -= subtracting; + } + + + @Override + public Bytes writeShort(short i16) throws BufferOverflowException { + long offset = writeOffsetPositionMoved(2); + bytesStore.writeShort(offset, i16); + return this; + } + + + @Override + public Bytes writeInt(int i) throws BufferOverflowException { + long offset = writeOffsetPositionMoved(4); + bytesStore.writeInt(offset, i); + return this; + } + + + @Override + public Bytes writeIntAdv(int i, int advance) throws BufferOverflowException { + long offset = writeOffsetPositionMoved(4, advance); + bytesStore.writeInt(offset, i); + return this; + } + + + @Override + public Bytes writeLong(long i64) throws BufferOverflowException { + long offset = writeOffsetPositionMoved(8); + bytesStore.writeLong(offset, i64); + return this; + } + + + @Override + public Bytes writeLongAdv(long i64, int advance) throws BufferOverflowException { + long offset = writeOffsetPositionMoved(8, advance); + bytesStore.writeLong(offset, i64); + return this; + } + + + @Override + public Bytes writeFloat(float f) throws BufferOverflowException { + long offset = writeOffsetPositionMoved(4); + bytesStore.writeFloat(offset, f); + return this; + } + + + @Override + public Bytes writeDouble(double d) throws BufferOverflowException { + long offset = writeOffsetPositionMoved(8); + bytesStore.writeDouble(offset, d); + return this; + } + + + @Override + public Bytes writeDoubleAndInt(double d, int i) throws BufferOverflowException { + long offset = writeOffsetPositionMoved(12); + bytesStore.writeDouble(offset, d); + bytesStore.writeInt(offset + 8, i); + return this; + } + + + @Override + public Bytes write( byte[] bytes, int offset, int length) throws BufferOverflowException { + if ((length + offset) > bytes.length) { + throw new ArrayIndexOutOfBoundsException("bytes.length=" + bytes.length + ", " + "length=" + length + ", offset=" + offset); + } + if (length > writeRemaining()) { + throw new DecoratedBufferOverflowException( + String.format("write failed. Length: %d > writeRemaining: %d", length, writeRemaining())); + } + int remaining = length; + while (remaining > 0) { + int copy = Math.min(remaining, safeCopySize()); // copy 64 KB at a time. + long offsetInRDO = writeOffsetPositionMoved(copy); + bytesStore.write(offsetInRDO, bytes, offset, copy); + offset += copy; + remaining -= copy; + } + return this; + } + + protected int safeCopySize() { + return 64 << 10; + } + + + @Override + public Bytes writeSome( ByteBuffer buffer) throws BufferOverflowException { + int length = (int) Math.min(buffer.remaining(), writeRemaining()); + ensureCapacity(length); + bytesStore.write(writePosition, buffer, buffer.position(), length); + uncheckedWritePosition(writePosition + length); + buffer.position(buffer.position() + length); + return this; + } + + + @Override + public Bytes writeOrderedInt(int i) throws BufferOverflowException { + long offset = writeOffsetPositionMoved(4); + bytesStore.writeOrderedInt(offset, i); + return this; + } + + + @Override + public Bytes writeOrderedLong(long i) throws BufferOverflowException { + long offset = writeOffsetPositionMoved(8); + bytesStore.writeOrderedLong(offset, i); + return this; + } + + @Override + public long addressForRead(long offset) throws BufferUnderflowException { + return bytesStore.addressForRead(offset); + } + + @Override + public long addressForWrite(long offset) throws UnsupportedOperationException, BufferOverflowException { + return bytesStore.addressForWrite(offset); + } + + @Override + public long addressForWritePosition() throws UnsupportedOperationException, BufferOverflowException { + return bytesStore.addressForWrite(writePosition); + } + + @Override + public int hashCode() { + return BytesStoreHash.hash32(this); + } + + @Override + public boolean equals(Object obj) { + if (!(obj instanceof BytesStore)) { + return false; + } + BytesStore bs = (BytesStore) obj; + long remaining = readRemaining(); + return (bs.readRemaining() == remaining) && + BytesInternal.contentEqual(this, bs); + } + + + @Override + public String toString() { + try { + return BytesInternal.toString(this); + } catch (Exception e) { + return e.toString(); + } + } + + @Override + public void nativeRead(long position, long address, long size) throws BufferUnderflowException { + bytesStore.nativeRead(position, address, size); + } + + @Override + public void nativeWrite(long address, long position, long size) throws BufferOverflowException { + bytesStore.nativeWrite(address, position, size); + } + + + @Override + public BytesStore bytesStore() { + return bytesStore; + } + + protected void bytesStore(BytesStore, Underlying> bytesStore) { + this.bytesStore = bytesStore; + } + + @Override + public int lastDecimalPlaces() { + return lastDecimalPlaces; + } + + @Override + public void lastDecimalPlaces(int lastDecimalPlaces) { + this.lastDecimalPlaces = Math.max(0, lastDecimalPlaces); + } + + @Override + public void lenient(boolean lenient) { + this.lenient = lenient; + } + + @Override + public boolean lenient() { + return lenient; + } + + @Override + public int byteCheckSum() throws IORuntimeException { + return byteCheckSum(readPosition(), readLimit()); + } + + @Override + public int byteCheckSum(long start, long end) { + if (end < Integer.MAX_VALUE && isDirectMemory()) + return byteCheckSum((int) start, (int) end); + return Bytes.super.byteCheckSum(start, end); + } + + public int byteCheckSum(int start, int end) { + int sum = 0; + for (int i = start; i < end; i++) { + sum += readByte(i); + } + return sum & 0xFF; + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/AbstractBytesStore.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/AbstractBytesStore.java new file mode 100644 index 0000000..6f2e6e3 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/AbstractBytesStore.java @@ -0,0 +1,72 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.bytes.algo.BytesStoreHash; +import net.openhft.chronicle.core.io.AbstractReferenceCounted; + +import java.nio.BufferUnderflowException; + +public abstract class AbstractBytesStore, Underlying> + extends AbstractReferenceCounted + implements BytesStore { + + protected AbstractBytesStore() { + } + + protected AbstractBytesStore(boolean monitored) { + super(monitored); + } + + @Override + public int peekUnsignedByte(long offset) throws BufferUnderflowException { + return offset >= readLimit() ? -1 : readUnsignedByte(offset); + } + + @Override + public int hashCode() { + return BytesStoreHash.hash32(this); + } + + @Override + public long readPosition() { + return 0L; + } + + @Override + public long readRemaining() { + return readLimit() - readPosition(); + } + + @Override + public long writeRemaining() { + return writeLimit() - writePosition(); + } + + @Override + public long start() { + return 0L; + } + + @Override + protected boolean performReleaseInBackground() { + return isDirectMemory(); + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/AppendableUtil.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/AppendableUtil.java new file mode 100644 index 0000000..496284c --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/AppendableUtil.java @@ -0,0 +1,332 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.Maths; +import net.openhft.chronicle.core.annotation.ForceInline; +import net.openhft.chronicle.core.annotation.Java9; +import org.jetbrains.annotations.NotNull; +import org.jetbrains.annotations.Nullable; + +import java.io.IOException; +import java.io.UTFDataFormatException; +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; + +@SuppressWarnings("rawtypes") +public enum AppendableUtil { + ; + + public static void setCharAt( Appendable sb, int index, char ch) + throws IllegalArgumentException, BufferOverflowException { + if (sb instanceof StringBuilder) + ((StringBuilder) sb).setCharAt(index, ch); + else if (sb instanceof Bytes) + ((Bytes) sb).writeByte(index, ch); + else + throw new IllegalArgumentException("" + sb.getClass()); + } + + public static void parseUtf8( BytesStore bs, StringBuilder sb, boolean utf, int length) throws UTFDataFormatRuntimeException { + BytesInternal.parseUtf8(bs, bs.readPosition(), sb, utf, length); + } + + @ForceInline + public static void setLength( Appendable sb, int newLength) + throws BufferUnderflowException, IllegalArgumentException { + if (sb instanceof StringBuilder) + ((StringBuilder) sb).setLength(newLength); + else if (sb instanceof Bytes) + ((Bytes) sb).readPositionRemaining(0, newLength); + else + throw new IllegalArgumentException("" + sb.getClass()); + } + + public static void append( Appendable sb, double value) + throws IllegalArgumentException, BufferOverflowException { + if (sb instanceof StringBuilder) + ((StringBuilder) sb).append(value); + else if (sb instanceof Bytes) + ((Bytes) sb).append(value); + else + throw new IllegalArgumentException("" + sb.getClass()); + } + + public static void append( Appendable sb, long value) + throws IllegalArgumentException, BufferOverflowException { + if (sb instanceof StringBuilder) + ((StringBuilder) sb).append(value); + else if (sb instanceof Bytes) + ((Bytes) sb).append(value); + else + throw new IllegalArgumentException("" + sb.getClass()); + } + + public static void append( ACS sb, String str) { + try { + sb.append(str); + } catch (IOException e) { + throw new AssertionError(e); + } + } + + public static void read8bitAndAppend( StreamingDataInput bytes, + StringBuilder appendable, + StopCharsTester tester) { + while (true) { + int c = bytes.readUnsignedByte(); + if (tester.isStopChar(c, bytes.peekUnsignedByte())) + return; + appendable.append((char) c); + if (bytes.readRemaining() == 0) + return; + } + } + + public static void readUTFAndAppend( StreamingDataInput bytes, + Appendable appendable, + StopCharsTester tester) + throws BufferUnderflowException { + try { + readUtf8AndAppend(bytes, appendable, tester); + } catch (IOException e) { + throw new AssertionError(e); + } + } + + public static void readUtf8AndAppend( StreamingDataInput bytes, + Appendable appendable, + StopCharsTester tester) + throws BufferUnderflowException, IOException { + while (true) { + int c = bytes.readUnsignedByte(); + if (c >= 128) { + bytes.readSkip(-1); + break; + } + // this is used for array class such as !type byte[] + if (c == '[' && bytes.peekUnsignedByte() == ']') { + appendable.append((char) c); + appendable.append((char) bytes.readUnsignedByte()); + if (bytes.readRemaining() == 0) + return; + continue; + } + + if (tester.isStopChar(c, bytes.peekUnsignedByte())) + return; + appendable.append((char) c); + if (bytes.readRemaining() == 0) + return; + } + + for (int c; (c = bytes.readUnsignedByte()) >= 0; ) { + switch (c >> 4) { + case 0: + case 1: + case 2: + case 3: + case 4: + case 5: + case 6: + case 7: + /* 0xxxxxxx */ + if (tester.isStopChar(c, bytes.peekUnsignedByte())) + return; + appendable.append((char) c); + break; + + case 12: + case 13: { + /* 110x xxxx 10xx xxxx */ + int char2 = bytes.readUnsignedByte(); + if ((char2 & 0xC0) != 0x80) + throw new UTFDataFormatException( + "malformed input around byte " + Integer.toHexString(char2)); + int c2 = (char) (((c & 0x1F) << 6) | + (char2 & 0x3F)); + if (tester.isStopChar(c2, bytes.peekUnsignedByte())) + return; + appendable.append((char) c2); + break; + } + + case 14: { + /* 1110 xxxx 10xx xxxx 10xx xxxx */ + int char2 = bytes.readUnsignedByte(); + int char3 = bytes.readUnsignedByte(); + + if (((char2 & 0xC0) != 0x80)) + throw new UTFDataFormatException( + "malformed input around byte " + Integer.toHexString(char2)); + if ((char3 & 0xC0) != 0x80) + throw new UTFDataFormatException( + "malformed input around byte " + Integer.toHexString(char3)); + int c3 = (char) (((c & 0x0F) << 12) | + ((char2 & 0x3F) << 6) | + (char3 & 0x3F)); + if (tester.isStopChar(c3, bytes.peekUnsignedByte())) + return; + appendable.append((char) c3); + break; + } + + default: + /* 10xx xxxx, 1111 xxxx */ + throw new UTFDataFormatException( + "malformed input around byte " + Integer.toHexString(c)); + } + } + } + + public static void parse8bit_SB1( Bytes bytes, StringBuilder sb, int length) + throws BufferUnderflowException { + if (length > bytes.readRemaining()) + throw new BufferUnderflowException(); + NativeBytesStore nbs = (NativeBytesStore) bytes.bytesStore(); + long offset = bytes.readPosition(); + int count = BytesInternal.parse8bit_SB1(offset, nbs, sb, length); + bytes.readSkip(count); + } + + public static void parse8bit( StreamingDataInput bytes, Appendable appendable, int utflen) + throws BufferUnderflowException, IOException { + if (appendable instanceof StringBuilder) { + final StringBuilder sb = (StringBuilder) appendable; + if (bytes instanceof Bytes && ((Bytes) bytes).bytesStore() instanceof NativeBytesStore) { + parse8bit_SB1((Bytes) bytes, sb, utflen); + } else { + BytesInternal.parse8bit1(bytes, sb, utflen); + } + } else { + BytesInternal.parse8bit1(bytes, appendable, utflen); + } + } + + public static void append(ACS a, CharSequence cs, long start, long len) { + if (a instanceof StringBuilder) { + if (cs instanceof Bytes) + ((StringBuilder) a).append(Bytes.toString(((Bytes) cs), start, len)); + else + ((StringBuilder) a).append(cs.subSequence(Maths.toInt32(start), Maths.toInt32(len))); + } else if (a instanceof Bytes) { + ((Bytes) a).appendUtf8(cs, Maths.toInt32(start), Maths.toInt32(len)); + } else { + throw new UnsupportedOperationException(); + } + } + + public static long findUtf8Length( CharSequence str) throws IndexOutOfBoundsException { + int strlen = str.length(); + long utflen = strlen;/* use charAt instead of copying String to char array */ + for (int i = 0; i < strlen; i++) { + char c = str.charAt(i); + if (c <= 0x007F) { + continue; + } + if (c <= 0x07FF) { + utflen++; + + } else { + utflen += 2; + } + } + return utflen; + } + + @Java9 + public static long findUtf8Length( byte[] bytes, byte coder) { + long utflen; + + if (coder == 0) { + int strlen = bytes.length; + utflen = bytes.length; + + //noinspection ForLoopReplaceableByForEach + for (int i = 0; i < strlen; i++) { + int b = (bytes[i] & 0xFF); + + if (b > 0x007F) { + utflen++; + } + } + } else { + int strlen = bytes.length; + utflen = 0;/* use charAt instead of copying String to char array */ + for (int i = 0; i < strlen; i += 2) { + char c = (char) (((bytes[i + 1] & 0xFF) << 8) | (bytes[i] & 0xFF)); + + if (c <= 0x007F) { + utflen += 1; + continue; + } + if (c <= 0x07FF) { + utflen += 2; + } else { + utflen += 3; + } + } + } + + return utflen; + } + + @Java9 + public static long findUtf8Length( byte[] chars) { + long utflen = 0; /* use charAt instead of copying String to char array */ + int strlen = chars.length; + for (int i = 0; i < strlen; i++) { + int c = chars[i] & 0xFF; // unsigned byte + + if (c == 0) { // we have hit end of string + break; + } + + if (c >= 0xF0) { + utflen += 4; + i += 3; + } else if (c >= 0xE0) { + utflen += 3; + i += 2; + } else if (c >= 0xC0) { + utflen += 2; + i += 1; + } else { + utflen += 1; + } + } + return utflen; + } + + public static long findUtf8Length( char[] chars) { + long utflen = chars.length;/* use charAt instead of copying String to char array */ + for (char c : chars) { + if (c <= 0x007F) { + continue; + } + if (c <= 0x07FF) { + utflen++; + + } else { + utflen += 2; + } + } + return utflen; + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BinaryBytesMethodWriterInvocationHandler.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BinaryBytesMethodWriterInvocationHandler.java new file mode 100644 index 0000000..7ae6828 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BinaryBytesMethodWriterInvocationHandler.java @@ -0,0 +1,55 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.Jvm; +import net.openhft.chronicle.core.util.AbstractInvocationHandler; + +import java.lang.reflect.InvocationTargetException; +import java.lang.reflect.Method; +import java.util.HashMap; +import java.util.LinkedHashMap; +import java.util.Map; +import java.util.function.Function; + +public class BinaryBytesMethodWriterInvocationHandler extends AbstractInvocationHandler implements BytesMethodWriterInvocationHandler { + private final Function methodToId; + @SuppressWarnings("rawtypes") + private final BytesOut out; + private final Map methodToIdMap = new LinkedHashMap<>(); + + @SuppressWarnings("rawtypes") + public BinaryBytesMethodWriterInvocationHandler(Function methodToId, BytesOut out) { + super(HashMap::new); + this.methodToId = methodToId; + this.out = out; + } + + @Override + protected Object doInvoke(Object proxy, Method method, Object[] args) throws InvocationTargetException, IllegalAccessException { + MethodEncoder info = methodToIdMap.computeIfAbsent(method, methodToId); + if (info == null) { + Jvm.warn().on(getClass(), "Unknown method " + method + " ignored"); + return null; + } + out.comment(method.getName()); + out.writeStopBit(info.messageId()); + info.encode(args, out); + return null; + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BinaryWireCode.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BinaryWireCode.java new file mode 100644 index 0000000..b4daf2f --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BinaryWireCode.java @@ -0,0 +1,126 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes; + +import org.jetbrains.annotations.NotNull; + +import java.lang.reflect.Field; + +public interface BinaryWireCode { + + // sequence of length 0 - 255 bytes + int BYTES_LENGTH8 = 0x80; + // sequence of length 0 - 2^16-1 bytes + int BYTES_LENGTH16 = 0x81; + // sequence of length 0 - 2^32-1 + int BYTES_LENGTH32 = 0x82; + // sequence of length 0 - 255 +// public static final int BYTES_LENGTH64 = 0x83; + + int FIELD_ANCHOR = 0x87; + int ANCHOR = 0x88; + int UPDATED_ALIAS = 0x89; + + // an array of unsigned bytes + int U8_ARRAY = 0x8A; + // public static final int U16_ARRAY = 0x8B; +// public static final int I32_ARRAY = 0x8C; + int I64_ARRAY = 0x8D; + int PADDING32 = 0x8E; + int PADDING = 0x8F; + + int FLOAT32 = 0x90; + int FLOAT64 = 0x91; + int FLOAT_STOP_2 = 0x92; + int FLOAT_STOP_4 = 0x94; + int FLOAT_STOP_6 = 0x96; + int FLOAT_SET_LOW_0 = 0x9A; + int FLOAT_SET_LOW_2 = 0x9B; + int FLOAT_SET_LOW_4 = 0x9C; + // 0x98 - 0x9F + + int UUID = 0xA0; + int UINT8 = 0xA1; + int UINT16 = 0xA2; + int UINT32 = 0xA3; + int INT8 = 0xA4; + int INT16 = 0xA5; + int INT32 = 0xA6; + int INT64 = 0xA7; + int SET_LOW_INT8 = 0xA8; + int SET_LOW_INT16 = 0xA9; + // public static final int FIXED_5 = 0xAA; +// public static final int FIXED_4 = 0xAB; +// public static final int FIXED_3 = 0xAC; +// public static final int FIXED_2 = 0xAD; + int STOP_BIT = 0xAE; + int INT64_0x = 0xAF; + + int FALSE = 0xB0; + int TRUE = 0xB1; + int TIME = 0xB2; + int DATE = 0xB3; + int DATE_TIME = 0xB4; + int ZONED_DATE_TIME = 0xB5; + int TYPE_PREFIX = 0xB6; + int FIELD_NAME_ANY = 0xB7; + int STRING_ANY = 0xB8; + int EVENT_NAME = 0xB9; + int FIELD_NUMBER = 0xBA; + int NULL = 0xBB; + int TYPE_LITERAL = 0xBC; + int EVENT_OBJECT = 0xBD; + int COMMENT = 0xBE; + int HINT = 0xBF; + + int FIELD_NAME0 = 0xC0; + // ... + int FIELD_NAME31 = 0xDF; + + int STRING_0 = 0xE0; + // ... + int STRING_31 = 0xFF; + + String[] STRING_FOR_CODE = _stringForCode(BinaryWireCode.class); + + static String[] _stringForCode(Class clazz) { + String[] stringForCode = new String[256]; + try { + for ( Field field : clazz.getDeclaredFields()) { + if (field.getType() == int.class) + stringForCode[field.getInt(null)] = field.getName(); + else if (field.getType() == byte.class) + stringForCode[field.getByte(null) & 0xFF] = field.getName(); + } + for (int i = FIELD_NAME0; i <= FIELD_NAME31; i++) + stringForCode[i] = "FIELD_" + i; + for (int i = STRING_0; i <= STRING_31; i++) + stringForCode[i] = "STRING_" + i; + for (int i = 0; i < stringForCode.length; i++) { + if (stringForCode[i] == null) + if (i <= ' ' || i >= 127) + stringForCode[i] = "Unknown_0x" + Integer.toHexString(i).toUpperCase(); + else + stringForCode[i] = "Unknown_" + (char) i; + } + } catch (IllegalAccessException e) { + throw new AssertionError(e); + } + return stringForCode; + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ByteStringAppender.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ByteStringAppender.java new file mode 100644 index 0000000..3b2ea1d --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ByteStringAppender.java @@ -0,0 +1,308 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.Maths; +import net.openhft.chronicle.core.io.IORuntimeException; +import net.openhft.chronicle.core.io.UnsafeText; +import org.jetbrains.annotations.NotNull; + +import java.io.Writer; +import java.math.BigDecimal; +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; + +/** + * Methods to append text to a Bytes. This extends the Appendable interface. + */ +@SuppressWarnings({"rawtypes", "unchecked"}) +public interface ByteStringAppender> extends StreamingDataOutput, Appendable { + + /** + * @return these Bytes as a Writer + */ + + default Writer writer() { + return new ByteStringWriter(this); + } + + /** + * Append a char in UTF-8 + * + * @param ch to append + * @return this + * @throws BufferUnderflowException if the capacity of the underlying buffer was exceeded + */ + @Override + + default B append(char ch) throws BufferOverflowException { + BytesInternal.appendUtf8Char(this, ch); + return (B) this; + } + + /** + * Append a characters in UTF-8 + * + * @param cs to append + * @return this + * @throws BufferUnderflowException if the capacity of the underlying buffer was exceeded + */ + @Override + + default B append( CharSequence cs) throws BufferOverflowException { + if (cs.length() == 0) + return (B) this; + try { + return append(cs, 0, cs.length()); + } catch (IndexOutOfBoundsException e) { + throw new AssertionError(e); + } + } + + /** + * Append a boolean as T or F + * + * @param flag to append + * @return this + * @throws BufferUnderflowException if the capacity of the underlying buffer was exceeded + * @throws IORuntimeException if an error occurred while attempting to resize the underlying buffer + */ + + default B append(boolean flag) throws BufferOverflowException { + return append(flag ? 'T' : 'F'); + } + + /** + * Append an int in decimal + * + * @param value to append + * @return this + * @throws BufferUnderflowException if the capacity of the underlying buffer was exceeded + * @throws IORuntimeException if an error occurred while attempting to resize the underlying buffer + */ + + default B append(int value) throws BufferOverflowException { + BytesInternal.appendBase10(this, value); + return (B) this; + } + + /** + * Append a long in decimal + * + * @param value to append + * @return this + * @throws BufferUnderflowException if the capacity of the underlying buffer was exceeded + * @throws IORuntimeException if an error occurred while attempting to resize the underlying buffer + */ + + default B append(long value) throws BufferOverflowException { + if (value == (int) value) + BytesInternal.appendBase10(this, (int) value); + else + BytesInternal.appendBase10(this, value); + return (B) this; + } + + + default B appendBase(long value, int base) throws BufferOverflowException { + BytesInternal.append(this, value, base); + return (B) this; + } + + + default B appendBase16(long value) throws BufferOverflowException { + BytesInternal.appendBase16(this, value, 1); + return (B) this; + } + + + default B appendBase16(long value, int minDigits) throws BufferOverflowException { + BytesInternal.appendBase16(this, value, minDigits); + return (B) this; + } + + /** + * Append a long in decimal with a given number of decimal places. Print value * 10^-decimalPlaces + * + * @param value to append + * @param decimalPlaces to shift the decimal place. + * @return this + * @throws BufferUnderflowException if the capacity of the underlying buffer was exceeded + * @throws IORuntimeException if an error occurred while attempting to resize the underlying buffer + */ + + default B appendDecimal(long value, int decimalPlaces) throws BufferOverflowException { + BytesInternal.appendDecimal(this, value, decimalPlaces); + return (B) this; + } + + /** + * Append a float in decimal notation + * + * @param f to append + * @return this + * @throws BufferUnderflowException if the capacity of the underlying buffer was exceeded + * @throws IORuntimeException if an error occurred while attempting to resize the underlying buffer + */ + + default B append(float f) throws BufferOverflowException { + float f2 = Math.abs(f); + if (f2 > 1e6 || f2 < 1e-3) { + return append(Float.toString(f)); + } + int precision = (int) Math.floor(6 - Math.log10(f2)); + long tens = Maths.tens(precision); + return append((double) Math.round(f * tens) / tens); + } + + /** + * Append a double in decimal notation + * + * @param d to append + * @return this + * @throws BufferUnderflowException if the capacity of the underlying buffer was exceeded + * @throws IORuntimeException if an error occurred while attempting to resize the underlying buffer + */ + + default B append(double d) throws BufferOverflowException { + BytesInternal.append(this, d); + return (B) this; + } + + /** + * Append a double in decimal notation to a specific number of decimal places. Trailing zeros are not truncated. + *

+ * If the number would normally be printed with more decimal places, the number is rounded. + * + * @param d to append + * @param decimalPlaces to always produce + * @return this + * @throws BufferUnderflowException if the capacity of the underlying buffer was exceeded + * @throws IORuntimeException if an error occurred while attempting to resize the underlying buffer + */ + + default B append(double d, int decimalPlaces) throws BufferOverflowException { + if (decimalPlaces < 0) + throw new IllegalArgumentException(); + if (decimalPlaces < 18) { + double d2 = d * Maths.tens(decimalPlaces); + if (d2 < Long.MAX_VALUE && d2 > Long.MIN_VALUE) { + // changed from java.lang.Math.round(d2) as this was shown up to cause latency + long round = d2 > 0.0 ? (long) (d2 + 0.5) : (long) (d2 - 0.5); + if (canWriteDirect(20 + decimalPlaces)) { + long address = addressForWritePosition(); + long address2 = UnsafeText.appendBase10d(address, round, decimalPlaces); + writeSkip(address2 - address); + } else { + appendDecimal(round, decimalPlaces); + } + return (B) this; + } + } + return append(d); + } + + /** + * Append a portion of a String to the Bytes in UTF-8. + * + * @param cs to copy + * @param start index of the first char inclusive + * @param end index of the last char exclusive. + * @return this + * @throws BufferUnderflowException if the capacity of the underlying buffer was exceeded + */ + @Override + + default B append( CharSequence cs, int start, int end) + throws IndexOutOfBoundsException, BufferOverflowException { + BytesInternal.appendUtf8(this, cs, start, end - start); + return (B) this; + } + + /** + * Append a String to the Bytes in ISO-8859-1 + * + * @param cs to write + * @return this + * @throws BufferOverflowException If the string as too large to write in the capacity available + * @throws BufferUnderflowException if the capacity of the underlying buffer was exceeded + */ + + default B append8bit( CharSequence cs) + throws BufferOverflowException, BufferUnderflowException, IndexOutOfBoundsException { + return append8bit(cs, 0, cs.length()); + } + + default B append8bit( BytesStore bs) + throws BufferOverflowException, BufferUnderflowException, IndexOutOfBoundsException { + return write(bs, 0L, bs.readRemaining()); + } + + default B append8bit( String cs) + throws BufferOverflowException, BufferUnderflowException, IndexOutOfBoundsException { + return append8bit(cs, 0, cs.length()); + } + + /** + * Append a portion of a String to the Bytes in ISO-8859-1 + * + * @param cs to copy + * @param start index of the first char inclusive + * @param end index of the last char exclusive. + * @return this + * @throws BufferOverflowException If the string as too large to write in the capacity available + * @throws BufferUnderflowException if the capacity of the underlying buffer was exceeded + * @throws IndexOutOfBoundsException if the start or the end are not valid for the CharSequence + */ + default B append8bit( CharSequence cs, int start, int end) + throws IllegalArgumentException, BufferOverflowException, BufferUnderflowException, IndexOutOfBoundsException { + if (cs instanceof BytesStore) { + return write((BytesStore) cs, (long) start, end); + } + for (int i = start; i < end; i++) { + char c = cs.charAt(i); + if (c > 255) c = '?'; + writeByte((byte) c); + } + return (B) this; + } + + default B append8bit( BytesStore bs, long start, long end) + throws IllegalArgumentException, BufferOverflowException, BufferUnderflowException, IndexOutOfBoundsException { + return write(bs, start, end); + } + + + default B appendDateMillis(long dateInMillis) { + BytesInternal.appendDateMillis(this, dateInMillis); + return (B) this; + } + + + default B appendTimeMillis(long timeOfDayInMillis) { + BytesInternal.appendTimeMillis(this, timeOfDayInMillis % 86400_000L); + return (B) this; + } + + + default B append( BigDecimal bigDecimal) { + append(bigDecimal.toString()); + return (B) this; + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ByteStringParser.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ByteStringParser.java new file mode 100644 index 0000000..894d967 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ByteStringParser.java @@ -0,0 +1,252 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.Maths; +import net.openhft.chronicle.core.annotation.ForceInline; +import net.openhft.chronicle.core.io.IORuntimeException; +import org.jetbrains.annotations.NotNull; +import org.jetbrains.annotations.Nullable; + +import java.io.Reader; +import java.math.BigDecimal; +import java.nio.BufferUnderflowException; + +/** + * Supports parsing bytes as text. You can parse them as special or white space terminated text. + */ +interface ByteStringParser> extends StreamingDataInput { + /** + * Access these bytes as an ISO-8859-1 encoded Reader + * + * @return as a Reader + */ + + default Reader reader() { + return new ByteStringReader(this); + } + + /** + * Return true or false, or null if it could not be detected + * as true or false. Case is not important + *

+ *

false: f, false, n, no, 0 + *

+ *

true: t, true, y, yes, 1 + * + * @param tester to detect the end of the text. + * @return true, false, or null if neither. + */ + + default Boolean parseBoolean( StopCharTester tester) { + return BytesInternal.parseBoolean(this, tester); + } + + + default Boolean parseBoolean() { + return BytesInternal.parseBoolean(this, StopCharTesters.NON_ALPHA_DIGIT); + } + + /** + * parse text with UTF-8 decoding as character terminated. + * + * @param stopCharTester to check if the end has been reached. + * @return the text as a String. + */ + + @ForceInline + default String parseUtf8( StopCharTester stopCharTester) { + return BytesInternal.parseUtf8(this, stopCharTester); + } + + + @Deprecated(/* to be removed in x.22 */) + default String parseUTF( StopCharTester stopCharTester) { + return parseUtf8(stopCharTester); + } + + /** + * parse text with UTF-8 decoding as character terminated. + * + * @param buffer to populate + * @param stopCharTester to check if the end has been reached. + */ + @ForceInline + default void parseUtf8( Appendable buffer, StopCharTester stopCharTester) throws BufferUnderflowException { + BytesInternal.parseUtf8(this, buffer, stopCharTester); + } + + @Deprecated(/* to be removed in x.22 */) + default void parseUTF( Appendable buffer, StopCharTester stopCharTester) throws BufferUnderflowException { + parseUtf8(buffer, stopCharTester); + } + + /** + * parse text with UTF-8 decoding as one or two character terminated. + * + * @param buffer to populate + * @param stopCharsTester to check if the end has been reached. + */ + @ForceInline + default void parseUtf8( Appendable buffer, StopCharsTester stopCharsTester) + throws BufferUnderflowException, IORuntimeException { + BytesInternal.parseUtf8(this, buffer, stopCharsTester); + } + + @Deprecated(/* to be removed in x.22 */) + default void parseUTF( Appendable buffer, StopCharsTester stopCharsTester) + throws BufferUnderflowException, IORuntimeException { + parseUtf8(buffer, stopCharsTester); + } + + /** + * parse text with ISO-8859-1 decoding as character terminated. + * + * @param buffer to populate + * @param stopCharTester to check if the end has been reached. + */ + @SuppressWarnings("rawtypes") + @ForceInline + default void parse8bit(Appendable buffer, StopCharTester stopCharTester) + throws BufferUnderflowException { + if (buffer instanceof StringBuilder) + BytesInternal.parse8bit(this, (StringBuilder) buffer, stopCharTester); + else + BytesInternal.parse8bit(this, (Bytes) buffer, stopCharTester); + } + + /** + * parse text with ISO-8859-1 decoding as character terminated. + * + * @param stopCharTester to check if the end has been reached. + */ + default String parse8bit( StopCharTester stopCharTester) + throws BufferUnderflowException { + return BytesInternal.parse8bit(this, stopCharTester); + } + + /** + * parse text with ISO-8859-1 decoding as character terminated. + * + * @param buffer to populate + * @param stopCharsTester to check if the end has been reached. + */ + @SuppressWarnings("rawtypes") + @ForceInline + default void parse8bit(Appendable buffer, StopCharsTester stopCharsTester) + throws BufferUnderflowException { + if (buffer instanceof StringBuilder) + BytesInternal.parse8bit(this, (StringBuilder) buffer, stopCharsTester); + else + BytesInternal.parse8bit(this, (Bytes) buffer, stopCharsTester); + } + + @SuppressWarnings("rawtypes") + default void parse8bit(Bytes buffer, StopCharsTester stopCharsTester) + throws BufferUnderflowException { + BytesInternal.parse8bit(this, buffer, stopCharsTester); + } + + default void parse8bit(StringBuilder buffer, StopCharsTester stopCharsTester) + throws BufferUnderflowException { + BytesInternal.parse8bit(this, buffer, stopCharsTester); + } + + /** + * parse text as an int. The terminating character is consumed. + * + * @return an int. + */ + @ForceInline + default int parseInt() throws BufferUnderflowException { + return Maths.toInt32(BytesInternal.parseLong(this)); + } + + /** + * parse text as a long integer. The terminating character is consumed. + * + * @return a long. + */ + @ForceInline + default long parseLong() throws BufferUnderflowException { + return BytesInternal.parseLong(this); + } + + /** + * parse text as a float decimal. The terminating character is consumed. + *

+ * The number of decimal places can be retrieved with lastDecimalPlaces() + * + * @return a float. + */ + default float parseFloat() throws BufferUnderflowException { + return (float) BytesInternal.parseDouble(this); + } + + /** + * parse text as a double decimal. The terminating character is consumed. + *

+ * The number of decimal places can be retrieved with lastDecimalPlaces() + * + * @return a double. + */ + default double parseDouble() throws BufferUnderflowException { + return BytesInternal.parseDouble(this); + } + + /** + * Parse the significant digits of a decimal number. + *

+ * The number of decimal places can be retrieved with lastDecimalPlaces() + * + * @return the significant digits + */ + default long parseLongDecimal() throws BufferUnderflowException { + return BytesInternal.parseLongDecimal(this); + } + + /** + * @return the last number of decimal places for parseDouble or parseLongDecimal + */ + int lastDecimalPlaces(); + + /** + * Store the last number of decimal places. If + * + * @param lastDecimalPlaces set the number of decimal places if positive, otherwise 0. + */ + void lastDecimalPlaces(int lastDecimalPlaces); + + /** + * Skip text until a terminating character is reached. + * + * @param tester to stop at + * @return true if a terminating character was found, false if the end of the buffer was reached. + */ + @ForceInline + default boolean skipTo( StopCharTester tester) { + return BytesInternal.skipTo(this, tester); + } + + + default BigDecimal parseBigDecimal() { + return new BigDecimal(parseUtf8(StopCharTesters.NUMBER_END)); + } + +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ByteStringReader.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ByteStringReader.java new file mode 100644 index 0000000..aaa59e9 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ByteStringReader.java @@ -0,0 +1,66 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import java.io.IOException; +import java.io.Reader; +import java.nio.BufferUnderflowException; + +/** + * A Reader wrapper for Bytes. This Reader moves the readPosition() of the underlying Bytes up to the readLimit() + */ +@SuppressWarnings("rawtypes") +public class ByteStringReader extends Reader { + private final ByteStringParser in; + + public ByteStringReader(ByteStringParser in) { + this.in = in; + } + + @Override + public int read() { + return in.readRemaining() > 0 ? in.readUnsignedByte() : -1; + } + + @Override + public long skip(long n) throws IOException { + long len = Math.min(in.readRemaining(), n); + try { + in.readSkip(len); + + } catch (BufferUnderflowException e) { + throw new IOException(e); + } + return len; + } + + @Override + public int read(char[] cbuf, int off, int len) throws IOException { + try { + return in.read(cbuf, off, len); + + } catch (BufferUnderflowException e) { + throw new IOException(e); + } + } + + @Override + public void close() { + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ByteStringWriter.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ByteStringWriter.java new file mode 100644 index 0000000..8dffbe1 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ByteStringWriter.java @@ -0,0 +1,94 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import org.jetbrains.annotations.NotNull; + +import java.io.IOException; +import java.io.Writer; +import java.nio.BufferOverflowException; + +/** + * A Writer for an underlying Bytes. This moves the writePosition() up to the writeLimit(); + */ +@SuppressWarnings("rawtypes") +class ByteStringWriter extends Writer { + private final ByteStringAppender out; + + ByteStringWriter(ByteStringAppender out) { + this.out = out; + } + + @Override + public void write(int c) throws IOException { + try { + out.append((char) c); + + } catch ( BufferOverflowException e) { + throw new IOException(e); + } + } + + @Override + public void write( String str) throws IOException { + out.append(str); + } + + @Override + public void write( String str, int off, int len) throws IOException { + out.append(str, off, off + len); + } + + + @Override + public Writer append( CharSequence csq) throws IOException { + out.append(csq); + return this; + } + + + @Override + public Writer append( CharSequence csq, int start, int end) throws IOException { + out.append(csq, start, end); + return this; + } + + + @Override + public Writer append(char c) throws IOException { + out.append(c); + return this; + } + + @Override + public void flush() { + + } + + @Override + public void close() { + + } + + @Override + public void write(char[] cbuf, int off, int len) throws IOException { + for (int i = 0; i < len; i++) + out.append(cbuf[i + off]); + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/Byteable.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/Byteable.java new file mode 100644 index 0000000..a5c6a8d --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/Byteable.java @@ -0,0 +1,52 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import org.jetbrains.annotations.Nullable; + +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; + +/** + * This Interface allows a reference to off heap memory to be reassigned. + *

+ * A reference to off heap memory is a proxy for some memory which sits outside the heap. + */ +public interface Byteable, Underlying> { + /** + * This setter for a data type which points to an underlying ByteStore. + * + * @param bytesStore the fix point ByteStore + * @param offset the offset within the ByteStore + * @param length the length in the ByteStore + */ + void bytesStore(BytesStore bytesStore, long offset, long length) + throws IllegalStateException, IllegalArgumentException, BufferOverflowException, + BufferUnderflowException; + + + BytesStore bytesStore(); + + long offset(); + + /** + * @return the maximum size in byte for this reference. + */ + long maxSize(); +} \ No newline at end of file diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/Bytes.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/Bytes.java new file mode 100644 index 0000000..7cebc69 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/Bytes.java @@ -0,0 +1,944 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.Maths; +import net.openhft.chronicle.core.annotation.UsedViaReflection; +import net.openhft.chronicle.core.io.IORuntimeException; +import net.openhft.chronicle.core.io.ReferenceOwner; +import net.openhft.chronicle.core.util.ObjectUtils; +import net.openhft.chronicle.core.util.StringUtils; +import org.jetbrains.annotations.NotNull; +import org.jetbrains.annotations.Nullable; + +import java.io.IOException; +import java.io.InputStream; +import java.io.OutputStream; +import java.math.BigDecimal; +import java.math.BigInteger; +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; +import java.nio.ByteBuffer; +import java.nio.charset.StandardCharsets; + +/** + * Bytes is a pointer to a region of memory within a BytesStore. It can be for a fixed region of + * memory or an "elastic" buffer which can be resized, but not for a fixed region.

This is a + * BytesStore which is mutable and not thread safe. It has a write position and read position which + * must follow these constraints

start() <= readPosition() <= writePosition() <= + * writeLimit() <= capacity()

Also readLimit() == writePosition() and readPosition() + * <= safeLimit();

+ */ +@SuppressWarnings({"rawtypes", "unchecked"}) +public interface Bytes extends + BytesStore, Underlying>, + BytesIn, + BytesOut { + + long MAX_CAPACITY = Long.MAX_VALUE & ~0xF; // 8 EiB - 16 + int MAX_HEAP_CAPACITY = Integer.MAX_VALUE & ~0xF; // 2 GiB - 16 + @Deprecated(/* to be removed in x.22 */) + int MAX_BYTE_BUFFER_CAPACITY = MAX_HEAP_CAPACITY; + int DEFAULT_BYTE_BUFFER_CAPACITY = 256; + + /** + * Creates and returns a new elastic wrapper for a direct (off-heap) ByteBuffer with a default capacity + * which will be resized as required. + * + * @return a new elastic wrapper for a direct (off-heap) ByteBuffer with a default capacity + * which will be resized as required + */ + + static Bytes elasticByteBuffer() { + return elasticByteBuffer(DEFAULT_BYTE_BUFFER_CAPACITY); + } + + /** + * Creates and returns a new elastic wrapper for a direct (off-heap) ByteBuffer with + * the given {@code initialCapacity} which will be resized as required. + * + * @param initialCapacity the initial non-negative capacity given in bytes + * @return a new elastic wrapper for a direct (off-heap) ByteBuffer with + * the given {@code initialCapacity} which will be resized as required + */ + + static Bytes elasticByteBuffer(int initialCapacity) { + return elasticByteBuffer(initialCapacity, MAX_HEAP_CAPACITY); + } + + /** + * Creates and returns a new elastic wrapper for a direct (off-heap) ByteBuffer with + * the given {@code initialCapacity} which will be resized as required up + * to the given {@code maxSize}. + * + * @param initialCapacity the initial non-negative capacity given in bytes + * @param maxCapacity the max capacity given in bytes equal or greater than initialCapacity + * @return a new elastic wrapper for a direct (off-heap) ByteBuffer with + * the given {@code initialCapacity} which will be resized as required up + * to the given {@code maxCapacity} + */ + + static Bytes elasticByteBuffer(int initialCapacity, int maxCapacity) { + NativeBytesStore bs = NativeBytesStore.elasticByteBuffer(initialCapacity, maxCapacity); + try { + return bs.bytesForWrite(); + } finally { + bs.release(ReferenceOwner.INIT); + } + } + + /** + * Creates and returns a new elastic wrapper for a heap ByteBuffer with + * the given {@code initialCapacity} which will be resized as required. + * + * @param initialCapacity the initial non-negative capacity given in bytes + * @return a new elastic wrapper for a heap ByteBuffer with + * the given {@code initialCapacity} which will be resized as required + */ + + static Bytes elasticHeapByteBuffer(int initialCapacity) { + HeapBytesStore bs = HeapBytesStore.wrap(ByteBuffer.allocate(initialCapacity)); + try { + return NativeBytes.wrapWithNativeBytes(bs, Bytes.MAX_HEAP_CAPACITY); + } finally { + bs.release(INIT); + } + } + + + static Bytes elasticHeapByteBuffer() { + return elasticHeapByteBuffer(128); + } + + /** + * Wrap the ByteBuffer ready for reading + * Method for convenience only - might not be ideal for performance (creates garbage). + * To avoid garbage, use something like this example: + *
{@code
+     * import net.openhft.chronicle.bytes.Bytes;
+     * import java.nio.ByteBuffer;
+     *
+     * public class ChronicleBytesWithByteBufferExampleTest {
+     *     private static final String HELLO_WORLD = "hello world";
+     *
+     *     public static void main(String[] args) throws InterruptedException {
+     *         //setup Bytes and ByteBuffer to write from
+     *         Bytes b = Bytes.elasticByteBuffer();
+     *         ByteBuffer toWriteFrom = ByteBuffer.allocate(HELLO_WORLD.length());
+     *         toWriteFrom.put(HELLO_WORLD.getBytes(), 0, HELLO_WORLD.length());
+     *         toWriteFrom.flip();
+     *         byte[] toReadTo = new byte[HELLO_WORLD.length()];
+     *
+     *         doWrite(b, toWriteFrom);
+     *         ByteBuffer byteBuffer = doRead(b);
+     *
+     *         //check result
+     *         final StringBuilder sb = new StringBuilder();
+     *         for (int i = 0; i < HELLO_WORLD.length(); i++) {
+     *             sb.append((char) byteBuffer.get());
+     *         }
+     *         assert sb.toString().equals(HELLO_WORLD): "Failed - strings not equal!";
+     *     }
+     *
+     *     private static void doWrite(Bytes b, ByteBuffer toWrite) {
+     *         //no garbage when writing to Bytes from ByteBuffer
+     *         b.clear();
+     *         b.write(b.writePosition(), toWrite, toWrite.position(), toWrite.limit());
+     *     }
+     *
+     *     private static ByteBuffer doRead(Bytes b) {
+     *         //no garbage when getting the underlying ByteBuffer
+     *         assert b.underlyingObject() instanceof ByteBuffer;
+     *         ByteBuffer byteBuffer = (ByteBuffer) b.underlyingObject();
+     *         return byteBuffer;
+     *     }
+     * }
+     * }
+ * + * @param byteBuffer to wrap + * @return a Bytes which wraps the provided ByteBuffer and is ready for reading. + */ + + static Bytes wrapForRead( ByteBuffer byteBuffer) { + BytesStore bs = BytesStore.wrap(byteBuffer); + try { + Bytes bbb = bs.bytesForRead(); + bbb.readLimit(byteBuffer.limit()); + bbb.readPosition(byteBuffer.position()); + return bbb; + } finally { + bs.release(INIT); + } + } + + /** + * Wrap the ByteBuffer ready for writing + * Method for convenience only - might not be ideal for performance (creates garbage). + * To avoid garbage, use something like this example: + *
{@code
+     * import net.openhft.chronicle.bytes.Bytes;
+     * import java.nio.ByteBuffer;
+     *
+     * public class ChronicleBytesWithByteBufferExampleTest {
+     *     private static final String HELLO_WORLD = "hello world";
+     *
+     *     public static void main(String[] args) throws InterruptedException {
+     *         //setup Bytes and ByteBuffer to write from
+     *         Bytes b = Bytes.elasticByteBuffer();
+     *         ByteBuffer toWriteFrom = ByteBuffer.allocate(HELLO_WORLD.length());
+     *         toWriteFrom.put(HELLO_WORLD.getBytes(), 0, HELLO_WORLD.length());
+     *         toWriteFrom.flip();
+     *         byte[] toReadTo = new byte[HELLO_WORLD.length()];
+     *
+     *         doWrite(b, toWriteFrom);
+     *         ByteBuffer byteBuffer = doRead(b);
+     *
+     *         //check result
+     *         final StringBuilder sb = new StringBuilder();
+     *         for (int i = 0; i < HELLO_WORLD.length(); i++) {
+     *             sb.append((char) byteBuffer.get());
+     *         }
+     *         assert sb.toString().equals(HELLO_WORLD): "Failed - strings not equal!";
+     *     }
+     *
+     *     private static void doWrite(Bytes b, ByteBuffer toWrite) {
+     *         //no garbage when writing to Bytes from ByteBuffer
+     *         b.clear();
+     *         b.write(b.writePosition(), toWrite, toWrite.position(), toWrite.limit());
+     *     }
+     *
+     *     private static ByteBuffer doRead(Bytes b) {
+     *         //no garbage when getting the underlying ByteBuffer
+     *         assert b.underlyingObject() instanceof ByteBuffer;
+     *         ByteBuffer byteBuffer = (ByteBuffer) b.underlyingObject();
+     *         return byteBuffer;
+     *     }
+     * }
+     * }
+ * + * @param byteBuffer to wrap + * @return a Bytes which wraps the provided ByteBuffer and is ready for writing. + */ + + static Bytes wrapForWrite( ByteBuffer byteBuffer) { + BytesStore bs = BytesStore.wrap(byteBuffer); + try { + Bytes bbb = bs.bytesForWrite(); + bbb.writePosition(byteBuffer.position()); + bbb.writeLimit(byteBuffer.limit()); + return bbb; + } finally { + bs.release(INIT); + } + } + + /** + * Wrap the byte[] ready for reading + * Method for convenience only - might not be ideal for performance (creates garbage). + * To avoid garbage, use something like this example: + *
{@code
+     * import net.openhft.chronicle.bytes.Bytes;
+     * import java.nio.charset.Charset;
+     *
+     * public class ChronicleBytesWithPrimByteArrayExampleTest {
+     *     private static final Charset ISO_8859 = Charset.forName("ISO-8859-1");
+     *     private static final String HELLO_WORLD = "hello world";
+     *
+     *     public static void main(String[] args) {
+     *         //setup Bytes and byte[]s to write from and read to
+     *         Bytes b = Bytes.elasticByteBuffer();
+     *         byte[] toWriteFrom = HELLO_WORLD.getBytes(ISO_8859);
+     *         byte[] toReadTo = new byte[HELLO_WORLD.length()];
+     *
+     *         doWrite(b, toWriteFrom);
+     *         doRead(b, toReadTo);
+     *
+     *         //check result
+     *         final StringBuilder sb = new StringBuilder();
+     *         for (int i = 0; i < HELLO_WORLD.length(); i++) {
+     *             sb.append((char) toReadTo[i]);
+     *         }
+     *         assert sb.toString().equals(HELLO_WORLD): "Failed - strings not equal!";
+     *     }
+     *
+     *     private static void doWrite(Bytes b, byte[] toWrite) {
+     *         //no garbage when writing to Bytes from byte[]
+     *         b.clear();
+     *         b.write(toWrite);
+     *     }
+     *
+     *     private static void doRead(Bytes b, byte[] toReadTo) {
+     *         //no garbage when reading from Bytes into byte[]
+     *         b.read( toReadTo, 0, HELLO_WORLD.length());
+     *     }
+     * }
+     * }
+ * + * @param byteArray to wrap + * @return the Bytes ready for reading. + */ + + static Bytes wrapForRead( byte[] byteArray) { + HeapBytesStore bs = BytesStore.wrap(byteArray); + try { + return bs.bytesForRead(); + } finally { + bs.release(INIT); + } + } + + /** + * Wrap the byte[] ready for writing + * Method for convenience only - might not be ideal for performance (creates garbage). + * To avoid garbage, use something like this example: + *
{@code
+     * import net.openhft.chronicle.bytes.Bytes;
+     * import java.nio.charset.Charset;
+     *
+     * public class ChronicleBytesWithPrimByteArrayExampleTest {
+     *     private static final Charset ISO_8859 = Charset.forName("ISO-8859-1");
+     *     private static final String HELLO_WORLD = "hello world";
+     *
+     *     public static void main(String[] args) {
+     *         //setup Bytes and byte[]s to write from and read to
+     *         Bytes b = Bytes.elasticByteBuffer();
+     *         byte[] toWriteFrom = HELLO_WORLD.getBytes(ISO_8859);
+     *         byte[] toReadTo = new byte[HELLO_WORLD.length()];
+     *
+     *         doWrite(b, toWriteFrom);
+     *         doRead(b, toReadTo);
+     *
+     *         //check result
+     *         final StringBuilder sb = new StringBuilder();
+     *         for (int i = 0; i < HELLO_WORLD.length(); i++) {
+     *             sb.append((char) toReadTo[i]);
+     *         }
+     *         assert sb.toString().equals(HELLO_WORLD): "Failed - strings not equal!";
+     *     }
+     *
+     *     private static void doWrite(Bytes b, byte[] toWrite) {
+     *         //no garbage when writing to Bytes from byte[]
+     *         b.clear();
+     *         b.write(toWrite);
+     *     }
+     *
+     *     private static void doRead(Bytes b, byte[] toReadTo) {
+     *         //no garbage when reading from Bytes into byte[]
+     *         b.read( toReadTo, 0, HELLO_WORLD.length());
+     *     }
+     * }
+     * }
+ * + * @param byteArray to wrap + * @return the Bytes ready for writing. + */ + + static Bytes wrapForWrite( byte[] byteArray) { + BytesStore bs = BytesStore.wrap(byteArray); + try { + return bs.bytesForWrite(); + } finally { + bs.release(INIT); + } + } + + /** + * Convert text to bytes using ISO-8859-1 encoding and return a Bytes ready for reading. + *

+ * Note: this returns a direct Bytes now + * + * @param text to convert + * @return Bytes ready for reading. + */ + + static Bytes from( CharSequence text) { + return from(text.toString()); + } + + @Deprecated(/* to be removed in x.22 */) + static Bytes fromString(String text) { + return from(text); + } + + /** + * Convert text to bytes using ISO-8859-1 encoding and return a Bytes ready for reading. + *

+ * Note: this returns a direct Bytes now + * + * @param text to convert + * @return Bytes ready for reading. + */ + + static Bytes directFrom( String text) { + NativeBytesStore from = NativeBytesStore.from(text); + try { + return from.bytesForRead(); + } finally { + from.release(INIT); + } + } + + /** + * Convert text to bytes using ISO-8859-1 encoding and return a Bytes ready for reading. + *

+ * Note: this returns a heap Bytes + * + * @param text to convert + * @return Bytes ready for reading. + */ + + static Bytes from( String text) throws IllegalArgumentException, IllegalStateException { + return wrapForRead(text.getBytes(StandardCharsets.ISO_8859_1)); + } + + @UsedViaReflection + static Bytes valueOf(String text) { + return from(text); + } + + /** + * Creates and returns a new fix sized wrapper for native (64-bit address) + * memory with the given {@code capacity}. + * + * @param capacity the non-negative capacity given in bytes + * @return a new fix sized wrapper for native (64-bit address) + * memory with the given {@code capacity} + */ + + static VanillaBytes allocateDirect(long capacity) throws IllegalArgumentException { + NativeBytesStore bs = NativeBytesStore.nativeStoreWithFixedCapacity(capacity); + try { + return new VanillaBytes<>(bs); + } finally { + bs.release(INIT); + } + } + + /** + * Creates and returns a new elastic wrapper for native (64-bit address) + * memory with zero initial capacity which will be resized as required. + * + * @return a new elastic wrapper for native (64-bit address) + * memory with zero initial capacity which will be resized as required + */ + + static NativeBytes allocateElasticDirect() { + return NativeBytes.nativeBytes(); + } + + /** + * Creates and returns a new elastic wrapper for native (64-bit address) + * memory with the given {@code initialCapacity} which will be resized as required. + * + * @param initialCapacity the initial non-negative capacity given in bytes + * @return a new elastic wrapper for native (64-bit address) + * memory with the given {@code initialCapacity} which will be resized as required + */ + + static NativeBytes allocateElasticDirect(long initialCapacity) throws IllegalArgumentException { + return NativeBytes.nativeBytes(initialCapacity); + } + + + static OnHeapBytes allocateElasticOnHeap() { + return allocateElasticOnHeap(32); + } + + + static OnHeapBytes allocateElasticOnHeap(int initialCapacity) { + HeapBytesStore wrap = HeapBytesStore.wrap(new byte[initialCapacity]); + try { + return new OnHeapBytes(wrap, true); + } finally { + wrap.release(INIT); + } + } + + /** + * Creates a string from the {@code position} to the {@code limit}, The buffer is not modified + * by this call + * + * @param buffer the buffer to use + * @return a string contain the text from the {@code position} to the {@code limit} + */ + + static String toString( final Bytes buffer) throws BufferUnderflowException { + return toString(buffer, MAX_HEAP_CAPACITY); + } + + /** + * Creates a string from the {@code position} to the {@code limit}, The buffer is not modified + * by this call + * + * @param buffer the buffer to use + * @param maxLen of the result returned + * @return a string contain the text from the {@code position} to the {@code limit} + */ + + static String toString( final Bytes buffer, long maxLen) throws + BufferUnderflowException { + + if (buffer.refCount() < 1) + // added because something is crashing the JVM + return ""; + + ReferenceOwner toString = ReferenceOwner.temporary("toString"); + buffer.reserve(toString); + try { + + if (buffer.readRemaining() == 0) + return ""; + + final long length = Math.min(maxLen + 1, buffer.readRemaining()); + + final StringBuilder builder = new StringBuilder(); + try { + buffer.readWithLength(length, b -> { + while (buffer.readRemaining() > 0) { + if (builder.length() >= maxLen) { + builder.append("..."); + break; + } + builder.append((char) buffer.readByte()); + } + }); + } catch (Exception e) { + builder.append(' ').append(e); + } + return builder.toString(); + } finally { + buffer.release(toString); + } + } + + /** + * The buffer is not modified by this call + * + * @param buffer the buffer to use + * @param position the position to create the string from + * @param len the number of characters to show in the string + * @return a string contain the text from offset {@code position} + */ + + static String toString( final Bytes buffer, long position, long len) + throws BufferUnderflowException { + final long pos = buffer.readPosition(); + final long limit = buffer.readLimit(); + buffer.readPositionRemaining(position, len); + + try { + + final StringBuilder builder = new StringBuilder(); + while (buffer.readRemaining() > 0) { + builder.append((char) buffer.readByte()); + } + + // remove the last comma + return builder.toString(); + } finally { + buffer.readLimit(limit); + buffer.readPosition(pos); + } + } + + /** + * Creates and returns a new fix sized wrapper for native (64-bit address) + * memory with the contents copied from the given {@code bytes} array. + *

+ * Changes in the given {@code bytes} will not be affected by writes in + * the returned wrapper or vice versa. + * + * @param bytes array to copy + * @return a new fix sized wrapper for native (64-bit address) + * memory with the contents copied from the given {@code bytes} array + */ + + static VanillaBytes allocateDirect( byte[] bytes) throws IllegalArgumentException { + VanillaBytes result = allocateDirect(bytes.length); + try { + result.write(bytes); + } catch (BufferOverflowException e) { + throw new AssertionError(e); + } + return result; + } + + + static Bytes fromHexString( String s) { + return BytesInternal.fromHexString(s); + } + + /** + * Code shared by String and StringBuffer to do searches. The + * source is the character array being searched, and the target + * is the string being searched for. + * + * @param source the read bytes being searched. + * @param target the read bytes being searched for. + * @param fromIndex the index to begin searching from, + * @return the index of where the text was found. + */ + static int indexOf( BytesStore source, BytesStore target, int fromIndex) { + + long sourceOffset = source.readPosition(); + long targetOffset = target.readPosition(); + long sourceCount = source.readRemaining(); + long targetCount = target.readRemaining(); + + if (fromIndex >= sourceCount) { + return Math.toIntExact(targetCount == 0 ? sourceCount : -1); + } + if (fromIndex < 0) { + fromIndex = 0; + } + if (targetCount == 0) { + return fromIndex; + } + + byte firstByte = target.readByte(targetOffset); + long max = sourceOffset + (sourceCount - targetCount); + + for (long i = sourceOffset + fromIndex; i <= max; i++) { + /* Look for first character. */ + if (source.readByte(i) != firstByte) { + while (++i <= max && source.readByte(i) != firstByte) ; + } + + /* Found first character, now look at the rest of v2 */ + if (i <= max) { + long j = i + 1; + long end = j + targetCount - 1; + for (long k = targetOffset + 1; j < end && source.readByte(j) == target.readByte(k); j++, k++) { + } + + if (j == end) { + /* Found whole string. */ + return Math.toIntExact(i - sourceOffset); + } + } + } + return -1; + } + + /** + * Return a Bytes which is optionally unchecked. This allows bounds checks to be turned off. + * Note: this means that the result is no longer elastic, even if this is elastic. + * + * @param unchecked if true, minimal bounds checks will be performed. + * @return Bytes without bounds checking. + * @throws IllegalStateException if the underlying BytesStore has been released + */ + + default Bytes unchecked(boolean unchecked) throws IllegalStateException { + if (unchecked) { + if (isElastic()) + BytesUtil.WarnUncheckedElasticBytes.warn(); + Bytes underlyingBytes = start() == 0 && bytesStore().isDirectMemory() ? + new UncheckedNativeBytes<>(this) : + new UncheckedBytes<>(this); + release(INIT); + return underlyingBytes; + } + return this; + } + + default boolean unchecked() { + return false; + } + + /** + * @inheritDoc

+ * If this Bytes {@link #isElastic()} the {@link #safeLimit()} can be + * lower than the point it can safely write. + */ + @Override + default long safeLimit() { + return bytesStore().safeLimit(); + } + + @Override + default boolean isClear() { + return start() == readPosition() && writeLimit() == capacity(); + } + + /** + * @inheritDoc

+ * If this Bytes {@link #isElastic()} the {@link #realCapacity()} can be + * lower than the virtual {@link #capacity()}. + */ + @Override + default long realCapacity() { + return BytesStore.super.realCapacity(); + } + + /** + * @return a copy of this Bytes from position() to limit(). + */ + @Override + BytesStore, Underlying> copy(); + + + default String toHexString() { + return toHexString(1024); + } + + /** + * display the hex data of {@link Bytes} from the position() to the limit() + * + * @param maxLength limit the number of bytes to be dumped. + * @return hex representation of the buffer, from example [0D ,OA, FF] + */ + + default String toHexString(long maxLength) { + return toHexString(readPosition(), maxLength); + } + + /** + * display the hex data of {@link Bytes} from the position() to the limit() + * + * @param maxLength limit the number of bytes to be dumped. + * @return hex representation of the buffer, from example [0D ,OA, FF] + */ + + default String toHexString(long offset, long maxLength) { +// if (Jvm.isDebug() && Jvm.stackTraceEndsWith("Bytes", 3)) +// return "Not Available"; + + long maxLength2 = Math.min(maxLength, readLimit() - offset); + String ret = BytesInternal.toHexString(this, offset, maxLength2); + return maxLength2 < readLimit() - offset ? ret + "... truncated" : ret; + } + + /** + * Returns if this Bytes is elastic. I.e. it can resize when more data is written + * than it's {@link #realCapacity()}. + * + * @return if this Bytes is elastic + */ + boolean isElastic(); + + /** + * grow the buffer if the buffer is elastic, if the buffer is not elastic and there is not + * enough capacity then this method will throws {@link java.nio.BufferOverflowException} + * + * @param size the capacity that you required + * @throws IllegalArgumentException if the buffer is not elastic and there is not enough space + */ + default void ensureCapacity(long size) throws IllegalArgumentException { + if (size > capacity()) + throw new IllegalArgumentException(isElastic() ? "todo" : "not elastic"); + } + + /** + * Creates a slice of the current Bytes based on its position() and limit(). As a sub-section + * of a Bytes it cannot be elastic. + * + * @return a slice of the existing Bytes where the start is moved to the position and the + * current limit determines the capacity. + * @throws IllegalStateException if the underlying BytesStore has been released + */ + + @Override + default Bytes bytesForRead() throws IllegalStateException { + return isClear() ? BytesStore.super.bytesForRead() : new SubBytes<>(this, readPosition(), readLimit() + start()); + } + + /** + * @return the ByteStore this Bytes wraps. + */ + @Override + + BytesStore bytesStore(); + + default boolean isEqual(String s) { + return StringUtils.isEqual(this, s); + } + + /** + * Compact these Bytes by moving the readPosition to the start. + * + * @return this + */ + + Bytes compact(); + + /** + * copy bytes from one ByteStore to another + * + * @param store to copy to + * @return the number of bytes copied. + */ + @Override + default long copyTo( BytesStore store) { + return BytesStore.super.copyTo(store); + } + + @Override + default void copyTo( OutputStream out) throws IOException { + BytesStore.super.copyTo(out); + } + + @Override + default boolean sharedMemory() { + return bytesStore().sharedMemory(); + } + + /** + * will unwrite from the offset upto the current write position of the destination bytes + * + * @param fromOffset the offset from the target byytes + * @param count the number of bytes to un-write + */ + default void unwrite(long fromOffset, int count) { + long wp = writePosition(); + + if (wp < fromOffset) + return; + + write(fromOffset, this, fromOffset + count, wp - fromOffset - count); + writeSkip(-count); + } + + + default BigDecimal readBigDecimal() { + return new BigDecimal(readBigInteger(), Maths.toUInt31(readStopBit())); + } + + + default BigInteger readBigInteger() { + int length = Maths.toUInt31(readStopBit()); + if (length == 0) + if (lenient()) + return BigInteger.ZERO; + else + throw new BufferUnderflowException(); + byte[] bytes = new byte[length]; + read(bytes); + return new BigInteger(bytes); + } + + /** + * Returns the index within this bytes of the first occurrence of the + * specified sub-bytes. + *

+ *

The returned index is the smallest value k for which: + *

+     * this.startsWith(bytes, k)
+     * 
+ * If no such value of k exists, then {@code -1} is returned. + * + * @param source the sub-bytes to search for. + * @return the index of the first occurrence of the specified sub-bytes, + * or {@code -1} if there is no such occurrence. + */ + default long indexOf( Bytes source) { + return indexOf(source, 0); + } + + /** + * Returns the index within this bytes of the first occurrence of the + * specified subbytes. + *

+ *

The returned index is the smallest value k for which: + *

+     * this.startsWith(bytes, k)
+     * 
+ * If no such value of k exists, then {@code -1} is returned. + * + * @param source the sub-bytes to search for. + * @param fromIndex start the seach from this offset + * @return the index of the first occurrence of the specified sub-bytes, + * or {@code -1} if there is no such occurrence. + */ + default int indexOf( BytesStore source, int fromIndex) { + return indexOf(this, source, fromIndex); + } + + @Deprecated(/* to be removed in x.22 */) + default long indexOf( Bytes source, int fromIndex) { + return indexOf(this, source, fromIndex); + } + + @Override + + Bytes clear(); + + @Override + default boolean readWrite() { + return bytesStore().readWrite(); + } + + default void readWithLength(long length, BytesOut bytesOut) + throws BufferUnderflowException, IORuntimeException { + if (length > readRemaining()) + throw new BufferUnderflowException(); + long limit0 = readLimit(); + long limit = readPosition() + length; + boolean lenient = lenient(); + try { + lenient(true); + readLimit(limit); + bytesOut.write(this); + } finally { + readLimit(limit0); + readPosition(limit); + lenient(lenient); + } + } + + default T readMarshallableLength16(Class tClass, T object) { + if (object == null) object = ObjectUtils.newInstance(tClass); + int length = readUnsignedShort(); + long limit = readLimit(); + long end = readPosition() + length; + boolean lenient = lenient(); + try { + lenient(true); + readLimit(end); + object.readMarshallable(this); + } finally { + readPosition(end); + readLimit(limit); + lenient(lenient); + } + return object; + } + + default void writeMarshallableLength16(WriteBytesMarshallable marshallable) { + long position = writePosition(); + writeUnsignedShort(0); + marshallable.writeMarshallable(this); + long length = writePosition() - position - 2; + if (length >= 1 << 16) + throw new IllegalStateException("Marshallable " + marshallable.getClass() + " too long was " + length); + writeUnsignedShort(position, (int) length); + } + + default Bytes write(final InputStream inputStream) throws IOException { + for (; ; ) { + int read; + read = inputStream.read(); + if (read == -1) + break; + writeByte((byte) read); + } + return this; + } + +} \ No newline at end of file diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesComment.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesComment.java new file mode 100644 index 0000000..c4e408a --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesComment.java @@ -0,0 +1,51 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes; + +public interface BytesComment> { + /** + * Do these Bytes support saving comments + * + * @return true if comments are kept + */ + default boolean retainsComments() { + return false; + } + + /** + * Add comment as approriate for the toHexString format + * + * @param comment to add (or ignore) + * @return this + */ + @SuppressWarnings("unchecked") + default B comment(CharSequence comment) { + return (B) this; + } + + /** + * Adjust the indent for nested data + * + * @param n +1 indent in, -1 reduce indenting + * @return this. + */ + @SuppressWarnings("unchecked") + default B indent(int n) { + return (B) this; + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesConsumer.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesConsumer.java new file mode 100644 index 0000000..648474e --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesConsumer.java @@ -0,0 +1,36 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import java.nio.BufferOverflowException; + +@FunctionalInterface +public interface BytesConsumer { + + /** + * Retrieves and removes the head of this queue, or returns {@code true} if this queue is + * empty. + * + * @param bytes to read into + * @return false if this queue is empty + */ + @SuppressWarnings("rawtypes") + boolean read(BytesOut bytes) throws BufferOverflowException; + +} \ No newline at end of file diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesContext.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesContext.java new file mode 100644 index 0000000..1a5865a --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesContext.java @@ -0,0 +1,42 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.io.Closeable; + +public interface BytesContext extends Closeable { + + /** + * @return a bytes to write to + */ + @SuppressWarnings("rawtypes") + Bytes bytes(); + + /** + * @return the key to be written to + */ + int key(); + + @Override + default boolean isClosed() { + throw new UnsupportedOperationException("todo"); + } + + default void rollbackOnClose() { + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesIn.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesIn.java new file mode 100644 index 0000000..8c32d5f --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesIn.java @@ -0,0 +1,76 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.util.ObjectUtils; +import org.jetbrains.annotations.NotNull; + +@SuppressWarnings({"rawtypes", "unchecked"}) +public interface BytesIn extends + RandomDataInput, + ByteStringParser> { + /** + * Reads messages from this tails as methods. It returns a BooleanSupplier which returns + * + * @param objects which implement the methods serialized to the file. + * @return a reader which will read one Excerpt at a time + */ + + default MethodReader bytesMethodReader(Object... objects) { + return new BytesMethodReaderBuilder(this).build(objects); + } + + + default BytesMethodReaderBuilder bytesMethodReaderBuilder() { + return new BytesMethodReaderBuilder(this); + } + + T readMarshallableLength16(Class tClass, T object); + + default T readObject(Class componentType0) { + Class componentType = ObjectUtils.implementationToUse(componentType0); + if (BytesMarshallable.class.isAssignableFrom(componentType)) { + BytesMarshallable bm = (BytesMarshallable) ObjectUtils.newInstance(componentType); + bm.readMarshallable(this); + return (T) bm; + } + if (Enum.class.isAssignableFrom(componentType)) { + return (T) readEnum((Class) componentType); + } + switch (componentType.getName()) { + case "java.lang.String": + return (T) readUtf8(); + case "java.lang.Double": + return (T) (Double) readDouble(); + case "java.lang.Long": + return (T) (Long) readLong(); + case "java.lang.Integer": + return (T) (Integer) readInt(); + + default: + if (BytesMarshallable.class.isAssignableFrom(componentType)) { + BytesMarshallable bm = (BytesMarshallable) ObjectUtils.newInstance(componentType); + bm.readMarshallable(this); + return (T) bm; + } + throw new UnsupportedOperationException("Unsupported " + componentType); + } + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesInternal.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesInternal.java new file mode 100644 index 0000000..9cd4cdb --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesInternal.java @@ -0,0 +1,2702 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.bytes.pool.BytesPool; +import net.openhft.chronicle.bytes.util.DecoratedBufferUnderflowException; +import net.openhft.chronicle.bytes.util.StringInternerBytes; +import net.openhft.chronicle.core.Jvm; +import net.openhft.chronicle.core.Maths; +import net.openhft.chronicle.core.Memory; +import net.openhft.chronicle.core.UnsafeMemory; +import net.openhft.chronicle.core.annotation.ForceInline; +import net.openhft.chronicle.core.io.IORuntimeException; +import net.openhft.chronicle.core.io.ReferenceOwner; +import net.openhft.chronicle.core.io.UnsafeText; +import net.openhft.chronicle.core.pool.ClassAliasPool; +import net.openhft.chronicle.core.pool.EnumInterner; +import net.openhft.chronicle.core.pool.StringBuilderPool; +import net.openhft.chronicle.core.util.ByteBuffers; +import net.openhft.chronicle.core.util.Histogram; +import net.openhft.chronicle.core.util.StringUtils; +import org.jetbrains.annotations.NotNull; +import org.jetbrains.annotations.Nullable; + +import java.io.IOException; +import java.io.InputStream; +import java.io.OutputStream; +import java.io.UTFDataFormatException; +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; +import java.nio.ByteBuffer; +import java.text.SimpleDateFormat; +import java.util.Date; +import java.util.TimeZone; + +import static java.nio.charset.StandardCharsets.ISO_8859_1; +import static net.openhft.chronicle.bytes.StreamingDataOutput.JAVA9_STRING_CODER_LATIN; +import static net.openhft.chronicle.bytes.StreamingDataOutput.JAVA9_STRING_CODER_UTF16; +import static net.openhft.chronicle.core.io.ReferenceOwner.temporary; +import static net.openhft.chronicle.core.util.StringUtils.*; + +/** + * Utility methods to support common functionality in this package. This is not intended to be + * accessed directly. + */ +@SuppressWarnings({"rawtypes", "unchecked"}) +enum BytesInternal { + ; + static final char[] HEXADECIMAL = "0123456789abcdef".toCharArray(); + static final ThreadLocal BYTE_BUFFER_TL = ThreadLocal.withInitial(() -> ByteBuffer.allocateDirect(0)); + static final ThreadLocal BYTE_BUFFER2_TL = ThreadLocal.withInitial(() -> ByteBuffer.allocateDirect(0)); + private static final byte[] MIN_VALUE_TEXT = ("" + Long.MIN_VALUE).getBytes(ISO_8859_1); + private static final StringBuilderPool SBP = new StringBuilderPool(); + private static final BytesPool BP = new BytesPool(); + private static final StringInternerBytes SI = new StringInternerBytes(4096); + private static final byte[] Infinity = "Infinity".getBytes(ISO_8859_1); + private static final byte[] NaN = "NaN".getBytes(ISO_8859_1); + private static final long MAX_VALUE_DIVIDE_5 = Long.MAX_VALUE / 5; + private static final ThreadLocal NUMBER_BUFFER = ThreadLocal.withInitial(() -> new byte[20]); + private static final long MAX_VALUE_DIVIDE_10 = Long.MAX_VALUE / 10; + private static final ThreadLocal dateCacheTL = new ThreadLocal<>(); + private static final int MAX_STRING_LEN = Integer.getInteger("bytes.max-string-len", 128 * 1024); + + static { + try { + ClassAliasPool.CLASS_ALIASES.addAlias(BytesStore.class, "!binary"); + } catch (Exception e) { + throw new AssertionError(e); + } + } + + public static boolean contentEqual( BytesStore a, BytesStore b) { + if (a == null) return b == null; + if (b == null) return false; + if (a.readRemaining() != b.readRemaining()) + return false; + // assume a >= b + if (a.realCapacity() < b.realCapacity()) + return contentEqual(b, a); + long aPos = a.readPosition(); + long bPos = b.readPosition(); + long aLength = Math.min(a.realCapacity(), a.readRemaining()); + long bLength = Math.min(b.realCapacity(), b.readRemaining()); + long i; + for (i = 0; i < bLength - 7; i += 8) { + if (a.readLong(aPos + i) != b.readLong(bPos + i)) + return false; + } + for (; i < bLength; i++) { + if (a.readByte(aPos + i) != b.readByte(bPos + i)) + return false; + } + // check for zeros + for (; i < aLength - 7; i += 8) { + if (a.readLong(aPos + i) != 0L) + return false; + } + for (; i < aLength; i++) { + if (a.readByte(aPos + i) != 0) + return false; + } + + return true; + } + + static boolean startsWith( BytesStore a, BytesStore b) { + if (a.readRemaining() < b.readRemaining()) + return false; + long aPos = a.readPosition(); + long bPos = b.readPosition(); + long length = b.readRemaining(); + long i; + for (i = 0; i < length - 7; i += 8) { + if (a.readLong(aPos + i) != b.readLong(bPos + i)) + return false; + } + if (i < length - 3) { + if (a.readInt(aPos + i) != b.readInt(bPos + i)) + return false; + i += 4; + } + if (i < length - 1) { + if (a.readShort(aPos + i) != b.readShort(bPos + i)) + return false; + i += 2; + } + if (i < length) { + return a.readByte(aPos + i) == b.readByte(bPos + i); +// i ++; + } + return true; + } + + public static void parseUtf8( + StreamingDataInput bytes, Appendable appendable, boolean utf, int length) + throws UTFDataFormatRuntimeException, BufferUnderflowException { + if (appendable instanceof StringBuilder + && bytes.isDirectMemory() + && length < 1 << 20 + && utf) { + // todo fix, a problem with very long sequences. #35 + parseUtf8_SB1((Bytes) bytes, (StringBuilder) appendable, utf, length); + } else { + parseUtf81(bytes, appendable, utf, length); + } + } + + public static void parseUtf8( + RandomDataInput input, long offset, Appendable appendable, boolean utf, int length) + throws UTFDataFormatRuntimeException, BufferUnderflowException { + + assert utf; + if (appendable instanceof StringBuilder) { + if (input instanceof NativeBytesStore) { + parseUtf8_SB1((NativeBytesStore) input, offset, (StringBuilder) appendable, length); + return; + } else if (input instanceof Bytes + && ((Bytes) input).bytesStore() instanceof NativeBytesStore) { + NativeBytesStore bs = (NativeBytesStore) ((Bytes) input).bytesStore(); + parseUtf8_SB1(bs, offset, (StringBuilder) appendable, length); + return; + } + } + parseUtf81(input, offset, appendable, length); + } + + public static boolean compareUtf8( RandomDataInput input, long offset, CharSequence other) + throws IORuntimeException, BufferUnderflowException, IndexOutOfBoundsException { + long utfLen; + if ((utfLen = input.readByte(offset++)) < 0) { + utfLen &= 0x7FL; + long b; + int count = 7; + while ((b = input.readByte(offset++)) < 0) { + utfLen |= (b & 0x7FL) << count; + count += 7; + } + if (b != 0) { + if (count > 56) + throw new IORuntimeException( + "Cannot read more than 9 stop bits of positive value"); + utfLen |= (b << count); + } else { + if (count > 63) + throw new IORuntimeException( + "Cannot read more than 10 stop bits of negative value"); + utfLen = ~utfLen; + } + } + if (utfLen == -1) + return other == null; + return other != null && compareUtf8(input, offset, utfLen, other); + } + + private static boolean compareUtf8( + RandomDataInput input, long offset, long utfLen, CharSequence other) + throws UTFDataFormatRuntimeException, BufferUnderflowException, IndexOutOfBoundsException { + if (offset + utfLen > input.realCapacity()) + throw new BufferUnderflowException(); + int i = 0; + while (i < utfLen && i < other.length()) { + int c = input.readByte(offset + i); + if (c < 0) + break; + if ((char) c != other.charAt(i)) + return false; + i++; + } + if (i < utfLen && i < other.length()) + return compareUtf82(input, offset + i, i, utfLen, other); + return utfLen == other.length(); + } + + private static boolean compareUtf82( + RandomDataInput input, long offset, int charI, long utfLen, CharSequence other) + throws UTFDataFormatRuntimeException, BufferUnderflowException { + long limit = offset + utfLen; + while (offset < limit && charI < other.length()) { + int c = input.readUnsignedByte(offset++); + switch (c >> 4) { + case 0: + case 1: + case 2: + case 3: + case 4: + case 5: + case 6: + case 7: + /* 0xxxxxxx */ + if ((char) c != other.charAt(charI)) + return false; + break; + + case 12: + case 13: { + /* 110x xxxx 10xx xxxx */ + if (offset == limit) + throw new UTFDataFormatRuntimeException( + "malformed input: partial character at end"); + int char2 = input.readUnsignedByte(offset++); + if ((char2 & 0xC0) != 0x80) + throw new UTFDataFormatRuntimeException( + "malformed input around byte " + (offset - limit + utfLen) + + " was " + char2); + int c2 = (char) (((c & 0x1F) << 6) | + (char2 & 0x3F)); + if ((char) c2 != other.charAt(charI)) + return false; + break; + } + + case 14: { + /* 1110 xxxx 10xx xxxx 10xx xxxx */ + if (offset + 2 > limit) + throw new UTFDataFormatRuntimeException( + "malformed input: partial character at end"); + int char2 = input.readUnsignedByte(offset++); + int char3 = input.readUnsignedByte(offset++); + + if (((char2 & 0xC0) != 0x80) || ((char3 & 0xC0) != 0x80)) + throw new UTFDataFormatRuntimeException( + "malformed input around byte " + (offset - limit + utfLen - 1) + + " was " + char2 + " " + char3); + int c3 = (char) (((c & 0x0F) << 12) | + ((char2 & 0x3F) << 6) | + (char3 & 0x3F)); + if ((char) c3 != other.charAt(charI)) + return false; + break; + } + // TODO add code point of characters > 0xFFFF support. + default: + /* 10xx xxxx, 1111 xxxx */ + throw new UTFDataFormatRuntimeException( + "malformed input around byte " + (offset - limit + utfLen)); + } + charI++; + } + return offset == limit && charI == other.length(); + } + + public static void parse8bit(long offset, RandomDataInput bytesStore, Appendable appendable, int utflen) + throws BufferUnderflowException, IOException { + if (bytesStore instanceof NativeBytesStore + && appendable instanceof StringBuilder) { + parse8bit_SB1(offset, (NativeBytesStore) bytesStore, (StringBuilder) appendable, utflen); + } else { + parse8bit1(offset, bytesStore, appendable, utflen); + } + } + + public static void parseUtf81( + StreamingDataInput bytes, Appendable appendable, boolean utf, int length) + throws UTFDataFormatRuntimeException, BufferUnderflowException { + try { + int count = 0; + assert bytes.readRemaining() >= length; + while (count < length) { + int c = bytes.readUnsignedByte(); + if (c >= 128) { + bytes.readSkip(-1); + break; + + } else if (c < 0) { + break; + } + count++; + appendable.append((char) c); + } + + if (length > count) + parseUtf82(bytes, appendable, utf, length, count); + } catch (IOException e) { + throw Jvm.rethrow(e); + } + } + + public static void parseUtf81( RandomDataInput input, long offset, + Appendable appendable, int utflen) + throws UTFDataFormatRuntimeException, BufferUnderflowException { + try { + assert input.realCapacity() >= offset + utflen; + long limit = offset + utflen; + while (offset < limit) { + int c = input.readUnsignedByte(offset++); + if (c >= 128) { + offset--; + break; + + } else if (c < 0) { + break; + } + appendable.append((char) c); + } + + if (limit > offset) + parseUtf82(input, offset, limit, appendable, utflen); + } catch (IOException e) { + throw Jvm.rethrow(e); + } + } + + public static void parse8bit1( StreamingDataInput bytes, StringBuilder sb, int utflen) { + assert bytes.readRemaining() >= utflen; + sb.ensureCapacity(utflen); + + if (Jvm.isJava9Plus()) { + byte[] sbBytes = extractBytes(sb); + for (int count = 0; count < utflen; count++) { + int c = bytes.readUnsignedByte(); + sbBytes[count] = (byte) c; + } + } else { + char[] chars = StringUtils.extractChars(sb); + for (int count = 0; count < utflen; count++) { + int c = bytes.readUnsignedByte(); + chars[count] = (char) c; + } + } + StringUtils.setLength(sb, utflen); + } + + public static void parse8bit1( StreamingDataInput bytes, Appendable appendable, int utflen) throws IOException { + + assert bytes.readRemaining() >= utflen; + for (int count = 0; count < utflen; count++) { + int c = bytes.readUnsignedByte(); + appendable.append((char) c); + } + } + + public static void parse8bit1(long offset, RandomDataInput bytes, Appendable appendable, int utflen) + throws BufferUnderflowException, IOException { + + if (bytes.realCapacity() < utflen + offset) + throw new DecoratedBufferUnderflowException(bytes.realCapacity() + " < " + utflen + " +" + offset); + for (int count = 0; count < utflen; count++) { + int c = bytes.readUnsignedByte(offset + count); + appendable.append((char) c); + } + } + + public static void parseUtf8_SB1( Bytes bytes, StringBuilder sb, boolean utf, int utflen) + throws UTFDataFormatRuntimeException, BufferUnderflowException { + try { + assert utf; + int count = 0; + if (utflen > bytes.readRemaining()) { + final BufferUnderflowException bue = new BufferUnderflowException(); + bue.initCause(new IllegalStateException("utflen: " + utflen + ", readRemaining: " + bytes.readRemaining())); + throw bue; + } + long readPosition = bytes.readPosition(); + sb.ensureCapacity(utflen); + + if (Jvm.isJava9Plus()) { + sb.setLength(utflen); + while (count < utflen) { + byte c = bytes.readByte(readPosition + count); + if (c < 0) + break; + sb.setCharAt(count++, (char) c); // This is not as fast as it could be. + } + } else { + char[] chars = extractChars(sb); + while (count < utflen) { + int c = bytes.readByte(readPosition + count); + if (c < 0) + break; + chars[count++] = (char) c; + } + } + bytes.readSkip(count); + setCount(sb, count); + if (count < utflen) { + + long rp0 = bytes.readPosition(); + try { + parseUtf82(bytes, sb, utf, utflen, count); + } catch (UTFDataFormatRuntimeException e) { + long rp = Math.max(rp0 - 128, 0); + throw new UTFDataFormatRuntimeException(Long.toHexString(rp0) + "\n" + bytes.toHexString(rp, 200), e); + } + } + } catch (IOException e) { + + throw Jvm.rethrow(e); + } + } + + public static void parseUtf8_SB1( NativeBytesStore bytes, long offset, + StringBuilder sb, int utflen) + throws UTFDataFormatRuntimeException, BufferUnderflowException { + try { + if (offset + utflen > bytes.realCapacity()) + throw new BufferUnderflowException(); + long address = bytes.address + bytes.translate(offset); + Memory memory = bytes.memory; + sb.ensureCapacity(utflen); + int count = 0; + + if (Jvm.isJava9Plus()) { + sb.setLength(utflen); + while (count < utflen) { + byte c = memory.readByte(address + count); + if (c < 0) + break; + sb.setCharAt(count++, (char) c); + } + } else { + char[] chars = extractChars(sb); + while (count < utflen) { + int c = memory.readByte(address + count); + if (c < 0) + break; + chars[count++] = (char) c; + } + } + setCount(sb, count); + if (count < utflen) + parseUtf82(bytes, offset + count, offset + utflen, sb, utflen); + assert bytes.memory != null; + } catch (IOException e) { + throw Jvm.rethrow(e); + } + } + + public static int parse8bit_SB1(long offset, NativeBytesStore nbs, StringBuilder sb, int length) { + long address = nbs.address + nbs.translate(offset); + Memory memory = nbs.memory; + sb.ensureCapacity(length); + int count = 0; + + if (Jvm.isJava9Plus()) { + byte coder = getStringCoder(sb); + + if (coder == JAVA9_STRING_CODER_LATIN) { + byte[] bytes = extractBytes(sb); + while (count < length) { + byte b = memory.readByte(address + count); + bytes[count++] = b; + } + } else { + assert coder == JAVA9_STRING_CODER_UTF16; + sb.setLength(length); + while (count < length) { + byte b = memory.readByte(address + count); + sb.setCharAt(count++, (char) b); + } + } + } else { + char[] chars = extractChars(sb); + while (count < length) { + int c = memory.readByte(address + count) & 0xFF; + chars[count++] = (char) c; + } + } + setCount(sb, count); + return count; + } + + static void parseUtf82( StreamingDataInput bytes, Appendable appendable, boolean utf, int length, int count) + throws IOException, UTFDataFormatRuntimeException { + while (count < length) { + int c = bytes.readUnsignedByte(); + if (c < 0) + break; + switch (c >> 4) { + case 0: + case 1: + case 2: + case 3: + case 4: + case 5: + case 6: + case 7: + /* 0xxxxxxx */ + count++; + appendable.append((char) c); + break; + + case 12: + case 13: { + /* 110x xxxx 10xx xxxx */ + count += utf ? 2 : 1; + if (count > length) + throw new UTFDataFormatRuntimeException( + "malformed input: partial character at end"); + int char2 = bytes.readUnsignedByte(); + if ((char2 & 0xC0) != 0x80) + throw new UTFDataFormatRuntimeException( + "malformed input around byte " + count + " was " + char2); + int c2 = (char) (((c & 0x1F) << 6) | + (char2 & 0x3F)); + appendable.append((char) c2); + break; + } + + case 14: { + /* 1110 xxxx 10xx xxxx 10xx xxxx */ + count += utf ? 3 : 1; + if (count > length) + throw new UTFDataFormatRuntimeException( + "malformed input: partial character at end"); + int char2 = bytes.readUnsignedByte(); + int char3 = bytes.readUnsignedByte(); + + if (((char2 & 0xC0) != 0x80) || ((char3 & 0xC0) != 0x80)) + throw new UTFDataFormatRuntimeException( + "malformed input around byte " + (count - 1) + " was " + char2 + " " + char3); + int c3 = (char) (((c & 0x0F) << 12) | + ((char2 & 0x3F) << 6) | + (char3 & 0x3F)); + appendable.append((char) c3); + break; + } + // TODO add code point of characters > 0xFFFF support. + default: + /* 10xx xxxx, 1111 xxxx */ + + throw new UTFDataFormatRuntimeException( + "malformed input around byte " + count); + } + } + } + + static void parseUtf82( RandomDataInput input, long offset, long limit, + Appendable appendable, int utflen) + throws IOException, UTFDataFormatRuntimeException, BufferUnderflowException { + while (offset < limit) { + int c = input.readUnsignedByte(offset++); + switch (c >> 4) { + case 0: + case 1: + case 2: + case 3: + case 4: + case 5: + case 6: + case 7: + /* 0xxxxxxx */ + appendable.append((char) c); + break; + + case 12: + case 13: { + /* 110x xxxx 10xx xxxx */ + if (offset == limit) + throw new UTFDataFormatRuntimeException( + "malformed input: partial character at end"); + int char2 = input.readUnsignedByte(offset++); + if ((char2 & 0xC0) != 0x80) + throw new UTFDataFormatRuntimeException( + "malformed input around byte " + (offset - limit + utflen) + + " was " + char2); + int c2 = (char) (((c & 0x1F) << 6) | + (char2 & 0x3F)); + appendable.append((char) c2); + break; + } + + case 14: { + /* 1110 xxxx 10xx xxxx 10xx xxxx */ + if (offset + 2 > limit) + throw new UTFDataFormatRuntimeException( + "malformed input: partial character at end"); + int char2 = input.readUnsignedByte(offset++); + int char3 = input.readUnsignedByte(offset++); + + if (((char2 & 0xC0) != 0x80) || ((char3 & 0xC0) != 0x80)) + throw new UTFDataFormatRuntimeException( + "malformed input around byte " + (offset - limit + utflen - 1) + + " was " + char2 + " " + char3); + int c3 = (char) (((c & 0x0F) << 12) | + ((char2 & 0x3F) << 6) | + (char3 & 0x3F)); + appendable.append((char) c3); + break; + } + // TODO add code point of characters > 0xFFFF support. + default: + /* 10xx xxxx, 1111 xxxx */ + throw new UTFDataFormatRuntimeException( + "malformed input around byte " + (offset - limit + utflen)); + } + } + } + + public static void writeUtf8( StreamingDataOutput bytes, String str) + throws BufferOverflowException { + if (str == null) { + bytes.writeStopBit(-1); + return; + } + + try { + if (Jvm.isJava9Plus()) { + byte[] strBytes = extractBytes(str); + byte coder = StringUtils.getStringCoder(str); + long utfLength = AppendableUtil.findUtf8Length(strBytes, coder); + bytes.writeStopBit(utfLength); + bytes.appendUtf8(strBytes, 0, str.length(), coder); + } else { + char[] chars = extractChars(str); + long utfLength = AppendableUtil.findUtf8Length(chars); + bytes.writeStopBit(utfLength); + bytes.appendUtf8(chars, 0, chars.length); + } + } catch (IllegalArgumentException e) { + throw new AssertionError(e); + } + } + + @ForceInline + public static void writeUtf8( StreamingDataOutput bytes, CharSequence str) + throws BufferOverflowException { + if (str instanceof String) { + writeUtf8(bytes, (String) str); + return; + } + if (str == null) { + bytes.writeStopBit(-1); + + } else { + try { + long utfLength = AppendableUtil.findUtf8Length(str); + bytes.writeStopBit(utfLength); + appendUtf8(bytes, str, 0, str.length()); + } catch (IndexOutOfBoundsException e) { + throw new AssertionError(e); + } + } + } + + @ForceInline + public static long writeUtf8( RandomDataOutput out, long offset, + CharSequence str) + throws BufferOverflowException { + if (str == null) { + offset = writeStopBit(out, offset, -1); + + } else { + try { + int strLength = str.length(); + if (strLength < 32) { + long lenOffset = offset; + offset = appendUtf8(out, offset + 1, str, 0, strLength); + long utfLength = offset - lenOffset - 1; + assert utfLength <= 127; + writeStopBit(out, lenOffset, utfLength); + } else { + long utfLength = AppendableUtil.findUtf8Length(str); + offset = writeStopBit(out, offset, utfLength); + if (utfLength == strLength) { + append8bit(offset, out, str, 0, strLength); + offset += utfLength; + } else { + offset = appendUtf8(out, offset, str, 0, strLength); + } + } + } catch (IndexOutOfBoundsException | BufferUnderflowException | IllegalArgumentException e) { + throw new AssertionError(e); + } + } + return offset; + } + + @ForceInline + public static long writeUtf8( RandomDataOutput out, long offset, + CharSequence str, int maxUtf8Len) + throws BufferOverflowException { + if (str == null) { + offset = writeStopBit(out, offset, -1); + + } else { + try { + int strLength = str.length(); + long utfLength = AppendableUtil.findUtf8Length(str); + if (utfLength > maxUtf8Len) { + throw new IllegalArgumentException("Attempted to write a char sequence of " + + "utf8 size " + utfLength + ": \"" + str + + "\", when only " + maxUtf8Len + " allowed"); + } + offset = writeStopBit(out, offset, utfLength); + if (utfLength == strLength) { + append8bit(offset, out, str, 0, strLength); + offset += utfLength; + } else { + offset = appendUtf8(out, offset, str, 0, strLength); + } + } catch (IndexOutOfBoundsException | IllegalArgumentException | BufferUnderflowException e) { + throw new AssertionError(e); + } + } + return offset; + } + + + public static Bytes asBytes( RandomDataOutput bytes, long position, long limit) + throws IllegalStateException, BufferOverflowException, BufferUnderflowException { + Bytes sbytes = bytes.bytesForWrite(); + sbytes.writeLimit(limit); + sbytes.readLimit(limit); + sbytes.readPosition(position); + return sbytes; + } + + public static void appendUtf8( StreamingDataOutput bytes, + CharSequence str, int offset, int length) + throws IndexOutOfBoundsException, BufferOverflowException { + int i; + for (i = 0; i < length; i++) { + char c = str.charAt(offset + i); + if (c > 0x007F) + break; + bytes.rawWriteByte((byte) c); + } + appendUtf82(bytes, str, offset, length, i); + } + + private static void appendUtf82( StreamingDataOutput bytes, + CharSequence str, int offset, int length, int i) + throws IndexOutOfBoundsException, BufferOverflowException { + for (; i < length; i++) { + char c = str.charAt(offset + i); + appendUtf8Char(bytes, c); + } + } + + public static long appendUtf8( RandomDataOutput out, long outOffset, + CharSequence str, int strOffset, int length) + throws IndexOutOfBoundsException, BufferOverflowException { + int i; + for (i = 0; i < length; i++) { + char c = str.charAt(strOffset + i); + if (c > 0x007F) + break; + out.writeByte(outOffset++, (byte) c); + } + return appendUtf82(out, outOffset, str, strOffset, length, i); + } + + private static long appendUtf82( RandomDataOutput out, long outOffset, + CharSequence str, int strOffset, int length, int i) + throws IndexOutOfBoundsException, BufferOverflowException { + for (; i < length; i++) { + char c = str.charAt(strOffset + i); + outOffset = appendUtf8Char(out, outOffset, c); + } + return outOffset; + } + + public static void append8bit(long offsetInRDO, RandomDataOutput bytes, CharSequence str, int offset, int length) + throws IllegalArgumentException, BufferOverflowException, BufferUnderflowException, + IndexOutOfBoundsException { + if (bytes instanceof VanillaBytes) { + VanillaBytes vb = (VanillaBytes) bytes; + if (str instanceof RandomDataInput) { + vb.write(offsetInRDO, (RandomDataInput) str, offset, length); + return; + } + if (str instanceof String) { + vb.write(offsetInRDO, str, offset, length); + return; + } + } + for (int i = 0; i < length; i++) { + char c = str.charAt(offset + i); + if (c > 255) c = '?'; + bytes.writeUnsignedByte(offsetInRDO + i, c); + } + } + + public static void appendUtf8Char( StreamingDataOutput bytes, int c) + throws BufferOverflowException { + if (c <= 0x007F) { + bytes.rawWriteByte((byte) c); + + } else if (c <= 0x07FF) { + bytes.rawWriteByte((byte) (0xC0 | ((c >> 6) & 0x1F))); + bytes.rawWriteByte((byte) (0x80 | c & 0x3F)); + + } else if (c <= 0xFFFF) { + bytes.rawWriteByte((byte) (0xE0 | ((c >> 12) & 0x0F))); + bytes.rawWriteByte((byte) (0x80 | ((c >> 6) & 0x3F))); + bytes.rawWriteByte((byte) (0x80 | (c & 0x3F))); + + } else { + bytes.rawWriteByte((byte) (0xF0 | ((c >> 18) & 0x07))); + bytes.rawWriteByte((byte) (0x80 | ((c >> 12) & 0x3F))); + bytes.rawWriteByte((byte) (0x80 | ((c >> 6) & 0x3F))); + bytes.rawWriteByte((byte) (0x80 | (c & 0x3F))); + } + } + + public static long appendUtf8Char( RandomDataOutput out, long offset, int c) + throws BufferOverflowException { + if (c <= 0x007F) { + out.writeByte(offset++, (byte) c); + + } else if (c <= 0x07FF) { + out.writeByte(offset++, (byte) (0xC0 | ((c >> 6) & 0x1F))); + out.writeByte(offset++, (byte) (0x80 | c & 0x3F)); + + } else if (c <= 0xFFFF) { + out.writeByte(offset++, (byte) (0xE0 | ((c >> 12) & 0x0F))); + out.writeByte(offset++, (byte) (0x80 | ((c >> 6) & 0x3F))); + out.writeByte(offset++, (byte) (0x80 | (c & 0x3F))); + + } else { + out.writeByte(offset++, (byte) (0xF0 | ((c >> 18) & 0x07))); + out.writeByte(offset++, (byte) (0x80 | ((c >> 12) & 0x3F))); + out.writeByte(offset++, (byte) (0x80 | ((c >> 6) & 0x3F))); + out.writeByte(offset++, (byte) (0x80 | (c & 0x3F))); + } + return offset; + } + + public static void writeStopBit( StreamingDataOutput out, char n) + throws BufferOverflowException { + if ((n & ~0x7F) == 0) { + out.rawWriteByte((byte) (n & 0x7f)); + return; + } + if ((n & ~0x3FFF) == 0) { + out.rawWriteByte((byte) ((n & 0x7f) | 0x80)); + out.rawWriteByte((byte) (n >> 7)); + return; + } + writeStopBit0(out, n); + } + + public static void writeStopBit( StreamingDataOutput out, long n) + throws BufferOverflowException { + if ((n & ~0x7F) == 0) { + out.rawWriteByte((byte) (n & 0x7f)); + return; + } + if ((n & ~0x3FFF) == 0) { + out.rawWriteByte((byte) ((n & 0x7f) | 0x80)); + out.rawWriteByte((byte) (n >> 7)); + return; + } + writeStopBit0(out, n); + } + + public static long writeStopBit( RandomDataOutput out, long offset, long n) + throws BufferOverflowException { + if ((n & ~0x7F) == 0) { + out.writeByte(offset++, (byte) (n & 0x7f)); + return offset; + } + if ((n & ~0x3FFF) == 0) { + out.writeByte(offset++, (byte) ((n & 0x7f) | 0x80)); + out.writeByte(offset++, (byte) (n >> 7)); + return offset; + } + return writeStopBit0(out, offset, n); + } + + @SuppressWarnings("ShiftOutOfRange") + public static void writeStopBit( StreamingDataOutput out, double d) + throws BufferOverflowException { + long n = Double.doubleToRawLongBits(d); + while ((n & (~0L >>> 7)) != 0) { + out.rawWriteByte((byte) (((n >>> -7) & 0x7F) | 0x80)); + n <<= 7; + } + out.rawWriteByte((byte) ((n >>> -7) & 0x7F)); + } + + public static double readStopBitDouble( StreamingDataInput in) { + long n = 0; + int shift = 64 - 7; + int b; + do { + b = in.readByte(); + n |= shift > 0 ? (long) (b & 0x7F) << shift : b >> -shift; + shift -= 7; + } while (b < 0); + return Double.longBitsToDouble(n); + } + + static void writeStopBit0( StreamingDataOutput out, long n) + throws BufferOverflowException { + boolean neg = false; + if (n < 0) { + neg = true; + n = ~n; + } + + long n2; + while ((n2 = n >>> 7) != 0) { + out.rawWriteByte((byte) (0x80L | n)); + n = n2; + } + // final byte + if (!neg) { + out.rawWriteByte((byte) n); + + } else { + out.rawWriteByte((byte) (0x80L | n)); + out.rawWriteByte((byte) 0); + } + } + + static long writeStopBit0( RandomDataOutput out, long offset, long n) + throws BufferOverflowException { + boolean neg = false; + if (n < 0) { + neg = true; + n = ~n; + } + + long n2; + while ((n2 = n >>> 7) != 0) { + out.writeByte(offset++, (byte) (0x80L | n)); + n = n2; + } + // final byte + if (!neg) { + out.writeByte(offset++, (byte) n); + + } else { + out.writeByte(offset++, (byte) (0x80L | n)); + out.writeByte(offset++, (byte) 0); + } + return offset; + } + + static int stopBitLength0(long n) { + int len = 0; + if (n < 0) { + len = 1; + n = ~n; + } + + while ((n >>>= 7) != 0) len++; + return len + 1; + } + + public static String toDebugString( RandomDataInput bytes, long maxLength) { + if (bytes.refCount() < 1) + // added because something is crashing the JVM + return ""; + ReferenceOwner toDebugString = temporary("toDebugString"); + bytes.reserve(toDebugString); + try { + int len = Maths.toUInt31(maxLength + 40); + StringBuilder sb = new StringBuilder(len); + long readPosition = bytes.readPosition(); + long readLimit = bytes.readLimit(); + sb.append("[") + .append("pos: ").append(readPosition) + .append(", rlim: ").append(readLimit) + .append(", wlim: ").append(asSize(bytes.writeLimit())) + .append(", cap: ").append(asSize(bytes.capacity())) + .append(" ] "); + try { + long start = Math.max(bytes.start(), readPosition - 64); + long end = Math.min(readLimit + 64, start + maxLength); + // should never try to read past the end of the buffer + end = Math.min(end, bytes.realCapacity()); + try { + for (; end >= start + 16 && end >= readLimit + 16; end -= 8) { + if (bytes.readLong(end - 8) != 0) + break; + } + } catch ( UnsupportedOperationException | BufferUnderflowException ignored) { + // ignore + } + toString(bytes, sb, start, readPosition, bytes.writePosition(), end); + if (end < bytes.readLimit()) + sb.append("..."); + } catch (Exception e) { + sb.append(' ').append(e); + } + return sb.toString(); + + } finally { + bytes.release(toDebugString); + } + } + + + public static Object asSize(long size) { + return size == Bytes.MAX_CAPACITY ? "8EiB" : size; + } + + public static String to8bitString( BytesStore bytes) + throws IllegalArgumentException { + long pos = bytes.readPosition(); + int len = Maths.toInt32(bytes.readRemaining()); + char[] chars = new char[len]; + if (bytes instanceof VanillaBytes) { + ((VanillaBytes) bytes).read8Bit(chars, len); + } else { + for (int i = 0; i < len; i++) + try { + chars[i] = (char) bytes.readUnsignedByte(pos + i); + } catch (Exception e) { + return new String(chars, 0, len) + ' ' + e; + } + } + return StringUtils.newString(chars); + } + + + public static String toString( RandomDataInput bytes) + throws IllegalStateException { + + // the output will be no larger than this + final long available = + Math.min(bytes.realCapacity() - bytes.start(), bytes.readRemaining()); + final int size = (int) Math.min(available, MAX_STRING_LEN - 3); + final StringBuilder sb = new StringBuilder(size); + + if (bytes.readRemaining() > size) { + final Bytes bytes1 = bytes.bytesForRead(); + try { + bytes1.readLimit(bytes1.readPosition() + size); + toString(bytes1, sb); + if (size < available) + sb.append("..."); + return sb.toString(); + } finally { + bytes1.releaseLast(); + } + } else { + toString(bytes, sb); + return sb.toString(); + } + } + + private static void toString( RandomDataInput bytes, + Appendable sb, + long start, + long readPosition, + long writePosition, + long end) throws BufferUnderflowException { + try { + // before + if (start < bytes.start()) start = bytes.start(); + long realCapacity = bytes.realCapacity(); + if (end > realCapacity) end = realCapacity; + if (readPosition >= start && bytes instanceof Bytes) { + long last = Math.min(readPosition, end); + toString(bytes, sb, start, last); + sb.append('\u01C1'); + } + toString(bytes, sb, Math.max(readPosition, start), Math.min(writePosition, end)); + if (writePosition <= end) { + if (bytes instanceof Bytes) + sb.append('\u2021'); + toString(bytes, sb, writePosition, end); + } + } catch (Exception e) { + try { + sb.append(' ').append(e.toString()); + } catch (IOException e1) { + throw new AssertionError(e); + } + } + } + + private static void toString( RandomDataInput bytes, Appendable sb, long start, long last) + throws IOException { + for (long i = start; i < last; i++) { + sb.append(bytes.printable(i)); + } + } + + private static void toString( RandomDataInput bytes, StringBuilder sb) + throws IllegalStateException { + ReferenceOwner toString = temporary("toString"); + bytes.reserve(toString); + assert bytes.start() <= bytes.readPosition(); + assert bytes.readPosition() <= bytes.readLimit(); + long limit = Math.min(bytes.readLimit(), bytes.realCapacity()); + + try { + for (long i = bytes.readPosition(); i < limit; i++) { + sb.append((char) bytes.readUnsignedByte(i)); + } + } catch (BufferUnderflowException e) { + sb.append(' ').append(e); + + } finally { + bytes.release(toString); + } + } + + @ForceInline + public static char readStopBitChar( StreamingDataInput in) + throws IORuntimeException { + int l; + if ((l = in.rawReadByte()) >= 0) + return (char) l; + return (char) readStopBit0(in, l); + } + + @ForceInline + public static long readStopBit( StreamingDataInput in) + throws IORuntimeException { + long l; + if ((l = in.rawReadByte()) >= 0) + return l; + return readStopBit0(in, l); + } + + static long readStopBit0( StreamingDataInput in, long l) + throws IORuntimeException { + l &= 0x7FL; + long b; + int count = 7; + while ((b = in.rawReadByte()) < 0) { + l |= (b & 0x7FL) << count; + count += 7; + } + if (b != 0) { + if (count > 56) + throw new IORuntimeException( + "Cannot read more than 9 stop bits of positive value"); + return l | (b << count); + + } else { + if (count > 63) + throw new IORuntimeException( + "Cannot read more than 10 stop bits of negative value"); + return ~l; + } + } + + public static void append( ByteStringAppender out, long num, int base) + throws IllegalArgumentException, BufferOverflowException { + if (num < 0) { + if (num == Long.MIN_VALUE) { + if (base == 10) + out.write(MIN_VALUE_TEXT); + else + out.write(Long.toString(Long.MIN_VALUE, base)); + return; + } + out.rawWriteByte((byte) '-'); + num = -num; + } + if (num == 0) { + out.rawWriteByte((byte) '0'); + + } else { + switch (base) { + case 10: + appendBase10(out, num); + break; + case 16: + appendBase16(out, num, 1); + break; + default: + out.write(Long.toString(num, base)); + break; + } + } + } + + public static void appendBase10( ByteStringAppender out, int num) + throws IllegalArgumentException, BufferOverflowException { + appendBase10(out, (long) num); + } + + public static void appendBase10( ByteStringAppender out, long num) + throws IllegalArgumentException, BufferOverflowException { + if (out.canWriteDirect(20)) { + long address = out.addressForWrite(out.writePosition()); + long address2 = UnsafeText.appendFixed(address, num); + out.writeSkip(address2 - address); + } else { + appendLong0(out, num); + } + } + + public static void appendBase16( ByteStringAppender out, long num, int minDigits) + throws IllegalArgumentException, BufferOverflowException { + byte[] numberBuffer = NUMBER_BUFFER.get(); + int len = 0; + do { + int digit = (int) (num & 0xF); + num >>>= 4; + numberBuffer[len++] = (byte) HEXADECIMAL[digit]; + } while (--minDigits > 0 | num > 0); + for (int i = len - 1; i >= 0; i--) + out.rawWriteByte(numberBuffer[i]); + } + + public static void appendDecimal( ByteStringAppender out, long num, int decimalPlaces) + throws IllegalArgumentException, BufferOverflowException { + if (decimalPlaces == 0) { + appendBase10(out, num); + return; + } + + byte[] numberBuffer = NUMBER_BUFFER.get(); + int endIndex; + if (num < 0) { + if (num == Long.MIN_VALUE) { + numberBuffer = MIN_VALUE_TEXT; + endIndex = MIN_VALUE_TEXT.length; + } else { + out.rawWriteByte((byte) '-'); + num = -num; + endIndex = appendLong1(numberBuffer, num); + } + } else { + endIndex = appendLong1(numberBuffer, num); + } + int digits = numberBuffer.length - endIndex; + if (decimalPlaces >= digits) { + out.writeUnsignedByte('0'); + out.writeUnsignedByte('.'); + while (decimalPlaces-- > digits) + out.writeUnsignedByte('0'); + out.write(numberBuffer, endIndex, digits); + return; + } + + int decimalLength = numberBuffer.length - endIndex - decimalPlaces; + out.write(numberBuffer, endIndex, decimalLength); + out.writeUnsignedByte('.'); + out.write(numberBuffer, endIndex + decimalLength, digits - decimalLength); + } + + public static void prepend( BytesPrepender out, long num) + throws IllegalArgumentException, BufferOverflowException { + boolean neg = false; + if (num < 0) { + if (num == Long.MIN_VALUE) { + out.prewrite(MIN_VALUE_TEXT); + return; + } + neg = true; + num = -num; + } + do { + out.prewriteByte((byte) (num % 10 + '0')); + num /= 10; + } while (num > 0); + if (neg) + out.prewriteByte((byte) '-'); + } + + /** + * The length of the number must be fixed otherwise short numbers will not overwrite longer + * numbers + */ + public static void append( RandomDataOutput out, long offset, long num, int digits) + throws BufferOverflowException, IllegalArgumentException { + boolean negative = num < 0; + num = Math.abs(num); + + for (int i = digits - 1; i > 0; i--) { + out.writeByte(offset + i, (byte) (num % 10 + '0')); + num /= 10; + } + if (negative) { + if (num != 0) + numberTooLarge(digits); + out.writeByte(offset, '-'); + + } else { + if (num > 9) + numberTooLarge(digits); + out.writeByte(offset, (byte) (num % 10 + '0')); + } + } + + /** + * Appends given long value with given decimalPlaces to RandomDataOutput out + * + * @param width Maximum width. I will be padded with zeros to the left if necessary + */ + public static void appendDecimal( RandomDataOutput out, long num, long offset, int decimalPlaces, int width) + throws IORuntimeException, IllegalArgumentException, BufferOverflowException { + if (decimalPlaces == 0) { + append(out, offset, num, width); + return; + } + + byte[] numberBuffer = NUMBER_BUFFER.get(); + int endIndex; + if (num < 0) { + if (num == Long.MIN_VALUE) { + numberBuffer = MIN_VALUE_TEXT; + endIndex = MIN_VALUE_TEXT.length; + } else { + out.writeByte(offset++, (byte) '-'); + num = -num; + endIndex = appendLong1(numberBuffer, num); + } + } else { + endIndex = appendLong1(numberBuffer, num); + } + int digits = numberBuffer.length - endIndex; + + if (decimalPlaces >= digits) { + int numDigitsRequired = 2 + decimalPlaces; + if (numDigitsRequired > width) + throw new IllegalArgumentException("Value do not fit in " + width + " digits"); + out.writeUnsignedByte(offset++, '0'); + out.writeUnsignedByte(offset++, '.'); + while (decimalPlaces-- > digits) + out.writeUnsignedByte(offset++, '0'); + out.write(offset++, numberBuffer, endIndex, digits); + return; + } else { + int numDigitsRequired = digits + 1; + if (numDigitsRequired > width) + throw new IllegalArgumentException("Value do not fit in " + width + " digits"); + } + + while (width-- > (digits + 1)) { + out.writeUnsignedByte(offset++, '0'); + } + + int decimalLength = numberBuffer.length - endIndex - decimalPlaces; + out.write(offset, numberBuffer, endIndex, decimalLength); + offset += decimalLength; + out.writeUnsignedByte(offset++, '.'); + out.write(offset++, numberBuffer, endIndex + decimalLength, digits - decimalLength); + } + + private static void numberTooLarge(int digits) throws IllegalArgumentException { + throw new IllegalArgumentException("Number too large for " + digits + "digits"); + } + + private static void appendInt0( StreamingDataOutput out, int num) + throws IllegalArgumentException, BufferOverflowException { + if (num < 10) { + out.rawWriteByte((byte) ('0' + num)); + + } else if (num < 100) { + out.writeShort((short) (num / 10 + (num % 10 << 8) + '0' * 0x101)); + + } else { + byte[] numberBuffer = NUMBER_BUFFER.get(); + // Extract digits into the end of the numberBuffer + int endIndex = appendInt1(numberBuffer, num); + + // Bulk copy the digits into the front of the buffer + out.write(numberBuffer, endIndex, numberBuffer.length - endIndex); + } + } + + private static void appendLong0( StreamingDataOutput out, long num) + throws IllegalArgumentException, BufferOverflowException { + if (num < 0) { + if (num == Long.MIN_VALUE) { + out.write(MIN_VALUE_TEXT); + return; + } + out.rawWriteByte((byte) '-'); + num = -num; + } + if (num < 10) { + out.rawWriteByte((byte) ('0' + num)); + + } else if (num < 100) { + out.writeShort((short) (num / 10 + (num % 10 << 8) + '0' * 0x101)); + + } else { + byte[] numberBuffer = NUMBER_BUFFER.get(); + // Extract digits into the end of the numberBuffer + int endIndex = appendLong1(numberBuffer, num); + + // Bulk copy the digits into the front of the buffer + out.write(numberBuffer, endIndex, numberBuffer.length - endIndex); + } + } + + private static int appendInt1(byte[] numberBuffer, int num) { + numberBuffer[19] = (byte) (num % 10L + '0'); + num /= 10; + if (num <= 0) + return 19; + numberBuffer[18] = (byte) (num % 10L + '0'); + num /= 10; + if (num <= 0) + return 18; + numberBuffer[17] = (byte) (num % 10L + '0'); + num /= 10; + if (num <= 0) + return 17; + numberBuffer[16] = (byte) (num % 10L + '0'); + num /= 10; + if (num <= 0) + return 16; + numberBuffer[15] = (byte) (num % 10L + '0'); + num /= 10; + if (num <= 0) + return 15; + numberBuffer[14] = (byte) (num % 10L + '0'); + num /= 10; + if (num <= 0) + return 14; + numberBuffer[13] = (byte) (num % 10L + '0'); + num /= 10; + if (num <= 0) + return 13; + numberBuffer[12] = (byte) (num % 10L + '0'); + num /= 10; + if (num <= 0) + return 12; + numberBuffer[11] = (byte) (num % 10L + '0'); + num /= 10; + if (num <= 0) + return 11; + numberBuffer[10] = (byte) (num % 10L + '0'); + return 10; + } + + private static int appendLong1(byte[] numberBuffer, long num) { + numberBuffer[19] = (byte) (num % 10L + '0'); + num /= 10; + if (num <= 0) + return 19; + numberBuffer[18] = (byte) (num % 10L + '0'); + num /= 10; + if (num <= 0) + return 18; + numberBuffer[17] = (byte) (num % 10L + '0'); + num /= 10; + if (num <= 0) + return 17; + numberBuffer[16] = (byte) (num % 10L + '0'); + num /= 10; + if (num <= 0) + return 16; + numberBuffer[15] = (byte) (num % 10L + '0'); + num /= 10; + if (num <= 0) + return 15; + numberBuffer[14] = (byte) (num % 10L + '0'); + num /= 10; + if (num <= 0) + return 14; + numberBuffer[13] = (byte) (num % 10L + '0'); + num /= 10; + if (num <= 0) + return 13; + numberBuffer[12] = (byte) (num % 10L + '0'); + num /= 10; + if (num <= 0) + return 12; + numberBuffer[11] = (byte) (num % 10L + '0'); + num /= 10; + if (num <= 0) + return 11; + numberBuffer[10] = (byte) (num % 10L + '0'); + num /= 10; + if (num <= 0) + return 10; + numberBuffer[9] = (byte) (num % 10L + '0'); + num /= 10; + if (num <= 0) + return 9; + numberBuffer[8] = (byte) (num % 10L + '0'); + num /= 10; + if (num <= 0) + return 8; + numberBuffer[7] = (byte) (num % 10L + '0'); + num /= 10; + if (num <= 0) + return 7; + numberBuffer[6] = (byte) (num % 10L + '0'); + num /= 10; + if (num <= 0) + return 6; + numberBuffer[5] = (byte) (num % 10L + '0'); + num /= 10; + if (num <= 0) + return 5; + numberBuffer[4] = (byte) (num % 10L + '0'); + num /= 10; + if (num <= 0) + return 4; + numberBuffer[3] = (byte) (num % 10L + '0'); + num /= 10; + if (num <= 0) + return 3; + numberBuffer[2] = (byte) (num % 10L + '0'); + num /= 10; + if (num <= 0) + return 2; + numberBuffer[1] = (byte) (num % 10L + '0'); + return 1; + } + + public static void append( StreamingDataOutput out, double d) + throws BufferOverflowException, IllegalArgumentException { + long val = Double.doubleToRawLongBits(d); + int sign = (int) (val >>> 63); + int exp = (int) ((val >>> 52) & 2047); + long mantissa = val & ((1L << 52) - 1); + if (sign != 0) { + out.rawWriteByte((byte) '-'); + } + if (exp == 0 && mantissa == 0) { + out.rawWriteByte((byte) '0'); + out.rawWriteByte((byte) '.'); + out.rawWriteByte((byte) '0'); + return; + + } else if (exp == 2047) { + if (mantissa == 0) { + out.write(Infinity); + + } else { + out.write(NaN); + } + return; + + } else if (exp > 0) { + mantissa += 1L << 52; + } + final int shift = (1023 + 52) - exp; + if (shift > 0) { + // integer and faction + if (shift < 53) { + long intValue = mantissa >> shift; + appendLong0(out, intValue); + mantissa -= intValue << shift; + if (mantissa > 0) { + out.rawWriteByte((byte) '.'); + mantissa <<= 1; + mantissa++; + int precision = shift + 1; + long error = 1; + + long value = intValue; + int decimalPlaces = 0; + while (mantissa > error) { + // times 5*2 = 10 + mantissa *= 5; + error *= 5; + precision--; + long num = (mantissa >> precision); + value = value * 10 + num; + out.rawWriteByte((byte) ('0' + num)); + mantissa -= num << precision; + + final double parsedValue = asDouble(value, 0, sign != 0, ++decimalPlaces); + if (parsedValue == d) + break; + } + } else { + out.rawWriteByte((byte) '.'); + out.rawWriteByte((byte) '0'); + } + return; + + } else { + // faction. + out.rawWriteByte((byte) '0'); + out.rawWriteByte((byte) '.'); + mantissa <<= 6; + mantissa += (1 << 5); + int precision = shift + 6; + + long error = (1 << 5); + + long value = 0; + int decimalPlaces = 0; + while (mantissa > error) { + while (mantissa > MAX_VALUE_DIVIDE_5) { + mantissa >>>= 1; + error = (error + 1) >>> 1; + precision--; + } + // times 5*2 = 10 + mantissa *= 5; + error *= 5; + precision--; + if (precision >= 64) { + decimalPlaces++; + out.rawWriteByte((byte) '0'); + continue; + } + long num = (mantissa >>> precision); + value = value * 10 + num; + final char c = (char) ('0' + num); + assert !(c < '0' || c > '9'); + out.rawWriteByte((byte) c); + mantissa -= num << precision; + final double parsedValue = asDouble(value, 0, sign != 0, ++decimalPlaces); + if (parsedValue == d) + break; + } + return; + } + } + // large number + mantissa <<= 10; + int precision = -10 - shift; + int digits = 0; + while ((precision > 53 || mantissa > Long.MAX_VALUE >> precision) && precision > 0) { + digits++; + precision--; + long mod = mantissa % 5; + mantissa /= 5; + int modDiv = 1; + while (mantissa < MAX_VALUE_DIVIDE_5 && precision > 1) { + precision -= 1; + mantissa <<= 1; + modDiv <<= 1; + } + mantissa += modDiv * mod / 5; + } + long val2 = precision > 0 ? mantissa << precision : mantissa >>> -precision; + + appendLong0(out, val2); + for (int i = 0; i < digits; i++) + out.rawWriteByte((byte) '0'); + } + + private static double asDouble(long value, int exp, boolean negative, int deci) { + // these numbers were determined empirically. + int leading = + Long.numberOfLeadingZeros(value) - 1; + if (leading > 9) + leading = (27 + leading) >>> 2; + + int scale2 = 0; + if (leading > 0) { + scale2 = leading; + value <<= scale2; + } + double d; + if (deci > 0) { + if (deci < 28) { + long fives = Maths.fives(deci); + long whole = value / fives; + long rem = value % fives; + d = whole + (double) rem / fives; + } else { + d = value / Math.pow(5, deci); + } + } else if (deci < -27) { + d = value * Math.pow(5, -deci); + + } else if (deci < 0) { + double fives = Maths.fives(-deci); + d = value * fives; + + } else { + d = value; + } + + double scalb = Math.scalb(d, exp - deci - scale2); + return negative ? -scalb : scalb; + } + + + @ForceInline + public static String readUtf8( StreamingDataInput in) + throws BufferUnderflowException, IllegalArgumentException, IORuntimeException { + StringBuilder sb = acquireStringBuilder(); + return in.readUtf8(sb) ? SI.intern(sb) : null; + } + + + @ForceInline + public static String readUtf8( RandomDataInput in, long offset, int maxUtf8Len) + throws BufferUnderflowException, IllegalArgumentException, + IllegalStateException, IORuntimeException { + StringBuilder sb = acquireStringBuilder(); + return in.readUtf8Limited(offset, sb, maxUtf8Len) > 0 ? SI.intern(sb) : null; + } + + public static StringBuilder acquireStringBuilder() { + return SBP.acquireStringBuilder(); + } + + public static Bytes acquireBytes() { + return BP.acquireBytes(); + } + + + @ForceInline + public static String read8bit( StreamingDataInput in) + throws BufferUnderflowException, IORuntimeException { + Bytes bytes = acquireBytes(); + return in.read8bit(bytes) ? SI.intern(bytes) : null; + } + + + @ForceInline + public static String parseUtf8( StreamingDataInput bytes, StopCharTester tester) throws BufferUnderflowException { + StringBuilder utfReader = acquireStringBuilder(); + parseUtf8(bytes, utfReader, tester); + return SI.intern(utfReader); + } + + @ForceInline + public static void parseUtf8( StreamingDataInput bytes, Appendable builder, + StopCharTester tester) + throws BufferUnderflowException { + try { + if (builder instanceof StringBuilder + && bytes.isDirectMemory()) { + Bytes vb = (Bytes) bytes; + StringBuilder sb = (StringBuilder) builder; + sb.setLength(0); + readUtf8_SB1(vb, sb, tester); + } else { + AppendableUtil.setLength(builder, 0); + readUtf81(bytes, builder, tester); + } + } catch (UTFDataFormatException e) { + UTFDataFormatRuntimeException e2 = new UTFDataFormatRuntimeException("Unable to parse invalid UTF-8 code"); + e2.initCause(e); + throw e2; + + } catch (IOException e) { + throw Jvm.rethrow(e); + } + } + + private static void readUtf8_SB1( + Bytes bytes, StringBuilder appendable, StopCharTester tester) + throws IOException, BufferUnderflowException { + NativeBytesStore nb = (NativeBytesStore) bytes.bytesStore(); + int i = 0, len = Maths.toInt32(bytes.readRemaining()); + long address = nb.address + nb.translate(bytes.readPosition()); + Memory memory = nb.memory; + + if (Jvm.isJava9Plus()) { + int appendableLength = appendable.capacity(); + for (; i < len && i < appendableLength; i++) { + int c = memory.readByte(address + i); + if (c < 0) // we have hit a non-ASCII character. + break; + if (tester.isStopChar(c)) { + bytes.readSkip(i + 1); + StringUtils.setCount(appendable, i); + return; + } + appendable.append((char) c); + } + } else { + final char[] chars = StringUtils.extractChars(appendable); + for (; i < len && i < chars.length; i++) { + int c = memory.readByte(address + i); + if (c < 0) // we have hit a non-ASCII character. + break; + if (tester.isStopChar(c)) { + bytes.readSkip(i + 1); + StringUtils.setCount(appendable, i); + return; + } + chars[i] = (char) c; +// appendable.appendDouble((char) c); + } + } + StringUtils.setCount(appendable, i); + bytes.readSkip(i); + if (i < len) { + readUtf8_SB2(bytes, appendable, tester); + } + } + + private static void readUtf8_SB2( StreamingDataInput bytes, StringBuilder appendable, StopCharTester tester) + throws UTFDataFormatException { + while (true) { + int c = bytes.readUnsignedByte(); + switch (c >> 4) { + case 0: + case 1: + case 2: + case 3: + case 4: + case 5: + case 6: + case 7: + /* 0xxxxxxx */ + if (tester.isStopChar(c)) + return; + appendable.append((char) c); + break; + + case 12: + case 13: { + /* 110x xxxx 10xx xxxx */ + int char2 = bytes.readUnsignedByte(); + if ((char2 & 0xC0) != 0x80) + throw new UTFDataFormatException( + "malformed input around byte"); + int c2 = (char) (((c & 0x1F) << 6) | + (char2 & 0x3F)); + if (tester.isStopChar(c2)) + return; + appendable.append((char) c2); + break; + } + + case 14: { + /* 1110 xxxx 10xx xxxx 10xx xxxx */ + int char2 = bytes.readUnsignedByte(); + int char3 = bytes.readUnsignedByte(); + + if (((char2 & 0xC0) != 0x80) || ((char3 & 0xC0) != 0x80)) + throw new UTFDataFormatException( + "malformed input around byte "); + int c3 = (char) (((c & 0x0F) << 12) | + ((char2 & 0x3F) << 6) | + (char3 & 0x3F)); + if (tester.isStopChar(c3)) + return; + appendable.append((char) c3); + break; + } + + default: + /* 10xx xxxx, 1111 xxxx */ + throw new UTFDataFormatException( + "malformed input around byte "); + } + } + } + + private static void readUtf81( StreamingDataInput bytes, Appendable appendable, StopCharTester tester) + throws IOException, BufferUnderflowException { + int len = Maths.toInt32(bytes.readRemaining()); + while (len-- > 0) { + int c = bytes.rawReadByte() & 0xff; + if (c >= 128) { + bytes.readSkip(-1); + break; + } + if (tester.isStopChar(c)) + return; + appendable.append((char) c); + } + if (len <= 0) + return; + + readUtf82(bytes, appendable, tester); + } + + private static void readUtf82( StreamingDataInput bytes, Appendable appendable, StopCharTester tester) + throws IOException { + while (true) { + int c = bytes.readUnsignedByte(); + switch (c >> 4) { + case 0: + case 1: + case 2: + case 3: + case 4: + case 5: + case 6: + case 7: + /* 0xxxxxxx */ + if (tester.isStopChar(c)) + return; + appendable.append((char) c); + break; + + case 12: + case 13: { + /* 110x xxxx 10xx xxxx */ + int char2 = bytes.readUnsignedByte(); + if ((char2 & 0xC0) != 0x80) + throw new UTFDataFormatException( + "malformed input around byte"); + int c2 = (char) (((c & 0x1F) << 6) | + (char2 & 0x3F)); + if (tester.isStopChar(c2)) + return; + appendable.append((char) c2); + break; + } + + case 14: { + /* 1110 xxxx 10xx xxxx 10xx xxxx */ + int char2 = bytes.readUnsignedByte(); + int char3 = bytes.readUnsignedByte(); + + if (((char2 & 0xC0) != 0x80) || ((char3 & 0xC0) != 0x80)) + throw new UTFDataFormatException( + "malformed input around byte "); + int c3 = (char) (((c & 0x0F) << 12) | + ((char2 & 0x3F) << 6) | + (char3 & 0x3F)); + if (tester.isStopChar(c3)) + return; + appendable.append((char) c3); + break; + } + + default: + /* 10xx xxxx, 1111 xxxx */ + throw new UTFDataFormatException( + "malformed input around byte "); + } + } + } + + @ForceInline + public static void parseUtf8( StreamingDataInput bytes, Appendable builder, StopCharsTester tester) + throws IllegalArgumentException, BufferUnderflowException, IORuntimeException { + AppendableUtil.setLength(builder, 0); + try { + AppendableUtil.readUtf8AndAppend(bytes, builder, tester); + } catch (IOException e) { + throw Jvm.rethrow(e); + } + } + + @ForceInline + public static void parse8bit( StreamingDataInput bytes, StringBuilder builder, StopCharsTester tester) { + builder.setLength(0); + AppendableUtil.read8bitAndAppend(bytes, builder, tester); + } + + @ForceInline + public static void parse8bit( StreamingDataInput bytes, Bytes builder, StopCharsTester tester) + throws BufferUnderflowException, BufferOverflowException { + builder.readPosition(0); + + read8bitAndAppend(bytes, builder, tester); + } + + @ForceInline + public static void parse8bit( StreamingDataInput bytes, StringBuilder builder, StopCharTester tester) { + builder.setLength(0); + read8bitAndAppend(bytes, builder, tester); + } + + @ForceInline + public static void parse8bit( StreamingDataInput bytes, Bytes builder, StopCharTester tester) + throws BufferUnderflowException, BufferOverflowException { + builder.clear(); + + read8bitAndAppend(bytes, builder, tester); + } + + private static void read8bitAndAppend( StreamingDataInput bytes, StringBuilder appendable, StopCharTester tester) { + while (true) { + int c = bytes.readUnsignedByte(); + if (tester.isStopChar(c)) + return; + appendable.append((char) c); + if (bytes.readRemaining() == 0) + return; + } + } + + private static void read8bitAndAppend( StreamingDataInput bytes, Bytes bytes2, StopCharTester tester) + throws BufferUnderflowException, BufferOverflowException { + try { + while (true) { + int c = bytes.readUnsignedByte(); + if (tester.isStopChar(c)) + return; + bytes2.writeUnsignedByte(c); + if (bytes.readRemaining() == 0) + return; + } + } catch (IllegalArgumentException e) { + throw new AssertionError(e); + } + } + + private static void read8bitAndAppend( StreamingDataInput bytes, Bytes bytes2, StopCharsTester tester) + throws BufferUnderflowException, BufferOverflowException { + try { + int ch = bytes.readUnsignedByte(); + do { + int next = bytes.readUnsignedByte(); + if (tester.isStopChar(ch, next)) { + bytes.readSkip(-1); + return; + } + bytes2.writeUnsignedByte(ch); + ch = next; + } while (bytes.readRemaining() > 1); + + if (tester.isStopChar(ch, -1)) { + bytes.readSkip(-1); + return; + } + bytes2.writeUnsignedByte(ch); + } catch (IllegalArgumentException e) { + throw new AssertionError(e); + } + } + + public static double parseDouble( StreamingDataInput in) + throws BufferUnderflowException { + long value = 0; + int exp = 0; + boolean negative = false; + int decimalPlaces = Integer.MIN_VALUE; + int ch; + do { + ch = in.rawReadByte() & 0xFF; + } while (ch == ' ' && in.readRemaining() > 0); + + try { + switch (ch) { + case 'N': + if (compareRest(in, "aN")) + return Double.NaN; + in.readSkip(-1); + + return Double.NaN; + case 'I': + //noinspection SpellCheckingInspection + if (compareRest(in, "nfinity")) + return Double.POSITIVE_INFINITY; + in.readSkip(-1); + return Double.NaN; + case '-': + if (compareRest(in, "Infinity")) + return Double.NEGATIVE_INFINITY; + negative = true; + ch = in.rawReadByte(); + break; + } + int tens = 0; + while (true) { + if (ch >= '0' && ch <= '9') { + while (value >= MAX_VALUE_DIVIDE_10) { + value >>>= 1; + exp++; + } + value = value * 10 + (ch - '0'); + decimalPlaces++; + + } else if (ch == '.') { + decimalPlaces = 0; + + } else if (ch == 'E' || ch == 'e') { + tens = (int) parseLong(in); + break; + + } else { + break; + } + if (in.readRemaining() == 0) + break; + ch = in.rawReadByte(); + } + if (decimalPlaces < 0) + decimalPlaces = 0; + + decimalPlaces = decimalPlaces - tens; + + return asDouble(value, exp, negative, decimalPlaces); + } finally { + ((ByteStringParser) in).lastDecimalPlaces(decimalPlaces); + } + } + + static boolean compareRest( StreamingDataInput in, String s) + throws BufferUnderflowException { + if (s.length() > in.readRemaining()) + return false; + long position = in.readPosition(); + for (int i = 0; i < s.length(); i++) { + if (in.readUnsignedByte() != s.charAt(i)) { + in.readPosition(position); + return false; + } + } + int ch; + if (Character.isLetterOrDigit(ch = in.readUnsignedByte())) { + in.readPosition(position); + return false; + } + while (Character.isWhitespace(ch) && ch >= ' ') + ch = in.readUnsignedByte(); + return true; + } + + @ForceInline + public static long parseLong( StreamingDataInput in) + throws BufferUnderflowException { + long num = 0; + boolean negative = false; + int b = in.peekUnsignedByte(); + if (b == '0') { + in.readSkip(1); + b = in.peekUnsignedByte(); + if (b == 'x' || b == 'X') { + in.readSkip(1); + return parseLongHexaDecimal(in); + } + } + while (in.readRemaining() > 0) { + b = in.rawReadByte(); + // if (b >= '0' && b <= '9') + if ((b - ('0' + Integer.MIN_VALUE)) <= 9 + Integer.MIN_VALUE) { + num = num * 10 + b - '0'; + } else if (b == '-') { + negative = true; + } else if (b == ']' || b == '}') { + in.readSkip(-1); + break; + } else if (b == '.') { + consumeDecimals(in); + break; + } else if (b == '_') { + // ignore + } else { + break; + } + } + return negative ? -num : num; + } + + private static long parseLongHexaDecimal( StreamingDataInput in) { + long num = 0; + while (in.readRemaining() > 0) { + int b = in.readUnsignedByte(); + // if (b >= '0' && b <= '9') + if ((b - ('0' + Integer.MIN_VALUE)) <= 9 + Integer.MIN_VALUE) { + num = (num << 4) + b - '0'; + // if (b >= 'A' && b <= 'F') + } else if ((b - ('A' + Integer.MIN_VALUE)) < 6 + Integer.MIN_VALUE) { + num = (num << 4) + b - ('A' - 10); + // if (b >= 'a' && b <= 'f') + } else if ((b - ('a' + Integer.MIN_VALUE)) < 6 + Integer.MIN_VALUE) { + num = (num << 4) + b - ('a' - 10); + } else if (b == ']' || b == '}') { + in.readSkip(-1); + break; + } else if (b == '.') { + consumeDecimals(in); + break; + } else if (b == '_') { + // ignore + } else { + break; + } + } + return num; + } + + static void consumeDecimals( StreamingDataInput in) { + int b; + while (in.readRemaining() > 0) { + b = in.readUnsignedByte(); + if (b < '0' || b > '9') { + break; + } + } + } + + @ForceInline + public static long parseLongDecimal( StreamingDataInput in) + throws BufferUnderflowException { + long num = 0; + boolean negative = false; + int decimalPlaces = Integer.MIN_VALUE; + while (in.readRemaining() > 0) { + int b = in.readUnsignedByte(); + // if (b >= '0' && b <= '9') + if ((b - ('0' + Integer.MIN_VALUE)) <= 9 + Integer.MIN_VALUE) { + num = num * 10 + b - '0'; + decimalPlaces++; + } else if (b == '.') { + decimalPlaces = 0; + } else if (b == '-') { + negative = true; + } else if (b == ']' || b == '}') { + in.readSkip(-1); + break; + } else if (b == '_') { + // ignore + } else { + break; + } + } + ((ByteStringParser) in).lastDecimalPlaces(decimalPlaces); + return negative ? -num : num; + } + + @ForceInline + public static long parseHexLong( StreamingDataInput in) + throws BufferUnderflowException { + long num = 0; + while (in.readRemaining() > 0) { + int b = in.readUnsignedByte(); + // if (b >= '0' && b <= '9') + if ((b - ('0' + Integer.MIN_VALUE)) <= 9 + Integer.MIN_VALUE) { + num = num * 16 + b - '0'; + } else if ((b - ('A' + Integer.MIN_VALUE)) <= 6 + Integer.MIN_VALUE) { + num = num * 16 + b - 'A' + 10; + } else if ((b - ('a' + Integer.MIN_VALUE)) <= 6 + Integer.MIN_VALUE) { + num = num * 16 + b - 'a' + 10; + } else if (b == ']' || b == '}') { + in.readSkip(-1); + break; + } else if (b == '_') { + // ignore + } else { + break; + } + } + return num; + } + + public static long parseLong( RandomDataInput in, long offset) + throws BufferUnderflowException { + long num = 0; + boolean negative = false; + while (true) { + int b = in.peekUnsignedByte(offset++); + // if (b >= '0' && b <= '9') + if ((b - ('0' + Integer.MIN_VALUE)) <= 9 + Integer.MIN_VALUE) + num = num * 10 + b - '0'; + else if (b == '-') + negative = true; + else if (b != '_') + break; + } + return negative ? -num : num; + } + + public static boolean skipTo( ByteStringParser parser, StopCharTester tester) { + while (parser.readRemaining() > 0) { + int ch = parser.readUnsignedByte(); + if (tester.isStopChar(ch)) + return true; + } + return false; + } + + public static float addAndGetFloat( RandomDataInput in, long offset, float adding) + throws BufferUnderflowException { + try { + for (; ; ) { + int value = in.readVolatileInt(offset); + float value1 = Float.intBitsToFloat(value) + adding; + int value2 = Float.floatToRawIntBits(value1); + if (in.compareAndSwapInt(offset, value, value2)) + return value1; + } + } catch (BufferOverflowException e) { + throw new AssertionError(e); + } + } + + public static double addAndGetDouble( RandomDataInput in, long offset, double adding) + throws BufferUnderflowException { + try { + for (; ; ) { + long value = in.readVolatileLong(offset); + double value1 = Double.longBitsToDouble(value) + adding; + long value2 = Double.doubleToRawLongBits(value1); + if (in.compareAndSwapLong(offset, value, value2)) + return value1; + } + } catch (BufferOverflowException e) { + throw new AssertionError(e); + } + } + + public static int addAndGetInt( RandomDataInput in, long offset, int adding) + throws BufferUnderflowException { + try { + for (; ; ) { + int value = in.readVolatileInt(offset); + int value2 = value + adding; + if (in.compareAndSwapInt(offset, value, value2)) + return value2; + } + } catch (BufferOverflowException e) { + throw new AssertionError(e); + } + } + + public static long addAndGetLong( RandomDataInput in, long offset, long adding) + throws BufferUnderflowException { + try { + for (; ; ) { + long value = in.readVolatileLong(offset); + long value2 = value + adding; + if (in.compareAndSwapLong(offset, value, value2)) + return value2; + } + } catch (BufferOverflowException e) { + throw new AssertionError(e); + } + } + + /** + * display the hex data of Bytes from the position() to the limit() + * + * @param bytes the buffer you wish to toString() + * @return hex representation of the buffer, from example [0D ,OA, FF] + */ + public static String toHexString( final Bytes bytes, long offset, long len) + throws BufferUnderflowException { + if (len == 0) + return ""; + + int width = 16; + int[] lastLine = new int[width]; + String sep = ""; + long position = bytes.readPosition(); + long limit = bytes.readLimit(); + + try { + bytes.readPositionRemaining(offset, len); + + final StringBuilder builder = new StringBuilder(); + long start = offset / width * width; + long end = (offset + len + width - 1) / width * width; + for (long i = start; i < end; i += width) { + // check for duplicate rows + if (i + width < end) { + boolean same = true; + + for (int j = 0; j < width && i + j < offset + len; j++) { + int ch = bytes.readUnsignedByte(i + j); + same &= (ch == lastLine[j]); + lastLine[j] = ch; + } + if (i > start && same) { + sep = "........\n"; + continue; + } + } + builder.append(sep); + sep = ""; + String str = Long.toHexString(i); + for (int j = str.length(); j < 8; j++) + builder.append('0'); + builder.append(str); + for (int j = 0; j < width; j++) { + if (j == width / 2) + builder.append(' '); + if (i + j < offset || i + j >= offset + len) { + builder.append(" "); + + } else { + builder.append(' '); + int ch = bytes.readUnsignedByte(i + j); + builder.append(HEXADECIMAL[ch >> 4]); + builder.append(HEXADECIMAL[ch & 15]); + } + } + builder.append(' '); + for (int j = 0; j < width; j++) { + if (j == width / 2) + builder.append(' '); + if (i + j < offset || i + j >= offset + len) { + builder.append(' '); + + } else { + int ch = bytes.readUnsignedByte(i + j); + if (ch < ' ' || ch > 126) + ch = '\u00B7'; + builder.append((char) ch); + } + } + builder.append("\n"); + } + return builder.toString(); + } finally { + bytes.readLimit(limit); + bytes.readPosition(position); + } + } + + public static void appendTimeMillis( ByteStringAppender b, long timeInMS) + throws BufferOverflowException { + int hours = (int) (timeInMS / (60 * 60 * 1000)); + if (hours > 99) { + b.append(hours); // can have over 24 hours. + } else { + b.rawWriteByte((byte) (hours / 10 + '0')); + b.rawWriteByte((byte) (hours % 10 + '0')); + } + b.rawWriteByte((byte) ':'); + int minutes = (int) ((timeInMS / (60 * 1000)) % 60); + b.rawWriteByte((byte) (minutes / 10 + '0')); + b.rawWriteByte((byte) (minutes % 10 + '0')); + b.rawWriteByte((byte) ':'); + int seconds = (int) ((timeInMS / 1000) % 60); + b.rawWriteByte((byte) (seconds / 10 + '0')); + b.rawWriteByte((byte) (seconds % 10 + '0')); + b.rawWriteByte((byte) '.'); + int millis = (int) (timeInMS % 1000); + b.rawWriteByte((byte) (millis / 100 + '0')); + b.rawWriteByte((byte) (millis / 10 % 10 + '0')); + b.rawWriteByte((byte) (millis % 10 + '0')); + } + + public static boolean equalBytesAny( BytesStore b1, BytesStore b2, long readRemaining) + throws BufferUnderflowException { + BytesStore bs1 = b1;// OS.isWindows() ? b1 : b1.bytesStore(); + BytesStore bs2 = b2; //OS.isWindows() ? b2 : b2.bytesStore(); + + if (bs1.readRemaining() < readRemaining) + return false; + + long i = 0; + for (; i < readRemaining - 7 && + canReadBytesAt(bs1, b1.readPosition() + i, 8) && + canReadBytesAt(bs2, b2.readPosition() + i, 8); i += 8) { + long l1 = bs1.readLong(b1.readPosition() + i); + long l2 = bs2.readLong(b2.readPosition() + i); + if (l1 != l2) + return false; + } + for (; i < readRemaining && + canReadBytesAt(bs1, b1.readPosition() + i, 1) && + canReadBytesAt(bs2, b2.readPosition() + i, 1); i++) { + byte i1 = bs1.readByte(b1.readPosition() + i); + byte i2 = bs2.readByte(b2.readPosition() + i); + if (i1 != i2) + return false; + } + return true; + } + + public static void appendDateMillis( ByteStringAppender b, long timeInMS) + throws BufferOverflowException { + DateCache dateCache = dateCacheTL.get(); + if (dateCache == null) { + dateCacheTL.set(dateCache = new DateCache()); + } + long date = timeInMS / 86400000; + if (dateCache.lastDay != date) { + dateCache.lastDateStr = dateCache.dateFormat.format(new Date(timeInMS)).getBytes(ISO_8859_1); + dateCache.lastDay = date; + + } else { + assert dateCache.lastDateStr != null; + } + b.write(dateCache.lastDateStr); + } + + + public static , S extends StreamingDataInput> E readEnum( StreamingDataInput input, Class eClass) + throws BufferUnderflowException, IORuntimeException { + Bytes bytes = acquireBytes(); + input.read8bit(bytes); + + return (E) EnumInterner.ENUM_INTERNER.get(eClass).intern(bytes); + } + + public static void writeFully( RandomDataInput bytes, long offset, long length, StreamingDataOutput sdo) + throws BufferUnderflowException, BufferOverflowException { + long i = 0; + for (; i < length - 3; i += 4) + sdo.rawWriteInt(bytes.readInt(offset + i)); + for (; i < length; i++) + sdo.rawWriteByte(bytes.readByte(offset + i)); + } + + public static void copyMemory(long from, long to, int length) + throws BufferUnderflowException, BufferOverflowException { + UnsafeMemory.copyMemory(from, to, length); + } + + + public static byte[] toByteArray( RandomDataInput in) { + int len = (int) Math.min(Bytes.MAX_HEAP_CAPACITY, in.readRemaining()); + byte[] bytes = new byte[len]; + in.read(in.readPosition(), bytes, 0, bytes.length); + return bytes; + } + + public static void copy( RandomDataInput input, OutputStream output) + throws IOException { + byte[] bytes = new byte[512]; + long start = input.readPosition(); + long i = 0; + for (int len; (len = (int) input.read(start + i, bytes, 0, bytes.length)) > 0; i += len) { + output.write(bytes, 0, len); + } + } + + public static void copy( InputStream input, StreamingDataOutput output) + throws IOException, BufferOverflowException, IllegalArgumentException { + byte[] bytes = new byte[512]; + for (int len; (len = input.read(bytes)) > 0; ) { + output.write(bytes, 0, len); + } + } + + public static Boolean parseBoolean( ByteStringParser parser, StopCharTester tester) throws BufferUnderflowException { + Bytes sb = acquireBytes(); + parseUtf8(parser, sb, tester); + if (sb.length() == 0) + return null; + switch (sb.charAt(0)) { + case 't': + case 'T': + return sb.length() == 1 || StringUtils.equalsCaseIgnore(sb, "true") ? true : null; + case 'y': + case 'Y': + return sb.length() == 1 || StringUtils.equalsCaseIgnore(sb, "yes") ? true : null; + case '0': + return sb.length() == 1 ? false : null; + case '1': + return sb.length() == 1 ? true : null; + case 'f': + case 'F': + return sb.length() == 1 || StringUtils.equalsCaseIgnore(sb, "false") ? false : null; + case 'n': + case 'N': + return sb.length() == 1 || StringUtils.equalsCaseIgnore(sb, "no") ? false : null; + default: + return null; + } + } + + + public static BytesStore subBytes(RandomDataInput from, long start, long length) throws BufferUnderflowException { + try { + BytesStore ret = NativeBytesStore.nativeStore(Math.max(0, length)); + ret.write(0L, from, start, length); + return ret; + } catch (IllegalArgumentException | BufferOverflowException e) { + throw new AssertionError(e); + } + } + + public static long findByte( RandomDataInput bytes, byte stopByte) { + try { + long start = bytes.readPosition(); + long remaining = bytes.readRemaining(); + for (long i = 0; i < remaining; i++) { + if (bytes.readByte(start + i) == stopByte) + return i; + } + return -1; + } catch (BufferUnderflowException e) { + throw new AssertionError(e); + } + } + + + public static Bytes fromHexString( String s) { + Bytes in = Bytes.from(s); + try { + Bytes out = Bytes.elasticByteBuffer(); + OUTER: + while (in.readRemaining() > 0) { + in.parseHexLong(); + for (int i = 0; i < 16; i++) { + if (in.peekUnsignedByte() == ' ') { + in.readSkip(1); + if (in.peekUnsignedByte() == ' ') + break OUTER; + } + long value = in.parseHexLong(); + out.rawWriteByte((byte) value); + } + if (in.readByte(in.readPosition() - 1) <= ' ') + in.readSkip(-1); + in.skipTo(StopCharTesters.CONTROL_STOP); + } + return out; + } catch (BufferUnderflowException | BufferOverflowException e) { + throw new AssertionError(e); + } finally { + in.releaseLast(); + } + } + + public static void readHistogram( StreamingDataInput in, Histogram histogram) { + try { + int powersOf2 = Maths.toUInt31(in.readStopBit()); + int fractionBits = Maths.toUInt31(in.readStopBit()); + long overRange = in.readStopBit(); + long totalCount = in.readStopBit(); + long floor = in.readStopBit(); + histogram.init(powersOf2, fractionBits, overRange, totalCount, floor); + int length = Maths.toUInt31(in.readStopBit()); + int[] ints = histogram.sampleCount(); + for (int i = 0; i < length; i++) + ints[i] = Maths.toUInt31(in.readStopBit()); + } catch (IllegalArgumentException e) { + throw new IORuntimeException(e); + } + } + + public static void writeHistogram( StreamingDataOutput out, Histogram histogram) throws BufferOverflowException { + out.writeStopBit(histogram.powersOf2()); + out.writeStopBit(histogram.fractionBits()); + out.writeStopBit(histogram.overRange()); + out.writeStopBit(histogram.totalCount()); + out.writeStopBit(histogram.floor()); + int[] ints = histogram.sampleCount(); + out.writeStopBit(ints.length); + for (int i : ints) + out.writeStopBit(i); + } + + public static ByteBuffer asByteBuffer( BytesStore bytesStore) throws BufferUnderflowException { + return asByteBuffer(BYTE_BUFFER_TL, bytesStore); + } + + public static ByteBuffer asByteBuffer2( BytesStore bytesStore) throws BufferUnderflowException { + return asByteBuffer(BYTE_BUFFER2_TL, bytesStore); + } + + private static ByteBuffer asByteBuffer( ThreadLocal byteBufferTL, BytesStore bytesStore) throws BufferUnderflowException { + ByteBuffer byteBuffer = byteBufferTL.get(); + assignBytesStoreToByteBuffer(bytesStore, byteBuffer); + return byteBuffer; + } + + public static void assignBytesStoreToByteBuffer( BytesStore bytesStore, ByteBuffer byteBuffer) throws BufferUnderflowException { + long address = bytesStore.addressForRead(bytesStore.readPosition()); + long capacity = bytesStore.readRemaining(); + ByteBuffers.setAddressCapacity(byteBuffer, address, capacity); + byteBuffer.clear(); + } + + private static boolean canReadBytesAt( + final BytesStore bs, final long offset, final int length) { + return bs.readLimit() - offset >= length; + } + + public static String parse8bit(ByteStringParser bsp, StopCharTester stopCharTester) { + StringBuilder sb = BytesInternal.acquireStringBuilder(); + BytesInternal.parse8bit(bsp, sb, stopCharTester); + return BytesInternal.SI.intern(sb); + } + + static class DateCache { + final SimpleDateFormat dateFormat = new SimpleDateFormat("yyyyMMdd"); + private long lastDay = Long.MIN_VALUE; + + private byte[] lastDateStr = null; + + DateCache() { + dateFormat.setTimeZone(TimeZone.getTimeZone("GMT")); + } + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesMarshallable.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesMarshallable.java new file mode 100644 index 0000000..6679481 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesMarshallable.java @@ -0,0 +1,48 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.annotation.DontChain; +import net.openhft.chronicle.core.io.IORuntimeException; + +/** + * An object which can be read or written directly to Bytes in a streaming manner. + */ +@DontChain +public interface BytesMarshallable extends ReadBytesMarshallable, WriteBytesMarshallable { + @Override + @SuppressWarnings("rawtypes") + default void readMarshallable(BytesIn bytes) throws IORuntimeException { + BytesUtil.readMarshallable(this, bytes); + } + + @SuppressWarnings("rawtypes") + @Override + default void writeMarshallable(BytesOut bytes) { + BytesUtil.writeMarshallable(this, bytes); + } + + default String $toString() { + HexDumpBytes bytes = new HexDumpBytes(); + writeMarshallable(bytes); + String s = "# " + getClass().getName() + "\n" + bytes.toHexString(); + bytes.releaseLast(); + return s; + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesMarshaller.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesMarshaller.java new file mode 100644 index 0000000..4979e17 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesMarshaller.java @@ -0,0 +1,759 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.ClassLocal; +import net.openhft.chronicle.core.Jvm; +import net.openhft.chronicle.core.Maths; +import net.openhft.chronicle.core.io.IORuntimeException; +import net.openhft.chronicle.core.util.ObjectUtils; +import org.jetbrains.annotations.NotNull; +import org.jetbrains.annotations.Nullable; + +import java.lang.reflect.*; +import java.util.*; +import java.util.function.Supplier; + +@SuppressWarnings({"rawtypes", "unchecked"}) +public class BytesMarshaller { + public static final ClassLocal BYTES_MARSHALLER_CL + = ClassLocal.withInitial(BytesMarshaller::new); + private final FieldAccess[] fields; + + public BytesMarshaller( Class tClass) { + Map map = new LinkedHashMap<>(); + getAllField(tClass, map); + fields = map.values().stream() + .map(FieldAccess::create).toArray(FieldAccess[]::new); + } + + public static void getAllField( Class clazz, Map map) { + if (clazz != Object.class) + getAllField(clazz.getSuperclass(), map); + for ( Field field : clazz.getDeclaredFields()) { + if ((field.getModifiers() & (Modifier.STATIC | Modifier.TRANSIENT)) != 0) + continue; + Jvm.setAccessible(field); + map.put(field.getName(), field); + } + } + + public void readMarshallable(ReadBytesMarshallable t, BytesIn in) { + for ( FieldAccess field : fields) { + field.read(t, in); + } + } + + public void writeMarshallable(WriteBytesMarshallable t, BytesOut out) { + out.indent(+1); + for ( FieldAccess field : fields) { + field.write(t, out); + } + out.indent(-1); + } + + static abstract class FieldAccess { + final Field field; + + FieldAccess(Field field) { + this.field = field; + } + + + public static Object create( Field field) { + Class type = field.getType(); + switch (type.getName()) { + case "boolean": + return new BooleanFieldAccess(field); + case "byte": + return new ByteFieldAccess(field); + case "char": + return new CharFieldAccess(field); + case "short": + return new ShortFieldAccess(field); + case "int": + return new IntegerFieldAccess(field); + case "float": + return new FloatFieldAccess(field); + case "long": + return new LongFieldAccess(field); + case "double": + return new DoubleFieldAccess(field); + default: + if (type.isArray()) { + if (type.getComponentType().isPrimitive()) { + if (type == byte[].class) + return new ByteArrayFieldAccess(field); + if (type == int[].class) + return new IntArrayFieldAccess(field); + if (type == float[].class) + return new FloatArrayFieldAccess(field); + if (type == long[].class) + return new LongArrayFieldAccess(field); + if (type == double[].class) + return new DoubleArrayFieldAccess(field); + throw new UnsupportedOperationException("TODO " + field.getType()); + } + return new ObjectArrayFieldAccess(field); + } + if (Collection.class.isAssignableFrom(type)) + return new CollectionFieldAccess(field); + if (Map.class.isAssignableFrom(type)) + return new MapFieldAccess(field); + if (BytesStore.class.isAssignableFrom(type)) + return new BytesFieldAccess(field); + if (BytesMarshallable.class.isAssignableFrom(type)) + return new BytesMarshallableFieldAccess(field); + return new ScalarFieldAccess(field); + } + } + + + static Class extractClass(Type type0) { + if (type0 instanceof Class) + return (Class) type0; + else if (type0 instanceof ParameterizedType) + return (Class) ((ParameterizedType) type0).getRawType(); + else + return Object.class; + } + + + @Override + public String toString() { + return getClass().getSimpleName() + "{" + + "field=" + field + + '}'; + } + + void write(Object o, BytesOut write) { + try { + write.comment(field.getName()); + getValue(o, write); + } catch (IllegalAccessException iae) { + throw new AssertionError(iae); + } + } + + protected abstract void getValue(Object o, BytesOut write) throws IllegalAccessException; + + void read(Object o, BytesIn read) { + try { + setValue(o, read); + } catch (IllegalAccessException iae) { + throw new AssertionError(iae); + } catch (IORuntimeException e) { + throw Jvm.rethrow(e); + } + } + + protected abstract void setValue(Object o, BytesIn read) throws IllegalAccessException, IORuntimeException; + + + protected Supplier newInstance( Class type) { + try { + return (Supplier) type.newInstance(); + } catch (IllegalAccessException e) { + throw new AssertionError(e); + } catch (InstantiationException e) { + throw Jvm.rethrow(e); + } + } + } + + static class ScalarFieldAccess extends FieldAccess { + public ScalarFieldAccess(Field field) { + super(field); + } + + @Override + protected void getValue(Object o, BytesOut write) throws IllegalAccessException { + Object o2 = field.get(o); + String s = o2 == null ? null : o2.toString(); + write.writeUtf8(s); + } + + @Override + protected void setValue(Object o, BytesIn read) throws IllegalAccessException, IORuntimeException { + String s = read.readUtf8(); + field.set(o, ObjectUtils.convertTo(field.getType(), s)); + } + } + + static class BytesMarshallableFieldAccess extends FieldAccess { + public BytesMarshallableFieldAccess(Field field) { + super(field); + } + + @Override + protected void getValue(Object o, BytesOut write) throws IllegalAccessException { + BytesMarshallable o2 = (BytesMarshallable) field.get(o); + assert o2 != null; + o2.writeMarshallable(write); + } + + @Override + protected void setValue(Object o, BytesIn read) throws IllegalAccessException, IORuntimeException { + BytesMarshallable o2 = (BytesMarshallable) field.get(o); + if (!field.getType().isInstance(o2)) + field.set(o, o2 = (BytesMarshallable) ObjectUtils.newInstance((Class) field.getType())); + + o2.readMarshallable(read); + } + } + + static class BytesFieldAccess extends FieldAccess { + public BytesFieldAccess(Field field) { + super(field); + } + + @Override + protected void getValue(Object o, BytesOut write) throws IllegalAccessException { + BytesStore bytes = (BytesStore) field.get(o); + if (bytes == null) { + write.writeStopBit(-1); + return; + } + long offset = bytes.readPosition(); + long length = bytes.readRemaining(); + write.writeStopBit(length); + write.write(bytes, offset, length); + } + + @Override + protected void setValue(Object o, BytesIn read) throws IllegalAccessException, IORuntimeException { + Bytes bytes = (Bytes) field.get(o); + long stopBit = read.readStopBit(); + if (stopBit == -1) { + if (bytes != null) + bytes.releaseLast(); + field.set(o, null); + return; + } + int length = Maths.toUInt31(stopBit); + Bytes bs; + if (bytes == null) { + bs = Bytes.allocateElasticOnHeap(length); + field.set(o, bs); + } else { + bs = bytes; + } + bs.clear(); + read.read(bs, length); + bs.readLimit(length); + } + } + +/* + static class ArrayFieldAccess extends FieldAccess { + private final Class componentType; + + public ArrayFieldAccess( Field field) { + super(field); + componentType = field.getType().getComponentType(); + } + + @Override + protected void getValue(Object o, BytesOut write) throws IllegalAccessException { + throw new UnsupportedOperationException("TODO"); + } + + @Override + protected void setValue(Object o, BytesIn read) throws IllegalAccessException { + throw new UnsupportedOperationException("TODO"); + } + } +*/ + + static class ObjectArrayFieldAccess extends FieldAccess { + Class componentType; + + public ObjectArrayFieldAccess(Field field) { + super(field); + componentType = field.getType().getComponentType(); + } + + @Override + protected void getValue(Object o, BytesOut write) throws IllegalAccessException { + Object[] c = (Object[]) field.get(o); + if (c == null) { + write.writeStopBit(-1); + return; + } + int size = c.length; + write.writeStopBit(size); + if (size == 0) + return; + for (int i = 0; i < size; i++) + write.writeObject(componentType, c[i]); + } + + @Override + protected void setValue(Object o, BytesIn read) throws IllegalAccessException { + Object[] c = (Object[]) field.get(o); + int length = Maths.toInt32(read.readStopBit()); + if (length < 0) { + if (c != null) + field.set(o, null); + return; + } + if (c == null) + field.set(o, c = (Object[]) Array.newInstance(field.getType().getComponentType(), length)); + else if (c.length != length) + field.set(o, c = Arrays.copyOf(c, length)); + for (int i = 0; i < length; i++) { + Object o2 = c[i]; + if (o2 instanceof BytesMarshallable) + ((BytesMarshallable) o2).readMarshallable(read); + else + c[i] = read.readObject(componentType); + } + } + } + + static class CollectionFieldAccess extends FieldAccess { + final Supplier collectionSupplier; + + private final Class componentType; + private final Class type; + + public CollectionFieldAccess( Field field) { + super(field); + type = field.getType(); + if (type == List.class || type == Collection.class) + collectionSupplier = ArrayList::new; + else if (type == SortedSet.class || type == NavigableSet.class) + collectionSupplier = TreeSet::new; + else if (type == Set.class) + collectionSupplier = LinkedHashSet::new; + else + collectionSupplier = newInstance(type); + Type genericType = field.getGenericType(); + if (genericType instanceof ParameterizedType) { + ParameterizedType pType = (ParameterizedType) genericType; + Type type0 = pType.getActualTypeArguments()[0]; + componentType = extractClass(type0); + } else { + componentType = Object.class; + } + } + + @Override + protected void getValue(Object o, BytesOut write) throws IllegalAccessException { + Collection c = (Collection) field.get(o); + if (c == null) { + write.writeStopBit(-1); + return; + } + write.writeStopBit(c.size()); + if (c.isEmpty()) + return; + if (c instanceof RandomAccess && c instanceof List) { + List l = (List) c; + for (int i = 0, size = l.size(); i < size; i++) + write.writeObject(componentType, l.get(i)); + } else { + for (Object o2 : c) { + write.writeObject(componentType, o2); + } + } + } + + @Override + protected void setValue(Object o, BytesIn read) throws IllegalAccessException { + Collection c = (Collection) field.get(o); + int length = Maths.toInt32(read.readStopBit()); + if (length < 0) { + if (c != null) + field.set(o, null); + return; + } + c.clear(); + for (int i = 0; i < length; i++) + c.add(read.readObject(componentType)); + } + } + + static class MapFieldAccess extends FieldAccess { + final Supplier collectionSupplier; + private final Class type; + + private final Class keyType; + + private final Class valueType; + + public MapFieldAccess( Field field) { + super(field); + type = field.getType(); + if (type == Map.class) + collectionSupplier = LinkedHashMap::new; + else if (type == SortedMap.class || type == NavigableMap.class) + collectionSupplier = TreeMap::new; + else + collectionSupplier = newInstance(type); + Type genericType = field.getGenericType(); + if (genericType instanceof ParameterizedType) { + ParameterizedType pType = (ParameterizedType) genericType; + Type[] actualTypeArguments = pType.getActualTypeArguments(); + keyType = extractClass(actualTypeArguments[0]); + valueType = extractClass(actualTypeArguments[1]); + + } else { + keyType = Object.class; + valueType = Object.class; + } + } + + @Override + protected void getValue(Object o, BytesOut write) throws IllegalAccessException { + Map m = (Map) field.get(o); + if (m == null) { + write.writeStopBit(-1); + return; + } + write.writeStopBit(m.size()); + for (Map.Entry entry : m.entrySet()) { + write.writeObject(keyType, entry.getKey()); + write.writeObject(valueType, entry.getValue()); + } + } + + @Override + protected void setValue(Object o, BytesIn read) throws IllegalAccessException { + Map m = (Map) field.get(o); + long length = read.readStopBit(); + if (length < 0) { + if (m != null) + field.set(o, null); + return; + } + if (m == null) { + field.set(o, m = new LinkedHashMap<>()); + } else { + m.clear(); + } + for (int i = 0; i < length; i++) { + m.put(read.readObject(keyType), read.readObject(valueType)); + } + } + } + + static class BooleanFieldAccess extends FieldAccess { + public BooleanFieldAccess(Field field) { + super(field); + } + + @Override + protected void getValue(Object o, BytesOut write) throws IllegalAccessException { + write.writeBoolean(field.getBoolean(o)); + } + + @Override + protected void setValue(Object o, BytesIn read) throws IllegalAccessException { + field.setBoolean(o, read.readBoolean()); + } + } + + static class ByteFieldAccess extends FieldAccess { + public ByteFieldAccess(Field field) { + super(field); + } + + @Override + protected void getValue(Object o, BytesOut write) throws IllegalAccessException { + write.writeByte(field.getByte(o)); + } + + @Override + protected void setValue(Object o, BytesIn read) throws IllegalAccessException { + field.setByte(o, read.readByte()); + } + } + + static class ByteArrayFieldAccess extends FieldAccess { + public ByteArrayFieldAccess(Field field) { + super(field); + } + + @Override + protected void getValue(Object o, BytesOut write) throws IllegalAccessException { + byte[] array = (byte[]) field.get(o); + if (array == null) { + write.writeInt(~0); + } else { + write.writeInt(array.length); + for (int i = 0; i < array.length; i++) + write.writeByte(array[i]); + } + } + + @Override + protected void setValue(Object o, BytesIn read) throws IllegalAccessException { + int len = read.readInt(); + if (len == ~0) { + field.set(o, null); + } else if (len >= 0) { + byte[] array = (byte[]) field.get(o); + if (array == null || array.length != len) { + array = new byte[len]; + field.set(o, array); + } + for (int i = 0; i < len; i++) + array[i] = read.readByte(); + } + } + } + + static class CharFieldAccess extends FieldAccess { + public CharFieldAccess(Field field) { + super(field); + } + + @Override + protected void getValue(Object o, BytesOut write) throws IllegalAccessException { + char aChar = field.getChar(o); + if (aChar >= 65536 - 127) + write.writeStopBit(aChar - 65536); + else + write.writeStopBit(aChar); + } + + @Override + protected void setValue(Object o, BytesIn read) throws IllegalAccessException { + field.setChar(o, read.readStopBitChar()); + } + } + + static class ShortFieldAccess extends FieldAccess { + public ShortFieldAccess(Field field) { + super(field); + } + + @Override + protected void getValue(Object o, BytesOut write) throws IllegalAccessException { + write.writeShort(field.getShort(o)); + } + + @Override + protected void setValue(Object o, BytesIn read) throws IllegalAccessException { + field.setShort(o, read.readShort()); + } + } + + static class IntegerFieldAccess extends FieldAccess { + public IntegerFieldAccess(Field field) { + super(field); + } + + @Override + protected void getValue(Object o, BytesOut write) throws IllegalAccessException { + write.writeInt(field.getInt(o)); + } + + @Override + protected void setValue(Object o, BytesIn read) throws IllegalAccessException { + field.setInt(o, read.readInt()); + } + } + + static class IntArrayFieldAccess extends FieldAccess { + public IntArrayFieldAccess(Field field) { + super(field); + } + + @Override + protected void getValue(Object o, BytesOut write) throws IllegalAccessException { + int[] array = (int[]) field.get(o); + if (array == null) { + write.writeInt(~0); + } else { + write.writeInt(array.length); + for (int i = 0; i < array.length; i++) + write.writeInt(array[i]); + } + } + + @Override + protected void setValue(Object o, BytesIn read) throws IllegalAccessException { + int len = read.readInt(); + if (len == ~0) { + field.set(o, null); + } else if (len >= 0) { + int[] array = (int[]) field.get(o); + if (array == null || array.length != len) { + array = new int[len]; + field.set(o, array); + } + for (int i = 0; i < len; i++) + array[i] = read.readInt(); + } + } + } + + static class FloatFieldAccess extends FieldAccess { + public FloatFieldAccess(Field field) { + super(field); + } + + @Override + protected void getValue(Object o, BytesOut write) throws IllegalAccessException { + write.writeFloat(field.getFloat(o)); + } + + @Override + protected void setValue(Object o, BytesIn read) throws IllegalAccessException { + field.setFloat(o, read.readFloat()); + } + } + + static class FloatArrayFieldAccess extends FieldAccess { + public FloatArrayFieldAccess(Field field) { + super(field); + } + + @Override + protected void getValue(Object o, BytesOut write) throws IllegalAccessException { + float[] array = (float[]) field.get(o); + if (array == null) { + write.writeInt(~0); + } else { + write.writeInt(array.length); + for (int i = 0; i < array.length; i++) + write.writeFloat(array[i]); + } + } + + @Override + protected void setValue(Object o, BytesIn read) throws IllegalAccessException { + int len = read.readInt(); + if (len == ~0) { + field.set(o, null); + } else if (len >= 0) { + float[] array = (float[]) field.get(o); + if (array == null || array.length != len) { + array = new float[len]; + field.set(o, array); + } + for (int i = 0; i < len; i++) + array[i] = read.readFloat(); + } + } + } + + static class LongFieldAccess extends FieldAccess { + public LongFieldAccess(Field field) { + super(field); + } + + @Override + protected void getValue(Object o, BytesOut write) throws IllegalAccessException { + write.writeLong(field.getLong(o)); + } + + @Override + protected void setValue(Object o, BytesIn read) throws IllegalAccessException { + field.setLong(o, read.readLong()); + } + } + + static class LongArrayFieldAccess extends FieldAccess { + public LongArrayFieldAccess(Field field) { + super(field); + } + + @Override + protected void getValue(Object o, BytesOut write) throws IllegalAccessException { + long[] array = (long[]) field.get(o); + if (array == null) { + write.writeInt(~0); + } else { + write.writeInt(array.length); + for (int i = 0; i < array.length; i++) + write.writeLong(array[i]); + } + } + + @Override + protected void setValue(Object o, BytesIn read) throws IllegalAccessException { + int len = read.readInt(); + if (len == ~0) { + field.set(o, null); + } else if (len >= 0) { + long[] array = (long[]) field.get(o); + if (array == null || array.length != len) { + array = new long[len]; + field.set(o, array); + } + for (int i = 0; i < len; i++) + array[i] = read.readLong(); + } + } + } + + static class DoubleFieldAccess extends FieldAccess { + public DoubleFieldAccess(Field field) { + super(field); + } + + @Override + protected void getValue(Object o, BytesOut write) throws IllegalAccessException { + write.writeDouble(field.getDouble(o)); + } + + @Override + protected void setValue(Object o, BytesIn read) throws IllegalAccessException { + field.setDouble(o, read.readDouble()); + } + } + + static class DoubleArrayFieldAccess extends FieldAccess { + public DoubleArrayFieldAccess(Field field) { + super(field); + } + + @Override + protected void getValue(Object o, BytesOut write) throws IllegalAccessException { + double[] array = (double[]) field.get(o); + if (array == null) { + write.writeInt(~0); + } else { + write.writeInt(array.length); + for (int i = 0; i < array.length; i++) + write.writeDouble(array[i]); + } + } + + @Override + protected void setValue(Object o, BytesIn read) throws IllegalAccessException { + int len = read.readInt(); + if (len == ~0) { + field.set(o, null); + } else if (len >= 0) { + double[] array = (double[]) field.get(o); + if (array == null || array.length != len) { + array = new double[len]; + field.set(o, array); + } + for (int i = 0; i < len; i++) + array[i] = read.readDouble(); + } + } + } + +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesMethodReader.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesMethodReader.java new file mode 100644 index 0000000..f9e9d36 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesMethodReader.java @@ -0,0 +1,94 @@ +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.Jvm; +import net.openhft.chronicle.core.io.SimpleCloseable; +import net.openhft.chronicle.core.util.InvocationTargetRuntimeException; +import net.openhft.chronicle.core.util.ObjectUtils; + +import java.lang.reflect.InvocationTargetException; +import java.lang.reflect.Method; +import java.util.*; +import java.util.function.Consumer; + +@SuppressWarnings("rawtypes") +public class BytesMethodReader extends SimpleCloseable implements MethodReader { + private final BytesIn in; + private final BytesParselet defaultParselet; + private final List> methodEncoders = new ArrayList<>(); + private final Map> methodEncoderMap = new LinkedHashMap<>(); + + public BytesMethodReader(BytesIn in, + BytesParselet defaultParselet, + MethodEncoderLookup methodEncoderLookup, + Object[] objects) { + + this.in = in; + this.defaultParselet = defaultParselet; + + for (Object object : objects) { + for (Method method : object.getClass().getMethods()) { + MethodEncoder encoder = methodEncoderLookup.apply(method); + if (encoder != null) { + addEncoder(object, method, encoder); + } + } + } + } + + private void addEncoder(Object object, Method method, MethodEncoder encoder) { + Jvm.setAccessible(method); + Class[] parameterTypes = method.getParameterTypes(); + int count = parameterTypes.length; + BytesMarshallable[][] array = new BytesMarshallable[1][count]; + for (int i = 0; i < count; i++) { + array[0][i] = (BytesMarshallable) ObjectUtils.newInstance(parameterTypes[i]); + } + Consumer reader = in -> { + array[0] = (BytesMarshallable[]) encoder.decode(array[0], in); + try { + method.invoke(object, array[0]); + } catch (IllegalAccessException | InvocationTargetException e) { + Jvm.warn().on(getClass(), "Exception calling " + method + " " + Arrays.toString(array[0]), e); + } + }; + long messageId = encoder.messageId(); + if (messageId >= 0 && messageId < 1000) { + while (methodEncoders.size() <= messageId) + methodEncoders.add(null); + methodEncoders.set((int) messageId, reader); + } else { + methodEncoderMap.put(messageId, reader); + } + } + + @Override + public MethodReaderInterceptorReturns methodReaderInterceptorReturns() { + throw new UnsupportedOperationException(); + } + + public boolean readOne() throws InvocationTargetRuntimeException { + throwExceptionIfClosed(); + + if (in.readRemaining() < 1) + return false; + long messageId = in.readStopBit(); + Consumer consumer; + if (messageId >= 0 && messageId < methodEncoders.size()) + consumer = methodEncoders.get((int) messageId); + else + consumer = methodEncoderMap.get(messageId); + if (consumer == null) { + defaultParselet.accept(messageId, in); + } else { + consumer.accept(in); + } + + return true; + } + + @Override + public MethodReader closeIn(boolean closeIn) { + return this; + } + +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesMethodReaderBuilder.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesMethodReaderBuilder.java new file mode 100644 index 0000000..87750cb --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesMethodReaderBuilder.java @@ -0,0 +1,72 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes; + +import org.jetbrains.annotations.NotNull; + +@SuppressWarnings("rawtypes") +public class BytesMethodReaderBuilder implements MethodReaderBuilder { + private final BytesIn in; + private BytesParselet defaultParselet = createDefaultParselet(); + private MethodEncoderLookup methodEncoderLookup = MethodEncoderLookup.BY_ANNOTATION; + + public BytesMethodReaderBuilder(BytesIn in) { + this.in = in; + } + + + static BytesParselet createDefaultParselet() { + return (msg, in) -> { + Bytes bytes = (Bytes) in; + throw new IllegalArgumentException("Unknown message type " + msg + " " + bytes.toHexString()); + }; + } + + @Override + public MethodReaderBuilder warnMissing(boolean warnMissing) { + // always true + return this; + } + + public MethodEncoderLookup methodEncoderLookup() { + return methodEncoderLookup; + } + + public BytesMethodReaderBuilder methodEncoderLookup(MethodEncoderLookup methodEncoderLookup) { + this.methodEncoderLookup = methodEncoderLookup; + return this; + } + + public BytesParselet defaultParselet() { + return defaultParselet; + } + + public BytesMethodReaderBuilder defaultParselet(BytesParselet defaultParselet) { + this.defaultParselet = defaultParselet; + return this; + } + + @Override + public MethodReaderBuilder methodReaderInterceptorReturns(MethodReaderInterceptorReturns methodReaderInterceptorReturns) { + throw new UnsupportedOperationException(); + } + + public BytesMethodReader build(Object... objects) { + return new BytesMethodReader(in, defaultParselet, methodEncoderLookup, objects); + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesMethodWriterInvocationHandler.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesMethodWriterInvocationHandler.java new file mode 100644 index 0000000..2c7e611 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesMethodWriterInvocationHandler.java @@ -0,0 +1,27 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.io.Closeable; + +import java.lang.reflect.InvocationHandler; + +public interface BytesMethodWriterInvocationHandler extends InvocationHandler { + + void onClose(Closeable closeable); +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesOut.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesOut.java new file mode 100644 index 0000000..b75ed64 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesOut.java @@ -0,0 +1,96 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.util.ObjectUtils; +import org.jetbrains.annotations.NotNull; + +import java.lang.reflect.Method; +import java.lang.reflect.Proxy; +import java.util.function.Function; + +@SuppressWarnings({"rawtypes", "unchecked"}) +public interface BytesOut extends + ByteStringAppender>, + BytesPrepender>, + BytesComment> { + + /** + * Proxy an interface so each message called is written to a file for replay. + * + * @param tClass primary interface + * @param additional any additional interfaces + * @return a proxy which implements the primary interface (additional interfaces have to be + * cast) + */ + + default T bytesMethodWriter( Class tClass, Class... additional) { + Class[] interfaces = ObjectUtils.addAll(tClass, additional); + + //noinspection unchecked + return (T) Proxy.newProxyInstance(tClass.getClassLoader(), interfaces, + new BinaryBytesMethodWriterInvocationHandler(MethodEncoderLookup.BY_ANNOTATION, this)); + } + + void writeMarshallableLength16(WriteBytesMarshallable marshallable); + + /** + * Write a limit set of writeObject types. + * + * @param componentType expected. + * @param obj of componentType + */ + default void writeObject(Class componentType, Object obj) { + if (!componentType.isInstance(obj)) + throw new IllegalArgumentException("Cannot serialize " + obj.getClass() + " as an " + componentType); + if (obj instanceof BytesMarshallable) { + ((BytesMarshallable) obj).writeMarshallable(this); + return; + } + if (obj instanceof Enum) { + writeEnum((Enum) obj); + return; + } + if (obj instanceof BytesStore) { + BytesStore bs = (BytesStore) obj; + writeStopBit(bs.readRemaining()); + write(bs); + return; + } + switch (componentType.getName()) { + case "java.lang.String": + writeUtf8((String) obj); + return; + case "java.lang.Double": + writeDouble((Double) obj); + return; + case "java.lang.Long": + writeLong((Long) obj); + return; + case "java.lang.Integer": + writeInt((Integer) obj); + return; + + default: + throw new UnsupportedOperationException("Not supported " + componentType); + } + } + +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesParselet.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesParselet.java new file mode 100644 index 0000000..4a875b9 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesParselet.java @@ -0,0 +1,24 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes; + +@FunctionalInterface +public interface BytesParselet { + @SuppressWarnings("rawtypes") + void accept(long messageType, BytesIn in); +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesPrepender.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesPrepender.java new file mode 100644 index 0000000..4ef0105 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesPrepender.java @@ -0,0 +1,109 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.io.IORuntimeException; +import org.jetbrains.annotations.NotNull; + +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; + +public interface BytesPrepender> { + + /** + * Clear a buffer, with a given padding to allow for prepending later. clearAndPad(0) is the same as clear() + * + * @param length to pad + * @return this + * @throws BufferOverflowException if the length > capacity() - start() + */ + + B clearAndPad(long length) throws BufferOverflowException; + + /** + * Prepends a long in decimal, this method moves the readPosition() backwards. + *

Note: it moves the readPosition not the writePosition / readLimit

+ * + * @param value to prepend as text. + * @return this + * @throws BufferUnderflowException if the capacity of the underlying buffer was exceeded + * @throws IORuntimeException if an error occurred while attempting to resize the underlying buffer + */ + @SuppressWarnings("unchecked") + + default B prepend(long value) throws BufferOverflowException { + BytesInternal.prepend(this, value); + return (B) this; + } + + /** + * Write backward in binary a byte + *

Note: it moves the readPosition not the writePosition / readLimit

+ * + * @param bytes to prepend to. + */ + + B prewrite(byte[] bytes) throws BufferOverflowException; + + /** + * Write backward in binary a byte + *

Note: it moves the readPosition not the writePosition / readLimit

+ * + * @param bytes to prepend to. + */ + @SuppressWarnings("rawtypes") + + B prewrite(BytesStore bytes) throws BufferOverflowException; + + /** + * Write backward in binary a byte + *

Note: it moves the readPosition not the writePosition / readLimit

+ * + * @param b byte to prepend to. + */ + + B prewriteByte(byte b) throws BufferOverflowException; + + /** + * Write backward in binary a 2 byte int + *

Note: it moves the readPosition not the writePosition / readLimit

+ * + * @param i short to prepend to. + */ + + B prewriteShort(short i) throws BufferOverflowException; + + /** + * Write backward in binary a 4 byte int + *

Note: it moves the readPosition not the writePosition / readLimit

+ * + * @param i integer to prepend to. + */ + + B prewriteInt(int i) throws BufferOverflowException; + + /** + * Write backward in binary an 8 byte long + *

Note: it moves the readPosition not the writePosition / readLimit

+ * + * @param l long to prepend to. + */ + + B prewriteLong(long l) throws BufferOverflowException; +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesRingBuffer.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesRingBuffer.java new file mode 100644 index 0000000..f262e6c --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesRingBuffer.java @@ -0,0 +1,115 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.Jvm; +import net.openhft.chronicle.core.io.Closeable; +import org.jetbrains.annotations.NotNull; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import java.lang.reflect.Constructor; +import java.lang.reflect.Method; +import java.nio.BufferOverflowException; + +@SuppressWarnings({"rawtypes", "unchecked"}) +public interface BytesRingBuffer extends BytesRingBufferStats, BytesConsumer, Closeable { + + Logger LOG = LoggerFactory.getLogger(BytesRingBuffer.class); + + + static BytesRingBuffer newInstance( NativeBytesStore bytesStore) { + return newInstance(bytesStore, 1); + } + + + static MultiReaderBytesRingBuffer newInstance( + NativeBytesStore bytesStore, + int numReaders) { + try { + final Class aClass = clazz(); + final Constructor constructor = aClass + .getDeclaredConstructor(BytesStore.class, int.class); + return constructor.newInstance(bytesStore, numReaders); + + } catch (Exception e) { + LOG.error("This is a a commercial feature, please contact " + + "sales@chronicle.software to unlock this feature."); + + throw Jvm.rethrow(e); + } + } + + + static Class clazz() throws ClassNotFoundException { + //noinspection AccessStaticViaInstance + return (Class) Class.forName( + "software.chronicle.enterprise.ring.EnterpriseRingBuffer"); + } + + static long sizeFor(long capacity) { + return sizeFor(capacity, 1); + } + + static long sizeFor(long capacity, int numReaders) { + try { + //noinspection AccessStaticViaInstance + final Method sizeFor = Class.forName( + "software.chronicle.enterprise.queue.ChronicleRingBuffer").getMethod("sizeFor", long.class, int.class); + return (long) sizeFor.invoke(null, capacity, numReaders); + + } catch (Exception e) { + LOG.error("This is a a commercial feature, please contact " + + "sales@chronicle.software to unlock this feature."); + + throw Jvm.rethrow(e); + } + } + + /** + * clears the ring buffer but moving the read position to the write position + */ + void clear(); + + /** + * Inserts the specified element at the tail of this queue if it is possible to do so + * immediately without exceeding the queue's capacity, + * + * @param bytes0 the {@code bytes0} that you wish to add to the ring buffer + * @return returning {@code true} upon success and {@code false} if this queue is full. + */ + boolean offer( BytesStore bytes0); + + /** + * Retrieves and removes the head of this queue, or returns {@code null} if this queue is + * empty. + * + * @param using Bytes to read into. + * @return false if this queue is empty, or a populated buffer if the element was retried + * @throws BufferOverflowException is the {@code using} buffer is not large enough + */ + @Override + boolean read( BytesOut using); + + long readRemaining(); + + boolean isEmpty(); + + BytesStore bytesStore(); +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesRingBufferStats.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesRingBufferStats.java new file mode 100644 index 0000000..4fc5d77 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesRingBufferStats.java @@ -0,0 +1,44 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import java.util.List; + +public interface BytesRingBufferStats { + /** + * each time the ring is read, this logs the number of bytes in the write buffer, calling this + * method resets these statistics, + * + * @return Long.MAX_VALUE if no read calls were made since the last time this method was called. + */ + long minNumberOfWriteBytesRemaining(); + + /** + * @return the total capacity in bytes + */ + long capacity(); + + long getAndClearWriteCount(); + + long getAndClearMissedWriteCount(); + + long getAndClearContentionCount(); + + List readers(); +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesStore.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesStore.java new file mode 100644 index 0000000..38f421d --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesStore.java @@ -0,0 +1,570 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.io.IORuntimeException; +import net.openhft.chronicle.core.io.ReferenceCounted; +import org.jetbrains.annotations.NotNull; +import org.jetbrains.annotations.Nullable; + +import javax.crypto.Cipher; +import java.io.IOException; +import java.io.OutputStream; +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; +import java.nio.ByteBuffer; +import java.nio.charset.StandardCharsets; + +import static java.lang.Math.min; + +/** + * A immutable reference to some bytes with fixed extents. This can be shared safely across thread + * provided the data referenced is accessed in a thread safe manner. Only offset access within the + * capacity is possible. + */ +@SuppressWarnings({"rawtypes", "unchecked"}) +public interface BytesStore, Underlying> + extends RandomDataInput, RandomDataOutput, ReferenceCounted, CharSequence { + + /** + * This method builds a BytesStore using the bytes in a CharSequence. This chars are encoded + * using ISO_8859_1 + * + * @param cs to convert + * @return BytesStore + */ + static BytesStore from( CharSequence cs) { + if (cs instanceof BytesStore) + return ((BytesStore) cs).copy(); + return HeapBytesStore.wrap(cs.toString().getBytes(StandardCharsets.ISO_8859_1)); + } + + /** + * Wraps a byte[]. This means there is one copy in memory. + * + * @param bytes to wrap + * @return BytesStore + */ + static HeapBytesStore wrap( byte[] bytes) { + return HeapBytesStore.wrap(bytes); + } + + /** + * Wraps a ByteBuffer which can be either on heap or off heap. + * + * @param bb to wrap + * @return BytesStore + */ + + static BytesStore wrap( ByteBuffer bb) { + return bb.isDirect() + ? NativeBytesStore.wrap(bb) + : HeapBytesStore.wrap(bb); + } + + /** + * @return a PointerBytesStore which can be set to any addressForRead + */ + + static PointerBytesStore nativePointer() { + return new PointerBytesStore(); + } + + /** + * Return the addressForRead and length as a BytesStore + * + * @param address for the start + * @param length of data + * @return as a BytesStore + */ + + static PointerBytesStore wrap(long address, long length) { + PointerBytesStore pbs = nativePointer(); + pbs.set(address, length); + return pbs; + } + + /** + * @return an empty, fixed sized Bytes + */ + static BytesStore empty() { + return NoBytesStore.noBytesStore(); + } + + /** + * @return whether it uses direct memory or not. + */ + @Override + boolean isDirectMemory(); + + /** + * @return a copy of this BytesStore. + */ + BytesStore copy(); + + /** + * @return a Bytes to wrap this ByteStore from the start() to the realCapacity(). + * @throws IllegalStateException if this Bytes has been released. + */ + @Override + + default Bytes bytesForRead() throws IllegalStateException { + try { + Bytes ret = bytesForWrite(); + ret.readLimit(writeLimit()); + ret.writeLimit(realCapacity()); + ret.readPosition(start()); + return ret; + } catch (BufferUnderflowException e) { + throw new IllegalStateException(e); + } + } + + /** + * @return a Bytes for writing to this BytesStore + */ + @Override + + default Bytes bytesForWrite() throws IllegalStateException { + return new VanillaBytes<>(this, writePosition(), writeLimit()); + } + + /** + * Returns if the {@code readPosition} is at the {@code start} and + * the {@code writeLimit} is at the {@code end}. + *

+ * I.e {@code start() == readPosition() && writeLimit() == capacity()} + * + * @return if the {@code readPosition} is at the {@code start} and + * the {@code writeLimit} is at the {@code end} + */ + default boolean isClear() { + return true; + } + + /** + * @return the actual capacity available before resizing. + */ + @Override + default long realCapacity() { + return capacity(); + } + + /** + * @return The maximum limit you can set. + */ + @Override + long capacity(); + + /** + * @return the underlying object being wrapped, if there is one, or null if not. + */ + + Underlying underlyingObject(); + + /** + * Use this test to determine if an offset is considered safe. + */ + default boolean inside(long offset) { + return start() <= offset && offset < safeLimit(); + } + + default boolean inside(long offset, long buffer) { + return start() <= offset && offset + buffer < safeLimit(); + } + + /** + * @return how many bytes can be safely read, i.e. what is the real capacity of the underlying data. + */ + default long safeLimit() { + return capacity(); + } + + /** + * Copy the data to another BytesStore as long as there is space available in the destination store. + * + * @param store to copy to + * @return how many bytes were copied + */ + default long copyTo( BytesStore store) { + long readPos = readPosition(); + long writePos = store.writePosition(); + long copy = min(readRemaining(), store.capacity()); + long i = 0; + try { + for (; i < copy - 7; i += 8) + store.writeLong(writePos + i, readLong(readPos + i)); + for (; i < copy; i++) + store.writeByte(writePos + i, readByte(readPos + i)); + } catch (BufferOverflowException | BufferUnderflowException e) { + throw new AssertionError(e); + } + return copy; + } + + default void copyTo( OutputStream out) throws IOException { + BytesInternal.copy(this, out); + } + + /** + * Fill the BytesStore with zeros + * + * @param start first byte inclusive + * @param end last byte exclusive. + * @return this. + */ + @Override + + default B zeroOut(long start, long end) { + if (end <= start) + return (B) this; + if (start < start()) + start = start(); + if (end > capacity()) + end = capacity(); + long i = start; + try { + for (; i < end - 7; i += 8L) + writeLong(i, 0L); + for (; i < end; i++) + writeByte(i, 0); + } catch (BufferOverflowException | IllegalArgumentException e) { + throw new AssertionError(e); + } + return (B) this; + } + + /** + * This method is inherited from CharSequence so result should be the length of the contained + * chars sequence although it actually returns the number of underlying bytes. These 2 numbers are only the same + * if the encoding we are using is single char for single byte. + * + * @return length in bytes to read or Integer.MAX_VALUE if longer. + */ + @Override + default int length() { + return (int) Math.min(Integer.MAX_VALUE, readRemaining()); + } + + /** + * Assume ISO-8859-1 encoding, subclasses can override this. + */ + @Override + default char charAt(int index) throws IndexOutOfBoundsException { + try { + return (char) readUnsignedByte(readPosition() + index); + + } catch (BufferUnderflowException e) { + throw new IndexOutOfBoundsException((readPosition() + index) + " >= " + readLimit()); + } + } + + /** + * Not supported. + */ + + @Override + default CharSequence subSequence(int start, int end) { + throw new UnsupportedOperationException("todo"); + } + + /** + * By default the maximum length of data shown is 256 characters. Use toDebugString(long) if you want more. + * + * @return This BytesStore as a DebugString. + */ + + default String toDebugString() { + return toDebugString(512); + } + + /** + * @param maxLength the maximum len of the output + * @return This BytesStore as a DebugString. + */ + + default String toDebugString(long maxLength) { + return BytesInternal.toDebugString(this, maxLength); + } + + /** + * @return the underlying BytesStore + */ + + default BytesStore bytesStore() { + return this; + } + + /** + * Check if a portion of a BytesStore matches this one. + * + * @param bytesStore to match against + * @param length to match. + * @return true if the bytes up to min(length, this.length(), bytesStore.length()) matched. + */ + default boolean equalBytes( BytesStore bytesStore, long length) + throws BufferUnderflowException { + return length == 8 && bytesStore.length() >= 8 + ? readLong(readPosition()) == bytesStore.readLong(bytesStore.readPosition()) + : BytesInternal.equalBytesAny(this, bytesStore, length); + } + + /** + * Return the bytes sum of the readable bytes. + * + * @return unsigned byte sum. + */ + default int byteCheckSum() throws IORuntimeException { + return byteCheckSum(readPosition(), readLimit()); + } + + default int byteCheckSum(long start, long end) { + int sum = 0; + for (long i = start; i < end; i++) { + sum += readByte(i); + } + return sum & 0xFF; + } + + + /** + * Does the BytesStore end with a character? + * + * @param c to look for + * @return true if its the last character. + */ + default boolean endsWith(char c) { + try { + return readRemaining() > 0 && readUnsignedByte(readLimit() - 1) == c; + } catch (BufferUnderflowException e) { + throw new AssertionError(e); + } + } + + /** + * Does the BytesStore start with a character? + * + * @param c to look for + * @return true if its the last character. + */ + default boolean startsWith(char c) { + try { + return readRemaining() > 0 && readUnsignedByte(readPosition()) == c; + } catch (BufferUnderflowException e) { + throw new AssertionError(e); + } + } + + /** + * Compare the contents of the BytesStores. + * + * @param bytesStore to compare with + * @return true if they contain the same data. + */ + default boolean contentEquals( BytesStore bytesStore) { + return BytesInternal.contentEqual(this, bytesStore); + } + + default boolean startsWith( BytesStore bytesStore) { + return BytesInternal.startsWith(this, bytesStore); + } + + + default String to8bitString() throws IllegalArgumentException { + return BytesInternal.to8bitString(this); + } + + + /** + * Perform a not atomic add and get operation for an unsigned byte value. This method + * does not check for unsigned byte overflow. + * + * @param offset to add and get + * @param adding value to add, can be 1 + * @return the sum + */ + default int addAndGetUnsignedByteNotAtomic(long offset, int adding) throws BufferUnderflowException { + try { + int r = (readUnsignedByte(offset) + adding) & 0xFF; + writeByte(offset, (byte) r); + return r; + } catch (BufferOverflowException e) { + throw new AssertionError(e); + } + } + + /** + * Perform a not atomic add and get operation for a short value. + * + * @param offset to add and get + * @param adding value to add, can be 1 + * @return the sum + */ + default short addAndGetShortNotAtomic(long offset, short adding) throws BufferUnderflowException { + try { + short r = (short) (readShort(offset) + adding); + writeByte(offset, r); + return r; + } catch (BufferOverflowException | IllegalArgumentException e) { + throw new AssertionError(e); + } + } + + /** + * Perform a not atomic add and get operation for an int value. + * + * @param offset to add and get + * @param adding value to add, can be 1 + * @return the sum + */ + default int addAndGetIntNotAtomic(long offset, int adding) throws BufferUnderflowException { + try { + int r = readInt(offset) + adding; + writeInt(offset, r); + return r; + } catch (BufferOverflowException e) { + throw new AssertionError(e); + } + } + + /** + * Perform a not atomic add and get operation for a float value. + * + * @param offset to add and get + * @param adding value to add, can be 1 + * @return the sum + */ + default double addAndGetDoubleNotAtomic(long offset, double adding) throws BufferUnderflowException { + try { + double r = readDouble(offset) + adding; + writeDouble(offset, r); + return r; + } catch (BufferOverflowException e) { + throw new AssertionError(e); + } + } + + /** + * Perform a not atomic add and get operation for a float value. + * + * @param offset to add and get + * @param adding value to add, can be 1 + * @return the sum + */ + default float addAndGetFloatNotAtomic(long offset, float adding) throws BufferUnderflowException { + try { + float r = readFloat(offset) + adding; + writeFloat(offset, r); + return r; + } catch (BufferOverflowException e) { + throw new AssertionError(e); + } + } + + void move(long from, long to, long length) throws BufferUnderflowException; + + /** + * Write a value which is not smaller. + * + * @param offset to write to + * @param atLeast value it is at least. + */ + default void writeMaxLong(long offset, long atLeast) throws BufferUnderflowException { + try { + for (; ; ) { + long v = readVolatileLong(offset); + if (v >= atLeast) + return; + if (compareAndSwapLong(offset, v, atLeast)) + return; + } + } catch (BufferOverflowException e) { + throw new AssertionError(e); + } + } + + /** + * Write a value which is not smaller. + * + * @param offset to write to + * @param atLeast value it is at least. + */ + default void writeMaxInt(long offset, int atLeast) throws BufferUnderflowException { + try { + for (; ; ) { + int v = readVolatileInt(offset); + if (v >= atLeast) + return; + if (compareAndSwapInt(offset, v, atLeast)) + return; + } + } catch (BufferOverflowException e) { + throw new AssertionError(e); + } + } + + default boolean isEmpty() { + return readRemaining() == 0; + } + + default void cipher( Cipher cipher, Bytes outBytes, ByteBuffer using1, ByteBuffer using2) throws IllegalStateException { + long readPos = outBytes.readPosition(); + try { + long writePos = outBytes.writePosition(); + BytesStore inBytes; + long size = readRemaining(); + if (this.isDirectMemory()) { + inBytes = this; + } else { + inBytes = NativeBytesStore.nativeStore(size); + this.copyTo(inBytes); + } + BytesInternal.assignBytesStoreToByteBuffer(inBytes, using1); + int outputSize = cipher.getOutputSize(Math.toIntExact(size)); + outBytes.ensureCapacity(writePos + outputSize); + outBytes.readPositionRemaining(writePos, outputSize); + BytesInternal.assignBytesStoreToByteBuffer(outBytes, using2); + int len = cipher.update(using1, using2); + len += cipher.doFinal(using1, using2); + assert len == using2.position(); + outBytes.writePosition(writePos + using2.position()); + + } catch ( Exception e) { + throw new IllegalStateException(e); + } finally { + try { + outBytes.readPosition(readPos); + } catch (BufferUnderflowException e) { + //noinspection ThrowFromFinallyBlock + throw new IllegalStateException(e); + } + } + } + + default void cipher( Cipher cipher, Bytes outBytes) throws IllegalStateException { + cipher(cipher, outBytes, BytesInternal.BYTE_BUFFER_TL.get(), BytesInternal.BYTE_BUFFER2_TL.get()); + } + + /** + * @return whether this BytesStore is writable. + */ + default boolean readWrite() { + return true; + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesTextMethodTester.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesTextMethodTester.java new file mode 100644 index 0000000..9423da1 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesTextMethodTester.java @@ -0,0 +1,115 @@ +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.Jvm; +import org.jetbrains.annotations.NotNull; + +import java.io.IOException; +import java.util.function.Function; + +@SuppressWarnings("rawtypes") +public class BytesTextMethodTester { + private final String input; + private final Class outputClass; + private final String output; + private final Function componentFunction; + + private String setup; + private Function afterRun; + + private String expected; + private String actual; + + public BytesTextMethodTester(String input, Function componentFunction, Class outputClass, String output) { + this.input = input; + this.outputClass = outputClass; + this.output = output; + this.componentFunction = componentFunction; + } + + public String setup() { + return setup; + } + + + public BytesTextMethodTester setup(String setup) { + this.setup = setup; + return this; + } + + public Function afterRun() { + return afterRun; + } + + + public BytesTextMethodTester afterRun(Function afterRun) { + this.afterRun = afterRun; + return this; + } + + + public BytesTextMethodTester run() throws IOException { + + Bytes bytes2 = new HexDumpBytes(); + T writer = bytes2.bytesMethodWriter(outputClass); + + Object component = componentFunction.apply(writer); + Object[] components = component instanceof Object[] + ? (Object[]) component + : new Object[]{component}; + + if (setup != null) { + Bytes bytes0 = HexDumpBytes.fromText(BytesUtil.readFile(setup)); + + BytesMethodReader reader0 = bytes0.bytesMethodReaderBuilder() + .defaultParselet(this::unknownMessageId) + .build(components); + while (reader0.readOne()) { + bytes2.clear(); + } + bytes2.clear(); + } + + // expected + expected = BytesUtil.readFile(output).toString().trim().replace("\r", ""); + + Bytes text = BytesUtil.readFile(input); + for (String text2 : text.toString().split("###[^\n]*\n")) { + if (text2.trim().length() <= 0) + continue; + Bytes bytes = HexDumpBytes.fromText(text2); + + BytesMethodReader reader = bytes.bytesMethodReaderBuilder() + .defaultParselet(this::unknownMessageId) + .build(components); + + while (reader.readOne()) { + if (bytes.readRemaining() > 1) + bytes2.comment("## End Of Message"); + } + bytes.releaseLast(); + bytes2.comment("## End Of Block"); + } + bytes2.comment("## End Of Test"); + + actual = bytes2.toHexString().trim(); + if (afterRun != null) { + expected = afterRun.apply(expected); + actual = afterRun.apply(actual); + } + bytes2.releaseLast(); + return this; + } + + private void unknownMessageId(long id, BytesIn b) { + Jvm.warn().on(getClass(), "Unknown message id " + Long.toHexString(id)); + b.readPosition(b.readLimit()); + } + + public String expected() { + return expected; + } + + public String actual() { + return actual; + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesUtil.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesUtil.java new file mode 100644 index 0000000..b740d2b --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/BytesUtil.java @@ -0,0 +1,331 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.ClassLocal; +import net.openhft.chronicle.core.Jvm; +import net.openhft.chronicle.core.Maths; +import net.openhft.chronicle.core.UnsafeMemory; +import net.openhft.chronicle.core.io.AbstractReferenceCounted; +import net.openhft.chronicle.core.io.IORuntimeException; +import net.openhft.chronicle.core.io.IOTools; +import net.openhft.chronicle.core.util.StringUtils; +import org.jetbrains.annotations.NotNull; +import org.jetbrains.annotations.Nullable; +import sun.misc.Unsafe; + +import java.io.*; +import java.lang.reflect.Field; +import java.lang.reflect.Modifier; +import java.net.URL; +import java.nio.BufferUnderflowException; +import java.nio.ByteBuffer; +import java.nio.ByteOrder; +import java.nio.charset.StandardCharsets; +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; + +import static net.openhft.chronicle.core.io.IOTools.*; + +@SuppressWarnings("rawtypes") +public enum BytesUtil { + ; + private static final int[] NO_INTS = {}; + private static final ClassLocal TRIVIALLY_COPYABLE = ClassLocal.withInitial(BytesUtil::isTriviallyCopyable0); + + /** + * Is the whole class trivially copyable + * + * @param clazz to check + * @return true if the whole class is trivially copyable + */ + public static boolean isTriviallyCopyable(Class clazz) { + return TRIVIALLY_COPYABLE.get(clazz).length > 0; + } + + static int[] isTriviallyCopyable0(Class clazz) { + if (clazz.isArray()) { + Class componentType = clazz.getComponentType(); + if (componentType.isPrimitive()) + return new int[]{UnsafeMemory.UNSAFE.arrayBaseOffset(clazz)}; + return NO_INTS; + } + List fields = new ArrayList<>(); + while (clazz != null && clazz != Object.class) { + Collections.addAll(fields, clazz.getDeclaredFields()); + clazz = clazz.getSuperclass(); + } + int min = Integer.MAX_VALUE; + int max = Integer.MIN_VALUE; + for (Field field : fields) { + int modifiers = field.getModifiers(); + if (Modifier.isStatic(modifiers)) + continue; + long offset2 = UnsafeMemory.UNSAFE.objectFieldOffset(field); + int size = sizeOf(field.getType()); + min = (int) Math.min(min, offset2); + max = (int) Math.max(max, offset2 + size); + if (Modifier.isTransient(modifiers)) + return NO_INTS; + if (!field.getType().isPrimitive()) + return NO_INTS; + } + return new int[]{min, max}; + } + + /** + * Are all the fields in the range given trivially copyable + * + * @param clazz to check + * @return true if the fields in range are trivially copyable. + */ + public static boolean isTriviallyCopyable(Class clazz, int offset, int length) { + int[] ints = TRIVIALLY_COPYABLE.get(clazz); + if (ints.length == 0) + return false; + return offset >= ints[0] && (ints.length == 1 || offset + length <= ints[1]); + } + + public static int[] triviallyCopyableRange(Class clazz) { + return TRIVIALLY_COPYABLE.get(clazz); + } + + private static int sizeOf(Class type) { + return type == boolean.class || type == byte.class ? 1 + : type == short.class || type == char.class ? 2 + : type == int.class || type == float.class ? 4 + : type == long.class || type == double.class ? 8 + : Unsafe.ARRAY_OBJECT_INDEX_SCALE; + } + + public static String findFile( String name) throws FileNotFoundException { + File file = new File(name); + URL url = null; + if (!file.exists()) { + url = urlFor(name); + String file2 = url.getFile() + .replace("target/test-classes", "src/test/resources"); + file = new File(file2); + } + if (!file.exists()) + throw new FileNotFoundException(name); + return file.getAbsolutePath(); + } + + public static Bytes readFile( String name) throws IOException { + if (name.startsWith("=")) { + return Bytes.from(name.substring(1)); + } + File file = new File(name); + URL url = null; + if (!file.exists()) { + url = urlFor(name); + file = new File(url.getFile()); + } + return // name.endsWith(".gz") || !file.exists() || OS.isWindows() ? + Bytes.wrapForRead(readAsBytes(url == null ? new FileInputStream(file) : open(url))); + //: MappedFile.readOnly(file).acquireBytesForRead(0); + + } + + public static void writeFile(String file, Bytes bytes) throws IOException { + try (OutputStream os = new FileOutputStream(file)) { + os.write(bytes.underlyingObject()); + } + } + + public static boolean bytesEqual( + RandomDataInput a, long offset, + RandomDataInput second, long secondOffset, long len) + throws BufferUnderflowException { + long i = 0; + while (len - i >= 8L) { + if (a.readLong(offset + i) != second.readLong(secondOffset + i)) + return false; + i += 8L; + } + if (len - i >= 4L) { + if (a.readInt(offset + i) != second.readInt(secondOffset + i)) + return false; + i += 4L; + } + if (len - i >= 2L) { + if (a.readShort(offset + i) != second.readShort(secondOffset + i)) + return false; + i += 2L; + } + if (i < len) + return a.readByte(offset + i) == second.readByte(secondOffset + i); + return true; + } + + public static boolean bytesEqual( CharSequence cs, RandomDataInput bs, long offset, int length) { + if (cs == null || cs.length() != length) + return false; + for (int i = 0; i < length; i++) { + if (cs.charAt(i) != bs.readUnsignedByte(offset + i)) + return false; + } + return true; + } + + public static boolean equals(Object o1, Object o2) { + if (o1 == o2) return true; + if (o1 instanceof CharSequence && o2 instanceof CharSequence) + return StringUtils.isEqual((CharSequence) o1, (CharSequence) o2); + return o1 != null && o1.equals(o2); + } + + public static int asInt( String str) { + ByteBuffer bb = ByteBuffer.wrap(str.getBytes(StandardCharsets.ISO_8859_1)).order(ByteOrder.nativeOrder()); + return bb.getInt(); + } + + public static int stopBitLength(long n) { + if ((n & ~0x7F) == 0) { + return 1; + } + if ((n & ~0x3FFF) == 0) { + return 2; + } + return BytesInternal.stopBitLength0(n); + } + + + public static char[] toCharArray( Bytes bytes) { + final char[] chars = new char[Maths.toUInt31(bytes.readRemaining())]; + + for (int i = 0; i < bytes.readRemaining(); i++) { + chars[i] = (char) bytes.readUnsignedByte(i + bytes.readPosition()); + } + return chars; + } + + + public static char[] toCharArray( Bytes bytes, long position, int length) { + final char[] chars = new char[length]; + + int j = 0; + for (int i = 0; i < length; i++) { + chars[j++] = (char) bytes.readUnsignedByte(position + i); + } + return chars; + } + + public static long readStopBit( StreamingDataInput in) throws IORuntimeException { + return BytesInternal.readStopBit(in); + } + + public static void writeStopBit( StreamingDataOutput out, long n) { + BytesInternal.writeStopBit(out, n); + } + + public static void parseUtf8( + StreamingDataInput in, Appendable appendable, int utflen) + throws UTFDataFormatRuntimeException { + BytesInternal.parseUtf8(in, appendable, true, utflen); + } + + public static void appendUtf8( StreamingDataOutput out, CharSequence cs) { + BytesInternal.appendUtf8(out, cs, 0, cs.length()); + } + + // used by Chronicle FIX. + public static void appendBytesFromStart( Bytes bytes, long startPosition, StringBuilder sb) { + try { + BytesInternal.parse8bit(startPosition, bytes, sb, (int) (bytes.readPosition() - startPosition)); + sb.append('\u2016'); + sb.append(bytes); + } catch (IOException e) { + throw new IORuntimeException(e); + } + } + + public static void readMarshallable( ReadBytesMarshallable marshallable, BytesIn bytes) { + BytesMarshaller.BYTES_MARSHALLER_CL.get(marshallable.getClass()) + .readMarshallable(marshallable, bytes); + } + + public static void writeMarshallable( WriteBytesMarshallable marshallable, BytesOut bytes) { + BytesMarshaller.BYTES_MARSHALLER_CL.get(marshallable.getClass()) + .writeMarshallable(marshallable, bytes); + } + + @Deprecated(/* to be removed in x.22 */) + public static long utf8Length( CharSequence toWrite) { + return AppendableUtil.findUtf8Length(toWrite); + } + + static String asString(String s, Throwable t) { + StringWriter sw = new StringWriter(); + sw.append(s).append("\n"); + t.printStackTrace(new PrintWriter(sw)); + return sw.toString(); + } + + // calls the BackgroundResourceReleaser and AbstractCloseable.assertCloseableClose first. + public static void checkRegisteredBytes() { + AbstractReferenceCounted.assertReferencesReleased(); + } + + public static boolean byteToBoolean(byte b) { + return b != 0 && b != 'N' && b != 'n'; + } + + public static long roundUpTo64ByteAlign(long x) { + return (x + 63L) & ~63L; + } + + public static long roundUpTo8ByteAlign(long x) { + return (x + 7L) & ~7L; + } + + public static void read8ByteAlignPadding(Bytes bytes) { + bytes.readPosition(roundUpTo8ByteAlign(bytes.readPosition())); + } + + public static void write8ByteAlignPadding(Bytes bytes) { + long start = bytes.writePosition(); + long end = roundUpTo8ByteAlign(start); + bytes.writePosition(end); + bytes.zeroOut(start, end); + } + + public static String toDebugString( RandomDataInput bytes, long start, long maxLength) { + BytesStore bytes2 = bytes.subBytes(start, maxLength); + return bytes2.toDebugString(maxLength); + } + + @Deprecated(/* to be removed in x.22 */) + public static boolean unregister(BytesStore bs) { + IOTools.unmonitor(bs); + return true; + } + + static class WarnUncheckedElasticBytes { + static { + Jvm.debug().on(WarnUncheckedElasticBytes.class, "Wrapping elastic bytes with unchecked() will require calling ensureCapacity() as needed!"); + } + + static void warn() { + // static block does the work. + } + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/CommonMarshallable.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/CommonMarshallable.java new file mode 100644 index 0000000..1e53ba2 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/CommonMarshallable.java @@ -0,0 +1,30 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.annotation.DontChain; + +@DontChain +public interface CommonMarshallable { + /** + * @return whether this message should be written as self describing + */ + default boolean usesSelfDescribingMessage() { + return false; + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ConnectionDroppedException.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ConnectionDroppedException.java new file mode 100644 index 0000000..386ccab --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ConnectionDroppedException.java @@ -0,0 +1,39 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.io.IORuntimeException; + +/** + * thrown when the TcpChannelHub drops its connection to the server + */ +// TODO Move to network where it is used. +public class ConnectionDroppedException extends IORuntimeException { + public ConnectionDroppedException(String message) { + super(message); + } + + public ConnectionDroppedException(Throwable e) { + super(e); + } + + public ConnectionDroppedException(String s, Throwable e) { + super(s, e); + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/DynamicallySized.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/DynamicallySized.java new file mode 100644 index 0000000..1c4353b --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/DynamicallySized.java @@ -0,0 +1,25 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes; + +/** + * Marker interface for implementors of {@link Byteable} that indicates + * that size requirements can only be calculated on a user-supplied instance. + */ +public interface DynamicallySized { +} \ No newline at end of file diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/GuardedNativeBytes.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/GuardedNativeBytes.java new file mode 100644 index 0000000..611a8da --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/GuardedNativeBytes.java @@ -0,0 +1,179 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.io.IORuntimeException; +import org.jetbrains.annotations.NotNull; + +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; + +import static net.openhft.chronicle.bytes.BinaryWireCode.*; + +public class GuardedNativeBytes extends NativeBytes { + static final byte BYTE_T = (byte) INT8; + static final byte SHORT_T = (byte) INT16; + static final byte INT_T = (byte) INT32; + static final byte LONG_T = (byte) INT64; + static final byte STOP_T = (byte) STOP_BIT; + static final byte FLOAT_T = (byte) FLOAT32; + static final byte DOUBLE_T = (byte) FLOAT64; + + private static final String[] STRING_FOR_CODE = _stringForCode(GuardedNativeBytes.class); + + public GuardedNativeBytes( BytesStore store, long capacity) throws IllegalStateException { + super(store, capacity); + } + + + @Override + public Bytes writeByte(byte i8) throws BufferOverflowException { + super.writeByte(BYTE_T); + return super.writeByte(i8); + } + + @Override + public Bytes rawWriteByte(byte i8) throws BufferOverflowException { + return super.writeByte(i8); + } + + @Override + public Bytes rawWriteInt(int i) throws BufferOverflowException { + return super.writeInt(i); + } + + @Override + public byte readByte() { + expectByte(BYTE_T); + return super.readByte(); + } + + @Override + public byte rawReadByte() { + return super.readByte(); + } + + @Override + public int rawReadInt() { + return super.readInt(); + } + + @Override + public int readUnsignedByte() { + expectByte(BYTE_T); + return super.readUnsignedByte(); + } + + + @Override + public Bytes writeShort(short i16) throws BufferOverflowException { + super.writeByte(SHORT_T); + return super.writeShort(i16); + } + + @Override + public short readShort() throws BufferUnderflowException { + expectByte(SHORT_T); + return super.readShort(); + } + + + @Override + public Bytes writeStopBit(char x) throws BufferOverflowException { + super.writeByte(STOP_T); + return super.writeStopBit(x); + } + + + @Override + public Bytes writeStopBit(long x) throws BufferOverflowException { + super.writeByte(STOP_T); + return super.writeStopBit(x); + } + + @Override + public long readStopBit() throws IORuntimeException { + expectByte(STOP_T); + return super.readStopBit(); + } + + @Override + public char readStopBitChar() throws IORuntimeException { + expectByte(STOP_T); + return super.readStopBitChar(); + } + + + @Override + public Bytes writeInt(int i) throws BufferOverflowException { + super.writeByte(INT_T); + return super.writeInt(i); + } + + @Override + public int readInt() throws BufferUnderflowException { + expectByte(INT_T); + return super.readInt(); + } + + + @Override + public Bytes writeLong(long i64) throws BufferOverflowException { + super.writeByte(LONG_T); + return super.writeLong(i64); + } + + @Override + public long readLong() throws BufferUnderflowException { + expectByte(LONG_T); + return super.readLong(); + } + + + @Override + public Bytes writeFloat(float f) throws BufferOverflowException { + super.writeByte(FLOAT_T); + return super.writeFloat(f); + } + + @Override + public float readFloat() throws BufferUnderflowException { + expectByte(FLOAT_T); + return super.readFloat(); + } + + + @Override + public Bytes writeDouble(double d) throws BufferOverflowException { + super.writeByte(DOUBLE_T); + return super.writeDouble(d); + } + + @Override + public double readDouble() throws BufferUnderflowException { + expectByte(DOUBLE_T); + return super.readDouble(); + } + + private void expectByte(byte expected) { + byte type = super.readByte(); + if (type != expected) + throw new IllegalStateException("Expected " + STRING_FOR_CODE[expected & 0xFF] + + " but was " + STRING_FOR_CODE[type & 0xFF]); + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/HeapBytesStore.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/HeapBytesStore.java new file mode 100644 index 0000000..1d2058c --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/HeapBytesStore.java @@ -0,0 +1,402 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.bytes.util.DecoratedBufferOverflowException; +import net.openhft.chronicle.bytes.util.DecoratedBufferUnderflowException; +import net.openhft.chronicle.core.Jvm; +import net.openhft.chronicle.core.Maths; +import net.openhft.chronicle.core.Memory; +import net.openhft.chronicle.core.OS; +import org.jetbrains.annotations.NotNull; +import org.jetbrains.annotations.Nullable; + +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; +import java.nio.ByteBuffer; +import java.util.function.Function; + +/** + * Wrapper for Heap ByteBuffers and arrays. + */ +@SuppressWarnings("restriction") +public class HeapBytesStore + extends AbstractBytesStore, Underlying> { + + private static final Memory MEMORY = OS.memory(); + + private final Object realUnderlyingObject; + private final int dataOffset; + private final long capacity; + + private final Underlying underlyingObject; + + private HeapBytesStore( ByteBuffer byteBuffer) { + super(false); + //noinspection unchecked + this.underlyingObject = (Underlying) byteBuffer; + this.realUnderlyingObject = byteBuffer.array(); + this.dataOffset = Jvm.arrayByteBaseOffset() + byteBuffer.arrayOffset(); + this.capacity = byteBuffer.capacity(); + } + + private HeapBytesStore( byte [] byteArray) { + super(false); + //noinspection unchecked + this.underlyingObject = (Underlying) byteArray; + this.realUnderlyingObject = byteArray; + this.dataOffset = Jvm.arrayByteBaseOffset(); + this.capacity = byteArray.length; + } + + // Used by Chronicle-Map. + + public static HeapBytesStore wrap( byte[] byteArray) { + return new HeapBytesStore<>(byteArray); + } + + // Used by Chronicle-Map. + + public static HeapBytesStore wrap( ByteBuffer bb) { + return new HeapBytesStore<>(bb); + } + + @Override + public boolean isDirectMemory() { + return false; + } + + @Override + public void move(long from, long to, long length) { + if (from < 0 || to < 0) throw new BufferUnderflowException(); + //noinspection SuspiciousSystemArraycopy + System.arraycopy(realUnderlyingObject, Maths.toUInt31(from), realUnderlyingObject, Maths.toUInt31(to), Maths.toUInt31(length)); + } + + + @Override + public String toString() { + try { + return BytesInternal.toString(this); + + } catch (IllegalStateException e) { + return e.toString(); + } + } + + + @Override + public BytesStore, Underlying> copy() { + throw new UnsupportedOperationException("todo"); + } + + @Override + protected void performRelease() { + // nothing to do + } + + @Override + public long capacity() { + return capacity; + } + + + @Override + public Underlying underlyingObject() { + return underlyingObject; + } + + @Override + public boolean compareAndSwapInt(long offset, int expected, int value) { + return MEMORY.compareAndSwapInt(realUnderlyingObject, dataOffset + offset, expected, value); + } + + @Override + public void testAndSetInt(long offset, int expected, int value) { + MEMORY.testAndSetInt(realUnderlyingObject, dataOffset + offset, expected, value); + } + + @Override + public boolean compareAndSwapLong(long offset, long expected, long value) { + return MEMORY.compareAndSwapLong( + realUnderlyingObject, dataOffset + offset, expected, value); + } + + @Override + public byte readByte(long offset) throws BufferUnderflowException { + checkOffset(offset, 1); + return MEMORY.readByte(realUnderlyingObject, dataOffset + offset); + } + + @Override + public short readShort(long offset) throws BufferUnderflowException { + checkOffset(offset, 2); + return MEMORY.readShort(realUnderlyingObject, dataOffset + offset); + } + + @Override + public int readInt(long offset) throws BufferUnderflowException { + checkOffset(offset, 4); + return MEMORY.readInt(realUnderlyingObject, dataOffset + offset); + } + + @Override + public long readLong(long offset) throws BufferUnderflowException { + checkOffset(offset, 8); + return MEMORY.readLong(realUnderlyingObject, dataOffset + offset); + } + + @Override + public float readFloat(long offset) throws BufferUnderflowException { + checkOffset(offset, 4); + return MEMORY.readFloat(realUnderlyingObject, dataOffset + offset); + } + + @Override + public double readDouble(long offset) throws BufferUnderflowException { + checkOffset(offset, 8); + return MEMORY.readDouble(realUnderlyingObject, dataOffset + offset); + } + + @Override + public byte readVolatileByte(long offset) throws BufferUnderflowException { + checkOffset(offset, 1); + return MEMORY.readVolatileByte(realUnderlyingObject, dataOffset + offset); + } + + @Override + public short readVolatileShort(long offset) throws BufferUnderflowException { + checkOffset(offset, 2); + return MEMORY.readVolatileShort(realUnderlyingObject, dataOffset + offset); + } + + @Override + public int readVolatileInt(long offset) throws BufferUnderflowException { + checkOffset(offset, 4); + return MEMORY.readVolatileInt(realUnderlyingObject, dataOffset + offset); + } + + @Override + public long readVolatileLong(long offset) throws BufferUnderflowException { + checkOffset(offset, 8); + return MEMORY.readVolatileLong(realUnderlyingObject, dataOffset + offset); + } + + + @Override + public HeapBytesStore writeByte(long offset, byte b) + throws BufferOverflowException { + writeCheckOffset(offset, 1); + MEMORY.writeByte(realUnderlyingObject, dataOffset + offset, b); + return this; + } + + + @Override + public HeapBytesStore writeShort(long offset, short i16) + throws BufferOverflowException { + writeCheckOffset(offset, 2); + MEMORY.writeShort(realUnderlyingObject, dataOffset + offset, i16); + return this; + } + + + @Override + public HeapBytesStore writeInt(long offset, int i32) + throws BufferOverflowException { + writeCheckOffset(offset, 4); + MEMORY.writeInt(realUnderlyingObject, dataOffset + offset, i32); + return this; + } + + + @Override + public HeapBytesStore writeOrderedInt(long offset, int i32) + throws BufferOverflowException { + writeCheckOffset(offset, 4); + MEMORY.writeOrderedInt(realUnderlyingObject, dataOffset + offset, i32); + return this; + } + + + @Override + public HeapBytesStore writeLong(long offset, long i64) + throws BufferOverflowException { + writeCheckOffset(offset, 8); + MEMORY.writeLong(realUnderlyingObject, dataOffset + offset, i64); + return this; + } + + + @Override + public HeapBytesStore writeOrderedLong(long offset, long i) + throws BufferOverflowException { + writeCheckOffset(offset, 8); + MEMORY.writeOrderedLong(realUnderlyingObject, dataOffset + offset, i); + return this; + } + + + @Override + public HeapBytesStore writeFloat(long offset, float f) + throws BufferOverflowException { + writeCheckOffset(offset, 4); + MEMORY.writeFloat(realUnderlyingObject, dataOffset + offset, f); + return this; + } + + + @Override + public HeapBytesStore writeDouble(long offset, double d) + throws BufferOverflowException { + writeCheckOffset(offset, 8); + MEMORY.writeDouble(realUnderlyingObject, dataOffset + offset, d); + return this; + } + + + @Override + public HeapBytesStore writeVolatileByte(long offset, byte i8) + throws BufferOverflowException { + writeCheckOffset(offset, 1); + MEMORY.writeVolatileByte(realUnderlyingObject, dataOffset + offset, i8); + return this; + } + + + @Override + public HeapBytesStore writeVolatileShort(long offset, short i16) + throws BufferOverflowException { + writeCheckOffset(offset, 2); + MEMORY.writeVolatileShort(realUnderlyingObject, dataOffset + offset, i16); + return this; + } + + + @Override + public HeapBytesStore writeVolatileInt(long offset, int i32) + throws BufferOverflowException { + writeCheckOffset(offset, 4); + MEMORY.writeVolatileInt(realUnderlyingObject, dataOffset + offset, i32); + return this; + } + + + @Override + public HeapBytesStore writeVolatileLong(long offset, long i64) + throws BufferOverflowException { + writeCheckOffset(offset, 8); + MEMORY.writeVolatileLong(realUnderlyingObject, dataOffset + offset, i64); + return this; + } + + + @Override + public HeapBytesStore write( + long offsetInRDO, byte[] bytes, int offset, int length) throws BufferOverflowException { + writeCheckOffset(offsetInRDO, length); + MEMORY.copyMemory( + bytes, offset, realUnderlyingObject, this.dataOffset + offsetInRDO, length); + return this; + } + + @Override + public void write( + long offsetInRDO, ByteBuffer bytes, int offset, int length) throws BufferOverflowException { + writeCheckOffset(offsetInRDO, length); + assert realUnderlyingObject == null || dataOffset >= (Jvm.is64bit() ? 12 : 8); + if (bytes.isDirect()) { + MEMORY.copyMemory(Jvm.address(bytes), realUnderlyingObject, + this.dataOffset + offsetInRDO, length); + + } else { + MEMORY.copyMemory(bytes.array(), offset, realUnderlyingObject, + this.dataOffset + offsetInRDO, length); + } + } + + + @Override + public HeapBytesStore write(long writeOffset, + RandomDataInput bytes, long readOffset, long length) { + long i; + for (i = 0; i < length - 7; i += 8) { + long x = bytes.readLong(readOffset + i); + writeLong(writeOffset + i, x); + } + for (; i < length; i++) { + byte x = bytes.readByte(readOffset + i); + writeByte(writeOffset + i, x); + } + return this; + } + + @Override + public long addressForRead(long offset) throws UnsupportedOperationException { + throw new UnsupportedOperationException(); + } + + @Override + public long addressForWrite(long offset) throws UnsupportedOperationException { + throw new UnsupportedOperationException(); + } + + @Override + public long addressForWritePosition() throws UnsupportedOperationException, BufferOverflowException { + throw new UnsupportedOperationException(); + } + + @Override + public void nativeRead(long position, long address, long size) { + throw new UnsupportedOperationException("todo"); + } + + @Override + public void nativeWrite(long address, long position, long size) { + throw new UnsupportedOperationException("todo"); + } + + @SuppressWarnings("rawtypes") + @Override + public boolean equals(Object obj) { + return obj instanceof BytesStore && BytesInternal.contentEqual(this, (BytesStore) obj); + } + + @Override + public boolean sharedMemory() { + return false; + } + + private void checkOffset(long offset, int size) throws BufferUnderflowException { + checkBounds(offset, size, DecoratedBufferUnderflowException::new); + } + + private void writeCheckOffset(long offset, int size) throws BufferOverflowException { + checkBounds(offset, size, DecoratedBufferOverflowException::new); + } + + private void checkBounds(final long offset, final int size, + final Function exceptionFunction) { + if (offset < start() || offset + size > capacity) { + throw exceptionFunction.apply( + String.format("Offset: %d, start: %d, size: %d, capacity: %d", + offset, start(), size, capacity)); + } + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/HexDumpBytes.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/HexDumpBytes.java new file mode 100644 index 0000000..3b783b3 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/HexDumpBytes.java @@ -0,0 +1,1543 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.io.IORuntimeException; +import net.openhft.chronicle.core.io.ReferenceOwner; +import net.openhft.chronicle.core.util.Histogram; +import net.openhft.chronicle.core.util.ThrowingConsumer; +import net.openhft.chronicle.core.util.ThrowingConsumerNonCapturing; +import org.jetbrains.annotations.NotNull; +import org.jetbrains.annotations.Nullable; + +import java.io.IOException; +import java.io.InputStream; +import java.io.Reader; +import java.io.StringReader; +import java.math.BigDecimal; +import java.math.BigInteger; +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; +import java.nio.ByteBuffer; +import java.util.Scanner; +import java.util.regex.Pattern; + +@SuppressWarnings({"rawtypes", "unchecked"}) +public class HexDumpBytes + implements Bytes { + + private static final char[] HEXADECIMAL = "0123456789abcdef".toCharArray(); + private static final Pattern HEX_PATTERN = Pattern.compile("[0-9a-fA-F]{1,2}"); + + private final NativeBytes base = Bytes.allocateElasticDirect(256); + private final Bytes text = Bytes.allocateElasticOnHeap(1024); + private final Bytes comment = Bytes.allocateElasticOnHeap(64); + private OffsetFormat offsetFormat = null; + private long startOfLine = 0; + private int indent = 0; + private int numberWrap = 16; + + public HexDumpBytes() { + } + + HexDumpBytes(BytesStore base, Bytes text) { + try { + this.base.write(base); + this.text.write(text); + } catch (BufferOverflowException e) { + throw new AssertionError(e); + } + } + + public static HexDumpBytes fromText(Reader reader) { + HexDumpBytes tb = new HexDumpBytes(); + Reader reader2 = new TextBytesReader(reader, tb.text); + try (Scanner sc = new Scanner(reader2)) { + while (sc.hasNext()) { + if (sc.hasNext(HEX_PATTERN)) + tb.base.rawWriteByte((byte) Integer.parseInt(sc.next(), 16)); + else + sc.nextLine(); // assume it's a comment + } + } catch (BufferOverflowException | IllegalArgumentException e) { + throw new AssertionError(e); + } + return tb; + } + + public static HexDumpBytes fromText(CharSequence text) { + return fromText(new StringReader(text.toString())); + } + + public HexDumpBytes offsetFormat(OffsetFormat offsetFormat) { + this.offsetFormat = offsetFormat; + return this; + } + + public int numberWrap() { + return numberWrap; + } + + public HexDumpBytes numberWrap(int numberWrap) { + this.numberWrap = numberWrap; + return this; + } + + @Override + public long readRemaining() { + return base.readRemaining(); + } + + @Override + public long writeRemaining() { + return base.writeRemaining(); + } + + @Override + public long readLimit() { + return base.readLimit(); + } + + @Override + public long writeLimit() { + return base.writeLimit(); + } + + + @Override + public String toHexString() { + if (lineLength() > 0) + newLine(); + return text.toString(); + } + + @Override + public int hashCode() { + return base.hashCode(); + } + + @Override + public boolean equals(Object obj) { + return base.equals(obj); + } + + @Override + + public String toString() { + return base.toString(); + } + + @Override + public boolean retainsComments() { + return true; + } + + @Override + public Bytes comment(CharSequence comment) { + if (this.comment.readRemaining() > 0) + newLine(); + if (comment.length() > 0 && comment.charAt(0) == '#') { + indent = 0; + this.text.append('#').append(comment).append('\n'); + startOfLine = this.text.writePosition(); + } else { + this.comment.clear().append(comment); + } + return this; + } + + @Override + public BytesOut indent(int n) { + indent += n; + if (lineLength() > 0) { + newLine(); + } + return this; + } + + private long lineLength() { + return this.text.writePosition() - startOfLine; + } + + private void newLine() { + if (this.comment.readRemaining() > 0) { + while (lineLength() < numberWrap * 3 - 3) + this.text.append(" "); + while (lineLength() < numberWrap * 3) + this.text.append(' '); + this.text.append("# "); + this.text.append(comment); + comment.clear(); + } + this.text.append('\n'); + startOfLine = this.text.writePosition(); + } + + private void appendOffset(long offset) { + if (offsetFormat == null) return; + offsetFormat.append(offset, this.text); + long wp = text.writePosition(); + if (wp > 0 && text.peekUnsignedByte(wp - 1) > ' ') + text.append(' '); + startOfLine = text.writePosition(); + } + + @Override + public BytesStore copy() { + return new HexDumpBytes(base, text); + } + + @Override + public boolean isElastic() { + return base.isElastic(); + } + + @Override + public void ensureCapacity(long size) throws IllegalArgumentException { + base.ensureCapacity(size); + } + + @Override + + public BytesStore bytesStore() { + return base; + } + + @Override + + public Bytes compact() { + throw new UnsupportedOperationException(); + } + + @Override + + public Bytes clear() { + return base.clear(); + } + + @Override + public boolean isDirectMemory() { + return false; + } + + @Override + public long capacity() { + return base.capacity(); + } + + @Override + public long addressForRead(long offset) throws UnsupportedOperationException { + return base.addressForRead(offset); + } + + @Override + public long addressForWrite(long offset) throws UnsupportedOperationException { + throw new UnsupportedOperationException(); + } + + @Override + public long addressForWritePosition() throws UnsupportedOperationException, BufferOverflowException { + throw new UnsupportedOperationException(); + } + + @Override + public boolean compareAndSwapInt(long offset, int expected, int value) throws BufferOverflowException { + if (base.compareAndSwapInt(offset & 0xFFFFFFFFL, expected, value)) { + copyToText(offset & 0xFFFFFFFFL, offset >>> 32, 4); + return true; + } + return false; + } + + @Override + public void testAndSetInt(long offset, int expected, int value) { + long off = offset & 0xFFFFFFFFL; + base.testAndSetInt(off, expected, value); + copyToText(off, offset >>> 32, 4); + } + + @Override + public boolean compareAndSwapLong(long offset, long expected, long value) throws BufferOverflowException { + if (base.compareAndSwapLong(offset & 0xFFFFFFFFL, expected, value)) { + copyToText(offset & 0xFFFFFFFFL, offset >>> 32, 8); + return true; + } + return false; + } + + @Override + + public Void underlyingObject() { + throw new UnsupportedOperationException(); + } + + @Override + public void move(long from, long to, long length) { + throw new UnsupportedOperationException(); + } + + @Override + public void reserve(ReferenceOwner owner) throws IllegalStateException { + base.reserve(owner); + } + + @Override + public void release(ReferenceOwner owner) throws IllegalStateException { + base.release(owner); + if (base.refCount() == 0) { + text.releaseLast(); + comment.releaseLast(); + } + } + + @Override + public void releaseLast(ReferenceOwner owner) throws IllegalStateException { + base.releaseLast(owner); + if (base.refCount() == 0) { + text.releaseLast(); + comment.releaseLast(); + } + } + + @Override + public int refCount() { + return base.refCount(); + } + + @Override + public boolean tryReserve(ReferenceOwner owner) { + return base.tryReserve(owner); + } + + @Override + public boolean reservedBy(ReferenceOwner owner) { + return base.reservedBy(owner); + } + + @Override + + public Bytes writeByte(long offset, byte i8) throws BufferOverflowException { + base.writeByte(offset & 0xFFFFFFFFL, i8); + copyToText(offset & 0xFFFFFFFFL, offset >>> 32, 1); + return this; + } + + @Override + + public Bytes writeShort(long offset, short i) throws BufferOverflowException { + base.writeShort(offset & 0xFFFFFFFFL, i); + copyToText(offset & 0xFFFFFFFFL, offset >>> 32, 2); + return this; + } + + @Override + + public Bytes writeInt24(long offset, int i) throws BufferOverflowException { + base.writeInt24(offset & 0xFFFFFFFFL, i); + copyToText(offset & 0xFFFFFFFFL, offset >>> 32, 3); + return this; + } + + @Override + + public Bytes writeInt(long offset, int i) throws BufferOverflowException { + return writeOrderedInt(offset, i); + } + + @Override + + public Bytes writeOrderedInt(long offset, int i) throws BufferOverflowException { + base.writeOrderedInt(offset & 0xFFFFFFFFL, i); + copyToText(offset & 0xFFFFFFFFL, offset >>> 32, 4); + return this; + } + + @Override + + public Bytes writeLong(long offset, long i) throws BufferOverflowException { + return writeOrderedLong(offset, i); + } + + @Override + + public Bytes writeOrderedLong(long offset, long i) throws BufferOverflowException { + base.writeOrderedLong(offset & 0xFFFFFFFFL, i); + copyToText(offset & 0xFFFFFFFFL, offset >>> 32, 8); + return this; + } + + @Override + + public Bytes writeFloat(long offset, float d) throws BufferOverflowException { + base.writeFloat(offset & 0xFFFFFFFFL, d); + copyToText(offset & 0xFFFFFFFFL, offset >>> 32, 4); + return this; + } + + @Override + + public Bytes writeDouble(long offset, double d) throws BufferOverflowException { + base.writeDouble(offset & 0xFFFFFFFFL, d); + copyToText(offset & 0xFFFFFFFFL, offset >>> 32, 8); + return this; + } + + @Override + + public Bytes writeVolatileByte(long offset, byte i8) throws BufferOverflowException { + throw new UnsupportedOperationException(); + } + + @Override + + public Bytes writeVolatileShort(long offset, short i16) throws BufferOverflowException { + throw new UnsupportedOperationException(); + } + + @Override + + public Bytes writeVolatileInt(long offset, int i32) throws BufferOverflowException { + throw new UnsupportedOperationException(); + } + + @Override + + public Bytes writeVolatileLong(long offset, long i64) throws BufferOverflowException { + throw new UnsupportedOperationException(); + } + + @Override + + public Bytes write(long offsetInRDO, byte[] bytes, int offset, int length) throws BufferOverflowException, IllegalArgumentException { + throw new UnsupportedOperationException(); + } + + @Override + public void write(long offsetInRDO, ByteBuffer bytes, int offset, int length) throws BufferOverflowException, IllegalArgumentException { + throw new UnsupportedOperationException(); + } + + @Override + + public Bytes write(long writeOffset, RandomDataInput bytes, long readOffset, long length) throws BufferOverflowException, IllegalArgumentException, BufferUnderflowException { + throw new UnsupportedOperationException(); + } + + @Override + public void nativeWrite(long address, long position, long size) { + throw new UnsupportedOperationException(); + } + + @Override + + public Bytes readPosition(long position) throws BufferUnderflowException { + base.readPosition(position); + return this; + } + + @Override + + public Bytes readLimit(long limit) throws BufferUnderflowException { + base.readLimit(limit); + return this; + } + + @Override + + public Bytes readSkip(long bytesToSkip) throws BufferUnderflowException { + base.readSkip(bytesToSkip); + return this; + } + + @Override + public void uncheckedReadSkipOne() { + base.uncheckedReadSkipOne(); + } + + @Override + public void uncheckedReadSkipBackOne() { + base.uncheckedReadSkipBackOne(); + } + + @Override + public long readStopBit() throws IORuntimeException { + return base.readStopBit(); + } + + @Override + public char readStopBitChar() throws IORuntimeException { + return base.readStopBitChar(); + } + + @Override + public double readStopBitDouble() { + return base.readStopBitDouble(); + } + + @Override + public double readStopBitDecimal() throws BufferOverflowException { + return base.readStopBitDecimal(); + } + + @Override + public byte readByte() { + return base.readByte(); + } + + @Override + public int readUnsignedByte() { + return base.readUnsignedByte(); + } + + @Override + public int uncheckedReadUnsignedByte() { + return base.uncheckedReadUnsignedByte(); + } + + @Override + public short readShort() throws BufferUnderflowException { + return base.readShort(); + } + + @Override + public int readInt() throws BufferUnderflowException { + return base.readInt(); + } + + @Override + public long readLong() throws BufferUnderflowException { + return base.readLong(); + } + + @Override + public float readFloat() throws BufferUnderflowException { + return base.readFloat(); + } + + @Override + public double readDouble() throws BufferUnderflowException { + return base.readDouble(); + } + + @Override + public int readVolatileInt() throws BufferUnderflowException { + return base.readVolatileInt(); + } + + @Override + public long readVolatileLong() throws BufferUnderflowException { + return base.readVolatileLong(); + } + + @Override + public int peekUnsignedByte() { + return base.peekUnsignedByte(); + } + + + @Override + public int lastDecimalPlaces() { + return base.lastDecimalPlaces(); + } + + @Override + public void lastDecimalPlaces(int lastDecimalPlaces) { + base.lastDecimalPlaces(lastDecimalPlaces); + } + + + @Override + public BigDecimal readBigDecimal() { + return base.readBigDecimal(); + } + + + @Override + public BigInteger readBigInteger() { + return base.readBigInteger(); + } + + @Override + public void readWithLength(long length, BytesOut bytesOut) throws BufferUnderflowException, IORuntimeException { + base.readWithLength(length, bytesOut); + } + + @Override + public T readMarshallableLength16(Class tClass, T object) { + return base.readMarshallableLength16(tClass, object); + } + + + @Override + public Bytes readPositionUnlimited(long position) throws BufferUnderflowException { + return base.readPositionUnlimited(position); + + } + + + @Override + public Bytes readPositionRemaining(long position, long remaining) throws BufferUnderflowException { + return base.readPositionRemaining(position, remaining); + + } + + @Override + public void readWithLength0(long length, ThrowingConsumerNonCapturing, IORuntimeException, BytesOut> bytesConsumer, StringBuilder sb, BytesOut toBytes) throws BufferUnderflowException, IORuntimeException { + base.readWithLength0(length, bytesConsumer, sb, toBytes); + + } + + @Override + public void readWithLength(long length, ThrowingConsumer, IORuntimeException> bytesConsumer) throws BufferUnderflowException, IORuntimeException { + base.readWithLength(length, bytesConsumer); + + } + + @Override + public boolean readBoolean() { + return base.readBoolean(); + + } + + @Override + public int readUnsignedShort() throws BufferUnderflowException { + return base.readUnsignedShort(); + + } + + @Override + public int readInt24() throws BufferUnderflowException { + return base.readInt24(); + + } + + @Override + public int readUnsignedInt24() throws BufferUnderflowException { + return base.readUnsignedInt24(); + + } + + @Override + public long readUnsignedInt() throws BufferUnderflowException { + return base.readUnsignedInt(); + + } + + + @Override + public String readUtf8() throws BufferUnderflowException, IORuntimeException, IllegalArgumentException { + return base.readUtf8(); + + } + + + @Override + public String readUTFΔ() throws IORuntimeException, BufferUnderflowException, IllegalArgumentException { + return base.readUTFΔ(); + + } + + + @Override + public String read8bit() throws IORuntimeException, BufferUnderflowException { + return base.read8bit(); + + } + + @Override + public boolean readUtf8( ACS sb) throws IORuntimeException, IllegalArgumentException, BufferUnderflowException { + return base.readUtf8(sb); + + } + + @Override + public boolean readUTFΔ( ACS sb) throws IORuntimeException, IllegalArgumentException, BufferUnderflowException { + return base.readUTFΔ(sb); + + } + + @Override + public boolean read8bit( Bytes b) throws BufferUnderflowException, IllegalStateException, BufferOverflowException { + return base.read8bit(b); + + } + + @Override + public boolean read8bit( ACS sb) throws IORuntimeException, IllegalArgumentException, BufferUnderflowException { + return base.read8bit(sb); + + } + + @Override + public boolean read8bit( StringBuilder sb) throws IORuntimeException, BufferUnderflowException { + return base.read8bit(sb); + + } + + @Override + public int read( byte[] bytes) { + return base.read(bytes); + + } + + @Override + public int read( byte[] bytes, int off, int len) { + return base.read(bytes, off, len); + + } + + @Override + public int read( char[] bytes, int off, int len) { + return base.read(bytes, off, len); + + } + + @Override + public void read( ByteBuffer buffer) { + base.read(buffer); + + } + + @Override + public void read( Bytes bytes, int length) { + base.read(bytes, length); + + } + + + @Override + public > E readEnum( Class eClass) throws IORuntimeException, BufferUnderflowException { + return base.readEnum(eClass); + + } + + @Override + public void readHistogram( Histogram histogram) { + base.readHistogram(histogram); + + } + + @Override + public void readWithLength(Bytes bytes) { + base.readWithLength(bytes); + + } + + @Override + + public Bytes writePosition(long position) throws BufferOverflowException { + base.writePosition(position & 0xFFFFFFFFL); + text.writePosition(position >>> 32); + return this; + } + + @Override + + public Bytes writeLimit(long limit) throws BufferOverflowException { + base.writeLimit(limit); + return this; + } + + @Override + + public Bytes writeSkip(long bytesToSkip) throws BufferOverflowException { + long pos = base.writePosition(); + try { + base.writeSkip(bytesToSkip); + return this; + } finally { + copyToText(pos); + } + } + + @Override + + public Bytes writeByte(byte i8) throws BufferOverflowException { + long pos = base.writePosition(); + try { + base.writeByte(i8); + return this; + } finally { + copyToText(pos); + } + } + + /** + * For HexDumpBytes it needs to remember the writePosition for the underlying bytes as well as the text hex dump, so it encodes both in one number so you can call writePosition later. + * + * @return the base and text writePositions. + */ + @Override + public long writePosition() { + return base.writePosition() | (text.writePosition() << 32); + } + + private void copyToText(long pos) { + if (lineLength() == 0 && offsetFormat != null) { + appendOffset(pos); + startOfLine = text.writePosition(); + } + + long end = base.writePosition(); + if (pos < end) { + doIndent(); + do { + int value = base.readUnsignedByte(pos); + long ll = lineLength(); + if (ll >= numberWrap * 3 - 1) { + newLine(); + appendOffset(pos); + doIndent(); + startOfLine = text.writePosition(); + } + pos++; + long wp = text.writePosition(); + if (wp > 0 && text.peekUnsignedByte(wp - 1) > ' ') + text.append(' '); + text.appendBase16(value, 2); + } while (pos < end); + } + } + + private void copyToText(long pos, long tpos, int length) { + if (tpos > 0 && text.readUnsignedByte(tpos) <= ' ') + tpos++; + while (length-- > 0) { + int value = base.readUnsignedByte(pos++); + text.writeUnsignedByte(tpos++, HEXADECIMAL[value >> 4]); + text.writeUnsignedByte(tpos++, HEXADECIMAL[value & 0xF]); + if (length > 0) + text.writeUnsignedByte(tpos++, ' '); + } + } + + private void doIndent() { + if (lineLength() == 0 && indent > 0) { + for (int i = 0; i < indent; i++) + text.append(" "); + startOfLine = text.writePosition(); + } + } + + @Override + + public Bytes writeShort(short i16) throws BufferOverflowException { + long pos = base.writePosition(); + try { + base.writeShort(i16); + return this; + + } finally { + copyToText(pos); + } + } + + @Override + + public Bytes writeInt(int i) throws BufferOverflowException { + long pos = base.writePosition(); + try { + base.writeInt(i); + return this; + + } finally { + copyToText(pos); + } + } + + @Override + + public Bytes writeIntAdv(int i, int advance) throws BufferOverflowException { + long pos = base.writePosition(); + try { + base.writeIntAdv(i, advance); + return this; + + } finally { + copyToText(pos); + } + } + + @Override + + public Bytes writeLong(long i64) throws BufferOverflowException { + long pos = base.writePosition(); + try { + base.writeLong(i64); + return this; + + } finally { + copyToText(pos); + } + } + + @Override + + public Bytes writeLongAdv(long i64, int advance) throws BufferOverflowException { + long pos = base.writePosition(); + try { + base.writeLongAdv(i64, advance); + return this; + + } finally { + copyToText(pos); + } + } + + @Override + + public Bytes writeFloat(float f) throws BufferOverflowException { + long pos = base.writePosition(); + try { + base.writeFloat(f); + return this; + + } finally { + copyToText(pos); + } + } + + @Override + + public Bytes writeDouble(double d) throws BufferOverflowException { + long pos = base.writePosition(); + try { + base.writeDouble(d); + return this; + + } finally { + copyToText(pos); + } + } + + @Override + + public Bytes writeDoubleAndInt(double d, int i) throws BufferOverflowException { + long pos = base.writePosition(); + try { + base.writeDouble(d); + base.writeInt(i); + return this; + + } finally { + copyToText(pos); + } + } + + @Override + public long realWriteRemaining() { + return base.realWriteRemaining(); + } + + @Override + + public Bytes write(byte[] bytes, int offset, int length) throws BufferOverflowException, IllegalArgumentException { + long pos = base.writePosition(); + try { + base.write(bytes, offset, length); + return this; + + } finally { + copyToText(pos); + } + } + + @Override + + public Bytes writeSome(ByteBuffer buffer) throws BufferOverflowException { + long pos = base.writePosition(); + try { + base.writeSome(buffer); + return this; + + } finally { + copyToText(pos); + } + } + + @Override + + public Bytes writeOrderedInt(int i) throws BufferOverflowException { + long pos = base.writePosition(); + try { + base.writeOrderedInt(i); + return this; + + } finally { + copyToText(pos); + } + } + + @Override + + public Bytes writeOrderedLong(long i) throws BufferOverflowException { + long pos = base.writePosition(); + try { + base.writeOrderedLong(i); + return this; + + } finally { + copyToText(pos); + } + } + + @Override + + public Bytes clearAndPad(long length) throws BufferOverflowException { + long pos = base.writePosition(); + try { + base.clearAndPad(length); + return this; + + } finally { + copyToText(pos); + } + } + + @Override + + public Bytes prewrite(byte[] bytes) { + throw new UnsupportedOperationException(); + } + + @Override + + public Bytes prewrite(BytesStore bytes) { + throw new UnsupportedOperationException(); + } + + @Override + + public Bytes prewriteByte(byte b) { + throw new UnsupportedOperationException(); + } + + @Override + + public Bytes prewriteShort(short i) { + throw new UnsupportedOperationException(); + } + + @Override + + public Bytes prewriteInt(int i) { + throw new UnsupportedOperationException(); + } + + @Override + + public Bytes prewriteLong(long l) { + throw new UnsupportedOperationException(); + } + + @Override + public byte readByte(long offset) throws BufferUnderflowException { + return base.readByte(offset); + } + + @Override + public int peekUnsignedByte(long offset) { + return base.peekUnsignedByte(offset); + } + + @Override + public short readShort(long offset) throws BufferUnderflowException { + return base.readShort(offset); + } + + @Override + public int readInt(long offset) throws BufferUnderflowException { + return base.readInt(offset); + } + + @Override + public long readLong(long offset) throws BufferUnderflowException { + return base.readLong(offset); + } + + @Override + public float readFloat(long offset) throws BufferUnderflowException { + return base.readFloat(offset); + } + + @Override + public double readDouble(long offset) throws BufferUnderflowException { + return base.readDouble(offset); + } + + @Override + public byte readVolatileByte(long offset) throws BufferUnderflowException { + return base.readVolatileByte(offset); + } + + @Override + public short readVolatileShort(long offset) throws BufferUnderflowException { + return base.readVolatileShort(offset); + } + + @Override + public int readVolatileInt(long offset) throws BufferUnderflowException { + return base.readVolatileInt(offset); + } + + @Override + public long readVolatileLong(long offset) throws BufferUnderflowException { + return base.readVolatileLong(offset); + } + + @Override + public void nativeRead(long position, long address, long size) throws BufferUnderflowException { + base.nativeRead(position, address, size); + } + + @Override + public long readPosition() { + return base.readPosition() | (text.readPosition() << 32); + } + + @Override + public void lenient(boolean lenient) { + base.lenient(lenient); + } + + @Override + public boolean lenient() { + return base.lenient(); + } + + @Override + public void writeMarshallableLength16(WriteBytesMarshallable marshallable) { + long pos = base.writePosition(); + try { + base.writeMarshallableLength16(marshallable); + } finally { + copyToText(pos); + } + } + + @Override + public Bytes write(InputStream inputStream) throws IOException { + long pos = base.writePosition(); + try { + base.write(inputStream); + return this; + + } finally { + copyToText(pos); + } + } + + + @Override + public Bytes writeStopBit(long x) throws BufferOverflowException { + long pos = base.writePosition(); + try { + base.writeStopBit(x); + return this; + + } finally { + copyToText(pos); + } + } + + + @Override + public Bytes writeStopBit(char x) throws BufferOverflowException { + long pos = base.writePosition(); + try { + base.writeStopBit(x); + return this; + + } finally { + copyToText(pos); + } + } + + + @Override + public Bytes writeStopBit(double d) throws BufferOverflowException { + long pos = base.writePosition(); + try { + base.writeStopBit(d); + return this; + + } finally { + copyToText(pos); + } + } + + + @Override + public Bytes writeStopBitDecimal(double d) throws BufferOverflowException { + long pos = base.writePosition(); + try { + base.writeStopBitDecimal(d); + return this; + + } finally { + copyToText(pos); + } + } + + + @Override + public Bytes writeUtf8(CharSequence cs) throws BufferOverflowException { + long pos = base.writePosition(); + try { + base.writeUtf8(cs); + return this; + + } finally { + copyToText(pos); + } + } + + + @Override + public Bytes writeUtf8(String s) throws BufferOverflowException { + long pos = base.writePosition(); + try { + base.writeUtf8(s); + return this; + + } finally { + copyToText(pos); + } + } + + + @Override + public Bytes writeUTFΔ(CharSequence cs) throws BufferOverflowException { + long pos = base.writePosition(); + try { + base.writeUTFΔ(cs); + return this; + + } finally { + copyToText(pos); + } + } + + + @Override + public Bytes write8bit( CharSequence cs) throws BufferOverflowException { + long pos = base.writePosition(); + try { + base.write8bit(cs); + return this; + + } finally { + copyToText(pos); + } + } + + + @Override + public Bytes write8bit( CharSequence s, int start, int length) throws BufferOverflowException, IllegalArgumentException, IndexOutOfBoundsException { + long pos = base.writePosition(); + try { + base.write8bit(s, start, length); + return this; + + } finally { + copyToText(pos); + } + } + + + @Override + public Bytes write(CharSequence cs) throws BufferOverflowException, BufferUnderflowException, IllegalArgumentException { + long pos = base.writePosition(); + try { + base.write(cs); + return this; + } finally { + copyToText(pos); + } + } + + + @Override + public Bytes write( CharSequence s, int start, int length) throws BufferOverflowException, IllegalArgumentException, IndexOutOfBoundsException { + long pos = base.writePosition(); + try { + base.write(s, start, length); + return this; + } finally { + copyToText(pos); + } + } + + + @Override + public Bytes write8bit( String s) throws BufferOverflowException { + long pos = base.writePosition(); + try { + base.write8bit(s); + return this; + } finally { + copyToText(pos); + } + } + + + @Override + public Bytes write8bit( BytesStore bs) throws BufferOverflowException { + long pos = base.writePosition(); + try { + base.write8bit(bs); + return this; + } finally { + copyToText(pos); + } + } + + + @Override + public Bytes writeUnsignedByte(int i) throws BufferOverflowException, IllegalArgumentException { + long pos = base.writePosition(); + try { + base.writeUnsignedByte(i); + return this; + } finally { + copyToText(pos); + } + } + + + @Override + public Bytes writeUnsignedShort(int u16) throws BufferOverflowException, IllegalArgumentException { + long pos = base.writePosition(); + try { + base.writeUnsignedShort(u16); + return this; + + } finally { + copyToText(pos); + } + } + + + @Override + public Bytes writeInt24(int i) throws BufferOverflowException { + long pos = base.writePosition(); + try { + base.writeInt24(i); + return this; + + } finally { + copyToText(pos); + } + } + + + @Override + public Bytes writeUnsignedInt24(int i) throws BufferOverflowException { + long pos = base.writePosition(); + try { + base.writeUnsignedInt24(i); + return this; + + } finally { + copyToText(pos); + } + } + + + @Override + public Bytes writeUnsignedInt(long i) throws BufferOverflowException, IllegalArgumentException { + long pos = base.writePosition(); + try { + base.writeUnsignedInt(i); + return this; + + } finally { + copyToText(pos); + } + } + + + @Override + public Bytes write( RandomDataInput bytes) { + long pos = base.writePosition(); + try { + + base.write(bytes); + return this; + } finally { + copyToText(pos); + } + } + + @Override + public Bytes write( BytesStore bytes) { + long pos = base.writePosition(); + try { + base.write(bytes); + return this; + + } finally { + copyToText(pos); + } + } + + + @Override + public Bytes writeSome( Bytes bytes) { + long pos = base.writePosition(); + try { + base.writeSome(bytes); + return this; + + } finally { + copyToText(pos); + } + } + + + @Override + public Bytes write( RandomDataInput bytes, long offset, long length) throws BufferOverflowException, BufferUnderflowException { + long pos = base.writePosition(); + try { + base.write(bytes, offset, length); + return this; + + } finally { + copyToText(pos); + } + } + + + @Override + public Bytes write( BytesStore bytes, long offset, long length) throws BufferOverflowException, BufferUnderflowException { + long pos = base.writePosition(); + try { + base.write(bytes, offset, length); + return this; + + } finally { + copyToText(pos); + } + } + + + @Override + public Bytes write( byte[] bytes) throws BufferOverflowException { + long pos = base.writePosition(); + try { + base.write(bytes); + return this; + + } finally { + copyToText(pos); + } + } + + + @Override + public Bytes writeBoolean(boolean flag) throws BufferOverflowException { + long pos = base.writePosition(); + try { + base.writeBoolean(flag); + return this; + + } finally { + copyToText(pos); + } + } + + @Override + public > Bytes writeEnum( E e) throws BufferOverflowException { + long pos = base.writePosition(); + try { + base.writeEnum(e); + return this; + + } finally { + copyToText(pos); + } + } + + @Override + public void writePositionRemaining(long position, long length) { + writePosition(position); + writeLimit(base.writePosition + length); + } + + @Override + public void writeHistogram( Histogram histogram) { + long pos = base.writePosition(); + try { + base.writeHistogram(histogram); + } finally { + copyToText(pos); + } + } + + @Override + public void writeBigDecimal( BigDecimal bd) { + long pos = base.writePosition(); + try { + base.writeBigDecimal(bd); + } finally { + copyToText(pos); + } + } + + @Override + public void writeBigInteger( BigInteger bi) { + long pos = base.writePosition(); + try { + base.writeBigInteger(bi); + } finally { + copyToText(pos); + } + } + + @Override + public void writeWithLength(RandomDataInput bytes) { + long pos = base.writePosition(); + try { + base.writeWithLength(bytes); + } finally { + copyToText(pos); + } + } + + private static class TextBytesReader extends Reader { + private final Reader reader; + private final Bytes base; + + public TextBytesReader(Reader reader, Bytes base) { + this.reader = reader; + this.base = base; + } + + @Override + public int read( char[] cbuf, int off, int len) throws IOException { + int len2 = reader.read(cbuf, off, len); + base.append(new String(cbuf, off, len)); // TODO Optimise + return len2; + } + + @Override + public void close() throws IOException { + reader.close(); + } + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/Invocation.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/Invocation.java new file mode 100644 index 0000000..d8123b7 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/Invocation.java @@ -0,0 +1,9 @@ +package net.openhft.chronicle.bytes; + +import java.lang.reflect.InvocationTargetException; +import java.lang.reflect.Method; + +@FunctionalInterface +public interface Invocation { + Object invoke(Method m, Object o, Object[] args) throws InvocationTargetException; +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MappedBytes.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MappedBytes.java new file mode 100644 index 0000000..176e67c --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MappedBytes.java @@ -0,0 +1,1056 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.bytes.util.DecoratedBufferOverflowException; +import net.openhft.chronicle.core.Jvm; +import net.openhft.chronicle.core.Memory; +import net.openhft.chronicle.core.OS; +import net.openhft.chronicle.core.UnsafeMemory; +import net.openhft.chronicle.core.io.Closeable; +import net.openhft.chronicle.core.io.IORuntimeException; +import net.openhft.chronicle.core.io.ReferenceOwner; +import net.openhft.chronicle.core.util.ObjectUtils; +import org.jetbrains.annotations.NotNull; +import org.jetbrains.annotations.Nullable; + +import java.io.File; +import java.io.FileNotFoundException; +import java.io.IOException; +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; + +import static net.openhft.chronicle.core.util.StringUtils.*; + +/** + * Bytes to wrap memory mapped data. + *

+ * NOTE These Bytes are single Threaded as are all Bytes. + */ +@SuppressWarnings({"rawtypes", "unchecked"}) +public class MappedBytes extends AbstractBytes implements Closeable { + + private static final boolean TRACE = Jvm.getBoolean("trace.mapped.bytes"); + + private MappedBytesStore bytesStore; + private final MappedFile mappedFile; + private final boolean backingFileIsReadOnly; + private boolean closed; + + // assume the mapped file is reserved already. + protected MappedBytes( final MappedFile mappedFile) throws IllegalStateException { + this(mappedFile, ""); + } + + protected MappedBytes( final MappedFile mappedFile, final String name) throws IllegalStateException { + super(NoBytesStore.noBytesStore(), + NoBytesStore.noBytesStore().writePosition(), + NoBytesStore.noBytesStore().writeLimit(), + name); + + assert mappedFile != null; + this.mappedFile = mappedFile; + mappedFile.reserve(this); + this.backingFileIsReadOnly = !mappedFile.file().canWrite(); + assert !mappedFile.isClosed(); + clear(); + } + + + public static MappedBytes mappedBytes( final String filename, final long chunkSize) + throws FileNotFoundException, IllegalStateException { + return mappedBytes(new File(filename), chunkSize); + } + + + public static MappedBytes mappedBytes( final File file, final long chunkSize) + throws FileNotFoundException, IllegalStateException { + return mappedBytes(file, chunkSize, OS.pageSize()); + } + + + public static MappedBytes mappedBytes( final File file, final long chunkSize, final long overlapSize) + throws FileNotFoundException, IllegalStateException { + final MappedFile rw = MappedFile.of(file, chunkSize, overlapSize, false); + try { + return mappedBytes(rw); + } finally { + rw.release(INIT); + } + } + + + public static MappedBytes mappedBytes( final File file, + final long chunkSize, + final long overlapSize, + final boolean readOnly) throws FileNotFoundException, + IllegalStateException { + final MappedFile rw = MappedFile.of(file, chunkSize, overlapSize, readOnly); + try { + return mappedBytes(rw); + } finally { + rw.release(INIT); + } + } + + + public static MappedBytes mappedBytes( final MappedFile rw) { + return new MappedBytes(rw); + } + + + public static MappedBytes readOnly( final File file) throws FileNotFoundException { + MappedFile mappedFile = MappedFile.readOnly(file); + try { + return new MappedBytes(mappedFile); + } finally { + mappedFile.release(INIT); + } + } + + @Override + protected void bytesStore(BytesStore bytesStore) { + super.bytesStore(bytesStore); + if (bytesStore instanceof MappedBytesStore) + this.bytesStore = (MappedBytesStore) bytesStore; + else + this.bytesStore = null; + } + + + @Override + public String toString() { + if (!TRACE) + return super.toString(); + return "MappedBytes{" + "\n" + + "refCount=" + refCount() + ",\n" + + "mappedFile=" + mappedFile.file().getAbsolutePath() + ",\n" + + "mappedFileRefCount=" + mappedFile.refCount() + ",\n" + + "mappedFileIsClosed=" + mappedFile.isClosed() + ",\n" + + "mappedFileRafIsClosed=" + Jvm.getValue(mappedFile.raf(), "closed") + ",\n" + + "mappedFileRafChannelIsClosed=" + !mappedFile.raf().getChannel().isOpen() + ",\n" + + "isClosed=" + isClosed() + + '}'; + } + + public MappedBytes write( final byte[] bytes, + final int offset, + final int length) { + throwExceptionIfClosed(); + + write(writePosition, bytes, offset, length); + writePosition += Math.min(length, bytes.length - offset); + return this; + } + + public MappedBytes write(final long offsetInRDO, + final byte[] bytes, + int offset, + final int length) { + throwExceptionIfClosed(); + + long wp = offsetInRDO; + if ((length + offset) > bytes.length) + throw new ArrayIndexOutOfBoundsException("bytes.length=" + bytes.length + ", " + "length=" + length + ", offset=" + offset); + + if (length > writeRemaining()) + throw new DecoratedBufferOverflowException( + String.format("write failed. Length: %d > writeRemaining: %d", length, writeRemaining())); + + int remaining = length; + + acquireNextByteStore(wp, false); + + while (remaining > 0) { + + long safeCopySize = copySize(wp); + + if (safeCopySize + mappedFile.overlapSize() >= remaining) { + bytesStore.write(wp, bytes, offset, remaining); + return this; + } + + bytesStore.write(wp, bytes, offset, (int) safeCopySize); + + offset += safeCopySize; + wp += safeCopySize; + remaining -= safeCopySize; + + // move to the next chunk + acquireNextByteStore0(wp, false); + + } + return this; + + } + + public MappedBytes write(final long writeOffset, + final RandomDataInput bytes, + long readOffset, + final long length) + throws BufferOverflowException, BufferUnderflowException { + throwExceptionIfClosed(); + + long wp = writeOffset; + + if (length > writeRemaining()) + throw new DecoratedBufferOverflowException( + String.format("write failed. Length: %d > writeRemaining: %d", length, writeRemaining())); + + long remaining = length; + + acquireNextByteStore(wp, false); + + while (remaining > 0) { + + long safeCopySize = copySize(wp); + + if (safeCopySize + mappedFile.overlapSize() >= remaining) { + bytesStore.write(wp, bytes, readOffset, remaining); + return this; + } + + bytesStore.write(wp, bytes, readOffset, safeCopySize); + + readOffset += safeCopySize; + wp += safeCopySize; + remaining -= safeCopySize; + + // move to the next chunk + acquireNextByteStore0(wp, false); + } + return this; + } + + + @Override + public MappedBytes write( final RandomDataInput bytes) + throws BufferOverflowException { + throwExceptionIfClosed(); + + assert bytes != this : "you should not write to yourself !"; + final long remaining = bytes.readRemaining(); + write(writePosition, bytes); + writePosition += remaining; + return this; + } + + + public MappedBytes write(final long offsetInRDO, final RandomDataInput bytes) + throws BufferOverflowException { + throwExceptionIfClosed(); + + write(offsetInRDO, bytes, bytes.readPosition(), bytes.readRemaining()); + return this; + } + + private long copySize(final long writePosition) { + long size = mappedFile.chunkSize(); + return size - writePosition % size; + } + + public void setNewChunkListener(final NewChunkListener listener) { + mappedFile.setNewChunkListener(listener); + } + + + public MappedFile mappedFile() { + return mappedFile; + } + + @Override + public BytesStore, Void> copy() { + return NativeBytes.copyOf(this); + } + + @Override + public long capacity() { + return mappedFile.capacity(); + } + + @Override + public Bytes readLimitToCapacity() throws BufferUnderflowException { + this.writePosition = mappedFile.capacity(); + return this; + } + + @Override + public long realCapacity() { + throwExceptionIfClosed(); + + try { + return mappedFile.actualSize(); + + } catch (IORuntimeException e) { + Jvm.warn().on(getClass(), "Unable to obtain the real size for " + mappedFile.file(), e); + return 0; + } + } + + + @Override + public Bytes readPositionRemaining(final long position, final long remaining) throws BufferUnderflowException { +// throwExceptionIfClosed(); + + final long limit = position + remaining; + acquireNextByteStore(position, true); + + if (writeLimit < limit) + writeLimit(limit); + + boolean debug = false; + assert debug = true; + if (debug) + readLimit(limit); + else + uncheckedWritePosition(limit); + + return readPosition(position); + } + + + @Override + public Bytes readPosition(final long position) throws BufferUnderflowException { +// throwExceptionIfClosed(); + + if (bytesStore != null && bytesStore.inside(position)) { + return super.readPosition(position); + } else { + acquireNextByteStore0(position, true); + return this; + } + } + + @Override + public long addressForRead(final long offset) throws BufferUnderflowException { +// throwExceptionIfClosed(); + + if (bytesStore == null || !bytesStore.inside(offset)) + acquireNextByteStore0(offset, true); + return bytesStore.addressForRead(offset); + } + + @Override + public long addressForRead(final long offset, final int buffer) throws UnsupportedOperationException, BufferUnderflowException { +// throwExceptionIfClosed(); + + if (bytesStore == null || !bytesStore.inside(offset, buffer)) + acquireNextByteStore0(offset, true); + return bytesStore.addressForRead(offset); + } + + @Override + public long addressForWrite(final long offset) throws UnsupportedOperationException, BufferOverflowException { +// throwExceptionIfClosed(); + + if (bytesStore == null || !bytesStore.inside(offset)) + acquireNextByteStore0(offset, true); + return bytesStore.addressForWrite(offset); + } + + @Override + protected void readCheckOffset(final long offset, + final long adding, + final boolean given) throws BufferUnderflowException { + final long check = adding >= 0 ? offset : offset + adding; + //noinspection StatementWithEmptyBody + if (bytesStore != null && bytesStore.inside(check, adding)) { + // nothing. + } else { + acquireNextByteStore0(offset, false); + } + super.readCheckOffset(offset, adding, given); + } + + + @Override + public String read8bit() throws IORuntimeException, BufferUnderflowException { +// throwExceptionIfClosed(); + + return BytesInternal.read8bit(this); + } + + @Override + protected void writeCheckOffset(final long offset, final long adding) throws BufferOverflowException { + + if (offset < 0 || offset > mappedFile.capacity() - adding) + throw writeBufferOverflowException(offset); + if (bytesStore == null || !bytesStore.inside(offset, Math.toIntExact(adding))) { + acquireNextByteStore0(offset, false); + } +// super.writeCheckOffset(offset, adding); + } + + @Override + public void ensureCapacity(final long size) throws IllegalArgumentException { + throwExceptionIfClosed(); + + if (bytesStore == null || !bytesStore.inside(writePosition, Math.toIntExact(size))) { + acquireNextByteStore0(writePosition, false); + } + } + + + private BufferOverflowException writeBufferOverflowException(final long offset) { + BufferOverflowException exception = new BufferOverflowException(); + exception.initCause(new IllegalArgumentException("Offset out of bound " + offset)); + return exception; + } + + private void acquireNextByteStore(final long offset, final boolean set) throws BufferOverflowException, IllegalStateException { + // if in the same chunk, can continue even if closed, but not released. + if (bytesStore != null && bytesStore.inside(offset)) + return; + + // not allowed if closed. + throwExceptionIfReleased(); + + acquireNextByteStore0(offset, set); + } + + // DON'T call this directly. + // TODO Check whether we need synchronized; original comment; require protection from concurrent mutation to bytesStore field + private synchronized void acquireNextByteStore0(final long offset, final boolean set) { + throwExceptionIfClosed(); + + final BytesStore oldBS = this.bytesStore; + try { + final MappedBytesStore newBS = mappedFile.acquireByteStore(this, offset, oldBS); + if (newBS != oldBS) { + this.bytesStore(newBS); + if (oldBS != null) + oldBS.release(this); + } + assert this.bytesStore.reservedBy(this); + + } catch ( IOException | IllegalArgumentException e) { + final BufferOverflowException boe = new BufferOverflowException(); + boe.initCause(e); + throw boe; + } + if (set) { + if (writeLimit() < readPosition) + writeLimit(readPosition); + if (readLimit() < readPosition) + readLimit(readPosition); + readPosition = offset; + } + } + + + @Override + public Bytes readSkip(final long bytesToSkip) + throws BufferUnderflowException { + // called often so skip this check for performance + // throwExceptionIfClosed(); + + if (readPosition + bytesToSkip > readLimit()) throw new BufferUnderflowException(); + long check = bytesToSkip >= 0 ? this.readPosition : this.readPosition + bytesToSkip; + if (bytesStore == null || + bytesToSkip != (int) bytesToSkip || + !bytesStore.inside(readPosition, (int) bytesToSkip)) { + acquireNextByteStore0(check, false); + } + this.readPosition += bytesToSkip; + return this; + } + + @Override + public MappedBytesStore bytesStore() { +// throwExceptionIfClosed(); + + return (MappedBytesStore) super.bytesStore(); + } + + @Override + public long start() { +// throwExceptionIfClosed(); + + return 0L; + } + + + @Override + public Bytes writePosition(final long position) throws BufferOverflowException { +// throwExceptionIfClosed(); + + if (position > writeLimit) + throw new BufferOverflowException(); + if (position < 0L) + throw new BufferUnderflowException(); + if (position < readPosition) + this.readPosition = position; + this.writePosition = position; + return this; + } + + + @Override + public Bytes clear() { + // typically only used at the start of an operation so reject if closed. + throwExceptionIfClosed(); + + long start = 0L; + readPosition = start; + this.writePosition = start; + writeLimit = mappedFile.capacity(); + return this; + } + + + @Override + public Bytes writeByte(final byte i8) throws BufferOverflowException { + throwExceptionIfClosed(); + + final long oldPosition = writePosition; + if (writePosition < 0 || writePosition > capacity() - (long) 1) + throw writeBufferOverflowException(writePosition); + if (bytesStore == null || !bytesStore.inside(writePosition, 1)) { + // already determined we need it + acquireNextByteStore0(writePosition, false); + } + this.writePosition = writePosition + (long) 1; + bytesStore.writeByte(oldPosition, i8); + return this; + } + + @Override + protected void performRelease() throws IllegalStateException { + super.performRelease(); + mappedFile.release(this); + } + + @Override + protected boolean performReleaseInBackground() { + return true; + } + + @Override + public boolean isElastic() { + return true; + } + + public boolean isBackingFileReadOnly() { +// throwExceptionIfClosed(); + + return backingFileIsReadOnly; + } + + @Override + + public Bytes write( final RandomDataInput bytes, + final long offset, + final long length) throws BufferUnderflowException, BufferOverflowException { + throwExceptionIfClosed(); + + if (bytes instanceof BytesStore) + write((BytesStore) bytes, offset, length); + else if (length == 8) + writeLong(bytes.readLong(offset)); + else if (length > 0) + BytesInternal.writeFully(bytes, offset, length, this); + return this; + } + + + @Override + public Bytes write( final BytesStore bytes, + final long offset, + final long length) + throws BufferUnderflowException, BufferOverflowException { + throwExceptionIfClosed(); + + if (length == 8) { + writeLong(bytes.readLong(offset)); + } else if (length > 0) { + if (bytes.isDirectMemory()) { + // need to check this to pull in the right bytesStore() + long fromAddress = bytes.addressForRead(offset); + if (length <= bytes.bytesStore().realCapacity() - offset) { + this.acquireNextByteStore(writePosition(), false); + // can we do a direct copy of raw memory? + if (bytesStore.realCapacity() - writePosition >= length) { + rawCopy(length, fromAddress); + return this; + } + } + } + BytesInternal.writeFully(bytes, offset, length, this); + } + + return this; + } + + void rawCopy(final long length, final long fromAddress) + throws BufferOverflowException, BufferUnderflowException { + this.throwExceptionIfReleased(); + OS.memory().copyMemory(fromAddress, addressForWritePosition(), length); + uncheckedWritePosition(writePosition() + length); + } + + + @Override + public Bytes append8bit( CharSequence cs, int start, int end) + throws IllegalArgumentException, BufferOverflowException, BufferUnderflowException, + IndexOutOfBoundsException { + throwExceptionIfClosed(); + + // check the start. + long pos = writePosition(); + writeCheckOffset(pos, 0); + if (!(cs instanceof String) || pos + (end - start) * 3 + 5 >= safeLimit()) { + return super.append8bit(cs, start, end); + } + return append8bit0((String) cs, start, end - start); + } + + @Override + + public MappedBytes write8bit( CharSequence s, int start, int length) { + throwExceptionIfClosed(); + + ObjectUtils.requireNonNull(s); + + // check the start. + long pos = writePosition(); + writeCheckOffset(pos, 0); + if (!(s instanceof String) || pos + length * 3 + 5 >= safeLimit()) { + super.write8bit(s, start, length); + return this; + } + + writeStopBit(length); + return append8bit0((String) s, start, length); + } + + + private MappedBytes append8bit0( String s, int start, int length) throws BufferOverflowException { + + if (Jvm.isJava9Plus()) { + byte[] bytes = extractBytes(s); + long address = addressForWritePosition(); + Memory memory = bytesStore().memory; + int i = 0; + for (; i < length - 3; i += 4) { + int c0 = bytes[i + start] & 0xff; + int c1 = bytes[i + start + 1] & 0xff; + int c2 = bytes[i + start + 2] & 0xff; + int c3 = bytes[i + start + 3] & 0xff; + memory.writeInt(address, (c3 << 24) | (c2 << 16) | (c1 << 8) | c0); + address += 4; + } + for (; i < length; i++) { + byte c = bytes[i + start]; + memory.writeByte(address++, c); + } + writeSkip(length); + } else { + char[] chars = extractChars(s); + long address = addressForWritePosition(); + Memory memory = bytesStore().memory; + int i = 0; + for (; i < length - 3; i += 4) { + int c0 = chars[i + start] & 0xff; + int c1 = chars[i + start + 1] & 0xff; + int c2 = chars[i + start + 2] & 0xff; + int c3 = chars[i + start + 3] & 0xff; + memory.writeInt(address, (c3 << 24) | (c2 << 16) | (c1 << 8) | c0); + address += 4; + } + for (; i < length; i++) { + char c = chars[i + start]; + memory.writeByte(address++, (byte) c); + } + writeSkip(length); + } + return this; + } + + + @Override + public Bytes appendUtf8( CharSequence cs, int start, int length) + throws BufferOverflowException, IllegalArgumentException { + throwExceptionIfClosed(); + + // check the start. + long pos = writePosition(); + writeCheckOffset(pos, 0); + if (!(cs instanceof String) || pos + length * 3 + 5 >= safeLimit()) { + super.appendUtf8(cs, start, length); + return this; + } + + if (Jvm.isJava9Plus()) { + // byte[] bytes = extractBytes((String) cs); + final String str = (String) cs; + long address = addressForWrite(pos); + Memory memory = OS.memory(); + int i = 0; + non_ascii: + { + for (; i < length; i++) { + char c = str.charAt(i + start); + //byte c = bytes[i + start]; + if (c > 127) { + writeSkip(i); + break non_ascii; + } + memory.writeByte(address++, (byte) c); + } + writeSkip(length); + return this; + } + for (; i < length; i++) { + char c = str.charAt(i + start); + appendUtf8(c); + } + } else { + char[] chars = extractChars((String) cs); + long address = addressForWrite(pos); + Memory memory = OS.memory(); + int i = 0; + non_ascii: + { + for (; i < length; i++) { + char c = chars[i + start]; + if (c > 127) { + writeSkip(i); + break non_ascii; + } + memory.writeByte(address++, (byte) c); + } + writeSkip(length); + return this; + } + for (; i < length; i++) { + char c = chars[i + start]; + appendUtf8(c); + } + } + return this; + } + + @Override + public boolean sharedMemory() { + return true; + } + + @Override + + public Bytes writeOrderedInt(long offset, int i) throws BufferOverflowException { + throwExceptionIfClosed(); + + writeCheckOffset(offset, 4); + if (bytesStore == null || !bytesStore.inside(offset, 4)) { + acquireNextByteStore0(offset, false); + } + bytesStore.writeOrderedInt(offset, i); + return this; + } + + @Override + public byte readVolatileByte(long offset) throws BufferUnderflowException { + throwExceptionIfClosed(); + + if (bytesStore == null || !bytesStore.inside(offset, 1)) { + acquireNextByteStore0(offset, false); + } + return bytesStore.readVolatileByte(offset); + } + + @Override + public short readVolatileShort(long offset) throws BufferUnderflowException { + throwExceptionIfClosed(); + + if (bytesStore == null || !bytesStore.inside(offset, 2)) { + acquireNextByteStore0(offset, false); + } + return bytesStore.readVolatileShort(offset); + } + + @Override + public int readVolatileInt(long offset) throws BufferUnderflowException { + throwExceptionIfClosed(); + + if (bytesStore == null || !bytesStore.inside(offset, 4)) { + acquireNextByteStore0(offset, false); + } + return bytesStore.readVolatileInt(offset); + } + + @Override + public long readVolatileLong(long offset) throws BufferUnderflowException { + throwExceptionIfClosed(); + + if (bytesStore == null || !bytesStore.inside(offset, 8)) { + acquireNextByteStore0(offset, false); + } + return bytesStore.readVolatileLong(offset); + } + + @Override + public int peekUnsignedByte() { + throwExceptionIfClosed(); + + if (bytesStore == null || !bytesStore.inside(readPosition, 1)) { + acquireNextByteStore0(readPosition, false); + } + return super.peekUnsignedByte(); + } + + @Override + public int peekUnsignedByte(final long offset) throws BufferUnderflowException { + throwExceptionIfClosed(); + + if (bytesStore == null || !bytesStore.inside(offset, 1)) { + acquireNextByteStore0(offset, false); + } + return super.peekUnsignedByte(offset); + } + + @SuppressWarnings("restriction") + @Override + public int peekVolatileInt() { + + if (bytesStore == null || !bytesStore.inside(readPosition, 4)) { + acquireNextByteStore0(readPosition, true); + } + + MappedBytesStore bytesStore = this.bytesStore; + long address = bytesStore.address + bytesStore.translate(readPosition); + Memory memory = bytesStore.memory; + + // are we inside a cache line? + if ((address & 63) <= 60) { + ObjectUtils.requireNonNull(memory); + UnsafeMemory.unsafeLoadFence(); + return UnsafeMemory.unsafeGetInt(address); + } else { + return memory.readVolatileInt(address); + } + } + + @Override + public void release(ReferenceOwner id) throws IllegalStateException { + super.release(id); + closed |= refCount() <= 0; + } + + @Override + public void releaseLast(ReferenceOwner id) throws IllegalStateException { + super.releaseLast(id); + closed = true; + } + + @Override + public void close() { + if (closed) + return; + release(INIT); + closed = true; + } + + @Override + public boolean isClosed() { + return closed; + } + + + @Override + public Bytes writeUtf8(CharSequence str) throws BufferOverflowException { + throwExceptionIfClosed(); + + if (str instanceof String) { + writeUtf8((String) str); + return this; + } + if (str == null) { + this.writeStopBit(-1); + + } else { + try { + long utfLength = AppendableUtil.findUtf8Length(str); + this.writeStopBit(utfLength); + BytesInternal.appendUtf8(this, str, 0, str.length()); + } catch (IndexOutOfBoundsException e) { + throw new AssertionError(e); + } + } + return this; + } + + @Override + public Bytes writeUtf8(String str) throws BufferOverflowException { + throwExceptionIfClosed(); + + if (str == null) { + writeStopBit(-1); + return this; + } + + try { + if (Jvm.isJava9Plus()) { + byte[] strBytes = extractBytes(str); + byte coder = getStringCoder(str); + long utfLength = AppendableUtil.findUtf8Length(strBytes, coder); + writeStopBit(utfLength); + appendUtf8(strBytes, 0, str.length(), coder); + } else { + char[] chars = extractChars(str); + long utfLength = AppendableUtil.findUtf8Length(chars); + writeStopBit(utfLength); + appendUtf8(chars, 0, chars.length); + } + return this; + } catch (IllegalArgumentException e) { + throw new AssertionError(e); + } + } + + + @Override + public Bytes appendUtf8(char[] chars, int offset, int length) throws BufferOverflowException, IllegalArgumentException { + throwExceptionIfClosed(); + + if (writePosition < 0 || writePosition > capacity() - (long) 1 + length) + throw writeBufferOverflowException(writePosition); + int i; + ascii: + { + for (i = 0; i < length; i++) { + char c = chars[offset + i]; + if (c > 0x007F) + break ascii; + long oldPosition = writePosition; + if (bytesStore == null || ((writePosition & 0xff) == 0 && !bytesStore.inside(writePosition, (length - i) * 3))) { + acquireNextByteStore0(writePosition, false); + } + this.writePosition = writePosition + (long) 1; + bytesStore.writeByte(oldPosition, (byte) c); + } + return this; + } + for (; i < length; i++) { + char c = chars[offset + i]; + BytesInternal.appendUtf8Char(this, c); + } + return this; + } + + @Override + public long readStopBit() throws IORuntimeException { + throwExceptionIfClosed(); + + long offset = readOffsetPositionMoved(1); + byte l = bytesStore.readByte(offset); + + if (l >= 0) + return l; + return BytesInternal.readStopBit0(this, l); + } + + @Override + public char readStopBitChar() throws IORuntimeException { + throwExceptionIfClosed(); + + long offset = readOffsetPositionMoved(1); + byte l = bytesStore.readByte(offset); + + if (l >= 0) + return (char) l; + return (char) BytesInternal.readStopBit0(this, l); + } + + + @Override + public Bytes writeStopBit(long n) throws BufferOverflowException { + throwExceptionIfClosed(); + + if ((n & ~0x7F) == 0) { + writeByte((byte) (n & 0x7f)); + return this; + } + if ((~n & ~0x7F) == 0) { + writeByte((byte) (0x80L | ~n)); + writeByte((byte) 0); + return this; + } + + if ((n & ~0x3FFF) == 0) { + writeByte((byte) ((n & 0x7f) | 0x80)); + writeByte((byte) (n >> 7)); + return this; + } + BytesInternal.writeStopBit0(this, n); + return this; + } + + + @Override + public Bytes writeStopBit(char n) throws BufferOverflowException { + throwExceptionIfClosed(); + + if ((n & ~0x7F) == 0) { + writeByte((byte) (n & 0x7f)); + return this; + } + + if ((n & ~0x3FFF) == 0) { + writeByte((byte) ((n & 0x7f) | 0x80)); + writeByte((byte) (n >> 7)); + return this; + } + BytesInternal.writeStopBit0(this, n); + return this; + } + + @Override + public boolean isDirectMemory() { + return true; + } + + public MappedBytes write8bit( BytesStore bs) + throws BufferOverflowException { + throwExceptionIfClosed(); + + if (bs == null) { + writeStopBit(-1); + } else { + long offset = bs.readPosition(); + long readRemaining = Math.min(writeRemaining(), bs.readLimit() - offset); + writeStopBit(readRemaining); + write(bs, offset, readRemaining); + } + return this; + } + + // used by the Pretoucher, don't change this without considering the impact. + @Override + public boolean compareAndSwapLong(long offset, long expected, long value) throws BufferOverflowException { + throwExceptionIfClosed(); + + if (offset < 0 || offset > mappedFile.capacity() - (long) 8) + throw writeBufferOverflowException(offset); + if (bytesStore == null || bytesStore.start() > offset || offset + 8 >= bytesStore.safeLimit()) { + acquireNextByteStore0(offset, false); + } +// super.writeCheckOffset(offset, adding); + return bytesStore.compareAndSwapLong(offset, expected, value); + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MappedBytesStore.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MappedBytesStore.java new file mode 100644 index 0000000..324a5ac --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MappedBytesStore.java @@ -0,0 +1,115 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.OS; +import net.openhft.chronicle.core.io.ReferenceOwner; +import org.jetbrains.annotations.NotNull; + +import java.nio.BufferUnderflowException; + +/** + * BytesStore to wrap memory mapped data. + */ +public class MappedBytesStore extends NativeBytesStore { + private final MappedFile mappedFile; + private final long start; + private final long safeLimit; + + protected MappedBytesStore(ReferenceOwner owner, MappedFile mappedFile, long start, long address, long capacity, long safeCapacity) throws IllegalStateException { + super(address, start + capacity, new OS.Unmapper(address, capacity), false); + this.mappedFile = mappedFile; + this.start = start; + this.safeLimit = start + safeCapacity; + reserveTransfer(INIT, owner); + } + + /** + * Fetch the capacity of the underlying file + * This can differ from the exposed capacity() of this bytes store (which has been page aligned) + * + * @return - capacity of the underlying file + */ + public long underlyingCapacity() { + return mappedFile.capacity(); + } + + @Override + public Bytes bytesForRead() throws IllegalStateException { + try { + return new VanillaBytes(this) + .readLimit(writeLimit()) + .readPosition(start()); + } catch (BufferUnderflowException e) { + throw new IllegalStateException(e); + } + } + + + @Override + public VanillaBytes bytesForWrite() throws IllegalStateException { + return new VanillaBytes<>(this); + } + + @Override + public boolean inside(long offset) { + return start <= offset && offset < safeLimit; + } + + @Override + public boolean inside(long offset, long buffer) { + // this is correct that it uses the maximumLimit, yes it is different than the method above. + return start <= offset && offset + buffer < limit; + } + + @Override + public long safeLimit() { + return safeLimit; + } + + @Override + public byte readByte(long offset) { + return memory.readByte(address - start + offset); + } + + + @Override + public NativeBytesStore writeOrderedInt(long offset, int i) { + memory.writeOrderedInt(address - start + offset, i); + return this; + } + + @Override + protected long translate(long offset) { + assert offset >= start; + assert offset < limit; + + return offset - start; + } + + @Override + public long start() { + return start; + } + + @Override + public long readPosition() { + return start(); + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MappedBytesStoreFactory.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MappedBytesStoreFactory.java new file mode 100644 index 0000000..49c276b --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MappedBytesStoreFactory.java @@ -0,0 +1,28 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.io.ReferenceOwner; +import org.jetbrains.annotations.NotNull; + +@FunctionalInterface +public interface MappedBytesStoreFactory { + + MappedBytesStore create(ReferenceOwner owner, MappedFile mappedFile, long start, long address, long capacity, long safeCapacity); +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MappedFile.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MappedFile.java new file mode 100644 index 0000000..a4b9382 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MappedFile.java @@ -0,0 +1,541 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.CleaningRandomAccessFile; +import net.openhft.chronicle.core.Jvm; +import net.openhft.chronicle.core.OS; +import net.openhft.chronicle.core.io.AbstractCloseableReferenceCounted; +import net.openhft.chronicle.core.io.IORuntimeException; +import net.openhft.chronicle.core.io.ReferenceOwner; +import net.openhft.chronicle.core.onoes.Slf4jExceptionHandler; +import org.jetbrains.annotations.NotNull; +import org.jetbrains.annotations.Nullable; + +import java.io.File; +import java.io.FileNotFoundException; +import java.io.IOException; +import java.io.RandomAccessFile; +import java.nio.channels.ClosedByInterruptException; +import java.nio.channels.FileChannel; +import java.nio.channels.FileChannel.MapMode; +import java.nio.channels.FileLock; +import java.nio.file.Files; +import java.util.ArrayList; +import java.util.List; + +import static net.openhft.chronicle.core.io.Closeable.closeQuietly; + +/** + * A memory mapped files which can be randomly accessed in chunks. It has overlapping regions to + * avoid wasting bytes at the end of chunks. + */ +@SuppressWarnings({"rawtypes", "unchecked", "restriction"}) +public class MappedFile extends AbstractCloseableReferenceCounted { + static final boolean RETAIN = Jvm.getBoolean("mappedFile.retain"); + private static final long DEFAULT_CAPACITY = 128L << 40; + + + private final RandomAccessFile raf; + private final FileChannel fileChannel; + private final long chunkSize; + private final long overlapSize; + private final List stores = new ArrayList<>(); + private final long capacity; + + private final File file; + private final String canonicalPath; + private final boolean readOnly; + private NewChunkListener newChunkListener = MappedFile::logNewChunk; + + protected MappedFile( final File file, + final RandomAccessFile raf, + final long chunkSize, + final long overlapSize, + final long capacity, + final boolean readOnly) { + this.file = file; + try { + this.canonicalPath = file.getCanonicalPath().intern(); + } catch (IOException ioe) { + throw new IllegalStateException("Unable to obtain the canonical path for " + file.getAbsolutePath(), ioe); + } + this.raf = raf; + this.fileChannel = raf.getChannel(); + this.chunkSize = OS.mapAlign(chunkSize); + this.overlapSize = overlapSize > 0 && overlapSize < 64 << 10 ? chunkSize : OS.mapAlign(overlapSize); + this.capacity = capacity; + this.readOnly = readOnly; + + Jvm.doNotCloseOnInterrupt(getClass(), this.fileChannel); + } + + private static void logNewChunk(final String filename, + final int chunk, + final long delayMicros) { + if (delayMicros < 100 || !Jvm.isDebugEnabled(MappedFile.class)) + return; + + // avoid a GC while trying to memory map. + final String message = BytesInternal.acquireStringBuilder() + .append("Allocation of ").append(chunk) + .append(" chunk in ").append(filename) + .append(" took ").append(delayMicros / 1e3).append(" ms.") + .toString(); + Jvm.perf().on(MappedFile.class, message); + } + + + public static MappedFile of( final File file, + final long chunkSize, + final long overlapSize, + final boolean readOnly) throws FileNotFoundException { +// if (readOnly && OS.isWindows()) { +// Jvm.warn().on(MappedFile.class, "Read only mode not supported on Windows, defaulting to read/write"); +// readOnly = false; +// } + + RandomAccessFile raf = new CleaningRandomAccessFile(file, readOnly ? "r" : "rw"); +// try { + final long capacity = /*readOnly ? raf.length() : */DEFAULT_CAPACITY; + return new MappedFile(file, raf, chunkSize, overlapSize, capacity, readOnly); +/* + } catch (IOException e) { + Closeable.closeQuietly(raf); + FileNotFoundException fnfe = new FileNotFoundException("Unable to open " + file); + fnfe.initCause(e); + throw fnfe; + } +*/ + } + + + public static MappedFile mappedFile( final File file, final long chunkSize) throws FileNotFoundException { + return mappedFile(file, chunkSize, OS.pageSize()); + } + +/* + private void check(Throwable throwable, int[] count) { + for (int i = 0; i < stores.size(); i++) { + WeakReference storeRef = stores.get(i); + if (storeRef == null) + continue; + MappedBytesStore mbs = storeRef.get(); + if (mbs != null && mbs.refCount() > 0) { + mbs.releaseLast(); + throwable.printStackTrace(); + count[0]++; + } + } + } +*/ + + + public static MappedFile mappedFile( final String filename, final long chunkSize) throws FileNotFoundException { + return mappedFile(filename, chunkSize, OS.pageSize()); + } + + + public static MappedFile mappedFile( final String filename, + final long chunkSize, + final long overlapSize) throws FileNotFoundException { + return mappedFile(new File(filename), chunkSize, overlapSize); + } + + + public static MappedFile mappedFile( final File file, + final long chunkSize, + final long overlapSize) throws FileNotFoundException { + return mappedFile(file, chunkSize, overlapSize, false); + } + + + public static MappedFile mappedFile( final File file, + final long chunkSize, + final long overlapSize, + final boolean readOnly) throws FileNotFoundException { + return MappedFile.of(file, chunkSize, overlapSize, readOnly); + } + + + public static MappedFile readOnly( final File file) throws FileNotFoundException { + long chunkSize = file.length(); + long overlapSize = 0; + // Chunks of 4 GB+ not supported on Windows. + if (OS.isWindows() && chunkSize > 2L << 30) { + chunkSize = 2L << 30; + overlapSize = OS.pageSize(); + } + return MappedFile.of(file, chunkSize, overlapSize, true); + } + + + public static MappedFile mappedFile( final File file, + final long capacity, + final long chunkSize, + final long overlapSize, + final boolean readOnly) throws IOException { + final RandomAccessFile raf = new CleaningRandomAccessFile(file, readOnly ? "r" : "rw"); + // Windows throws an exception when setting the length when you re-open + if (raf.length() < capacity) + raf.setLength(capacity); + return new MappedFile(file, raf, chunkSize, overlapSize, capacity, readOnly); + } + + public static void warmup() { + final List errorsDuringWarmup = new ArrayList<>(); + try { + Jvm.setExceptionHandlers(Slf4jExceptionHandler.FATAL, null, null); + + final File file = File.createTempFile("delete_warming_up", "me"); + file.deleteOnExit(); + final long mapAlignment = OS.mapAlignment(); + final int chunks = 64; + final int compileThreshold = Jvm.compileThreshold(); + for (int j = 0; j <= compileThreshold; j += chunks) { + try { + try ( RandomAccessFile raf = new CleaningRandomAccessFile(file, "rw")) { + try (final MappedFile mappedFile = new MappedFile(file, raf, mapAlignment, 0, mapAlignment * chunks, false)) { + warmup0(mapAlignment, chunks, mappedFile); + } + } + Thread.yield(); + } catch (IOException e) { + errorsDuringWarmup.add(e); + } + } + Thread.yield(); + Files.delete(file.toPath()); + } catch (IOException e) { + Jvm.resetExceptionHandlers(); + Jvm.warn().on(MappedFile.class, "Error during warmup", e); + } finally { + Jvm.resetExceptionHandlers(); + if (errorsDuringWarmup.size() > 0) + Jvm.warn().on(MappedFile.class, errorsDuringWarmup.size() + " errors during warmup: " + errorsDuringWarmup); + } + } + + private static void warmup0(final long mapAlignment, + final int chunks, + final MappedFile mappedFile) throws IOException { + ReferenceOwner warmup = ReferenceOwner.temporary("warmup"); + for (int i = 0; i < chunks; i++) { + mappedFile.acquireBytesForRead(warmup, i * mapAlignment) + .release(warmup); + mappedFile.acquireBytesForWrite(warmup, i * mapAlignment) + .release(warmup); + } + } + + + public File file() { + return file; + } + + /** + * @throws IllegalStateException if closed. + */ + + public MappedBytesStore acquireByteStore( + ReferenceOwner owner, + final long position) + throws IOException, IllegalArgumentException, IllegalStateException { + return acquireByteStore(owner, position, null, readOnly ? ReadOnlyMappedBytesStore::new : MappedBytesStore::new); + } + + + public MappedBytesStore acquireByteStore( + ReferenceOwner owner, + final long position, + BytesStore oldByteStore) + throws IOException, IllegalArgumentException, IllegalStateException { + return acquireByteStore(owner, position, oldByteStore, readOnly ? ReadOnlyMappedBytesStore::new : MappedBytesStore::new); + } + + + public MappedBytesStore acquireByteStore( + ReferenceOwner owner, + final long position, + BytesStore oldByteStore, + final MappedBytesStoreFactory mappedBytesStoreFactory) + throws IOException, + IllegalArgumentException, + IllegalStateException { + + throwExceptionIfClosed(); + + if (position < 0) + throw new IOException("Attempt to access a negative position: " + position); + final int chunk = (int) (position / chunkSize); + Jvm.safepoint(); + + final MappedBytesStore mbs; + synchronized (stores) { + while (stores.size() <= chunk) + stores.add(null); + mbs = stores.get(chunk); + } + if (mbs != null) { + // don't reserve it again if we are already holding it. + if (mbs == oldByteStore) { + return mbs; + } + if (mbs.tryReserve(owner)) { + return mbs; + } + } + + // its important we perform this outside the synchronized below, as this operation can take a while and if synchronized can block slow tailer + // from acquiring the next block + resizeRafIfTooSmall(chunk); + + synchronized (stores) { + + // We are back, protected by synchronized, and need to + // update our view on previous existence (we might have been stalled + // for a long time since we last checked dues to resizing and another + // thread might have added a MappedByteStore (very unlikely but still possible)) + final MappedBytesStore mbs1 = stores.get(chunk); + if (mbs1 != null && mbs1.tryReserve(owner)) { + return mbs1; + } + // *** THIS CAN TAKE A LONG TIME IF A RESIZE HAS TO OCCUR *** + // let double check it to make sure no other thread change it in the meantime. + //resizeRafIfTooSmall(chunk); + + final long mappedSize = chunkSize + overlapSize; + final MapMode mode = readOnly ? MapMode.READ_ONLY : MapMode.READ_WRITE; + final long startOfMap = chunk * chunkSize; + + final long beginNs = System.nanoTime(); + + final long address = OS.map(fileChannel, mode, startOfMap, mappedSize); + final MappedBytesStore mbs2 = mappedBytesStoreFactory.create(owner, this, chunk * this.chunkSize, address, mappedSize, this.chunkSize); + if (RETAIN) + mbs2.reserve(this); + stores.set(chunk, mbs2); + + final long elapsedNs = System.nanoTime() - beginNs; + if (newChunkListener != null) + newChunkListener.onNewChunk(file.getPath(), chunk, elapsedNs / 1000); + + if (elapsedNs >= 2_000_000L) + Jvm.perf().on(getClass(), "Took " + elapsedNs / 1_000_000L + " ms to add mapping for " + file()); + + return mbs2; + } + } + + private void resizeRafIfTooSmall(final int chunk) throws IOException { + Jvm.safepoint(); + + final long minSize = (chunk + 1L) * chunkSize + overlapSize; + long size = fileChannel.size(); + Jvm.safepoint(); + if (size >= minSize || readOnly) + return; + + // handle a possible race condition between processes. + try { + // A single JVM cannot lock a distinct canonical file more than once. + + // We might have several MappedFile objects that maps to + // the same underlying file (possibly via hard or soft links) + // so we use the canonical path as a lock key + + // Ensure exclusivity for any and all MappedFile objects handling + // the same canonical file. + synchronized (canonicalPath) { + size = fileChannel.size(); + if (size < minSize) { + final long beginNs = System.nanoTime(); + try (FileLock ignore = fileChannel.lock()) { + size = fileChannel.size(); + if (size < minSize) { + Jvm.safepoint(); + raf.setLength(minSize); + Jvm.safepoint(); + } + } + final long elapsedNs = System.nanoTime() - beginNs; + if (elapsedNs >= 1_000_000L) { + Jvm.perf().on(getClass(), "Took " + elapsedNs / 1000L + " us to grow file " + file()); + } + } + } + } catch (IOException ioe) { + throw new IOException("Failed to resize to " + minSize, ioe); + } + } + + /** + * Convenience method so you don't need to release the BytesStore + */ + + public Bytes acquireBytesForRead(ReferenceOwner owner, final long position) + throws IOException, IllegalStateException, IllegalArgumentException { + throwExceptionIfClosed(); + + final MappedBytesStore mbs = acquireByteStore(owner, position, null); + final Bytes bytes = mbs.bytesForRead(); + bytes.readPositionUnlimited(position); + bytes.reserveTransfer(INIT, owner); + mbs.release(owner); + return bytes; + } + + public void acquireBytesForRead(ReferenceOwner owner, final long position, final VanillaBytes bytes) + throws IOException, IllegalStateException, IllegalArgumentException { + throwExceptionIfClosed(); + + final MappedBytesStore mbs = acquireByteStore(owner, position, null); + bytes.bytesStore(mbs, position, mbs.capacity() - position); + } + + + public Bytes acquireBytesForWrite(ReferenceOwner owner, final long position) + throws IOException, IllegalStateException, IllegalArgumentException { + throwExceptionIfClosed(); + + MappedBytesStore mbs = acquireByteStore(owner, position, null); + Bytes bytes = mbs.bytesForWrite(); + bytes.writePosition(position); + bytes.reserveTransfer(INIT, owner); + mbs.release(owner); + return bytes; + } + + public void acquireBytesForWrite(ReferenceOwner owner, final long position, final VanillaBytes bytes) + throws IOException, IllegalStateException, IllegalArgumentException { + throwExceptionIfClosed(); + + final MappedBytesStore mbs = acquireByteStore(owner, position, null); + bytes.bytesStore(mbs, position, mbs.capacity() - position); + bytes.writePosition(position); + } + + @Override + protected boolean performReleaseInBackground() { + // don't perform the close in the background as that just sets a flag. This does the real work. + return true; + } + + protected void performRelease() { + try { + synchronized (stores) { + for (int i = 0; i < stores.size(); i++) { + final MappedBytesStore mbs = stores.get(i); + if (mbs != null && RETAIN) { + // this MappedFile is the only referrer to the MappedBytesStore at this point, + // so ensure that it is released + mbs.release(this); + } + // Dereference released entities + stores.set(i, null); + } + } + } finally { + closeQuietly(raf); + setClosed(); + } + } + + + public String referenceCounts() { + final StringBuilder sb = new StringBuilder(); + sb.append("refCount: ").append(refCount()); + for ( final MappedBytesStore mbs : stores) { + long count = 0; + if (mbs != null) + count = mbs.refCount(); + sb.append(", ").append(count); + } + return sb.toString(); + } + + public long capacity() { + return capacity; + } + + public long chunkSize() { + return chunkSize; + } + + public long overlapSize() { + return overlapSize; + } + + public NewChunkListener getNewChunkListener() { + return newChunkListener; + } + + public void setNewChunkListener(final NewChunkListener listener) { + throwExceptionIfClosedInSetter(); + + this.newChunkListener = listener; + } + + public long actualSize() throws IORuntimeException { + + boolean interrupted = Thread.interrupted(); + try { + return fileChannel.size(); + + // this was seen once deep in the JVM. + } catch (ArrayIndexOutOfBoundsException aiooe) { + // try again. + return actualSize(); + + } catch (ClosedByInterruptException cbie) { + close(); + interrupted = true; + throw new IllegalStateException(cbie); + + } catch (IOException e) { + final boolean open = fileChannel.isOpen(); + if (open) { + throw new IORuntimeException(e); + } else { + close(); + throw new IllegalStateException(e); + } + } finally { + if (interrupted) + Thread.currentThread().interrupt(); + } + } + + + public RandomAccessFile raf() { + return raf; + } + + @Override + protected void finalize() throws Throwable { + warnAndReleaseIfNotReleased(); + super.finalize(); + } + + @Override + protected boolean threadSafetyCheck(boolean isUsed) { + // component is thread safe + return true; + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MappedUniqueMicroTimeProvider.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MappedUniqueMicroTimeProvider.java new file mode 100644 index 0000000..217b386 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MappedUniqueMicroTimeProvider.java @@ -0,0 +1,99 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.Jvm; +import net.openhft.chronicle.core.OS; +import net.openhft.chronicle.core.io.IORuntimeException; +import net.openhft.chronicle.core.io.IOTools; +import net.openhft.chronicle.core.io.ReferenceOwner; +import net.openhft.chronicle.core.time.SystemTimeProvider; +import net.openhft.chronicle.core.time.TimeProvider; + +import java.io.IOException; + +/** + * Timestamps are unique across threads/processes on a single machine. + * + * @deprecated Use {@link MappedUniqueTimeProvider} instead. + */ +@Deprecated(/* to be removed in x.23 */) +public enum MappedUniqueMicroTimeProvider implements TimeProvider { + INSTANCE; + + private static final int LAST_TIME = 128; + + private final MappedFile file; + @SuppressWarnings("rawtypes") + private final Bytes bytes; + private TimeProvider provider = SystemTimeProvider.INSTANCE; + + MappedUniqueMicroTimeProvider() { + try { + String user = System.getProperty("user.name", "unknown"); + file = MappedFile.mappedFile(OS.TMP + "/.time-stamp." + user + ".dat", OS.pageSize(), 0); + IOTools.unmonitor(file); + ReferenceOwner mumtp = ReferenceOwner.temporary("mumtp"); + bytes = file.acquireBytesForWrite(mumtp, 0); + bytes.append8bit("&TSF\nTime stamp file uses for sharing a unique id\n"); + IOTools.unmonitor(bytes); + } catch (IOException ioe) { + throw new IORuntimeException(ioe); + } + } + + public MappedUniqueMicroTimeProvider provider(TimeProvider provider) { + this.provider = provider; + return this; + } + + @Override + public long currentTimeMillis() { + return provider.currentTimeMillis(); + } + + @Override + public long currentTimeMicros() { + long timeus = provider.currentTimeMicros(); + while (true) { + long time0 = bytes.readVolatileLong(LAST_TIME); + long time0us = time0 / 1000; + long time; + if (time0us >= timeus) + time = (time0us + 1) * 1000; + else + time = timeus * 1000; + if (bytes.compareAndSwapLong(LAST_TIME, time0, time)) + return time / 1_000; + Jvm.nanoPause(); + } + } + + @Override + public long currentTimeNanos() { + long time = provider.currentTimeNanos(); + while (true) { + long time0 = bytes.readVolatileLong(LAST_TIME); + if (time0 >= time) + time = time0 + 1; + if (bytes.compareAndSwapLong(LAST_TIME, time0, time)) + return time; + Jvm.nanoPause(); + } + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MappedUniqueTimeProvider.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MappedUniqueTimeProvider.java new file mode 100644 index 0000000..9350c39 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MappedUniqueTimeProvider.java @@ -0,0 +1,104 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.Jvm; +import net.openhft.chronicle.core.OS; +import net.openhft.chronicle.core.io.IORuntimeException; +import net.openhft.chronicle.core.io.IOTools; +import net.openhft.chronicle.core.io.ReferenceOwner; +import net.openhft.chronicle.core.time.SystemTimeProvider; +import net.openhft.chronicle.core.time.TimeProvider; + +import java.io.IOException; + +/** + * Timestamps are unique across threads/processes on a single machine. + */ +public enum MappedUniqueTimeProvider implements TimeProvider { + INSTANCE; + + private static final int LAST_TIME = 128; + + private final MappedFile file; + @SuppressWarnings("rawtypes") + private final Bytes bytes; + private TimeProvider provider = SystemTimeProvider.INSTANCE; + + MappedUniqueTimeProvider() { + try { + String user = System.getProperty("user.name", "unknown"); + file = MappedFile.mappedFile(OS.TMP + "/.time-stamp." + user + ".dat", OS.pageSize(), 0); + IOTools.unmonitor(file); + ReferenceOwner mumtp = ReferenceOwner.temporary("mumtp"); + bytes = file.acquireBytesForWrite(mumtp, 0); + bytes.append8bit("&TSF\nTime stamp file uses for sharing a unique id\n"); + IOTools.unmonitor(bytes); + } catch (IOException ioe) { + throw new IORuntimeException(ioe); + } + } + + public MappedUniqueTimeProvider provider(TimeProvider provider) { + this.provider = provider; + return this; + } + + @Override + public long currentTimeMillis() { + return provider.currentTimeMillis(); + } + + @Override + public long currentTimeMicros() { + long timeus = provider.currentTimeMicros(); + while (true) { + long time0 = bytes.readVolatileLong(LAST_TIME); + long time0us = time0 / 1000; + long time; + if (time0us >= timeus) + time = (time0us + 1) * 1000; + else + time = timeus * 1000; + if (bytes.compareAndSwapLong(LAST_TIME, time0, time)) + return time / 1_000; + Jvm.nanoPause(); + } + } + + @Override + public long currentTimeNanos() { + long time = provider.currentTimeNanos(); + long time5 = time >>> 5; + + long time0 = bytes.readVolatileLong(LAST_TIME); + long timeNanos5 = time0 >>> 5; + + if (time5 > timeNanos5) + if (bytes.compareAndSwapLong(LAST_TIME, time0, time)) + return time; + + while (true) { + time0 = bytes.readVolatileLong(LAST_TIME); + long next = (time0 + 0x20) & ~0x1f; + if (bytes.compareAndSwapLong(LAST_TIME, time0, next)) + return next; + Jvm.nanoPause(); + } + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodEncoder.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodEncoder.java new file mode 100644 index 0000000..7a42e4d --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodEncoder.java @@ -0,0 +1,28 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes; + +public interface MethodEncoder { + long messageId(); + + @SuppressWarnings("rawtypes") + void encode(Object[] objects, BytesOut out); + + @SuppressWarnings("rawtypes") + Object[] decode(Object[] lastObjects, BytesIn in); +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodEncoderLookup.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodEncoderLookup.java new file mode 100644 index 0000000..f9c900c --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodEncoderLookup.java @@ -0,0 +1,61 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.util.Annotations; + +import java.lang.reflect.Method; +import java.util.function.Function; + +public enum MethodEncoderLookup implements Function { + BY_ANNOTATION; + + @Override + public MethodEncoder apply(Method method) { + MethodId methodId = Annotations.getAnnotation(method, MethodId.class); + if (methodId == null) return null; + long messageId = methodId.value(); + return new MethodEncoder() { + @Override + public long messageId() { + return messageId; + } + + @SuppressWarnings("rawtypes") + @Override + public void encode(Object[] objects, BytesOut out) { + for (Object object : objects) { + if (object instanceof BytesMarshallable) { + ((BytesMarshallable) object).writeMarshallable(out); + continue; + } + throw new IllegalArgumentException("Object type " + object + " not supported"); + } + } + + @SuppressWarnings("rawtypes") + @Override + public Object[] decode(Object[] lastObjects, BytesIn in) { + for (Object lastObject : lastObjects) + ((BytesMarshallable) lastObject).readMarshallable(in); + return lastObjects; + } + }; + } + +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodId.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodId.java new file mode 100644 index 0000000..7a7da27 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodId.java @@ -0,0 +1,27 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes; + +import java.lang.annotation.*; + +@Retention(RetentionPolicy.RUNTIME) +@Target(ElementType.METHOD) +@Inherited +public @interface MethodId { + long value(); +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodReader.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodReader.java new file mode 100644 index 0000000..b29de27 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodReader.java @@ -0,0 +1,53 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.io.Closeable; +import net.openhft.chronicle.core.util.InvocationTargetRuntimeException; + +public interface MethodReader extends Closeable { + String HISTORY = "history"; + + MethodReaderInterceptorReturns methodReaderInterceptorReturns(); + + /** + * Moves the queue to read a message if there is one, but is more expensive than {@link #lazyReadOne()}. + * If there is an exception in the dispatching mechanics then this should be caught and Jvm.warn'd. + * If there is an exception in the invocation then this is wrapped in a {@link InvocationTargetRuntimeException} + * and thrown. + * + * @return true if there was a message, false if no more messages. + * @throws InvocationTargetRuntimeException if the receiver (target method) throws + */ + boolean readOne() throws InvocationTargetRuntimeException; + + /** + * Does a quick read which is simpler but might not read the next message. readOne() has to be called periodically. + * See also javadoc for {@link #readOne()} + * + * @return true if there was a message, false if there is probably not a message. + */ + default boolean lazyReadOne() { + return readOne(); + } + + /** + * Call close on the input when closed + */ + MethodReader closeIn(boolean closeIn); +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodReaderBuilder.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodReaderBuilder.java new file mode 100644 index 0000000..3f0ca8a --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodReaderBuilder.java @@ -0,0 +1,33 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes; + +public interface MethodReaderBuilder { + default MethodReaderBuilder methodReaderInterceptor(MethodReaderInterceptor methodReaderInterceptor) { + return methodReaderInterceptorReturns((m, o, a, i) -> { + methodReaderInterceptor.intercept(m, o, a, i); + return null; + }); + } + + MethodReaderBuilder methodReaderInterceptorReturns(MethodReaderInterceptorReturns methodReaderInterceptorReturns); + + MethodReaderBuilder warnMissing(boolean warnMissing); + + MethodReader build(Object... components); +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodReaderInterceptor.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodReaderInterceptor.java new file mode 100644 index 0000000..86d4f6b --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodReaderInterceptor.java @@ -0,0 +1,30 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes; + +import java.lang.reflect.InvocationTargetException; +import java.lang.reflect.Method; + +/** + * @deprecated Use {@link MethodReaderInterceptorReturns} + */ +@Deprecated(/* to be removed in x.22 */) +@FunctionalInterface +public interface MethodReaderInterceptor { + void intercept(Method m, Object o, Object[] args, Invocation invocation) throws InvocationTargetException; +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodReaderInterceptorReturns.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodReaderInterceptorReturns.java new file mode 100644 index 0000000..5a38c84 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodReaderInterceptorReturns.java @@ -0,0 +1,26 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes; + +import java.lang.reflect.InvocationTargetException; +import java.lang.reflect.Method; + +@FunctionalInterface +public interface MethodReaderInterceptorReturns { + Object intercept(Method m, Object o, Object[] args, Invocation invocation) throws InvocationTargetException; +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodWriterBuilder.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodWriterBuilder.java new file mode 100644 index 0000000..82677cd --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodWriterBuilder.java @@ -0,0 +1,48 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.io.Closeable; + +import java.util.function.Supplier; + +public interface MethodWriterBuilder extends Supplier { + + MethodWriterBuilder genericEvent(String genericEvent); + + default MethodWriterBuilder metaData(boolean metaData) { + return this; + } + + @Deprecated(/* to be removed in x.23 */) + MethodWriterBuilder useMethodIds(boolean useMethodIds); + + MethodWriterBuilder onClose(Closeable closeable); + + // sourceId enables this, this isn't useful unless it's set. + @Deprecated(/* to be removed in x.22 */) + MethodWriterBuilder recordHistory(boolean recordHistory); + + default MethodWriterBuilder updateInterceptor(UpdateInterceptor updateInterceptor) { + throw new UnsupportedOperationException(); + } + + default T build() { + return get(); + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodWriterInterceptor.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodWriterInterceptor.java new file mode 100644 index 0000000..ebe02be --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodWriterInterceptor.java @@ -0,0 +1,55 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes; + +import org.jetbrains.annotations.Nullable; + +import java.lang.reflect.Method; +import java.util.function.BiConsumer; + +/** + * Invoked around method writing allowing you to take action before or after method invocation, + * or even not to call the method + * + * @deprecated Use MethodWriterInterceptorReturns + */ +@FunctionalInterface +@Deprecated(/* to be removed in x.22 */) +public interface MethodWriterInterceptor { + + static MethodWriterInterceptor of( final MethodWriterListener methodWriterListener, final MethodWriterInterceptor interceptor) { + if (methodWriterListener == null && interceptor == null) + throw new IllegalArgumentException("both methodWriterListener and interceptor are NULL"); + + if (methodWriterListener == null) + return interceptor::intercept; + + if (interceptor == null) + return (method, args, invoker) -> { + methodWriterListener.onWrite(method.getName(), args); + invoker.accept(method, args); + }; + + return (method, args, invoker) -> { + interceptor.intercept(method, args, invoker); + methodWriterListener.onWrite(method.getName(), args); + }; + } + + void intercept(Method method, Object[] args, BiConsumer invoker); +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodWriterInterceptorReturns.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodWriterInterceptorReturns.java new file mode 100644 index 0000000..1bd81c7 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodWriterInterceptorReturns.java @@ -0,0 +1,60 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes; + +import org.jetbrains.annotations.Nullable; + +import java.lang.reflect.Method; +import java.util.function.BiFunction; + +/* + * Peter Lawrey so interceptors can return an object to use for chaining. + *

+ * Invoked around method writing allowing you to take action before or after method invocation, + * or even not to call the method + */ +@FunctionalInterface +public interface MethodWriterInterceptorReturns { + static MethodWriterInterceptorReturns of(MethodWriterInterceptor interceptor) { + return (m, a, i) -> { + interceptor.intercept(m, a, i::apply); + return null; + }; + } + + static MethodWriterInterceptorReturns of( final MethodWriterListener methodWriterListener, final MethodWriterInterceptorReturns interceptor) { + if (methodWriterListener == null && interceptor == null) + throw new IllegalArgumentException("both methodWriterListener and interceptor are NULL"); + + if (methodWriterListener == null) + return interceptor; + + if (interceptor == null) + return (method, args, invoker) -> { + methodWriterListener.onWrite(method.getName(), args); + return invoker.apply(method, args); + }; + + return (method, args, invoker) -> { + methodWriterListener.onWrite(method.getName(), args); + return interceptor.intercept(method, args, invoker); + }; + } + + Object intercept(Method method, Object[] args, BiFunction invoker); +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodWriterInvocationHandler.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodWriterInvocationHandler.java new file mode 100644 index 0000000..a21520f --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodWriterInvocationHandler.java @@ -0,0 +1,42 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.io.Closeable; +import org.jetbrains.annotations.Nullable; + +import java.lang.reflect.InvocationHandler; + +public interface MethodWriterInvocationHandler extends InvocationHandler { + void recordHistory(boolean recordHistory); + + void onClose(Closeable closeable); + + default void methodWriterInterceptorReturns(MethodWriterListener methodWriterListener, MethodWriterInterceptorReturns interceptor) { + if (methodWriterListener != null || interceptor != null) + methodWriterInterceptorReturns(MethodWriterInterceptorReturns.of(methodWriterListener, interceptor)); + } + + void methodWriterInterceptorReturns(MethodWriterInterceptorReturns methodWriterInterceptor); + + void genericEvent(String genericEvent); + + void useMethodIds(boolean useMethodIds); + +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodWriterListener.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodWriterListener.java new file mode 100644 index 0000000..4396186 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MethodWriterListener.java @@ -0,0 +1,29 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes; + +/** + * Invoked before writing out this method and args. + * + * @deprecated Use MethodWriterInterceptorReturns + */ +@Deprecated(/* to be removed in x.22 */) +@FunctionalInterface +public interface MethodWriterListener { + void onWrite(String name, Object[] args); +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MultiReaderBytesRingBuffer.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MultiReaderBytesRingBuffer.java new file mode 100644 index 0000000..f18ea3f --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/MultiReaderBytesRingBuffer.java @@ -0,0 +1,37 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes; + +import org.jetbrains.annotations.NotNull; + +public interface MultiReaderBytesRingBuffer extends BytesRingBuffer { + + + default RingBufferReader createReader() { + return createReader(0); + } + + /** + * Create a reader + * + * @param id of reader as each reader has separate read position etc. + * @return reader + */ + + RingBufferReader createReader(int id); +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/NativeBytes.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/NativeBytes.java new file mode 100644 index 0000000..36976e4 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/NativeBytes.java @@ -0,0 +1,409 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.bytes.util.DecoratedBufferOverflowException; +import net.openhft.chronicle.core.*; +import org.jetbrains.annotations.NotNull; +import org.jetbrains.annotations.Nullable; + +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; +import java.nio.ByteBuffer; + +import static net.openhft.chronicle.bytes.NativeBytesStore.nativeStoreWithFixedCapacity; +import static net.openhft.chronicle.bytes.NoBytesStore.noBytesStore; + +/** + * Elastic memory accessor which can wrap either a ByteBuffer or malloc'ed memory. + *

+ *

This class can wrap heap ByteBuffers, called NativeBytes for historical reasons. + */ +@SuppressWarnings({"rawtypes", "unchecked"}) +public class NativeBytes + extends VanillaBytes { + private static final boolean BYTES_GUARDED = Jvm.getBoolean("bytes.guarded"); + private static boolean s_newGuarded = BYTES_GUARDED; + private final long capacity; + + public NativeBytes( final BytesStore store, final long capacity) throws IllegalStateException { + super(store, 0, capacity); + this.capacity = capacity; + } + + public NativeBytes( final BytesStore store) throws IllegalStateException { + super(store, 0, store.capacity()); + capacity = store.capacity(); + } + + /** + * For testing + * + * @return will new NativeBytes be guarded. + */ + public static boolean areNewGuarded() { + return s_newGuarded; + } + + /** + * turn guarding on/off. Can be enabled by assertion with + * + * assert NativeBytes.setNewGuarded(true); + * + * + * @param guarded turn on if true + */ + public static boolean setNewGuarded(final boolean guarded) { + s_newGuarded = guarded; + return true; + } + + /** + * For testing + */ + public static void resetNewGuarded() { + s_newGuarded = BYTES_GUARDED; + } + + + public static NativeBytes nativeBytes() { + try { + return NativeBytes.wrapWithNativeBytes(noBytesStore(), Bytes.MAX_CAPACITY); + } catch (IllegalStateException e) { + throw new AssertionError(e); + } + } + + + public static NativeBytes nativeBytes(final long initialCapacity) throws IllegalArgumentException { + final NativeBytesStore store = nativeStoreWithFixedCapacity(initialCapacity); + try { + try { + return NativeBytes.wrapWithNativeBytes(store, Bytes.MAX_CAPACITY); + } finally { + store.release(INIT); + } + } catch (IllegalStateException e) { + throw new AssertionError(e); + } + } + + public static BytesStore, Void> copyOf( final Bytes bytes) { + final long remaining = bytes.readRemaining(); + + try { + final NativeBytes bytes2 = Bytes.allocateElasticDirect(remaining); + bytes2.write(bytes, 0, remaining); + return bytes2; + } catch (IllegalArgumentException | BufferOverflowException | BufferUnderflowException e) { + throw new AssertionError(e); + } + } + + private static long alignToPageSize(final long size) { + long mask = OS.pageSize() - 1; + return (size + mask) & ~mask; + } + + + public static NativeBytes wrapWithNativeBytes( final BytesStore bs, long capacity) { + return s_newGuarded + ? new GuardedNativeBytes(bs, capacity) + : new NativeBytes<>(bs, capacity); + } + + protected static long maxCapacityFor( BytesStore bs) { + return bs.underlyingObject() instanceof ByteBuffer + || bs.underlyingObject() instanceof byte[] + ? MAX_HEAP_CAPACITY + : Bytes.MAX_CAPACITY; + } + + @Override + public long capacity() { + return capacity; + } + + @Override + protected void writeCheckOffset(final long offset, final long adding) throws BufferOverflowException { + if (offset >= bytesStore.start()) { + final long writeEnd = offset + adding; + if (writeEnd <= bytesStore.safeLimit()) { + return; // do nothing. + } + if (writeEnd >= capacity) + throw new BufferOverflowException(/*"Write exceeds capacity"*/); + checkResize(writeEnd); + } else { + throw new BufferOverflowException(); + } + } + + @Override + void prewriteCheckOffset(long offset, long subtracting) throws BufferOverflowException { + if (offset - subtracting >= bytesStore.start()) { + if (offset <= bytesStore.safeLimit()) { + return; // do nothing. + } + if (offset >= capacity) + throw new BufferOverflowException(/*"Write exceeds capacity"*/); + checkResize(offset); + } else { + throw new BufferOverflowException(); + } + } + + @Override + public void ensureCapacity(final long size) throws IllegalArgumentException { + try { + assert size >= 0; + writeCheckOffset(writePosition(), size); + } catch (BufferOverflowException e) { + IllegalArgumentException iae = new IllegalArgumentException("Bytes cannot be resized to " + size + " limit: " + capacity()); + iae.printStackTrace(); + throw iae; + } + } + + private void checkResize(final long endOfBuffer) throws BufferOverflowException { + if (isElastic()) + resize(endOfBuffer); + else + throw new BufferOverflowException(); + } + + @Override + public boolean isElastic() { + return true; + } + + // the endOfBuffer is the minimum capacity and one byte more than the last addressable byte. + private void resize(final long endOfBuffer) + throws BufferOverflowException { + throwExceptionIfReleased(); + if (endOfBuffer < 0) + throw new DecoratedBufferOverflowException(endOfBuffer + "< 0"); + if (endOfBuffer > capacity()) + throw new DecoratedBufferOverflowException(endOfBuffer + ">" + capacity()); + final long realCapacity = realCapacity(); + if (endOfBuffer <= realCapacity) { +// System.out.println("no resize " + endOfBuffer + " < " + realCapacity); + return; + } + + // Grow by 50% + long size = Math.max(endOfBuffer + 7, realCapacity * 3 / 2 + 32); + if (isDirectMemory() || size > MAX_HEAP_CAPACITY) { + // Allocate direct memory of page granularity + size = alignToPageSize(size); + } else { + size &= ~0x7; + } + // Cap the size with capacity() again + size = Math.min(size, capacity()); + + final boolean isByteBufferBacked = bytesStore.underlyingObject() instanceof ByteBuffer; + if (isByteBufferBacked && size > MAX_HEAP_CAPACITY) { + + // Add a stack trace to this relatively unusual event which will + // enable tracing of potentially derailed code or excessive buffer use. + final StackTrace stackTrace = new StackTrace(); + final String stack = BytesUtil.asString("Calling stack is", stackTrace); + + Jvm.warn().on(getClass(), "Going to try to replace ByteBuffer-backed BytesStore with " + + "raw NativeBytesStore to grow to " + size / 1024 + " KB. If later it is assumed that " + + "this bytes' underlyingObject() is ByteBuffer, NullPointerException is likely to be thrown. " + + stack); + } +// System.out.println("resize " + endOfBuffer + " to " + size); + if (endOfBuffer > 1 << 20) + Jvm.warn().on(getClass(), "Resizing buffer was " + realCapacity / 1024 + " KB, " + + "needs " + (endOfBuffer - realCapacity) + " bytes more, " + + "new-size " + size / 1024 + " KB"); + final BytesStore store; + int position = 0; + try { + if (isByteBufferBacked && size <= MAX_HEAP_CAPACITY) { + position = ((ByteBuffer) bytesStore.underlyingObject()).position(); + store = allocateNewByteBufferBackedStore(Maths.toInt32(size)); + } else { + store = NativeBytesStore.lazyNativeBytesStoreWithFixedCapacity(size); + } + store.reserveTransfer(INIT, this); + } catch (IllegalArgumentException e) { + BufferOverflowException boe = new BufferOverflowException(); + boe.initCause(e); + throw boe; + } + + throwExceptionIfReleased(); + final BytesStore, Underlying> tempStore = this.bytesStore; + this.bytesStore.copyTo(store); + this.bytesStore(store); + try { + tempStore.release(this); + } catch (IllegalStateException e) { + Jvm.debug().on(getClass(), e); + } + + if (this.bytesStore.underlyingObject() instanceof ByteBuffer) { + final ByteBuffer byteBuffer = (ByteBuffer) this.bytesStore.underlyingObject(); + byteBuffer.position(0); + byteBuffer.limit(byteBuffer.capacity()); + byteBuffer.position(position); + } + } + + + private BytesStore allocateNewByteBufferBackedStore(final int size) { + if (isDirectMemory()) { + return NativeBytesStore.elasticByteBuffer(size, capacity()); + } else { + return HeapBytesStore.wrap(ByteBuffer.allocate(size)); + } + } + + + @Override + public Bytes write( final byte[] bytes, + final int offset, + final int length) throws BufferOverflowException, IllegalArgumentException { + if (length > writeRemaining()) + throw new BufferOverflowException(); + ensureCapacity(length); + super.write(bytes, offset, length); + return this; + } + + + public Bytes write( final BytesStore bytes, + final long offset, + final long length) throws BufferOverflowException, IllegalArgumentException, BufferUnderflowException { + ensureCapacity(length); + super.write(bytes, offset, length); + return this; + } + + @Override + + public NativeBytes writeSome( final Bytes bytes) { + try { + long length = Math.min(bytes.readRemaining(), writeRemaining()); + if (length + writePosition() >= 1 << 20) + length = Math.min(bytes.readRemaining(), realCapacity() - writePosition()); + final long offset = bytes.readPosition(); + ensureCapacity(length); + optimisedWrite(bytes, offset, length); + if (length == bytes.readRemaining()) { + bytes.clear(); + } else { + bytes.readSkip(length); + if (bytes.writePosition() > bytes.realCapacity() / 2) + bytes.compact(); + } + return this; + } catch (IllegalArgumentException | BufferUnderflowException | BufferOverflowException e) { + throw new AssertionError(e); + } + } + + @Override + protected long writeOffsetPositionMoved(final long adding, final long advance) throws BufferOverflowException { + final long oldPosition = writePosition; + if (writePosition < bytesStore.start()) + throw new BufferOverflowException(); + final long writeEnd = writePosition + adding; + if (writeEnd > writeLimit) + throwBeyondWriteLimit(advance, writeEnd); + else if (writeEnd > bytesStore.safeLimit()) + checkResize(writeEnd); + this.writePosition = writePosition + advance; + return oldPosition; + } + + private void throwBeyondWriteLimit(long advance, long writeEnd) { + throw new DecoratedBufferOverflowException("attempt to write " + advance + " bytes to " + writeEnd + " limit: " + writeLimit); + } + + + @Override + public Bytes writeByte(final byte i8) throws BufferOverflowException { + final long offset = writeOffsetPositionMoved(1, 1); + bytesStore.writeByte(offset, i8); + return this; + } + + + @Override + public Bytes write8bit( final BytesStore bs) throws BufferOverflowException { + if (bs == null) { + writeStopBit(-1); + } else { + final long offset = bs.readPosition(); + final long readRemaining = Math.min(writeRemaining(), bs.readLimit() - offset); + writeStopBit(readRemaining); + write(bs, offset, readRemaining); + } + return this; + } + + + @Override + public Bytes writeLong(final long i64) throws BufferOverflowException { + final long offset = writeOffsetPositionMoved(8L, 8L); + bytesStore.writeLong(offset, i64); + return this; + } + + @Override + public long readRemaining() { + return writePosition - readPosition; + } + + public final static class NativeSubBytes extends SubBytes { + private final NativeBytesStore nativeBytesStore; + + public NativeSubBytes( final BytesStore bytesStore, + final long start, + final long capacity) throws IllegalStateException { + super(bytesStore, start, capacity); + nativeBytesStore = (NativeBytesStore) this.bytesStore; + } + + @Override + public long read(final long offsetInRDI, + final byte[] bytes, + final int offset, + final int length) { + + final int len = (int) Math.min(length, readLimit() - offsetInRDI); + int i; + final long address = nativeBytesStore.address + nativeBytesStore.translate(offsetInRDI); + for (i = 0; i < len - 7; i += 8) + UnsafeMemory.unsafePutLong(bytes, i, nativeBytesStore.memory.readLong(address + i)); + if (i < len - 3) { + UnsafeMemory.unsafePutInt(bytes, i, nativeBytesStore.memory.readInt(address + i)); + i += 4; + } + for (; i < len; i++) + UnsafeMemory.unsafePutByte(bytes, i, nativeBytesStore.memory.readByte(address + i)); + return len; + } + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/NativeBytesStore.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/NativeBytesStore.java new file mode 100644 index 0000000..e09dc9c --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/NativeBytesStore.java @@ -0,0 +1,852 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.*; +import net.openhft.chronicle.core.annotation.ForceInline; +import net.openhft.chronicle.core.cleaner.CleanerServiceLocator; +import net.openhft.chronicle.core.cleaner.spi.ByteBufferCleanerService; +import net.openhft.chronicle.core.io.IORuntimeException; +import net.openhft.chronicle.core.util.SimpleCleaner; +import org.jetbrains.annotations.NotNull; +import org.jetbrains.annotations.Nullable; + +import java.lang.reflect.Field; +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; +import java.nio.ByteBuffer; +import java.nio.charset.StandardCharsets; + +import static net.openhft.chronicle.bytes.Bytes.MAX_CAPACITY; + +@SuppressWarnings({"restriction", "rawtypes", "unchecked"}) +public class NativeBytesStore + extends AbstractBytesStore, Underlying> { + private static final long MEMORY_MAPPED_SIZE = 128 << 10; + private static final Field BB_ADDRESS, BB_CAPACITY, BB_ATT; + private static final ByteBufferCleanerService CLEANER_SERVICE = CleanerServiceLocator.cleanerService(); + // static MappedBytes last; + + static { + Class directBB = ByteBuffer.allocateDirect(0).getClass(); + BB_ADDRESS = Jvm.getField(directBB, "address"); + BB_CAPACITY = Jvm.getField(directBB, "capacity"); + BB_ATT = Jvm.getField(directBB, "att"); + } + + protected long address; + // on release, set this to null. + protected Memory memory = OS.memory(); + protected long limit, maximumLimit; + + private SimpleCleaner cleaner; + private boolean elastic; + + private Underlying underlyingObject; + private final Finalizer finalizer; + + private NativeBytesStore() { + finalizer = null; + } + + private NativeBytesStore( ByteBuffer bb, boolean elastic) { + this(bb, elastic, Bytes.MAX_HEAP_CAPACITY); + } + + public NativeBytesStore( ByteBuffer bb, boolean elastic, int maximumLimit) { + this(); + init(bb, elastic); + this.maximumLimit = elastic ? maximumLimit : Math.min(limit, maximumLimit); + } + + public NativeBytesStore( + long address, long limit) { + this(address, limit, null, false); + } + + public NativeBytesStore( + long address, long limit, Runnable deallocator, boolean elastic) { + this(address, limit, deallocator, elastic, false); + } + + protected NativeBytesStore( + long address, long limit, Runnable deallocator, boolean elastic, boolean monitored) { + super(monitored); + setAddress(address); + this.limit = limit; + this.maximumLimit = elastic ? MAX_CAPACITY : limit; + this.cleaner = deallocator == null ? null : new SimpleCleaner(deallocator); + underlyingObject = null; + this.elastic = elastic; + if (cleaner == null) + finalizer = null; + else + finalizer = new Finalizer(); + } + + + public static NativeBytesStore wrap( ByteBuffer bb) { + return new NativeBytesStore<>(bb, false); + } + + + public static NativeBytesStore uninitialized() { + return new NativeBytesStore<>(); + } + + /** + * this is an elastic native store + * + * @param capacity of the buffer. + */ + + public static NativeBytesStore nativeStore(long capacity) + throws IllegalArgumentException { + return of(capacity, true, true); + } + + + private static NativeBytesStore of(long capacity, boolean zeroOut, boolean elastic) + throws IllegalArgumentException { + if (capacity <= 0) + return new NativeBytesStore<>(NoBytesStore.NO_PAGE, 0, null, elastic); + Memory memory = OS.memory(); + long address = memory.allocate(capacity); + if (zeroOut || capacity < MEMORY_MAPPED_SIZE) { + memory.setMemory(address, capacity, (byte) 0); + memory.storeFence(); + } + Deallocator deallocator = new Deallocator(address, capacity); + return new NativeBytesStore<>(address, capacity, deallocator, elastic); + } + + + public static NativeBytesStore nativeStoreWithFixedCapacity(long capacity) + throws IllegalArgumentException { + return of(capacity, true, false); + } + + + public static NativeBytesStore lazyNativeBytesStoreWithFixedCapacity(long capacity) + throws IllegalArgumentException { + return of(capacity, false, false); + } + + + public static NativeBytesStore elasticByteBuffer() { + return elasticByteBuffer(OS.pageSize(), MAX_CAPACITY); + } + + + public static NativeBytesStore elasticByteBuffer(int size, long maxSize) { + return new NativeBytesStore<>(ByteBuffer.allocateDirect(size), true, Math.toIntExact(maxSize)); + } + + + public static NativeBytesStore from( String text) { + return from(text.getBytes(StandardCharsets.ISO_8859_1)); + } + + + public static NativeBytesStore from( byte[] bytes) { + try { + NativeBytesStore nbs = nativeStoreWithFixedCapacity(bytes.length); + Bytes bytes2 = Bytes.wrapForRead(bytes); + bytes2.copyTo(nbs); + bytes2.releaseLast(); + return nbs; + } catch (IllegalArgumentException e) { + throw new AssertionError(e); + } + } + + @Override + public boolean isDirectMemory() { + return true; + } + + @Override + public boolean canReadDirect(long length) { + return limit >= length; + } + + public void init( ByteBuffer bb, boolean elastic) { + this.elastic = elastic; + underlyingObject = (Underlying) bb; + setAddress(Jvm.address(bb)); + this.limit = bb.capacity(); + } + + public void uninit() { + underlyingObject = null; + address = 0; + limit = 0; + maximumLimit = 0; + cleaner = null; + } + + @Override + public void move(long from, long to, long length) throws BufferUnderflowException { + if (from < 0 || to < 0) throw new BufferUnderflowException(); + long address = this.address; + if (address == 0) throwException(null); + memoryCopyMemory(address + from, address + to, length); + } + + private void memoryCopyMemory(long fromAddress, long toAddress, long length) { + try { + memory.copyMemory(fromAddress, toAddress, length); + } catch (NullPointerException ifReleased) { + throwException(ifReleased); + } + } + + private void throwException(Throwable ifReleased) { + throwExceptionIfReleased(); + throw new IllegalStateException(ifReleased); + } + + + @Override + public BytesStore, Underlying> copy() { + try { + if (underlyingObject == null) { + NativeBytesStore copy = of(realCapacity(), false, true); + memoryCopyMemory(address, copy.address, capacity()); + return (BytesStore) copy; + + } else if (underlyingObject instanceof ByteBuffer) { + ByteBuffer bb = ByteBuffer.allocateDirect(Maths.toInt32(capacity())); + bb.put((ByteBuffer) underlyingObject); + bb.clear(); + return (BytesStore) wrap(bb); + + } else { + throw new UnsupportedOperationException(); + } + } catch (IllegalArgumentException e) { + throw new AssertionError(e); + } + } + + + @Override + public VanillaBytes bytesForWrite() throws IllegalStateException { + return elastic + ? NativeBytes.wrapWithNativeBytes(this, this.capacity()) + : new VanillaBytes<>(this); + } + + @Override + @ForceInline + public long realCapacity() { + return limit; + } + + @Override + @ForceInline + public long capacity() { + return maximumLimit; + } + + + @Override + @ForceInline + public Underlying underlyingObject() { + return underlyingObject; + } + + + @Override + @ForceInline + public NativeBytesStore zeroOut(long start, long end) { + if (end <= start) + return this; + if (start < start()) + start = start(); + if (end > capacity()) + end = capacity(); + + memory.setMemory(address + translate(start), end - start, (byte) 0); + return this; + } + + @Override + @ForceInline + public boolean compareAndSwapInt(long offset, int expected, int value) { + return memory.compareAndSwapInt(address + translate(offset), expected, value); + } + + @Override + public void testAndSetInt(long offset, int expected, int value) { + memory.testAndSetInt(address + translate(offset), offset, expected, value); + } + + @Override + @ForceInline + public boolean compareAndSwapLong(long offset, long expected, long value) { + return memory.compareAndSwapLong(address + translate(offset), expected, value); + } + + @Override + @ForceInline + public long addAndGetLong(long offset, long adding) throws BufferUnderflowException { + return memory.addLong(address + translate(offset), adding); + } + + @Override + @ForceInline + public int addAndGetInt(long offset, int adding) throws BufferUnderflowException { + return memory.addInt(address + translate(offset), adding); + } + + protected long translate(long offset) { + return offset; + } + + @Override + @ForceInline + public byte readByte(long offset) { + return memory.readByte(address + translate(offset)); + } + + public int readUnsignedByte(long offset) throws BufferUnderflowException { + return readByte(offset) & 0xFF; + } + + @Override + @ForceInline + public short readShort(long offset) { + return memory.readShort(address + translate(offset)); + } + + @Override + @ForceInline + public int readInt(long offset) { + return memory.readInt(address + translate(offset)); + } + + @Override + @ForceInline + public long readLong(long offset) { + long address = this.address; + assert address != 0; + return memory.readLong(address + translate(offset)); + } + + @Override + @ForceInline + public float readFloat(long offset) { + return memory.readFloat(address + translate(offset)); + } + + @Override + @ForceInline + public double readDouble(long offset) { + return memory.readDouble(address + translate(offset)); + } + + @Override + @ForceInline + public byte readVolatileByte(long offset) { + return memory.readVolatileByte(address + translate(offset)); + } + + @Override + @ForceInline + public short readVolatileShort(long offset) { + return memory.readVolatileShort(address + translate(offset)); + } + + @Override + @ForceInline + public int readVolatileInt(long offset) { + return memory.readVolatileInt(address + translate(offset)); + } + + @Override + @ForceInline + public long readVolatileLong(long offset) { + return memory.readVolatileLong(address + translate(offset)); + } + + + @Override + @ForceInline + public NativeBytesStore writeByte(long offset, byte i8) { + memory.writeByte(address + translate(offset), i8); + return this; + } + + + @Override + @ForceInline + public NativeBytesStore writeShort(long offset, short i16) { + memory.writeShort(address + translate(offset), i16); + return this; + } + + + @Override + @ForceInline + public NativeBytesStore writeInt(long offset, int i32) { + try { + memory.writeInt(address + translate(offset), i32); + return this; + } catch (NullPointerException e) { + throwExceptionIfReleased(); + throw e; + } + } + + + @Override + @ForceInline + public NativeBytesStore writeOrderedInt(long offset, int i) { + memory.writeOrderedInt(address + translate(offset), i); + return this; + } + + + @Override + @ForceInline + public NativeBytesStore writeLong(long offset, long i64) { + memory.writeLong(address + translate(offset), i64); + return this; + } + + + @Override + @ForceInline + public NativeBytesStore writeOrderedLong(long offset, long i) { + memory.writeOrderedLong(address + translate(offset), i); + return this; + } + + + @Override + @ForceInline + public NativeBytesStore writeFloat(long offset, float f) { + memory.writeFloat(address + translate(offset), f); + return this; + } + + + @Override + @ForceInline + public NativeBytesStore writeDouble(long offset, double d) { + memory.writeDouble(address + translate(offset), d); + return this; + } + + + @Override + @ForceInline + public NativeBytesStore writeVolatileByte(long offset, byte i8) { + memory.writeVolatileByte(address + translate(offset), i8); + return this; + } + + + @Override + @ForceInline + public NativeBytesStore writeVolatileShort(long offset, short i16) { + memory.writeVolatileShort(address + translate(offset), i16); + return this; + } + + + @Override + @ForceInline + public NativeBytesStore writeVolatileInt(long offset, int i32) { + memory.writeVolatileInt(address + translate(offset), i32); + return this; + } + + + @Override + @ForceInline + public NativeBytesStore writeVolatileLong(long offset, long i64) { + memory.writeVolatileLong(address + translate(offset), i64); + return this; + } + + + @Override + @ForceInline + public NativeBytesStore write( + long offsetInRDO, byte[] bytes, int offset, int length) { + memory.copyMemory(bytes, offset, address + translate(offsetInRDO), length); + return this; + } + + @Override + @ForceInline + public void write( + long offsetInRDO, ByteBuffer bytes, int offset, int length) { + if (bytes.isDirect()) { + memoryCopyMemory(Jvm.address(bytes) + offset, address + translate(offsetInRDO), length); + + } else { + memory.copyMemory(bytes.array(), offset, address + translate(offsetInRDO), length); + } + } + + + @Override + @ForceInline + public NativeBytesStore write( + long writeOffset, RandomDataInput bytes, long readOffset, long length) + throws BufferOverflowException, BufferUnderflowException { + if (bytes.isDirectMemory()) { + memoryCopyMemory(bytes.addressForRead(readOffset), addressForWrite(writeOffset), length); + } else { + write0(writeOffset, bytes, readOffset, length); + } + return this; + } + + public void write0(long offsetInRDO, RandomDataInput bytes, long offset, long length) throws BufferUnderflowException { + long i = 0; + for (; i < length - 7; i += 8) { + writeLong(offsetInRDO + i, bytes.readLong(offset + i)); + } + for (; i < length; i++) { + writeByte(offsetInRDO + i, bytes.readByte(offset + i)); + } + } + + @Override + public long addressForRead(long offset) throws BufferUnderflowException { + if (offset < start() || offset > realCapacity()) + throw new BufferUnderflowException(); + return address + translate(offset); + } + + @Override + public long addressForWrite(long offset) throws BufferOverflowException { + if (offset < start() || offset > realCapacity()) + throw new BufferOverflowException(); + return address + translate(offset); + } + + @Override + public long addressForWritePosition() throws UnsupportedOperationException, BufferOverflowException { + return addressForWrite(start()); + } + + @Override + protected void performRelease() { + memory = null; + if (cleaner != null) { + cleaner.clean(); + + } else if (underlyingObject instanceof ByteBuffer) { + ByteBuffer underlyingObject = (ByteBuffer) this.underlyingObject; + if (underlyingObject.isDirect()) + CLEANER_SERVICE.clean(underlyingObject); + } + } + + + @Override + public String toString() { + try { + return BytesInternal.toString(this); + + } catch (IllegalStateException e) { + return e.toString(); + } + } + + @Override + @ForceInline + public void nativeRead(long position, long address, long size) throws BufferUnderflowException { + // TODO add bounds checking. + memoryCopyMemory(addressForRead(position), address, size); + } + + @Override + @ForceInline + public void nativeWrite(long address, long position, long size) throws BufferOverflowException { + // TODO add bounds checking. + memoryCopyMemory(address, addressForWrite(position), size); + } + + void write8bit(long position, char[] chars, int offset, int length) { + long addr = address + translate(position); + Memory memory = this.memory; + for (int i = 0; i < length; i++) + memory.writeByte(addr + i, (byte) chars[offset + i]); + } + + void read8bit(long position, char[] chars, int length) { + long addr = address + translate(position); + Memory memory = this.memory; + for (int i = 0; i < length; i++) + chars[i] = (char) (memory.readByte(addr + i) & 0xFF); + } + + @Override + public long readIncompleteLong(long offset) { + int remaining = (int) Math.min(8, readRemaining() - offset); + long l = 0; + for (int i = 0; i < remaining; i++) { + byte b = memory.readByte(address + offset + i); + l |= (long) (b & 0xFF) << (i * 8); + } + return l; + } + + @Override + public boolean equals(Object obj) { + return obj instanceof BytesStore && BytesInternal.contentEqual(this, (BytesStore) obj); + } + + public void setAddress(long address) { + if ((address & ~0x3FFF) == 0) + throw new AssertionError("Invalid addressForRead " + Long.toHexString(address)); + this.address = address; + } + + @Deprecated(/* to be removed in x.22 */) + public long appendUTF(long pos, char[] chars, int offset, int length) throws BufferOverflowException { + return appendUtf8(pos, chars, offset, length); + } + + public long appendUtf8(long pos, char[] chars, int offset, int length) throws BufferOverflowException { + if (pos + length > realCapacity()) + throw new BufferOverflowException(); + + long address = this.address + translate(0); + Memory memory = this.memory; + if (memory == null) throw new NullPointerException(); + int i; + ascii: + { + for (i = 0; i < length - 3; i += 4) { + final int i2 = offset + i; + char c0 = chars[i2]; + char c1 = chars[i2 + 1]; + char c2 = chars[i2 + 2]; + char c3 = chars[i2 + 3]; + if ((c0 | c1 | c2 | c3) > 0x007F) + break ascii; + final int value = (c0) | (c1 << 8) | (c2 << 16) | (c3 << 24); + UnsafeMemory.unsafePutInt(address + pos, value); + pos += 4; + } + for (; i < length; i++) { + char c = chars[offset + i]; + if (c > 0x007F) + break ascii; + UnsafeMemory.unsafePutByte(address + pos++, (byte) c); + } + + return pos; + } + return appendUtf8a(pos, chars, offset, length, i); + } + + private long appendUtf8a(long pos, char[] chars, int offset, int length, int i) { + for (; i < length; i++) { + char c = chars[offset + i]; + if (c <= 0x007F) { + writeByte(pos++, (byte) c); + + } else if (c <= 0x07FF) { + writeByte(pos++, (byte) (0xC0 | ((c >> 6) & 0x1F))); + writeByte(pos++, (byte) (0x80 | c & 0x3F)); + + } else { + writeByte(pos++, (byte) (0xE0 | ((c >> 12) & 0x0F))); + writeByte(pos++, (byte) (0x80 | ((c >> 6) & 0x3F))); + writeByte(pos++, (byte) (0x80 | (c & 0x3F))); + } + } + return pos; + } + + @Override + public long copyTo( BytesStore store) { + if (store.isDirectMemory()) + return copyToDirect(store); + else + return super.copyTo(store); + } + + public long copyToDirect( BytesStore store) { + long toCopy = Math.min(limit, store.safeLimit()); + if (toCopy > 0) { + try { + long addr = address; + long addr2 = store.addressForWrite(0); + memoryCopyMemory(addr, addr2, toCopy); + } catch (BufferOverflowException e) { + throw new AssertionError(e); + } + } + return toCopy; + } + + + @Override + public ByteBuffer toTemporaryDirectByteBuffer() { + ByteBuffer bb = ByteBuffer.allocateDirect(0); + try { + BB_ADDRESS.setLong(bb, address); + BB_CAPACITY.setInt(bb, Maths.toUInt31(readRemaining())); + BB_ATT.set(bb, this); + } catch (Exception e) { + throw new AssertionError(e); + } + bb.clear(); + return bb; + } + + @Override + public int byteCheckSum() throws IORuntimeException { + return byteCheckSum(start(), readLimit()); + } + + public int byteCheckSum(long position, long limit) { + Memory memory = this.memory; + assert memory != null; + int b = 0; + long ptr = address + position; + long end = address + limit; + for (; ptr < end - 7; ptr += 8) { + b += memory.readByte(ptr) + + memory.readByte(ptr + 1) + + memory.readByte(ptr + 2) + + memory.readByte(ptr + 3) + + memory.readByte(ptr + 4) + + memory.readByte(ptr + 5) + + memory.readByte(ptr + 6) + + memory.readByte(ptr + 7); + } + for (; ptr < end; ptr++) { + b += memory.readByte(ptr); + } + return b & 0xFF; + } + + @Override + public boolean sharedMemory() { + return false; + } + + @Override + public long read(long offsetInRDI, byte[] bytes, int offset, int length) { + int len = (int) Math.min(length, readLimit() - offsetInRDI); + int i; + final long address = this.address + translate(offsetInRDI); + for (i = 0; i < len - 7; i += 8) + UnsafeMemory.unsafePutLong(bytes, i, memory.readLong(address + i)); + if (i < len - 3) { + UnsafeMemory.unsafePutInt(bytes, i, memory.readInt(address + i)); + i += 4; + } + for (; i < len; i++) + UnsafeMemory.unsafePutByte(bytes, i, memory.readByte(address + i)); + return len; + } + + @Override + public int peekUnsignedByte(long offset) { + final long address = this.address; + final Memory memory = this.memory; + final long translate = translate(offset); +// assert translate >= 0; + final long address2 = address + translate; +// last.writeLong(8, Thread.currentThread().getId()); +// last.writeLong(0, offset); +// last.writeLong(16, translate); +// last.writeLong(32, maximumLimit); +// last.writeLong(48, addressForRead); +// last.writeLong(64, address2); +// last.writeBoolean(80, memory != null); +// last.writeVolatileByte(88, (byte) 1); + int ret = translate >= limit ? -1 : + memory.readByte(address2) & 0xFF; +// last.writeVolatileByte(88, (byte) 0xFF); +// last.writeLong(24, Thread.currentThread().getId()); + return ret; + } + + @Override + public int fastHash(long offset, int length) throws BufferUnderflowException { + long ret; + switch (length) { + case 0: + return 0; + case 1: + ret = readByte(offset); + break; + case 2: + ret = readShort(offset); + break; + case 4: + ret = readInt(offset); + break; + case 8: + ret = readInt(offset) * 0x6d0f27bdL + readInt(offset + 4); + break; + default: + return super.fastHash(offset, length); + } + long hash = ret * 0x855dd4db; + return (int) (hash ^ (hash >> 32)); + } + + @Override + public long safeLimit() { + return limit; + } + + static class Deallocator implements Runnable { + + private volatile long address; + private final long size; + + Deallocator(long address, long size) { + assert address != 0; + this.address = address; + this.size = size; + } + + @Override + public void run() { + // System.out.println("Release " + Long.toHexString(addressForRead)); + if (address == 0) + return; + long addressToFree = address; + address = 0; + OS.memory().freeMemory(addressToFree, size); + } + } + + private class Finalizer { + @Override + protected void finalize() throws Throwable { + super.finalize(); + warnAndReleaseIfNotReleased(); + } + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/NewChunkListener.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/NewChunkListener.java new file mode 100644 index 0000000..4feb029 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/NewChunkListener.java @@ -0,0 +1,24 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +@FunctionalInterface +public interface NewChunkListener { + void onNewChunk(String filename, int chunk, long delayMicros); +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/NoBytesStore.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/NoBytesStore.java new file mode 100644 index 0000000..0461cd6 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/NoBytesStore.java @@ -0,0 +1,338 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.OS; +import net.openhft.chronicle.core.io.IOTools; +import net.openhft.chronicle.core.io.ReferenceOwner; +import org.jetbrains.annotations.NotNull; + +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; +import java.nio.ByteBuffer; + +/** + * This is a ByteStore which uses no space but could be resized to be larger (by replacing it with a ByteStire with space) + * + * @see ReleasedBytesStore + */ +@SuppressWarnings({"rawtypes", "unchecked"}) +public enum NoBytesStore implements BytesStore { + NO_BYTES_STORE; + + public static final long NO_PAGE; + + + public static final Bytes NO_BYTES; + + static { + try { + NO_PAGE = OS.memory().allocate(OS.pageSize()); + NO_BYTES = new VanillaBytes(noBytesStore()); + IOTools.unmonitor(NO_BYTES); + + } catch ( IllegalArgumentException | IllegalStateException e) { + throw new AssertionError(e); + } + } + + + public static > BytesStore noBytesStore() { + return NO_BYTES_STORE; + } + + @Override + public void reserve(ReferenceOwner owner) throws IllegalStateException { + } + + @Override + public void release(ReferenceOwner owner) throws IllegalStateException { + } + + @Override + public void releaseLast(ReferenceOwner id) throws IllegalStateException { + } + + @Override + public int refCount() { + return 1; + } + + @Override + public boolean tryReserve(ReferenceOwner owner) { + return false; + } + + @Override + public boolean reservedBy(ReferenceOwner owner) { + return true; + } + + + @Override + public RandomDataOutput writeByte(long offset, byte i8) { + throw new UnsupportedOperationException(); + } + + + @Override + public RandomDataOutput writeShort(long offset, short i) { + throw new UnsupportedOperationException(); + } + + + @Override + public RandomDataOutput writeInt(long offset, int i) { + throw new UnsupportedOperationException(); + } + + + @Override + public RandomDataOutput writeOrderedInt(long offset, int i) { + throw new UnsupportedOperationException(); + } + + + @Override + public RandomDataOutput writeLong(long offset, long i) { + throw new UnsupportedOperationException(); + } + + + @Override + public RandomDataOutput writeOrderedLong(long offset, long i) { + throw new UnsupportedOperationException(); + } + + + @Override + public RandomDataOutput writeFloat(long offset, float d) { + throw new UnsupportedOperationException(); + } + + + @Override + public RandomDataOutput writeDouble(long offset, double d) { + throw new UnsupportedOperationException(); + } + + + @Override + public RandomDataOutput writeVolatileByte(long offset, byte i8) { + throw new UnsupportedOperationException(); + } + + + @Override + public RandomDataOutput writeVolatileShort(long offset, short i16) { + throw new UnsupportedOperationException(); + } + + + @Override + public RandomDataOutput writeVolatileInt(long offset, int i32) { + throw new UnsupportedOperationException(); + } + + + @Override + public RandomDataOutput writeVolatileLong(long offset, long i64) { + throw new UnsupportedOperationException(); + } + + + @Override + public RandomDataOutput write(long offsetInRDO, byte[] bytes, int offset, int length) { + if (length != 0) + throw new UnsupportedOperationException(); + return this; + } + + @Override + public void write(long offsetInRDO, ByteBuffer bytes, int offset, int length) { + if (length != 0) + throw new UnsupportedOperationException(); + } + + + @Override + public RandomDataOutput write(long writeOffset, RandomDataInput bytes, long readOffset, long length) { + if (length != 0) + throw new UnsupportedOperationException(); + return this; + } + + @Override + public byte readByte(long offset) { + throw new UnsupportedOperationException(); + } + + @Override + public int peekUnsignedByte(long offset) { + return -1; + } + + @Override + public short readShort(long offset) { + throw new UnsupportedOperationException(); + } + + @Override + public int readInt(long offset) { + throw new UnsupportedOperationException(); + } + + @Override + public long readLong(long offset) { + throw new UnsupportedOperationException(); + } + + @Override + public float readFloat(long offset) { + throw new UnsupportedOperationException(); + } + + @Override + public double readDouble(long offset) { + throw new UnsupportedOperationException(); + } + + @Override + public byte readVolatileByte(long offset) throws BufferUnderflowException { + throw new UnsupportedOperationException(); + } + + @Override + public short readVolatileShort(long offset) throws BufferUnderflowException { + throw new UnsupportedOperationException(); + } + + @Override + public int readVolatileInt(long offset) throws BufferUnderflowException { + throw new UnsupportedOperationException(); + } + + @Override + public long readVolatileLong(long offset) throws BufferUnderflowException { + throw new BufferUnderflowException(); + } + + @Override + public boolean isDirectMemory() { + return false; + } + + + @Override + public BytesStore copy() { + return this; + } + + @Override + public long capacity() { + return 0; + } + + @Override + public Void underlyingObject() { + return null; + } + + @Override + public boolean inside(long offset) { + return false; + } + + @Override + public boolean inside(long offset, long buffer) { + return false; + } + + @Override + public long copyTo( BytesStore store) { + // nothing to copy. + return 0L; + } + + @Override + public void nativeWrite(long address, long position, long size) { + throw new UnsupportedOperationException(); + } + + @Override + public void nativeRead(long position, long address, long size) { + throw new UnsupportedOperationException(); + } + + @Override + public boolean compareAndSwapInt(long offset, int expected, int value) { + throw new UnsupportedOperationException(); + } + + @Override + public void testAndSetInt(long offset, int expected, int value) { + throw new UnsupportedOperationException(); + } + + @Override + public boolean compareAndSwapLong(long offset, long expected, long value) { + throw new UnsupportedOperationException(); + } + + @Override + public boolean equalBytes( BytesStore bytesStore, long length) { + return length == 0; + } + + @Override + public void move(long from, long to, long length) { + throw new UnsupportedOperationException(); + } + + @Override + public long addressForRead(long offset) throws BufferUnderflowException { + if (offset != 0) + throw new BufferUnderflowException(); + return NO_PAGE; + } + + @Override + public long addressForWrite(long offset) throws BufferOverflowException { + if (offset != 0) + throw new BufferOverflowException(); + return NO_PAGE; + } + + @Override + public long addressForWritePosition() throws UnsupportedOperationException, BufferOverflowException { + return NO_PAGE; + } + + + @Override + public Bytes bytesForWrite() { + throw new UnsupportedOperationException("todo"); + } + + @Override + public boolean sharedMemory() { + return false; + } + +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/OffsetFormat.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/OffsetFormat.java new file mode 100644 index 0000000..9b8d856 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/OffsetFormat.java @@ -0,0 +1,24 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes; + +@FunctionalInterface +public interface OffsetFormat { + @SuppressWarnings("rawtypes") + void append(long offset, Bytes bytes); +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/OnHeapBytes.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/OnHeapBytes.java new file mode 100644 index 0000000..07a629d --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/OnHeapBytes.java @@ -0,0 +1,103 @@ +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.bytes.util.DecoratedBufferOverflowException; +import net.openhft.chronicle.core.Jvm; +import org.jetbrains.annotations.NotNull; + +import java.nio.BufferOverflowException; + +public class OnHeapBytes extends VanillaBytes { + public static final int MAX_CAPACITY = Bytes.MAX_HEAP_CAPACITY; + private final boolean elastic; + private final long capacity; + + public OnHeapBytes( BytesStore bytesStore, boolean elastic) throws IllegalStateException { + super(bytesStore); + this.elastic = elastic; + this.capacity = elastic ? MAX_CAPACITY : bytesStore.capacity(); + + writePosition(0); + writeLimit(capacity()); + } + + @Override + public long capacity() { + return capacity; + } + + @Override + public boolean isElastic() { + return elastic; + } + + @Override + protected void writeCheckOffset(long offset, long adding) + throws BufferOverflowException { + if (offset >= bytesStore.start()) { + long writeEnd = offset + adding; + if (writeEnd > writeLimit) + throwBeyondWriteLimit(adding, writeEnd); + if (writeEnd <= bytesStore.safeLimit()) { + return; // do nothing. + } + checkResize(writeEnd); + } else { + throw new BufferOverflowException(); + } + } + + private void throwBeyondWriteLimit(long advance, long writeEnd) { + throw new DecoratedBufferOverflowException("attempt to write " + advance + " bytes to " + writeEnd + " limit: " + writeLimit); + } + + private void checkResize(long endOfBuffer) + throws BufferOverflowException { + if (isElastic()) + resize(endOfBuffer); + else + throw new BufferOverflowException(); + } + + // the endOfBuffer is the minimum capacity and one byte more than the last addressable byte. + private void resize(long endOfBuffer) + throws BufferOverflowException { + if (endOfBuffer < 0) + throw new BufferOverflowException(); + if (endOfBuffer > capacity()) + throw new BufferOverflowException(); + final long realCapacity = realCapacity(); + if (endOfBuffer <= realCapacity) { +// System.out.println("no resize " + endOfBuffer + " < " + realCapacity); + return; + } + + // Grow by 50% + long size0 = Math.max(endOfBuffer, realCapacity * 3 / 2); + // Size must not be more than capacity(), it may break some assumptions in BytesStore or elsewhere + int size = (int) Math.min(size0, capacity()); + + // System.out.println("resize " + endOfBuffer + " to " + size); + if (endOfBuffer > 1 << 20) + Jvm.warn().on(getClass(), "Resizing buffer was " + realCapacity / 1024 + " KB, " + + "needs " + (endOfBuffer - realCapacity) + " bytes more, " + + "new-size " + size / 1024 + " KB"); + HeapBytesStore store; + try { + store = HeapBytesStore.wrap(new byte[size]); + store.reserveTransfer(INIT, this); + } catch (IllegalArgumentException e) { + BufferOverflowException boe = new BufferOverflowException(); + boe.initCause(e); + throw boe; + } + + BytesStore, byte[]> tempStore = this.bytesStore; + this.bytesStore.copyTo(store); + this.bytesStore(store); + try { + tempStore.release(this); + } catch (IllegalStateException e) { + Jvm.debug().on(getClass(), e); + } + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/PointerBytesStore.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/PointerBytesStore.java new file mode 100644 index 0000000..7d31c06 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/PointerBytesStore.java @@ -0,0 +1,55 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import org.jetbrains.annotations.NotNull; + +/** + * A BytesStore which can point to arbitrary memory. + */ +public class PointerBytesStore extends NativeBytesStore { + private boolean isPresent = false; + + public PointerBytesStore() { + super(NoBytesStore.NO_PAGE, 0, null, false, false); + } + + public void set(long address, long capacity) { + isPresent = true; + setAddress(address); + this.limit = maximumLimit = capacity; + } + + + @Override + public VanillaBytes bytesForWrite() throws IllegalStateException { + return new VanillaBytes<>(this); + } + + @Override + public long safeLimit() { + return limit; + } + + @Override + public long start() { + return 0; + } + +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/RandomCommon.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/RandomCommon.java new file mode 100644 index 0000000..84e8b07 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/RandomCommon.java @@ -0,0 +1,207 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.annotation.ForceInline; +import net.openhft.chronicle.core.io.ReferenceCounted; +import org.jetbrains.annotations.NotNull; + +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; +import java.nio.ByteOrder; + +interface RandomCommon extends ReferenceCounted { + /** + * @return The smallest position allowed in this buffer. + */ + @ForceInline + default long start() { + return 0L; + } + + /** + * @return the highest limit allowed for this buffer. + */ + @ForceInline + default long capacity() { + return Bytes.MAX_CAPACITY; + } + + /** + * @return the limit for this buffer without resizing + */ + default long realCapacity() { + return capacity(); + } + + /** + * The read position must be start() <= readPosition() && readPosition() <= readLimit() && readPosition < safeLimit() + * + * @return position to read from. + */ + @ForceInline + default long readPosition() { + return start(); + } + + /** + * The read position must be readPosition() <= writePosition() && writePosition() <= writeLimit() + * + * @return position to write to. + */ + @ForceInline + default long writePosition() { + return start(); + } + + /** + * @return How many more bytes can we read. + */ + @ForceInline + default long readRemaining() { + long remaining = readLimit() - readPosition(); + return remaining; + } + + /** + * @return How many more bytes can we written. + */ + @ForceInline + default long writeRemaining() { + return writeLimit() - writePosition(); + } + + /** + * @return the highest offset or position allowed for this buffer. + */ + @ForceInline + default long readLimit() { + return realCapacity(); + } + + @ForceInline + default long writeLimit() { + return realCapacity(); + } + + /** + * Obtain the underlying addressForRead. This is for expert users only. + * + * @param offset within this buffer. addressForRead(start()) is the actual addressForRead of the first byte. + * @return the underlying addressForRead of the buffer + * @throws UnsupportedOperationException if the underlying buffer is on the heap + * @throws BufferUnderflowException if the offset is before the start() or the after the capacity() + */ + long addressForRead(long offset) + throws UnsupportedOperationException, BufferUnderflowException; + + default long addressForRead(long offset, int buffer) + throws UnsupportedOperationException, BufferUnderflowException { + return addressForRead(offset); + } + + /** + * Obtain the underlying addressForRead. This is for expert users only. + * + * @param offset within this buffer. addressForRead(start()) is the actual addressForRead of the first byte. + * @return the underlying addressForRead of the buffer + * @throws UnsupportedOperationException if the underlying buffer is on the heap + * @throws BufferOverflowException if the offset is before the start() or the after the capacity() + */ + long addressForWrite(long offset) + throws UnsupportedOperationException, BufferOverflowException; + + long addressForWritePosition() + throws UnsupportedOperationException, BufferOverflowException; + + default ByteOrder byteOrder() { + return ByteOrder.nativeOrder(); + } + + /** + * @return the streaming bytes for reading. + */ + @SuppressWarnings("rawtypes") + + Bytes bytesForRead() throws IllegalStateException; + + /** + * @return the streaming bytes for writing. + */ + @SuppressWarnings("rawtypes") + + Bytes bytesForWrite() throws IllegalStateException; + + /** + * Perform a 32-bit CAS at a given offset. + * + * @param offset to perform CAS + * @param expected value + * @param value to set + * @return true, if successful. + */ + boolean compareAndSwapInt(long offset, int expected, int value) + throws BufferOverflowException; + + void testAndSetInt(long offset, int expected, int value); + + /** + * Perform a 64-bit CAS at a given offset. + * + * @param offset to perform CAS + * @param expected value + * @param value to set + * @return true, if successful. + */ + boolean compareAndSwapLong(long offset, long expected, long value) + throws BufferOverflowException; + + /** + * Perform a 32-bit float CAS at a given offset. + * + * @param offset to perform CAS + * @param expected value + * @param value to set + * @return true, if successful. + */ + default boolean compareAndSwapFloat(long offset, float expected, float value) + throws BufferOverflowException { + return compareAndSwapInt(offset, Float.floatToRawIntBits(expected), Float.floatToRawIntBits(value)); + } + + /** + * Perform a 64-bit double CAS at a given offset. + * + * @param offset to perform CAS + * @param expected value + * @param value to set + * @return true, if successful. + */ + default boolean compareAndSwapDouble(long offset, double expected, double value) + throws BufferOverflowException { + return compareAndSwapLong(offset, Double.doubleToRawLongBits(expected), Double.doubleToRawLongBits(value)); + } + + /** + * @return true if these Bytes use shared memory. + */ + boolean sharedMemory(); + + boolean isDirectMemory(); +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/RandomDataInput.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/RandomDataInput.java new file mode 100644 index 0000000..bcca92a --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/RandomDataInput.java @@ -0,0 +1,578 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.Maths; +import net.openhft.chronicle.core.annotation.ForceInline; +import net.openhft.chronicle.core.io.IORuntimeException; +import org.jetbrains.annotations.NotNull; +import org.jetbrains.annotations.Nullable; + +import java.nio.BufferUnderflowException; +import java.nio.ByteBuffer; + +/** + * This allows random access to the underling bytes. This instance can be used across threads as it is stateless. + * The thread safety of the underlying data depends on how the methods are used. + */ +public interface RandomDataInput extends RandomCommon { + String[] charToString = createCharToString(); + + + static String[] createCharToString() { + String[] charToString = new String[256]; + charToString[0] = "\u0660"; + for (int i = 1; i < 21; i++) + charToString[i] = Character.toString((char) (i + 0x2487)); + for (int i = ' '; i < 256; i++) + charToString[i] = Character.toString((char) i); + for (int i = 21; i < ' '; i++) + charToString[i] = "\\u00" + Integer.toHexString(i).toUpperCase(); + for (int i = 0x80; i < 0xA0; i++) + charToString[i] = "\\u00" + Integer.toHexString(i).toUpperCase(); + return charToString; + } + + default int peekVolatileInt() throws BufferUnderflowException { + return readVolatileInt(readPosition()); + } + + /** + * Read boolean at an offset + * + * @param offset to read + * @return the boolean + * @throws BufferUnderflowException if the offset is outside the limits of the Bytes + */ + @ForceInline + default boolean readBoolean(long offset) + throws BufferUnderflowException { + return BytesUtil.byteToBoolean(readByte(offset)); + } + + /** + * Read byte at an offset + * + * @param offset to read + * @return the byte + * @throws BufferUnderflowException if the offset is outside the limits of the Bytes + */ + byte readByte(long offset) throws BufferUnderflowException; + + /** + * Read an unsigned byte at an offset + * + * @param offset to read + * @return the unsigned byte + * @throws BufferUnderflowException if the offset is outside the limits of the Bytes + */ + @ForceInline + default int readUnsignedByte(long offset) throws BufferUnderflowException { + return readByte(offset) & 0xFF; + } + + /** + * Read an unsigned byte at an offset, or -1 + * + * @param offset to read + * @return the unsigned byte or -1 + */ + int peekUnsignedByte(long offset) throws BufferUnderflowException; + + /** + * Read a short at an offset + * + * @param offset to read + * @return the short + * @throws BufferUnderflowException if the offset is outside the limits of the Bytes + */ + short readShort(long offset) throws BufferUnderflowException; + + /** + * Read an unsigned short at an offset + * + * @param offset to read + * @return the unsigned short + * @throws BufferUnderflowException if the offset is outside the limits of the Bytes + */ + @ForceInline + default int readUnsignedShort(long offset) throws BufferUnderflowException { + return readShort(offset) & 0xFFFF; + } + + /** + * Read an unsigned int at an offset + * + * @param offset to read + * @return the int + * @throws BufferUnderflowException if the offset is outside the limits of the Bytes + */ + default int readUnsignedInt24(long offset) throws BufferUnderflowException { + return readUnsignedShort(offset) | (readUnsignedByte(offset) << 16); + } + + /** + * Read an int at an offset + * + * @param offset to read + * @return the int + * @throws BufferUnderflowException if the offset is outside the limits of the Bytes + */ + int readInt(long offset) throws BufferUnderflowException; + + /** + * Read an unsigned int at an offset + * + * @param offset to read + * @return the unsigned int + * @throws BufferUnderflowException if the offset is outside the limits of the Bytes + */ + @ForceInline + default long readUnsignedInt(long offset) throws BufferUnderflowException { + return readInt(offset) & 0xFFFFFFFFL; + } + + /** + * Read a long at an offset + * + * @param offset to read + * @return the long + * @throws BufferUnderflowException if the offset is outside the limits of the Bytes + */ + long readLong(long offset) throws BufferUnderflowException; + + /** + * Read a float at an offset + * + * @param offset to read + * @return the float + * @throws BufferUnderflowException if the offset is outside the limits of the Bytes + */ + float readFloat(long offset) throws BufferUnderflowException; + + /** + * Read a double at an offset + * + * @param offset to read + * @return the double + * @throws BufferUnderflowException if the offset is outside the limits of the Bytes + */ + double readDouble(long offset) throws BufferUnderflowException; + + /** + * Read the byte at an offset and converts it into a printable + * + * @param offset to read + * @return the byte in a printable form. + * @throws BufferUnderflowException if the offset is outside the limits of the Bytes + */ + default String printable(long offset) throws BufferUnderflowException { + return charToString[readUnsignedByte(offset)]; + } + + /** + * Read a 8-bit byte from memory with a load barrier. + * + * @param offset to read + * @return the byte value + * @throws BufferUnderflowException if the offset is outside the limits of the Bytes + */ + byte readVolatileByte(long offset) throws BufferUnderflowException; + + /** + * Read a 16-bit short from memory with a load barrier. + * + * @param offset to read + * @return the short value + * @throws BufferUnderflowException if the offset is outside the limits of the Bytes + */ + short readVolatileShort(long offset) throws BufferUnderflowException; + + /** + * Read a 32-bit int from memory with a load barrier. + * + * @param offset to read + * @return the int value + * @throws BufferUnderflowException if the offset is outside the limits of the Bytes + */ + int readVolatileInt(long offset) throws BufferUnderflowException; + + /** + * Read a float from memory with a load barrier. + * + * @param offset to read + * @return the float value + * @throws BufferUnderflowException if the offset is outside the limits of the Bytes + */ + default float readVolatileFloat(long offset) throws BufferUnderflowException { + return Float.intBitsToFloat(readVolatileInt(offset)); + } + + /** + * Read a 64-bit long from memory with a load barrier. + * + * @param offset to read + * @return the long value + * @throws BufferUnderflowException if the offset is outside the limits of the Bytes + */ + long readVolatileLong(long offset) throws BufferUnderflowException; + + /** + * Read a 64-bit double from memory with a load barrier. + * + * @param offset to read + * @return the double value + * @throws BufferUnderflowException if the offset is outside the limits of the Bytes + */ + default double readVolatileDouble(long offset) throws BufferUnderflowException { + return Double.longBitsToDouble(readVolatileLong(offset)); + } + + default long parseLong(long offset) throws BufferUnderflowException { + return BytesInternal.parseLong(this, offset); + } + + /** + * expert level method for copying data to native memory. + * + * @param position within the ByteStore to copy. + * @param address in native memory + * @param size in bytes + * @throws BufferUnderflowException if the offset is outside the limits of the Bytes + */ + void nativeRead(long position, long address, long size) throws BufferUnderflowException; + + /** + * Read a byte[] from memory. + * + * @return the length actually read. + * @throws BufferUnderflowException if the offset is outside the limits of the Bytes + */ + default int copyTo( byte[] bytes) throws BufferUnderflowException { + int len = (int) Math.min(bytes.length, readRemaining()); + for (int i = 0; i < len; i++) + bytes[i] = readByte(start() + i); + return len; + } + + /** + * Copy data from this RandomDataInput to the ByteBuffer. The minimum of {@link #readRemaining()} and + * {@link ByteBuffer#remaining()}. Starting from {@link #start()} in this RandomDataInput and from {@link + * ByteBuffer#position()} of the given bb. Does NOT change the position or limit or mark of the given ByteBuffer. + * Returns the number of the copied bytes. + */ + default int copyTo( ByteBuffer bb) throws BufferUnderflowException { + int pos = bb.position(); + int len = (int) Math.min(bb.remaining(), readRemaining()); + int i; + for (i = 0; i < len - 7; i += 8) + bb.putLong(pos + i, readLong(start() + i)); + for (; i < len; i++) + bb.put(pos + i, readByte(start() + i)); + return len; + } + + /** + * Read a long which is zero padded (high bytes) if the available bytes is less than 8. + * If the offset is at or beyond the readLimit, this will return 0L. + * + * @param offset to read from + * @return the long which might be padded. + */ + default long readIncompleteLong(long offset) { + long left = readLimit() - offset; + long l; + try { + if (left >= 8) + return readLong(offset); + if (left == 4) + return readInt(offset); + l = 0; + for (int i = 0, remaining = (int) left; i < remaining; i++) { + l |= (long) readUnsignedByte(offset + i) << (i * 8); + } + } catch (BufferUnderflowException e) { + throw new AssertionError(e); + } + return l; + } + + /** + * Returns the actual capacity that can be potentially read. + * + * @return the actual capacity that can be potentially read. + */ + long realCapacity(); + + /** + * Perform an atomic add and get operation for a 32-bit int + * + * @param offset to add and get + * @param adding value to add, can be 1 + * @return the sum + * @throws BufferUnderflowException if the offset is outside the limits of the Bytes + */ + default int addAndGetInt(long offset, int adding) + throws BufferUnderflowException { + return BytesInternal.addAndGetInt(this, offset, adding); + } + + /** + * Perform an atomic add and get operation for a 64-bit long + * + * @param offset to add and get + * @param adding value to add, can be 1 + * @return the sum + * @throws BufferUnderflowException if the offset is outside the limits of the Bytes + */ + default long addAndGetLong(long offset, long adding) + throws BufferUnderflowException { + return BytesInternal.addAndGetLong(this, offset, adding); + } + + /** + * Perform an atomic add and get operation for a 32-bit float + * + * @param offset to add and get + * @param adding value to add, can be 1 + * @return the sum + * @throws BufferUnderflowException if the offset is outside the limits of the Bytes + */ + default float addAndGetFloat(long offset, float adding) + throws BufferUnderflowException { + return BytesInternal.addAndGetFloat(this, offset, adding); + } + + /** + * Perform an atomic add and get operation for a 64-bit double + * + * @param offset to add and get + * @param adding value to add, can be 1 + * @return the sum + * @throws BufferUnderflowException if the offset is outside the limits of the Bytes + */ + default double addAndGetDouble(long offset, double adding) + throws BufferUnderflowException { + return BytesInternal.addAndGetDouble(this, offset, adding); + } + + /** + * Copy a sub sequence of bytes as a BytesStore. + * + * @param start of bytes + * @param length of bytes + * @return ByteStore copy. + */ + @SuppressWarnings("rawtypes") + + default BytesStore subBytes(long start, long length) throws BufferUnderflowException { + return BytesInternal.subBytes(this, start, length); + } + + default long findByte(byte stopByte) { + return BytesInternal.findByte(this, stopByte); + } + + /** + * Truncates {@code sb} (it must be a {@link StringBuilder} or {@link Bytes}) and reads a char + * sequence from the given {@code offset}, encoded as Utf8, into it. Returns offset after + * the read Utf8, if a normal char sequence was read, or {@code -1 - offset}, if {@code null} + * was observed (in this case, {@code sb} is truncated too, but not updated then, by querying + * {@code sb} only this case is indistinguishable from reading an empty char sequence). + * + * @param offset the offset in this {@code RandomDataInput} to read char sequence from + * @param sb the buffer to read char sequence into (truncated first) + * @param buffer type, must be {@code StringBuilder} or {@code Bytes} + * @return offset after the normal read char sequence, or -1 - offset, if char sequence is + * {@code null} + * @see RandomDataOutput#writeUtf8(long, CharSequence) + */ + default long readUtf8(long offset, ACS sb) + throws IORuntimeException, IllegalArgumentException, BufferUnderflowException { + AppendableUtil.setLength(sb, 0); + // TODO insert some bounds check here + + long utfLen; + if ((utfLen = readByte(offset++)) < 0) { + utfLen &= 0x7FL; + long b; + int count = 7; + while ((b = readByte(offset++)) < 0) { + utfLen |= (b & 0x7FL) << count; + count += 7; + } + if (b != 0) { + if (count > 56) + throw new IORuntimeException( + "Cannot read more than 9 stop bits of positive value"); + utfLen |= (b << count); + } else { + if (count > 63) + throw new IORuntimeException( + "Cannot read more than 10 stop bits of negative value"); + utfLen = ~utfLen; + } + } + if (utfLen == -1) + return ~offset; + int len = Maths.toUInt31(utfLen); + BytesInternal.parseUtf8(this, offset, sb, true, len); + return offset + utfLen; + } + + /** + * Truncates {@code sb} (it must be a {@link StringBuilder} or {@link Bytes}) and reads a char + * sequence from the given {@code offset}, encoded as Utf8, into it. Returns offset after + * the read Utf8, if a normal char sequence was read, or {@code -1 - offset}, if {@code null} + * was observed (in this case, {@code sb} is truncated too, but not updated then, by querying + * {@code sb} only this case is indistinguishable from reading an empty char sequence). If + * length of Utf8 encoding of the char sequence exceeds {@code maxUtf8Len}, + * {@code IllegalStateException} is thrown. + * + * @param offset the offset in this {@code RandomDataInput} to read char sequence from + * @param sb the buffer to read char sequence into (truncated first) + * @param maxUtf8Len the maximum allowed length of the char sequence in Utf8 encoding + * @param buffer type, must be {@code StringBuilder} or {@code Bytes} + * @return offset after the normal read char sequence, or -1 - offset, if char sequence is + * {@code null} + * @see RandomDataOutput#writeUtf8Limited(long, CharSequence, int) + */ + default long readUtf8Limited( + long offset, ACS sb, int maxUtf8Len) + throws IORuntimeException, IllegalArgumentException, BufferUnderflowException, + IllegalStateException { + AppendableUtil.setLength(sb, 0); + // TODO insert some bounds check here + + long utfLen; + if ((utfLen = readByte(offset++)) < 0) { + utfLen &= 0x7FL; + long b; + int count = 7; + while ((b = readByte(offset++)) < 0) { + utfLen |= (b & 0x7FL) << count; + count += 7; + } + if (b != 0) { + if (count > 56) + throw new IORuntimeException( + "Cannot read more than 9 stop bits of positive value"); + utfLen |= (b << count); + } else { + if (count > 63) + throw new IORuntimeException( + "Cannot read more than 10 stop bits of negative value"); + utfLen = ~utfLen; + } + } + if (utfLen == -1) + return ~offset; + if (utfLen > maxUtf8Len) + throw new IllegalStateException("Attempted to read a char sequence of " + + "utf8 size " + utfLen + ", when only " + maxUtf8Len + " allowed"); + BytesInternal.parseUtf8(this, offset, sb, true, (int) utfLen); + return offset + utfLen; + } + + /** + * Reads a char sequence from the given {@code offset}, encoded as Utf8. If length of Utf8 + * encoding of the char sequence exceeds {@code maxUtf8Len}, {@code IllegalStateException} + * is thrown. + * + * @param offset the offset in this {@code RandomDataInput} to read char sequence from + * @param maxUtf8Len the maximum allowed length of the char sequence in Utf8 encoding + * @return the char sequence was read + * @see RandomDataOutput#writeUtf8Limited(long, CharSequence, int) + */ + + default String readUtf8Limited(long offset, int maxUtf8Len) + throws BufferUnderflowException, IORuntimeException, IllegalArgumentException, + IllegalStateException { + return BytesInternal.readUtf8(this, offset, maxUtf8Len); + } + + /** + * Compares the UTF-8 encoded char sequence, written in this {@code RandomDataInput} at the + * given offset, with the given char sequence. Returns {@code true}, if they are equal. Both + * char sequences (encoded in bytes and the given) may be {@code null}. + * + * @param offset the offset in this {@code RandomDataInput} where the char sequence to compare + * is written + * @param other the second char sequence to compare + * @return {@code true} if two char sequences are equal + * @throws IORuntimeException if the contents are not a valid string. + */ + default boolean compareUtf8(long offset, CharSequence other) throws IORuntimeException { + return BytesInternal.compareUtf8(this, offset, other); + } + + + default byte[] toByteArray() throws IllegalArgumentException { + return BytesInternal.toByteArray(this); + } + + default long read(long offsetInRDI, byte[] bytes, int offset, int length) { + try { + int len = (int) Math.min(length, readLimit() - offsetInRDI); + for (int i = 0; i < len; i++) + bytes[offset + i] = readByte(offsetInRDI + i); + return len; + } catch (BufferUnderflowException e) { + throw new AssertionError(e); + } + } + + default ByteBuffer toTemporaryDirectByteBuffer() throws IllegalArgumentException { + int len = Maths.toUInt31(readRemaining()); + try { + ByteBuffer bb = ByteBuffer.allocateDirect(len); + copyTo(bb); + bb.clear(); + return bb; + } catch (BufferUnderflowException e) { + throw new AssertionError(e); + } + } + + default int fastHash(long offset, int length) throws BufferUnderflowException { + long hash = 0; + int i = 0; + if (length >= 4) { + hash = readInt(offset + i); + i += 4; + } + for (; i < length - 3; i += 4) { + hash *= 0x6d0f27bd; + hash += readInt(offset + i); + } + if (i < length - 1) { + hash *= 0x6d0f27bdL; + hash += readShort(offset + i); + i += 2; + } + if (i < length) + hash += readByte(offset + i); + hash *= 0x855dd4db; + return (int) (hash ^ (hash >> 32)); + } + + default boolean canReadDirect(long length) { + return isDirectMemory() && readRemaining() >= length; + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/RandomDataOutput.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/RandomDataOutput.java new file mode 100644 index 0000000..d2c240f --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/RandomDataOutput.java @@ -0,0 +1,351 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.Maths; +import org.jetbrains.annotations.NotNull; +import org.jetbrains.annotations.Nullable; + +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; +import java.nio.ByteBuffer; + +@SuppressWarnings({"rawtypes", "unchecked"}) +public interface RandomDataOutput> extends RandomCommon { + /** + * Write a byte at an offset. + * + * @param offset to write to + * @param i the value + * @return this + * @throws BufferOverflowException if the capacity was exceeded + * @throws IllegalArgumentException if the value cannot be cast to the type without loss. + */ + + default R writeByte(long offset, int i) + throws BufferOverflowException, IllegalArgumentException { + return writeByte(offset, Maths.toInt8(i)); + } + + /** + * Write an unsigned byte at an offset. + * + * @param offset to write to + * @param i the value + * @return this + * @throws BufferOverflowException if the capacity was exceeded + * @throws IllegalArgumentException if the value cannot be cast to the type without loss. + */ + + default R writeUnsignedByte(long offset, int i) + throws BufferOverflowException, IllegalArgumentException { + return writeByte(offset, (byte) Maths.toUInt8(i)); + } + + /** + * Write a boolean at an offset. + * + * @param offset to write to + * @param flag the value + * @return this + * @throws BufferOverflowException if the capacity was exceeded + */ + + default R writeBoolean(long offset, boolean flag) + throws BufferOverflowException { + try { + return writeByte(offset, flag ? 'Y' : 'N'); + + } catch (IllegalArgumentException e) { + throw new AssertionError(e); + } + } + + /** + * Write an unsigned byte at an offset. + * + * @param offset to write to + * @param i the value + * @return this + * @throws BufferOverflowException if the capacity was exceeded + * @throws IllegalArgumentException if the value cannot be cast to the type without loss. + */ + + default R writeUnsignedShort(long offset, int i) + throws BufferOverflowException, IllegalArgumentException { + return writeShort(offset, (short) Maths.toUInt16(i)); + } + + /** + * Write an unsigned byte at an offset. + * + * @param offset to write to + * @param i the value + * @return this + * @throws BufferOverflowException if the capacity was exceeded + * @throws IllegalArgumentException if the value cannot be cast to the type without loss. + */ + + default R writeUnsignedInt(long offset, long i) + throws BufferOverflowException, IllegalArgumentException { + return writeInt(offset, (int) Maths.toUInt32(i)); + } + + /** + * Write an unsigned byte at an offset. + * + * @param offset to write to + * @param i8 the value + * @return this + * @throws BufferOverflowException if the capacity was exceeded + */ + + R writeByte(long offset, byte i8) throws BufferOverflowException; + + /** + * Write a short at an offset. + * + * @param offset to write to + * @param i the value + * @return this + * @throws BufferOverflowException if the capacity was exceeded + */ + + R writeShort(long offset, short i) throws BufferOverflowException; + + + default R writeInt24(long offset, int i) throws BufferOverflowException { + writeShort(offset, (short) i); + return writeByte(offset + 2, (byte) (i >> 16)); + } + + /** + * Write an int at an offset. + * + * @param offset to write to + * @param i the value + * @return this + * @throws BufferOverflowException if the capacity was exceeded + */ + + R writeInt(long offset, int i) throws BufferOverflowException; + + /** + * Perform a non stalling write with a store barrier. + * + * @param offset to write to + * @param i value to write + * @return this + * @throws BufferOverflowException if the capacity was exceeded + */ + + R writeOrderedInt(long offset, int i) throws BufferOverflowException; + + /** + * Perform a non stalling write with a store barrier. + * + * @param offset to write to + * @param f value to write + * @return this + * @throws BufferOverflowException if the capacity was exceeded + */ + + default R writeOrderedFloat(long offset, float f) throws BufferOverflowException { + return writeOrderedInt(offset, Float.floatToRawIntBits(f)); + } + + /** + * Write a long at an offset. + * + * @param offset to write to + * @param i the value + * @return this + * @throws BufferOverflowException if the capacity was exceeded + */ + + R writeLong(long offset, long i) throws BufferOverflowException, IllegalStateException; + + /** + * Perform a non stalling write with a store barrier. + * + * @param offset to write to + * @param i value to write + * @return this + */ + + R writeOrderedLong(long offset, long i) throws BufferOverflowException; + + /** + * Perform a non stalling write with a store barrier. + * + * @param offset to write to + * @param d value to write + * @return this + */ + + default R writeOrderedDouble(long offset, double d) throws BufferOverflowException { + return writeOrderedLong(offset, Double.doubleToRawLongBits(d)); + } + + /** + * Write a float at an offset. + * + * @param offset to write to + * @param d the value + * @return this + * @throws BufferOverflowException if the capacity was exceeded + */ + + R writeFloat(long offset, float d) throws BufferOverflowException; + + /** + * Write a double at an offset. + * + * @param offset to write to + * @param d the value + * @return this + * @throws BufferOverflowException if the capacity was exceeded + */ + + R writeDouble(long offset, double d) throws BufferOverflowException; + + + R writeVolatileByte(long offset, byte i8) throws BufferOverflowException; + + + R writeVolatileShort(long offset, short i16) throws BufferOverflowException; + + + R writeVolatileInt(long offset, int i32) throws BufferOverflowException; + + + R writeVolatileLong(long offset, long i64) throws BufferOverflowException; + + + default R writeVolatileFloat(long offset, float f) throws BufferOverflowException { + return writeVolatileInt(offset, Float.floatToRawIntBits(f)); + } + + + default R writeVolatileDouble(long offset, double d) throws BufferOverflowException { + return writeVolatileLong(offset, Double.doubleToRawLongBits(d)); + } + + + default R write(long offsetInRDO, byte[] bytes) throws BufferOverflowException { + return write(offsetInRDO, bytes, 0, bytes.length); + } + + + R write(long offsetInRDO, byte[] bytes, int offset, int length) + throws BufferOverflowException; + + void write(long offsetInRDO, ByteBuffer bytes, int offset, int length) + throws BufferOverflowException; + + + default R write(long offsetInRDO, BytesStore bytes) + throws BufferOverflowException { + try { + return write(offsetInRDO, bytes, bytes.readPosition(), bytes.readRemaining()); + + } catch (BufferUnderflowException e) { + throw new AssertionError(e); + } + } + + + R write(long writeOffset, RandomDataInput bytes, long readOffset, long length) + throws BufferOverflowException, BufferUnderflowException; + + /** + * Zero out the bytes between the start and the end. + * + * @param start index of first byte inclusive + * @param end index of last byte exclusive + * @return this + * @throws BufferOverflowException if the capacity was exceeded + */ + + R zeroOut(long start, long end); + + + default R append(long offset, long value, int digits) + throws BufferOverflowException { + BytesInternal.append(this, offset, value, digits); + return (R) this; + } + + + default R append(long offset, double value, int decimalPlaces, int digits) throws BufferOverflowException { + if (decimalPlaces < 20) { + double d2 = value * Maths.tens(decimalPlaces); + if (d2 <= Long.MAX_VALUE && d2 >= Long.MIN_VALUE) { + BytesInternal.appendDecimal(this, Math.round(d2), offset, decimalPlaces, digits); + return (R) this; + } + } + BytesInternal.append((StreamingDataOutput) this, value); + return (R) this; + } + + /** + * expert level method to copy data from native memory into the BytesStore + * + * @param address in native memory to copy from + * @param position in BytesStore to copy to + * @param size in bytes + */ + void nativeWrite(long address, long position, long size) throws BufferOverflowException; + + /** + * Writes the given {@code cs} to this {@code RandomDataOutput} from the given {@code offset}, + * in Utf8 format. Returns the offset after the written char sequence. + * + * @param offset the offset to write char sequence from + * @param cs the char sequence to write, could be {@code null} + * @return the offset after the char sequence written, in this {@code RandomDataOutput} + * @see RandomDataInput#readUtf8(long, Appendable) + */ + default long writeUtf8(long offset, CharSequence cs) throws BufferOverflowException { + return BytesInternal.writeUtf8(this, offset, cs); + } + + /** + * Writes the given {@code cs} to this {@code RandomDataOutput} from the given {@code offset}, + * in Utf8 format, checking that the utf8 encoding size of the given char sequence is less or + * equal to the given {@code maxUtf8Len}, otherwise {@code IllegalArgumentException} is thrown, + * and no bytes of this {@code RandomDataOutput} are overwritten. Returns the offset after the + * written char sequence. + * + * @param offset the offset to write char sequence from + * @param cs the char sequence to write, could be {@code null} + * @param maxUtf8Len the maximum allowed length (in Utf8 encoding) of the given char sequence + * @return the offset after the char sequence written, in this {@code RandomDataOutput} + * @throws IllegalArgumentException if the given char sequence size in Utf8 encoding exceeds + * maxUtf8Len + * @see RandomDataInput#readUtf8Limited(long, Appendable, int) + * @see RandomDataInput#readUtf8Limited(long, int) + */ + default long writeUtf8Limited(long offset, CharSequence cs, int maxUtf8Len) + throws BufferOverflowException { + return BytesInternal.writeUtf8(this, offset, cs, maxUtf8Len); + } + +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ReadBytesMarshallable.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ReadBytesMarshallable.java new file mode 100644 index 0000000..c1994cf --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ReadBytesMarshallable.java @@ -0,0 +1,37 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.annotation.DontChain; +import net.openhft.chronicle.core.io.IORuntimeException; + +/** + * Read data directly as Bytes. + */ +@FunctionalInterface +@DontChain +public interface ReadBytesMarshallable extends CommonMarshallable { + /** + * Bytes to read. This can be used as a method to implement or as a lambda. + * + * @param bytes to read. + */ + @SuppressWarnings("rawtypes") + void readMarshallable(BytesIn bytes) throws IORuntimeException; +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ReadOnlyMappedBytesStore.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ReadOnlyMappedBytesStore.java new file mode 100644 index 0000000..a081668 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ReadOnlyMappedBytesStore.java @@ -0,0 +1,183 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.io.ReferenceOwner; +import org.jetbrains.annotations.NotNull; + +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; +import java.nio.ByteBuffer; + +/** + * BytesStore to wrap memory mapped data. + */ +public class ReadOnlyMappedBytesStore extends MappedBytesStore { + + public ReadOnlyMappedBytesStore(ReferenceOwner owner, MappedFile mappedFile, long start, long address, long capacity, long safeCapacity) + throws IllegalStateException { + super(owner, mappedFile, start, address, capacity, safeCapacity); + } + + + @Override + public NativeBytesStore zeroOut(long start, long end) { + return this; + } + + @Override + public boolean compareAndSwapInt(long offset, int expected, int value) { + throw checkReadOnly(); + } + + @Override + public boolean compareAndSwapLong(long offset, long expected, long value) { + throw checkReadOnly(); + } + + + @Override + public NativeBytesStore writeByte(long offset, byte i8) { + throw checkReadOnly(); + } + + + @Override + public NativeBytesStore writeShort(long offset, short i16) { + throw checkReadOnly(); + } + + + @Override + public NativeBytesStore writeInt(long offset, int i32) { + throw checkReadOnly(); + } + + + @Override + public NativeBytesStore writeLong(long offset, long i64) { + throw checkReadOnly(); + } + + + @Override + public NativeBytesStore writeOrderedLong(long offset, long i) { + throw checkReadOnly(); + } + + + @Override + public NativeBytesStore writeFloat(long offset, float f) { + throw checkReadOnly(); + } + + + @Override + public NativeBytesStore writeDouble(long offset, double d) { + throw checkReadOnly(); + } + + + @Override + public NativeBytesStore writeVolatileByte(long offset, byte i8) { + throw checkReadOnly(); + } + + + @Override + public NativeBytesStore writeVolatileShort(long offset, short i16) { + throw checkReadOnly(); + } + + + @Override + public NativeBytesStore writeVolatileInt(long offset, int i32) { + throw checkReadOnly(); + } + + + @Override + public NativeBytesStore writeVolatileLong(long offset, long i64) { + throw checkReadOnly(); + } + + + @Override + public NativeBytesStore write(long offsetInRDO, byte[] bytes, int offset, int length) { + throw checkReadOnly(); + } + + @Override + public void write(long offsetInRDO, ByteBuffer bytes, int offset, int length) { + throw checkReadOnly(); + } + + + @Override + public NativeBytesStore write(long writeOffset, RandomDataInput bytes, long readOffset, long length) + throws BufferOverflowException, BufferUnderflowException { + throw checkReadOnly(); + } + + @Override + public void write0(long offsetInRDO, RandomDataInput bytes, long offset, long length) { + throw checkReadOnly(); + } + + @Override + public void nativeWrite(long address, long position, long size) { + throw checkReadOnly(); + } + + @Override + void write8bit(long position, char[] chars, int offset, int length) { + throw checkReadOnly(); + } + + @Override + public long appendUTF(long pos, char[] chars, int offset, int length) { + throw checkReadOnly(); + } + + @Override + public long appendUtf8(long pos, char[] chars, int offset, int length) { + throw checkReadOnly(); + } + + + @Override + public VanillaBytes bytesForWrite() throws IllegalStateException { + throw checkReadOnly(); + } + + + @Override + public NativeBytesStore writeOrderedInt(long offset, int i) { + throw checkReadOnly(); + } + + private IllegalStateException checkReadOnly() throws IllegalStateException { + throw new IllegalStateException("Read Only"); + } + + @Override + public boolean readWrite() { + return false; + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ReleasedBytesStore.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ReleasedBytesStore.java new file mode 100644 index 0000000..95fdea0 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ReleasedBytesStore.java @@ -0,0 +1,319 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.io.ReferenceOwner; +import org.jetbrains.annotations.NotNull; + +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; +import java.nio.ByteBuffer; + +/** + * applied after a Bytes has been released and cannot be used. + * + * @see NoBytesStore + */ +@SuppressWarnings({"rawtypes", "unchecked"}) +public enum ReleasedBytesStore implements BytesStore { + RELEASED_BYTES_STORE; + + + public static > BytesStore releasedBytesStore() { + return RELEASED_BYTES_STORE; + } + + @Override + public void reserve(ReferenceOwner id) throws IllegalStateException { + throw newIllegalStateException(); + } + + @Override + public void release(ReferenceOwner id) throws IllegalStateException { + throw newIllegalStateException(); + } + + @Override + public int refCount() { + return 0; + } + + @Override + public boolean tryReserve(ReferenceOwner id) throws IllegalStateException { + return false; + } + + @Override + public boolean reservedBy(ReferenceOwner owner) { + return false; + } + + @Override + public void releaseLast(ReferenceOwner id) throws IllegalStateException { + throw newIllegalStateException(); + } + + + @Override + public RandomDataOutput writeByte(long offset, byte i8) { + throw newIllegalStateException(); + } + + + private IllegalStateException newIllegalStateException() { + return new IllegalStateException("released"); + } + + + @Override + public RandomDataOutput writeShort(long offset, short i) { + throw newIllegalStateException(); + } + + + @Override + public RandomDataOutput writeInt(long offset, int i) { + throw newIllegalStateException(); + } + + + @Override + public RandomDataOutput writeOrderedInt(long offset, int i) { + throw newIllegalStateException(); + } + + + @Override + public RandomDataOutput writeLong(long offset, long i) { + throw newIllegalStateException(); + } + + + @Override + public RandomDataOutput writeOrderedLong(long offset, long i) { + throw newIllegalStateException(); + } + + + @Override + public RandomDataOutput writeFloat(long offset, float d) { + throw newIllegalStateException(); + } + + + @Override + public RandomDataOutput writeDouble(long offset, double d) { + throw newIllegalStateException(); + } + + + @Override + public RandomDataOutput writeVolatileByte(long offset, byte i8) { + throw newIllegalStateException(); + } + + + @Override + public RandomDataOutput writeVolatileShort(long offset, short i16) { + throw newIllegalStateException(); + } + + + @Override + public RandomDataOutput writeVolatileInt(long offset, int i32) { + throw newIllegalStateException(); + } + + + @Override + public RandomDataOutput writeVolatileLong(long offset, long i64) { + throw newIllegalStateException(); + } + + + @Override + public RandomDataOutput write(long offsetInRDO, byte[] bytes, int offset, int length) { + if (length != 0) + throw newIllegalStateException(); + return this; + } + + @Override + public void write(long offsetInRDO, ByteBuffer bytes, int offset, int length) { + throw newIllegalStateException(); + } + + + @Override + public RandomDataOutput write(long writeOffset, RandomDataInput bytes, long readOffset, long length) { + throw newIllegalStateException(); + } + + @Override + public byte readByte(long offset) { + throw newIllegalStateException(); + } + + @Override + public int peekUnsignedByte(long offset) { + return -1; + } + + @Override + public short readShort(long offset) { + throw newIllegalStateException(); + } + + @Override + public int readInt(long offset) { + throw newIllegalStateException(); + } + + @Override + public long readLong(long offset) { + throw newIllegalStateException(); + } + + @Override + public float readFloat(long offset) { + throw newIllegalStateException(); + } + + @Override + public double readDouble(long offset) { + throw newIllegalStateException(); + } + + @Override + public byte readVolatileByte(long offset) throws BufferUnderflowException { + throw newIllegalStateException(); + } + + @Override + public short readVolatileShort(long offset) throws BufferUnderflowException { + throw newIllegalStateException(); + } + + @Override + public int readVolatileInt(long offset) throws BufferUnderflowException { + throw newIllegalStateException(); + } + + @Override + public long readVolatileLong(long offset) throws BufferUnderflowException { + throw newIllegalStateException(); + } + + @Override + public boolean isDirectMemory() { + return false; + } + + + @Override + public BytesStore copy() { + return this; + } + + @Override + public long capacity() { + return 0; + } + + @Override + public Void underlyingObject() { + return null; + } + + @Override + public boolean inside(long offset) { + return false; + } + + @Override + public boolean inside(long offset, long buffer) { + return false; + } + + @Override + public long copyTo( BytesStore store) { + throw newIllegalStateException(); + } + + @Override + public void nativeWrite(long address, long position, long size) { + throw newIllegalStateException(); + } + + @Override + public void nativeRead(long position, long address, long size) { + throw newIllegalStateException(); + } + + @Override + public boolean compareAndSwapInt(long offset, int expected, int value) { + throw newIllegalStateException(); + } + + @Override + public void testAndSetInt(long offset, int expected, int value) { + throw newIllegalStateException(); + } + + @Override + public boolean compareAndSwapLong(long offset, long expected, long value) { + throw newIllegalStateException(); + } + + @Override + public boolean equalBytes( BytesStore bytesStore, long length) { + throw newIllegalStateException(); + } + + @Override + public void move(long from, long to, long length) { + throw newIllegalStateException(); + } + + @Override + public long addressForRead(long offset) throws BufferUnderflowException { + throw newIllegalStateException(); + } + + @Override + public long addressForWrite(long offset) throws BufferOverflowException { + throw newIllegalStateException(); + } + + @Override + public long addressForWritePosition() throws UnsupportedOperationException, BufferOverflowException { + throw newIllegalStateException(); + } + + + @Override + public Bytes bytesForWrite() { + throw newIllegalStateException(); + } + + @Override + public boolean sharedMemory() { + return false; + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/RingBufferReader.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/RingBufferReader.java new file mode 100644 index 0000000..af457ae --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/RingBufferReader.java @@ -0,0 +1,69 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.io.Closeable; + +public interface RingBufferReader extends RingBufferReaderStats, Closeable { + long UNKNOWN_INDEX = -1; + + boolean isEmpty(); + + boolean isStopped(); + + /** + * stop the reader. After being stopped, the reader will not block writers. + * After being stopped the reader can be re-opened + */ + void stop(); + + /** + * the readPosition and readLimit will be adjusted so that the client can read the data + * + * @param bytes who's byteStore must be the ring buffer, + * @return nextReadPosition which should be passed to {@link RingBufferReader#afterRead(long)} + */ + @SuppressWarnings("rawtypes") + long beforeRead(Bytes bytes); + + void afterRead(long next); + + void afterRead(long next, long payloadStart, long underlyingIndex); + + long underlyingIndex(); + + /** + * Convenience method calls both {@link #beforeRead(Bytes)} and {@link #afterRead(long)} + * + * @param bytes + * @return whether read succeeded + */ + @SuppressWarnings("rawtypes") + boolean read(BytesOut bytes); + + /** + * @return the byteStore which backs the ring buffer + */ + @SuppressWarnings("rawtypes") + BytesStore byteStore(); + + /** + * Take reader to just past the end of the RB + */ + void toEnd(); +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/RingBufferReaderStats.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/RingBufferReaderStats.java new file mode 100644 index 0000000..1229741 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/RingBufferReaderStats.java @@ -0,0 +1,27 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes; + +public interface RingBufferReaderStats { + + long getAndClearReadCount(); + + long getAndClearMissedReadCount(); + + long behind(); +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StopCharTester.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StopCharTester.java new file mode 100644 index 0000000..b5a0719 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StopCharTester.java @@ -0,0 +1,42 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.bytes.util.EscapingStopCharTester; +import org.jetbrains.annotations.NotNull; + +@FunctionalInterface +public interface StopCharTester { + /** + * Detect which byte stops the string to be parsed + *

+ *

This should be changed to support char instead. + *

+ *

Note: for safety reasons, you should stop on a 0 byte or throw an IllegalStateException. + * + * @param ch to test, 0 should return true or throw an exception. + * @return if this byte is a stop character. + */ + boolean isStopChar(int ch); + + + default StopCharTester escaping() { + return new EscapingStopCharTester(this); + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StopCharTesters.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StopCharTesters.java new file mode 100644 index 0000000..c59fa4f --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StopCharTesters.java @@ -0,0 +1,107 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +public enum StopCharTesters implements StopCharTester { + COMMA_STOP { + @Override + public boolean isStopChar(int ch) { + return ch < ' ' || ch == ','; + } + }, + CURLY_STOP { + @Override + public boolean isStopChar(int ch) { + return ch < ' ' || ch == '}'; + } + }, + COMMA_SPACE_STOP { + @Override + public boolean isStopChar(int ch) { + return ch <= ' ' || ch == ','; + } + }, + CONTROL_STOP { + @Override + public boolean isStopChar(int ch) { + return ch < ' '; + } + }, + SPACE_STOP { + @Override + public boolean isStopChar(int ch) { + return Character.isWhitespace(ch) || ch == 0; + } + }, + QUOTES { + @Override + public boolean isStopChar(int ch) { + return ch == '"' || ch <= 0; + } + }, + SINGLE_QUOTES { + @Override + public boolean isStopChar(int ch) { + return ch == '\'' || ch <= 0; + } + }, + EQUALS { + @Override + public boolean isStopChar(int ch) { + return ch == '=' || ch <= 0; + } + }, + NUMBER_END { + @Override + public boolean isStopChar(int ch) { + switch (ch) { + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + case '+': + case '-': + case '.': + case 'E': + case 'e': + return false; + default: + return true; + } + } + }, + NON_ALPHA_DIGIT { + @Override + public boolean isStopChar(int ch) { + return ch < '0' || !(Character.isAlphabetic(ch) || Character.isDigit(ch)); + } + }, + ALL { + @Override + public boolean isStopChar(int ch) { + return ch < 0; + } + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StopCharsTester.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StopCharsTester.java new file mode 100644 index 0000000..682d8fd --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StopCharsTester.java @@ -0,0 +1,43 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.bytes.util.EscapingStopCharsTester; +import org.jetbrains.annotations.NotNull; + +@FunctionalInterface +public interface StopCharsTester { + /** + * Detect which byte or bytes stops the string to be parsed + *

+ *

This should be changed to support char instead. + *

+ *

Note: for safety reasons, you should stop on a 0 byte or throw an IllegalStateException. + * + * @param ch to test, 0 should return true or throw an exception. + * @param ch2 to test, 0 should return true or throw an exception. + * @return if this byte is a stop character. + */ + boolean isStopChar(int ch, int ch2); + + + default StopCharsTester escaping() { + return new EscapingStopCharsTester(this); + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StreamingCommon.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StreamingCommon.java new file mode 100644 index 0000000..334e4e9 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StreamingCommon.java @@ -0,0 +1,32 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import org.jetbrains.annotations.NotNull; + +public interface StreamingCommon> extends RandomCommon { + + /** + * Set the readPosition= writePosition = start, writeLimit = capacity + * + * @return this + */ + + S clear(); +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StreamingDataInput.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StreamingDataInput.java new file mode 100644 index 0000000..c406657 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StreamingDataInput.java @@ -0,0 +1,438 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.Jvm; +import net.openhft.chronicle.core.Maths; +import net.openhft.chronicle.core.OS; +import net.openhft.chronicle.core.UnsafeMemory; +import net.openhft.chronicle.core.io.IORuntimeException; +import net.openhft.chronicle.core.util.Histogram; +import net.openhft.chronicle.core.util.ThrowingConsumer; +import net.openhft.chronicle.core.util.ThrowingConsumerNonCapturing; +import org.jetbrains.annotations.NotNull; +import org.jetbrains.annotations.Nullable; + +import java.io.IOException; +import java.io.InputStream; +import java.io.OutputStream; +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; +import java.nio.ByteBuffer; + +/** + * This data input has a a position() and a limit() + */ +@SuppressWarnings({"rawtypes", "unchecked"}) +public interface StreamingDataInput> extends StreamingCommon { + + S readPosition(long position) throws BufferUnderflowException; + + + default S readPositionUnlimited(long position) throws BufferUnderflowException { + return readLimitToCapacity().readPosition(position); + } + + + default S readPositionRemaining(long position, long remaining) throws BufferUnderflowException { + readLimit(position + remaining); + return readPosition(position); + } + + + S readLimit(long limit) throws BufferUnderflowException; + + default S readLimitToCapacity() throws BufferUnderflowException { + return readLimit(capacity()); + } + + /** + * Skip a number of bytes by moving the readPosition. Must be less than or equal to the readLimit. + * + * @param bytesToSkip bytes to skip. + * @return this + * @throws BufferUnderflowException if the offset is outside the limits of the Bytes + */ + + S readSkip(long bytesToSkip) throws BufferUnderflowException; + + /** + * Read skip 1 when you are sure this is safe. Use at your own risk when you find a performance problem. + */ + void uncheckedReadSkipOne(); + + /** + * Read skip -1 when you are sure this is safe. Use at your own risk when you find a performance problem. + */ + void uncheckedReadSkipBackOne(); + + /** + * Perform a set of actions with a temporary bounds mode. + */ + default void readWithLength0(long length, ThrowingConsumerNonCapturing bytesConsumer, StringBuilder sb, BytesOut toBytes) + throws BufferUnderflowException, IORuntimeException { + if (length > readRemaining()) + throw new BufferUnderflowException(); + long limit0 = readLimit(); + long limit = readPosition() + length; + try { + readLimit(limit); + bytesConsumer.accept((S) this, sb, toBytes); + } finally { + readLimit(limit0); + readPosition(limit); + } + } + + /** + * Perform a set of actions with a temporary bounds mode. + */ + default void readWithLength(long length, ThrowingConsumer bytesConsumer) + throws BufferUnderflowException, IORuntimeException { + if (length > readRemaining()) + throw new BufferUnderflowException(); + long limit0 = readLimit(); + long limit = readPosition() + length; + try { + readLimit(limit); + bytesConsumer.accept((S) this); + } finally { + readLimit(limit0); + readPosition(limit); + } + } + + + default InputStream inputStream() { + return new StreamingInputStream(this); + } + + default long readStopBit() throws IORuntimeException { + return BytesInternal.readStopBit(this); + } + + default char readStopBitChar() throws IORuntimeException { + return BytesInternal.readStopBitChar(this); + } + + default double readStopBitDouble() { + return BytesInternal.readStopBitDouble(this); + } + + default double readStopBitDecimal() throws BufferOverflowException { + long value = readStopBit(); + int scale = (int) (Math.abs(value) % 10); + value /= 10; + return (double) value / Maths.tens(scale); + } + + default boolean readBoolean() { + byte b = readByte(); + return BytesUtil.byteToBoolean(b); + } + + byte readByte(); + + default byte rawReadByte() { + return readByte(); + } + + default char readChar() { + return readStopBitChar(); + } + + /** + * @return the next unsigned 8 bit value or -1; + */ + int readUnsignedByte(); + + /** + * @return the next unsigned 8 bit value or -1; + */ + int uncheckedReadUnsignedByte(); + + short readShort() throws BufferUnderflowException; + + default int readUnsignedShort() throws BufferUnderflowException { + return readShort() & 0xFFFF; + } + + default int readInt24() throws BufferUnderflowException { + return readUnsignedShort() | (readUnsignedByte() << 24 >> 8); + } + + default int readUnsignedInt24() throws BufferUnderflowException { + return readUnsignedShort() | (readUnsignedByte() << 16); + } + + int readInt() throws BufferUnderflowException; + + default int rawReadInt() { + return readInt(); + } + + default long readUnsignedInt() + throws BufferUnderflowException { + return readInt() & 0xFFFFFFFFL; + } + + long readLong() throws BufferUnderflowException; + + default long rawReadLong() { + return readLong(); + } + + /** + * @return a long using the bytes remaining + */ + default long readIncompleteLong() { + long left = readRemaining(); + try { + if (left >= 8) + return readLong(); + if (left == 4) + return readInt(); + long l = 0; + for (int i = 0, remaining = (int) left; i < remaining; i++) { + l |= (long) readUnsignedByte() << (i * 8); + } + return l; + + } catch (BufferUnderflowException e) { + throw new AssertionError(e); + } + } + + float readFloat() throws BufferUnderflowException; + + double readDouble() throws BufferUnderflowException; + + /** + * The same as readUTF() except the length is stop bit encoded. This saves one byte for strings shorter than 128 + * chars. null values are also supported + * + * @return a Unicode string or null if writeUtf8(null) was called + */ + + default String readUtf8() + throws BufferUnderflowException, IORuntimeException, IllegalArgumentException { + return BytesInternal.readUtf8(this); + } + + + @Deprecated(/* to be removed in x.22 */) + default String readUTFΔ() + throws IORuntimeException, BufferUnderflowException, IllegalArgumentException { + return BytesInternal.readUtf8(this); + } + + + default String read8bit() throws IORuntimeException, BufferUnderflowException { + return BytesInternal.read8bit(this); + } + + /** + * The same as readUtf8() except the chars are copied to a truncated StringBuilder. + * + * @param sb to copy chars to + * @return true if there was a String, or false if it was null + */ + default boolean readUtf8( ACS sb) + throws IORuntimeException, IllegalArgumentException, BufferUnderflowException { + AppendableUtil.setLength(sb, 0); + if (readRemaining() <= 0) + // TODO throw BufferUnderflowException here? please review + return false; + long len0 = readStopBit(); + if (len0 == -1) + return false; + int len = Maths.toUInt31(len0); + if (len > 0) + BytesInternal.parseUtf8(this, sb, true, len); + return true; + } + + @Deprecated(/* to be removed in x.22 */) + default boolean readUTFΔ( ACS sb) + throws IORuntimeException, IllegalArgumentException, BufferUnderflowException { + return readUtf8(sb); + } + + default boolean read8bit( Bytes b) + throws BufferUnderflowException, IllegalStateException, BufferOverflowException { + b.clear(); + if (readRemaining() <= 0) + return false; + long len0 = this.readStopBit(); + if (len0 == -1) + return false; + int len = Maths.toUInt31(len0); + b.write((BytesStore) this, readPosition(), len); + readSkip(len); + return true; + } + + default boolean read8bit( ACS sb) + throws IORuntimeException, IllegalArgumentException, BufferUnderflowException { + AppendableUtil.setLength(sb, 0); + long len0 = BytesInternal.readStopBit(this); + if (len0 == -1) + return false; + int len = Maths.toUInt31(len0); + try { + AppendableUtil.parse8bit(this, sb, len); + } catch (IOException e) { + throw new IORuntimeException(e); + } + return true; + } + + default boolean read8bit( StringBuilder sb) + throws IORuntimeException, BufferUnderflowException { + sb.setLength(0); + long len0 = BytesInternal.readStopBit(this); + if (len0 == -1) + return false; + int len = Maths.toUInt31(len0); + try { + AppendableUtil.parse8bit(this, sb, len); + } catch (IOException e) { + throw new IORuntimeException(e); + } + return true; + } + + default int read( byte[] bytes) { + return read(bytes, 0, bytes.length); + } + + default int read( byte[] bytes, int off, int len) { + long remaining = readRemaining(); + if (remaining <= 0) + return -1; + int len2 = (int) Math.min(len, remaining); + int i = 0; + for (; i < len2 - 7; i += 8) + UnsafeMemory.unsafePutLong(bytes, i + off, rawReadLong()); + for (; i < len2; i++) + bytes[off + i] = rawReadByte(); + return len2; + } + + default int read( char[] bytes, int off, int len) { + long remaining = readRemaining(); + if (remaining <= 0) + return -1; + int len2 = (int) Math.min(len, remaining); + for (int i = 0; i < len2; i++) + bytes[off + i] = (char) readUnsignedByte(); + return len2; + } + + default void read( ByteBuffer buffer) { + for (int i = (int) Math.min(readRemaining(), buffer.remaining()); i > 0; i--) + buffer.put(readByte()); + } + + default void read( Bytes bytes, int length) { + int len2 = (int) Math.min(length, readRemaining()); + int i = 0; + for (; i < len2 - 7; i += 8) + bytes.rawWriteLong(rawReadLong()); + for (; i < len2; i++) + bytes.rawWriteByte(rawReadByte()); + } + + default void unsafeReadObject(Object o, int length) { + unsafeReadObject(o, (o.getClass().isArray() ? 4 : 0) + Jvm.objectHeaderSize(), length); + } + + default void unsafeReadObject(Object o, int offset, int length) { + assert BytesUtil.isTriviallyCopyable(o.getClass(), offset, length); + if (readRemaining() < length) + throw new BufferUnderflowException(); + int i = 0; + for (; i < length - 7; i += 8) + UnsafeMemory.unsafePutLong(o, offset + i, rawReadLong()); + for (; i < length; i++) + UnsafeMemory.unsafePutByte(o, offset + i, rawReadByte()); + } + + int readVolatileInt() throws BufferUnderflowException; + + long readVolatileLong() throws BufferUnderflowException; + + int peekUnsignedByte(); + + + + default > E readEnum( Class eClass) + throws IORuntimeException, BufferUnderflowException { + return BytesInternal.readEnum(this, eClass); + } + + @Deprecated(/* to be removed in x.22 */) + default void parseUTF(Appendable sb, int length) + throws IllegalArgumentException, BufferUnderflowException, UTFDataFormatRuntimeException { + parseUtf8(sb, length); + } + + default void parseUtf8(Appendable sb, int encodedLength) + throws IllegalArgumentException, BufferUnderflowException, UTFDataFormatRuntimeException { + parseUtf8(sb, true, encodedLength); + } + + default void parseUtf8(Appendable sb, boolean utf, int length) + throws IllegalArgumentException, BufferUnderflowException, UTFDataFormatRuntimeException { + AppendableUtil.setLength(sb, 0); + BytesInternal.parseUtf8(this, sb, utf, length); + } + + default long parseHexLong() { + return BytesInternal.parseHexLong(this); + } + + void copyTo(OutputStream out) throws IOException; + + long copyTo(BytesStore to); + + default void readHistogram( Histogram histogram) { + BytesInternal.readHistogram(this, histogram); + } + + default void readWithLength(Bytes bytes) { + bytes.clear(); + int length = Maths.toUInt31(readStopBit()); + int i; + for (i = 0; i < length - 7; i++) + bytes.writeLong(readLong()); + for (; i < length; i++) + bytes.writeByte(readByte()); + } + + /** + * When there is no more data to read, return zero, false and empty string. + * + * @param lenient if true, return nothing rather than error. + */ + void lenient(boolean lenient); + + boolean lenient(); + +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StreamingDataOutput.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StreamingDataOutput.java new file mode 100644 index 0000000..ef924a8 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StreamingDataOutput.java @@ -0,0 +1,562 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.Jvm; +import net.openhft.chronicle.core.Maths; +import net.openhft.chronicle.core.UnsafeMemory; +import net.openhft.chronicle.core.annotation.Java9; +import net.openhft.chronicle.core.util.Histogram; + +import java.io.IOException; +import java.io.InputStream; +import java.io.OutputStream; +import java.math.BigDecimal; +import java.math.BigInteger; +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; +import java.nio.ByteBuffer; + +/** + * Position based access. Once data has been read, the position() moves. + *

The use of this instance is single threaded, though the use of the data + */ +@SuppressWarnings({"rawtypes", "unchecked"}) +public interface StreamingDataOutput> extends StreamingCommon { + int JAVA9_STRING_CODER_LATIN = 0; + int JAVA9_STRING_CODER_UTF16 = 1; + + S writePosition(long position) throws BufferOverflowException; + + S writeLimit(long limit) throws BufferOverflowException; + + /** + * Skip a number of bytes by moving the writePosition. Must be less than or equal to the writeLimit. + * + * @param bytesToSkip bytes to skip. + * @return this + * @throws BufferOverflowException if the offset is outside the limits of the Bytes + */ + S writeSkip(long bytesToSkip) throws BufferOverflowException; + + default S alignBy(int width) { + return writeSkip((-writePosition()) & (width - 1)); + } + + /** + * @return Bytes as an OutputStream + */ + + default OutputStream outputStream() { + return new StreamingOutputStream(this); + } + + /** + * Write a stop bit encoded long + * + * @param x long to write + * @return this. + */ + + default S writeStopBit(long x) throws BufferOverflowException { + BytesInternal.writeStopBit(this, x); + return (S) this; + } + + + default S writeStopBit(char x) throws BufferOverflowException { + BytesInternal.writeStopBit(this, x); + return (S) this; + } + + + default S writeStopBit(double d) throws BufferOverflowException { + BytesInternal.writeStopBit(this, d); + return (S) this; + } + + + default S writeStopBitDecimal(double d) throws BufferOverflowException { + boolean negative = d < 0; + double ad = Math.abs(d); + long value; + int scale = 0; + if ((long) ad == ad) { + value = (long) ad * 10; + + } else { + double factor = 1; + while (scale < 9) { + double v = ad * factor; + if (v >= 1e14 || (long) v == v) + break; + factor *= 10; + scale++; + } + value = Math.round(ad * factor); + while (scale > 0 && value % 10 == 0) { + value /= 10; + scale--; + } + value = value * 10 + scale; + } + if (negative) + value = -value; + BytesInternal.writeStopBit(this, value); + return (S) this; + } + + /** + * Write the same encoding as writeUTF with the following changes. 1) The length is stop bit encoded + * i.e. one byte longer for short strings, but is not limited in length. 2) The string can be null. + * + * @param cs the string value to be written. Can be null. + * @throws BufferOverflowException if there is not enough space left + */ + + default S writeUtf8(CharSequence cs) + throws BufferOverflowException { + BytesInternal.writeUtf8(this, cs); + return (S) this; + } + + + default S writeUtf8(String s) + throws BufferOverflowException { + BytesInternal.writeUtf8(this, s); + return (S) this; + } + + + @Deprecated(/* to be removed in x.22 */) + default S writeUTFΔ(CharSequence cs) throws BufferOverflowException { + return writeUtf8(cs); + } + + + default S write8bit(CharSequence cs) + throws BufferOverflowException { + if (cs == null) + return writeStopBit(-1); + + if (cs instanceof BytesStore) + return write8bit((BytesStore) cs); + + if (cs instanceof String) + return write8bit((String) cs); + + return write8bit(cs, 0, cs.length()); + } + + + default S write8bit( CharSequence s, int start, int length) + throws BufferOverflowException, IllegalArgumentException, IndexOutOfBoundsException { + writeStopBit(length); + for (int i = 0; i < length; i++) { + char c = s.charAt(i + start); + rawWriteByte((byte) Maths.toUInt8((int) c)); + } + return (S) this; + } + + + default S write(CharSequence cs) + throws BufferOverflowException, BufferUnderflowException, IllegalArgumentException { + if (cs instanceof BytesStore) { + return write((BytesStore) cs); + } + return write(cs, 0, cs.length()); + } + + + default S write( CharSequence s, int start, int length) + throws BufferOverflowException, IllegalArgumentException, IndexOutOfBoundsException { + for (int i = 0; i < length; i++) { + char c = s.charAt(i + start); + appendUtf8(c); + } + return (S) this; + } + + + default S write8bit(String s) + throws BufferOverflowException { + if (s == null) + writeStopBit(-1); + else + write8bit(s, 0, (int) Math.min(writeRemaining(), s.length())); + return (S) this; + } + + + default S write8bit(BytesStore bs) + throws BufferOverflowException { + if (bs == null) { + writeStopBit(-1); + } else { + long offset = bs.readPosition(); + long readRemaining = Math.min(writeRemaining(), bs.readLimit() - offset); + writeStopBit(readRemaining); + write(bs, offset, readRemaining); + } + return (S) this; + } + + + S writeByte(byte i8) throws BufferOverflowException; + + default S rawWriteByte(byte i8) throws BufferOverflowException { + return writeByte(i8); + } + + + default S writeUnsignedByte(int i) + throws BufferOverflowException, IllegalArgumentException { + return writeByte((byte) Maths.toUInt8(i)); + } + + + default S writeChar(char ch) { + return writeStopBit(ch); + } + + + S writeShort(short i16) throws BufferOverflowException; + + + default S writeUnsignedShort(int u16) + throws BufferOverflowException, IllegalArgumentException { + return writeShort((short) Maths.toUInt16(u16)); + } + + + default S writeInt24(int i) throws BufferOverflowException { + writeUnsignedShort((short) i); + return writeUnsignedByte((i >>> 16) & 0xFF); + } + + + default S writeUnsignedInt24(int i) throws BufferOverflowException { + writeUnsignedShort((short) i); + return writeUnsignedByte(i >>> 16); + } + + + S writeInt(int i) throws BufferOverflowException; + + default S rawWriteInt(int i) throws BufferOverflowException { + return writeInt(i); + } + + + S writeIntAdv(int i, int advance) throws BufferOverflowException; + + + default S writeUnsignedInt(long i) + throws BufferOverflowException, IllegalArgumentException { + return writeInt((int) Maths.toUInt32(i)); + } + + /** + * Write a long + */ + + S writeLong(long i64) throws BufferOverflowException; + + /** + * Write a long without a bounds check + */ + default S rawWriteLong(long i) throws BufferOverflowException { + return writeLong(i); + } + + + S writeLongAdv(long i64, int advance) throws BufferOverflowException; + + + S writeFloat(float f) throws BufferOverflowException; + + + S writeDouble(double d) throws BufferOverflowException; + + + S writeDoubleAndInt(double d, int i) throws BufferOverflowException; + + /** + * Write all data or fail. + */ + + default S write( RandomDataInput bytes) { + assert bytes != this : "you should not write to yourself !"; + + try { + return write(bytes, bytes.readPosition(), Math.min(writeRemaining(), bytes.readRemaining())); + } catch (BufferOverflowException | BufferUnderflowException e) { + throw new AssertionError(e); + } + } + + /** + * Writes the passed BytesStore + * + * @param bytes to write + * @return this + */ + default S write( BytesStore bytes) { + assert bytes != this : "you should not write to yourself !"; + + try { + return write(bytes, bytes.readPosition(), Math.min(writeRemaining(), bytes.readRemaining())); + } catch (BufferOverflowException | BufferUnderflowException e) { + throw new AssertionError(e); + } + } + + /** + * @return capacity without resize + */ + long realCapacity(); + + /** + * @return writeRemaining with resize + */ + long realWriteRemaining(); + + default boolean canWriteDirect(long count) { + return false; + } + + + default S writeSome( Bytes bytes) { + try { + long length = Math.min(bytes.readRemaining(), writeRemaining()); + if (length + writePosition() >= 1 << 20) + length = Math.min(bytes.readRemaining(), realCapacity() - writePosition()); + write(bytes, bytes.readPosition(), length); + if (length == bytes.readRemaining()) { + bytes.clear(); + } else { + bytes.readSkip(length); + if (bytes.writePosition() > bytes.realCapacity() / 2) + bytes.compact(); + } + return (S) this; + } catch (BufferOverflowException | BufferUnderflowException | IllegalArgumentException e) { + throw new AssertionError(e); + } + } + + /** + * Write all data or fail. + */ + + default S write( RandomDataInput bytes, long offset, long length) + throws BufferOverflowException, BufferUnderflowException { + BytesInternal.writeFully(bytes, offset, length, this); + return (S) this; + } + + /** + * Write all data or fail. + */ + + default S write( BytesStore bytes, long offset, long + length) + throws BufferOverflowException, BufferUnderflowException { + if (length + writePosition() > capacity()) + throw new IllegalArgumentException("Cannot write " + length + " bytes as position is " + writePosition() + " and capacity is " + capacity()); + BytesInternal.writeFully(bytes, offset, length, this); + return (S) this; + } + + + default S write( byte[] bytes) throws BufferOverflowException { + write(bytes, 0, bytes.length); + return (S) this; + } + + /** + * Write all data or fail. + */ + + S write(byte[] bytes, int offset, int length) throws BufferOverflowException; + + default S unsafeWriteObject(Object o, int length) { + return unsafeWriteObject(o, (o.getClass().isArray() ? 4 : 0) + Jvm.objectHeaderSize(), length); + } + + default S unsafeWriteObject(Object o, int offset, int length) { + int i = 0; + for (; i < length - 7; i += 8) + writeLong(UnsafeMemory.unsafeGetLong(o, offset + i)); + for (; i < length; i++) + writeByte(UnsafeMemory.unsafeGetByte(o, offset + i)); + return (S) this; + } + + + S writeSome(ByteBuffer buffer) throws BufferOverflowException; + + + default S writeBoolean(boolean flag) throws BufferOverflowException { + return writeByte(flag ? (byte) 'Y' : (byte) 'N'); + } + + + S writeOrderedInt(int i) throws BufferOverflowException; + + + S writeOrderedLong(long i) throws BufferOverflowException; + + default > S writeEnum( E e) + throws BufferOverflowException { + return write8bit(e.name()); + } + + + default S appendUtf8( CharSequence cs) + throws BufferOverflowException { + return appendUtf8(cs, 0, cs.length()); + } + + + default S appendUtf8(int codepoint) throws BufferOverflowException { + BytesInternal.appendUtf8Char(this, codepoint); + return (S) this; + } + + + default S appendUtf8(char[] chars, int offset, int length) + throws BufferOverflowException, IllegalArgumentException { + int i; + ascii: + { + for (i = 0; i < length; i++) { + char c = chars[offset + i]; + if (c > 0x007F) + break ascii; + writeByte((byte) c); + } + return (S) this; + } + for (; i < length; i++) { + char c = chars[offset + i]; + BytesInternal.appendUtf8Char(this, c); + } + return (S) this; + } + + + default S appendUtf8( CharSequence cs, int offset, int length) + throws BufferOverflowException, IllegalArgumentException { + BytesInternal.appendUtf8(this, cs, offset, length); + return (S) this; + } + + // length is number of characters (not bytes) + @Java9 + + default S appendUtf8(byte[] bytes, int offset, int length, byte coder) + throws BufferOverflowException, IllegalArgumentException { + if (coder == JAVA9_STRING_CODER_LATIN) { + for (int i = 0; i < length; i++) { + byte b = bytes[offset + i]; + int b2 = (b & 0xFF); + BytesInternal.appendUtf8Char(this, b2); + } + } else { + assert coder == JAVA9_STRING_CODER_UTF16; + for (int i = 0; i < 2 * length; i += 2) { + byte b1 = bytes[2 * offset + i]; + byte b2 = bytes[2 * offset + i + 1]; + + int uBE = ((b2 & 0xFF) << 8) | b1 & 0xFF; + BytesInternal.appendUtf8Char(this, uBE); + } + } + return (S) this; + } + + @Java9 + + default S appendUtf8(byte[] bytes, int offset, int length) + throws BufferOverflowException, IllegalArgumentException { + for (int i = 0; i < length; i++) { + int b = bytes[offset + i] & 0xFF; // unsigned byte + + if (b >= 0xF0) { + int b2 = bytes[offset + i + 1] & 0xFF; // unsigned byte + int b3 = bytes[offset + i + 2] & 0xFF; // unsigned byte + int b4 = bytes[offset + i + 3] & 0xFF; // unsigned byte + this.writeByte((byte) b4); + this.writeByte((byte) b3); + this.writeByte((byte) b2); + this.writeByte((byte) b); + + i += 3; + } else if (b >= 0xE0) { + int b2 = bytes[offset + i + 1] & 0xFF; // unsigned byte + int b3 = bytes[offset + i + 2] & 0xFF; // unsigned byte + this.writeByte((byte) b3); + this.writeByte((byte) b2); + this.writeByte((byte) b); + + i += 2; + } else if (b >= 0xC0) { + int b2 = bytes[offset + i + 1] & 0xFF; // unsigned byte + this.writeByte((byte) b2); + this.writeByte((byte) b); + + i += 1; + } else { + this.writeByte((byte) b); + } + } + return (S) this; + } + + default void copyFrom( InputStream input) throws IOException, BufferOverflowException, IllegalArgumentException { + BytesInternal.copy(input, this); + } + + default void writePositionRemaining(long position, long length) { + writeLimit(position + length); + writePosition(position); + } + + default void writeHistogram( Histogram histogram) { + BytesInternal.writeHistogram(this, histogram); + } + + default void writeBigDecimal( BigDecimal bd) { + writeBigInteger(bd.unscaledValue()); + writeStopBit(bd.scale()); + } + + default void writeBigInteger( BigInteger bi) { + byte[] bytes = bi.toByteArray(); + writeStopBit(bytes.length); + write(bytes); + } + + default void writeWithLength(RandomDataInput bytes) { + writeStopBit(bytes.readRemaining()); + write(bytes); + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StreamingInputStream.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StreamingInputStream.java new file mode 100644 index 0000000..ffc4232 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StreamingInputStream.java @@ -0,0 +1,70 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import org.jetbrains.annotations.NotNull; + +import java.io.IOException; +import java.io.InputStream; + +@SuppressWarnings("rawtypes") +public class StreamingInputStream extends InputStream { + + private StreamingDataInput in; + + public StreamingInputStream() { + this(NoBytesStore.NO_BYTES); + } + + public StreamingInputStream(StreamingDataInput in) { + this.in = in; + } + + + public StreamingInputStream init(StreamingDataInput in) { + this.in = in; + return this; + } + + @Override + public long skip(long n) throws IOException { + long len = Math.min(in.readRemaining(), n); + in.readSkip(len); + return len; + } + + @Override + public int available() throws IOException { + return (int) Math.min(Integer.MAX_VALUE, in.readRemaining()); + } + + @Override + public int read(byte[] b, int off, int len) throws IOException { + if (len == 0) { + return 0; + } + int len2 = in.read(b, off, len); + return len2 == 0 ? -1 : len2; + } + + @Override + public int read() throws IOException { + return in.readRemaining() > 0 ? in.readUnsignedByte() : -1; + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StreamingOutputStream.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StreamingOutputStream.java new file mode 100644 index 0000000..5bd5e5e --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/StreamingOutputStream.java @@ -0,0 +1,64 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import org.jetbrains.annotations.NotNull; + +import java.io.IOException; +import java.io.OutputStream; +import java.nio.BufferOverflowException; + +@SuppressWarnings("rawtypes") +public class StreamingOutputStream extends OutputStream { + private StreamingDataOutput sdo; + + public StreamingOutputStream() { + this(NoBytesStore.NO_BYTES); + } + + public StreamingOutputStream(StreamingDataOutput sdo) { + this.sdo = sdo; + } + + + public StreamingOutputStream init(StreamingDataOutput sdo) { + this.sdo = sdo; + return this; + } + + @Override + public void write(byte[] b, int off, int len) throws IOException { + try { + sdo.write(b, off, len); + + } catch ( BufferOverflowException | IllegalArgumentException e) { + throw new IOException(e); + } + } + + @Override + public void write(int b) throws IOException { + try { + sdo.writeUnsignedByte(0xff & b); + + } catch ( BufferOverflowException | IllegalArgumentException e) { + throw new IOException(e); + } + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/SubBytes.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/SubBytes.java new file mode 100644 index 0000000..5e31448 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/SubBytes.java @@ -0,0 +1,58 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import org.jetbrains.annotations.NotNull; + +@SuppressWarnings({"rawtypes", "unchecked"}) +public class SubBytes extends VanillaBytes { + private final long start; + private final long capacity; + + public SubBytes( BytesStore bytesStore, long start, long capacity) throws IllegalStateException { + super(bytesStore); + this.start = start; + this.capacity = capacity; + clear(); + readLimit(writeLimit()); + } + + public SubBytes( BytesStore bytesStore) throws IllegalStateException { + super(bytesStore); + this.start = 0; + this.capacity = bytesStore.capacity(); + clear(); + readLimit(writeLimit()); + } + + @Override + public long capacity() { + return capacity; + } + + @Override + public long start() { + return start; + } + + @Override + public long realCapacity() { + return capacity; + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/UTFDataFormatRuntimeException.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/UTFDataFormatRuntimeException.java new file mode 100644 index 0000000..48c9708 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/UTFDataFormatRuntimeException.java @@ -0,0 +1,31 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.io.IORuntimeException; + +public class UTFDataFormatRuntimeException extends IORuntimeException { + public UTFDataFormatRuntimeException(String message) { + super(message); + } + + public UTFDataFormatRuntimeException(String message, Exception cause) { + super(message, cause); + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/UncheckedBytes.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/UncheckedBytes.java new file mode 100644 index 0000000..1caf3f8 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/UncheckedBytes.java @@ -0,0 +1,294 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.Jvm; +import net.openhft.chronicle.core.OS; +import net.openhft.chronicle.core.util.StringUtils; +import org.jetbrains.annotations.NotNull; + +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; +import java.nio.ByteBuffer; + +import static net.openhft.chronicle.core.util.StringUtils.extractBytes; +import static net.openhft.chronicle.core.util.StringUtils.extractChars; + +/** + * Fast unchecked version of AbstractBytes + */ +@SuppressWarnings({"rawtypes", "unchecked"}) +public class UncheckedBytes + extends AbstractBytes { + Bytes underlyingBytes; + + public UncheckedBytes( Bytes underlyingBytes) throws IllegalStateException { + super(underlyingBytes.bytesStore(), underlyingBytes.writePosition(), underlyingBytes.writeLimit()); + this.underlyingBytes = underlyingBytes; + readPosition(underlyingBytes.readPosition()); + } + + public void setBytes( Bytes bytes) throws IllegalStateException { + BytesStore underlyingBytes = bytes.bytesStore(); + if (bytesStore != underlyingBytes) { + bytesStore.release(this); + this.bytesStore(underlyingBytes); + bytesStore.reserve(this); + } + readPosition(bytes.readPosition()); + this.uncheckedWritePosition(bytes.writePosition()); + this.writeLimit = bytes.writeLimit(); + + this.underlyingBytes = bytes; + } + + @Override + public void ensureCapacity(long size) throws IllegalArgumentException { + if (size > realCapacity()) { + underlyingBytes.ensureCapacity(size); + bytesStore(underlyingBytes.bytesStore()); + } + } + + @Override + + public Bytes unchecked(boolean unchecked) { + return this; + } + + @Override + public boolean unchecked() { + return true; + } + + @Override + void writeCheckOffset(long offset, long adding) { + } + + @Override + void readCheckOffset(long offset, long adding, boolean given) { + } + + @Override + void prewriteCheckOffset(long offset, long subtracting) { + } + + + @Override + public Bytes readPosition(long position) { + readPosition = position; + return this; + } + + + @Override + public Bytes readLimit(long limit) { + uncheckedWritePosition(limit); + return this; + } + + + @Override + public Bytes writePosition(long position) { + uncheckedWritePosition(position); + return this; + } + + + @Override + public Bytes readSkip(long bytesToSkip) { + readPosition += bytesToSkip; + return this; + } + + + @Override + public Bytes writeSkip(long bytesToSkip) { + uncheckedWritePosition(writePosition() + bytesToSkip); + return this; + } + + + @Override + public Bytes writeLimit(long limit) { + writeLimit = limit; + return this; + } + + + @Override + public BytesStore, Underlying> copy() { + throw new UnsupportedOperationException("todo"); + } + + @Override + public boolean isElastic() { + return false; + } + + @Override + protected long readOffsetPositionMoved(long adding) { + long offset = readPosition; + readPosition += adding; + return offset; + } + + @Override + protected long writeOffsetPositionMoved(long adding, long advance) { + long oldPosition = writePosition(); + uncheckedWritePosition(writePosition() + advance); + return oldPosition; + } + + @Override + protected long prewriteOffsetPositionMoved(long subtracting) throws BufferOverflowException { + return readPosition -= subtracting; + } + + + @Override + public Bytes write( RandomDataInput bytes, long offset, long length) + throws BufferOverflowException, IllegalArgumentException { + if (length == 8) { + writeLong(bytes.readLong(offset)); + + } else { + super.write(bytes, offset, length); + } + return this; + } + + + public Bytes write( BytesStore bytes, long offset, long length) + throws BufferOverflowException, IllegalArgumentException { + if (length == 8) { + writeLong(bytes.readLong(offset)); + } else if (bytes.underlyingObject() == null + && bytesStore + .isDirectMemory() && + length >= 32) { + rawCopy(bytes, offset, length); + + } else { + super.write(bytes, offset, length); + } + return this; + } + + @Override + + public Bytes append8bit( CharSequence cs) + throws BufferOverflowException, BufferUnderflowException { + if (cs instanceof RandomDataInput) { + return write((RandomDataInput) cs); + } + + int length = cs.length(); + long offset = writeOffsetPositionMoved(length); + for (int i = 0; i < length; i++) { + char c = cs.charAt(i); + if (c > 255) c = '?'; + writeByte(offset, (byte) c); + } + return this; + } + + long rawCopy( BytesStore bytes, long offset, long length) + throws BufferOverflowException, IllegalArgumentException { + long len = Math.min(writeRemaining(), Math.min(bytes.capacity() - offset, length)); + if (len > 0) { + writeCheckOffset(writePosition(), len); + this.throwExceptionIfReleased(); + OS.memory().copyMemory(bytes.addressForRead(offset), addressForWritePosition(), len); + writeSkip(len); + } + return len; + } + + + @Override + public Bytes writeByte(byte i8) throws BufferOverflowException { + long offset = writeOffsetPositionMoved(1, 1); + bytesStore.writeByte(offset, i8); + return this; + } + + + @Override + public Bytes writeUtf8(String s) throws BufferOverflowException { + if (s == null) { + writeStopBit(-1); + return this; + } + + try { + if (Jvm.isJava9Plus()) { + byte[] strBytes = extractBytes(s); + byte coder = StringUtils.getStringCoder(s); + long utfLength = AppendableUtil.findUtf8Length(strBytes, coder); + writeStopBit(utfLength); + appendUtf8(strBytes, 0, s.length(), coder); + } else { + char[] chars = extractChars(s); + long utfLength = AppendableUtil.findUtf8Length(chars); + writeStopBit(utfLength); + if (utfLength == chars.length) + append8bit(chars); + else + appendUtf8(chars, 0, chars.length); + } + } catch (IllegalArgumentException e) { + throw new AssertionError(e); + } + return this; + } + + void append8bit(char[] chars) throws BufferOverflowException, IllegalArgumentException { + for (int i = 0; i < chars.length; i++) { + char c = chars[i]; + bytesStore.writeByte(writePosition++, (byte) c); + } + } + + + @Override + public Bytes appendUtf8(char[] chars, int offset, int length) throws BufferOverflowException, IllegalArgumentException { + int i; + ascii: + { + for (i = 0; i < length; i++) { + char c = chars[offset + i]; + if (c > 0x007F) + break ascii; + bytesStore.writeByte(writePosition++, (byte) c); + } + return this; + } + for (; i < length; i++) { + char c = chars[offset + i]; + BytesInternal.appendUtf8Char(this, c); + } + return this; + } + + @Override + public void write(long offsetInRDO, ByteBuffer bytes, int offset, int length) throws BufferOverflowException { + + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/UncheckedNativeBytes.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/UncheckedNativeBytes.java new file mode 100644 index 0000000..62037f1 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/UncheckedNativeBytes.java @@ -0,0 +1,930 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.bytes.algo.BytesStoreHash; +import net.openhft.chronicle.core.Jvm; +import net.openhft.chronicle.core.Memory; +import net.openhft.chronicle.core.OS; +import net.openhft.chronicle.core.annotation.ForceInline; +import net.openhft.chronicle.core.io.AbstractReferenceCounted; +import net.openhft.chronicle.core.io.BackgroundResourceReleaser; +import net.openhft.chronicle.core.io.IORuntimeException; +import org.jetbrains.annotations.NotNull; +import org.jetbrains.annotations.Nullable; + +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; +import java.nio.ByteBuffer; + +/** + * Fast unchecked version of AbstractBytes + */ +@SuppressWarnings({"rawtypes", "unchecked"}) +public class UncheckedNativeBytes + extends AbstractReferenceCounted + implements Bytes { + protected final long capacity; + + private final Bytes underlyingBytes; + + protected NativeBytesStore bytesStore; + protected long readPosition; + protected long writePosition; + protected long writeLimit; + private int lastDecimalPlaces = 0; + + public UncheckedNativeBytes( Bytes underlyingBytes) + throws IllegalStateException { + this.underlyingBytes = underlyingBytes; + underlyingBytes.reserve(this); + this.bytesStore = (NativeBytesStore) underlyingBytes.bytesStore(); + assert bytesStore.start() == 0; + writePosition = underlyingBytes.writePosition(); + writeLimit = underlyingBytes.writeLimit(); + readPosition = underlyingBytes.readPosition(); + capacity = bytesStore.capacity(); + } + + @Override + public void ensureCapacity(long size) throws IllegalArgumentException { + if (size > realCapacity()) { + underlyingBytes.ensureCapacity(size); + bytesStore = (NativeBytesStore) underlyingBytes.bytesStore(); + } + } + + @Override + public boolean unchecked() { + return true; + } + + @Override + public boolean isDirectMemory() { + return true; + } + + @Override + + public Bytes unchecked(boolean unchecked) { + return this; + } + + @Override + public void move(long from, long to, long length) { + bytesStore.move(from - start(), to - start(), length); + } + + + @Override + public Bytes compact() { + long start = start(); + long readRemaining = readRemaining(); + if (readRemaining > 0 && start < readPosition) { + bytesStore.move(readPosition, start, readRemaining); + readPosition = start; + writePosition = readPosition + readRemaining; + } + return this; + } + + + @Override + public Bytes readPosition(long position) { + readPosition = position; + return this; + } + + + @Override + public Bytes readLimit(long limit) { + writePosition = limit; + return this; + } + + + @Override + public Bytes writePosition(long position) { + writePosition = position; + return this; + } + + + @Override + public Bytes readSkip(long bytesToSkip) { + readPosition += bytesToSkip; + return this; + } + + @Override + public byte readVolatileByte(long offset) throws BufferUnderflowException { + return bytesStore.readVolatileByte(offset); + } + + @Override + public short readVolatileShort(long offset) throws BufferUnderflowException { + return bytesStore.readVolatileShort(offset); + } + + @Override + public int readVolatileInt(long offset) throws BufferUnderflowException { + return bytesStore.readVolatileInt(offset); + } + + @Override + public long readVolatileLong(long offset) throws BufferUnderflowException { + return bytesStore.readVolatileLong(offset); + } + + @Override + public void uncheckedReadSkipOne() { + readPosition++; + } + + @Override + public void uncheckedReadSkipBackOne() { + readPosition--; + } + + + @Override + public Bytes writeSkip(long bytesToSkip) { + writePosition += bytesToSkip; + return this; + } + + + @Override + public Bytes writeLimit(long limit) { + writeLimit = limit; + return this; + } + + + @Override + public BytesStore, Underlying> copy() { + throw new UnsupportedOperationException("todo"); + } + + @Override + public boolean isElastic() { + return false; + } + + protected long readOffsetPositionMoved(long adding) { + long offset = readPosition; + readPosition += adding; + return offset; + } + + protected long writeOffsetPositionMoved(long adding) { + return writeOffsetPositionMoved(adding, adding); + } + + protected long writeOffsetPositionMoved(long adding, long advance) { + long oldPosition = writePosition; + long writeEnd = oldPosition + adding; + assert writeEnd <= bytesStore.safeLimit(); + writePosition += advance; + return oldPosition; + } + + protected long prewriteOffsetPositionMoved(long substracting) { + return readPosition -= substracting; + } + + + @Override + public Bytes write( RandomDataInput bytes, long offset, long length) + throws BufferUnderflowException, BufferOverflowException { + if (length == 8) { + writeLong(bytes.readLong(offset)); + + } else if (length >= 16 && bytes.isDirectMemory()) { + rawCopy(bytes, offset, length); + + } else { + BytesInternal.writeFully(bytes, offset, length, this); + } + return this; + } + + public long rawCopy( RandomDataInput bytes, long offset, long length) + throws BufferOverflowException, BufferUnderflowException { + long len = Math.min(writeRemaining(), Math.min(bytes.capacity() - offset, length)); + if (len > 0) { + writeCheckOffset(writePosition(), len); + this.throwExceptionIfReleased(); + OS.memory().copyMemory(bytes.addressForRead(offset), addressForWritePosition(), len); + writeSkip(len); + } + return len; + } + + @Override + + public Bytes clear() { + readPosition = writePosition = start(); + writeLimit = capacity(); + return this; + } + + + @Override + public Bytes clearAndPad(long length) throws BufferOverflowException { + if (start() + length > capacity()) + throw new BufferOverflowException(); + readPosition = writePosition = start() + length; + writeLimit = capacity(); + return this; + } + + @Override + @ForceInline + public long readLimit() { + return writePosition; + } + + @Override + @ForceInline + public long writeLimit() { + return writeLimit; + } + + @Override + @ForceInline + public long realCapacity() { + return bytesStore.realCapacity(); + } + + @Override + public long realWriteRemaining() { + return writeRemaining(); + } + + @Override + @ForceInline + public long capacity() { + return capacity; + } + + + @Override + public Underlying underlyingObject() { + return bytesStore.underlyingObject(); + } + + @Override + @ForceInline + public long readPosition() { + return readPosition; + } + + @Override + @ForceInline + public long writePosition() { + return writePosition; + } + + @Override + @ForceInline + public boolean compareAndSwapInt(long offset, int expected, int value) + throws BufferOverflowException { + writeCheckOffset(offset, 4); + return bytesStore.compareAndSwapInt(offset, expected, value); + } + + @Override + public void testAndSetInt(long offset, int expected, int value) { + writeCheckOffset(offset, 4); + bytesStore.testAndSetInt(offset, expected, value); + } + + @Override + @ForceInline + public boolean compareAndSwapLong(long offset, long expected, long value) + throws BufferOverflowException { + writeCheckOffset(offset, 8); + return bytesStore.compareAndSwapLong(offset, expected, value); + } + + @Override + protected void performRelease() { + this.underlyingBytes.release(this); + // need to wait as checks rely on this completing. + BackgroundResourceReleaser.releasePendingResources(); + } + + @Override + public int readUnsignedByte() { + long offset = readOffsetPositionMoved(1); + return bytesStore.memory.readByte(bytesStore.address + offset) & 0xFF; + } + + @Override + public int uncheckedReadUnsignedByte() { + return readUnsignedByte(); + } + + @Override + @ForceInline + public byte readByte() { + long offset = readOffsetPositionMoved(1); + return bytesStore.memory.readByte(bytesStore.address + offset); + } + + @Override + @ForceInline + public int peekUnsignedByte() { + try { + return readRemaining() > 0 ? bytesStore.readUnsignedByte(readPosition) : -1; + + } catch (BufferUnderflowException e) { + return -1; + } + } + + @Override + @ForceInline + public short readShort() { + long offset = readOffsetPositionMoved(2); + return bytesStore.readShort(offset); + } + + @Override + @ForceInline + public int readInt() { + long offset = readOffsetPositionMoved(4); + return bytesStore.readInt(offset); + } + + @Override + @ForceInline + public long readLong() { + long offset = readOffsetPositionMoved(8); + return bytesStore.readLong(offset); + } + + @Override + @ForceInline + public float readFloat() { + long offset = readOffsetPositionMoved(4); + return bytesStore.readFloat(offset); + } + + @Override + @ForceInline + public double readDouble() { + long offset = readOffsetPositionMoved(8); + return bytesStore.readDouble(offset); + } + + @Override + @ForceInline + public int readVolatileInt() { + long offset = readOffsetPositionMoved(4); + return bytesStore.readVolatileInt(offset); + } + + @Override + @ForceInline + public long readVolatileLong() { + long offset = readOffsetPositionMoved(8); + return bytesStore.readVolatileLong(offset); + } + + + @Override + @ForceInline + public Bytes writeByte(long offset, byte i) throws BufferOverflowException { + writeCheckOffset(offset, 1); + bytesStore.writeByte(offset, i); + return this; + } + + + @Override + @ForceInline + public Bytes writeShort(long offset, short i) throws BufferOverflowException { + writeCheckOffset(offset, 2); + bytesStore.writeShort(offset, i); + return this; + } + + + @Override + @ForceInline + public Bytes writeInt(long offset, int i) throws BufferOverflowException { + writeCheckOffset(offset, 4); + bytesStore.writeInt(offset, i); + return this; + } + + + @Override + @ForceInline + public Bytes writeOrderedInt(long offset, int i) throws BufferOverflowException { + writeCheckOffset(offset, 4); + bytesStore.writeOrderedInt(offset, i); + return this; + } + + + @Override + @ForceInline + public Bytes writeLong(long offset, long i) throws BufferOverflowException { + writeCheckOffset(offset, 8); + bytesStore.writeLong(offset, i); + return this; + } + + + @Override + @ForceInline + public Bytes writeOrderedLong(long offset, long i) throws BufferOverflowException { + writeCheckOffset(offset, 8); + bytesStore.writeOrderedLong(offset, i); + return this; + } + + + @Override + @ForceInline + public Bytes writeFloat(long offset, float d) throws BufferOverflowException { + writeCheckOffset(offset, 4); + bytesStore.writeFloat(offset, d); + return this; + } + + + @Override + @ForceInline + public Bytes writeDouble(long offset, double d) throws BufferOverflowException { + writeCheckOffset(offset, 8); + bytesStore.writeDouble(offset, d); + return this; + } + + + @Override + @ForceInline + public Bytes writeVolatileByte(long offset, byte i8) + throws BufferOverflowException { + writeCheckOffset(offset, 1); + bytesStore.writeVolatileByte(offset, i8); + return this; + } + + + @Override + @ForceInline + public Bytes writeVolatileShort(long offset, short i16) + throws BufferOverflowException { + writeCheckOffset(offset, 2); + bytesStore.writeVolatileShort(offset, i16); + return this; + } + + + @Override + @ForceInline + public Bytes writeVolatileInt(long offset, int i32) + throws BufferOverflowException { + writeCheckOffset(offset, 4); + bytesStore.writeVolatileInt(offset, i32); + return this; + } + + + @Override + @ForceInline + public Bytes writeVolatileLong(long offset, long i64) + throws BufferOverflowException { + writeCheckOffset(offset, 8); + bytesStore.writeVolatileLong(offset, i64); + return this; + } + + @Override + + @ForceInline + public Bytes write(long offsetInRDO, byte[] bytes, int offset, int length) + throws BufferOverflowException { + writeCheckOffset(offsetInRDO, length); + bytesStore.write(offsetInRDO, bytes, offset, length); + return this; + } + + @Override + @ForceInline + public void write(long offsetInRDO, ByteBuffer bytes, int offset, int length) throws BufferOverflowException { + writeCheckOffset(offsetInRDO, length); + bytesStore.write(offsetInRDO, bytes, offset, length); + } + + @Override + + @ForceInline + public Bytes write(long writeOffset, + RandomDataInput bytes, long readOffset, long length) + throws BufferUnderflowException, BufferOverflowException { + writeCheckOffset(writeOffset, length); + bytesStore.write(writeOffset, bytes, readOffset, length); + return this; + } + + @ForceInline + void writeCheckOffset(long offset, long adding) throws BufferOverflowException { +// assert writeCheckOffset0(offset, adding); + } + + @Override + @ForceInline + public byte readByte(long offset) { + return bytesStore.readByte(offset); + } + + @Override + public int readUnsignedByte(long offset) { + return bytesStore.memory.readByte(bytesStore.address + offset) & 0xFF; + } + + @Override + public int peekUnsignedByte(long offset) { + return offset >= writePosition ? -1 : readByte(offset); + } + + @Override + @ForceInline + public short readShort(long offset) { + return bytesStore.readShort(offset); + } + + @Override + @ForceInline + public int readInt(long offset) { + return bytesStore.readInt(offset); + } + + @Override + @ForceInline + public long readLong(long offset) { + return bytesStore.readLong(offset); + } + + @Override + @ForceInline + public float readFloat(long offset) { + return bytesStore.readFloat(offset); + } + + @Override + @ForceInline + public double readDouble(long offset) { + return bytesStore.readDouble(offset); + } + + + @Override + @ForceInline + public Bytes writeByte(byte i8) { + long offset = writeOffsetPositionMoved(1); + bytesStore.memory.writeByte(bytesStore.address + offset, i8); + return this; + } + + + @Override + @ForceInline + public Bytes prewriteByte(byte i8) { + long offset = prewriteOffsetPositionMoved(1); + bytesStore.memory.writeByte(bytesStore.address + offset, i8); + return this; + } + + + @Override + @ForceInline + public Bytes writeShort(short i16) { + long offset = writeOffsetPositionMoved(2); + bytesStore.writeShort(offset, i16); + return this; + } + + + @Override + @ForceInline + public Bytes prewriteShort(short i16) { + long offset = prewriteOffsetPositionMoved(2); + bytesStore.writeShort(offset, i16); + return this; + } + + + @Override + @ForceInline + public Bytes writeInt(int i) { + long offset = writeOffsetPositionMoved(4); + bytesStore.writeInt(offset, i); + return this; + } + + + @Override + @ForceInline + public Bytes writeIntAdv(int i, int advance) { + long offset = writeOffsetPositionMoved(4, advance); + bytesStore.writeInt(offset, i); + return this; + } + + + @Override + @ForceInline + public Bytes prewriteInt(int i) { + long offset = prewriteOffsetPositionMoved(4); + bytesStore.writeInt(offset, i); + return this; + } + + + @Override + @ForceInline + public Bytes writeLong(long i64) { + long offset = writeOffsetPositionMoved(8); + bytesStore.writeLong(offset, i64); + return this; + } + + + @Override + @ForceInline + public Bytes writeLongAdv(long i64, int advance) { + long offset = writeOffsetPositionMoved(8, advance); + bytesStore.writeLong(offset, i64); + return this; + } + + + @Override + @ForceInline + public Bytes prewriteLong(long i64) { + long offset = prewriteOffsetPositionMoved(8); + bytesStore.writeLong(offset, i64); + return this; + } + + + @Override + @ForceInline + public Bytes writeFloat(float f) { + long offset = writeOffsetPositionMoved(4); + bytesStore.writeFloat(offset, f); + return this; + } + + + @Override + @ForceInline + public Bytes writeDouble(double d) { + long offset = writeOffsetPositionMoved(8); + bytesStore.writeDouble(offset, d); + return this; + } + + + @Override + @ForceInline + public Bytes writeDoubleAndInt(double d, int i) { + long offset = writeOffsetPositionMoved(12); + bytesStore.writeDouble(offset, d); + bytesStore.writeInt(offset + 8, i); + return this; + } + + + @Override + @ForceInline + public Bytes write( byte[] bytes, int offset, int length) { + if (length + offset > bytes.length) + throw new ArrayIndexOutOfBoundsException("bytes.length=" + bytes.length + ", " + + "length=" + length + ", offset=" + offset); + if (length > writeRemaining()) + throw new BufferOverflowException(); + long offsetInRDO = writeOffsetPositionMoved(length); + bytesStore.write(offsetInRDO, bytes, offset, length); + return this; + } + + + @Override + @ForceInline + public Bytes prewrite( byte[] bytes) { + long offsetInRDO = prewriteOffsetPositionMoved(bytes.length); + bytesStore.write(offsetInRDO, bytes); + return this; + } + + + @Override + @ForceInline + public Bytes prewrite( BytesStore bytes) { + long offsetInRDO = prewriteOffsetPositionMoved(bytes.length()); + bytesStore.write(offsetInRDO, bytes); + return this; + } + + + @Override + @ForceInline + public Bytes writeSome( ByteBuffer buffer) { + bytesStore.write(writePosition, buffer, buffer.position(), buffer.limit()); + writePosition += buffer.remaining(); + assert writePosition <= writeLimit(); + return this; + } + + + @Override + @ForceInline + public Bytes writeOrderedInt(int i) { + long offset = writeOffsetPositionMoved(4); + bytesStore.writeOrderedInt(offset, i); + return this; + } + + + @Override + @ForceInline + public Bytes writeOrderedLong(long i) { + long offset = writeOffsetPositionMoved(8); + bytesStore.writeOrderedLong(offset, i); + return this; + } + + @Override + public long addressForRead(long offset) throws BufferUnderflowException { + return bytesStore.addressForRead(offset); + } + + @Override + public long addressForWrite(long offset) throws BufferOverflowException { + return bytesStore.addressForWrite(offset); + } + + @Override + public long addressForWritePosition() throws UnsupportedOperationException, BufferOverflowException { + return bytesStore.addressForWrite(0); + } + + @Override + public int hashCode() { + return BytesStoreHash.hash32(this); + } + + @Override + public boolean equals(Object obj) { + if (!(obj instanceof Bytes)) return false; + Bytes b2 = (Bytes) obj; + long remaining = readRemaining(); + return b2.readRemaining() == remaining && equalsBytes(b2, remaining); + } + + public boolean equalsBytes( Bytes b2, long remaining) { + long i = 0; + try { + for (; i < remaining - 7; i += 8) + if (readLong(readPosition() + i) != b2.readLong(b2.readPosition() + i)) + return false; + for (; i < remaining; i++) + if (readByte(readPosition() + i) != b2.readByte(b2.readPosition() + i)) + return false; + + } catch (BufferUnderflowException e) { + throw Jvm.rethrow(e); + } + return true; + } + + + @Override + public String toString() { + return BytesInternal.toString(this); + } + + + @Override + public void lenient(boolean lenient) { + throw new UnsupportedOperationException(); + } + + @Override + public boolean lenient() { + return false; + } + + + + @Override + @ForceInline + public void nativeRead(long position, long address, long size) { + bytesStore.nativeRead(position, address, size); + } + + @Override + @ForceInline + public void nativeWrite(long address, long position, long size) { + bytesStore.nativeWrite(address, position, size); + } + + + @Override + public BytesStore bytesStore() { + return bytesStore; + } + + @Override + public int byteCheckSum() throws IORuntimeException { + NativeBytesStore bytesStore = (NativeBytesStore) bytesStore(); + return bytesStore.byteCheckSum(readPosition(), readLimit()); + } + + @Override + + public Bytes append8bit( CharSequence cs) + throws BufferOverflowException, BufferUnderflowException { + if (cs instanceof BytesStore) { + return write((BytesStore) cs); + } + int length = cs.length(); + long offset = writeOffsetPositionMoved(length); + long address = bytesStore.addressForWrite(offset); + Memory memory = bytesStore.memory; + assert memory != null; + try { + int i = 0; + for (; i < length - 1; i += 2) { + char c = cs.charAt(i); + char c2 = cs.charAt(i + 1); + memory.writeByte(address + i, (byte) c); + memory.writeByte(address + i + 1, (byte) c2); + } + for (; i < length; i++) { + char c = cs.charAt(i); + memory.writeByte(address + i, (byte) c); + } + + return this; + } catch (IndexOutOfBoundsException e) { + throw new AssertionError(e); + } + } + + + @Override + public Bytes appendUtf8(char[] chars, int offset, int length) throws BufferOverflowException, IllegalArgumentException { + ensureCapacity(length); + NativeBytesStore nbs = this.bytesStore; + long position = nbs.appendUtf8(writePosition(), chars, offset, length); + writePosition(position); + return this; + } + + @Override + public int lastDecimalPlaces() { + return lastDecimalPlaces; + } + + @Override + public void lastDecimalPlaces(int lastDecimalPlaces) { + this.lastDecimalPlaces = Math.max(0, lastDecimalPlaces); + } + + + @Override + public Bytes write( RandomDataInput bytes) { + assert bytes != this : "you should not write to yourself !"; + + try { + return write(bytes, bytes.readPosition(), Math.min(writeRemaining(), bytes.readRemaining())); + } catch (BufferOverflowException | BufferUnderflowException e) { + throw new AssertionError(e); + } + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/UpdateInterceptor.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/UpdateInterceptor.java new file mode 100644 index 0000000..4e9e948 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/UpdateInterceptor.java @@ -0,0 +1,18 @@ +package net.openhft.chronicle.bytes; + +/** + * Represents an operation that accepts a single input argument then modifies that same instance. + */ +@FunctionalInterface +public interface UpdateInterceptor { + + /** + * modifies {@code t} with changed data + * + * @param methodName the name of the method + * @param t the input argument - for a method call with multiple arguments, the last one is passed + * @return whether to proceed. If false, don't write + */ + boolean update(String methodName, Object t); + +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/VanillaBytes.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/VanillaBytes.java new file mode 100644 index 0000000..dcf92b8 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/VanillaBytes.java @@ -0,0 +1,597 @@ + /* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + + package net.openhft.chronicle.bytes; + + import net.openhft.chronicle.core.Jvm; + import net.openhft.chronicle.core.Maths; + import net.openhft.chronicle.core.Memory; + import net.openhft.chronicle.core.OS; + import net.openhft.chronicle.core.annotation.Java9; + import net.openhft.chronicle.core.io.IORuntimeException; + import net.openhft.chronicle.core.util.StringUtils; + import org.jetbrains.annotations.NotNull; + import org.jetbrains.annotations.Nullable; + + import java.nio.BufferOverflowException; + import java.nio.BufferUnderflowException; + import java.nio.ByteBuffer; + + import static net.openhft.chronicle.bytes.NoBytesStore.noBytesStore; + + /** + * Simple Bytes implementation which is not Elastic. + */ + @SuppressWarnings({"rawtypes", "unchecked"}) + public class VanillaBytes + extends AbstractBytes + implements Byteable, Underlying>, Comparable { + + public VanillaBytes( BytesStore bytesStore) throws IllegalStateException { + this(bytesStore, bytesStore.writePosition(), bytesStore.writeLimit()); + } + + public VanillaBytes( BytesStore bytesStore, long writePosition, long writeLimit) throws IllegalStateException { + super(bytesStore, writePosition, writeLimit); + } + + /** + * @return a non elastic bytes. + */ + + public static VanillaBytes vanillaBytes() { + try { + return new VanillaBytes<>(noBytesStore()); + + } catch (IllegalStateException e) { + throw new AssertionError(e); + } + } + + @Java9 + private static boolean isEqual0( byte[] bytes, byte coder, NativeBytesStore bs, long address) { + + Memory memory = bs.memory; + + if (coder == 0) { + int i = 0; + for (; i < bytes.length; i++) { + byte b = memory.readByte(address + i); + char c = (char) (bytes[i] & 0xFF); + if (b != c) { + return false; + } + } + } else { + int i = 0; + for (; i < bytes.length; i++) { + byte b = memory.readByte(address + i); + char c = (char) (((bytes[i + 1] & 0xFF) << 8) | (bytes[i] & 0xFF)); + + if (b != c) { + return false; + } + } + } + + return true; + } + + private static boolean isEqual0( char[] chars, NativeBytesStore bs, long address) { + + Memory memory = bs.memory; + int i = 0; + for (; i < chars.length - 3; i += 4) { + int b = memory.readInt(address + i); + int b0 = b & 0xFF; + int b1 = (b >> 8) & 0xFF; + int b2 = (b >> 16) & 0xFF; + int b3 = (b >> 24) & 0xFF; + if (b0 != chars[i] || b1 != chars[i + 1] || b2 != chars[i + 2] || b3 != chars[i + 3]) + return false; + } + for (; i < chars.length; i++) { + int b = memory.readByte(address + i) & 0xFF; + if (b != chars[i]) + return false; + } + + return true; + } + + private static boolean isEqual1( char[] chars, BytesStore bytesStore, long readPosition) throws BufferUnderflowException { + for (int i = 0; i < chars.length; i++) { + int b = bytesStore.readByte(readPosition + i) & 0xFF; + if (b != chars[i]) + return false; + } + return true; + } + + @Java9 + private static boolean isEqual1( byte[] bytes, byte coder, BytesStore bytesStore, long readPosition) throws BufferUnderflowException { + for (int i = 0; i < bytes.length; i++) { + int b = bytesStore.readByte(readPosition + i) & 0xFF; + char c; + + if (coder == 0) { + c = (char) (bytes[i] & 0xFF); + } else { + c = (char) (((bytes[i + 1] & 0xFF) << 8) | (bytes[i] & 0xFF)); + i++; + } + + if (b != c) + return false; + } + return true; + } + + @Override + public long readVolatileLong(long offset) throws BufferUnderflowException { + readCheckOffset(offset, 8, true); + return bytesStore.readVolatileLong(offset); + } + + @Override + public void bytesStore( BytesStore, Underlying> byteStore, long offset, long length) + throws IllegalStateException, BufferOverflowException, BufferUnderflowException { + setBytesStore(byteStore); + // assume its read-only + readLimit(offset + length); + writeLimit(offset + length); + readPosition(offset); + } + + private void setBytesStore( BytesStore, Underlying> bytesStore) + throws IllegalStateException { + if (this.bytesStore != bytesStore) { + BytesStore oldBS = this.bytesStore; + this.bytesStore(bytesStore); + bytesStore.reserve(this); + oldBS.release(this); + } + clear(); + } + + @Override + public long offset() { + return readPosition(); + } + + @Override + public long maxSize() { + return readRemaining(); + } + + @Override + public boolean isElastic() { + return false; + } + + + @Override + public Bytes bytesForRead() throws IllegalStateException { + return isClear() + ? new VanillaBytes<>(bytesStore, writePosition(), bytesStore.writeLimit()) + : new SubBytes<>(bytesStore, readPosition(), readLimit()); + } + + @Override + public boolean isEqual( String s) { + if (s == null || s.length() != readRemaining()) return false; + + try { + if (Jvm.isJava9Plus()) { + byte[] bytes = StringUtils.extractBytes(s); + byte coder = StringUtils.getStringCoder(s); + if (bytesStore instanceof NativeBytesStore) { + NativeBytesStore bs = (NativeBytesStore) this.bytesStore; + long address = bs.addressForRead(readPosition); + return isEqual0(bytes, coder, bs, address); + + } else { + return isEqual1(bytes, coder, bytesStore, readPosition); + } + } else { + char[] chars = StringUtils.extractChars(s); + if (bytesStore instanceof NativeBytesStore) { + NativeBytesStore bs = (NativeBytesStore) this.bytesStore; + long address = bs.addressForRead(readPosition); + return isEqual0(chars, bs, address); + + } else { + return isEqual1(chars, bytesStore, readPosition); + } + } + } catch (BufferUnderflowException e) { + throw new AssertionError(e); + } + } + + @Override + public long realCapacity() { + return bytesStore.realCapacity(); + } + + + @Override + public BytesStore, Underlying> copy() { + if (bytesStore.underlyingObject() instanceof ByteBuffer) { + try { + ByteBuffer bb = ByteBuffer.allocateDirect(Maths.toInt32(readRemaining())); + ByteBuffer bbu = (ByteBuffer) bytesStore.underlyingObject(); + ByteBuffer slice = bbu.slice(); + slice.position((int) readPosition()); + slice.limit((int) readLimit()); + bb.put(slice); + bb.clear(); + return (BytesStore) BytesStore.wrap(bb); + } catch (IllegalArgumentException e) { + throw new AssertionError(e); + } + } else { + return (BytesStore) NativeBytes.copyOf(this); + } + } + + + @Override + public Bytes write( RandomDataInput bytes, long offset, long length) + throws BufferOverflowException, BufferUnderflowException, IllegalArgumentException { + optimisedWrite(bytes, offset, length); + return this; + } + + protected void optimisedWrite( RandomDataInput bytes, long offset, long length) { + if (length <= safeCopySize() && isDirectMemory() && bytes.isDirectMemory()) { + long len = Math.min(writeRemaining(), Math.min(bytes.capacity() - offset, length)); + if (len > 0) { + writeCheckOffset(writePosition(), len); + long address = bytes.addressForRead(offset); + long address2 = addressForWritePosition(); + assert address != 0; + assert address2 != 0; + OS.memory().copyMemory(address, address2, len); + writeSkip(len); + } + } else { + super.write(bytes, offset, length); + } + } + + public void write(long position, CharSequence str, int offset, int length) + throws BufferOverflowException, IllegalArgumentException { + + ensureCapacity(length); + if (offset + length > str.length()) + throw new IllegalArgumentException("offset=" + offset + " + length=" + length + " > str.length =" + str.length()); + + for (int i = 0; i < length; i++) { + bytesStore.writeByte(position + i, str.charAt(offset + i)); + } + } + + @Override + + public VanillaBytes append( CharSequence str, int start, int end) throws IndexOutOfBoundsException { + assert end > start : "end=" + end + ",start=" + start; + try { + if (isDirectMemory()) { + if (str instanceof BytesStore) { + + write((BytesStore) str, (long) start, end - start); + return this; + } + if (str instanceof String) { + if (Jvm.isJava9Plus()) { + byte coder = StringUtils.getStringCoder((String) str); + appendUtf8(StringUtils.extractBytes((String) str), start, end - start, coder); + } else { + appendUtf8(StringUtils.extractChars((String) str), start, end - start); + } + + return this; + } + } + super.append(str, start, end); + return this; + + } catch (Exception e) { + throw new IndexOutOfBoundsException(e.toString()); + } + } + + + @Override + public VanillaBytes appendUtf8( CharSequence str) throws BufferOverflowException { + try { + if (isDirectMemory()) { + if (str instanceof BytesStore) { + write((BytesStore) str, 0L, str.length()); + return this; + } + if (str instanceof String) { + if (Jvm.isJava9Plus()) { + String str1 = (String) str; + byte coder = StringUtils.getStringCoder(str1); + appendUtf8(StringUtils.extractBytes(str1), 0, str.length(), coder); + } else { + appendUtf8(StringUtils.extractChars((String) str), 0, str.length()); + } + return this; + } + } + super.append(str, 0, str.length()); + return this; + + } catch (Exception e) { + BufferOverflowException e2 = new BufferOverflowException(); + e2.initCause(e); + throw e2; + } + } + + @Override + + public Bytes append8bit( CharSequence cs) + throws BufferOverflowException, BufferUnderflowException, IndexOutOfBoundsException { + if (cs instanceof RandomDataInput) + return write((RandomDataInput) cs); + + if (isDirectMemory() && cs instanceof String) + return append8bitNBS_S((String) cs); + return append8bit0(cs); + } + + @Override + + public Bytes append8bit( BytesStore bs) + throws BufferOverflowException, BufferUnderflowException, IndexOutOfBoundsException { + long remaining = bs.readLimit() - bs.readPosition(); + return write(bs, 0L, remaining); + } + + + @Override + public Bytes write( BytesStore bytes, long offset, long length) throws BufferOverflowException, BufferUnderflowException { + if (bytes.canReadDirect(length) && canWriteDirect(length) && length == (int) length) { + long wAddr = addressForWritePosition(); + writeSkip(length); + long rAddr = bytes.addressForRead(offset); + BytesInternal.copyMemory(rAddr, wAddr, (int) length); + + } else { + BytesInternal.writeFully(bytes, offset, length, this); + } + return this; + } + + @Override + + public Bytes append8bit( String cs) + throws BufferOverflowException, BufferUnderflowException, IndexOutOfBoundsException { + if (isDirectMemory()) + return append8bitNBS_S(cs); + return append8bit0(cs); + } + + + private Bytes append8bitNBS_S( String s) throws BufferOverflowException { + int length = s.length(); + long offset = writeOffsetPositionMoved(length); // can re-assign the byteStore if not large enough. + NativeBytesStore bytesStore = (NativeBytesStore) this.bytesStore; + final long address = bytesStore.address + bytesStore.translate(offset); + final Memory memory = bytesStore.memory; + + if (memory == null) + bytesStore.throwExceptionIfReleased(); + + if (Jvm.isJava9Plus()) { + final byte[] chars = StringUtils.extractBytes(s); + + int i; + for (i = 0; i < length; i++) { + memory.writeByte(address + i, chars[i]); + } + } else { + final char[] chars = StringUtils.extractChars(s); + int i; + for (i = 0; i < length - 3; i += 4) { + int c0 = chars[i] & 0xFF; + int c1 = chars[i + 1] & 0xFF; + int c2 = chars[i + 2] & 0xFF; + int c3 = chars[i + 3] & 0xFF; + memory.writeInt(address + i, c0 | (c1 << 8) | (c2 << 16) | (c3 << 24)); + } + for (; i < length; i++) { + int c0 = chars[i]; + memory.writeByte(address + i, (byte) c0); + } + } + return this; + } + + + public String toString() { + return bytesStore instanceof NativeBytesStore + ? toString2((NativeBytesStore) bytesStore) + : toString0(); + } + + private String toString2( NativeBytesStore bytesStore) { + int length = (int) + Math.min(Bytes.MAX_HEAP_CAPACITY, readRemaining()); + char[] chars = new char[length]; + final Memory memory = bytesStore.memory; + final long address = bytesStore.address + bytesStore.translate(readPosition()); + for (int i = 0; i < length && i < realCapacity(); i++) + chars[i] = (char) (memory.readByte(address + i) & 0xFF); + + return StringUtils.newString(chars); + } + + + protected String toString0() { + int length = (int) Math.min(Bytes.MAX_HEAP_CAPACITY, readRemaining()); + char[] chars = new char[length]; + try { + for (int i = 0; i < length; i++) { + chars[i] = (char) (bytesStore.readByte(readPosition() + i) & 0xFF); + } + } catch (BufferUnderflowException e) { + // ignored + } + return StringUtils.newString(chars); + } + + + protected Bytes append8bit0( CharSequence cs) throws BufferOverflowException, IndexOutOfBoundsException { + int length = cs.length(); + long offset = writeOffsetPositionMoved(length); + for (int i = 0; i < length; i++) { + char c = cs.charAt(i); + if (c > 255) c = '?'; + bytesStore.writeByte(offset + i, (byte) c); + } + return this; + } + + @Override + public boolean equalBytes( BytesStore bytesStore, long length) throws BufferUnderflowException { + if (isDirectMemory() && + bytesStore instanceof VanillaBytes && + bytesStore.isDirectMemory()) { + VanillaBytes b2 = (VanillaBytes) bytesStore; + NativeBytesStore nbs0 = (NativeBytesStore) this.bytesStore; + NativeBytesStore nbs2 = (NativeBytesStore) b2.bytesStore(); + long i = 0; + for (; i < length - 7; i += 8) { + long addr0 = nbs0.address + readPosition() - nbs0.start() + i; + long addr2 = nbs2.address + b2.readPosition() - nbs2.start() + i; + long l0 = nbs0.memory.readLong(addr0); + long l2 = nbs2.memory.readLong(addr2); + if (l0 != l2) + return false; + } + for (; i < length; i++) { + long offset2 = readPosition() + i - nbs0.start(); + long offset21 = b2.readPosition() + i - nbs2.start(); + byte b0 = nbs0.memory.readByte(nbs0.address + offset2); + byte b1 = nbs2.memory.readByte(nbs2.address + offset21); + if (b0 != b1) + return false; + } + return true; + } else { + return super.equalBytes(bytesStore, length); + } + } + + public void read8Bit(char[] chars, int length) { + if (isDirectMemory()) { + long position = readPosition(); + NativeBytesStore nbs = (NativeBytesStore) bytesStore(); + nbs.read8bit(position, chars, length); + } else { + long pos = this.readPosition(); + for (int i = 0; i < length; i++) + chars[i] = (char) this.readUnsignedByte(pos + i); + } + } + + // TODO: protected? + @Override + public int byteCheckSum(int start, int end) throws IORuntimeException { + byte b = 0; + // the below cast is safe as should only be called from net.openhft.chronicle.bytes.AbstractBytes.byteCheckSum(long, long) + NativeBytesStore bytesStore = (NativeBytesStore) bytesStore(); + Memory memory = bytesStore.memory; + assert memory != null; + long addr = bytesStore.addressForRead(start); + int i = 0, len = end - start; + for (; i < len - 3; i += 4) { + b += memory.readByte(addr + i) + + memory.readByte(addr + i + 1) + + memory.readByte(addr + i + 2) + + memory.readByte(addr + i + 3); + } + for (; i < len; i++) { + b += memory.readByte(addr + i); + } + return b & 0xFF; + } + + + @Override + public Bytes appendUtf8(char[] chars, int offset, int length) throws BufferOverflowException, IllegalArgumentException { + ensureCapacity(length); + if (bytesStore instanceof NativeBytesStore) { + NativeBytesStore nbs = (NativeBytesStore) this.bytesStore; + long position = nbs.appendUtf8(writePosition(), chars, offset, length); + writePosition(position); + } else { + super.appendUtf8(chars, offset, length); + } + return this; + } + + @Override + public ByteBuffer toTemporaryDirectByteBuffer() throws IllegalArgumentException { + if (isClear()) + return bytesStore.toTemporaryDirectByteBuffer(); + return super.toTemporaryDirectByteBuffer(); + } + + @Override + public int read( byte[] bytes) { + int len = (int) Math.min(bytes.length, readRemaining()); + if (bytesStore instanceof NativeBytesStore) { + NativeBytesStore nbs = (NativeBytesStore) this.bytesStore; + long len2 = nbs.read(readPosition(), bytes, 0, len); + try { + readSkip(len2); + } catch (BufferUnderflowException e) { + throw new AssertionError(e); + } + return (int) (len2); + } + return super.read(bytes); + } + + @Override + public int compareTo( CharSequence cs) { + long len1 = readRemaining(); + int len2 = cs.length(); + long lim = Math.min(len1, len2); + + int k = 0; + while (k < lim) { + char c1 = bytesStore.charAt(k); + char c2 = cs.charAt(k); + if (c1 != c2) { + return c1 - c2; + } + k++; + } + return (int) (len1 - len2); + } + + + + } diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/WriteBytesMarshallable.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/WriteBytesMarshallable.java new file mode 100644 index 0000000..dc4f4fb --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/WriteBytesMarshallable.java @@ -0,0 +1,36 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.annotation.DontChain; + +/** + * Write data directly as Bytes. + */ +@SuppressWarnings("rawtypes") +@FunctionalInterface +@DontChain +public interface WriteBytesMarshallable extends CommonMarshallable { + /** + * Write to Bytes. This can be used as an interface to extend or a lambda + * + * @param bytes to write to. + */ + void writeMarshallable(BytesOut bytes); +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/algo/BytesStoreHash.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/algo/BytesStoreHash.java new file mode 100644 index 0000000..ae4be60 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/algo/BytesStoreHash.java @@ -0,0 +1,54 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes.algo; + +import net.openhft.chronicle.bytes.BytesStore; +import net.openhft.chronicle.bytes.NativeBytesStore; + +import java.util.function.ToLongFunction; + +/** + * Simple function to derive a long hash from a BytesStore + */ +@SuppressWarnings("rawtypes") +public interface BytesStoreHash extends ToLongFunction { + static long hash( BytesStore b) { + return b.isDirectMemory() && b.bytesStore() instanceof NativeBytesStore + ? OptimisedBytesStoreHash.INSTANCE.applyAsLong(b) + : VanillaBytesStoreHash.INSTANCE.applyAsLong(b); + } + + static long hash( BytesStore b, long length) { + return b.isDirectMemory() && b.bytesStore() instanceof NativeBytesStore + ? OptimisedBytesStoreHash.INSTANCE.applyAsLong(b, length) + : VanillaBytesStoreHash.INSTANCE.applyAsLong(b, length); + } + + static int hash32(BytesStore b) { + long hash = hash(b); + return (int) (hash ^ (hash >>> 32)); + } + + static int hash32( BytesStore b, int length) { + long hash = hash(b, length); + return (int) (hash ^ (hash >>> 32)); + } + + long applyAsLong(BytesStore bytes, long length); +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/algo/OptimisedBytesStoreHash.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/algo/OptimisedBytesStoreHash.java new file mode 100644 index 0000000..cc937c1 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/algo/OptimisedBytesStoreHash.java @@ -0,0 +1,274 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes.algo; + +import net.openhft.chronicle.bytes.BytesStore; +import net.openhft.chronicle.bytes.NativeBytesStore; +import net.openhft.chronicle.core.Maths; +import net.openhft.chronicle.core.Memory; +import net.openhft.chronicle.core.OS; + +import java.nio.ByteOrder; + +import static net.openhft.chronicle.bytes.algo.VanillaBytesStoreHash.*; + +@SuppressWarnings("rawtypes") +public enum OptimisedBytesStoreHash implements BytesStoreHash { + INSTANCE; + + + public static final Memory MEMORY = OS.memory(); + public static final boolean IS_LITTLE_ENDIAN = ByteOrder.nativeOrder() == ByteOrder.LITTLE_ENDIAN; + private static final int TOP_BYTES = IS_LITTLE_ENDIAN ? 4 : 0; + + static long applyAsLong1to7( BytesStore store, int remaining) { + final long address = store.addressForRead(store.readPosition()); + + return hash(readIncompleteLong(address, remaining)); + } + + static long applyAsLong8( BytesStore store) { + final long address = store.addressForRead(store.readPosition()); + + return hash0(MEMORY.readLong(address), MEMORY.readInt(address + TOP_BYTES)); + } + + public static long hash(long l) { + return hash0(l, l >> 32); + } + + static long hash0(long l, long hi) { + return agitate(l * K0 + hi * K1); + } + + static long applyAsLong9to16( BytesStore store, int remaining) { + final NativeBytesStore bytesStore = (NativeBytesStore) store.bytesStore(); + final long address = bytesStore.addressForRead(store.readPosition()); + long h0 = (long) remaining * K0; + + int left = remaining; + long addrI = address; + + long l0 = readIncompleteLong(addrI, left); + int l0a = (int) (l0 >> 32); + long l1 = readIncompleteLong(addrI + 8, left - 8); + int l1a = (int) (l1 >> 32); + final long l2 = 0; + final int l2a = 0; + final long l3 = 0; + final int l3a = 0; + + h0 += (l0 + l1a - l2a) * M0; + long h1 = (l1 + l2a - l3a) * M1; + long h2 = (l2 + l3a - l0a) * M2; + long h3 = (l3 + l0a - l1a) * M3; + + return agitate(h0) ^ agitate(h1) + ^ agitate(h2) ^ agitate(h3); + } + + static long applyAsLong17to32( BytesStore store, int remaining) { + final NativeBytesStore bytesStore = (NativeBytesStore) store.bytesStore(); + final long address = bytesStore.addressForRead(store.readPosition()); + long h0 = (long) remaining * K0; + + int left = remaining; + long addrI = address; + + long l0 = MEMORY.readLong(addrI); + int l0a = MEMORY.readInt(addrI + TOP_BYTES); + long l1 = MEMORY.readLong(addrI + 8); + int l1a = MEMORY.readInt(addrI + 8 + TOP_BYTES); + long l2 = readIncompleteLong(addrI + 16, left - 16); + int l2a = (int) (l2 >> 32); + long l3 = readIncompleteLong(addrI + 24, left - 24); + int l3a = (int) (l3 >> 32); + + h0 += (l0 + l1a - l2a) * M0; + long h1 = (l1 + l2a - l3a) * M1; + long h2 = (l2 + l3a - l0a) * M2; + long h3 = (l3 + l0a - l1a) * M3; + + return agitate(h0) ^ agitate(h1) + ^ agitate(h2) ^ agitate(h3); + } + + public static long applyAsLong32bytesMultiple( BytesStore store, int remaining) { + final NativeBytesStore bytesStore = (NativeBytesStore) store.bytesStore(); + final long address = bytesStore.addressForRead(store.readPosition()); + long h0 = remaining * K0, h1 = 0, h2 = 0, h3 = 0; + + int i; + for (i = 0; i < remaining - 31; i += 32) { + if (i > 0) { + h0 *= K0; + h1 *= K1; + h2 *= K2; + h3 *= K3; + } + long addrI = address + i; + long l0 = MEMORY.readLong(addrI); + int l0a = MEMORY.readInt(addrI + TOP_BYTES); + long l1 = MEMORY.readLong(addrI + 8); + int l1a = MEMORY.readInt(addrI + 8 + TOP_BYTES); + long l2 = MEMORY.readLong(addrI + 16); + int l2a = MEMORY.readInt(addrI + 16 + TOP_BYTES); + long l3 = MEMORY.readLong(addrI + 24); + int l3a = MEMORY.readInt(addrI + 24 + TOP_BYTES); + + h0 += (l0 + l1a - l2a) * M0; + h1 += (l1 + l2a - l3a) * M1; + h2 += (l2 + l3a - l0a) * M2; + h3 += (l3 + l0a - l1a) * M3; + } + + return agitate(h0) ^ agitate(h1) + ^ agitate(h2) ^ agitate(h3); + } + + public static long applyAsLongAny( BytesStore store, long remaining) { + final NativeBytesStore bytesStore = (NativeBytesStore) store.bytesStore(); + final long address = bytesStore.addressForRead(store.readPosition()); + long h0 = remaining * K0, h1 = 0, h2 = 0, h3 = 0; + + int i; + for (i = 0; i < remaining - 31; i += 32) { + if (i > 0) { + h0 *= K0; + h1 *= K1; + h2 *= K2; + h3 *= K3; + } + long addrI = address + i; + long l0 = MEMORY.readLong(addrI); + int l0a = MEMORY.readInt(addrI + TOP_BYTES); + long l1 = MEMORY.readLong(addrI + 8); + int l1a = MEMORY.readInt(addrI + 8 + TOP_BYTES); + long l2 = MEMORY.readLong(addrI + 16); + int l2a = MEMORY.readInt(addrI + 16 + TOP_BYTES); + long l3 = MEMORY.readLong(addrI + 24); + int l3a = MEMORY.readInt(addrI + 24 + TOP_BYTES); + + h0 += (l0 + l1a - l2a) * M0; + h1 += (l1 + l2a - l3a) * M1; + h2 += (l2 + l3a - l0a) * M2; + h3 += (l3 + l0a - l1a) * M3; + } + long left = remaining - i; + if (left > 0) { + if (i > 0) { + h0 *= K0; + h1 *= K1; + h2 *= K2; + h3 *= K3; + } + long addrI = address + i; + if (left <= 16) { + + long l0 = readIncompleteLong(addrI, (int) left); + int l0a = (int) (l0 >> 32); + long l1 = readIncompleteLong(addrI + 8, (int) (left - 8)); + int l1a = (int) (l1 >> 32); + final long l2 = 0; + final int l2a = 0; + final long l3 = 0; + final int l3a = 0; + + h0 += (l0 + l1a - l2a) * M0; + h1 += (l1 + l2a - l3a) * M1; + h2 += (l2 + l3a - l0a) * M2; + h3 += (l3 + l0a - l1a) * M3; + + } else { + long l0 = MEMORY.readLong(addrI); + int l0a = MEMORY.readInt(addrI + TOP_BYTES); + long l1 = MEMORY.readLong(addrI + 8); + int l1a = MEMORY.readInt(addrI + 8 + TOP_BYTES); + long l2 = readIncompleteLong(addrI + 16, (int) (left - 16)); + int l2a = (int) (l2 >> 32); + long l3 = readIncompleteLong(addrI + 24, (int) (left - 24)); + int l3a = (int) (l3 >> 32); + + h0 += (l0 + l1a - l2a) * M0; + h1 += (l1 + l2a - l3a) * M1; + h2 += (l2 + l3a - l0a) * M2; + h3 += (l3 + l0a - l1a) * M3; + } + } + + return agitate(h0) ^ agitate(h1) + ^ agitate(h2) ^ agitate(h3); + } + + static long readIncompleteLong(long address, int len) { + switch (len) { + case 1: + return MEMORY.readByte(address); + case 2: + return MEMORY.readShort(address); + case 3: + return IS_LITTLE_ENDIAN + ? (MEMORY.readShort(address) & 0xFFFF) + ((MEMORY.readByte(address + 2) & 0xFF) << 16) + : ((MEMORY.readShort(address) & 0xFFFF) << 8) + (MEMORY.readByte(address + 2) & 0xFF); + case 4: + return MEMORY.readInt(address); + case 5: + return IS_LITTLE_ENDIAN + ? (MEMORY.readInt(address) & 0xFFFFFFFFL) + ((long) (MEMORY.readByte(address + 4) & 0xFF) << 32) + : ((MEMORY.readInt(address) & 0xFFFFFFFFL) << 8) + (MEMORY.readByte(address + 4) & 0xFF); + case 6: + return IS_LITTLE_ENDIAN + ? (MEMORY.readInt(address) & 0xFFFFFFFFL) + ((long) (MEMORY.readShort(address + 4) & 0xFFFF) << 32) + : ((MEMORY.readInt(address) & 0xFFFFFFFFL) << 16) + (MEMORY.readShort(address + 4) & 0xFFFF); + case 7: + return IS_LITTLE_ENDIAN + ? (MEMORY.readInt(address) & 0xFFFFFFFFL) + ((long) (MEMORY.readShort(address + 4) & 0xFFFF) << 32) + ((long) (MEMORY.readByte(address + 6) & 0xFF) << 48) + : ((MEMORY.readInt(address) & 0xFFFFFFFFL) << 24) + ((MEMORY.readShort(address + 4) & 0xFFFF) << 8) + (MEMORY.readByte(address + 6) & 0xFF); + default: + return len >= 8 ? MEMORY.readLong(address) : 0; + } + } + + @Override + public long applyAsLong( BytesStore store) { + final int remaining = Maths.toInt32(store.readRemaining()); + return applyAsLong(store, remaining); + } + + @Override + public long applyAsLong( BytesStore store, long remaining) { + if (remaining <= 16) { + if (remaining == 0) { + return 0; + } else if (remaining < 8) { + return applyAsLong1to7(store, (int) remaining); + } else if (remaining == 8) { + return applyAsLong8(store); + } else { + return applyAsLong9to16(store, (int) remaining); + } + } else if (remaining <= 32) { + return applyAsLong17to32(store, (int) remaining); + } else if ((remaining & 31) == 0) { + return applyAsLong32bytesMultiple(store, (int) remaining); + } else { + return applyAsLongAny(store, remaining); + } + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/algo/VanillaBytesStoreHash.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/algo/VanillaBytesStoreHash.java new file mode 100644 index 0000000..dbc6340 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/algo/VanillaBytesStoreHash.java @@ -0,0 +1,116 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes.algo; + +import net.openhft.chronicle.bytes.BytesStore; +import net.openhft.chronicle.core.Maths; +import org.jetbrains.annotations.NotNull; + +import java.nio.ByteOrder; + +@SuppressWarnings("rawtypes") +public enum VanillaBytesStoreHash implements BytesStoreHash { + INSTANCE; + + public static final int K0 = 0x6d0f27bd; + public static final int K1 = 0xc1f3bfc9; + public static final int K2 = 0x6b192397; + public static final int K3 = 0x6b915657; + public static final int M0 = 0x5bc80bad; + public static final int M1 = 0xea7585d7; + public static final int M2 = 0x7a646e19; + public static final int M3 = 0x855dd4db; + private static final int HI_BYTES = ByteOrder.nativeOrder() == ByteOrder.LITTLE_ENDIAN ? 4 : 0; + + public static long agitate(long l) { + l ^= Long.rotateLeft(l, 26); + l ^= Long.rotateRight(l, 17); + return l; + } + + @Override + public long applyAsLong( BytesStore store) { + int remaining = Maths.toInt32(store.readRemaining()); + return applyAsLong(store, remaining); + } + + @Override + public long applyAsLong(BytesStore bytes, long length) { + long start = bytes.readPosition(); + if (length <= 8) { + long l = bytes.readIncompleteLong(start); + return agitate(l * K0 + (l >> 32) * K1); + } + // use two hashes so that when they are combined the 64-bit hash is more random. + long h0 = length * K0; + long h1 = 0, h2 = 0, h3 = 0; + int i; + // optimise chunks of 32 bytes but this is the same as the next loop. + for (i = 0; i < length - 31; i += 32) { + if (i > 0) { + h0 *= K0; + h1 *= K1; + h2 *= K2; + h3 *= K3; + } + long addrI = start + i; + long l0 = bytes.readLong(addrI); + int l0a = bytes.readInt(addrI + HI_BYTES); + long l1 = bytes.readLong(addrI + 8); + int l1a = bytes.readInt(addrI + 8 + HI_BYTES); + long l2 = bytes.readLong(addrI + 16); + int l2a = bytes.readInt(addrI + 16 + HI_BYTES); + long l3 = bytes.readLong(addrI + 24); + int l3a = bytes.readInt(addrI + 24 + HI_BYTES); + + h0 += (l0 + l1a - l2a) * M0; + h1 += (l1 + l2a - l3a) * M1; + h2 += (l2 + l3a - l0a) * M2; + h3 += (l3 + l0a - l1a) * M3; + } + + // perform a hash of the end. + long left = length - i; + if (left > 0) { + if (i > 0) { + h0 *= K0; + h1 *= K1; + h2 *= K2; + h3 *= K3; + } + + long addrI = start + i; + long l0 = bytes.readIncompleteLong(addrI); + int l0a = (int) (l0 >> 32); + long l1 = bytes.readIncompleteLong(addrI + 8); + int l1a = (int) (l1 >> 32); + long l2 = bytes.readIncompleteLong(addrI + 16); + int l2a = (int) (l2 >> 32); + long l3 = bytes.readIncompleteLong(addrI + 24); + int l3a = (int) (l3 >> 32); + + h0 += (l0 + l1a - l2a) * M0; + h1 += (l1 + l2a - l3a) * M1; + h2 += (l2 + l3a - l0a) * M2; + h3 += (l3 + l0a - l1a) * M3; + } + return agitate(h0) ^ agitate(h1) + ^ agitate(h2) ^ agitate(h3); + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/algo/XxHash.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/algo/XxHash.java new file mode 100644 index 0000000..6b19d51 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/algo/XxHash.java @@ -0,0 +1,161 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes.algo; + +import net.openhft.chronicle.bytes.BytesStore; + +// Migration of XxHash from Zero-Allocation-Hashing +@SuppressWarnings("rawtypes") +public class XxHash implements BytesStoreHash { + // Primes if treated as unsigned + private static final long P1 = -7046029288634856825L; + private static final long P2 = -4417276706812531889L; + private static final long P3 = 1609587929392839161L; + private static final long P4 = -8796714831421723037L; + public static final XxHash INSTANCE = new XxHash(P4); + private static final long P5 = 2870177450012600261L; + private final long seed; + + public XxHash(long seed) { + this.seed = seed; + } + + private static long finalize(long hash) { + hash ^= hash >>> 33; + hash *= P2; + hash ^= hash >>> 29; + hash *= P3; + hash ^= hash >>> 32; + return hash; + } + + long fetch64(BytesStore bytes, long off) { + return bytes.readLong(off); + } + + // long because of unsigned nature of original algorithm + long fetch32(BytesStore bytes, long off) { + return bytes.readUnsignedInt(off); + } + + // int because of unsigned nature of original algorithm + long fetch8(BytesStore bytes, long off) { + return bytes.readUnsignedByte(off); + } + + @Override + public long applyAsLong(BytesStore bytes) { + return applyAsLong(bytes, bytes.readRemaining()); + } + + @Override + public long applyAsLong(BytesStore bytes, long length) { + long hash; + long remaining = length; + long off = bytes.readPosition(); + + if (remaining >= 32) { + long v1 = seed + P1 + P2; + long v2 = seed + P2; + long v3 = seed; + long v4 = seed - P1; + + do { + v1 += fetch64(bytes, off) * P2; + v1 = Long.rotateLeft(v1, 31); + v1 *= P1; + + v2 += fetch64(bytes, off + 8) * P2; + v2 = Long.rotateLeft(v2, 31); + v2 *= P1; + + v3 += fetch64(bytes, off + 16) * P2; + v3 = Long.rotateLeft(v3, 31); + v3 *= P1; + + v4 += fetch64(bytes, off + 24) * P2; + v4 = Long.rotateLeft(v4, 31); + v4 *= P1; + + off += 32; + remaining -= 32; + } while (remaining >= 32); + + hash = Long.rotateLeft(v1, 1) + + Long.rotateLeft(v2, 7) + + Long.rotateLeft(v3, 12) + + Long.rotateLeft(v4, 18); + + v1 *= P2; + v1 = Long.rotateLeft(v1, 31); + v1 *= P1; + hash ^= v1; + hash = hash * P1 + P4; + + v2 *= P2; + v2 = Long.rotateLeft(v2, 31); + v2 *= P1; + hash ^= v2; + hash = hash * P1 + P4; + + v3 *= P2; + v3 = Long.rotateLeft(v3, 31); + v3 *= P1; + hash ^= v3; + hash = hash * P1 + P4; + + v4 *= P2; + v4 = Long.rotateLeft(v4, 31); + v4 *= P1; + hash ^= v4; + hash = hash * P1 + P4; + } else { + hash = seed + P5; + } + + hash += length; + + while (remaining >= 8) { + long k1 = fetch64(bytes, off); + k1 *= P2; + k1 = Long.rotateLeft(k1, 31); + k1 *= P1; + hash ^= k1; + hash = Long.rotateLeft(hash, 27) * P1 + P4; + off += 8; + remaining -= 8; + } + + if (remaining >= 4) { + hash ^= fetch32(bytes, off) * P1; + hash = Long.rotateLeft(hash, 23) * P2 + P3; + off += 4; + remaining -= 4; + } + + while (remaining != 0) { + hash ^= fetch8(bytes, off) * P5; + hash = Long.rotateLeft(hash, 11) * P1; + --remaining; + ++off; + } + + return finalize(hash); + } + +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/internal/package-info.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/internal/package-info.java new file mode 100644 index 0000000..71ed9d4 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/internal/package-info.java @@ -0,0 +1,16 @@ +/** + * This package and any and all sub-packages contains strictly internal classes for this Chronicle library. + * Internal classes shall never be used directly. + *

+ * Specifically, the following actions (including, but not limited to) are not allowed + * on internal classes and packages: + *

    + *
  • Casting to
  • + *
  • Reflection of any kind
  • + *
  • Explicit Serialize/deserialize
  • + *
+ *

+ * The classes in this package and any sub-package are subject to + * changes at any time for any reason. + */ +package net.openhft.chronicle.bytes.internal; diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/pool/BytesPool.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/pool/BytesPool.java new file mode 100644 index 0000000..6884858 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/pool/BytesPool.java @@ -0,0 +1,48 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes.pool; + +import net.openhft.chronicle.bytes.Bytes; +import net.openhft.chronicle.core.io.IOTools; +import org.jetbrains.annotations.NotNull; + +import java.nio.ByteBuffer; + +@SuppressWarnings("rawtypes") +public class BytesPool { + final ThreadLocal bytesTL = new ThreadLocal<>(); + + public Bytes acquireBytes() { + Bytes bytes = bytesTL.get(); + if (bytes == null) { + bytesTL.set(bytes = createBytes()); + } else { + bytes.clear(); + } + return bytes; + } + + + protected Bytes createBytes() { + // use heap buffer as we never know when a thread will die and not release this resource. + Bytes bbb = Bytes.elasticHeapByteBuffer(256); + IOTools.unmonitor(bbb); + return bbb; + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/AbstractReference.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/AbstractReference.java new file mode 100644 index 0000000..69b3449 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/AbstractReference.java @@ -0,0 +1,93 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes.ref; + +import net.openhft.chronicle.bytes.Byteable; +import net.openhft.chronicle.bytes.BytesStore; +import net.openhft.chronicle.core.io.AbstractCloseable; +import net.openhft.chronicle.core.io.Closeable; +import org.jetbrains.annotations.NotNull; +import org.jetbrains.annotations.Nullable; + +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; + +@SuppressWarnings("rawtypes") +public abstract class AbstractReference extends AbstractCloseable implements Byteable, Closeable { + + + protected BytesStore bytes; + protected long offset; + + @Override + public void bytesStore( final BytesStore bytes, final long offset, final long length) throws IllegalStateException, IllegalArgumentException, BufferOverflowException, BufferUnderflowException { + throwExceptionIfClosedInSetter(); + + acceptNewBytesStore(bytes); + this.offset = offset; + } + + + @Override + public BytesStore bytesStore() { + return bytes; + } + + @Override + public long offset() { + return offset; + } + + @Override + public abstract long maxSize(); + + protected void acceptNewBytesStore( final BytesStore bytes) { + if (this.bytes != null) { + this.bytes.release(this); + } + this.bytes = bytes.bytesStore(); + this.bytes.reserve(this); + } + + @Override + protected void performClose() { + if (this.bytes != null) { + this.bytes.release(this); + this.bytes = null; + } + } + + public long address() { + throwExceptionIfClosed(); + + return bytesStore().addressForRead(offset); + } + +/* TODO FIX + @Override + protected void finalize() throws Throwable { + warnIfNotClosed(); + super.finalize(); + }*/ + + @Override + protected boolean threadSafetyCheck(boolean isUsed) { + // References are thread safe + return true; + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/BinaryBooleanReference.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/BinaryBooleanReference.java new file mode 100644 index 0000000..209914e --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/BinaryBooleanReference.java @@ -0,0 +1,51 @@ +package net.openhft.chronicle.bytes.ref; + +import net.openhft.chronicle.bytes.BytesStore; +import net.openhft.chronicle.core.values.BooleanValue; +import org.jetbrains.annotations.NotNull; + +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; + +public class BinaryBooleanReference extends AbstractReference implements BooleanValue { + + private static final byte FALSE = (byte) 0xB0; + private static final byte TRUE = (byte) 0xB1; + + @SuppressWarnings("rawtypes") + @Override + public void bytesStore( final BytesStore bytes, final long offset, final long length) throws IllegalStateException, IllegalArgumentException, BufferOverflowException, BufferUnderflowException { + throwExceptionIfClosedInSetter(); + + if (length != maxSize()) + throw new IllegalArgumentException(); + + super.bytesStore(bytes, offset, length); + } + + @Override + public long maxSize() { + return 1; + } + + @Override + public boolean getValue() { + throwExceptionIfClosed(); + + byte b = bytes.readByte(offset); + if (b == FALSE) + return false; + if (b == TRUE) + return true; + + throw new IllegalStateException("unexpected code=" + b); + + } + + @Override + public void setValue(final boolean flag) { + throwExceptionIfClosed(); + + bytes.writeByte(offset, flag ? TRUE : FALSE); + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/BinaryIntArrayReference.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/BinaryIntArrayReference.java new file mode 100644 index 0000000..e9b4190 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/BinaryIntArrayReference.java @@ -0,0 +1,282 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes.ref; + +import net.openhft.chronicle.bytes.*; +import net.openhft.chronicle.core.io.IORuntimeException; +import net.openhft.chronicle.core.values.IntValue; +import org.jetbrains.annotations.NotNull; +import org.jetbrains.annotations.Nullable; + +import java.lang.ref.WeakReference; +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; +import java.util.Collections; +import java.util.IdentityHashMap; +import java.util.Set; + +import static net.openhft.chronicle.bytes.ref.BinaryIntReference.INT_NOT_COMPLETE; + +/** + * This class acts a Binary array of 64-bit values. c.f. TextLongArrayReference + */ +@SuppressWarnings("rawtypes") +public class BinaryIntArrayReference extends AbstractReference implements ByteableIntArrayValues, BytesMarshallable { + public static final int SHIFT = 2; + private static final long CAPACITY = 0; + private static final long USED = CAPACITY + Long.BYTES; + private static final long VALUES = USED + Long.BYTES; + private static final int MAX_TO_STRING = 1024; + + private static Set> binaryIntArrayReferences = null; + private long length; + + public BinaryIntArrayReference() { + this(0); + } + + public BinaryIntArrayReference(long defaultCapacity) { + this.length = (defaultCapacity << SHIFT) + VALUES; + } + + public static void startCollecting() { + binaryIntArrayReferences = Collections.newSetFromMap(new IdentityHashMap<>()); + } + + public static void forceAllToNotCompleteState() { + binaryIntArrayReferences.forEach(x -> { + BinaryIntArrayReference binaryLongReference = x.get(); + if (binaryLongReference != null) { + binaryLongReference.setValueAt(0, INT_NOT_COMPLETE); + } + }); + binaryIntArrayReferences = null; + } + + public static void write( Bytes bytes, long capacity) throws BufferOverflowException, IllegalArgumentException { + assert (bytes.writePosition() & 0x7) == 0; + + bytes.writeLong(capacity); + bytes.writeLong(0L); // used + long start = bytes.writePosition(); + bytes.zeroOut(start, start + (capacity << SHIFT)); + bytes.writeSkip(capacity << SHIFT); + } + + public static void lazyWrite( Bytes bytes, long capacity) throws BufferOverflowException { + assert (bytes.writePosition() & 0x7) == 0; + + bytes.writeLong(capacity); + bytes.writeLong(0L); // used + bytes.writeSkip(capacity << SHIFT); + } + + public static long peakLength( BytesStore bytes, long offset) throws BufferUnderflowException { + final long capacity = bytes.readLong(offset + CAPACITY); + assert capacity > 0 : "capacity too small " + capacity; + return (capacity << SHIFT) + VALUES; + } + + @Override + public long getCapacity() { + throwExceptionIfClosed(); + + return (length - VALUES) >>> SHIFT; + } + + @Override + public long getUsed() { + throwExceptionIfClosed(); + + return bytes.readVolatileInt(offset + USED); + } + + @Override + public void setMaxUsed(long usedAtLeast) { + throwExceptionIfClosedInSetter(); + + bytes.writeMaxLong(offset + USED, usedAtLeast); + } + + @Override + public int getValueAt(long index) throws BufferUnderflowException { + throwExceptionIfClosed(); + + return bytes.readInt(VALUES + offset + (index << SHIFT)); + } + + @Override + public void setValueAt(long index, int value) throws IllegalArgumentException, BufferOverflowException { + throwExceptionIfClosedInSetter(); + + bytes.writeInt(VALUES + offset + (index << SHIFT), value); + } + + @Override + public int getVolatileValueAt(long index) throws BufferUnderflowException { + throwExceptionIfClosed(); + + return bytes.readVolatileInt(VALUES + offset + (index << SHIFT)); + } + + @Override + public void bindValueAt(long index, IntValue value) { + throwExceptionIfClosed(); + + ((BinaryIntReference) value).bytesStore(bytes, VALUES + offset + (index << SHIFT), 8); + } + + @Override + public void setOrderedValueAt(long index, int value) throws IllegalArgumentException, BufferOverflowException { + throwExceptionIfClosedInSetter(); + + bytes.writeOrderedInt(VALUES + offset + (index << SHIFT), value); + } + + @Override + public void bytesStore( BytesStore bytes, long offset, long length) throws BufferUnderflowException, IllegalArgumentException { + throwExceptionIfClosed(); + + if (length != peakLength(bytes, offset)) + throw new IllegalArgumentException(length + " != " + peakLength(bytes, offset)); + + assert (offset & 7) == 0 : "offset=" + offset; + super.bytesStore(bytes, (offset + 7) & ~7, length); + this.length = length; + } + + @Override + public void readMarshallable(BytesIn bytes) throws IORuntimeException { + throwExceptionIfClosedInSetter(); + + long position = bytes.readPosition(); + long capacity = bytes.readLong(); + long used = bytes.readLong(); + if (capacity < 0 || capacity > bytes.readRemaining() >> SHIFT) + throw new IORuntimeException("Corrupt used capacity"); + + if (used < 0 || used > capacity) + throw new IORuntimeException("Corrupt used value"); + + bytes.readSkip(capacity << SHIFT); + long length = bytes.readPosition() - position; + bytesStore(((Bytes) bytes).bytesStore(), position, length); + } + + @Override + public void writeMarshallable(BytesOut bytes) { + BytesStore bytesStore = bytesStore(); + if (bytesStore == null) { + long capacity = getCapacity(); + bytes.writeLong(capacity); + bytes.writeLong(0); + bytes.writeSkip(capacity << SHIFT); + } else { + bytes.write(bytesStore, offset, length); + } + } + + @Override + public boolean isNull() { + throwExceptionIfClosed(); + + return bytes == null; + } + + @Override + public void reset() { + throwExceptionIfClosedInSetter(); + + bytes = null; + offset = 0; + length = 0; + } + + + @Override + public BytesStore bytesStore() { + return bytes; + } + + @Override + public long offset() { + return offset; + } + + @Override + public long maxSize() { + return length; + } + + + public String toString() { + if (bytes == null) + return "not set"; + StringBuilder sb = new StringBuilder(); + sb.append("used: "); + long used = getUsed(); + sb.append(used); + sb.append(", value: "); + String sep = ""; + try { + int i, max = (int) Math.min(used, Math.min(getCapacity(), MAX_TO_STRING)); + for (i = 0; i < max; i++) { + long valueAt = getValueAt(i); + sb.append(sep).append(valueAt); + sep = ", "; + } + if (i < getCapacity()) + sb.append(" ..."); + + } catch (BufferUnderflowException e) { + sb.append(" ").append(e); + } + return sb.toString(); + } + + @Override + public long sizeInBytes(long capacity) { + throwExceptionIfClosed(); + + return (capacity << SHIFT) + VALUES; + } + + @Override + public ByteableIntArrayValues capacity(long arrayLength) { + throwExceptionIfClosedInSetter(); + + BytesStore bytesStore = bytesStore(); + long length = sizeInBytes(arrayLength); + if (bytesStore == null) { + this.length = length; + } else { + assert this.length == length; + } + return this; + } + + @Override + public boolean compareAndSet(long index, int expected, int value) throws IllegalArgumentException, BufferOverflowException { + throwExceptionIfClosed(); + + if (value == INT_NOT_COMPLETE && binaryIntArrayReferences != null) + binaryIntArrayReferences.add(new WeakReference<>(this)); + return bytes.compareAndSwapInt(VALUES + offset + (index << SHIFT), expected, value); + } +} + diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/BinaryIntReference.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/BinaryIntReference.java new file mode 100644 index 0000000..8e82d1c --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/BinaryIntReference.java @@ -0,0 +1,101 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes.ref; + +import net.openhft.chronicle.bytes.BytesStore; +import net.openhft.chronicle.core.values.IntValue; +import org.jetbrains.annotations.NotNull; + +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; + +/** + * This class acts as a Binary 32-bit in values. c.f. TextIntReference + */ +public class BinaryIntReference extends AbstractReference implements IntValue { + public static final int INT_NOT_COMPLETE = Integer.MIN_VALUE; + + @SuppressWarnings("rawtypes") + @Override + public void bytesStore( final BytesStore bytes, final long offset, final long length) throws IllegalStateException, IllegalArgumentException, BufferOverflowException, BufferUnderflowException { + throwExceptionIfClosedInSetter(); + + if (length != maxSize()) + throw new IllegalArgumentException(); + super.bytesStore(bytes, offset, length); + } + + @Override + public long maxSize() { + return 4; + } + + + public String toString() { + return bytes == null ? "bytes is null" : "value: " + getValue(); + } + + @Override + public int getValue() { + throwExceptionIfClosed(); + + return bytes == null ? 0 : bytes.readInt(offset); + } + + @Override + public void setValue(int value) { + throwExceptionIfClosedInSetter(); + + bytes.writeInt(offset, value); + } + + @Override + public int getVolatileValue() { + throwExceptionIfClosed(); + + return bytes.readVolatileInt(offset); + } + + @Override + public void setOrderedValue(int value) { + throwExceptionIfClosedInSetter(); + + bytes.writeOrderedInt(offset, value); + } + + @Override + public int addValue(int delta) { + throwExceptionIfClosed(); + + return bytes.addAndGetInt(offset, delta); + } + + @Override + public int addAtomicValue(int delta) { + throwExceptionIfClosed(); + + return addValue(delta); + } + + @Override + public boolean compareAndSwapValue(int expected, int value) { + throwExceptionIfClosed(); + + return bytes.compareAndSwapInt(offset, expected, value); + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/BinaryLongArrayReference.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/BinaryLongArrayReference.java new file mode 100644 index 0000000..4a421d8 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/BinaryLongArrayReference.java @@ -0,0 +1,282 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes.ref; + +import net.openhft.chronicle.bytes.*; +import net.openhft.chronicle.core.io.IORuntimeException; +import net.openhft.chronicle.core.values.LongValue; +import org.jetbrains.annotations.NotNull; +import org.jetbrains.annotations.Nullable; + +import java.lang.ref.WeakReference; +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; +import java.util.Collections; +import java.util.IdentityHashMap; +import java.util.Set; + +import static net.openhft.chronicle.bytes.ref.BinaryLongReference.LONG_NOT_COMPLETE; + +/** + * This class acts a Binary array of 64-bit values. c.f. TextLongArrayReference + */ +@SuppressWarnings("rawtypes") +public class BinaryLongArrayReference extends AbstractReference implements ByteableLongArrayValues, BytesMarshallable { + public static final int SHIFT = 3; + private static final long CAPACITY = 0; + private static final long USED = CAPACITY + Long.BYTES; + private static final long VALUES = USED + Long.BYTES; + private static final int MAX_TO_STRING = 1024; + + private static Set> binaryLongArrayReferences = null; + private long length; + + public BinaryLongArrayReference() { + this(0); + } + + public BinaryLongArrayReference(long defaultCapacity) { + this.length = (defaultCapacity << SHIFT) + VALUES; + } + + public static void startCollecting() { + binaryLongArrayReferences = Collections.newSetFromMap(new IdentityHashMap<>()); + } + + public static void forceAllToNotCompleteState() { + binaryLongArrayReferences.forEach(x -> { + BinaryLongArrayReference binaryLongReference = x.get(); + if (binaryLongReference != null) { + binaryLongReference.setValueAt(0, LONG_NOT_COMPLETE); + } + }); + binaryLongArrayReferences = null; + } + + public static void write( Bytes bytes, long capacity) throws BufferOverflowException, IllegalArgumentException { + assert (bytes.writePosition() & 0x7) == 0; + + bytes.writeLong(capacity); + bytes.writeLong(0L); // used + long start = bytes.writePosition(); + bytes.zeroOut(start, start + (capacity << SHIFT)); + bytes.writeSkip(capacity << SHIFT); + } + + public static void lazyWrite( Bytes bytes, long capacity) throws BufferOverflowException { + assert (bytes.writePosition() & 0x7) == 0; + + bytes.writeLong(capacity); + bytes.writeLong(0L); // used + bytes.writeSkip(capacity << SHIFT); + } + + public static long peakLength( BytesStore bytes, long offset) throws BufferUnderflowException { + final long capacity = bytes.readLong(offset + CAPACITY); + assert capacity > 0 : "capacity too small " + capacity; + return (capacity << SHIFT) + VALUES; + } + + @Override + public long getCapacity() { + throwExceptionIfClosed(); + + return (length - VALUES) >>> SHIFT; + } + + @Override + public long getUsed() { + throwExceptionIfClosed(); + + return bytes.readVolatileLong(offset + USED); + } + + @Override + public void setMaxUsed(long usedAtLeast) { + throwExceptionIfClosedInSetter(); + + bytes.writeMaxLong(offset + USED, usedAtLeast); + } + + @Override + public long getValueAt(long index) throws BufferUnderflowException { + throwExceptionIfClosed(); + + return bytes.readLong(VALUES + offset + (index << SHIFT)); + } + + @Override + public void setValueAt(long index, long value) throws IllegalArgumentException, BufferOverflowException { + throwExceptionIfClosedInSetter(); + + bytes.writeLong(VALUES + offset + (index << SHIFT), value); + } + + @Override + public long getVolatileValueAt(long index) throws BufferUnderflowException { + throwExceptionIfClosed(); + + return bytes.readVolatileLong(VALUES + offset + (index << SHIFT)); + } + + @Override + public void bindValueAt(long index, LongValue value) { + throwExceptionIfClosed(); + + ((BinaryLongReference) value).bytesStore(bytes, VALUES + offset + (index << SHIFT), 8); + } + + @Override + public void setOrderedValueAt(long index, long value) throws IllegalArgumentException, BufferOverflowException { + throwExceptionIfClosedInSetter(); + + bytes.writeOrderedLong(VALUES + offset + (index << SHIFT), value); + } + + @Override + public void bytesStore( BytesStore bytes, long offset, long length) throws BufferUnderflowException, IllegalArgumentException { + throwExceptionIfClosed(); + + if (length != peakLength(bytes, offset)) + throw new IllegalArgumentException(length + " != " + peakLength(bytes, offset)); + + assert (offset & 7) == 0 : "offset=" + offset; + super.bytesStore(bytes, (offset + 7) & ~7, length); + this.length = length; + } + + @Override + public void readMarshallable(BytesIn bytes) throws IORuntimeException { + throwExceptionIfClosedInSetter(); + + long position = bytes.readPosition(); + long capacity = bytes.readLong(); + long used = bytes.readLong(); + if (capacity < 0 || capacity > bytes.readRemaining() >> SHIFT) + throw new IORuntimeException("Corrupt used capacity"); + + if (used < 0 || used > capacity) + throw new IORuntimeException("Corrupt used value"); + + bytes.readSkip(capacity << SHIFT); + long length = bytes.readPosition() - position; + bytesStore(((Bytes) bytes).bytesStore(), position, length); + } + + @Override + public void writeMarshallable(BytesOut bytes) { + BytesStore bytesStore = bytesStore(); + if (bytesStore == null) { + long capacity = getCapacity(); + bytes.writeLong(capacity); + bytes.writeLong(0); + bytes.writeSkip(capacity << SHIFT); + } else { + bytes.write(bytesStore, offset, length); + } + } + + @Override + public boolean isNull() { + throwExceptionIfClosed(); + + return bytes == null; + } + + @Override + public void reset() { + throwExceptionIfClosedInSetter(); + + bytes = null; + offset = 0; + length = 0; + } + + + @Override + public BytesStore bytesStore() { + return bytes; + } + + @Override + public long offset() { + return offset; + } + + @Override + public long maxSize() { + return length; + } + + + public String toString() { + if (bytes == null) + return "not set"; + StringBuilder sb = new StringBuilder(); + sb.append("used: "); + long used = getUsed(); + sb.append(used); + sb.append(", value: "); + String sep = ""; + try { + int i, max = (int) Math.min(used, Math.min(getCapacity(), MAX_TO_STRING)); + for (i = 0; i < max; i++) { + long valueAt = getValueAt(i); + sb.append(sep).append(valueAt); + sep = ", "; + } + if (i < getCapacity()) + sb.append(" ..."); + + } catch (BufferUnderflowException e) { + sb.append(" ").append(e); + } + return sb.toString(); + } + + @Override + public long sizeInBytes(long capacity) { + throwExceptionIfClosed(); + + return (capacity << SHIFT) + VALUES; + } + + @Override + public ByteableLongArrayValues capacity(long arrayLength) { + throwExceptionIfClosedInSetter(); + + BytesStore bytesStore = bytesStore(); + long length = sizeInBytes(arrayLength); + if (bytesStore == null) { + this.length = length; + } else { + assert this.length == length; + } + return this; + } + + @Override + public boolean compareAndSet(long index, long expected, long value) throws IllegalArgumentException, BufferOverflowException { + throwExceptionIfClosed(); + + if (value == LONG_NOT_COMPLETE && binaryLongArrayReferences != null) + binaryLongArrayReferences.add(new WeakReference<>(this)); + return bytes.compareAndSwapLong(VALUES + offset + (index << SHIFT), expected, value); + } +} + diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/BinaryLongReference.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/BinaryLongReference.java new file mode 100644 index 0000000..7208b47 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/BinaryLongReference.java @@ -0,0 +1,136 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes.ref; + +import net.openhft.chronicle.bytes.BytesStore; +import org.jetbrains.annotations.NotNull; + +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; + +public class BinaryLongReference extends AbstractReference implements LongReference { + public static final long LONG_NOT_COMPLETE = -1; + + @SuppressWarnings("rawtypes") + @Override + public void bytesStore( final BytesStore bytes, final long offset, final long length) throws IllegalStateException, IllegalArgumentException, BufferOverflowException, BufferUnderflowException { + throwExceptionIfClosed(); + + if (length != maxSize()) + throw new IllegalArgumentException(); + + super.bytesStore(bytes, offset, length); + } + + @Override + public long maxSize() { + return 8; + } + + + public String toString() { + return bytes == null ? "bytes is null" : "value: " + getValue(); + } + + @Override + public long getValue() { + return bytes == null ? 0L : bytes.readLong(offset); + } + + @Override + public void setValue(long value) { + try { + bytes.writeLong(offset, value); + } catch (NullPointerException e) { + throwExceptionIfClosed(); + + throw e; + } + } + + @Override + public long getVolatileValue() { + try { + return bytes.readVolatileLong(offset); + } catch (NullPointerException e) { + throwExceptionIfClosed(); + + throw e; + } + } + + @Override + public void setVolatileValue(long value) { + try { + bytes.writeVolatileLong(offset, value); + } catch (NullPointerException e) { + throwExceptionIfClosed(); + + throw e; + } + } + + @Override + public long getVolatileValue(long closedValue) { + if (isClosed()) + return closedValue; + try { + return getVolatileValue(); + } catch (Exception e) { + return closedValue; + } + } + + @Override + public void setOrderedValue(long value) { + try { + bytes.writeOrderedLong(offset, value); + } catch (NullPointerException e) { + throwExceptionIfClosed(); + + throw e; + } + } + + @Override + public long addValue(long delta) { + try { + return bytes.addAndGetLong(offset, delta); + } catch (NullPointerException e) { + throwExceptionIfClosed(); + + throw e; + } + } + + @Override + public long addAtomicValue(long delta) { + return addValue(delta); + } + + @Override + public boolean compareAndSwapValue(long expected, long value) { + try { + return bytes.compareAndSwapLong(offset, expected, value); + } catch (NullPointerException e) { + throwExceptionIfClosed(); + + throw e; + } + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/BinaryTwoLongReference.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/BinaryTwoLongReference.java new file mode 100644 index 0000000..74f2311 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/BinaryTwoLongReference.java @@ -0,0 +1,113 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes.ref; + +import org.jetbrains.annotations.NotNull; + +public class BinaryTwoLongReference extends BinaryLongReference implements TwoLongReference { + @Override + public long maxSize() { + return 2 * 8; + } + + + public String toString() { + return bytes == null ? "bytes is null" : "value: " + getValue() + ", value2: " + getValue2(); + } + + @Override + public long getValue2() { + try { + return bytes.readLong(offset + 8); + } catch (NullPointerException e) { + throwExceptionIfClosed(); + throw e; + } + } + + @Override + public void setValue2(long value) { + try { + bytes.writeLong(offset + 8, value); + } catch (NullPointerException e) { + throwExceptionIfClosed(); + throw e; + } + } + + @Override + public long getVolatileValue2() { + try { + return bytes.readVolatileLong(offset + 8); + } catch (NullPointerException e) { + throwExceptionIfClosed(); + throw e; + } + + } + + @Override + public void setVolatileValue2(long value) { + try { + bytes.writeVolatileLong(offset + 8, value); + } catch (NullPointerException e) { + throwExceptionIfClosed(); + throw e; + } + } + + @Override + public void setOrderedValue2(long value) { + try { + bytes.writeOrderedLong(offset + 8, value); + } catch (NullPointerException e) { + throwExceptionIfClosed(); + throw e; + } + } + + @Override + public long addValue2(long delta) { + try { + return bytes.addAndGetLong(offset + 8, delta); + } catch (NullPointerException e) { + throwExceptionIfClosed(); + throw e; + } + } + + @Override + public long addAtomicValue2(long delta) { + try { + return addValue2(delta); + } catch (NullPointerException e) { + throwExceptionIfClosed(); + throw e; + } + } + + @Override + public boolean compareAndSwapValue2(long expected, long value) { + try { + return bytes.compareAndSwapLong(offset + 8, expected, value); + } catch (NullPointerException e) { + throwExceptionIfClosed(); + throw e; + } + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/ByteableIntArrayValues.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/ByteableIntArrayValues.java new file mode 100644 index 0000000..c51ba0a --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/ByteableIntArrayValues.java @@ -0,0 +1,31 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes.ref; + +import net.openhft.chronicle.bytes.Byteable; +import net.openhft.chronicle.bytes.DynamicallySized; +import net.openhft.chronicle.core.values.IntArrayValues; + +@SuppressWarnings("rawtypes") +public interface ByteableIntArrayValues extends IntArrayValues, Byteable, DynamicallySized { + @Override + long sizeInBytes(long sizeInBytes); + + ByteableIntArrayValues capacity(long arrayLength); +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/ByteableLongArrayValues.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/ByteableLongArrayValues.java new file mode 100644 index 0000000..1a9a6c2 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/ByteableLongArrayValues.java @@ -0,0 +1,31 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes.ref; + +import net.openhft.chronicle.bytes.Byteable; +import net.openhft.chronicle.bytes.DynamicallySized; +import net.openhft.chronicle.core.values.LongArrayValues; + +@SuppressWarnings("rawtypes") +public interface ByteableLongArrayValues extends LongArrayValues, Byteable, DynamicallySized { + @Override + long sizeInBytes(long sizeInBytes); + + ByteableLongArrayValues capacity(long arrayLength); +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/LongReference.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/LongReference.java new file mode 100644 index 0000000..2bc9d93 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/LongReference.java @@ -0,0 +1,26 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes.ref; + +import net.openhft.chronicle.bytes.Byteable; +import net.openhft.chronicle.core.values.LongValue; + +@SuppressWarnings("rawtypes") +public interface LongReference extends LongValue, Byteable { +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/TextBooleanReference.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/TextBooleanReference.java new file mode 100644 index 0000000..f2806e2 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/TextBooleanReference.java @@ -0,0 +1,61 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes.ref; + +import net.openhft.chronicle.bytes.BytesStore; +import net.openhft.chronicle.core.values.BooleanValue; +import org.jetbrains.annotations.NotNull; + +/** + * Implementation of a reference to a 32-bit in in text wire format. + */ +public class TextBooleanReference extends AbstractReference implements BooleanValue { + + private static final int FALSE = 'f' | ('a' << 8) | ('l' << 16) | ('s' << 24); + private static final int TRUE = ' ' | ('t' << 8) | ('r' << 16) | ('u' << 24); + + @SuppressWarnings("rawtypes") + public static void write(final boolean value, final BytesStore bytes, long offset) { + bytes.writeVolatileInt(offset, value ? TRUE : FALSE); + bytes.writeByte(offset + 4, (byte) 'e'); + } + + @Override + public long maxSize() { + return 5; + } + + + public String toString() { + return "value: " + getValue(); + } + + @Override + public boolean getValue() { + throwExceptionIfClosed(); + + return bytes.readVolatileInt(offset) == TRUE; + } + + @Override + public void setValue(final boolean value) { + throwExceptionIfClosedInSetter(); + + write(value, bytes, offset); + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/TextIntArrayReference.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/TextIntArrayReference.java new file mode 100644 index 0000000..69f7f51 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/TextIntArrayReference.java @@ -0,0 +1,239 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes.ref; + +import net.openhft.chronicle.bytes.Bytes; +import net.openhft.chronicle.bytes.BytesStore; +import net.openhft.chronicle.core.OS; +import net.openhft.chronicle.core.values.IntValue; +import org.jetbrains.annotations.NotNull; + +import static java.nio.charset.StandardCharsets.ISO_8859_1; + +/* +The format for a long array in text is +{ capacity: 12345678901234567890, values: [ 12345678901234567890, ... ] } + */ +@SuppressWarnings("rawtypes") +public class TextIntArrayReference extends AbstractReference implements ByteableIntArrayValues { + private static final byte[] SECTION1 = "{ locked: false, capacity: ".getBytes(ISO_8859_1); + private static final byte[] SECTION2 = ", used: ".getBytes(ISO_8859_1); + private static final byte[] SECTION3 = ", values: [ ".getBytes(ISO_8859_1); + private static final byte[] SECTION4 = " ] }\n".getBytes(ISO_8859_1); + private static final byte[] ZERO = "0000000000".getBytes(ISO_8859_1); + private static final byte[] SEP = ", ".getBytes(ISO_8859_1); + + private static final int DIGITS = ZERO.length; + private static final int CAPACITY = SECTION1.length; + private static final int USED = CAPACITY + DIGITS + SECTION2.length; + private static final int VALUES = USED + DIGITS + SECTION3.length; + private static final int VALUE_SIZE = DIGITS + SEP.length; + private static final int LOCK_OFFSET = 10; + private static final int FALS = 'f' | ('a' << 8) | ('l' << 16) | ('s' << 24); + private static final int TRU = ' ' | ('t' << 8) | ('r' << 16) | ('u' << 24); + + private long length = VALUES; + + public static void write( Bytes bytes, long capacity) { + long start = bytes.writePosition(); + bytes.write(SECTION1); + bytes.append(capacity); + while (bytes.writePosition() - start < CAPACITY + DIGITS) { + bytes.writeUnsignedByte(' '); + } + bytes.write(SECTION2); + bytes.write(ZERO); + bytes.write(SECTION3); + for (long i = 0; i < capacity; i++) { + if (i > 0) + bytes.appendUtf8(", "); + bytes.write(ZERO); + } + bytes.write(SECTION4); + } + + public static long peakLength( BytesStore bytes, long offset) { + //todo check this, I think there could be a bug here + return (bytes.parseLong(offset + CAPACITY) * VALUE_SIZE) - SEP.length + + VALUES + SECTION4.length; + } + + @Override + public long getUsed() { + try { + return bytes.parseLong(USED + offset); + } catch (NullPointerException e) { + throwExceptionIfClosed(); + throw e; + } + } + + private void setUsed(long used) { + try { + bytes.append(VALUES + offset, used, DIGITS); + } catch (NullPointerException e) { + throwExceptionIfClosed(); + throw e; + } + } + + @Override + public void setMaxUsed(long usedAtLeast) { + try { + while (true) { + if (!bytes.compareAndSwapInt(LOCK_OFFSET + offset, FALS, TRU)) + continue; + try { + if (getUsed() < usedAtLeast) { + setUsed(usedAtLeast); + } + return; + } finally { + bytes.writeInt(LOCK_OFFSET + offset, FALS); + } + } + } catch (NullPointerException e) { + throwExceptionIfClosed(); + throw e; + } + } + + @Override + public long getCapacity() { + return (length - VALUES) / VALUE_SIZE; + } + + @Override + public ByteableIntArrayValues capacity(long arrayLength) { + BytesStore bytesStore = bytesStore(); + long length = sizeInBytes(arrayLength); + if (bytesStore == null) { + this.length = length; + } else { + assert this.length == length; + } + return this; + } + + @Override + public int getValueAt(long index) { + try { + return (int) bytes.parseLong(VALUES + offset + index * VALUE_SIZE); + } catch (NullPointerException e) { + throwExceptionIfClosed(); + throw e; + } + + } + + @Override + public void setValueAt(long index, int value) { + try { + bytes.append(VALUES + offset + index * VALUE_SIZE, value, DIGITS); + } catch (NullPointerException e) { + throwExceptionIfClosed(); + throw e; + } + } + + @Override + public void bindValueAt(long index, IntValue value) { + throw new UnsupportedOperationException("todo"); + } + + @Override + public int getVolatileValueAt(long index) { + OS.memory().loadFence(); + return getValueAt(index); + } + + @Override + public void setOrderedValueAt(long index, int value) { + setValueAt(index, value); + OS.memory().storeFence(); + } + + @Override + public boolean compareAndSet(long index, int expected, int value) { + try { + if (!bytes.compareAndSwapInt(LOCK_OFFSET + offset, FALS, TRU)) + return false; + boolean ret = false; + try { + if (getVolatileValueAt(index) == expected) { + setOrderedValueAt(index, value); + ret = true; + } + return ret; + } finally { + bytes.writeInt(LOCK_OFFSET + offset, FALS); + } + } catch (NullPointerException e) { + throwExceptionIfClosed(); + throw e; + } + + } + + @Override + public void bytesStore( final BytesStore bytes, long offset, long length) { + throwExceptionIfClosedInSetter(); + + if (length != peakLength(bytes, offset)) + throw new IllegalArgumentException(length + " != " + peakLength(bytes, offset)); + super.bytesStore(bytes, offset, length); + this.length = length; + } + + @Override + public boolean isNull() { + return bytes == null; + } + + @Override + public void reset() { + throwExceptionIfClosedInSetter(); + + bytes = null; + offset = 0; + length = 0; + } + + @Override + public long maxSize() { + return length; + } + + + public String toString() { + if (bytes == null) { + return "LongArrayTextReference{" + + "bytes=null" + + ", offset=" + offset + + ", length=" + length + + '}'; + } + + return "value: " + getValueAt(0) + " ..."; + } + + @Override + public long sizeInBytes(long capacity) { + return (capacity * VALUE_SIZE) + VALUES + SECTION3.length - SEP.length; + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/TextIntReference.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/TextIntReference.java new file mode 100644 index 0000000..54891f0 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/TextIntReference.java @@ -0,0 +1,167 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes.ref; + +import net.openhft.chronicle.bytes.Bytes; +import net.openhft.chronicle.bytes.BytesStore; +import net.openhft.chronicle.core.values.IntValue; +import org.jetbrains.annotations.NotNull; + +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; +import java.util.function.IntSupplier; + +import static java.nio.charset.StandardCharsets.ISO_8859_1; +import static net.openhft.chronicle.bytes.BytesUtil.roundUpTo8ByteAlign; + +/** + * Implementation of a reference to a 32-bit in in text wire format. + */ +public class TextIntReference extends AbstractReference implements IntValue { + private static final byte[] template = "!!atomic { locked: false, value: 0000000000 }".getBytes(ISO_8859_1); + private static final int FALSE = 'f' | ('a' << 8) | ('l' << 16) | ('s' << 24); + private static final int TRUE = ' ' | ('t' << 8) | ('r' << 16) | ('u' << 24); + private static final int UNINITIALIZED = 0; + private static final int INT_TRUE = 1; + private static final int INT_FALSE = 0; + private static final int LOCKED = 20; + private static final int VALUE = 34; + private static final int DIGITS = 10; + + @SuppressWarnings("rawtypes") + public static void write( Bytes bytes, int value) throws BufferOverflowException { + long position = bytes.writePosition(); + bytes.write(template); + try { + bytes.append(position + VALUE, value, DIGITS); + } catch (IllegalArgumentException e) { + throw new AssertionError(e); + } + } + + private int withLock( IntSupplier call) throws BufferUnderflowException { + long alignedOffset = roundUpTo8ByteAlign(offset); + long lockValueOffset = alignedOffset + LOCKED; + int lockValue = bytes.readVolatileInt(lockValueOffset); + if (lockValue != FALSE && lockValue != TRUE) + throw new IllegalStateException(); + try { + while (true) { + if (bytes.compareAndSwapInt(lockValueOffset, FALSE, TRUE)) { + int t = call.getAsInt(); + bytes.writeOrderedInt(lockValueOffset, FALSE); + return t; + } + } + } catch (BufferOverflowException e) { + throw new AssertionError(e); + } + } + + @Override + public int getValue() { + throwExceptionIfClosed(); + + return withLock(() -> (int) bytes.parseLong(offset + VALUE)); + } + + @Override + public void setValue(int value) { + throwExceptionIfClosedInSetter(); + + withLock(() -> { + bytes.append(offset + VALUE, value, DIGITS); + return INT_TRUE; + }); + } + + @Override + public int getVolatileValue() { + throwExceptionIfClosed(); + + return getValue(); + } + + @Override + public void setOrderedValue(int value) { + throwExceptionIfClosedInSetter(); + + setValue(value); + } + + @Override + public int addValue(int delta) { + throwExceptionIfClosed(); + + return withLock(() -> { + long value = bytes.parseLong(offset + VALUE) + delta; + bytes.append(offset + VALUE, value, DIGITS); + return (int) value; + }); + } + + @Override + public int addAtomicValue(int delta) { + throwExceptionIfClosed(); + + return addValue(delta); + } + + @Override + public boolean compareAndSwapValue(int expected, int value) { + throwExceptionIfClosed(); + + return withLock(() -> { + if (bytes.parseLong(offset + VALUE) == expected) { + bytes.append(offset + VALUE, value, DIGITS); + return INT_TRUE; + } + return INT_FALSE; + }) == INT_TRUE; + } + + @SuppressWarnings("rawtypes") + @Override + public void bytesStore( final BytesStore bytes, long offset, long length) { + throwExceptionIfClosedInSetter(); + + if (length != template.length) + throw new IllegalArgumentException(length + " != " + template.length); + + // align for ARM + long newOffset = roundUpTo8ByteAlign(offset); + for (long i = offset; i < newOffset; i++) { + bytes.writeByte(i, (byte) ' '); + } + + super.bytesStore(bytes, newOffset, length); + + if (bytes.readInt(newOffset) == UNINITIALIZED) + bytes.write(newOffset, template); + } + + @Override + public long maxSize() { + return template.length; + } + + + public String toString() { + return "value: " + getValue(); + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/TextLongArrayReference.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/TextLongArrayReference.java new file mode 100644 index 0000000..13bae46 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/TextLongArrayReference.java @@ -0,0 +1,239 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes.ref; + +import net.openhft.chronicle.bytes.Bytes; +import net.openhft.chronicle.bytes.BytesStore; +import net.openhft.chronicle.core.OS; +import net.openhft.chronicle.core.values.LongValue; +import org.jetbrains.annotations.NotNull; + +import static java.nio.charset.StandardCharsets.ISO_8859_1; + +/* +The format for a long array in text is +{ capacity: 12345678901234567890, values: [ 12345678901234567890, ... ] } + */ +@SuppressWarnings("rawtypes") +public class TextLongArrayReference extends AbstractReference implements ByteableLongArrayValues { + private static final byte[] SECTION1 = "{ locked: false, capacity: ".getBytes(ISO_8859_1); + private static final byte[] SECTION2 = ", used: ".getBytes(ISO_8859_1); + private static final byte[] SECTION3 = ", values: [ ".getBytes(ISO_8859_1); + private static final byte[] SECTION4 = " ] }\n".getBytes(ISO_8859_1); + private static final byte[] ZERO = "00000000000000000000".getBytes(ISO_8859_1); + private static final byte[] SEP = ", ".getBytes(ISO_8859_1); + + private static final int DIGITS = ZERO.length; + private static final int CAPACITY = SECTION1.length; + private static final int USED = CAPACITY + DIGITS + SECTION2.length; + private static final int VALUES = USED + DIGITS + SECTION3.length; + private static final int VALUE_SIZE = DIGITS + SEP.length; + private static final int LOCK_OFFSET = 10; + private static final int FALS = 'f' | ('a' << 8) | ('l' << 16) | ('s' << 24); + private static final int TRU = ' ' | ('t' << 8) | ('r' << 16) | ('u' << 24); + + private long length = VALUES; + + public static void write( Bytes bytes, long capacity) { + long start = bytes.writePosition(); + bytes.write(SECTION1); + bytes.append(capacity); + while (bytes.writePosition() - start < CAPACITY + DIGITS) { + bytes.writeUnsignedByte(' '); + } + bytes.write(SECTION2); + bytes.write(ZERO); + bytes.write(SECTION3); + for (long i = 0; i < capacity; i++) { + if (i > 0) + bytes.appendUtf8(", "); + bytes.write(ZERO); + } + bytes.write(SECTION4); + } + + public static long peakLength( BytesStore bytes, long offset) { + //todo check this, I think there could be a bug here + return (bytes.parseLong(offset + CAPACITY) * VALUE_SIZE) - SEP.length + + VALUES + SECTION4.length; + } + + @Override + public long getUsed() { + try { + return bytes.parseLong(USED + offset); + } catch (NullPointerException e) { + throwExceptionIfClosed(); + throw e; + } + } + + private void setUsed(long used) { + try { + bytes.append(VALUES + offset, used, DIGITS); + } catch (NullPointerException e) { + throwExceptionIfClosed(); + throw e; + } + } + + @Override + public void setMaxUsed(long usedAtLeast) { + try { + while (true) { + if (!bytes.compareAndSwapInt(LOCK_OFFSET + offset, FALS, TRU)) + continue; + try { + if (getUsed() < usedAtLeast) { + setUsed(usedAtLeast); + } + return; + } finally { + bytes.writeInt(LOCK_OFFSET + offset, FALS); + } + } + } catch (NullPointerException e) { + throwExceptionIfClosed(); + throw e; + } + } + + @Override + public long getCapacity() { + return (length - VALUES) / VALUE_SIZE; + } + + @Override + public ByteableLongArrayValues capacity(long arrayLength) { + BytesStore bytesStore = bytesStore(); + long length = sizeInBytes(arrayLength); + if (bytesStore == null) { + this.length = length; + } else { + assert this.length == length; + } + return this; + } + + @Override + public long getValueAt(long index) { + try { + return bytes.parseLong(VALUES + offset + index * VALUE_SIZE); + } catch (NullPointerException e) { + throwExceptionIfClosed(); + throw e; + } + + } + + @Override + public void setValueAt(long index, long value) { + try { + bytes.append(VALUES + offset + index * VALUE_SIZE, value, DIGITS); + } catch (NullPointerException e) { + throwExceptionIfClosed(); + throw e; + } + } + + @Override + public void bindValueAt(long index, LongValue value) { + throw new UnsupportedOperationException("todo"); + } + + @Override + public long getVolatileValueAt(long index) { + OS.memory().loadFence(); + return getValueAt(index); + } + + @Override + public void setOrderedValueAt(long index, long value) { + setValueAt(index, value); + OS.memory().storeFence(); + } + + @Override + public boolean compareAndSet(long index, long expected, long value) { + try { + if (!bytes.compareAndSwapInt(LOCK_OFFSET + offset, FALS, TRU)) + return false; + boolean ret = false; + try { + if (getVolatileValueAt(index) == expected) { + setOrderedValueAt(index, value); + ret = true; + } + return ret; + } finally { + bytes.writeInt(LOCK_OFFSET + offset, FALS); + } + } catch (NullPointerException e) { + throwExceptionIfClosed(); + throw e; + } + + } + + @Override + public void bytesStore( final BytesStore bytes, long offset, long length) { + throwExceptionIfClosedInSetter(); + + if (length != peakLength(bytes, offset)) + throw new IllegalArgumentException(length + " != " + peakLength(bytes, offset)); + super.bytesStore(bytes, offset, length); + this.length = length; + } + + @Override + public boolean isNull() { + return bytes == null; + } + + @Override + public void reset() { + throwExceptionIfClosedInSetter(); + + bytes = null; + offset = 0; + length = 0; + } + + @Override + public long maxSize() { + return length; + } + + + public String toString() { + if (bytes == null) { + return "LongArrayTextReference{" + + "bytes=null" + + ", offset=" + offset + + ", length=" + length + + '}'; + } + + return "value: " + getValueAt(0) + " ..."; + } + + @Override + public long sizeInBytes(long capacity) { + return (capacity * VALUE_SIZE) + VALUES + SECTION3.length - SEP.length; + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/TextLongReference.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/TextLongReference.java new file mode 100644 index 0000000..c185c06 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/TextLongReference.java @@ -0,0 +1,167 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes.ref; + +import net.openhft.chronicle.bytes.Bytes; +import net.openhft.chronicle.bytes.BytesStore; +import net.openhft.chronicle.bytes.BytesUtil; +import org.jetbrains.annotations.NotNull; + +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; +import java.util.function.LongSupplier; + +import static java.nio.charset.StandardCharsets.ISO_8859_1; +import static net.openhft.chronicle.bytes.BytesUtil.roundUpTo8ByteAlign; + +/** + * reference to an array fo 32-bit in values in Text wire format. + */ +public class TextLongReference extends AbstractReference implements LongReference { + static final int VALUE = 34; + private static final byte[] template = "!!atomic { locked: false, value: 00000000000000000000 }".getBytes(ISO_8859_1); + private static final int FALSE = BytesUtil.asInt("fals"); + private static final int TRUE = BytesUtil.asInt(" tru"); + private static final long UNINITIALIZED = 0x0L; + private static final long LONG_TRUE = 1L; + private static final long LONG_FALSE = 0L; + private static final int LOCKED = 20; + private static final int DIGITS = 20; + + @SuppressWarnings("rawtypes") + public static void write( Bytes bytes, long value) throws BufferOverflowException, IllegalArgumentException { + long position = bytes.writePosition(); + bytes.write(template); + bytes.append(position + VALUE, value, DIGITS); + } + + private long withLock( LongSupplier call) throws IllegalStateException, BufferUnderflowException { + try { + long valueOffset = offset + LOCKED; + int value = bytes.readVolatileInt(valueOffset); + if (value != FALSE && value != TRUE) + throw new IllegalStateException("Not a lock value"); + try { + while (true) { + if (bytes.compareAndSwapInt(valueOffset, FALSE, TRUE)) { + long t = call.getAsLong(); + bytes.writeOrderedInt(valueOffset, FALSE); + return t; + } + } + } catch (BufferOverflowException e) { + throw new AssertionError(e); + } + } catch (NullPointerException e) { + throwExceptionIfClosed(); + throw e; + } + } + + @SuppressWarnings("rawtypes") + @Override + public void bytesStore( final BytesStore bytes, long offset, long length) { + if (length != template.length) + throw new IllegalArgumentException(); + + // align for ARM + long newOffset = roundUpTo8ByteAlign(offset); + for (long i = offset; i < newOffset; i++) { + bytes.writeByte(i, (byte) ' '); + } + + super.bytesStore(bytes, newOffset, length); + + if (bytes.readLong(newOffset) == UNINITIALIZED) + bytes.write(newOffset, template); + } + + @Override + public long getValue() { + return withLock(() -> bytes.parseLong(offset + VALUE)); + } + + @Override + public void setValue(long value) { + withLock(() -> { + bytes.append(offset + VALUE, value, DIGITS); + return LONG_TRUE; + }); + } + + @Override + public long getVolatileValue() { + return getValue(); + } + + @Override + public void setVolatileValue(long value) { + setValue(value); + } + + @Override + public long getVolatileValue(long closedValue) { + if (isClosed()) + return closedValue; + try { + return getVolatileValue(); + } catch (Exception e) { + return closedValue; + } + } + + @Override + public long maxSize() { + return template.length; + } + + @Override + public void setOrderedValue(long value) { + setValue(value); + } + + + public String toString() { + return "value: " + getValue(); + } + + @Override + public long addValue(long delta) { + return withLock(() -> { + long value = bytes.parseLong(offset + VALUE) + delta; + bytes.append(offset + VALUE, value, DIGITS); + return value; + }); + } + + @Override + public long addAtomicValue(long delta) { + return addValue(delta); + } + + @Override + public boolean compareAndSwapValue(long expected, long value) { + return withLock(() -> { + if (bytes.parseLong(offset + VALUE) == expected) { + bytes.append(offset + VALUE, value, DIGITS); + return LONG_TRUE; + } + return LONG_FALSE; + }) == LONG_TRUE; + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/TwoLongReference.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/TwoLongReference.java new file mode 100644 index 0000000..7c3063d --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/TwoLongReference.java @@ -0,0 +1,26 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes.ref; + +import net.openhft.chronicle.bytes.Byteable; +import net.openhft.chronicle.core.values.TwoLongValue; + +@SuppressWarnings("rawtypes") +public interface TwoLongReference extends TwoLongValue, Byteable { +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/UncheckedLongReference.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/UncheckedLongReference.java new file mode 100644 index 0000000..af259bc --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/ref/UncheckedLongReference.java @@ -0,0 +1,124 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes.ref; + +import net.openhft.chronicle.bytes.BytesStore; +import net.openhft.chronicle.core.Jvm; +import net.openhft.chronicle.core.io.ReferenceOwner; +import net.openhft.chronicle.core.io.UnsafeCloseable; +import org.jetbrains.annotations.NotNull; + +@SuppressWarnings({"rawtypes", "unchecked"}) +public class UncheckedLongReference extends UnsafeCloseable implements LongReference, ReferenceOwner { + private BytesStore bytes; + + + public static LongReference create(BytesStore bytesStore, long offset, int size) { + LongReference ref = Jvm.isDebug() ? new BinaryLongReference() : new UncheckedLongReference(); + ref.bytesStore(bytesStore, offset, size); + return ref; + } + + @Override + public void bytesStore( BytesStore bytes, long offset, long length) { + throwExceptionIfClosedInSetter(); + + if (length != maxSize()) throw new IllegalArgumentException(); + if (this.bytes != bytes) { + if (this.bytes != null) + this.bytes.release(this); + this.bytes = bytes; + bytes.reserve(this); + } + address(bytes.addressForRead(offset)); + } + + + @Override + public BytesStore bytesStore() { + return bytes; + } + + @Override + public long offset() { + return address; + } + + @Override + public long maxSize() { + return 8; + } + + + public String toString() { + return address == 0 ? "addressForRead is 0" : "value: " + getValue(); + } + + @Override + public long getValue() { + return getLong(); + } + + @Override + public void setValue(long value) { + setLong(value); + } + + @Override + public long getVolatileValue() { + return getVolatileLong(); + } + + @Override + public void setVolatileValue(long value) { + setVolatileLong(value); + } + + @Override + public long getVolatileValue(long closedValue) { + return getVolatileLong(closedValue); + } + + @Override + public void setOrderedValue(long value) { + setOrderedLong(value); + } + + @Override + public long addValue(long delta) { + return addLong(delta); + } + + @Override + public long addAtomicValue(long delta) { + return addAtomicLong(delta); + } + + @Override + public boolean compareAndSwapValue(long expected, long value) { + return compareAndSwapLong(expected, value); + } + + @Override + protected void performClose() { + if (this.bytes != null) + this.bytes.release(this); + this.bytes = null; + super.performClose(); + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/AbstractInterner.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/AbstractInterner.java new file mode 100644 index 0000000..690df23 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/AbstractInterner.java @@ -0,0 +1,121 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes.util; + +import net.openhft.chronicle.bytes.Bytes; +import net.openhft.chronicle.bytes.BytesStore; +import net.openhft.chronicle.core.Maths; +import net.openhft.chronicle.core.io.IORuntimeException; +import net.openhft.chronicle.core.io.IOTools; +import org.jetbrains.annotations.NotNull; + +import java.nio.BufferUnderflowException; +import java.util.Objects; +import java.util.stream.Stream; + +/** + * This cache only gaurentees it will provide a String which matches the decoded bytes. + *

+ * It doesn't guantee it will always return the same object, + * nor that different threads will return the same object, + * though the contents should always be the same. + *

+ * While not technically thread safe, it should still behave correctly. + * + * @author peter.lawrey + */ +@SuppressWarnings({"rawtypes", "unchecked"}) +public abstract class AbstractInterner { + + protected final InternerEntry[] entries; + protected final int mask, shift; + protected boolean toggle = false; + + public AbstractInterner(int capacity) throws IllegalArgumentException { + int n = Maths.nextPower2(capacity, 128); + shift = Maths.intLog2(n); + entries = new InternerEntry[n]; + mask = n - 1; + } + + private static int hash32( BytesStore bs, int length) { + return bs.fastHash(bs.readPosition(), length); + } + + public T intern( Bytes cs) + throws IllegalArgumentException, IORuntimeException, BufferUnderflowException { + return intern((BytesStore) cs, (int) cs.readRemaining()); + } + + public T intern( BytesStore cs) + throws IllegalArgumentException, IORuntimeException, BufferUnderflowException { + return intern(cs, (int) cs.readRemaining()); + } + + public T intern( Bytes cs, int length) + throws IllegalArgumentException, IORuntimeException, BufferUnderflowException { + return intern((BytesStore) cs, length); + } + + public T intern( BytesStore cs, int length) + throws IllegalArgumentException, IORuntimeException, BufferUnderflowException { + if (length > entries.length) + return getValue(cs, length); + // TODO This needs to be reviewd. +// UnsafeMemory.UNSAFE.loadFence(); + int hash = hash32(cs, length); + int h = hash & mask; + InternerEntry s = entries[h]; + if (s != null && s.bytes.length() == length && s.bytes.equalBytes(cs, length)) + return s.t; + int h2 = (hash >> shift) & mask; + InternerEntry s2 = entries[h2]; + if (s2 != null && s2.bytes.length() == length && s2.bytes.equalBytes(cs, length)) + return s2.t; + T t = getValue(cs, length); + final byte[] bytes = new byte[length]; + BytesStore bs = BytesStore.wrap(bytes); + IOTools.unmonitor(bs); + cs.read(cs.readPosition(), bytes, 0, length); + entries[s == null || (s2 != null && toggle()) ? h : h2] = new InternerEntry<>(bs, t); +// UnsafeMemory.UNSAFE.storeFence(); + return t; + } + + + protected abstract T getValue(BytesStore bs, int length) throws IORuntimeException; + + protected boolean toggle() { + return toggle = !toggle; + } + + public int valueCount() { + return (int) Stream.of(entries).filter(Objects::nonNull).count(); + } + + static class InternerEntry { + final BytesStore bytes; + final T t; + + InternerEntry(BytesStore bytes, T t) { + this.bytes = bytes; + this.t = t; + } + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/BigCopyMain.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/BigCopyMain.java new file mode 100644 index 0000000..8e598a2 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/BigCopyMain.java @@ -0,0 +1,53 @@ +package net.openhft.chronicle.bytes.util; + +import net.openhft.chronicle.bytes.Bytes; + +import java.io.IOException; +import java.io.OutputStream; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.nio.file.StandardOpenOption; +import java.util.Random; + +public class BigCopyMain { + + public static void main(String[] args) throws IOException { + int initialCapacity = 10 * 1024 * 1024; + long fileSize = 5368709120l; + byte[] buffer = new byte[initialCapacity]; + new Random().nextBytes(buffer); + + Bytes bytes = Bytes.allocateElasticDirect(initialCapacity); + while (bytes.writePosition() < fileSize) { + bytes.write(buffer); + } + System.out.println("Writing file 1"); + Path path = Paths.get("./textFile1.bin"); + try (OutputStream outputStream = Files.newOutputStream(path, StandardOpenOption.CREATE_NEW)) { + while (bytes.read(buffer) > 0) { + outputStream.write(buffer); + } + } + long result = path.toFile().length(); + if (fileSize != result) { + throw new RuntimeException(String.format("Expecting %s but file size is %s", fileSize, result)); + } + + bytes = Bytes.allocateElasticDirect(initialCapacity); + new Random().nextBytes(buffer); + while (bytes.writePosition() < fileSize) { + bytes.write(buffer); + } + path = Paths.get("./textFile2.bin"); + System.out.println("Writing file 2"); + // crashing... + try (OutputStream outputStream = Files.newOutputStream(path, StandardOpenOption.CREATE_NEW)) { + bytes.copyTo(outputStream); + } + result = path.toFile().length(); + if (fileSize != result) { + throw new RuntimeException(String.format("Expecting %s but file size is %s", fileSize, result)); + } + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/Bit8StringInterner.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/Bit8StringInterner.java new file mode 100644 index 0000000..0986584 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/Bit8StringInterner.java @@ -0,0 +1,42 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes.util; + +import net.openhft.chronicle.bytes.BytesStore; +import net.openhft.chronicle.core.pool.StringBuilderPool; +import org.jetbrains.annotations.NotNull; + +public class Bit8StringInterner extends AbstractInterner { + + private static final StringBuilderPool SBP = new StringBuilderPool(); + + public Bit8StringInterner(int capacity) throws IllegalArgumentException { + super(capacity); + } + + @SuppressWarnings("rawtypes") + @Override + + protected String getValue( BytesStore cs, int length) { + StringBuilder sb = SBP.acquireStringBuilder(); + for (int i = 0; i < length; i++) + sb.append((char) cs.readUnsignedByte(cs.readPosition() + i)); + return sb.toString(); + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/Compression.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/Compression.java new file mode 100644 index 0000000..b2d1bae --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/Compression.java @@ -0,0 +1,153 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes.util; + +import net.openhft.chronicle.bytes.Bytes; +import net.openhft.chronicle.bytes.BytesIn; +import net.openhft.chronicle.bytes.BytesOut; +import net.openhft.chronicle.core.io.IORuntimeException; +import net.openhft.chronicle.core.util.StringUtils; +import net.openhft.chronicle.core.util.ThrowingFunction; +import org.jetbrains.annotations.NotNull; +import org.jetbrains.annotations.Nullable; + +import java.io.*; + +@SuppressWarnings("rawtypes") +public interface Compression { + + static void compress( CharSequence cs, Bytes uncompressed, Bytes compressed) { + switch (cs.charAt(0)) { + case 'l': + if (StringUtils.isEqual("lzw", cs)) { + Compressions.LZW.compress(uncompressed, compressed); + return; + } + break; + case 'g': + if (StringUtils.isEqual("gzip", cs)) { + Compressions.GZIP.compress(uncompressed, compressed); + return; + } + break; + default: + break; + } + Compressions.Binary.compress(uncompressed, compressed); + } + + static void uncompress( CharSequence cs, BytesIn from, BytesOut to) throws IORuntimeException { + switch (cs.charAt(0)) { + case 'b': + case '!': + if (StringUtils.isEqual("binary", cs) || StringUtils.isEqual("!binary", cs)) { + Compressions.Binary.uncompress(from, to); + return; + } + + break; + case 'l': + if (StringUtils.isEqual("lzw", cs)) { + Compressions.LZW.uncompress(from, to); + return; + } + break; + case 'g': + if (StringUtils.isEqual("gzip", cs)) { + Compressions.GZIP.uncompress(from, to); + return; + } + break; + default: + throw new IllegalArgumentException("Unsupported compression " + cs); + } + } + + + static byte[] uncompress( CharSequence cs, T t, ThrowingFunction bytes) throws IORuntimeException { + switch (cs.charAt(0)) { + case 'b': + case '!': + if (StringUtils.isEqual("binary", cs) || StringUtils.isEqual("!binary", cs)) + return Compressions.Binary.uncompress(bytes.apply(t)); + break; + case 'l': + if (StringUtils.isEqual("lzw", cs)) + return Compressions.LZW.uncompress(bytes.apply(t)); + break; + case 'g': + if (StringUtils.isEqual("gzip", cs)) + return Compressions.GZIP.uncompress(bytes.apply(t)); + break; + default: + return null; + } + return null; + } + + default byte[] compress( byte[] bytes) { + ByteArrayOutputStream baos = new ByteArrayOutputStream(); + try (OutputStream output = compressingStream(baos)) { + output.write(bytes); + + } catch (IOException e) { + throw new AssertionError(e); // compressing in memory + } + return baos.toByteArray(); + } + + default void compress( BytesIn from, BytesOut to) { + try (OutputStream output = compressingStream(to.outputStream())) { + from.copyTo(output); + + } catch (IOException e) { + throw new AssertionError(e); // compressing in memory + } + } + + default byte[] uncompress( byte[] bytes) throws IORuntimeException { + ByteArrayOutputStream baos = new ByteArrayOutputStream(); + try (InputStream input = decompressingStream(new ByteArrayInputStream(bytes))) { + byte[] buf = new byte[512]; + for (int len; (len = input.read(buf)) > 0; ) + baos.write(buf, 0, len); + + } catch (IOException e) { + throw new IORuntimeException(e); + } + return baos.toByteArray(); + } + + default void uncompress( BytesIn from, BytesOut to) throws IORuntimeException { + try (InputStream input = decompressingStream(from.inputStream())) { + to.copyFrom(input); + + } catch (IOException e) { + throw new IORuntimeException(e); + } + } + + InputStream decompressingStream(InputStream input) throws IORuntimeException; + + OutputStream compressingStream(OutputStream output); + + default boolean available() { + return true; + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/Compressions.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/Compressions.java new file mode 100644 index 0000000..6de70a6 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/Compressions.java @@ -0,0 +1,107 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes.util; + +import net.openhft.chronicle.bytes.BytesIn; +import net.openhft.chronicle.bytes.BytesOut; +import net.openhft.chronicle.bytes.BytesStore; +import net.openhft.chronicle.core.io.IORuntimeException; +import org.jetbrains.annotations.NotNull; + +import java.io.IOException; +import java.io.InputStream; +import java.io.OutputStream; +import java.util.zip.*; + +@SuppressWarnings("rawtypes") +public enum Compressions implements Compression { + Binary { + + @Override + public byte[] compress(byte[] bytes) { + return bytes; + } + + @Override + public byte[] uncompress(byte[] bytes) throws IORuntimeException { + return bytes; + } + + @Override + public void compress( BytesIn from, BytesOut to) { + copy(from, to); + } + + @Override + public void uncompress( BytesIn from, BytesOut to) { + copy(from, to); + } + + private void copy( BytesIn from, BytesOut to) { + long copied = from.copyTo((BytesStore) to); + to.writeSkip(copied); + } + + @Override + public InputStream decompressingStream(InputStream input) { + return input; + } + + @Override + public OutputStream compressingStream(OutputStream output) { + return output; + } + }, + LZW { + + @Override + public InputStream decompressingStream( InputStream input) { + return new InflaterInputStream(input); + } + + + @Override + public OutputStream compressingStream( OutputStream output) { + return new DeflaterOutputStream(output, new Deflater(Deflater.DEFAULT_COMPRESSION)); + } + }, + GZIP { + + @Override + public InputStream decompressingStream( InputStream input) throws IORuntimeException { + try { + return new GZIPInputStream(input); + + } catch (IOException e) { + throw new AssertionError(e); + } + } + + + @Override + public OutputStream compressingStream( OutputStream output) { + try { + return new GZIPOutputStream(output); + + } catch (IOException e) { + throw new AssertionError(e); // in memory. + } + } + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/DecoratedBufferOverflowException.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/DecoratedBufferOverflowException.java new file mode 100644 index 0000000..70f9263 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/DecoratedBufferOverflowException.java @@ -0,0 +1,33 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes.util; + +import java.nio.BufferOverflowException; + +public final class DecoratedBufferOverflowException extends BufferOverflowException { + private final String message; + + public DecoratedBufferOverflowException(final String message) { + this.message = message; + } + + @Override + public String getMessage() { + return message; + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/DecoratedBufferUnderflowException.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/DecoratedBufferUnderflowException.java new file mode 100644 index 0000000..bb740af --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/DecoratedBufferUnderflowException.java @@ -0,0 +1,33 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes.util; + +import java.nio.BufferUnderflowException; + +public final class DecoratedBufferUnderflowException extends BufferUnderflowException { + private final String message; + + public DecoratedBufferUnderflowException(final String message) { + this.message = message; + } + + @Override + public String getMessage() { + return message; + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/EscapingStopCharTester.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/EscapingStopCharTester.java new file mode 100644 index 0000000..8cf5de1 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/EscapingStopCharTester.java @@ -0,0 +1,45 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes.util; + +import net.openhft.chronicle.bytes.StopCharTester; +import net.openhft.chronicle.core.annotation.ForceInline; + +public class EscapingStopCharTester implements StopCharTester { + private final StopCharTester sct; + private boolean escaped = false; + + public EscapingStopCharTester(StopCharTester sct) { + this.sct = sct; + } + + @Override + @ForceInline + public boolean isStopChar(int ch) { + if (escaped) { + escaped = false; + return false; + } + if (ch == '\\') { + escaped = true; + return false; + } + return sct.isStopChar(ch); + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/EscapingStopCharsTester.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/EscapingStopCharsTester.java new file mode 100644 index 0000000..cea6139 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/EscapingStopCharsTester.java @@ -0,0 +1,43 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes.util; + +import net.openhft.chronicle.bytes.StopCharsTester; + +public class EscapingStopCharsTester implements StopCharsTester { + private final StopCharsTester sct; + private boolean escaped = false; + + public EscapingStopCharsTester(StopCharsTester sct) { + this.sct = sct; + } + + @Override + public boolean isStopChar(int ch, int ch2) { + if (escaped) { + escaped = false; + return false; + } + if (ch == '\\') { + escaped = true; + return false; + } + return sct.isStopChar(ch, ch2); + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/PropertyReplacer.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/PropertyReplacer.java new file mode 100644 index 0000000..765d19c --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/PropertyReplacer.java @@ -0,0 +1,102 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes.util; + +import net.openhft.chronicle.bytes.BytesUtil; +import org.jetbrains.annotations.NotNull; + +import java.io.IOException; +import java.io.InputStream; +import java.util.Properties; +import java.util.regex.Matcher; +import java.util.regex.Pattern; + +public enum PropertyReplacer { + ; + + private static final Pattern EXPRESSION_PATTERN = Pattern.compile("\\$\\{\\s*([^}]*?)\\s*\\}"); + + public static String replaceTokensWithProperties(String expression) { + + StringBuilder result = new StringBuilder(expression.length()); + int i = 0; + Matcher matcher = EXPRESSION_PATTERN.matcher(expression); + while (matcher.find()) { + result.append(expression, i, matcher.start()); + String property = matcher.group(1); + + //look up property and replace + String p = System.getProperty(property); + + if (p == null) { + throw new IllegalArgumentException(String.format("System property is missing: " + + "[property=%s, expression=%s]", property, expression)); + } + + result.append(p); + + i = matcher.end(); + } + result.append(expression.substring(i)); + return result.toString(); + } + + public static String replaceTokensWithProperties(String expression, Properties properties) { + + StringBuilder result = new StringBuilder(expression.length()); + int i = 0; + Matcher matcher = EXPRESSION_PATTERN.matcher(expression); + while (matcher.find()) { + result.append(expression, i, matcher.start()); + String property = matcher.group(1); + + //look up property and replace + String p = properties.getProperty(property); + + if (p == null) { + throw new IllegalArgumentException(String.format("Property is missing: " + + "[property=%s, expression=%s, properties=%s]", property, expression, properties)); + } + + result.append(p); + + i = matcher.end(); + } + result.append(expression.substring(i)); + return result.toString(); + } + + + public static String fileAsString(String fileName) throws IOException { + try { + Class propertyReplacerClass = PropertyReplacer.class; + InputStream is = propertyReplacerClass.getResourceAsStream(fileName); + if (is != null) + return convertStreamToString(is); + } catch (Exception ignored) { + } + return BytesUtil.readFile(fileName).toString(); + } + + + private static String convertStreamToString( java.io.InputStream is) { + java.util.Scanner s = new java.util.Scanner(is).useDelimiter("\\A"); + return s.hasNext() ? s.next() : ""; + } + +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/StringInternerBytes.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/StringInternerBytes.java new file mode 100644 index 0000000..f1cd942 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/StringInternerBytes.java @@ -0,0 +1,72 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes.util; + +import net.openhft.chronicle.bytes.Bytes; +import net.openhft.chronicle.bytes.BytesUtil; +import net.openhft.chronicle.bytes.algo.BytesStoreHash; +import net.openhft.chronicle.core.Maths; +import net.openhft.chronicle.core.pool.StringInterner; +import net.openhft.chronicle.core.util.StringUtils; +import org.jetbrains.annotations.NotNull; + +import static net.openhft.chronicle.bytes.BytesUtil.toCharArray; + +public class StringInternerBytes extends StringInterner { + + public StringInternerBytes(int capacity) { + super(capacity); + } + + @SuppressWarnings("rawtypes") + public String intern( final Bytes bytes) { + return intern(bytes, Maths.toUInt31(bytes.readRemaining())); + } + + /** + * converts the bytes to a ISO-8859-1 String, the end of the string is either the bytes .limit + * () or a byte containing the stopByte ( which ever comes first ). If the string can be + * obtained from the pool, this string is used instead. otherwise, the string is added to the + * pool. + * + * @param bytes the bytes to convert to a string + * @param length parse the string up to the length + * @return the string made from bytes only ( rather than chars ) + */ + @SuppressWarnings("rawtypes") + public String intern( final Bytes bytes, int length) { + try { + int hash32 = BytesStoreHash.hash32(bytes, length); + int h = hash32 & mask; + String s = interner[h]; + long position = bytes.readPosition(); + if (BytesUtil.bytesEqual(s, bytes, position, length)) + return s; + int h2 = (hash32 >> shift) & mask; + String s2 = interner[h2]; + if (BytesUtil.bytesEqual(s2, bytes, position, length)) + return s2; + + char[] chars = toCharArray(bytes, position, length); + return interner[s == null || (s2 != null && toggle()) ? h : h2] = StringUtils.newString(chars); + } finally { + bytes.readSkip(length); + } + } +} diff --git a/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/UTF8StringInterner.java b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/UTF8StringInterner.java new file mode 100644 index 0000000..fdefa58 --- /dev/null +++ b/datastructures-bytes/src/main/java/net/openhft/chronicle/bytes/util/UTF8StringInterner.java @@ -0,0 +1,43 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes.util; + +import net.openhft.chronicle.bytes.AppendableUtil; +import net.openhft.chronicle.bytes.BytesStore; +import net.openhft.chronicle.bytes.UTFDataFormatRuntimeException; +import net.openhft.chronicle.core.pool.StringBuilderPool; +import org.jetbrains.annotations.NotNull; + +public class UTF8StringInterner extends AbstractInterner { + + private static final StringBuilderPool SBP = new StringBuilderPool(); + + public UTF8StringInterner(int capacity) throws IllegalArgumentException { + super(capacity); + } + + @SuppressWarnings("rawtypes") + @Override + + protected String getValue( BytesStore cs, int length) throws UTFDataFormatRuntimeException { + StringBuilder sb = SBP.acquireStringBuilder(); + AppendableUtil.parseUtf8(cs, sb, true, length); + return sb.toString(); + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/AllocationRatesTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/AllocationRatesTest.java new file mode 100644 index 0000000..27c3bcd --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/AllocationRatesTest.java @@ -0,0 +1,89 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import org.jetbrains.annotations.NotNull; +import org.junit.Test; + +import java.nio.ByteBuffer; + +import static org.junit.Assert.assertEquals; + +/** + * User: peter.lawrey Date: 24/12/13 Time: 19:43 + */ +/* +buffers 128 KB took an average of 18,441 ns for heap ByteBuffer, 33,683 ns for direct ByteBuffer and 1,761 for DirectStore +buffers 128 KB took an average of 13,062 ns for heap ByteBuffer, 17,855 ns for direct ByteBuffer and 903 for DirectStore +buffers 128 KB took an average of 12,809 ns for heap ByteBuffer, 21,602 ns for direct ByteBuffer and 922 for DirectStore +buffers 128 KB took an average of 10,768 ns for heap ByteBuffer, 21,444 ns for direct ByteBuffer and 894 for DirectStore +buffers 128 KB took an average of 8,739 ns for heap ByteBuffer, 22,684 ns for direct ByteBuffer and 890 for DirectStore + */ +public class AllocationRatesTest extends BytesTestCommon { + public static final int BATCH = 10; + static final int BUFFER_SIZE = 128 * 1024; + static final int ALLOCATIONS = 10000; + + @Test + public void compareAllocationRates() { + for (int i = 4; i >= 0; i--) { + long timeHBB = timeHeapByteBufferAllocations(); + long timeDBB = timeDirectByteBufferAllocations(); + long timeDS = timeDirectStoreAllocations(); + if (i == 0) + System.out.printf("buffers %d KB took an average of %,d ns for heap ByteBuffer, %,d ns for direct ByteBuffer and %,d for DirectStore%n", + BUFFER_SIZE / 1024, timeHBB / ALLOCATIONS, timeDBB / ALLOCATIONS, timeDS / ALLOCATIONS); + } + } + + private long timeHeapByteBufferAllocations() { + long start = System.nanoTime(); + for (int i = 0; i < ALLOCATIONS; i += BATCH) { + @NotNull ByteBuffer[] bb = new ByteBuffer[BATCH]; + for (int j = 0; j < BATCH; j++) + bb[j] = ByteBuffer.allocate(BUFFER_SIZE); + } + return System.nanoTime() - start; + } + + private long timeDirectByteBufferAllocations() { + long start = System.nanoTime(); + for (int i = 0; i < ALLOCATIONS; i += BATCH) { + @NotNull ByteBuffer[] bb = new ByteBuffer[BATCH]; + for (int j = 0; j < BATCH; j++) + bb[j] = ByteBuffer.allocateDirect(BUFFER_SIZE); + } + return System.nanoTime() - start; + } + + @SuppressWarnings("rawtypes") + private long timeDirectStoreAllocations() { + long start = System.nanoTime(); + for (int i = 0; i < ALLOCATIONS; i += BATCH) { + @NotNull NativeBytesStore[] ds = new NativeBytesStore[BATCH]; + for (int j = 0; j < BATCH; j++) + ds[j] = NativeBytesStore.lazyNativeBytesStoreWithFixedCapacity(BUFFER_SIZE); + for (int j = 0; j < BATCH; j++) { + ds[j].releaseLast(); + assertEquals(0, ds[j].refCount()); + } + } + return System.nanoTime() - start; + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/Allocator.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/Allocator.java new file mode 100644 index 0000000..847b83b --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/Allocator.java @@ -0,0 +1,102 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import org.jetbrains.annotations.NotNull; + +import java.nio.ByteBuffer; + +public enum Allocator { + + NATIVE { + @NotNull + @Override + Bytes elasticBytes(int capacity) { + return Bytes.elasticByteBuffer(capacity); + } + + @NotNull + @Override + ByteBuffer byteBuffer(int capacity) { + return ByteBuffer.allocateDirect(capacity); + } + }, + HEAP { + @NotNull + @Override + Bytes elasticBytes(int capacity) { + return Bytes.allocateElasticOnHeap(capacity); + } + + @NotNull + @Override + ByteBuffer byteBuffer(int capacity) { + return ByteBuffer.allocate(capacity); + } + }, + BYTE_BUFFER { + @NotNull + @Override + Bytes elasticBytes(int capacity) { + return Bytes.elasticHeapByteBuffer(capacity); + } + + @NotNull + @Override + ByteBuffer byteBuffer(int capacity) { + return ByteBuffer.allocate(capacity); + } + }, + NATIVE_UNCHECKED { + @NotNull + @Override + Bytes elasticBytes(int capacity) { + return Bytes.elasticByteBuffer(Math.max(128, capacity)).unchecked(true); + } + + @NotNull + @Override + ByteBuffer byteBuffer(int capacity) { + return ByteBuffer.allocateDirect(capacity); + } + }, + HEAP_UNCHECKED { + @NotNull + @Override + Bytes elasticBytes(int capacity) { + return Bytes.elasticHeapByteBuffer(Math.max(32, capacity)).unchecked(true); + } + + @NotNull + @Override + ByteBuffer byteBuffer(int capacity) { + return ByteBuffer.allocate(capacity); + } + }; + + @NotNull + abstract Bytes elasticBytes(int capacity); + + @NotNull + abstract ByteBuffer byteBuffer(int capacity); + + Bytes fixedBytes(int capacity) { + return Bytes.wrapForWrite(byteBuffer(capacity)); + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/AppendableUtilTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/AppendableUtilTest.java new file mode 100644 index 0000000..d412c7a --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/AppendableUtilTest.java @@ -0,0 +1,50 @@ +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.io.AbstractReferenceCounted; +import org.junit.After; +import org.junit.Test; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.fail; + +public class AppendableUtilTest extends BytesTestCommon { + + @After + public void checkRegisteredBytes() { + AbstractReferenceCounted.assertReferencesReleased(); + } + + @SuppressWarnings("rawtypes") + @Test + public void setLength() { + StringBuilder sb = new StringBuilder("hello world"); + AppendableUtil.setLength(sb, 5); + assertEquals("hello", sb.toString()); + + Bytes b = Bytes.from("Hello World"); + AppendableUtil.setLength(b, 5); + assertEquals("Hello", b.toString()); + + StringBuffer sb2 = new StringBuffer(); + try { + AppendableUtil.setLength(sb2, 0); + fail(); + } catch (IllegalArgumentException iae) { + // expected. + } + b.releaseLast(); + } + + @SuppressWarnings("rawtypes") + @Test + public void setCharAt() { + StringBuilder sb = new StringBuilder("hello world"); + Bytes b = Bytes.allocateElasticOnHeap(16).append("Hello World"); + AppendableUtil.setCharAt(sb, 5, 'X'); + AppendableUtil.setCharAt(b, 5, 'X'); + assertEquals("helloXworld", sb.toString()); + assertEquals("HelloXWorld", b.toString()); + b.releaseLast(); + } + +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ByteCheckSumTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ByteCheckSumTest.java new file mode 100644 index 0000000..63ac398 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ByteCheckSumTest.java @@ -0,0 +1,31 @@ +package net.openhft.chronicle.bytes; + +import org.junit.Test; + +import static org.junit.Assert.assertEquals; + +@SuppressWarnings("rawtypes") +public class ByteCheckSumTest extends BytesTestCommon { + @Test + public void test() { + Bytes bytes = Bytes.allocateDirect(32); + doTest(bytes); + bytes.releaseLast(); + } + + @Test + public void testHeap() { + Bytes bytes = Bytes.allocateElasticOnHeap(32); + doTest(bytes); + bytes.releaseLast(); + } + + private void doTest(Bytes bytes) { + bytes.append("abcdef"); + assertEquals(('a' + 'b' + 'c' + 'd' + 'e' + 'f') & 0xff, bytes.byteCheckSum()); + assertEquals(('b' + 'c' + 'd' + 'e' + 'f') & 0xff, bytes.byteCheckSum(1, 6)); + assertEquals(('b' + 'c' + 'd') & 0xff, bytes.byteCheckSum(1, 4)); + assertEquals(('c' + 'd') & 0xff, bytes.byteCheckSum(2, 4)); + assertEquals(('c') & 0xff, bytes.byteCheckSum(2, 3)); + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ByteStoreTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ByteStoreTest.java new file mode 100644 index 0000000..fcaa974 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ByteStoreTest.java @@ -0,0 +1,668 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.bytes.util.DecoratedBufferOverflowException; +import net.openhft.chronicle.core.Jvm; +import net.openhft.chronicle.core.io.AbstractReferenceCounted; +import net.openhft.chronicle.core.io.IORuntimeException; +import net.openhft.chronicle.core.threads.ThreadDump; +import org.jetbrains.annotations.NotNull; +import org.junit.After; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +import java.io.IOException; +import java.io.InputStream; +import java.io.OutputStream; +import java.nio.BufferUnderflowException; +import java.nio.ByteBuffer; +import java.nio.ByteOrder; +import java.util.Arrays; +import java.util.concurrent.ThreadLocalRandom; +import java.util.zip.GZIPInputStream; +import java.util.zip.GZIPOutputStream; + +import static java.nio.charset.StandardCharsets.ISO_8859_1; +import static net.openhft.chronicle.core.io.ReferenceOwner.INIT; +import static org.junit.Assert.*; +import static org.junit.Assume.assumeFalse; + +public class ByteStoreTest extends BytesTestCommon { + + private static final int SIZE = 128; + private Bytes bytes; + private BytesStore bytesStore; + private ThreadDump threadDump; + + @After + public void checkRegisteredBytes() { + bytes.releaseLast(); + AbstractReferenceCounted.assertReferencesReleased(); + } + + @Before + public void threadDump() { + threadDump = new ThreadDump(); + } + + @After + public void checkThreadDump() { + threadDump.assertNoNewThreads(); + } + + @Before + public void beforeTest() { + bytesStore = BytesStore.wrap(ByteBuffer.allocate(SIZE).order(ByteOrder.nativeOrder())); + bytes = bytesStore.bytesForWrite(); + bytesStore.release(INIT); + bytes.clear(); + } + + @Test + public void testReadIncompleteLong() { + bytes.writeLong(0x0102030405060708L); + assertEquals(0x0102030405060708L, bytes.readIncompleteLong(0)); + bytes.clear(); + + long l = 0; + for (int i = 1; i <= 8; i++) { + bytes.writeUnsignedByte(i); + l |= (long) i << (i * 8 - 8); + assertEquals(l, bytes.readIncompleteLong(0)); + } + } + + @Test + public void testCAS() { + if (Jvm.isArm()) return; // TODO FIX + final BytesStore bytes = BytesStore.wrap(ByteBuffer.allocate(100)); + bytes.compareAndSwapLong(0, 0L, 1L); + assertEquals(1L, bytes.readLong(0)); + bytes.releaseLast(); + } + + @Test + public void testRead() { + for (int i = 0; i < bytes.capacity(); i++) + bytes.writeByte(i, i); + bytes.writePosition(bytes.capacity()); + for (int i = 0; i < bytes.capacity(); i++) + assertEquals((byte) i, bytes.readByte()); + for (int i = (int) (bytes.capacity() - 1); i >= 0; i--) { + assertEquals((byte) i, bytes.readByte(i)); + } + } + + @Test + public void testReadFully() { + for (int i = 0; i < bytes.capacity(); i++) + bytes.writeByte((byte) i); + + @NotNull byte[] bytes = new byte[(int) this.bytes.capacity()]; + this.bytes.read(bytes); + for (int i = 0; i < this.bytes.capacity(); i++) + Assert.assertEquals((byte) i, bytes[i]); + } + + @Test + public void testCompareAndSetInt() { + Assert.assertTrue(bytes.compareAndSwapInt(0, 0, 1)); + Assert.assertFalse(bytes.compareAndSwapInt(0, 0, 1)); + Assert.assertTrue(bytes.compareAndSwapInt(8, 0, 1)); + Assert.assertTrue(bytes.compareAndSwapInt(0, 1, 2)); + } + + @Test + public void testCompareAndSetLong() { + if (Jvm.isArm()) return; // TODO FIX + + Assert.assertTrue(bytes.compareAndSwapLong(0L, 0L, 1L)); + Assert.assertFalse(bytes.compareAndSwapLong(0L, 0L, 1L)); + Assert.assertTrue(bytes.compareAndSwapLong(8L, 0L, 1L)); + Assert.assertTrue(bytes.compareAndSwapLong(0L, 1L, 2L)); + } + + @Test + public void testPosition() { + for (int i = 0; i < bytes.capacity(); i++) + bytes.writeByte((byte) i); + for (int i = (int) (bytes.capacity() - 1); i >= 0; i--) { + bytes.readPosition(i); + assertEquals((byte) i, bytes.readByte()); + } + } + + @Test + public void testCapacity() { + assertEquals(SIZE, bytes.capacity()); + final VanillaBytes bytes = Bytes.allocateDirect(10); + try { + assertEquals(10, bytes.capacity()); + } finally { + bytes.releaseLast(); + } + } + + @Test + public void testRemaining() { + assertEquals(0, bytes.readRemaining()); + assertEquals(SIZE, bytes.writeRemaining()); + bytes.writePosition(10); + assertEquals(10, bytes.readRemaining()); + assertEquals(SIZE - 10, bytes.writeRemaining()); + } + + @Test + public void testByteOrder() { + assertEquals(ByteOrder.nativeOrder(), bytes.byteOrder()); + } + + /* @Test + public void testWriteReadBytes() { + byte[] bytes = "Hello World!".getBytes(ISO_8859_1); + this.bytes.write(bytes); + byte[] bytes2 = new byte[bytes.length]; + this.bytes.position(0); + this.bytes.read(bytes2); + assertTrue(Arrays.equals(bytes, bytes2)); + + this.bytes.write(22, bytes); + byte[] bytes3 = new byte[bytes.length]; + this.bytes.skipBytes((int) (22 - this.bytes.position())); + assertEquals(bytes3.length, this.bytes.read(bytes3)); + assertTrue(Arrays.equals(bytes, bytes3)); + this.bytes.position(this.bytes.capacity()); + assertEquals(-1, this.bytes.read(bytes3)); + }*/ + @Test + public void testWriteReadUtf8() throws IORuntimeException { + bytes.writeUtf8(null); + final String[] words = new String[]{"Hello", "World!", "Bye£€!", ""}; + for (String word : words) { + bytes.writeUtf8(word); + } + + assertNull(bytes.readUtf8()); + for (String word : words) { + assertEquals(word, bytes.readUtf8()); + } + assertNull(bytes.readUtf8()); + assertEquals(26, bytes.readPosition()); // check the size + + bytes.readPosition(0); + final StringBuilder sb = new StringBuilder(); + Assert.assertFalse(bytes.readUtf8(sb)); + for (String word : words) { + Assert.assertTrue(bytes.readUtf8(sb)); + Assert.assertEquals(word, sb.toString()); + } + assertFalse(bytes.readUtf8(sb)); + Assert.assertEquals("", sb.toString()); + } + + @Test + public void testWriteReadUTF() { + final String[] words = "Hello,World!,Bye£€!".split(","); + for (String word : words) { + bytes.writeUtf8(word); + } + bytes.writeUtf8(""); + bytes.writeUtf8(null); + assertEquals(26, bytes.writePosition()); // check the size, more bytes for less strings than writeUtf8 + + for (String word : words) { + assertEquals(word, bytes.readUtf8()); + } + assertEquals("", bytes.readUtf8()); + assertNull(bytes.readUtf8()); + } + + @Test + public void testWriteReadByteBuffer() { + final byte[] bytes = "Hello\nWorld!\r\nBye".getBytes(ISO_8859_1); + this.bytes.writeSome(ByteBuffer.wrap(bytes)); + + final byte[] bytes2 = new byte[bytes.length + 1]; + final ByteBuffer bb2 = ByteBuffer.wrap(bytes2); + this.bytes.read(bb2); + + Assert.assertEquals(bytes.length, bb2.position()); + final byte[] bytes2b = Arrays.copyOf(bytes2, bytes.length); + Assert.assertArrayEquals(bytes, bytes2b); + } + + @Test + public void testReadWriteBoolean() { + for (int i = 0; i < 32; i++) + bytes.writeBoolean(i, (i & 3) == 0); + bytes.writePosition(32); + for (int i = 32; i < 64; i++) { + final boolean flag = (i & 5) == 0; + bytes.writeBoolean(flag); + } + + for (int i = 0; i < 32; i++) + assertEquals((i & 3) == 0, bytes.readBoolean()); + for (int i = 32; i < 64; i++) { + final boolean actual = bytes.readBoolean(i); + final boolean expected = (i & 5) == 0; + assertEquals(expected, actual); + } + } + + @Test + public void testReadWriteShort() { + for (int i = 0; i < 32; i += 2) + bytes.writeShort(i, (short) i); + bytes.writePosition(32); + for (int i = 32; i < 64; i += 2) + bytes.writeShort((short) i); + + for (int i = 0; i < 32; i += 2) + assertEquals(i, bytes.readShort()); + for (int i = 32; i < 64; i += 2) + assertEquals(i, bytes.readShort(i)); + } + + @Test + public void testReadWriteStop() throws IORuntimeException { + final long[] longs = {Long.MIN_VALUE, Long.MAX_VALUE, Integer.MIN_VALUE, Integer.MAX_VALUE}; + for (long i : longs) { + bytes.writeStopBit(i); +// LOG.info(i + " " + bytes.position()); + } + assertEquals(9 + 10, +5 + 6, bytes.writePosition()); + + for (long i : longs) + assertEquals(i, bytes.readStopBit()); + } + + @Test + public void testReadWriteUnsignedShort() { + for (int i = 0; i < 32; i += 2) + bytes.writeUnsignedShort(i, (~i) & 0xFFFF); + bytes.writePosition(32); + for (int i = 32; i < 64; i += 2) + bytes.writeUnsignedShort(~i & 0xFFFF); + + for (int i = 0; i < 32; i += 2) + assertEquals(~i & 0xFFFF, bytes.readUnsignedShort()); + for (int i = 32; i < 64; i += 2) + assertEquals(~i & 0xFFFF, bytes.readUnsignedShort(i)); + } + + @Test + public void testReadWriteInt() { + for (int i = 0; i < 32; i += 4) + bytes.writeInt(i, i); + bytes.writePosition(32); + for (int i = 32; i < 64; i += 4) + bytes.writeInt(i); + + for (int i = 0; i < 32; i += 4) + assertEquals(i, bytes.readInt()); + for (int i = 32; i < 64; i += 4) + assertEquals(i, bytes.readInt(i)); + } + + @Test + public void testReadWriteThreadSafeInt() { + for (int i = 0; i < 32; i += 4) + bytes.writeOrderedInt(i, i); + bytes.writePosition(32); + for (int i = 32; i < 64; i += 4) + bytes.writeOrderedInt(i); + + for (int i = 0; i < 32; i += 4) + assertEquals(i, bytes.readVolatileInt()); + for (int i = 32; i < 64; i += 4) + assertEquals(i, bytes.readVolatileInt(i)); + } + + @Test + public void testReadWriteFloat() { + for (int i = 0; i < 32; i += 4) + bytes.writeFloat(i, i); + bytes.writePosition(32); + for (int i = 32; i < 64; i += 4) + bytes.writeFloat(i); + + for (int i = 0; i < 32; i += 4) + assertEquals(i, bytes.readFloat(), 0); + for (int i = 32; i < 64; i += 4) + assertEquals(i, bytes.readFloat(i), 0); + } + + @Test + public void testReadWriteUnsignedInt() { + for (int i = 0; i < 32; i += 4) + bytes.writeUnsignedInt(i, ~i & 0xFFFF); + bytes.writePosition(32); + for (int i = 32; i < 64; i += 4) + bytes.writeUnsignedInt(~i & 0xFFFF); + + for (int i = 0; i < 32; i += 4) + assertEquals(~i & 0xFFFFL, bytes.readUnsignedInt()); + for (int i = 32; i < 64; i += 4) + assertEquals(~i & 0xFFFFL, bytes.readUnsignedInt(i)); + } + + @Test + public void testReadWriteLong() { + for (long i = 0; i < 32; i += 8) + bytes.writeLong(i, i); + bytes.writePosition(32); + for (long i = 32; i < 64; i += 8) + bytes.writeLong(i); + + for (long i = 0; i < 32; i += 8) + assertEquals(i, bytes.readLong()); + for (long i = 32; i < 64; i += 8) + assertEquals(i, bytes.readLong(i)); + } + + @Test + public void testReadWriteThreadSafeLong() { + if (Jvm.isArm()) + return; // TODO FIX + for (long i = 0; i < 32; i += 8) + bytes.writeOrderedLong(i, i); + bytes.writePosition(32); + for (long i = 32; i < 64; i += 8) + bytes.writeOrderedLong(i); +// LOG.info(bytes.bytes().toDebugString()); + + for (long i = 0; i < 32; i += 8) + assertEquals(i, bytes.readVolatileLong()); + for (long i = 32; i < 64; i += 8) + assertEquals(i, bytes.readVolatileLong(i)); + } + + @Test + public void testReadWriteDouble() { + for (long i = 0; i < 32; i += 8) + bytes.writeDouble(i, i); + bytes.writePosition(32); + for (long i = 32; i < 64; i += 8) + bytes.writeDouble(i); + + for (long i = 0; i < 32; i += 8) + assertEquals(i, bytes.readDouble(), 0); + for (long i = 32; i < 64; i += 8) + assertEquals(i, bytes.readDouble(i), 0); + } + + @Test + public void testReadWriteDoubleAndInt() { + for (long i = 0; i < 48; i += 12) + bytes.writeDoubleAndInt(i, (int) i); + + for (long i = 0; i < 48; i += 12) { + assertEquals(i, bytes.readDouble(), 0); + assertEquals(i, bytes.readInt()); + } + } + + @Test + public void testReadWriteStopBitDouble() { + final double[] doubles = { + -Double.MAX_VALUE, Double.NEGATIVE_INFINITY, + Byte.MIN_VALUE, Byte.MAX_VALUE, + Short.MIN_VALUE, Short.MAX_VALUE, + Long.MIN_VALUE, Long.MAX_VALUE, + Integer.MIN_VALUE, Integer.MAX_VALUE}; + for (double i : doubles) { + bytes.writeStopBit(i); + //System.out.println(i + " " + bytes.writePosition()); + } + + for (double i : doubles) + assertEquals(i, bytes.readStopBitDouble(), 0.0); + } + + @Test + public void testStream() throws IOException { + final BytesStore bytes0 = BytesStore.wrap(ByteBuffer.allocate(1000)); + final Bytes bytes2 = bytes0.bytesForWrite(); + bytes0.release(INIT); + try { + final GZIPOutputStream out = new GZIPOutputStream(bytes2.outputStream()); + out.write("Hello world\n".getBytes(ISO_8859_1)); + out.close(); + + try (GZIPInputStream in = new GZIPInputStream(bytes2.inputStream())) { + final byte[] bytes = new byte[12]; + for (int i = 0; i < 12; i++) + bytes[i] = (byte) in.read(); + Assert.assertEquals(-1, in.read()); + Assert.assertEquals("Hello world\n", new String(bytes)); + } + } finally { + bytes2.releaseLast(); + } + } + + @Test + public void testStream2() throws IOException { + try (OutputStream out = bytes.outputStream()) { + out.write(11); + out.write(22); + out.write(33); + out.write(44); + out.write(55); + + try (InputStream in = bytes.inputStream()) { + assertFalse(in.markSupported()); + assertEquals(11, in.read()); + assertEquals(1, bytes.readPosition()); + assertEquals(22, in.read()); + assertEquals(2, bytes.readPosition()); + assertEquals(33, in.read()); + + assertEquals(1, in.skip(1)); + assertEquals(4, bytes.readPosition()); + assertEquals(1, bytes.readRemaining()); + assertEquals(55, in.read()); + + assertEquals(-1, in.read()); + } + } + } + + @Test + public void testAddAndGet() { + final BytesStore bytesStore2 = NativeBytesStore.nativeStore(128); + try { + for (int i = 0; i < 10; i++) + bytesStore.addAndGetInt(0L, 10); + assertEquals(100, bytesStore.readInt(0L)); + assertEquals(0, bytesStore.readInt(4L)); + + for (int i = 0; i < 11; i++) + bytesStore.addAndGetInt(4L, 11); + assertEquals(100, bytesStore.readInt(0L)); + assertEquals(11 * 11, bytesStore.readInt(4L)); + } finally { + bytesStore2.releaseLast(); + } + } + + @Test + public void testAddAndGetLongNative() { + if (Jvm.isArm()) + return; // TODO FIX + final BytesStore bytesStore2 = NativeBytesStore.nativeStore(128); + try { + checkAddAndGetLong(); + } finally { + bytesStore2.releaseLast(); + } + } + + @Test + public void testAddAndGetLong() { + if (Jvm.isArm()) + return; // TODO FIX + final BytesStore bytesStore2 = BytesStore.wrap(new byte[128]); + try { + checkAddAndGetLong(); + } finally { + bytesStore2.releaseLast(); + } + } + + private void checkAddAndGetLong() { + for (int i = 0; i < 10; i++) + assertEquals((i + 1) * 10, bytesStore.addAndGetLong(0L, 10)); + assertEquals(100, bytesStore.readLong(0L)); + assertEquals(0, bytesStore.readLong(8L)); + + for (int i = 0; i < 11; i++) + bytesStore.addAndGetLong(8L, 11); + assertEquals(100, bytesStore.readLong(0L)); + assertEquals(11 * 11, bytesStore.readLong(8L)); + } + + @Test + public void testAddAndGetFloat() { + final BytesStore bytesStore2 = NativeBytesStore.nativeStore(128); + try { + + for (int i = 0; i < 10; i++) + bytesStore2.addAndGetFloat(0L, 10); + assertEquals(100, bytesStore2.readFloat(0L), 0f); + assertEquals(0, bytesStore2.readVolatileFloat(4L), 0f); + + for (int i = 0; i < 11; i++) + bytesStore2.addAndGetFloat(4L, 11); + assertEquals(100, bytesStore2.readVolatileFloat(0L), 0f); + assertEquals(11 * 11, bytesStore2.readFloat(4L), 0f); + } finally { + bytesStore2.releaseLast(); + } + } + + @Test + public void testAddAndGetDouble() { + final BytesStore bytesStore2 = NativeBytesStore.nativeStore(128); + try { + + for (int i = 0; i < 10; i++) + bytesStore2.addAndGetDouble(0L, 10); + assertEquals(100, bytesStore2.readDouble(0L), 0.0); + assertEquals(0, bytesStore2.readVolatileDouble(8L), 0.0); + + for (int i = 0; i < 11; i++) + bytesStore2.addAndGetDouble(8L, 11); + assertEquals(100, bytesStore2.readVolatileDouble(0L), 0.0); + assertEquals(11 * 11, bytesStore2.readDouble(8L), 0.0); + } finally { + bytesStore2.releaseLast(); + } + } + + @Test + public void testToString() { + assumeFalse(GuardedNativeBytes.areNewGuarded()); + NativeBytesStore bytes0 = NativeBytesStore.nativeStore(32); + final Bytes bytes = bytes0.bytesForWrite(); + bytes0.release(INIT); + try { + assertEquals("[pos: 0, rlim: 0, wlim: 8EiB, cap: 8EiB ] ǁ‡٠٠٠٠٠٠٠٠", bytes.toDebugString()); + bytes.writeUnsignedByte(1); + System.gc(); + assertEquals(1, bytes.refCount()); + assertEquals("[pos: 0, rlim: 1, wlim: 8EiB, cap: 8EiB ] ǁ⒈‡٠٠٠٠٠٠٠٠٠٠٠٠٠٠٠", bytes.toDebugString()); + bytes.writeUnsignedByte(2); + bytes.readByte(); + assertEquals("[pos: 1, rlim: 2, wlim: 8EiB, cap: 8EiB ] ⒈ǁ⒉‡٠٠٠٠٠٠٠٠٠٠٠٠٠٠", bytes.toDebugString()); + bytes.writeUnsignedByte(3); + assertEquals("[pos: 1, rlim: 3, wlim: 8EiB, cap: 8EiB ] ⒈ǁ⒉⒊‡٠٠٠٠٠٠٠٠٠٠٠٠٠", bytes.toDebugString()); + bytes.writeUnsignedByte(4); + bytes.readByte(); + assertEquals("[pos: 2, rlim: 4, wlim: 8EiB, cap: 8EiB ] ⒈⒉ǁ⒊⒋‡٠٠٠٠٠٠٠٠٠٠٠٠", bytes.toDebugString()); + bytes.writeUnsignedByte(5); + assertEquals("[pos: 2, rlim: 5, wlim: 8EiB, cap: 8EiB ] ⒈⒉ǁ⒊⒋⒌‡٠٠٠٠٠٠٠٠٠٠٠", bytes.toDebugString()); + bytes.writeUnsignedByte(6); + bytes.readByte(); + System.gc(); + assertEquals(1, bytes.refCount()); + assertEquals("[pos: 3, rlim: 6, wlim: 8EiB, cap: 8EiB ] ⒈⒉⒊ǁ⒋⒌⒍‡٠٠٠٠٠٠٠٠٠٠", bytes.toDebugString()); + bytes.writeUnsignedByte(7); + assertEquals("[pos: 3, rlim: 7, wlim: 8EiB, cap: 8EiB ] ⒈⒉⒊ǁ⒋⒌⒍⒎‡٠٠٠٠٠٠٠٠٠", bytes.toDebugString()); + bytes.writeUnsignedByte(8); + assertEquals("[pos: 3, rlim: 8, wlim: 8EiB, cap: 8EiB ] ⒈⒉⒊ǁ⒋⒌⒍⒎⒏‡٠٠٠٠٠٠٠٠", bytes.toDebugString()); + } finally { + bytes.releaseLast(); + assertEquals(0, bytes.refCount()); + } + } + + @Test + public void testOverflowReadUtf8() throws IORuntimeException { + final NativeBytesStore bs = NativeBytesStore.nativeStore(32); + BytesInternal.writeStopBit(bs, 10, 30); + try { + bs.readUtf8(10, new StringBuilder()); + throw new AssertionError("should throw BufferUnderflowException"); + } catch (BufferUnderflowException e) { + // expected + } finally { + bs.releaseLast(); + } + } + + @Test + public void testCopyTo() { + final BytesStore bytesStoreOriginal = BytesStore.wrap(new byte[SIZE]); + try { + for (int i = 0; i < SIZE; i++) { + final byte randomByte = (byte) ThreadLocalRandom.current().nextInt(Byte.MAX_VALUE); + bytesStoreOriginal.writeByte(i, randomByte); + } + final BytesStore bytesStoreCopy = BytesStore.wrap(new byte[SIZE]); + try { + bytesStoreOriginal.copyTo(bytesStoreCopy); + for (int i = 0; i < SIZE; i++) + assertEquals(bytesStoreOriginal.readByte(i), bytesStoreCopy.readByte(i)); + } finally { + bytesStoreCopy.releaseLast(); + } + } finally { + bytesStoreOriginal.releaseLast(); + } + } + + @Test + public void testEmpty() { + assertEquals(0, BytesStore.empty().realCapacity()); + } + + @Test(expected = DecoratedBufferOverflowException.class) + public void testClearAndPadTooMuch() { + final Bytes b = bytesStore.bytesForWrite(); + try { + b.clearAndPad(SIZE + 1); + } finally { + b.releaseLast(); + } + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ByteStringAppenderTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ByteStringAppenderTest.java new file mode 100644 index 0000000..40b1180 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ByteStringAppenderTest.java @@ -0,0 +1,256 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.Jvm; +import net.openhft.chronicle.core.io.AbstractReferenceCounted; +import net.openhft.chronicle.core.io.IORuntimeException; +import net.openhft.chronicle.core.threads.ThreadDump; +import net.openhft.chronicle.core.util.ObjectUtils; +import org.jetbrains.annotations.NotNull; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.junit.runners.Parameterized; + +import java.util.Arrays; +import java.util.Collection; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assume.assumeFalse; + +@RunWith(Parameterized.class) +public class ByteStringAppenderTest extends BytesTestCommon { + + @NotNull + private ThreadDump threadDump; + @SuppressWarnings("rawtypes") + private final Bytes bytes; + + public ByteStringAppenderTest(String name, boolean direct) { + bytes = direct ? Bytes.allocateElasticDirect() : Bytes.elasticByteBuffer(); + } + + @Parameterized.Parameters(name = "{0}") + public static Collection data() { + return Arrays.asList(new Object[][]{ +// {"heap", false}, + {"native", true} + }); + } + + @After + public void checkRegisteredBytes() { + bytes.releaseLast(); + AbstractReferenceCounted.assertReferencesReleased(); + } + + @Before + public void threadDump() { + threadDump = new ThreadDump(); + } + + @After + public void checkThreadDump() { + threadDump.assertNoNewThreads(); + } + + @Test + public void testConvertTo() { + Bytes hello = Bytes.from("hello"); + Bytes hello1 = ObjectUtils.convertTo(Bytes.class, "hello"); + assertEquals(hello, hello1); + VanillaBytes bytes = Bytes.allocateDirect(2); + Bytes one = ObjectUtils.convertTo(Bytes.class, 1); + assertEquals(bytes.append(1), one); + one.releaseLast(); + hello1.releaseLast(); + hello.releaseLast(); + bytes.releaseLast(); + } + + @Test + public void testAppendInt() throws IORuntimeException { + for (int expected = 1; expected != 0; expected *= 2) { + bytes.append(expected); + bytes.append(","); + bytes.append(-expected); + bytes.append(","); + + assertEquals(expected, (int) bytes.parseLong()); + assertEquals(-expected, (int) bytes.parseLong()); + } + } + + @Test + public void testAppend() throws IORuntimeException { + for (long expected = 1; expected != 0; expected *= 2) { + bytes.clear(); + bytes.append(expected); + bytes.append(","); + bytes.append(-expected); + bytes.append(","); +// System.out.println(bytes); + assertEquals(expected, bytes.parseLong()); + assertEquals(-expected, bytes.parseLong()); + } + } + + @Test + public void testAppendWithOffset() { + bytes.readLimit(20); + bytes.writeLimit(20); + for (long expected : new long[]{123456, 12345, 1234, 123, 12, 1, 0}) { + bytes.append(10, expected, 6); + assertEquals(expected, bytes.parseLong(10)); + } + } + + @Test + public void testAppendWithOffsetNeg() { + bytes.readLimit(20); + bytes.writeLimit(20); + for (long expected : new long[]{-123456, 12345, -1234, 123, -12, 1, 0}) { + bytes.append(10, expected, 7); + assertEquals(expected, bytes.parseLong(10)); + } + } + + @Test + public void testAppendDouble() throws IORuntimeException { + assumeFalse(GuardedNativeBytes.areNewGuarded()); + testAppendDouble0(-1.42278619425894E11); +/* + @NotNull Random random = new Random(1); + for (int i = 0; i < 100000; i++) { + double d = Math.pow(1e32, random.nextDouble()) / 1e6; + if (i % 3 == 0) d = -d; + testAppendDouble0(d); + } +*/ + } + + private void testAppendDouble0(double d) throws IORuntimeException { + bytes.clear(); + bytes.append(d).append(' '); + + double d2 = bytes.parseDouble(); + assertEquals(d, d2, 0); + +/* assumes self terminating. + bytes.clear(); + bytes.appendDouble(d); + bytes.flip(); + double d3 = bytes.parseDouble(); + Assert.assertEquals(d, d3, 0); +*/ + } + + @Test + public void testAppendLongDecimal() { + assumeFalse(GuardedNativeBytes.areNewGuarded()); + bytes.appendDecimal(128, 0).append('\n'); + bytes.appendDecimal(128, 1).append('\n'); + bytes.appendDecimal(128, 2).append('\n'); + bytes.appendDecimal(128, 3).append('\n'); + bytes.appendDecimal(128, 4).append('\n'); + + bytes.appendDecimal(0, 0).append('\n'); + bytes.appendDecimal(0, 1).append('\n'); + bytes.appendDecimal(0, 4).append('\n'); + bytes.appendDecimal(1, 0).append('\n'); + bytes.appendDecimal(1, 1).append('\n'); + bytes.appendDecimal(1, 2).append('\n'); + bytes.appendDecimal(1, 3).append('\n'); + bytes.appendDecimal(1, 4).append('\n'); + + assertEquals("128\n" + + "12.8\n" + + "1.28\n" + + "0.128\n" + + "0.0128\n" + + "0\n" + + "0.0\n" + + "0.0000\n" + + "1\n" + + "0.1\n" + + "0.01\n" + + "0.001\n" + + "0.0001\n", bytes.toString()); + } + + @Test + public void testAppendDoublePrecision() { + assumeFalse(GuardedNativeBytes.areNewGuarded()); + + bytes.append(1.28, 0).append('\n'); + bytes.append(-1.28, 1).append('\n'); + bytes.append(1.28, 2).append('\n'); + bytes.append(-1.28, 3).append('\n'); + bytes.append(1.28, 4).append('\n'); + + bytes.append(0, 0).append('\n'); + bytes.append(-0, 1).append('\n'); + bytes.append(0, 4).append('\n'); + bytes.append(1, 0).append('\n'); + bytes.append(-1.11, 1).append('\n'); + bytes.append(0.111, 2).append('\n'); + bytes.append(1.1, 3).append('\n'); + bytes.append(-0.01111, 4).append('\n'); + + assertEquals("1\n" + + "-1.3\n" + + "1.28\n" + + "-1.280\n" + + "1.2800\n" + + "0\n" + + "0.0\n" + + "0.0000\n" + + "1\n" + + "-1.1\n" + + "0.11\n" + + "1.100\n" + + "-0.0111\n", bytes.toString()); + } + + @Test + public void tens() { + double d = 1; + for (int i = 0; i <= (int) Math.log10(Double.MAX_VALUE); i++) { + bytes.clear(); + { + double expected = d; + bytes.append(expected).append(' '); + String s = bytes.toString(); + double d2 = bytes.parseDouble(); + double ulp = i < 90 ? 0 : i < 235 ? Math.ulp(d) : Math.ulp(d) * 2; + assertEquals(s, expected, d2, ulp); + } + { + double expected = 1 / d; + bytes.append(expected).append(' '); + String s = bytes.toString(); + double d2 = bytes.parseDouble(); + assertEquals(s, expected, d2, Jvm.isArm() ? 2e-39 : 2e-40); + } + d *= 10; + } + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ByteStringParserTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ByteStringParserTest.java new file mode 100644 index 0000000..2b2377e --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ByteStringParserTest.java @@ -0,0 +1,245 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.io.AbstractReferenceCounted; +import net.openhft.chronicle.core.io.IORuntimeException; +import net.openhft.chronicle.core.threads.ThreadDump; +import org.jetbrains.annotations.NotNull; +import org.junit.After; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +import java.io.IOException; +import java.nio.charset.StandardCharsets; + +import static java.nio.charset.StandardCharsets.ISO_8859_1; +import static net.openhft.chronicle.bytes.StopCharTesters.CONTROL_STOP; +import static net.openhft.chronicle.bytes.StopCharTesters.SPACE_STOP; +import static org.junit.Assert.assertEquals; +import static org.junit.Assume.assumeFalse; + +public class ByteStringParserTest extends BytesTestCommon { + @SuppressWarnings("rawtypes") + @NotNull + Bytes bytes = Bytes.elasticByteBuffer(); + private ThreadDump threadDump; + + @After + public void checkRegisteredBytes() { + bytes.releaseLast(); + AbstractReferenceCounted.assertReferencesReleased(); + } + + @Before + public void threadDump() { + threadDump = new ThreadDump(); + } + + @After + public void checkThreadDump() { + threadDump.assertNoNewThreads(); + } + + @SuppressWarnings("rawtypes") + @Test + public void testParseLong() { + long expected = 123456789012345678L; + bytes.append(expected); + Bytes bytes2 = Bytes.allocateElasticOnHeap((int) bytes.readRemaining()); + + Assert.assertEquals(expected, bytes.parseLong(0)); + Assert.assertEquals(expected, BytesInternal.parseLong(bytes)); + + bytes2.append(expected); + Assert.assertEquals(expected, bytes2.parseLong(0)); + Assert.assertEquals(expected, BytesInternal.parseLong(bytes2)); + bytes2.releaseLast(); + + } + + @Test + public void testParseInt() { + int expected = 123; + bytes.append(expected); + + Assert.assertEquals(expected, BytesInternal.parseLong(bytes)); + } + + @Test + public void testParseDouble() { + assumeFalse(GuardedNativeBytes.areNewGuarded()); + double expected = 123.1234; + bytes.append(expected); + + Assert.assertEquals(expected, BytesInternal.parseDouble(bytes), 0); + } + + @Test + public void testParseFloat() { + assumeFalse(GuardedNativeBytes.areNewGuarded()); + float expected = 123; + bytes.append(expected); + + Assert.assertEquals(expected, BytesInternal.parseDouble(bytes), 0); + } + + @Test + public void testParseShort() { + short expected = 123; + bytes.append(expected); + + Assert.assertEquals(expected, BytesInternal.parseLong(bytes)); + } + + @Test + public void testAppendParse() throws IOException, IORuntimeException { + assumeFalse(GuardedNativeBytes.areNewGuarded()); + bytes.write("word£€) ".getBytes(StandardCharsets.UTF_8)); + bytes.append("word£€)").append(' '); + bytes.append(1234).append(' '); + bytes.append(123456L).append(' '); + bytes.append(1.2345).append(' '); + bytes.append(0.0012345).append(' '); + + assertEquals("word£€)", bytes.parseUtf8(SPACE_STOP)); + assertEquals("word£€)", bytes.parseUtf8(SPACE_STOP)); + assertEquals(1234, bytes.parseLong()); + assertEquals(123456L, bytes.parseLong()); + assertEquals(1.2345, bytes.parseDouble(), 0); + assertEquals(0.0012345, bytes.parseDouble(), 0); + } + + @Test + public void testLastDecimalPlaces() throws IOException, IORuntimeException { + assumeFalse(GuardedNativeBytes.areNewGuarded()); + bytes.append("1").append(' '); + bytes.append("1.").append(' '); + bytes.append("0.0").append(' '); + bytes.append("0.1").append(' '); + bytes.append("1.1").append(' '); + bytes.append("1.28").append(' '); + bytes.append("1.10").append(' '); + bytes.append("1.10000").append(' '); + + // test long first + bytes.readPosition(0); + assertEquals(1, bytes.parseLongDecimal()); + assertEquals(0, bytes.lastDecimalPlaces()); + + assertEquals(1, bytes.parseLongDecimal()); + assertEquals(0, bytes.lastDecimalPlaces()); + + assertEquals(0, bytes.parseLongDecimal()); + assertEquals(1, bytes.lastDecimalPlaces()); + + assertEquals(1, bytes.parseLongDecimal()); + assertEquals(1, bytes.lastDecimalPlaces()); + + assertEquals(11, bytes.parseLongDecimal()); + assertEquals(1, bytes.lastDecimalPlaces()); + + assertEquals(128, bytes.parseLongDecimal()); + assertEquals(2, bytes.lastDecimalPlaces()); + + assertEquals(110, bytes.parseLongDecimal()); + assertEquals(2, bytes.lastDecimalPlaces()); + + assertEquals(110000, bytes.parseLongDecimal()); + assertEquals(5, bytes.lastDecimalPlaces()); + + // test double + bytes.readPosition(0); + assertEquals(1, bytes.parseDouble(), 0); + assertEquals(0, bytes.lastDecimalPlaces()); + + assertEquals(1., bytes.parseDouble(), 0); + assertEquals(0, bytes.lastDecimalPlaces()); + + assertEquals(0.0, bytes.parseDouble(), 0); + assertEquals(1, bytes.lastDecimalPlaces()); + + assertEquals(0.1, bytes.parseDouble(), 0); + assertEquals(1, bytes.lastDecimalPlaces()); + + assertEquals(1.1, bytes.parseDouble(), 0); + assertEquals(1, bytes.lastDecimalPlaces()); + + assertEquals(1.28, bytes.parseDouble(), 0); + assertEquals(2, bytes.lastDecimalPlaces()); + + assertEquals(1.10, bytes.parseDouble(), 0); + assertEquals(2, bytes.lastDecimalPlaces()); + + assertEquals(1.10000, bytes.parseDouble(), 0); + assertEquals(5, bytes.lastDecimalPlaces()); + } + + @Test + public void testAppendParseUTF() throws IOException { + assumeFalse(GuardedNativeBytes.areNewGuarded()); + @NotNull String[] words = "Hello,World!,Bye£€!".split(","); + for (@NotNull String word : words) { + bytes.append(word).append('\t'); + } + bytes.append('\t'); + + for (String word : words) { + assertEquals(word, bytes.parseUtf8(CONTROL_STOP)); + } + assertEquals("", bytes.parseUtf8(CONTROL_STOP)); + + bytes.readPosition(0); + @NotNull StringBuilder sb = new StringBuilder(); + for (String word : words) { + bytes.parseUtf8(sb, CONTROL_STOP); + Assert.assertEquals(word, sb.toString()); + } + bytes.parseUtf8(sb, CONTROL_STOP); + Assert.assertEquals("", sb.toString()); + + bytes.readPosition(0); + bytes.skipTo(CONTROL_STOP); + assertEquals(6, bytes.readPosition()); + bytes.skipTo(CONTROL_STOP); + assertEquals(13, bytes.readPosition()); + Assert.assertTrue(bytes.skipTo(CONTROL_STOP)); + assertEquals(23, bytes.readPosition()); + Assert.assertTrue(bytes.skipTo(CONTROL_STOP)); + assertEquals(24, bytes.readPosition()); + Assert.assertFalse(bytes.skipTo(CONTROL_STOP)); + } + + @Test + public void testAppendSubstring() throws IOException { + bytes.append("Hello World", 2, 7).append("\n"); + + assertEquals("Hello World".substring(2, 7), bytes.parseUtf8(CONTROL_STOP)); + } + + @Test + public void testWriteBytes() { + bytes.write("Hello World\n".getBytes(ISO_8859_1), 0, 10); + bytes.write("good bye\n".getBytes(ISO_8859_1), 4, 4); + bytes.write(4, "0 w".getBytes(ISO_8859_1)); + + assertEquals("Hell0 worl bye", bytes.parseUtf8(CONTROL_STOP)); + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/Bytes2Test.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/Bytes2Test.java new file mode 100644 index 0000000..f11a24f --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/Bytes2Test.java @@ -0,0 +1,138 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.io.AbstractReferenceCounted; +import net.openhft.chronicle.core.io.IORuntimeException; +import net.openhft.chronicle.core.threads.ThreadDump; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.junit.runners.Parameterized; + +import java.util.Arrays; +import java.util.Collection; + +import static net.openhft.chronicle.bytes.Allocator.HEAP; +import static net.openhft.chronicle.bytes.Allocator.NATIVE; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; + +@SuppressWarnings("rawtypes") +@RunWith(Parameterized.class) +public class Bytes2Test extends BytesTestCommon { + + private final Allocator alloc1; + private final Allocator alloc2; + private ThreadDump threadDump; + + public Bytes2Test(Allocator alloc1, Allocator alloc2) { + this.alloc1 = alloc1; + this.alloc2 = alloc2; + } + + @Parameterized.Parameters + public static Collection data() { + return Arrays.asList(new Object[][]{ + {NATIVE, NATIVE}, {HEAP, NATIVE}, {NATIVE, HEAP}, {HEAP, HEAP} + }); + } + + @After + public void checkRegisteredBytes() { + AbstractReferenceCounted.assertReferencesReleased(); + } + + @Before + public void threadDump() { + threadDump = new ThreadDump(); + } + + @After + public void checkThreadDump() { + threadDump.assertNoNewThreads(); + } + + @Test + public void testPartialWrite() { + Bytes from = alloc1.elasticBytes(1); + Bytes to = alloc2.fixedBytes(6); + + try { + from.write("Hello World"); + + to.writeSome(from); + assertEquals("World", from.toString()); + } finally { + from.releaseLast(); + to.releaseLast(); + } + } + + @Test + public void testPartialWrite64plus() { + Bytes from = alloc1.elasticBytes(1); + Bytes to = alloc2.fixedBytes(6); + + from.write("Hello World 0123456789012345678901234567890123456789012345678901234567890123456789"); + + try { + to.writeSome(from); + assertTrue("from: " + from, from.toString().startsWith("World ")); + } finally { + from.releaseLast(); + to.releaseLast(); + } + } + + @Test + public void testWrite64plus() { + Bytes from = alloc1.fixedBytes(128); + Bytes to = alloc2.fixedBytes(128); + + from.write("Hello World 0123456789012345678901234567890123456789012345678901234567890123456789"); + + try { + to.write(from); + assertEquals(from.toString(), to.toString()); + } finally { + from.releaseLast(); + to.releaseLast(); + } + } + + @Test + public void testParseToBytes() throws IORuntimeException { + Bytes from = alloc1.fixedBytes(64); + Bytes to = alloc2.fixedBytes(32); + try { + from.append8bit("0123456789 aaaaaaaaaa 0123456789 0123456789"); + + for (int i = 0; i < 4; i++) { + from.parse8bit(to, StopCharTesters.SPACE_STOP); + assertEquals(10, to.readRemaining()); + } + assertEquals(0, from.readRemaining()); + } finally { + from.releaseLast(); + to.releaseLast(); + } + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesInternalTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesInternalTest.java new file mode 100644 index 0000000..29d0ab2 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesInternalTest.java @@ -0,0 +1,455 @@ +/* + * Copyright 2016-2018-2020 chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.OS; +import net.openhft.chronicle.core.io.IORuntimeException; +import net.openhft.chronicle.core.threads.ThreadDump; +import org.jetbrains.annotations.NotNull; +import org.junit.*; +import org.junit.runner.RunWith; +import org.junit.runners.Parameterized; + +import java.io.IOException; +import java.nio.BufferUnderflowException; +import java.nio.ByteBuffer; +import java.util.Arrays; +import java.util.Collection; +import java.util.Locale; +import java.util.Random; + +import static java.nio.charset.StandardCharsets.US_ASCII; +import static net.openhft.chronicle.bytes.BytesInternalTest.Nested.LENGTH; +import static org.junit.Assert.*; +import static org.junit.Assume.assumeFalse; + +@SuppressWarnings({"rawtypes"}) +@RunWith(Parameterized.class) +public class BytesInternalTest extends BytesTestCommon { + + private final boolean guarded; + private ThreadDump threadDump; + + public BytesInternalTest(String name, boolean guarded) { + this.guarded = guarded; + } + + @Parameterized.Parameters(name = "{0}") + public static Collection data() { + return Arrays.asList(new Object[][]{ + {"Unguarded", false}, + {"Guarded", true} + }); + } + + @AfterClass + public static void resetGuarded() { + NativeBytes.resetNewGuarded(); + } + + @Before + public void setGuarded() { + NativeBytes.setNewGuarded(guarded); + } + + @Test + public void testParse8bitAndStringBuilderWithUtf16Coder() throws BufferUnderflowException, IOException { + @NotNull NativeBytesStore bs = NativeBytesStore.nativeStore(32); + bs.write(0, new byte[]{0x76, 0x61, 0x6c, 0x75, 0x65}); // "value" string + + StringBuilder sb = new StringBuilder(); + sb.append("你好"); + + BytesInternal.parse8bit(0, bs, sb, 5); + String actual = sb.toString(); + + assertEquals("value", actual); + assertEquals(5, actual.length()); + bs.releaseLast(); + } + + @Before + public void threadDump() { + threadDump = new ThreadDump(); + } + + @After + public void checkThreadDump() { + threadDump.assertNoNewThreads(); + } + /* + @After + public void checkRegisteredBytes() { + BytesUtil.checkRegisteredBytes(); + } + */ + + @Test + public void testParseUTF_SB1() throws UTFDataFormatRuntimeException { + assumeFalse(GuardedNativeBytes.areNewGuarded()); + @NotNull VanillaBytes bytes = Bytes.allocateElasticDirect(); + @NotNull byte[] bytes2 = new byte[128]; + Arrays.fill(bytes2, (byte) '?'); + bytes.write(bytes2); + + @NotNull StringBuilder sb = new StringBuilder(); + + BytesInternal.parseUtf8(bytes, sb, true, 128); + assertEquals(128, sb.length()); + assertEquals(new String(bytes2, US_ASCII), sb.toString()); + bytes.readPosition(0); + sb.setLength(0); + BytesInternal.parseUtf8(bytes, sb, false, 128); + assertEquals(128, sb.length()); + assertEquals(new String(bytes2, US_ASCII), sb.toString()); + bytes.releaseLast(); + } + + @Test + public void testParseUTF8_LongString() throws UTFDataFormatRuntimeException { + assumeFalse(GuardedNativeBytes.areNewGuarded()); + @NotNull VanillaBytes bytes = Bytes.allocateElasticDirect(); + int length = LENGTH; + @NotNull byte[] bytes2 = new byte[length]; + Arrays.fill(bytes2, (byte) '!'); + bytes.write(bytes2); + + @NotNull StringBuilder sb = new StringBuilder(); + + BytesInternal.parseUtf8(bytes, sb, true, length); + assertEquals(length, sb.length()); + String actual = sb.toString(); + sb = null; // free some memory. + assertEquals(new String(bytes2, US_ASCII), actual); + + bytes.releaseLast(); + } + + @Test + public void parseDoubleScientificNegative() { + String strDouble = "6.1E-4"; + double expected = 6.1E-4; + int expectedDp = 5; //0.00061 needs dp 5 + Bytes from = Bytes.from(strDouble); + assertEquals(expected, from.parseDouble(), 0.0); + assertEquals(expectedDp, from.lastDecimalPlaces()); + from.releaseLast(); + } + + @Test + public void parseDoubleScientificNegative1() { + String strDouble = "6.123E-4"; + double expected = 6.123E-4; + int expectedDp = 7; //0.0006123 needs dp 7 + Bytes from = Bytes.from(strDouble); + assertEquals(expected, from.parseDouble(), 0.0); + assertEquals(expectedDp, from.lastDecimalPlaces()); //Last dp should be 7. + from.releaseLast(); + } + + @Test + public void parseDoubleScientificPositive1() { + String strDouble = "6.12345E4"; + double expected = 6.12345E4; + int expectedDp = 1; //6.12345 x 10^4 = 61234.5 needs 1 + Bytes from = Bytes.from(strDouble); + assertEquals(expected, from.parseDouble(), 0.0); + assertEquals(expectedDp, from.lastDecimalPlaces()); + from.releaseLast(); + } + + @Test + public void testParseUTF81_LongString() throws UTFDataFormatRuntimeException { + assumeFalse(GuardedNativeBytes.areNewGuarded()); + @NotNull VanillaBytes bytes = Bytes.allocateElasticDirect(); + int length = LENGTH; + @NotNull byte[] bytes2 = new byte[length]; + Arrays.fill(bytes2, (byte) '!'); + bytes.write(bytes2); + + @NotNull StringBuilder sb = new StringBuilder(); + + BytesInternal.parseUtf81(bytes, sb, true, length); + assertEquals(length, sb.length()); + assertEquals(new String(bytes2, US_ASCII), sb.toString()); + + bytes.readPosition(0); + sb.setLength(0); + + BytesInternal.parseUtf81(bytes, sb, false, length); + assertEquals(length, sb.length()); + assertEquals(new String(bytes2, US_ASCII), sb.toString()); + + bytes.releaseLast(); + } + + @Test + public void testParseUTF_SB1_LongString() throws UTFDataFormatRuntimeException { + assumeFalse(GuardedNativeBytes.areNewGuarded()); + @NotNull VanillaBytes bytes = Bytes.allocateElasticDirect(); + int length = LENGTH; + @NotNull byte[] bytes2 = new byte[length]; + Arrays.fill(bytes2, (byte) '!'); + bytes.write(bytes2); + + @NotNull StringBuilder sb = new StringBuilder(); + + BytesInternal.parseUtf8_SB1(bytes, sb, true, length); + assertEquals(length, sb.length()); + assertEquals(new String(bytes2, US_ASCII), sb.toString()); + + bytes.readPosition(0); + sb.setLength(0); + +/* + BytesInternal.parseUtf8_SB1(bytes, sb, false, length); + assertEquals(length, sb.length()); + assertEquals(new String(bytes2, US_ASCII), sb.toString()); +*/ + + bytes.releaseLast(); + } + + @Test + public void testParse8bit_LongString() throws Exception { + assumeFalse(GuardedNativeBytes.areNewGuarded()); + @NotNull VanillaBytes bytes = Bytes.allocateElasticDirect(); + int length = LENGTH; + @NotNull byte[] bytes2 = new byte[length]; + Arrays.fill(bytes2, (byte) '!'); + bytes.write(bytes2); + + @NotNull StringBuilder sb = new StringBuilder(); + + BytesInternal.parse8bit(0, bytes, sb, length); + assertEquals(length, sb.length()); + assertEquals(new String(bytes2, US_ASCII), sb.toString()); + + bytes.releaseLast(); + } + + @Test + public void testAllParseDouble() { + assumeFalse(GuardedNativeBytes.areNewGuarded()); + for (String s : "0.,1.,9.".split(",")) { + // todo FIX for i == 7 && d == 8 + for (int d = 0; d < 8; d++) { + s += '0'; + for (int i = 1; i < 10; i += 2) { + String si = s + i; + Bytes from = Bytes.from(si); + assertEquals(si, + Double.parseDouble(si), + from.parseDouble(), 0.0); + from.releaseLast(); + } + } + } + } + + @Test + public void testWriteUtf8LongString() throws IORuntimeException { + assumeFalse(GuardedNativeBytes.areNewGuarded()); + @NotNull VanillaBytes bytes = Bytes.allocateElasticDirect(); + int length = LENGTH; + StringBuilder sb = new StringBuilder(length); + + for (int i = 0; i < length; i++) + sb.append('!'); + + String test = sb.toString(); + BytesInternal.writeUtf8(bytes, test); + + sb.setLength(0); + assertTrue(BytesInternal.compareUtf8(bytes, 0, test)); + + bytes.releaseLast(); + } + + @Test + public void testAppendUtf8LongString() throws Exception { + assumeFalse(GuardedNativeBytes.areNewGuarded()); + @NotNull VanillaBytes bytes = Bytes.allocateElasticDirect(); + int length = LENGTH; + StringBuilder sb = new StringBuilder(length); + + for (int i = 0; i < length; i++) + sb.append('!'); + + String test = sb.toString(); + BytesInternal.appendUtf8(bytes, test, 0, length); + + sb.setLength(0); + BytesInternal.parse8bit(0, bytes, sb, length); + + assertEquals(test, sb.toString()); + bytes.releaseLast(); + } + + @Test + public void testAppend8bitLongString() throws Exception { + assumeFalse(GuardedNativeBytes.areNewGuarded()); + @NotNull VanillaBytes bytes = Bytes.allocateElasticDirect(); + int length = LENGTH; + StringBuilder sb = new StringBuilder(length); + + for (int i = 0; i < length; i++) + sb.append('!'); + + String test = sb.toString(); + BytesInternal.append8bit(0, bytes, test, 0, length); + + sb.setLength(0); + BytesInternal.parse8bit(0, bytes, sb, length); + + assertEquals(test, sb.toString()); + bytes.releaseLast(); + } + + @Test + public void testCompareUTF() throws IORuntimeException { + @NotNull NativeBytesStore bs = NativeBytesStore.nativeStore(32); + bs.writeUtf8(0, "test"); + assertTrue(BytesInternal.compareUtf8(bs, 0, "test")); + assertFalse(BytesInternal.compareUtf8(bs, 0, null)); + + bs.writeUtf8(0, null); + assertTrue(BytesInternal.compareUtf8(bs, 0, null)); + assertFalse(BytesInternal.compareUtf8(bs, 0, "test")); + + bs.writeUtf8(1, "£€"); + @NotNull StringBuilder sb = new StringBuilder(); + bs.readUtf8(1, sb); + assertEquals("£€", sb.toString()); + assertTrue(BytesInternal.compareUtf8(bs, 1, "£€")); + assertFalse(BytesInternal.compareUtf8(bs, 1, "£")); + assertFalse(BytesInternal.compareUtf8(bs, 1, "£€$")); + bs.releaseLast(); + } + + @Test + public void shouldHandleDifferentSizedStores() { + Bytes bytes = Bytes.elasticHeapByteBuffer(32); + final BytesStore storeOfThirtyTwoBytes = bytes.bytesStore(); + storeOfThirtyTwoBytes.writeUtf8(0, "thirty_two_bytes_of_utf8_chars_"); + + Bytes bytes2 = Bytes.elasticHeapByteBuffer(512); + final BytesStore longerBuffer = bytes2.bytesStore(); + longerBuffer.writeUtf8(0, "thirty_two_bytes_of_utf8_chars_"); + + assertTrue(BytesInternal.equalBytesAny(storeOfThirtyTwoBytes, longerBuffer, 32)); + bytes2.releaseLast(); + bytes.releaseLast(); + } + + @Test + public void testParseDouble() { + assumeFalse(GuardedNativeBytes.areNewGuarded()); + @NotNull Object[][] tests = { + {"-1E-3 ", -1E-3}, + {"12E3 ", 12E3}, + {"-1.1E-3 ", -1.1E-3}, + {"-1.1E3 ", -1.1E3}, + {"-1.16823E70 ", -1.16823E70}, + {"1.17045E70 ", 1.17045E70}, + {"6.85202", 6.85202} + }; + for (Object[] objects : tests) { + @NotNull String text = (String) objects[0]; + double expected = (Double) objects[1]; + + Bytes from = Bytes.from(text); + assertEquals(expected, from.parseDouble(), 0.0); + from.releaseLast(); + } + } + + private int checkParse(int different, String s) { + double d = Double.parseDouble(s); + Bytes from = Bytes.from(s); + double d2 = from.parseDouble(); + from.releaseLast(); + if (d != d2) { +// System.out.println(d + " != " + d2); + ++different; + } + return different; + } + + @Test + public void testWritingDecimalVsJava() { + Bytes bytes = Bytes.allocateElasticOnHeap(32); + bytes.clear(); + double d = 0.04595828484241039; //Math.pow(1e9, rand.nextDouble()) / 1e3; + bytes.append(d); + String s = Double.toString(d); + if (s.length() != bytes.readRemaining()) { + assertEquals(d, Double.parseDouble(s), 0.0); + String s2 = bytes.toString(); +// System.out.println(s + " != " + s2); + } + bytes.releaseLast(); + } + + @Test + public void bytesParseDouble_Issue85_SeededRandom() { + assumeFalse(GuardedNativeBytes.areNewGuarded()); + Random random = new Random(1); + int different = 0; + int max = 10_000; + for (int i = 0; i < max; i++) { + double num = random.nextDouble(); + String s = String.format(Locale.US, "%.9f", num); + different = checkParse(different, s); + } + Assert.assertEquals("Different " + (100.0 * different) / max + "%", 0, different); + } + + @Test + public void contentsEqual() { + Bytes a = Bytes.elasticByteBuffer(9, 20) + .append("Hello") + .readLimit(16); + Bytes b = Bytes.elasticByteBuffer(5, 20) + .append("Hello") + .readLimit(16); + Bytes c = Bytes.elasticByteBuffer(15, 20) + .append("Hello") + .readLimit(16); + assertEquals("Hello\0\0\0\0\0\0\0\0\0\0\0", a.toString()); + assertEquals("Hello\0\0\0\0\0\0\0\0\0\0\0", b.toString()); + assertEquals("Hello\0\0\0\0\0\0\0\0\0\0\0", c.toString()); + assertEquals(a, b); + assertEquals(b, c); + assertEquals(c, a); + a.releaseLast(); + b.releaseLast(); + c.releaseLast(); + } + + static class Nested { + public static final int LENGTH; + + static { + long maxMemory = Runtime.getRuntime().maxMemory(); + int maxLength = OS.isLinux() ? 1 << 30 : 1 << 28; + LENGTH = (int) Math.min(maxMemory / 16, maxLength); + if (LENGTH < maxLength) + System.out.println("Not enough memory to run big test, was " + (LENGTH >> 20) + " MB."); + } + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesMarshallableTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesMarshallableTest.java new file mode 100644 index 0000000..64667df --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesMarshallableTest.java @@ -0,0 +1,567 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.Jvm; +import net.openhft.chronicle.core.io.AbstractReferenceCounted; +import org.jetbrains.annotations.NotNull; +import org.junit.After; +import org.junit.AfterClass; +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.junit.runners.Parameterized; + +import java.io.IOException; +import java.lang.annotation.RetentionPolicy; +import java.math.BigDecimal; +import java.math.BigInteger; +import java.time.LocalDate; +import java.time.LocalDateTime; +import java.time.LocalTime; +import java.time.ZonedDateTime; +import java.util.*; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNull; +import static org.junit.Assume.assumeFalse; + +@RunWith(Parameterized.class) +public class BytesMarshallableTest extends BytesTestCommon { + + private final boolean guarded; + + public BytesMarshallableTest(String name, boolean guarded) { + this.guarded = guarded; + } + + @Parameterized.Parameters(name = "{0}") + public static Collection data() { + return Arrays.asList(new Object[][]{ + {"Unguarded", false}, + {"Guarded", true} + }); + } + + @AfterClass + public static void resetGuarded() { + NativeBytes.resetNewGuarded(); + } + + @Before + public void setGuarded() { + NativeBytes.setNewGuarded(guarded); + } + + @After + public void checkRegisteredBytes() { + AbstractReferenceCounted.assertReferencesReleased(); + } + + @Test + public void serializePrimitives() { + assumeFalse(NativeBytes.areNewGuarded()); + final Bytes bytes = new HexDumpBytes(); + try { + final MyByteable mb1 = new MyByteable(false, (byte) 1, (short) 2, '3', 4, 5.5f, 6, 7.7); + final MyByteable mb2 = new MyByteable(true, (byte) 11, (short) 22, 'T', 44, 5.555f, 66, 77.77); + bytes.comment("mb1").writeUnsignedByte(1); + mb1.writeMarshallable(bytes); + bytes.comment("mb2").writeUnsignedByte(2); + mb2.writeMarshallable(bytes); + + assertEquals( + "01 # mb1\n" + + " 4e # flag\n" + + " 01 # b\n" + + " 02 00 # s\n" + + " 33 # c\n" + + " 04 00 00 00 # i\n" + + " 00 00 b0 40 # f\n" + + " 06 00 00 00 00 00 00 00 # l\n" + + " cd cc cc cc cc cc 1e 40 # d\n" + + "02 # mb2\n" + + " 59 # flag\n" + + " 0b # b\n" + + " 16 00 # s\n" + + " 54 # c\n" + + " 2c 00 00 00 # i\n" + + " 8f c2 b1 40 # f\n" + + " 42 00 00 00 00 00 00 00 # l\n" + + " e1 7a 14 ae 47 71 53 40 # d\n", bytes.toHexString()); + + final MyByteable mb3 = new MyByteable(); + final MyByteable mb4 = new MyByteable(); + assertEquals(1, bytes.readUnsignedByte()); + mb3.readMarshallable(bytes); + assertEquals(2, bytes.readUnsignedByte()); + mb4.readMarshallable(bytes); + + assertEquals(mb1.toString(), mb3.toString()); + assertEquals(mb2.toString(), mb4.toString()); + } finally { + bytes.releaseLast(); + } + } + + @Test + public void serializeScalars() { + final Bytes bytes = new HexDumpBytes(); + try { + final MyScalars mb1 = new MyScalars("Hello", BigInteger.ONE, BigDecimal.TEN, LocalDate.now(), LocalTime.now(), LocalDateTime.now(), ZonedDateTime.now(), UUID.randomUUID()); + final MyScalars mb2 = new MyScalars("World", BigInteger.ZERO, BigDecimal.ZERO, LocalDate.now(), LocalTime.now(), LocalDateTime.now(), ZonedDateTime.now(), UUID.randomUUID()); + bytes.comment("mb1").writeUnsignedByte(1); + mb1.writeMarshallable(bytes); + bytes.comment("mb2").writeUnsignedByte(2); + mb2.writeMarshallable(bytes); + +/* + assertEquals( + "01 # mb1\n" + + " 05 48 65 6c 6c 6f # s\n" + + " 01 31 # bi\n" + + " 02 31 30 # bd\n" + + " 0a 32 30 31 37 2d 31 31 2d 30 36 # date\n" + + " 0c 31 32 3a 32 37 3a 34 34 2e 33 33 30 # time\n" + + " 17 32 30 31 37 2d 31 31 2d 30 36 54 31 32 3a 32 # dateTime\n" + + " 37 3a 34 34 2e 33 33 30 27 32 30 31 37 2d 31 31 # zonedDateTime\n" + + " 2d 30 36 54 31 32 3a 32 37 3a 34 34 2e 33 33 31\n" + + " 5a 5b 45 75 72 6f 70 65 2f 4c 6f 6e 64 6f 6e 5d # uuid\n" + + " 24 63 35 66 33 34 62 39 63 2d 36 34 35 34 2d 34\n" + + " 62 61 63 2d 61 32 66 37 2d 66 37 31 36 35 32 33\n" + + " 62 62 32 64 33\n" + + "02 # mb2\n" + + " 05 57 6f 72 6c 64 # s\n" + + " 01 30 # bi\n" + + " 01 30 # bd\n" + + " 0a 32 30 31 37 2d 31 31 2d 30 36 # date\n" + + " 0c 31 32 3a 32 37 3a 34 34 2e 33 33 36 # time\n" + + " 17 32 30 31 37 2d 31 31 2d 30 36 54 31 32 3a 32 # dateTime\n" + + " 37 3a 34 34 2e 33 33 36 27 32 30 31 37 2d 31 31 # zonedDateTime\n" + + " 2d 30 36 54 31 32 3a 32 37 3a 34 34 2e 33 33 36\n" + + " 5a 5b 45 75 72 6f 70 65 2f 4c 6f 6e 64 6f 6e 5d # uuid\n" + + " 24 32 65 61 35 66 33 34 35 2d 36 65 38 30 2d 34\n" + + " 35 66 30 2d 62 66 62 64 2d 63 33 30 37 34 34 33\n" + + " 65 32 38 61 34\n", bytes.toHexString()); +*/ + final Bytes bytes2 = HexDumpBytes.fromText(bytes.toHexString()); + try { + doSerializeScalars(bytes, mb1, mb2); + doSerializeScalars(bytes2, mb1, mb2); + } finally { + bytes2.releaseLast(); + } + } finally { + bytes.releaseLast(); + } + } + + public void doSerializeScalars(@NotNull final Bytes bytes, + @NotNull final MyScalars mb1, + @NotNull final MyScalars mb2) { + final MyScalars mb3 = new MyScalars(); + final MyScalars mb4 = new MyScalars(); + assertEquals(1, bytes.readUnsignedByte()); + mb3.readMarshallable(bytes); + assertEquals(2, bytes.readUnsignedByte()); + mb4.readMarshallable(bytes); + + assertEquals(mb1.toString(), mb3.toString()); + assertEquals(mb2.toString(), mb4.toString()); + } + + @Test + public void serializeNested() { + final Bytes bytes = new HexDumpBytes(); + try { + + final MyByteable mb1 = new MyByteable(false, (byte) 1, (short) 2, '3', 4, 5.5f, 6, 7.7); + final MyByteable mb2 = new MyByteable(true, (byte) 11, (short) 22, 'T', 44, 5.555f, 66, 77.77); + final ZonedDateTime zdt1 = ZonedDateTime.parse("2017-11-06T12:35:56.775Z[Europe/London]"); + final ZonedDateTime zdt2 = ZonedDateTime.parse("2016-10-05T01:34:56.775Z[Europe/London]"); + final UUID uuid1 = new UUID(0x123456789L, 0xABCDEF); + final UUID uuid2 = new UUID(0x1111111111111111L, 0x2222222222222222L); + final MyScalars ms1 = new MyScalars("Hello", BigInteger.ONE, BigDecimal.TEN, zdt1.toLocalDate(), zdt1.toLocalTime(), zdt1.toLocalDateTime(), zdt1, uuid1); + final MyScalars ms2 = new MyScalars("World", BigInteger.ZERO, BigDecimal.ZERO, zdt2.toLocalDate(), zdt2.toLocalTime(), zdt2.toLocalDateTime(), zdt2, uuid2); + final MyNested mn1 = new MyNested(mb1, ms1); + final MyNested mn2 = new MyNested(mb2, ms2); + bytes.comment("mn1").writeUnsignedByte(1); + mn1.writeMarshallable(bytes); + bytes.comment("mn2").writeUnsignedByte(2); + mn2.writeMarshallable(bytes); + + String expected = "01 # mn1\n" + + " # byteable\n" + + " 4e # flag\n" + + " 01 # b\n" + + " 02 00 # s\n" + + " 33 # c\n" + + " 04 00 00 00 # i\n" + + " 00 00 b0 40 # f\n" + + " 06 00 00 00 00 00 00 00 # l\n" + + " cd cc cc cc cc cc 1e 40 # d\n" + + " # scalars\n" + + " 05 48 65 6c 6c 6f # s\n" + + " 01 31 # bi\n" + + " 02 31 30 # bd\n" + + " 0a 32 30 31 37 2d 31 31 2d 30 36 # date\n" + + " 0c 31 32 3a 33 35 3a 35 36 2e 37 37 35 # time\n" + + " 17 32 30 31 37 2d 31 31 2d 30 36 54 31 32 3a 33 # dateTime\n" + + " 35 3a 35 36 2e 37 37 35 27 32 30 31 37 2d 31 31 # zonedDateTime\n" + + " 2d 30 36 54 31 32 3a 33 35 3a 35 36 2e 37 37 35\n" + + " 5a 5b 45 75 72 6f 70 65 2f 4c 6f 6e 64 6f 6e 5d # uuid\n" + + " 24 30 30 30 30 30 30 30 31 2d 32 33 34 35 2d 36\n" + + " 37 38 39 2d 30 30 30 30 2d 30 30 30 30 30 30 61\n" + + " 62 63 64 65 66\n" + + "02 # mn2\n" + + " # byteable\n" + + " 59 # flag\n" + + " 0b # b\n" + + " 16 00 # s\n" + + " 54 # c\n" + + " 2c 00 00 00 # i\n" + + " 8f c2 b1 40 # f\n" + + " 42 00 00 00 00 00 00 00 # l\n" + + " e1 7a 14 ae 47 71 53 40 # d\n" + + " # scalars\n" + + " 05 57 6f 72 6c 64 # s\n" + + " 01 30 # bi\n" + + " 01 30 # bd\n" + + " 0a 32 30 31 36 2d 31 30 2d 30 35 # date\n" + + (Jvm.isJava9Plus() ? + " 0c 30 32 3a 33 34 3a 35 36 2e 37 37 35 # time\n" : + " 0c 30 31 3a 33 34 3a 35 36 2e 37 37 35 # time\n") + + (Jvm.isJava9Plus() ? + " 17 32 30 31 36 2d 31 30 2d 30 35 54 30 32 3a 33 # dateTime\n" : + " 17 32 30 31 36 2d 31 30 2d 30 35 54 30 31 3a 33 # dateTime\n") + + " 34 3a 35 36 2e 37 37 35 2c 32 30 31 36 2d 31 30 # zonedDateTime\n" + + (Jvm.isJava9Plus() ? + " 2d 30 35 54 30 32 3a 33 34 3a 35 36 2e 37 37 35\n" : + " 2d 30 35 54 30 31 3a 33 34 3a 35 36 2e 37 37 35\n") + + " 2b 30 31 3a 30 30 5b 45 75 72 6f 70 65 2f 4c 6f\n" + + " 6e 64 6f 6e 5d 24 31 31 31 31 31 31 31 31 2d 31 # uuid\n" + + " 31 31 31 2d 31 31 31 31 2d 32 32 32 32 2d 32 32\n" + + " 32 32 32 32 32 32 32 32 32 32\n"; + + if (GuardedNativeBytes.areNewGuarded()) { + expected = "" + + "a4 01 # mn1\n" + + " # byteable\n" + + " a4 4e # flag\n" + + " a4 01 # b\n" + + " a5 02 00 # s\n" + + " ae 33 # c\n" + + " a6 04 00 00 00 # i\n" + + " 90 00 00 b0 40 # f\n" + + " a7 06 00 00 00 00 00 00 00 # l\n" + + " 91 cd cc cc cc cc cc 1e 40 # d\n" + + " # scalars\n" + + " ae 05 48 65 6c 6c 6f # s\n" + + " ae 01 31 # bi\n" + + " ae 02 31 30 # bd\n" + + " ae 0a 32 30 31 37 2d 31 31 2d 30 36 # date\n" + + " ae 0c 31 32 3a 33 35 3a 35 36 2e 37 37 35 # time\n" + + " ae 17 32 30 31 37 2d 31 31 2d 30 36 54 31 32 3a # dateTime\n" + + " 33 35 3a 35 36 2e 37 37 35 ae 27 32 30 31 37 2d # zonedDateTime\n" + + " 31 31 2d 30 36 54 31 32 3a 33 35 3a 35 36 2e 37\n" + + " 37 35 5a 5b 45 75 72 6f 70 65 2f 4c 6f 6e 64 6f\n" + + " 6e 5d ae 24 30 30 30 30 30 30 30 31 2d 32 33 34 # uuid\n" + + " 35 2d 36 37 38 39 2d 30 30 30 30 2d 30 30 30 30\n" + + " 30 30 61 62 63 64 65 66\n" + + "a4 02 # mn2\n" + + " # byteable\n" + + " a4 59 # flag\n" + + " a4 0b # b\n" + + " a5 16 00 # s\n" + + " ae 54 # c\n" + + " a6 2c 00 00 00 # i\n" + + " 90 8f c2 b1 40 # f\n" + + " a7 42 00 00 00 00 00 00 00 # l\n" + + " 91 e1 7a 14 ae 47 71 53 40 # d\n" + + " # scalars\n" + + " ae 05 57 6f 72 6c 64 # s\n" + + " ae 01 30 # bi\n" + + " ae 01 30 # bd\n" + + " ae 0a 32 30 31 36 2d 31 30 2d 30 35 # date\n" + + (Jvm.isJava9Plus() ? "" + + " ae 0c 30 32 3a 33 34 3a 35 36 2e 37 37 35 # time\n" + + " ae 17 32 30 31 36 2d 31 30 2d 30 35 54 30 32 3a # dateTime\n" + + " 33 34 3a 35 36 2e 37 37 35 ae 2c 32 30 31 36 2d # zonedDateTime\n" + + " 31 30 2d 30 35 54 30 32 3a 33 34 3a 35 36 2e 37\n" + + " 37 35 2b 30 31 3a 30 30 5b 45 75 72 6f 70 65 2f\n" + : "" + + " ae 0c 30 31 3a 33 34 3a 35 36 2e 37 37 35 # time\n" + + " ae 17 32 30 31 36 2d 31 30 2d 30 35 54 30 31 3a # dateTime\n" + + " 33 34 3a 35 36 2e 37 37 35 ae 2c 32 30 31 36 2d # zonedDateTime\n" + + " 31 30 2d 30 35 54 30 31 3a 33 34 3a 35 36 2e 37\n" + + " 37 35 2b 30 31 3a 30 30 5b 45 75 72 6f 70 65 2f\n") + + " 4c 6f 6e 64 6f 6e 5d ae 24 31 31 31 31 31 31 31 # uuid\n" + + " 31 2d 31 31 31 31 2d 31 31 31 31 2d 32 32 32 32\n" + + " 2d 32 32 32 32 32 32 32 32 32 32 32 32\n"; + } + + //System.out.println(bytes.toHexString()); + + assertEquals( + expected, bytes.toHexString()); + + final MyNested mn3 = new MyNested(); + final MyNested mn4 = new MyNested(); + assertEquals(1, bytes.readUnsignedByte()); + mn3.readMarshallable(bytes); + assertEquals(2, bytes.readUnsignedByte()); + mn4.readMarshallable(bytes); + + assertEquals(mn1.toString(), mn3.toString()); + assertEquals(mn2.toString(), mn4.toString()); + } finally { + bytes.releaseLast(); + } + } + + @Test + public void serializeBytes() throws IOException { + Bytes bytes = new HexDumpBytes(); + final Bytes hello = Bytes.from("hello"); + final Bytes byeee = Bytes.from("byeee"); + try (MyBytes mb1 = new MyBytes(hello, Bytes.allocateElasticDirect().append("2")); + MyBytes mb2 = new MyBytes(byeee, null)) { + bytes.comment("mb1").writeUnsignedByte(1); + mb1.writeMarshallable(bytes); + bytes.comment("mb2").writeUnsignedByte(2); + mb2.writeMarshallable(bytes); + + final Bytes bytes2 = HexDumpBytes.fromText(bytes.toHexString()); + for (int i = 0; i < 2; i++) { + try (MyBytes mb3 = new MyBytes(); + MyBytes mb4 = new MyBytes(Bytes.from("already"), Bytes.allocateElasticDirect().append("value"))) { + assertEquals(1, bytes.readUnsignedByte()); + mb3.readMarshallable(bytes); + assertEquals(2, bytes.readUnsignedByte()); + mb4.readMarshallable(bytes); + + assertEquals(mb1.toString(), mb3.toString()); + assertEquals(mb2.toString(), mb4.toString()); + + bytes.releaseLast(); + + bytes = bytes2; + } + } + } + } + + @Test + public void serializeCollections() { + final Bytes bytes = new HexDumpBytes(); + try { + final MyCollections mc = new MyCollections(); + mc.words.add("Hello"); + mc.words.add("World"); + mc.scoreCountMap.put(1.3, 11L); + mc.scoreCountMap.put(2.2, 22L); + mc.policies.add(RetentionPolicy.RUNTIME); + mc.policies.add(RetentionPolicy.CLASS); + mc.numbers.add(1); + mc.numbers.add(12); + mc.numbers.add(123); + mc.writeMarshallable(bytes); + + final MyCollections mc2 = new MyCollections(); + mc2.readMarshallable(bytes); + assertEquals(mc.words, mc2.words); + assertEquals(mc.scoreCountMap, mc2.scoreCountMap); + assertEquals(mc.policies, mc2.policies); + assertEquals(mc.numbers, mc2.numbers); + + final String expected = "" + + " 02 05 48 65 6c 6c 6f 05 57 6f 72 6c 64 # words\n" + + " 02 cd cc cc cc cc cc f4 3f 0b 00 00 00 00 00 00 # scoreCountMap\n" + + " 00 9a 99 99 99 99 99 01 40 16 00 00 00 00 00 00\n" + + " 00 02 07 52 55 4e 54 49 4d 45 05 43 4c 41 53 53 # policies\n" + + " 03 01 00 00 00 0c 00 00 00 7b 00 00 00 # numbers\n"; + final String expectedG = "" + + " ae 02 ae 05 48 65 6c 6c 6f ae 05 57 6f 72 6c 64 # words\n" + + " ae 02 91 cd cc cc cc cc cc f4 3f a7 0b 00 00 00 # scoreCountMap\n" + + " 00 00 00 00 91 9a 99 99 99 99 99 01 40 a7 16 00\n" + + " 00 00 00 00 00 00 ae 02 ae 07 52 55 4e 54 49 4d # policies\n" + + " 45 ae 05 43 4c 41 53 53 ae 03 a6 01 00 00 00 a6 # numbers\n" + + " 0c 00 00 00 a6 7b 00 00 00\n"; + assertEquals(NativeBytes.areNewGuarded() ? expectedG : expected, bytes.toHexString()); + } finally { + bytes.releaseLast(); + } + } + + @Test + public void nested() { + final Bytes bytes = new HexDumpBytes(); + try { + final BM1 bm1 = new BM1(); + bm1.num = 5; + bm1.bm2.text = "hello"; + bm1.bm3.value = 1234567890L; + + bm1.writeMarshallable(bytes); + + final BM1 bm1b = new BM1(); + bm1b.readMarshallable(bytes); + assertEquals(bm1b.bm2.text, bm1.bm2.text); + assertEquals(bm1b.bm3.value, bm1.bm3.value); + + final String expected = "" + + " 05 00 00 00 # num\n" + + " # bm2\n" + + " 05 68 65 6c 6c 6f # text\n" + + " # bm3\n" + + " d2 02 96 49 00 00 00 00 # value\n"; + final String expected2 = "" + + " a6 05 00 00 00 # num\n" + + " # bm2\n" + + " ae 05 68 65 6c 6c 6f # text\n" + + " # bm3\n" + + " a7 d2 02 96 49 00 00 00 00 # value\n"; + assertEquals(NativeBytes.areNewGuarded() ? expected2 : expected, bytes.toHexString()); + final String expectedB = "" + + "# net.openhft.chronicle.bytes.BytesMarshallableTest$BM1\n" + + " 05 00 00 00 # num\n" + + " # bm2\n" + + " 05 68 65 6c 6c 6f # text\n" + + " # bm3\n" + + " d2 02 96 49 00 00 00 00 # value\n"; + final String expectedBG = "" + + "# net.openhft.chronicle.bytes.BytesMarshallableTest$BM1\n" + + " a6 05 00 00 00 # num\n" + + " # bm2\n" + + " ae 05 68 65 6c 6c 6f # text\n" + + " # bm3\n" + + " a7 d2 02 96 49 00 00 00 00 # value\n"; + assertEquals(NativeBytes.areNewGuarded() ? expectedBG : expectedB, bm1.toString()); + } finally { + bytes.releaseLast(); + } + } + + @Test + public void nullArrays() { + final Bytes bytes = new HexDumpBytes(); + try { + final BMA bma = new BMA(); + bma.writeMarshallable(bytes); + final String expected = NativeBytes.areNewGuarded() ? + " a6 ff ff ff ff # bytes\n" + + " a6 ff ff ff ff # ints\n" + + " a6 ff ff ff ff # floats\n" + + " a6 ff ff ff ff # longs\n" + + " a6 ff ff ff ff # doubles\n" : + " ff ff ff ff # bytes\n" + + " ff ff ff ff # ints\n" + + " ff ff ff ff # floats\n" + + " ff ff ff ff # longs\n" + + " ff ff ff ff # doubles\n"; + assertEquals(expected, bytes.toHexString()); + final BMA bma2 = new BMA(); + bma2.bytes = new byte[0]; + bma2.ints = new int[0]; + bma2.floats = new float[0]; + bma2.longs = new long[0]; + bma2.doubles = new double[0]; + bma2.readMarshallable(bytes); + assertNull(bma2.longs); + assertNull(bma2.doubles); + } finally { + bytes.releaseLast(); + } + + } + + @Test + public void arrays() { + final Bytes bytes = new HexDumpBytes(); + try { + final BMA bma = new BMA(); + bma.bytes = "Hello".getBytes(); + bma.ints = new int[]{0x12345678}; + bma.floats = new float[]{0x1.234567p0f}; + bma.longs = new long[]{0x123456789ABCDEFL}; + bma.doubles = new double[]{0x1.23456789ABCDEp0}; + bma.writeMarshallable(bytes); + final String expected = NativeBytes.areNewGuarded() ? + " a6 05 00 00 00 a4 48 a4 65 a4 6c a4 6c a4 6f # bytes\n" + + " a6 01 00 00 00 a6 78 56 34 12 # ints\n" + + " a6 01 00 00 00 90 b4 a2 91 3f # floats\n" + + " a6 01 00 00 00 a7 ef cd ab 89 67 45 23 01 # longs\n" + + " a6 01 00 00 00 91 de bc 9a 78 56 34 f2 3f # doubles\n" : + " 05 00 00 00 48 65 6c 6c 6f # bytes\n" + + " 01 00 00 00 78 56 34 12 # ints\n" + + " 01 00 00 00 b4 a2 91 3f # floats\n" + + " 01 00 00 00 ef cd ab 89 67 45 23 01 # longs\n" + + " 01 00 00 00 de bc 9a 78 56 34 f2 3f # doubles\n"; + assertEquals(expected, bytes.toHexString()); + final BMA bma2 = new BMA(); + bma2.longs = new long[0]; + bma2.doubles = new double[0]; + bma2.readMarshallable(bytes); + assertEquals("[72, 101, 108, 108, 111]", Arrays.toString(bma2.bytes)); + assertEquals("[305419896]", Arrays.toString(bma2.ints)); + assertEquals("[1.1377778]", Arrays.toString(bma2.floats)); + assertEquals("[81985529216486895]", Arrays.toString(bma2.longs)); + assertEquals("[1.1377777777777776]", Arrays.toString(bma2.doubles)); + assertEquals(0x123456789ABCDEFL, bma2.longs[0]); + assertEquals(0x1.23456789ABCDEp0, bma2.doubles[0], 0); + } finally { + bytes.releaseLast(); + } + } + + private static final class MyCollections implements BytesMarshallable { + List words = new ArrayList<>(); + Map scoreCountMap = new LinkedHashMap<>(); + List policies = new ArrayList<>(); + List numbers = new ArrayList<>(); + } + + private static final class BM1 implements BytesMarshallable { + int num; + BM2 bm2 = new BM2(); + BM3 bm3 = new BM3(); + + @Override + public String toString() { + return $toString(); + } + } + + private static final class BM2 implements BytesMarshallable { + String text; + } + + private static final class BM3 implements BytesMarshallable { + long value; + } + + private static final class BMA implements BytesMarshallable { + byte[] bytes; + int[] ints; + float[] floats; + long[] longs; + double[] doubles; + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesMethodWriterBuilderTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesMethodWriterBuilderTest.java new file mode 100644 index 0000000..ab25e54 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesMethodWriterBuilderTest.java @@ -0,0 +1,137 @@ +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.Jvm; +import net.openhft.chronicle.core.Mocker; +import org.junit.Test; + +import java.io.StringWriter; +import java.math.BigDecimal; +import java.math.BigInteger; +import java.time.ZonedDateTime; +import java.util.UUID; + +import static junit.framework.TestCase.assertEquals; +import static junit.framework.TestCase.assertTrue; +import static org.junit.Assert.assertFalse; +import static org.junit.Assume.assumeFalse; + +public class BytesMethodWriterBuilderTest extends BytesTestCommon { + + @Test + public void testPrimitives() { + assumeFalse(NativeBytes.areNewGuarded()); + final Bytes bytes = new HexDumpBytes(); + try { + final IBytesMethod m = bytes.bytesMethodWriter(IBytesMethod.class); + + final MyByteable mb1 = new MyByteable(false, (byte) 1, (short) 2, '3', 4, 5.5f, 6, 7.7); + final MyByteable mb2 = new MyByteable(true, (byte) 11, (short) 22, 'T', 44, 5.555f, 66, 77.77); + + m.myByteable(mb1); + m.myByteable(mb2); + + final ZonedDateTime zdt1 = ZonedDateTime.parse("2017-11-06T12:35:56.775Z[Europe/London]"); + final ZonedDateTime zdt2 = ZonedDateTime.parse("2016-10-05T01:34:56.775Z[Europe/London]"); + final UUID uuid1 = new UUID(0x123456789L, 0xABCDEF); + final UUID uuid2 = new UUID(0x1111111111111111L, 0x2222222222222222L); + final MyScalars ms1 = new MyScalars("Hello", BigInteger.ONE, BigDecimal.TEN, zdt1.toLocalDate(), zdt1.toLocalTime(), zdt1.toLocalDateTime(), zdt1, uuid1); + final MyScalars ms2 = new MyScalars("World", BigInteger.ZERO, BigDecimal.ZERO, zdt2.toLocalDate(), zdt2.toLocalTime(), zdt2.toLocalDateTime(), zdt2, uuid2); + final MyNested mn2 = new MyNested(mb2, ms2); + + m.myScalars(ms1); + + m.myNested(mn2); + + assertEquals("" + + "81 01 # myByteable\n" + + " 4e # flag\n" + + " 01 # b\n" + + " 02 00 # s\n" + + " 33 # c\n" + + " 04 00 00 00 # i\n" + + " 00 00 b0 40 # f\n" + + " 06 00 00 00 00 00 00 00 # l\n" + + " cd cc cc cc cc cc 1e 40 # d\n" + + "81 01 # myByteable\n" + + " 59 # flag\n" + + " 0b # b\n" + + " 16 00 # s\n" + + " 54 # c\n" + + " 2c 00 00 00 # i\n" + + " 8f c2 b1 40 # f\n" + + " 42 00 00 00 00 00 00 00 # l\n" + + " e1 7a 14 ae 47 71 53 40 # d\n" + + "82 01 # myScalars\n" + + " 05 48 65 6c 6c 6f # s\n" + + " 01 31 # bi\n" + + " 02 31 30 # bd\n" + + " 0a 32 30 31 37 2d 31 31 2d 30 36 # date\n" + + " 0c 31 32 3a 33 35 3a 35 36 2e 37 37 35 # time\n" + + " 17 32 30 31 37 2d 31 31 2d 30 36 54 31 32 3a 33 # dateTime\n" + + " 35 3a 35 36 2e 37 37 35 27 32 30 31 37 2d 31 31 # zonedDateTime\n" + + " 2d 30 36 54 31 32 3a 33 35 3a 35 36 2e 37 37 35\n" + + " 5a 5b 45 75 72 6f 70 65 2f 4c 6f 6e 64 6f 6e 5d # uuid\n" + + " 24 30 30 30 30 30 30 30 31 2d 32 33 34 35 2d 36\n" + + " 37 38 39 2d 30 30 30 30 2d 30 30 30 30 30 30 61\n" + + " 62 63 64 65 66\n" + + "83 01 # myNested\n" + + " # byteable\n" + + " 59 # flag\n" + + " 0b # b\n" + + " 16 00 # s\n" + + " 54 # c\n" + + " 2c 00 00 00 # i\n" + + " 8f c2 b1 40 # f\n" + + " 42 00 00 00 00 00 00 00 # l\n" + + " e1 7a 14 ae 47 71 53 40 # d\n" + + " # scalars\n" + + " 05 57 6f 72 6c 64 # s\n" + + " 01 30 # bi\n" + + " 01 30 # bd\n" + + " 0a 32 30 31 36 2d 31 30 2d 30 35 # date\n" + + (Jvm.isJava9Plus() ? + " 0c 30 32 3a 33 34 3a 35 36 2e 37 37 35 # time\n" : + " 0c 30 31 3a 33 34 3a 35 36 2e 37 37 35 # time\n") + + (Jvm.isJava9Plus() ? + " 17 32 30 31 36 2d 31 30 2d 30 35 54 30 32 3a 33 # dateTime\n" : + " 17 32 30 31 36 2d 31 30 2d 30 35 54 30 31 3a 33 # dateTime\n") + + " 34 3a 35 36 2e 37 37 35 2c 32 30 31 36 2d 31 30 # zonedDateTime\n" + + (Jvm.isJava9Plus() ? + " 2d 30 35 54 30 32 3a 33 34 3a 35 36 2e 37 37 35\n" : + " 2d 30 35 54 30 31 3a 33 34 3a 35 36 2e 37 37 35\n") + + " 2b 30 31 3a 30 30 5b 45 75 72 6f 70 65 2f 4c 6f\n" + + " 6e 64 6f 6e 5d 24 31 31 31 31 31 31 31 31 2d 31 # uuid\n" + + " 31 31 31 2d 31 31 31 31 2d 32 32 32 32 2d 32 32\n" + + " 32 32 32 32 32 32 32 32 32 32\n", bytes.toHexString()); + + final StringWriter out = new StringWriter(); + final MethodReader reader = bytes.bytesMethodReader(Mocker.logging(IBytesMethod.class, "* ", out)); + + for (int i = 0; i < 4; i++) { + assertTrue(reader.readOne()); + } + assertFalse(reader.readOne()); + + final String expected = + Jvm.isJava9Plus() ? + "* myByteable[MyByteable{flag=false, b=1, s=2, c=3, i=4, f=5.5, l=6, d=7.7}]\n" + + "* myByteable[MyByteable{flag=true, b=11, s=22, c=T, i=44, f=5.555, l=66, d=77.77}]\n" + + "* myScalars[MyScalars{s='Hello', bi=1, bd=10, date=2017-11-06, time=12:35:56.775, dateTime=2017-11-06T12:35:56.775, zonedDateTime=2017-11-06T12:35:56.775Z[Europe/London], uuid=00000001-2345-6789-0000-000000abcdef}]\n" + + "* myNested[MyNested{byteable=MyByteable{flag=true, b=11, s=22, c=T, i=44, f=5.555, l=66, d=77.77}, scalars=MyScalars{s='World', bi=0, bd=0, date=2016-10-05, time=02:34:56.775, dateTime=2016-10-05T02:34:56.775, zonedDateTime=2016-10-05T02:34:56.775+01:00[Europe/London], uuid=11111111-1111-1111-2222-222222222222}}]\n" : + "* myByteable[MyByteable{flag=false, b=1, s=2, c=3, i=4, f=5.5, l=6, d=7.7}]\n" + + "* myByteable[MyByteable{flag=true, b=11, s=22, c=T, i=44, f=5.555, l=66, d=77.77}]\n" + + "* myScalars[MyScalars{s='Hello', bi=1, bd=10, date=2017-11-06, time=12:35:56.775, dateTime=2017-11-06T12:35:56.775, zonedDateTime=2017-11-06T12:35:56.775Z[Europe/London], uuid=00000001-2345-6789-0000-000000abcdef}]\n" + + "* myNested[MyNested{byteable=MyByteable{flag=true, b=11, s=22, c=T, i=44, f=5.555, l=66, d=77.77}, scalars=MyScalars{s='World', bi=0, bd=0, date=2016-10-05, time=01:34:56.775, dateTime=2016-10-05T01:34:56.775, zonedDateTime=2016-10-05T01:34:56.775+01:00[Europe/London], uuid=11111111-1111-1111-2222-222222222222}}]\n"; + +/* System.out.println(expected); + System.out.println(out.toString().replaceAll("\n", ""));*/ + + assertEquals(expected, + out.toString().replaceAll("\r", "")); + } finally { + bytes.releaseLast(); + } + + } + +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesStoreTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesStoreTest.java new file mode 100644 index 0000000..c44a1f8 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesStoreTest.java @@ -0,0 +1,20 @@ +package net.openhft.chronicle.bytes; + +import org.junit.Test; + +import static org.junit.Assert.assertEquals; + +public class BytesStoreTest { + @Test + public void from() { + BytesStore from = BytesStore.from(", "); + assertEquals(2, from.capacity()); + } + + @Test + public void from2() { + assertEquals("Hello", Bytes.from("Hello").subBytes(0, 5) + .bytesForRead() + .toString()); + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesTest.java new file mode 100644 index 0000000..c982385 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesTest.java @@ -0,0 +1,802 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.bytes.util.DecoratedBufferUnderflowException; +import net.openhft.chronicle.bytes.util.UTF8StringInterner; +import net.openhft.chronicle.core.FlakyTestRunner; +import net.openhft.chronicle.core.OS; +import net.openhft.chronicle.core.io.AbstractReferenceCounted; +import net.openhft.chronicle.core.io.BackgroundResourceReleaser; +import net.openhft.chronicle.core.io.IORuntimeException; +import net.openhft.chronicle.core.threads.ThreadDump; +import net.openhft.chronicle.core.util.Histogram; +import org.jetbrains.annotations.NotNull; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.junit.runners.Parameterized; + +import java.io.PrintWriter; +import java.math.BigDecimal; +import java.nio.BufferOverflowException; +import java.nio.ByteBuffer; +import java.util.Arrays; +import java.util.Collection; +import java.util.Locale; +import java.util.Scanner; + +import static java.nio.charset.StandardCharsets.ISO_8859_1; +import static net.openhft.chronicle.bytes.Allocator.*; +import static org.junit.Assert.*; +import static org.junit.Assume.assumeFalse; + +@SuppressWarnings({"rawtypes"}) +@RunWith(Parameterized.class) +public class BytesTest extends BytesTestCommon { + + private final Allocator alloc1; + private ThreadDump threadDump; + + public BytesTest(String ignored, Allocator alloc1) { + this.alloc1 = alloc1; + } + + @Parameterized.Parameters(name = "{0}") + public static Collection data() { + return Arrays.asList(new Object[][]{ + {"Native", NATIVE}, + {"Heap", HEAP}, + {"Heap ByteBuffer", BYTE_BUFFER}, + {"Native Unchecked", NATIVE_UNCHECKED}, + {"Heap Unchecked", HEAP_UNCHECKED} + }); + } + + @After + public void checkRegisteredBytes() { + AbstractReferenceCounted.assertReferencesReleased(); + } + + @Before + public void threadDump() { + threadDump = new ThreadDump(); + } + + @After + public void checkThreadDump() { + threadDump.assertNoNewThreads(); + } + + @Test + public void throwExceptionIfReleased() { + Bytes bytes = alloc1.elasticBytes(16); + ((AbstractReferenceCounted) bytes).throwExceptionIfReleased(); + bytes.releaseLast(); + try { + ((AbstractReferenceCounted) bytes).throwExceptionIfReleased(); + fail(); + } catch (IllegalStateException ise) { + // expected. + } + } + + @Test + public void writeAdv() { + Bytes bytes = alloc1.fixedBytes(32); + for (int i = 0; i < 4; i++) + bytes.writeIntAdv('1', 1); + assertEquals("1111", bytes.toString()); + bytes.releaseLast(); + } + + @Test + public void writeLongAdv() { + Bytes bytes = alloc1.fixedBytes(32); + for (int i = 0; i < 4; i++) + bytes.writeLongAdv('1', 1); + assertEquals("1111", bytes.toString()); + bytes.releaseLast(); + } + + @Test + public void testName() throws IORuntimeException { + Bytes bytes = alloc1.fixedBytes(30); + try { + long expected = 12345L; + int offset = 5; + + bytes.writeLong(offset, expected); + bytes.writePosition(offset + 8); + assertEquals(expected, bytes.readLong(offset)); + } finally { + bytes.releaseLast(); + } + } + + @Test + public void readUnsignedByte() { + Bytes bytes = alloc1.fixedBytes(30); + try { + bytes.writeInt(0x11111111); + bytes.readLimit(1); + + assertEquals(0x11, bytes.readUnsignedByte(0)); + assertEquals(-1, bytes.peekUnsignedByte(1)); + + // as the offset is given it only needs to be under the writeLimit. + assertEquals(0x11, bytes.readUnsignedByte(1)); + + } finally { + bytes.releaseLast(); + } + } + + @Test + public void writeHistogram() { + @NotNull Bytes bytes = alloc1.elasticBytes(0xFFFFF); + @NotNull Histogram hist = new Histogram(); + hist.sample(10); + @NotNull Histogram hist2 = new Histogram(); + for (int i = 0; i < 10000; i++) + hist2.sample(i); + + bytes.writeHistogram(hist); + bytes.writeHistogram(hist2); + + @NotNull Histogram histB = new Histogram(); + @NotNull Histogram histC = new Histogram(); + bytes.readHistogram(histB); + bytes.readHistogram(histC); + + assertEquals(hist, histB); + assertEquals(hist2, histC); + bytes.releaseLast(); + } + + @Test + public void testCopy() { + Bytes bbb = alloc1.fixedBytes(1024); + try { + for (int i = 'a'; i <= 'z'; i++) + bbb.writeUnsignedByte(i); + bbb.readPositionRemaining(4, 12); + BytesStore, ByteBuffer> copy = bbb.copy(); + bbb.writeUnsignedByte(10, '0'); + assertEquals("[pos: 0, rlim: 12, wlim: 12, cap: 12 ] efghijklmnop", copy.toDebugString()); + copy.releaseLast(); + } finally { + bbb.releaseLast(); + } + } + + @Test + public void toHexString() { + Bytes bytes = alloc1.elasticBytes(1020); + try { + bytes.append("Hello World"); + assertEquals("00000000 48 65 6c 6c 6f 20 57 6f 72 6c 64 Hello Wo rld \n", bytes.toHexString()); + bytes.readLimit(bytes.realCapacity()); + assertEquals("00000000 48 65 6c 6c 6f 20 57 6f 72 6c 64 00 00 00 00 00 Hello Wo rld·····\n" + + "00000010 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ········ ········\n" + + "........\n" + + "000003f0 00 00 00 00 00 00 00 00 00 00 00 00 ········ ···· \n", bytes.toHexString()); + + assertEquals("00000000 48 65 6c 6c 6f 20 57 6f 72 6c 64 00 00 00 00 00 Hello Wo rld·····\n" + + "00000010 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ········ ········\n" + + "........\n" + + "000000f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ········ ········\n" + + "... truncated", bytes.toHexString(256)); + } finally { + bytes.releaseLast(); + } + } + + @Test + public void fromHexString() { + assumeFalse(NativeBytes.areNewGuarded()); + Bytes bytes = alloc1.elasticBytes(260); + try { + for (int i = 0; i < 259; i++) + bytes.writeByte((byte) i); + @NotNull String s = bytes.toHexString(); + Bytes bytes2 = Bytes.fromHexString(s); + assertEquals(s, bytes2.toHexString()); + bytes2.releaseLast(); + } finally { + bytes.releaseLast(); + } + } + + @Test + public void internRegressionTest() throws IORuntimeException { + UTF8StringInterner utf8StringInterner = new UTF8StringInterner(4096); + + Bytes bytes1 = alloc1.elasticBytes(64).append("TW-TRSY-20181217-NY572677_3256N1"); + Bytes bytes2 = alloc1.elasticBytes(64).append("TW-TRSY-20181217-NY572677_3256N15"); + utf8StringInterner.intern(bytes1); + String intern = utf8StringInterner.intern(bytes2); + assertEquals(bytes2.toString(), intern); + String intern2 = utf8StringInterner.intern(bytes1); + assertEquals(bytes1.toString(), intern2); + bytes1.releaseLast(); + bytes2.releaseLast(); + } + + @Test + public void testEqualBytesWithSecondStoreBeingLonger() throws IORuntimeException { + + BytesStore store1 = null, store2 = null; + try { + store1 = alloc1.elasticBytes(64).append("TW-TRSY-20181217-NY572677_3256N1"); + store2 = alloc1.elasticBytes(64).append("TW-TRSY-20181217-NY572677_3256N15"); + assertFalse(store1.equalBytes(store2, store2.length())); + } finally { + store1.releaseLast(); + store2.releaseLast(); + } + } + + @Test + public void testStopBitDouble() throws IORuntimeException { + Bytes b = alloc1.elasticBytes(1); + try { + testSBD(b, -0.0, "00000000 40 @ " + + " \n"); + testSBD(b, -1.0, "00000000 DF 7C ·| \n"); + testSBD(b, -12345678, "00000000 E0 D9 F1 C2 4E ····N \n"); + testSBD(b, 0.0, "00000000 00 · \n"); + testSBD(b, 1.0, "00000000 9F 7C ·| \n"); + testSBD(b, 1024, "00000000 A0 24 ·$ \n"); + testSBD(b, 1000000, "00000000 A0 CB D0 48 ···H \n"); + testSBD(b, 0.1, "00000000 9F EE B3 99 CC E6 B3 99 4D ········ M \n"); + testSBD(b, Double.NaN, "00000000 BF 7E ·~ \n"); + } finally { + b.releaseLast(); + } + } + + private void testSBD(@NotNull Bytes b, double v, String s) throws IORuntimeException { + b.clear(); + b.writeStopBit(v); + assertEquals(s, b.toHexString().toUpperCase()); + } + + @Test + public void testParseUtf8() { + Bytes bytes = alloc1.elasticBytes(1); + try { + assertEquals(1, bytes.refCount()); + bytes.appendUtf8("starting Hello World"); + @NotNull String s0 = bytes.parseUtf8(StopCharTesters.SPACE_STOP); + assertEquals("starting", s0); + @NotNull String s = bytes.parseUtf8(StopCharTesters.ALL); + assertEquals("Hello World", s); + assertEquals(1, bytes.refCount()); + } finally { + bytes.releaseLast(); + assertEquals(0, bytes.refCount()); + } + } + + @Test(expected = BufferOverflowException.class) + public void testPartialWriteArray() { + @NotNull byte[] array = "Hello World".getBytes(ISO_8859_1); + Bytes to = alloc1.fixedBytes(6); + try { + to.write(array); + } finally { + to.releaseLast(); + } + } + + @Test + public void testPartialWriteBB() { + ByteBuffer bb = ByteBuffer.wrap("Hello World".getBytes(ISO_8859_1)); + Bytes to = alloc1.fixedBytes(6); + + to.writeSome(bb); + assertEquals("World", Bytes.wrapForRead(bb).toString()); + to.releaseLast(); + } + + @Test + public void testCompact() { + assumeFalse(NativeBytes.areNewGuarded()); + Bytes from = alloc1.elasticBytes(1); + try { + from.write("Hello World"); + from.readLong(); + from.compact(); + assertEquals("rld", from.toString()); + assertEquals(0, from.readPosition()); + } finally { + from.releaseLast(); + } + } + + @Test + public void testReadIncompleteLong() { + assumeFalse(NativeBytes.areNewGuarded()); + Bytes bytes = alloc1.elasticBytes(16); + bytes.writeLong(0x0706050403020100L); + bytes.writeLong(0x0F0E0D0C0B0A0908L); + try { + assertEquals(0x0706050403020100L, bytes.readIncompleteLong()); + assertEquals(0x0F0E0D0C0B0A0908L, bytes.readIncompleteLong()); + for (int i = 0; i <= 7; i++) { + assertEquals("i: " + i, Long.toHexString(0x0B0A090807060504L >>> (i * 8)), + Long.toHexString(bytes.readPositionRemaining(4 + i, 8 - i) + .readIncompleteLong())); + } + assertEquals(0, bytes.readPositionRemaining(4, 0).readIncompleteLong()); + + } finally { + bytes.releaseLast(); + } + } + + @Test + public void testUnwrite() { + assumeFalse(NativeBytes.areNewGuarded()); + Bytes bytes = alloc1.elasticBytes(1); + try { + for (int i = 0; i < 26; i++) { + bytes.writeUnsignedByte('A' + i); + } + assertEquals(26, bytes.writePosition()); + assertEquals("ABCDEFGHIJKLMNOPQRSTUVWXYZ", bytes.toString()); + bytes.unwrite(1, 1); + assertEquals(25, bytes.writePosition()); + assertEquals("ACDEFGHIJKLMNOPQRSTUVWXYZ", bytes.toString()); + } finally { + bytes.releaseLast(); + } + } + + @Test(expected = BufferOverflowException.class) + public void testExpectNegativeOffsetAbsoluteWriteOnElasticBytesThrowsBufferOverflowException() { + Bytes bytes = alloc1.elasticBytes(4); + try { + if (bytes.unchecked()) + throw new BufferOverflowException(); + bytes.writeInt(-1, 1); + } finally { + bytes.releaseLast(); + } + } + + @Test(expected = BufferOverflowException.class) + public void testExpectNegativeOffsetAbsoluteWriteOnElasticBytesOfInsufficientCapacityThrowsBufferOverflowException() { + Bytes bytes = alloc1.elasticBytes(1); + + try { + if (bytes.unchecked()) + throw new BufferOverflowException(); + bytes.writeInt(-1, 1); + } finally { + bytes.releaseLast(); + } + } + + @Test(expected = BufferOverflowException.class) + public void testExpectNegativeOffsetAbsoluteWriteOnFixedBytesThrowsBufferOverflowException() { + Bytes bytes = alloc1.fixedBytes(4); + try { + bytes.writeInt(-1, 1); + } finally { + bytes.releaseLast(); + } + } + + @Test(expected = BufferOverflowException.class) + public void testExpectNegativeOffsetAbsoluteWriteOnFixedBytesOfInsufficientCapacityThrowsBufferOverflowException() { + Bytes bytes = alloc1.fixedBytes(1); + try { + bytes.writeInt(-1, 1); + } finally { + bytes.releaseLast(); + } + } + + @Test + public void testWriter() { + assumeFalse(NativeBytes.areNewGuarded()); + Bytes bytes = alloc1.elasticBytes(1); + @NotNull PrintWriter writer = new PrintWriter(bytes.writer()); + writer.println(1); + writer.println("Hello"); + writer.println(12.34); + writer.append('a').append('\n'); + writer.append("bye\n"); + writer.append("for now\nxxxx", 0, 8); + assertEquals("1\n" + + "Hello\n" + + "12.34\n" + + "a\n" + + "bye\n" + + "for now\n", bytes.toString().replaceAll("\r\n", "\n")); + try (@NotNull Scanner scan = new Scanner(bytes.reader())) { + scan.useLocale(Locale.ENGLISH); + assertEquals(1, scan.nextInt()); + assertEquals("", scan.nextLine()); + assertEquals("Hello", scan.nextLine()); + assertEquals(12.34, scan.nextDouble(), 0.0); + assertEquals("", scan.nextLine()); + assertEquals("a", scan.nextLine()); + assertEquals("bye", scan.nextLine()); + assertEquals("for now", scan.nextLine()); + assertFalse(scan.hasNext()); + bytes.releaseLast(); + } + } + + @Test + public void testParseUtf8High() { + assumeFalse(NativeBytes.areNewGuarded()); + @NotNull Bytes b = alloc1.elasticBytes(0xFFFFF); + for (int i = ' '; i < Character.MAX_VALUE; i++) + if (Character.isValidCodePoint(i)) + b.appendUtf8(i); + b.appendUtf8(0); + @NotNull StringBuilder sb = new StringBuilder(); + b.parseUtf8(sb, StopCharTesters.CONTROL_STOP); + sb.setLength(0); + b.readPosition(0); + b.parseUtf8(sb, (c1, c2) -> c2 <= 0); + b.releaseLast(); + } + + @Test + public void testBigDecimalBinary() { + for (double d : new double[]{1.0, 1000.0, 0.1}) { + @NotNull Bytes b = alloc1.elasticBytes(16); + b.writeBigDecimal(new BigDecimal(d)); + + @NotNull BigDecimal bd = b.readBigDecimal(); + assertEquals(new BigDecimal(d), bd); + b.releaseLast(); + } + } + + @Test + public void testBigDecimalText() { + for (double d : new double[]{1.0, 1000.0, 0.1}) { + @NotNull Bytes b = alloc1.elasticBytes(0xFFFF); + b.append(new BigDecimal(d)); + + @NotNull BigDecimal bd = b.parseBigDecimal(); + assertEquals(new BigDecimal(d), bd); + b.releaseLast(); + } + } + + @Test + public void testWithLength() { + assumeFalse(NativeBytes.areNewGuarded()); + Bytes hello = Bytes.from("hello"); + Bytes world = Bytes.from("world"); + @NotNull Bytes b = alloc1.elasticBytes(16); + b.writeWithLength(hello); + b.writeWithLength(world); + assertEquals("hello", hello.toString()); + + @NotNull Bytes b2 = alloc1.elasticBytes(16); + b.readWithLength(b2); + assertEquals("hello", b2.toString()); + b.readWithLength(b2); + assertEquals("world", b2.toString()); + + b.releaseLast(); + b2.releaseLast(); + hello.releaseLast(); + world.releaseLast(); + } + + @Test + public void testAppendBase() { + @NotNull Bytes b = alloc1.elasticBytes(16); + for (long value : new long[]{Long.MIN_VALUE, Integer.MIN_VALUE, -1, 0, 1, Integer.MAX_VALUE, Long.MAX_VALUE}) { + for (int base : new int[]{10, 16}) { + String s = Long.toString(value, base); + b.clear().appendBase(value, base); + assertEquals(s, b.toString()); + } + } + b.releaseLast(); + } + + @Test + public void testAppendBase16() { + @NotNull Bytes b = alloc1.elasticBytes(16); + for (long value : new long[]{Long.MIN_VALUE, Integer.MIN_VALUE, -1, 0, 1, Integer.MAX_VALUE, Long.MAX_VALUE}) { + String s = Long.toHexString(value).toLowerCase(); + b.clear().appendBase16(value); + assertEquals(s, b.toString()); + } + b.releaseLast(); + } + + @Test + public void testMove() { + @NotNull Bytes b = alloc1.elasticBytes(16); + try { + b.append("Hello World"); + b.move(3, 1, 3); + assertEquals("Hlo o World", b.toString()); + b.move(3, 5, 3); + assertEquals("Hlo o o rld", b.toString()); + } finally { + b.releaseLast(); + } + } + + + @Test(expected = IllegalStateException.class) + public void testMove2() { + FlakyTestRunner.run(OS.isWindows(), this::doTestMove2); + } + + public void doTestMove2() { + @NotNull Bytes b = alloc1.elasticBytes(16); + + b.append("Hello World"); + b.move(3, 1, 3); + assertEquals("Hlo o World", b.toString()); + b.releaseLast(); + b.move(3, 5, 3); + } + + @Test(expected = IllegalStateException.class) + public void testMove2B() { + @NotNull Bytes b = alloc1.elasticBytes(16); + + b.append("Hello World"); + b.bytesStore().move(3, 1, 3); + assertEquals("Hlo o World", b.toString()); + b.releaseLast(); + BackgroundResourceReleaser.releasePendingResources(); + b.bytesStore().move(3, 5, 3); + } + + @Test + public void testReadPosition() { + @NotNull Bytes b = alloc1.elasticBytes(16); + try { + b.readPosition(17); + assertTrue(b.unchecked()); + } catch (DecoratedBufferUnderflowException ex) { + assertFalse(b.unchecked()); + } finally { + b.releaseLast(); + } + } + + @Test + public void testReadPositionTooSmall() { + @NotNull Bytes b = alloc1.elasticBytes(16); + try { + b.readPosition(-1); + assertTrue(b.unchecked()); + } catch (DecoratedBufferUnderflowException ex) { + assertFalse(b.unchecked()); + } finally { + b.releaseLast(); + } + } + + @Test + public void testReadLimit() { + @NotNull Bytes b = alloc1.elasticBytes(16); + try { + b.readPosition(b.writeLimit() + 1); + assertTrue(b.unchecked()); + } catch (DecoratedBufferUnderflowException ex) { + assertFalse(b.unchecked()); + } finally { + b.releaseLast(); + } + } + + @Test + public void testReadLimitTooSmall() { + @NotNull Bytes b = alloc1.elasticBytes(16); + try { + b.readPosition(b.start() - 1); + assertTrue(b.unchecked()); + } catch (DecoratedBufferUnderflowException ex) { + assertFalse(b.unchecked()); + } finally { + b.releaseLast(); + } + } + + @Test + public void uncheckedSkip() { + assumeFalse(NativeBytes.areNewGuarded()); + + @NotNull Bytes b = alloc1.elasticBytes(16); + try { + b.uncheckedReadSkipOne(); + assertEquals(1, b.readPosition()); + b.uncheckedReadSkipBackOne(); + assertEquals(0, b.readPosition()); + b.writeUnsignedByte('H'); + b.writeUnsignedByte(0xFF); + assertEquals('H', b.uncheckedReadUnsignedByte()); + assertEquals(0xFF, b.uncheckedReadUnsignedByte()); + } finally { + b.releaseLast(); + } + } + + @Test + public void readVolatile() { + @NotNull Bytes b = alloc1.elasticBytes(16); + try { + b.writeVolatileByte(0, (byte) 1); + b.writeVolatileShort(1, (short) 2); + b.writeVolatileInt(3, 3); + b.writeVolatileLong(7, 4); + assertEquals(1, b.readVolatileByte(0)); + assertEquals(2, b.readVolatileShort(1)); + assertEquals(3, b.readVolatileInt(3)); + assertEquals(4, b.readVolatileLong(7)); + + } finally { + b.releaseLast(); + } + } + + @Test + public void testHashCode() { + assumeFalse(NativeBytes.areNewGuarded()); + + @NotNull Bytes b = alloc1.elasticBytes(16); + try { + b.writeLong(0); + assertEquals(0, b.hashCode()); + b.clear(); + b.writeLong(1); + assertEquals(0x152ad77e, b.hashCode()); + b.clear(); + b.writeLong(2); + assertEquals(0x2a55aefc, b.hashCode()); + b.clear(); + b.writeLong(3); + assertEquals(0x7f448df2, b.hashCode()); + b.clear(); + b.writeLong(4); + assertEquals(0x54ab5df8, b.hashCode()); + + } finally { + b.releaseLast(); + } + } + + @Test + public void testEnum() { + + @NotNull Bytes b = alloc1.elasticBytes(16); + try { + b.writeEnum(HEAP); + b.writeEnum(NATIVE); + assertEquals(HEAP, b.readEnum(Allocator.class)); + assertEquals(NATIVE, b.readEnum(Allocator.class)); + + } finally { + b.releaseLast(); + } + } + + @Test + public void testTimeMillis() { + @NotNull Bytes b = alloc1.elasticBytes(16); + try { + b.appendTimeMillis(12345678L); + assertEquals("03:25:45.678", b.toString()); + + } finally { + b.releaseLast(); + } + } + + @Test + public void testDateTimeMillis() { + @NotNull Bytes b = alloc1.elasticBytes(16); + try { + b.appendDateMillis(12345 * 86400_000L); + assertEquals("20031020", b.toString()); + + } finally { + b.releaseLast(); + } + } + + @Test + public void testWriteOffset() { + int length = 128; + Bytes from = NativeBytes.nativeBytes(length).unchecked(true); + Bytes to = alloc1.elasticBytes(length); + + Bytes a = Bytes.from("a"); + for (int i = 0; i < length; i++) { + from.write(i, a, 0L, 1); + } + a.releaseLast(); + + try { + to.write(from, 0L, length); + assertEquals(from.readLong(0), to.readLong(0)); + } finally { + from.releaseLast(); + to.releaseLast(); + } + } + + @Test + public void testToStringDoesNotChange() { + @NotNull Bytes a = alloc1.elasticBytes(16); + @NotNull Bytes b = alloc1.elasticBytes(16); + try { + String hello = "hello"; + a.append(hello); + b.append(hello); + + assertEquals(a, b); + assertEquals(a.bytesStore(), b.bytesStore()); + + assertEquals(hello, b.toString()); + + assertEquals(a, b); + assertEquals(a.bytesStore(), b.bytesStore()); + } finally { + a.releaseLast(); + b.releaseLast(); + } + } + + @Test + public void to8BitString() { + @NotNull Bytes a = alloc1.elasticBytes(16); + try { + assertEquals(a.toString(), a.to8bitString()); + String hello = "hello"; + a.append(hello); + assertEquals(a.toString(), a.to8bitString()); + } finally { + a.releaseLast(); + } + } + + @Test + public void testParseDoubleReadLimit() { + Bytes bytes = alloc1.fixedBytes(32); + try { + final String spaces = " "; + bytes.append(spaces).append(1.23); + bytes.readLimit(spaces.length()); + // only fails when assertions are off + assertEquals(0, BytesInternal.parseDouble(bytes), 0); + } finally { + bytes.releaseLast(); + } + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesTestCommon.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesTestCommon.java new file mode 100644 index 0000000..ddbad3e --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesTestCommon.java @@ -0,0 +1,19 @@ +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.io.AbstractReferenceCounted; +import org.junit.After; +import org.junit.Before; + +public class BytesTestCommon { + + @Before + public void enableReferenceTracing() { + AbstractReferenceCounted.enableReferenceTracing(); + } + + @After + public void assertReferencesReleased() { + AbstractReferenceCounted.assertReferencesReleased(); + } + +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesTextMethodTesterTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesTextMethodTesterTest.java new file mode 100644 index 0000000..a0ffd5a --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesTextMethodTesterTest.java @@ -0,0 +1,50 @@ +package net.openhft.chronicle.bytes; + +import org.junit.Test; + +import java.io.IOException; + +import static junit.framework.TestCase.assertEquals; +import static org.junit.Assume.assumeFalse; + +public class BytesTextMethodTesterTest extends BytesTestCommon { + @Test + public void run() throws IOException { + assumeFalse(NativeBytes.areNewGuarded()); + btmttTest("btmtt/prim-input.txt", "btmtt/prim-output.txt"); + } + + @SuppressWarnings("rawtypes") + protected void btmttTest(String input, String output) throws IOException { + BytesTextMethodTester tester = new BytesTextMethodTester<>( + input, + IBMImpl::new, + IBytesMethod.class, + output); + tester.run(); + assertEquals(tester.expected(), tester.actual()); + } + + static class IBMImpl implements IBytesMethod { + final IBytesMethod out; + + IBMImpl(IBytesMethod out) { + this.out = out; + } + + @Override + public void myByteable(MyByteable byteable) { + out.myByteable(byteable); + } + + @Override + public void myScalars(MyScalars scalars) { + out.myScalars(scalars); + } + + @Override + public void myNested(MyNested nested) { + out.myNested(nested); + } + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesUtilTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesUtilTest.java new file mode 100644 index 0000000..895dcd2 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/BytesUtilTest.java @@ -0,0 +1,87 @@ +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.Jvm; +import org.junit.Test; + +import java.io.File; +import java.io.FileNotFoundException; +import java.io.IOException; +import java.util.Arrays; + +import static org.junit.Assert.*; +import static org.junit.Assume.assumeTrue; + +@SuppressWarnings("rawtypes") +public class BytesUtilTest extends BytesTestCommon { + @Test + public void fromFileInJar() throws IOException { + Bytes bytes = BytesUtil.readFile("/net/openhft/chronicle/core/onoes/Google.properties"); + Bytes apache_license = Bytes.from("Apache License"); + long n = bytes.indexOf(apache_license); + assertTrue(n > 0); + apache_license.releaseLast(); + } + + @Test + public void findFile() throws FileNotFoundException { + String file = BytesUtil.findFile("file-to-find.txt"); + assertTrue(new File(file).exists()); + assertTrue(new File(file).canWrite()); + } + + @Test + public void triviallyCopyable() { + assumeTrue(Jvm.is64bit()); + + assertFalse(BytesUtil.isTriviallyCopyable(Nested.class)); + // TODO allow a portion of B to be trivially copyable + assertFalse(BytesUtil.isTriviallyCopyable(B.class)); + assertFalse(BytesUtil.isTriviallyCopyable(C.class)); + + assertTrue(BytesUtil.isTriviallyCopyable(A.class)); + int start = Jvm.objectHeaderSize(); + assertEquals("[" + start + ", " + (start + 20) + "]", Arrays.toString(BytesUtil.triviallyCopyableRange(A.class))); + assertTrue(BytesUtil.isTriviallyCopyable(A.class, start, 4 + 2 * 8)); + assertTrue(BytesUtil.isTriviallyCopyable(A.class, start + 4, 8)); + assertFalse(BytesUtil.isTriviallyCopyable(A.class, start - 4, 4 + 2 * 8)); + assertFalse(BytesUtil.isTriviallyCopyable(A.class, start + 4, 4 + 2 * 8)); + + assertTrue(BytesUtil.isTriviallyCopyable(A2.class)); + int size = Jvm.isAzulZing() ? 28 : 24; + assertEquals("[" + start + ", " + (start + size) + "]", Arrays.toString(BytesUtil.triviallyCopyableRange(A2.class))); + assertTrue(BytesUtil.isTriviallyCopyable(A2.class, start, 4 + 2 * 8 + 2 * 2)); + assertTrue(BytesUtil.isTriviallyCopyable(A2.class, start + 4, 8)); + assertFalse(BytesUtil.isTriviallyCopyable(A2.class, start - 4, 4 + 2 * 8)); + assertEquals(Jvm.isAzulZing(), BytesUtil.isTriviallyCopyable(A2.class, start + 8, 4 + 2 * 8)); + assertFalse(BytesUtil.isTriviallyCopyable(A2.class, start + 12, 4 + 2 * 8)); + } + + static class A { + int i; + long l; + double d; + } + + static class A2 extends A { + short s; + char ch; + } + + static class B { + int i; + long l; + double d; + String s; + } + + static class C { + int i; + transient long l; + double d; + } + + class Nested { + // implicit this$0 + int i; + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/CipherPerfMain.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/CipherPerfMain.java new file mode 100644 index 0000000..6f8883f --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/CipherPerfMain.java @@ -0,0 +1,16 @@ +package net.openhft.chronicle.bytes; + +import java.security.Provider; +import java.security.Security; +import java.util.Map; + +public class CipherPerfMain { + public static void main(String[] args) { + for (Provider providers : Security.getProviders()) { + for (Map.Entry entry : providers.entrySet()) { + if (entry.getKey().toString().startsWith("Cipher.")) + System.out.println(entry); + } + } + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/CommonMarshallableTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/CommonMarshallableTest.java new file mode 100644 index 0000000..177484a --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/CommonMarshallableTest.java @@ -0,0 +1,14 @@ +package net.openhft.chronicle.bytes; + +import org.junit.Test; + +import static org.junit.Assert.assertFalse; + +public class CommonMarshallableTest extends BytesTestCommon { + + @Test + public void usesSelfDescribingMessage() { + assertFalse(new CommonMarshallable() { + }.usesSelfDescribingMessage()); + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ConcurrentRafAccessTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ConcurrentRafAccessTest.java new file mode 100644 index 0000000..8d1eff6 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ConcurrentRafAccessTest.java @@ -0,0 +1,168 @@ +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.io.IOTools; +import org.junit.*; +import org.junit.rules.TemporaryFolder; + +import java.io.File; +import java.io.IOException; +import java.io.RandomAccessFile; +import java.nio.channels.FileChannel; +import java.nio.file.Files; +import java.nio.file.Paths; +import java.util.List; +import java.util.LongSummaryStatistics; +import java.util.concurrent.ExecutorService; +import java.util.concurrent.Executors; +import java.util.concurrent.ForkJoinPool; +import java.util.concurrent.TimeUnit; +import java.util.stream.Collectors; +import java.util.stream.IntStream; + +import static org.junit.Assert.fail; + +/* + Averages from TeamCity logs: + + Type. Linux [us] Windows [us] ARM [us] + =========================================================== + Sequential 15 49 120 + Parallel 3.5 15 51 +*/ + +@Ignore("This is a performance test and should not be run as a part of the normal build") +public class ConcurrentRafAccessTest extends BytesTestCommon { + + private static final String MODE = "rw"; + private static final String BASE_DIR = "rafs"; + private static final long INITIAL_LENGTH = 64L; + private static final int RUNS = 64; + private static final int NO_FILES = ForkJoinPool.commonPool().getPoolSize(); + + private List workers; + + @Rule + public TemporaryFolder tmpDir = new TemporaryFolder(); + + private static void bumpSize(File file, final RandomAccessFile raf, final FileChannel fc) throws IOException { + final long currentSize = fc.size(); + raf.setLength(currentSize * 2); + } + + @Before + public void setup() throws IOException { + Files.createDirectories(Paths.get(BASE_DIR)); + + workers = IntStream.range(0, NO_FILES) + .mapToObj(i -> { + try { + final File file = fileFromInt(i); + final RandomAccessFile raf = new RandomAccessFile(file, MODE); + raf.setLength(INITIAL_LENGTH); + final FileChannel fc = raf.getChannel(); + return new Worker(file, raf, fc); + } catch (IOException e) { + e.printStackTrace(); + fail("unable to create file for " + i); + return null; + } + }) + .collect(Collectors.toList()); + } + + @After + public void cleanup() { + IOTools.deleteDirWithFiles(BASE_DIR); + } + + @Test + public void testParallel2() { + final LongSummaryStatistics summaryStatistics = IntStream.range(0, RUNS) + .mapToLong(i -> test("testParallel2 " + i, ForkJoinPool.commonPool())) + .skip(4) + .summaryStatistics(); + +// System.out.println("testParallel2: " + summaryStatistics); + } + + @Test + public void testSequential() { + final LongSummaryStatistics summaryStatistics = IntStream.range(0, RUNS) + .mapToLong(i -> test("testSequential " + i, Executors.newSingleThreadExecutor())) + .skip(4) + .summaryStatistics(); + +// System.out.println("testSequential: " + summaryStatistics); + + } + + @Test + public void testParallel() { + final LongSummaryStatistics summaryStatistics = IntStream.range(0, RUNS) + .mapToLong(i -> test("testParallel " + i, ForkJoinPool.commonPool())) + .skip(4) + .summaryStatistics(); + +// System.out.println("testParallel: " + summaryStatistics); + } + + @Test + public void testSequential2() { + final LongSummaryStatistics summaryStatistics = IntStream.range(0, RUNS) + .mapToLong(i -> test("testSequential2 " + i, Executors.newSingleThreadExecutor())) + .skip(4) + .summaryStatistics(); + +// System.out.println("testSequential2: " + summaryStatistics); + + } + + private long test(final String name, final ExecutorService executor) { + final long beginNs = System.nanoTime(); + + workers.forEach(executor::submit); + executor.shutdown(); + try { + executor.awaitTermination(2, TimeUnit.SECONDS); + } catch (InterruptedException ie) { + ie.printStackTrace(); + } + + final long elapsedNs = System.nanoTime() - beginNs; +// System.out.format("%s: elapsedNs = %,d%n", name, elapsedNs); + return elapsedNs; + } + + private File fileFromInt(int i) throws IOException { + return tmpDir.newFile(Integer.toString(i)); + } + + private static final class Worker implements Runnable { + + private final File f; + private final RandomAccessFile raf; + private final FileChannel fc; + + public Worker(final File f, final RandomAccessFile raf, final FileChannel fc) { + this.f = f; + this.raf = raf; + this.fc = fc; + } + + @Override + public void run() { + final long beginNs = System.nanoTime(); + for (int i = 0; i < 24; i++) { + try { + bumpSize(f, raf, fc); + } catch (IOException e) { + e.printStackTrace(); + return; + } + } + final long elapsedNs = System.nanoTime() - beginNs; +// System.out.format("%s: elapsedNs = %,d%n", Thread.currentThread().getName(), elapsedNs); + } + } + +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/CopyBytesTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/CopyBytesTest.java new file mode 100644 index 0000000..3622e1f --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/CopyBytesTest.java @@ -0,0 +1,81 @@ +/* + * Copyright 2014-2020 chronicle.software + * + * http://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.io.Closeable; +import org.junit.Test; + +import java.io.File; + +import static org.junit.Assert.assertEquals; + +public class CopyBytesTest extends BytesTestCommon { + + static void doTest(Bytes toTest, int from) { + Bytes toCopy = Bytes.allocateDirect(32); + Bytes toValidate = Bytes.allocateDirect(32); + try { + toCopy.writeLong(0, (long) 'W' << 56L | 100L); + toCopy.writeLong(8, (long) 'W' << 56L | 200L); + + toTest.writePosition(from); + toTest.write(toCopy, 0, 2 * 8L); + toTest.write(toCopy, 0, 8L); + + toTest.readPosition(from); + toTest.read(toValidate, 3 * 8); + + assertEquals((long) 'W' << 56L | 100L, toValidate.readLong(0)); + assertEquals((long) 'W' << 56L | 200L, toValidate.readLong(8)); + assertEquals((long) 'W' << 56L | 100L, toValidate.readLong(16)); + + } finally { + toTest.releaseLast(); + toCopy.releaseLast(); + toValidate.releaseLast(); + // close if closeable. + Closeable.closeQuietly(toTest); + } + } + + @Test + public void testCanCopyBytesFromBytes() { + doTest(Bytes.allocateElasticDirect(), 0); + } + + @Test + public void testCanCopyBytesFromMappedBytes1() throws Exception { + File bytes = File.createTempFile("mapped-test", "bytes"); + bytes.deleteOnExit(); + doTest(MappedBytes.mappedBytes(bytes, 64 << 10, 0), 0); + } + + @Test + public void testCanCopyBytesFromMappedBytes2() throws Exception { + File bytes = File.createTempFile("mapped-test", "bytes"); + bytes.deleteOnExit(); + doTest(MappedBytes.mappedBytes(bytes, 64 << 10, 0), (64 << 10) - 8); + } + + @Test + public void testCanCopyBytesFromMappedBytes3() throws Exception { + File bytes = File.createTempFile("mapped-test", "bytes"); + bytes.deleteOnExit(); + doTest(MappedBytes.mappedBytes(bytes, 16 << 10, 16 << 10), (64 << 10) - 8); + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/HeapByteStoreTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/HeapByteStoreTest.java new file mode 100644 index 0000000..ef9054a --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/HeapByteStoreTest.java @@ -0,0 +1,50 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import org.jetbrains.annotations.NotNull; +import org.junit.Test; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNotEquals; + +public class HeapByteStoreTest extends BytesTestCommon { + @SuppressWarnings("rawtypes") + @Test + public void testEquals() { + @NotNull HeapBytesStore hbs = HeapBytesStore.wrap("Hello".getBytes()); + @NotNull HeapBytesStore hbs2 = HeapBytesStore.wrap("Hello".getBytes()); + @NotNull HeapBytesStore hbs3 = HeapBytesStore.wrap("He!!o".getBytes()); + @NotNull HeapBytesStore hbs4 = HeapBytesStore.wrap("Hi".getBytes()); + assertEquals(hbs, hbs2); + assertEquals(hbs2, hbs); + assertNotEquals(hbs, hbs3); + assertNotEquals(hbs3, hbs); + assertNotEquals(hbs, hbs4); + assertNotEquals(hbs4, hbs); + } + + @Test + public void testElasticBytesEnsuringCapacity() { + Bytes bytes = Bytes.elasticHeapByteBuffer(); + bytes.clearAndPad(bytes.realCapacity() + 128); + // ensure this succeeds even though we are above the real capacity - this should trigger resize + bytes.prewriteInt(1); + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/HexDumpBytesTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/HexDumpBytesTest.java new file mode 100644 index 0000000..849fa4b --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/HexDumpBytesTest.java @@ -0,0 +1,25 @@ +package net.openhft.chronicle.bytes; + +import org.junit.Test; + +import static org.junit.Assert.assertEquals; + +public class HexDumpBytesTest extends BytesTestCommon { + + @Test + public void offsetFormat() { + HexDumpBytes bytes = new HexDumpBytes() + .numberWrap(8) + .offsetFormat((o, b) -> b.appendBase16(o, 4)); + bytes.comment("hi").write(new byte[18]); + bytes.indent(1); + bytes.comment("nest").write(new byte[18]); + assertEquals("0000 00 00 00 00 00 00 00 00 # hi\n" + + "0008 00 00 00 00 00 00 00 00\n" + + "0010 00 00\n" + + "0012 00 00 00 00 00 00 00 00 # nest\n" + + "001a 00 00 00 00 00 00 00 00\n" + + "0022 00 00\n", bytes.toHexString()); + bytes.releaseLast(); + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/IBytesMethod.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/IBytesMethod.java new file mode 100644 index 0000000..bf3005f --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/IBytesMethod.java @@ -0,0 +1,12 @@ +package net.openhft.chronicle.bytes; + +interface IBytesMethod { + @MethodId(0x81L) + void myByteable(MyByteable byteable); + + @MethodId(0x82L) + void myScalars(MyScalars scalars); + + @MethodId(0x83L) + void myNested(MyNested nested); +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/Issue128Test.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/Issue128Test.java new file mode 100644 index 0000000..eb46dfe --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/Issue128Test.java @@ -0,0 +1,53 @@ +package net.openhft.chronicle.bytes; + +import org.junit.Test; + +import java.text.DecimalFormat; + +import static net.openhft.chronicle.bytes.UnsafeTextBytesTest.testAppendDouble; +import static org.junit.Assert.assertEquals; + +public class Issue128Test { + private static final DecimalFormat DF; + + static { + DecimalFormat df = new DecimalFormat(); + df.setMinimumFractionDigits(1); + df.setMaximumFractionDigits(30); + DF = df; + } + + static String toDecimal(double d) { + return DF.format(d); + } + + @Test +// @Ignore("https://github.com/OpenHFT/Chronicle-Bytes/issues/128") + public void testCorrect() { + Bytes bytes = Bytes.allocateDirect(32); + try { + // odd ones are trouble. + for (int i = 1; i < 1_000_000; i += 2) { + double v6 = (double) i / 1_000_000; + doTest(bytes, v6); + doTest(bytes, 999 + v6); + double v7 = (double) i / 10_000_000; + doTest(bytes, v7); + double v8 = (double) i / 100_000_000; + doTest(bytes, v8); + double v9 = (double) i / 100_000_000; + doTest(bytes, v9); + } + } finally { + bytes.releaseLast(); + } + } + + public void doTest(Bytes bytes, double v) { + String format = DF.format(v); + String output = testAppendDouble(bytes, v); + if (Double.parseDouble(output) != v || format.length() != output.length()) + assertEquals(DF.format(v), output); +// System.out.println(DF.format(v)+" != " + output); + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/Issue85Test.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/Issue85Test.java new file mode 100644 index 0000000..df31bdd --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/Issue85Test.java @@ -0,0 +1,117 @@ +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.Maths; +import org.junit.Assert; +import org.junit.Test; + +import java.math.BigDecimal; +import java.nio.ByteBuffer; +import java.security.SecureRandom; +import java.text.DecimalFormat; +import java.text.DecimalFormatSymbols; +import java.util.Locale; + +import static org.junit.Assume.assumeFalse; + +public class Issue85Test extends BytesTestCommon { + int different = 0; + int different2 = 0; + DecimalFormat df = new DecimalFormat(); + + { + df.setMaximumIntegerDigits(99); + df.setMaximumFractionDigits(99); + df.setMinimumFractionDigits(1); + df.setGroupingUsed(false); + df.setDecimalFormatSymbols( + DecimalFormatSymbols.getInstance(Locale.ENGLISH)); + } + + @SuppressWarnings("rawtypes") + static double parseDouble(Bytes bytes) { + long value = 0; + int deci = Integer.MIN_VALUE; + while (bytes.readRemaining() > 0) { + byte ch = bytes.readByte(); + if (ch == '.') { + deci = 0; + } else if (ch >= '0' && ch <= '9') { + value *= 10; + value += ch - '0'; + deci++; + } else { + break; + } + } + if (deci <= 0) { + return value; + } + return asDouble(value, deci); + } + + private static double asDouble(long value, int deci) { + int scale2 = 0; + int leading = Long.numberOfLeadingZeros(value); + if (leading > 1) { + scale2 = leading - 1; + value <<= scale2; + } + long fives = Maths.fives(deci); + long whole = value / fives; + long rem = value % fives; + double d = whole + (double) rem / fives; + double scalb = Math.scalb(d, -deci - scale2); + return scalb; + } + + @Test + public void bytesParseDouble_Issue85_Many0() { + assumeFalse(NativeBytes.areNewGuarded()); + int max = 100, count = 0; + Bytes bytes = Bytes.elasticHeapByteBuffer(64); + for (double d0 = 1e21; d0 >= 1e-8; d0 /= 10) { + long val = Double.doubleToRawLongBits(d0); + for (int i = -max / 2; i <= max / 2; i++) { + double d = Double.longBitsToDouble(val + i); + doTest(bytes, i, d); + } + count += max + 1; + } + SecureRandom rand = new SecureRandom(); + for (int i = 0; i < max * 100; i++) { + double d = Math.pow(1e12, rand.nextDouble()) / 1e3; + doTest(bytes, 0, d); + count++; + } + if (different + different2 > 0) + Assert.fail("Different toString: " + 100.0 * different / count + "%," + + " parsing: " + 100.0 * different2 / count + "%"); + } + + protected void doTest(Bytes bytes, int i, double d) { + String s = df.format(d); + bytes.clear().append(s); + double d2 = bytes.parseDouble(); + if (d != d2) { +// System.out.println(i + ": Parsing " + s + " != " + d2); + ++different2; + } + + String s2 = bytes.append(d).toString(); + double d3 = Double.parseDouble(s2); + if (d != d3) { +// System.out.println(i + ": ToString " + s + " != " + s2 + " should be " + new BigDecimal(d)); + ++different; + } + } + + @Test + public void loseTrainingZeros() { + double d = -541098.2421; + Assert.assertEquals("" + d, + ((Bytes) Bytes.allocateElasticOnHeap(64)) + .append(d) + .toString()); + + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MappedBytesTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MappedBytesTest.java new file mode 100644 index 0000000..a7aed10 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MappedBytesTest.java @@ -0,0 +1,455 @@ +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.Jvm; +import net.openhft.chronicle.core.OS; +import net.openhft.chronicle.core.io.IOTools; +import org.junit.After; +import org.junit.Assert; +import org.junit.Test; + +import java.io.File; +import java.io.FileNotFoundException; +import java.io.IOException; +import java.io.RandomAccessFile; +import java.util.Arrays; +import java.util.stream.IntStream; + +import static org.junit.Assert.*; + +@SuppressWarnings("rawtypes") +public class MappedBytesTest extends BytesTestCommon { + + final private String + smallText = "It's ten years since the iPhone was first unveiled and Apple has marked " + + "the occas" + + "ion with a new iPhone that doesn't just jump one generation, it jumps several. " + + "Apple has leapt straight from iPhone 7 (via the iPhone 8, reviewed here) all the way " + + "to iPhone 10 (yes, that's how you are supposed to say it).\n" + + "\n" + + "Read on to find out how the new flagship iPhone X shapes up. Is it going to revolutionise " + + "the mobile phone again like the original iPhone did, or is Apple now just playing catch-up " + + "with the rest of the industry? (For a comparison with one rival device, see iPhone X vs LG G7.)\n"; + + private final StringBuilder largeTextBuilder = new StringBuilder(); + + private final String text; + + { + for (int i = 0; i < 200; i++) { + largeTextBuilder.append(smallText); + } + + text = largeTextBuilder.toString(); + } + + @Test + public void testMappedFileSafeLimitTooSmall() throws IOException { + + final int arraySize = 40_000; + + byte[] data = new byte[arraySize]; + Arrays.fill(data, (byte) 'x'); + + File tempFile1 = File.createTempFile("mapped", "bytes"); + try (MappedBytes bytesW = MappedBytes.mappedBytes(tempFile1, 50_000, 40_000); + MappedBytes bytesR = MappedBytes.mappedBytes(tempFile1, 50_000, 40_000)) { + + for (int i = 0; i < 5; i++) { + bytesW.write(data); + } + + for (int i = 0; i < 5; i++) { + bytesR.write(data); + } + } + } + + @Test + public void testMappedFileSafeLimitTooSmall2() throws IOException { + + final int arraySize = 40_000; + + byte[] data = new byte[arraySize]; + Arrays.fill(data, (byte) 'x'); + + File tempFile1 = File.createTempFile("mapped", "bytes"); + try (MappedBytes bytesW = MappedBytes.mappedBytes(tempFile1, 50_000, 30_000); + MappedBytes bytesR = MappedBytes.mappedBytes(tempFile1, 50_000, 30_000)) { + + for (int i = 0; i < 5; i++) { + bytesW.write(data); + } + + for (int i = 0; i < 5; i++) { + bytesR.write(data); + } + } + } + + @Test + public void testWriteBytes() throws IOException { + File tempFile1 = File.createTempFile("mapped", "bytes"); + try (MappedBytes bytesW = MappedBytes.mappedBytes(tempFile1, 4, 4); + MappedBytes bytesR = MappedBytes.mappedBytes(tempFile1, 200 << 10, 200 << 10)) { + + // write + Bytes from = Bytes.from(text); + bytesW.write(from); + long wp = bytesW.writePosition; + Assert.assertEquals(text.length(), bytesW.writePosition); + + // read + bytesR.readLimit(wp); + + Assert.assertEquals(text, bytesR.toString()); + from.releaseLast(); + } + } + + @Test + public void testWriteReadBytes() throws IOException { + File tempFile1 = File.createTempFile("mapped", "bytes"); + try (MappedBytes bytesW = MappedBytes.mappedBytes(tempFile1, 64 << 10, 16 << 10); + MappedBytes bytesR = MappedBytes.mappedBytes(tempFile1, 64 << 10, 16 << 10)) { + + // write + Bytes from = Bytes.from(text); + bytesW.write(from); + long wp = bytesW.writePosition; + Assert.assertEquals(text.length(), bytesW.writePosition); + + // read + bytesR.readLimit(wp); + + Assert.assertEquals(text, bytesR.toString()); + from.releaseLast(); + } + } + + @Test + public void testWriteBytesWithOffset() throws IOException { + File tempFile1 = File.createTempFile("mapped", "bytes"); + try (MappedBytes bytesW = MappedBytes.mappedBytes(tempFile1, 4, 4); + MappedBytes bytesR = MappedBytes.mappedBytes(tempFile1, 200 << 10, 200 << 10)) { + + int offset = 10; + + // write + Bytes from = Bytes.from(text); + bytesW.write(offset, from); + long wp = text.length() + offset; + Assert.assertEquals(0, bytesW.writePosition); + + // read + bytesR.readLimit(wp); + bytesR.readPosition(offset); + Assert.assertEquals(text, bytesR.toString()); + from.releaseLast(); + } + } + + @Test + public void testWriteReadBytesWithOffset() throws IOException { + File tempFile1 = File.createTempFile("mapped", "bytes"); + try (MappedBytes bytesW = MappedBytes.mappedBytes(tempFile1, 64 << 10, 16 << 10); + MappedBytes bytesR = MappedBytes.mappedBytes(tempFile1, 64 << 10, 16 << 10)) { + + int offset = 10; + + // write + Bytes from = Bytes.from(text); + bytesW.write(offset, from); + long wp = text.length() + offset; + Assert.assertEquals(0, bytesW.writePosition); + + // read + bytesR.readLimit(wp); + bytesR.readPosition(offset); + Assert.assertEquals(text, bytesR.toString()); + from.releaseLast(); + } + } + + @Test + public void testWriteBytesWithOffsetAndTextShift() throws IOException { + File tempFile1 = File.createTempFile("mapped", "bytes"); + try (MappedBytes bytesW = MappedBytes.mappedBytes(tempFile1, 4, 4); + MappedBytes bytesR = MappedBytes.mappedBytes(tempFile1, 200 << 10, 200 << 10)) { + int offset = 10; + int shift = 128; + + //write + Bytes from = Bytes.from(text); + bytesW.write(offset, from, shift, text.length() - shift); + Assert.assertEquals(0, bytesW.writePosition); + + // read + bytesR.readLimit(offset + (text.length() - shift)); + bytesR.readPosition(offset); + String actual = bytesR.toString(); + Assert.assertEquals(text.substring(shift), actual); + from.releaseLast(); + } + } + + @Test + public void testWriteReadBytesWithOffsetAndTextShift() throws IOException { + File tempFile1 = File.createTempFile("mapped", "bytes"); + try (MappedBytes bytesW = MappedBytes.mappedBytes(tempFile1, 64 << 10, 16 << 10); + MappedBytes bytesR = MappedBytes.mappedBytes(tempFile1, 64 << 10, 16 << 10)) { + int offset = 10; + int shift = 128; + + //write + Bytes from = Bytes.from(text); + bytesW.write(offset, from, shift, text.length() - shift); + Assert.assertEquals(0, bytesW.writePosition); + + // read + bytesR.readLimit(offset + (text.length() - shift)); + bytesR.readPosition(offset); + String actual = bytesR.toString(); + Assert.assertEquals(text.substring(shift), actual); + from.releaseLast(); + } + } + + @Test + public void testLargeWrites() throws IOException { + MappedBytes bytes = MappedBytes.mappedBytes(File.createTempFile("mapped", "bytes"), 128 << + 10, 64 << 10); + + byte[] largeBytes = new byte[500 << 10]; + bytes.writePosition(0); + bytes.write(largeBytes); + bytes.writePosition(0); + bytes.write(64, largeBytes); + bytes.writePosition(0); + bytes.write(largeBytes, 64, largeBytes.length - 64); + bytes.writePosition(0); + bytes.write(64, largeBytes, 64, largeBytes.length - 64); + + bytes.writePosition(0); + bytes.write(Bytes.wrapForRead(largeBytes)); + bytes.writePosition(0); + Bytes bytes1 = Bytes.wrapForRead(largeBytes); + bytes.write(64, bytes1); + bytes.writePosition(0); + bytes.write(Bytes.wrapForRead(largeBytes), 64L, largeBytes.length - 64L); + bytes.writePosition(0); + bytes.write(64, Bytes.wrapForRead(largeBytes), 64L, largeBytes.length - 64L); + + Bytes bytes2 = Bytes.allocateDirect(largeBytes); + bytes.writePosition(0); + bytes.write(bytes2); + bytes.writePosition(0); + bytes.write(64, bytes2); + bytes.writePosition(0); + bytes.write(bytes2, 64L, largeBytes.length - 64L); + bytes.writePosition(0); + bytes.write(64, bytes2, 64L, largeBytes.length - 64L); + + bytes2.releaseLast(); + bytes.releaseLast(); + + } + + @Test + public void testLargeWrites3() throws IOException { + MappedBytes bytes = MappedBytes.mappedBytes(File.createTempFile("mapped", "bytes"), 47 << + 10, 21 << 10); + + byte[] largeBytes = new byte[513 << 10]; + bytes.writePosition(0); + bytes.write(largeBytes); + bytes.writePosition(0); + bytes.write(64, largeBytes); + bytes.writePosition(0); + bytes.write(largeBytes, 64, largeBytes.length - 64); + bytes.writePosition(0); + bytes.write(64, largeBytes, 64, largeBytes.length - 64); + + bytes.writePosition(0); + bytes.write(Bytes.wrapForRead(largeBytes)); + bytes.writePosition(0); + Bytes bytes1 = Bytes.wrapForRead(largeBytes); + bytes.write(64, bytes1); + bytes.writePosition(0); + bytes.write(Bytes.wrapForRead(largeBytes), 64L, largeBytes.length - 64L); + bytes.writePosition(0); + bytes.write(64, Bytes.wrapForRead(largeBytes), 64L, largeBytes.length - 64L); + + Bytes bytes2 = Bytes.allocateDirect(largeBytes); + bytes.writePosition(0); + bytes.write(bytes2); + bytes.writePosition(0); + bytes.write(64, bytes2); + bytes.writePosition(0); + bytes.write(bytes2, 64L, largeBytes.length - 64L); + bytes.writePosition(0); + bytes.write(64, bytes2, 64L, largeBytes.length - 64L); + + bytes2.releaseLast(); + bytes.releaseLast(); + + } + + @Test + public void testLargeWrites2() throws IOException { + MappedBytes bytes = MappedBytes.mappedBytes(File.createTempFile("mapped", "bytes"), 128 << + 10, 128 << 10); + + byte[] largeBytes = new byte[500 << 10]; + bytes.writePosition(0); + bytes.write(largeBytes); + bytes.writePosition(0); + bytes.write(64, largeBytes); + bytes.writePosition(0); + bytes.write(largeBytes, 64, largeBytes.length - 64); + bytes.writePosition(0); + bytes.write(64, largeBytes, 64, largeBytes.length - 64); + + bytes.writePosition(0); + bytes.write(Bytes.wrapForRead(largeBytes)); + bytes.writePosition(0); + Bytes bytes1 = Bytes.wrapForRead(largeBytes); + bytes.write(64, bytes1); + bytes.writePosition(0); + bytes.write(Bytes.wrapForRead(largeBytes), 64L, largeBytes.length - 64L); + bytes.writePosition(0); + bytes.write(64, Bytes.wrapForRead(largeBytes), 64L, largeBytes.length - 64L); + + Bytes bytes2 = Bytes.allocateDirect(largeBytes); + bytes.writePosition(0); + bytes.write(bytes2); + bytes.writePosition(0); + bytes.write(64, bytes2); + bytes.writePosition(0); + bytes.write(bytes2, 64L, largeBytes.length - 64L); + bytes.writePosition(0); + bytes.write(64, bytes2, 64L, largeBytes.length - 64L); + + bytes2.releaseLast(); + bytes.releaseLast(); + + } + + @Test + public void shouldNotBeReadOnly() throws Exception { + MappedBytes bytes = MappedBytes.mappedBytes(File.createTempFile("mapped", "bytes"), 64 << 10); + assertFalse(bytes.isBackingFileReadOnly()); + bytes.writeUtf8(null); // used to blow up. + assertNull(bytes.readUtf8()); + bytes.releaseLast(); + } + + @Test + public void shouldBeReadOnly() throws Exception { + final File tempFile = File.createTempFile("mapped", "bytes"); + try (final RandomAccessFile raf = new RandomAccessFile(tempFile, "rw")) { + raf.setLength(4096); + assertTrue(tempFile.setWritable(false)); + final MappedBytes mappedBytes = MappedBytes.readOnly(tempFile); + + assertTrue(mappedBytes. + isBackingFileReadOnly()); + mappedBytes.releaseLast(); + assertEquals(0, mappedBytes.refCount()); + } + } + + @Test + public void interrupted() throws FileNotFoundException { + Thread.currentThread().interrupt(); + File file = IOTools.createTempFile("interrupted"); + file.deleteOnExit(); + MappedBytes mb = MappedBytes.mappedBytes(file, 64 << 10); + try { + mb.realCapacity(); + assertTrue(Thread.currentThread().isInterrupted()); + } finally { + mb.releaseLast(); + } + } + + @After + public void clearInterrupt() { + Thread.interrupted(); + } + + @Test + public void multiBytes() throws FileNotFoundException { + File tmpfile = IOTools.createTempFile("data.dat"); + try (MappedFile mappedFile = MappedFile.mappedFile(tmpfile, 64 << 10); + MappedBytes original = MappedBytes.mappedBytes(mappedFile)) { + original.zeroOut(0, 1000); + + original.writeInt(0, 1234); + + PointerBytesStore pbs = new PointerBytesStore(); + pbs.set(original.addressForRead(50), 100); + + // Print out the int in the two BytesStores. + // This shows that the copy has the same contents of the original. +// System.out.println("Original(0): " + original.readInt(0)); +// System.out.println("PBS(0): " + pbs.readInt(0)); + + // Now modify the copy and print out the new int in the two BytesStores again. + pbs.writeInt(0, 4321); +// System.out.println("Original(50): " + original.readInt(50)); +// System.out.println("PBS(0): " + pbs.readInt(0)); + original.writeInt(54, 12345678); +// System.out.println("Original(54): " + original.readInt(54)); +// System.out.println("PBS(4): " + pbs.readInt(4)); + } + } + + @Test + public void memoryOverlapRegions() throws FileNotFoundException { + String tmpfile = IOTools.createTempFile("memoryOverlapRegions").getAbsolutePath(); + int chunkSize = 256 << 16; + int overlapSize = 64 << 16; + String longString = new String(new char[overlapSize * 2]); + Bytes csb = Bytes.from(longString); + try (MappedBytes mb = MappedBytes.mappedBytes(new File(tmpfile), chunkSize, overlapSize)) { + StringBuilder sb = new StringBuilder(); + for (int offset : new int[]{chunkSize - OS.pageSize(), chunkSize + overlapSize - OS.pageSize()}) { + mb.writePosition(offset); + mb.appendUtf8(longString); + mb.readPosition(offset); + assertEquals(offset < chunkSize ? 0 : chunkSize, mb.bytesStore().start()); + + mb.equalBytes(csb, csb.length()); + assertEquals(chunkSize, mb.bytesStore().start()); + + mb.equalBytes(csb, csb.length()); + assertEquals(chunkSize, mb.bytesStore().start()); + + mb.parseUtf8(sb, csb.length()); + assertEquals(chunkSize, mb.bytesStore().start()); + } + } finally { + csb.releaseLast(); + } + IOTools.deleteDirWithFiles(tmpfile, 2); + } + + @Test + public void threadSafeMappedBytes() throws FileNotFoundException { + String tmpfile = IOTools.createTempFile("threadSafeMappedBytes").getAbsolutePath(); + int count = 4000; + IntStream.range(0, count) + .parallel() + .forEach(i -> { + try (MappedBytes mb = MappedBytes.mappedBytes(tmpfile, 256 << 10)) { + mb.addAndGetLong(0, 1); + } catch (FileNotFoundException e) { + throw Jvm.rethrow(e); + } + }); + try (MappedBytes mb = MappedBytes.mappedBytes(tmpfile, 256 << 10)) { + assertEquals(count, mb.readVolatileLong(0)); + } + IOTools.deleteDirWithFiles(tmpfile, 2); + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MappedFileMultiThreadTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MappedFileMultiThreadTest.java new file mode 100644 index 0000000..1fd8f3c --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MappedFileMultiThreadTest.java @@ -0,0 +1,114 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.Jvm; +import net.openhft.chronicle.core.OS; +import net.openhft.chronicle.core.io.AbstractReferenceCounted; +import net.openhft.chronicle.core.io.IOTools; +import net.openhft.chronicle.core.io.ReferenceOwner; +import net.openhft.chronicle.core.threads.ThreadDump; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; + +import java.io.IOException; +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; +import java.util.concurrent.ExecutorService; +import java.util.concurrent.Executors; +import java.util.concurrent.Future; +import java.util.concurrent.TimeUnit; +import java.util.concurrent.atomic.AtomicBoolean; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNotNull; + +public class MappedFileMultiThreadTest extends BytesTestCommon { + private static final int CORES = Integer.getInteger("cores", Runtime.getRuntime().availableProcessors()); + private static final int RUNTIME_MS = Integer.getInteger("runtimems", 2_000); + private static final String TMP_FILE = System.getProperty("file", IOTools.createTempFile("testMultiThreadLock").getAbsolutePath()); + + private ThreadDump threadDump; + + @After + public void checkRegisteredBytes() { + AbstractReferenceCounted.assertReferencesReleased(); + } + + @Before + public void threadDump() { + threadDump = new ThreadDump(); + } + + @After + public void checkThreadDump() { + threadDump.assertNoNewThreads(); + } + + @Test + public void testMultiThreadLock() throws Exception { + final List garbage = Collections.synchronizedList(new ArrayList<>()); + final long chunkSize = OS.isWindows() ? 64 << 10 : 4 << 10; + try (MappedFile mf = MappedFile.mappedFile(TMP_FILE, chunkSize, 0)) { + assertEquals("refCount: 1", mf.referenceCounts()); + + final List> futures = new ArrayList<>(); + final ExecutorService es = Executors.newFixedThreadPool(CORES); + final AtomicBoolean running = new AtomicBoolean(true); + for (int i = 0; i < CORES; i++) { + int finalI = i; + futures.add(es.submit(() -> { + long offset = 1; + final ReferenceOwner test = ReferenceOwner.temporary("test" + finalI); + while (running.get()) { + garbage.add(test.referenceName() + offset); + MappedBytesStore bs = null; + Bytes bytes = null; + try { + bs = mf.acquireByteStore(test, chunkSize * offset); + bytes = bs.bytesForRead(); + assertNotNull(bytes.toString()); // show it doesn't blow up. + assertNotNull(bs.toString()); // show it doesn't blow up. + ++offset; + } catch (IOException e) { + throw Jvm.rethrow(e); + } finally { + if (bytes != null) bytes.releaseLast(); + if (bs != null) bs.release(test); + } + if (finalI == 0 && offset % 1_000 == 0) { + garbage.clear(); + System.gc(); + } + } + })); + } + + Jvm.pause(RUNTIME_MS); + running.set(false); + for (Future f : futures) + f.get(5, TimeUnit.SECONDS); + es.shutdownNow(); + es.awaitTermination(1, TimeUnit.SECONDS); + } + IOTools.deleteDirWithFiles(TMP_FILE); + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MappedFileTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MappedFileTest.java new file mode 100644 index 0000000..42cb377 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MappedFileTest.java @@ -0,0 +1,225 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.OS; +import net.openhft.chronicle.core.io.AbstractReferenceCounted; +import net.openhft.chronicle.core.io.IOTools; +import net.openhft.chronicle.core.io.ReferenceOwner; +import net.openhft.chronicle.core.threads.ThreadDump; +import org.jetbrains.annotations.NotNull; +import org.junit.*; +import org.junit.rules.TemporaryFolder; + +import java.io.*; +import java.nio.BufferUnderflowException; + +import static org.junit.Assert.*; +import static org.junit.Assume.assumeFalse; + +public class MappedFileTest extends BytesTestCommon { + + @Rule + public final TemporaryFolder tmpDir = new TemporaryFolder(); + private ThreadDump threadDump; + + @After + public void checkRegisteredBytes() { + AbstractReferenceCounted.assertReferencesReleased(); + } + + @Before + public void threadDump() { + threadDump = new ThreadDump(); + } + + @After + public void checkThreadDump() { + threadDump.assertNoNewThreads(); + } + + @Test + public void testWarmup() { + MappedFile.warmup(); + } + + @Test + public void shouldReleaseReferenceWhenNewStoreIsAcquired() throws IOException { + final File file = tmpDir.newFile(); + // this is what it will end up as + final long chunkSize = OS.mapAlign(64); + final ReferenceOwner test = ReferenceOwner.temporary("test"); + try (final MappedFile mappedFile = MappedFile.mappedFile(file, 64)) { + final MappedBytesStore first = mappedFile.acquireByteStore(test, 1); + + final int expected = MappedFile.RETAIN ? 2 : 1; + assertEquals(expected, first.refCount()); + + final MappedBytesStore second = mappedFile.acquireByteStore(test, 1 + chunkSize); + + assertEquals(expected, first.refCount()); + assertEquals(expected, second.refCount()); + + final MappedBytesStore third = mappedFile.acquireByteStore(test, 1 + chunkSize + chunkSize); + + assertEquals(expected, first.refCount()); + assertEquals(expected, second.refCount()); + assertEquals(expected, third.refCount()); + + third.release(test); + second.release(test); + first.release(test); + } + } + + @Test + public void testReferenceCounts() throws IOException { + final File tmp = IOTools.createTempFile("testReferenceCounts"); + final int chunkSize = OS.isWindows() ? 64 << 10 : 4 << 10; + try (MappedFile mf = MappedFile.mappedFile(tmp, chunkSize, 0)) { + assertEquals("refCount: 1", mf.referenceCounts()); + + final ReferenceOwner test = ReferenceOwner.temporary("test"); + final MappedBytesStore bs = mf.acquireByteStore(test, chunkSize + (1 << 10)); + try { + assertEquals(chunkSize, bs.start()); + assertEquals(chunkSize * 2, bs.capacity()); + final Bytes bytes = bs.bytesForRead(); + + assertNotNull(bytes.toString()); // show it doesn't blow up. + assertNotNull(bs.toString()); // show it doesn't blow up. + assertEquals(chunkSize, bytes.start()); + assertEquals(0L, bs.readLong(chunkSize + (1 << 10))); + assertEquals(0L, bytes.readLong(chunkSize + (1 << 10))); + Assert.assertFalse(bs.inside(chunkSize - (1 << 10))); + Assert.assertFalse(bs.inside(chunkSize - 1)); + Assert.assertTrue(bs.inside(chunkSize)); + Assert.assertTrue(bs.inside(chunkSize * 2 - 1)); + Assert.assertFalse(bs.inside(chunkSize * 2)); + try { + bytes.readLong(chunkSize - (1 << 10)); + Assert.fail(); + } catch (BufferUnderflowException e) { + // expected + } + try { + bytes.readLong(chunkSize * 2 + (1 << 10)); + Assert.fail(); + } catch (BufferUnderflowException e) { + // expected + } + assertEquals(1, mf.refCount()); + final int expected = MappedFile.RETAIN ? 2 : 1; + assertEquals(expected + 1, bs.refCount()); + assertEquals("refCount: 1, 0, " + (expected + 1), mf.referenceCounts()); + + final BytesStore bs2 = mf.acquireByteStore(test, chunkSize + (1 << 10), bs); + assertSame(bs, bs2); + assertEquals(expected + 1, bs2.refCount()); + assertEquals("refCount: 1, 0, " + (expected + 1), mf.referenceCounts()); + bytes.releaseLast(); + assertEquals(expected, bs2.refCount()); + assertEquals("refCount: 1, 0, " + expected, mf.referenceCounts()); + } finally { + bs.release(test); + } + } + } + + @Test + public void largeReadOnlyFile() throws IOException { + if (Runtime.getRuntime().maxMemory() < Integer.MAX_VALUE || OS.isWindows()) + return; + + final File file = File.createTempFile("largeReadOnlyFile", "deleteme"); + file.deleteOnExit(); + try (MappedBytes bytes = MappedBytes.mappedBytes(file, 1 << 30, OS.pageSize())) { + bytes.writeLong(3L << 30, 0x12345678); // make the file 3 GB. + } + + try (MappedBytes bytes = MappedBytes.readOnly(file)) { + Assert.assertEquals(0x12345678L, bytes.readLong(3L << 30)); + } + } + + @Test + public void interrupted() throws FileNotFoundException { + Thread.currentThread().interrupt(); + final String filename = IOTools.createTempFile("interrupted").getAbsolutePath(); + try (MappedFile mf = MappedFile.mappedFile(filename, 64 << 10, 0)) { + mf.actualSize(); + assertTrue(Thread.currentThread().isInterrupted()); + } + } + + @Test + public void testCreateMappedFile() throws IOException { + final File file = IOTools.createTempFile("mappedFile"); + + final MappedFile mappedFile = MappedFile.mappedFile(file, 1024, 256, 256, false); + try { + final MappedFile mappedFile2 = MappedFile.mappedFile(file, 1024, 256, 256, false); + mappedFile2.releaseLast(); + } finally { + mappedFile.releaseLast(); + } + } + + @Test + public void testReadOnlyOpen() throws IOException { + assumeFalse(OS.isWindows()); + + String text = "Some text to put in this file. yay!\n"; + + @NotNull File file = File.createTempFile("readOnlyOpenFile", "deleteme"); + + // write some stuff to a file so it exits using stock java APIs + @NotNull OutputStreamWriter outWrite = new OutputStreamWriter(new FileOutputStream(file)); + outWrite.append(text); + outWrite.flush(); + outWrite.close(); + + byte[] tmp = new byte[1024 * 16]; + + // Open and read the file w/ a MappedBytes to show it's readable + try (@NotNull MappedBytes mapBuf = MappedBytes.readOnly(file)) { + mapBuf.readLimit(file.length()); + int readLen = mapBuf.read(tmp, 0, tmp.length); + assertEquals(text, new String(tmp, 0, readLen)); + } + + // open up the same file via a mapped file + try (@NotNull MappedFile mapFile = MappedFile.mappedFile(file, OS.pageSize() * 16, OS.pageSize(), true)) { + // this throws a exception as of v2.20.9. it shouldn't + ReferenceOwner temp = ReferenceOwner.temporary("TEMP"); + @NotNull Bytes buf = mapFile.acquireBytesForRead(temp, 0); + buf.readLimit(file.length()); + int readLen = buf.read(tmp, 0, tmp.length); + assertEquals(text, new String(tmp, 0, readLen)); + buf.releaseLast(temp); + } + + file.deleteOnExit(); + } + + @After + public void clearInterrupt() { + Thread.interrupted(); + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MappedMemoryTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MappedMemoryTest.java new file mode 100644 index 0000000..b4c4155 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MappedMemoryTest.java @@ -0,0 +1,174 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.Jvm; +import net.openhft.chronicle.core.OS; +import net.openhft.chronicle.core.io.AbstractReferenceCounted; +import net.openhft.chronicle.core.io.IORuntimeException; +import net.openhft.chronicle.core.io.ReferenceOwner; +import org.jetbrains.annotations.NotNull; +import org.junit.After; +import org.junit.Test; +import org.slf4j.LoggerFactory; + +import java.io.File; +import java.io.IOException; +import java.util.Arrays; + +import static net.openhft.chronicle.bytes.MappedBytes.mappedBytes; +import static net.openhft.chronicle.bytes.MappedFile.mappedFile; +import static org.junit.Assert.assertEquals; + +public class MappedMemoryTest extends BytesTestCommon { + + private static final org.slf4j.Logger LOG = LoggerFactory.getLogger(MappedMemoryTest.class); + private static final long SHIFT = 27L; + private static final long BLOCK_SIZE = 1L << SHIFT; + + private static void deleteIfPossible(@NotNull final File file) { + if (!file.delete()) { + Jvm.warn().on(MappedMemoryTest.class, "Unable to delete " + file.getAbsolutePath()); + } + } + + @After + public void checkRegisteredBytes() { + AbstractReferenceCounted.assertReferencesReleased(); + } + + // on i7-3970X ~ 3.3 ns + @Test + public void testRawMemoryMapped() throws IOException { + final ReferenceOwner test = ReferenceOwner.temporary("test"); + for (int t = 0; t < 5; t++) { + final File tempFile = File.createTempFile("chronicle", "q"); + try { + + final long startTime = System.nanoTime(); + MappedFile file0; + try (MappedFile mappedFile = mappedFile(tempFile, BLOCK_SIZE / 2, OS.pageSize())) { + file0 = mappedFile; + final MappedBytesStore bytesStore = mappedFile.acquireByteStore(test, 1); + final long address = bytesStore.address; + + for (long i = 0; i < BLOCK_SIZE / 2; i += 8L) { + OS.memory().writeLong(address + i, i); + } + for (long i = 0; i < BLOCK_SIZE / 2; i += 8L) { + OS.memory().writeLong(address + i, i); + } + bytesStore.release(test); + } + assertEquals(file0.referenceCounts(), 0, file0.refCount()); + LOG.info("With RawMemory,\t\t time= " + 80 * (System.nanoTime() - startTime) / BLOCK_SIZE / 10.0 + " ns, number of longs written=" + BLOCK_SIZE / 8); + } finally { + deleteIfPossible(tempFile); + } + } + } + + // on i7-3970X ~ 6.9 ns + @Test + public void withMappedNativeBytesTest() throws IOException { + + for (int t = 0; t < 3; t++) { + final File tempFile = File.createTempFile("chronicle", "q"); + try { + + final long startTime = System.nanoTime(); + final Bytes bytes = mappedBytes(tempFile, BLOCK_SIZE / 2); +// bytes.writeLong(1, 1); + for (long i = 0; i < BLOCK_SIZE; i += 8) { + bytes.writeLong(i); + } + bytes.releaseLast(); + assertEquals(0, bytes.refCount()); + LOG.info("With MappedNativeBytes,\t avg time= " + 80 * (System.nanoTime() - startTime) / BLOCK_SIZE / 10.0 + " ns, number of longs written=" + BLOCK_SIZE / 8); + } finally { + deleteIfPossible(tempFile); + } + } + } + + // on i7-3970X ~ 6.0 ns + @Test + public void withRawNativeBytesTess() throws IOException { + final ReferenceOwner test = ReferenceOwner.temporary("test"); + + for (int t = 0; t < 3; t++) { + final File tempFile = File.createTempFile("chronicle", "q"); + try { + + final long startTime = System.nanoTime(); + try (MappedFile mappedFile = mappedFile(tempFile, BLOCK_SIZE / 2, OS.pageSize())) { + Bytes bytes = mappedFile.acquireBytesForWrite(test, 1); + for (long i = 0; i < BLOCK_SIZE / 2; i += 8L) { + bytes.writeLong(i); + } + bytes.releaseLast(test); + + bytes = mappedFile.acquireBytesForWrite(test, BLOCK_SIZE / 2 + 1); + for (long i = 0; i < BLOCK_SIZE / 2; i += 8L) { + bytes.writeLong(i); + } + bytes.releaseLast(test); + + } + LOG.info("With NativeBytes,\t\t time= " + 80 * (System.nanoTime() - startTime) / BLOCK_SIZE / 10.0 + " ns, number of longs written=" + BLOCK_SIZE / 8); + } finally { + deleteIfPossible(tempFile); + } + } + } + + @Test + public void mappedMemoryTest() throws IOException, IORuntimeException { + + final File tempFile = File.createTempFile("chronicle", "q"); + Bytes bytes0; + try { + try (MappedBytes bytes = mappedBytes(tempFile, OS.pageSize())) { + bytes0 = bytes; + final ReferenceOwner test = ReferenceOwner.temporary("test"); + try { + assertEquals(1, bytes.refCount()); + bytes.reserve(test); + assertEquals(2, bytes.refCount()); + final char[] chars = new char[OS.pageSize() * 11]; + Arrays.fill(chars, '.'); + chars[chars.length - 1] = '*'; + bytes.writeUtf8(new String(chars)); + final String text = "hello this is some very long text"; + bytes.writeUtf8(text); + final String textValue = bytes.toString(); + assertEquals(text, textValue.substring(chars.length + 4)); + assertEquals(2, bytes.refCount()); + } finally { + bytes.release(test); + assertEquals(1, bytes.refCount()); + } + } + } finally { + deleteIfPossible(tempFile); + } + assertEquals(0, bytes0.refCount()); + } + +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MappedUniqueMicroTimeProviderTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MappedUniqueMicroTimeProviderTest.java new file mode 100644 index 0000000..01471ad --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MappedUniqueMicroTimeProviderTest.java @@ -0,0 +1,35 @@ +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.time.LongTime; +import net.openhft.chronicle.core.time.TimeProvider; +import org.junit.Test; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; + +public class MappedUniqueMicroTimeProviderTest extends BytesTestCommon { + + @Test + public void currentTimeMicros() { + TimeProvider tp = MappedUniqueMicroTimeProvider.INSTANCE; + long last = 0; + for (int i = 0; i < 100_000; i++) { + long time = tp.currentTimeMicros(); + assertTrue(time > last); + assertEquals(LongTime.toMicros(time), time); + last = time; + } + } + + @Test + public void currentTimeNanos() { + TimeProvider tp = MappedUniqueMicroTimeProvider.INSTANCE; + long last = 0; + for (int i = 0; i < 100_000; i++) { + long time = tp.currentTimeNanos(); + assertTrue(time > last); + assertEquals(LongTime.toNanos(time), time); + last = time; + } + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MappedUniqueTimeProviderTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MappedUniqueTimeProviderTest.java new file mode 100644 index 0000000..f2a5873 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MappedUniqueTimeProviderTest.java @@ -0,0 +1,72 @@ +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.Jvm; +import net.openhft.chronicle.core.time.LongTime; +import net.openhft.chronicle.core.time.TimeProvider; +import org.junit.Test; + +import java.util.stream.IntStream; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; + +public class MappedUniqueTimeProviderTest extends BytesTestCommon { + + @Test + public void currentTimeMicros() { + TimeProvider tp = MappedUniqueTimeProvider.INSTANCE; + long last = 0; + for (int i = 0; i < 100_000; i++) { + long time = tp.currentTimeMicros(); + assertTrue(time > last); + assertEquals(LongTime.toMicros(time), time); + last = time; + } + } + + @Test + public void currentTimeNanos() { + TimeProvider tp = MappedUniqueTimeProvider.INSTANCE; + long start = tp.currentTimeNanos(); + long last = start; + int count = 0; + long runTime = Jvm.isArm() ? 3_000_000_000L : 500_000_000L; + for (; ; ) { + long now = tp.currentTimeNanos(); + if (now > start + runTime) + break; + // check the times are different after shifting by 5 bits. + assertTrue((now >>> 5) > (last >>> 5)); + last = now; + count++; + } + System.out.printf("count: %,d%n", count); + assertTrue(count > 1_000_000); + } + + @Test + public void concurrentTimeNanos() { + long start0 = System.nanoTime(); + final int runTimeUS = 1_000_000; + final int threads = Jvm.isArm() ? 4 : 16; + final int stride = Jvm.isArm() ? 1 : threads; + IntStream.range(0, threads) + .parallel() + .forEach(i -> { + TimeProvider tp = MappedUniqueTimeProvider.INSTANCE; + long start = tp.currentTimeNanos(); + long last = start; + for (int j = 0; j < runTimeUS; j += stride) { + long now = tp.currentTimeNanos(); + if (!Jvm.isArm()) + assertTrue(now < start + runTimeUS * 1000); + // check the times are different after shifting by 5 bits. + assertTrue((now >>> 5) > (last >>> 5)); + last = now; + } + }); + long time0 = System.nanoTime() - start0; + System.out.printf("Time: %,d ms%n", time0 / 1_000_000); + assertTrue(Jvm.isArm() || time0 < runTimeUS * 1000); + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MoreBytesTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MoreBytesTest.java new file mode 100644 index 0000000..e6dcfad --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MoreBytesTest.java @@ -0,0 +1,325 @@ +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.bytes.util.UTF8StringInterner; +import net.openhft.chronicle.core.io.IORuntimeException; +import net.openhft.chronicle.core.pool.StringInterner; +import net.openhft.chronicle.core.util.StringUtils; +import org.jetbrains.annotations.NotNull; +import org.jetbrains.annotations.Nullable; +import org.junit.Assert; +import org.junit.Test; + +import java.nio.BufferOverflowException; +import java.nio.ByteBuffer; +import java.nio.charset.StandardCharsets; +import java.util.Arrays; + +import static java.nio.charset.StandardCharsets.ISO_8859_1; +import static org.junit.Assert.*; + +public class MoreBytesTest { + + private static void testIndexOf(@NotNull final String sourceStr, @NotNull final String subStr) { + final Bytes source = Bytes.wrapForRead(sourceStr.getBytes(StandardCharsets.ISO_8859_1)); + final Bytes subBytes = Bytes.wrapForRead(subStr.getBytes(StandardCharsets.ISO_8859_1)); + Assert.assertEquals(sourceStr.indexOf(subStr), source.indexOf(subBytes)); + } + + @Test + public void testOneRelease() { + int count = 0; + for (@NotNull Bytes b : new Bytes[]{ + Bytes.allocateDirect(10), + Bytes.allocateDirect(new byte[5]), + Bytes.allocateElasticDirect(100), + Bytes.elasticByteBuffer(), + Bytes.wrapForRead(new byte[1]), + Bytes.wrapForRead(ByteBuffer.allocateDirect(128)), + Bytes.wrapForWrite(new byte[1]), + Bytes.wrapForWrite(ByteBuffer.allocateDirect(128)), + Bytes.elasticHeapByteBuffer(), + Bytes.elasticHeapByteBuffer(1), + Bytes.allocateElasticOnHeap(), + Bytes.allocateElasticOnHeap(1) + }) { + try { + assertEquals(count + ": " + b.getClass().getSimpleName(), 1, b.refCount()); + assertEquals(count + ": " + b.getClass().getSimpleName(), 1, b.bytesStore().refCount()); + } finally { + b.releaseLast(); + assertEquals(count + ": " + b.getClass().getSimpleName(), 0, b.refCount()); + assertEquals(count++ + ": " + b.getClass().getSimpleName(), 0, b.bytesStore().refCount()); + } + } + } + + @Test + public void testAppendLongRandomPosition() { + final @NotNull byte[] bytes = "00000".getBytes(ISO_8859_1); + final ByteBuffer bb = ByteBuffer.wrap(bytes); + final Bytes to = Bytes.wrapForWrite(bb); + try { + to.append(0, 1, 5); + assertEquals("00001", Bytes.wrapForRead(bb).toString()); + } finally { + to.releaseLast(); + } + } + + @Test + public void testAppendLongRandomPosition2() { + final @NotNull byte[] bytes = "WWWWW00000".getBytes(ISO_8859_1); + final ByteBuffer bb = ByteBuffer.wrap(bytes); + final Bytes to = Bytes.wrapForWrite(bb); + try { + to.append(5, 10, 5); + final Bytes bbb = Bytes.wrapForRead(bb); + assertEquals("WWWWW00010", bbb.toString()); + bbb.releaseLast(); + } finally { + to.releaseLast(); + } + } + + @Test + public void testAppendLongRandomPositionShouldThrowBufferOverflowException() { + try { + final @NotNull byte[] bytes = "000".getBytes(ISO_8859_1); + final ByteBuffer bb = ByteBuffer.wrap(bytes); + final Bytes to = Bytes.wrapForWrite(bb); + try { + to.append(0, 1000, 5); + fail("Should throw Exception"); + } finally { + to.releaseLast(); + } + } catch (Exception ignore) { + } + } + + @Test(expected = IllegalArgumentException.class) + public void testAppendLongRandomPositionShouldThrowIllegalArgumentException() { + try { + final @NotNull byte[] bytes = "000".getBytes(ISO_8859_1); + final ByteBuffer bb = ByteBuffer.wrap(bytes); + final Bytes to = Bytes.wrapForWrite(bb); + try { + to.append(0, 1000, 3); + } finally { + to.releaseLast(); + } + fail("Should throw Exception"); + } catch (BufferOverflowException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + } + + @Test + public void testAppendDoubleRandomPosition() { + final @NotNull byte[] bytes = "000000".getBytes(ISO_8859_1); + final Bytes to = Bytes.wrapForWrite(bytes); + try { + to.append(0, 3.14, 2, 6); + } finally { + to.releaseLast(); + } + assertEquals("003.14", Bytes.wrapForRead(bytes).toString()); + } + + @Test + public void testAppendDoubleRandomPositionShouldThrowBufferOverflowException() { + try { + final @NotNull byte[] bytes = "000000".getBytes(ISO_8859_1); + final Bytes to = Bytes.wrapForWrite(bytes); + try { + to.append(0, 3.14, 2, 8); + } finally { + to.releaseLast(); + } + fail("Should throw Exception"); + } catch (BufferOverflowException ignore) { + // Ignore + } + } + + @Test(expected = IllegalArgumentException.class) + public void testAppendDoubleRandomPositionShouldThrowIllegalArgumentException() { + + final @NotNull byte[] bytes = "000000".getBytes(ISO_8859_1); + final Bytes to = Bytes.wrapForWrite(bytes); + try { + to.append(0, 33333.14, 2, 6); + } finally { + to.releaseLast(); + } + + } + + @Test + public void testInvalidUTF8Scan() { + int expected = 0; + for (int i = 0x80; i <= 0xFF; i++) + for (int j = 0x80; j <= 0xFF; j++) { + final @NotNull byte[] b = {(byte) i, (byte) j}; + final @NotNull String s = new String(b, StandardCharsets.UTF_8); + if (s.charAt(0) == 65533) { + final Bytes bytes = Bytes.wrapForRead(b); + try { + bytes.parseUtf8(StopCharTesters.ALL); + fail(Arrays.toString(b)); + } catch (UTFDataFormatRuntimeException e) { + expected++; + } + } + } + assertEquals(14464, expected); + } + + @Test + public void internBytes() throws IORuntimeException { + final Bytes b = Bytes.from("Hello World"); + try { + b.readSkip(6); + { + final @NotNull StringInterner si = new StringInterner(128); + final @Nullable String s = si.intern(b); + final @Nullable String s2 = si.intern(b); + assertEquals("World", s); + assertSame(s, s2); + } + { + final @NotNull UTF8StringInterner si = new UTF8StringInterner(128); + final String s = si.intern(b); + final String s2 = si.intern(b); + assertEquals("World", s); + assertSame(s, s2); + } + } finally { + b.releaseLast(); + } + } + + @Test + public void testIndexOfExactMatchAfterReadSkip() { + final String sourceStr = " some"; + final String subStr = "some"; + final Bytes source = Bytes.wrapForRead(sourceStr.getBytes(StandardCharsets.ISO_8859_1)); + source.readSkip(1); + final Bytes subBytes = Bytes.wrapForRead(subStr.getBytes(StandardCharsets.ISO_8859_1)); + Assert.assertEquals(0, source.indexOf(subBytes)); + } + + @Test + public void testIndexOfExactMatchAfterReadSkipOnSubStr() { + final String sourceStr = "some"; + final String subStr = " some"; + final Bytes source = Bytes.wrapForRead(sourceStr.getBytes(StandardCharsets.ISO_8859_1)); + final Bytes subBytes = Bytes.wrapForRead(subStr.getBytes(StandardCharsets.ISO_8859_1)); + subBytes.readSkip(1); + + Assert.assertEquals(0, source.indexOf(subBytes)); + assertEquals(1, subBytes.readPosition()); + assertEquals(0, source.readPosition()); + } + + @Test + public void testIndexOfAtEnd() { + final String sourceStr = "A string of some data"; + final String subStr = "ta"; + testIndexOf(sourceStr, subStr); + } + + @Test + public void testIndexOfEmptySubStr() { + final String sourceStr = "A string of some data"; + final String subStr = ""; + testIndexOf(sourceStr, subStr); + } + + @Test + public void testIndexOfEmptySubStrAndSource() { + final String sourceStr = ""; + final String subStr = ""; + testIndexOf(sourceStr, subStr); + } + + @Test + public void testIndexOfEmptySource() { + final String sourceStr = ""; + final String subStr = "some"; + testIndexOf(sourceStr, subStr); + } + + @Test + public void testIndexOfExactMatch() { + final String sourceStr = "some"; + final String subStr = "some"; + testIndexOf(sourceStr, subStr); + } + + @Test + public void testIndexOfIncorrectExactMatch() { + final String sourceStr = "some"; + final String subStr = " some"; + testIndexOf(sourceStr, subStr); + } + + @Test + public void testIndexOfExactMatchAtChar1() { + final String sourceStr = " some"; + final String subStr = "some"; + testIndexOf(sourceStr, subStr); + } + + @Test + public void testIndexOfLastChar() { + final String sourceStr = " some"; + final String subStr = "e"; + testIndexOf(sourceStr, subStr); + } + + @Test + public void testCharAt() { + final Bytes b = Bytes.from("Hello World"); + try { + b.readSkip(6); + assertTrue(StringUtils.isEqual("World", b)); + } finally { + b.releaseLast(); + } + } + + @Test + public void testReadWithLength() { + final Bytes b = Bytes.from("Hello World"); + final Bytes bytesOut = Bytes.elasticByteBuffer(); + try { + // Todo: Why is this cast needed? + b.readWithLength(2, (Bytes) bytesOut); + assertEquals("He", bytesOut.toString()); + } finally { + b.releaseLast(); + bytesOut.releaseLast(); + } + } + + @Test + public void testStartsWith() { + final Bytes aaa = Bytes.from("aaa"); + final Bytes a = Bytes.from("a"); + assertTrue(aaa.startsWith(a)); + final Bytes aa = Bytes.from("aa"); + assertTrue(aaa.startsWith(aa)); + assertTrue(aaa.startsWith(aaa)); + final Bytes aaaa = Bytes.from("aaaa"); + assertFalse(aaa.startsWith(aaaa)); + final Bytes b = Bytes.from("b"); + assertFalse(aaa.startsWith(b)); + a.releaseLast(); + aa.releaseLast(); + aaa.releaseLast(); + aaaa.releaseLast(); + b.releaseLast(); + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MyByteable.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MyByteable.java new file mode 100644 index 0000000..826197b --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MyByteable.java @@ -0,0 +1,43 @@ +package net.openhft.chronicle.bytes; + +import org.jetbrains.annotations.NotNull; + +class MyByteable implements BytesMarshallable { + boolean flag; + byte b; + short s; + char c; + int i; + float f; + long l; + double d; + + public MyByteable() { + } + + public MyByteable(boolean flag, byte b, short s, char c, int i, float f, long l, double d) { + this.flag = flag; + this.b = b; + this.s = s; + this.c = c; + this.i = i; + this.f = f; + this.l = l; + this.d = d; + } + + @NotNull + @Override + public String toString() { + return "MyByteable{" + + "flag=" + flag + + ", b=" + b + + ", s=" + s + + ", c=" + c + + ", i=" + i + + ", f=" + f + + ", l=" + l + + ", d=" + d + + '}'; + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MyBytes.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MyBytes.java new file mode 100644 index 0000000..613e1d8 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MyBytes.java @@ -0,0 +1,32 @@ +package net.openhft.chronicle.bytes; + +import java.io.Closeable; +import java.io.IOException; + +@SuppressWarnings("rawtypes") +class MyBytes implements BytesMarshallable, Closeable { + Bytes bytes1; + Bytes bytes2; + + public MyBytes() { + } + + public MyBytes(Bytes bytes1, Bytes bytes2) { + this.bytes1 = bytes1; + this.bytes2 = bytes2; + } + + @Override + public void close() throws IOException { + if (bytes1 != null) bytes1.releaseLast(); + if (bytes2 != null) bytes2.releaseLast(); + } + + @Override + public String toString() { + return "MyBytes{" + + "bytes1=" + bytes1 + + ", bytes2=" + bytes2 + + '}'; + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MyNested.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MyNested.java new file mode 100644 index 0000000..baecb0e --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MyNested.java @@ -0,0 +1,25 @@ +package net.openhft.chronicle.bytes; + +import org.jetbrains.annotations.NotNull; + +class MyNested implements BytesMarshallable { + MyByteable byteable; + MyScalars scalars; + + public MyNested() { + } + + public MyNested(MyByteable byteable, MyScalars scalars) { + this.byteable = byteable; + this.scalars = scalars; + } + + @NotNull + @Override + public String toString() { + return "MyNested{" + + "byteable=" + byteable + + ", scalars=" + scalars + + '}'; + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MyScalars.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MyScalars.java new file mode 100644 index 0000000..9645c15 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/MyScalars.java @@ -0,0 +1,51 @@ +package net.openhft.chronicle.bytes; + +import org.jetbrains.annotations.NotNull; + +import java.math.BigDecimal; +import java.math.BigInteger; +import java.time.LocalDate; +import java.time.LocalDateTime; +import java.time.LocalTime; +import java.time.ZonedDateTime; +import java.util.UUID; + +class MyScalars implements BytesMarshallable { + String s; + BigInteger bi; + BigDecimal bd; + LocalDate date; + LocalTime time; + LocalDateTime dateTime; + ZonedDateTime zonedDateTime; + UUID uuid; + + public MyScalars() { + } + + public MyScalars(String s, BigInteger bi, BigDecimal bd, LocalDate date, LocalTime time, LocalDateTime dateTime, ZonedDateTime zonedDateTime, UUID uuid) { + this.s = s; + this.bi = bi; + this.bd = bd; + this.date = date; + this.time = time; + this.dateTime = dateTime; + this.zonedDateTime = zonedDateTime; + this.uuid = uuid; + } + + @NotNull + @Override + public String toString() { + return "MyScalars{" + + "s='" + s + '\'' + + ", bi=" + bi + + ", bd=" + bd + + ", date=" + date + + ", time=" + time + + ", dateTime=" + dateTime + + ", zonedDateTime=" + zonedDateTime + + ", uuid=" + uuid + + '}'; + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/NativeBytesOverflowTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/NativeBytesOverflowTest.java new file mode 100644 index 0000000..2b75562 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/NativeBytesOverflowTest.java @@ -0,0 +1,57 @@ +package net.openhft.chronicle.bytes; + +import org.junit.Test; + +import java.nio.BufferOverflowException; +import java.nio.ByteBuffer; + +import static net.openhft.chronicle.bytes.BytesStore.wrap; +import static org.junit.Assert.assertTrue; + +public class NativeBytesOverflowTest { + + @Test(expected = BufferOverflowException.class) + public void testExceedWriteLimitNativeWriteBytes() { + BytesStore store = wrap(ByteBuffer.allocate(128)); + Bytes nb = new NativeBytes(store); + try { + nb.writeLimit(2).writePosition(0); + nb.writeLong(10L); + } finally { + nb.releaseLast(); + } + } + + @Test(expected = BufferOverflowException.class) + public void testExceedWriteLimitGuardedBytes() { + Bytes guardedNativeBytes = new GuardedNativeBytes(wrap(ByteBuffer.allocate(128)), 128); + try { + guardedNativeBytes.writeLimit(2).writePosition(0); + guardedNativeBytes.writeLong(10L); + } finally { + guardedNativeBytes.releaseLast(); + } + } + + @Test(expected = BufferOverflowException.class) + public void testElastic() { + Bytes bytes = Bytes.elasticByteBuffer(); + try { + bytes.writeLimit(2).writePosition(0); + bytes.writeLong(10L); + } finally { + bytes.releaseLast(); + } + } + + @Test + public void testNativeWriteBytes2() { + Bytes nb = new NativeBytes(wrap(ByteBuffer.allocate(128))).unchecked(true); + + nb.writeLimit(2).writePosition(0); + nb.writeLong(10L); + + // this is OK as we are unchecked ! + assertTrue(nb.writePosition() > nb.writeLimit()); + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/NativeBytesStoreTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/NativeBytesStoreTest.java new file mode 100644 index 0000000..94f3cc9 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/NativeBytesStoreTest.java @@ -0,0 +1,276 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.Maths; +import net.openhft.chronicle.core.io.AbstractReferenceCounted; +import net.openhft.chronicle.core.io.IORuntimeException; +import net.openhft.chronicle.core.threads.ThreadDump; +import net.openhft.chronicle.core.util.Histogram; +import org.jetbrains.annotations.NotNull; +import org.jetbrains.annotations.Nullable; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; + +import javax.crypto.Cipher; +import javax.crypto.NoSuchPaddingException; +import javax.crypto.spec.SecretKeySpec; +import java.nio.BufferOverflowException; +import java.nio.ByteBuffer; +import java.security.InvalidKeyException; +import java.security.NoSuchAlgorithmException; +import java.security.SecureRandom; +import java.util.Random; +import java.util.stream.Stream; + +import static org.junit.Assert.*; +import static org.junit.Assume.assumeFalse; + +public class NativeBytesStoreTest extends BytesTestCommon { + + volatile int bcs; + private ThreadDump threadDump; + + private static void generate(final @NotNull Bytes bytes, final int t) { + bytes.clear(); + bytes.append("hello world "); + for (int i = 0; i <= t; i++) + bytes.append(t); + } + + @After + public void checkRegisteredBytes() { + AbstractReferenceCounted.assertReferencesReleased(); + } + + @Before + public void threadDump() { + threadDump = new ThreadDump(); + } + + @After + public void checkThreadDump() { + threadDump.assertNoNewThreads(); + } + + @Test + public void testCipherPerf() throws NoSuchPaddingException, NoSuchAlgorithmException, InvalidKeyException { + final byte[] keyBytes = new SecureRandom().generateSeed(16); + final SecretKeySpec key = new SecretKeySpec(keyBytes, "AES"); + final Cipher encCipher = Cipher.getInstance("AES/ECB/PKCS5Padding"); + final Cipher decCipher = Cipher.getInstance("AES/ECB/PKCS5Padding"); + encCipher.init(Cipher.ENCRYPT_MODE, key); + decCipher.init(Cipher.DECRYPT_MODE, key); + + final StringBuilder sb = new StringBuilder("Hello World!!"); + while (sb.length() < 100) + sb.append(" 123456789"); + final String expected = sb.toString(); + + final Bytes bytes = Bytes.allocateDirect(expected.getBytes()); + final Bytes enc = Bytes.allocateElasticDirect(); + final Bytes dec = Bytes.allocateElasticDirect(); + try { + final Histogram hist = new Histogram(); + for (int t = 1; t <= 4; t++) { + for (int i = 0; i < t * 100000; i++) { + enc.clear(); + dec.clear(); + final long start = System.nanoTime(); + bytes.cipher(encCipher, enc); + enc.cipher(decCipher, dec); + final long time = System.nanoTime() - start; + hist.sampleNanos(time); + } + assertEquals(expected, dec.toString()); +// System.out.println("Encrypt/Decrypt took " + hist.toMicrosFormat()); + } + } finally { + bytes.releaseLast(); + enc.releaseLast(); + dec.releaseLast(); + } + } + + @Test + public void testCipher() throws NoSuchPaddingException, NoSuchAlgorithmException, InvalidKeyException { + assumeFalse(NativeBytes.areNewGuarded()); + final byte[] keyBytes = new SecureRandom().generateSeed(16); + final SecretKeySpec key = new SecretKeySpec(keyBytes, "AES"); + final Cipher encCipher = Cipher.getInstance("AES/ECB/PKCS5Padding"); + final Cipher decCipher = Cipher.getInstance("AES/ECB/PKCS5Padding"); + encCipher.init(Cipher.ENCRYPT_MODE, key); + decCipher.init(Cipher.DECRYPT_MODE, key); + + final Bytes bytes = Bytes.allocateElasticDirect(); + final Bytes enc = Bytes.allocateElasticDirect(); + final Bytes dec = Bytes.allocateElasticDirect(); + try { + + for (int t = 0; t < 9; t++) { + final long pos = enc.writePosition(); + enc.writeByte((byte) 0); + generate(bytes, t); + bytes.cipher(encCipher, enc); + final long len = enc.writePosition() - pos - 1; + assertEquals(0, len % 16); + enc.writeUnsignedByte(pos, Maths.toUInt8(len)); +// System.out.println(len); + } +// System.out.println("reading"); + for (int t = 0; t < 9; t++) { + final int len = enc.readUnsignedByte(); +// System.out.println(len); + assertEquals(0, len % 16); + final long pos = enc.readPosition(); + enc.readPositionRemaining(pos, len); + dec.clear(); + enc.cipher(decCipher, dec); + generate(bytes, t); + assertEquals(bytes.toString(), dec.toString()); + enc.readPositionRemaining(pos + len, 1); + } + } finally { + bytes.releaseLast(); + enc.releaseLast(); + dec.releaseLast(); + } + + } + + @Test + public void testElasticByteBuffer() throws IORuntimeException, BufferOverflowException { + final Bytes bbb = Bytes.elasticByteBuffer(); + try { + assertEquals(Bytes.MAX_HEAP_CAPACITY, bbb.capacity()); + assertEquals(Bytes.DEFAULT_BYTE_BUFFER_CAPACITY, bbb.realCapacity()); + final @Nullable ByteBuffer bb = bbb.underlyingObject(); + assertNotNull(bb); + + for (int i = 0; i < 20; i++) { + bbb.writeSkip(1000); + bbb.writeLong(12345); + } + assertEquals(28672, bbb.realCapacity()); + final @Nullable ByteBuffer bb2 = bbb.underlyingObject(); + assertNotNull(bb2); + assertNotSame(bb, bb2); + } finally { + bbb.releaseLast(); + } + } + + @Test + public void testAppendUtf8() { + final String hi = "Hello World"; + final char[] chars = hi.toCharArray(); + final NativeBytesStore nbs = NativeBytesStore.nativeStore(chars.length); + try { + nbs.appendUtf8(0, chars, 0, chars.length); + assertEquals(hi, nbs.toString()); + } finally { + nbs.releaseLast(); + } + } + + @Test + public void testToTempByteBuf() { + final String hi = "Hello World"; + final char[] chars = hi.toCharArray(); + final NativeBytesStore bs = NativeBytesStore.lazyNativeBytesStoreWithFixedCapacity(128); + try { + bs.appendUtf8(0, chars, 0, chars.length); + final ByteBuffer bb = bs.toTemporaryDirectByteBuffer(); + for (int i = 0; i < chars.length; i++) { + assertEquals(bb.get(i), (byte) chars[i]); + } + } finally { + bs.releaseLast(); + } + } + + @Test + public void perfCheckSum() throws IORuntimeException { + final NativeBytesStore[] nbs = { + NativeBytesStore.nativeStoreWithFixedCapacity(140), + NativeBytesStore.nativeStoreWithFixedCapacity(149), + NativeBytesStore.nativeStoreWithFixedCapacity(159), + NativeBytesStore.nativeStoreWithFixedCapacity(194) + }; + try { + final Random rand = new Random(); + for (NativeBytesStore nb : nbs) { + final byte[] bytes = new byte[(int) nb.capacity()]; + rand.nextBytes(bytes); + nb.write(0, bytes); + assertEquals(Bytes.wrapForRead(bytes).byteCheckSum(), nb.byteCheckSum()); + } + for (int t = 2; t >= 0; t--) { + int runs = 10000000; + final long start = System.nanoTime(); + for (int i = 0; i < runs; i += 4) { + for (NativeBytesStore nb : nbs) { + bcs = nb.byteCheckSum(); + if (bcs < 0 || bcs > 255) + throw new AssertionError(); + } + } + long time = System.nanoTime() - start; + if (t == 0) + System.out.printf("Average time was %,d ns%n", time / runs); + } + } finally { + Stream.of(nbs) + .forEach(NativeBytesStore::releaseLast); + } + } + + @Test + public void testCopyTo() { + final Bytes src = Bytes.elasticByteBuffer().writeUtf8("hello"); + final Bytes dst = Bytes.elasticByteBuffer(); + try { + dst.writePosition(src.copyTo(dst)); + assertEquals(src, dst); + } finally { + src.releaseLast(); + dst.releaseLast(); + } + } + + @SuppressWarnings("rawtypes") + @Test + public void testEquals() { + @NotNull NativeBytesStore hbs = NativeBytesStore.from("Hello".getBytes()); + @NotNull NativeBytesStore hbs2 = NativeBytesStore.from("Hello".getBytes()); + @NotNull NativeBytesStore hbs3 = NativeBytesStore.from("He!!o".getBytes()); + @NotNull NativeBytesStore hbs4 = NativeBytesStore.from("Hi".getBytes()); + assertEquals(hbs, hbs2); + assertEquals(hbs2, hbs); + assertNotEquals(hbs, hbs3); + assertNotEquals(hbs3, hbs); + assertNotEquals(hbs, hbs4); + assertNotEquals(hbs4, hbs); + hbs.releaseLast(); + hbs2.releaseLast(); + hbs3.releaseLast(); + hbs4.releaseLast(); + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/NativeBytesTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/NativeBytesTest.java new file mode 100644 index 0000000..5cc1868 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/NativeBytesTest.java @@ -0,0 +1,159 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.bytes.util.DecoratedBufferOverflowException; +import net.openhft.chronicle.core.OS; +import net.openhft.chronicle.core.io.IORuntimeException; +import net.openhft.chronicle.core.threads.ThreadDump; +import org.jetbrains.annotations.NotNull; +import org.jetbrains.annotations.Nullable; +import org.junit.*; +import org.junit.runner.RunWith; +import org.junit.runners.Parameterized; + +import java.nio.BufferOverflowException; +import java.nio.BufferUnderflowException; +import java.nio.ByteBuffer; +import java.util.Arrays; +import java.util.Collection; + +import static java.nio.charset.StandardCharsets.ISO_8859_1; +import static net.openhft.chronicle.bytes.Allocator.*; +import static org.junit.Assert.*; + +@RunWith(Parameterized.class) +public class NativeBytesTest extends BytesTestCommon { + + private final Allocator alloc; + private ThreadDump threadDump; + + public NativeBytesTest(Allocator alloc) { + this.alloc = alloc; + } + + @Parameterized.Parameters + public static Collection data() { + return Arrays.asList(new Object[][]{ + {NATIVE}, {HEAP}, {BYTE_BUFFER} + }); + } + + @After + public void checkRegisteredBytes() { + BytesUtil.checkRegisteredBytes(); + } + + @Before + public void threadDump() { + threadDump = new ThreadDump(); + } + + @After + public void checkThreadDump() { + threadDump.assertNoNewThreads(); + } + + @SuppressWarnings("rawtypes") + @Test + public void testWriteBytesWhereResizeNeeded0() throws IORuntimeException, BufferUnderflowException, BufferOverflowException { + Bytes b = alloc.elasticBytes(1); + assertEquals(b.start(), b.readLimit()); + assertEquals(b.capacity(), b.writeLimit()); + assertEquals(1, b.realCapacity()); + assertTrue(b.readLimit() < b.writeLimit()); + + Bytes wrap0 = Bytes.wrapForRead("Hello World, Have a great day!".getBytes(ISO_8859_1)); + b.writeSome(wrap0); + assertEquals("Hello World, Have a great day!", b.toString()); + b.releaseLast(); + } + + @SuppressWarnings("rawtypes") + @Test + public void testWriteBytesWhereResizeNeeded() throws IllegalArgumentException, IORuntimeException, BufferUnderflowException, BufferOverflowException { + Bytes b = alloc.elasticBytes(1); + assertEquals(b.start(), b.readLimit()); + assertEquals(b.capacity(), b.writeLimit()); + assertEquals(1, b.realCapacity()); + assertTrue(b.readLimit() < b.writeLimit()); + + Bytes wrap1 = Bytes.wrapForRead("Hello World, Have a great day!".getBytes(ISO_8859_1)); + b.writeSome(wrap1); + assertEquals("Hello World, Have a great day!", b.toString()); + b.releaseLast(); + } + + @SuppressWarnings("rawtypes") + @Test + public void testAppendCharArrayNonAscii() { + Bytes b = alloc.elasticBytes(1); + b.appendUtf8(new char[]{'Δ'}, 0, 1); + b.releaseLast(); + } + + @Test + public void testResizeTwoPagesToThreePages() { + Assume.assumeFalse(alloc == HEAP); + + long pageSize = OS.pageSize(); + @NotNull NativeBytes nativeBytes = NativeBytes.nativeBytes(2 * pageSize); + assertEquals(2 * pageSize, nativeBytes.realCapacity()); + nativeBytes.writePosition(nativeBytes.realCapacity() - 3); + nativeBytes.writeInt(0); + assertEquals(4 * pageSize, nativeBytes.realCapacity()); + + nativeBytes.releaseLast(); + } + + @Test(expected = DecoratedBufferOverflowException.class) + public void tryGrowBeyondByteBufferCapacity() { + Assume.assumeFalse(alloc == HEAP); + long maxMemory = Runtime.getRuntime().maxMemory(); + Assume.assumeTrue(maxMemory >= Bytes.MAX_HEAP_CAPACITY * 3L / 2); + + @NotNull Bytes bytes = Bytes.elasticHeapByteBuffer(Bytes.MAX_HEAP_CAPACITY); + @Nullable ByteBuffer byteBuffer = bytes.underlyingObject(); + assertFalse(byteBuffer.isDirect()); + + // Trigger growing beyond ByteBuffer + bytes.writePosition(bytes.realCapacity() - 1); + bytes.writeInt(0); + } + + @Test(expected = BufferOverflowException.class) + public void tryGrowBeyondCapacity() { + final int maxCapacity = 1024; + @NotNull Bytes bytes = Bytes.elasticByteBuffer(128, maxCapacity); + assertEquals(128, bytes.realCapacity()); + assertEquals(maxCapacity, bytes.capacity()); + @Nullable ByteBuffer byteBuffer = bytes.underlyingObject(); + assertTrue(byteBuffer.isDirect()); + + // trigger resize + bytes.write(new byte[256]); + try { + // Trigger growing beyond maxCapacity + bytes.write(new byte[maxCapacity]); + Assert.fail("should not get here"); + } finally { + bytes.releaseLast(); + } + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/PointerBytesStoreTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/PointerBytesStoreTest.java new file mode 100644 index 0000000..0fd6459 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/PointerBytesStoreTest.java @@ -0,0 +1,49 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.io.AbstractReferenceCounted; +import org.junit.After; +import org.junit.Test; + +import static org.junit.Assert.assertEquals; + +public class PointerBytesStoreTest extends BytesTestCommon { + + @After + public void checkRegisteredBytes() { + AbstractReferenceCounted.assertReferencesReleased(); + } + + @Test + public void testWrap() { + final NativeBytesStore nbs = NativeBytesStore.nativeStore(10000); + final PointerBytesStore pbs = BytesStore.nativePointer(); + try { + pbs.set(nbs.addressForRead(nbs.start()), nbs.realCapacity()); + final long nanoTime = System.nanoTime(); + pbs.writeLong(0L, nanoTime); + + assertEquals(nanoTime, nbs.readLong(0L)); + } finally { + nbs.releaseLast(); + pbs.releaseLast(); + } + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/PrewriteTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/PrewriteTest.java new file mode 100644 index 0000000..bc67612 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/PrewriteTest.java @@ -0,0 +1,44 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import org.junit.Test; + +import static org.junit.Assert.assertEquals; + +public class PrewriteTest extends BytesTestCommon { + @SuppressWarnings("rawtypes") + @Test + public void test() { + Bytes bytes = Bytes.allocateDirect(64); + bytes.clearAndPad(64); + bytes.prepend(1234); + bytes.prewrite(",hi,".getBytes()); + Bytes words = Bytes.from("words"); + bytes.prewrite(words); + bytes.prewriteByte((byte) ','); + bytes.prewriteInt(0x34333231); + bytes.prewriteLong(0x3837363534333231L); + bytes.prewriteShort((short) 0x3130); + assertEquals("01123456781234,words,hi,1234", bytes.toString()); + + bytes.releaseLast(); + words.releaseLast(); + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/PrintVdsoMain.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/PrintVdsoMain.java new file mode 100644 index 0000000..6e36c7f --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/PrintVdsoMain.java @@ -0,0 +1,53 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes; + +import org.jetbrains.annotations.NotNull; + +import java.io.*; + +public class PrintVdsoMain { + @SuppressWarnings("rawtypes") + public static void main(String[] args) throws IOException, IllegalStateException { + long start = 0; + long end = 0; + @NotNull String maps = "/proc/self/maps"; + if (!new File(maps).exists()) return; + try (@NotNull BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(maps)))) { + for (String line; (line = br.readLine()) != null; ) { + if (line.endsWith("[vdso]")) { + @NotNull String[] parts = line.split("[- ]"); + start = Long.parseLong(parts[0], 16); + end = Long.parseLong(parts[1], 16); + } + +// System.out.println(line); + } + } catch (IOException ioe) { + throw ioe; + } + System.out.printf("vdso %x to %x %n", start, end); + @NotNull PointerBytesStore nb = new PointerBytesStore(); + nb.set(start, end - start); + @NotNull FileOutputStream fos = new FileOutputStream("vdso.elf"); + for (Bytes b = nb.bytesForRead(); b.readRemaining() > 0; ) + fos.write(b.readByte()); + fos.close(); + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ReadLenientTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ReadLenientTest.java new file mode 100644 index 0000000..9683c56 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ReadLenientTest.java @@ -0,0 +1,46 @@ +package net.openhft.chronicle.bytes; + +import org.junit.Test; + +import java.math.BigDecimal; +import java.math.BigInteger; +import java.nio.ByteBuffer; + +import static org.junit.Assert.*; +import static org.junit.Assume.assumeFalse; + +public class ReadLenientTest extends BytesTestCommon { + @Test + public void testLenient() { + assumeFalse(NativeBytes.areNewGuarded()); + doTest(Bytes.allocateDirect(64)); + doTest(Bytes.allocateElasticOnHeap(64)); + doTest(Bytes.from("")); + } + + @SuppressWarnings("rawtypes") + private void doTest(Bytes bytes) { + bytes.lenient(true); + ByteBuffer bb = ByteBuffer.allocateDirect(32); + bytes.read(bb); + assertEquals(0, bb.position()); + + assertEquals(BigDecimal.ZERO, bytes.readBigDecimal()); + assertEquals(BigInteger.ZERO, bytes.readBigInteger()); + assertFalse(bytes.readBoolean()); + assertNull(bytes.read8bit()); + assertNull(bytes.readUtf8()); + assertEquals(0, bytes.readByte()); + assertEquals(-1, bytes.readUnsignedByte()); // note this behaviour is need to find the end of a stream. + assertEquals(0, bytes.readShort()); + assertEquals(0, bytes.readUnsignedShort()); + assertEquals(0, bytes.readInt()); + assertEquals(0, bytes.readUnsignedInt()); + assertEquals(0.0, bytes.readFloat(), 0.0); + assertEquals(0.0, bytes.readDouble(), 0.0); + bytes.readSkip(8); + assertEquals(0, bytes.readPosition()); + + bytes.releaseLast(); + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ReadWriteMarshallableTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ReadWriteMarshallableTest.java new file mode 100644 index 0000000..2e86218 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ReadWriteMarshallableTest.java @@ -0,0 +1,72 @@ +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.io.IORuntimeException; +import org.junit.Test; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assume.assumeFalse; + +@SuppressWarnings("rawtypes") +public class ReadWriteMarshallableTest extends BytesTestCommon { + @Test + public void test() { + // TODO Make guarded safe + assumeFalse(NativeBytes.areNewGuarded()); + + Bytes bytes = Bytes.allocateElasticOnHeap(128); + Bytes hello_world = Bytes.from("Hello World"); + Bytes bye = Bytes.from("Bye"); + RWOuter o = new RWOuter( + new RWInner(hello_world), + new RWInner(bye)); + + bytes.writeMarshallableLength16(o); + + RWOuter o2 = bytes.readMarshallableLength16(RWOuter.class, null); + assertEquals("Hello World", o2.i1.data.toString()); + assertEquals("Bye", o2.i2.data.toString()); + hello_world.releaseLast(); + bye.releaseLast(); + } + + static class RWOuter implements BytesMarshallable { + RWInner i1, i2; + + public RWOuter(RWInner i1, RWInner i2) { + this.i1 = i1; + this.i2 = i2; + } + + @Override + public void readMarshallable(BytesIn bytes) throws IORuntimeException { + BytesIn in = (BytesIn) bytes; + i1 = in.readMarshallableLength16(RWInner.class, i1); + i2 = in.readMarshallableLength16(RWInner.class, i2); + } + + @Override + public void writeMarshallable(BytesOut bytes) { + bytes.writeMarshallableLength16(i1); + bytes.writeMarshallableLength16(i2); + } + } + + static class RWInner implements BytesMarshallable { + Bytes data; + + public RWInner(Bytes data) { + this.data = data; + } + + @Override + public void readMarshallable(BytesIn bytes) throws IORuntimeException { + if (data == null) data = Bytes.allocateElasticOnHeap(64); + data.clear().write((BytesStore) bytes); + } + + @Override + public void writeMarshallable(BytesOut bytes) { + bytes.write(data); + } + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ReleasedBytesStoreTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ReleasedBytesStoreTest.java new file mode 100644 index 0000000..a9a4559 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ReleasedBytesStoreTest.java @@ -0,0 +1,25 @@ +package net.openhft.chronicle.bytes; + +import org.junit.Test; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.fail; + +public class ReleasedBytesStoreTest extends BytesTestCommon { + + @Test + public void release() { + Bytes bytes = Bytes.allocateElasticDirect(); + assertEquals(NoBytesStore.class, bytes.bytesStore().getClass()); + bytes.writeLong(0, 0); + assertEquals(NativeBytesStore.class, bytes.bytesStore().getClass()); + bytes.releaseLast(); + assertEquals(ReleasedBytesStore.class, bytes.bytesStore().getClass()); + try { + bytes.writeLong(0, 0); + fail(); + } catch (IllegalStateException e) { + // expected. + } + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/StopBitDecimalTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/StopBitDecimalTest.java new file mode 100644 index 0000000..f13ea31 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/StopBitDecimalTest.java @@ -0,0 +1,36 @@ +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.Maths; +import org.junit.Test; + +import java.math.BigDecimal; +import java.math.BigInteger; +import java.nio.ByteBuffer; +import java.util.Random; + +import static junit.framework.TestCase.assertEquals; +import static org.junit.Assume.assumeFalse; + +public class StopBitDecimalTest extends BytesTestCommon { + @Test + public void testDecimals() { + assumeFalse(NativeBytes.areNewGuarded()); + + Bytes bytes = Bytes.elasticHeapByteBuffer(16); + Random rand = new Random(); + for (int i = 0; i < 10_000; i++) { + rand.setSeed(i); + bytes.clear(); + int scale = rand.nextInt(10); + double d = (rand.nextLong() % 1e14) / Maths.tens(scale); + bytes.writeStopBitDecimal(d); + BigDecimal bd = BigDecimal.valueOf(d); + long v = bytes.readStopBit(); + BigDecimal ebd = new BigDecimal(BigInteger.valueOf(v / 10), (int) (Math.abs(v) % 10)); + assertEquals("i: " + i + ", d: " + d + ", v: " + v, ebd.doubleValue(), bd.doubleValue(), 0.0); + bytes.readPosition(0); + double d2 = bytes.readStopBitDecimal(); + assertEquals("i: " + i + ", d: " + d + ", v: " + v, d, d2, 0.0); + } + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/StreamingDataInputTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/StreamingDataInputTest.java new file mode 100644 index 0000000..11153ee --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/StreamingDataInputTest.java @@ -0,0 +1,18 @@ +package net.openhft.chronicle.bytes; + +import org.junit.Test; + +import static org.junit.Assert.assertEquals; + +public class StreamingDataInputTest extends BytesTestCommon { + @Test + public void read() { + Bytes b = Bytes.allocateDirect(128); + b.append("0123456789"); + byte[] byteArr = "ABCDEFGHIJKLMNOP".getBytes(); + b.read(byteArr, 2, 6); + assertEquals("AB012345IJKLMNOP", new String(byteArr, 0)); + assertEquals('6', b.readByte()); + b.releaseLast(); + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/StreamingInputStreamTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/StreamingInputStreamTest.java new file mode 100644 index 0000000..eaf046d --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/StreamingInputStreamTest.java @@ -0,0 +1,84 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.threads.ThreadDump; +import org.jetbrains.annotations.NotNull; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; + +import java.io.ByteArrayOutputStream; +import java.io.IOException; +import java.io.InputStream; + +import static java.nio.charset.StandardCharsets.ISO_8859_1; +import static org.junit.Assert.assertArrayEquals; +import static org.junit.Assert.assertEquals; + +@SuppressWarnings("rawtypes") +public class StreamingInputStreamTest extends BytesTestCommon { + private ThreadDump threadDump; + + @Before + public void threadDump() { + threadDump = new ThreadDump(); + } + + @After + public void checkThreadDump() { + threadDump.assertNoNewThreads(); + } + + // https://github.com/OpenHFT/Chronicle-Bytes/issues/48 + @Test + public void readOfZeroShouldReturnZero() throws IOException { + @NotNull Bytes b = Bytes.allocateElasticDirect(); + prepareBytes(b); + + @NotNull InputStream is = b.inputStream(); + assertEquals(0, is.read(new byte[5], 0, 0)); + b.releaseLast(); + } + + @Test(timeout = 1000) + public void testReadBlock() throws IOException { + + @NotNull Bytes b = Bytes.allocateElasticDirect(); + @NotNull byte[] test = prepareBytes(b); + + @NotNull InputStream is = b.inputStream(); + try (@NotNull ByteArrayOutputStream os = new ByteArrayOutputStream()) { + @NotNull byte[] buffer = new byte[8]; + for (int len; (len = is.read(buffer)) != -1; ) + os.write(buffer, 0, len); + os.flush(); + assertArrayEquals(test, os.toByteArray()); + } + + b.releaseLast(); + } + + private byte[] prepareBytes(final Bytes b) { + @NotNull byte[] test = "Hello World, Have a great day!".getBytes(ISO_8859_1); + b.write(test); + return test; + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/UTF8BytesTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/UTF8BytesTest.java new file mode 100644 index 0000000..1f64ed9 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/UTF8BytesTest.java @@ -0,0 +1,26 @@ +package net.openhft.chronicle.bytes; + +import org.junit.Test; + +import java.io.File; +import java.io.IOException; + +import static org.junit.Assert.assertEquals; + +public class UTF8BytesTest { + + private static final String MESSAGE = "awésome-message-1"; + + @Test + public void testUtfEncoding() throws IOException { + File f = File.createTempFile("testUtfEncoding", "data"); + f.deleteOnExit(); + final MappedBytes bytes = MappedBytes.mappedBytes(f, 256); + int len = (int) AppendableUtil.findUtf8Length(MESSAGE); + bytes.appendUtf8(MESSAGE); + + StringBuilder sb = new StringBuilder(); + bytes.parseUtf8(sb, true, len); + assertEquals(MESSAGE, sb.toString()); + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/UnsafeRWObjectTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/UnsafeRWObjectTest.java new file mode 100644 index 0000000..836800e --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/UnsafeRWObjectTest.java @@ -0,0 +1,101 @@ +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.Jvm; +import org.junit.Test; + +import java.util.Arrays; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assume.assumeTrue; + +public class UnsafeRWObjectTest { + @Test + public void shortObject() { + assumeTrue(Jvm.is64bit() && !Jvm.isAzulZing()); + assertEquals("[12, 32]", + Arrays.toString( + BytesUtil.triviallyCopyableRange(AA.class))); + Bytes bytes = Bytes.allocateDirect(32); + AA aa = new AA(1, 2, 3); + bytes.unsafeWriteObject(aa, 4 + 2 * 8); + assertEquals("" + + "00000000 01 00 00 00 02 00 00 00 00 00 00 00 00 00 00 00 ········ ········\n" + + "00000010 00 00 08 40 ···@ \n", + bytes.toHexString()); + AA a2 = new AA(0, 0, 0); + bytes.unsafeReadObject(a2, 4 + 2 * 8); + assertEquals(aa.i, a2.i); + assertEquals(aa.l, a2.l); + assertEquals(aa.d, a2.d, 0.0); + bytes.releaseLast(); + } + + @Test + public void longObject() { + assumeTrue(Jvm.is64bit() && !Jvm.isAzulZing()); + assertEquals("[16, 48]", + Arrays.toString( + BytesUtil.triviallyCopyableRange(BB.class))); + Bytes bytes = Bytes.allocateDirect(4 * 8); + BB bb = new BB(1, 2, 3, 4); + bytes.unsafeWriteObject(bb, 16, 4 * 8); + String expected = "" + + "00000000 01 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00 ········ ········\n" + + "00000010 03 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00 ········ ········\n"; + assertEquals(expected, + bytes.toHexString()); + BB b2 = new BB(0, 0, 0, 0); + bytes.unsafeReadObject(b2, 16, 4 * 8); + Bytes bytes2 = Bytes.allocateElasticOnHeap(4 * 8); + bytes2.unsafeWriteObject(b2, 16, 4 * 8); + assertEquals(expected, + bytes2.toHexString()); + + bytes.releaseLast(); + } + + @Test + public void array() { + assumeTrue(Jvm.is64bit() && !Jvm.isAzulZing()); + assertEquals("[16]", + Arrays.toString( + BytesUtil.triviallyCopyableRange(byte[].class))); + Bytes bytes = Bytes.allocateDirect(32); + byte[] byteArray = "Hello World.".getBytes(); + bytes.unsafeWriteObject(byteArray, byteArray.length); + assertEquals("" + + "00000000 48 65 6c 6c 6f 20 57 6f 72 6c 64 2e Hello Wo rld. \n", + bytes.toHexString()); + byte[] byteArray2 = new byte[byteArray.length]; + bytes.unsafeReadObject(byteArray2, byteArray.length); + assertEquals("Hello World.", new String(byteArray2)); + bytes.releaseLast(); + + } + + static class AA { + int i; + long l; + double d; + + public AA(int i, long l, double d) { + this.i = i; + this.l = l; + this.d = d; + } + } + + static class BB { + long l0; + long l1; + long l2; + long l3; + + public BB(long l0, long l1, long l2, long l3) { + this.l0 = l0; + this.l1 = l1; + this.l2 = l2; + this.l3 = l3; + } + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/UnsafeTextBytesTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/UnsafeTextBytesTest.java new file mode 100644 index 0000000..42ae60a --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/UnsafeTextBytesTest.java @@ -0,0 +1,95 @@ +package net.openhft.chronicle.bytes; + +import net.openhft.chronicle.core.Maths; +import net.openhft.chronicle.core.io.UnsafeText; +import org.junit.Test; + +import java.util.Random; + +import static org.junit.Assert.assertEquals; + +public class UnsafeTextBytesTest extends BytesTestCommon { + + static void testAppendBase10(final Bytes bytes, final long l) { + final long address = bytes.clear().addressForRead(0); + final long end = UnsafeText.appendFixed(address, l); + bytes.readLimit(end - address); + String message = bytes.toString(); + assertEquals(message, l, bytes.parseLong()); + } + + static String testAppendDouble(final Bytes bytes, final double l) { + final long address = bytes.clear().addressForRead(0); + final long end = UnsafeText.appendDouble(address, l); + bytes.readLimit(end - address); + final String message = bytes.toString(); + assertEquals(message, l, bytes.parseDouble(), Math.ulp(l)); + return message; + } + + static void testAppendFixed(final Bytes bytes, + final double l, + final int digits) { + final long address = bytes.clear().addressForRead(0); + final long end = UnsafeText.appendFixed(address, l, digits); + bytes.readLimit(end - address); + final String message = bytes.toString(); + final double expected = Maths.round4(l); + final double actual = bytes.parseDouble(); + assertEquals(message, expected, actual, 0.0); + } + + @Test + public void appendBase10() { + final Bytes bytes = Bytes.allocateDirect(32); + try { + for (long l = Long.MAX_VALUE; l > 0; l /= 2) { + testAppendBase10(bytes, l); + testAppendBase10(bytes, 1 - l); + } + } finally { + bytes.releaseLast(); + } + } + + @Test + public void appendDouble() { + final Random rand = new Random(1); + final Bytes bytes = Bytes.allocateDirect(32); + try { + testAppendFixed(bytes, 0.0003, 4); + for (int i = 0; i < 1000000; i++) { + double d = Math.pow(1e16, rand.nextDouble()) / 1e4; + testAppendDouble(bytes, d); + testAppendFixed(bytes, d, 4); + } + } finally { + bytes.releaseLast(); + } + } + + @Test + public void appendDouble2() { + final Bytes bytes = Bytes.allocateDirect(32); + try { + for (double d : new double[]{ + 741138311171.555, + 0.0, -0.0, 0.1, 0.012, 0.00123, 1.0, Double.NaN, 1 / 0.0, -1 / 0.0}) + testAppendDouble(bytes, d); + } finally { + bytes.releaseLast(); + } + } + + @Test + public void extraZeros() { + final Bytes bytes = Bytes.allocateDirect(32); + try { + final double d = -0.00002; + final String output = testAppendDouble(bytes, d); + assertEquals("-0.00002", output); + } finally { + bytes.releaseLast(); + } + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/VanillaBytesTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/VanillaBytesTest.java new file mode 100644 index 0000000..81b9448 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/VanillaBytesTest.java @@ -0,0 +1,47 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +package net.openhft.chronicle.bytes; + +import org.jetbrains.annotations.NotNull; +import org.junit.Test; + +import static org.junit.Assert.assertEquals; + +@SuppressWarnings("rawtypes") +public class VanillaBytesTest extends BytesTestCommon { + @Test + public void testBytesForRead() { + @NotNull byte[] byteArr = new byte[128]; + for (int i = 0; i < byteArr.length; i++) + byteArr[i] = (byte) i; + Bytes bytes = Bytes.wrapForRead(byteArr); + bytes.readSkip(8); + @NotNull Bytes bytes2 = bytes.bytesForRead(); + assertEquals(128 - 8, bytes2.readRemaining()); + assertEquals(8, bytes2.readPosition()); + assertEquals(8, bytes2.readByte(bytes2.start())); + assertEquals(9, bytes2.readByte(bytes2.start() + 1)); + assertEquals(9, bytes.readByte(9)); + bytes2.writeByte(bytes2.start() + 1, 99); + assertEquals(99, bytes.readByte(99)); + + bytes.releaseLast(); + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/WriteLimitTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/WriteLimitTest.java new file mode 100644 index 0000000..539b89c --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/WriteLimitTest.java @@ -0,0 +1,78 @@ +package net.openhft.chronicle.bytes; + +import org.junit.Test; +import org.junit.runner.RunWith; +import org.junit.runners.Parameterized; + +import java.nio.BufferOverflowException; +import java.util.ArrayList; +import java.util.Collection; +import java.util.List; +import java.util.Random; +import java.util.function.Consumer; + +import static org.junit.Assert.fail; + +@RunWith(Parameterized.class) +public class WriteLimitTest { + static final Allocator[] ALLOCATORS = {Allocator.NATIVE, Allocator.HEAP, Allocator.BYTE_BUFFER}; + static List tests; + static Random random = new Random(); + final String name; + final Allocator allocator; + final Consumer action; + final int length; + + public WriteLimitTest(String name, Allocator allocator, Consumer action, int length) { + this.name = name; + this.allocator = allocator; + this.action = action; + this.length = length; + } + + @Parameterized.Parameters(name = "{0}") + public static Collection data() { + tests = new ArrayList<>(); + addTest("boolean", b -> b.writeBoolean(true), 1); + addTest("byte", b -> b.writeByte((byte) 1), 1); + addTest("unsigned-byte", b -> b.writeUnsignedByte(1), 1); + addTest("short", b -> b.writeShort((short) 1), 2); + addTest("unsigned-short", b -> b.writeUnsignedShort(1), 2); + addTest("char $", b -> b.writeChar('$'), 1); + addTest("char £", b -> b.writeChar('£'), 2); + addTest("char " + (char) (1 << 14), b -> b.writeChar((char) (1 << 14)), 3); + addTest("int", b -> b.writeInt(1), 4); + addTest("unsigned-int", b -> b.writeUnsignedInt(1), 4); + addTest("float", b -> b.writeFloat(1), 4); + addTest("long", b -> b.writeLong(1), 8); + addTest("double", b -> b.writeDouble(1), 8); + return tests; + } + + static void addTest(String name, Consumer action, int length) { + for (Allocator a : ALLOCATORS) + tests.add(new Object[]{a + " " + name, a, action, length}); + } + + @Test + public void writeLimit() { + Bytes bytes = allocator.elasticBytes(64); + for (int i = 0; i < 16; i++) { + int position = (int) (bytes.realCapacity() - length - i); + bytes.clear().writePosition(position).writeLimit(position + length); + action.accept(bytes); + + try { + bytes.clear().writePosition(position).writeLimit(position + length - 1); + action.accept(bytes); + + bytes.clear().writePosition(position).writeLimit(position + length - 1); + action.accept(bytes); + fail("position: " + position); + } catch (BufferOverflowException expected) { + + } + } + bytes.releaseLast(); + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/algo/OptimisedBytesStoreHashTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/algo/OptimisedBytesStoreHashTest.java new file mode 100644 index 0000000..a47c23c --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/algo/OptimisedBytesStoreHashTest.java @@ -0,0 +1,221 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes.algo; + +import net.openhft.chronicle.bytes.Bytes; +import net.openhft.chronicle.bytes.BytesTestCommon; +import net.openhft.chronicle.bytes.NativeBytes; +import net.openhft.chronicle.bytes.NativeBytesStore; +import net.openhft.chronicle.core.threads.ThreadDump; +import org.jetbrains.annotations.NotNull; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; + +import java.io.IOException; +import java.security.SecureRandom; +import java.util.Random; + +import static net.openhft.chronicle.bytes.algo.OptimisedBytesStoreHash.*; +import static org.junit.Assert.assertEquals; + +@SuppressWarnings("rawtypes") +public class OptimisedBytesStoreHashTest extends BytesTestCommon { + + private ThreadDump threadDump; + + @Before + public void threadDump() { + threadDump = new ThreadDump(); + } + + @After + public void checkThreadDump() { + threadDump.assertNoNewThreads(); + } + + @Test + public void testApplyAsLong() { + @NotNull NativeBytes b = Bytes.allocateElasticDirect(128); + b.writeLong(0x0102030405060708L); + b.writeLong(0x1112131415161718L); + assertEquals(VanillaBytesStoreHash.INSTANCE.applyAsLong(b), + OptimisedBytesStoreHash.INSTANCE.applyAsLong(b)); + + while (b.readSkip(1).readRemaining() > 0) { + long expected = VanillaBytesStoreHash.INSTANCE.applyAsLong(b); + long actual = OptimisedBytesStoreHash.INSTANCE.applyAsLong(b); + assertEquals("Rem: " + b.readRemaining(), expected, actual); + } + assertEquals(VanillaBytesStoreHash.INSTANCE.applyAsLong(b), + OptimisedBytesStoreHash.INSTANCE.applyAsLong(b)); + b.releaseLast(); + } + + @Test + public void sizeMatch() { + @NotNull NativeBytesStore nb = NativeBytesStore.nativeStore(64); + for (int i = 1; i <= 64; i++) + nb.writeUnsignedByte(i - 1, i); +/* + assertEquals(0L, applyAsLong1to7(nb, 0)); + for (int i = 1; i <= 7; i++) + assertEquals(applyAsLong1to7(nb, i), applyAsLong9to16(nb, i)); + assertEquals(applyAsLong8(nb), applyAsLong1to7(nb, 8)); + assertEquals(applyAsLong8(nb), applyAsLong9to16(nb, 8)); +*/ + for (int i = 1; i <= 16; i++) + assertEquals("i: " + i, applyAsLong9to16(nb, i), applyAsLongAny(nb, i)); + for (int i = 17; i <= 32; i++) + assertEquals("i: " + i, applyAsLong17to32(nb, i), applyAsLongAny(nb, i)); + nb.releaseLast(); + } + + //@Test + //@Ignore("Long running, har mean score = 5436") + public void testRandomness() { + @NotNull SecureRandom rand = new SecureRandom(); + + long time = 0, timeCount = 0; + double scoreSum = 0; + int runs = 500; + for (int t = 0; t < runs; t++) { + @NotNull long[] hashs = new long[8192]; + @NotNull byte[] init = new byte[hashs.length / 8]; + Bytes b = Bytes.allocateDirect(init.length); + rand.nextBytes(init); + for (int i = 0; i < hashs.length; i++) { + b.clear(); + b.write(init); + + long prev = b.readLong(i >> 6 << 3); + b.writeLong(i >> 6 << 3, prev ^ (1L << i)); + + b.readLimit(init.length); + long start = System.nanoTime(); + hashs[i] = VanillaBytesStoreHash.INSTANCE.applyAsLong(b); + + time += System.nanoTime() - start; + timeCount++; + } + long score = 0; + for (int i = 0; i < hashs.length - 1; i++) + for (int j = i + 1; j < hashs.length; j++) { + long diff = hashs[j] ^ hashs[i]; + int diffBC = Long.bitCount(diff); + if (diffBC <= 17) { + long d = 1L << (17 - diffBC); + score += d; + } + } + scoreSum += 1.0 / score; +// if (t % 50 == 0) +// System.out.println(t + " - Score: " + score); + } + System.out.println("Average score: " + (long) (runs / scoreSum)); + System.out.printf("Average time %.3f us%n", time / timeCount / 1e3); + } + + //@Test + //@Ignore("Long running, avg score = 5414, avg time 0.043 us") + public void testSmallRandomness() throws IOException { + long time = 0, timeCount = 0; + long scoreSum = 0; +// StringBuilder sb = new StringBuilder(); + + for (int t = 0; t < 500; t++) { + @NotNull long[] hashs = new long[8192]; + @NotNull NativeBytes b = Bytes.allocateElasticDirect(8); + for (int i = 0; i < hashs.length; i++) { + b.clear(); + b.append(t); + b.append('-'); + b.append(i); + long start = System.nanoTime(); + hashs[i] = OptimisedBytesStoreHash.INSTANCE.applyAsLong(b); + time += System.nanoTime() - start; + timeCount++; + +/* if (true) { + sb.setLength(0); + sb.append(b); + assertEquals(hashs[i], Maths.longHash(sb)); + }*/ + } + long score = 0; + for (int i = 0; i < hashs.length - 1; i++) + for (int j = i + 1; j < hashs.length; j++) { + long diff = hashs[j] ^ hashs[i]; + int diffBC = Long.bitCount(diff); + if (diffBC < 18) { + long d = 1L << (17 - diffBC); + score += d; + } + } + scoreSum += score; + if (t % 50 == 0) + System.out.println(t + " - Score: " + score); + } + System.out.println("Average score: " + scoreSum / 500); + System.out.printf("Average time %.3f us%n", time / timeCount / 1e3); + } + + //@Test + //@Ignore("Only run for comparison, avg score = 6843") + public void testSecureRandomness() { + long scoreSum = 0; + for (int t = 0; t < 500; t++) { + @NotNull Random rand = new SecureRandom(); + @NotNull long[] hashs = new long[8192]; + for (int i = 0; i < hashs.length; i++) { + hashs[i] = rand.nextLong(); + } + int score = 0; + for (int i = 0; i < hashs.length - 1; i++) + for (int j = i + 1; j < hashs.length; j++) { + long diff = hashs[j] ^ hashs[i]; + int diffBC = Long.bitCount(diff); + if (diffBC < 18) { + int d = 1 << (17 - diffBC); + score += d; + } + } + scoreSum += score; + if (t % 50 == 0) + System.out.println(t + " - Score: " + score); + } + System.out.println("Average score: " + scoreSum / 500); + } + + @Test + public void testReadIncompleteLong() { + Bytes bs = Bytes.allocateDirect(8); + for (int i = 1; i <= 8; i++) + bs.writeUnsignedByte(i); + @NotNull Bytes bs2 = Bytes.allocateDirect(9).unchecked(true); + + for (int i = 0; i <= 8; i++) { + assertEquals("i: " + i, Long.toHexString(bs2.readLong(0)), + Long.toHexString(OptimisedBytesStoreHash.readIncompleteLong(bs.addressForRead(0), i))); + bs2.writeUnsignedByte(i + 1); + } + bs.releaseLast(); + bs2.releaseLast(); + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/jitter/MemoryMessager.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/jitter/MemoryMessager.java new file mode 100644 index 0000000..67d1c4e --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/jitter/MemoryMessager.java @@ -0,0 +1,85 @@ +package net.openhft.chronicle.bytes.jitter; + +import net.openhft.chronicle.bytes.MappedBytes; +import net.openhft.chronicle.core.Jvm; +import net.openhft.chronicle.core.UnsafeMemory; + +public class MemoryMessager { + + public static final int NOT_READY = Integer.MIN_VALUE; + public static final int HEADER_LENGTH = 20; + private final MappedBytes bytes; + private final int padTo; + private final int padMask; + private long address; + private long firstLong; + + public MemoryMessager(MappedBytes bytes, int padTo) { + this.bytes = bytes; + address = bytes.addressForRead(bytes.readPosition()); + this.padTo = padTo; + this.padMask = padTo - 1; + } + + /** + * Writes length bytes. First writes a 4 byte header then a 8 byte index (count) + * and then the remaining number of bytes so that total message is of required length + */ + public void writeMessage(int length, long count, long firstLong) { + long pos = bytes.writePosition(); + boolean works = bytes.compareAndSwapInt(pos, 0x0, NOT_READY); + + if (!works) throw new AssertionError(); + Jvm.safepoint(); + bytes.writeSkip(4); + bytes.writeLong(count); + bytes.writeLong(firstLong); + if (padTo != 0) { + int masked = length & padMask; + if (masked != 0) + length += (padTo - masked); + } + length -= HEADER_LENGTH; + int i = 0; + Jvm.safepoint(); + for (; i < length - 7; i += 8) + bytes.writeLong(i); + for (; i < length; i++) + bytes.writeByte((byte) 0); + Jvm.safepoint(); + boolean works2 = bytes.compareAndSwapInt(pos, NOT_READY, (int) (bytes.writePosition() - pos)); + if (!works2) throw new AssertionError(); + } + + @SuppressWarnings("restriction") + public int length() { + UnsafeMemory.unsafeLoadFence(); + int length = UnsafeMemory.unsafeGetInt(address); + return length; + } + + public long consumeBytes() { + int length = length(); + if (length == 0x0 || length == NOT_READY) + throw new AssertionError("length: " + length); + + Jvm.safepoint(); + bytes.readSkip(4); + long ret = bytes.readLong(); + this.firstLong = bytes.readLong(); + length -= HEADER_LENGTH; + int i = 0; + Jvm.safepoint(); + for (; i < length - 7; i += 8) + bytes.readLong(); + for (; i < length; i++) + bytes.readByte(); + Jvm.safepoint(); + address = bytes.addressForRead(bytes.readPosition(), 4); + return ret; + } + + public long firstLong() { + return firstLong; + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/jitter/MemoryReadJitterMain.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/jitter/MemoryReadJitterMain.java new file mode 100644 index 0000000..8a471ed --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/jitter/MemoryReadJitterMain.java @@ -0,0 +1,126 @@ +package net.openhft.chronicle.bytes.jitter; + +import net.openhft.chronicle.bytes.MappedBytes; +import net.openhft.chronicle.bytes.MappedFile; +import net.openhft.chronicle.core.Jvm; +import net.openhft.chronicle.core.util.Histogram; +import net.openhft.chronicle.core.util.Time; + +import java.io.File; +import java.io.IOException; +import java.util.concurrent.atomic.AtomicLong; + +public class MemoryReadJitterMain { + public static final String PROFILE_OF_THE_THREAD = "profile of the thread"; + + static int runTime = Integer.getInteger("runTime", 600); // seconds + static int size = Integer.getInteger("size", 128); // bytes + static int padTo = Integer.getInteger("pad", 0); // bytes + static int sampleTime = Integer.getInteger("sampleTime", 2); // micro-seconds + static int throughput = Integer.getInteger("throughput", 20_000); // per second + static volatile boolean running = true; + + static { + System.setProperty("jvm.safepoint.enabled", "true"); + System.setProperty("org.slf4j.simpleLogger.defaultLogLevel", "info"); + } + + public static void main(String[] args) throws IOException { + MappedFile.warmup(); + + String path = "test-mem-" + Time.uniqueId(); + System.out.println("Writing to " + path); + AtomicLong lastRead = new AtomicLong(); + File file = new File(path); + file.deleteOnExit(); + + final Histogram histoRead = new Histogram(); + final Histogram histoWrite = new Histogram(); + final Histogram histoReadWrite = new Histogram(); + + Thread reader = new Thread(() -> { + try { + MappedBytes mf = MappedBytes.mappedBytes(file, 64 << 10); + mf.readLimit(mf.writeLimit()); + MemoryMessager mm = new MemoryMessager(mf, padTo); + boolean found = false; + while (running) { + if (found) + Jvm.safepoint(); + else + Jvm.safepoint(); + int length = mm.length(); + if (length == 0x0 || length == MemoryMessager.NOT_READY) { + found = false; + Jvm.safepoint(); + length = mm.length(); + if (length == 0x0 || length == MemoryMessager.NOT_READY) { + Jvm.safepoint(); + continue; + } + } + long startTimeNs = System.nanoTime(); + Jvm.safepoint(); + long last = mm.consumeBytes(); + if (found) + Jvm.safepoint(); + else + Jvm.safepoint(); + long now = System.nanoTime(); + histoRead.sampleNanos(now - startTimeNs); + histoReadWrite.sampleNanos(now - mm.firstLong()); + lastRead.lazySet(last); + if (found) + Jvm.safepoint(); + else + Jvm.safepoint(); + found = true; + } + mf.releaseLast(); + } catch (Throwable t) { + t.printStackTrace(); + } + }); + reader.setDaemon(true); + reader.start(); + Jvm.pause(100); // give it time to start + + long count = 0; + MappedBytes mf = MappedBytes.mappedBytes(file, 64 << 10); + MemoryMessager mm = new MemoryMessager(mf, padTo); + long start0 = System.currentTimeMillis(); + int sampleNS = sampleTime * 1000; + int intervalNS = (int) (1e9 / throughput); + int subSampler = 0; + do { + long startTimeNs = System.nanoTime(); + mm.writeMessage(size, ++count, startTimeNs); + histoWrite.sampleNanos(System.nanoTime() - startTimeNs); + long start1 = System.nanoTime(); + while (System.nanoTime() < start1 + sampleNS) { + // wait one micro-second. + } + if (lastRead.get() != count) { + StackTraceElement[] stes = reader.getStackTrace(); + if (lastRead.get() != count || ++subSampler > 100) { // 1% of race condition samples arbitrarily chosen. + StringBuilder sb = new StringBuilder(); + sb.append(PROFILE_OF_THE_THREAD); + Jvm.trimStackTrace(sb, stes); + System.out.println(sb); + subSampler = 0; + } + } + while (System.nanoTime() < start1 + intervalNS) { + Thread.yield(); + } + } while (System.currentTimeMillis() < start0 + runTime * 1_000); + running = false; + mf.releaseLast(); + System.gc();// give it time to release the file so the delete on exit will work on windows. + + System.out.println("size=" + size + " padTo=" + padTo); + System.out.println("histoRead =" + histoRead.toMicrosFormat()); + System.out.println("histoWrite =" + histoWrite.toMicrosFormat()); + System.out.println("histoReadWrite=" + histoReadWrite.toMicrosFormat()); + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/jitter/MemoryWriteJitterMain.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/jitter/MemoryWriteJitterMain.java new file mode 100644 index 0000000..11c4674 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/jitter/MemoryWriteJitterMain.java @@ -0,0 +1,113 @@ +package net.openhft.chronicle.bytes.jitter; + +import net.openhft.chronicle.bytes.MappedBytes; +import net.openhft.chronicle.bytes.MappedFile; +import net.openhft.chronicle.core.Jvm; +import net.openhft.chronicle.core.util.Histogram; +import net.openhft.chronicle.core.util.Time; + +import java.io.File; +import java.io.IOException; + +public class MemoryWriteJitterMain { + public static final String PROFILE_OF_THE_THREAD = "profile of the thread"; + + static int runTime = Integer.getInteger("runTime", 600); // seconds + static int size = Integer.getInteger("size", 128); // bytes + static int padTo = Integer.getInteger("pad", 0); // bytes + static int sampleTime = Integer.getInteger("sampleTime", 2); // micro-seconds + static int throughput = Integer.getInteger("throughput", 20_000); // per second + static volatile boolean running = true; + static volatile boolean writing = false; + static volatile int count = 0; + + static { + System.setProperty("jvm.safepoint.enabled", "true"); + System.setProperty("org.slf4j.simpleLogger.defaultLogLevel", "info"); + } + + public static void main(String[] args) throws IOException { + MappedFile.warmup(); + + String path = "test-mem-" + Time.uniqueId(); + System.out.println("Writing to " + path); + + File file = new File(path); + file.deleteOnExit(); + + final Histogram histoRead = new Histogram(); + final Histogram histoWrite = new Histogram(); + final Histogram histoReadWrite = new Histogram(); + + Thread writer = new Thread(() -> { + try { + MappedBytes mf = MappedBytes.mappedBytes(file, 1 << 20); + MemoryMessager mm = new MemoryMessager(mf, padTo); + int intervalNS = (int) (1e9 / throughput); + while (running) { + writing = true; + Jvm.safepoint(); + long startTimeNs = System.nanoTime(); + mm.writeMessage(size, ++count, startTimeNs); + long now = System.nanoTime(); + Jvm.safepoint(); + histoWrite.sampleNanos(now - startTimeNs); + writing = false; + long start = System.nanoTime(); + Thread.yield(); + //noinspection StatementWithEmptyBody + while (System.nanoTime() < start + intervalNS) ; + } + mf.releaseLast(); + } catch (Throwable t) { + t.printStackTrace(); + System.exit(-1); + } + }); + writer.setDaemon(true); + writer.start(); + + MappedBytes mf = MappedBytes.mappedBytes(file, 1 << 20); + mf.readLimit(mf.writeLimit()); + MemoryMessager mm = new MemoryMessager(mf, padTo); + + long start0 = System.currentTimeMillis(); + int sampleNS = sampleTime * 1000; + do { + if (writing) { + long start1 = System.nanoTime(); + while (System.nanoTime() < start1 + sampleNS) { + // wait one micro-second. + } + if (writing) { + StackTraceElement[] stes = writer.getStackTrace(); + if (writing) { + StringBuilder sb = new StringBuilder(); + sb.append(PROFILE_OF_THE_THREAD); + Jvm.trimStackTrace(sb, stes); + if (sb.indexOf("MemoryWriteJitterMain.java:58") < 0 + && sb.indexOf("MemoryWriteJitterMain.java:59") < 0 + && sb.indexOf("MemoryWriteJitterMain.java:60") < 0) + System.out.println(sb); + } + } + } + int length = mm.length(); + if (length > 0x0) { + long startTimeNs = System.nanoTime(); + mm.consumeBytes(); + long now = System.nanoTime(); + histoRead.sampleNanos(now - startTimeNs); + histoReadWrite.sampleNanos(now - mm.firstLong()); + } + } while (System.currentTimeMillis() < start0 + runTime * 1_000); + running = false; + mf.releaseLast(); + System.gc();// give it time to release the file so the delete on exit will work on windows. + + System.out.println("size=" + size + " padTo=" + padTo); + System.out.println("histoRead =" + histoRead.toMicrosFormat()); + System.out.println("histoWrite =" + histoWrite.toMicrosFormat()); + System.out.println("histoReadWrite=" + histoReadWrite.toMicrosFormat()); + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/readme/CASTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/readme/CASTest.java new file mode 100644 index 0000000..be3327d --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/readme/CASTest.java @@ -0,0 +1,56 @@ +package net.openhft.chronicle.bytes.readme; + +import net.openhft.chronicle.bytes.BytesTestCommon; +import net.openhft.chronicle.bytes.HexDumpBytes; +import net.openhft.chronicle.bytes.NativeBytes; +import org.junit.Test; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; +import static org.junit.Assume.assumeFalse; + +public class CASTest extends BytesTestCommon { + @Test + public void testCAS() { + assumeFalse(NativeBytes.areNewGuarded()); + + final HexDumpBytes bytes = new HexDumpBytes() + .offsetFormat((o, b) -> b.appendBase16(o, 4)); + try { + + bytes.comment("s32").writeUtf8("s32"); + bytes.alignBy(4); + long s32 = bytes.writePosition(); + bytes.writeInt(0); + + bytes.comment("s64").writeUtf8("s64"); + bytes.alignBy(8); + long s64 = bytes.writePosition(); + bytes.writeLong(0); + + final String expected1 = "0000 03 73 33 32 00 00 00 00 # s32\n" + + "0008 03 73 36 34 00 00 00 00 00 00 00 00 00 00 00 00 # s64\n"; + + final String actual1 = bytes.toHexString(); + + assertEquals(expected1, actual1); + + //System.out.println(bytes.toHexString()); + + assertTrue(bytes.compareAndSwapInt(s32, 0, Integer.MAX_VALUE)); + assertTrue(bytes.compareAndSwapLong(s64, 0, Long.MAX_VALUE)); + + // System.out.println(bytes.toHexString()); + + final String expected2 = "0000 03 73 33 32 ff ff ff 7f # s32\n" + + "0008 03 73 36 34 00 00 00 00 ff ff ff ff ff ff ff 7f # s64\n"; + final String actual2 = bytes.toHexString(); + + assertEquals(expected2, actual2); + + } finally { + bytes.releaseLast(); + } + + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/readme/PrimitiveTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/readme/PrimitiveTest.java new file mode 100644 index 0000000..e7565a1 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/readme/PrimitiveTest.java @@ -0,0 +1,310 @@ +package net.openhft.chronicle.bytes.readme; + +import net.openhft.chronicle.bytes.*; +import org.junit.Test; + +import java.nio.ByteBuffer; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; +import static org.junit.Assume.assumeFalse; + +public class PrimitiveTest extends BytesTestCommon { + + @Test + public void testBinaryNestedDTO() { + final Outer outer = new Outer("name", new Inner("key1", 1.1), new Inner("key2", 2.2)); + + final HexDumpBytes bytes = new HexDumpBytes(); + try { + bytes.comment("outer"); + outer.writeMarshallable(bytes); + + final String expected = + " # outer\n" + + " 04 6e 61 6d 65 # name\n" + + " # innerA\n" + + " 04 6b 65 79 31 # key\n" + + " 9a 99 99 99 99 99 f1 3f # value\n" + + " # innerB\n" + + " 04 6b 65 79 32 # key\n" + + " 9a 99 99 99 99 99 01 40 # value\n"; + + final String actual = bytes.toHexString(); + + assertEquals(expected, actual); + + final Outer outer2 = new Outer(); + outer2.readMarshallable(bytes); + + } finally { + bytes.releaseLast(); + } + } + + @Test + public void testBinaryPrimitiveDTO() { + final PrimitiveDTO dto = new PrimitiveDTO(true, + (byte) 0x11, + (short) 0x2222, + '5', + 0x12345678, + 0x123456789ABCDEFL, + 1.2345f, + Math.PI); + + final HexDumpBytes bytes = new HexDumpBytes(); + try { + bytes.comment("dto"); + dto.writeMarshallable(bytes); + + final String expected = " # dto\n" + + " 59 # flag\n" + + " 11 # s8\n" + + " 22 22 # s16\n" + + " 35 # ch\n" + + " 78 56 34 12 # s32\n" + + " ef cd ab 89 67 45 23 01 # s64\n" + + " 19 04 9e 3f # f32\n" + + " 18 2d 44 54 fb 21 09 40 # f64\n"; + + final String actual = bytes.toHexString(); + + assertEquals(expected, actual); + + PrimitiveDTO dto2 = new PrimitiveDTO(); + dto2.readMarshallable(bytes); + + } finally { + bytes.releaseLast(); + } + } + + @Test + public void testBinaryPrimitive() { + final HexDumpBytes bytes = new HexDumpBytes(); + try { + bytes.comment("flag").writeBoolean(true); + bytes.comment("s8").writeByte((byte) 1); + bytes.comment("u8").writeUnsignedByte(2); + bytes.comment("s16").writeShort((short) 3); + bytes.comment("u16").writeUnsignedShort(4); + bytes.comment("ch").writeStopBit('5'); + bytes.comment("s24").writeInt24(-6_666_666); + bytes.comment("u24").writeUnsignedInt24(16_666_666); + bytes.comment("s32").writeInt(6); + bytes.comment("u32").writeUnsignedInt(7); + bytes.comment("s64").writeLong(8); + bytes.comment("f32").writeFloat(9); + bytes.comment("f64").writeDouble(10); + + final String expected = + "59 # flag\n" + + "01 # s8\n" + + "02 # u8\n" + + "03 00 # s16\n" + + "04 00 # u16\n" + + "35 # ch\n" + + "56 46 9a # s24\n" + + "2a 50 fe # u24\n" + + "06 00 00 00 # s32\n" + + "07 00 00 00 # u32\n" + + "08 00 00 00 00 00 00 00 # s64\n" + + "00 00 10 41 # f32\n" + + "00 00 00 00 00 00 24 40 # f64\n"; + + final String actual = bytes.toHexString(); + + assertEquals(expected, actual); + + // System.out.println(bytes.toHexString()); + + final boolean flag = bytes.readBoolean(); + final byte s8 = bytes.readByte(); + final int u8 = bytes.readUnsignedByte(); + final short s16 = bytes.readShort(); + final int u16 = bytes.readUnsignedShort(); + final char ch = bytes.readStopBitChar(); + final int s24 = bytes.readInt24(); + final long u24 = bytes.readUnsignedInt24(); + final int s32 = bytes.readInt(); + final long u32 = bytes.readUnsignedInt(); + final long s64 = bytes.readLong(); + final float f32 = bytes.readFloat(); + final double f64 = bytes.readDouble(); + + assertTrue(flag); + assertEquals(1, s8); + assertEquals(2, u8); + assertEquals(3, s16); + assertEquals(4, u16); + assertEquals('5', ch); + assertEquals(-6_666_666, s24); + assertEquals(16_666_666, u24); + assertEquals(6, s32); + assertEquals(7, u32); + assertEquals(8, s64); + assertEquals(9, f32, 0.0); + assertEquals(10, f64, 0.0); + } finally { + bytes.releaseLast(); + } + } + + @Test + public void testBinaryPrimitiveOffset() { + final Bytes bytes = Bytes.elasticHeapByteBuffer(64); + try { + + bytes.writeBoolean(0, true); + bytes.writeByte(1, (byte) 1); + bytes.writeUnsignedByte(2, 2); + bytes.writeShort(3, (short) 3); + bytes.writeUnsignedShort(5, 4); + bytes.writeInt(7, 6); + bytes.writeUnsignedInt(11, 7); + bytes.writeLong(15, 8); + bytes.writeFloat(23, 9); + bytes.writeDouble(27, 10); + bytes.writePosition(35); + + final String expected = + "00000000 59 01 02 03 00 04 00 06 00 00 00 07 00 00 00 08 Y······· ········\n" + + "00000010 00 00 00 00 00 00 00 00 00 10 41 00 00 00 00 00 ········ ··A·····\n" + + "00000020 00 24 40 ·$@ \n"; + + final String actual = bytes.toHexString(); + + assertEquals(expected, actual); + + boolean flag = bytes.readBoolean(0); + byte s8 = bytes.readByte(1); + int u8 = bytes.readUnsignedByte(2); + short s16 = bytes.readShort(3); + int u16 = bytes.readUnsignedShort(5); + int s32 = bytes.readInt(7); + long u32 = bytes.readUnsignedInt(11); + long s64 = bytes.readLong(15); + float f32 = bytes.readFloat(23); + double f64 = bytes.readDouble(27); + + assertTrue(flag); + assertEquals(1, s8); + assertEquals(2, u8); + assertEquals(3, s16); + assertEquals(4, u16); + assertEquals(6, s32); + assertEquals(7, u32); + assertEquals(8, s64); + assertEquals(9, f32, 0.0); + assertEquals(10, f64, 0.0); + } finally { + bytes.releaseLast(); + } + } + + @Test + public void testTextPrimitive() { + assumeFalse(NativeBytes.areNewGuarded()); + final Bytes bytes = Bytes.elasticHeapByteBuffer(64); + try { + bytes.append(true).append('\n'); + bytes.append(1).append('\n'); + bytes.append(2L).append('\n'); + bytes.append('3').append('\n'); + bytes.append(4.1f).append('\n'); + bytes.append(5.2).append('\n'); + bytes.append(6.2999999, 3).append('\n'); + + final String expected = "00000000 54 0a 31 0a 32 0a 33 0a 34 2e 31 0a 35 2e 32 0a T·1·2·3· 4.1·5.2·\n" + + "00000010 36 2e 33 30 30 0a 6.300· \n"; + + final String actual = bytes.toHexString(); + + assertEquals(expected, actual); + + final boolean flag = bytes.parseBoolean(); + final int s32 = bytes.parseInt(); + final long s64 = bytes.parseLong(); + final String ch = bytes.parseUtf8(StopCharTesters.SPACE_STOP); + final float f32 = bytes.parseFloat(); + final double f64 = bytes.parseDouble(); + final double f64b = bytes.parseDouble(); + + assertTrue(flag); + assertEquals(1, s32); + assertEquals(2, s64); + assertEquals("3", ch); + assertEquals(4.1, f32, 1e-6); + assertEquals(5.2, f64, 0.0); + assertEquals(6.2999999, f64b, 0.5e-4); + } finally { + bytes.releaseLast(); + } + } + + private static final class Outer implements BytesMarshallable { + + private final String name; + private final Inner innerA; + private final Inner innerB; + + public Outer(final String name, + final Inner innerA, + final Inner innerB) { + this.name = name; + this.innerA = innerA; + this.innerB = innerB; + } + + public Outer() { + this(null, new Inner(), new Inner()); + } + } + + private static final class Inner implements BytesMarshallable { + + private String key; + private double value; + + public Inner(String key, double value) { + this.key = key; + this.value = value; + } + + public Inner() { + } + } + + private static final class PrimitiveDTO implements BytesMarshallable { + boolean flag; + byte s8; + short s16; + char ch; + int s32; + long s64; + float f32; + double f64; + + public PrimitiveDTO(final boolean flag, + final byte s8, + final short s16, + final char ch, + final int s32, + final long s64, + final float f32, + final double f64) { + this.flag = flag; + this.s8 = s8; + this.s16 = s16; + this.ch = ch; + this.s32 = s32; + this.s64 = s64; + this.f32 = f32; + this.f64 = f64; + } + + public PrimitiveDTO() { + } + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/readme/StopBitTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/readme/StopBitTest.java new file mode 100644 index 0000000..66b07cb --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/readme/StopBitTest.java @@ -0,0 +1,76 @@ +package net.openhft.chronicle.bytes.readme; + +import net.openhft.chronicle.bytes.BytesTestCommon; +import net.openhft.chronicle.bytes.HexDumpBytes; +import org.junit.Test; + +import static org.junit.Assert.assertEquals; + +public class StopBitTest extends BytesTestCommon { + + @Test + public void testString() { + final HexDumpBytes bytes = new HexDumpBytes(); + try { + for (long i : new long[]{ + 0, -1, + 127, -127, + 128, -128, + 1 << 14, 1 << 21, + 1 << 28, 1L << 35, + 1L << 42, 1L << 49, + 1L << 56, Long.MAX_VALUE, + Long.MIN_VALUE}) { + bytes.comment(i + "L").writeStopBit(i); + } + + for (double d : new double[]{ + 0.0, + -0.0, + 1.0, + 1.0625, + -128, + -Double.MIN_NORMAL, + Double.NEGATIVE_INFINITY, + Double.NaN, + Double.POSITIVE_INFINITY}) { + bytes.comment(d + "").writeStopBit(d); + } + + final String actual = bytes.toHexString(); + + final String expected = + "00 # 0L\n" + + "80 00 # -1L\n" + + "7f # 127L\n" + + "fe 00 # -127L\n" + + "80 01 # 128L\n" + + "ff 00 # -128L\n" + + "80 80 01 # 16384L\n" + + "80 80 80 01 # 2097152L\n" + + "80 80 80 80 01 # 268435456L\n" + + "80 80 80 80 80 01 # 34359738368L\n" + + "80 80 80 80 80 80 01 # 4398046511104L\n" + + "80 80 80 80 80 80 80 01 # 562949953421312L\n" + + "80 80 80 80 80 80 80 80 01 # 72057594037927936L\n" + + "ff ff ff ff ff ff ff ff 7f # 9223372036854775807L\n" + + "ff ff ff ff ff ff ff ff ff 00 # -9223372036854775808L\n" + + "00 # 0.0\n" + + "40 # -0.0\n" + + "9f 7c # 1.0\n" + + "9f fc 20 # 1.0625\n" + + "e0 18 # -128.0\n" + + "c0 04 # -2.2250738585072014E-308\n" + + "ff 7c # -Infinity\n" + + "bf 7e # NaN\n" + + "bf 7c # Infinity\n"; + + assertEquals(expected, actual); + + // System.out.println(actual); + + } finally { + bytes.releaseLast(); + } + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/readme/StringsTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/readme/StringsTest.java new file mode 100644 index 0000000..270ff0f --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/readme/StringsTest.java @@ -0,0 +1,68 @@ +package net.openhft.chronicle.bytes.readme; + +import net.openhft.chronicle.bytes.BytesTestCommon; +import net.openhft.chronicle.bytes.HexDumpBytes; +import net.openhft.chronicle.bytes.NativeBytes; +import net.openhft.chronicle.bytes.StopCharTesters; +import org.junit.Test; + +import static org.junit.Assert.*; +import static org.junit.Assume.assumeFalse; + +public class StringsTest extends BytesTestCommon { + + @Test + public void testString() { + assumeFalse(NativeBytes.areNewGuarded()); + + final HexDumpBytes bytes = new HexDumpBytes(); + try { + bytes.comment("write8bit").write8bit("£ 1"); + bytes.comment("writeUtf8").writeUtf8("£ 1"); + bytes.comment("append8bit").append8bit("£ 1").append('\n'); + bytes.comment("appendUtf8").appendUtf8("£ 1").append('\n'); + + // System.out.println(bytes.toHexString()); + + final String a = bytes.read8bit(); + final String b = bytes.readUtf8(); + final String c = bytes.parse8bit(StopCharTesters.CONTROL_STOP); + final String d = bytes.parseUtf8(StopCharTesters.CONTROL_STOP); + assertEquals("£ 1", a); + assertEquals("£ 1", b); + assertEquals("£ 1", c); + assertEquals("£ 1", d); + + // System.out.println(System.identityHashCode(a)); + // System.out.println(System.identityHashCode(b)); + // System.out.println(System.identityHashCode(c)); + // System.out.println(System.identityHashCode(d)); + + // uses the pool but a different hash. + // assertSame(a, c); // uses a string pool + assertSame(b, c); // uses a string pool + assertSame(b, d); // uses a string pool + } finally { + bytes.releaseLast(); + } + + } + + @Test + public void testNull() { + final HexDumpBytes bytes = new HexDumpBytes(); + try { + bytes.comment("write8bit").write8bit((String) null); + bytes.comment("writeUtf8").writeUtf8(null); + + //System.out.println(bytes.toHexString()); + + final String a = bytes.read8bit(); + final String b = bytes.readUtf8(); + assertNull(a); + assertNull(b); + } finally { + bytes.releaseLast(); + } + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/BinaryIntArrayReferenceTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/BinaryIntArrayReferenceTest.java new file mode 100644 index 0000000..7c20502 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/BinaryIntArrayReferenceTest.java @@ -0,0 +1,98 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes.ref; + +import net.openhft.chronicle.bytes.Bytes; +import net.openhft.chronicle.bytes.BytesMarshallable; +import net.openhft.chronicle.bytes.BytesTestCommon; +import net.openhft.chronicle.bytes.NativeBytes; +import org.junit.Test; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assume.assumeFalse; + +public class BinaryIntArrayReferenceTest extends BytesTestCommon { + @Test + public void getSetValues() { + final int length = 128 * 4 + 2 * 8; + final Bytes bytes = Bytes.allocateDirect(length); + try { + BinaryIntArrayReference.write(bytes, 128); + + try (BinaryIntArrayReference array = new BinaryIntArrayReference()) { + array.bytesStore(bytes, 0, length); + + assertEquals(128, array.getCapacity()); + for (int i = 0; i < 128; i++) + array.setValueAt(i, i + 1); + + for (int i = 0; i < 128; i++) + assertEquals(i + 1, array.getValueAt(i)); + } + } finally { + bytes.releaseLast(); + } + } + + @Test + public void marshallable() { + assumeFalse(NativeBytes.areNewGuarded()); + final Bytes bytes = Bytes.allocateElasticDirect(256); + try { + final IntArrays la = new IntArrays(4, 8); + la.writeMarshallable(bytes); + + final String expected = + "00000000 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ········ ········\n" + + "00000010 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ········ ········\n" + + "00000020 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ········ ········\n" + + "00000030 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ········ ········\n" + + "00000040 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ········ ········\n"; + + final String actual = bytes.toHexString(); + + assertEquals(expected, actual); + + //System.out.println(bytes.toHexString()); + + final IntArrays la2 = new IntArrays(0, 0); + la2.readMarshallable(bytes); + assertEquals(4, la2.first.getCapacity()); + assertEquals(8, la2.second.getCapacity()); + la.closeAll(); + la2.closeAll(); + } finally { + bytes.releaseLast(); + } + } + + private static final class IntArrays implements BytesMarshallable { + BinaryIntArrayReference first = new BinaryIntArrayReference(); + BinaryIntArrayReference second = new BinaryIntArrayReference(); + + public IntArrays(int firstLength, int secondLength) { + first.capacity(firstLength); + second.capacity(secondLength); + } + + public void closeAll() { + first.close(); + second.close(); + } + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/BinaryIntReferenceTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/BinaryIntReferenceTest.java new file mode 100644 index 0000000..46174a0 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/BinaryIntReferenceTest.java @@ -0,0 +1,57 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes.ref; + +import net.openhft.chronicle.bytes.BytesTestCommon; +import net.openhft.chronicle.bytes.NativeBytesStore; +import org.jetbrains.annotations.NotNull; +import org.junit.Test; + +import static org.junit.Assert.*; + +public class BinaryIntReferenceTest extends BytesTestCommon { + @Test + public void test() { + @NotNull NativeBytesStore nbs = NativeBytesStore.nativeStoreWithFixedCapacity(32); + try (@NotNull BinaryIntReference ref = new BinaryIntReference()) { + ref.bytesStore(nbs, 16, 4); + assertEquals(0, ref.getValue()); + ref.addAtomicValue(1); + assertEquals(1, ref.getVolatileValue()); + ref.addValue(-2); + assertEquals("value: -1", ref.toString()); + assertFalse(ref.compareAndSwapValue(0, 1)); + assertTrue(ref.compareAndSwapValue(-1, 2)); + assertEquals(4, ref.maxSize()); + assertEquals(16, ref.offset()); + assertEquals(nbs, ref.bytesStore()); + assertEquals(0L, nbs.readLong(0)); + assertEquals(0L, nbs.readLong(8)); + assertEquals(2, nbs.readInt(16)); + assertEquals(0L, nbs.readLong(20)); + + ref.setValue(10); + assertEquals(10L, nbs.readInt(16)); + ref.setOrderedValue(20); + Thread.yield(); + assertEquals(20L, nbs.readVolatileInt(16)); + } + nbs.releaseLast(); + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/BinaryLongArrayReferenceTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/BinaryLongArrayReferenceTest.java new file mode 100644 index 0000000..f235099 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/BinaryLongArrayReferenceTest.java @@ -0,0 +1,100 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes.ref; + +import net.openhft.chronicle.bytes.Bytes; +import net.openhft.chronicle.bytes.BytesMarshallable; +import net.openhft.chronicle.bytes.BytesTestCommon; +import net.openhft.chronicle.bytes.NativeBytes; +import org.junit.Test; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assume.assumeFalse; + +public class BinaryLongArrayReferenceTest extends BytesTestCommon { + @Test + public void getSetValues() { + final int length = 128 * 8 + 2 * 8; + final Bytes bytes = Bytes.allocateDirect(length); + try { + BinaryLongArrayReference.write(bytes, 128); + + try (BinaryLongArrayReference array = new BinaryLongArrayReference()) { + array.bytesStore(bytes, 0, length); + + assertEquals(128, array.getCapacity()); + for (int i = 0; i < 128; i++) + array.setValueAt(i, i + 1); + + for (int i = 0; i < 128; i++) + assertEquals(i + 1, array.getValueAt(i)); + } + } finally { + bytes.releaseLast(); + } + } + + @Test + public void marshallable() { + assumeFalse(NativeBytes.areNewGuarded()); + final Bytes bytes = Bytes.allocateElasticDirect(256); + try { + final LongArrays la = new LongArrays(4, 8); + la.writeMarshallable(bytes); + + final String expected = + "00000000 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ········ ········\n" + + "00000010 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ········ ········\n" + + "........\n" + + "00000030 08 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ········ ········\n" + + "00000040 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ········ ········\n" + + "........\n" + + "00000070 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ········ ········\n"; + + final String actual = bytes.toHexString(); + + assertEquals(expected, actual); + + //System.out.println(bytes.toHexString()); + + final LongArrays la2 = new LongArrays(0, 0); + la2.readMarshallable(bytes); + assertEquals(4, la2.first.getCapacity()); + assertEquals(8, la2.second.getCapacity()); + la.closeAll(); + la2.closeAll(); + } finally { + bytes.releaseLast(); + } + } + + private static final class LongArrays implements BytesMarshallable { + BinaryLongArrayReference first = new BinaryLongArrayReference(); + BinaryLongArrayReference second = new BinaryLongArrayReference(); + + public LongArrays(int firstLength, int secondLength) { + first.capacity(firstLength); + second.capacity(secondLength); + } + + public void closeAll() { + first.close(); + second.close(); + } + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/BinaryLongReferenceTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/BinaryLongReferenceTest.java new file mode 100644 index 0000000..67dc155 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/BinaryLongReferenceTest.java @@ -0,0 +1,57 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes.ref; + +import net.openhft.chronicle.bytes.BytesTestCommon; +import net.openhft.chronicle.bytes.NativeBytesStore; +import org.jetbrains.annotations.NotNull; +import org.junit.Test; + +import static org.junit.Assert.*; + +public class BinaryLongReferenceTest extends BytesTestCommon { + @Test + public void test() { + @NotNull NativeBytesStore nbs = NativeBytesStore.nativeStoreWithFixedCapacity(32); + try (@NotNull BinaryLongReference ref = new BinaryLongReference()) { + ref.bytesStore(nbs, 16, 8); + assertEquals(0, ref.getValue()); + ref.addAtomicValue(1); + assertEquals(1, ref.getVolatileValue()); + ref.addValue(-2); + assertEquals("value: -1", ref.toString()); + assertFalse(ref.compareAndSwapValue(0, 1)); + assertTrue(ref.compareAndSwapValue(-1, 2)); + assertEquals(8, ref.maxSize()); + assertEquals(16, ref.offset()); + assertEquals(nbs, ref.bytesStore()); + assertEquals(0L, nbs.readLong(0)); + assertEquals(0L, nbs.readLong(8)); + assertEquals(2L, nbs.readLong(16)); + assertEquals(0L, nbs.readLong(24)); + + ref.setValue(10); + assertEquals(10L, nbs.readLong(16)); + ref.setOrderedValue(20); + Thread.yield(); + assertEquals(20L, nbs.readVolatileLong(16)); + } + nbs.releaseLast(); + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/BinaryTwoLongReferenceTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/BinaryTwoLongReferenceTest.java new file mode 100644 index 0000000..c68c0a1 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/BinaryTwoLongReferenceTest.java @@ -0,0 +1,63 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes.ref; + +import net.openhft.chronicle.bytes.BytesTestCommon; +import net.openhft.chronicle.bytes.NativeBytesStore; +import org.jetbrains.annotations.NotNull; +import org.junit.Test; + +import static org.junit.Assert.*; + +public class BinaryTwoLongReferenceTest extends BytesTestCommon { + @Test + public void test() { + @NotNull NativeBytesStore nbs = NativeBytesStore.nativeStoreWithFixedCapacity(32); + try (@NotNull BinaryTwoLongReference ref = new BinaryTwoLongReference()) { + ref.bytesStore(nbs, 16, 16); + assertEquals(0, ref.getValue()); + assertEquals(0, ref.getValue2()); + ref.addAtomicValue(1); + assertEquals(1, ref.getVolatileValue()); + assertEquals(0, ref.getVolatileValue2()); + ref.addAtomicValue2(-1); + assertEquals(1, ref.getVolatileValue()); + assertEquals(-1, ref.getVolatileValue2()); + + ref.addValue(-2); + assertEquals("value: -1, value2: -1", ref.toString()); + assertFalse(ref.compareAndSwapValue(0, 1)); + assertTrue(ref.compareAndSwapValue(-1, 2)); + assertEquals(16, ref.maxSize()); + assertEquals(16, ref.offset()); + assertEquals(nbs, ref.bytesStore()); + assertEquals(0L, nbs.readLong(0)); + assertEquals(0L, nbs.readLong(8)); + assertEquals(2L, nbs.readLong(16)); + assertEquals(-1L, nbs.readLong(24)); + + ref.setValue(10); + assertEquals(10L, nbs.readLong(16)); + ref.setOrderedValue(20); + Thread.yield(); + assertEquals(20L, nbs.readVolatileLong(16)); + } + nbs.releaseLast(); + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/BooleanReferenceTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/BooleanReferenceTest.java new file mode 100644 index 0000000..bcb30ee --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/BooleanReferenceTest.java @@ -0,0 +1,68 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes.ref; + +import net.openhft.chronicle.bytes.BytesTestCommon; +import net.openhft.chronicle.bytes.NativeBytesStore; +import org.jetbrains.annotations.NotNull; +import org.junit.Test; + +import java.nio.charset.StandardCharsets; + +import static org.junit.Assert.*; + +public class BooleanReferenceTest extends BytesTestCommon { + @Test + public void testBinary() { + @NotNull NativeBytesStore nbs = NativeBytesStore.nativeStoreWithFixedCapacity(1); + try (@NotNull BinaryBooleanReference ref = new BinaryBooleanReference()) { + byte i8 = (byte) 0xB0; + nbs.writeByte(0, i8); + + ref.bytesStore(nbs, 0, 1); + + assertFalse(ref.getValue()); + ref.setValue(true); + + assertTrue(ref.getValue()); + assertEquals(1, ref.maxSize()); + + } + nbs.releaseLast(); + } + + @Test + public void testText() { + @NotNull NativeBytesStore nbs = NativeBytesStore.nativeStoreWithFixedCapacity(5); + try (@NotNull TextBooleanReference ref = new TextBooleanReference()) { + + nbs.write(0, "false".getBytes(StandardCharsets.ISO_8859_1)); + + ref.bytesStore(nbs, 0, 5); + + assertFalse(ref.getValue()); + ref.setValue(true); + + assertTrue(ref.getValue()); + assertEquals(5, ref.maxSize()); + + } + nbs.releaseLast(); + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/ByteableReferenceTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/ByteableReferenceTest.java new file mode 100644 index 0000000..8ce6675 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/ByteableReferenceTest.java @@ -0,0 +1,76 @@ +package net.openhft.chronicle.bytes.ref; + +import net.openhft.chronicle.bytes.Byteable; +import net.openhft.chronicle.bytes.NativeBytesStore; +import net.openhft.chronicle.core.io.AbstractCloseable; +import net.openhft.chronicle.core.io.AbstractReferenceCounted; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.junit.runners.Parameterized; + +import java.util.Arrays; +import java.util.List; + +import static org.junit.Assert.assertEquals; + +@SuppressWarnings({"rawtypes", "unchecked"}) +@RunWith(Parameterized.class) +public class ByteableReferenceTest { + + private final AbstractReference byteable; + + public ByteableReferenceTest(final String className, final AbstractReference byteable) { + this.byteable = byteable; + } + + @Parameterized.Parameters(name = "{0}") + public static List testData() { + List objects = Arrays.asList( + datum(new BinaryLongReference()), + datum(new BinaryTwoLongReference()), + datum(new BinaryBooleanReference()), + datum(new BinaryIntReference()), + datum(new TextBooleanReference()), + datum(new TextIntReference()), + datum(new TextLongReference()) + /*, + unhelpful implementations below this point + datum(new TextLongArrayReference()), + datum(new BinaryLongArrayReference()), + datum(new UncheckedLongReference())*/ + ); + AbstractCloseable.disableCloseableTracing(); + AbstractReferenceCounted.disableReferenceTracing(); + return objects; + } + + private static Object[] datum(final Byteable reference) { + return new Object[]{reference.getClass().getSimpleName(), reference}; + } + + @Test + public void shouldMakeReservationOnCurrentStore() { + final NativeBytesStore firstStore = NativeBytesStore.nativeStore(64); + try { + firstStore.writeLong(0, 17); + final NativeBytesStore secondStore = NativeBytesStore.nativeStore(64); + try { + secondStore.writeLong(0, 17); + final long startCount = firstStore.refCount(); + byteable.bytesStore(firstStore, 0, byteable.maxSize()); + + assertEquals(startCount + 1, firstStore.refCount()); + + byteable.bytesStore(secondStore, 0, byteable.maxSize()); + + assertEquals(startCount, firstStore.refCount()); + byteable.close(); + } finally { + secondStore.releaseLast(); + } + } finally { + firstStore.releaseLast(); + } + } + +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/TextIntArrayReferenceTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/TextIntArrayReferenceTest.java new file mode 100644 index 0000000..79ac77c --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/TextIntArrayReferenceTest.java @@ -0,0 +1,52 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes.ref; + +import net.openhft.chronicle.bytes.Bytes; +import net.openhft.chronicle.bytes.BytesTestCommon; +import org.jetbrains.annotations.NotNull; +import org.junit.Test; + +import static org.junit.Assert.assertEquals; + +public class TextIntArrayReferenceTest extends BytesTestCommon { + @SuppressWarnings("rawtypes") + @Test + public void getSetValues() { + int length = 5 * 12 + 70; + Bytes bytes = Bytes.allocateDirect(length); + TextIntArrayReference.write(bytes, 5); + + try (@NotNull TextIntArrayReference array = new TextIntArrayReference()) { + array.bytesStore(bytes, 0, length); + + assertEquals(5, array.getCapacity()); + for (int i = 0; i < 5; i++) + array.setValueAt(i, i + 1); + + for (int i = 0; i < 5; i++) + assertEquals(i + 1, array.getValueAt(i)); + + @NotNull final String expected = "{ locked: false, capacity: 5 , used: 0000000000, values: [ 0000000001, 0000000002, 0000000003, 0000000004, 0000000005 ] }\n"; +// System.out.println(expected.length()); + assertEquals(expected, + bytes.toString()); + bytes.releaseLast(); + } + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/TextIntReferenceTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/TextIntReferenceTest.java new file mode 100644 index 0000000..ce78dbd --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/TextIntReferenceTest.java @@ -0,0 +1,55 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes.ref; + +import net.openhft.chronicle.bytes.Bytes; +import net.openhft.chronicle.bytes.BytesTestCommon; +import net.openhft.chronicle.bytes.NativeBytesStore; +import net.openhft.chronicle.bytes.StopCharTesters; +import org.jetbrains.annotations.NotNull; +import org.junit.Test; + +import static org.junit.Assert.*; + +public class TextIntReferenceTest extends BytesTestCommon { + @Test + public void test() { + @NotNull NativeBytesStore nbs = NativeBytesStore.nativeStoreWithFixedCapacity(64); + try (@NotNull TextIntReference ref = new TextIntReference()) { + ref.bytesStore(nbs, 16, ref.maxSize()); + assertEquals(0, ref.getValue()); + ref.addAtomicValue(1); + assertEquals(1, ref.getVolatileValue()); + ref.addValue(-2); + assertEquals("value: -1", ref.toString()); + assertFalse(ref.compareAndSwapValue(0, 1)); + assertTrue(ref.compareAndSwapValue(-1, 2)); + assertEquals(46, ref.maxSize()); + assertEquals(16, ref.offset()); + assertEquals(nbs, ref.bytesStore()); + assertEquals(0L, nbs.readLong(0)); + assertEquals(0L, nbs.readLong(8)); + Bytes bytes = nbs.bytesForRead(); + bytes.readPosition(16); + assertEquals("!!atomic { locked: false, value: 0000000002 }", bytes.parseUtf8(StopCharTesters.CONTROL_STOP)); + bytes.releaseLast(); + } + nbs.releaseLast(); + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/TextLongArrayReferenceTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/TextLongArrayReferenceTest.java new file mode 100644 index 0000000..a947324 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/TextLongArrayReferenceTest.java @@ -0,0 +1,53 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes.ref; + +import net.openhft.chronicle.bytes.Bytes; +import net.openhft.chronicle.bytes.BytesTestCommon; +import org.jetbrains.annotations.NotNull; +import org.junit.Test; + +import static org.junit.Assert.assertEquals; + +public class TextLongArrayReferenceTest extends BytesTestCommon { + @SuppressWarnings("rawtypes") + @Test + public void getSetValues() { + int length = 5 * 22 + 90; + Bytes bytes = Bytes.allocateDirect(length); + TextLongArrayReference.write(bytes, 5); + + try (@NotNull TextLongArrayReference array = new TextLongArrayReference()) { + array.bytesStore(bytes, 0, length); + + assertEquals(5, array.getCapacity()); + for (int i = 0; i < 5; i++) + array.setValueAt(i, i + 1); + + for (int i = 0; i < 5; i++) + assertEquals(i + 1, array.getValueAt(i)); + + @NotNull final String expected = "{ locked: false, capacity: 5 , used: 00000000000000000000, " + + "values: [ 00000000000000000001, 00000000000000000002, 00000000000000000003, 00000000000000000004, 00000000000000000005 ] }\n"; +// System.out.println(expected.length()); + assertEquals(expected, + bytes.toString()); + bytes.releaseLast(); + } + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/TextLongReferenceTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/TextLongReferenceTest.java new file mode 100644 index 0000000..104841a --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/TextLongReferenceTest.java @@ -0,0 +1,57 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes.ref; + +import net.openhft.chronicle.bytes.Bytes; +import net.openhft.chronicle.bytes.BytesTestCommon; +import net.openhft.chronicle.bytes.NativeBytesStore; +import net.openhft.chronicle.bytes.StopCharTesters; +import org.jetbrains.annotations.NotNull; +import org.junit.Assert; +import org.junit.Test; + +import static org.junit.Assert.*; + +public class TextLongReferenceTest extends BytesTestCommon { + + @Test + public void testSetValue() { + @NotNull NativeBytesStore bytesStore = NativeBytesStore.nativeStoreWithFixedCapacity(64); + try (@NotNull final TextLongReference value = new TextLongReference()) { + value.bytesStore(bytesStore, 0, value.maxSize()); + int expected = 10; + value.setValue(expected); + + long l = bytesStore.parseLong(TextLongReference.VALUE); + + Assert.assertEquals(expected, value.getValue()); + Assert.assertEquals(expected, l); + + assertFalse(value.compareAndSwapValue(0, 1)); + assertTrue(value.compareAndSwapValue(10, 2)); + assertEquals(56, value.maxSize()); + assertEquals(0, value.offset()); + + Bytes bytes = bytesStore.bytesForRead(); + bytes.readPosition(0); + assertEquals("!!atomic { locked: false, value: 00000000000000000002 }", bytes.parseUtf8(StopCharTesters.CONTROL_STOP)); + bytes.releaseLast(); + } + bytesStore.releaseLast(); + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/UncheckedLongReferenceTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/UncheckedLongReferenceTest.java new file mode 100644 index 0000000..b306025 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/ref/UncheckedLongReferenceTest.java @@ -0,0 +1,57 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes.ref; + +import net.openhft.chronicle.bytes.BytesTestCommon; +import net.openhft.chronicle.bytes.NativeBytesStore; +import org.jetbrains.annotations.NotNull; +import org.junit.Test; + +import static org.junit.Assert.*; + +public class UncheckedLongReferenceTest extends BytesTestCommon { + @Test + public void test() { + @NotNull NativeBytesStore nbs = NativeBytesStore.nativeStoreWithFixedCapacity(32); + try (@NotNull UncheckedLongReference ref = new UncheckedLongReference()) { + ref.bytesStore(nbs, 16, 8); + assertEquals(0, ref.getValue()); + ref.addAtomicValue(1); + assertEquals(1, ref.getVolatileValue()); + ref.addValue(-2); + assertEquals("value: -1", ref.toString()); + assertFalse(ref.compareAndSwapValue(0, 1)); + assertTrue(ref.compareAndSwapValue(-1, 2)); + assertEquals(8, ref.maxSize()); + assertEquals(nbs.addressForRead(16), ref.offset()); + assertEquals(nbs, ref.bytesStore()); + assertEquals(0L, nbs.readLong(0)); + assertEquals(0L, nbs.readLong(8)); + assertEquals(2L, nbs.readLong(16)); + assertEquals(0L, nbs.readLong(24)); + + ref.setValue(10); + assertEquals(10L, nbs.readLong(16)); + ref.setOrderedValue(20); + Thread.yield(); + assertEquals(20L, nbs.readLong(16)); + } + nbs.releaseLast(); + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/util/GzipTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/util/GzipTest.java new file mode 100644 index 0000000..5b06997 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/util/GzipTest.java @@ -0,0 +1,95 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes.util; + +import net.openhft.chronicle.bytes.Bytes; +import net.openhft.chronicle.bytes.BytesTestCommon; +import net.openhft.chronicle.bytes.NativeBytes; +import net.openhft.chronicle.core.io.IORuntimeException; +import net.openhft.chronicle.core.threads.ThreadDump; +import org.jetbrains.annotations.NotNull; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; + +import java.util.Arrays; +import java.util.Random; + +import static java.nio.charset.StandardCharsets.ISO_8859_1; +import static net.openhft.chronicle.bytes.util.Compressions.GZIP; +import static org.junit.Assert.*; +import static org.junit.Assume.assumeFalse; + +public class GzipTest extends BytesTestCommon { + + private ThreadDump threadDump; + + @Before + public void threadDump() { + threadDump = new ThreadDump(); + } + + @After + public void checkThreadDump() { + threadDump.assertNoNewThreads(); + } + + @Test + public void testCompress() throws IORuntimeException { + @NotNull byte[] bytes = "hello world".getBytes(ISO_8859_1); + byte[] bytes2 = GZIP.uncompress(GZIP.compress(bytes)); + assertArrayEquals(bytes, bytes2); + } + + @SuppressWarnings("rawtypes") + @Test + public void testCompressionRatio() throws IORuntimeException { + assumeFalse(NativeBytes.areNewGuarded()); + @NotNull byte[] bytes = new byte[1 << 20]; + Arrays.fill(bytes, (byte) 'X'); + @NotNull Random rand = new Random(); + for (int i = 0; i < bytes.length; i += 40) + bytes[rand.nextInt(bytes.length)] = '1'; + byte[] compress = GZIP.compress(bytes); +// System.out.println(compress.length); + + Bytes bytes2 = Bytes.wrapForRead(bytes); + @NotNull Bytes bytes3 = Bytes.allocateElasticDirect(); + GZIP.compress(bytes2, bytes3); + @NotNull byte[] bytes4 = bytes3.toByteArray(); + byte[] bytes5 = GZIP.uncompress(bytes4); + + assertNotNull(bytes5); +// assertEquals(Arrays.toString(bytes).replace(", ", "\n"), +// Arrays.toString(bytes5).replace(", ", "\n")); +// assertEquals(Arrays.toString(compress).replace(", ", "\n"), +// Arrays.toString(bytes4).replace(", ", "\n")); + assertEquals(compress.length, bytes4.length); + assertArrayEquals(compress, bytes4); + + @NotNull Bytes bytes6 = Bytes.allocateElasticDirect(); + GZIP.uncompress(bytes3, bytes6); + assertArrayEquals(bytes, bytes6.toByteArray()); +// assertEquals(Arrays.toString(bytes).replace(", ", "\n"), +// Arrays.toString(bytes6.toByteArray()).replace(", ", "\n")); + bytes2.releaseLast(); + bytes3.releaseLast(); + bytes6.releaseLast(); + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/util/LZWTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/util/LZWTest.java new file mode 100644 index 0000000..432c38e --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/util/LZWTest.java @@ -0,0 +1,92 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes.util; + +import net.openhft.chronicle.bytes.Bytes; +import net.openhft.chronicle.bytes.BytesTestCommon; +import net.openhft.chronicle.core.io.IORuntimeException; +import net.openhft.chronicle.core.threads.ThreadDump; +import org.jetbrains.annotations.NotNull; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; + +import java.util.Arrays; +import java.util.Random; + +import static java.nio.charset.StandardCharsets.ISO_8859_1; +import static net.openhft.chronicle.bytes.util.Compressions.LZW; +import static org.junit.Assert.*; + +public class LZWTest extends BytesTestCommon { + + private ThreadDump threadDump; + + @Before + public void threadDump() { + threadDump = new ThreadDump(); + } + + @After + public void checkThreadDump() { + threadDump.assertNoNewThreads(); + } + + @Test + public void testCompress() throws IORuntimeException { + @NotNull byte[] bytes = "hello world".getBytes(ISO_8859_1); + byte[] bytes2 = LZW.uncompress(LZW.compress(bytes)); + assertArrayEquals(bytes, bytes2); + } + + @SuppressWarnings("rawtypes") + @Test + public void testCompressionRatio() throws IORuntimeException { + @NotNull byte[] bytes = new byte[1 << 20]; + Arrays.fill(bytes, (byte) 'X'); + @NotNull Random rand = new Random(); + for (int i = 0; i < bytes.length; i += 40) + bytes[rand.nextInt(bytes.length)] = '1'; + byte[] compress = LZW.compress(bytes); +// System.out.println(compress.length); + + Bytes bytes2 = Bytes.wrapForRead(bytes); + @NotNull Bytes bytes3 = Bytes.allocateElasticDirect(); + LZW.compress(bytes2, bytes3); + @NotNull byte[] bytes4 = bytes3.toByteArray(); + byte[] bytes5 = LZW.uncompress(bytes4); + assertNotNull(bytes5); + +// assertEquals(Arrays.toString(bytes).replace(", ", "\n"), +// Arrays.toString(bytes5).replace(", ", "\n")); +// assertEquals(Arrays.toString(compress).replace(", ", "\n"), +// Arrays.toString(bytes4).replace(", ", "\n")); + assertEquals(compress.length, bytes4.length); + assertArrayEquals(compress, bytes4); + + @NotNull Bytes bytes6 = Bytes.allocateElasticDirect(); + LZW.uncompress(bytes3, bytes6); + assertArrayEquals(bytes, bytes6.toByteArray()); +// assertEquals(Arrays.toString(bytes).replace(", ", "\n"), +// Arrays.toString(bytes6.toByteArray()).replace(", ", "\n")); + bytes2.releaseLast(); + bytes3.releaseLast(); + bytes6.releaseLast(); + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/util/PropertyReplacerTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/util/PropertyReplacerTest.java new file mode 100644 index 0000000..038ae44 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/util/PropertyReplacerTest.java @@ -0,0 +1,83 @@ +/* + * Copyright 2016-2020 Chronicle Software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package net.openhft.chronicle.bytes.util; + +import org.junit.Test; + +import java.util.Properties; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.fail; + +public class PropertyReplacerTest { + @Test + public void testSystemPropertyMissing() { + try { + PropertyReplacer.replaceTokensWithProperties("plainText ${missingPropertyToReplace}"); + } catch (IllegalArgumentException e) { + assertEquals("System property is missing: [property=missingPropertyToReplace, " + + "expression=plainText ${missingPropertyToReplace}]", e.getMessage()); + + return; + } + + fail("Exception is expected"); + } + + @Test + public void testPropertyMissing() { + try { + final Properties properties = new Properties(); + properties.setProperty("wrongProperty", "wrongValue"); + + PropertyReplacer.replaceTokensWithProperties("plainText ${missingPropertyToReplace}", properties); + } catch (IllegalArgumentException e) { + assertEquals("Property is missing: [property=missingPropertyToReplace, " + + "expression=plainText ${missingPropertyToReplace}, properties={wrongProperty=wrongValue}]", + e.getMessage()); + + return; + } + + fail("Exception is expected"); + } + + @Test + public void testLeadingAndTrailingSpacesInsideBracketsIgnored() { + final Properties props = new Properties(); + props.setProperty("myFancyProperty", "myFancyValue"); + + String res = PropertyReplacer.replaceTokensWithProperties("plainKey: ${ myFancyProperty }", props); + assertEquals("plainKey: myFancyValue", res); + + res = PropertyReplacer.replaceTokensWithProperties("plainKey: ${myFancyProperty}", props); + assertEquals("plainKey: myFancyValue", res); + + res = PropertyReplacer.replaceTokensWithProperties("plainKey: ${ myFancyProperty }", props); + assertEquals("plainKey: myFancyValue", res); + + res = PropertyReplacer.replaceTokensWithProperties("plainKey: ${ myFancyProperty }", props); + assertEquals("plainKey: myFancyValue", res); + + res = PropertyReplacer.replaceTokensWithProperties("plainKey: ${\tmyFancyProperty\t}", props); + assertEquals("plainKey: myFancyValue", res); + + res = PropertyReplacer.replaceTokensWithProperties("plainKey: ${ \t\t\nmyFancyProperty \r\f}", props); + assertEquals("plainKey: myFancyValue", res); + } +} diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/util/StringInternerBytesTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/util/StringInternerBytesTest.java new file mode 100644 index 0000000..deef535 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/util/StringInternerBytesTest.java @@ -0,0 +1,41 @@ +/* + * Copyright 2016-2020 chronicle.software + * + * https://chronicle.software + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.openhft.chronicle.bytes.util; + +import net.openhft.chronicle.bytes.Bytes; +import net.openhft.chronicle.bytes.BytesTestCommon; +import org.jetbrains.annotations.NotNull; +import org.junit.Test; + +import static org.junit.Assert.assertEquals; + +public class StringInternerBytesTest extends BytesTestCommon { + + @SuppressWarnings("rawtypes") + @Test + public void testIntern() { + @NotNull StringInternerBytes si = new StringInternerBytes(128); + for (int i = 0; i < 100; i++) { + Bytes b = Bytes.from("key" + i); + si.intern(b, (int) b.readRemaining()); + b.releaseLast(); + } + assertEquals(89, si.valueCount()); + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/util/ThreadIndexAssignerTest.java b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/util/ThreadIndexAssignerTest.java new file mode 100644 index 0000000..ecda178 --- /dev/null +++ b/datastructures-bytes/src/test/java/net/openhft/chronicle/bytes/util/ThreadIndexAssignerTest.java @@ -0,0 +1,102 @@ +package net.openhft.chronicle.bytes.util; + +import net.openhft.affinity.Affinity; +import net.openhft.chronicle.bytes.Bytes; +import net.openhft.chronicle.bytes.ref.BinaryIntArrayReference; +import net.openhft.chronicle.core.Jvm; +import net.openhft.chronicle.core.OS; +import net.openhft.chronicle.core.util.ThreadIndexAssigner; +import org.junit.Assert; +import org.junit.Test; + +import java.util.concurrent.BlockingQueue; +import java.util.concurrent.LinkedBlockingQueue; +import java.util.concurrent.TimeUnit; + +import static org.junit.Assert.fail; +import static org.junit.Assume.assumeTrue; + +public class ThreadIndexAssignerTest { + @Test + public void assignTwo() throws InterruptedException { + assumeTrue(OS.isLinux() && !Jvm.isArm()); + BlockingQueue t0started = new LinkedBlockingQueue(); + BlockingQueue t1started = new LinkedBlockingQueue(); + BlockingQueue t2started = new LinkedBlockingQueue(); + BlockingQueue testDone = new LinkedBlockingQueue(); + + Bytes bytes = Bytes.allocateDirect(64); + BinaryIntArrayReference iav = new BinaryIntArrayReference(2); + // write the template + iav.writeMarshallable(bytes); + // bind to the template + iav.readMarshallable(bytes); + ThreadIndexAssigner ta = new ThreadIndexAssigner(iav) { + final int next = 0; + + @Override + protected int nextIndex(int size) { + return next % size; + } + }; + BlockingQueue throwables = new LinkedBlockingQueue<>(); + Thread t0 = new Thread(() -> { + try { +// System.out.println("0 started tid: " + Affinity.getThreadId()); + Assert.assertEquals(0, ta.getId()); + t0started.put(""); + testDone.poll(10, TimeUnit.SECONDS); + } catch (Throwable ex) { + ex.printStackTrace(); + throwables.add(ex); + } +// System.out.println("0 stopped tid: " + Affinity.getThreadId()); + }); + t0.start(); + + t0started.poll(1, TimeUnit.SECONDS); + + Thread t1 = new Thread(() -> { + try { +// System.out.println("1 started tid: " + Affinity.getThreadId()); + Assert.assertEquals(1, ta.getId()); + t1started.put(""); + t2started.poll(1, TimeUnit.SECONDS); + } catch (Throwable ex) { + throwables.add(ex); + } +// System.out.println("1 stopped tid: " + Affinity.getThreadId()); + }); + t1.start(); + t1started.poll(1, TimeUnit.SECONDS); + try { + int id = ta.getId(); + System.out.println("id=" + id); + fail(); + } catch (IllegalStateException e) { + // expected + } + t2started.put(""); + t1.join(); + for (int i = 1; i <= 5; i++) { + Jvm.pause(i); + try { + Assert.assertEquals(1, ta.getId()); + break; + } catch (IllegalStateException e) { + if (i == 5) + throw e; + } + } + testDone.put(""); + t0.join(); + + // unchanged + Assert.assertEquals(1, ta.getId()); + bytes.releaseLast(); + + Throwable th = throwables.poll(); + if (th != null) + throw Jvm.rethrow(th); + } +} \ No newline at end of file diff --git a/datastructures-bytes/src/test/resources/btmtt/prim-input.txt b/datastructures-bytes/src/test/resources/btmtt/prim-input.txt new file mode 100644 index 0000000..8be85d1 --- /dev/null +++ b/datastructures-bytes/src/test/resources/btmtt/prim-input.txt @@ -0,0 +1,59 @@ +81 01 # myByteable + 4e # flag + 01 # b + 02 00 # s + 33 # c + 04 00 00 00 # i + 00 00 b0 40 # f + 06 00 00 00 00 00 00 00 # l + cd cc cc cc cc cc 1e 40 # d +### End Of Block +81 01 # myByteable + 59 # flag + 0b # b + 16 00 # s + 54 # c + 2c 00 00 00 # i + 8f c2 b1 40 # f + 42 00 00 00 00 00 00 00 # l + e1 7a 14 ae 47 71 53 40 # d +### End Of Block +82 01 # myScalars + 05 48 65 6c 6c 6f # s + 01 31 # bi + 02 31 30 # bd + 0a 32 30 31 37 2d 31 31 2d 30 36 # date + 0c 31 32 3a 33 35 3a 35 36 2e 37 37 35 # time + 17 32 30 31 37 2d 31 31 2d 30 36 54 31 32 3a 33 # dateTime + 35 3a 35 36 2e 37 37 35 27 32 30 31 37 2d 31 31 # zonedDateTime + 2d 30 36 54 31 32 3a 33 35 3a 35 36 2e 37 37 35 + 5a 5b 45 75 72 6f 70 65 2f 4c 6f 6e 64 6f 6e 5d # uuid + 24 30 30 30 30 30 30 30 31 2d 32 33 34 35 2d 36 + 37 38 39 2d 30 30 30 30 2d 30 30 30 30 30 30 61 + 62 63 64 65 66 +### End Of Block +83 01 # myNested + # byteable + 59 # flag + 0b # b + 16 00 # s + 54 # c + 2c 00 00 00 # i + 8f c2 b1 40 # f + 42 00 00 00 00 00 00 00 # l + e1 7a 14 ae 47 71 53 40 # d + # scalars + 05 57 6f 72 6c 64 # s + 01 30 # bi + 01 30 # bd + 0a 32 30 31 36 2d 31 30 2d 30 35 # date + 0c 30 31 3a 33 34 3a 35 36 2e 37 37 35 # time + 17 32 30 31 36 2d 31 30 2d 30 35 54 30 31 3a 33 # dateTime + 34 3a 35 36 2e 37 37 35 2c 32 30 31 36 2d 31 30 # zonedDateTime + 2d 30 35 54 30 31 3a 33 34 3a 35 36 2e 37 37 35 + 2b 30 31 3a 30 30 5b 45 75 72 6f 70 65 2f 4c 6f + 6e 64 6f 6e 5d 24 31 31 31 31 31 31 31 31 2d 31 # uuid + 31 31 31 2d 31 31 31 31 2d 32 32 32 32 2d 32 32 + 32 32 32 32 32 32 32 32 32 32 +### End Of Block +### End Of Test diff --git a/datastructures-bytes/src/test/resources/btmtt/prim-output.txt b/datastructures-bytes/src/test/resources/btmtt/prim-output.txt new file mode 100644 index 0000000..8be85d1 --- /dev/null +++ b/datastructures-bytes/src/test/resources/btmtt/prim-output.txt @@ -0,0 +1,59 @@ +81 01 # myByteable + 4e # flag + 01 # b + 02 00 # s + 33 # c + 04 00 00 00 # i + 00 00 b0 40 # f + 06 00 00 00 00 00 00 00 # l + cd cc cc cc cc cc 1e 40 # d +### End Of Block +81 01 # myByteable + 59 # flag + 0b # b + 16 00 # s + 54 # c + 2c 00 00 00 # i + 8f c2 b1 40 # f + 42 00 00 00 00 00 00 00 # l + e1 7a 14 ae 47 71 53 40 # d +### End Of Block +82 01 # myScalars + 05 48 65 6c 6c 6f # s + 01 31 # bi + 02 31 30 # bd + 0a 32 30 31 37 2d 31 31 2d 30 36 # date + 0c 31 32 3a 33 35 3a 35 36 2e 37 37 35 # time + 17 32 30 31 37 2d 31 31 2d 30 36 54 31 32 3a 33 # dateTime + 35 3a 35 36 2e 37 37 35 27 32 30 31 37 2d 31 31 # zonedDateTime + 2d 30 36 54 31 32 3a 33 35 3a 35 36 2e 37 37 35 + 5a 5b 45 75 72 6f 70 65 2f 4c 6f 6e 64 6f 6e 5d # uuid + 24 30 30 30 30 30 30 30 31 2d 32 33 34 35 2d 36 + 37 38 39 2d 30 30 30 30 2d 30 30 30 30 30 30 61 + 62 63 64 65 66 +### End Of Block +83 01 # myNested + # byteable + 59 # flag + 0b # b + 16 00 # s + 54 # c + 2c 00 00 00 # i + 8f c2 b1 40 # f + 42 00 00 00 00 00 00 00 # l + e1 7a 14 ae 47 71 53 40 # d + # scalars + 05 57 6f 72 6c 64 # s + 01 30 # bi + 01 30 # bd + 0a 32 30 31 36 2d 31 30 2d 30 35 # date + 0c 30 31 3a 33 34 3a 35 36 2e 37 37 35 # time + 17 32 30 31 36 2d 31 30 2d 30 35 54 30 31 3a 33 # dateTime + 34 3a 35 36 2e 37 37 35 2c 32 30 31 36 2d 31 30 # zonedDateTime + 2d 30 35 54 30 31 3a 33 34 3a 35 36 2e 37 37 35 + 2b 30 31 3a 30 30 5b 45 75 72 6f 70 65 2f 4c 6f + 6e 64 6f 6e 5d 24 31 31 31 31 31 31 31 31 2d 31 # uuid + 31 31 31 2d 31 31 31 31 2d 32 32 32 32 2d 32 32 + 32 32 32 32 32 32 32 32 32 32 +### End Of Block +### End Of Test diff --git a/datastructures-bytes/src/test/resources/file-to-find.txt b/datastructures-bytes/src/test/resources/file-to-find.txt new file mode 100644 index 0000000..7b4d68d --- /dev/null +++ b/datastructures-bytes/src/test/resources/file-to-find.txt @@ -0,0 +1 @@ +empty \ No newline at end of file diff --git a/datastructures-charset/NOTICE.txt b/datastructures-charset/NOTICE.txt new file mode 100644 index 0000000..0d44636 --- /dev/null +++ b/datastructures-charset/NOTICE.txt @@ -0,0 +1,34 @@ +This work is based on + +https://github.com/twitter/cloudhopper-commons/tree/master/ch-commons-charset + +Apache 2.0 License + +Branched as of 6-Feb-2021 + +with the following modifications: + +- removed string reflection optimization to conform to JDK 15 +- removed CharSequenceAccessor + +/* + * #%L + * ch-commons-charset + * %% + * Copyright (C) 2012 Cloudhopper by Twitter + * %% + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * #L% + */ + +@author joelauer (twitter: @jjlauer or http://twitter.com/jjlauer) diff --git a/datastructures-charset/build.gradle b/datastructures-charset/build.gradle new file mode 100644 index 0000000..deb931e --- /dev/null +++ b/datastructures-charset/build.gradle @@ -0,0 +1,3 @@ +dependencies { + api project(':datastructures-common') +} \ No newline at end of file diff --git a/datastructures-charset/src/main/java/org/xbib/datastructures/charset/AirwideIA5Charset.java b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/AirwideIA5Charset.java new file mode 100644 index 0000000..bd8b2b2 --- /dev/null +++ b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/AirwideIA5Charset.java @@ -0,0 +1,62 @@ +package org.xbib.datastructures.charset; + +import java.util.Arrays; + +/** + * The AirwideIA5Charset class handles a charset unique to the "Airwide" + * SMSC vendor. Airwide basically took IA5 and GSM and then decided to treat just + * a few characters different than other characters. The result is that some + * byte values will need transcoded first, then run thru the normal GSMCharset + * class. Stupid, stupid Airwide.... + * + */ +public class AirwideIA5Charset extends GSMCharset { + + private static final int GSM_COL = 0; + private static final int AIRWIDE_COL = 1; + private static final byte[][] AIRWIDE_OVERRIDE_TABLE = { + { (byte)0x00, (byte)0x40 }, // @ + { (byte)0x02, (byte)0x24 }, // $ + { (byte)0x11, (byte)0x5F }, // _ + }; + + @Override + public byte[] encode(StringBuilder stringBuilder) { + // encoding of unicode to "AIRWIDE-GSM" is the exact same + return super.encode(stringBuilder); + } + + @Override + public void decode(byte[] bytes, StringBuilder buffer) { + int length = (bytes == null ? 0 : bytes.length); + + // we promise to not change any of the bytes -- an optimization is a + // lazy "copy" of the byte array in case we don't encounter any bytes + // that need to be converted + byte[] bytes2 = null; + + // decoding "AIRWIDE-GSM" to unicode is nearly same process as "GSM", but + // a few byte values need to be converted -- we'll first convert from AIRWIDE-GSM to GSM + // a little slow to run thru this again, but SMS are so tiny its not worth optimizing + for (int i = 0; i < length; i++) { + for (byte[] value : AIRWIDE_OVERRIDE_TABLE) { + // if we find a AIRWIDE-GSM byte value in our AIRWIDE column + // we need to swap its value with a replacement value + if (bytes[i] == value[AIRWIDE_COL]) { + // we found a special byte value, check if we need to copy + // the byte array now for a "lazy" copy + if (bytes2 == null) { + bytes2 = Arrays.copyOf(bytes, bytes.length); + } + bytes2[i] = value[GSM_COL]; + // need to immediately exit search so that we don't run into + // the bug where 0x00 -> 0x40 and then 0x40 -> 0xA1 + break; + } + } + } + // delegate to parent (pick which byte array is correct) + super.decode((bytes2 == null ? bytes : bytes2), buffer); + } + +} diff --git a/datastructures-charset/src/main/java/org/xbib/datastructures/charset/BaseCharset.java b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/BaseCharset.java new file mode 100644 index 0000000..5c199a5 --- /dev/null +++ b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/BaseCharset.java @@ -0,0 +1,34 @@ +package org.xbib.datastructures.charset; + +/** + * Base Charset class implementing common functionality. + */ +public abstract class BaseCharset implements Charset { + + /** + * Default implementation that simply returns a String by creating a new + * StringBuffer, appending to it, and then returning a new String. NOTE: + * This method is NOT efficient since it requires a double copy of a new + * String. Some charsets will override this default implementation to + * provide a more efficient impl. + */ + @Override + public String decode(final byte[] bytes) { + if (bytes == null) { + return null; + } + StringBuilder buffer = new StringBuilder(estimateDecodeCharLength(bytes)); + decode(bytes, buffer); + return buffer.toString(); + } + + @Override + public String normalize(StringBuilder stringBuilder) { + byte[] bytes = this.encode(stringBuilder); + // normalizing a string should never be result in a longer string + StringBuilder buf = new StringBuilder(bytes.length); + this.decode(bytes, buf); + return buf.toString(); + } + +} diff --git a/datastructures-charset/src/main/java/org/xbib/datastructures/charset/CharArrayUtil.java b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/CharArrayUtil.java new file mode 100644 index 0000000..c59d65e --- /dev/null +++ b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/CharArrayUtil.java @@ -0,0 +1,4 @@ +package org.xbib.datastructures.charset; + +public class CharArrayUtil { +} diff --git a/datastructures-charset/src/main/java/org/xbib/datastructures/charset/Charset.java b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/Charset.java new file mode 100644 index 0000000..37365cb --- /dev/null +++ b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/Charset.java @@ -0,0 +1,57 @@ +package org.xbib.datastructures.charset; + +/** + * Interface for any charset. + */ +public interface Charset { + + int estimateEncodeByteLength(StringBuilder stringBuilder); + + /** + * Encode Java char array a byte array. + * @param stringBuilder The Java stringbuilder to convert into a byte array + * @return A new byte array + */ + byte[] encode(StringBuilder stringBuilder); + + int estimateDecodeCharLength(byte[] bytes); + + /** + * Decode the byte array to a Java string that is appended to the buffer. + * Implementations of this method will not change any of the byte values + * contained in the byte array. + * @param bytes The array of bytes to decode + * @param buffer The String buffer to append chars to + */ + void decode(byte[] bytes, StringBuilder buffer); + + /** + * Decode the byte array and return a new Java string. + * Implementations of this method will not change any of the byte values + * contained in the byte array. + * @param bytes The array of bytes to decode + * @return A new String with characters decoded from the byte array in + * the given charset. + */ + String decode(byte[] bytes); + + /** + * Normalize the characters of the source string to characters that can be + * represented by this charset. Any characters in the input string that + * cannot be represented by this charset are replaced with a '?' (question + * mark character). + * The default implementation of this method is partially inefficient by + * first encoding the input String to a byte array representing this charset + * followed by decoding the byte array back into a Java String. During this + * double conversion, any characters in the original Java String that don't + * exist in this charset are replaced with '?' (question mark characters) + * and then decoded back into a new Java String. + * Some charsets may choose to override this default behavior to achieve a + * more efficient implementation. + * + * @param stringBuilder The source string to normalize + * @return The normalized string + */ + String normalize(StringBuilder stringBuilder); + +} diff --git a/datastructures-charset/src/main/java/org/xbib/datastructures/charset/CharsetUtil.java b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/CharsetUtil.java new file mode 100644 index 0000000..1719db4 --- /dev/null +++ b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/CharsetUtil.java @@ -0,0 +1,160 @@ +package org.xbib.datastructures.charset; + +/* + * #%L + * ch-commons-charset + * %% + * Copyright (C) 2012 Cloudhopper by Twitter + * %% + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * #L% + */ + +import java.util.HashMap; +import java.util.Map; + +/** + * Utility class for encoding and decoding between Strings and byte arrays. + * + * @author joelauer (twitter: @jjlauer or http://twitter.com/jjlauer) + */ +public class CharsetUtil { + + public static final HashMap charsets; + + public static final String NAME_ISO_8859_1 = "ISO-8859-1"; + public static final String NAME_ISO_8859_15 = "ISO-8859-15"; + public static final String NAME_GSM = "GSM"; + public static final String NAME_PACKED_GSM = "PACKED-GSM"; + public static final String NAME_UCS_2 = "UCS-2"; + public static final String NAME_UCS_2LE = "UCS-2LE"; + public static final String NAME_UTF_8 = "UTF-8"; + /** Modified version of UTF-8 designed mostly for serialization and speed. + The byte arrays it produces is NOT identical to UTF-8 but is safe to use + for Java-to-Java serialization. */ + public static final String NAME_MODIFIED_UTF8 = "MODIFIED-UTF8"; + // special charset for "Airwide SMSCs" that have a unique GSM mapping + public static final String NAME_AIRWIDE_IA5 = "AIRWIDE-IA5"; + // special charset for "Vodafone M2" SMSC that has a unique GSM mapping + public static final String NAME_VFD2_GSM = "VFD2-GSM"; + // special charset for "Vodafone Turkey" SMSC that has a unique GSM mapping + public static final String NAME_VFTR_GSM = "VFTR-GSM"; + /** Alias for "PACKED-GSM" */ + public static final String NAME_GSM7 = "GSM7"; + /** Alias for "GSM" */ + public static final String NAME_GSM8 = "GSM8"; + /** Alias for "AIRWIDE-IA5" */ + public static final String NAME_AIRWIDE_GSM = "AIRWIDE-GSM"; + // special charset for "T-Mobile Netherlands" SMSC that has a unique GSM mapping + public static final String NAME_TMOBILENL_GSM = "TMOBILE-NL-GSM"; + + public static final Charset CHARSET_ISO_8859_1 = new ISO88591Charset(); + public static final Charset CHARSET_ISO_8859_15 = new ISO885915Charset(); + public static final Charset CHARSET_GSM = new GSMCharset(); + public static final Charset CHARSET_PACKED_GSM = new PackedGSMCharset(); + public static final Charset CHARSET_UCS_2 = new UCS2Charset(); + public static final Charset CHARSET_UCS_2LE = new UCS2LECharset(); + public static final Charset CHARSET_UTF_8 = new UTF8Charset(); + /** Modified version of UTF-8 designed mostly for serialization and speed. + The byte arrays it produces is NOT identical to UTF-8 but is safe to use + for Java-to-Java serialization. */ + public static final Charset CHARSET_MODIFIED_UTF8 = new ModifiedUTF8Charset(); + public static final Charset CHARSET_AIRWIDE_IA5 = new AirwideIA5Charset(); + public static final Charset CHARSET_VFD2_GSM = new VFD2GSMCharset(); + public static final Charset CHARSET_VFTR_GSM = new VFTRGSMCharset(); + /** Alias for "PACKED-GSM" */ + public static final Charset CHARSET_GSM7 = CHARSET_PACKED_GSM; + /** Alias for "GSM" */ + public static final Charset CHARSET_GSM8 = CHARSET_GSM; + /** Alias for "AIRWIDE-IA5" */ + public static final Charset CHARSET_AIRWIDE_GSM = CHARSET_AIRWIDE_IA5; + public static final Charset CHARSET_TMOBILENL_GSM = new TMobileNlGSMCharset(); + + static { + charsets = new HashMap(); + charsets.put(NAME_ISO_8859_1, CHARSET_ISO_8859_1); + charsets.put(NAME_ISO_8859_15, CHARSET_ISO_8859_15); + charsets.put(NAME_GSM, CHARSET_GSM); + charsets.put(NAME_MODIFIED_UTF8, CHARSET_MODIFIED_UTF8); + charsets.put(NAME_PACKED_GSM, CHARSET_PACKED_GSM); + charsets.put(NAME_UCS_2, CHARSET_UCS_2); + charsets.put(NAME_UCS_2LE, CHARSET_UCS_2LE); + charsets.put(NAME_UTF_8, CHARSET_UTF_8); + charsets.put(NAME_AIRWIDE_IA5, CHARSET_AIRWIDE_IA5); + charsets.put(NAME_VFD2_GSM, CHARSET_VFD2_GSM); + charsets.put(NAME_VFTR_GSM, CHARSET_VFTR_GSM); + charsets.put(NAME_GSM7, CHARSET_GSM7); + charsets.put(NAME_GSM8, CHARSET_GSM8); + charsets.put(NAME_AIRWIDE_GSM, CHARSET_AIRWIDE_GSM); + charsets.put(NAME_TMOBILENL_GSM, CHARSET_TMOBILENL_GSM); + } + + public static Map getCharsetMap() { + return charsets; + } + + public static Charset map(String charsetName) { + String upperCharsetName = charsetName.toUpperCase(); + return charsets.get(upperCharsetName); + } + + public static byte[] encode(StringBuilder stringBuilder, String charsetName) { + Charset charset = map(charsetName); + if (charset == null) { + return null; + } + return encode(stringBuilder, charset); + } + + static public byte[] encode(StringBuilder stringBuilder, Charset charset) { + return charset.encode(stringBuilder); + } + + static public void decode(byte[] bytes, StringBuilder buffer, String charsetName) { + Charset charset = map(charsetName); + if (charset == null) { + // do nothing + return; + } + decode(bytes, buffer, charset); + } + + static public void decode(byte[] bytes, StringBuilder buffer, Charset charset) { + charset.decode(bytes, buffer); + } + + public static String decode(byte[] bytes, String charsetName) { + Charset charset = map(charsetName); + if (charset == null) { + return null; + } + return charset.decode(bytes); + } + + public static String decode(byte[] bytes, Charset charset) { + return charset.decode(bytes); + } + + public static String normalize(StringBuilder stringBuilder, String charsetName) { + Charset charset = map(charsetName); + if (charset == null) { + throw new IllegalArgumentException("Unsupported charset [" + charsetName + "]"); + } + return normalize(stringBuilder, charset); + } + + public static String normalize(StringBuilder stringBuilder, Charset charset) { + return charset.normalize(stringBuilder); + } + +} diff --git a/datastructures-charset/src/main/java/org/xbib/datastructures/charset/GSMBitPacker.java b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/GSMBitPacker.java new file mode 100644 index 0000000..5d9f5e8 --- /dev/null +++ b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/GSMBitPacker.java @@ -0,0 +1,197 @@ +package org.xbib.datastructures.charset; + +/* + * #%L + * ch-commons-charset + * %% + * Copyright (C) 2012 Cloudhopper by Twitter + * %% + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * #L% + */ + +/** + * Utility for packing and unpacking 8-bit to/from 7-bit byte arrays. + * + * @author joelauer (twitter: @jjlauer or http://twitter.com/jjlauer) + */ +public class GSMBitPacker { + + /** + * Pack a byte array according to the GSM bit-packing algorithm. + * The GSM specification defines a simple compression mechanism for its + * default alphabet to pack more message characters into a smaller space. + * Since the alphabet only contains 128 symbols, each one can be represented + * in 7 bits. The packing algorithm squeezes the bits for each symbol + * "down" into the preceeding byte (so bit 7 of the first byte actually + * contains bit 0 of the second symbol in a default alphabet string, bits + * 6 and 7 in the second byte contain bits 0 and 1 of the third symbol etc.) + * Since the maximum short message length is 140 bytes, you save + * one bit per byte using the default alphabet giving you a total of + * 140 + (140 / 8) = 160 characters to use. This is where the 160 character + * limit comes from in SMPP packets. + *

+ * Having said all that, most SMSCs do NOT use the packing + * algorithm when communicating over TCP/IP. They either use a full + * 8-bit alphabet such as ASCII or Latin-1, or they accept the default + * alphabet in its unpacked form. As such, you will be unlikely to + * need this method. + * + * @param unpacked The unpacked byte array. + * @return A new byte array containing the bytes in their packed form. + */ + static public byte[] pack(byte[] unpacked) { + if (unpacked == null) { + return null; + } + + int packedLen = unpacked.length - (unpacked.length / 8); + //byte[] out = new byte[(int)Math.ceil((unpacked.length * 7) / 8f)]; + byte[] packed = new byte[packedLen]; + + int len = unpacked.length; + int current = 0; + int bitpos = 0; + for (int i = 0; i < len; i++) { + byte b = (byte)(unpacked[i] & 0x7F); // remove top bit + // assign first half of partial bits + packed[current] |= (byte) ((b & 0xFF) << bitpos); + // assign second half of partial bits (if exist) + if (bitpos >= 2) + packed[++current] |= (b >> (8 - bitpos)); + bitpos = (bitpos + 7) % 8; + if (bitpos == 0) + current++; + } + return packed; + } + + /** + static public byte[] pack(byte[] unpacked) { + if (unpacked == null) { + return null; + } + int packedLen = unpacked.length - (unpacked.length / 8); + byte[] packed = new byte[packedLen]; + int pos = 0; + int i = 0; + while (i < unpacked.length) { + int jmax = (i + 7) > unpacked.length ? unpacked.length - i : 7; + int mask = 0x1; + for (int j = 0; j < jmax; j++) { + int b1 = (int) unpacked[i + j] & 0xff; + int b2 = 0x0; + try { + b2 = (int) unpacked[i + j + 1] & mask; + } catch (ArrayIndexOutOfBoundsException x) { + } + packed[pos++] = (byte) ((b1 >>> j) | (b2 << (8 - (j + 1)))); + mask = (mask << 1) | 1; + } + i += 8; + } + return packed; + } + */ + + /** + * Unpack a byte array according to the GSM bit-packing algorithm. + * Read the full description in the documentation of the + * pack method. + * @see #pack(byte[]) + * @param packed The packed byte array. + * @return A new byte array containing the unpacked bytes. + */ + /** + static public byte[] unpack2(byte[] packed) { + if (packed == null) { + return null; + } + int unpackedLen = (packed.length * 8) / 7; + byte[] unpacked = new byte[unpackedLen]; + int pos = 0; + int i = 0; + while (i < packed.length) { + int mask = 0x7f; + int jmax = (i + 8) > packed.length ? (packed.length - i) : 8; + + for (int j = 0; j < jmax; j++) { + int b1 = (int) packed[i + j] & mask; + int b2 = 0x0; + try { + b2 = (int) packed[(i + j) - 1] & 0x00ff; + } catch (ArrayIndexOutOfBoundsException x) { + } + unpacked[pos++] = (byte) ((b1 << j) | (b2 >>> (8 - j))); + mask >>= 1; + } + i += 7; + } + return unpacked; + } + */ + + /** + * Unpack a byte array according to the GSM bit-packing algorithm. + * Read the full description in the documentation of the + * pack method. + * @see #pack(byte[]) + * @param packed The packed byte array. + * @return A new byte array containing the unpacked bytes. + */ + static public byte[] unpack(byte[] packed) { + if (packed == null) { + return null; + } + + int unpackedLen = (packed.length * 8) / 7; + byte[] unpacked = new byte[unpackedLen]; + int len = unpacked.length; + int current = 0; + int bitpos = 0; + for (int i = 0; i < len; i++) { + // remove top bit and assign first half of partial bits + unpacked[i] = (byte)(((packed[current] & 0xFF) >> bitpos) & 0x7F); + // remove top bit and assign second half of partial bits (if exist) + if (bitpos >= 2) + unpacked[i] |= (byte)((packed[++current] << (8 - bitpos)) & 0x7F); + bitpos = (bitpos + 7) % 8; + if (bitpos == 0) + current++; + } + // this fixes an ambiguity bug in the specs + // where the last of 8 packed bytes is 0 + // and it's impossible to distinguish whether it is a + // trailing '@' character (which is mapped to 0) + // or extra zero-bit padding for 7 actual data bytes. + // + // we opt for the latter, since it's far more likely, + // at the cost of losing a trailing '@' character + // in strings whose unpacked size modulo 8 is 0, + // and whose last character is '@'. + // + // an application that wishes to handle this rare case + // properly must disambiguate this case externally, such + // as by obtaining the original string length, and + // appending the trailing '@' if the length + // shows that there is one character missing. + if (len % 8 == 0 && len > 0 && unpacked[len-1] == 0) { + //System.err.println("Hit special case..."); + byte[] fixed = new byte[len-1]; + System.arraycopy(unpacked, 0, fixed, 0, len-1); + unpacked = fixed; + } + return unpacked; + } + +} diff --git a/datastructures-charset/src/main/java/org/xbib/datastructures/charset/GSMCharset.java b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/GSMCharset.java new file mode 100644 index 0000000..31dc584 --- /dev/null +++ b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/GSMCharset.java @@ -0,0 +1,219 @@ +package org.xbib.datastructures.charset; + +import org.xbib.datastructures.common.FastByteArrayOutputStream; +import java.io.IOException; + +/** + * This class encodes and decodes Java Strings to and from the SMS default + * alphabet. It also supports the default extension table. The default alphabet + * and it's extension table is defined in GSM 03.38. + * + */ +public class GSMCharset extends BaseCharset { + + public static final int EXTENDED_ESCAPE = 0x1b; + + public static final char[] CHAR_TABLE = { + '@', '\u00a3', '$', '\u00a5', '\u00e8', '\u00e9', '\u00f9', '\u00ec', + '\u00f2', '\u00c7', '\n', '\u00d8', '\u00f8', '\r', '\u00c5', '\u00e5', + '\u0394', '_', '\u03a6', '\u0393', '\u039b', '\u03a9', '\u03a0', '\u03a8', + '\u03a3', '\u0398', '\u039e', ' ', '\u00c6', '\u00e6', '\u00df', '\u00c9', // 0x1B is actually an escape which we'll encode to a space char + ' ', '!', '"', '#', '\u00a4', '%', '&', '\'', + '(', ')', '*', '+', ',', '-', '.', '/', + '0', '1', '2', '3', '4', '5', '6', '7', + '8', '9', ':', ';', '<', '=', '>', '?', + '\u00a1', 'A', 'B', 'C', 'D', 'E', 'F', 'G', + 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', + 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', + 'X', 'Y', 'Z', '\u00c4', '\u00d6', '\u00d1', '\u00dc', '\u00a7', + '\u00bf', 'a', 'b', 'c', 'd', 'e', 'f', 'g', + 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', + 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', + 'x', 'y', 'z', '\u00e4', '\u00f6', '\u00f1', '\u00fc', '\u00e0', + }; + + /** + * Extended character table. Characters in this table are accessed by the + * 'escape' character in the base table. It is important that none of the + * 'inactive' characters ever be matchable with a valid base-table + * character as this breaks the encoding loop. + * + * @see #EXTENDED_ESCAPE + */ + public static final char[] EXT_CHAR_TABLE = { + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, '\f', 0, 0, 0, 0, 0, + 0, 0, 0, 0, '^', 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + '{', '}', 0, 0, 0, 0, 0, '\\', + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, '[', '~', ']', 0, + '|', 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, '\u20ac', 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + }; + + /** + * Verifies that this charset can represent every character in the Java + * String (char sequence). + * @param str0 The String to verify + * @return True if the charset can represent every character in the Java + * String, otherwise false. + */ + static public boolean canRepresent(CharSequence str0) { + if (str0 == null) { + return true; + } + + int len = str0.length(); + for (int i = 0; i < len; i++) { + // get the char in this string + char c = str0.charAt(i); + // simple range checks for most common characters (0x20 -> 0x5F) or (0x61 -> 0x7E) + if ((c >= ' ' && c <= '_') || (c >= 'a' && c <= '~')) { + continue; + } else { + // 10X more efficient using a switch statement vs. a lookup table search + switch (c) { + case '\u00A3': // £ + case '\u00A5': // ¥ + case '\u00E8': // è + case '\u00E9': // é + case '\u00F9': // ù + case '\u00EC': // ì + case '\u00F2': // ò + case '\u00C7': // Ç + case '\n': // newline + case '\u00D8': // Ø + case '\u00F8': // ø + case '\r': // carriage return + case '\u000c': // form feed + case '\u00C5': // Å + case '\u00E5': // å + case '\u0394': // Δ + case '\u03A6': // Φ + case '\u0393': // Γ + case '\u039B': // Λ + case '\u03A9': // Ω + case '\u03A0': // Π + case '\u03A8': // Ψ + case '\u03A3': // Σ + case '\u0398': // Θ + case '\u039E': // Ξ + case '\u00C6': // Æ + case '\u00E6': // æ + case '\u00DF': // ß + case '\u00C9': // É + case '\u00A4': // ¤ + case '\u00A1': // ¡ + case '\u00C4': // Ä + case '\u00D6': // Ö + case '\u00D1': // Ñ + case '\u00DC': // Ü + case '\u00A7': // § + case '\u00BF': // ¿ + case '\u00E4': // ä + case '\u00F6': // ö + case '\u00F1': // ñ + case '\u00FC': // ü + case '\u00E0': // à + case '\u20AC': // € + continue; + default: + return false; + } + } + } + return true; + } + + @Override + public int estimateEncodeByteLength(StringBuilder stringBuilder) { + if (stringBuilder == null) { + return 0; + } + // only a couple chars are expected to be "double" bytes + return stringBuilder.length() + 10; + } + + @Override + public byte[] encode(StringBuilder stringBuilder) { + if (stringBuilder == null) { + return null; + } + int estimatedByteLength = estimateEncodeByteLength(stringBuilder); + FastByteArrayOutputStream baos = new FastByteArrayOutputStream(estimatedByteLength); + try { + for (int i = 0; i < stringBuilder.length(); i++) { + int search = 0; + char c = stringBuilder.charAt(i); + for (; search < CHAR_TABLE.length; search++) { + if (search == EXTENDED_ESCAPE) { + continue; + } + if (c == CHAR_TABLE[search]) { + baos.write(search); + break; + } + if (c == EXT_CHAR_TABLE[search]) { + baos.write(EXTENDED_ESCAPE); + baos.write(search); + break; + } + } + if (search == CHAR_TABLE.length) { + // A '?' character. + baos.write(0x3f); + } + } + } catch (IOException e) { + // should be an impossible error + throw new RuntimeException("Impossible error with FastByteArrayOutputStream: " + e.getMessage(), e); + } + + return baos.toByteArray(); + + } + + @Override + public int estimateDecodeCharLength(byte[] bytes) { + if (bytes == null) { + return 0; + } + if (bytes.length < 2) { + return bytes.length; + } + // only a couple chars are expected to be "double" bytes + return bytes.length + 10; + } + + /** + * Decode an SMS default alphabet-encoded octet string into a Java String. + */ + @Override + public void decode(byte[] bytes, StringBuilder buffer) { + if (bytes == null) { + // append nothing + return; + } + + char[] table = CHAR_TABLE; + for (int i = 0; i < bytes.length; i++) { + int code = (int)bytes[i] & 0x000000ff; + if (code == EXTENDED_ESCAPE) { + // take next char from extension table + table = EXT_CHAR_TABLE; + } else { + buffer.append((code >= table.length) ? '?' : table[code]); + // go back to the default table + table = CHAR_TABLE; + } + } + } +} diff --git a/datastructures-charset/src/main/java/org/xbib/datastructures/charset/ISO885915Charset.java b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/ISO885915Charset.java new file mode 100644 index 0000000..fffc18d --- /dev/null +++ b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/ISO885915Charset.java @@ -0,0 +1,31 @@ +package org.xbib.datastructures.charset; + +/** + * This class encodes and decodes Java Strings to and from the Latin-9/ISO-8859-15 + * alphabet. + */ +public class ISO885915Charset extends JavaCharset { + + public ISO885915Charset() { + super("ISO-8859-15"); + } + + @Override + public int estimateEncodeByteLength(StringBuilder stringBuilder) { + if (stringBuilder == null) { + return 0; + } + // only 8-bit chars + return stringBuilder.length(); + } + + @Override + public int estimateDecodeCharLength(byte[] bytes) { + if (bytes == null) { + return 0; + } + // only 8-bit chars + return bytes.length; + } + +} diff --git a/datastructures-charset/src/main/java/org/xbib/datastructures/charset/ISO88591Charset.java b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/ISO88591Charset.java new file mode 100644 index 0000000..b03bcac --- /dev/null +++ b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/ISO88591Charset.java @@ -0,0 +1,30 @@ +package org.xbib.datastructures.charset; + +/** + * This class encodes and decodes Java Strings to and from the Latin-1/ISO-8859-1 + * alphabet. + */ +public class ISO88591Charset extends JavaCharset { + + public ISO88591Charset() { + super("ISO-8859-1"); + } + + @Override + public int estimateEncodeByteLength(StringBuilder stringBuilder) { + if (stringBuilder == null) { + return 0; + } + // only 8-bit chars + return stringBuilder.length(); + } + + @Override + public int estimateDecodeCharLength(byte[] bytes) { + if (bytes == null) { + return 0; + } + // only 8-bit chars + return bytes.length; + } +} diff --git a/datastructures-charset/src/main/java/org/xbib/datastructures/charset/JavaCharset.java b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/JavaCharset.java new file mode 100644 index 0000000..a21d7cd --- /dev/null +++ b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/JavaCharset.java @@ -0,0 +1,50 @@ +package org.xbib.datastructures.charset; + +import java.nio.ByteBuffer; +import java.nio.CharBuffer; +import java.nio.charset.UnsupportedCharsetException; + +/** + * Base class for all charset conversions that rely on the internal Java + * String getBytes() methods. + * + */ +public abstract class JavaCharset extends BaseCharset { + + private final java.nio.charset.Charset charset; + + public JavaCharset(String charsetName) { + try { + this.charset = java.nio.charset.Charset.forName(charsetName); + } catch (UnsupportedCharsetException e) { + throw new IllegalArgumentException("Unsupported Java charset [" + charsetName + "]"); + } + } + + @Override + public byte[] encode(StringBuilder stringBuilder) { + if (stringBuilder == null) { + return null; + } + return stringBuilder.toString().getBytes(charset); + } + + @Override + public void decode(byte[] bytes, StringBuilder buffer) { + if (bytes == null) { + return; + } + ByteBuffer byteBuffer = ByteBuffer.wrap(bytes); + CharBuffer charBuffer = charset.decode(byteBuffer); + buffer.append(charBuffer); + } + + @Override + public String decode(byte[] bytes) { + if (bytes == null) { + return null; + } + return new String(bytes, charset); + } + +} diff --git a/datastructures-charset/src/main/java/org/xbib/datastructures/charset/MobileTextUtil.java b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/MobileTextUtil.java new file mode 100644 index 0000000..9419721 --- /dev/null +++ b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/MobileTextUtil.java @@ -0,0 +1,116 @@ +package org.xbib.datastructures.charset; + +/* + * #%L + * ch-commons-charset + * %% + * Copyright (C) 2012 Cloudhopper by Twitter + * %% + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * #L% + */ + +import java.text.Normalizer; + +/** + * Utility class for working with text used on mobile phones (primarily SMS). + * Helpful methods for converting unicode characters into their ascii equivalents + * such as smart quotes to dumb quotes. + * + * @author joelauer (twitter: @jjlauer or http://twitter.com/jjlauer) + */ +public class MobileTextUtil { + + // source-char, replace-char + // http://en.wikipedia.org/wiki/Quotation_mark_glyphs + static public final char[][] CHAR_TABLE = { + { '\u2013', '-' }, + { '\u2014', '-' }, + { '\u2018', '\'' }, + { '\u2019', '\'' }, + { '\u201A', '\'' }, + { '\u201B', '\'' }, // U+201B ‛​ single high-reversed-9 quotation mark (HTML: ‛ ), also called single reversed comma, quotation mark + { '\u201C', '"' }, + { '\u201D', '"' }, + { '\u201E', '"' }, + { '\u201F', '"' }, // U+201F ‟​ double high-reversed-9 quotation mark (HTML: ‟ ), also called double reversed comma, quotation mark + { '\u2020', '+' }, + { '\u2022', '.' }, + { '\u2026', '.' }, // actually "...", but just replacing with "." + { '\u2039', '<' }, + { '\u203A', '>' }, + /** deprecated at recommendation by Turkcell - these replacements changed meaning too much */ + //{ '\u0131', '1' }, // U+0131 is a lower case letter dotless i (ı) + //{ '\u0130', 'i' }, // U+0130 (İ) is capital i with dot + }; + + + /** + * Replace unicode characters with their ascii equivalents, limiting + * replacement to "safe" characters such as smart quotes to dumb quotes. + * "Safe" is subjective, but generally the agreement is that these character + * replacements should not change the meaning of the string in any meaninful + * way. + * + * @param buffer The buffer containing the characters to analyze and replace + * if necessary. + * @return The number of characters replaced + */ + static public int replaceSafeUnicodeChars(StringBuilder buffer) { + int replaced = 0; + for (int i = 0; i < buffer.length(); i++) { + char c = buffer.charAt(i); + for (int j = 0; j < CHAR_TABLE.length; j++) { + if (c == CHAR_TABLE[j][0]) { + replaced++; + buffer.setCharAt(i, CHAR_TABLE[j][1]); + } + } + } + return replaced; + } + + /** + * Replace accented characters with their ascii equivalents. For example, + * convert é to e.

+ * NOTE: This method is not very efficient. The String will be copied + * twice during conversion, so you'll likely only want to run this against + * small strings. + * + * @param buffer The buffer containing the characters to analyze and replace + * if necessary. + * @return The number of characters replaced + */ + public static int replaceAccentedChars(StringBuilder buffer) { + // save the size before we strip out the accents + int sizeBefore = buffer.length(); + // each accented char will be converted into 2 chars -- the ascii version + // followed by the accent character + String s = Normalizer.normalize(buffer, Normalizer.Form.NFD); + // new size will include accented chars + int sizeAfter = s.length(); + // efficiency check #1 - if the length hasn't changed, do nothing + int replaced = sizeAfter - sizeBefore; + if (replaced <= 0) { + return 0; + } + + // replace the accents with nothing + s = s.replaceAll("\\p{InCombiningDiacriticalMarks}+", ""); + buffer.setLength(0); + buffer.append(s); + + return replaced; + } + +} diff --git a/datastructures-charset/src/main/java/org/xbib/datastructures/charset/ModifiedUTF8Charset.java b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/ModifiedUTF8Charset.java new file mode 100644 index 0000000..6794448 --- /dev/null +++ b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/ModifiedUTF8Charset.java @@ -0,0 +1,285 @@ +package org.xbib.datastructures.charset; + +import java.nio.charset.StandardCharsets; + +/** + *

Charset representing "Modified UTF-8". Java originally used 2 byte char + * primitives to store characters in its Strings. These were originally encoded + * in UCS2 -- which let Java natively support ~65K characters in Unicode. In + * Java 5, UCS2 is no longer used -- UTF-16 is now used. This let's Java + * natively support the entire range of Unicode characters which can be > 65K. + * For higher range UTF-16 characters with a Java char value of (> 0x7FFF), this + * charset does NOT correctly encode these values to the correct UTF-8 byte + * sequence.

+ * + *

Its usually quite uncommon in most situations to actually use a character + * value > 0x7FFF. This is why this charset exists -- it takes advantage of this + * property to speed up UTF-8 encoding/decoding of byte arrays. If you decide + * to solely use this charset for serialization, you also don't risk any issues + * with encoding/decoding since the resulting Java String will always be the same + * as if you actually used UTF-8.

+ * + *

This charset turns out to be very useful for directly encoding/decoding from + * byte arrays (especially if the byte array is already allocated), where the + * default Java classes would force you to create a new byte array. It also + * is ~30% faster than Java at decoding/encoding in most cases. In some cases + * it's a little slower. On average though it usually matches Java and has + * a good chance at being much faster during decoding.

+ * + *

This charset is originally based on much of the work in DataOuputStream.java + * and DataInputStream.java with a few notable tweaks: + *

    + *
  • 0x0000 is encoded as 0x00 rather than DataOutputStreams 2 byte version. + * This is identical to how UTF-8 is actually supposed to work
  • + *
  • CharSequenceAccessor utility class uses reflection to access the + * private fields in String.java to reduce copying of char arrays.
  • + *
  • CharSequenceAccessor utility class uses reflection to access the + * private fields in String.java to directly access the underlying + * char array vs. ever calling charAt.
  • + *
+ *

+ * + */ +public class ModifiedUTF8Charset extends BaseCharset { + + public ModifiedUTF8Charset() { + // do nothing + } + + @Override + public int estimateEncodeByteLength(StringBuilder stringBuilder) { + return calculateByteLength(stringBuilder); + } + + @Override + public int estimateDecodeCharLength(byte[] bytes) { + if (bytes == null) { + return 0; + } + return bytes.length; + } + + @Override + public byte[] encode(StringBuilder stringBuilder) { + if (stringBuilder == null) { + return null; + } + // expensive, standard method by copying the data + return stringBuilder.toString().getBytes(StandardCharsets.UTF_8); + } + + @Override + public void decode(byte[] bytes, StringBuilder buffer) { + if (bytes == null) { + return; + } + // standard method by copying the data + buffer.append(new String(bytes, StandardCharsets.UTF_8)); + } + + @Override + public String decode(byte[] bytes) { + if (bytes == null) { + return null; + } + return new String(bytes, StandardCharsets.UTF_8); + } + + public String decode(byte[] bytes, int offset, int length) { + if (bytes == null) { + return null; + } + return new String(bytes, offset, length, StandardCharsets.UTF_8); + } + + /** + * Highly efficient method for calculating the byte length of + * a String if it was encoded as modified UTF-8 bytes. Since no byte array + * is allocated just for calculating the byte length, this method can speed up + * checks by 90% vs. something like s.getBytes("UTF8").length. This method + * is adapted from JDK source code for DataOutputStream.java. + * @param charSeq The character sequence to use for encoding. + * @return The number of bytes required to represent the String as modified + * UTF-8 encoded bytes. + */ + public static int calculateByteLength(CharSequence charSeq) { + return calculateByteLength(charSeq, null, 0, 0); + } + + /** + * Highly efficient method for calculating the byte length of + * a String if it was encoded as modified UTF-8 bytes. Since no byte array + * is allocated just for calculating the byte length, this method can speed up + * checks by 90% vs. something like s.getBytes("UTF8").length. This method + * is adapted from JDK source code for DataOutputStream.java. + * @param charSeq The optional character sequence to use for encoding rather + * than the provided character buffer. It is always higher performance + * to supply a char array vs. use a CharSequence. Set to null if the + * character array is supplied. + * @param charBuffer The source char array to encode + * @param charOffset The offset in the source char array to start encode from + * @param charLength The length from the offset in the source char array to encode + * @return The number of bytes required to represent the String as modified + * UTF-8 encoded bytes. + */ + public static int calculateByteLength(CharSequence charSeq, char[] charBuffer, int charOffset, int charLength) { + int c = 0; + int byteLength = 0; + int charPos = charOffset; // start at char offset + int charAbsLength = charPos + charLength; + + if (charBuffer == null) { + if (charSeq == null) { + return 0; + } + // use charSequence rather than charBuffer + charOffset = 0; + charAbsLength = charSeq.length(); + } + + for (; charPos < charAbsLength; charPos++) { + // optimized method for getting char to encode + if (charBuffer != null) { + c = charBuffer[charPos]; + } else { + c = charSeq.charAt(charPos); + } + if ((c >= 0x0000) && (c <= 0x007F)) { + byteLength++; + } else if (c > 0x07FF) { + byteLength += 3; + } else { + byteLength += 2; + } + } + return byteLength; + } + + /** + * Encode the string to an array of UTF-8 bytes. The buffer must be pre-allocated + * and have enough space to hold the encoded string. + * @param charSeq The optional character sequence to use for encoding rather + * than the provided character buffer. It is always higher performance + * to supply a char array vs. use a CharSequence. Set to null if the + * character array is supplied. + * @param charBuffer The source char array to encode + * @param charOffset The offset in the source char array to start encode from + * @param charLength The length from the offset in the source char array to encode + * @param byteBuffer The destination byte array to encode to + * @param byteOffset The offset in the destination byte array to start encode to + * @return The number of bytes written to the destination byte array + * @see #calculateByteLength(CharSequence) + */ + public static int encodeToByteArray(CharSequence charSeq, char[] charBuffer, int charOffset, int charLength, byte[] byteBuffer, int byteOffset) { + int c = 0; + int bytePos = byteOffset; // start at byte offset + int charPos = charOffset; // start at char offset + int charAbsLength = charPos + charLength; + + if (charBuffer == null) { + if (charSeq == null) { + throw new IllegalArgumentException("Both charSeq and charBuffer cannot be null"); + } + // use charSequence rather than charBuffer + charOffset = 0; + charAbsLength = charSeq.length(); + } + + // optimized method is only ascii chars used + for (; charPos < charAbsLength; charPos++) { + // optimized method for getting char to encode + if (charBuffer != null) { + c = charBuffer[charPos]; + } else { + c = charSeq.charAt(charPos); + } + if (!(c <= 0x007F)) + break; + byteBuffer[bytePos++] = (byte) c; + } + + for (; charPos < charAbsLength; charPos++) { + // optimized method for getting char to encode + if (charBuffer != null) { + c = charBuffer[charPos]; + } else { + c = charSeq.charAt(charPos); + } + if (c <= 0x007F) { + byteBuffer[bytePos++] = (byte) c; + } else if (c > 0x07FF) { + byteBuffer[bytePos++] = (byte) (0xE0 | ((c >> 12) & 0x0F)); + byteBuffer[bytePos++] = (byte) (0x80 | ((c >> 6) & 0x3F)); + byteBuffer[bytePos++] = (byte) (0x80 | (c & 0x3F)); + } else { + byteBuffer[bytePos++] = (byte) (0xC0 | ((c >> 6) & 0x1F)); + byteBuffer[bytePos++] = (byte) (0x80 | (c & 0x3F)); + } + } + + return (bytePos-byteOffset); + } + + public static int decodeToCharArray(byte[] byteBuffer, int byteOffset, int byteLength, char[] charBuffer, int charOffset) { + int c = 0, char2 = 0, char3 = 0; + int bytePos = byteOffset; + int byteAbsLength = byteOffset + byteLength; + int charPos = charOffset; + // optimization - do simple conversion of ascii-only chars + while (bytePos < byteAbsLength) { + c = (int) byteBuffer[bytePos] & 0xff; + if (c > 127) { + break; + } + bytePos++; + charBuffer[charPos++] = (char)c; + } + while (bytePos < byteAbsLength) { + c = (int) byteBuffer[bytePos] & 0xff; + switch (c >> 4) { + // cases 0000 thru 0111 + case 0: + case 1: + case 2: + case 3: + case 4: + case 5: + case 6: + case 7: + // 0xxxxxxx + bytePos++; + charBuffer[charPos++] = (char)c; + break; + // why not case 8, 9, 10, or 11? (are those invalid UTF-8 sequences? + case 12: + case 13: + // 110x xxxx then 10xx xxxx + bytePos += 2; + if (bytePos > byteAbsLength) + throw new IllegalArgumentException("malformed input: partial character at end"); + char2 = (int) byteBuffer[bytePos - 1]; + if ((char2 & 0xC0) != 0x80) + throw new IllegalArgumentException("malformed input around byte " + bytePos); + charBuffer[charPos++] = (char) (((c & 0x1F) << 6) | (char2 & 0x3F)); + break; + case 14: + // 1110 xxxx then 10xx xxxx then 10xx xxxx + bytePos += 3; + if (bytePos > byteAbsLength) + throw new IllegalArgumentException("malformed input: partial character at end"); + char2 = (int) byteBuffer[bytePos - 2]; + char3 = (int) byteBuffer[bytePos - 1]; + if (((char2 & 0xC0) != 0x80) + || ((char3 & 0xC0) != 0x80)) + throw new IllegalArgumentException("malformed input around byte " + (bytePos - 1)); + charBuffer[charPos++] = (char) (((c & 0x0F) << 12) + | ((char2 & 0x3F) << 6) | (char3 & 0x3F)); + break; + default: + // 10xx xxxx, 1111 xxxx + throw new IllegalArgumentException("malformed input around byte " + bytePos); + } + } + return (charPos - charOffset); + } +} diff --git a/datastructures-charset/src/main/java/org/xbib/datastructures/charset/PackedGSMCharset.java b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/PackedGSMCharset.java new file mode 100644 index 0000000..93ece81 --- /dev/null +++ b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/PackedGSMCharset.java @@ -0,0 +1,23 @@ +package org.xbib.datastructures.charset; + +/** + * The PackedGSMCharset class handles the encoding and decoding of the + * GSM default encoding charset, with packing as per GSM 03.38 spec. + * + * The encoding and decoding are based on the mapping at + * http://www.unicode.org/Public/MAPPINGS/ETSI/GSM0338.TXT + */ +public class PackedGSMCharset extends GSMCharset { + + @Override + public byte[] encode(StringBuilder stringBuilder) { + byte[] unpacked = super.encode(stringBuilder); + return GSMBitPacker.pack(unpacked); + } + + @Override + public void decode(byte[] bytes, StringBuilder buffer) { + byte[] unpacked = GSMBitPacker.unpack(bytes); + super.decode(unpacked, buffer); + } +} diff --git a/datastructures-charset/src/main/java/org/xbib/datastructures/charset/TMobileNlGSMCharset.java b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/TMobileNlGSMCharset.java new file mode 100644 index 0000000..fe7ed6c --- /dev/null +++ b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/TMobileNlGSMCharset.java @@ -0,0 +1,146 @@ +package org.xbib.datastructures.charset; + +import org.xbib.datastructures.common.FastByteArrayOutputStream; +import java.io.IOException; + +/** + * The TmobileNlGSMCharset class handles a charset unique to the "T-Mobile Netherlands" + * SMSC vendor. + * T-Mobile is basically GSM, but they only support one of the characters from the + * extended table, and they encode it differently (when encoded to hex string) + */ +public class TMobileNlGSMCharset extends GSMCharset { + + static final int TMO_EURO_BYTE = 0x80; + static final char EURO_MARK = '\u20AC'; + + /** + * Verifies that this charset can represent every character in the Java + * String (char sequence). + * @param str0 The String to verify + * @return True if the charset can represent every character in the Java + * String, otherwise false. + */ + public static boolean canRepresent(CharSequence str0) { + if (str0 == null) { + return true; + } + int len = str0.length(); + for (int i = 0; i < len; i++) { + // get the char in this string + char c = str0.charAt(i); + // simple range checks for most common characters (0x20 -> 0x5A) or (0x61 -> 0x7A) + if ((c >= ' ' && c <= 'Z') || (c >= 'a' && c <= 'z')) { + } else { + // 10X more efficient using a switch statement vs. a lookup table search + switch (c) { + case '_': + case '\u00A3': // £ + case '\u00A5': // ¥ + case '\u00E8': // è + case '\u00E9': // é + case '\u00F9': // ù + case '\u00EC': // ì + case '\u00F2': // ò + case '\u00C7': // Ç + case '\n': // newline + case '\u00D8': // Ø + case '\u00F8': // ø + case '\r': // carriage return + case '\u00C5': // Å + case '\u00E5': // å + case '\u0394': // Δ + case '\u03A6': // Φ + case '\u0393': // Γ + case '\u039B': // Λ + case '\u03A9': // Ω + case '\u03A0': // Π + case '\u03A8': // Ψ + case '\u03A3': // Σ + case '\u0398': // Θ + case '\u039E': // Ξ + case '\u00C6': // Æ + case '\u00E6': // æ + case '\u00DF': // ß + case '\u00C9': // É + case '\u00A4': // ¤ + case '\u00A1': // ¡ + case '\u00C4': // Ä + case '\u00D6': // Ö + case '\u00D1': // Ñ + case '\u00DC': // Ü + case '\u00A7': // § + case '\u00BF': // ¿ + case '\u00E4': // ä + case '\u00F6': // ö + case '\u00F1': // ñ + case '\u00FC': // ü + case '\u00E0': // à + case '\u20AC': // € + continue; + default: + return false; + } + } + } + return true; + } + + + @Override + public byte[] encode(StringBuilder stringBuilder) { + if (stringBuilder == null) { + return null; + } + // T-Mo-NL doesn't use multi-byte encoding, so encoded length = input length + FastByteArrayOutputStream baos = new FastByteArrayOutputStream(stringBuilder.length()); + try { + for (int i = 0; i < stringBuilder.length(); i++) { + int search = 0; + char c = stringBuilder.charAt(i); + // T-Mo-NL's one extended char is Euro mark, encoded as 0x80 + if (c == EURO_MARK) + baos.write(TMO_EURO_BYTE); + else { + for (; search < CHAR_TABLE.length; search++) { + if (search == EXTENDED_ESCAPE) { + continue; + } + + if (c == CHAR_TABLE[search]) { + baos.write(search); + break; + } + } + if (search == CHAR_TABLE.length) { + // A '?' character. + baos.write(0x3f); + } + } + } + } catch (IOException e) { + // should be an impossible error + throw new RuntimeException("Impossible error with FastByteArrayOutputStream: " + e.getMessage(), e); + } + + return baos.toByteArray(); + } + + @Override + public void decode(byte[] bytes, StringBuilder buffer) { + if (bytes == null) { + // append nothing + return; + } + char[] table = CHAR_TABLE; + for (byte aByte : bytes) { + int code = (int) aByte & 0x000000ff; + if (code == TMO_EURO_BYTE) { + buffer.append(EURO_MARK); + } else { + buffer.append((code >= table.length) ? '?' : table[code]); + } + } + } + +} diff --git a/datastructures-charset/src/main/java/org/xbib/datastructures/charset/UCS2Charset.java b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/UCS2Charset.java new file mode 100644 index 0000000..3e99222 --- /dev/null +++ b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/UCS2Charset.java @@ -0,0 +1,33 @@ +package org.xbib.datastructures.charset; + +/** + * Charset for UCS2 (ISO-10646-UCS-2 in Java). + */ +public class UCS2Charset extends JavaCharset { + + public UCS2Charset() { + super("ISO-10646-UCS-2"); + } + + @Override + public int estimateEncodeByteLength(StringBuilder stringBuilder) { + if (stringBuilder == null) { + return 0; + } + // let's double the estimate + return stringBuilder.length() * 2; + } + + @Override + public int estimateDecodeCharLength(byte[] bytes) { + if (bytes == null) { + return 0; + } + if (bytes.length % 2 == 0) { + return bytes.length / 2; + } else { + return (bytes.length / 2) + 1; + } + } + +} diff --git a/datastructures-charset/src/main/java/org/xbib/datastructures/charset/UCS2LECharset.java b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/UCS2LECharset.java new file mode 100644 index 0000000..0dade80 --- /dev/null +++ b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/UCS2LECharset.java @@ -0,0 +1,38 @@ +package org.xbib.datastructures.charset; + +import java.nio.ByteBuffer; +import java.nio.ByteOrder; + +/** + * Charset for UCS2LE (ISO-10646-UCS-2 in Java converted to Little Endian). + */ +public class UCS2LECharset extends UCS2Charset { + + @Override + public byte[] encode(StringBuilder stringBuilder) { + return getLittleEndianBytes(super.encode(stringBuilder)); + } + + @Override + public void decode(byte[] bytes, StringBuilder buffer) { + super.decode(getLittleEndianBytes(bytes), buffer); + } + + @Override + public String decode(byte[] bytes) { + return super.decode(getLittleEndianBytes(bytes)); + } + + private byte[] getLittleEndianBytes(byte [] bytes) { + if (bytes == null) { + return null; + } + ByteBuffer sourceByteBuffer = ByteBuffer.wrap(bytes); + ByteBuffer destByteBuffer = ByteBuffer.allocate(bytes.length); + destByteBuffer.order(ByteOrder.LITTLE_ENDIAN); + while(sourceByteBuffer.hasRemaining()) { + destByteBuffer.putShort(sourceByteBuffer.getShort()); + } + return destByteBuffer.array(); + } +} diff --git a/datastructures-charset/src/main/java/org/xbib/datastructures/charset/UTF8Charset.java b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/UTF8Charset.java new file mode 100644 index 0000000..30daf58 --- /dev/null +++ b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/UTF8Charset.java @@ -0,0 +1,39 @@ +package org.xbib.datastructures.charset; + +/** + * Charset for UTF-8. + * + */ +public class UTF8Charset extends JavaCharset { + + public UTF8Charset() { + super("UTF8"); + } + + @Override + public int estimateEncodeByteLength(StringBuilder stringBuilder) { + if (stringBuilder == null) { + return 0; + } + return stringBuilder.length() * 2; + } + + @Override + public int estimateDecodeCharLength(byte[] bytes) { + if (bytes == null) { + return 0; + } + return bytes.length; + } + + /** + * Does not actually calculate a proper UTF-8 length, but rather a Modified + * UTF-8 byte length. It normally matches a real UTF-8 encoding but isn't + * technically completely valid. + * @deprecated + */ + @Deprecated + public static int calculateByteLength(final String s) { + return ModifiedUTF8Charset.calculateByteLength(s); + } +} diff --git a/datastructures-charset/src/main/java/org/xbib/datastructures/charset/VFD2GSMCharset.java b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/VFD2GSMCharset.java new file mode 100644 index 0000000..e105e7c --- /dev/null +++ b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/VFD2GSMCharset.java @@ -0,0 +1,64 @@ +package org.xbib.datastructures.charset; + +import java.util.Arrays; + +/** + * The VFD2GSMCharset class is mostly based on standard GSM charset, but + * just a few chars (@, German chars) use different byte values. + * + * The SMSC uses the German National changes Replacement Codes (NRCs, s. ISO 21 + * German) for the representation of the characters ä, Ä, ö, Ö, ü, Ü, ß, §. + * Also, the @ char is encoded strange. + * + * NOTE: This charset was only for MT (application -> mobile). Vodafone-D2 has + * an entirely different charset for MO (mobile -> application). + */ +public class VFD2GSMCharset extends GSMCharset { + + private static final int GSM_COL = 0; + private static final int VFD2_COL = 1; + private static final byte[][] VFD2_OVERRIDE_TABLE = { + { (byte)0x00, (byte)0x40 }, // @ + { (byte)0x02, (byte)0x24 }, // $ + { (byte)0x1E, (byte)0x7E }, // ß + { (byte)0x24, (byte)0x02 }, // ¤ + { (byte)0x40, (byte)0xA1 }, // ¡ + { (byte)0x5D, (byte)0x5F }, // Ñ + { (byte)0x5E, (byte)0x5D }, // Ü + { (byte)0x5F, (byte)0x5E }, // § + { (byte)0x7D, (byte)0x1E }, // ñ + { (byte)0x7E, (byte)0x7D }, // ü + }; + + @Override + public byte[] encode(StringBuilder stringBuilder) { + byte[] gsmBytes = super.encode(stringBuilder); + for (int i = 0; i < gsmBytes.length; i++) { + for (byte[] bytes : VFD2_OVERRIDE_TABLE) { + if (gsmBytes[i] == bytes[GSM_COL]) { + gsmBytes[i] = bytes[VFD2_COL]; + break; + } + } + } + return gsmBytes; + } + + @Override + public void decode(byte[] bytes, StringBuilder buffer) { + int length = (bytes == null ? 0 : bytes.length); + byte[] bytes2 = null; + for (int i = 0; i < length; i++) { + for (byte[] value : VFD2_OVERRIDE_TABLE) { + if (bytes[i] == value[VFD2_COL]) { + if (bytes2 == null) { + bytes2 = Arrays.copyOf(bytes, bytes.length); + } + bytes2[i] = value[GSM_COL]; + break; + } + } + } + super.decode((bytes2 == null ? bytes : bytes2), buffer); + } +} diff --git a/datastructures-charset/src/main/java/org/xbib/datastructures/charset/VFTRGSMCharset.java b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/VFTRGSMCharset.java new file mode 100644 index 0000000..2b92253 --- /dev/null +++ b/datastructures-charset/src/main/java/org/xbib/datastructures/charset/VFTRGSMCharset.java @@ -0,0 +1,79 @@ +package org.xbib.datastructures.charset; + +import java.util.Arrays; + +/** + * The VFTRGSMCharset class is mostly based on Latin-1, but mixed almost + * equally with the GSM default charset. + */ +public class VFTRGSMCharset extends GSMCharset { + + private static final int GSM_COL = 0; + private static final int VFTR_COL = 1; + private static final byte[][] VFTR_OVERRIDE_TABLE = { + { (byte)0x02, (byte)0x24 }, // $ + { (byte)0x00, (byte)0x40 }, // @ + { (byte)0x11, (byte)0x5F }, // _ + { (byte)0x40, (byte)0xA1 }, // ¡ + { (byte)0x01, (byte)0xA3 }, // £ + { (byte)0x24, (byte)0xA4 }, // ¤ + { (byte)0x03, (byte)0xA5 }, // ¥ + { (byte)0x5F, (byte)0xA7 }, // § + { (byte)0x60, (byte)0xBF }, // ¿ + { (byte)0x5B, (byte)0xC4 }, // Ä + { (byte)0x0E, (byte)0xC5 }, // Å + { (byte)0x1C, (byte)0xC6 }, // Æ + { (byte)0x09, (byte)0xC7 }, // Ç + { (byte)0x1F, (byte)0xC9 }, // É + { (byte)0x5D, (byte)0xD1 }, // Ñ + { (byte)0x5C, (byte)0xD6 }, // Ö + { (byte)0x0B, (byte)0xD8 }, // Ø + { (byte)0x5E, (byte)0xDC }, // Ü + { (byte)0x1E, (byte)0xDF }, // ß + { (byte)0x7F, (byte)0xE0 }, // à + { (byte)0x7B, (byte)0xE4 }, // ä + { (byte)0x0F, (byte)0xE5 }, // å + { (byte)0x1D, (byte)0xE6 }, // æ + { (byte)0x04, (byte)0xE8 }, // è + { (byte)0x05, (byte)0xE9 }, // é + { (byte)0x07, (byte)0xEC }, // ì + { (byte)0x7D, (byte)0xF1 }, // ñ + { (byte)0x08, (byte)0xF2 }, // ò + { (byte)0x7C, (byte)0xF6 }, // ö + { (byte)0x0C, (byte)0xF8 }, // ø + { (byte)0x06, (byte)0xF9 }, // ù + { (byte)0x7E, (byte)0xFC }, // ü + { (byte)0x10, (byte)0x7F }, // Δ + }; + + @Override + public byte[] encode(StringBuilder stringBuilder) { + byte[] gsmBytes = super.encode(stringBuilder); + for (int i = 0; i < gsmBytes.length; i++) { + for (byte[] bytes : VFTR_OVERRIDE_TABLE) { + if (gsmBytes[i] == bytes[GSM_COL]) { + gsmBytes[i] = bytes[VFTR_COL]; + } + } + } + return gsmBytes; + } + + @Override + public void decode(byte[] bytes, StringBuilder buffer) { + int length = (bytes == null ? 0 : bytes.length); + byte[] bytes2 = null; + for (int i = 0; i < length; i++) { + for (byte[] value : VFTR_OVERRIDE_TABLE) { + if (bytes[i] == value[VFTR_COL]) { + if (bytes2 == null) { + bytes2 = Arrays.copyOf(bytes, bytes.length); + } + bytes2[i] = value[GSM_COL]; + break; + } + } + } + super.decode((bytes2 == null ? bytes : bytes2), buffer); + } +} diff --git a/datastructures-charset/src/test/java/org/xbib/datastructures/charset/CharsetUtilTest.java b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/CharsetUtilTest.java new file mode 100644 index 0000000..e657c04 --- /dev/null +++ b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/CharsetUtilTest.java @@ -0,0 +1,463 @@ +package org.xbib.datastructures.charset; + +import static org.junit.jupiter.api.Assertions.assertArrayEquals; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNull; +import org.xbib.datastructures.charset.util.Hex; +import org.junit.jupiter.api.Test; +import java.nio.charset.StandardCharsets; +import java.util.Arrays; +import java.util.Map; +import java.util.logging.Logger; + +public class CharsetUtilTest { + private static final Logger logger = Logger.getLogger(CharsetUtilTest.class.getName()); + + @Test + public void encode() throws Exception { + // euro currency symbol + StringBuilder str0 = new StringBuilder("\u20ac"); + byte[] bytes = null; + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_GSM); + assertArrayEquals(Hex.hexToByteArray("1B65"), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_PACKED_GSM); + assertArrayEquals(Hex.hexToByteArray("9B32"), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_UCS_2); + assertArrayEquals(Hex.hexToByteArray("20AC"), bytes); + assertArrayEquals(str0.toString().getBytes(StandardCharsets.UTF_16BE), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_UCS_2LE); + assertArrayEquals(Hex.hexToByteArray("AC20"), bytes); + assertArrayEquals(str0.toString().getBytes("UTF-16LE"), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_UTF_8); + assertArrayEquals(Hex.hexToByteArray("E282AC"), bytes); + assertArrayEquals(str0.toString().getBytes("UTF-8"), bytes); + + // latin-1 doesn't contain the euro symbol - replace with '?' + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_ISO_8859_1); + assertArrayEquals(Hex.hexToByteArray("3F"), bytes); + assertArrayEquals(str0.toString().getBytes("ISO-8859-1"), bytes); + + // latin-9 does contain the euro symbol + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_ISO_8859_15); + assertArrayEquals(Hex.hexToByteArray("A4"), bytes); + assertArrayEquals(str0.toString().getBytes("ISO-8859-15"), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_AIRWIDE_IA5); + assertArrayEquals(Hex.hexToByteArray("1B65"), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_VFD2_GSM); + assertArrayEquals(Hex.hexToByteArray("1B65"), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_VFTR_GSM); + assertArrayEquals(Hex.hexToByteArray("1B65"), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_TMOBILENL_GSM); + assertArrayEquals(Hex.hexToByteArray("80"), bytes); + + + // longer string with @ symbol in-between + str0 = new StringBuilder("Hello @ World"); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_GSM); + //logger.debug(HexUtil.toHexString(bytes)); + assertArrayEquals(Hex.hexToByteArray("48656C6C6F200020576F726C64"), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_PACKED_GSM); + //logger.debug(HexUtil.toHexString(bytes)); + assertArrayEquals(Hex.hexToByteArray("C8329BFD060140D7B79C4D06"), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_UCS_2); + //logger.debug(HexUtil.toHexString(bytes)); + assertArrayEquals(Hex.hexToByteArray("00480065006C006C006F0020004000200057006F0072006C0064"), bytes); + assertArrayEquals(str0.toString().getBytes(StandardCharsets.UTF_16BE), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_UCS_2LE); + //logger.debug(HexUtil.toHexString(bytes)); + assertArrayEquals(Hex.hexToByteArray("480065006C006C006F0020004000200057006F0072006C006400"), bytes); + assertArrayEquals(str0.toString().getBytes(StandardCharsets.UTF_16LE), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_UTF_8); + //logger.debug(HexUtil.toHexString(bytes)); + assertArrayEquals(Hex.hexToByteArray("48656C6C6F204020576F726C64"), bytes); + assertArrayEquals(str0.toString().getBytes(StandardCharsets.UTF_8), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_ISO_8859_1); + assertArrayEquals(Hex.hexToByteArray("48656C6C6F204020576F726C64"), bytes); + assertArrayEquals(str0.toString().getBytes(StandardCharsets.ISO_8859_1), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_ISO_8859_15); + assertArrayEquals(Hex.hexToByteArray("48656C6C6F204020576F726C64"), bytes); + assertArrayEquals(str0.toString().getBytes("ISO-8859-15"), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_AIRWIDE_IA5); + assertArrayEquals(Hex.hexToByteArray("48656C6C6F200020576F726C64"), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_VFD2_GSM); + //logger.debug(HexUtil.toHexString(bytes)); + assertArrayEquals(Hex.hexToByteArray("48656C6C6F204020576F726C64"), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_VFTR_GSM); + //logger.debug(HexUtil.toHexString(bytes)); + assertArrayEquals(Hex.hexToByteArray("48656C6C6F204020576F726C64"), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_TMOBILENL_GSM); + //logger.debug(HexUtil.toHexString(bytes)); + assertArrayEquals(Hex.hexToByteArray("48656C6C6F200020576F726C64"), bytes); + + + // longer string with @ symbol in-between + str0 = new StringBuilder("JoeyBlue"); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_GSM); + //logger.debug(HexUtil.toHexString(bytes)); + assertArrayEquals(Hex.hexToByteArray("4A6F6579426C7565"), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_PACKED_GSM); + //logger.debug(HexUtil.toHexString(bytes)); + assertArrayEquals(Hex.hexToByteArray("CA77392F64D7CB"), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_UCS_2); + //logger.debug(HexUtil.toHexString(bytes)); + assertArrayEquals(Hex.hexToByteArray("004A006F006500790042006C00750065"), bytes); + assertArrayEquals(str0.toString().getBytes(StandardCharsets.UTF_16BE), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_UCS_2LE); + //logger.debug(HexUtil.toHexString(bytes)); + assertArrayEquals(Hex.hexToByteArray("4A006F006500790042006C0075006500"), bytes); + assertArrayEquals(str0.toString().getBytes(StandardCharsets.UTF_16LE), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_UTF_8); + //logger.debug(HexUtil.toHexString(bytes)); + assertArrayEquals(Hex.hexToByteArray("4A6F6579426C7565"), bytes); + assertArrayEquals(str0.toString().getBytes(StandardCharsets.UTF_8), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_ISO_8859_1); + assertArrayEquals(Hex.hexToByteArray("4A6F6579426C7565"), bytes); + assertArrayEquals(str0.toString().getBytes(StandardCharsets.ISO_8859_1), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_ISO_8859_15); + assertArrayEquals(Hex.hexToByteArray("4A6F6579426C7565"), bytes); + assertArrayEquals(str0.toString().getBytes("ISO-8859-15"), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_AIRWIDE_IA5); + assertArrayEquals(Hex.hexToByteArray("4A6F6579426C7565"), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_VFD2_GSM); + assertArrayEquals(Hex.hexToByteArray("4A6F6579426C7565"), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_VFTR_GSM); + assertArrayEquals(Hex.hexToByteArray("4A6F6579426C7565"), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_TMOBILENL_GSM); + assertArrayEquals(Hex.hexToByteArray("4A6F6579426C7565"), bytes); + + + // longer string with @ symbol in-between + str0 = new StringBuilder("{}[]$"); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_GSM); + //logger.debug(HexUtil.toHexString(bytes)); + assertArrayEquals(Hex.hexToByteArray("1B281B291B3C1B3E02"), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_PACKED_GSM); + //logger.debug(HexUtil.toHexString(bytes)); + assertArrayEquals(Hex.hexToByteArray("1BD426B5E16D7C02"), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_UCS_2); + //logger.debug(HexUtil.toHexString(bytes)); + assertArrayEquals(Hex.hexToByteArray("007B007D005B005D0024"), bytes); + assertArrayEquals(str0.toString().getBytes(StandardCharsets.UTF_16BE), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_UCS_2LE); + //logger.debug(HexUtil.toHexString(bytes)); + assertArrayEquals(Hex.hexToByteArray("7B007D005B005D002400"), bytes); + assertArrayEquals(str0.toString().getBytes(StandardCharsets.UTF_16LE), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_UTF_8); + //logger.debug(HexUtil.toHexString(bytes)); + assertArrayEquals(Hex.hexToByteArray("7B7D5B5D24"), bytes); + assertArrayEquals(str0.toString().getBytes(StandardCharsets.UTF_8), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_ISO_8859_1); + assertArrayEquals(Hex.hexToByteArray("7B7D5B5D24"), bytes); + assertArrayEquals(str0.toString().getBytes(StandardCharsets.ISO_8859_1), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_ISO_8859_15); + assertArrayEquals(Hex.hexToByteArray("7B7D5B5D24"), bytes); + assertArrayEquals(str0.toString().getBytes("ISO-8859-15"), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_AIRWIDE_IA5); + assertArrayEquals(Hex.hexToByteArray("1B281B291B3C1B3E02"), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_VFD2_GSM); + assertArrayEquals(Hex.hexToByteArray("1B281B291B3C1B3E24"), bytes); + + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_VFTR_GSM); + assertArrayEquals(Hex.hexToByteArray("1B281B291B3C1B3E24"), bytes); + + // {}[] not supported + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_TMOBILENL_GSM); + assertArrayEquals(Hex.hexToByteArray("3F3F3F3F02"), bytes); + + // chars specifically to vodafone-turkey + //str0 = "$@£¤¥§ÄÅßñΓΔΘΩ€"; + str0 = new StringBuilder("$@\u00a3\u00a4\u00a5\u00a7\u00c4\u00c5\u00df\u00f1\u0393\u0394\u0398\u03a9\u20ac"); + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_VFTR_GSM); + assertArrayEquals(Hex.hexToByteArray("2440A3A4A5A7C4C5DFF1137F19151B65"), bytes); + + // form feed is an escape code in GSM + str0 = new StringBuilder("\f\f"); + bytes = CharsetUtil.encode(str0, CharsetUtil.CHARSET_GSM); + assertArrayEquals(Hex.hexToByteArray("1B0A1B0A"), bytes); + } + + @Test + public void decode() throws Exception { + // euro currency symbol + String str0 = "\u20ac"; + String str1 = null; + + str1 = CharsetUtil.decode(Hex.hexToByteArray("1B65"), CharsetUtil.CHARSET_GSM); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("9B32"), CharsetUtil.CHARSET_PACKED_GSM); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("20AC"), CharsetUtil.CHARSET_UCS_2); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("E282AC"), CharsetUtil.CHARSET_UTF_8); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("1B65"), CharsetUtil.CHARSET_AIRWIDE_IA5); + assertEquals(str0, str1); + + // latin-1 doesn't contain the euro symbol - replace with '?' + //str1 = CharsetUtil.decode(Hex.hexToByteArray("3F"), CharsetUtil.CHARSET_ISO_8859_1); + //assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("A4"), CharsetUtil.CHARSET_ISO_8859_15); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("1B65"), CharsetUtil.CHARSET_VFD2_GSM); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("1B65"), CharsetUtil.CHARSET_VFTR_GSM); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("80"), CharsetUtil.CHARSET_TMOBILENL_GSM); + assertEquals(str0, str1); + + + // longer string with @ symbol in-between + str0 = "Hello @ World"; + + str1 = CharsetUtil.decode(Hex.hexToByteArray("48656C6C6F200020576F726C64"), CharsetUtil.CHARSET_GSM); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("C8329BFD060140D7B79C4D06"), CharsetUtil.CHARSET_PACKED_GSM); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("00480065006C006C006F0020004000200057006F0072006C0064"), CharsetUtil.CHARSET_UCS_2); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("48656C6C6F204020576F726C64"), CharsetUtil.CHARSET_UTF_8); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("48656C6C6F204020576F726C64"), CharsetUtil.CHARSET_ISO_8859_1); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("48656C6C6F204020576F726C64"), CharsetUtil.CHARSET_ISO_8859_15); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("48656C6C6F204020576F726C64"), CharsetUtil.CHARSET_AIRWIDE_IA5); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("48656C6C6F204020576F726C64"), CharsetUtil.CHARSET_VFD2_GSM); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("48656C6C6F204020576F726C64"), CharsetUtil.CHARSET_VFTR_GSM); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("48656C6C6F200020576F726C64"), CharsetUtil.CHARSET_TMOBILENL_GSM); + assertEquals(str0, str1); + + + // longer string with @ symbol in-between + str0 = "JoeyBlue"; + + str1 = CharsetUtil.decode(Hex.hexToByteArray("4A6F6579426C7565"), CharsetUtil.CHARSET_GSM); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("CA77392F64D7CB"), CharsetUtil.CHARSET_PACKED_GSM); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("004A006F006500790042006C00750065"), CharsetUtil.CHARSET_UCS_2); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("4A6F6579426C7565"), CharsetUtil.CHARSET_UTF_8); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("4A6F6579426C7565"), CharsetUtil.CHARSET_ISO_8859_1); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("4A6F6579426C7565"), CharsetUtil.CHARSET_ISO_8859_15); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("4A6F6579426C7565"), CharsetUtil.CHARSET_AIRWIDE_IA5); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("4A6F6579426C7565"), CharsetUtil.CHARSET_VFD2_GSM); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("4A6F6579426C7565"), CharsetUtil.CHARSET_VFTR_GSM); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("4A6F6579426C7565"), CharsetUtil.CHARSET_TMOBILENL_GSM); + assertEquals(str0, str1); + + + // longer string with @ symbol in-between + str0 = "{}[]$"; + + str1 = CharsetUtil.decode(Hex.hexToByteArray("1B281B291B3C1B3E02"), CharsetUtil.CHARSET_GSM); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("1BD426B5E16D7C02"), CharsetUtil.CHARSET_PACKED_GSM); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("007B007D005B005D0024"), CharsetUtil.CHARSET_UCS_2); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("7B7D5B5D24"), CharsetUtil.CHARSET_UTF_8); + assertEquals(str0, str1); + + // airwide is close to GSM, $ is 0x24 rather than 0x02 though + str1 = CharsetUtil.decode(Hex.hexToByteArray("1B281B291B3C1B3E24"), CharsetUtil.CHARSET_AIRWIDE_IA5); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("7B7D5B5D24"), CharsetUtil.CHARSET_ISO_8859_1); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("7B7D5B5D24"), CharsetUtil.CHARSET_ISO_8859_15); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("1B281B291B3C1B3E24"), CharsetUtil.CHARSET_VFD2_GSM); + assertEquals(str0, str1); + + str1 = CharsetUtil.decode(Hex.hexToByteArray("1B281B291B3C1B3E24"), CharsetUtil.CHARSET_VFTR_GSM); + assertEquals(str0, str1); + + // skip TMOBILENL_GSM - can't encode {}[] + + // had problem passing these tests on linux vs. mac os x -- issue with + // byte encoding on differnet platforms, replaced tests with source strings + // that use Java unicode escapes + // helpful URL: http://www.greywyvern.com/code/php/utf8_html + // decode a string with every char in VFD2-GSM + // str0 = "@$ߤ¡Ñܧñü_"; + str0 = "@$\u00df\u00a4\u00a1\u00d1\u00dc\u00a7\u00f1\u00fc_"; + str1 = CharsetUtil.decode(Hex.hexToByteArray("40247E02A15F5D5E1E7D11"), CharsetUtil.CHARSET_VFD2_GSM); + assertEquals(str0, str1); + + //str0 = "@$ß$@ÑÜ_ñü_"; + str0 = "@$\u00df$@\u00d1\u00dc_\u00f1\u00fc_"; + str1 = CharsetUtil.decode(Hex.hexToByteArray("40241E24405D5E5F7D7E5F"), CharsetUtil.CHARSET_AIRWIDE_IA5); + assertEquals(str0, str1); + + // chars specifically to vodafone-turkey + //str0 = "$@£¤¥§ÄÅßñΓΔΘΩ€"; + str0 = "$@\u00a3\u00a4\u00a5\u00a7\u00c4\u00c5\u00df\u00f1\u0393\u0394\u0398\u03a9\u20ac"; + str1 = CharsetUtil.decode(Hex.hexToByteArray("2440A3A4A5A7C4C5DFF1137F19151B65"), CharsetUtil.CHARSET_VFTR_GSM); + assertEquals(str0, str1); + + // form feed GSM escape sequence + str0 = "\f\f"; + str1 = CharsetUtil.decode(Hex.hexToByteArray("1B0A1B0A"), CharsetUtil.CHARSET_GSM); + assertEquals(str0, str1); + } + + @Test + public void verifyDecodeDoesNotChangeByteArray() throws Exception { + for (Map.Entry entry : CharsetUtil.getCharsetMap().entrySet()) { + byte[] bytes = new byte[] { (byte)0x40, (byte)0x5F, (byte)0x24, (byte)0x78, (byte)0x02, (byte)0x02}; + byte[] expectedBytes = Arrays.copyOf(bytes, bytes.length); + String str0 = CharsetUtil.decode(bytes, entry.getValue()); + // test that the byte array wasn't changed + assertArrayEquals(expectedBytes, bytes, "Charset " + entry.getKey() + " impl bad -- modified byte array parameter"); + } + } + + @Test + public void verifyNullByteArray() throws Exception { + for (Map.Entry entry : CharsetUtil.getCharsetMap().entrySet()) { + // test that the byte array wasn't changed + assertNull(CharsetUtil.decode(null, entry.getValue()), "Charset " + entry.getKey() + " impl bad -- did not return null"); + } + } + + @Test + public void decodeToStringBuilderAllCharsets() throws Exception { + // try every charset with simple A-Z, a-z, and 0-9 which should work in all charsets + StringBuilder expectedString = new StringBuilder("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefjhijklmnopqrstuvwxyz01234567890"); + // test decode to stringBuilder + for (Map.Entry entry : CharsetUtil.getCharsetMap().entrySet()) { + // make this a harder test where we actually test this was appended! + byte[] expectedBytes = CharsetUtil.encode(expectedString, entry.getKey()); + StringBuilder sb = new StringBuilder("T"); + CharsetUtil.decode(expectedBytes, sb, entry.getValue()); + assertEquals("Charset " + entry.getKey() + " impl broken", "T"+expectedString, sb.toString()); + } + } + + @Test + public void decodeToStringAllCharsets() { + // try every charset with simple A-Z, a-z, and 0-9 which should work in all charsets + StringBuilder expectedString = new StringBuilder("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefjhijklmnopqrstuvwxyz01234567890"); + // test decode to stringBuilder + for (Map.Entry entry : CharsetUtil.getCharsetMap().entrySet()) { + // make this a harder test where we actually test this was appended! + byte[] expectedBytes = CharsetUtil.encode(expectedString, entry.getValue()); + String actualString = CharsetUtil.decode(expectedBytes, entry.getKey()); + assertEquals(expectedString.toString(), actualString, "Charset " + entry.getKey() + " impl broken"); + } + } + + @Test + public void normalize() throws Exception { + StringBuilder in = new StringBuilder("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefjhijklmnopqrstuvwxyz01234567890?&@"); + for (Map.Entry entry : CharsetUtil.getCharsetMap().entrySet()) { + assertEquals(in.toString(), CharsetUtil.normalize(in, entry.getValue()), "Charset " + entry.getKey() + " implementation broken"); + } + in = new StringBuilder("\u20AC"); // euro currency char (only supported in a couple charsets) + assertEquals("\u20AC", CharsetUtil.normalize(in, CharsetUtil.CHARSET_GSM)); + assertEquals("\u20AC", CharsetUtil.normalize(in, CharsetUtil.CHARSET_PACKED_GSM)); + assertEquals("\u20AC", CharsetUtil.normalize(in, CharsetUtil.CHARSET_AIRWIDE_GSM)); + assertEquals("\u20AC", CharsetUtil.normalize(in, CharsetUtil.CHARSET_VFD2_GSM)); + assertEquals("\u20AC", CharsetUtil.normalize(in, CharsetUtil.CHARSET_VFTR_GSM)); + assertEquals("?", CharsetUtil.normalize(in, CharsetUtil.CHARSET_ISO_8859_1)); + assertEquals("\u20AC", CharsetUtil.normalize(in, CharsetUtil.CHARSET_ISO_8859_15)); + assertEquals("\u20AC", CharsetUtil.normalize(in, CharsetUtil.CHARSET_UCS_2)); + assertEquals("\u20AC", CharsetUtil.normalize(in, CharsetUtil.CHARSET_UCS_2LE)); + assertEquals("\u20AC", CharsetUtil.normalize(in, CharsetUtil.CHARSET_UTF_8)); + assertEquals("\u20AC", CharsetUtil.normalize(in, CharsetUtil.CHARSET_TMOBILENL_GSM)); + + in = new StringBuilder("\u6025"); // arabic char (only supported in a couple charsets) + assertEquals("?", CharsetUtil.normalize(in, CharsetUtil.CHARSET_GSM)); + assertEquals("?", CharsetUtil.normalize(in, CharsetUtil.CHARSET_PACKED_GSM)); + assertEquals("?", CharsetUtil.normalize(in, CharsetUtil.CHARSET_AIRWIDE_GSM)); + assertEquals("?", CharsetUtil.normalize(in, CharsetUtil.CHARSET_VFD2_GSM)); + assertEquals("?", CharsetUtil.normalize(in, CharsetUtil.CHARSET_VFTR_GSM)); + assertEquals("?", CharsetUtil.normalize(in, CharsetUtil.CHARSET_ISO_8859_1)); + assertEquals("?", CharsetUtil.normalize(in, CharsetUtil.CHARSET_ISO_8859_15)); + assertEquals("\u6025", CharsetUtil.normalize(in, CharsetUtil.CHARSET_UCS_2)); + assertEquals("\u6025", CharsetUtil.normalize(in, CharsetUtil.CHARSET_UCS_2LE)); + assertEquals("\u6025", CharsetUtil.normalize(in, CharsetUtil.CHARSET_UTF_8)); + assertEquals("?", CharsetUtil.normalize(in, CharsetUtil.CHARSET_TMOBILENL_GSM)); + } +} diff --git a/datastructures-charset/src/test/java/org/xbib/datastructures/charset/GSMBitPackerTest.java b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/GSMBitPackerTest.java new file mode 100644 index 0000000..065877b --- /dev/null +++ b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/GSMBitPackerTest.java @@ -0,0 +1,87 @@ +package org.xbib.datastructures.charset; + +import static org.junit.jupiter.api.Assertions.assertArrayEquals; +import org.xbib.datastructures.charset.util.Hex; +import org.junit.jupiter.api.Test; +import java.nio.charset.StandardCharsets; +import java.util.logging.Logger; + +public class GSMBitPackerTest { + + private static final Logger logger = Logger.getLogger(GSMBitPackerTest.class.getName()); + + @Test + public void unpackAndPack() throws Exception { + byte[] packed = null; + byte[] unpacked = null; + assertArrayEquals(unpacked, GSMBitPacker.unpack(packed)); + assertArrayEquals(packed, GSMBitPacker.pack(unpacked)); + + // zero length returns zero length array + packed = new byte[0]; + unpacked = new byte[0]; + assertArrayEquals(unpacked, GSMBitPacker.unpack(packed)); + assertArrayEquals(packed, GSMBitPacker.pack(unpacked)); + + // 7-bit single byte is always the single byte + packed = Hex.hexToByteArray("7F"); + unpacked = Hex.hexToByteArray("7F"); + assertArrayEquals(unpacked, GSMBitPacker.unpack(packed)); + assertArrayEquals(packed, GSMBitPacker.pack(unpacked)); + + // 8-bit single byte ends up as 1 byte since the MSB of 1 + packed = Hex.hexToByteArray("FF"); + unpacked = Hex.hexToByteArray("7F"); + assertArrayEquals(unpacked, GSMBitPacker.unpack(packed)); + // NOT A 2-WAY TEST + //Assert.assertArrayEquals(packed, GSMBitPacker.pack(unpacked)); + assertArrayEquals(Hex.hexToByteArray("7F"), GSMBitPacker.pack(unpacked)); + + // these 2 bytes decoded + packed = Hex.hexToByteArray("9B32"); + unpacked = Hex.hexToByteArray("1B65"); + assertArrayEquals(unpacked, GSMBitPacker.unpack(packed)); + assertArrayEquals(packed, GSMBitPacker.pack(unpacked)); + + // "JOE" packed into + packed = Hex.hexToByteArray("CA7719"); + unpacked = "Joe".getBytes(); + assertArrayEquals(unpacked, GSMBitPacker.unpack(packed)); + assertArrayEquals(packed, GSMBitPacker.pack(unpacked)); + + // "JOEY" packed into + packed = Hex.hexToByteArray("CA77390F"); + unpacked = "Joey".getBytes(); + assertArrayEquals(unpacked, GSMBitPacker.unpack(packed)); + assertArrayEquals(packed, GSMBitPacker.pack(unpacked)); + + // packed into 00c1285432bd74 + packed = Hex.hexToByteArray("00c1285432bd74"); + unpacked = Hex.hexToByteArray("0002232125262f3a"); + assertArrayEquals(unpacked, GSMBitPacker.unpack(packed)); + assertArrayEquals(packed, GSMBitPacker.pack(unpacked)); + + // 8 bytes packed into 7 bytes + packed = Hex.hexToByteArray("CA77392F64D7CB"); + unpacked = "JoeyBlue".getBytes(); + assertArrayEquals(unpacked, GSMBitPacker.unpack(packed)); + assertArrayEquals(packed, GSMBitPacker.pack(unpacked)); + + // 160 character message in 140 bytes + packed = Hex.hexToByteArray("d3b29b0c0abb414d2a68da9c82e8e8301d347ebbe9e1b47b0e9297cfe9b71b348797c769737a0c1aa3c3f239685e1fa341e139c8282fbbc76850783c2ebbe97316680a0fbbd37334283c1e97ddf4390b54a68f5d2072195e7693d3ee33e8ed06b1dfe3301b347ed7dd7479de050219df7250191f6ec3d96516286d060dc3ee3039cc02cdcb6e3268fe6e9763"); + unpacked = Hex.hexToByteArray("53656e6420616e204d5420534d53207468617420636f6e7461696e7320726567696f6e2073706563696669632063686172732073756368206173204672656e636820616363656e74732c205370616e69736820616363656e74732c206574632e20646570656e64696e67206f6e206c6f63616c20636f756e7472792e2020466f72206578616d706c652c2069662043616e6164612c2073656e6420736f6d6531"); + assertArrayEquals(unpacked, GSMBitPacker.unpack(packed)); + assertArrayEquals(packed, GSMBitPacker.pack(unpacked)); + + // SPECIAL CASE -- last octet is zeros (AT character) + // in 7-bit packed form, we don't know if its an AT char OR if its padding + // basically 8 chars in 7 bytes with the last char being an @ character + packed = Hex.hexToByteArray("CA77392F64D701"); + //unpacked = HexUtil.toByteArray("0002232125262f3a"); + //unpacked = "JoeyBlu\u0000".getBytes("ISO-8859-1"); + // a choice was made to strip off the trailing @ char + unpacked = "JoeyBlu".getBytes(StandardCharsets.ISO_8859_1); + assertArrayEquals(unpacked, GSMBitPacker.unpack(packed)); + assertArrayEquals(packed, GSMBitPacker.pack(unpacked)); + } +} diff --git a/datastructures-charset/src/test/java/org/xbib/datastructures/charset/GSMCharsetTest.java b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/GSMCharsetTest.java new file mode 100644 index 0000000..9ffdd15 --- /dev/null +++ b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/GSMCharsetTest.java @@ -0,0 +1,52 @@ +package org.xbib.datastructures.charset; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertTrue; +import org.junit.jupiter.api.Test; +import java.util.logging.Logger; + +public class GSMCharsetTest { + + private static final Logger logger = Logger.getLogger(GSMCharsetTest.class.getName()); + + @Test + public void canRepresent() throws Exception { + // nulls are always ok + assertTrue(GSMCharset.canRepresent(null)); + assertTrue(GSMCharset.canRepresent(" ")); + assertTrue(GSMCharset.canRepresent("\n\r")); + assertTrue(GSMCharset.canRepresent("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")); + assertTrue(GSMCharset.canRepresent("Hello @ World")); + assertTrue(GSMCharset.canRepresent("{}[]$")); + // euro currency symbol is good + assertTrue(GSMCharset.canRepresent("\u20ac")); + // arabic char is not valid GSM char + assertFalse(GSMCharset.canRepresent("\u0623")); + // bug found with A-z if statement in previous charset + // 1 char in-between the upper-case and lower-case snuck in the + // simple range check -- the '`' char is NOT in the GSM charset + assertFalse(GSMCharset.canRepresent("`")); + assertTrue(GSMCharset.canRepresent("[\\]^_")); + // form feed: uncommon but technically part of the spec + assertTrue(GSMCharset.canRepresent("\f")); + + // create a fully correct string from lookup tables + // strings to decode/encode to/from UTF-8 + // build a string of every GSM char + StringBuilder s = new StringBuilder(); + for (int i = 0; i < GSMCharset.CHAR_TABLE.length; i++) { + char c = GSMCharset.CHAR_TABLE[i]; + if (c > 0) { + s.append(c); + } + } + for (int i = 0; i < GSMCharset.EXT_CHAR_TABLE.length; i++) { + char c = GSMCharset.EXT_CHAR_TABLE[i]; + if (c > 0) { + s.append(c); + } + } + assertTrue(GSMCharset.canRepresent(s.toString())); + } +} diff --git a/datastructures-charset/src/test/java/org/xbib/datastructures/charset/MobileTextUtilTest.java b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/MobileTextUtilTest.java new file mode 100644 index 0000000..63ac95e --- /dev/null +++ b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/MobileTextUtilTest.java @@ -0,0 +1,75 @@ +package org.xbib.datastructures.charset; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import org.junit.jupiter.api.Test; +import java.util.logging.Logger; + +public class MobileTextUtilTest { + + private static final Logger logger = Logger.getLogger(MobileTextUtilTest.class.getName()); + + @Test + public void replaceSafeUnicodeChars() { + String source = null; + StringBuilder buffer = null; + int replaced = -1; + + source = "hello"; + buffer = new StringBuilder(source); + replaced = MobileTextUtil.replaceSafeUnicodeChars(buffer); + assertEquals(0, replaced); + assertEquals(source, buffer.toString()); + + + source = "\u201chello\u201d \u201cworld\u201d \u201cthis\u201d"; + buffer = new StringBuilder(source); + replaced = MobileTextUtil.replaceSafeUnicodeChars(buffer); + assertEquals(6, replaced); + assertEquals("\"hello\" \"world\" \"this\"", buffer.toString()); + + + source = "\u201chello\u201d \u201cworld\u201d \u201cthis\u201d"; + buffer = new StringBuilder(source); + replaced = MobileTextUtil.replaceSafeUnicodeChars(buffer); + assertEquals(6, replaced); + assertEquals("\"hello\" \"world\" \"this\"", buffer.toString()); + + + source = "\u2018hello\u2019 \u2018world\u2019 don\u2019t"; + buffer = new StringBuilder(source); + replaced = MobileTextUtil.replaceSafeUnicodeChars(buffer); + assertEquals(5, replaced); + assertEquals("\'hello\' \'world\' don\'t", buffer.toString()); + } + + @Test + public void replaceAccentedChars() throws Exception { + String source = null; + StringBuilder buffer = null; + int replaced = -1; + + source = "hello"; + buffer = new StringBuilder(source); + replaced = MobileTextUtil.replaceAccentedChars(buffer); + assertEquals(0, replaced); + assertEquals(source, buffer.toString()); + + source = "h\u00E9llo"; + buffer = new StringBuilder(source); + replaced = MobileTextUtil.replaceAccentedChars(buffer); + assertEquals(1, replaced); + assertEquals("hello", buffer.toString()); + + source = "\u00E8\u00E9\u00EA\u00EB\u00EF\u00F1\u00F2"; + buffer = new StringBuilder(source); + replaced = MobileTextUtil.replaceAccentedChars(buffer); + assertEquals(7, replaced); + assertEquals("eeeeino", buffer.toString()); + + source = "\u20AC"; + buffer = new StringBuilder(source); + replaced = MobileTextUtil.replaceAccentedChars(buffer); + assertEquals(0, replaced); + assertEquals("\u20AC", buffer.toString()); + } +} diff --git a/datastructures-charset/src/test/java/org/xbib/datastructures/charset/ModifiedUTF8CharsetTest.java b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/ModifiedUTF8CharsetTest.java new file mode 100644 index 0000000..5bd2e46 --- /dev/null +++ b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/ModifiedUTF8CharsetTest.java @@ -0,0 +1,115 @@ +package org.xbib.datastructures.charset; + +import static org.junit.jupiter.api.Assertions.assertArrayEquals; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.fail; +import org.xbib.datastructures.charset.util.Hex; +import org.junit.jupiter.api.Test; +import java.nio.charset.StandardCharsets; +import java.util.logging.Logger; + +public class ModifiedUTF8CharsetTest { + + private static final Logger logger = Logger.getLogger(ModifiedUTF8CharsetTest.class.getName()); + + String nullString = "\u0000"; + String controlCharsString = createStringWithCharRange('\u0001', 0x20); + String asciiOnlyString = " !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~"; + String iso88591CharsString = createStringWithCharRange('\u0080', 128); + String first7EFFString = createStringWithCharRange('\u0100', 0x7EFF); + String entireString = createStringWithCharRange('\u0000', 0x7FFF); + String upperRangeString = createStringWithCharRange('\u7FFF', 0x8000); + + static public String createStringWithCharRange(char start, int length) { + StringBuilder buf = new StringBuilder(length); + int end = start+length; + for (int i = start; i < end; i++) { + buf.append((char)i); + } + return buf.toString(); + } + + @Test + public void compareAgainstJVM() throws Exception { + byte[] expected = null; + byte[] actual = null; + String actualString = null; + + String[] strings = new String[] { + nullString, controlCharsString, asciiOnlyString, iso88591CharsString, first7EFFString, entireString + }; + + int i = 0; + for (String s : strings) { + expected = s.getBytes(StandardCharsets.UTF_8); + actual = CharsetUtil.CHARSET_MODIFIED_UTF8.encode(new StringBuilder(s)); + //logger.info(" string: " + s); + //logger.info("expected: " + HexUtil.toHexString(expected)); + //logger.info(" actual: " + HexUtil.toHexString(actual)); + // verify our length calculator is correct + assertEquals(expected.length, ModifiedUTF8Charset.calculateByteLength(s)); + assertArrayEquals(expected, actual, "string: " + s); + // try to decode the byte array and make sure it matches the expected string + actualString = CharsetUtil.CHARSET_MODIFIED_UTF8.decode(expected); + assertEquals(s, actualString); + // verify a decode to a stringbuffer works as expected + StringBuilder actualStringBuffer = new StringBuilder(); + CharsetUtil.decode(expected, actualStringBuffer, CharsetUtil.CHARSET_MODIFIED_UTF8); + assertEquals(s, actualStringBuffer.toString()); + i++; + } + + // upper range of java values are where modified UTF-8 falls on its face + // its still safe to use as long as modified UTF-8 bytes are used to decode + // the values as well -- verify the entire range decodes back to the same values + byte[] encoded = CharsetUtil.CHARSET_MODIFIED_UTF8.encode(new StringBuilder(upperRangeString)); + String decoded = CharsetUtil.decode(encoded, CharsetUtil.CHARSET_MODIFIED_UTF8); + assertEquals(upperRangeString, decoded); + } + + @Test + public void calculateByteLength() throws Exception { + String sample = null; + // test the incredibly fast method for calculating a Java strings UTF-8 byte length + assertEquals(0, ModifiedUTF8Charset.calculateByteLength(null)); + assertEquals(0, ModifiedUTF8Charset.calculateByteLength("")); + assertEquals(1, ModifiedUTF8Charset.calculateByteLength("a")); + assertEquals(2, ModifiedUTF8Charset.calculateByteLength("\n\r")); + sample = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; + assertEquals(sample.getBytes(StandardCharsets.UTF_8).length, ModifiedUTF8Charset.calculateByteLength(sample)); + sample = "\u20ac"; + assertEquals(sample.getBytes(StandardCharsets.UTF_8).length, ModifiedUTF8Charset.calculateByteLength(sample)); + sample = "\u20ac\u0623"; + assertEquals(sample.getBytes(StandardCharsets.UTF_8).length, ModifiedUTF8Charset.calculateByteLength(sample)); + sample = "\u00A7\u00E5\uFFFF"; + assertEquals(sample.getBytes(StandardCharsets.UTF_8).length, ModifiedUTF8Charset.calculateByteLength(sample)); + } + + @Test + public void emoticons() throws Exception { + // follows sample of unit test in for UTF8Charset + // these chars triggered a problem in production -- these are specifically + // not supported for decoding -- but should work to/from for serialization + // U+1F631 is a very high range example of an emoticon (something more people are using) + // UTF-8 bytes look like this: F09F98B1 + // UTF-16 bytes look like this: D83DDE31 + // JavaScript escapes: \uD83D\uDE31 + byte[] bytes = Hex.hexToByteArray("F09F98B1"); + String str = "\uD83D\uDE31"; // this is the UTF-16 version of the UTF-8 bytes + + try { + String t = CharsetUtil.CHARSET_MODIFIED_UTF8.decode(bytes); + fail("exception should have been thrown"); + } catch (IllegalArgumentException e) { + // correct behavior -- this UTF-8 char is NOT supported! + } + + // try serializing and deserializing + byte[] encoded = CharsetUtil.CHARSET_MODIFIED_UTF8.encode(new StringBuilder(str)); + // this is what the Modified UTF-8 version looks like: EDA0BDEDB8B1 // 6 bytes instead of 4 + //logger.info(HexUtil.toHexString(encoded)); + String decoded = CharsetUtil.CHARSET_MODIFIED_UTF8.decode(encoded); + + assertEquals(str, decoded); + } +} diff --git a/datastructures-charset/src/test/java/org/xbib/datastructures/charset/TMobileNlGSMCharsetTest.java b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/TMobileNlGSMCharsetTest.java new file mode 100644 index 0000000..82a6a63 --- /dev/null +++ b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/TMobileNlGSMCharsetTest.java @@ -0,0 +1,83 @@ +package org.xbib.datastructures.charset; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertTrue; +import org.xbib.datastructures.charset.util.Hex; +import org.junit.jupiter.api.Test; +import java.util.logging.Logger; + +public class TMobileNlGSMCharsetTest { + + private static final Logger logger = Logger.getLogger(TMobileNlGSMCharsetTest.class.getName()); + + @Test + public void canRepresent() throws Exception { + // nulls are always ok + assertTrue(TMobileNlGSMCharset.canRepresent(null)); + assertTrue(TMobileNlGSMCharset.canRepresent(" ")); + assertTrue(TMobileNlGSMCharset.canRepresent("\n\r")); + assertTrue(TMobileNlGSMCharset.canRepresent("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")); + assertTrue(TMobileNlGSMCharset.canRepresent("Hello @ World")); + assertTrue(TMobileNlGSMCharset.canRepresent("$_")); + // euro currency symbol is good + assertTrue(TMobileNlGSMCharset.canRepresent("\u20ac")); + // arabic char is not valid TMobileNlGSM char + assertFalse(TMobileNlGSMCharset.canRepresent("\u0623")); + // '`' char is NOT in the TMobileNlGSM charset + assertFalse(TMobileNlGSMCharset.canRepresent("`")); + // []{}^~|\ GSM extended table chars are not supported by T-Mo NL + assertFalse(TMobileNlGSMCharset.canRepresent("{}[\\]^~|")); + + // create a fully correct string from lookup table + // strings to decode/encode to/from UTF-8 + // build a string of every GSM base-table char + StringBuilder s = new StringBuilder(); + for (int i = 0; i < GSMCharset.CHAR_TABLE.length; i++) { + char c = GSMCharset.CHAR_TABLE[i]; + if (c > 0) { + s.append(c); + } + } + s.append("\u20ac"); // and the euro-mark + + assertTrue(TMobileNlGSMCharset.canRepresent(s.toString())); + } + + @Test + public void testEncodeDecode() throws Exception { + + TMobileNlGSMCharset tmo = new TMobileNlGSMCharset(); + + // test custom euro encode/decode + StringBuilder customEuro = new StringBuilder("\u20ac"); + byte[] bytes = tmo.encode(customEuro); + assertEquals(1, bytes.length); + assertEquals(0x80, bytes[0] & 0x0ff); + StringBuilder sb = new StringBuilder(); + tmo.decode(bytes, sb); + assertEquals(1, sb.length()); + assertEquals(customEuro.toString(), sb.toString()); + + // validate custom euro hex-encodes & decodes correctly also + String hexEncoded = new String(Hex.byteArraryToHex(bytes)); + assertEquals("80", hexEncoded); + byte[] bytes2 = Hex.hexToByteArray(hexEncoded); + sb = new StringBuilder(); + tmo.decode(bytes2, sb); + assertEquals(1, sb.length()); + assertEquals(customEuro.toString(), sb.toString()); + + // test invalid GSM chars; all should encode to '?' + StringBuilder invalidChars = new StringBuilder("[]{}|^\\~"); + bytes = tmo.encode(invalidChars); + for (byte b : bytes) { + assertEquals(0x3f, b); + } + // arabic char is not valid GSM char + StringBuilder otherUnicode = new StringBuilder("\u0623"); + bytes = tmo.encode(otherUnicode); + assertEquals(1, bytes.length); + assertEquals(0x3f, bytes[0]); + } +} diff --git a/datastructures-charset/src/test/java/org/xbib/datastructures/charset/UTF8CharsetTest.java b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/UTF8CharsetTest.java new file mode 100644 index 0000000..a9d8762 --- /dev/null +++ b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/UTF8CharsetTest.java @@ -0,0 +1,26 @@ +package org.xbib.datastructures.charset; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import org.xbib.datastructures.charset.util.Hex; +import org.junit.jupiter.api.Test; +import java.util.logging.Logger; + +public class UTF8CharsetTest { + + private static final Logger logger = Logger.getLogger(UTF8CharsetTest.class.getName()); + + @Test + public void emoticons() throws Exception { + // great site: http://www.rishida.net/tools/conversion/ + // U+1F631 is a very high range example of an emoticon (something more people are using) + // UTF-8 bytes look like this: F09F98B1 + // UTF-16 bytes look like this: D83DDE31 + // JavaScript escapes: \uD83D\uDE31 + byte[] bytes = Hex.hexToByteArray("F09F98B1"); + String str = CharsetUtil.CHARSET_UTF_8.decode(bytes); + //logger.debug(str); + //byte[] utf32 = str.getBytes("UTF-32"); + //logger.debug(HexUtil.toHexString(utf32)); + assertEquals("\uD83D\uDE31", str); // UTF-16 used with JVM + } +} diff --git a/datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/BenchmarkMain.java b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/BenchmarkMain.java new file mode 100644 index 0000000..9bd783d --- /dev/null +++ b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/BenchmarkMain.java @@ -0,0 +1,27 @@ +package org.xbib.datastructures.charset.demo; + +import org.junit.jupiter.api.Test; +import org.xbib.datastructures.charset.CharsetUtil; +import java.util.logging.Logger; + +public class BenchmarkMain { + + private static final Logger logger = Logger.getLogger(BenchmarkMain.class.getName()); + + @Test + public void benchmark() { + StringBuilder in = new StringBuilder("\u20ACABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuv\u6025"); + int count = 500000; + long start = System.currentTimeMillis(); + for (int i = 0; i < count; i++) { + //String out = CharsetUtil.normalize(in, CharsetUtil.CHARSET_GSM); + //GSMCharset.canRepresent(in); + //int length = UTF8Charset.calculateByteLength(in); + //int length = in.getBytes("UTF8").length; + //byte[] a = UTF8Charset.encode(in); + byte[] b = CharsetUtil.encode(in, CharsetUtil.CHARSET_UTF_8); + } + long stop = System.currentTimeMillis(); + logger.info("Took " + (stop-start) + " ms to run " + count + " times"); + } +} diff --git a/datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/Charset2Main.java b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/Charset2Main.java new file mode 100644 index 0000000..062f397 --- /dev/null +++ b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/Charset2Main.java @@ -0,0 +1,28 @@ +package org.xbib.datastructures.charset.demo; + +import org.xbib.datastructures.charset.util.Hex; +import org.xbib.datastructures.charset.Charset; +import org.xbib.datastructures.charset.CharsetUtil; +import java.util.logging.Logger; + +public class Charset2Main { + + private static final Logger logger = Logger.getLogger(Charset2Main.class.getName()); + + public void test() { + StringBuilder str0 = new StringBuilder("\u20AC"); + + //Charset charset = new GSMCharset(); + //Charset charset = new PackedGSMCharset(); + //Charset charset = new ISO88591Charset(); + //Charset charset = new UCS2Charset(); + //Charset charset = new UTF8Charset(); + + //Charset charset = CharsetUtil.map(CharsetUtil.NAME_PACKED_GSM); + Charset charset = CharsetUtil.map(CharsetUtil.NAME_ISO_8859_15); + byte[] encoded = CharsetUtil.encode(str0, charset); + logger.info("str0: " + str0); + logger.info("encoded: " + Hex.byteArraryToHex(encoded)); + } + +} diff --git a/datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/Charset3Main.java b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/Charset3Main.java new file mode 100644 index 0000000..7aec39e --- /dev/null +++ b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/Charset3Main.java @@ -0,0 +1,28 @@ +package org.xbib.datastructures.charset.demo; + +import org.xbib.datastructures.charset.util.Hex; +import org.junit.jupiter.api.Test; +import org.xbib.datastructures.charset.Charset; +import org.xbib.datastructures.charset.CharsetUtil; +import java.io.UnsupportedEncodingException; +import java.util.Arrays; +import java.util.logging.Logger; + +public class Charset3Main { + + private static final Logger logger = Logger.getLogger(Charset3Main.class.getName()); + + @Test + public void test() throws UnsupportedEncodingException { + Charset cs = CharsetUtil.map("GSM"); + for (int i = 0; i < 65536; i++) { + StringBuilder str = new StringBuilder().append(i); + byte[] sourceBytes = str.toString().getBytes("ISO-10646-UCS-2"); + byte[] encodedBytes = cs.encode(str); + if (!Arrays.equals(sourceBytes, encodedBytes) && encodedBytes[0] != (byte)0x3F) { + System.out.println("{ (byte)0x" + Hex.byteArraryToHex(encodedBytes) + ", (char)0x" + Hex.byteArraryToHex(sourceBytes) + " }, // " + str); + //logger.debug(str + ": " + HexUtil.toHexString(sourceBytes) + "->" + HexUtil.toHexString(encodedBytes)); + } + } + } +} diff --git a/datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/Charset4Main.java b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/Charset4Main.java new file mode 100644 index 0000000..ada3d79 --- /dev/null +++ b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/Charset4Main.java @@ -0,0 +1,24 @@ +package org.xbib.datastructures.charset.demo; + +import org.xbib.datastructures.charset.util.Hex; +import org.junit.jupiter.api.Test; +import org.xbib.datastructures.charset.Charset; +import org.xbib.datastructures.charset.CharsetUtil; +import java.io.UnsupportedEncodingException; +import java.util.logging.Level; +import java.util.logging.Logger; + +public class Charset4Main { + + private static final Logger logger = Logger.getLogger(Charset4Main.class.getName()); + + @Test + public void test() throws UnsupportedEncodingException { + byte[] bytes = Hex.hexToByteArray("E0A495E0A49AE0A4BE"); + Charset charset = CharsetUtil.map(CharsetUtil.NAME_UTF_8); + String decoded = CharsetUtil.decode(bytes, charset); + byte[] hexDecoded = decoded.getBytes("ISO-10646-UCS-2"); + logger.log(Level.INFO, "decoded: " + decoded); + logger.log(Level.INFO, "decodedAsHex: " + Hex.byteArraryToHex(hexDecoded)); + } +} diff --git a/datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/Charset5Main.java b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/Charset5Main.java new file mode 100644 index 0000000..74215f4 --- /dev/null +++ b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/Charset5Main.java @@ -0,0 +1,20 @@ +package org.xbib.datastructures.charset.demo; + +import org.junit.jupiter.api.Test; +import org.xbib.datastructures.charset.CharsetUtil; +import java.util.logging.Level; +import java.util.logging.Logger; + +public class Charset5Main { + + private static final Logger logger = Logger.getLogger(Charset5Main.class.getName()); + + @Test + public void test() { + StringBuilder sourceString = new StringBuilder("h\u6025\u20ACllo"); + String targetString = CharsetUtil.normalize(sourceString, CharsetUtil.CHARSET_UTF_8); + logger.log(Level.INFO, "source string: " + sourceString); + logger.log(Level.INFO, "target string: " + targetString); + } + +} diff --git a/datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/Charset6Main.java b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/Charset6Main.java new file mode 100644 index 0000000..a50c109 --- /dev/null +++ b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/Charset6Main.java @@ -0,0 +1,22 @@ +package org.xbib.datastructures.charset.demo; + +import org.xbib.datastructures.charset.util.Hex; +import org.junit.jupiter.api.Test; +import org.xbib.datastructures.charset.CharsetUtil; +import java.nio.charset.StandardCharsets; +import java.util.logging.Logger; + +public class Charset6Main { + + private static final Logger logger = Logger.getLogger(Charset6Main.class.getName()); + + @Test + public void test() { + byte[] vmpbytes = Hex.hexToByteArray("c3a2c282c2ac"); + String decoded1 = CharsetUtil.decode(vmpbytes, CharsetUtil.CHARSET_UTF_8); + logger.info("decode #1 length: " + decoded1.length()); + byte[] nextbytes = decoded1.getBytes(StandardCharsets.ISO_8859_1); + logger.info("decode #1 bytes: " + Hex.byteArraryToHex(nextbytes)); + } + +} diff --git a/datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/CharsetMain.java b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/CharsetMain.java new file mode 100644 index 0000000..50b53bb --- /dev/null +++ b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/CharsetMain.java @@ -0,0 +1,36 @@ +package org.xbib.datastructures.charset.demo; + +import org.junit.jupiter.api.Test; +import org.xbib.datastructures.charset.Charset; +import org.xbib.datastructures.charset.CharsetUtil; +import java.util.logging.Logger; + +public class CharsetMain { + + private static final Logger logger = Logger.getLogger(CharsetMain.class.getName()); + + @Test + public void test() { + StringBuilder str0 = new StringBuilder("Hello @ World"); + + //Charset charset = new GSMCharset(); + //Charset charset = new PackedGSMCharset(); + //Charset charset = new ISO88591Charset(); + //Charset charset = new UCS2Charset(); + //Charset charset = new UTF8Charset(); + + //Charset charset = CharsetUtil.map(CharsetUtil.NAME_PACKED_GSM); + Charset charset = CharsetUtil.map(CharsetUtil.NAME_GSM); + int count = 100000; + long startTime = System.currentTimeMillis(); + for (int i = 0; i < count; i++) { + byte[] encoded = CharsetUtil.encode(str0, charset); + //byte[] encoded = charset.encode(str0); + //byte[] encoded = str0.getBytes("ISO-8859-1"); + } + long stopTime = System.currentTimeMillis(); + logger.info("To convert to bytes " + count + " times, took " + (stopTime-startTime) + " ms"); + //logger.info("gsm: " + HexUtil.toHexString(gsmEncoded)); + } + +} diff --git a/datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/GSMBenchmarkMain.java b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/GSMBenchmarkMain.java new file mode 100644 index 0000000..fc98b5d --- /dev/null +++ b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/GSMBenchmarkMain.java @@ -0,0 +1,39 @@ +package org.xbib.datastructures.charset.demo; + +import org.junit.jupiter.api.Test; +import org.xbib.datastructures.charset.GSMCharset; +import java.util.logging.Logger; + +public class GSMBenchmarkMain { + + private static final Logger logger = Logger.getLogger(GSMBenchmarkMain.class.getName()); + + @Test + public void test() { + // strings to decode/encode to/from UTF-8 + // build a string of every GSM char + StringBuilder s = new StringBuilder(); + for (int i = 0; i < GSMCharset.CHAR_TABLE.length; i++) { + char c = GSMCharset.CHAR_TABLE[i]; + if (c > 0) { + s.append(c); + } + } + for (int i = 0; i < GSMCharset.EXT_CHAR_TABLE.length; i++) { + char c = GSMCharset.EXT_CHAR_TABLE[i]; + if (c > 0) { + s.append(c); + } + } + String gsmString = s.toString(); + System.out.println("gsm string: " + gsmString); + int count = 1000000; + long encodeStart = System.currentTimeMillis(); + for (int i = 0; i < count; i++) { + GSMCharset.canRepresent(gsmString); + } + long encodeStop = System.currentTimeMillis(); + System.out.println("took " + (encodeStop-encodeStart) + " ms to run " + count + " times"); + } + +} diff --git a/datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/PrintGSMMain.java b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/PrintGSMMain.java new file mode 100644 index 0000000..34638ef --- /dev/null +++ b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/PrintGSMMain.java @@ -0,0 +1,24 @@ +package org.xbib.datastructures.charset.demo; + +import org.xbib.datastructures.charset.GSMCharset; + +public class PrintGSMMain { + + static public void main(String[] args) throws Exception { + // utility class for converting CHAR_TABLE and EXT_CHAR_TABLEs into + // switch statements to be used in several methods + printTable(GSMCharset.CHAR_TABLE); + printTable(GSMCharset.EXT_CHAR_TABLE); + } + + static public void printTable(char[] t) { + for (char c : t) { + if (c > 0) { + if ((c < ' ' || c > '_') && (c < 'a' || c > '~')) { + System.out.println("case '\\u" + Integer.toHexString(((short) c)) + "':" + "\t// " + c); + } + } + } + } + +} diff --git a/datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/UTF8BenchmarkMain.java b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/UTF8BenchmarkMain.java new file mode 100644 index 0000000..aaa2c5f --- /dev/null +++ b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/demo/UTF8BenchmarkMain.java @@ -0,0 +1,200 @@ +package org.xbib.datastructures.charset.demo; + +import org.xbib.datastructures.charset.CharsetUtil; +import org.xbib.datastructures.charset.ModifiedUTF8Charset; +import java.nio.charset.StandardCharsets; +import java.util.logging.Logger; + +public class UTF8BenchmarkMain { + + private static final Logger logger = Logger.getLogger(UTF8BenchmarkMain.class.getName()); + + static public void main(String[] args) throws Exception { + String controlCharsString = createStringWithCharRange('\u0000', 0x20); + String asciiOnlyString = " !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~"; + String iso88591CharsString = createStringWithCharRange('\u0080', 128); + String remainingCharsString = createStringWithCharRange('\u0100', 65279); + String twoKCharsString = createStringWithCharRange('\u0100', 2000); + String latin300CharString = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent commodo vestibulum tellus at rutrum. Ut in ipsum augue, eget posuere nulla. Quisque elementum ante ut leo euismod nec hendrerit lectus lobortis. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia posuere."; + int count = 1000000; + String[] strings = new String[] { twoKCharsString }; + byte[][] byteArrays = createUTF8ByteArrays(strings); + EncodeBenchmark[] encodeBenchmarks = new EncodeBenchmark[] { + new EncodeBenchmark("JVM String.getBytes()", new EncodeStringGetBytes(), strings), + new EncodeBenchmark("CharsetUtil.encode() w/ UTF-8 Charset", new EncodeCharsetUtil(), strings), + new EncodeBenchmark("CharsetUtil.encode() w/ Modified UTF-8 Charset", new EncodeModifiedUTF8Charset(), strings), + }; + + DecodeBenchmark[] decodeBenchmarks = new DecodeBenchmark[] { + new DecodeBenchmark("JVM new String()", new DecodeNewString(), byteArrays), + new DecodeBenchmark("CharsetUtil.decode() w/ UTF-8 Charset", new DecodeCharsetUtil(), byteArrays), + new DecodeBenchmark("CharsetUtil.decode() w/ Modified UTF-8 Charset", new DecodeModifiedUTF8Charset(), byteArrays) + }; + + // warmup each benchmark first + for (EncodeBenchmark eb : encodeBenchmarks) { + eb.warmup(1); + } + + // warmup each benchmark first + for (DecodeBenchmark db : decodeBenchmarks) { + db.warmup(1); + } + + // run each benchmark + for (EncodeBenchmark eb : encodeBenchmarks) { + System.gc(); + eb.run(count); + } + + // run each benchmark + for (DecodeBenchmark db : decodeBenchmarks) { + System.gc(); + db.run(count); + } + } + + static public String createStringWithCharRange(char start, int length) { + StringBuilder buf = new StringBuilder(length); + int end = start+length; + for (int i = start; i < end; i++) { + buf.append((char)i); + } + return buf.toString(); + } + + static public byte[][] createUTF8ByteArrays(String[] strings) throws Exception { + byte[][] byteArrays = new byte[strings.length][]; + for (int i = 0; i < strings.length; i++) { + byteArrays[i] = strings[i].getBytes(StandardCharsets.UTF_8); + } + return byteArrays; + } + + static public class EncodeBenchmark { + public String name; + public EncodeTest test; + public String[] strings; + + public EncodeBenchmark(String name, EncodeTest test, String[] strings) { + this.name = name; + this.test = test; + this.strings = strings; + } + + public void warmup(int count) throws Exception { + this.test.encode(strings, count); + } + + public void run(int count) throws Exception { + long startMillis = System.currentTimeMillis(); + this.test.encode(strings, count); + long stopMillis = System.currentTimeMillis(); + System.out.println("Encode Benchmark: " + name); + System.out.println(" count: " + count); + System.out.println(" time: " + (stopMillis-startMillis) + " ms"); + } + } + + static public class DecodeBenchmark { + public String name; + public DecodeTest test; + public byte[][] byteArrays; + + public DecodeBenchmark(String name, DecodeTest test, byte[][] byteArrays) { + this.name = name; + this.test = test; + this.byteArrays = byteArrays; + } + + public void warmup(int count) throws Exception { + this.test.decode(byteArrays, count); + } + + public void run(int count) throws Exception { + long startMillis = System.currentTimeMillis(); + this.test.decode(byteArrays, count); + long stopMillis = System.currentTimeMillis(); + System.out.println("Decode Benchmark: " + name); + System.out.println(" count: " + count); + System.out.println(" time: " + (stopMillis-startMillis) + " ms"); + } + } + + public interface EncodeTest { + void encode(String[] strings, int count) throws Exception; + } + + public interface DecodeTest { + void decode(byte[][] byteArrays, int count) throws Exception; + } + + static public class EncodeStringGetBytes implements EncodeTest { + @Override + public void encode(String[] strings, int count) throws Exception { + for (int i = 0; i < count; i++) { + for (String s : strings) { + byte[] b = s.getBytes(StandardCharsets.UTF_8); + } + } + } + } + + static public class EncodeCharsetUtil implements EncodeTest { + @Override + public void encode(String[] strings, int count) throws Exception { + for (int i = 0; i < count; i++) { + for (String s : strings) { + byte[] b = CharsetUtil.encode(new StringBuilder(s), CharsetUtil.CHARSET_UTF_8); + } + } + } + } + + static public class EncodeModifiedUTF8Charset implements EncodeTest { + ModifiedUTF8Charset charset = new ModifiedUTF8Charset(); + @Override + public void encode(String[] strings, int count) throws Exception { + for (int i = 0; i < count; i++) { + for (String s : strings) { + byte[] b = charset.encode(new StringBuilder(s)); + } + } + } + } + + static public class DecodeNewString implements DecodeTest { + @Override + public void decode(byte[][] byteArrays, int count) throws Exception { + for (int i = 0; i < count; i++) { + for (byte[] b : byteArrays) { + String s = new String(b, StandardCharsets.UTF_8); + } + } + } + } + + static public class DecodeCharsetUtil implements DecodeTest { + @Override + public void decode(byte[][] byteArrays, int count) throws Exception { + for (int i = 0; i < count; i++) { + for (byte[] b : byteArrays) { + String s = CharsetUtil.decode(b, CharsetUtil.CHARSET_UTF_8); + } + } + } + } + + static public class DecodeModifiedUTF8Charset implements DecodeTest { + ModifiedUTF8Charset charset = new ModifiedUTF8Charset(); + @Override + public void decode(byte[][] byteArrays, int count) throws Exception { + for (int i = 0; i < count; i++) { + for (byte[] b : byteArrays) { + String s = charset.decode(b); + } + } + } + } + +} diff --git a/datastructures-charset/src/test/java/org/xbib/datastructures/charset/util/Hex.java b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/util/Hex.java new file mode 100644 index 0000000..d509b37 --- /dev/null +++ b/datastructures-charset/src/test/java/org/xbib/datastructures/charset/util/Hex.java @@ -0,0 +1,28 @@ +package org.xbib.datastructures.charset.util; + +public class Hex { + + + public static byte[] hexToByteArray(String s) { + int len = s.length(); + byte[] data = new byte[len / 2]; + for (int i = 0; i < len; i += 2) { + data[i / 2] = (byte) ((Character.digit(s.charAt(i), 16) << 4) + + Character.digit(s.charAt(i+1), 16)); + } + return data; + } + + private static final char[] HEX_ARRAY = "0123456789ABCDEF".toCharArray(); + + public static String byteArraryToHex(byte[] bytes) { + char[] hexChars = new char[bytes.length * 2]; + for (int j = 0; j < bytes.length; j++) { + int v = bytes[j] & 0xFF; + hexChars[j * 2] = HEX_ARRAY[v >>> 4]; + hexChars[j * 2 + 1] = HEX_ARRAY[v & 0x0F]; + } + return new String(hexChars); + } + +} diff --git a/datastructures-common/build.gradle b/datastructures-common/build.gradle new file mode 100644 index 0000000..aa03b17 --- /dev/null +++ b/datastructures-common/build.gradle @@ -0,0 +1,8 @@ +plugins { + id "io.morethan.jmhreport" version "0.9.0" +} + +jmhReport { + jmhResultPath = project.file('build/reports/jmh/result.json') + jmhReportOutput = project.file('build/reports/jmh') +} diff --git a/datastructures-common/src/jmh/java/org/xbib/datastructures/common/jmh/StructuresBenchmark.java b/datastructures-common/src/jmh/java/org/xbib/datastructures/common/jmh/StructuresBenchmark.java new file mode 100644 index 0000000..a35002b --- /dev/null +++ b/datastructures-common/src/jmh/java/org/xbib/datastructures/common/jmh/StructuresBenchmark.java @@ -0,0 +1,102 @@ +package org.xbib.datastructures.common.jmh; + +import org.openjdk.jmh.annotations.Benchmark; +import org.openjdk.jmh.annotations.BenchmarkMode; +import org.openjdk.jmh.annotations.Fork; +import org.openjdk.jmh.annotations.Level; +import org.openjdk.jmh.annotations.Measurement; +import org.openjdk.jmh.annotations.Mode; +import org.openjdk.jmh.annotations.Scope; +import org.openjdk.jmh.annotations.Setup; +import org.openjdk.jmh.annotations.State; +import org.openjdk.jmh.annotations.Warmup; +import org.xbib.datastructures.common.StrictArrayMap; +import org.xbib.datastructures.common.StrictArraySet; +import java.util.Arrays; +import java.util.HashMap; +import java.util.LinkedHashMap; +import java.util.LinkedHashSet; +import java.util.List; +import java.util.TreeMap; + +@State(Scope.Benchmark) +@BenchmarkMode(Mode.Throughput) +@Warmup(iterations = 5) +@Fork(1) +@Measurement(iterations = 5) +public class StructuresBenchmark { + + Integer[] integers = new Integer[1000]; + + String[] strings = new String[1000]; + + @Setup(Level.Trial) + public void setup() { + for (int i = 0; i< 1000; i++) { + integers[i] = i; + } + for (int i = 0; i< 1000; i++) { + strings[i] = "Hello " + i; + } + } + + @Benchmark + public String strictArraySet() { + StrictArraySet set = new StrictArraySet<>(integers); + return set.toString(); + } + + @Benchmark + public String strictArrayMap() { + StrictArrayMap map = new StrictArrayMap<>(integers, strings); + return map.toString(); + } + + @Benchmark + public String arrayList() { + List set = Arrays.asList(integers); + return set.toString(); + } + + @Benchmark + public String linkedHashSetFromArrayList() { + LinkedHashSet set = new LinkedHashSet<>(Arrays.asList(integers)); + return set.toString(); + } + + @Benchmark + public String linkedHashSet() { + LinkedHashSet set = new LinkedHashSet<>(); + for (int i = 0; i < 1000; i++) { + set.add(integers[i]); + } + return set.toString(); + } + + @Benchmark + public String linkedHashMap() { + LinkedHashMap map = new LinkedHashMap<>(); + for (int i = 0; i < 1000; i++) { + map.put(integers[i], strings[i]); + } + return map.toString(); + } + + @Benchmark + public String hashMap() { + HashMap map = new HashMap<>(); + for (int i = 0; i < 1000; i++) { + map.put(integers[i], strings[i]); + } + return map.toString(); + } + + @Benchmark + public String treeMap() { + TreeMap map = new TreeMap<>(); + for (int i = 0; i < 1000; i++) { + map.put(integers[i], strings[i]); + } + return map.toString(); + } +} diff --git a/datastructures-common/src/main/java/org/xbib/datastructures/common/CompactCharSequence.java b/datastructures-common/src/main/java/org/xbib/datastructures/common/CompactCharSequence.java new file mode 100644 index 0000000..19d56a6 --- /dev/null +++ b/datastructures-common/src/main/java/org/xbib/datastructures/common/CompactCharSequence.java @@ -0,0 +1,43 @@ +package org.xbib.datastructures.common; + +import java.nio.charset.StandardCharsets; + +public class CompactCharSequence implements CharSequence { + + private final int offset; + + private final int length; + + private final byte[] bytes; + + public CompactCharSequence(String string) { + this.bytes = string.getBytes(StandardCharsets.ISO_8859_1); + this.offset = 0; + this.length = bytes.length; + } + + public CompactCharSequence(CompactCharSequence charSequence, int offset, int length) { + this.bytes = charSequence.bytes; + this.offset = offset; + this.length = length; + } + + @Override + public char charAt(int index) { + int ix = offset + index; + if (ix >= length) { + throw new StringIndexOutOfBoundsException("Invalid index " + index + " length " + length()); + } + return (char) (bytes[ix] & 0xff); + } + + @Override + public CharSequence subSequence(int start, int end) { + return new CompactCharSequence(this, start, end- start); + } + + @Override + public int length() { + return length; + } +} \ No newline at end of file diff --git a/datastructures-common/src/main/java/org/xbib/datastructures/common/FastBufferedWriter.java b/datastructures-common/src/main/java/org/xbib/datastructures/common/FastBufferedWriter.java new file mode 100644 index 0000000..4b9d407 --- /dev/null +++ b/datastructures-common/src/main/java/org/xbib/datastructures/common/FastBufferedWriter.java @@ -0,0 +1,65 @@ +package org.xbib.datastructures.common; + +import java.io.IOException; +import java.io.Writer; + +public final class FastBufferedWriter extends Writer { + + private static final int BUFFER_SIZE = 8192; + + private final Writer writer; + + private final char[] chars; + + private int pos; + + public FastBufferedWriter(Writer writer) { + this.writer = writer; + this.chars = new char[BUFFER_SIZE]; + } + + @Override + public void write(final char[] cbuf, final int off, final int len) throws IOException { + if (pos + len >= chars.length) { + flushBuffer(); + } + if (len >= chars.length) { + writer.write(cbuf, off, len); + } else { + System.arraycopy(cbuf, off, chars, pos, len); + pos += len; + } + } + + @Override + public void write(final int c) throws IOException { + if (pos == chars.length) { + flushBuffer(); + } + chars[pos++] = (char) c; + } + + @Override + public void close() throws IOException { + flushBuffer(); + writer.close(); + } + + @Override + public void flush() throws IOException { + flushBuffer(); + writer.flush(); + } + + private void flushBuffer() throws IOException { + writer.write(chars, 0, pos); + pos = 0; + } + + @Override + public String toString() { + return writer.toString(); + } + + +} diff --git a/datastructures-common/src/main/java/org/xbib/datastructures/common/FastByteArrayOutputStream.java b/datastructures-common/src/main/java/org/xbib/datastructures/common/FastByteArrayOutputStream.java new file mode 100644 index 0000000..780b183 --- /dev/null +++ b/datastructures-common/src/main/java/org/xbib/datastructures/common/FastByteArrayOutputStream.java @@ -0,0 +1,174 @@ +package org.xbib.datastructures.common; + +import java.io.IOException; +import java.io.OutputStream; +import java.io.RandomAccessFile; +import java.io.Writer; +import java.util.LinkedList; +import java.util.List; + +public class FastByteArrayOutputStream extends OutputStream { + + private static final int DEFAULT_BLOCK_SIZE = 8192; + + private List buffers; + + private byte[] buffer; + + private boolean closed; + + private final int blockSize; + + private int index; + + private int size; + + public FastByteArrayOutputStream() { + this(DEFAULT_BLOCK_SIZE); + } + + public FastByteArrayOutputStream(int aSize) { + blockSize = aSize; + buffer = new byte[blockSize]; + } + + public int getSize() { + return size + index; + } + + @Override + public void close() { + closed = true; + } + + @Override + public String toString() { + return new String(toByteArray()); + } + + @Override + public void write(int datum) throws IOException { + if (closed) { + throw new IOException("Stream closed"); + } else { + if (index == blockSize) { + addBuffer(); + } + + // store the byte + buffer[index++] = (byte) datum; + } + } + + @Override + public void write(byte[] data, int offset, int length) throws IOException { + if (data == null) { + throw new NullPointerException(); + } else if ((offset < 0) || ((offset + length) > data.length) || (length < 0)) { + throw new IndexOutOfBoundsException(); + } else if (closed) { + throw new IOException("Stream closed"); + } else { + if ((index + length) > blockSize) { + int copyLength; + + do { + if (index == blockSize) { + addBuffer(); + } + + copyLength = blockSize - index; + + if (length < copyLength) { + copyLength = length; + } + + System.arraycopy(data, offset, buffer, index, copyLength); + offset += copyLength; + index += copyLength; + length -= copyLength; + } while (length > 0); + } else { + // Copy in the subarray + System.arraycopy(data, offset, buffer, index, length); + index += length; + } + } + } + + public byte[] getBuffer() { + return buffer; + } + + public byte[] toByteArray() { + byte[] data = new byte[getSize()]; + int pos = 0; + if (buffers != null) { + for (byte[] bytes : buffers) { + System.arraycopy(bytes, 0, data, pos, blockSize); + pos += blockSize; + } + } + System.arraycopy(buffer, 0, data, pos, index); + return data; + } + + public void writeTo(OutputStream out) throws IOException { + if (buffers != null) { + for (byte[] bytes : buffers) { + out.write(bytes, 0, blockSize); + } + } + out.write(buffer, 0, index); + } + + public void writeTo(RandomAccessFile out) throws IOException { + if (buffers != null) { + for (byte[] bytes : buffers) { + out.write(bytes, 0, blockSize); + } + } + out.write(buffer, 0, index); + } + + public void writeTo(Writer out, String encoding) throws IOException { + if (buffers != null) { + writeToViaSmoosh(out, encoding); + } else { + writeToViaString(out, encoding); + } + } + + void writeToViaString(Writer out, String encoding) throws IOException { + byte[] bufferToWrite = buffer; + int bufferToWriteLen = index; + writeToImpl(out, encoding, bufferToWrite, bufferToWriteLen); + } + + void writeToViaSmoosh(Writer out, String encoding) throws IOException { + byte[] bufferToWrite = toByteArray(); + int bufferToWriteLen = bufferToWrite.length; + writeToImpl(out, encoding, bufferToWrite, bufferToWriteLen); + } + + private void writeToImpl(Writer out, String encoding, byte[] bufferToWrite, int bufferToWriteLen) + throws IOException { + String writeStr; + if (encoding != null) { + writeStr = new String(bufferToWrite, 0, bufferToWriteLen, encoding); + } else { + writeStr = new String(bufferToWrite, 0, bufferToWriteLen); + } + out.write(writeStr); + } + + protected void addBuffer() { + if (buffers == null) { + buffers = new LinkedList<>(); + } + buffers.add(buffer); + buffer = new byte[blockSize]; + size += index; + index = 0; + } +} diff --git a/datastructures-common/src/main/java/org/xbib/datastructures/common/InputReader.java b/datastructures-common/src/main/java/org/xbib/datastructures/common/InputReader.java new file mode 100644 index 0000000..aec14ff --- /dev/null +++ b/datastructures-common/src/main/java/org/xbib/datastructures/common/InputReader.java @@ -0,0 +1,515 @@ + +package org.xbib.datastructures.common; + +import java.io.IOException; +import java.io.InputStream; + +public class InputReader { + + private static final int DEFAULT_BUFFER_SIZE = 1 << 16; + + private static final InputStream DEFAULT_STREAM = System.in; + + private static final int MAX_DECIMAL_PRECISION = 21; + + private int c; + + private final byte[] buf; + + private int bufIndex; + + private int numBytesRead; + + private final InputStream stream; + + private static final byte EOF = -1; + + private static final byte NEW_LINE = 10; + + private static final byte SPACE = 32; + + private static final byte DASH = 45; + + private static final byte DOT = 46; + + private char[] charBuffer; + + private static final int[] ints = new int[58]; + + static { + int value = 0; + for (int i = 48; i < 58; i++) { + ints[i] = value++; + } + } + + private static final double[][] doubles = { + {0.0d, 0.00d, 0.000d, 0.0000d, 0.00000d, 0.000000d, 0.0000000d, 0.00000000d, 0.000000000d, 0.0000000000d, 0.00000000000d, 0.000000000000d, 0.0000000000000d, 0.00000000000000d, 0.000000000000000d, 0.0000000000000000d, 0.00000000000000000d, 0.000000000000000000d, 0.0000000000000000000d, 0.00000000000000000000d, 0.000000000000000000000d}, + {0.1d, 0.01d, 0.001d, 0.0001d, 0.00001d, 0.000001d, 0.0000001d, 0.00000001d, 0.000000001d, 0.0000000001d, 0.00000000001d, 0.000000000001d, 0.0000000000001d, 0.00000000000001d, 0.000000000000001d, 0.0000000000000001d, 0.00000000000000001d, 0.000000000000000001d, 0.0000000000000000001d, 0.00000000000000000001d, 0.000000000000000000001d}, + {0.2d, 0.02d, 0.002d, 0.0002d, 0.00002d, 0.000002d, 0.0000002d, 0.00000002d, 0.000000002d, 0.0000000002d, 0.00000000002d, 0.000000000002d, 0.0000000000002d, 0.00000000000002d, 0.000000000000002d, 0.0000000000000002d, 0.00000000000000002d, 0.000000000000000002d, 0.0000000000000000002d, 0.00000000000000000002d, 0.000000000000000000002d}, + {0.3d, 0.03d, 0.003d, 0.0003d, 0.00003d, 0.000003d, 0.0000003d, 0.00000003d, 0.000000003d, 0.0000000003d, 0.00000000003d, 0.000000000003d, 0.0000000000003d, 0.00000000000003d, 0.000000000000003d, 0.0000000000000003d, 0.00000000000000003d, 0.000000000000000003d, 0.0000000000000000003d, 0.00000000000000000003d, 0.000000000000000000003d}, + {0.4d, 0.04d, 0.004d, 0.0004d, 0.00004d, 0.000004d, 0.0000004d, 0.00000004d, 0.000000004d, 0.0000000004d, 0.00000000004d, 0.000000000004d, 0.0000000000004d, 0.00000000000004d, 0.000000000000004d, 0.0000000000000004d, 0.00000000000000004d, 0.000000000000000004d, 0.0000000000000000004d, 0.00000000000000000004d, 0.000000000000000000004d}, + {0.5d, 0.05d, 0.005d, 0.0005d, 0.00005d, 0.000005d, 0.0000005d, 0.00000005d, 0.000000005d, 0.0000000005d, 0.00000000005d, 0.000000000005d, 0.0000000000005d, 0.00000000000005d, 0.000000000000005d, 0.0000000000000005d, 0.00000000000000005d, 0.000000000000000005d, 0.0000000000000000005d, 0.00000000000000000005d, 0.000000000000000000005d}, + {0.6d, 0.06d, 0.006d, 0.0006d, 0.00006d, 0.000006d, 0.0000006d, 0.00000006d, 0.000000006d, 0.0000000006d, 0.00000000006d, 0.000000000006d, 0.0000000000006d, 0.00000000000006d, 0.000000000000006d, 0.0000000000000006d, 0.00000000000000006d, 0.000000000000000006d, 0.0000000000000000006d, 0.00000000000000000006d, 0.000000000000000000006d}, + {0.7d, 0.07d, 0.007d, 0.0007d, 0.00007d, 0.000007d, 0.0000007d, 0.00000007d, 0.000000007d, 0.0000000007d, 0.00000000007d, 0.000000000007d, 0.0000000000007d, 0.00000000000007d, 0.000000000000007d, 0.0000000000000007d, 0.00000000000000007d, 0.000000000000000007d, 0.0000000000000000007d, 0.00000000000000000007d, 0.000000000000000000007d}, + {0.8d, 0.08d, 0.008d, 0.0008d, 0.00008d, 0.000008d, 0.0000008d, 0.00000008d, 0.000000008d, 0.0000000008d, 0.00000000008d, 0.000000000008d, 0.0000000000008d, 0.00000000000008d, 0.000000000000008d, 0.0000000000000008d, 0.00000000000000008d, 0.000000000000000008d, 0.0000000000000000008d, 0.00000000000000000008d, 0.000000000000000000008d}, + {0.9d, 0.09d, 0.009d, 0.0009d, 0.00009d, 0.000009d, 0.0000009d, 0.00000009d, 0.000000009d, 0.0000000009d, 0.00000000009d, 0.000000000009d, 0.0000000000009d, 0.00000000000009d, 0.000000000000009d, 0.0000000000000009d, 0.00000000000000009d, 0.000000000000000009d, 0.0000000000000000009d, 0.00000000000000000009d, 0.000000000000000000009d} + }; + + public InputReader() { + this(DEFAULT_STREAM, DEFAULT_BUFFER_SIZE); + } + + public InputReader(int bufferSize) { + this(DEFAULT_STREAM, bufferSize); + } + + public InputReader(InputStream stream) { + this(stream, DEFAULT_BUFFER_SIZE); + } + + public InputReader(InputStream stream, int bufferSize) { + if (stream == null || bufferSize <= 0) { + throw new IllegalArgumentException(); + } + buf = new byte[bufferSize]; + charBuffer = new char[128]; + this.stream = stream; + } + + private byte read() throws IOException { + if (numBytesRead == EOF) { + throw new IOException(); + } + if (bufIndex >= numBytesRead) { + bufIndex = 0; + numBytesRead = stream.read(buf); + if (numBytesRead == EOF) { + return EOF; + } + } + return buf[bufIndex++]; + } + + private int readJunk(int token) throws IOException { + if (numBytesRead == EOF) { + return EOF; + } + do { + while (bufIndex < numBytesRead) { + if (buf[bufIndex] > token) { + return 0; + } + bufIndex++; + } + numBytesRead = stream.read(buf); + if (numBytesRead == EOF) { + return EOF; + } + bufIndex = 0; + } while (true); + } + + public byte nextByte() throws IOException { + return (byte) nextInt(); + } + + public int nextInt() throws IOException { + if (readJunk(DASH - 1) == EOF) { + throw new IOException(); + } + int sgn = 1, res = 0; + c = buf[bufIndex]; + if (c == DASH) { + sgn = -1; + bufIndex++; + } + do { + while (bufIndex < numBytesRead) { + if (buf[bufIndex] > SPACE) { + res = (res << 3) + (res << 1); + res += ints[buf[bufIndex++]]; + } else { + bufIndex++; + return res * sgn; + } + } + numBytesRead = stream.read(buf); + if (numBytesRead == EOF) { + return res * sgn; + } + bufIndex = 0; + } while (true); + } + + public long nextLong() throws IOException { + if (readJunk(DASH - 1) == EOF) { + throw new IOException(); + } + int sgn = 1; + long res = 0L; + c = buf[bufIndex]; + if (c == DASH) { + sgn = -1; + bufIndex++; + } + do { + while (bufIndex < numBytesRead) { + if (buf[bufIndex] > SPACE) { + res = (res << 3) + (res << 1); + res += ints[buf[bufIndex++]]; + } else { + bufIndex++; + return res * sgn; + } + } + numBytesRead = stream.read(buf); + if (numBytesRead == EOF) { + return res * sgn; + } + bufIndex = 0; + } while (true); + } + + private void doubleCharBufferSize() { + char[] newBuffer = new char[charBuffer.length << 1]; + System.arraycopy(charBuffer, 0, newBuffer, 0, charBuffer.length); + charBuffer = newBuffer; + } + + public String nextLine() throws IOException { + try { + c = read(); + } catch (IOException e) { + return null; + } + if (c == NEW_LINE) { + return ""; + } + if (c == EOF) { + return null; + } + int i = 0; + charBuffer[i++] = (char) c; + do { + while (bufIndex < numBytesRead) { + if (buf[bufIndex] != NEW_LINE) { + if (i == charBuffer.length) { + doubleCharBufferSize(); + } + charBuffer[i++] = (char) buf[bufIndex++]; + } else { + bufIndex++; + return new String(charBuffer, 0, i); + } + } + numBytesRead = stream.read(buf); + if (numBytesRead == EOF) { + return new String(charBuffer, 0, i); + } + bufIndex = 0; + } while (true); + } + + public String nextString() throws IOException { + if (numBytesRead == EOF) { + return null; + } + if (readJunk(SPACE) == EOF) { + return null; + } + for (int i = 0; ; ) { + while (bufIndex < numBytesRead) { + if (buf[bufIndex] > SPACE) { + if (i == charBuffer.length) { + doubleCharBufferSize(); + } + charBuffer[i++] = (char) buf[bufIndex++]; + } else { + bufIndex++; + return new String(charBuffer, 0, i); + } + } + numBytesRead = stream.read(buf); + if (numBytesRead == EOF) { + return new String(charBuffer, 0, i); + } + bufIndex = 0; + } + } + + public double nextDouble() throws IOException { + String doubleVal = nextString(); + if (doubleVal == null) { + throw new IOException(); + } + return Double.parseDouble(doubleVal); + } + + public double nextDoubleFast() throws IOException { + c = read(); + int sgn = 1; + while (c <= SPACE) { + c = read(); + } + if (c == DASH) { + sgn = -1; + c = read(); + } + double res = 0.0; + while (c > DOT) { + res *= 10.0; + res += ints[c]; + c = read(); + } + if (c == DOT) { + int i = 0; + c = read(); + while (c > SPACE && i < MAX_DECIMAL_PRECISION) { + res += doubles[ints[c]][i++]; + c = read(); + } + } + return res * sgn; + } + + public byte[] nextByteArray(int n) throws IOException { + byte[] ar = new byte[n]; + for (int i = 0; i < n; i++) { + ar[i] = nextByte(); + } + return ar; + } + + public int[] nextIntArray(int n) throws IOException { + int[] ar = new int[n]; + for (int i = 0; i < n; i++) { + ar[i] = nextInt(); + } + return ar; + } + + public long[] nextLongArray(int n) throws IOException { + long[] ar = new long[n]; + for (int i = 0; i < n; i++) { + ar[i] = nextLong(); + } + return ar; + } + + public double[] nextDoubleArray(int n) throws IOException { + double[] ar = new double[n]; + for (int i = 0; i < n; i++) { + ar[i] = nextDouble(); + } + return ar; + } + + public double[] nextDoubleArrayFast(int n) throws IOException { + double[] ar = new double[n]; + for (int i = 0; i < n; i++) { + ar[i] = nextDoubleFast(); + } + return ar; + } + + public String[] nextStringArray(int n) throws IOException { + String[] ar = new String[n]; + for (int i = 0; i < n; i++) { + String str = nextString(); + if (str == null) { + throw new IOException(); + } + ar[i] = str; + } + return ar; + } + + public byte[] nextByteArray1(int n) throws IOException { + byte[] ar = new byte[n + 1]; + for (int i = 1; i <= n; i++) { + ar[i] = nextByte(); + } + return ar; + } + + public int[] nextIntArray1(int n) throws IOException { + int[] ar = new int[n + 1]; + for (int i = 1; i <= n; i++) { + ar[i] = nextInt(); + } + return ar; + } + + // Read a 1-based long array of size n+1 + public long[] nextLongArray1(int n) throws IOException { + long[] ar = new long[n + 1]; + for (int i = 1; i <= n; i++) { + ar[i] = nextLong(); + } + return ar; + } + + // Read a 1-based double array of size n+1 + public double[] nextDoubleArray1(int n) throws IOException { + double[] ar = new double[n + 1]; + for (int i = 1; i <= n; i++) { + ar[i] = nextDouble(); + } + return ar; + } + + // Quickly read a 1-based double array of size n+1 + public double[] nextDoubleArrayFast1(int n) throws IOException { + double[] ar = new double[n + 1]; + for (int i = 1; i <= n; i++) { + ar[i] = nextDoubleFast(); + } + return ar; + } + + // Read a 1-based string array of size n+1 + public String[] nextStringArray1(int n) throws IOException { + String[] ar = new String[n + 1]; + for (int i = 1; i <= n; i++) { + ar[i] = nextString(); + } + return ar; + } + + // Read a two dimensional matrix of bytes of size rows x cols + public byte[][] nextByteMatrix(int rows, int cols) throws IOException { + byte[][] matrix = new byte[rows][cols]; + for (int i = 0; i < rows; i++) { + for (int j = 0; j < cols; j++) { + matrix[i][j] = nextByte(); + } + } + return matrix; + } + + // Read a two dimensional matrix of ints of size rows x cols + public int[][] nextIntMatrix(int rows, int cols) throws IOException { + int[][] matrix = new int[rows][cols]; + for (int i = 0; i < rows; i++) { + for (int j = 0; j < cols; j++) { + matrix[i][j] = nextInt(); + } + } + return matrix; + } + + // Read a two dimensional matrix of longs of size rows x cols + public long[][] nextLongMatrix(int rows, int cols) throws IOException { + long[][] matrix = new long[rows][cols]; + for (int i = 0; i < rows; i++) { + for (int j = 0; j < cols; j++) { + matrix[i][j] = nextLong(); + } + } + return matrix; + } + + // Read a two dimensional matrix of doubles of size rows x cols + public double[][] nextDoubleMatrix(int rows, int cols) throws IOException { + double[][] matrix = new double[rows][cols]; + for (int i = 0; i < rows; i++) { + for (int j = 0; j < cols; j++) { + matrix[i][j] = nextDouble(); + } + } + return matrix; + } + + // Quickly read a two dimensional matrix of doubles of size rows x cols + public double[][] nextDoubleMatrixFast(int rows, int cols) throws IOException { + double[][] matrix = new double[rows][cols]; + for (int i = 0; i < rows; i++) { + for (int j = 0; j < cols; j++) { + matrix[i][j] = nextDoubleFast(); + } + } + return matrix; + } + + // Read a two dimensional matrix of Strings of size rows x cols + public String[][] nextStringMatrix(int rows, int cols) throws IOException { + String[][] matrix = new String[rows][cols]; + for (int i = 0; i < rows; i++) { + for (int j = 0; j < cols; j++) { + matrix[i][j] = nextString(); + } + } + return matrix; + } + + // Read a 1-based two dimensional matrix of bytes of size rows x cols + public byte[][] nextByteMatrix1(int rows, int cols) throws IOException { + byte[][] matrix = new byte[rows + 1][cols + 1]; + for (int i = 1; i <= rows; i++) { + for (int j = 1; j <= cols; j++) { + matrix[i][j] = nextByte(); + } + } + return matrix; + } + + // Read a 1-based two dimensional matrix of ints of size rows x cols + public int[][] nextIntMatrix1(int rows, int cols) throws IOException { + int[][] matrix = new int[rows + 1][cols + 1]; + for (int i = 1; i <= rows; i++) { + for (int j = 1; j <= cols; j++) { + matrix[i][j] = nextInt(); + } + } + return matrix; + } + + // Read a 1-based two dimensional matrix of longs of size rows x cols + public long[][] nextLongMatrix1(int rows, int cols) throws IOException { + long[][] matrix = new long[rows + 1][cols + 1]; + for (int i = 1; i <= rows; i++) { + for (int j = 1; j <= cols; j++) { + matrix[i][j] = nextLong(); + } + } + return matrix; + } + + // Read a 1-based two dimensional matrix of doubles of size rows x cols + public double[][] nextDoubleMatrix1(int rows, int cols) throws IOException { + double[][] matrix = new double[rows + 1][cols + 1]; + for (int i = 1; i <= rows; i++) { + for (int j = 1; j <= cols; j++) { + matrix[i][j] = nextDouble(); + } + } + return matrix; + } + + // Quickly read a 1-based two dimensional matrix of doubles of size rows x cols + public double[][] nextDoubleMatrixFast1(int rows, int cols) throws IOException { + double[][] matrix = new double[rows + 1][cols + 1]; + for (int i = 1; i <= rows; i++) { + for (int j = 1; j <= cols; j++) { + matrix[i][j] = nextDoubleFast(); + } + } + return matrix; + } + + // Read a 1-based two dimensional matrix of Strings of size rows x cols + public String[][] nextStringMatrix1(int rows, int cols) throws IOException { + String[][] matrix = new String[rows + 1][cols + 1]; + for (int i = 1; i <= rows; i++) { + for (int j = 1; j <= cols; j++) { + matrix[i][j] = nextString(); + } + } + return matrix; + } + + public void close() throws IOException { + stream.close(); + } +} diff --git a/datastructures-common/src/main/java/org/xbib/datastructures/common/StrictArrayMap.java b/datastructures-common/src/main/java/org/xbib/datastructures/common/StrictArrayMap.java new file mode 100644 index 0000000..d501a03 --- /dev/null +++ b/datastructures-common/src/main/java/org/xbib/datastructures/common/StrictArrayMap.java @@ -0,0 +1,206 @@ +package org.xbib.datastructures.common; + +import org.xbib.datastructures.common.StrictArraySet; +import java.util.AbstractMap; +import java.util.Collection; +import java.util.Map; +import java.util.Set; + +public class StrictArrayMap extends AbstractMap implements Map { + + private final K[] keys; + + private final V[] values; + + public StrictArrayMap(K[] keys, V[] values) { + this.keys = keys; + this.values = values; + } + + public K[] theKeys() { + return keys; + } + + public V[] theValues() { + return values; + } + + @SuppressWarnings("unchecked") + public StrictArrayMap(Collection keys, Collection values) { + this.keys = (K[]) keys.toArray(); + this.values = (V[]) values.toArray(); + } + + @Override + public int size() { + return keys.length; + } + + @Override + public boolean isEmpty() { + return keys.length == 0; + } + + @Override + public boolean containsKey(Object key) { + for (Object o : keys) { + if (o == null) { + if (key == null) { + return true; + } + } else { + if (o.equals(key)) { + return true; + } + } + } + return false; + } + + @Override + public boolean containsValue(Object value) { + for (Object o : values) { + if (o == null) { + if (value == null) { + return true; + } + } else { + if (o.equals(value)) { + return true; + } + } + } + return false; + } + + @Override + public V get(Object key) { + for (int i = 0; i < keys.length; i++ ) { + if (keys[i].equals(key)) { + return (V) values[i]; + } + } + return null; + } + + @Override + public V put(K key, V value) { + throw new UnsupportedOperationException(); + } + + @Override + public V remove(Object key) { + throw new UnsupportedOperationException(); + } + + @Override + public void putAll(Map m) { + throw new UnsupportedOperationException(); + } + + @Override + public void clear() { + throw new UnsupportedOperationException(); + } + + @Override + public Set keySet() { + return new StrictArraySet<>(keys); + } + + @Override + public Collection values() { + return new StrictArraySet<>(values); + } + + @SuppressWarnings("unchecked") + @Override + public Set> entrySet() { + Entry[] entries = new Map.Entry[keys.length]; + for (int i = 0; i < keys.length; i++) { + entries[i] = new EntryHolder<>(keys[i], values[i]); + } + return new StrictArraySet<>(entries); + } + + static class EntryHolder implements Map.Entry { + + final K key; + + final V value; + + EntryHolder(K k, V v) { + key = k; + value = v; + } + + /** + * Gets the key from this holder. + * + * @return the key + */ + @Override + public K getKey() { + return key; + } + + /** + * Gets the value from this holder. + * + * @return the value + */ + @Override + public V getValue() { + return value; + } + + /** + * Throws {@link UnsupportedOperationException}. + * + * @param value ignored + * @return never returns normally + */ + @Override + public V setValue(V value) { + throw new UnsupportedOperationException("not supported"); + } + + /** + * Compares the specified object with this entry for equality. + * Returns {@code true} if the given object is also a map entry and + * the two entries' keys and values are equal. Note that key and + * value are non-null, so equals() can be called safely on them. + */ + @Override + public boolean equals(Object o) { + if (!(o instanceof Map.Entry)) { + return false; + } + Map.Entry e = (Map.Entry)o; + return key != null && key.equals(e.getKey()) && value != null && value.equals(e.getValue()); + } + + /** + * Returns the hash code value for this map entry. The hash code + * is {@code key.hashCode() ^ value.hashCode()}. Note that key and + * value are non-null, so hashCode() can be called safely on them. + */ + @Override + public int hashCode() { + return key != null && value != null ? key.hashCode() ^ value.hashCode() : 0; + } + + /** + * Returns a String representation of this map entry. This + * implementation returns the string representation of this + * entry's key followed by the equals character ("{@code =}") + * followed by the string representation of this entry's value. + * + * @return a String representation of this map entry + */ + @Override + public String toString() { + return key + "=" + value; + } + } +} diff --git a/datastructures-common/src/main/java/org/xbib/datastructures/common/StrictArraySet.java b/datastructures-common/src/main/java/org/xbib/datastructures/common/StrictArraySet.java new file mode 100644 index 0000000..f7c8c1f --- /dev/null +++ b/datastructures-common/src/main/java/org/xbib/datastructures/common/StrictArraySet.java @@ -0,0 +1,44 @@ +package org.xbib.datastructures.common; + +import java.util.AbstractSet; +import java.util.Collection; +import java.util.Iterator; + +public class StrictArraySet extends AbstractSet { + + private final E[] values; + + public StrictArraySet(E[] values) { + this.values = values; + } + + @SuppressWarnings("unchecked") + public StrictArraySet(Collection values) { + this.values = (E[]) values.toArray(); + } + + public E[] theEntries() { + return values; + } + + @Override + public Iterator iterator() { + return new Iterator() { + int i = 0; + @Override + public boolean hasNext() { + return i < values.length; + } + + @Override + public E next() { + return values[i++]; + } + }; + } + + @Override + public int size() { + return values.length; + } +} diff --git a/datastructures-common/src/main/java/org/xbib/datastructures/common/Utf8Util.java b/datastructures-common/src/main/java/org/xbib/datastructures/common/Utf8Util.java new file mode 100644 index 0000000..e848799 --- /dev/null +++ b/datastructures-common/src/main/java/org/xbib/datastructures/common/Utf8Util.java @@ -0,0 +1,99 @@ +package org.xbib.datastructures.common; + +public class Utf8Util { + + public static String decode(byte[] data, int offset, int length) { + char[] chars = new char[length]; + int len = 0; + int i = offset; + while (i < length) { + if ((data[i] & 0x80) == 0) { + chars[len] = (char) data[i]; + len++; + i++; + } else { + int uc = 0; + if ((data[i] & 0xE0) == 0xC0) { + uc = (data[i] & 0x1F); + i++; + uc <<= 6; + uc |= (data[i] & 0x3F); + i++; + } else if ((data[i] & 0xF0) == 0xE0) { + uc = (data[i] & 0x0F); + i++; + uc <<= 6; + uc |= (data[i] & 0x3F); + i++; + uc <<= 6; + uc |= (data[i] & 0x3F); + i++; + + } else if ((data[i] & 0xF8) == 0xF0) { + uc = (data[i] & 0x07); + i++; + uc <<= 6; + uc |= (data[i] & 0x3F); + i++; + uc <<= 6; + uc |= (data[i] & 0x3F); + i++; + uc <<= 6; + uc |= (data[i] & 0x3F); + i++; + + } else if ((data[i] & 0xFC) == 0xF8) { + uc = (data[i] & 0x03); + i++; + uc <<= 6; + uc |= (data[i] & 0x3F); + i++; + uc <<= 6; + uc |= (data[i] & 0x3F); + i++; + uc <<= 6; + uc |= (data[i] & 0x3F); + i++; + uc <<= 6; + uc |= (data[i] & 0x3F); + i++; + + } else if ((data[i] & 0xFE) == 0xFC) { + uc = (data[i] & 0x01); + i++; + uc <<= 6; + uc |= (data[i] & 0x3F); + i++; + uc <<= 6; + uc |= (data[i] & 0x3F); + i++; + uc <<= 6; + uc |= (data[i] & 0x3F); + i++; + uc <<= 6; + uc |= (data[i] & 0x3F); + i++; + uc <<= 6; + uc |= (data[i] & 0x3F); + i++; + } + len = toChars(uc, chars, len); + } + } + return new String(chars, 0, len); + } + + public static int toChars(int codePoint, char[] dst, int index) { + if (codePoint < 0 || codePoint > Character.MAX_CODE_POINT) { + throw new IllegalArgumentException(); + } + if (codePoint < Character.MIN_SUPPLEMENTARY_CODE_POINT) { + dst[index] = (char) codePoint; + return ++index; + } + int offset = codePoint - Character.MIN_SUPPLEMENTARY_CODE_POINT; + dst[index + 1] = (char) ((offset & 0x3ff) + Character.MIN_LOW_SURROGATE); + dst[index] = (char) ((offset >>> 10) + Character.MIN_HIGH_SURROGATE); + return index + 2; + } +} \ No newline at end of file diff --git a/datastructures-common/src/test/java/org/xbib/datastructures/common/StrictArrayMapTest.java b/datastructures-common/src/test/java/org/xbib/datastructures/common/StrictArrayMapTest.java new file mode 100644 index 0000000..d0d8cd7 --- /dev/null +++ b/datastructures-common/src/test/java/org/xbib/datastructures/common/StrictArrayMapTest.java @@ -0,0 +1,32 @@ +package org.xbib.datastructures.common; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import org.junit.jupiter.api.Test; +import java.util.List; + +public class StrictArrayMapTest { + + @Test + public void simpleMap() { + StrictArrayMap strictArrayMap = new StrictArrayMap<>(List.of("a"), List.of("b")); + assertEquals("{a=b}", strictArrayMap.toString()); + } + + @Test + public void longerMap() { + StrictArrayMap strictArrayMap = new StrictArrayMap<>(List.of("a", "b", "c"), List.of("d", "e", "f")); + assertEquals("{a=d, b=e, c=f}", strictArrayMap.toString()); + } + + @Test + public void doubleKeyMap() { + StrictArrayMap strictArrayMap = new StrictArrayMap<>(List.of("a", "a", "a"), List.of("b", "b", "b")); + assertEquals("{a=b, a=b, a=b}", strictArrayMap.toString()); + } + + @Test + public void nullKeyMap() { + StrictArrayMap strictArrayMap = new StrictArrayMap<>(new String[] {null }, new Object[] { null }); + assertEquals("{null=null}", strictArrayMap.toString()); + } +} diff --git a/datastructures-common/src/test/java/org/xbib/datastructures/common/StrictArraySetTest.java b/datastructures-common/src/test/java/org/xbib/datastructures/common/StrictArraySetTest.java new file mode 100644 index 0000000..7ee63f7 --- /dev/null +++ b/datastructures-common/src/test/java/org/xbib/datastructures/common/StrictArraySetTest.java @@ -0,0 +1,31 @@ +package org.xbib.datastructures.common; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import org.junit.jupiter.api.Test; + +public class StrictArraySetTest { + + @Test + public void simpleSet() { + StrictArraySet strictArraySet = new StrictArraySet<>(new String[]{"a"}); + assertEquals("[a]", strictArraySet.toString()); + } + + @Test + public void longerSet() { + StrictArraySet strictArraySet = new StrictArraySet<>(new String[]{"a", "b", "c"}); + assertEquals("[a, b, c]", strictArraySet.toString()); + } + + @Test + public void multipleKeySet() { + StrictArraySet strictArraySet = new StrictArraySet<>(new String[]{"a", "a", "a"}); + assertEquals("[a, a, a]", strictArraySet.toString()); + } + + @Test + public void nulleKeySet() { + StrictArraySet strictArraySet = new StrictArraySet<>(new String[]{null}); + assertEquals("[null]", strictArraySet.toString()); + } +} diff --git a/datastructures-csv/src/main/java/module-info.java b/datastructures-csv/src/main/java/module-info.java new file mode 100644 index 0000000..99c7a55 --- /dev/null +++ b/datastructures-csv/src/main/java/module-info.java @@ -0,0 +1,3 @@ +module org.xbib.datastructures.csv { + exports org.xbib.datastructures.csv; +} \ No newline at end of file diff --git a/datastructures-csv/src/main/java/org/xbib/datastructures/csv/Constants.java b/datastructures-csv/src/main/java/org/xbib/datastructures/csv/Constants.java new file mode 100644 index 0000000..32875cd --- /dev/null +++ b/datastructures-csv/src/main/java/org/xbib/datastructures/csv/Constants.java @@ -0,0 +1,13 @@ +package org.xbib.datastructures.csv; + +public interface Constants { + + char BACKSPACE = '\b'; + char CR = '\r'; + char FF = '\f'; + char LF = '\n'; + char TAB = '\t'; + char COMMA = ','; + char QUOTE = '\"'; + char ESCAPE_CHARACTER = '\"'; +} diff --git a/datastructures-csv/src/main/java/org/xbib/datastructures/csv/Generator.java b/datastructures-csv/src/main/java/org/xbib/datastructures/csv/Generator.java new file mode 100644 index 0000000..47ed313 --- /dev/null +++ b/datastructures-csv/src/main/java/org/xbib/datastructures/csv/Generator.java @@ -0,0 +1,95 @@ +package org.xbib.datastructures.csv; + +import java.io.Closeable; +import java.io.Flushable; +import java.io.IOException; +import java.io.Writer; +import java.util.ArrayList; +import java.util.List; + +public class Generator implements Constants, Closeable, Flushable { + + private static final String LF = System.getProperty("line.separator"); + + private final Writer writer; + + private int col; + + private int row; + + private List keys; + + public Generator(Writer writer) { + this.writer = writer; + this.col = 0; + this.keys = new ArrayList<>(); + } + + public Generator keys(List keys) { + this.keys = keys; + return this; + } + + public Generator writeKeys() throws IOException { + for (String k : keys) { + write(k); + } + return this; + } + + public void write(String value) throws IOException { + if (col > 0) { + writer.write(COMMA); + } + if (value != null) { + writer.write(escape(value)); + } + col++; + if (col > keys.size()) { + writer.write(LF); + row++; + col = 0; + } + } + + public int getColumn() { + return col; + } + + public int getRow() { + return row; + } + + @Override + public void close() throws IOException { + writer.close(); + } + + @Override + public void flush() throws IOException { + writer.flush(); + } + + private String escape(String value) { + if (value.indexOf(QUOTE) < 0 + && value.indexOf(ESCAPE_CHARACTER) < 0 + && value.indexOf(COMMA) < 0 + && value.indexOf(TAB) < 0 + && !value.contains(LF)) { + return value; + } + int length = value.length(); + StringBuilder sb = new StringBuilder(length + 2); + sb.append(QUOTE); + for (int i = 0; i < length; i++) { + char ch = value.charAt(i); + if (ch == QUOTE) { + sb.append(QUOTE); + } + sb.append(ch); + } + sb.append(QUOTE); + return sb.toString(); + } + +} diff --git a/datastructures-csv/src/main/java/org/xbib/datastructures/csv/Lexer.java b/datastructures-csv/src/main/java/org/xbib/datastructures/csv/Lexer.java new file mode 100644 index 0000000..e5bd7bc --- /dev/null +++ b/datastructures-csv/src/main/java/org/xbib/datastructures/csv/Lexer.java @@ -0,0 +1,254 @@ +package org.xbib.datastructures.csv; + +import java.io.Closeable; +import java.io.IOException; + +class Lexer implements Constants, Closeable { + + private final LookAheadReader reader; + + private final char delimiter; + + private final char escape; + + private final char quoteChar; + + private final char commentStart; + + private final boolean ignoreSurroundingSpaces; + + private final boolean ignoreEmptyLines; + + Lexer(LookAheadReader reader, char delimiter, char escape, char quoteChar, char commentStart, + boolean ignoreSurroundingSpaces, boolean ignoreEmptyLines) { + this.reader = reader; + this.delimiter = delimiter; + this.escape = escape; + this.quoteChar = quoteChar; + this.commentStart = commentStart; + this.ignoreSurroundingSpaces = ignoreSurroundingSpaces; + this.ignoreEmptyLines = ignoreEmptyLines; + } + + Token nextToken(final Token token) throws IOException { + int lastChar = reader.getLastChar(); + int c = reader.read(); + boolean eol = readEndOfLine(c); + if (ignoreEmptyLines) { + while (eol && isStartOfLine(lastChar)) { + lastChar = c; + c = reader.read(); + eol = readEndOfLine(c); + if (isEndOfFile(c)) { + token.type = TokenType.EOF; + return token; + } + } + } + if (isEndOfFile(lastChar) || (!isDelimiter(lastChar) && isEndOfFile(c))) { + token.type = TokenType.EOF; + return token; + } + if (isStartOfLine(lastChar) && isCommentStart(c)) { + final String line = reader.readLine(); + if (line == null) { + token.type = TokenType.EOF; + return token; + } + final String comment = line.trim(); + token.content.append(comment); + token.type = TokenType.COMMENT; + return token; + } + while (token.type == TokenType.INVALID) { + if (ignoreSurroundingSpaces) { + while (isWhitespace(c) && !eol) { + c = reader.read(); + eol = readEndOfLine(c); + } + } + if (isDelimiter(c)) { + token.type = TokenType.TOKEN; + } else if (eol) { + token.type = TokenType.EORECORD; + } else if (isQuoteChar(c)) { + parseEncapsulatedToken(token); + } else if (isEndOfFile(c)) { + token.type = TokenType.EOF; + token.isReady = true; + } else { + parseSimpleToken(token, c); + } + } + return token; + } + + private Token parseSimpleToken(final Token token, int c) throws IOException { + int ch = c; + while (true) { + if (readEndOfLine(ch)) { + token.type = TokenType.EORECORD; + break; + } else if (isEndOfFile(ch)) { + token.type = TokenType.EOF; + token.isReady = true; + break; + } else if (isDelimiter(ch)) { + token.type = TokenType.TOKEN; + break; + } else if (isEscape(ch)) { + final int unescaped = readEscape(); + if (unescaped == -1) { + token.content.append((char) ch).append((char) reader.getLastChar()); + } else { + token.content.append((char) unescaped); + } + ch = reader.read(); + } else { + token.content.append((char) ch); + ch = reader.read(); + } + } + if (ignoreSurroundingSpaces) { + trimTrailingSpaces(token.content); + } + return token; + } + + private Token parseEncapsulatedToken(final Token token) throws IOException { + final long startLineNumber = getCurrentLineNumber(); + int c; + while (true) { + c = reader.read(); + if (isEscape(c)) { + final int unescaped = readEscape(); + if (unescaped == -1) { + token.content.append((char) c).append((char) reader.getLastChar()); + } else { + token.content.append((char) unescaped); + } + } else if (isQuoteChar(c)) { + if (isQuoteChar(reader.lookAhead())) { + c = reader.read(); + token.content.append((char) c); + } else { + while (true) { + c = reader.read(); + if (isDelimiter(c)) { + token.type = TokenType.TOKEN; + return token; + } else if (isEndOfFile(c)) { + token.type = TokenType.EOF; + token.isReady = true; + return token; + } else if (readEndOfLine(c)) { + token.type = TokenType.EORECORD; + return token; + } else if (!isWhitespace(c)) { + throw new IOException("(line " + + getCurrentLineNumber() + + ") invalid char between encapsulated token and delimiter"); + } + } + } + } else if (isEndOfFile(c)) { + throw new IOException("(startline " + + startLineNumber + + ") EOF reached before encapsulated token finished"); + } else { + token.content.append((char) c); + } + } + } + + long getCurrentLineNumber() { + return reader.getCurrentLineNumber(); + } + + private int readEscape() throws IOException { + final int ch = reader.read(); + switch (ch) { + case 'r': + return CR; + case 'n': + return LF; + case 't': + return TAB; + case 'b': + return BACKSPACE; + case 'f': + return FF; + case CR: + case LF: + case FF: + case TAB: + case BACKSPACE: + return ch; + case -1: + throw new IOException("EOF whilst processing escape sequence"); + default: + if (isMetaChar(ch)) { + return ch; + } + return -1; + } + } + + private void trimTrailingSpaces(final StringBuilder buffer) { + int length = buffer.length(); + while (length > 0 && Character.isWhitespace(buffer.charAt(length - 1))) { + length = length - 1; + } + if (length != buffer.length()) { + buffer.setLength(length); + } + } + + private boolean readEndOfLine(final int ch) throws IOException { + int c = ch; + if (c == CR && reader.lookAhead() == LF) { + c = reader.read(); + } + return c == LF || c == CR; + } + + private boolean isWhitespace(final int ch) { + return !isDelimiter(ch) && Character.isWhitespace((char) ch); + } + + private boolean isStartOfLine(final int ch) { + return ch == LF || ch == CR || ch == -2; + } + + private boolean isEndOfFile(final int ch) { + return ch == -1; + } + + private boolean isDelimiter(final int ch) { + return ch == delimiter; + } + + private boolean isEscape(final int ch) { + return ch == escape; + } + + private boolean isQuoteChar(final int ch) { + return ch == quoteChar; + } + + private boolean isCommentStart(final int ch) { + return ch == commentStart; + } + + private boolean isMetaChar(final int ch) { + return ch == delimiter || + ch == escape || + ch == quoteChar || + ch == commentStart; + } + + @Override + public void close() throws IOException { + reader.close(); + } +} diff --git a/datastructures-csv/src/main/java/org/xbib/datastructures/csv/LookAheadReader.java b/datastructures-csv/src/main/java/org/xbib/datastructures/csv/LookAheadReader.java new file mode 100644 index 0000000..739f0ec --- /dev/null +++ b/datastructures-csv/src/main/java/org/xbib/datastructures/csv/LookAheadReader.java @@ -0,0 +1,87 @@ +package org.xbib.datastructures.csv; + +import java.io.BufferedReader; +import java.io.IOException; +import java.io.Reader; + +public class LookAheadReader extends BufferedReader implements Constants { + + private int lastChar = -2; + + private long eolCounter = 0; + + public LookAheadReader(Reader reader) { + super(reader); + } + + @Override + public int read() throws IOException { + final int current = super.read(); + if (current == CR || (current == LF && lastChar != CR)) { + eolCounter++; + } + lastChar = current; + return lastChar; + } + + int getLastChar() { + return lastChar; + } + + @Override + public int read(char[] buf, int offset, int length) throws IOException { + if (length == 0) { + return 0; + } + final int len = super.read(buf, offset, length); + if (len > 0) { + for (int i = offset; i < offset + len; i++) { + final char ch = buf[i]; + if (ch == LF) { + if (CR != (i > 0 ? buf[i - 1] : lastChar)) { + eolCounter++; + } + } else if (ch == CR) { + eolCounter++; + } + } + lastChar = buf[offset + len - 1]; + } else if (len == -1) { + lastChar = -1; + } + return len; + } + + @Override + public String readLine() throws IOException { + final String line = super.readLine(); + if (line != null) { + lastChar = LF; + eolCounter++; + } else { + lastChar = -1; + } + return line; + } + + int lookAhead() throws IOException { + super.mark(1); + final int c = super.read(); + super.reset(); + return c; + } + + long getCurrentLineNumber() { + if (lastChar == CR || lastChar == LF || lastChar == -2 || lastChar == -1) { + return eolCounter; + } + return eolCounter + 1; + } + + @Override + public void close() throws IOException { + lastChar = -1; + super.close(); + } + +} diff --git a/datastructures-csv/src/main/java/org/xbib/datastructures/csv/Parser.java b/datastructures-csv/src/main/java/org/xbib/datastructures/csv/Parser.java new file mode 100644 index 0000000..d576b98 --- /dev/null +++ b/datastructures-csv/src/main/java/org/xbib/datastructures/csv/Parser.java @@ -0,0 +1,112 @@ +package org.xbib.datastructures.csv; + +import java.io.Closeable; +import java.io.IOException; +import java.io.Reader; +import java.util.Iterator; +import java.util.LinkedList; +import java.util.List; +import java.util.NoSuchElementException; + +public class Parser implements Closeable, Iterable> { + + private final Lexer lexer; + + private final List row; + + private final Token reusableToken; + + public Parser(Reader reader) throws IOException { + lexer = new Lexer(new LookAheadReader(reader), ',', '\\', '"', '#', true, true); + row = new LinkedList<>(); + reusableToken = new Token(); + } + + public Parser(Reader reader, char sep) throws IOException { + lexer = new Lexer(new LookAheadReader(reader), sep, '\\', '"', '#', true, true); + row = new LinkedList<>(); + reusableToken = new Token(); + } + + public long getCurrentLineNumber() { + return lexer.getCurrentLineNumber(); + } + + @Override + public void close() throws IOException { + lexer.close(); + } + + @Override + public Iterator> iterator() { + return new Iterator<>() { + private List current; + + private List getNextRow() throws IOException { + return Parser.this.nextRow(); + } + + @Override + public boolean hasNext() { + if (current == null) { + try { + current = getNextRow(); + } catch (IOException e) { + throw new NoSuchElementException(e.getMessage()); + } + } + return current != null && !current.isEmpty(); + } + + @Override + public List next() { + if (current == null || current.isEmpty()) { + throw new NoSuchElementException(); + } + List list = current; + current = null; + return list; + } + + @Override + public void remove() { + throw new UnsupportedOperationException(); + } + }; + } + + protected List nextRow() throws IOException { + row.clear(); + StringBuilder sb = null; + do { + reusableToken.reset(); + lexer.nextToken(reusableToken); + String s = reusableToken.content.toString(); + switch (reusableToken.type) { + case TOKEN: + case EORECORD: + row.add(s); + break; + case EOF: + if (reusableToken.isReady) { + row.add(s); + } + break; + case INVALID: + throw new IOException("(line " + getCurrentLineNumber() + ") invalid parse sequence"); + case COMMENT: + if (sb == null) { + sb = new StringBuilder(); + } else { + sb.append(Constants.LF); + } + sb.append(reusableToken.content); + reusableToken.type = TokenType.TOKEN; + break; + default: + throw new IllegalStateException("unexpected token type: " + reusableToken.type); + } + } while (reusableToken.type == TokenType.TOKEN); + return row; + } +} diff --git a/datastructures-csv/src/main/java/org/xbib/datastructures/csv/Token.java b/datastructures-csv/src/main/java/org/xbib/datastructures/csv/Token.java new file mode 100644 index 0000000..c05ea05 --- /dev/null +++ b/datastructures-csv/src/main/java/org/xbib/datastructures/csv/Token.java @@ -0,0 +1,17 @@ +package org.xbib.datastructures.csv; + +public final class Token { + + TokenType type = TokenType.INVALID; + + StringBuilder content = new StringBuilder(); + + boolean isReady; + + public void reset() { + content.setLength(0); + type = TokenType.INVALID; + isReady = false; + } + +} diff --git a/datastructures-csv/src/main/java/org/xbib/datastructures/csv/TokenType.java b/datastructures-csv/src/main/java/org/xbib/datastructures/csv/TokenType.java new file mode 100644 index 0000000..3db4e16 --- /dev/null +++ b/datastructures-csv/src/main/java/org/xbib/datastructures/csv/TokenType.java @@ -0,0 +1,9 @@ +package org.xbib.datastructures.csv; + +public enum TokenType { + INVALID, + TOKEN, + EOF, + EORECORD, + COMMENT +} diff --git a/datastructures-csv/src/test/java/org/xbib/datastructures/csv/test/GeneratorTest.java b/datastructures-csv/src/test/java/org/xbib/datastructures/csv/test/GeneratorTest.java new file mode 100644 index 0000000..67f71a8 --- /dev/null +++ b/datastructures-csv/src/test/java/org/xbib/datastructures/csv/test/GeneratorTest.java @@ -0,0 +1,25 @@ +package org.xbib.datastructures.csv.test; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import org.junit.jupiter.api.Test; +import org.xbib.datastructures.csv.Generator; +import java.io.IOException; +import java.io.StringWriter; +import java.util.Arrays; + +public class GeneratorTest { + + @Test + public void test() throws IOException { + StringWriter writer = new StringWriter(); + Generator gen = new Generator(writer); + gen.keys(Arrays.asList("a", "b", "c")); + for (int i = 0; i < 1; i++) { + gen.write("val" + i); + gen.write("\"Hello, World\""); + gen.write("hey look a line seperator \n"); + } + gen.close(); + assertEquals("val0,\"\"\"Hello, World\"\"\",\"hey look a line seperator \n\"", writer.toString()); + } +} diff --git a/datastructures-csv/src/test/java/org/xbib/datastructures/csv/test/ParserTest.java b/datastructures-csv/src/test/java/org/xbib/datastructures/csv/test/ParserTest.java new file mode 100644 index 0000000..89b4039 --- /dev/null +++ b/datastructures-csv/src/test/java/org/xbib/datastructures/csv/test/ParserTest.java @@ -0,0 +1,85 @@ +package org.xbib.datastructures.csv.test; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNotNull; +import org.junit.jupiter.api.Test; +import org.xbib.datastructures.csv.Parser; +import java.io.BufferedReader; +import java.io.IOException; +import java.io.InputStream; +import java.io.InputStreamReader; +import java.nio.charset.StandardCharsets; +import java.util.List; + +public class ParserTest { + + @Test + public void testCommaSeparated() throws IOException { + InputStream in = getClass().getResourceAsStream("test.csv"); + int count = 0; + try (BufferedReader reader = new BufferedReader(new InputStreamReader(in, StandardCharsets.UTF_8)); + Parser csvParser = new Parser(reader)) { + for (List row : csvParser) { + count++; + } + } + assertEquals(2, count); + } + + @Test + public void testLargeFile() throws IOException { + InputStream in = getClass().getResourceAsStream("titleFile.csv"); + int count = 0; + try (BufferedReader reader = new BufferedReader(new InputStreamReader(in, StandardCharsets.UTF_8)); + Parser csvParser = new Parser(reader)) { + for (List row : csvParser) { + count++; + } + } + assertEquals(44447, count); + } + + @Test + public void testTabSeparated() throws IOException { + InputStream in = getClass().getResourceAsStream("2076831-X-web.txt"); + InputStreamReader r = new InputStreamReader(in, StandardCharsets.UTF_8); + BufferedReader reader = new BufferedReader(r); + // skip 3 lines + reader.readLine(); + reader.readLine(); + reader.readLine(); + String line; + while ((line = reader.readLine()) != null) { + String[] s = line.split("\\t"); + int i = 0; + String sigel = i < s.length ? s[i++] : ""; + String isil = i < s.length ? s[i++] : ""; + String name = i < s.length ? s[i++] : ""; // unused + String code1 = i < s.length ? s[i++] : ""; + String code2 = i < s.length ? s[i++] : ""; + String code3 = i < s.length ? s[i++] : ""; + String comment = i < s.length ? s[i++] : ""; + String firstDate = i < s.length ? s[i++] : ""; + String firstVolume = i < s.length ? s[i++] : ""; + String firstIssue = i < s.length ? s[i++] : ""; + String lastDate = i < s.length ? s[i++] : ""; + String lastVolume = i < s.length ? s[i++] : ""; + String lastIssue = i < s.length ? s[i++] : ""; + String movingWall = i < s.length ? s[i] : ""; + assertNotNull(sigel); + assertNotNull(isil); + assertNotNull(name); + assertNotNull(code1); + assertNotNull(code2); + assertNotNull(code3); + assertNotNull(comment); + assertNotNull(firstDate); + assertNotNull(firstVolume); + assertNotNull(firstIssue); + assertNotNull(lastDate); + assertNotNull(lastVolume); + assertNotNull(lastIssue); + assertNotNull(movingWall); + } + } +} diff --git a/datastructures-csv/src/test/resources/org/xbib/datastructures/csv/test/2076831-X-web.txt b/datastructures-csv/src/test/resources/org/xbib/datastructures/csv/test/2076831-X-web.txt new file mode 100644 index 0000000..838c680 --- /dev/null +++ b/datastructures-csv/src/test/resources/org/xbib/datastructures/csv/test/2076831-X-web.txt @@ -0,0 +1,615 @@ +ZDB-Id: 2076831-X +Treffer: 612 + +B 785 DE-B785 Berlin Abgeordnetenhaus k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Po 62 DE-Po62 Potsdam MPI Gravitationsphys. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +B 33 DE-B33 Potsdam Astrophysik k n 1998 117 0 0 0 +B 33 DE-B33 Potsdam Astrophysik k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Bv 2 DE-Bv2 Bremerhaven A.-Wegener-Inst. k p 2004 123 0 2012 131 0 +Bv 2 DE-Bv2 Bremerhaven A.-Wegener-Inst. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +D 161 DE-D161 Dresden Berufsakademie k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +D 275 DE-D275 Dresden EHS k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Gla 1 DE-Gla1 Glauchau Berufsakademie k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Hed 2 DE-Hed2 Heidenheim DHBW Bibliothek k p 2003 122 0 0 0 +Hed 2 DE-Hed2 Heidenheim DHBW Bibliothek k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Hed 2 DE-Hed2 Heidenheim DHBW Bibliothek k p 1998 117 0 2014 133 0 +Bn 3 DE-Bn3 Bautzen Berufsakademie k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Lör 2 DE-Loer2 Lörrach Berufsakademie k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Lör 2 DE-Loer2 Lörrach Berufsakademie k p 2003 122 0 0 0 +B 43 DE-B43 Berlin BAM k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Mh 35 DE-Mh35 Mannheim Berufsakademie k p 2003 122 0 0 0 +Mh 35 DE-Mh35 Mannheim Berufsakademie k p 1998 117 0 2014 133 0 +Mh 35 DE-Mh35 Mannheim Berufsakademie k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +941 DE-941 Mosbach Duale Hochschule k p 2003 122 0 0 0 +941 DE-941 Mosbach Duale Hochschule k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Rs 1 DE-Rs1 Riesa Berufsakademie k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Rav 1 DE-Rav1 Ravensburg Berufsakademie k p 2003 122 0 0 0 +Rav 1 DE-Rav1 Ravensburg Berufsakademie k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Rav 1 DE-Rav1 Ravensburg Berufsakademie k p 1998 117 0 2014 133 0 +Vil 2 DE-Vil2 Villingen-S. Berufsakad. k p 2003 122 0 0 0 +Vil 2 DE-Vil2 Villingen-S. Berufsakad. k p 1998 117 0 2014 133 0 +B 4 DE-B4 Berlin AdW B k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +H 140 DE-H140 Hamburg vTI, FIZ Fischerei k p 1857 1 1 0 0 +H 140 DE-H140 Hamburg vTI, FIZ Fischerei k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +B 1512 DE-B1512 Bonn BfArM k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Ki 29 DE-Ki29 Kiel MRI, BID k p 1857 1 1 0 0 +Ka 51 DE-Ka51 Karlsruhe MRI, BID k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Ku 1 DE-Ku1 Kulmbach MRI, BID k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Ka 51 DE-Ka51 Karlsruhe MRI, BID k p 1857 1 1 0 0 +Det 2 DE-Det2 Detmold MRI, BID k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Ku 1 DE-Ku1 Kulmbach MRI, BID k p 1857 1 1 0 0 +Ki 29 DE-Ki29 Kiel MRI, BID k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Det 2 DE-Det2 Detmold MRI, BID k p 1857 1 1 0 0 +H 105 DE-H105 Hamburg vTI, FIZ Wald k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +H 105 DE-H105 Hamburg vTI, FIZ Wald k p 1857 1 1 0 0 +208 DE-208 Karlsruhe BGH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +B 12 DE-B12 Berlin BI Risikobewertung k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +B 12 DE-B12 Berlin BI Risikobewertung k p 1857 1 1 0 0 +B 1509 DE-B1509 Bonn BI f. Berufsbildung k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Lan 1 DE-Lan1 Landau UB k p 1997 0 0 0 0 +Lan 1 DE-Lan1 Landau UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Kob 7 DE-Kob7 Koblenz UB k p 1997 0 0 0 0 +Kob 7 DE-Kob7 Koblenz UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +715 DE-715 Oldenburg IBIT k n 1997 116 0 0 0 +715 DE-715 Oldenburg IBIT k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +31 DE-31 Karlsruhe LB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +12 DE-12 München BSB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +12 DE-12 München BSB k 1998 117 0 0 0 +12 DE-12 München BSB k 2002 121 0 2003 122 0 +82 DE-82 Aachen BTH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Bo 408 DE-Bo408 Bonn Stiftung caesar k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +D 267 DE-D267 Dresden MPI Mol.Zellbiol. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +D 210 DE-D210 Dresden MPI Chem. Physik k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +982 DE-982 Wadern IBF für Informatik WGL k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +M 491 DE-M491 München ArchäologInst k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Ha 2 DE-Ha2 Halle/S Dt. Akad. Naturfor. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +B 1503 DE-B1503 Bonn Inst. Entwicklpol. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Lg 3 DE-Lg3 Ludwigsburg Dt.-Franz. Inst. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Y 7 DE-Y7 Paris DFK k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +90/8 DE-90-8 Fachbibliothek der Dualen Hochschule Baden-Württemberg Karlsruhe (FBD k p 2003 122 0 0 0 +Po 6 DE-Po6 Nuthetal/Bergh.-Rehbr.DIfE WGL k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +B 1547 DE-B1547 Berlin InstMenschenrechte k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +B 554 DE-B554 Berlin DIW WGL k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Mar 1 DE-Mar1 Marbach Dt. Literaturarchiv k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +210 DE-210 München Deutsches Museum WGL k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +B 23 DE-B23 Offenbach Meteorolog. Bibl. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +201 DE-201 München PatAmt k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +B 1531 DE-B1531 Berlin Dt. RheumaforschZ k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +1126 DE-1126 Idstein HS Fresenius k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +1126 DE-1126 Idstein HS Fresenius k p n 1998 117 0 0 0 +1052 DE-1052 Nürnberg Evang. HS k 1998 117 0 0 0 +521 DE-521 Frankfurt/O UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Dm 1 DE-Dm1 Dortmund MPI f. mol. Physiol. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +H 256 DE-H256 Hamburg Führungsakad.Bundesw. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +253 DE-253 Braunschweig vTI,FIZ LändlRäum k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +253 DE-253 Braunschweig vTI,FIZ LändlRäum k p 1857 1 1 0 0 +90/4 DE-90-4 Karlsruhe KIT-B./FB TuW k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +90/4 DE-90-4 Karlsruhe KIT-B./FB TuW k p 2003 122 0 0 0 +90/4 DE-90-4 Karlsruhe KIT-B./FB TuW k p 1998 117 0 2014 133 0 +R 48 DE-R48 Dummerstorf Inst Nutztierbiol. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Bo 133 DE-Bo133 Bonn F.-Ebert-Stiftung k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +944 DE-944 Aalen HS k p 1998 117 0 2014 133 0 +944 DE-944 Aalen HS k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +944 DE-944 Aalen HS k p 2003 122 0 0 0 +A 96 DE-A96 Aachen FHB k n 0 0 2014 0 +A 96 DE-A96 Aachen FHB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +1043 DE-1043 Aschaffenburg HS k 1998 117 0 0 0 +1102 DE-1102 Ansbach HS k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +1047 DE-1047 Weiden FH Amberg k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +1046 DE-1046 Amberg/Oberpfalz HS k 1998 117 0 0 0 +1047 DE-1047 Weiden FH Amberg k 1998 117 0 0 0 +1046 DE-1046 Amberg/Oberpfalz HS k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +949 DE-949 Biberach HBC k p 2003 122 0 0 0 +949 DE-949 Biberach HBC k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +949 DE-949 Biberach HBC k p 1998 117 0 2014 133 0 +858 DE-858 Coburg FH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +858 DE-858 Coburg FH k 1998 117 0 0 0 +Dm 13 DE-Dm13 Dortmund FH k n 0 0 2014 0 +Dm 13 DE-Dm13 Dortmund FH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +1010 DE-1010 Gelsenkirchen FH k n 0 0 2014 0 +1010 DE-1010 Gelsenkirchen FH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +1051 DE-1051 Hof HS k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Bi 10 DE-Bi10 Bielefeld FH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Bi 10 DE-Bi10 Bielefeld FH k n 0 0 2014 0 +573 DE-573 Ingolstadt HS k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +573 DE-573 Ingolstadt HS k 1998 117 0 0 0 +832 DE-832 Köln FH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +859 DE-859 Kempten FH k 1998 117 0 0 0 +859 DE-859 Kempten FH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +860 DE-860 Landshut FH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +860 DE-860 Landshut FH k 1998 117 0 0 0 +836 DE-836 Münster FH k n 0 0 2014 0 +836 DE-836 Münster FH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +1049 DE-1049 Neu-Ulm FH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Ofb 1 DE-Ofb1 Offenburg HS k p 2003 122 0 0 0 +Ofb 1 DE-Ofb1 Offenburg HS k p 1998 117 0 2014 133 0 +Ofb 1 DE-Ofb1 Offenburg HS k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +898 DE-898 Regensburg HSBR k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +898 DE-898 Regensburg HSBR k 1998 117 0 0 0 +522 DE-522 Brandenburg FH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +861 DE-861 Rosenheim HSB k 1998 117 0 0 0 +1044 DE-1044 St. Augustin FH k n 0 0 2014 0 +1044 DE-1044 St. Augustin FH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +862 DE-862 Schweinfurt FH Würzburg k 1998 117 0 0 0 +863 DE-863 Würzburg FH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +863 DE-863 Würzburg FH k 1998 117 0 0 0 +862 DE-862 Schweinfurt FH Würzburg k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Dü 62 DE-Due62 Düsseldorf FH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Dü 62 DE-Due62 Düsseldorf FH k n 0 0 2014 0 +1050 DE-1050 Deggendorf HochschulB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +546 DE-546 Erfurt FH k p n 1998 117 1 0 0 +546 DE-546 Erfurt FH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +946 DE-946 Frankfurt/M FH k p n 1998 117 0 0 0 +946 DE-946 Frankfurt/M FH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +66 DE-66 Fulda HLB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +66 DE-66 Fulda HLB k p n 1998 117 0 0 0 +Fn 1/VS DE-Fn1-VS Villingen-S. HS Furtwangen k p 2003 122 0 0 0 +Fn 1/VS DE-Fn1-VS Villingen-S. HS Furtwangen k p 1998 117 0 2014 133 0 +Fn 1 DE-Fn1 Furtwangen HS k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Fn 1/TUT DE-Fn1-TUT Tuttlingen HS Furtwangen k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Fn 1 DE-Fn1 Furtwangen HS k p 2003 122 0 0 0 +Fn 1/VS DE-Fn1-VS Villingen-S. HS Furtwangen k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Fn 1 DE-Fn1 Furtwangen HS k p 1998 117 0 2014 133 0 +Fn 1/TUT DE-Fn1-TUT Tuttlingen HS Furtwangen k p 2003 122 0 0 0 +Fn 1/TUT DE-Fn1-TUT Tuttlingen HS Furtwangen k p 1998 117 0 2014 133 0 +974 DE-974 Gießen FH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +974 DE-974 Gießen FH k p n 1998 117 0 0 0 +960/1 DE-960-1 Hannover HS ZentralB Linden k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +960/1 DE-960-1 Hannover HS ZentralB Linden k n 1997 116 0 0 0 +840 DE-840 Heilbronn HS k p 2003 122 0 0 0 +840 DE-840 Heilbronn HS k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +840 DE-840 Heilbronn HS k p 1998 117 0 2014 133 0 +B 113 DE-B113 Berlin F.-Haber-Inst. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +J 59 DE-J59 Jena FH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Ki 95 DE-Ki95 Kiel FH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Ki 95 DE-Ki95 Kiel FH k p n 1998 117 1 0 0 +Kon 4 DE-Kon4 Konstanz HS Techn.Wirt.Gestalt k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Kon 4 DE-Kon4 Konstanz HS Techn.Wirt.Gestalt k p 2003 122 0 0 0 +Kon 4 DE-Kon4 Konstanz HS Techn.Wirt.Gestalt k p 1998 117 0 2014 133 0 +1147 DE-1147 Ludwigsburg HVF k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +1147 DE-1147 Ludwigsburg HVF k p 2003 122 0 0 0 +743 DE-743 Lemgo HS OWL S(KIM) k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +743 DE-743 Lemgo HS OWL S(KIM) k n 0 0 2014 0 +M 347 DE-M347 München HMB k 1998 117 0 0 0 +M 347 DE-M347 München HMB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +953 DE-953 Mannheim Hochschule k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +953 DE-953 Mannheim Hochschule k p 1998 117 0 2014 133 0 +953 DE-953 Mannheim Hochschule k p 2003 122 0 0 0 +542 DE-542 Merseburg FH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +542 DE-542 Merseburg FH k p n 1998 117 1 0 0 +92 DE-92 Nürnberg Ohm-HSB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +92 DE-92 Nürnberg Ohm-HSB k 1998 117 0 0 0 +519 DE-519 Neubrandenburg HS k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +755 DE-755 Emden FH Emden/Leer k n 1997 116 0 0 0 +755 DE-755 Emden FH Emden/Leer k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +959 DE-959 Osnabrück HS ZentralB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +959 DE-959 Osnabrück HS ZentralB k n 1997 116 0 0 0 +525 DE-525 Potsdam FH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Rt 2 DE-Rt2 Reutlingen HSB k p 1998 117 0 2014 133 0 +Rt 2 DE-Rt2 Reutlingen HSB k p 2003 122 0 0 0 +Rt 2 DE-Rt2 Reutlingen HSB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Shm 2 DE-Shm2 Schmalkalden FH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +943 DE-943 Ulm Hochschule k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +943 DE-943 Ulm Hochschule k p 1998 117 0 2014 133 0 +943 DE-943 Ulm Hochschule k p 2003 122 0 0 0 +1029 DE-1029 Triesdorf HSWT k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +1028 DE-1028 Freising HSWT k 1998 117 0 0 0 +1028 DE-1028 Freising HSWT k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +1029 DE-1029 Triesdorf HSWT k 1998 117 0 0 0 +916 DE-916 Wolfenbüttel FH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +916 DE-916 Wolfenbüttel FH k n 1997 116 0 0 0 +1117 DE-1117 Worms FH k p 1997 0 0 0 0 +1117 DE-1117 Worms FH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +897/1 DE-897-1 Elsfleth Jade Hochschule k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +839 DE-839 Wilhelmshaven Jade Hochschule k n 1997 116 0 0 0 +897 DE-897 Oldenburg Jade Hochschule k n 1997 116 0 0 0 +897/1 DE-897-1 Elsfleth Jade Hochschule k n 1997 116 0 0 0 +839 DE-839 Wilhelmshaven Jade Hochschule k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +897 DE-897 Oldenburg Jade Hochschule k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Stg 191 DE-Stg191 Stuttgart FHG:IAO k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +188/e DE-188-e Berlin FU E-Medien k p 1998 117 0 0 0 +188/e DE-188-e Berlin FU E-Medien k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +188 DE-188 Berlin UBFU k p 1998 117 0 0 0 +188 DE-188 Berlin UBFU k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +708 DE-708 Hagen FernUB k n 0 0 2014 0 +708 DE-708 Hagen FernUB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Ki 131 DE-Ki131 Kiel FA Bundesw.f.Wasserschall k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Jül 1 DE-Juel1 Jülich ForschZ k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Jül 1 DE-Juel1 Jülich ForschZ k p 2003 122 0 0 0 +Ka 85 DE-Ka85 Karlsruhe KIT Campus Nord k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +D 120 DE-D120 Dresden HZDR k p 2004 123 0 2012 131 0 +D 120 DE-D120 Dresden HZDR k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Bs 80 DE-Bs80 Braunschweig HZI k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Bs 80 DE-Bs80 Braunschweig HZI k p 2004 123 0 2012 131 0 +Bs 78 DE-Bs78 Braunschweig Georg-Eckert-Inst k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +H 221 DE-H221 Hamburg GIGA FB Afrika k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +H 222 DE-H222 Hamburg GIGA FB Asien k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Gt 1 DE-Gt1 Geesthacht HZG k p 2004 123 0 2012 131 0 +Gt 1 DE-Gt1 Geesthacht HZG k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Ds 200 DE-Ds200 Darmstadt GSI k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +35 DE-35 Hannover NLB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +185 DE-185 Leipzig Inst. Länderkunde WGL k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +18/285 DE-18-285 Hamburg FB Design k p n 1998 117 1 0 0 +18/287 DE-18-287 Hamburg FB Soziale Arbeit k p n 1998 117 1 0 0 +18/302 DE-18-302 Hamburg HAW FB Technik Wirtsch k p n 1998 117 1 0 0 +18/284 DE-18-284 Hamburg FB Life Sciences k p n 1998 117 1 0 0 +Hil 3/1 DE-Hil3-1 Göttingen HAWK Bibliothek N k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Hil 3/1 DE-Hil3-1 Göttingen HAWK Bibliothek N k n 1997 116 0 0 0 +753 DE-753 Esslingen HS k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +972 DE-972 Göppingen HS Esslingen k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +753 DE-753 Esslingen HS k p 1998 117 0 2014 133 0 +972 DE-972 Göppingen HS Esslingen k p 1998 117 0 2014 133 0 +753 DE-753 Esslingen HS k p 2003 122 0 0 0 +972 DE-972 Göppingen HS Esslingen k p 2003 122 0 0 0 +551 DE-551 Magdeburg FHB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +551 DE-551 Magdeburg FHB k p 1998 117 1 0 0 +747 DE-747 Weingarten HSB k p 2003 122 0 0 0 +747 DE-747 Weingarten HSB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +747 DE-747 Weingarten HSB k p 1998 117 0 2014 133 0 +1373 DE-1373 Hamburg HC,Uni Baukunst k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Fl 3 DE-Fl3 Flensburg UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +958 DE-958 Stuttgart HdM Nobelstraße k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +958 DE-958 Stuttgart HdM Nobelstraße k p 2003 122 0 0 0 +Y 2 DE-Y2 Rom Hertziana MPI k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Po 75 DE-Po75 Potsdam Filmuniversität k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +1866 DE-1866 Bochum HSG k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +1866 DE-1866 Bochum HSG k n 0 0 2014 0 +955 DE-955 Rottenburg HS Forstw k p 1998 117 0 2014 133 0 +955 DE-955 Rottenburg HS Forstw k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +955 DE-955 Rottenburg HS Forstw k p 2003 122 0 0 0 +1033 DE-1033 Stuttgart HS Technik k p 1998 117 0 2014 133 0 +1033 DE-1033 Stuttgart HS Technik k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +1033 DE-1033 Stuttgart HS Technik k p 2003 122 0 0 0 +950 DE-950 Nürtingen HS Wirts.Umwelt k p 2003 122 0 0 0 +1090 DE-1090 Geislingen HS Wirtsch.Nürt.-G. k p 2003 122 0 0 0 +950 DE-950 Nürtingen HS Wirts.Umwelt k p 1998 117 0 2014 133 0 +950 DE-950 Nürtingen HS Wirts.Umwelt k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +1090 DE-1090 Geislingen HS Wirtsch.Nürt.-G. k p 1998 117 0 2014 133 0 +1090 DE-1090 Geislingen HS Wirtsch.Nürt.-G. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +43 DE-43 Wiesbaden LB k p n 1998 117 0 0 0 +43 DE-43 Wiesbaden LB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +B 1505 DE-B1505 Berlin Helmholtz-Zentrum k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +B 1505 DE-B1505 Berlin Helmholtz-Zentrum k p 2004 123 0 2012 131 0 +L 152 DE-L152 Leipzig HS Musik k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +M 29 DE-M29 München, HS f. Musik u.Theater k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +1393 DE-1393 Mülheim/Ruhr HS Ruhr West k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +991 DE-991 Sigmaringen HS Albstadt-Sigmar k p 1998 117 0 2014 133 0 +991 DE-991 Sigmaringen HS Albstadt-Sigmar k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +991 DE-991 Sigmaringen HS Albstadt-Sigmar k p 2003 122 0 0 0 +Kt 1 DE-Kt1 Köthen FH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +751 DE-751 Karlsruhe HSB k p 1998 117 0 2014 133 0 +751 DE-751 Karlsruhe HSB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +751 DE-751 Karlsruhe HSB k p 2003 122 0 0 0 +747 DE-747 Weingarten HSB k p 1998 117 0 2014 133 0 +747 DE-747 Weingarten HSB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +747 DE-747 Weingarten HSB k p 2003 122 0 0 0 +B 1570 DE-B1570 Berlin HertieSchool k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +527 DE-527 Wernigerode HS Harz k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Wis 1 DE-Wis1 Wismar HS k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +829 DE-829 Mönchengladbach HS Niederrhein k n 0 0 2014 0 +829 DE-829 Mönchengladbach HS Niederrhein k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +523 DE-523 Berlin HTW k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +520 DE-520 Dresden HS TuW k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +L 189 DE-L189 Leipzig FH HTWK k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Mit 1 DE-Mit1 Mittweida HS k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Sa 16 DE-Sa16 Saarbrücken HTW/Goebenstr k p 1997 0 0 0 0 +Sa 16 DE-Sa16 Saarbrücken HTW/Goebenstr k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +206 H DE-206H Hamburg ZBW WGL k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Zi 4 DE-Zi4 Zittau/Görlitz HS k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +N 38 DE-N38 Nürnberg Fachb.Arbeitsmarktfor k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Mh 39 DE-Mh39 Mannheim IDS WGL k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Dm 21 DE-Dm21 Dortmund IfADo WGL k n 1998 117 0 0 0 +Dm 21 DE-Dm21 Dortmund IfADo WGL k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Ki 109 DE-Ki109 Kiel GEOMAR Bibl.West k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Ki 130 DE-Ki130 Kiel GEOMAR Bibl.Ost k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +M 352 DE-M352 München Inst.f.Zeitgeschichte k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +B 259 DE-B259 Berlin Gewässerökologie WGL k n 1998 117 0 0 0 +B 259 DE-B259 Berlin Gewässerökologie WGL k n 1998 117 0 0 0 +B 259 DE-B259 Berlin Gewässerökologie WGL k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +291/415 DE-291-415 Saarbrücken INM WGL k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Wa 1 DE-Wa1 Rostock Inst.f.Ostseefor. WGL k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Stg 183 DE-Stg183 Stuttgart Fraunhofer IPA k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Ha 93 DE-Ha93 Halle/S Pflanzenbiochemie k n 1998 117 0 0 0 +Ha 93 DE-Ha93 Halle/S Pflanzenbiochemie k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Ha 93 DE-Ha93 Halle/S Pflanzenbiochemie k n 1998 117 0 0 0 +Gat 1 DE-Gat1 Gatersleben Pflanzengenetik k n 1998 117 0 0 0 +Gat 1 DE-Gat1 Gatersleben Pflanzengenetik k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +M 382 DE-M382 München MPIs Im.GüterR/SteuerR k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Ki 128 DE-Ki128 Kiel IPN k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +1826 DE-1826 Berlin Bibliothek der IPU k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +B 567 DE-B567 Erkner IRS WGL k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +918 DE-918 St.Augustin K-Adenauer-Stiftg. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Ha 125 DE-Ha125 Halle/S HS Kunst k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Y 3 DE-Y3 Florenz Kunsthist. Inst. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +1032 DE-1032 Köln Kath. HS k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +90 DE-90 Karlsruhe KIT-Bibliothek k p 1857 1 1 0 0 +Ka 85 DE-Ka85 Karlsruhe KIT Campus Nord k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Ka 93 DE-Ka93 Karlsruher Institut für Technologie, KIT-Archiv k p 1998 117 0 2014 133 0 +90 DE-90 Karlsruhe KIT-Bibliothek k p 2003 122 0 0 0 +Ka 85 DE-Ka85 Karlsruhe KIT Campus Nord k p 1857 1 1 0 0 +Ka 93 DE-Ka93 Karlsruher Institut für Technologie, KIT-Archiv k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Ka 85 DE-Ka85 Karlsruhe KIT Campus Nord k p 2003 122 0 0 0 +Ka 93 DE-Ka93 Karlsruher Institut für Technologie, KIT-Archiv k p 1857 1 1 0 0 +Ka 93 DE-Ka93 Karlsruher Institut für Technologie, KIT-Archiv k p 2003 122 0 0 0 +90 DE-90 Karlsruhe KIT-Bibliothek k p 1998 117 0 2014 133 0 +90 DE-90 Karlsruhe KIT-Bibliothek k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Ka 85 DE-Ka85 Karlsruhe KIT Campus Nord k p 1998 117 0 2014 133 0 +70 DE-70 Coburg LB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +33 DE-33 Schwerin LBMV k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +45 DE-45 Oldenburg LB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Ma 45 DE-Ma45 Magdeburg Inst. Neurobiologie k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +51 DE-51 Detmold LB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +578/M DE-578-M Berlin Charité Med.Bib.Magazin k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +578/821 DE-578-821 Berlin Charité Med.Bib. ZMK k n 1857 1 1 0 0 +578/M DE-578-M Berlin Charité Med.Bib.Magazin k n 1857 1 1 0 0 +578/e DE-578-e Berlin Charité Med.Bibl.eZsn k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +578/3 DE-578-3 Berlin Charité Med. Bibl. CVK k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +578/e DE-578-e Berlin Charité Med.Bibl.eZsn k n 1857 1 1 0 0 +578/821 DE-578-821 Berlin Charité Med.Bib. ZMK k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +578/3 DE-578-3 Berlin Charité Med. Bibl. CVK k n 1857 1 1 0 0 +Hag 4/4 DE-Hag4-4 Soest FH Südwestfalen k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Hag 4/2 DE-Hag4-2 Iserlohn FH Südwestfalen k n 0 0 2014 0 +Hag 4/E DE-Hag4-E Hagen FH Südwestf.E-Ressourcen k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Hag 4/4 DE-Hag4-4 Soest FH Südwestfalen k n 0 0 2014 0 +Hag 4/3 DE-Hag4-3 Meschede FH Südwestfalen k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Hag 4/E DE-Hag4-E Hagen FH Südwestf.E-Ressourcen k n 0 0 2014 0 +Hag 4 DE-Hag4 Hagen FH Südwestfalen k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Hag 4/3 DE-Hag4-3 Meschede FH Südwestfalen k n 0 0 2014 0 +Hag 4/2 DE-Hag4-2 Iserlohn FH Südwestfalen k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Hag 4 DE-Hag4 Hagen FH Südwestfalen k n 0 0 2014 0 +B 16 DE-B16 Berlin Museum für Naturkunde k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Frei 3c DE-Frei3c Oberwolfach Math. FI k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +354 DE-354 Hannover MedHS k n 1997 116 0 0 0 +354 DE-354 Hannover MedHS k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Trs 1 DE-Trs1 Trossingen HS Musik k p 2003 122 0 0 0 +B 787 DE-B787 Berlin MPI Molek.Genetik k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Lin 1b DE-Lin1b Katlenburg MPI Sonnensystem k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +B 161a DE-B161a Garching AstroB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Frei 85 DE-Frei85 Freiburg MPI Ausländ.Recht k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Star 1 DE-Star1 Seewiesen MPI Ornithologie k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +2177 DE-2177 Frankfurt/M MPI f.emp.Ästhetik k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +He 81 DE-He81 Heidelberg MPI f. Astronomie k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +B 1532 DE-B1532 Berlin MPI Bildungsforschung k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Gö 116 DE-Goe116 Göttingen Otto-Hahn-B k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Mz 4 DE-Mz4 Mainz MPI Chemie k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Ma 54 DE-Ma54 Magdeburg MPI DKTS k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Dü 57 DE-Due57 Düsseldorf MPI Eisenforschung k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Ha 163 DE-Ha163 Halle/S. MPI Ethnol. Forschung k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Gö 134 DE-Goe134 Göttingen MPI exp. Med. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +F 137 DE-F137 Frankfurt/M MPI Rechtgesch. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +J 152 DE-J152 Jena MPI Menschheitsgeschichte k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Kn 188 DE-Kn188 Köln MPI Gesellschaftsforsch. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Bo 146 DE-Bo146 Bonn MPI Radioastronomie k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Gö 164 DE-Goe164 Göttingen MPI Erforsch.multi. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Sa 18 DE-Sa18 Saarbrücken MPI Informatik k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Frei 106 DE-Frei106 Freiburg MPI f. Immunbiologie k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Po 81 DE-Po81 Potsdam MPI Grenzflächenforsch k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +He 74 DE-He74 Heidelberg MPI Kernphysik k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Pn 1 DE-Pn1 Plön MPI Evolutionsbiologie k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Bo 206 DE-Bo206 Bonn MPI Mathematik k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +He 43 DE-He43 Heidelberg MPI Med.Forschung k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Bre 11 DE-Bre11 Bremen MPI Marine Mikrobiol. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +L 323 DE-L323 Leipzig MPI Mathematik Naturw. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Po 80 DE-Po80 Potsdam MPI Pflanzenphysiolog. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Ha 94 DE-Ha94 Halle/S MPI Mikrostrukturph. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +L 322 DE-L322 Leipzig MPI Neurowiss. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Mz 116 DE-Mz116 Mainz MPI Polymerforschung k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Nau 1 DE-Nau1 Bad Nauheim MPI Herz/Lungen k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Y 4 DE-Y4 Nijmegen MPI Psycholinguistik k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +M 359 DE-M359 Garching MPI Plasmaphysik k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +B 212 DE-B212 Hamburg MPI IntPrivatrecht k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +M 477 DE-M477 München MPI Sozialrecht k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +B 107 DE-B107 Tübingen MP-Haus k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Mb 105 DE-Mb105 Marburg MPI f. terre Mikrob. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +B 208 DE-B208 Heidelberg MPI Völkerrecht k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Vol 1 DE-Vol1 Köln MPI Züchtungsforschung k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Bo 407 DE-Bo407 Bonn MPI Gemeinschaftsgüter k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +M 484 DE-M484 Garching MPI Quantenoptik k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Mh 31 DE-Mh31 Mannheim HS Musik k p 2003 122 0 0 0 +1933 DE-1933 Mannheim Popakademie k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Frei 129 DE-Frei129 Freiburg PH k p 2003 122 0 0 0 +Frei 129 DE-Frei129 Freiburg PH k p 1998 117 0 2014 133 0 +Frei 129 DE-Frei129 Freiburg PH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +752 DE-752 Schwäbisch Gmünd PH k p 2003 122 0 0 0 +752 DE-752 Schwäbisch Gmünd PH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +He 76 DE-He76 Heidelberg PH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +He 76 DE-He76 Heidelberg PH k p 1998 117 0 2014 133 0 +He 76 DE-He76 Heidelberg PH k p 2003 122 0 0 0 +Lg 1 DE-Lg1 Ludwigsburg PH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Lg 1 DE-Lg1 Ludwigsburg PH k p 2003 122 0 0 0 +D 206 DE-D206 Dresden MPI Phys.komplex.Syst. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +107 DE-107 Speyer Pfälzische LB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +107 DE-107 Speyer Pfälzische LB k p 1997 0 0 0 0 +B 106 DE-B106 Berlin R. Koch-Inst k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +929 DE-929 Koblenz LB k p 1997 0 0 0 0 +929 DE-929 Koblenz LB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +294 DE-294 Bochum UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +36 DE-36 Mainz StBi k p 1997 0 0 0 0 +36 DE-36 Mainz StBi k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +150 DE-150 Neuburg/Donau SB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +14 DE-14 Dresden SLUB, ZB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Stg 265 DE-Stg265 Stuttgart Mus.f.Naturkunde k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +L 229 DE-L229 Leipzig Berufsakademie k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +155 DE-155 Regensburg SB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +282 DE-282 Wiesbaden StaBA k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +7 DE-7 Göttingen SUB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +7 DE-7 Göttingen SUB k n 1998 117 0 0 0 +18 DE-18 Hamburg SUB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +18 DE-18 Hamburg SUB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1998 117 1 0 0 +291 DE-291 Saarbrücken SULB k p 1997 0 0 0 0 +291 DE-291 Saarbrücken SULB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +37 DE-37 Augsburg SuStB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +B 768 DE-B768 Berlin Technische FH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +B 768 DE-B768 Berlin Technische FH k n 1857 1 1 0 0 +526 DE-526 Wildau TH k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +27 DE-27 Jena UuLB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +95 DE-95 Hannover TierHS k n 1997 116 0 0 0 +95 DE-95 Hannover TierHS k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Wim 7 DE-Wim7 Weimar TLDA k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +83 DE-83 Berlin UBTU k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +105 DE-105 Freiberg TU BA k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +84 DE-84 Braunschweig UB k n 1997 116 0 0 0 +84 DE-84 Braunschweig UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Co 1 DE-Co1 Cottbus BTU k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Ch 1 DE-Ch1 Chemnitz UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +17 DE-17 Darmstadt ULB k p n 1998 117 0 0 0 +17 DE-17 Darmstadt ULB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +830 DE-830 Hamburg TU k p Nur für den persönlichen Gebrauch oder für wissenschaftliche, Bildungs- oder Forschungszwecke, nicht jedoch zu gewerblichen Zwecken. 1998 117 1 0 0 +830 DE-830 Hamburg TU k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +91 S DE-91S München TU/TeilB Straubing k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +M 49 DE-M49 Freising TU München/Weihenst k 1998 117 0 0 0 +M 49 DE-M49 Freising TU München/Weihenst k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +91 DE-91 München UBTU k 1998 117 0 0 0 +91 G DE-91G München TU/TeilB Garching k 1998 117 0 0 0 +91 DE-91 München UBTU k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +91 S DE-91S München TU/TeilB Straubing k 1998 117 0 0 0 +91 G DE-91G München TU/TeilB Garching k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +384 DE-384 Augsburg UB k 1998 117 0 0 0 +384 DE-384 Augsburg UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +473 DE-473 Bamberg UB k 1998 117 0 0 0 +473 DE-473 Bamberg UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +703 DE-703 Bayreuth UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +703 DE-703 Bayreuth UB k 1998 117 0 0 0 +361 DE-361 Bielefeld UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +361 DE-361 Bielefeld UB k n 0 0 2014 0 +Wim 2 DE-Wim2 Weimar UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +104 DE-104 Clausthal-Z. UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +104 DE-104 Clausthal-Z. UB k n 1997 116 0 0 0 +290 DE-290 Dortmund UB k n 0 0 2014 0 +290 DE-290 Dortmund UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +464 DE-464 Duisburg UB k n 0 0 2014 0 +464 DE-464 Duisburg UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +824 DE-824 Eichstätt UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +945 DE-945 Ingolstadt UB Eichstätt/Wirt. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +N 2 DE-N2 Nürnberg WSZB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +29 DE-29 Erlangen-N UB k 1998 117 0 0 0 +N 32 DE-N32 Nürnberg UB Erlangen-N/Erzwiss k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +N 2 DE-N2 Nürnberg WSZB k 1998 117 0 0 0 +29 T DE-29T Erlangen-N UB Technik/Naturw. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +N 32 DE-N32 Nürnberg UB Erlangen-N/Erzwiss k 1998 117 0 0 0 +29 T DE-29T Erlangen-N UB Technik/Naturw. k 1998 117 0 0 0 +29 DE-29 Erlangen-N UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +F 21 DE-F21 Frankfurt/M Med. HauptBi k p n 1998 117 0 0 0 +30 DE-30 Frankfurt/M UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +F 21 DE-F21 Frankfurt/M Med. HauptBi k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +30 DE-30 Frankfurt/M UB k p n 1998 117 0 0 0 +25 DE-25 Freiburg UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +25 DE-25 Freiburg UB k p 2003 122 0 0 0 +25 DE-25 Freiburg UB k p 1998 117 0 2014 133 0 +26 DE-26 Gießen UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +26 DE-26 Gießen UB k p n 1998 117 0 0 0 +9 DE-9 Greifswald UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +16 DE-16 Heidelberg UB k p 2003 122 0 0 0 +16 DE-16 Heidelberg UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +16 DE-16 Heidelberg UB k p 1998 117 0 2014 133 0 +Hil 2 DE-Hil2 Hildesheim UB k n 1997 116 0 0 0 +Hil 2 DE-Hil2 Hildesheim UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +841 DE-841 Lübeck ZHB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +100 DE-100 Stuttgart-Hoh. KIM k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +100 DE-100 Stuttgart-Hoh. KIM k p 2003 122 0 0 0 +11/10 DE-11-10 Berlin UBHU, Elektron. Res. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +11/10 DE-11-10 Berlin UBHU, Elektron. Res. k n 1857 1 1 0 0 +11 DE-11 Berlin UB Humboldt k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +11 DE-11 Berlin UB Humboldt k n 1857 1 1 0 0 +Ilm 1 DE-Ilm1 Ilmenau UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +8 DE-8 Kiel UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +8 DE-8 Kiel UB k p n 1998 117 1 0 0 +34 DE-34 Kassel UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +34 DE-34 Kassel UB k p n 1998 117 0 0 0 +386 DE-386 Kaiserslautern UB k p 1997 0 0 0 0 +386 DE-386 Kaiserslautern UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +352 DE-352 Konstanz UB k p 1998 117 0 2014 133 0 +352 DE-352 Konstanz UB k p 2003 122 0 0 0 +352 DE-352 Konstanz UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +15 DE-15 Leipzig UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +15/292 DE-15-292 Leipzig ZB Medizin k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Lün 4 DE-Luen4 Lüneburg UB k n 1997 116 0 0 0 +Lün 4 DE-Luen4 Lüneburg UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +19 DE-19 München UB k 1998 117 0 0 0 +19 DE-19 München UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +4 DE-4 Marburg UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +4 DE-4 Marburg UB k p n 1998 117 0 0 0 +180 DE-180 Mannheim UB k p 2003 122 0 0 0 +180 DE-180 Mannheim UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +180 DE-180 Mannheim UB k p 1998 117 0 2014 133 0 +Ma 9 DE-Ma9 Magdeburg UB k p 1857 1 1 0 0 +Ma 9 DE-Ma9 Magdeburg UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +77 DE-77 Mainz UB k p n 1998 117 0 0 0 +Mz 19 DE-Mz19 Mainz FB TSK k p n 1998 117 0 0 0 +77 DE-77 Mainz UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Mz 19 DE-Mz19 Mainz FB TSK k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +700 DE-700 Osnabrück UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +700 DE-700 Osnabrück UB k n 1997 116 0 0 0 +739 DE-739 Passau UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +739 DE-739 Passau UB k 1998 117 0 0 0 +466 DE-466 Paderborn UB k n 0 0 2014 0 +466 DE-466 Paderborn UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +517 DE-517 Potsdam UB k n 1857 1 1 0 0 +517 DE-517 Potsdam UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +355 DE-355 Regensburg UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +355 DE-355 Regensburg UB k 1998 117 0 0 0 +28 DE-28 Rostock UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +93 DE-93 Stuttgart UB k p 2003 122 0 0 0 +93 DE-93 Stuttgart UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +93 DE-93 Stuttgart UB k p 1998 117 0 2014 133 0 +467 DE-467 Siegen UB k n 0 0 2014 0 +467 DE-467 Siegen UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +89 DE-89 Hannover TIB/UB k n 1997 116 0 0 0 +89 DE-89 Hannover TIB/UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +385 DE-385 Trier UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +385 DE-385 Trier UB k p 1997 0 0 0 0 +21 DE-21 Tübingen UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +21 DE-21 Tübingen UB k p 2003 122 0 0 0 +21 DE-21 Tübingen UB k p 1998 117 0 2014 133 0 +289 DE-289 Ulm UB k p 1998 117 0 2014 133 0 +289 DE-289 Ulm UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +289 DE-289 Ulm UB k p 2003 122 0 0 0 +Va 1 DE-Va1 Vechta UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Va 1 DE-Va1 Vechta UB k n 1997 116 0 0 0 +20 DE-20 Würzburg UB k keine Fernleihe an kommerzielle Bibliotheken liefern 2002 121 1 2003 122 4 +20 DE-20 Würzburg UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +705 DE-705 Hamburg HSU k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +706 DE-706 Neubiberg UniBundeswehr k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +468 DE-468 Wuppertal UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +468 DE-468 Wuppertal UB k n 0 0 2014 0 +L 97 DE-L97 Leipzig Helmholtz-Zentrum UFZ k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +L 97 DE-L97 Leipzig Helmholtz-Zentrum UFZ k p 2004 123 0 2012 131 0 +465 DE-465 Essen UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +464 DE-464 Duisburg UB k n 0 0 2014 0 +464 DE-464 Duisburg UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +465 M DE-465M Essen Duisburg-Essen FB Med. k n 0 0 2014 0 +465 M DE-465M Essen Duisburg-Essen FB Med. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +465 DE-465 Essen UB k n 0 0 2014 0 +18/64 DE-18-64 Hamburg Ärztl. ZB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1998 117 1 0 0 +18/64 DE-18-64 Hamburg Ärztl. ZB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +5 DE-5 Bonn ULB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +61 DE-61 Düsseldorf UuLB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +61 DE-61 Düsseldorf UuLB k n 0 0 2014 0 +3 DE-3 Halle/S UuLB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +6 DE-6 Münster UuLB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +6 DE-6 Münster UuLB k n 0 0 2014 0 +1018 DE-1018 Witten UB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +38 DE-38 Köln USB k n 0 0 2014 0 +38 DE-38 Köln USB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Zwi 2 DE-Zwi2 Zwickau HS k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +B 513 DE-B513 Berlin Weierstraß-Inst. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +24 DE-24 Stuttgart WLB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +B 1543 DE-B1543 Berlin WZB WGL k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +38 M DE-38M Köln ZBMedizin k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +98 DE-98 Bonn ZB MED k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +38 M DE-38M Köln ZBMedizin k p n non-commercial libraries
(Springer) 1857 1 1 0 0 +98 DE-98 Bonn ZB MED k p n non-commercial libraries
(Springer) 1857 1 1 0 0 +Kn 41 DE-Kn41 Köln SportHS ZB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Kn 41 DE-Kn41 Köln SportHS ZB k p 1857 1 1 2011 130 6 +206 DE-206 Kiel ZBW WGL k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Mh 36 DE-Mh36 Mannheim ZEW k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +255 DE-255 München ZI Kunstgeschichte k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Mh 32 DE-Mh32 Mannheim ZI Seel. Gesundh. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +109 DE-109 Berlin ZLB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +B 2138 DE-B2138 Berlin Zentrum Modern. Orient k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Bre 14 DE-Bre14 Bremen Zentr. Tropenökologie k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Bre 14 DE-Bre14 Bremen Zentr. Tropenökologie k n 1998 117 0 0 0 +Bre 14 DE-Bre14 Bremen Zentr. Tropenökologie k n 1998 117 0 0 0 +B 1536 DE-B1536 Berlin ZIB k n 1857 1 1 0 0 +B 1536 DE-B1536 Berlin ZIB k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 +Po 82 DE-Po82 Potsdam Zeithist.Forsch. k p n keine Fernleihe an kommerzielle Bibliotheken liefern 1857 1 0 2002 121 0 diff --git a/datastructures-csv/src/test/resources/org/xbib/datastructures/csv/test/test.csv b/datastructures-csv/src/test/resources/org/xbib/datastructures/csv/test/test.csv new file mode 100644 index 0000000..2e8f4ca --- /dev/null +++ b/datastructures-csv/src/test/resources/org/xbib/datastructures/csv/test/test.csv @@ -0,0 +1,2 @@ +a,b,c +d,e,f diff --git a/datastructures-csv/src/test/resources/org/xbib/datastructures/csv/test/titleFile.csv b/datastructures-csv/src/test/resources/org/xbib/datastructures/csv/test/titleFile.csv new file mode 100644 index 0000000..3ae4ea1 --- /dev/null +++ b/datastructures-csv/src/test/resources/org/xbib/datastructures/csv/test/titleFile.csv @@ -0,0 +1,44447 @@ +Arterial’naya Gipertenziya (Arterial Hypertension),Arterialnaya Gipertenziya,1607419X|24118524 +International Journal of Computer Engineering Research,Academic Journals,21416494 +Proceedings of OilGasScientificResearchProjects Institute SOCAR,Oil Gas Scientific Research Project Institute,22186867|22188622 +(Aza)-Morita–Baylis–Hillman Reactions,Thieme Publishing Group,20400330 +(Syn)thesis,Universidade do Estado do Rio de Janeiro UERJ,1414915X|23584130 ++E,Universidad Nacional del Litoral,22504591|23469986 +-Quinone Imide Reactions,Thieme Publishing Group,20400233 +-Selective Additions,Thieme Publishing Group,20200420 +-Selective and Unsubstituted Nitro-Mannich Reactions,Thieme Publishing Group,20200447 +0,"Science and Education, Ltd.",20720483| +10 15593,PNRPU Publishing Office,24095125| +18-toji Lietuvos jaunųjų mokslininkų konferencijos ciklo Mokslas – Lietuvos ateitis Pastatų inžinerinės sistemos,Vilnius Gediminas Technical University,20297149 +1895 Mille huit cent quatre-vingt-quinze,OpenEdition,19606176|19606176 +1895 Mille huit cent quatre-vingt-quinze,OpenEdition,19606176|19606176 +19 Interdisciplinary Studies in the Long Nineteenth Century,Open Library of Humanities,17551560 +19th-Century Music,University of California Press,01482076|15338606 +21st centry Political Science Review,21st Century Political Science Association,12295167| +21st centry Political Science Review,21st Century Political Science Association,12295167| +21º CIAED - Congresso Internacional ABED de Educação a Distância,ABED - Associacao Brasileira de Educacao a Distancia,21754098 +291,JSTOR,10547193| +2D Materials,IOP Publishing,20531583 +3 Biotech,Springer-Verlag,2190572X|21905738 +36510,Innovative Medical Technologies Development Foundation, +3C Empresa Investigación y pensamiento crítico,"""Area de Innovacion y Desarrollo, S.L. - 3 Ciencias""",22543376 +3C ON-LINE,Association for Computing Machinery,10782192| +3C Tecnología_Glosas de innovación aplicadas a la pyme,"""Area de Innovacion y Desarrollo, S.L. - 3 Ciencias""",22544143 +3C TIC Cuadernos de desarrollo aplicados a las TIC,"""Area de Innovacion y Desarrollo, S.L. - 3 Ciencias""",22546529 +3D Printing and Additive Manufacturing,Mary Ann Liebert,23297662|23297670 +3D Printing in Medicine,Springer (Biomed Central Ltd.),23656271 +3D Research,Springer-Verlag,20926731 +3L The Southeast Asian Journal of English Language Studies,Penerbit Universiti Kebangsaan Malaysia (UKM Press),01285157| +4OR,Springer-Verlag,16194500|16142411 +5 to 7 Educator,Mark Allen Group,17467500|20524595 +A & A Case Reports,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,23257237| +A Balance Sheet Approach to Financial Crisis,International Monetary Fund,19347073| +A Current Bibliography on African Affairs,SAGE Publications,00113255|23766662 +A I I E Transactions,Informa UK (Taylor & Francis),05695554| +A Journal of Brand Design Association of Korea,Brand Design Association of Korea,17380863| +A Journal with Only 1 Volume,CrossRef test user,77778888| +A Life in the Day,Emerald (MCB UP ),13666282| +A M A Archives of Dermatology,American Medical Association,00965359| +A M A Archives of Dermatology and Syphilology,American Medical Association,00965979| +A M A Archives of General Psychiatry,American Medical Association,03758532| +A M A Archives of Internal Medicine,American Medical Association,08882479| +A M A Archives of Neurology,American Medical Association,03758540| +A M A Archives of Neurology & Psychiatry,American Medical Association,00966886| +A M A Archives of Ophthalmology,American Medical Association,00966339| +A M A Archives of Otolaryngology,American Medical Association,00966894| +A M A Archives of Surgery,American Medical Association,00966908| +A M A Journal of Diseases of Children,American Medical Association,00966916| +A new generic and family position for Bufo Borbonica by D Dwight Davis,Smithsonian Institution Biodiversity Heritage Library,08950237| +A Nudge Too Far? A Nudge at All? On Paying People to Be Healthy,Longwoods Publishing,1488917X| +A S L E Transactions,Informa UK (Taylor & Francis),05698197| +A SIMPLIFIED METHOD FOR SEISMIC PERFORMANCE EVALUATION OF STEEL BRIDGE PIERS WITH THIN-WALLED STIFFENED BOX SECTIONS,Hong Kong Institute of Steel Construction,1816112X|1816112X +A-to-Z Guide to Thermodynamics Heat and Mass Transfer and Fluids Engineering,Begell House Inc.,11131114| +a/b Auto/Biography Studies,Informa UK (Taylor & Francis),08989575|21517290 +AAC Research & Practice,the Korean Society for Augmentative and Alternative Communication,22887180| +AACE Clinical Case Reports,American Association of Clinical Endocrinologists,23760605| +AACN Advanced Critical Care,AACN Publishing,15597768|15597776 +AACN Clinical Issues Advanced Practice in Acute & Critical Care,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10790713| +AACN Clinical Issues Advanced Practice in Acute and Critical Care,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10790713| +AACR Education book,American Association for Cancer Research,19436475 +AADE in Practice,SAGE Publications,23251603|23255161 +AAG Newsletter,Association of American Geographers,23779217 +AAHE-ERIC/Higher Education Research Report,Wiley Blackwell (John Wiley & Sons),07371764| +ÂÅÑÒÍÈÊ ÐÎÑÑÈÉÑÊÎÃÎ ÓÍÈÂÅÐÑÈÒÅÒÀ ÄÐÓÆÁÛ ÍÀÐÎÄÎÂ,"""Science and Education, Ltd.""",23132299| +AAOHN Journal,"""SLACK, Inc.""",08910162| +AAP Grand Rounds,American Academy of Pediatrics,10996605| +AAPG Bulletin,AAPG/Datapages,01491423| +AAPI Nexus Policy Practice and Community,UCLA American Indian Studies Center,15450317| +AAPS Open,Springer (Biomed Central Ltd.),23649534 +AAPS PharmSci,American Association of Pharmaceutical Scientists,15221059 +AAPS PharmSciTech,American Association of Pharmaceutical Scientists,15309932 +AAPT Studies in Pedagogy,Philosophy Documentation Center,23804076| +Aarhus Series on Human Centered Computing,Aarhus University Library,24457221 +AAS working papers in social anthropology,Verlag der Osterreichischen Akademie der Wissenschaften,1998507X|1998507X +AASHE Insights,GSE Research Limited,20565747| +AASRI Procedia,Elsevier ,22126716| +AATCC Journal of Research,American Association of Textile Chemists and Colorists - AATCC,23305517|23305517 +AATCC Review,American Association of Textile Chemists and Colorists - AATCC,15328813|23305525 +AAUP Bulletin,JSTOR,0001026X| +AAV Today,JSTOR,08929904| +Ab Imperio,Muse - Johns Hopkins University Press,21649731 +Abacus,Wiley Blackwell (Blackwell Publishing),00013072|14676281 +Abakós,Pontificia Universidade Catolica de Minas Gerais,23169451|23169451 +Abant İzzet Baysal Üniversitesi Eğitim Fakültesi Dergisi,Abant Izzet Baysal Universitesi Egitim Fakultesi Dergisi,13030493| +Abant Izzet Baysal University Graduate School of Social Sciences,Abant Izzet Baysal University Graduate School of Social Sciences,21473064| +Abant Medical Journal,"""LookUs Bilisim, Ltd.""",21471800|21471800 +ABC Journal of Advanced Research,Asian Business Consortium,23042621|2312203X +ABCD Arquivos Brasileiros de Cirurgia Digestiva (São Paulo),SciELO,01026720|23176326 +ABCS Health Sciences,NEPAS,23184965|23578114 +Abdomen,"""Smart Science and Technology, LLC""",23781351 +Abdominal Imaging,Springer-Verlag,09428925|14320509 +Abdominal Radiology,Springer-Verlag,2366004X|23660058 +ABE Journal,OpenEdition,22756639 +Abgadiyat,Brill Academic Publishers,16878280|22138609 +Abhandlungen aus dem Mathematischen Seminar der Universität Hamburg,Springer-Verlag,00255858|18658784 +Abhandlungen herausgegeben vom Naturwissenschaftlichen Verein zu Bremen,Smithsonian Institution Biodiversity Heritage Library,03403718| +ABI-Technik,Walter de Gruyter GmbH,07206763|21914664 +Abia State University Medical Students Association Journal,African Journals Online ,7946961 +Abiotic and Biotic Stress Journal,Smith and Franklin Academic Publishing Corporation,22593411| +ABO Interactive Journal for Women in the Arts 1640-1830,University of South Florida Libraries,21577129 +aboriginal policy studies,Aboriginal Policy Studies,19233299 +About Campus,Wiley Blackwell (John Wiley & Sons),10864822|15360687 +ABOUTOPEN,HPS - Health Publishing & Services SRL,24652628 +Abstract and Applied Analysis,Hindawi Publishing Corporation,10853375|16870409 +Abstract of Applied Sciences and Engineering,Pak Publishing Group,24152072 +Abstracts in Anthropology,SAGE Publications,00013455|15575136 +Abstracts of Working Papers in Economics,Cambridge University Press,09510079|14716410 +Academe,JSTOR,01902946| +ACADEME University of Bohol Graduate School and Professional Studies,University of Bohol,23629142|23629215 +Academia Revista Latinoamericana de Administración,Emerald (MCB UP ),10128255| +Academia y Virtualidad,Universidad Militar Nueva Granada,20110731 +Academic and Library Computing,Emerald (MCB UP ),10554769| +Academic Collaborations for Sick Children,Japan Academic Collaborations Medical Society,1884426X|18845002 +Academic Emergency Medicine,Wiley Blackwell (Blackwell Publishing),10696563|15532712 +Academic Journal of Interdisciplinary Studies,Mediterranean Center of Social and Educational Research,22813993|22814612 +Academic Journal of Research in Economics and Management,"""Al Manhal FZ, LLC""",23113278| +Academic Journal of Scientific Miracles,"""Academic Journal, Al-Azhar University""",23569816|23569816 +Academic Journal of Second Military Medical University,China Science Publishing & Media Ltd.,0258879X| +Academic Journal of Social and Human Studies,"""Al Manhal FZ, LLC""",11128712| +Academic Medicine,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10402446| +Academic Pathology,SAGE Publications,23742895 +Academic Pediatrics,Elsevier ,18762859| +Academic Platform Journal of Engineering and Science,"""LookUs Bilisim, Ltd.""",21474575| +Academic Psychiatry,Springer-Verlag,10429670|15457230 +Academic Questions,Springer-Verlag,08954852|19364709 +Academic Radiology,Elsevier ,10766332| +Academic Sports Scholar,Laxmi Book Publication,22773665 +Academic Voices A Multidisciplinary Journal,Nepal Journals Online,20911106| +ACADEMICIA An International Multidisciplinary Research Journal,Diva Enterprises Private Limited,22497137 +Academicus International Scientific Journal,Academicus Journal,20793715| +Academie voor arbeidsrecht,Boom Uitgevers Den Haag,22118780| +Academy of Management Best Papers Proceedings,The Academy of Management,08967911| +Academy of Management Discoveries,The Academy of Management,21681007 +Academy of Management Executive,The Academy of Management,19901993| +Academy of Management Executive,The Academy of Management,18963789| +Academy of Management Learning and Education,The Academy of Management,1537260X|19449585 +Academy of Management Perspectives,The Academy of Management,15589080|19434529 +Academy of Management Proceedings,The Academy of Management,00650668|21516561 +Ação Midiática – Estudos em Comunicação Sociedade e Cultura,Universidade Federal do Parana,22380701 +Acarologia,EDP Sciences,0044586X|21077207 +ACC Current Journal Review,Elsevier ,10621458| +ACC Journal,Technical University of Liberac,18039782| +Accident Analysis & Prevention,Elsevier ,00014575| +Accident and Emergency Nursing,Elsevier ,09652302| +Acción Psicológica,UNED - Universidad Nacional de Educacion a Distancia,1578908X|22551271 +Accountability in Research,Informa UK (Taylor & Francis),08989621|15455815 +Accounting,Growing Science,23697393|23697407 +Accounting and Business Research,Informa UK (Taylor & Francis),00014788|21594260 +Accounting and Business Review,World Scientific ,02185563| +Accounting and Finance,Wiley Blackwell (Blackwell Publishing),08105391|1467629X +Accounting and Finance Research,Sciedu Press,19275986|19275994 +Accounting and the Public Interest,American Accounting Association,15309320|15309320 +Accounting Auditing & Accountability Journal,Emerald (MCB UP ),09513574|00000000 +Accounting Business & Financial History,Informa UK (Taylor & Francis),09585206|14664275 +Accounting Economics and Law - A Convivium,Walter de Gruyter GmbH,21946051|21522820 +Accounting Education,Informa UK (Taylor & Francis),09639284|14684489 +Accounting Forum,Elsevier ,01559982|14676303 +Accounting History,SAGE Publications,10323732|17493374 +Accounting History Review,Informa UK (Taylor & Francis),21552851|2155286X +Accounting Horizons,American Accounting Association,08887993|15587975 +Accounting in Europe,Informa UK (Taylor & Francis),17449480|17449499 +Accounting Management and Information Technologies,Elsevier ,09598022| +Accounting Organizations and Society,Elsevier ,03613682| +Accounting Perspectives,Wiley Blackwell (Blackwell Publishing),1911382X|19113838 +Accounting Research Journal,Emerald (MCB UP ),10309616| +Accounts of Chemical Research,American Chemical Society,00014842|15204898 +Accreditation and Quality Assurance,Springer-Verlag,09491775|14320517 +ACE Architecture City and Environment,Iniciativa Digital Politecnica,18864805| +Aceh International Journal of Science and Technology,"""Institute of Postgraduate Studies, Syiah Kuala University""",20889860|20889860 +Acetic Acid Bacteria,PAGEPress Publications,22402845 +Acetophenones Substituted on the Aromatic Ring,Thieme Publishing Group,20200064 +ACG Case Reports Journal,American College of Gastroenterology,23263253 +Achievements in the Life Sciences,Elsevier ,20781520| +ACI Concrete International,American Concrete Institute,01624075| +ACI Journal Proceedings,American Concrete Institute,00028061| +ACI Materials Journal,American Concrete Institute,0889325X| +ACI Structural Journal,American Concrete Institute,08893241| +Acid-Catalyzed Protic Solvent Spiroketalization toward Milbemycin,Thieme Publishing Group,20200498 +ACM Communications in Computer Algebra,Association for Computing Machinery,19322240| +ACM Computing Surveys,Association for Computing Machinery,03600300| +ACM Inroads,Association for Computing Machinery,21532184| +ACM Journal of Computer Documentation,Association for Computing Machinery,15276805| +ACM Journal on Emerging Technologies in Computing Systems,Association for Computing Machinery,15504832| +ACM Letters on Programming Languages and Systems,Association for Computing Machinery,10574514| +ACM Lisp Bulletin,Association for Computing Machinery,23728752| +ACM SIGACCESS Accessibility and Computing,Association for Computing Machinery,15582337| +ACM SIGACT News,Association for Computing Machinery,01635700| +ACM SIGAda Ada Letters,Association for Computing Machinery,10943641| +ACM SIGAPL APL Quote Quad,Association for Computing Machinery,01636006| +ACM SIGAPP Applied Computing Review,Association for Computing Machinery,15596915| +ACM SIGARCH Computer Architecture News,Association for Computing Machinery,01635964| +ACM SIGART Bulletin,Association for Computing Machinery,01635719| +ACM SIGBED Review,Association for Computing Machinery,15513688|15513688 +ACM SIGBIO Newsletter,Association for Computing Machinery,01635697| +ACM SIGBioinformatics Record,Association for Computing Machinery,23319291| +ACM SIGCAPH Computers and the Physically Handicapped,Association for Computing Machinery,01635727| +ACM SIGCAS Computers and Society,Association for Computing Machinery,00952737| +ACM SIGCHI Bulletin,Association for Computing Machinery,07366906| +ACM SIGCOMM Computer Communication Review,Association for Computing Machinery,01464833| +ACM SIGCPR Computer Personnel,Association for Computing Machinery,01602497| +ACM SIGCSE Bulletin,Association for Computing Machinery,00978418| +ACM SIGCSIM Installation Management Review,Association for Computing Machinery,01635972| +ACM SIGCUE Outlook,Association for Computing Machinery,01635735| +ACM SIGDA Newsletter,Association for Computing Machinery,01635743| +ACM SIGDOC Asterisk Journal of Computer Documentation,Association for Computing Machinery,07311001| +ACM SIGecom Exchanges,Association for Computing Machinery,15519031|15519031 +ACM SIGEVOlution,Association for Computing Machinery,19318499|19318499 +ACM SIGFORTH Newsletter,Association for Computing Machinery,10474544| +ACM SIGGRAPH Computer Graphics,Association for Computing Machinery,00978930| +ACM SIGGROUP Bulletin,Association for Computing Machinery,23727403| +ACM SIGHIT Record,Association for Computing Machinery,21588813 +ACM SIGHPC Connect,Association for Computing Machinery,2168135X +ACM SIGICE Bulletin,Association for Computing Machinery,08932875| +ACM SIGIR Forum,Association for Computing Machinery,01635840| +ACM SIGITE Newsletter,Association for Computing Machinery,15501469|15501469 +ACM SIGKDD Explorations Newsletter,Association for Computing Machinery,19310145| +ACM SIGLASH Newsletter,Association for Computing Machinery,0036147X| +ACM SIGMAP Bulletin,Association for Computing Machinery,01635786| +ACM SIGMETRICS Performance Evaluation Review,Association for Computing Machinery,01635999| +ACM SIGMICRO Newsletter,Association for Computing Machinery,1050916X| +ACM SIGMINI Newsletter,Association for Computing Machinery,0163576X| +ACM SIGMIS Database,Association for Computing Machinery,00950033| +ACM SIGMOBILE Mobile Computing and Communications Review,Association for Computing Machinery,15591662| +ACM SIGMOD Record,Association for Computing Machinery,01635808| +ACM SIGMultimedia Records,Association for Computing Machinery,19474598 +ACM SIGNUM Newsletter,Association for Computing Machinery,01635778| +ACM SIGOA Newsletter,Association for Computing Machinery,0737819X| +ACM SIGOIS Bulletin,Association for Computing Machinery,08940819| +ACM SIGOPS Operating Systems Review,Association for Computing Machinery,01635980| +ACM SIGPC Notes,Association for Computing Machinery,01635816| +ACM SIGPLAN Fortran Forum,Association for Computing Machinery,10617264| +ACM SIGPLAN Lisp Pointers,Association for Computing Machinery,10453563| +ACM SIGPLAN Notices,Association for Computing Machinery,03621340| +ACM SIGPLAN OOPS Messenger,Association for Computing Machinery,10556400| +ACM SIGSAC Review,Association for Computing Machinery,0277920X| +ACM SIGSAM Bulletin,Association for Computing Machinery,01635824| +ACM SIGSIM Simulation Digest,Association for Computing Machinery,01636103| +ACM SIGSMALL Newsletter,Association for Computing Machinery,0272720X| +ACM SIGSMALL/PC Notes,Association for Computing Machinery,08932875| +ACM SIGSOC Bulletin,Association for Computing Machinery,01635794| +ACM SIGSOFT Software Engineering Notes,Association for Computing Machinery,01635948| +ACM SIGUCCS Newsletter,Association for Computing Machinery,07366892| +ACM SIGUCCS plugged in,Association for Computing Machinery,21688516 +ACM SIGWEB Newsletter,Association for Computing Machinery,19311745| +ACM Transactions on Accessible Computing,Association for Computing Machinery,19367228| +ACM Transactions on Algorithms,Association for Computing Machinery,15496325| +ACM Transactions on Applied Perception,Association for Computing Machinery,15443558| +ACM Transactions on Architecture and Code Optimization,Association for Computing Machinery,15443566| +ACM Transactions on Asian and Low-Resource Language Information Processing,Association for Computing Machinery,23754699| +ACM Transactions on Asian Language Information Processing,Association for Computing Machinery,15300226| +ACM Transactions on Autonomous and Adaptive Systems,Association for Computing Machinery,15564665| +ACM Transactions on Computation Theory,Association for Computing Machinery,19423454| +ACM Transactions on Computational Logic,Association for Computing Machinery,15293785| +ACM Transactions on Computer Systems,Association for Computing Machinery,07342071| +ACM Transactions on Computer-Human Interaction,Association for Computing Machinery,10730516| +ACM Transactions on Computing Education,Association for Computing Machinery,19466226 +ACM Transactions on Database Systems,Association for Computing Machinery,03625915| +ACM Transactions on Design Automation of Electronic Systems,Association for Computing Machinery,10844309| +ACM Transactions on Economics and Computation,Association for Computing Machinery,21678375| +ACM Transactions on Embedded Computing Systems,Association for Computing Machinery,15399087| +ACM Transactions on Graphics,Association for Computing Machinery,07300301| +ACM Transactions on Information and System Security,Association for Computing Machinery,10949224| +ACM Transactions on Information Systems,Association for Computing Machinery,10468188| +ACM Transactions on Intelligent Systems and Technology,Association for Computing Machinery,21576904| +ACM Transactions on Interactive Intelligent Systems,Association for Computing Machinery,21606455| +ACM Transactions on Internet Technology,Association for Computing Machinery,15335399| +ACM Transactions on Knowledge Discovery from Data,Association for Computing Machinery,15564681| +ACM Transactions on Management Information Systems,Association for Computing Machinery,2158656X| +ACM Transactions on Mathematical Software,Association for Computing Machinery,00983500| +ACM Transactions on Modeling and Computer Simulation,Association for Computing Machinery,10493301| +ACM Transactions on Multimedia Computing Communications and Applications,Association for Computing Machinery,15516857| +ACM Transactions on Parallel Computing,Association for Computing Machinery,23294949| +ACM Transactions on Programming Languages and Systems,Association for Computing Machinery,01640925| +ACM Transactions on Reconfigurable Technology and Systems,Association for Computing Machinery,19367406| +ACM Transactions on Sensor Networks,Association for Computing Machinery,15504859| +ACM Transactions on Software Engineering and Methodology,Association for Computing Machinery,1049331X| +ACM Transactions on Speech and Language Processing,Association for Computing Machinery,15504875| +ACM Transactions on Storage,Association for Computing Machinery,15533077| +ACM Transactions on the Web,Association for Computing Machinery,15591131| +ACOG Clinical Review,Elsevier ,10856862| +Acolhendo a Alfabetização nos Países de Língua Portuguesa,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,19807686|19807686 +ACOPIOS-Revista Ibérica de Mineralogía,ACOPIOS - Revista Iberica de Mineralogia,21717788 +Acorn,Philosophy Documentation Center,10926534| +Acoustical Physics,Pleiades Publishing,10637710|15626865 +Acoustical Science and Technology,Acoustical Society of Japan,13463969|13475177 +Acoustics Australia,Springer-Verlag,08146039|08146039 +Acoustics Research Letters Online,Acoustical Society of America ,15297853|15297853 +Acoustics Today,Acoustical Society of America ,15570215|15570223 +Acque Sotterranee-Italian Journal of Groundwater,Associazione Acque Sotterranee,1828454X| +Acrocephalus,De Gruyter Open Sp. z o.o. ,03512851|03512851 +Across Languages and Cultures,Akademiai Kiado Zrt.,15851923|15882519 +ACS Applied Materials & Interfaces,American Chemical Society,19448244|19448252 +ACS Biomaterials Science & Engineering,American Chemical Society,23739878|23739878 +ACS Catalysis,American Chemical Society,21555435|21555435 +ACS Central Science,American Chemical Society,23747943|23747951 +ACS Chemical Biology,American Chemical Society,15548929|15548937 +ACS Chemical Neuroscience,American Chemical Society,19487193|19487193 +ACS Combinatorial Science,American Chemical Society,21568952|21568944 +ACS Infectious Diseases,American Chemical Society,23738227|23738227 +ACS Macro Letters,American Chemical Society,21611653|21611653 +ACS Medicinal Chemistry Letters,American Chemical Society,19485875|19485875 +ACS Nano,American Chemical Society,19360851|1936086X +ACS Photonics,American Chemical Society,23304022|23304022 +ACS Sensors,American Chemical Society,23793694|23793694 +ACS Sustainable Chemistry & Engineering,American Chemical Society,21680485|21680485 +ACS Synthetic Biology,American Chemical Society,21615063|21615063 +ACSM s Health & Fitness Journal,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10915397| +Acta Academiae Medicinae Wuhan,Springer-Verlag,05109752| +Acta Acustica united with Acustica,S. Hirzel Verlag,16101928| +Acta Agriculturae Scandinavica,Informa UK (Taylor & Francis),00015121| +Acta Agriculturae Scandinavica Section A – Animal Science,Informa UK (Taylor & Francis),09064702|16511972 +Acta Agriculturae Scandinavica Section B - Soil & Plant Science,Informa UK (Taylor & Francis),09064710|16511913 +Acta agriculturae Serbica,Centre for Evaluation in Education and Science,03549542| +Acta agriculturae Slovenica,Biotechnical Faculty,15819175|18541941 +Acta Agrobotanica,Polish Botanical Society,00650951|2300357X +Acta Agronómica,Universidad Nacional de Colombia,01202812|23230118 +Acta Agronomica Hungarica,Akademiai Kiado Zrt.,02380161|15882527 +Acta Agronomica Óváriensis,Acta Agronomica Ovariensis,1416647X| +Acta Agronomica Sinica,Elsevier ,18752780| +ACTA AGRONOMICA SINICA,China Science Publishing & Media Ltd.,04963490| +Acta Alimentaria,Akademiai Kiado Zrt.,01393006|15882535 +Acta Amazonica,SciELO,00445967|00445967 +Acta Anaesthesiologica Scandinavica,Wiley Blackwell (Blackwell Publishing),00015172|13996576 +Acta Anaesthesiologica Taiwanica,Elsevier ,18754597| +Acta Analysis Functionalis Applicata,China Science Publishing & Media Ltd.,10091327| +Acta Analytica,Springer-Verlag,03535150|18746349 +Acta Anatomica,S. Karger AG,00015180|14219654 +Acta Angiologica,VM Media Sp zo.o. - VMGroup SK,1234950X|16443276 +Acta Antiqua,Akademiai Kiado Zrt.,00445975|15882543 +ACTA Apicola Brasilica,Grupo Verde de Agroecologia e Abelhas,23582375 +Acta Applicandae Mathematicae,Springer-Verlag,01678019|15729036 +Acta Arachnologica,Arachnological Society of Japan,00015202|18807852 +Acta Archaeologica,Wiley Blackwell (Blackwell Publishing),0065101X|16000390 +Acta Archaeologica,Akademiai Kiado Zrt.,00015210|15882551 +Acta Arithmetica,"""Institute of Mathematics, Polish Academy of Sciences""",00651036|17306264 +Acta Astronautica,Elsevier ,00945765|00945765 +ACTA AUTOMATICA SINICA,China Science Publishing & Media Ltd.,02544156| +Acta Automatica Sinica,Elsevier ,18741029| +Acta Baltica Historiae et Philosophiae Scientiarum,Department of International Relations,22282009|22282017 +Acta Baltico-Slavica,Institute of Slavic Studies of the Polish Academy of Sciences,00651044|23922389 +Acta Biochimica et Biophysica Sinica,Oxford University Press,16729145|17457270 +Acta Biochimica Polonica,Polskie Towarzystwo Biochemiczne (Polish Biochemical Society),0001527X|1734154X +Acta bioethica,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,1726569X +Acta Biológica Colombiana,Universidad Nacional de Colombia,0120548X|19001649 +Acta Biologica Cracoviensia s Botanica,De Gruyter Open Sp. z o.o. ,00015296|18980295 +Acta Biologica Hungarica,Akademiai Kiado Zrt.,02365383|1588256X +Acta Biologica Malaysiana,Department of Biology,22321675 +Acta Biológica Paranaense,Universidade Federal do Parana,03012123|22361472 +Acta Biologica Sibirica,Altai State University,24121908 +Acta Biomaterialia,Elsevier ,17427061| +Acta Biomaterialia Odontologica Scandinavica,Informa UK (Taylor & Francis),23337931 +Acta Biomédica Brasiliensia,Universidade Iguacu - Campus V,22360867 +ACTA BIOPHYSICA SINICA,China Science Publishing & Media Ltd.,10006737| +Acta Biotechnologica,Wiley Blackwell (John Wiley & Sons),01384988|15213846 +Acta Biotheoretica,Springer-Verlag,00015342|15728358 +Acta Borealia,Informa UK (Taylor & Francis),08003831|1503111X +Acta Botanica Brasilica,SciELO,01023306|01023306 +Acta Botanica Croatica,De Gruyter Open Sp. z o.o. ,03650588|03650588 +Acta Botanica Gallica,Informa UK (Taylor & Francis),12538078|21663408 +Acta Botanica Hungarica,Akademiai Kiado Zrt.,02366495|15882578 +Acta Botanica Neerlandica,Wiley Blackwell (Blackwell Publishing),00445983| +Acta Botanica Yunnanica,China Science Publishing & Media Ltd.,02532700| +Acta Cardiologica,Peeters Publishers,15385 +Acta Carsologica,Scientific Research Centre ZRC-SAZU,05836050| +Acta Chemica Iasi,De Gruyter Open Sp. z o.o. ,20672446 +Acta Chemica Scandinavica,Danish Chemical Society,0904213X| +Acta Chimica Sinica,Wiley Blackwell (John Wiley & Sons),02567660| +Acta Chimica Sinica,Shaghai Institute of Organic Chemistry,05677351| +Acta Chimica Slovaca,De Gruyter Open Sp. z o.o. ,1337978X|1337978X +Acta Chimica Slovenica,Slovenian Chemical Society,15803155|15803155 +Acta Chiropterologica,Museum and Institute of Zoology at the Polish Academy of Sciences,15081109|17335329 +Acta chirurgica iugoslavica,National Library of Serbia,0354950X|24060887 +Acta Chirurgica Latviensis,De Gruyter Open Sp. z o.o. ,1407981X|21995737 +Acta Chromatographica,Akademiai Kiado Zrt.,12332356|20835736 +Acta Cirurgica Brasileira,SciELO,16782674|16782674 +Acta Cirurgica Brasileira,SciELO,01028650|01028650 +Acta Classica,Classical Association of South Africa,00651141| +Acta Clinica Belgica,Informa UK (Taylor & Francis),17843286|22953337 +Acta Clinica Croatica,Sestre Milosrdnice University Hospital Center (KBC Sestre milosrdnice),03539474| +Acta Colombiana de Cuidado Intensivo,Elsevier ,01227262| +Acta Colombiana de Psicología,Editorial Universidad Catolica e Colombia,01239155| +Acta Commercii,AOSIS,16807537|16841999 +Acta Criminologica,Consortium Erudit,00651168|17183243 +Acta Crystallographica,International Union of Crystallography,0365110X| +Acta Crystallographica Section A,International Union of Crystallography,05677394| +Acta Crystallographica Section A Foundations and Advances,International Union of Crystallography,20532733|20532733 +Acta Crystallographica Section A Foundations of Crystallography,International Union of Crystallography,01087673|16005724 +Acta Crystallographica Section B,International Union of Crystallography,05677408| +Acta Crystallographica Section B Structural Science,International Union of Crystallography,01087681|16005740 +Acta Crystallographica Section B Structural Science Crystal Engineering and Materials,International Union of Crystallography,20525192|20525206 +Acta Crystallographica Section C Crystal Structure Communications,International Union of Crystallography,01082701|16005759 +Acta Crystallographica Section C Structural Chemistry,International Union of Crystallography,20532296 +Acta Crystallographica Section D Biological Crystallography,International Union of Crystallography,09074449|13990047 +Acta Crystallographica Section D Structural Biology,International Union of Crystallography,20597983|20597983 +Acta Crystallographica Section E Crystallographic Communications,International Union of Crystallography,20569890 +Acta Crystallographica Section E Structure Reports Online,International Union of Crystallography,16005368 +Acta Crystallographica Section F Structural Biology and Crystallization Communications,International Union of Crystallography,17443091 +Acta Crystallographica Section F Structural Biology Communications,International Union of Crystallography,2053230X +Acta Cybernetica,University of Szeged,0324721X| +Acta Cytologica,S. Karger AG,00015547|19382650 +Acta de Investigación Psicológica,Elsevier ,20074719| +Acta Dermato Venereologica,Acta Dermato-Venereologica,00015555| +Acta Dermatovenerologica Alpina Pannonica et Adriatica,Association of Slovenian Dermatovenerologists,13184458|13184458 +Acta Diabetologica,Springer-Verlag,09405429|14325233 +Acta Diabetologica Latina,Springer-Verlag,00015563| +Acta Ecologica Sinica,Acta Ecologica Sinica,10000933| +Acta Ecologica Sinica,Elsevier ,18722032| +Acta Electrotechnica et Informatica,"""Technical University of Kosice, Faculty of Electrical Engineering and Informatics""",13358243|13383957 +Acta Endocrinologica (Bucharest),ACTA Endocrinologica Foundation,18410987|1843066X +Acta Endoscopica,Springer-Verlag,0240642X|17653134 +Acta Energetica Power Engineering Quarterly,Energa SA,23003022|23003022 +Acta et Commentationes Universitatis Tartuensis de Mathematica,University of Tartu Press,14062283|22284699 +Acta Ethnographica Hungarica,Akademiai Kiado Zrt.,12169803|15882586 +acta ethologica,Springer-Verlag,08739749|14379546 +Acta Facultatis Educationis Physicae Universitatis Comenianae,Walter de Gruyter GmbH,5207371 +Acta Facultatis Medicae Naissensis,De Gruyter Open Sp. z o.o. ,03516083|22172521 +Acta Facultatis Pharmaceuticae Universitatis Comenianae,De Gruyter Open Sp. z o.o. ,03012298|13386786 +Acta Fisiátrica,GN1 Genesis Network,01047795| +Acta fytotechnica et zootechnica,Slovak University of Agriculture in Nitra,13369245 +Acta Genetica Sinica,Elsevier ,03794172| +Acta geneticae medicae et gemellologiae,Cambridge University Press,11209623| +Acta geneticae medicae et gemellologiae twin research,Cambridge University Press,00015660| +Acta Geobalcanica,Geobalcanica Society,18579833 +Acta Geochimica,Springer-Verlag,20960956|23657499 +Acta Geodaetica et Geophysica,Springer-Verlag,22135812|22135820 +Acta Geodaetica et Geophysica Hungarica,Akademiai Kiado Zrt.,12178977|15871037 +Acta Geodynamica et Geomaterialia,"""Institute of Rock Structure and Mechanics, AS CR""",12149705| +Acta Geodynamica et Geomaterialia,"""Institute of Rock Structure and Mechanics, AS CR""",12149705| +Acta geographica Slovenica,Scientific Research Centre ZRC-SAZU,15816613|15818314 +Acta Geologica Hungarica,Akademiai Kiado Zrt.,02365278|15882594 +Acta Geologica Polonica,De Gruyter Open Sp. z o.o. ,00015709|23001887 +Acta Geologica Sinica - English Edition,Wiley Blackwell (Blackwell Publishing),10009515|17556724 +Acta Geologica Sinica-English,Wiley Blackwell (Blackwell Publishing),00015717| +Acta Geophysica,De Gruyter Open Sp. z o.o. ,18956572|18957455 +Acta Geotechnica,Springer-Verlag,18611125|18611133 +Acta Gymnica,Palacky University Olomouc,23364912|23364920 +Acta Haematologica,S. Karger AG,00015792|14219662 +Acta Haematologica Polonica,Elsevier ,00015814| +Acta Herediana,Universidad Peruana Cayetano Heredia,10177000|24114502 +Acta Histochemica,Elsevier ,00651281| +ACTA HISTOCHEMICA ET CYTOCHEMICA,Japan Society of Histochemistry and Cytochemistry,00445991|13475800 +Acta Historiae Artium,Akademiai Kiado Zrt.,00015830|15882608 +Acta Historica Tallinnensia,Estonian Academy Publishers,14062925| +Acta Historica Universitatis Klaipedensis,Klaipeda University Press,13924095|23516526 +Acta Horti Botanici Bucurestiensis,De Gruyter Open Sp. z o.o. ,3741273 +Acta Horticulturae,International Society for Horticultural Science (ISHS),05677572|24066168 +Acta Horticulturae et Regiotectuare,De Gruyter Open Sp. z o.o. ,13385259 +Acta Humana,Wydawnictwo Uniwersytetu Marii Curie-SkÅ?odowskiej w Lublinie,20824459| +Acta Hydrobiologica Sinica,China Science Publishing & Media Ltd.,10003207| +Acta hydrochimica et hydrobiologica,Wiley Blackwell (John Wiley & Sons),03234320|1521401X +Acta Ichthyologica Et Piscatoria,Szczecinskie Towarzystwo Naukowe,01371592|17341515 +Acta Informatica,Springer-Verlag,00015903|14320525 +Acta Informatica Medica,ScopeMed International Medical Journal Managment and Indexing System,03538109| +Acta Informatica Pragensia,University of Economics,18054951|18054951 +Acta Juridica Hungarica,Akademiai Kiado Zrt.,12162574|15882616 +Acta Kinesiologiae Universitatis Tartuensis,University of Tartu Press,14069822|22283501 +Acta Koreana,Academia Koreana,15207412| +Acta Limnologica Brasiliensia,SciELO,2179975X +Acta Limnologica Brasiliensia,SciELO,01026712|01026712 +Acta Linguistica,Informa UK (Taylor & Francis),0105001X| +Acta Linguistica Asiatica,University of Ljubljana,22323317 +Acta Linguistica Hafniensia,Informa UK (Taylor & Francis),03740463|19490763 +Acta Linguistica Hungarica,Akademiai Kiado Zrt.,12168076|15882624 +Acta literaria,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7176848 +Acta litteraria comparativa,Lithuanian University of Educational Sciences,18225608|23517387 +Acta Manilana,PhilJOL,00651370| +Acta Materialia,Elsevier ,13596454| +Acta Mathematica,Springer-Verlag,00015962|18712509 +Acta Mathematica Academiae Scientiarum Hungaricae,Springer-Verlag,00015954| +Acta Mathematica Hungarica,Springer-Verlag,02365294|15882632 +Acta Mathematica Scientia,Elsevier ,02529602| +Acta Mathematica Sinica,Springer-Verlag,10009574| +Acta Mathematica Sinica English Series,Springer-Verlag,14398516|14397617 +Acta Mathematica Vietnamica,Springer-Verlag,02514184|23154144 +Acta Mathematicae Applicatae Sinica English Series,Springer-Verlag,01689673|16183932 +Acta Mechanica,Springer-Verlag,00015970|16196937 +Acta Mechanica et Automatica,De Gruyter Open Sp. z o.o. ,23005319 +Acta Mechanica Sinica,Springer-Verlag,05677718|16143116 +Acta Mechanica Slovaca,De Gruyter Open Sp. z o.o. ,13352393| +Acta Mechanica Solida Sinica,Elsevier ,08949166| +Acta Medial International,EManuscript Services,23490896 +Acta Medica (Hradec Kralove Czech Republic),"""Charles University in Prague, Karolinum Press""",12114286|18059694 +Acta Medica Academica,Academy of Sciences and Arts of Bosnia anad Herzegovina,18401848|18402879 +Acta Medica Anatolia,"""LookUs Bilisim, Ltd.""",21482357|21482357 +Acta Medica Austriaca,Wiley Blackwell (Blackwell Publishing),03038173|15632571 +Acta Medica Bulgarica,De Gruyter Open Sp. z o.o. ,3241750 +Acta Medica International,EManuscript Services,23490578| +Acta medica Lituanica,Lithuanian Academy of Sciences,13920138|20294174 +Acta Medica Marisiensis,De Gruyter Open Sp. z o.o. ,22476113 +Acta Medica Martiniana,De Gruyter Open Sp. z o.o. ,13358421|13358421 +Acta Medica Medianae,"""Medical Faculty, University in Nis""",03654478|18212794 +Acta Médica Portuguesa,Ordem dos Medicos,0870399X|16460758 +Acta Medica Saliniana,Acta Medica Saliniana,0350364X|18403956 +Acta Medica Scandinavica,Wiley Blackwell (Blackwell Publishing),00016101| +Acta Medicinae et Sociologica,University of Debrecen/ Debreceni Egyetem - Acta Medicinae et Sociologica,20620284| +Acta Metallurgica,Elsevier ,00016160| +Acta Metallurgica et Materialia,Elsevier ,09567151| +ACTA METALLURGICA SINICA,China Science Publishing & Media Ltd.,04121961| +Acta Metallurgica Sinica (English Letters),Springer-Verlag,10067191|21941289 +Acta Metallurgica Slovaca,Technical University of Kosice,13351532|13381156 +Acta Metallurgica Slovaca - Conference,Technical University of Kosice,13381660| +Acta Meteorologica Sinica,Springer-Verlag,08940525|21914788 +Acta Microbiologica,Internet Medical Publishing,23867469 +Acta Microbiologica et Immunologica Hungarica,Akademiai Kiado Zrt.,12178950|15882640 +ACTA MICROBIOLOGICA SINICA,China Science Publishing & Media Ltd.,00016209| +Acta Musei Nationalis Pragae Series B Historia Naturalis / Sborník Národního muzea řada B přírodní vědy,National Museum,00365343|18046479 +Acta Musei Silesiae Scientiae Naturales,De Gruyter Open Sp. z o.o. ,23363207 +Acta Museologica Lithuanica,Vilnius University,23515112|23515112 +Acta Musicologica,JSTOR,00016241| +Acta Mycologica,Polish Botanical Society,0001625X|2353074X +Acta Nature,"""Science and Education, Ltd.""",20758243| +Acta Neophilologica,University of Ljubljana,0567784X|2350417X +Acta Neurochirurgica,Springer-Verlag,00016268|09420940 +Acta Neurologica Belgica,Springer-Verlag,03009009|22402993 +Acta Neurologica Scandinavica,Wiley Blackwell (Blackwell Publishing),00016314|16000404 +Acta Neuropathologica,Springer-Verlag,00016322|14320533 +Acta Neuropathologica Communications,Springer (Biomed Central Ltd.),20515960|20515960 +Acta Neuropsychiatrica,Cambridge University Press,09242708|16015215 +Acta Neurovegetativa,Springer-Verlag,03759245| +Acta Numerica,Cambridge University Press,09624929|14740508 +Acta Obstetricia Et Gynecologica Scandinavica,Wiley Blackwell (Blackwell Publishing),00016349|16000412 +Acta Oceanologica Sinica,Springer-Verlag,0253505X|18691099 +Acta Odontológica Colombiana,Universidad Nacional de Colombia,20277822 +Acta Odontologica Scandinavica,Informa UK (Taylor & Francis),00016357|15023850 +Acta Odontologica Turcica,Acta Odontologica Turcica,2147690X +Acta Oecologica,Elsevier ,1146609X| +Acta Oeconomica,Akademiai Kiado Zrt.,00016373|15882659 +Acta Oeconomica Pragensia,University of Economics,05723043|05723043 +Acta Oncologica,Informa UK (Taylor & Francis),0284186X|1651226X +Acta Oncologica Turcica,"""LookUs Bilisim, Ltd.""",0304596X|21487669 +Acta Ophthalmologica,Wiley Blackwell (Blackwell Publishing),1755375X|17553776 +Acta Ophthalmologica Scandinavica,Wiley Blackwell (Blackwell Publishing),13953907|16000420 +Acta Optica Sinica,Shanghai Institute of Optics and Fine Mechanics,02532239| +Acta Orientalia,Akademiai Kiado Zrt.,00016446|15882667 +Acta Ornithologica,Museum and Institute of Zoology at the Polish Academy of Sciences,00016454|17348471 +Acta Orthopaedica,Informa UK (Taylor & Francis),17453674|17453682 +acta orthopaedica et traumatologica turcica,Turk Ortopedi ve Travmatoloji Dernegi,1017995X| +Acta Orthopaedica Scandinavica,Informa UK (Taylor & Francis),00016470| +Acta Ortopédica Brasileira,SciELO,14137852|14137852 +Acta Oto-Laryngologica,Informa UK (Taylor & Francis),00016489|16512251 +Acta Otorrinolaringologica (English Edition),Elsevier ,21735735| +Acta Otorrinolaringológica Española,Elsevier ,00016519| +Acta Paedagogica Vilnensia,Vilnius University,13925016|13925016 +Acta Paediatrica,Wiley Blackwell (Blackwell Publishing),08035253|16512227 +Acta Palaeobotanica,De Gruyter Open Sp. z o.o. ,20820259|20820259 +Acta Palaeontologica Polonica,"""Polska Akademia Nauk Instytut Paleobiologii Institute of Paleobiology, Polish Academy of Sciences)""",05677920| +Acta Parasitologica,De Gruyter Open Sp. z o.o. ,12302821|18961851 +Acta Pathologica Microbiologica Scandinavica,Wiley Blackwell (Blackwell Publishing),03655555| +Acta Pathologica Microbiologica Scandinavica Section A Pathology,Wiley Blackwell (Blackwell Publishing),03654184| +Acta Pathologica Microbiologica Scandinavica Section B Microbiology,Wiley Blackwell (Blackwell Publishing),0304131X| +Acta Pathologica Microbiologica Scandinavica Section B Microbiology and Immunology,Wiley Blackwell (Blackwell Publishing),03655563| +Acta Pathologica Microbiologica Scandinavica Section C Immunology,Wiley Blackwell (Blackwell Publishing),03041328| +Acta Pathologica Microbiologica Scandinavica Series A Pathology,Wiley Blackwell (Blackwell Publishing),01080164| +Acta Pathologica Microbiologica Scandinavica Series B Microbiology,Wiley Blackwell (Blackwell Publishing),01080180| +Acta Pathologica Microbiologica Scandinavica Series C Immunology,Wiley Blackwell (Blackwell Publishing),01080202| +Acta Paulista de Enfermagem,SciELO,19820194 +Acta Paulista de Enfermagem,SciELO,1032100 +Acta Paulista de Enfermagem,SciELO,1032100 +Acta Paulista de Enfermagem,SciELO,01032100|01032100 +Acta Pediátrica de México,Acta Pediatrica de Mexico,01862391|23958235 +Acta Pediátrica Hondureña,Latin America Journals Online,24101400|24116270 +Acta Periodica Duellatorum,Walter de Gruyter GmbH,20640404 +Acta periodica technologica,National Library of Serbia,14507188|2406095X +Acta Pharmaceutica,De Gruyter Open Sp. z o.o. ,13300075|18469558 +Acta Pharmaceutica Sinica B,Elsevier ,22113835| +Acta Pharmacologica et Toxicologica,Wiley Blackwell (Blackwell Publishing),00016683| +Acta Pharmacologica Sinica,Nature Publishing Group,16714083|17457254 +ACTA PHOTONICA SINICA,Shanghai Institute of Optics and Fine Mechanics,10044213| +Acta Physica Academiae Scientiarum Hungaricae,Springer-Verlag,00016705| +Acta Physica Hungarica,Springer - RILEM Publishing,12197580| +Acta Physica Hungarica A) Heavy Ion Physics,Springer - RILEM Publishing,12197580|15882682 +Acta Physica Hungarica B) Quantum Electronics,Springer - RILEM Publishing,15899535|17863767 +Acta Physica Polonica A,"""Institute of Physics, Polish Academy of Sciences""",05874246|1898794X +Acta Physica Polonica B,Acta Physica Polonica B Editorial Office,05874254|15095770 +Acta Physica Polonica B Proceedings Supplement,Acta Physica Polonica B Editorial Office,18992358|20827865 +Acta Physica Sinica (Overseas Edition),IOP Publishing,1004423X| +Acta Physica Slovaca Reviews and Tutorials,De Gruyter Open Sp. z o.o. ,03230465|1336040X +Acta Physico-Chimica Sinica,Elsevier ,18721508| +Acta Physiologiae Plantarum,Springer-Verlag,01375881|18611664 +Acta Physiologica,Wiley Blackwell (Blackwell Publishing),17481708|17481716 +Acta Physiologica Hungarica,Akademiai Kiado Zrt.,0231424X|15882682 +Acta Physiologica Scandinavica,Wiley Blackwell (Blackwell Publishing),00016772|1365201X +Acta Phytogeographica Suecica,Wiley Blackwell (Opulus Press),00845914| +Acta Phytopathologica et Entomologica Hungarica,Akademiai Kiado Zrt.,02381249|15882691 +Acta Phytotaxonomica Sinica,China Science Publishing & Media Ltd.,05291526| +Acta Poetica,Instituto de Investigaciones Filologicas,01853082| +Acta Politica,Nature Publishing Group - Macmillan Publishers,00016810|17411416 +Acta Poloniae Historica,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,00016829| +Acta Polymerica,Wiley Blackwell (John Wiley & Sons),03237648|15214044 +Acta Polymerica Sinica,China Science Publishing & Media Ltd.,10003304| +Acta Polytechnica,Czech Technical University in Prague - Central Library,12102709|18052363 +Acta Polytechnica CTU Proceedings,Czech Technical University in Prague - Central Library,23365382 +Acta Polytechnica Hungarica,Obuda University,17858860 +Acta Portuguesa de Nutrição,Portuguese Association of Nutritionists,21835985|21835985 +Acta Psychiatrica Scandinavica,Wiley Blackwell (Blackwell Publishing),0001690X|16000447 +Acta Psychologica,Elsevier ,00016918| +Acta Psychologica Sinica,China Science Publishing & Media Ltd.,0439755X| +Acta Psychopathologica,OMICS Publishing Group,24696676 +Acta Radiologica,Informa UK (Informa Healthcare),00016926| +Acta Radiologica,SAGE Publications,02841851|16000455 +Acta Radiologica Oncology,Informa UK (Informa Healthcare),0349652X| +Acta Radiologica Oncology Radiation Physics Biology,Informa UK (Informa Healthcare),03485196| +Acta Radiologica Open,SAGE Publications,20584601|20584601 +Acta Radiologica Short Reports,SAGE Publications,20479816|20479816 +Acta Radiologica Therapy Physics Biology,Informa UK (Informa Healthcare),05678064| +Acta Regionalia et Environmentalica,De Gruyter Open Sp. z o.o. ,13369253 +Acta Reumatológica,Internet Medical Publishing,23866861 +Acta Rheumatologica Scandinavica,Informa UK (Informa Healthcare),00016934| +Acta Scientiarum Agronomy,Universidade Estadual de Maringa,16799275|18078621 +Acta Scientiarum Animal Sciences,Universidade Estadual de Maringa,18062636|18078672 +Acta Scientiarum Biological Sciences,Universidade Estadual de Maringa,16799283|1807863X +Acta Scientiarum Education,Universidade Estadual de Maringa,21785198|21785201 +Acta Scientiarum Health Sciences,Universidade Estadual de Maringa,16799291|18078648 +Acta Scientiarum Human and Social Sciences,Universidade Estadual de Maringa,16797361|18078656 +Acta Scientiarum Language and Culture,Universidade Estadual de Maringa,19834675|19834683 +Acta Scientiarum Mathematicarum,University of Szeged,00016969| +Acta Scientiarum Polonorum Formatio Circumiectus,The University of Agriculture in Krakow,16440765| +Acta Scientiarum Polonorum Technologia Alimentaria,Uniwersytet Przyrodniczy w Poznaniu (Poznan University of Life Sciences),16440730|18989594 +Acta Scientiarum Technology,Universidade Estadual de Maringa,18078664|18078664 +Acta Scientifica Naturalis,Walter de Gruyter GmbH,23675144 +Acta Seismologica Sinica,Springer-Verlag,10009116|19931344 +Acta Silvae et Ligni,Slovenian Forestry Institute,23353112|23353953 +Acta Silvatica et Lignaria Hungarica,De Gruyter Open Sp. z o.o. ,1787064X|1787064X +Acta Sinica Quantum Optica,Shanghai Institute of Optics and Fine Mechanics,10076654| +Acta Societatis Botanicorum Poloniae,Polish Botanical Society,00016977|20839480 +Acta Sociológica,Elsevier ,01866028| +Acta Sociologica,SAGE Publications,00016993|00016993 +Acta Stomatologica Croatica,University of Zagreb School of Dental Medicine,00017019|18460410 +Acta stomatologica Naissi,Centre for Evaluation in Education and Science,03525252| +Acta Technica Jaurinensis,"""Faculty of Mechanical Engineering, Informatics and Electrical Engineering""",17896932|20645228 +Acta Technologica Agriculturae,De Gruyter Open Sp. z o.o. ,13352555|13385267 +Acta Technologica Dubnicae,Walter de Gruyter GmbH,13394363 +Acta Theologica,African Journals Online ,10158758 +ACTA THERIOLOGICA,Mammal Research Institute,00017051|21903743 +Acta Tropica,Elsevier ,0001706X| +Acta Universitaria,University of Guanajuato,01886266|20079621 +Acta Universitatis Agriculturae et Silviculturae Mendelianae Brunensis,Mendel University Press,12118516|12118516 +Acta Universitatis Apulensis,University 1 December 1918 of Alba Iulia,15825329| +ACTA Universitatis Cibiniensis,De Gruyter Open Sp. z o.o. ,15837149 +Acta Universitatis Cibiniensis Series E Food Technology,De Gruyter Open Sp. z o.o. ,2344150X|2344150X +Acta Universitatis Lodziensis Folia Geographica Physica,Uniwersytet Lodzki (University of Lodz),14279711| +Acta Universitatis Lodziensis Folia Geographica Socio-Oeconomica,Uniwersytet Lodzki (University of Lodz),15081117|23534826 +Acta Universitatis Lodziensis Folia Iuridica,Uniwersytet Lodzki (University of Lodz),02086069| +Acta Universitatis Lodziensis Folia Linguistica,Uniwersytet Lodzki (University of Lodz),02086077| +Acta Universitatis Lodziensis Folia Litteraria Polonica,Uniwersytet Lodzki (University of Lodz),15059057| +Acta Universitatis Lodziensis Folia Litteraria Romanica,Uniwersytet Lodzki (University of Lodz),15059065| +Acta Universitatis Lodziensis Folia oeconomica,Uniwersytet Lodzki (University of Lodz),02086018|23537663 +Acta Universitatis Lodziensis Folia Sociologica,Uniwersytet Lodzki (University of Lodz),0208600X|23534850 +Acta Universitatis Nicolai Copernici Archeologia,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,01376616| +Acta Universitatis Nicolai Copernici Ekonomia,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,20800339|23921269 +Acta Universitatis Nicolai Copernici Pedagogika,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,02085313| +Acta Universitatis Nicolai Copernici Zabytkoznawstwo i Konserwatorstwo,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,0208533X| +Acta Universitatis Nicolai Copernici Zarządzanie,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,16898966|08601232 +Acta Universitatis Sapientiae Agriculture and Environment,De Gruyter Open Sp. z o.o. ,20682964 +Acta Universitatis Sapientiae Alimentaria,Walter de Gruyter GmbH,20667744 +Acta Universitatis Sapientiae Economics and Business,De Gruyter Open Sp. z o.o. ,23438894 +Acta Universitatis Sapientiae European and Regional Studies,Walter de Gruyter GmbH,20687583 +Acta Universitatis Sapientiae Film and Media Studies,De Gruyter Open Sp. z o.o. ,20667779 +Acta Universitatis Sapientiae Informatica,De Gruyter Open Sp. z o.o. ,20667760 +Acta Universitatis Sapientiae Mathematica,De Gruyter Open Sp. z o.o. ,20667752 +Acta Universitatis Sapientiae Philologica,De Gruyter Open Sp. z o.o. ,20682956 +Acta Urológica Portuguesa,Elsevier ,23414022| +Acta veterinaria,De Gruyter Open Sp. z o.o. ,05678315|18207448 +Acta Veterinaria Brno,University of Veterinary and Pharmaceutical Sciences,00017213|18017576 +Acta Veterinaria Hungarica,Akademiai Kiado Zrt.,02366290|15882705 +Acta Veterinaria Scandinavica,Springer (Biomed Central Ltd.),17510147|17510147 +Acta Virologica,"""AEPress, s.r.o.""",0001723X|13362305 +Acta Zoologica,Wiley Blackwell (Blackwell Publishing),00017272|14636395 +Acta Zoologica Academiae Scientiarum Hungaricae,Acta Zoologica Hungarica,12178837|20642474 +Acta Zoologica Cracoviensia,"""Institute of Systematics and Evolution of Animals, Polish Academy of Sciences""",00651710|1734915X +Acta Zoologica Cracoviensia - Series A Vertebrata,"""Institute of Systematics and Evolution of Animals, Polish Academy of Sciences""",18953123| +Acta Zoologica Cracoviensia - Series B Invertebrata,"""Institute of Systematics and Evolution of Animals, Polish Academy of Sciences""",18953131| +Acta Zoologica Lituanica,Informa UK (Taylor & Francis),13921657|16486919 +Actas Dermo-Sifiliográficas,Elsevier ,00017310| +Actas Dermo-Sifiliográficas (English Edition),Elsevier ,15782190| +Actas Teológicas,Universidad Catolica de Temuco,0717425X|0719272X +Actas Urológicas Españolas,Elsevier ,02104806| +Actas Urológicas Españolas (English Edition),Elsevier ,21735786| +Actes de la recherche en sciences sociales,CAIRN,03355322|19552564 +Actes de la Société des historiens médiévistes de l enseignement supérieur public,PERSEE Program,12619078|21176809 +Actes des congrès de la Société française Shakespeare,OpenEdition,22716424 +Actes des rencontres du CIRM,Cellule MathDoc/CEDRAM,21050597 +Actinomycetologica,The Society for Actinomycetes Japan,09145818|18816371 +Action in Teacher Education,Informa UK (Taylor & Francis),01626620|21586098 +Action Learning Research and Practice,Informa UK (Taylor & Francis),14767333|14767341 +Action Research,SAGE Publications,14767503|17412617 +Active and Passive Electronic Components,Hindawi Publishing Corporation,08827516|15635031 +Active Learning in Higher Education,SAGE Publications,14697874|00000000 +Actividad Dietética,Elsevier ,11380322| +Activites,OpenEdition,17652723 +Activities Adaptation & Aging,Informa UK (Taylor & Francis),01924788|15444368 +Activos,Universidad Santo Tomas,01245805| +ACTS Theological Journal,ACTS Theology Institute,23834943| +Actual directions of scientific researches of the XXI century theory and practice,Infra-M Academic Publishing House,23088877| +Actual problems of economy and management,"""Science and Education, Ltd.""",23125535| +Actual Problems of Theory and History of Art,Actual Problems of Theory and History of Art,23122129| +ACTUALIDAD MEDICA,Real Academia de Medicina y Cirugia de Andalucia Oriental,03657965| +Actualidades Biológicas,Universidad de Antioquia,03043584|21457166 +Actualidades en Psicología,Universidad de Costa Rica,02586444|22153535 +Actualidades Investigativas en Educación,Universidad de Costa Rica,14094703 +Actualidades Pedagógicas,Universidad de la Salle,01201700|23898755 +Actualités en analyse transactionnelle,CAIRN,2272060X|2272060X +Actualités Odonto-Stomatologiques,EDP Sciences,00017817|1760611X +Actualités Pharmaceutiques,Elsevier ,05153700| +Actualités Pharmaceutiques Hospitalières,Elsevier ,17697344| +Actuators,MDPI AG,20760825 +Actuel Marx,CAIRN,09944524|19696728 +Acupuncture & Electro-Therapeutics Research,Cognizant Communication Corp,03601293| +Acupuncture and Related Therapies,Elsevier ,22117660| +Acupuncture and Related Therapies,Elsevier ,22117660| +Acupuncture in Medicine,BMJ,09645284|17599873 +Acute Cardiac Care,Informa UK (Taylor & Francis),17482941|1748295X +Acute Medicine & Surgery,Wiley Blackwell (John Wiley & Sons),20528817| +Acute Pain,Elsevier ,13660071| +Ad Americam,Ksiegarnia Akademicka Sp. z.o.o.,18969461|18969461 +Ad Hoc Networks,Elsevier ,15708705| +Ad verba liberorum,De Gruyter Open Sp. z o.o. ,16915771| +ad Veritatem,PhilJOL,16554434| +AD-minister,Universidad EAFIT,16920279|22564322 +Adansonia,"""BioOne (Museum National d'Histoire Naturelle, Paris, France)""",12808571|16394798 +Adaptation,Oxford University Press,17550637|17550645 +Adapted Physical Activity Quarterly,Human Kinetics,07365829| +Adaptive Behavior,SAGE Publications,10597123|00000000 +Adaptive Human Behavior and Physiology,Springer-Verlag,21987335 +Adaptive Medicine,Society of Adaptive Science in Taiwan,2076944X| +ADC Review / Journal of Antibody-drug Conjugates,"""InPress Media Group, LLC""",23270152 +ADC Review / Journal of Antibody-drug Conjugates,"""InPress Media Group, LLC""",21644373 +ADCAIJ ADVANCES IN DISTRIBUTED COMPUTING AND ARTIFICIAL INTELLIGENCE JOURNAL,Ediciones Universidad de Salamanca,22552863 +adComunica,Universitat Jaume I,22542728 +adComunica revista científica de estrategias tendencias e innovación en comunicación,Universitat Jaume I,21740992|21740992 +Addicta The Turkish Journal on Addictions,Turkiye Yesilay Cemiyeti,21487286| +Addiction,Wiley Blackwell (Blackwell Publishing),09652140|13600443 +Addiction Biology,Wiley Blackwell (Blackwell Publishing),13556215|13691600 +Addiction Genetics,De Gruyter Open Sp. z o.o. ,20847688 +Addiction Research,Informa UK (Taylor & Francis),10586989| +Addiction Research & Theory,Informa UK (Taylor & Francis),16066359|14767392 +Addiction Science & Clinical Practice,Springer (Biomed Central Ltd.),19400632|19400640 +Addictive Behaviors,Elsevier ,03064603| +Addictive Behaviors Reports,Elsevier ,23528532| +Addictive Disorders & Their Treatment,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15315754| +ADDIN,State Islamic College of Kudus,08540594|24769479 +Addition of -Alkylhydroxylamines to Enones,Thieme Publishing Group,20100329 +Addition of Alkyl Groups in C—C Bond Formation,Thieme Publishing Group,20600127 +Addition of Carbon Nucleophiles to Aldehydes,Thieme Publishing Group,20500335 +Addition of β-Oxo Esters,Thieme Publishing Group,20500343 +Addition Reaction to Vinyl-1-indoles,Thieme Publishing Group,20500181 +Addition Reactions,Thieme Publishing Group,20600542 +Addition to Carbonyls,Thieme Publishing Group,20200277 +Addition to Oxocarbenium Ions,Thieme Publishing Group,20500300 +Addition to β-Carbolines,Thieme Publishing Group,20200455 +Additional Conferences (Device Packaging HiTEC HiTEN & CICMT),International Microelectronics and Packaging Society,23804491| +Additions to Aldimines and Ketimines,Thieme Publishing Group,20200412 +Additions to Special Imines,Thieme Publishing Group,20200439 +Additive Manufacturing,Elsevier ,22148604| +Additives for Polymers,Elsevier ,03063747| +ADE Bulletin,Modern Language Association,00010898|00010898 +Adelphi series,Informa UK (Taylor & Francis),19445571| +Adeptus,Institute of Slavic Studies of the Polish Academy of Sciences,23000783 +ADFL Bulletin,Modern Language Association,01487639|01487639 +adhäsion KLEBEN & DICHTEN,Springer Fachmedien Wiesbaden GmbH,16191919|21928681 +ADHD Attention Deficit and Hyperactivity Disorders,Springer-Verlag,18666116|18666647 +ADHD Report The,Guilford Publications,10658025| +ADHESION ADHESIVES&SEALANTS,Springer Fachmedien Wiesbaden GmbH,21922624|21956545 +Adhesion and Interface,"""The Society of Adhesion and Interface, Korea""",12299243| +Adicciones,Socidrogalcohol,02144840| +Adipobiology,Medical University Prof. Dr. Praskev Stoyanov - Varna,13133705 +Adipocyte,Landes Bioscience,21623945|2162397X +Adıyaman Üniversitesi Eğitim Bilimleri Dergisi,Adiyaman Universitesi Egitim Bilimleri Dergisi,21492727 +Adıyaman Üniversitesi Sosyal Bilimler Enstitüsü Dergisi,Adiyaman University Journal of Social Sciences,13087363|13087363 +ADLFI Archéologie de la France - Informations,OpenEdition,21140502 +ADMET & DMPK,International Association of Physical Chemists,18487718 +Administração Ensino e Pesquisa,ANGRAD,21776083|23580917 +Administration,Infra-M Academic Publishing House,23093633| +Administration & Society,SAGE Publications,00953997|15523039 +Administration and Policy in Mental Health and Mental Health Services Research,Springer-Verlag,0894587X|15733289 +Administration in Mental Health,Springer-Verlag,00901180| +Administration in Social Work,Informa UK (Taylor & Francis),03643107|15444376 +Administrative Issues Journal Education Practice and Research,"""Administrative Issues Journal: Education, Practice and Research""",21537615|21537615 +Administrative Science Quarterly,SAGE Publications,00018392| +Administrative Sciences,MDPI AG,20763387 +Administrative Theory & Praxis,Informa UK (Taylor & Francis),10841806|19490461 +Adnan Menderes Üniversitesi Tıp Fakültesi/Journal Of Adnan Menderes University Medical Faculty,Galenos Yayinevi,13026755| +Adolescence,CAIRN,07517696|19696736 +Adolescent and Pediatric Gynecology,Elsevier ,09328610| +Adolescent Health Medicine and Therapeutics,Dove Medical Press,1179318X +Adolescent Medicine Clinics,Elsevier ,15473368| +Adolescent Psychiatry,Bentham Science,22106766| +Adolescent Research Review,Springer-Verlag,23638346|23638354 +Adoption & Fostering,SAGE Publications,03085759|1740469X +Adoption Quarterly,Informa UK (Taylor & Francis),10926755|1544452X +aDResearch ESIC International Journal of Communication Research,"""ESIC Business and Marketing School, AdResearch Journal""",18897304| +Adsorption,Springer-Verlag,09295607|15728757 +Adsorption Science and Technology,Multiscience,02636174|00000000 +Adult Education Quarterly,SAGE Publications,07417136|00000000 +Adult Learning,SAGE Publications,10451595|21624070 +Adultspan Journal,Wiley Blackwell (John Wiley & Sons),15246817| +Advance in Agriculture and Biology,Progressive Science Publications,23110163|23109343 +Advance Journal of Food Science and Technology,Maxwell Scientific Publication Corp.,20424868|20424876 +ADVANCE RESEARCH JOURNAL OF CROP IMPROVEMENT,Hind Agri Horticultural Society,09765603|2231640X +ADVANCE RESEARCH JOURNAL OF SOCIAL SCIENCE,Hind Agri Horticultural Society,09765611|22316418 +Advanced Arab Academy of Audio-Vestibulogy Journal,Medknow Publications,23148667| +Advanced Biomedical Engineering,Japanes Society for Medical and Biological Engineering,21875219 +Advanced Biomedical Research,Medknow Publications,22779175| +Advanced Cement Based Materials,Elsevier ,10657355| +Advanced Ceramic Materials,Wiley Blackwell (Blackwell Publishing),08835551| +Advanced Chemical Engineering Research,DEStech Publications,23265671 +Advanced Chemistry Letters,American Scientific Publishers,2326747X| +Advanced Composite Materials,Informa UK (Taylor & Francis),09243046|15685519 +Advanced Computational Intelligence An International Journal (ACII),Academy and Industry Research Collaboration Center,24543934 +Advanced Computational Techniques in Electromagnetics,ISPACS GmbH,21940266 +Advanced Computing An International Journal,Academy and Industry Research Collaboration Center,2229726X|22296727 +Advanced Device Materials,Maney Publishing,20550308|20550316 +Advanced Drug Delivery Reviews,Elsevier ,0169409X| +Advanced Electrochemistry,American Scientific Publishers,23301546| +Advanced Electromagnetics,Advanced Electromagnetics,21190275 +Advanced Electronic Materials,Wiley Blackwell (John Wiley & Sons),2199160X| +Advanced Emergency Medicine,Universe Scientific Publishing Pte. Ltd.,22513590|2315456X +Advanced Emergency Nursing Journal,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,19314485| +Advanced Energy An International Journal,Academy and Industry Research Collaboration Center,23496231 +Advanced Energy Conversion,Elsevier ,03651789| +Advanced Energy Materials,Wiley Blackwell (John Wiley & Sons),16146832|16146840 +Advanced Engineering Forum,Trans Tech Publications,2234991X +Advanced Engineering Informatics,Elsevier ,14740346| +Advanced Engineering Materials,Wiley Blackwell (John Wiley & Sons),14381656|15272648 +Advanced Engineering Technology and Application,Natural Sciences Publishing,20909535|20909543 +Advanced Functional Materials,Wiley Blackwell (John Wiley & Sons),1616301X|16163028 +Advanced Health Care Technologies,Dove Medical Press,2350269X +Advanced Healthcare Materials,Wiley Blackwell (John Wiley & Sons),21922640| +Advanced in Food Technology and Nutritional Sciences - Open Journal,Openventio Publishers,23778350 +Advanced Manufacturing Polymer & Composites Science,Maney Publishing,20550340|20550359 +Advanced Manufacturing Processes,Informa UK (Taylor & Francis),08842558| +Advanced Materials,Wiley Blackwell (John Wiley & Sons),09359648|15214095 +Advanced Materials & Technologies,Tambov State Technical University,24144606| +Advanced Materials and Manufacturing Processes,Informa UK (Taylor & Francis),08982090| +Advanced Materials for Optics and Electronics,Wiley Blackwell (John Wiley & Sons),10579257|10990712 +Advanced Materials Interfaces,Wiley Blackwell (John Wiley & Sons),21967350| +Advanced Materials Interfaces,Wiley Blackwell (John Wiley & Sons),21967350| +Advanced Materials Letters,VBRI Press AB,09763961|0976397X +Advanced Materials Research,Trans Tech Publications,16628985 +Advanced Materials Research,Trans Tech Publications,16628985 +Advanced Materials Research,Trans Tech Publications,16628958 +Advanced Materials Technologies,Wiley Blackwell (John Wiley & Sons),2365709X| +Advanced Medical Sciences An International Journal,Academy and Industry Research Collaboration Center,23945966 +Advanced Modeling and Simulation in Engineering Sciences,Springer (Biomed Central Ltd.),22137467|22137467 +Advanced Nonlinear Studies,Walter de Gruyter GmbH,15361365|21690375 +Advanced Optical Materials,Wiley Blackwell (John Wiley & Sons),21951071| +Advanced Optical Technologies,Walter de Gruyter GmbH,21928576|21928584 +Advanced Performance Materials,Springer-Verlag,09291881|15728765 +Advanced Pharmaceutical Bulletin,International Society for Phytocosmetic Sciences,22285881|22517308 +Advanced Porous Materials,American Scientific Publishers,23273941| +Advanced Powder Technology,Elsevier ,09218831|15685527 +Advanced Robotics,Informa UK (Taylor & Francis),01691864|15685535 +Advanced Science,Wiley Blackwell (John Wiley & Sons),21983844| +Advanced Science Engineering and Medicine,American Scientific Publishers,21646627| +Advanced Science Focus,American Scientific Publishers,23300760| +Advanced Science Letters,American Scientific Publishers,19366612|19367317 +Advanced Structural and Chemical Imaging,Springer (Biomed Central Ltd.),21980926|21980926 +Advanced Studies in Artificial Intelligence,Pushpa Publishing House,23947993| +Advanced Studies in Biology,"""Hikari, Ltd.""",13139495|13147668 +Advanced Studies in Medical Sciences,"""Hikari, Ltd.""",13147684 +Advanced Studies in Theoretical Physics,"""Hikari, Ltd.""",13131311|13147609 +Advanced Synthesis & Catalysis,Wiley Blackwell (John Wiley & Sons),16154150|16154169 +Advanced Techniques in Biology & Medicine,OMICS Publishing Group,23791764 +Advanced technologies,Centre for Evaluation in Education and Science,24062979| +Advanced Technologies in Mechanics,SIMP Redakcja Mechanik - Agencja Wydawnicza SIMP,23920327 +Advanced Technology for Learning,ACTA Press,17102251| +Advanced Trends in Mathematics,SciPress Ltd.,2394532X +Advancements in Genetic Engineering,OMICS Publishing Group,21690111 +Advances and Applications in Bioinformatics and Chemistry,Dove Medical Press,11786949 +Advances and Applications in Discrete Mathematics,Pushpa Publishing House,09741658| +Advances and Applications in Fluid Mechanics,Pushpa Publishing House,09734686| +Advances and Applications in Statistics,Pushpa Publishing House,09723617| +Advances in Accounting,Elsevier ,08826110| +Advances in Acoustics and Vibration,Hindawi Publishing Corporation,16876261|1687627X +Advances in Adaptive Data Analysis,World Scientific ,17935369|17937175 +Advances in Aerospace Engineering,Hindawi Publishing Corporation,23566531|23147520 +Advances in Aging Research,"""Scientific Research Publishing, Inc.""",21690499|21690502 +Advances in Agriculture,Hindawi Publishing Corporation,2356654X|23147539 +Advances in aircraft and spacecraft science,Techno-Press,2287528X| +Advances in Alcohol & Substance Abuse,"""Informa UK (Haworth Press, Inc.,)""",02703106| +Advances in Alzheimer s Disease,"""Scientific Research Publishing, Inc.""",21692459|21692467 +Advances in Analytical Chemistry,Hans Publishers,21631557|21631565 +Advances in Analytical Chemistry of Scientific & Academic Publishing,Scientific and Academic Publishing,21632839| +Advances in Anatomic Pathology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10724109| +Advances in Anatomy,Hindawi Publishing Corporation,23566558|23147547 +Advances in Andrology,Hindawi Publishing Corporation,23566566|23148446 +Advances in Anesthesia,Elsevier ,07376146| +Advances in Anesthesiology,Hindawi Publishing Corporation,23566574|23147555 +Advances in Animal and Veterinary Sciences,Nexus Academic Publishers,23093331|23078316 +Advances in Animal Biosciences,Cambridge University Press,20404700|20404719 +Advances in Anthropology,"""Scientific Research Publishing, Inc.""",21639353|21639361 +Advances in Antiviral Drug Design,Elsevier , +Advances in Applied Acoustics,"""Science and Engineering Publishing, Co.""",23257032| +Advances in Applied Biomedicine,Hamad bin Khalifa University Press (HBKU Press),23051604| +Advances in Applied Ceramics,Maney Publishing,17436753|17436761 +Advances in Applied Clifford Algebras,Springer-Verlag,01887009|16614909 +Advances in Applied Mathematics,Hans Publishers,23247991|23248009 +Advances in Applied Mathematics,Elsevier ,01968858|10902074 +Advances in Applied Mathematics and Mechanics,Global Science Press,20700733|20751354 +Advances in Applied Physics,"""Hikari, Ltd.""",13147617 +Advances in Applied Probability,Cambridge University Press,00018678|14756064 +Advances in Applied Research,Diva Enterprises Private Limited,09743839|23492104 +Advances in Applied Sociology,"""Scientific Research Publishing, Inc.""",21654328|21654336 +Advances in Archaeological Practice,Society for American Archaeology,23263768|23263768 +Advances in Artificial Intelligence,Hindawi Publishing Corporation,16877470|16877489 +Advances in Artificial Neural Systems,Hindawi Publishing Corporation,16877594|16877608 +Advances in Astronomy,Hindawi Publishing Corporation,16877969|16877977 +Advances in Atmospheric Sciences,Springer-Verlag,02561530|18619533 +Advances in Autism,Emerald (MCB UP ),20563868| +Advances in Automobile Engineering,OMICS Publishing Group,21677670 +Advances in Behaviour Research and Therapy,Elsevier ,01466402| +Advances in Biochemistry,Science Publishing Group,23290870| +Advances in Bioinformatics,Hindawi Publishing Corporation,16878027|16878035 +Advances in Biological Chemistry,"""Scientific Research Publishing, Inc.""",21622183|21622191 +Advances in Biological Regulation,Elsevier ,22124926| +Advances in Biology,Hindawi Publishing Corporation,23566582|23147563 +Advances in Biomaterials,Hindawi Publishing Corporation,23566590|23147873 +Advances in Biomechanics and Applications,Techno-Press,22872094| +Advances in Biomedical Engineering Research,"""Science and Engineering Publishing, Co.""",2328160X| +Advances in Biomedical Science and Engineering,"""Scientific Online Publishing, Co., Ltd.""",2377035X|23770376 +Advances in Biomedicine and Pharmacy,International Scientific Publishing Co.,23137479 +Advances in Biophysics,Elsevier ,0065227X| +Advances in Bioresearch,Society of Education,09764585|22771573 +Advances in Bioscience and Bioengineering,Science Publishing Group,23304154| +Advances in Bioscience and Biotechnology,"""Scientific Research Publishing, Inc.""",21568456|21568502 +Advances in Bioscience and Biotechnology,"""Scientific Research Publishing, Inc.""",21527296|2152730X +Advances in Bioscience and Clinical Medicine,Australian International Academic Centre,22031413 +Advances in Biosensors and Bioelectronics,"""Science and Engineering Publishing, Co.""",2326473X| +Advances in Botanical Research,Elsevier , +Advances in Botany,Hindawi Publishing Corporation,23566604|23147857 +Advances in Breast Cancer Research,"""Scientific Research Publishing, Inc.""",21681589|21681597 +Advances in Building Energy Research,Informa UK (Taylor & Francis),17512549|17562201 +Advances in Calculus of Variations,Walter de Gruyter GmbH,18648258|18648266 +Advances in Cancer Research,Elsevier , +Advances in Cancer Research & Treatment,IBIMA Publishing,2326702X +Advances in Carbohydrate Chemistry and Biochemistry,Elsevier , +Advances in Cell Aging and Gerontology,Elsevier , +Advances in Cell Biology,De Gruyter Open Sp. z o.o. ,20802218 +Advances in Cellular and Molecular Otolaryngology,Co-Action Publishing,20016220 +Advances in Cement Research,Thomas Telford Ltd.,09517197|17517605 +Advances in Ceramic Science and Engineering,"""Science and Engineering Publishing, Co.""",23256885| +Advances in Chemical Engineering,Elsevier , +Advances in Chemical Engineering and Science,"""Scientific Research Publishing, Inc.""",21600392|21600406 +Advances in Chemical Science,"""Science and Engineering Publishing, Co.""",23265744| +Advances in Chemistry,Hindawi Publishing Corporation,23566612|23147571 +Advances in Chronic Kidney Disease,Elsevier - WB Saunders,15485595| +Advances in Civil Engineering,Hindawi Publishing Corporation,16878086|16878094 +Advances in Civil Engineering Materials,ASTM International,21653984| +Advances in Classification Research Online,University of Washington Libraries,23249773 +Advances in Climate Change Research,Elsevier ,16749278| +Advances in Clinical and Experimental Medicine,Wroclaw Medical University,18995276| +Advances in Clinical Medicine,Hans Publishers,21618712|21618720 +Advances in Cognitive Psychology,University of Finance and Management in Warsaw,18951171|18951171 +Advances in Colloid and Interface Science,Elsevier ,00018686| +Advances in Complex Systems,World Scientific ,12848535| +Advances in Complex Systems,World Scientific ,02195259|17936802 +Advances in Computational Design,Techno-Press,23838477| +Advances in Computational Mathematics,Springer-Verlag,10197168|15729044 +Advances in Computational Research,Bioinfo Publications,09753273|09759085 +Advances in Computed Tomography,"""Scientific Research Publishing, Inc.""",21692475|21692483 +Advances in Computer Engineering,Hindawi Publishing Corporation,23566620|23147601 +Advances in Computer Science and Engineering,Pushpa Publishing House,09736999| +Advances in Computing,Scientific and Academic Publishing,21632944| +Advances in concrete construction,Techno-Press,22875301|2287531X +Advances in Condensed Matter Physics,Hans Publishers,23263512|23263520 +Advances in Condensed Matter Physics,Hindawi Publishing Corporation,16878108|16878124 +Advances in Contraception,Springer-Verlag,02674874|15737195 +Advances in Critical Care,Hindawi Publishing Corporation,23566639|23147717 +Advances in Crop Science and Technology,OMICS Publishing Group,23298863 +Advances in Dairy Research,OMICS Publishing Group,2329888X +Advances in Data Analysis and Classification,Springer-Verlag,18625347|18625355 +Advances in Decision Sciences,Hindawi Publishing Corporation,20903359|20903367 +Advances in Dental Research,SAGE Publications,08959374|15440737 +Advances in Dermatology,Elsevier ,08820880| +Advances in Dermatology and Allergology,Termedia Sp. z.o.o.,1642395X| +Advances in Dermatology and Allergology,Termedia Sp. z.o.o.,08606218| +Advances in Developing Human Resources,SAGE Publications,15234223|00000000 +Advances in Difference Equations,Springer (Biomed Central Ltd.),16871839|16871847 +Advances in Differential Equations and Control Processes,Pushpa Publishing House,09743243| +Advances in Digestive Medicine,Elsevier ,23519797| +Advances in Dual Diagnosis,Emerald (MCB UP ),17570972|20428324 +Advances in Eating Disorders,Informa UK (Taylor & Francis),21662630|21662649 +Advances in Ecological Research,Elsevier , +Advances in Ecology,Hindawi Publishing Corporation,23566647|2314761X +Advances in Economic Analysis & Policy,Walter de Gruyter GmbH,15380637 +Advances in Economics and Business,"""Horizon Research Publishing Co., Ltd.""",23315059|23315075 +Advances in Education,Hans Publishers,2160729X|21607303 +Advances in Electrical and Computer Engineering,Stefan cel Mare University of Suceava,15827445|18447600 +Advances in Electrical and Electronic Engineering,"""VSB Technical University of Ostrava, Faculty of Electrical Engineering and Computer Sciences""",13361376|18043119 +Advances in Electrical Engineering,Hindawi Publishing Corporation,23566655|23147636 +Advances in Electronics,Hindawi Publishing Corporation,23566663|23147881 +Advances in Emergency Medicine,Hindawi Publishing Corporation,23566671|23147644 +Advances in Endocrinology,Hindawi Publishing Corporation,2356668X|23147903 +Advances in Energy and Power,"""Horizon Research Publishing Co., Ltd.""",23332700|23333278 +Advances in Energy and Power Engineering,Hans Publishers,23280514|23280506 +Advances in Energy Engineering,"""Science and Engineering Publishing, Co.""",23277572| +Advances in Energy Research,Techno-Press,22876316| +Advances in Engineering Software,Elsevier ,09659978| +Advances in Engineering Software (1978),Elsevier ,01411195| +Advances in Engineering Software and Workstations,Elsevier ,09613552| +Advances in Entomology,"""Scientific Research Publishing, Inc.""",23311991|23312017 +Advances in Environmental Chemistry,Hindawi Publishing Corporation,23566698|23147652 +Advances in Environmental Protection,Hans Publishers,21645485|21645493 +Advances in environmental research,Techno-Press,22341722| +Advances in Environmental Research,Elsevier ,10930191| +Advances in Enzyme Regulation,Elsevier ,00652571| +Advances in Enzyme Research,"""Scientific Research Publishing, Inc.""",23284846|23284854 +Advances in Epidemiology,Hindawi Publishing Corporation,23566701|23147628 +Advances in Ethology,Wiley Blackwell (Blackwell Publishing),09314202| +Advances in Evolutionary Biology,Hindawi Publishing Corporation,2356671X|23147660 +Advances in Experimental Social Psychology,Elsevier , +Advances in Food and Nutrition Research,Elsevier , +Advances in Forestry Letters,"""Science and Engineering Publishing, Co.""",23263547| +Advances in Free Radical Biology & Medicine,Elsevier ,87559668| +Advances in Fuzzy Sets and Systems,Pushpa Publishing House,0973421X| +Advances in Fuzzy Systems,Hindawi Publishing Corporation,16877101|1687711X +Advances in Genetic Engineering & Biotechnology,OMICS Publishing Group,23249021 +Advances in Genomics and Genetics,Dove Medical Press,11799870 +Advances in Geology,Hindawi Publishing Corporation,23566728|23147695 +Advances in Geometry,Walter de Gruyter GmbH,1615715X|16157168 +Advances in Geophysics,Elsevier , +Advances in Geosciences,Copernicus GmbH,16807359 +Advances in Geosciences,Hans Publishers,21633967|21633975 +Advances in Geriatrics,Hindawi Publishing Corporation,23566736|23147679 +Advances in Gerontology,Pleiades Publishing,20790570|20790589 +Advances in Health Sciences Education,Springer-Verlag,13824996|15731677 +Advances in Hematology,Hindawi Publishing Corporation,16879104|16879112 +Advances in Hepatology,Hindawi Publishing Corporation,23566744|23147709 +Advances in Heterocyclic Chemistry,Elsevier , +Advances in High Energy Physics,Hindawi Publishing Corporation,16877357|16877365 +Advances in Historical Studies,"""Scientific Research Publishing, Inc.""",23270438|23270446 +Advances in Human Factors/Ergonomics,Elsevier , +Advances in Human-Computer Interaction,Hindawi Publishing Corporation,16875893|16875907 +Advances In Image and Video Processing,Scholar Publishing,20547412 +Advances in Infectious Diseases,"""Scientific Research Publishing, Inc.""",21642648|21642656 +Advances in Information Mining,Bioinfo Publications,09753265|09759093 +Advances in Inorganic Chemistry,Elsevier , +Advances in Integrative Medicine,Elsevier ,22129588| +Advances in Interdisciplinary Studies of Work Teams,Emerald (MCB UP ),15720977| +Advances in International Accounting,Elsevier , +Advances in International Accounting,Elsevier ,08973660| +Advances in Internet of Things,"""Scientific Research Publishing, Inc.""",21616817|21616825 +Advances in Interventional Cardiology,Termedia Sp. z.o.o.,17349338| +Advances in Journalism and Communication,"""Scientific Research Publishing, Inc.""",23284927|23284935 +Advances in Language and Literary Studies,Australian International Academic Centre,22034714 +Advances in Law Studies,Infra-M Academic Publishing House,24095087| +Advances in Learning and Behavioral Disabilities,Emerald (MCB UP ),0735004X| +Advances in Legal Medicine,Healthy Aging Research,23856785 +Advances in Life Course Research,Elsevier ,10402608| +Advances in Life Sciences,Scientific and Academic Publishing,21631387| +Advances in Limnology,Schweizerbart,1612166X| +Advances in Linear Algebra & Matrix Theory,"""Scientific Research Publishing, Inc.""",2165333X|21653348 +Advances in Literary Study,"""Scientific Research Publishing, Inc.""",23274034|23274050 +Advances in Lung Cancer,"""Scientific Research Publishing, Inc.""",21692718|21692726 +Advances in Macroeconomics,Walter de Gruyter GmbH,15346013 +Advances in management & marketing,Infra-M Academic Publishing House,23092661| +Advances in Manufacturing,Springer-Verlag,20953127|21953597 +Advances in Manufacturing Science and Technology,De Gruyter Open Sp. z o.o. ,18959881|18959881 +Advances in Marine Biology,Elsevier , +Advances in Marine Sciences,Hans Publishers,23764260|23764279 +Advances in Material Chemistry,Hans Publishers,2331012X|23310146 +Advances in Materials,Science Publishing Group,23272503| +Advances in Materials and Processing Technologies,Informa UK (Taylor & Francis),2374068X|23740698 +Advances in Materials Physics and Chemistry,"""Scientific Research Publishing, Inc.""",2162531X|21625328 +Advances in materials Research,Techno-Press,22340912| +Advances in Materials Science,De Gruyter Open Sp. z o.o. ,17302439|20834799 +Advances in Materials Science and Applications,The World Academic Publishing,23069325|23069317 +Advances in Materials Science and Engineering,Hindawi Publishing Corporation,16878434|16878442 +Advances in Materials Science and Engineering An International Journal (MSEJ),Academy and Industry Research Collaboration Center,23940824 +Advances in Mathematical Physics,Hindawi Publishing Corporation,16879120|16879139 +Advances in Mathematics,Elsevier ,00018708|10902082 +Advances in Mathematics Education,Informa UK (Taylor & Francis),14636441| +Advances in Mathematics of Communications,American Institute of Mathematical Sciences,19305346| +Advances in Mechanical Engineering,SAGE Publications,16878132|16878140 +Advances in Medical Education and Practice,Dove Medical Press,11797258 +Advances in Medical Ethics,Healthy Aging Research,23855495 +Advances in Medical Informatics,Bioinfo Publications,22499466|22499474 +Advances in Medical Sciences,Elsevier ,18961126|18984002 +Advances in Medicine,Hindawi Publishing Corporation,23566752|2314758X +Advances in Mental Health,Informa UK (Taylor & Francis),18374905|18374905 +Advances in Mental Health and Intellectual Disabilities,Emerald (MCB UP ),20441282|20441290 +Advances in Mental Health and Learning Disabilities,Emerald (MCB UP ),17530180|20428332 +Advances in Meteorology,Hindawi Publishing Corporation,16879309|16879317 +Advances in Microbiology,"""Scientific Research Publishing, Inc.""",21653402|21653410 +Advances in Microbiology,Hans Publishers,23270810|23270829 +Advances in Microelectronic Engineering,"""Science and Engineering Publishing, Co.""",23277599| +Advances in Microwave and Wireless Technologies,Sciknow Publications,2329938X +Advances in Mind-Body Medicine,Elsevier- Churchill Livingstone,07419738| +Advances in Modern Oncology Research,PiscoMed Publishing Pte Ltd,24247847|24247855 +Advances in Molecular and Cell Biology,Elsevier , +Advances in Molecular Biology,Hindawi Publishing Corporation,23566760|23147911 +Advances in Molecular Imaging,"""Scientific Research Publishing, Inc.""",21616728|21616752 +Advances in molecular oncology,Publishing House ABV Press,2313805X|24133787 +Advances in Molecular Relaxation and Interaction Processes,Elsevier ,03784487| +Advances in Molecular Relaxation Processes,Elsevier ,00018716| +Advances in Molecular Toxicology,Elsevier , +Advances in Multimedia,Hindawi Publishing Corporation,16875680|16875699 +Advances in Multimedia Technology,AICIT,22341544|22341552 +Advances in nano research,Techno-Press,2287237X| +Advances in Nanoparticles,"""Scientific Research Publishing, Inc.""",21690510|21690529 +Advances in Natural Sciences Nanoscience and Nanotechnology,IOP Publishing,20436254|20436262 +Advances in Neonatal Care,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15360903| +Advances in Nephrology,Hindawi Publishing Corporation,23566779|2314792X +Advances in Network and Communications,AICIT,20934734|22341471 +Advances in Networks,Science Publishing Group,23269766| +Advances in Neuroimmune Biology,IOS Press,1878948X|18789498 +Advances in Neuroimmunology,Elsevier ,09605428| +Advances in Neuroscience,Hindawi Publishing Corporation,23566787|2314789X +Advances in Nonlinear Analysis,Walter de Gruyter GmbH,21919496|2191950X +Advances in Nonlinear Optics,Hindawi Publishing Corporation,16877276|16877284 +Advances in Numerical Analysis,Hindawi Publishing Corporation,16879562|16879570 +Advances in Nursing,Hindawi Publishing Corporation,23566795|23147725 +Advances in Nursing Science,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,01619268| +Advances in Nutrition An International Review Journal,American Society for Nutrition,21565376 +Advances in Obesity Weight Management & Control,MedCrave Group,23783168 +Advances in Oceanography,Hindawi Publishing Corporation,23566809|23147733 +Advances in Oceanography and Limnology,PAGEPress Publications,19475721|1947573X +Advances in Operations Research,Hindawi Publishing Corporation,16879147|16879155 +Advances in Ophthalmology & Visual System,MedCrave Group,23774290 +Advances in Optical Technologies,Hindawi Publishing Corporation,16876393|16876407 +Advances in Optics,Hindawi Publishing Corporation,23566817|23147741 +Advances in Optics and Photonics,The Optical Society,19438206 +Advances in Optoelectronic Materials,"""Science and Engineering Publishing, Co.""",23277661| +Advances in OptoElectronics,Hindawi Publishing Corporation,1687563X|16875648 +Advances in Organic Synthesis,Bentham Science,15740870|00000000 +Advances in Orthopedic Surgery,Hindawi Publishing Corporation,23566825|23148233 +Advances in Orthopedics,Hindawi Publishing Corporation,20903464|20903472 +Advances in Otolaryngology,Hindawi Publishing Corporation,23566833|23147938 +Advances in Parasitology,Elsevier , +Advances in Parkinson s Disease,"""Scientific Research Publishing, Inc.""",21699712|21699720 +Advances in Pediatric Research,Healthy Aging Research,23854529 +Advances in Pediatrics,Elsevier ,00653101| +Advances in Pharmaceutical and Ethnomedicines,Nexus Academic Publishers,23100575 +Advances in Pharmaceutics,Hindawi Publishing Corporation,23566841|2314775X +Advances in Pharmacoepidemiology & Drug Safety,OMICS Publishing Group,21671052 +Advances in Pharmacological Sciences,Hindawi Publishing Corporation,16876334|16876342 +Advances in Pharmacology and Pharmacy,"""Horizon Research Publishing Co., Ltd.""",23320036|23320044 +Advances in Philosophy,Hans Publishers,21692599|21692602 +Advances in Physical Chemistry,Hindawi Publishing Corporation,16877985|16877993 +Advances in Physical Education,"""Scientific Research Publishing, Inc.""",21640386|21640408 +Advances in Physical Organic Chemistry,Elsevier , +Advances in Physical Sciences,Hans Publishers,23343400|23343478 +Advances In Physics,Informa UK (Taylor & Francis),00018732|14606976 +Advances in Physics Theories and Applications,"""International Institute for Science, Technology and Education""",22250638| +Advances in Physics X,Informa UK (Taylor & Francis),23746149 +Advances in Physiotherapy,Informa UK (Taylor & Francis),14038196|16511948 +Advances in Plants & Agriculture Research,MedCrave Group,23736402 +ADVANCES IN POLAR SCIENCE,China Science Publishing & Media Ltd.,16749928| +ADVANCES IN POLAR SCIENCE,China Science Publishing & Media Ltd.,16749928| +Advances in Polymer Technology,Wiley Blackwell (John Wiley & Sons),07306679|10982329 +Advances in Porous Flow,Hans Publishers,21645639|21645663 +Advances in Power Electronics,Hindawi Publishing Corporation,2090181X|20901828 +Advances in Preventive Medicine,Hindawi Publishing Corporation,20903480|20903499 +Advances in Production Engineering & Management,"""Production Engineering Institute (PEI), Faculty of Mechanical Engineering""",18546250|18556531 +Advances in Psychiatric Treatment,Royal College of Psychiatrists,13555146|14721481 +Advances in Psychiatry,Hindawi Publishing Corporation,2356685X|23147768 +Advances in Psychological Science,China Science Publishing & Media Ltd.,16713710| +Advances in Psychology,Hans Publishers,21607273|21607281 +Advances in Public Health,Hindawi Publishing Corporation,23566868|23147784 +Advances in Pure and Applied Mathematics,Walter de Gruyter GmbH,18671152|18696090 +Advances in Pure Mathematics,"""Scientific Research Publishing, Inc.""",21600368|21600384 +Advances in Radiation Oncology,Elsevier ,24521094| +Advances in Radio Science,Copernicus GmbH,16849973 +Advances in Radiology,Hindawi Publishing Corporation,23566876|23147792 +Advances in Rare Diseases,Healthy Aging Research,23855290 +Advances in Regenerative Biology,Co-Action Publishing,20018517 +Advances in Regenerative Medicine,Hindawi Publishing Corporation,23566884|23147806 +Advances in Rehabilitation,De Gruyter Open Sp. z o.o. ,08606161|17344948 +Advances in Remote Sensing,"""Scientific Research Publishing, Inc.""",2169267X|21692688 +Advances in Renal Replacement Therapy,Elsevier - WB Saunders,10734449|15288455 +Advances in Reproductive Sciences,"""Scientific Research Publishing, Inc.""",23300744|23300752 +Advances in Research,Sciencedomain International,23480394 +Advances in Research - Museum,Berghahn Books,20496729|20496737 +Advances in Robotics & Automation,OMICS Publishing Group,21689695 +Advances in robotics research,Techno-Press,22874976| +Advances in School Mental Health Promotion,Informa UK (Taylor & Francis),1754730X|20498535 +Advances in Science and Research,Copernicus GmbH,19920636 +Advances in Science and Technology,Trans Tech Publications,16620356 +Advances in Science and Technology – Research Journal,Wydawnictwo Naukowe Gabriel Borowski (WNGB),20804075|22998624 +Advances in Scientific and Applied Accounting,Associacao Nacional de Programas de Pos-Graduacao em Ciencias Contabeis (ANPCONT),19838611|19838611 +Advances in Sexual Medicine,"""Scientific Research Publishing, Inc.""",21645191|21645205 +Advances in Simulation,Springer (Biomed Central Ltd.),20590628 +Advances in Skin & Wound Care,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15277941| +Advances in Small Animal Medicine and Surgery,Elsevier ,10417826| +Advances in Social Sciences,Hans Publishers,21692556|21692564 +Advances in Social Sciences Research Journal,Scholar Publishing,20550286 +Advances in Social Work,IUPUI University Library,15278565|23314125 +Advances in Software Engineering,Hindawi Publishing Corporation,16878655|16878663 +Advances in Space Biology and Medicine,Elsevier , +Advances in Space Research,Elsevier ,02731177| +Advances in Speech Language Pathology,Informa UK (Taylor & Francis),14417049| +Advances in Statistical Climatology Meteorology and Oceanography,Copernicus GmbH,23643587 +Advances in Statistics,Hindawi Publishing Corporation,23566892|23148314 +Advances in Stem Cells,IBIMA Publishing,23273569 +Advances in Structural Engineering,SAGE Publications,13694332|20484011 +Advances in Surgery,Elsevier ,00653411| +Advances in Surgical Sciences,Science Publishing Group,23766174| +Advances in Synchrotron Radiation,World Scientific ,17936179|17937124 +Advances in the History of Rhetoric,Informa UK (Taylor & Francis),15362426|19360835 +Advances in the Study of Behavior,Elsevier , +Advances in Theoretical and Applied Mechanics,"""Hikari, Ltd.""",13136550|13147625 +Advances in Theoretical and Mathematical Physics,"""International Press of Boston, Inc.""",10950761|10950753 +Advances in Theoretical Economics,Walter de Gruyter GmbH,15345963 +Advances in Therapy,Springer-Verlag,0741238X|18658652 +Advances in Toxicology,Hindawi Publishing Corporation,23566906|23147822 +Advances in Tribology,Hindawi Publishing Corporation,16875915|16875923 +Advances in Tumor Virology,"""Libertas Academica, Ltd.""",11795654 +Advances in Urology,Hindawi Publishing Corporation,16876369|16876377 +Advances in Vascular Medicine,Hindawi Publishing Corporation,23566914|23147830 +Advances in Virology,Hindawi Publishing Corporation,16878639|16878647 +Advances in Virus Research,Elsevier , +Advances in Vision Computing An International Journal,Academy and Industry Research Collaboration Center,23492201 +Advances in Water Resources,Elsevier ,03091708| +Advances in Wound Care,Mary Ann Liebert,21621918|21621934 +Advances in Zoology,Hindawi Publishing Corporation,23566922|23147865 +Advances in Zoology and Botany,"""Horizon Research Publishing Co., Ltd.""",23315083|23315091 +Advancing Information Technology Research,Liceo de Cagayan University,22441468|20949626 +Advancing Law Enforcement and Public Safety Research,Liceo de Cagayan University,20949561 +Advancing Literature & Communication Research,Liceo de Cagayan University,20949642 +Advancing Microelectronics Magazine,International Microelectronics and Packaging Society,23807016| +Advancing Radiologic Technology Research,Liceo de Cagayan University,22445986|20949618 +Advancing Social Science Research,Liceo de Cagayan University,20949634 +Adverse Drug Reaction Bulletin,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,00446394| +Adverse Drug Reactions and Toxicological Reviews,Springer-Verlag,0964198X| +Advertising & Society Review,Muse - Johns Hopkins University Press,15347311 +AECL Nuclear Review,Atomic Energy of Canada Limited,19298056|19296371 +AEDS Journal,Informa UK (Taylor & Francis),00011037| +Aegean Review of the Law of the Sea and Maritime Law,Springer-Verlag,18649610|18649629 +Aeolian Research,Elsevier ,18759637| +Aequationes Mathematicae,Springer-Verlag,00019054|14208903 +AERA Open,SAGE Publications,23328584 +Aerobiologia,Springer-Verlag,03935965|15733025 +AeroMedical Journal,Elsevier ,08948321| +Aerosol and Air Quality Research,Taiwan Association for Aerosol Research,16808584|20711409 +Aerosol Science and Technology,Informa UK (Taylor & Francis),02786826|15217388 +Aerospace,MDPI AG,22264310 +Aerospace Medicine and Human Performance,Aerospace Medical Association,23756314|23756322 +Aerospace Science and Technology,Elsevier ,12709638| +Aerospace Scientific Journal,Science and Education of the Bauman MSTU,24130982 +AEROSPACE TECHNOLOGY JAPAN THE JAPAN SOCIETY FOR AERONAUTICAL AND SPACE SCIENCES,Japan Society for Aeronautical and Space Sciences,18840477 +Aesthetic Plastic Surgery,Springer-Verlag,0364216X|14325241 +Aesthetic Surgery,Elsevier - Mosby,10840761| +Aesthetic Surgery Journal,Oxford University Press,1090820X|1527330X +Aestimatio The IEB International Journal of Finance,Insitututo Estudios Bursatiles,21730164|21731926 +AEU - International Journal of Electronics and Communications,Elsevier ,14348411| +AfCS-Nature Molecule Pages,Nature Publishing Group,14775921 +Affilia,SAGE Publications,08861099|00000000 +AFR,Ankara University,13018620|13018620 +Africa,Cambridge University Press,00019720|17500184 +Africa Bibliography,Cambridge University Press,02666731|17571642 +Africa Confidential,Wiley Blackwell (Blackwell Publishing),00446483|14676338 +Africa Development,African Journals Online ,8503907 +Africa Education Review,Informa UK (Taylor & Francis),18146627|17535921 +Africa Insight,African Journals Online ,02562804|1995641X +Africa Journal of Management,Informa UK (Taylor & Francis),23322373|23322381 +Africa Research Bulletin Economic Financial and Technical Series,Wiley Blackwell (Blackwell Publishing),00019852|14676346 +Africa Research Bulletin Political Social and Cultural Series,Wiley Blackwell (Blackwell Publishing),00019844|1467825X +Africa Review,Informa UK (Taylor & Francis),09744053|09744061 +Africa Today,Indiana University Press,00019887|15271978 +African Affairs,Oxford University Press,00019909|14682621 +African American Review,Muse - Johns Hopkins University Press,10624783|19456182 +African and Asian Studies,Brill Academic Publishers,15692094|15692108 +African and Black Diaspora An International Journal,Informa UK (Taylor & Francis),17528631|1752864X +African Anthropologist,African Journals Online ,10240969 +African Archaeological Review,Springer-Verlag,02630338|15729842 +African Arts,MIT Press,00019933|19372108 +African Conflict and Peacebuilding Review,Indiana University Press,2156695X|21567263 +African Crop Science Journal,African Journals Online ,10219730|20726589 +African Development Review,Wiley Blackwell (Blackwell Publishing),10176772|14678268 +African Diaspora,Brill Academic Publishers,18725457|18725465 +African East-Asian Affairs,"""Stellenbosch University - African East Asian Affairs, The China Monitor""",23088699 +African Economic History,JSTOR,01452258| +African Economic History Review,JSTOR,03606333| +African Entomology,BioOne (Entomological Society of Southern Africa),10213589|10213589 +African Evaluation Journal,AOSIS,23104988|23065133 +African Geographical Review,Informa UK (Taylor & Francis),19376812|21632642 +African Health Sciences,African Journals Online ,16806905 +African Historical Review,Informa UK (Taylor & Francis),17532523|17532531 +African Historical Studies,JSTOR,00019992| +African Human Rights Law Journal,Academy of Science of South Africa,1609073X|19962096 +African Identities,Informa UK (Taylor & Francis),14725843|14725851 +African Invertebrates,BioOne (Natal Museum of South Africa),16815556|23052562 +African Issues,JSTOR,15484505| +African J of Accounting Auditing and Finance,Inderscience Enterprises Ltd.,20468083|20468091 +African J of Economic and Sustainable Development,Inderscience Enterprises Ltd.,20464770|20464789 +African Journal for Physical Health Education Recreation and Dance,African Journals Online ,11174315 +African Journal of Agricultural Research,Academic Journals,1991637X +African Journal of AIDS Research,Informa UK (National Inquiry Services Center),16085906|17279445 +African Journal of Anaesthesia and Intensive Care,African Journals Online ,07942184|07942184 +African Journal of Applied Statistics,Statistics and Probability African Society (SPAS),23160861| +African Journal of Applied Zoology and Environmental Biology,African Journals Online ,1119023X +African Journal of Aquatic Science,Informa UK (National Inquiry Services Center),16085914|17279364 +African Journal of Biochemistry Research,Academic Journals,19960778 +African Journal of Biomedical Research,African Journals Online ,11195096 +AFRICAN JOURNAL OF BIOTECHNOLOGY,Academic Journals,16845315 +African Journal of Business Ethics,Medknow Publications,18177417| +AFRICAN JOURNAL OF BUSINESS MANAGEMENT,Academic Journals,19938233 +African Journal of Clinical and Experimental Microbiology,African Journals Online ,1595689X +African Journal of Cross-Cultural Psychology and Sport Facilitation,African Journals Online ,11197056 +African Journal of Disability,AOSIS,22239170|22267220 +African Journal of Drug and Alcohol Studies,African Journals Online ,15314065|15314065 +African Journal of Ecology,Wiley Blackwell (Blackwell Publishing),01416707|13652028 +African Journal of Economic and Management Studies,Emerald (MCB UP ),20400705| +African Journal of Economic Policy,African Journals Online ,11164875 +African Journal of Educational Studies in Mathematics and Sciences,African Journals Online ,0855501X +African Journal of Emergency Medicine,Elsevier ,2211419X| +African Journal of Endocrinology and Metabolism,African Journals Online ,11166495|11166495 +African Journal of Environmental Science and Technology,Academic Journals,19960786|19960786 +African Journal of Finance and Management,African Journals Online ,8566372 +African Journal of Food Agriculture Nutrition and Development,"""African Journal of Food, Agriculture, Nutrition and Development""",16845358 +African Journal of Food and Nutritional Security,African Journals Online ,16081366 +African Journal of Food Science,Academic Journals,19960794 +African Journal of Food Science and Technology,International Research Journals,21415455 +African Journal of Health Professions Education,Health and Medical Publishing Group,20785127 +African Journal of Health Sciences,African Journals Online ,10229272 +African Journal of Herpetology,Informa UK (Taylor & Francis),21564574|21533660 +African Journal of History and Culture,Academic Journals,21416672 +African Journal of Infectious Diseases,African Traditional Herbal Medicine Supporters Initiative (ATHMSI),20060165|20060165 +African Journal of International Affairs,African Journals Online ,8507902 +African Journal of International and Comparative Law,Edinburgh University Press,09548890|17551609 +African Journal of International and Comparative Law,Edinburgh University Press,09548890|17551609 +African Journal of International and Comparative Law,Edinburgh University Press,09548890|17551609 +African Journal of International Criminal Justice,Boom Uitgevers Den Haag,2352068X| +African Journal of Laboratory Medicine,AOSIS,22252002|22252010 +African Journal of Legal Studies,Brill Academic Publishers,22109730|17087384 +African Journal of Marine Science,Informa UK (National Inquiry Services Center),1814232X|18142338 +African Journal of Marketing Management,Academic Journals,21412421 +African Journal of Mathematics and Computer Science Research,Academic Journals,20069731 +African Journal of Medical and Health Sciences,Medknow Publications,23845589| +African Journal of Microbiology Research,Academic Journals,19960808|19960808 +African Journal of Midwifery and Women s Health,Mark Allen Group,17597374|20524293 +African Journal of Neurological Sciences,African Journals Online ,10158618 +African Journal of Oral Health,African Journals Online ,1895710 +African Journal of Oral Health Sciences,African Journals Online ,16087232 +African Journal of Paediatric Surgery,Medknow Publications,01896725| +African Journal of Pathology and Microbiology,Ashdin Publishing,20909020|20909039 +African Journal of Pharmacy and Pharmacology,Academic Journals,19960816 +African Journal of Physiotherapy and Rehabilitation Sciences,African Journals Online ,21418322 +African Journal of Plant Science,Academic Journals,19960824 +African Journal of Political Science,African Journals Online ,10270353 +African Journal of Political Science and International Relations,Academic Journals,19960832 +African Journal of Primary Health Care & Family Medicine,AOSIS,20712928|20712936 +African Journal of Psychiatry,OMICS Publishing Group,19948220 +African Journal of Pure and Applied Chemistry,Academic Journals,19960840 +African Journal of Range and Forage Science,Informa UK (National Inquiry Services Center),10220119|17279380 +African Journal of Reproductive Health,JSTOR,11184841| +African Journal of Research in Mathematics Science and Technology Education,Informa UK (Taylor & Francis),10288457|18117295 +African Journal of Science and Technology,African Journals Online ,16079949 +African Journal of Science Technology Innovation and Development,Informa UK (Taylor & Francis),20421338|20421346 +African Journal of Traditional Complementary and Alternative Medicines,African Traditional Herbal Medicine Supporters Initiative (ATHMSI),1896016 +African Journal of Trauma,Medknow Publications,15971112| +African Journal of Tropical Hydrobiology and Fisheries,African Journals Online ,20036 +African Journal of Urology,Elsevier ,11105704|19619987 +African Journal of Wildlife Research,BioOne (Southern African Wildlife Management Association),24107220|24108200 +African Journal on Conflict Resolution,African Journals Online ,15626997 +African Journalism Studies,Informa UK (Taylor & Francis),23743670|23743689 +African Languages and Cultures,Informa UK (Taylor & Francis),0954416X| +African Natural History,Academy of Science of South Africa,23057963 +African Philosophy,Informa UK (Taylor & Francis),13696823|14692864 +African Population Studies,Stellenbosch University - African Population Studies,08505780|23087854 +African Public Procurement Law Journal,Stellenbosch University - African Public Procurement Law Journal,24117048|24117048 +African Research Review,African Journals Online ,19949057|20700083 +African Safety Promotion A Journal of Injury and Violence Prevention,African Journals Online ,1728774X +African Security,Informa UK (Taylor & Francis),19392206|19392214 +African Security Review,Informa UK (Taylor & Francis),10246029|21540128 +African Sociological Review / Revue Africaine de Sociologie,African Journals Online ,10274332 +African Studies,Informa UK (Taylor & Francis),00020184|14692872 +African Studies Bulletin,JSTOR,05681537| +African Studies Monographs,African Journals Online ,11197196 +African Studies Review,Cambridge University Press,00020206|15552462 +African Vision and Eye Health,AOSIS,03789411|24103039 +African Yearbook of International Law Online / Annuaire Africain de droit international Online,Brill Academic Publishers,13807412|22116176 +African Zoology,BioOne (African Zoology),15627020|2224073X +Africana Newsletter,Cambridge University Press,0568160X| +Africultures,CAIRN,12762458|22711732 +Afrika Matematika,Springer-Verlag,10129405|21907668 +Afrika Statistika,Statistics and Probability African Society (SPAS),2316090X|08520305 +Afrique Archeologie et Arts,OpenEdition,16343123|24312045 +Afrique contemporaine,CAIRN,00020478|1782138X +Afrique Science Revue Internationale des Sciences et Technologie,African Journals Online ,1813548X +Afriques,OpenEdition,21086796|21086796 +Afro Asian Journal of Anthropology and Social Policy,Diva Enterprises Private Limited,22294414 +Afro-Ásia,SciELO,00020591| +Afro-Asian J of Finance and Accounting,Inderscience Enterprises Ltd.,17516447|17516455 +AFRREV IJAH An International Journal of Arts and Humanities,African Journals Online ,22258590|22275452 +AFRREV LALIGENS An International Journal of Language Literature and Gender Studies,African Journals Online ,22258604|22275460 +AFRREV STECH An International Journal of Science and Technology,African Journals Online ,22258612|22275444 +Afterall A Journal of Art Context and Enquiry,The University of Chicago Press,14654253|21564914 +Afyon Kocatepe Üniversitesi Sosyal Bilimler Dergisi,Bilimsel Tip Publishing House,13021265| +Afyon Kocatepe University Journal of Sciences and Engineering,Bilimsel Tip Publishing House,21475296| +Against the Grain,Purdue University (bepress),2380176X +AGE,Springer-Verlag,01619152|15744647 +Age and Ageing,Oxford University Press,00020729|14682834 +Ageing and Society,Cambridge University Press,0144686X|14691779 +Ageing International,Springer-Verlag,01635158|1936606X +Ageing Research,PAGEPress Publications,20367384|20367376 +Ageing Research Reviews,Elsevier ,15681637| +Agenda,JSTOR,10130950| +Agents and Actions,Springer-Verlag,00654299| +Aggiornamenti CIO,Springer-Verlag,19706839|19706847 +Aggression and Violent Behavior,Elsevier ,13591789| +Aggressive Behavior,Wiley Blackwell (John Wiley & Sons),0096140X|10982337 +AGH Drilling Oil Gas,AGH University of Science and Technology Press,15070042| +AGH Journal of Mining and Geoengineering,AGH University of Science and Technology Press,2299257X| +Aging,"""Impact Journals, LLC """,19454589 +Aging & Mental Health,Informa UK (Taylor & Francis),13607863|13646915 +Aging and Disease,Aging and Disease,21525250|21525250 +Aging Cell,Wiley Blackwell (Blackwell Publishing),14749718|14749728 +Aging Clinical and Experimental Research,Springer-Verlag,17208319|17208319 +Aging Health,Future Medicine,1745509X|17455103 +Aging Neuropsychology and Cognition,Informa UK (Taylor & Francis),13825585|17444128 +Aging Research,Hans Publishers,23343419|23343524 +Agone,OpenEdition,11576790|19537999 +Ágora,APESC - Associacao Pro-Ensino em Santa Cruz do Sul,14140454|19826737 +Àgora de salut,Universitat Jaume I,24439827 +Agora débats/jeunesses,CAIRN,12685666|19683758 +Ágora Estudos em Teoria Psicanalítica,SciELO,15161498|18094414 +Agora papeles de Filosofía,University of Santiago de Compostela,02116642|21743347 +AGORA Political Communication Studies,Vytautas Magnus University,20299923|24243663 +Agrárgazdasági Statisztikai Zsebkönyv 2014,Research Institute of Agricultural Economics,14182130| +Agrária (São Paulo Online),Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,18081150|18081150 +Agrarian Academy,Centro Cientifico Conhecer,23579951 +Agrarian South Journal of Political Economy,SAGE Publications,22779760|23210281 +Agrekon,Informa UK (Taylor & Francis),03031853|20780400 +Ağrı - The Journal of The Turkish Society of Algology,"""LookUs Bilisim, Ltd.""",13000012| +AGri-Bioscience Monographs,Terrapub,21861447 +Agribusiness,Wiley Blackwell (John Wiley & Sons),07424477|15206297 +Agribusiness and Information Management,Korean Society of Food and Agicultural Information Science,22343075|22887806 +Agrica,Diva Enterprises Private Limited,23201193|2394448X +AGRICOLTURA ISTITUZIONI MERCATI,Franco Angeli,19718373|19718373 +Agricultura Técnica,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,3652807 +Agricultura tropica et subtropica,De Gruyter Open Sp. z o.o. ,18010571 +Agricultural Administration,Elsevier ,0309586X| +Agricultural Administration and Extension,Elsevier ,02697475| +Agricultural and Biological Chemistry,"""Japan Society for Bioscience, Biotechnology, and Agrochemistry""",00021369|18811280 +Agricultural and Food Economics,Springer (Biomed Central Ltd.),21937532|21937532 +Agricultural and Food Science,MTT Agrifood Research Finland,14596067|17951895 +Agricultural and Food Science Journal of Ghana,African Journals Online ,8555591 +Agricultural and Forest Entomology,Wiley Blackwell (Blackwell Publishing),14619555|14619563 +Agricultural and Forest Meteorology,Elsevier ,01681923| +Agricultural Economics,Wiley Blackwell (Blackwell Publishing),01695150|15740862 +Agricultural Economics (Zemědělská ekonomika),Czech Academy of Agricultural Sciences,0139570X|18059295 +Agricultural Economics Research Review,Diva Enterprises Private Limited,09713441|09740279 +Agricultural Engineering,Aleksandras Stulginskis University,13921134|23450371 +Agricultural Finance Review,Emerald (MCB UP ),00021466| +Agricultural History,Agricultural History Society,00021482|15338290 +Agricultural Information Research,The Japanese Society of Agricultural Informatics,09169482|18815219 +Agricultural Journal,Science Alert,18169155| +Agricultural Meteorology,Elsevier ,00021571| +Agricultural Research,Springer-Verlag,2249720X|22497218 +Agricultural Research Journal,Diva Enterprises Private Limited,23951435|2395146X +Agricultural Reviews,Agricultural Research Communication Center,02531496|09760741 +Agricultural Science,Science and Education Centre of North America,22914471|2291448X +Agricultural science and practice,Co. Ltd. Ukrinformnauka,23123370|23123389 +Agricultural Science Digest - A Research Journal,Agricultural Research Communication Center,0253150X|09760547 +Agricultural science Euro-North-East,"""Science and Education, Ltd.""",20729081| +Agricultural Sciences,"""Scientific Research Publishing, Inc.""",21568553|21568561 +Agricultural Sciences in China,Elsevier ,16712927| +Agricultural Systems,Elsevier ,0308521X| +Agricultural Wastes,Elsevier ,01414607| +Agricultural Water Management,Elsevier ,03783774| +Agriculture,MDPI AG,20770472|20770472 +Agriculture & Food Security,Springer (Biomed Central Ltd.),20487010|20487010 +Agriculture (Polnohospodárstvo),De Gruyter Open Sp. z o.o. ,05513677|13384376 +Agriculture and Agricultural Science Procedia,Elsevier ,22107843| +Agriculture and Biology Journal of North America,Science Hub,21517517|21517525 +Agriculture and Environment,Elsevier ,03041131| +Agriculture and Human Values,Springer-Verlag,0889048X|15728366 +Agriculture and Natural Resources,Elsevier ,2452316X| +Agriculture Ecosystems & Environment,Elsevier ,01678809| +Agriculture Forestry and Fisheries,Science Publishing Group,2328563X| +AGRICULTURE UPDATE,Hind Agri Horticultural Society,09731520|09766847 +Agris on-line Papers in Economics and Informatics,Czech University of Life Sciences Prague,18041930 +AGRIVITA Journal of Agricultural Science,"""Agrivita, Journal of Agricultural Science (AJAS)""",01260537|23026766 +Agro Sur,Sistema de Bibliotecas UACH,03048802| +Agro-Economist,Diva Enterprises Private Limited,23500786|23948159 +Agro-Ecosystems,Elsevier ,03043746| +Agro-Science,African Journals Online ,11197455 +Agroecology and Sustainable Food Systems,Informa UK (Taylor & Francis),21683565|21683573 +Agroforestry Systems,Springer-Verlag,01674366|15729680 +Agroindustrial science,Scientia Agropecuaria,22262989 +Agrokémia és Talajtan,Akademiai Kiado Zrt.,00021873|15882713 +Agronomía Colombiana,Universidad Nacional de Colombia,01209965|23573732 +Agronomía Mesoamericana,Universidad de Costa Rica,10217444|22153608 +Agronomie,EDP Sciences,02495627|12979643 +Agronomie Africaine,African Journals Online ,10152288 +Agronomy,MDPI AG,20734395 +Agronomy for Sustainable Development,Springer-Verlag,17740746|17730155 +Agronomy Journal,American Society of Agronomy,00021962|14350645 +Agronomy Journal of Nepal,Nepal Journals Online,20910649| +Agrosearch,African Journals Online ,11179996 +Agrotechnology,OMICS Publishing Group,21689881 +Agua y Territorio,Universidad de Jaen,23408472|23407743 +Águas Subterrâneas,Lepidus Tecnologia,01017004|21799784 +Ägypten und Levante,Verlag der Osterreichischen Akademie der Wissenschaften,10155104|18135145 +AHKAM Jurnal Ilmu Syariah,E-Journal System Portal of Syarif Hidayatullah State Islamic University,14124734|24078646 +AI & Society,Springer-Verlag,09515666|14355655 +AI Communications,IOS Press,09217126|18758452 +AI Matters,Association for Computing Machinery,23723483 +AI Practitioner,AI Practitioner Journal,17418224|17418224 +AIAA Journal,American Institute of Aeronautics and Astronautics,00011452|1533385X +AIBR Revista de Antropologia Iberoamericana,AIBR - Asociacion de Antropologos Iberoamericanos en Red,16959752|15789705 +AIBS Bulletin,Oxford University Press,00967645| +AIC development problems of the region,Central Collector of Libraries BIBCOM,20790996| +AIChE Journal,Wiley Blackwell (John Wiley & Sons),00011541|15475905 +AIDS,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,02699370| +AIDS and Behavior,Springer-Verlag,10907165|15733254 +AIDS Care,Informa UK (Taylor & Francis),09540121|13600451 +AIDS Education and Prevention,Guilford Publications,08999546| +Aids Patient Care,Mary Ann Liebert,08935068| +AIDS PATIENT CARE and STDs,Mary Ann Liebert,10872914|10872914 +Aids Research,Mary Ann Liebert,07376006| +AIDS Research and Human Retroviruses,Mary Ann Liebert,08892229|08892229 +AIDS Research and Therapy,Springer (Biomed Central Ltd.),17426405|17426405 +AIDS Research and Treatment,Hindawi Publishing Corporation,20901240|20901259 +AIDS Supplement,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,13502840| +AIHA Journal,Informa UK (Taylor & Francis),15428117|15428125 +AIHAJ,American Industrial Hygiene Association,00028894| +AIHAJ - American Industrial Hygiene Association,Informa UK (Taylor & Francis),15298663| +AIJ Journal of Technology and Design,Architectural Institute of Japan,13419463|18818188 +AILA Review,John Benjamins Publishing Company,14610213|15705595 +AIMR Conference Proceedings,CFA Institute,15350207| +AIMS Agriculture and Food,American Institute of Mathematical Sciences,24712086| +AIMS Bioengineering,American Institute of Mathematical Sciences,23751487| +AIMS Biophysics,American Institute of Mathematical Sciences,23779098| +AIMS Energy,American Institute of Mathematical Sciences,23338334| +AIMS Environmental Science,American Institute of Mathematical Sciences,23720352| +AIMS Genetics,American Institute of Mathematical Sciences,23771143| +AIMS Geosciences,American Institute of Mathematical Sciences,24712132| +AIMS Materials Science,American Institute of Mathematical Sciences,23720468| +AIMS Medical Science,American Institute of Mathematical Sciences,2375155X|23751576 +AIMS Microbiology,American Institute of Mathematical Sciences,24711888| +AIMS Molecular Science,American Institute of Mathematical Sciences,2372028X| +AIMS Neuroscience,American Institute of Mathematical Sciences,23737972| +AIMS Public Health,American Institute of Mathematical Sciences,23278994| +Ain Shams Engineering Journal,Elsevier ,20904479| +Ain Shams Medical Journal,"""Al Manhal FZ, LLC""",00022144| +Ain-Shams Journal of Anaesthesiology,Medknow Publications,16877934| +AINS - Anästhesiologie · Intensivmedizin · Notfallmedizin · Schmerztherapie,Thieme Publishing Group,09392661|14391074 +AIP Advances,American Institute of Physics,21583226|21583226 +Air & Space Europe,Elsevier ,12900958| +Air & Waste,Informa UK (Taylor & Francis),1073161X| +Air & Water Borne Diseases,OMICS Publishing Group,21677719 +Air and Space Law,Springer (Kluwer Academic Publishers),09273379| +Air Medical Journal,Elsevier - Mosby,1067991X| +Air Quality Atmosphere & Health,Springer-Verlag,18739318|18739326 +Air Repair,Informa UK (Taylor & Francis),00966665| +Air Soil and Water Research,"""Libertas Academica, Ltd.""",11786221 +Aircraft Design,Elsevier ,13698869| +Aircraft Engineering and Aerospace Technology,Emerald (MCB UP ),00022667| +AIS Educator Journal,AIS Educator Association,19358156|19358156 +Aisthesis,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7187181 +Aitia Regards sur la culture hellénistique au XXIe siècle,OpenEdition,17754275|17754275 +Ajalooline Ajakiri The Estonian Historical Journal,University of Tartu Press,14063859|22283897 +AJIT-e Online Academic Journal of Information Technology,AJIT-E Academic Journal of Information Technology,13091581|13091581 +AJN American Journal of Nursing,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,0002936X| +AJOB Empirical Bioethics,Informa UK (Taylor & Francis),23294515|23294523 +AJOB Neuroscience,Informa UK (Taylor & Francis),21507740|21507759 +AJOB Primary Research,Informa UK (Taylor & Francis),21507716|21507724 +AJP Advances in Physiology Education,American Physiological Society,10434046|15221229 +AJP Cell Physiology,American Physiological Society,03636143|15221563 +AJP Endocrinology and Metabolism,American Physiological Society,01931849|15221555 +AJP Gastrointestinal and Liver Physiology,American Physiological Society,01931857|15221547 +AJP Heart and Circulatory Physiology,American Physiological Society,03636135|15221539 +AJP Lung Cellular and Molecular Physiology,American Physiological Society,10400605|15221504 +AJP Regulatory Integrative and Comparative Physiology,American Physiological Society,03636119|15221490 +AJP Renal Physiology,American Physiological Society,03636127|15221466 +AJS Review,Cambridge University Press,03640094|14754541 +AJSP Review and Reports,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,23815949| +Akadémiai Értesítö,Akademiai Kiado Zrt.,08659303|15882721 +Akademie für Geowissenschaften und Geotechnologien Veröffentlichungen,Schweizerbart,18672140| +Akademik Araştırmalar ve Çalışmalar Dergisi (AKAD),Journal of Academic Researches and Studies,13093762|21491585 +Akademik Gastroenteroloji Dergisi,Turkish Journal of Academic Gastroenterology,13036629|21490600 +Akademik İncelemeler Dergisi,Journal of Academic Inquiries,13067885| +Akademika,Penerbit Universiti Kebangsaan Malaysia (UKM Press),01265008| +AKCE International Journal of Graphs and Combinatorics,Elsevier ,09728600| +Akdeniz Medical Journal,Akdeniz Medical Journal,13001779| +Akroterion,Stellenbosch University - Akroterion,03031896|20792883 +Aktualni osvrti,Institute of Public Finance,18484085 +Aktualności Neurologiczne,Medical Communications Sp. z.o.o.,16419227| +Aktuel nordisk odontologi,Scandinavian University Press / Universitetsforlaget AS,19023545|20587538 +Aktuelle Dermatologie,Thieme Publishing Group,03402541|1438938X +Aktuelle Ernährungsmedizin,Thieme Publishing Group,03410501|14389916 +Aktuelle Kardiologie,Thieme Publishing Group,21935203|21935211 +Aktuelle Neurologie,Thieme Publishing Group,03024350|14389428 +Aktuelle Rheumatologie,Thieme Publishing Group,0341051X|14389940 +Aktuelle Traumatologie,Thieme Publishing Group,00446173|14399436 +Aktuelle Urologie,Thieme Publishing Group,00017868|14388820 +Akupunktur & Aurikulomedizin,Springer-Verlag,21929319|21966400 +Akušerstvo ginekologiâ i reprodukciâ,IRBIS,23137347| +Akusherstvo i ginekologiia,Bionika Media,24125679| +Al Adzka,IAIN Antasari,20889801| +Al-Azhar Journal of Pediatrics,"""Al Manhal FZ, LLC""",11107774| +Al-Azhar Medical Journal,"""Al Manhal FZ, LLC""",11100400| +AL-BANJARI Jurnal Ilmiah Ilmu-ilmu Keislaman,IAIN Antasari,14129507| +Al-Barkaat Journal of Finance & Management,Diva Enterprises Private Limited,09747281|22294503 +Al-Basar International Journal of Ophthalmology,Medknow Publications,18586538| +AL-BAYAN JOURNAL,Department of Qur'an and Hadith Studies,22321950|22321969 +AL-IHKAM Jurnal Hukum & Pranata Sosial,Sekolah Tinggi Agama Islam Negeri (STAIN) Pamekasan,1907591X|24423084 +Al-Iqtishad Journal of Islamic Economics,E-Journal System Portal of Syarif Hidayatullah State Islamic University,2087135X|24078654 +Al-Jami ah Journal of Islamic Studies,Al-Jami'ah Research Centre,0126012X|2338557X +Al-Masaq,Informa UK (Taylor & Francis),09503110|1473348X +Al-Mawarid,Universitas Islam Indonesia (Islamic University of Indonesia),08547408| +Al-Mithqal for Economic and Administrative Sciences,"""Al Manhal FZ, LLC""",23110988| +Al-Qanṭara,Departmento de Publicaciones del CSIC,02113589|19882955 +AL-TA LIM,Institut Agama Islam Negeri (IAIN) Imam Bonjol Padang,14107546|23557893 +Alabama Review,Muse - Johns Hopkins University Press,21669961 +Alabe Revista de Investigación sobre Lectura y Escritura,University of Almeria Rd de Universidades Lectoras,21719624 +Alambique Revista acadèmica de ciencia ficciòn y fantasia ∕ Jornal acadêmico de ficção científica e fantasía,University of South Florida Libraries,21676577 +AlBaha University Journal for Human Sciences,"""Al Manhal FZ, LLC""",16587189| +Albertus Magnus,Universidad Santo Tomas,20119771|20119771 +Albineana Cahiers d Aubigné,PERSEE Program,11545852| +Albion A Quarterly Journal Concerned with British Studies,Cambridge University Press,00951390| +ALCHEMY,Maulana Malik Ibrahim State Islamic University,20861710| +ALCHEMY Jurnal Penelitian Kimia,Universitas Sebelas Maret,14124092|24434183 +Alcheringa An Australasian Journal of Palaeontology,Informa UK (Taylor & Francis),03115518|17520754 +Alcohol,Elsevier ,07418329| +Alcohol and Alcoholism,Oxford University Press,07350414|14643502 +Alcoholism & Drug Abuse Weekly,Wiley Blackwell (John Wiley & Sons),10421394|15567591 +Alcoholism and Drug Addiction,Elsevier ,08674361| +Alcoholism Clinical and Experimental Research,Wiley Blackwell (Blackwell Publishing),01456008|15300277 +Alcoholism Treatment Quarterly,Informa UK (Taylor & Francis),07347324|15444538 +Aldol Addition of Dihydroxyacetone Phosphate to Thiol-Containing Aldehydes,Thieme Publishing Group,20200374 +Aldol Addition of Pyruvate to -Acetyl--mannosamine and Analogues,Thieme Publishing Group,20200382 +Aldol Processes with Aldehyde Donors,Thieme Publishing Group,20300425 +Aldol Reaction of α-Isothiocyanato Imides with Aldehydes,Thieme Publishing Group,20500246 +Aldol Reactions with Dihalofuran-2(5)-ones,Thieme Publishing Group,20500009 +Alea Estudos Neolatinos,SciELO,1517106X|1517106X +Aleph,Indiana University Press,15651525|15533956 +Alergologia Polska - Polish Journal of Allergology,Elsevier ,23533854| +Alethia,Maney Publishing,07113625| +Aletria Revista de Estudos de Literatura,Faculdade de Letras da UFMG,16793749|23172096 +Alexandria,SAGE Publications,09557490|20504551 +Alexandria Engineering Journal,Elsevier ,11100168| +Alexandria Journal of Medicine,Elsevier ,20905068| +Alexandria Journal of Veterinary Sciences,ScopeMed International Medical Journal Managment and Indexing System,11102047| +Alexandria Revista de Educação em Ciência e Tecnologia,Universidade Federal de Santa Catarina,19825153 +Alfa Revista de Linguística (São José do Rio Preto),SciELO,19815794|19815794 +ALGAE,The Korean Society of Phycology,12262617| +Algal Research,Elsevier ,22119264| +Algebra,Hindawi Publishing Corporation,23144106|23144114 +Algebra & Number Theory,Mathematical Sciences Publishers,19370652|19447833 +Algebra and Logic,Springer-Verlag,00025232|15738302 +Algebra Colloquium,World Scientific ,10053867|02191733 +Algebra Universalis,Springer-Verlag,00025240|14208911 +Algebraic & Geometric Topology,Mathematical Sciences Publishers,14722747|14722739 +Algebraic Geometry,Foundation Compositio Mathematica,22142584|22142584 +Algebras and Representation Theory,Springer (Kluwer Academic Publishers),1386923X|15729079 +Algemeen Nederlands Tijdschrift voor Wijsbegeerte,Amsterdam University Press,00025275| +Algeps revista de geologia,Iniciativa Digital Politecnica,20135114| +Algerian Journal of Arid Environment,"""Al Manhal FZ, LLC""",21701318| +Algologia,Co. Ltd. Ukrinformnauka,08688540|08688540 +Algological Studies,Schweizerbart,18641318| +Algological Studies,Schweizerbart,18641318| +Algorithmic Finance,IOS Press,21585571|21576203 +Algorithmica,Springer-Verlag,01784617|14320541 +Algorithms,MDPI AG,19994893 +Algorithms for Molecular Biology,Springer (Biomed Central Ltd.),17487188|17487188 +Algorithms Research,Scientific and Academic Publishing,23249978| +Alif Journal of Comparative Poetics,JSTOR,11108673| +Alimentary Pharmacology & Therapeutics,Wiley Blackwell (Blackwell Publishing),02692813|13652036 +Alimentary Pharmacology & Therapeutics (Suppl),Wiley Blackwell (Blackwell Publishing),09530673|13652036 +Alimentary Pharmacology & Therapeutics Symposium Series,Wiley Blackwell (Blackwell Publishing),17466334|17466342 +Aliso,Claremont Colleges Library,23272929 +Aljouf Science and Engineering Journal,"""Al Manhal FZ, LLC""",16586670| +Aljouf University Medical Journal,"""Al Manhal FZ, LLC""",16586700| +Alkenylation of Imines,Thieme Publishing Group,20200242 +Alkenylation with Organozinc Reagents through Hydroboration–Transmetalation of Alkynes,Thieme Publishing Group,20200234 +Alkylation of Aldehydes with a Stereogenic Center at the β-Position,Thieme Publishing Group,20200161 +Alkynylation of Aldehydes,Thieme Publishing Group,20600259 +All Ireland Review,JSTOR,20092415| +Állattani Közlemények,Allattani Kozlemenyek,00025658| +Allergo Journal,Springer-Verlag,09418849|21956405 +Allergo Journal International,Springer-Verlag,21970378 +Allergologia et Immunopathologia,Elsevier ,03010546|15781267 +Allergologie,Dustri-Verlag Dr. Karl Feistle,03445062| +Allergology International,Elsevier ,13238930|14401592 +Allergy,Wiley Blackwell (Blackwell Publishing),01054538|13989995 +Allergy & Clinical Immunology International - Journal of the World Allergy Organization,Hogrefe Publishing Group,08381925| +Allergy & Rhinology,Oceanside Publications,21526575|21526567 +Allergy and Asthma Proceedings,Oceanside Publications,10885412|15396304 +Allergy and Rhinology,Oceanside Publications,21526567 +Allergy Asthma & Clinical Immunology,Springer (Biomed Central Ltd.),17101492|17101492 +Allergy Asthma & Respiratory Disease,"""The Korean Academy of Asthma, Allergy and Clinical Immunology and The Korean Academy of Pediatric Allergy and Respiratory Disease (KAMJE)""",22880402|22880410 +Allergy Asthma and Clinical Immunology,"""Decker, Inc.""",17101484 +Allergy Asthma and Immunology Research,"""The Korean Academy of Asthma, Allergy and Clinical Immunology and The Korean Academy of Pediatric Allergy and Respiratory Disease (KAMJE)""",20927355|20927363 +Allgemein- und Viszeralchirurgie up2date,Thieme Publishing Group,16116437|16116461 +Allgemeine Homöopathische Zeitung,Thieme Publishing Group,14382563|14398990 +Allgemeines Statistisches Archiv,Springer-Verlag,00026018|16140176 +Alluvium 21st-Century Writing 21st-Century Approaches,Martin Eve,20501560 +Alma mater Vestnik Vysshey Shkoly,INOITs ALMAVEST Ltd.,1026955X| +Almagest,"""Brepols Publishers, NV""",17922593| +Almanack,SciELO,22364633 +Almanack Braziliense,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,18088139|18088139 +Alpha (Osorno),SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7182201 +Alpha Omegan,Elsevier ,00026417| +Alphanumeric Journal,Alphanumeric Journal,21482225 +Alpine Botany,Springer-Verlag,16642201|1664221X +Alsic,OpenEdition,12864986|12864986 +ALT-J,Co-Action Publishing,09687769|17411629 +ALTAI HAKPO,The Altaic Society of Korea,12266582| +Altamira CUT,Centro de Estudios Superiores de Baja California S.C.,20078854|20076584 +ALTER - European Journal of Disability Research / Revue Européenne de Recherche sur le Handicap,Elsevier ,18750672| +Alteridad,Salesian Polytechnic University of Ecuador,1390325X|13908642 +Alternativas Cuadernos de trabajo Social,Publicaciones Universidad de Alicante,11330473|19899971 +Alternative & Integrative Medicine,OMICS Publishing Group,23275162 +AlterNative An International Journal of Indigenous Peoples,Nga Pae o te Maramatanga,11771801|11741740 +Alternative and Complementary Therapies,Mary Ann Liebert,10762809|15579085 +Alternative Energy,ACTA Press,19256272| +Alternative Higher Education,Springer-Verlag,03616851| +Alternative Lifestyles,Springer-Verlag,0161570X| +Alternative Medicine Studies,PAGEPress Publications,20389477|20389485 +Alternative Spirituality and Religion Review,Philosophy Documentation Center,19460538| +Alternatives Global Local Political,SAGE Publications,03043754| +Alternatives to the High Cost of Litigation,Wiley Blackwell (John Wiley & Sons),15494373|15494381 +ALTEX,ALTEX Edition,1868596X| +Althea Medical Journal,International Journal of Integrated Health Sciences (IJIHS),23374330 +altlastenforum Baden-Württemberg e V Schriftenreihe,Schweizerbart,14391996| +Altorientalische Forschungen,Oldenbourg Wissenschaftsverlag,02328461|21966761 +Alzheimer Disease & Associated Disorders,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,08930341| +Alzheimer Realidades e investigación en demencia,"""Editorial Glosa, S.L.""",11371242|20136889 +Alzheimer s & Dementia,Elsevier ,15525260| +Alzheimer s & Dementia Diagnosis Assessment & Disease Monitoring,Elsevier ,23528729| +Alzheimer s & Dementia Translational Research & Clinical Interventions,Elsevier ,23528737| +Alzheimer s Research & Therapy,Springer (Biomed Central Ltd.),17589193|17589193 +Amaltea Revista de mitocrítica,Universidad Complutense de Madrid,19891709 +Amasya Üniversitesi Eğitim Fakültesi Dergisi,Amasya Universitesi Egitim Fakultesi Dergisi,21467811|21467811 +Amasya Üniversitesi İlahiyat Fakültesi Dergisi,Review of the Faculty of Divinity of Amasya University,21477256| +Amazon s Research and Environmental Law,IESUR/FAAr,23178442|23178442 +Amazônia Organizações e Sustentabilidade,"""Amazonia, Organizacoes e Sustentabilidade""",22388893 +Amazônia Science & Health,Amazonia: Science and Health,23181419 +AMB Express,Springer (Biomed Central Ltd.),21910855|21910855 +Ambiances,OpenEdition,2266839X +Ambiente & sociedade,SciELO,1414753X|1414753X +Ambiente Construído,SciELO,16788621 +Ambiente e Agua - An Interdisciplinary Journal of Applied Science,Instituto de Pesquisas Ambientais em Bacias Hidrograficas,1980993X +Ambiente y Desarrollo,Editorial Pontificia Universidad Javeriana,01217607| +AMBIO,Springer-Verlag,00447447|16547209 +Ambio Special Report,JSTOR,03010325| +Ambix,Maney Publishing,00026980|17458234 +Ambulatory Anesthesia,Dove Medical Press,23245891 +Ambulatory Child Health,Wiley Blackwell (Blackwell Publishing),13555626|14670658 +Ambulatory Pediatrics,Elsevier ,15301567|15394409 +Ambulatory Surgery,Elsevier ,09666532| +Ameghiniana,Asociacion Paleontologica Argentina,00027014|18518044 +Amerasia Journal,UCLA American Indian Studies Center,00447471| +America,OpenEdition,09829237|24279048 +América Latina en la Historia Económica,America Latina en la Historia Economics,14052253|20073496 +AMÉRICA LATINA HOY,Ediciones Universidad de Salamanca,11302887|23404396 +América sin nombre,Publicaciones Universidad de Alicante,15773442|19899831 +American Annals of the Deaf,Muse - Johns Hopkins University Press,15430375 +American Anthropologist,Wiley Blackwell (Blackwell Publishing),00027294|15481433 +American Antiquity,Society for American Archaeology,00027316| +American Art,The University of Chicago Press,10739300|15496503 +American Art Illustrated,JSTOR,2151772X| +American Art Journal,JSTOR,00027359| +American Art Journal,JSTOR,00027359| +American Behavioral Scientist,SAGE Publications,00027642|15523381 +American Book Review,Muse - Johns Hopkins University Press,21534578 +American British and Canadian Studies Journal,De Gruyter Open Sp. z o.o. ,1841964X|1841964X +American Business Law Journal,Wiley Blackwell (Blackwell Publishing),00027766|17441714 +American Catholic Philosophical Quarterly,Philosophy Documentation Center,10513558| +American Catholic Studies,Muse - Johns Hopkins University Press,21618534 +American Chemical Science Journal,Sciencedomain International,22490205 +American Chinese Journal of Medicine and Science,American Chinese Medical Exchange Society,19469357| +American Communist History,Informa UK (Taylor & Francis),14743892|00000000 +American Documentation,Wiley Blackwell (John Wiley & Sons),0096946X|19366108 +American Economic Journal Applied Economics,American Economic Association,19457782|19457790 +American Economic Journal Economic Policy,American Economic Association,1945774X|1945774X +American Economic Journal Macroeconomics,American Economic Association,19457707|19457715 +American Economic Journal Microeconomics,American Economic Association,19457669|19457685 +American Economic Review,American Economic Association,00028282| +American Educational Research Journal,American Educational Research Association,00028312|19351011 +American Entomologist,Oxford University Press,10462821|21559902 +American Ethnologist,Wiley Blackwell (Blackwell Publishing),00940496|15481425 +American Fern Journal,BioOne (American Fern Society),00028444|1938422X +American Foreign Policy Interests,Informa UK (Taylor & Francis),10803920|15332128 +American Foreign Policy Newsletter,Informa UK (Taylor & Francis),07383169| +American Heart Journal,Elsevier ,00028703| +American Imago,Muse - Johns Hopkins University Press,10857931 +American Indian and Alaska Native Mental Health Research,Centers for American Indian and Alaska Native Health,08935394|15337731 +American Indian Culture and Research Journal,UCLA American Indian Studies Center,01616463| +American Indian Law Review,JSTOR,0094002X| +American Industrial Hygiene Association Journal,Informa UK (Taylor & Francis),00028894| +American Industrial Hygiene Association Quarterly,Informa UK (Taylor & Francis),0096820X| +American International Journal of Biology,American Research Institute for Policy Development,23342323|23342331 +American Intra-Ocular Implant Society Journal,Elsevier ,01462776| +American Intra-Ocular Implant Society Newsletter,Elsevier ,0361235X| +American J of Finance and Accounting,Inderscience Enterprises Ltd.,17527767|17527775 +American Jewish History,Muse - Johns Hopkins University Press,10863141 +American Journal Of Advanced Computing,American Science and Technology Publishers Corporation,23681209| +American Journal of Advanced Food Science and Technology,Columbia International Publishing,21629722 +American Journal of Aerospace Engineering,Science Publishing Group,23764813| +American Journal of Agricultural and Biological Sciences,Science Publications,15574989|15574989 +American Journal of Agricultural Economics,Oxford University Press,00029092|14678276 +American Journal of Agricultural Science and Technology,Columbia International Publishing,21629676 +American Journal of Agriculture and Forestry,Science Publishing Group,23308583| +American Journal of Algorithms and Computing,Columbia International Publishing,21629900 +American Journal of Alternative Agriculture,Cambridge University Press,08891893|14785498 +American Journal of Alzheimer s Disease and Other Dementias,SAGE Publications,15333175|19382731 +American Journal of Alzheimer’s Disease,Columbia International Publishing,21629986 +American Journal of Analytical Chemistry,"""Scientific Research Publishing, Inc.""",21568251|21568278 +American Journal of Anatomy,Wiley Blackwell (John Wiley & Sons),00029106|15530795 +American Journal of Animal and Veterinary Sciences,Science Publications,15574555|15574555 +American Journal of Applied Chemistry,Science Publishing Group,23308753| +American Journal of Applied Mathematics,Science Publishing Group,23300043| +American Journal of Applied Mathematics and Statistics,"""Science and Education Publishing Co., Ltd.""",23287306| +American Journal of Applied Psychology,Science Publishing Group,23285664| +American Journal of Applied Sciences,Science Publications,15469239| +American Journal of Archaeology,Archaeological Institute of America,00029114|1939828X +American Journal of Astronomy and Astrophysics,Science Publishing Group,23764678| +American Journal of Audiology,American Speech-Language-Hearing Association,10590889|15589137 +American Journal of Autism,Columbia International Publishing,21629943 +American Journal of Biochemistry,Scientific and Academic Publishing,21633010| +American Journal of Biochemistry and Biotechnology,Science Publications,15533468| +American Journal of Biochemistry and Molecular Biology,Science Alert,21504210| +American Journal of Bioengineering and Biotechnology,Columbia International Publishing,21631018 +American Journal of Bioinformatics,Science Publications,19489862| +American Journal of Bioinformatics and Computational Biology,Columbia International Publishing,21631034 +American Journal of Bioinformatics Research,Scientific and Academic Publishing,21676992| +American Journal of Biomass and Bioenergy,Columbia International Publishing,2162965X +American Journal of Biomedical and Life Sciences,Science Publishing Group,23308818| +American Journal of Biomedical Engineering,Scientific and Academic Publishing,21631050| +American Journal of Biomedical Research,"""Science and Education Publishing Co., Ltd.""",23283947| +American Journal of Biomedical Sciences,"""New World Publishing International, Inc.""",19379080 +American Journal of BioMedicine,BM-Publisher,23335106 +American Journal of BioScience,Science Publishing Group,23300159| +American Journal of Bioscience and Bioengineering,Science Publishing Group,23285885| +American Journal of Biostatistics,Science Publications,19489889| +American Journal of Biotechnology and Molecular Sciences,Science Hub,21593698|21593701 +American Journal of Botany,Botanical Society of America,00029122|15372197 +American Journal of Business,Emerald (MCB UP ),19355181| +American Journal of Business and Management,World Scholars,21679606|21679614 +American Journal of Business Education (AJBE),Clute Institute,19422504|19422512 +American Journal of Cancer,Springer-Verlag,11756357| +American Journal of Cancer Prevention,"""Science and Education Publishing Co., Ltd.""",23287322| +American Journal of Cancer Research and Clinical Oncology,Columbia International Publishing,21631085 +American Journal of Cardiovascular Drugs,Springer-Verlag,11753277|1179187X +American Journal of Case Reports,International Scientific Literature,19415923 +American Journal of Chemical Engineering,Science Publishing Group,23308605| +American Journal of Chemistry,Scientific and Academic Publishing,21658749| +American Journal of Civil and Structural Engineering,Sciknow Publications,23724552 +American Journal of Civil Engineering,Science Publishing Group,23308729| +American Journal of Civil Engineering and Architecture,"""Science and Education Publishing Co., Ltd.""",2328398X| +American Journal of Climate Change,"""Scientific Research Publishing, Inc.""",21679495|21679509 +American Journal of Clinical and Experimental Medicine,Science Publishing Group,23308125| +American Journal of Clinical Dermatology,Springer-Verlag,11750561|11791888 +American Journal of Clinical Hypnosis,Informa UK (Taylor & Francis),00029157|21600562 +American Journal of Clinical Medicine Research,"""Science and Education Publishing Co., Ltd.""",23284005| +American Journal of Clinical Nutrition,American Society for Nutrition,00029165|19383207 +American Journal of Clinical Oncology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,02773732| +American Journal of Clinical Pathology,Oxford University Press,00029173|19437722 +American Journal of Community Psychology,Wiley Blackwell (John Wiley & Sons),00910562|15732770 +American Journal of Computational and Applied Mathematics,Scientific and Academic Publishing,21658935| +American Journal of Computational Mathematics,"""Scientific Research Publishing, Inc.""",21611203|21611211 +American Journal of Condensed Matter Physics,Scientific and Academic Publishing,21631115| +American Journal of Contact Dermatitis,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,1046199X| +American Journal of Cosmetic Surgery,American Academy of Cosmetic Surgery,07488068| +American Journal of Criminal Justice,Springer-Verlag,10662316|19361351 +American Journal of Critical Care,AACN Publishing,10623264|1937710X +American Journal of Cultural Sociology,Nature Publishing Group - Macmillan Publishers,20497113|20497121 +American Journal of Culture and Philosophy,"""International Institute for Science, Technology and Education""",25685139|25685481 +American Journal of Dance Therapy,Springer-Verlag,01463721|15733262 +American Journal of Database Theory and Application,Scientific and Academic Publishing,23260831| +American Journal of Dermatopathology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,01931091| +American Journal of Digestive Diseases and Nutrition,Springer-Verlag,00925640| +American Journal of Disaster Medicine,Weston Medical Publishers,1932149X| +American Journal of Diseases of Children,American Medical Association,00968994| +American Journal of Distance Education,Informa UK (Taylor & Francis),08923647|15389286 +American Journal of Drug Delivery,Springer-Verlag,11759038| +American Journal of Drug Discovery and Development,Science Alert,2150427X| +American Journal of Economics,Scientific and Academic Publishing,21664951| +American Journal of Economics and Business Administration,Science Publications,19455488| +American Journal of Economics and Sociology,Wiley Blackwell (Blackwell Publishing),00029246|15367150 +American Journal of Education,The University of Chicago Press,01956744|15496511 +American Journal of Educational Research,"""Science and Education Publishing Co., Ltd.""",23276126| +American Journal of Electrical and Electronic Engineering,"""Science and Education Publishing Co., Ltd.""",23287365| +American Journal of Electrical Power and Energy Systems,Science Publishing Group,2326912X| +American Journal of Electromagnetics and Applications,Science Publishing Group,23765968| +American Journal of Embedded Systems and Applications,Science Publishing Group,23766069| +American Journal of Energy Engineering,Science Publishing Group,23291648| +American Journal of Energy Research,"""Science and Education Publishing Co., Ltd.""",23287349| +American Journal of Engineering and Applied Sciences,Science Publications,19417020| +American Journal of Engineering Education (AJEE),Clute Institute,21532516|21579644 +American Journal of Engineering Research,IOSR Journals,23200936|23200847 +American Journal of Enology and Viticulture,American Society for Enology and Viticulture,00029254| +American Journal of Environmental Engineering,Scientific and Academic Publishing,21664633| +American Journal of Environmental Protection,"""Science and Education Publishing Co., Ltd.""",23287241| +American Journal of Environmental Protection,Science Publishing Group,23285680| +American Journal of Environmental Sciences,Science Publications,1553345X| +American Journal of Epidemiology,Oxford University Press,00029262|00029262 +American Journal of Epidemiology and Infectious Disease,"""Science and Education Publishing Co., Ltd.""",2333116X| +American Journal of Evaluation,SAGE Publications,10982140|15570878 +American Journal of Experimental Agriculture,Sciencedomain International,22310606|22310606 +American Journal of Family Therapy,Informa UK (Taylor & Francis),01926187|15210383 +American Journal of Fluid Dynamics,Scientific and Academic Publishing,21684707| +American Journal of Food and Nutrition,Science Hub,21570167|21571317 +American Journal of Food Science and Technology,"""Science and Education Publishing Co., Ltd.""",23334827| +American Journal of Food Technology,Science Alert,15574571|1557458X +American Journal of Forensic Medicine & Pathology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,01957910| +American Journal of Geographic Information System,Scientific and Academic Publishing,21631131| +American Journal of Geoscience,Science Publications,19489846| +American Journal of Geriatric Psychiatry,Elsevier ,10647481| +American Journal of Germanic Linguistics and Literatures,Cambridge University Press,10408207| +American Journal of Health Behavior,PNG Publishers,10873244|19457359 +American Journal of Health Economics,MIT Press,23323493|23323507 +American Journal of Health Education,Informa UK (Taylor & Francis),19325037|21683751 +American Journal of Health Promotion,SAGE Publications,08901171|21686602 +American Journal of Health Research,Science Publishing Group,23308788| +American Journal of Health Sciences (AJHS),Clute Institute,21567794|21579636 +American Journal of Health-System Pharmacy,American Society of Health System Pharmacists,10792082| +American Journal of Heat and Mass Transfer,Columbia International Publishing,23745398 +American Journal of Hematology,Wiley Blackwell (John Wiley & Sons),03618609|10968652 +American Journal of Hospice and Palliative Medicine,SAGE Publications,10499091|19382715 +American Journal of Human Biology,Wiley Blackwell (John Wiley & Sons),10420533|15206300 +American Journal of Human Ecology,World Scholars,21679622|21679630 +American Journal of Humanities and Social Sciences,World Scholars,23290781|2329079X +American Journal of Hydropower Water and Environment Sytems,ACTA Editora,2317126X| +American Journal of Hypertension,Oxford University Press,08957061|19417225 +American Journal of Immunology,Science Publications,1553619X| +American Journal of Industrial and Business Management,"""Scientific Research Publishing, Inc.""",21645167|21645175 +American Journal of Industrial Medicine,Wiley Blackwell (John Wiley & Sons),02713586|10970274 +American Journal of Infection Control,Elsevier ,01966553| +American Journal of Infectious Diseases,Science Publications,15536203| +American Journal of Infectious Diseases and Microbiology,"""Science and Education Publishing Co., Ltd.""",23284056| +American Journal of Intelligent Systems,Scientific and Academic Publishing,21658978| +American Journal of Internal Medicine,Science Publishing Group,23304316| +American Journal of Kidney Diseases,Elsevier ,02726386|15236838 +American Journal of Law & Medicine,SAGE Publications,00988588|2375835X +American Journal of Life Sciences,Science Publishing Group,23285702| +American Journal of Lifestyle Medicine,SAGE Publications,15598276|15598284 +American Journal of Linguistics,Scientific and Academic Publishing,23260750| +American Journal of Materials Engineering and Technology,"""Science and Education Publishing Co., Ltd.""",23338903| +American Journal of Materials Science,Scientific and Academic Publishing,21629382| +American Journal of Materials Science and Engineering,"""Science and Education Publishing Co., Ltd.""",23334665| +American Journal of Materials Science and Technology,Columbia International Publishing,21631239 +American Journal of Mathematical Analysis,"""Science and Education Publishing Co., Ltd.""",23338490| +American Journal of Mathematical and Management Sciences,Informa UK (Taylor & Francis),01966324|23258454 +American Journal of Mathematics,Muse - Johns Hopkins University Press,00029327|10806377 +American Journal of Mathematics and Statistics,Scientific and Academic Publishing,2162948X| +American Journal of Mechanical Engineering,"""Science and Education Publishing Co., Ltd.""",23284102| +American Journal of Mechanics and Applications,Science Publishing Group,23766115| +American Journal of Medical and Biological Research,"""Science and Education Publishing Co., Ltd.""",23284080| +American Journal of Medical and Dental Sciences,Science Hub,23268638|23268646 +American Journal of Medical Case Reports,"""Science and Education Publishing Co., Ltd.""",23742151| +American Journal of Medical Genetics,Wiley Blackwell (John Wiley & Sons),01487299|10968628 +American Journal of Medical Genetics Part A,Wiley Blackwell (John Wiley & Sons),15524825|15524833 +American Journal of Medical Genetics Part B Neuropsychiatric Genetics,Wiley Blackwell (John Wiley & Sons),15524841|1552485X +American Journal of Medical Genetics Part C Seminars in Medical Genetics,Wiley Blackwell (John Wiley & Sons),15524868|15524876 +American Journal of Medical Quality,SAGE Publications,10628606|1555824X +American Journal of Medical Sciences and Medicine,"""Science and Education Publishing Co., Ltd.""",23276681| +American Journal of Medicine and Medical Sciences,Scientific and Academic Publishing,2165901X| +American Journal of Medicine Studies,"""Science and Education Publishing Co., Ltd.""",23338881| +American Journal of Men s Health,SAGE Publications,15579883|15579891 +American Journal of Microbiological Research,"""Science and Education Publishing Co., Ltd.""",23284129| +American Journal of Microbiology,Science Publications,1948982X| +American Journal of Mining and Metallurgy,"""Science and Education Publishing Co., Ltd.""",23767952| +American Journal of Modeling and Optimization,"""Science and Education Publishing Co., Ltd.""",23331143| +American Journal of Modern Chromatography,Columbia International Publishing,23745479 +American Journal of Modern Physics,Science Publishing Group,23268867| +American Journal of Molecular and Cellular Biology,Columbia International Publishing,2163226X +American Journal of Molecular Biology,"""Scientific Research Publishing, Inc.""",21616620|21616663 +American Journal of Nanomaterials,"""Science and Education Publishing Co., Ltd.""",23723114| +American Journal of Nanoscience and Nanotechnology,Science Publishing Group,23310685| +American Journal of Nanotechnology,Science Publications,19490216| +American Journal of Nephrology,S. Karger AG,02508095|14219670 +American Journal of Networks and Communications,Science Publishing Group,2326893X| +American Journal of Neural Networks and Applications,Science Publishing Group,24697400| +American Journal of Neuroprotection and Neuroregeneration,American Scientific Publishers,19472951|1947296X +American Journal of Neuroradiology,American Society of Neuroradiology,01956108|1936959X +American Journal of Neuroscience,Science Publications,19489900| +American Journal of Nursing Research,"""Science and Education Publishing Co., Ltd.""",23785594| +American Journal of Nursing Science,Science Publishing Group,23285745| +American Journal of Nutrition and Food Science,Sciknow Publications,23724277 +American Journal of Obstetrics and Gynecology,Elsevier ,00029378| +American Journal of Occupational Therapy,AOTA Press,02729490| +American Journal of Oil and Chemical Technologies,Petrodex Publication Group,23266570|23266589 +American Journal of Operational Research,Scientific and Academic Publishing,23246537| +American Journal of Operations Research,"""Scientific Research Publishing, Inc.""",21608830|21608849 +American Journal of Ophthalmology,Elsevier ,00029394| +American Journal of Ophthalmology Case Reports,Elsevier ,24519936| +American Journal of Optics and Photonics,Science Publishing Group,23308486| +American Journal of Organic Chemistry,Scientific and Academic Publishing,21631271| +American Journal of Orthodontics,Elsevier ,00029416| +American Journal of Orthodontics and Dentofacial Orthopedics,Elsevier ,08895406| +American Journal of Orthodontics and Oral Surgery,Elsevier ,00966347| +American Journal of Orthopsychiatry,American Psychological Association,00029432|19390025 +American Journal of Otolaryngology,Elsevier ,01960709| +American Journal of Pastoral Counseling,Informa UK (Taylor & Francis),10946098|15286886 +American Journal Of Pathology,Elsevier ,00029440|15252191 +American Journal of Perinatology,Thieme Publishing Group,07351631|10988785 +American Journal of Perinatology Reports,Thieme Publishing Group,21576998|21577005 +American Journal of Pharmaceutical Education,American Journal of Pharmaceutical Education,00029459|15536467 +American Journal of PharmacoGenomics,Springer-Verlag,11752203| +American Journal of Pharmacological Sciences,"""Science and Education Publishing Co., Ltd.""",23276711| +American Journal of Pharmacology and Toxicology,Science Publications,15574962| +American Journal of Pharmacy and Pharmaceutical Sciences,Sciknow Publications,23724072 +American Journal of Philology,Muse - Johns Hopkins University Press,10863168 +American Journal of Physical Anthropology,Wiley Blackwell (John Wiley & Sons),00029483|10968644 +American Journal of Physical Chemistry,Science Publishing Group,23272430| +American Journal of Physical Medicine & Rehabilitation,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,08949115| +American Journal of Physics,American Association of Physics Teachers,00029505|19432909 +American Journal of Physics and Applications,Science Publishing Group,23304286| +American Journal of Plant Nutrition and Fertilization Technology,Science Alert,17939445| +American Journal of Plant Physiology,Science Alert,15574539|15574547 +American Journal of Plant Sciences,"""Scientific Research Publishing, Inc.""",21582742|21582750 +American Journal of Police,Emerald (MCB UP ),07358547|00000000 +American Journal of Political Science,Wiley Blackwell (Blackwell Publishing),00925853|15405907 +American Journal of Polymer Science,Scientific and Academic Publishing,21631344| +American Journal of Potato Research,Springer-Verlag,1099209X|18749380 +American Journal of Preventive Medicine,Elsevier ,07493797| +American Journal of Primatology,Wiley Blackwell (John Wiley & Sons),02752565|10982345 +American Journal of Psychiatric Rehabilitation,Informa UK (Taylor & Francis),15487768|15487776 +American Journal of Psychiatry,American Psychiatric Publishing,0002953X|15357228 +American Journal of Psychiatry and Neuroscience,Science Publishing Group,23304243| +American Journal of Public Health,American Public Health Association,00900036|15410048 +American Journal of Public Health and the Nations Health,American Public Health Association,00029572| +American Journal of Public Health Research,"""Science and Education Publishing Co., Ltd.""",2327669X| +American Journal of Recreation Therapy,Weston Medical Publishers,15394131| +American Journal of Remote Sensing,Science Publishing Group,23285788| +American Journal Of Reproductive Immunology,Wiley Blackwell (Blackwell Publishing),87558920|16000897 +American Journal of Reproductive Immunology,Wiley Blackwell (Blackwell Publishing),10467408| +American Journal of Respiratory and Critical Care Medicine,American Thoracic Society,1073449X|15354970 +American Journal of Respiratory Cell and Molecular Biology,American Thoracic Society,10441549|15354989 +American Journal of Respiratory Medicine,Springer-Verlag,11756365| +American Journal of Rhinology,Oceanside Publications,10506586|15396290 +American Journal of Rhinology and Allergy,Oceanside Publications,19458924|19458932 +American Journal of Robotic Surgery,American Scientific Publishers,23740612| +American Journal of Roentgenology,American Roentgen Ray Society,0361803X|15463141 +American Journal of Rural Development,"""Science and Education Publishing Co., Ltd.""",23334762| +American Journal of Science,American Journal of Science,00029599| +American Journal of Scientific and Industrial Research,Science Hub,2153649X +American Journal of Sensor Technology,"""Science and Education Publishing Co., Ltd.""",23733454| +American Journal of Sexuality Education,Informa UK (Taylor & Francis),15546128|15546136 +American Journal of Signal Processing,Scientific and Academic Publishing,21659354| +American Journal of Social and Management Sciences,Science Hub,21561540|21561559 +American Journal of Sociological Research,Scientific and Academic Publishing,21665443| +American Journal of Sociology,The University of Chicago Press,00029602|15375390 +American Journal of Software Engineering and Applications,Science Publishing Group,23272473| +American Journal of Space Science,Science Publications,19489927| +American Journal of Speech-Language Pathology,American Speech-Language-Hearing Association,10580360|15589110 +American Journal of Sports Science,Science Publishing Group,23308559| +American Journal of Sports Science and Medicine,"""Science and Education Publishing Co., Ltd.""",23334592| +American Journal of Surgical Pathology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,01475185| +American Journal of Systems and Software,"""Science and Education Publishing Co., Ltd.""",2372708X| +American Journal of Theology & Philosophy,University of Illinois Press,01943448|21564795 +American Journal of Theoretical and Applied Business,Science Publishing Group,24697834| +American Journal of Theoretical and Applied Statistics,Science Publishing Group,23268999| +American Journal of Therapeutics,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10752765| +American Journal of Tourism Management,Scientific and Academic Publishing,23260637| +American Journal of Tourism Research,World Scholars,21683786|21683794 +American Journal of Trade and Policy,Asian Business Consortium,23134747|23134755 +American Journal of Transplantation,Wiley Blackwell (Blackwell Publishing),16006135|16006143 +American Journal of TROPICAL MEDICINE & Public Health,Sciencedomain International,2248986X +American Journal of Tropical Medicine and Hygiene,American Society of Tropical Medicine and Hygiene,00029637| +American Journal of Veterinary Medical Research,ScopeMed International Medical Journal Managment and Indexing System,21697957 +American Journal of Veterinary Research,American Veterinary Medical Association,00029645| +American Journal of Virology,Science Publications,19490097| +American Journal of Water Resources,"""Science and Education Publishing Co., Ltd.""",23334797| +American Journal on Addictions,Wiley Blackwell (Blackwell Publishing),10550496|15210391 +American Journal on Intellectual and Developmental Disabilities,American Association on Intellectual and Developmental Disabilities,19447515|19447588 +American Journal on Mental Retardation,American Association on Intellectual and Developmental Disabilities,08958017| +American Journalism,Informa UK (Taylor & Francis),08821127|23262486 +American Law and Economics Review,Oxford University Press,14657252|14657260 +American Literary History,Oxford University Press,08967148|14684365 +American Literary Realism,University of Illinois Press,15403084|19405103 +American Literary Scholarship,Duke University Press,00659142|15272125 +American Literature,Duke University Press,00029831|15272117 +American Malacological Bulletin,BioOne (American Malacological Society),07402783|07402783 +American Mathematical Monthly,Mathematical Association of America,00029890|19300972 +American Medical Journal,Science Publications,19490070| +American Medical Student Research Journal,American Medical Student Research Journal,23334096 +American Mineralogist,Mineralogical Society of America,0003004X| +American Museum Novitates,BioOne (American Museum of Natural History),00030082|1937352X +American Music,University of Illinois Press,07344392|19452349 +American Nineteenth Century History,Informa UK (Taylor & Francis),14664658|17437903 +American Orthoptic Journal,University of Wisconsin Press,0065955X|15534448 +American Periodicals A Journal of History Criticism and Bibliography,Muse - Johns Hopkins University Press,15484238 +American Pharmacy,Elsevier ,01603450| +American Political Science Review,Cambridge University Press,00030554|15375943 +American Political Thought,The University of Chicago Press,21611580|21611599 +American Politics Research,SAGE Publications,1532673X|00000000 +American Potato Journal,Springer-Verlag,00030589|18749380 +American Psychologist,American Psychological Association,0003066X|1935990X +American Quarterly,Muse - Johns Hopkins University Press,00030678|10806490 +American Review of Mathematics and Statistics,American Research Institute for Policy Development,23742348|23742356 +American Review of Respiratory Disease,American Thoracic Society,00030805| +American Scientist,Sigma Xi,00030996|15452786 +American Slavic and East European Review,JSTOR,10497544| +American Society for Aesthetics Graduate E-journal,American Society for Aesthetics,19461879 +American Society of Clinical Oncology Educational Book,American Society of Clinical Oncology (Educational Books),15488748|15488756 +American Sociological Review,SAGE Publications,00031224|19398271 +American Speech,Duke University Press,00031283|15272133 +American Studies,Muse - Johns Hopkins University Press,21536856 +American Studies,American Studies Institute,12294381| +American Water Works Association,American Water Works Association,0003150X|15518833 +American Zoologist,Oxford University Press,00031569| +Amerika,OpenEdition,21070806|21070806 +AmeriQuests,Vanderbilt University Library,15534316 +Amicus Curiae,School of Advanced Study,14612097|2048481X +Amino Acids,Springer-Verlag,09394451|14382199 +Amnis,OpenEdition,17647193|17647193 +Ampersand,Elsevier ,22150390| +Amphibia-Reptilia,Brill Academic Publishers,01735373|15685381 +Amphibians of western China,Smithsonian Institution Biodiversity Heritage Library,04303776| +AMS Review,Springer-Verlag,1869814X|18698182 +Amsterdamer Beiträge zur älteren Germanistik,Brill Academic Publishers,01657305|18756719 +Amyloid,Informa UK (Taylor & Francis),13506129|17442818 +Amyotrophic Lateral Sclerosis,Informa UK (Taylor & Francis),17482968|1471180X +Amyotrophic Lateral Sclerosis and Frontotemporal Degeneration,Informa UK (Taylor & Francis),21678421|21679223 +Amyotrophic Lateral Sclerosis and Other Motor Neuron Disorders,Informa UK (Taylor & Francis),14660822| +AN ASIAN JOURNAL OF SOIL SCIENCE,Hind Agri Horticultural Society,09734775|09767231 +An International Journal of Optimization and Control Theories & Applications (IJOCTA),International Journal of Optimization and Control: Theories and Applications,21460957|21465703 +An Official Journal of the Japan Primary Care Association,The Japan Primary Care Association,21852928|21872791 +Ana Dili Eğitimi Dergisi,Ana Dili Egitimi Dergisi ADED,21476020| +Anabases,OpenEdition,17744296|22569421 +Anadolu (Anatolia),Ankara University,05700116|05700116 +ANADOLU JOURNAL OF AGRICULTURAL SCIENCES,Anadolu Journal of Agricultural Sciences,13088750|13088769 +Anadolu Journal Of Educational Sciences International,Anadolu Universitesi Egitim Bilimleri Enstitusu Dergisi,21464014| +Anadolu Kardiyoloji Dergisi/The Anatolian Journal of Cardiology,Kare Publishing,13028723|13080032 +Anadolu Üniversitesi Bilim Ve Teknoloji Dergisi - B Teorik Bilimler,Anadolu University Journal of Science and Technology â?? B Theoretical Sciences,21460272|21460191 +Anadolu Üniversitesi Sosyal Bilimler Dergisi,Anadolu Universitesi Sosyal Bilimler Dergisi,13030876| +ANADOLU UNIVERSITY JOURNAL OF SCIENCE AND TECHNOLOGY –C Life Sciences and Biotechnology,Anadolu Universitesi Bilim ve Teknoloji Dergisi C : Yasam Bilimleri ve Biyoteknoloji,21460264|21460213 +Anadolu University Journal of Science and Technology-A Applied Sciences and Engineering,Anadolu Universitesi Bilim ve Teknoloji Dergisi-A: Uygulamali Bilimler ve Muhendislik,13023160|13023160 +Anaerobe,Elsevier ,10759964|10958274 +Anaesthesia,Wiley Blackwell (Blackwell Publishing),00032409|13652044 +Anaesthesia & intensive care medicine,Elsevier ,14720299| +Anaesthesia Critical Care & Pain Medicine,Elsevier ,23525568| +Anais Brasileiros de Dermatologia,SciELO,18064841|18064841 +Anais Brasileiros de Dermatologia,SciELO,03650596|03650596 +Anais da Academia Brasileira de Ciências,SciELO,00013765|00013765 +Anais da Escola Superior de Agricultura Luiz de Queiroz,SciELO,00711276|00711276 +Anais da Sociedade Entomológica do Brasil,SciELO,03018059|03018059 +Anais do Museu Paulista História e Cultura Material,SciELO,01014714|01014714 +ANAIS DO SIMPÓSIO INTERNACIONAL DE INOVAÇÃO TECNOLÓGICA - SIMTEC,Universidade Federal de Sergipe,23183403 +Analecta Bollandiana,"""Brepols Publishers, NV""",00032468| +Analecta Cracoviensia,Pontifical Universtiy of John Paul II in Krakow,02090864|23916842 +Analecta política,Universidad Pontificia Bolivariana,20277458|23900067 +"""Analele Universitatii """"Ovidius"""" Constanta - Seria Chimie""",De Gruyter Open Sp. z o.o. ,12237221|12237221 +"""Analele Universitatii """"Ovidius"""" Constanta - Seria Matematica""",De Gruyter Open Sp. z o.o. ,18440835 +Anales Cervantinos,Departmento de Publicaciones del CSIC,05699878|19888325 +Anales de Antropología,Elsevier ,01851225| +Anales de Biología,Servicio de Publicaciones de la Universidad e Murcia,11383399|19892128 +Anales de Cirugía Vascular,Elsevier ,11302542| +Anales de Derecho,Servicio de Publicaciones de la Universidad e Murcia,0210539X|19895992 +Anales de Documentación,Servicio de Publicaciones de la Universidad e Murcia,15752437|16977904 +Anales de Edificación,Universidad Politecnica de Madrid - University Library,24441309 +Anales de Geografía de la Universidad Complutense,Universidad Complutense de Madrid,02119803|19882378 +Anales de Hidrología Médica,Universidad Complutense de Madrid,18870813|19888317 +Anales de Historia del Arte,Universidad Complutense de Madrid,02146452|19882491 +Anales de la Facultad de Ciencias Médicas (Asunción),Instituto de Investigaciones en Ciencias de la Salud,18168949| +Anales de la Facultad de Medicina,"""Universidad Nacional Mayor de San Marcos, Vicerectorado de Investigacion""",10255583|16099419 +Anales de la Universidad de Alicante Historia Medieval,Publicaciones Universidad de Alicante,02122480| +Anales de la Universidad de Chile,Universidad de Chile,03657779|03657779 +Anales de Literatura Española,Publicaciones Universidad de Alicante,02125889| +Anales de Literatura Hispanoamericana,Universidad Complutense de Madrid,02104547|19882351 +Anales de Medicina Interna,Instituto de Salud Carlos III/BNCS/SciELO Espana,2127199 +Anales de Pediatría,Elsevier ,16954033|16959531 +Anales de Pediatría (English Edition),Elsevier ,23412879| +Anales de Pediatría Continuada,Elsevier ,16962818| +Anales de Psicología,Servicio de Publicaciones de la Universidad e Murcia,02129728|16952294 +Anales de Veterinaria de Murcia,Servicio de Publicaciones de la Universidad e Murcia,02135434|19891784 +Anales del Instituto de la Patagonia,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,0718686X +Anales del Jardín Botánico de Madrid,Departmento de Publicaciones del CSIC,02111322|19883196 +Anales del Seminario de Historia de la Filosofía,Universidad Complutense de Madrid,02112337|19882564 +Anales del Sistema Sanitario de Navarra,Instituto de Salud Carlos III/BNCS/SciELO Espana,11376627|11376627 +Anales Galdosianos,Muse - Johns Hopkins University Press,2161301X +Analgesia & Resuscitation Current Research,OMICS Publishing Group,2324903X +Anali Pravnog fakulteta u Beogradu,Centre for Evaluation in Education and Science,00032565| +Analisa,Office of Religious Research and Development,14104350|24433853 +Análise Psicológica,ISPA - Instituto Universitario,08708231|16466020 +Anàlisi,Fundacio per la Universitat Oberta de Catalunya,02112175|23405236 +Análisis,Universidad Santo Tomas,01208454|21459169 +Análisis Político,Universidad Nacional de Colombia,01214705| +Analog Integrated Circuits and Signal Processing,Springer-Verlag,09251030|15731979 +Analusis,EDP Sciences,03654877|1286482X +Analyse & Kritik,Walter de Gruyter GmbH,01715860|23659858 +Analyse Freudienne Presse,CAIRN,12531472|19696744 +Analyses of Social Issues and Public Policy,Wiley Blackwell (Blackwell Publishing),15297489|15302415 +Analysis,Oldenbourg Wissenschaftsverlag,01744747|21966753 +Analysis,Oxford University Press,00032638|14678284 +Analysis & PDE,Mathematical Sciences Publishers,21575045|1948206X +Analysis and Applications,World Scientific ,02195305|17936861 +Analysis and Geometry in Metric Spaces,De Gruyter Open Sp. z o.o. ,22993274 +Analysis and Intervention in Developmental Disabilities,Elsevier ,02704684| +Analysis and Mathematical Physics,Springer-Verlag,16642368|1664235X +Analysis in Theory and Applications,Springer-Verlag,16724070|15738175 +Analysis Mathematica,Springer-Verlag,01333852|1588273X +Analytic Methods in Accident Research,Elsevier ,22136657| +Analytic Philosophy,Wiley Blackwell (Blackwell Publishing),21539596| +Analytica Chimica Acta,Elsevier ,00032670|00032670 +Analytical and Bioanalytical Chemistry,Springer-Verlag,16182642|16182650 +Analytical Biochemistry,Elsevier ,00032697|10960309 +Analytical Cellular Pathology,Hindawi Publishing Corporation,22107177|22107185 +Analytical Chemistry,American Chemical Society,00032700|15206882 +Analytical Chemistry Insights,"""Libertas Academica, Ltd.""",11773901 +Analytical Chemistry Letters,Informa UK (Taylor & Francis),22297928|22307532 +Analytical Chemistry Research,Elsevier ,22141812| +Analytical Communications,The Royal Society of Chemistry,13597337|13645536 +Analytical Letters,Informa UK (Taylor & Francis),00032719|1532236X +Analytical Methods,The Royal Society of Chemistry,17599660|17599679 +Analytical Proceedings,The Royal Society of Chemistry,0144557X| +Analytical Reports in International Education,International University Line,15423832 +Analytical Science and Technology,The Korean Society of Analytical Science,12250163| +Analytical Sciences,Japan Society for Analytical Chemistry,09106340|13482246 +Analytical Sciences X-ray Structure Analysis Online,Japan Society for Analytical Chemistry,13482238 +Analytische Psychologie,S. Karger AG,03013006|14219689 +Anaplastology,OMICS Publishing Group,21611173 +Anaquel de Estudios Árabes,Universidad Complutense de Madrid,11303964|19882645 +Anatolia,Informa UK (Taylor & Francis),13032917|21566909 +Anatolia Antiqua,PERSEE Program,10181946| +Anatolia Turizm Araştırmaları Dergisi,Anatolia: Turizm Arastirmalri Dergisi,13004220| +Anatolian Journal of Psychiatry,ScopeMed International Medical Journal Managment and Indexing System,13026631| +Anatolian Studies,Cambridge University Press,00661546|20480849 +Anatolica,Peeters Publishers,661554 +Anatomia Clinica,Springer-Verlag,07230567| +Anatomia Histologia Embryologia,Wiley Blackwell (Blackwell Publishing),03402096|14390264 +Anatomical Science International,Springer-Verlag,14476959|1447073X +Anatomical Sciences Education,Wiley Blackwell (John Wiley & Sons),19359772|19359780 +Anatomischer Anzeiger,Smithsonian Institution Biodiversity Heritage Library,00032786| +Anatomy & Cell Biology,Korean Association of Anatomists (KAMJE),20933665|20933673 +Anatomy & Physiology,OMICS Publishing Group,21610940 +Anatomy (International Journal of Experimental and Clinical Anatomy),Deomed Publishing,13078798|13088459 +Anatomy and Embryology,Springer-Verlag,03402061|14320568 +Anatomy Research International,Hindawi Publishing Corporation,20902743|20902751 +Ancient Asia,"""Ubiquity Press, Ltd.""",20425937|20425937 +Ancient Biomolecules,Informa UK (Taylor & Francis),13586122| +Ancient Civilizations from Scythia to Siberia,Brill Academic Publishers,0929077X|15700577 +Ancient Mesoamerica,Cambridge University Press,09565361|14691787 +Ancient Near Eastern Studies,Peeters Publishers,650382 +Ancient Philosophy,Philosophy Documentation Center,07402007| +Ancient Science,VRI Press,23737964 +Ancient Science of Life,Medknow Publications,02577941| +Ancient Society,Peeters Publishers,661619 +Ancient West & East,Peeters Publishers,17838363 +ÂNCORA - Revista Latino-americana de Jornalismo,Revista Latino-americana de Jornalismo - ANCORA,2359375X +Andean geology,Pontificia Universidad Catolica de Valparaiso,07187092|07187106 +Andragogy,Klaipeda University Press,20296894|20296894 +Andragoška spoznanja,University of Ljubljana,13185160|23504188 +Andrew Gilmartin Review,CrossRef test user,0000992X| +Andrologia,Wiley Blackwell (Blackwell Publishing),03034569|14390272 +Andrologie,Springer-Verlag,11662654|17605377 +Andrology,Wiley Blackwell (Blackwell Publishing),20472919| +Andrology & Gynecology Current Research,OMICS Publishing Group,23274360 +Andrology and Genital Surgery,Publishing House ABV Press,20709781|24128902 +Andrology-Open Access,OMICS Publishing Group,21670250 +Anduli,Editorial Universidad de Sevilla,16960270|23404973 +Anemia,Hindawi Publishing Corporation,20901267|20901275 +Anemon Muş Alparslan Üniversitesi Sosyal Bilimler Dergisi,Anemon Mus Alparslan Universitesi Sosyal Bilimler Dergisi,21477655|21494622 +Anestezjologia Intensywna Terapia,VM Media Sp zo.o. - VMGroup SK,16425758|17312515 +Anesthesia & Analgesia,Ovid Technologies (Wolters Kluwer) - Anesthesia & Analgesia,00032999| +Anesthesia and Pain Medicine,The Editorial Office of Anesthesia and Pain Medicine,23837977|19755171 +Anesthesia Essays and Researches,Medknow Publications,02591162| +Anesthesia History Association Newsletter,Elsevier ,10899634| +Anesthesia Progress,American Dental Society of Anethesiology,00033006| +Anesthésie & Réanimation,Elsevier ,23525800| +Anesthesiology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,00033022| +Anesthesiology and Pain Medicine,Kowsar Medical Institute,22287523|22287531 +Anesthesiology Clinics,Elsevier ,19322275| +Anesthesiology Clinics of North America,Elsevier ,08898537| +Anesthesiology Research and Practice,Hindawi Publishing Corporation,16876962|16876970 +Angelaki Journal of Theoretical Humanities,Informa UK (Taylor & Francis),0969725X|14692899 +Angewandte Chemie,Wiley Blackwell (John Wiley & Sons),00448249|15213757 +Angewandte Chemie International Edition,Wiley Blackwell (John Wiley & Sons),14337851|15213773 +Angewandte Chemie International Edition in English,Wiley Blackwell (John Wiley & Sons),05700833|15213773 +Angewandte Schmerztherapie und Palliativmedizin,Springer-Verlag,18661424|21966389 +Angiogenesis,Springer-Verlag,09696970|15737209 +Angiología,Elsevier ,00033170| +Angiologia e Cirurgia Vascular,Elsevier ,1646706X| +Angiology,SAGE Publications,00033197| +Angiology and vascular surgery,"""Science and Education, Ltd.""",10276661| +Angiology and vascular surgery,"""Science and Education, Ltd.""",10276661| +Angiology Open Access,OMICS Publishing Group, +Angiology Open Access,OMICS Publishing Group,23299495 +Angioscopy,Japanese Association of Cardioangioscopy,21886571|21887500 +Anglia - Zeitschrift für englische Philologie,Walter de Gruyter GmbH,03405222|18658938 +Anglo-Saxon England,Cambridge University Press,02636751|14740532 +Anglophonia,OpenEdition,12783331|24270466 +Ángulo Recto Revista de estudios sobre la ciudad como espacio plural,Universidad Complutense de Madrid,19894015|19894015 +Aniki Revista Portuguesa da Imagem em Movimento,Associacao de Investigadores da Imagem em Movimento,21831750 +animal,Cambridge University Press,17517311|1751732X +Animal and Veterinary Sciences,Science Publishing Group,23285842| +Animal Behavior and Cognition,Sciknow Publications,23724323 +Animal Behaviour,Elsevier ,00033472|10958282 +Animal Behaviour Monographs,Elsevier ,00661856| +Animal Biology,Brill Academic Publishers,15707555|15707563 +Animal Biotechnology,Informa UK (Taylor & Francis),10495398|15322378 +Animal Biotelemetry,Springer (Biomed Central Ltd.),20503385|20503385 +Animal Blood Groups and Biochemical Genetics,Wiley Blackwell (Blackwell Publishing),00033480| +Animal blood-group research information,Japanese Society of Animal Breeding and Genetics,18843859 +Animal Cells and Systems,Informa UK (Taylor & Francis),19768354|21512485 +Animal Cognition,Springer-Verlag,14359448|14359456 +Animal Conservation,Wiley Blackwell (Blackwell Publishing),13679430|14691795 +Animal Feed Science and Technology,Elsevier ,03778401|03778401 +Animal Frontiers,American Society of Animal Science,21606056|21606064 +Animal Genetic Resources Information,Cambridge University Press,10142339|20764022 +Animal Genetic Resources/Ressources génétiques animales/Recursos genéticos animales,Cambridge University Press,20786336|20786344 +Animal Genetics,Wiley Blackwell (Blackwell Publishing),02689146|13652052 +Animal Health Research Reviews,Cambridge University Press,14662523|14752654 +Animal Learning & Behavior,Springer - Psychonomic Society,00904996|15325830 +Animal Migration,De Gruyter Open Sp. z o.o. ,20848838 +Animal Molecular Breeding,"""Sophia Publishing Group, Inc.""",19275609 +Animal Nutrition,Elsevier ,24056545| +Animal Nutrition and Feed Technology,Diva Enterprises Private Limited,09722963|0974181X +Animal Production,Cambridge University Press,00033561| +Animal Production Research Advances,African Journals Online ,7944721 +Animal Production Science,CSIRO Publishing,18360939| +Animal Psyche,The Japanese Society for Animal Psychology,18836275 +Animal Reproduction Science,Elsevier ,03784320| +Animal Research,EDP Sciences,16273583|16273591 +Animal Research International,African Journals Online ,15973115 +Animal Review,Pak Publishing Group,24123382|24096490 +Animal Science,Cambridge University Press,13577298| +Animal Science Journal,Wiley Blackwell (Blackwell Publishing),13443941|13443941 +Animal Systematics Evolution and Diversity,The Korean Society of Systematic Zoology,22346953| +Animal Welfare,Universities Federation for Animal Welfare,09627286| +Animals,MDPI AG,20762615 +Animation,SAGE Publications,17468477|17468485 +Animation Practice Process & Production,Intellect,20427875|20427883 +Animus Revista Interamericana de Comunicação Midiática,Universidade Federal de Santa Maria,1677907X|21754977 +Ankara Avrupa Calismalari Dergisi,Ankara University,13032518|13032518 +Ankara Law Review,Ankara University,13050575|13050575 +Ankara Medical Journal,Ankara Medical Journal,13032283|21484570 +Ankara Papers,Informa UK (Taylor & Francis),14747782| +Ankara Sa,Ankara University,13033735 +Ankara Sağlık Bilimleri Dergisi,Ankara University,2146328X|2146328X +Ankara Üniversitesi Beden Eğitimi ve Spor Yüksekokulu SPORMETRE Beden Eğitimi ve Spor Bilimleri Dergisi,Ankara University,1304284X|1304284X +Ankara Üniversitesi Çevrebilimleri Dergisi,Ankara University,13091107|13091107 +Ankara Üniversitesi Dil ve Tarih-Coğrafya Fakültesi Dergisi,Ankara University,03782905|03782905 +Ankara Üniversitesi Dil ve Tarih-Coğrafya Fakültesi Tarih Bölümü Tarih Araştırmaları Dergisi,Ankara University,10151826| +Ankara Üniversitesi Diş Hekimliği Fakültesi Dergisi,Ankara University,10168710|10168710 +Ankara Universitesi Eczacilik Fakultesi Dergisi,Ankara University,10153918|10153918 +Ankara Universitesi Egitim Bilimleri Fakultesi Dergisi,Ankara University,13013718|13013718 +Ankara Universitesi Egitim Bilimleri Fakultesi Ozel Egitim Dergisi,Ankara University,13047639|13047639 +Ankara Üniversitesi Güneydoğu Avrupa Çalışmaları Uygulama ve Araştırma Merkezi Dergisi,Ankara University,2146054X| +Ankara Üniversitesi Hukuk Fakültesi Dergisi,Ankara University,13011308| +Ankara Üniversitesi İlahiyat Fakültesi Dergisi,Ankara University,13010522| +Ankara Üniversitesi SBF Dergisi,Ankara Universitesi SBF Dergisi,03782921| +Ankara Üniversitesi Sosyal Bilimler Dergisi,Ankara University,21483434| +Ankara Üniversitesi Tıp Fakültesi Mecmuası,Ankara University,03658104| +Ankara Üniversitesi Türk İnkılap Tarihi Enstitüsü Atatürk Yolu Dergisi,Ankara University,13035290|13035290 +Ankara Üniversitesi Veteriner Fakültesi Dergisi,Ankara University,13000861| +ANKEM Dergisi,Logos Medical Publication,13013114| +Ankyra Ankara,Ankara University,13093584 +AnlagePraxis,Springer-Verlag,01727419|23640189 +Annalen der Pharmacie,Wiley Blackwell (John Wiley & Sons),03655490|10990690 +Annalen der Philosophie und philosophischen Kritik,Springer-Verlag,18666175|18666175 +Annalen der Physik,Wiley Blackwell (John Wiley & Sons),00033804|15213889 +Annalen des Historischen Vereins für den Niederrhein,Bohlau Verlag,0341289X|21943818 +Annalen des Naturhistorischen Museums in Wien,Smithsonian Institution Biodiversity Heritage Library,02550105| +Annales Academiae Medicae Silesiensis,Medical University of Silesia,02085607| +Annales Academiae Scientiarum Fennicae Mathematica,Finnish Academy of Science and Letters,1239629X|17982383 +Annales Academiae Scientiarum Fennicae Mathematica Dissertationes,Finnish Academy of Science and Letters,12396303|17982375 +Annales Academiae Scientiarum Fennicae Series A I Mathematica,Finnish Academy of Science and Letters,00661953| +Annales Aequatoria,African Journals Online ,2544296 +Annales Botanici Fennici,BioOne (Finnish Zoological and Botanical Publishing Board),00033847|17972442 +Annales Canonici,Pontifical Universtiy of John Paul II in Krakow,18950620|23916567 +Annales d Endocrinologie,Elsevier ,00034266| +Annales d Ethiopie,PERSEE Program,00662127| +Annales d histoire économique et sociale,PERSEE Program,0003441X| +Annales d histoire sociale (1939),PERSEE Program,12432563| +Annales d histoire sociale (1945),PERSEE Program,1243258X| +Annales d Otolaryngologie et de Chirurgie Cervico-Faciale,Elsevier ,0003438X| +Annales d Urologie,Elsevier ,00034401| +annales de biologie animale biochimie biophysique,EDP Sciences,0003388X| +Annales de Bretagne,PERSEE Program,0003391X| +Annales de Bretagne et des pays de l’Ouest,OpenEdition,21086443|21086443 +Annales de Bretagne et des pays de l’Ouest,PERSEE Program,03990826|21086443 +Annales de Cardiologie et d Angéiologie,Elsevier ,00033928| +Annales de Chimie Science des Matériaux,Lavoisier SAS,01519107| +Annales de Chirurgie,Elsevier ,00033944| +Annales de Chirurgie de la Main,Elsevier ,07539053| +Annales de Chirurgie de la Main et du Membre Supérieur,Elsevier ,11532424| +Annales de Chirurgie Plastique Esthétique,Elsevier ,02941260| +Annales de Chirurgie Vasculaire,Elsevier ,02992213| +Annales de Démographie Historique,PERSEE Program,00662062| +Annales de Dermatologie et de Vénéréologie,Elsevier ,01519638| +Annales de Génétique,Elsevier ,00033995| +Annales de Génétique et de Sélection Animale,Springer (Biomed Central Ltd.),00034002| +Annales de Géographie,CAIRN,00034010|17775884 +Annales de l Institut Henri Poincare (C) Non Linear Analysis,Elsevier ,02941449| +Annales de l Institut Henri Poincaré Probabilités et Statistiques,Institute of Mathematical Statistics,02460203| +Annales de l Institut Pasteur / Actualités,Elsevier ,09244204| +Annales de l Institut Pasteur Immunologie,Elsevier ,07692625| +Annales de l Institut Pasteur Immunologie,Elsevier ,07692625| +Annales de l Institut Pasteur Microbiologie,Elsevier ,07692609| +Annales de l Institut Pasteur Virologie,Elsevier ,07692617| +Annales de la faculté des sciences de Toulouse Mathématiques,Cellule MathDoc/CEDRAM,02402963|22587519 +Annales de la Société entomologique de Belgique,Smithsonian Institution Biodiversity Heritage Library,07745915| +Annales de la Société Entomologique de France,Informa UK (Taylor & Francis),00379271|21686351 +Annales de Limnologie - International Journal of Limnology,EDP Sciences,00034088|2100000X +Annales de lʼInstitut Pasteur Immunologie,Elsevier ,07692625| +Annales de lʼInstitut Pasteur Virologie,Elsevier ,07692617| +Annales de l’institut Fourier,Cellule MathDoc/CEDRAM,03730956|17775310 +Annales de l’Institut Henri Poincaré D,European Mathematical Society Publishing House,23085827| +Annales de Normandie,PERSEE Program,00034134|22614427 +Annales de Paléontologie,Elsevier ,07533969| +Annales de Pathologie,Elsevier ,02426498| +Annales de Physique,EDP Sciences,00034169|12864838 +Annales de Réadaptation et de Médecine Physique,Elsevier ,01686054| +Annales de Toxicologie Analytique,EDP Sciences,0768598X|19619480 +Annales de Zootechnie,EDP Sciences,0003424X|12979651 +Annales des Mines - Gérer et comprendre,CAIRN,02954397|22717943 +Annales des Mines - Réalités industrielles,CAIRN,11487941|22717978 +Annales des Mines - Responsabilité et environnement,CAIRN,12684783|22718052 +Annales des Ponts et Chaussées,Elsevier ,01529668| +Annales des Sciences Agronomiques,African Journals Online ,16595009 +Annales des Sciences Forestières,EDP Sciences,00034312| +Annales des sciences naturelles,Smithsonian Institution Biodiversity Heritage Library,01509322| +Annales des Sciences Naturelles - Zoologie et Biologie Animale,Elsevier ,00034339| +Annales des sciences naturelles comprenant La physiologie animale et végétale l anatomie comparée des deux règnes la zoologie la botanique la minéralogie et la géologie,Smithsonian Institution Biodiversity Heritage Library,01509306| +Annales du Midi revue archéologique historique et philologique de la France méridionale,PERSEE Program,00034398| +Annales Etyka w życiu gospodarczym,Uniwersytet Lodzki (University of Lodz),18992226| +Annales Françaises d Anesthésie et de Réanimation,Elsevier ,07507658| +Annales françaises d Oto-rhino-laryngologie et de Pathologie Cervico-faciale,Elsevier ,18797261| +Annales françaises de médecine d urgence,Springer-Verlag,21086524|21086591 +Annales Geophysicae,Copernicus GmbH,09927689|14320576 +Annales Henri Poincaré,Springer-Verlag,14240637|14240661 +Annales Histoire Sciences Sociales,PERSEE Program,03952649| +Annales Histoire Sciences sociales (French Edition),Muse - Johns Hopkins University Press,19538146 +Annales historiques de la Révolution française,PERSEE Program,00034436|1952403X +Annales historiques de l’électricité,CAIRN,17623227|22728023 +Annales Mathematicae Silesianae,Walter de Gruyter GmbH,8602107 +Annales mathématiques Blaise Pascal,Cellule MathDoc/CEDRAM,12591734|21187436 +Annales mathématiques du Québec,Springer-Verlag,21954755|21954763 +Annales Médico-psychologiques revue psychiatrique,Elsevier ,00034487| +Annales Missiologici Posnanienses,Adam Mickiewicz University Poznan,17316170| +Annales Nestlé (Deutsche Aufl ),S. Karger AG,02509652|16613740 +Annales Nestlé (Deutsche Ausg ),S. Karger AG,02509652|16613740 +Annales Nestlé (Ed española),S. Karger AG,02528185|16614003 +Annales Nestlé (Ed française),S. Karger AG,02509644|16613732 +Annales Nestlé (English ed ),S. Karger AG,05178606|16614011 +Annales Pharmaceutiques Françaises,Elsevier ,00034509| +Annales Polonici Mathematici,"""Institute of Mathematics, Polish Academy of Sciences""",00662216|17306272 +Annales Scientifiques de l École Normale Supérieure,Elsevier ,00129593| +Annales Scientifiques de lʼ&E cute cole Normale Supérieure,Elsevier ,00129593| +Annales Societatis Geologorum Poloniae,Polskie Towarzystwo Geologiczne - Polish Geological Society,02089068| +Annales UMCS Agricultura,De Gruyter Open Sp. z o.o. ,03651118| +Annales UMCS Artes,De Gruyter Open Sp. z o.o. ,17321352|20833636 +Annales UMCS Biologia,De Gruyter Open Sp. z o.o. ,00662232|20833563 +Annales UMCS Chemistry,De Gruyter Open Sp. z o.o. ,01376853|2083358X +Annales UMCS Geographia Geologia Mineralogia et Petrographia,De Gruyter Open Sp. z o.o. ,01371983|20833601 +Annales UMCS Historia,De Gruyter Open Sp. z o.o. ,02394251|2083361X +Annales UMCS Horticultura,De Gruyter Open Sp. z o.o. ,12332127|20836058 +Annales UMCS Informatica,De Gruyter Open Sp. z o.o. ,17321360|20833628 +Annales UMCS Mathematica,De Gruyter Open Sp. z o.o. ,03651029|20837402 +Annales UMCS Medicina,De Gruyter Open Sp. z o.o. ,00662240| +Annales UMCS Medicina Veterinaria,De Gruyter Open Sp. z o.o. ,03017737| +Annales UMCS Pharmacia,De Gruyter Open Sp. z o.o. ,08670609| +Annales UMCS Physica,Walter de Gruyter GmbH,23007559 +Annales UMCS Politologia,De Gruyter Open Sp. z o.o. ,23007567 +Annales UMCS Sectio AAA PHYSICA,De Gruyter Open Sp. z o.o. ,01376861| +Annales UMCS Sectio I (Filozofia Socjologia),De Gruyter Open Sp. z o.o. ,23007540 +Annales UMCS SECTIO I Philosophia - Sociologia,De Gruyter Open Sp. z o.o. ,01372025| +Annales UMCS Sectio K (Politologia),De Gruyter Open Sp. z o.o. ,14289512|14289512 +Annales UMCS Zootechnica,De Gruyter Open Sp. z o.o. ,02394243|20837399 +Annales Universitatis Mariae Curie-Sklodowska sectio FF Philologia,Wydawnictwo Uniwersytetu Marii Curie-SkÅ?odowskiej w Lublinie,0239426X|2449853X +Annales Universitatis Mariae Curie-Skłodowska sectio G (IUS),Wydawnictwo Uniwersytetu Marii Curie-SkÅ?odowskiej w Lublinie,04584317|24498505 +Annales Universitatis Mariae Curie-Skłodowska sectio H Oeconomia,Wydawnictwo Uniwersytetu Marii Curie-SkÅ?odowskiej w Lublinie,04599586|24498513 +Annales Universitatis Mariae Curie-Skłodowska sectio J Paedagogia-Psychologia,Wydawnictwo Uniwersytetu Marii Curie-SkÅ?odowskiej w Lublinie,08672040|24498521 +Annales Universitatis Paedagogicae Cracoviensis Studia Mathematica,De Gruyter Open Sp. z o.o. ,2081545X|2300133X +Annales Zoologici,Museum and Institute of Zoology at the Polish Academy of Sciences,00034541|17341833 +Annales Zoologici Fennici,BioOne (Finnish Zoological and Botanical Publishing Board),0003455X|17972450 +Annali del Museo civico di storia naturale di Genova,Smithsonian Institution Biodiversity Heritage Library,03654389| +Annali dell Istituto e Museo di storia della scienza di Firenze,Brill Academic Publishers,03913341|22105875 +Annali dell Istituto Superiore di Sanità,Istituto Superiore di Sanita,00212571|00212571 +ANNALI DELL UNIVERSITA DI FERRARA,Springer-Verlag,04303202|18271510 +Annali di Chimica,Wiley Blackwell (John Wiley & Sons),00034592|16128877 +Annali di Matematica Pura ed Applicata (1923 -),Springer-Verlag,03733114|16181891 +Annali di Scienze Religiose,"""Brepols Publishers, NV""",20315929| +Annali di Stomatologia,CIC Edizioni Internazionali,19711441 +ANNALS AND ESSENCES OF DENTISTRY,Diva Enterprises Private Limited,09758798|0976156X +Annals in Social Responsibility,Emerald (MCB UP ),20563515| +Annals of Actuarial Science,Cambridge University Press,17484995|17485002 +Annals of African Medicine,Medknow Publications,15963519| +Annals of African Surgery,African Journals Online ,19999674|19999674 +Annals of Agrarian Science,Elsevier ,15121887| +Annals of Agricultural and Environmental Medicine,Index Copernicus International,12321966|18982263 +Annals of Agricultural Sciences,Elsevier ,05701783| +Annals of Allergy Asthma & Immunology,Elsevier ,10811206| +Annals of Anatomy - Anatomischer Anzeiger,Elsevier ,09409602| +Annals of Animal Resource Sciences,Institute of Animal Resources,12252964|22873317 +Annals of Animal Science,De Gruyter Open Sp. z o.o. ,16423402|16423402 +Annals of Anthropological Practice,Wiley Blackwell (Blackwell Publishing),2153957X| +Annals of Applied Biology,Wiley Blackwell (Blackwell Publishing),00034746|17447348 +Annals of Behavioral Medicine,Springer-Verlag,08836612|15324796 +Annals of Behavioral Science and Medical Education,Springer-Verlag,10751211|10751211 +Annals of Bioanthropology,Medknow Publications,23157992| +Annals of Bioanthropology,Medknow Publications,23157992| +Annals of Biomedical Engineering,Springer-Verlag,00906964|15739686 +Annals of Biomedical Sciences,African Journals Online ,15966569 +Annals of Botany,Oxford University Press,03057364|10958290 +Annals of Business Administrative Science,Global Business Research Center,13474464|13474456 +Annals of Cancer Research and Therapy,The Japanese Society of Strategies for Cancer Research and Therapy,13446835|18805469 +Annals of Cardiac Anaesthesia,Medknow Publications,09719784| +Annals of Cardiothoracic Surgery,AME Publishing Company,2225319X|23041021 +Annals of Carnegie Museum,BioOne (Carnegie Museum of Natural History),00974463|19436300 +Annals of Clinical and Translational Neurology,Wiley Blackwell (John Wiley & Sons),23289503| +Annals of Clinical Biochemistry An international journal of biochemistry and laboratory medicine,SAGE Publications,00045632|17581001 +Annals of Clinical Chemistry and Laboratory Medicine,Nepal Journals Online,23825081|23924446 +Annals of Clinical Microbiology,The Korean Society of Clinical Microbiology (KAMJE),22880585|22886850 +Annals of Clinical Microbiology and Antimicrobials,Springer (Biomed Central Ltd.),14760711|14760711 +Annals of Clinical Psychiatry,Informa UK (Taylor & Francis),10401237|15473325 +Annals of Coloproctology,Korean Society of Coloproctology (KAMJE),22879714|22879722 +Annals of Colorectal Research,International Neuroscience Institute,23225262|23225289 +Annals of Combinatorics,Springer-Verlag,02180006|02193094 +Annals of Corporate Governance,Now Publishers,23816724|23816732 +Annals of Data Science,Springer-Verlag,21985804|21985812 +Annals of Dermatology,Korean Dermatological Association and The Korean Society for Investigative Dermatology (KAMJE),10139087|20053894 +Annals of Diagnostic Paediatric Pathology,Springer-Verlag,14274426|15095762 +Annals of Diagnostic Pathology,Elsevier ,10929134| +Annals of Dyslexia,Springer-Verlag,07369387|19347243 +Annals of Economics and Statistics,GENES,21154430|19683863 +Annals of Emergency Medicine,Elsevier ,01960644| +Annals of Epidemiology,Elsevier ,10472797| +Annals of Eugenics,Wiley Blackwell (Blackwell Publishing),20501420| +Annals of Finance,Springer-Verlag,16142446|16142454 +Annals of Financial Economics,World Scientific ,20104952|20104960 +Annals of Forest Research,Forest Research and Managment Institute,18448135|20652445 +Annals of Forest Science,Springer-Verlag,12864560|1297966X +Annals of Forest Science,Springer-Verlag,12864560|1297966X +Annals of Functional Analysis,Duke University Press,20088752 +Annals of Fundeni Hospital,De Gruyter Open Sp. z o.o. ,12243450 +Annals of Gastroenterology,Hellenic Society of Gastroenterology,17927463| +Annals of General Hospital Psychiatry,Springer (Biomed Central Ltd.),14752832| +Annals of General Psychiatry,Springer (Biomed Central Ltd.),1744859X|1744859X +Annals of GIS,Informa UK (Taylor & Francis),19475683|19475691 +Annals of Glaciology,Cambridge University Press,02603055|17275644 +Annals of Global Analysis and Geometry,Springer-Verlag,0232704X|15729060 +Annals of Global Health,Elsevier ,22149996| +Annals of Health and Health Sciences,Diva Enterprises Private Limited,23220414|23220422 +Annals of Hematology,Springer-Verlag,09395555|14320584 +Annals of Hepatology,Index Copernicus International,16652681| +Annals of Horticulture,Diva Enterprises Private Limited,09748784|09764623 +Annals of Human Biology,Informa UK (Taylor & Francis),03014460|14645033 +Annals of Human Genetics,Wiley Blackwell (Blackwell Publishing),00034800|14691809 +Annals of Ibadan Postgraduate Medicine,African Journals Online ,15971627 +Annals of Improbable Research,"""Improbable Research, Inc.""",10795146| +Annals of Indian Academy of Neurology,Medknow Publications,09722327| +Annals of Innovation & Entrepreneurship,Co-Action Publishing,20007396 +Annals of Intensive Care,Springer (Biomed Central Ltd.),21105820|21105820 +Annals of Internal Medicine,American College of Physicians,00034819| +Annals of Japan Prosthodontic Society,Japan Prosthodontic Society,18834426|18836860 +Annals of K-Theory,Mathematical Sciences Publishers,23791683|23791691 +Annals of Laboratory Medicine,Korean Society for Laboratory Medicine (KAMJE),22343806|22343814 +Annals of Leisure Research,Informa UK (Taylor & Francis),11745398|21596816 +Annals of Mathematical Logic,Elsevier ,00034843| +Annals of Mathematics,"""Annals of Mathematics, Princeton U""",0003486X| +Annals of Mathematics and Artificial Intelligence,Springer-Verlag,10122443|15737470 +Annals of Maxillofacial Surgery,Medknow Publications,22310746| +Annals of Medical and Health Sciences Research,Medknow Publications,21419248| +Annals of Medicine,Informa UK (Taylor & Francis),07853890|13652060 +Annals of Medicine and Surgery,Elsevier ,20490801| +Annals of Microbiology,Springer-Verlag,15904261|18692044 +Annals of Neurology,Wiley Blackwell (John Wiley & Sons),03645134|15318249 +Annals of Neurosciences,Indian Academy of Neurosciences,09727531|09763260 +Annals of Nigerian Medicine,Medknow Publications,03313131| +Annals of Noninvasive Electrocardiology,Wiley Blackwell (Blackwell Publishing),1542474X|1082720X +Annals of Nuclear Cardiology,The Japanese Society of Nuclear Cardiology,21893926| +Annals of Nuclear Energy,Elsevier ,03064549| +Annals of Nuclear Medicine,Springer-Verlag,09147187|18646433 +Annals of Nuclear Science and Engineering,Elsevier ,03022927| +Annals of Nutrition & Metabolism,S. Karger AG,02506807|14219697 +Annals of Nutrition and Metabolism,S. Karger AG,02506807|14219697 +Annals of Occupational and Environmental Medicine,Springer (Biomed Central Ltd.),20524374|20524374 +Annals of Occupational Hygiene,Oxford University Press,00034878|14753162 +Annals of Oncology,Oxford University Press,09237534|15698041 +Annals of Operations Research,Springer-Verlag,02545330|15729338 +Annals of Ophthalmology,Springer - Humana Press,15304086|15589951 +Annals of Oral and Maxillofacial Surgery,Open Access Publishing London,20527837 +Annals of Otology Rhinology & Laryngology,SAGE Publications,00034894|1943572X +Annals of Paediatric Rheumatology,ScopeMed International Medical Journal Managment and Indexing System,21462909| +Annals of PDE,Springer-Verlag,21992576 +Annals of Pediatric Cardiology,Medknow Publications,09742069| +Annals of Pediatric Endocrinology & Metabolism,Korean Society of Pediatric Endocrinology (KAMJE),22871012|22871292 +Annals of Pediatric Surgery,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,16874137| +Annals of Periodontology,American Academy of Periodontology,15530841| +ANNALS OF PHARMACY AND PHARMACEUTICAL SCIENCES,Hind Agri Horticultural Society,0976125X|22309438 +Annals of Physical and Rehabilitation Medicine,Elsevier ,18770657| +Annals of Physics,Elsevier ,00034916|1096035X +Annals of Plastic Surgery,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,01487043| +Annals of Psychoceramics B,CrossRef test user,55555152|55556167 +Annals of Public and Cooperative Economics,Wiley Blackwell (Blackwell Publishing),13704788|14678292 +Annals of Pure and Applied Logic,Elsevier ,01680072| +Annals of Rehabilitation Medicine,Korean Academy of Rehabilitation Medicine (KAMJE),22340645|22340653 +Annals of Research in Sport and Physical Activity,Coimbra University Press,21821143|21827087 +Annals of Saudi Medicine,King Faisal Specialist Hospital and Research Centre,02564947|09754466 +Annals of Science,Informa UK (Taylor & Francis),00033790|1464505X +Annals of Sex Research,Springer-Verlag,08434611| +Annals of Software Engineering,Springer-Verlag,10227091|15737489 +Annals of Solid and Structural Mechanics,Springer-Verlag,18676936|18676944 +Annals of Surgery,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,00034932| +Annals of Surgical Innovation and Research,Springer (Biomed Central Ltd.),17501164|17501164 +Annals of Surgical Oncology,Springer - Society of Surgical Oncology,10689265|15344681 +Annals of Surgical Treatment and Research,The Korean Surgical Society (KAMJE),22886575|22886796 +annals of telecommunications - annales des télécommunications,Springer-Verlag,00034347|19589395 +Annals of tha Japanese Association for Russian and East European Studies,Japanese Association for Russian and East European Studies,21854645|1884586X +Annals of the Alexandru Ioan Cuza University - Economics,De Gruyter Open Sp. z o.o. ,20688717 +Annals of the Alexandru Ioan Cuza University - Mathematics,De Gruyter Open Sp. z o.o. ,12218421|12218421 +Annals of the American Association of Geographers,Informa UK (Taylor & Francis),24694452|24694460 +Annals of the American Thoracic Society,American Thoracic Society,23256621|23256621 +Annals of the Association of American Geographers,Informa UK (Taylor & Francis),00045608|14678306 +Annals of the College of Surgeons Hong Kong,Wiley Blackwell (Blackwell Publishing),10284001|14422034 +Annals of the Entomological Society of America,Oxford University Press,00138746|00138746 +Annals of the History of Computing,Institute of Electrical and Electronics Engineers,01641239| +Annals of the ICRP,SAGE Publications,01466453| +Annals of the ICRP/ICRP Publication,SAGE Publications,00742740| +Annals of the Institute of Statistical Mathematics,Springer-Verlag,00203157|15729052 +Annals of the Japan Association for Philosophy of Science,The Japan Association for Philosophy of Science,04530691|18841228 +Annals of the Japanese Association for Soviet and East European Studies,Japanese Association for Russian and East European Studies,03867226|18845851 +Annals of The Lyceum of Natural History of New York,Wiley Blackwell (Blackwell Publishing),08906564| +Annals of the Missouri Botanical Garden,BioOne (Missouri Botanical Garden Press),00266493|21624372 +Annals of the Natal Museum,Smithsonian Institution Biodiversity Heritage Library,03040798| +Annals of the New York Academy of Sciences,Wiley Blackwell (Blackwell Publishing),00778923|17496632 +ANNALS OF THE ORADEA UNIVERSITY Fascicle of Management and Technological Engineering,Asociatia Pentru Inginerie Integrata Si Management Industrial,15830691 +Annals of the Rheumatic Diseases,BMJ,00034967|14682060 +Annals of The Royal College of Surgeons of England,The Royal College of Surgeons of England,00358843|14787083 +Annals of the South African Museum Annale van die Suid-Afrikaanse Museum,Smithsonian Institution Biodiversity Heritage Library,03032515| +Annals of The Tohoku Geographycal Asocciation,The Tohoku Geographical Association,03872777|18841244 +Annals of Thoracic and Cardiovascular Surgery,Editorial Committee of Annals of Thoracic and Cardiovascular Surgery,13411098|21861005 +Annals of Thoracic Medicine,Medknow Publications,18171737| +Annals of Tourism Research,Elsevier ,01607383| +Annals of Translational Medicine,AME Publishing Company,23055839|23055847 +Annals of Transplantation,International Scientific Literature,14259524|23290358 +Annals of Tropical Medicine and Parasitology,Maney Publishing,00034983|13648594 +Annals of Tropical Medicine and Public Health,Medknow Publications,17556783| +Annals of Tropical Paediatrics,Informa UK (Taylor & Francis),02724936|14653281 +Annals of Vascular Diseases,The Editorial Committee of Annals of Vascular Diseases,1881641X|18816428 +Annals of Vascular Surgery,Elsevier ,08905096|16155947 +Annals of Warsaw University of Life Sciences – SGGW Land Reclamation,De Gruyter Open Sp. z o.o. ,18988857|20819617 +Annals of West University of Timisoara - Mathematics,De Gruyter Open Sp. z o.o. ,18413293|18413307 +Annals of West University of Timisoara - Physics,Walter de Gruyter GmbH,12249718 +Annaly aritmologii,LLC Science and Innovations,18146791|23076313 +Annexes des Cahiers de linguistique hispanique médiévale,PERSEE Program,01809997| +Annuaire des collectivités locales,PERSEE Program,02914700|21025940 +Annuaire français de droit international,PERSEE Program,00663085|21052948 +Annual Abstract of Statistics,Nature Publishing Group - Macmillan Publishers,00725730|20401639 +Annual Bulletin of Historical Literature,Wiley Blackwell (Blackwell Publishing),00663832|14678314 +Annual Meeting of the Berkeley Linguistics Society,Semantics and Pragmatics,03632946|23771666 +Annual of Navigation,De Gruyter Open Sp. z o.o. ,16408632 +Annual of Social Work,Pravni Fakultet Sveucilista u Zagrebu - Law School of the University of Zagreb,18465412|18487971 +Annual Publication of the Historical Society of Southern California,JSTOR,21629145| +Annual Publication of the Historical Society of Southern California (1888),JSTOR,21632987| +Annual Publication of the Historical Society of Southern California (1891),JSTOR,21633002| +Annual Publication of the Historical Society of Southern California and of the Pioneers of Los Angeles County,JSTOR,21629110| +Annual Publication of the Historical Society of Southern California and Pioneer Register Los Angeles,JSTOR,21629080| +Annual Publication of the Historical Society of Southern California Los Angeles,JSTOR,21629064| +Annual Report of The Kansai Plant Protection Society,The Kansai Plant Protection Society,03871002|18836291 +Annual Report on Exchange Arrangements and Exchange Restrictions,International Monetary Fund,23040831| +Annual Report on Exchange Arrangements and Exchange Restrictions,International Monetary Fund,02507366| +Annual Reports in Computational Chemistry (now under book series),Elsevier , +Annual Reports on Analytical Atomic Spectroscopy,The Royal Society of Chemistry,03061353| +Annual Reports on NMR Spectroscopy,Elsevier , +Annual Reports on the Progress of Chemistry,The Royal Society of Chemistry,03656217| +Annual Reports on the Progress of Chemistry Section A General Physical and Inorganic Chemistry,The Royal Society of Chemistry,00693022| +Annual Reports on the Progress of Chemistry Section A Physical and Inorganic Chemistry,The Royal Society of Chemistry,03086003| +"""Annual Reports Section """"A"""" (Inorganic Chemistry)""",The Royal Society of Chemistry,02601818|14604760 +"""Annual Reports Section """"B"""" (Organic Chemistry)""",The Royal Society of Chemistry,00693030|14604779 +"""Annual Reports Section """"B"""" (Organic Chemistry)""",The Royal Society of Chemistry,00693030|14604779 +"""Annual Reports Section """"C"""" (Physical Chemistry)""",The Royal Society of Chemistry,02601826|14604787 +Annual Research & Review in Biology,Sciencedomain International,2347565X +Annual Review in Automatic Programming,Elsevier ,00664138| +Annual Review of Analytical Chemistry,Annual Reviews,19361327|19361335 +Annual Review of Animal Biosciences,Annual Reviews,21658102|21658110 +Annual Review of Anthropology,Annual Reviews,00846570|00846570 +Annual Review of Applied Linguistics,Cambridge University Press,02671905|14716356 +Annual Review of Astronomy and Astrophysics,Annual Reviews,00664146|15454282 +Annual Review of Biochemistry,Annual Reviews,00664154|15454509 +Annual Review of Biomedical Engineering,Annual Reviews,15239829|15454274 +Annual Review of Biomedical Sciences,UNESP - Universidade Estdual Paulista,15173011|18068774 +Annual Review of Biophysics,Annual Reviews,1936122X|19361238 +Annual Review of Biophysics and Bioengineering,Annual Reviews,08839182| +Annual Review of Biophysics and Biomolecular Structure,Annual Reviews,10568700|10568700 +Annual Review of Biophysics and Biophysical Chemistry,Annual Reviews,00846589| +Annual Review of Cell and Developmental Biology,Annual Reviews,10810706|15308995 +Annual Review of Cell Biology,Annual Reviews,07434634| +Annual Review of Chemical and Biomolecular Engineering,Annual Reviews,19475438|19475446 +Annual Review of Clinical Psychology,Annual Reviews,15485943|15485951 +Annual Review of Cognitive Linguistics,John Benjamins Publishing Company,15720268|15720276 +Annual Review of Computer Science,Annual Reviews,87567016|87567016 +Annual Review of Condensed Matter Physics,Annual Reviews,19475454|19475462 +Annual Review of Earth and Planetary Sciences,Annual Reviews,00846597|15454495 +Annual Review of Ecology and Systematics,Annual Reviews,00664162| +Annual Review of Ecology Evolution and Systematics,Annual Reviews,1543592X|15452069 +Annual Review of Economics,Annual Reviews,19411383|19411391 +Annual Review of Energy,Annual Reviews,03621626| +Annual Review of Energy and the Environment,Annual Reviews,10563466| +Annual Review of Entomology,Annual Reviews,00664170|15454487 +Annual Review of Environment and Resources,Annual Reviews,15435938|15452050 +Annual Review of Financial Economics,Annual Reviews,19411367|19411375 +Annual Review of Fish Diseases,Elsevier ,09598030| +Annual Review of Fluid Mechanics,Annual Reviews,00664189|15454479 +Annual Review of Food Science and Technology,Annual Reviews,19411413|19411421 +Annual Review of Genetics,Annual Reviews,00664197|15452948 +Annual Review of Genomics and Human Genetics,Annual Reviews,15278204|1545293X +Annual Review of Gerontology and Geriatrics,Springer Publishing Company,01988794| +Annual Review of Health Social Science,Informa UK (Taylor & Francis),10366733| +Annual Review of Immunology,Annual Reviews,07320582|15453278 +Annual Review of Information Science and Technology,Wiley Blackwell (John Wiley & Sons),00664200|15508382 +Annual Review of Language Acquisition,John Benjamins Publishing Company,15681467|1569965X +Annual Review of Law and Social Science,Annual Reviews,15503585|15503631 +Annual Review of Linguistics,Annual Reviews,23339683|23339691 +Annual Review of Marine Science,Annual Reviews,19411405|19410611 +Annual Review of Materials Research,Annual Reviews,15317331|15454118 +Annual Review of Materials Science,Annual Reviews,00846600| +Annual Review of Medicine,Annual Reviews,00664219|1545326X +Annual Review of Microbiology,Annual Reviews,00664227|15453251 +Annual Review of Neuroscience,Annual Reviews,0147006X|15454126 +Annual Review of Nuclear and Particle Science,Annual Reviews,01638998|15454134 +Annual Review of Nuclear Science,Annual Reviews,00664243| +Annual Review of Nursing Research,Springer Publishing Company,07396686| +Annual Review of Nutrition,Annual Reviews,01999885|15454312 +Annual Review of Organizational Psychology and Organizational Behavior,Annual Reviews,23270608|23270616 +Annual Review of Pathology Mechanisms of Disease,Annual Reviews,15534006|15534014 +Annual Review of Pharmacology,Annual Reviews,00664251| +Annual Review of Physical Chemistry,Annual Reviews,0066426X|15451593 +Annual Review of Physiology,Annual Reviews,00664278|15451585 +Annual Review of Phytopathology,Annual Reviews,00664286|15452107 +Annual Review of Plant Biology,Annual Reviews,15435008|15452123 +Annual Review of Plant Physiology,Annual Reviews,00664294| +Annual Review of Plant Physiology and Plant Molecular Biology,Annual Reviews,10402519| +Annual Review of Political Science,Annual Reviews,10942939|15451577 +Annual Review of Psychology,Annual Reviews,00664308|15452085 +Annual Review of Public Health,Annual Reviews,01637525|15452093 +Annual Review of Resource Economics,Annual Reviews,19411340|19411359 +Annual Review of Sex Research,Informa UK (Taylor & Francis),10532528| +Annual Review of Sociology,Annual Reviews,03600572|15452115 +Annual Review of Statistics and Its Application,Annual Reviews,23268298|2326831X +Annual Review of Virology,Annual Reviews,2327056X|23270578 +Annual Review of Vision Science,Annual Reviews,23744642|23744650 +Annual Reviews in Control,Elsevier ,13675788| +Annual Reviews of Heat Transfer,Begell House Inc.,10490787| +Annuel de l APF,CAIRN,19645007|24265489 +ANQ A Quarterly Journal of Short Articles Notes and Reviews,Informa UK (Taylor & Francis),0895769X|19403364 +Antarctic Science,Cambridge University Press,09541020|13652079 +Antarctica A Keystone in a Changing World,US Geological Survey,1961497 +Anthos,Portland State University Library,23757809 +Anthropocene,Elsevier ,22133054| +Anthropologia integra,Masaryk University Press,18046657|18046665 +Anthropologiai Közlemények,Anthropologiai Kozlemenyek,00035440| +Anthropologica,JSTOR,00035459| +Anthropological aspects of sports physical education and recreation,Faculty of Physical Education and Sport,19868146|22327347 +Anthropological Forum,Informa UK (Taylor & Francis),00664677|14692902 +Anthropological Journal of European Cultures,Berghahn Books,17552923| +Anthropological Linguistics,Muse - Johns Hopkins University Press,19446527 +Anthropological Papers of the American Museum of Natural History,American Museum of Natural History,00659452| +Anthropological Quarterly,Muse - Johns Hopkins University Press,00035491|15341518 +Anthropological Review,JSTOR,13680382| +Anthropological Review,De Gruyter Open Sp. z o.o. ,18986773|20834594 +Anthropological Science,Anthropological Society of Nippon,09187960|13488570 +Anthropological Science (Japanese Series),Anthropological Society of Nippon,13443992|13488813 +Anthropological Theory,SAGE Publications,14634996|00000000 +Anthropological Yearbook of European Cultures,Berghahn Books,09600604| +Anthropologie et santé,OpenEdition,21115028|21115028 +Anthropologie et Sociétés,Consortium Erudit,07028997|17037921 +Anthropologischer Anzeiger,Schweizerbart,00035548| +Anthropology,OMICS Publishing Group,23320915 +Anthropology & Aging,"""University Library System, University of Pittsburgh""",23742267 +Anthropology & Archeology of Eurasia,Informa UK (Taylor & Francis),10611959|1558092X +Anthropology & Education Quarterly,Wiley Blackwell (Blackwell Publishing),01617761|15481492 +Anthropology & Humanism,Wiley Blackwell (Blackwell Publishing),15599167|15481409 +Anthropology & Materialism,OpenEdition,23640480 +Anthropology and Humanism Quarterly,Wiley Blackwell (Blackwell Publishing),01935615| +Anthropology and Medicine,Informa UK (Taylor & Francis),13648470|14692910 +Anthropology in Action,Berghahn Books,0967201X|17522285 +Anthropology News,Wiley Blackwell (Blackwell Publishing),00981605|15563502 +Anthropology News,Wiley Blackwell (Blackwell Publishing),15416151| +Anthropology Now,Paradigm Publishers,19428200|19492901 +Anthropology of Consciousness,Wiley Blackwell (Blackwell Publishing),10534202|15563537 +Anthropology of the Middle East,Berghahn Books,17460719|17460727 +Anthropology of Work Newsletter,Wiley Blackwell (Blackwell Publishing),10465707| +Anthropology of Work Review,Wiley Blackwell (Blackwell Publishing),0883024X|15481417 +Anthropology Southern Africa,Informa UK (Taylor & Francis),23323256|23323264 +Anthropology Today,Wiley Blackwell (Blackwell Publishing),0268540X|14678322 +Anthropozoologica,"""BioOne (Museum National d'Histoire Naturelle, Paris, France)""",07613032|21070881 +Anthrovision,OpenEdition,21986754 +Anthrozoos A Multidisciplinary Journal of The Interactions of People & Animals,Informa UK (Taylor & Francis),08927936|17530377 +ANTI-AGING MEDICINE,Japanese Society of Anti-Aging Medicine,18822762 +Anti-Cancer Agents in Medicinal Chemistry,Bentham Science,18715206| +Anti-Cancer Drugs,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,09594973| +Anti-Corrosion Methods and Materials,Emerald (MCB UP ),00035599| +Anti-Infective Agents,Bentham Science,22113533| +Anti-Infective Agents,Bentham Science,22113525| +Anti-Infective Agents in Medicinal Chemistry,Bentham Science,18715214| +Anti-Inflammatory & Anti-Allergy Agents in Medicinal Chemistry,Bentham Science,18715230| +Anti-Trafficking Review,Alliance Against Traffic in Women Foundation,22867511|22870113 +Antibiotics,MDPI AG,20796382 +Antibiotiques,Elsevier ,12945501| +Antibodies,MDPI AG,20734468 +Antibody Technology Journal,Dove Medical Press,22303170 +Antichthon,Cambridge University Press,00664774|00664774 +Antik Tanulmányok,Akademiai Kiado Zrt.,0003567X|15882748 +Antike und Abendland,Walter de Gruyter GmbH,00035696|16130421 +Antimicrobial Agents and Chemotherapy,American Society for Microbiology,00664804|10986596 +Antimicrobial Resistance and Infection Control,Springer (Biomed Central Ltd.),20472994|20472994 +Antimicrobic Newsletter,Elsevier ,07381751| +Antimicrobics and Infectious Diseases Newsletter,Elsevier ,1069417X| +Antioxidants,MDPI AG,20763921 +Antioxidants & Redox Signaling,Mary Ann Liebert,15230864|15577716 +Antioxidants and Redox Signaling,Mary Ann Liebert,15230864|00000000 +Antipoda,Universidad de los Andes,19005407| +Antipode,Wiley Blackwell (Blackwell Publishing),00664812|14678330 +Antipodes,Wayne State University Press,08935580|23319089 +Antipodes,Wayne State University Press,08935580|23319089 +Antiqua,PAGEPress Publications,20389590|20389604 +Antiquitates Mathematicae,Polish Mathematical Society,18985203|23538813 +Antiquité Tardive,"""Brepols Publishers, NV""",12507334| +Antiquités africaines,PERSEE Program,00664871|2117539X +Antiquity,Antiquity Publications,0003598X|17451744 +Antisense and Nucleic Acid Drug Development,Mary Ann Liebert,10872906|00000000 +Antíteses,Universidade Estadual de Londrina,19843356 +Antiviral Chemistry & Chemotherapy,SAGE Publications,09563202|20402066 +Antiviral Chemistry and Chemotherapy,SAGE Publications,20402066|20402066 +Antiviral Research,Elsevier ,01663542| +Antiviral Therapy,International Medical Press,13596535|20402058 +Antonie van Leeuwenhoek,Springer-Verlag,00036072|15729699 +Antropología Experimental,Universidad de Jaen,15784282 +Antropologia Portuguesa,Coimbra University Press,08700990|21827982 +Antropoloji,Ankara University,03782891|03782891 +Anuari de l Agrupació Borrianenca de Cultura Revista de recerca humanística i científica,Universitat Jaume I,11304235|23404787 +Anuari de Psicologia de la Societat Valenciana de Psicologia,Universitat de Valencia,11351268 +Anuario,JSTOR,05644429| +Anuário Antropológico,OpenEdition,01024302|2357738X +Anuario Colombiano de Derecho Internacional - ACDI,Colegio Mayor de Nuestra Senora del Rosario,20271131|21454493 +Anuario Colombiano de Historia Social y de la Cultura,Universidad Nacional de Colombia,01202456|22565647 +Anuario de Acción Humanitaria y Derechos Humanos,University of Deusto,1885298X| +Anuario de Derechos Humanos,Universidad de Chile,07182058|07182058 +Anuario de Derechos Humanos,Universidad de Chile,07182058|07182058 +Anuario de Derechos Humanos,Universidad de Chile,07182058|07182058 +Anuario de Derechos Humanos Nueva Época,Universidad Complutense de Madrid,02120364| +Anuario de Estudios Americanos,Departmento de Publicaciones del CSIC,02105810|19884273 +Anuario de Estudios Medievales,Departmento de Publicaciones del CSIC,00665061|19884230 +Anuario de Historia de la Iglesia,Universidad de Navarra,11330104|21740887 +Anuario de Historia Regional y de las Fronteras,Universidad Industrial de Santander,01222066|21458499 +Anuario de Letras,Instituto de Investigaciones Filologicas,01851373| +Anuário de Literatura,Universidade Federal de Santa Catarina,14145235|21757917 +Anuario de Psicología Jurídica,Elsevier ,11330740|21740542 +Anuário do Instituto de Geociências - UFRJ,Instituto de Geociencias - UFRJ,01019759|19823908 +Anuario Filosófico,Universidad de Navarra,00665215| +Anuario Iberoamericano de Justicia Constitucional,Centro de Estudios Politicos y Constitucionales,11384824|19895585 +Anuario Iberoamericano Derecho Internacional Penal,Colegio Mayor de Nuestra Senora del Rosario,23463120 +Anuario IET de Trabajo y Relaciones Laborales,Universitat Autonoma de Barcelona,23395753 +Anuario Interamericano de Investigacion Musical,JSTOR,08862192| +Anuario Latinoamericano – Ciencias Políticas y Relaciones Internacionales,Wydawnictwo Uniwersytetu Marii Curie-SkÅ?odowskiej w Lublinie,23920343|24498483 +Anuario Lope de Vega Texto literatura cultura,Universitat Autonoma de Barcelona,20148860 +Anuario Mexicano de Derecho Internacional,Elsevier ,18704654| +Anuario Musical,Departmento de Publicaciones del CSIC,02113538|19884125 +Anuario ThinkEPI,El Profesional de la Informacion,18866344| +Anuário Unesco/Metodista de Comunicação Regional,Instituto Metodista de Ensino Superior,21760934 +Anuradhapura Medical Journal,Sri Lanka Journals Online ,22793771|23459719 +ANVESHAK-International Journal of Management,"""Indira Institute of Managment, Pune""",22788913|22788913 +ANVIL,De Gruyter Open Sp. z o.o. ,09697373|09697373 +Anwer Khan Modern Medical College Journal,Bangladesh Journals Online,2221836X|23045701 +Anxiety,Wiley Blackwell (John Wiley & Sons),10709797|15227154 +Anxiety Disorder Research,Japanese Society of Anxiety Disorders,18835619|21879583 +Anxiety Research,Informa UK (Taylor & Francis),08917779| +Anxiety Stress & Coping,Informa UK (Taylor & Francis),10615806|14772205 +Anyanyelv-pedagógia,Anyanyelv-pedagogia,20600623| +ANZ Journal of Surgery,Wiley Blackwell (Blackwell Publishing),14451433|14452197 +Anzeiger der philosophisch-historischen Klasse,Verlag der Osterreichischen Akademie der Wissenschaften,1728015X|03788652 +Anzeiger für Schädlingskunde,Wiley Blackwell (Blackwell Publishing),14365693|14390280 +Anzeiger für Schädlingskunde Pflanzen- und Umweltschutz,Springer-Verlag,03407322| +Anzeiger für Schädlingskunde Pflanzenschutz Umweltschutz,Springer-Verlag,03407330| +AoB Plants,Oxford University Press,20412851 +AORN Journal,Elsevier ,00012092| +Aorta,Science International Corporation,23254637|23254637 +APCBEE Procedia,Elsevier ,22126708| +Apeiron,Walter de Gruyter GmbH,00036390|21567093 +Aperito Journal of Advanced Plant Biology,Aperito Online Publishing Private Limited,23814993 +Aperito Journal of Cellular and Molecular Biology,Aperito Online Publishing Private Limited,24701114 +Aperito Journal of Infectious Diseases and Vaccine,Aperito Online Publishing Private Limited,23815078 +Aperito Journal of Ophthalmology,Aperito Online Publishing Private Limited,23815000 +Aperito Journal of Oral Health and Dentistry,Aperito Online Publishing Private Limited,23786302 +Aphasiology,Informa UK (Taylor & Francis),02687038|14645041 +Apidologie,Springer-Verlag,00448435|12979678 +APL Materials,American Institute of Physics,2166532X|2166532X +APLAR Journal of Rheumatology,Wiley Blackwell (Blackwell Publishing),02190494|02190494 +Apmis,Wiley Blackwell (Blackwell Publishing),09034641|16000463 +Apocrypha,"""Brepols Publishers, NV""",11553316| +Apollo Medicine,Elsevier ,09760016| +APOPTOSIS,Springer-Verlag,13608185|1573675X +APOS Trends in Orthodontics,Medknow Publications,23211407| +Appalachian Heritage,Muse - Johns Hopkins University Press,19405081 +Appareil,OpenEdition,21010714 +Appetite,Elsevier ,01956663|10958304 +Apples - Journal of Applied Language Studies,Jyvaskyla University Library,14579863 +Applicable Algebra in Engineering Communication and Computing,Springer-Verlag,09381279|14320622 +Applicable Analysis,Informa UK (Taylor & Francis),00036811|1563504X +Applicable Analysis and Discrete Mathematics,National Library of Serbia,14528630|2406100X +Applicationes Mathematicae,"""Institute of Mathematics, Polish Academy of Sciences""",12337234|17306280 +Applications in Plant Sciences,Botanical Society of America,21680450 +Applications of Mathematics,Springer-Verlag,08627940|15729109 +Applications of Structural Fire Engineering,Czech Technical University in Prague - Central Library,23367318| +Applications of Surface Science,Elsevier ,03785963| +Applied & Translational Genomics,Elsevier ,22120661| +Applied Acoustics,Elsevier ,0003682X| +Applied Adhesion Science,Springer (Biomed Central Ltd.),21964351|21964351 +Applied and Computational Harmonic Analysis,Elsevier ,10635203|1096603X +Applied and Computational Mathematics,Science Publishing Group,23285605| +Applied and Environmental Microbiology,American Society for Microbiology,00992240|10985336 +Applied and Environmental Soil Science,Hindawi Publishing Corporation,16877667|16877675 +Applied and Preventive Psychology,Elsevier ,09621849| +Applied Animal Behaviour Science,Elsevier ,01681591| +Applied Animal Ethology,Elsevier ,03043762| +Applied Artificial Intelligence,Informa UK (Taylor & Francis),08839514|10876545 +Applied Behavioral Science Review,Elsevier ,10688595| +Applied Biochemistry and Biotechnology,Springer-Verlag,02732289|15590291 +Applied Biochemistry and Microbiology,Pleiades Publishing,00036838|16083024 +Applied Bioenergy,De Gruyter Open Sp. z o.o. ,23003553 +Applied Bioinformatics,Springer-Verlag,11755636| +Applied Biological Chemistry,Springer-Verlag,24680834|24680842 +Applied Biological Research,Diva Enterprises Private Limited,09720979|09744517 +Applied Bionics and Biomechanics,Hindawi Publishing Corporation,11762322|17542103 +Applied Biosafety,SAGE Publications,15356760| +Applied Catalysis,Elsevier ,01669834| +Applied Catalysis A General,Elsevier ,0926860X| +Applied Catalysis B Environmental,Elsevier ,09263373| +Applied Categorical Structures,Springer-Verlag,09272852|15729095 +Applied Chemistry for Engineering,The Korean Society of Industrial and Engineering Chemistry,12250112| +Applied Clay Science,Elsevier ,01691317| +Applied Clinical Informatics,Schattauer GmbH (Applied Clinical Informatics),18690327|18690327 +Applied Clinical Research Clinical Trials and Regulatory Affairs,Bentham Science,2213476X| +Applied Cognitive Psychology,Wiley Blackwell (John Wiley & Sons),08884080|10990720 +Applied Composite Materials,Springer-Verlag,0929189X|15734897 +Applied Computational Intelligence and Soft Computing,Hindawi Publishing Corporation,16879724|16879732 +Applied Computer Systems,De Gruyter Open Sp. z o.o. ,22558691|22558691 +Applied Computing and Informatics,Elsevier ,22108327| +Applied Developmental Science,Informa UK (Taylor & Francis),10888691|1532480X +Applied Earth Science,Informa UK (Taylor & Francis),03717453|17432758 +Applied Ecology and Environmental Research,Applied Ecology and Environmental Research,15891623|17850037 +Applied Ecology and Environmental Sciences,"""Science and Education Publishing Co., Ltd.""",23283912| +Applied Economic Perspectives and Policy,Oxford University Press,20405790|20405804 +Applied Economics,Informa UK (Taylor & Francis),00036846|14664283 +Applied Economics and Business Review,Sciknow Publications,23338717 +Applied Economics and Finance,Redfame Publishing,23327308|23327294 +Applied Economics Letters,Informa UK (Taylor & Francis),13504851|14664291 +Applied Economics Quarterly,Duncker & Humblot GmbH,16116607|18655122 +Applied Economics Systematic Research,Vytautas Magnus University,18227996|23358742 +Applied Energy,Elsevier ,03062619| +Applied Engineering in Agriculture,American Society of Agricultural and Biological Engineers,08838542|19437838 +Applied Entomology and Zoology,Springer-Verlag,00036862|1347605X +Applied Environmental Biotechnology,Whioce Publishing Pte Ltd.,23826436| +Applied Environmental Education & Communication,Informa UK (Taylor & Francis),1533015X|15330389 +Applied Ergonomics,Elsevier ,00036870| +Applied Finance and Accounting,Redfame Publishing,23742410|23742429 +Applied Financial Economics,Informa UK (Taylor & Francis),09603107|14664305 +Applied Financial Economics Letters,Informa UK (Taylor & Francis),17446546|17446554 +Applied General Topology,Universitat Politecnica de Valencia,15769402|19894147 +Applied Geochemistry,Elsevier ,08832927| +Applied Geographic Studies,Wiley Blackwell (John Wiley & Sons),10833404|15206319 +Applied Geography,Elsevier ,01436228| +Applied Geomatics,Springer-Verlag,18669298|1866928X +Applied Geophysics,Springer-Verlag,16727975|19930658 +Applied GIS,Monash University,18325505| +Applied Health Economics and Health Policy,Springer-Verlag,11755652|11791896 +Applied Herpetology,Brill Academic Publishers,15707539|15707547 +APPLIED HUMAN SCIENCE Journal of Physiological Anthropology,Japan Society of Physiological Anthropology,13413473| +Applied Immunohistochemistry,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10623345| +Applied Immunohistochemistry & Molecular Morphology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15412016| +Applied In Vitro Toxicology,Mary Ann Liebert,23321512|23321539 +Applied Industrial Hygiene,Informa UK (Taylor & Francis),08828032| +Applied Informatics,Springer (Biomed Central Ltd.),21960089|21960089 +Applied Intelligence,Springer-Verlag,0924669X|15737497 +Applied laser,Shanghai Institute of Optics and Fine Mechanics,1000372X| +Applied Linguistics,Oxford University Press,01426001|1477450X +Applied Linguistics Review,Walter de Gruyter GmbH,18686303|18686311 +Applied Magnetic Resonance,Springer-Verlag,09379347|16137507 +Applied Materials Today,Elsevier ,23529407| +Applied Mathematical Finance,Informa UK (Taylor & Francis),1350486X|14664313 +Applied Mathematical Modelling,Elsevier ,0307904X| +Applied Mathematical Sciences,"""Hikari, Ltd.""",1312885X|13147552 +Applied Mathematics,"""Scientific Research Publishing, Inc.""",21527385|21527393 +Applied Mathematics & Information Sciences,Natural Sciences Publishing,19350090|23250399 +Applied Mathematics & Information Sciences Letters,Natural Sciences Publishing,23738944|23738952 +Applied Mathematics & Optimization,Springer-Verlag,00954616|14320606 +Applied Mathematics and Computation,Elsevier ,00963003| +Applied Mathematics and Mechanics,Springer-Verlag,02534827|15732754 +Applied Mathematics and Physics,"""Science and Education Publishing Co., Ltd.""",23334878| +Applied Mathematics and Sciences An International Journal (MathSJ),Academy and Industry Research Collaboration Center,23496223 +Applied Mathematics Letters,Elsevier ,08939659| +Applied Mathematics Research eXpress,Oxford University Press,16871200|16871197 +Applied Mathematics-A Journal of Chinese Universities,Springer-Verlag,10051031|19930445 +Applied Measurement in Education,Informa UK (Taylor & Francis),08957347|15324818 +Applied Mechanics and Materials,Trans Tech Publications,16627482 +Applied Mechanics and Materials,Trans Tech Publications,16609336 +Applied Mechanics Reviews,ASME International ,00036900| +Applied Medical Research,ScopeMed International Medical Journal Managment and Indexing System,21492018| +Applied Microbiology and Biotechnology,Springer-Verlag,01757598|14320614 +Applied Microscopy,Korean Society of Electron Microscopy,22875123|22874445 +Applied Mobilities,Informa UK (Taylor & Francis),23800127|23800135 +Applied Mycology and Biotechnology,Elsevier , +Applied Nanoscience,Springer-Verlag,21905509|21905517 +Applied Neuropsychology,Informa UK (Taylor & Francis),09084282|15324826 +Applied Neuropsychology Adult,Informa UK (Taylor & Francis),23279095|23279109 +Applied Neuropsychology Child,Informa UK (Taylor & Francis),21622965|21622973 +Applied Numerical Analysis & Computational Mathematics,Wiley Blackwell (John Wiley & Sons),16118170|16118189 +Applied Numerical Mathematics,Elsevier ,01689274|01689274 +Applied Nursing Research,Elsevier ,08971897| +Applied Occupational and Environmental Hygiene,Informa UK (Taylor & Francis),1047322X|15210898 +Applied Ocean Research,Elsevier ,01411187| +Applied Ontology,IOS Press,15705838|18758533 +Applied Optics,The Optical Society,00036935|15394522 +Applied Organometallic Chemistry,Wiley Blackwell (John Wiley & Sons),02682605|10990739 +Applied Petrochemical Research,Springer-Verlag,21905525|21905533 +Applied Physics,Springer-Verlag,03403793| +Applied Physics,Hans Publishers,21607567|21607575 +Applied Physics A,Springer-Verlag,09478396|14320630 +Applied Physics A Solids and Surface,Springer-Verlag,07217250| +Applied Physics B,Springer-Verlag,09462171|14320649 +Applied Physics B Photophysics and Laser Chemistry,Springer-Verlag,07217269|14320649 +Applied Physics Express,Japan Society of Applied Physics,18820778|18820786 +Applied Physics Letters,American Institute of Physics,00036951|00036951 +Applied Physics Research,Canadian Center of Science and Education,19169639|19169647 +Applied Physics Reviews,American Institute of Physics,19319401|19319401 +Applied Physiology Nutrition and Metabolism,Canadian Science Publishing,17155312|17155320 +Applied Psycholinguistics,Cambridge University Press,01427164|14691817 +Applied Psychological Measurement,SAGE Publications,01466216|00000000 +Applied Psychological Research Journal,"""Coventry University, Lanchester Library""",2057570X +Applied Psychology,Wiley Blackwell (Blackwell Publishing),0269994X|14640597 +Applied Psychology Health and Well-Being,Wiley Blackwell (Blackwell Publishing),17580846|17580854 +Applied Psychophysiology and Biofeedback,Springer-Verlag,10900586|15733270 +Applied Radiation and Isotopes,Elsevier ,09698043| +Applied Radiology,Elsevier ,01609963| +Applied Research In Health And Social Sciences Interface And Interaction,Walter de Gruyter GmbH,18223338 +Applied Research in Mental Retardation,Elsevier ,02703092| +Applied Research in Quality of Life,Springer-Verlag,18712584|18712576 +Applied Researches in Technics Technologies and Education,Trakia University,13148788|13148796 +Applied Science and Convergence Technology,The Korean Vacuum Society,22886559 +Applied Science Letters,Asian Scientific Publishers,2394479X|23945001 +Applied Science Reports,Progressive Science Publications,23110139|23109440 +Applied Sciences,MDPI AG,20763417 +Applied Scientific Reports,Herbert Publications,20549903 +Applied Scientific Research,Springer-Verlag,00036994|00036994 +Applied Scientific Research Section B,Springer-Verlag,03657140| +Applied Signal Processing,Springer-Verlag,09410635| +Applied Soft Computing,Elsevier ,15684946| +Applied Soil Ecology,Elsevier ,09291393| +Applied Solar Energy,Allerton Press,0003701X|19349424 +Applied Spatial Analysis and Policy,Springer-Verlag,1874463X|18744621 +Applied Spectroscopy,SAGE Publications,00037028|1943-3530 +Applied Spectroscopy Reviews,Informa UK (Taylor & Francis),05704928|1520569X +Applied Statistics,JSTOR, +Applied Stochastic Models and Data Analysis,Wiley Blackwell (John Wiley & Sons),87550024|10990747 +Applied Stochastic Models in Business and Industry,Wiley Blackwell (John Wiley & Sons),15241904|15264025 +Applied Studies in Agribusiness and Commerce,University of Debrecen/Applied Studies in Agribusiness and Commerce (APSTRACT),1789221X|17897874 +Applied Superconductivity,Elsevier ,09641807| +Applied Surface Science,Elsevier ,01694332| +Applied Technologies and Innovations,Prague Development Center ,18041191|18044999 +Applied Theatre Research,Intellect,20493010|20493029 +Applied Thermal Engineering,Elsevier ,13594311| +Applied Turfgrass Science,American Society of Agronomy,15525821 +Applied Vegetation Science,Wiley Blackwell (Blackwell Publishing),14022001|1654109X +Applied Water Science,Springer-Verlag,21905487|21905495 +Approche Centrée sur la Personne Pratique et recherche,CAIRN,17745314|19618670 +Approches inductives Travail intellectuel et construction des connaissances,Consortium Erudit,22920005 +Approximation Theory and Its Applications,Springer-Verlag,10009221| +APS Journal,Elsevier ,10589139| +APSIPA Transactions on Signal and Information Processing,Cambridge University Press,20487703 +APSnet Feature Articles,Scientific Societies,21530297 +APT Bulletin,JSTOR,08488525| +Apuntes de Ciencia & Sociedad,Universidad Continental,22255141|2225515X +APUNTES DEL CENES,Universidad Pedagogica y Tecnologica de Colombia,01203053|22565779 +Apuntes Revista de estudios sobre patrimonio cultural,Editorial Pontificia Universidad Javeriana,16579763| +Apuntes Universitarios,Universidad Peruana Union,22257136|23040335 +Apunts Educació Física i Esports,Institut d'Educacio Fisica de Catalunya,02148757|20140983 +Apunts Educación Física y Deportes,Institut d'Educacio Fisica de Catalunya,15774015| +Apunts Medicina de l Esport,Elsevier ,18866581| +AQ Australian Quarterly,JSTOR,14433605| +Aqua-BioScience Monographs,Terrapub,1882322X +Aquacultural Engineering,Elsevier ,01448609| +Aquaculture,Elsevier ,00448486| +Aquaculture Economics & Management,Informa UK (Taylor & Francis),13657305|13657313 +Aquaculture Environment Interactions,Inter-Research Science Center,1869215X|18697534 +Aquaculture International,Springer-Verlag,09676120|1573143X +Aquaculture Nutrition,Wiley Blackwell (Blackwell Publishing),13535773|13652095 +Aquaculture Reports,Elsevier ,23525134| +Aquaculture Research,Wiley Blackwell (Blackwell Publishing),1355557X|13652109 +Aquarium Science and Conservation,Springer (Kluwer Academic Publishers),13575325| +Aquatic Biology,Inter-Research Science Center,18647782|18647790 +Aquatic Biology Research,Sciknow Publications,23317981 +Aquatic Biosystems,Springer (Biomed Central Ltd.),20469063|20469063 +Aquatic Botany,Elsevier ,03043770| +Aquatic Conservation Marine and Freshwater Ecosystems,Wiley Blackwell (John Wiley & Sons),10527613|10990755 +Aquatic Ecology,Springer-Verlag,13862588|15735125 +Aquatic Ecosystem Health & Management,Informa UK (Taylor & Francis),14634988|00000000 +Aquatic Ecosystem Health and Management,Elsevier ,14634988| +Aquatic Geochemistry,Springer-Verlag,13806165|15731421 +Aquatic Insects,Informa UK (Taylor & Francis),01650424|01650424 +Aquatic Invasions,Regional Euro-Asian Biological Invasions Centre Oy - REABIC,18185487|18185487 +Aquatic Living Resources,EDP Sciences,09907440|17652952 +Aquatic Mammals,Aquatic Mammals Journal,01675427|00000000 +Aquatic Microbial Ecology,Inter-Research Science Center,09483055|16161564 +Aquatic Procedia,Elsevier ,2214241X| +Aquatic Resources Culture and Development,CABI Publishing,1477903X|00000000 +Aquatic Science and Technology,"""Macrothink Institute, Inc.""",21689148 +Aquatic Sciences,Springer-Verlag,10151621|14209055 +Aquatic Toxicology,Elsevier ,0166445X| +Aqueous Hiyama Coupling Catalyzed by Palladium–Nitrogen Complexes,Thieme Publishing Group,20600402 +Aquichan,Universidad de la Sabana,16575997|20275374 +Aquila,Smithsonian Institution Biodiversity Heritage Library,03745708| +Arab Economic and Business Journal,Elsevier ,22144625| +Arab International Informatics Journal,"""Al Manhal FZ, LLC""",16585933| +Arab Journal of Forensic Sciences and Forensic Medicine,"""Al Manhal FZ, LLC""",16586786| +Arab Journal of Gastroenterology,Elsevier ,16871979| +Arab Journal of Mathematical Sciences,Elsevier ,13195166| +Arab Journal of Nephrology and Transplantation,African Journals Online ,1858554X|1858554X +Arab Journal of Urology,Elsevier ,2090598X| +Arab Law Quarterly,Brill Academic Publishers,02680556|00000000 +Arab Studies Quarterly,Pluto Journals,02713519|20436920 +Arab Studies Quarterly,Pluto Journals,02713519|20436920 +Arabian archaeology and epigraphy,Wiley Blackwell (Blackwell Publishing),09057196|16000471 +Arabian Journal for Science and Engineering,Springer-Verlag,13198025|21914281 +Arabian Journal of Chemistry,Elsevier ,18785352| +Arabian Journal of Geosciences,Springer-Verlag,18667511|18667538 +Arabian Journal of Mathematics,Springer-Verlag,21935343|21935351 +Arabian Journal of Media and Communication,"""Al Manhal FZ, LLC""",16583620| +Arabic & Middle Eastern Literature,Informa UK (Taylor & Francis),13666169|14692929 +Arabic Language&Literature,Korean Association of Arabic Language and Literature,12290882| +Arabic Sciences and Philosophy,Cambridge University Press,09574239|14740524 +Arabica,Brill Academic Publishers,05705398|15700585 +ARABIYAT Jurnal Pendidikan Bahasa Arab dan Kebahasaaraban,E-Journal System Portal of Syarif Hidayatullah State Islamic University,2356153X|24429473 +Arachnologische Mitteilungen,Arachnologische Gesellschaft e.v.,10184171|21997233 +Arachnology,BioOne - Arachnology,20509928|20509936 +ARAM Periodical,Peeters Publishers,9594213 +Aramaic Studies,Brill Academic Publishers,14778351|17455227 +Araştırma Ankara Üniversitesi Dil ve Tarih-Coğrafya Fakültesi Felsefe Bölümü Dergisi (Yayınlanmıyor),Ankara University,13006207| +Araucaria,Editorial Universidad de Sevilla,15756823|23402199 +Arbeidsrechtelijke Annotaties,Boom Uitgevers Den Haag,15686639| +Arbeidsrett,Scandinavian University Press / Universitetsforlaget AS,15035883|15043088 +Arbeit,Walter de Gruyter GmbH,09415025|2365984X +Arbeitsphysiologie,Springer-Verlag,03650863| +Arbitration International,Oxford University Press,09570411|18758398 +Arbitration Law Reports and Review,Oxford University Press,20448651|20449887 +Arbitrium,Walter de Gruyter GmbH,07232977|18658849 +Arbor,Departmento de Publicaciones del CSIC,02101963|1988303X +Arbor Clinical Nutrition Updates,Cambridge University Press,14465450| +Arborescences Revue d études françaises,Consortium Erudit,19255357 +Arboricultural Association Journal,Informa UK (Taylor & Francis),00037931| +Arboricultural Journal,Informa UK (Taylor & Francis),03071375|21681074 +ARC Journal of Cancer Science,ARC Publications Pvt Ltd.,24556009 +ARC Journal of Cardiology,ARC Publications Pvt Ltd.,24555991 +ARC Journal of Diabetes and Endocrinology,ARC Publications Pvt Ltd.,24555983 +ARC Journal of Nursing and Healthcare,ARC Publications Pvt Ltd.,24554324 +ARC Journal of Pediatrics,ARC Publications Pvt Ltd.,24555711 +ARC Journal of Surgery,ARC Publications Pvt Ltd.,2455572X +Arcadia - International Journal for Literary Studies,Walter de Gruyter GmbH,00037982|16130642 +Arch Microbiology,Internet Medical Publishing,19898436 +Archaea,Hindawi Publishing Corporation,14723646|14723654 +Archaeologia,Cambridge University Press,02613409| +Archaeologia Austriaca,Verlag der Osterreichischen Akademie der Wissenschaften,00038008|18162959 +Archaeologia BALTICA,Klaipeda University Press,13925520|23516534 +Archaeologia historica,Masaryk University Press,02315823|23364386 +Archaeologia Historica Polona,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,14253534| +Archaeologia Lituana,Vilnius University,13926748|13926748 +Archaeologiai Értesitö,Akademiai Kiado Zrt.,00038032|1589486X +Archaeological and Anthropological Sciences,Springer-Verlag,18669557|18669565 +Archaeological Dialogues,Cambridge University Press,13802038|14782294 +Archaeological Discovery,"""Scientific Research Publishing, Inc.""",23311959|23311967 +Archaeological Journal,Informa UK (Taylor & Francis),00665983|23732288 +Archaeological Prospection,Wiley Blackwell (John Wiley & Sons),10752196|10990763 +Archaeological Reports,Cambridge University Press,05706084|20414102 +Archaeological Research in Asia,Elsevier ,23522267| +Archaeologies,Springer-Verlag,15558622|19353987 +Archaeology Ethnology and Anthropology of Eurasia,Elsevier ,15630110|1531832X +Archaeology Ethnology and Anthropology of Eurasia (Russian-language),Institute of Archaeology and Ethnography SB RAS,15630102|24107182 +Archaeology in Oceania,Wiley Blackwell (John Wiley & Sons),00038121| +Archaeology International,"""Ubiquity Press, Ltd.""",14631725|20484194 +Archaeometry,Wiley Blackwell (Blackwell Publishing),0003813X|14754754 +Archaeonautica,PERSEE Program,01541854|21176973 +Archai Revista de Estudos sobre as Origens do Pensamento Ocidental,Coimbra University Press,21794960|1984249X +Archeion,"""Brepols Publishers, NV""",03927865| +Archeological Papers of the American Anthropological Association,Wiley Blackwell (Blackwell Publishing),1551823X|15518248 +Archéologie du Midi médiéval,PERSEE Program,07587708| +Archéologie du Midi médiéval,PERSEE Program,07587708| +ArchéoSciences,OpenEdition,19601360|21043728 +Archipel,PERSEE Program,00448613|21043655 +Architectoni ca,Canadian Centre of Academic Art and Science,19277148|19277156 +Architectural Design,Wiley Blackwell (John Wiley & Sons),00038504|15542769 +Architectural Engineering and Design Management,Informa UK (Taylor & Francis),17452007|17527589 +Architectural Heritage,Edinburgh University Press,13507524|17551641 +Architectural Histories,"""Ubiquity Press, Ltd.""",20505833|20505833 +Architectural History,JSTOR,0066622X| +Architectural research,Architectural Institute of Korea,12296163| +Architectural Research Quarterly,Cambridge University Press,13591355|14740516 +Architectural Science Review,Informa UK (Taylor & Francis),00038628|17589622 +Architectural Theory Review,Informa UK (Taylor & Francis),13264826|17550475 +Architecture & Environment,Sciknow Publications,23292288 +Architecture and Culture,Informa UK (Taylor & Francis),20507828|20507836 +Architecture and Urban Planning,De Gruyter Open Sp. z o.o. ,16914333|22558764 +Architecture Research,Scientific and Academic Publishing,2168507X| +Architecture_MPS,UCL Press,20509006|20509006 +Architektūra objektai ir kontekstai,Vilnius Gediminas Technical University,24243892 +Archiv der Mathematik,Springer-Verlag,0003889X|14208938 +Archiv der Pharmazie,Wiley Blackwell (John Wiley & Sons),03656233|15214184 +Archiv des oeffentlichen Rechts,Mohr Siebeck,00038911| +Archiv des Völkerrechts,Mohr Siebeck,0003892X| +Archiv fuer die civilistische Praxis,Mohr Siebeck,00038997| +Archiv für die gesamte Virusforschung,Springer-Verlag,00039012| +Archiv für Diplomatik,Bohlau Verlag,00666297|21945020 +Archiv für Elektrotechnik,Springer-Verlag,00039039| +Archiv für Elektrotechnik,Springer-Verlag,00039039| +Archiv für Entwicklungsmechanik der Organismen,Springer-Verlag,03745155| +Archiv für Geschichte der Philosophie,Walter de Gruyter GmbH,00039101|16130650 +Archiv für Gynäkologie,Springer-Verlag,00039128| +Archiv für Gyn\303\244kologie,Springer-Verlag,00039128| +Archiv für Hydrobiologie,Schweizerbart,00039136| +Archiv für Klinische und Experimentelle Ohren- Nasen- und Kehlkopfheilkunde,Springer-Verlag,00039195| +Archiv für Kreislaufforschung,Springer-Verlag,00039217| +Archiv für Kulturgeschichte,Bohlau Verlag,00039233|21943958 +Archiv für Mathematische Logik und Grundlagenforschung,Springer-Verlag,00039268| +Archiv für Meteorologie Geophysik und Bioklimatologie Serie B,Springer-Verlag,00666424| +Archiv für Mikrobiologie,Springer-Verlag,00039276| +Archiv für Mikroskopische Anatomie,Springer-Verlag,01767364| +Archiv für Mikroskopische Anatomie und Entwicklungsmechanik,Springer-Verlag,03654125| +Archiv für Molluskenkunde International Journal of Malacology,Schweizerbart,18690963| +Archiv für Musikwissenschaft,JSTOR,00039292| +Archiv für Naturgeschichte,Smithsonian Institution Biodiversity Heritage Library,03656136| +Archiv für Ohren- Nasen- und Kehlkopfheilkunde,Springer-Verlag,03029530| +Archiv für Ohrenheilkunde,Springer-Verlag, +Archiv für Orthopäadie Mechanotherapie und Unfallchirurgie,Springer-Verlag, +Archiv für Orthopädische und Unfall-Chirurgie,Springer-Verlag,00039330| +Archiv für Papyrusforschung und verwandte Gebiete,Walter de Gruyter GmbH,00666459|18671551 +Archiv für Pathologische Anatomie und Physiologie und für Klinische Medicin,Springer-Verlag,07208723| +Archiv für Pflanzenschutz,Informa UK (Taylor & Francis),00039349| +Archiv für Protistenkunde,Elsevier ,00039365| +Archiv für Psychiatrie und Nervenkrankheiten,Springer-Verlag,00039373| +Archiv für Reformationsgeschichte - Archive for Reformation History,Gutersloher Verlaghaus,00039381|21980489 +Archiv für Reformationsgeschichte/Literaturbericht,Gutersloher Verlaghaus,03418375|21980497 +Archiv für Religionsgeschichte,Walter de Gruyter GmbH,14363038|18688888 +Archiv für Tierernaehrung,Informa UK (Taylor & Francis),0003942X| +Archiv für Toxikologie,Springer-Verlag,00039446| +Archival Science,Springer-Verlag,13890166|15737519 +Archivalische Zeitschrift,Bohlau Verlag,00039497|21943826 +Archive for History of Exact Sciences,Springer-Verlag,00039519|14320657 +Archive for Mathematical Logic,Springer-Verlag,09335846|14320665 +Archive for Rational Mechanics and Analysis,Springer-Verlag,00039527|14320673 +Archive for the Psychology of Religion,Brill Academic Publishers,00846724|15736121 +Archive für Toxikologie,Springer-Verlag,00039446| +Archive of Applied Mechanics,Springer-Verlag,09391533|14320681 +Archive of internal medicine,"""Synapse, LLC""",22266704|24116564 +Archive of Mechanical Engineering,De Gruyter Open Sp. z o.o. ,00040738|00040738 +Archive of oncology,National Library of Serbia,03547310|14509520 +ARCHIVE Proceedings of the Institution of Mechanical Engineers Part A Journal of Power Engineering 1989 (vol 203),SAGE Publications,09544046| +ARCHIVE Proceedings of the Institution of Mechanical Engineers Part A Power and Process Engineering 1983-1988 (vols 197-202),SAGE Publications,02637138| +ARCHIVE Proceedings of the Institution of Mechanical Engineers Part B Management and Engineering Manufacture 1983-1988 (vols 197-202),SAGE Publications,02637146| +ARCHIVE Proceedings of the Institution of Mechanical Engineers Part C Mechanical Engineering Science 1983-1988 (vols 197-202),SAGE Publications,02637154| +ARCHIVE Proceedings of the Institution of Mechanical Engineers Part D Transport Engineering 1984-1988 (vols 198-202),SAGE Publications,02651904| +Archives and Manuscripts,Informa UK (Taylor & Francis),01576895|21646058 +Archives and Museum Informatics,Springer-Verlag,10421467|15737500 +Archives and Records,Informa UK (Taylor & Francis),23257962|23257989 +Archives Animal Breeding,Copernicus GmbH,23639822 +Archives d histoire doctrinale et littéraire du Moyen Âge,CAIRN,03735478|21099529 +Archives de Pédiatrie,Elsevier ,0929693X| +Archives de sciences sociales des religions,OpenEdition,03355985|17775825 +Archives de zoologie expérimentale et générale,Smithsonian Institution Biodiversity Heritage Library,00039667| +Archives des Maladies du Coeur et des Vaisseaux - Pratique,Elsevier ,1261694X| +Archives des Maladies Professionnelles et de l Environnement,Elsevier ,17758785| +Archives des sciences sociales des religions,PERSEE Program,00039659|17775825 +Archives for Meteorology Geophysics and Bioclimatology Series A,Springer-Verlag,00666416| +Archives for Meteorology Geophysics and Bioclimatology Series B,Springer-Verlag,00666424| +Archives for Technical Sciences,National and University Library of the Republic of Srpska,18404855|22330046 +Archives in Cancer Research,Internet Medical Publishing,22546081 +Archives Internationales d Histoire des Sciences,"""Brepols Publishers, NV""",00039810| +Archives Internationales de Physiologie,Informa UK (Taylor & Francis),03014541| +Archives Internationales de Physiologie de Biochimie et de Biophysique,Informa UK (Taylor & Francis),07783124| +Archives Internationales de Physiologie et de Biochimie,Informa UK (Taylor & Francis),00039799| +Archives Néerlandaises de Zoologie,Brill Academic Publishers,03655164|18753019 +Archives of (Clinical) Skiagraphy,British Institute of Radiology,20531923|20531931 +Archives of Acoustics,De Gruyter Open Sp. z o.o. ,01375075|2300262X +Archives of Aesthetic Plastic Surgery,Korean Society for Aesthetic Plastic Surgery (KAMJE),22340831|22889337 +Archives of Agronomy and Soil Science,Informa UK (Taylor & Francis),03650340|14763567 +Archives of American Art Journal,The University of Chicago Press,00039853|00039853 +Archives of Andrology,Informa UK (Taylor & Francis),01485016| +Archives of Animal Nutrition,Informa UK (Taylor & Francis),1745039X|14772817 +Archives of Asian Art,Muse - Johns Hopkins University Press,19446497 +Archives of Biochemistry and Biophysics,Elsevier ,00039861|10960384 +Archives of Biological Sciences,National Library of Serbia,03544664|18214339 +Archives of Budo,International Scientific Literature,16438698 +Archives of Business Research,Scholar Publishing,20547404 +Archives of Cardiovascular Diseases,Elsevier ,18752136| +Archives of Cardiovascular Diseases Supplements,Elsevier ,18786480| +Archives of Cardiovascular Imaging,Kowsar Medical Institute,23225327|23225319 +Archives of Case Reports in Clinical Medicine,Elyns Group LLC,24695173 +Archives of Civil and Mechanical Engineering,Elsevier ,16449665| +Archives of Civil Engineering,De Gruyter Open Sp. z o.o. ,12302945|12302945 +Archives of Clinical and Experimental Surgery (ACES),ScopeMed International Medical Journal Managment and Indexing System,21468133| +Archives of Clinical Gastroenterology,Peertechz.com,24552283 +Archives of Clinical Infectious Diseases,Kowsar Medical Institute,23452641|23452641 +Archives of Clinical Neuropsychology,Oxford University Press,08876177|18735843 +Archives of Clinical Psychiatry,SciELO,01016083|01016083 +Archives of Clinical Psychiatry (São Paulo),SciELO,1806938X +Archives of Clinical Psychiatry (São Paulo),SciELO,1806938X +Archives of Community Medicine and Public Health,Peertechz.com,24555479 +Archives of Computational Methods in Engineering,Springer-Verlag,11343060|18861784 +Archives of Control Sciences,De Gruyter Open Sp. z o.o. ,12302384|23002611 +Archives of Craniofacial Surgery,Korean Cleft Palate-Craniofacial Association (KAMJE),22871152|22875603 +Archives of Critical Care Medicine,International Neuroscience Institute,24234443 +Archives of Current Research International,Sciencedomain International,24547077 +Archives of Depression and Anxiety,Peertechz.com,24555460 +Archives of Dermatological Research,Springer-Verlag,03403696|1432069X +Archives of Dermatology,American Medical Association,0003987X| +Archives of Dermatology and Syphilology,American Medical Association,00966029| +Archives of Design Research,Korea Society of Design Science,12268046| +Archives of Disease in Childhood,BMJ,00039888|14682044 +Archives of Disease in Childhood - Education and Practice,BMJ,17430585|17430593 +Archives of Disease in Childhood - Fetal and Neonatal Edition,BMJ,13592998|14682052 +Archives of Drug Information,Wiley Blackwell (Blackwell Publishing),17535174|17535174 +Archives of Electrical Engineering,De Gruyter Open Sp. z o.o. ,00040746|23002506 +Archives of Endocrinology and Metabolism,SciELO,23594292 +Archives of Environmental & Occupational Health,Informa UK (Taylor & Francis),19338244|21544700 +Archives of Environmental Contamination and Toxicology,Springer-Verlag,00904341|14320703 +Archives of Environmental Health An International Journal,Informa UK (Taylor & Francis),00039896| +Archives of Environmental Protection,De Gruyter Open Sp. z o.o. ,20834772|20834810 +Archives of Exercise in Health and Disease,Faculdade de Desporto,16471652 +Archives of Facial Plastic Surgery,American Medical Association,15212491| +Archives of Family Medicine,CrossRef test user,10633987| +Archives of Forensic Medicine and Criminology,Termedia Sp. z.o.o.,03248267| +Archives of Foundry Engineering,De Gruyter Open Sp. z o.o. ,18973310|22992944 +Archives of General Psychiatry,American Medical Association,0003990X| +Archives of Gerontology and Geriatrics,Elsevier ,01674943| +Archives of Gynecology,Springer-Verlag,01709925| +Archives of Gynecology and Obstetrics,Springer-Verlag,09320067|14320711 +ARCHIVES OF HEALTH INVESTIGATION,Archives of Health Investigation,23173009 +Archives of Histology and Cytology,International Society Histology & Cytology,09149465|13491717 +Archives of Hydro-Engineering and Environmental Mechanics,De Gruyter Open Sp. z o.o. ,12313726|23008687 +Archives of Ibadan Medicine,African Journals Online ,14676958 +Archives of Industrial Hygiene and Toxicology,De Gruyter Open Sp. z o.o. ,00041254|00041254 +Archives of Insect Biochemistry and Physiology,Wiley Blackwell (John Wiley & Sons),07394462|15206327 +Archives of Internal Medicine,American Medical Association,00039926| +Archives of International Surgery,Medknow Publications,22789596| +Archives of Medical and Biomedical Research,African Journals Online ,16942086|16942078 +Archives of Medical Research,Elsevier ,01884409| +Archives of Medical Science,Termedia Sp. z.o.o.,17341922| +Archives of Medicine,Internet Medical Publishing,19895216|19895216 +Archives of Medicine and Health Sciences,Medknow Publications,23214848| +Archives of Metallurgy and Materials,De Gruyter Open Sp. z o.o. ,17333490|23001909 +Archives of Microbiology,Springer-Verlag,03028933|1432072X +Archives of Mining Sciences,De Gruyter Open Sp. z o.o. ,08607001|08607001 +Archives of Natural History,Edinburgh University Press,02609541|17556260 +Archives of Nature Conservation & Landscape Research,Informa UK (Taylor & Francis),00039306| +Archives of Neurology,American Medical Association,00039942| +Archives of Neurology And Psychiatry,American Medical Association,00966754| +Archives of Neuroscience,Kowsar Medical Institute,23223944|23225769 +Archives of Ophthalmology,American Medical Association,00039950| +Archives of Oral Biology,Elsevier ,00039969| +Archives of Oral Research,Pontificia Universidade Catolica do Parana - PUCPR,22368035| +Archives of Orthopaedic and Trauma Surgery,Springer-Verlag,09368051|14343916 +Archives of Orthopaedic and Traumatic Surgery,Springer-Verlag,03448444|14343916 +Archives of Osteoporosis,Springer-Verlag,18623522|18623514 +Archives of Oto-Rhino-Laryngology,Springer-Verlag,03029530| +Archives of Otolaryngology,American Medical Association,02760673| +Archives of Otolaryngology,American Medical Association,02760673| +Archives of Otolaryngology & Rhinology,Peertechz.com,24551759 +Archives of Otolaryngology - Head and Neck Surgery,American Medical Association,08864470| +Archives of Pathology & Laboratory Medicine,Archives of Pathology and Laboratory Medicine,00039985|15432165 +Archives of Pediatric Infectious Diseases,Kowsar Medical Institute,23221828|23221836 +Archives of Pediatrics and Adolescent Medicine,American Medical Association,10724710| +Archives of Pharmacal Research,Springer-Verlag,02536269|19763786 +Archives of Pharmacy Practice,Medknow Publications,2045080X| +Archives of Physical Medicine and Rehabilitation,Elsevier ,00039993| +Archives of Physiology,Herbert Publications,20550898 +Archives of Physiology and Biochemistry,Informa UK (Taylor & Francis),13813455|17444160 +Archives of Physiotherapy,Springer (Biomed Central Ltd.),20570082|20570082 +Archives of Physiotherapy and Global Researches,Wyzsza Szkola Spoleczno-Przyrodnicza im Wincentego Pola W Lublinie (Vincent Pol University),23534389|23537183 +Archives of Phytopathology and Plant Protection,Informa UK (Taylor & Francis),03235408|14772906 +Archives of Plastic Surgery,Archives of Plastic Surgery (KAMJE),22346163|22346171 +Archives of Polish Fisheries,De Gruyter Open Sp. z o.o. ,12306428|20836139 +Archives of Psychiatric Nursing,Elsevier ,08839417| +Archives of Psychiatry and Psychotherapy,Komitet Redakcyjno - Wydawniczy Polskiego Towarzystwa Psychiatrycznego,15092046| +Archives of Public Health,Springer (Biomed Central Ltd.),07787367|20493258 +Archives of Radiology and Electrotherapy,British Institute of Radiology,20531982|20531990 +Archives of Renal Diseases and Management,Peertechz.com,24555495 +Archives of Rheumatology,Baycinar Tibbi Yayincilik,21485046| +Archives of Scientific Psychology,American Psychological Association,21693269 +Archives of Sexual Behavior,Springer-Verlag,00040002|15732800 +Archives of Suicide Research,Informa UK (Taylor & Francis),13811118|15738159 +Archives of Surgery,American Medical Association,00040010| +Archives of Surgical Oncology,OMICS Publishing Group,24712671 +Archives of The Roentgen Ray,British Institute of Radiology,20531966|20531974 +Archives of Thermodynamics,De Gruyter Open Sp. z o.o. ,12310956|20836023 +Archives of Toxicology,Springer-Verlag,03405761|14320738 +Archives of Transport,Index Copernicus International,08669546| +Archives of Trauma Research,Kowsar Medical Institute,2251953X|22519599 +Archives of Veterinary Science,Universidade Federal do Parana,1517784X| +Archives of Virology,Springer-Verlag,03048608|14328798 +Archives of Women s Mental Health,Springer-Verlag,14341816|14351102 +Archivio di Ortopedia e Reumatologia,Springer-Verlag,03907368|15927113 +ARCHIVIO DI STUDI URBANI E REGIONALI,Franco Angeli,00040177|19718519 +Archivio Italiano di Urologia e Andrologia,PAGEPress Publications,11243562|22824197 +Archivium Hibernicum,JSTOR,00448745| +Archivo Español de Arqueología,Departmento de Publicaciones del CSIC,00666742|19883110 +Archivo Español de Arte,Departmento de Publicaciones del CSIC,00040428|19888511 +Archivos Argentinos de Pediatria,Sociedad Argentina de Pediatria,03250075|16683501 +Archivos de Bronconeumología,Elsevier ,03002896|05792129 +Archivos de Bronconeumología (English Edition),Elsevier ,15792129| +Archivos de Cardiología de México,Elsevier ,14059940| +Archivos de la Sociedad Española de Oftalmología,Elsevier ,03656691| +Archivos de la Sociedad Española de Oftalmología (English Edition),Elsevier ,21735794| +Archivos de Medicina,Internet Medical Publishing,16989465|16989465 +Archivos de medicina veterinaria,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,0301732X|0301732X +Archivos de Prevención de Riesgos Laborales,Societat Catalana de Seguretat I Medicina del Treball,11389672|15782549 +Archivos de Zootecnia,Instituto de Salud Carlos III/BNCS/SciELO Espana,00040592|00040592 +Archivos Españoles de Urología (Ed impresa),Instituto de Salud Carlos III/BNCS/SciELO Espana,00040614|00040614 +Archivum,Universidad de Oviedo,05707218|23411120 +Archivum Anatolicum-Anadolu Arşivleri,Ankara University,13006355| +Archivum histologicum japonicum,International Society Histology & Cytology,00040681| +Archivum Immunologiae et Therapiae Experimentalis,Springer-Verlag,0004069X|16614917 +Archivum Mathematicum,Masaryk University Press,00448753|12125059 +Archiwa - Kancelarie - Zbiory,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,18959075| +Archiwum Emigracji,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,20843550|23917911 +Arcos Design,Universidade do Estado do Rio de Janeiro UERJ,15160874|19845596 +ARCTIC,The Arctic Institute of North America,00040843|19231245 +Arctic and Alpine Research,JSTOR,00040851| +Arctic and North,Kniga - Service Agency Ltd.,22212698|22212698 +Arctic Antarctic and Alpine Research,BioOne (Institute of Arctic and Alpine Research),15230430|19384246 +Arctic Anthropology,University of Wisconsin Press,0066-6939|19338139 +Arctic Review on Law and Politics,Co-Action Publishing Cappelen Damms,23874562| +Arctic Science,Canadian Science Publishing,23687460| +Arctoa,KMK Scientific Press,01311379| +Ardea,BioOne (Netherlands Ornithologists' Union),03732266| +Ardeola,BioOne - Ardeola,05707358|23410825 +Area,Wiley Blackwell (Blackwell Publishing),00040894|14754762 +Área Abierta,Universidad Complutense de Madrid,15788393 +Area Pediatrica,Elsevier ,15910075| +Arethusa,Muse - Johns Hopkins University Press,10806504 +ARGOMENTI,Franco Angeli,11259116|19718357 +ArgoSpine News & Journal,Springer-Verlag,19577729|19577737 +Argument & Computation,Informa UK (Taylor & Francis),19462166|19462174 +Argumenta Oeconomica Cracoviensia,Uniwersytet Ekonomiczny w Krakowie - Krakow University of Economics,1642168X| +Argumentation,Springer-Verlag,0920427X|15728374 +Argumentation et analyse du discours,OpenEdition,15658961 +Argumentum,Argumentum,21769575|21769575 +Arhitektura i urbanizam,Centre for Evaluation in Education and Science,03546055| +Arhiv za farmaciju,Centre for Evaluation in Education and Science,00041963| +ARI,Springer-Verlag,14345641| +ARI - An International Journal for Physical and Engineering Sciences,Springer-Verlag,14345641|1434565X +Ariadna,Universitat Jaume I,23407719 +Arid Ecosystems,Pleiades Publishing,20790961|20790988 +Arid Land Research and Management,Informa UK (Taylor & Francis),15324982|15324990 +Arid Soil Research and Rehabilitation,Informa UK (Taylor & Francis),08903069|15210405 +Arid Zone Research,China Science Publishing & Media Ltd.,10014675| +ariel A Review of International English Literature,Muse - Johns Hopkins University Press,19201222 +Aries,Brill Academic Publishers,15679896|15700593 +Arion,JSTOR,00955809|00955809 +Aristotelian Society Supplementary Volume,Oxford University Press,03097013|03097013 +Arizona Journal of Hispanic Cultural Studies,Muse - Johns Hopkins University Press,19349009 +Arizona Quarterly A Journal of American Literature Culture and Theory,Muse - Johns Hopkins University Press,15589595 +Arkeometri Sonu,Ankara University,10177671 +Arkhiv patologii,Media Sphere Publishing Group,00041955| +Arkiv för matematik,Springer-Verlag,00042080|18712487 +Arkiv för zoologi / utgivet af K Svenska vetenskaps-akademien,Smithsonian Institution Biodiversity Heritage Library,00042110| +Arkiv Tidskrift för samhällsanalys,Arkiv Forlag & Tidskrift,20006225|20006217 +ARKIVOC,University of Michigan Library,15517012 +arktos,Springer-Verlag,23649453|23649461 +ARLIS/NA Newsletter,The University of Chicago Press,00903515| +Armed Conflict Survey,Informa UK (Taylor & Francis),23740973|23740981 +Armed Forces & Society,SAGE Publications,0095327X|15560848 +Arms & Armour,Informa UK (Taylor & Francis),17416124|17496268 +Arms Control,Informa UK (Taylor & Francis),01440381| +ARN Journal,Wiley Blackwell (John Wiley & Sons),03623505| +Arnold Mathematical Journal,Springer-Verlag,21996792|21996806 +ARO The Scientific Journal of Koya University,Koya University,2307549X|2307549X +ARQ (Santiago),SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7176996 +Arqueología de la Arquitectura,Departmento de Publicaciones del CSIC,16952731|19895313 +Arqueología y Territorio Medieval,Universidad de Jaen,11343184|23865423 +ARQUISUR,Universidad Nacional del Litoral,18532365|22504206 +Arquitetura Revista,Universidade do Vale do Rio Dos Sinos - UNISINOS,18085741 +Arquivo Brasileiro de Medicina Veterinária e Zootecnia,SciELO,01020935|01020935 +Arquivo Maaravi Revista Digital de Estudos Judaicos da UFMG,Faculdade de Letras da UFMG,19823053 +Arquivos Brasileiros de Cardiologia,GN1 Genesis Network,0066782X|16784170 +ARQUIVOS BRASILEIROS DE CARDIOLOGIA - IMAGEM CARDIOVASCULAR,GN1 Genesis Network,23188219| +Arquivos Brasileiros de Ciências da Saúde,NEPAS,19832451|23580747 +Arquivos Brasileiros de Endocrinologia & Metabologia,SciELO,00042730|00042730 +Arquivos Brasileiros de Neurocirurgia Brazilian Neurosurgery,Thieme Publishing Group,01035355|23595922 +Arquivos Brasileiros de Oftalmologia,GN1 Genesis Network,00042749|00042749 +Arquivos da Faculdade de Higiene e Saúde Pública da Universidade de São Paulo,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,03652203|2358792X +Arquivos de Ciências da Saúde,Faculdade de Medicina de Sao Jose do Rio Preto - FAMERP,18071325|23183691 +Arquivos de Gastroenterologia,SciELO,00042803|00042803 +Arquivos de Neuro-Psiquiatria,SciELO,0004282X|0004282X +Arquivos de Zoologia,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,00667870|21767793 +Arquivos do Instituto Biológico,SciELO,18081657 +Arquivos em Odontologia,Arquivos em Odontologia,15160939|21781990 +Arquivos Internacionais de Otorrinolaringologia,Thieme Publishing Group,18094872|18094856 +Arrhythmia,Korea Heart Rhythm Society,20059728|20938691 +Arrhythmia & Electrophysiology Review,"""Medical Media Communications LTD, T/A Radcliffe Cardiology""",20503377| +Arrhythmia grand rounds,Science International Corporation,23264012 +Ars & Humanitas,University of Ljubljana,18549632|23504218 +ARS (São Paulo),Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,16785320|21780447 +Ars Aeterna,De Gruyter Open Sp. z o.o. ,13379291 +Ars Disputandi,Informa UK (Taylor & Francis),15665399| +ARS Journal,American Institute of Aeronautics and Astronautics,19369972 +Ars Lyrica,"""Brepols Publishers, NV""",10433848| +ARS MEDICA Revista de Ciencias Médicas,Chimera Innova Group,07181051|07191855 +ARS Medica Tomitana,De Gruyter Open Sp. z o.o. ,18414036 +Ars Nova,Informa UK (Taylor & Francis),03796485| +Ars Orientalis,University of Michigan Library,23281286 +Ars Pharmaceutica (Internet),Instituto de Salud Carlos III/BNCS/SciELO Espana,23409894 +Ars Veterinaria,FUNEP,01026380|21750106 +Arşiv Kaynak Tarama Dergisi,Archives Medical Review Journal,13003755| +Art & Life,JSTOR,21505969| +Art & Perception,Brill Academic Publishers,22134905|22134913 +Art & the Public Sphere,Intellect,2042793X|20427948 +Art and Design Review,"""Scientific Research Publishing, Inc.""",23321997|23322004 +Art Antiquity and Law,Springer (Kluwer Academic Publishers),13622331| +Art Design & Communication in Higher Education,Intellect,1474273X|1474273X +Art Documentation Journal of the Art Libraries Society of North America,The University of Chicago Press,07307187|07307187 +Art Education,JSTOR,00043125| +Art History,Wiley Blackwell (Blackwell Publishing),01416790|14678365 +Art History & Criticism,Vytautas Magnus University,18224555|23358769 +Art History Forum,Center for Art Studies,12259519| +Art In Translation,Informa UK (Taylor & Francis),17561310|17561310 +Art Institute of Chicago Museum Studies,JSTOR,00693235| +Art Journal,Informa UK (Taylor & Francis),00043249|23255307 +Art Libraries Journal,Cambridge University Press,03074722|20597525 +Art Psychotherapy,Elsevier ,00909092| +Art Reference Services Quarterly,Informa UK (Taylor & Francis),10502548| +Art Research Letters,Hans Publishers,23263474|23263482 +Art Therapy,Informa UK (Taylor & Francis),07421656|21599394 +Arte & Diseño,Universidad Autonoma del Caribe,16928555| +Arte individuo y sociedad,Universidad Complutense de Madrid,11315598|19882408 +Arterial Hypertension,VM Media Sp zo.o. - VMGroup SK,24496170|24496162 +Arteriosclerosis Thrombosis and Vascular Biology,Ovid Technologies Wolters Kluwer -American Heart Association,10795642|15244636 +Artery Research,Elsevier ,18729312| +Arteterapia Papeles de arteterapia y educación artística para la inclusión social,Universidad Complutense de Madrid,18866190|19888309 +Arthritis,Hindawi Publishing Corporation,20901984|20901992 +Arthritis & Rheumatism,Wiley Blackwell (John Wiley & Sons),00043591|15290131 +Arthritis & Rheumatology,Wiley Blackwell (John Wiley & Sons),23265191| +Arthritis Care & Research,Wiley Blackwell (John Wiley & Sons),2151464X| +Arthritis Research,Springer (Biomed Central Ltd.),14659905| +Arthritis Research & Therapy,Springer (Biomed Central Ltd.),14786354|14786354 +Arthroplasty Today,Elsevier ,23523441| +Arthropod Management Tests,Oxford University Press,21559856 +Arthropod Structure & Development,Elsevier ,14678039| +Arthropod-Plant Interactions,Springer-Verlag,18728855|18728847 +Arthroscopy and Joint Surgery,Index Copernicus International,1895281X| +Arthroscopy and Orthopedic Sports Medicine,Korean Arthroscopy Society,2289005X|22890068 +Arthroscopy Techniques,Elsevier ,22126287| +Arthroscopy The Journal of Arthroscopic and Related Surgery,Elsevier ,07498063|15263231 +Arthroskopie,Springer-Verlag,09337946|14343924 +Arthshastra Indian Journal of Economics & Research,"""Associated Management Consultants, PVT, Ltd.""",22781811|22781811 +Arthuriana,Muse - Johns Hopkins University Press,19341539 +Artibus Asiae,JSTOR,00043648| +Artibus Asiae Supplementum,JSTOR,14230526| +Artibus et Historiae,JSTOR,03919064| +Articulo – revue de sciences humaines,OpenEdition,16614941|16614941 +Artifact,IUScholarWorks,17493463|17493471 +Artificial Cells Blood Substitutes and Biotechnology,Informa UK (Taylor & Francis),10731199|15324184 +Artificial Cells Nanomedicine and Biotechnology,Informa UK (Taylor & Francis),21691401|2169141X +Artificial DNA PNA & XNA,Landes Bioscience,1949095X|19490968 +Artificial Intelligence,Elsevier ,00043702| +Artificial Intelligence and Applications,"""Scientific Online Publishing, Co., Ltd.""",23744979|23744987 +Artificial Intelligence and Law,Springer-Verlag,09248463|15728382 +Artificial Intelligence and Robotics Research,Hans Publishers,23263415|23263423 +Artificial intelligence for engineering design analysis and manufacturing,Cambridge University Press,08900604|14691760 +Artificial Intelligence in Engineering,Elsevier ,09541810| +Artificial Intelligence in Medicine,Elsevier ,09333657| +Artificial Intelligence Research,Sciedu Press,19276974|19276982 +Artificial Intelligence Review,Springer-Verlag,02692821|15737462 +Artificial Life,MIT Press,10645462|15309185 +Artificial Life and Robotics,Springer-Verlag,14335298|16147456 +Artificial Organs,Wiley Blackwell (Blackwell Publishing),0160564X|15251594 +Artificial Photosynthesis,De Gruyter Open Sp. z o.o. ,22991190 +Artificial Satellites,De Gruyter Open Sp. z o.o. ,0208841X| +Artificial Satellites,De Gruyter Open Sp. z o.o. ,0208841X|20836104 +ARTMargins,MIT Press,21622574|21622582 +Artnodes,Fundacio per la Universitat Oberta de Catalunya,16955951|16955951 +Arts,MDPI AG,20760752 +Arts & Health,Informa UK (Taylor & Francis),17533015|17533023 +Arts and Humanities in Higher Education,SAGE Publications,14740222|00000000 +Arts and Social Sciences Journal,OMICS Publishing Group,21516200 +Arts and the Market,Emerald (MCB UP ),20564945| +Arts asiatiques,PERSEE Program,00043958|21114552 +Arts Education Policy Review,Informa UK (Taylor & Francis),10632913|19404395 +Arts et Savoirs,OpenEdition,2258093X +Arts Faculty Journal,Bangladesh Journals Online,19948891| +Arts Marketing An International Journal,Emerald (MCB UP ),20442084| +Artus 2011 - 2012 The Collector s Edition,Intellect,15467082|2169740X +Artvin Çoruh Üniversitesi Orman Fakültesi Dergisi,Artvin Coruh Universitesi Orman Fakultesi Dergisi,21461880|2146698X +Arxiu d Etnografia de Catalunya,Universitat Rovira I Virgili,02120372|20143885 +Aryl Additions Using Haloarenes,Thieme Publishing Group,20200226 +Arzanà,OpenEdition,12433616|24299499 +Arzneimittelforschung,Thieme Publishing Group,00044172|16167066 +ASA Bulletin,Springer (Kluwer Academic Publishers),10109153| +ASA Refresher Courses in Anesthesiology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,0363471X| +ASA Review of Books,JSTOR,03641686| +ASAIO Journal,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10582916| +ASAP/Journal,Muse - Johns Hopkins University Press,23814721 +ASCE-ASME J Risk and Uncert in Engrg Sys Part B Mech Engrg,ASME International ,23329017| +ASCE-ASME J Risk and Uncert in Engrg Sys Part B Mech Engrg,ASME International ,23329025| +ASCE-ASME Journal of Risk and Uncertainty in Engineering Systems Part A Civil Engineering,American Society of Civil Engineers,23767642 +Aschkenas,Walter de Gruyter GmbH,10164987|18659438 +Asclepio,Departmento de Publicaciones del CSIC,02104466|19883102 +Asean Economic Bulletin,Institute of Southeast Asian Studies,02174472| +ASEAN Heart Journal,Springer - Global Science Journals,23154551 +ASEAN Journal on Science and Technology for Development,Vietnam Journals Online,02175460| +Aséanie,PERSEE Program,08599009| +ASEG Extended Abstracts,CSIRO Publishing,22020586| +ASH Image Bank,American Society of Hematology,15597237 +ASHA Leader,American Speech-Language-Hearing Association,10859586| +ASHE Higher Education Report,Wiley Blackwell (John Wiley & Sons),15516970|15546306 +ASHE-ERIC Higher Education Report,Wiley Blackwell (John Wiley & Sons),08840040|15360709 +ASHE-ERIC/Higher Education Research Report,Wiley Blackwell (John Wiley & Sons),07371292| +Asia & the Pacific Policy Studies,Wiley Blackwell (John Wiley & Sons),20502680| +Asia Europe Journal,Springer-Verlag,16102932|16121031 +ASIA MARKETING JOURNAL,Korean Marketing Association,15987868| +ASIA MINOR STUDIES,Asia Minor Studies,21471673|21489858 +Asia Pacific Allergy,"""Asia Pacific Association of Allergy, Asthma, and Clinical Immunology (KAMJE)""",22338276|22338268 +Asia Pacific Business Review,Informa UK (Taylor & Francis),13602381|1743792X +Asia Pacific Clinical and Translational Nervous System Diseases,Medknow Publications,24557765| +Asia Pacific Education Review,Springer-Verlag,15981037|1876407X +Asia Pacific Family Medicine,Springer (Biomed Central Ltd.),1447056X|14441683 +Asia Pacific International Journal of Marketing,Emerald (MCB UP ),09547517| +Asia Pacific Journal of Clinical Nutrition,Wiley Blackwell (Blackwell Publishing),09647058|14406047 +Asia Pacific Journal of Counselling and Psychotherapy,Informa UK (Taylor & Francis),21507686|21507708 +Asia Pacific Journal of Education,Informa UK (Taylor & Francis),02188791|17426855 +Asia Pacific Journal of Energy and Environment,Asian Business Consortium,23122005|2312282X +Asia Pacific Journal of Environment Ecology and Sustainable Development,Nepal Journals Online,23825170 +Asia Pacific Journal of Environmental Law,Springer (Kluwer Academic Publishers),13852140| +Asia Pacific Journal of Human Resources,Wiley Blackwell (Blackwell Publishing),10384111|00000000 +Asia Pacific Journal of Information Systems,Korea Society of Management Information Systems,22885404|22886818 +Asia Pacific Journal of Management,Springer-Verlag,02174561|15729958 +Asia Pacific Journal of Marketing and Logistics,Emerald (MCB UP ),13555855| +Asia Pacific Journal of Operational Research,World Scientific ,02175959| +Asia Pacific Journal of Public Administration,Informa UK (Taylor & Francis),23276665|23276673 +Asia Pacific Journal of Social Work and Development,Informa UK (Taylor & Francis),02185385|21650993 +Asia Pacific Journal of Speech Language and Hearing,Informa UK (Taylor & Francis),13613286| +Asia Pacific Journal of Sport and Social Science,Informa UK (Taylor & Francis),21640599|21640602 +Asia Pacific Journal of Tourism Research,Informa UK (Taylor & Francis),10941665|17416507 +Asia Pacific Journal on Computational Engineering,Springer (Biomed Central Ltd.),21961166|21961166 +Asia Pacific Journal on Human Rights and the Law,Brill Academic Publishers,13881906|15718158 +Asia Pacific Law Review,Springer (Kluwer Academic Publishers),10192557| +Asia Pacific Management Review,Elsevier ,10293132| +Asia Pacific Media Educator,SAGE Publications,1326365X|23215410 +Asia Pacific Physics Newsletter,World Scientific ,2251158X|22511598 +Asia Pacific Translation and Intercultural Studies,Informa UK (Taylor & Francis),23306343|23306351 +Asia Pacific Viewpoint,Wiley Blackwell (Blackwell Publishing),13607456|14678373 +Asia Pacific World,Berghahn Books,20426143|20426151 +Asia Policy,Muse - Johns Hopkins University Press,15592960 +Asia-Australia Marketing Journal,Elsevier ,13201646| +Asia-Oceania Journal of Obstetrics and Gynaecology,Wiley Blackwell (Blackwell Publishing),03892328| +Asia-Pacific Biotech News,World Scientific ,02190303|17936721 +Asia-Pacific Development Journal,United Nations Publications,24119873 +Asia-Pacific Financial Markets,Springer-Verlag,13872834|15736946 +Asia-Pacific Journal of Accounting,Informa UK (Taylor & Francis),10293574| +Asia-Pacific Journal of Accounting & Economics,Informa UK (Taylor & Francis),16081625|21642257 +Asia-Pacific Journal of Atmospheric Sciences,Springer-Verlag,19767633|19767951 +Asia-Pacific Journal of Business Administration,Emerald (MCB UP ),17574323| +Asia-Pacific Journal of Chemical Engineering,Wiley Blackwell (John Wiley & Sons),19322135|19322143 +Asia-Pacific Journal of Clinical Oncology,Wiley Blackwell (Blackwell Publishing),17437555|17437563 +Asia-Pacific Journal of Financial Studies,Wiley Blackwell (Blackwell Publishing),20419945|20416156 +Asia-Pacific Journal of Health Sport and Physical Education,Informa UK (Taylor & Francis),18377122|18377130 +Asia-Pacific Journal of Information Technology and Multimedia,Penerbit Universiti Kebangsaan Malaysia (UKM Press),22892192 +Asia-Pacific Journal of Innovation in Hospitality and Tourism (APJIHT),Springer - Global Science Journals,22891471 +Asia-Pacific Journal of Management Research and Innovation,SAGE Publications,2319510X| +Asia-pacific Journal of Multimedia services convergent with Art Humanities and Sociology,Science and Engineering Research Support Society,23835281|23835281 +Asia-Pacific Journal of Oncology Nursing,Medknow Publications,23475625| +Asia-Pacific Journal of Operational Research,World Scientific ,02175959|17937019 +Asia-Pacific Journal of Ophthalmology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,21620989| +Asia-Pacific Journal of Public Health,SAGE Publications,10105395| +Asia-Pacific Journal Of Research In Early Childhood Education,Pacific Early Childhood Education Research Association,22335234|20053886 +Asia-Pacific Journal of Risk and Insurance,Walter de Gruyter GmbH,2194606X|17932157 +Asia-Pacific Journal of Risk and Insurance,Walter de Gruyter GmbH,2194606X|21533792 +Asia-Pacific Journal of Sports Medicine Arthroscopy Rehabilitation and Technology,Elsevier ,22146873| +Asia-Pacific Journal of Teacher Education,Informa UK (Taylor & Francis),1359866X|14692945 +Asia-Pacific Language Variation,John Benjamins Publishing Company,22151354|22151362 +Asia-Pacific Population Journal,United Nations Publications,15644278 +Asia-Pacific Psychiatry,Wiley Blackwell (Blackwell Publishing),17585864|17585872 +Asia-Pacific Review,Informa UK (Taylor & Francis),13439006|14692937 +Asia-Pacific Science Education,Springer (Biomed Central Ltd.),23641177 +Asia-Pacific Social Science Review,PhilJOL,01198386| +Asian Affairs,Informa UK (Taylor & Francis),03068374|14771500 +Asian Affairs An American Review,Informa UK (Taylor & Francis),00927678|19401590 +Asian American Journal of Psychology,American Psychological Association,19481985|19481993 +Asian and Pacific Migration Journal,SAGE Publications,01171968| +Asian Anthropology,Informa UK (Taylor & Francis),1683478X|21684227 +Asian Bioethics Review,Muse - Johns Hopkins University Press,17939453 +Asian Biomedicine,"""Faculty of Medicine, Chulalongkorn University, Asian Biomedicine""",19057415| +Asian Business & Management,Nature Publishing Group - Macmillan Publishers,14724782|14769328 +Asian Business Research,July Press Pte. Ltd.,24248479| +Asian Cardiovascular and Thoracic Annals,SAGE Publications,02184923|18165370 +Asian Case Reports in Anesthesiology,Hans Publishers,23280387|23280379 +Asian Case Reports in Emergency Medicine,Hans Publishers,23280409|23280395 +Asian Case Reports in Genetics,Hans Publishers,23280433|23280425 +Asian Case Reports in Obstetrics and Gynecology,Hans Publishers,23280492|23280484 +Asian Case Reports in Oncology,Hans Publishers,21698821|2169883X +Asian Case Reports in Otolaryngology,Hans Publishers,23280476|23280468 +Asian Case Reports in Pediatrics,Hans Publishers,2328045X|23280441 +Asian Case Reports in Surgery,Hans Publishers,2169253X|21692548 +Asian Case Reports in Vascular Medicine,Hans Publishers,23263490|23263504 +Asian Case Reports in Veterinary Medicine,Hans Publishers,21698880|21698902 +Asian Case Research Journal,World Scientific ,02189275|17936772 +Asian Cinema,Intellect,1059440X|20496710 +Asian Communication Research,Korean Society for Journalism and Communication Studies,17382084| +Asian Culture and History,Canadian Center of Science and Education,19169655|19169663 +Asian Development Policy Review,Pak Publishing Group,23138343 +Asian Development Review,MIT Press,01161105|19967241 +Asian Diasporic Visual Cultures and the Americas,Brill Academic Publishers,23523077|23523085 +Asian Economic and Financial Review,Pak Publishing Group,23052147|22226737 +Asian Economic Journal,Wiley Blackwell (Blackwell Publishing),13513958|14678381 +Asian Economic Papers,MIT Press,15353516|00000000 +Asian Economic Policy Review,Wiley Blackwell (Blackwell Publishing),18328105|17483131 +Asian Education and Development Studies,Emerald (MCB UP ),20463162| +Asian Education Studies,July Press Pte. Ltd.,24248487| +Asian Englishes,Informa UK (Taylor & Francis),13488678|23312548 +Asian Ethnicity,Informa UK (Taylor & Francis),14631369|14692953 +Asian Folklore Studies,JSTOR,03852342| +Asian Geographer,Informa UK (Taylor & Francis),10225706|21581762 +Asian Herpetological Research,China Science Publishing & Media Ltd.,20950357| +Asian J of Management Science and Applications,Inderscience Enterprises Ltd.,20498683|20498691 +Asian Journal for Public Opinion Research,Asian Network for Public Opinion Research,22886168 +Asian Journal of Accounting and Governance,Penerbit Universiti Kebangsaan Malaysia (UKM Press),21803838| +Asian Journal of Agricultural Extension Economics & Sociology,Sciencedomain International,23207027 +Asian Journal of Agricultural Research,Science Alert,18191894| +Asian Journal of Agricultural Sciences,Maxwell Scientific Publication Corp.,20413882|20413890 +Asian Journal of Algebra,Science Alert,1994540X| +Asian Journal of Andrology,Medknow Publications,1008682X|17457262 +Asian Journal of Animal and Veterinary Advances,Science Alert,16839919| +Asian Journal of Animal Sciences,Science Alert,18191878| +Asian Journal of Applied Science and Engineering,Asian Business Consortium,2305915X|23079584 +Asian Journal of Applied Sciences,Science Alert,19963343| +Asian Journal of Atmospheric Environment,Korean Society for Atmospheric Environment,19766912| +ASIAN JOURNAL OF BIO SCIENCE,Hind Agri Horticultural Society,09734899|09768343 +Asian Journal of Biochemistry,Science Alert,18159923|18159931 +Asian Journal of Biodiversity,Liceo de Cagayan University,20945019|22440461 +Asian Journal of Biological Sciences,Science Alert,19963351| +Asian Journal of Biomedical and Pharmaceutical Sciences,Literati Scientific and Publishers,6299722X +Asian Journal of Biotechnology,Science Alert,19960700| +Asian Journal of Business and Governance,Liceo de Cagayan University,20949251|22440453 +Asian Journal of Business Ethics,Springer-Verlag,22106723|22106731 +Asian Journal of Business Management,Maxwell Scientific Publication Corp.,20418744|20418752 +Asian Journal of Business Research,Asia Business Research Corporation,11788933| +Asian Journal of Cell Biology,Science Alert,18140068| +Asian Journal of Chemistry,Asian Publishing Corporation,09707077|0975427X +Asian Journal of Clinical Nutrition,Science Alert,19921470| +Asian Journal of Communication,Informa UK (Taylor & Francis),01292986|17420911 +Asian Journal of Comparative Law,Cambridge University Press,21946078|19320205 +Asian Journal of Comparative Politics,SAGE Publications,20578911|2057892X +Asian Journal of Computer Science And Information Technology,Innovative Journal,22495126|22495126 +Asian Journal of Control,Wiley Blackwell (John Wiley & Sons),15618625|19346093 +Asian Journal of Criminology,Springer-Verlag,18710131|1871014X +Asian Journal of Crop Science,Science Alert,19947879| +Asian Journal of Current Engineering and Maths,Innovative Journal,22774920|22774920 +Asian Journal of Dairy and Food Research,Agricultural Research Communication Center,09714456|09760563 +Asian Journal of Dermatology,Science Alert,19963424| +Asian Journal of Earth Sciences,Science Alert,18191886| +Asian Journal of Economic Modelling,Pak Publishing Group,23132884|23123656 +Asian Journal of Economics and Empirical Research,Asian Educational Journal Publishing Group,24092622 +Asian Journal of Education,Asian Journal of Education,12299448| +Asian Journal of Endoscopic Surgery,Wiley Blackwell (Blackwell Publishing),17585902|17585910 +Asian Journal of Environment and Disaster Management (AJEDM) – Focusing on Pro-active Risk Reduction in Asia,Research Publishing Services,17939240| +Asian Journal of Environment and Disaster Management — Focusing on Pro-active Risk Reduction in Asia,Research Publishing Services, +ASIAN JOURNAL OF ENVIRONMENTAL SCIENCE,Hind Agri Horticultural Society,09734759|09768947 +Asian Journal of Epidemiology,Science Alert,19921462| +Asian Journal of Finance & Accounting,"""Macrothink Institute, Inc.""",1946052X +Asian Journal of Gambling Issues and Public Health,Springer (Biomed Central Ltd.),21953007|21953007 +Asian Journal of Health,Liceo de Cagayan University,20949243|2244047X +ASIAN JOURNAL OF HOME SCIENCE,Hind Agri Horticultural Society,09734732|09768351 +Asian Journal of Human Services,Asian Society of Human Services,21863350|2188059X +Asian Journal of Humanity Art and Literature,Asian Business Consortium,23118636|23122021 +Asian Journal of Industrial Engineering,Science Alert,19963386| +Asian Journal of Information Management,Science Alert,1819334X| +Asian Journal of Information Technology,Science Alert,16823915| +Asian Journal of Innovation and Policy,Korea Technology Innovation Society,22871608| +Asian Journal of International Law,Cambridge University Press,20442513|20442521 +Asian Journal of Law and Economics,Walter de Gruyter GmbH,21946086|21544611 +Asian Journal of Law and Society,Cambridge University Press,20529015|20529023 +Asian Journal of Legal Education,SAGE Publications,23220058|23482451 +Asian Journal of Management,Diva Enterprises Private Limited,0976495X|23215763 +Asian Journal of Management Cases,SAGE Publications,09728201|09730621 +Asian Journal of Marketing,Science Alert,18191924| +Asian Journal of Materials Science,Science Alert,19963394| +Asian Journal of Mathematics,"""International Press of Boston, Inc.""",10936106|19450036 +Asian Journal of Mathematics & Statistics,Science Alert,19945418| +Asian Journal of Medical and Biological Research,Bangladesh Journals Online,24114472|24125571 +Asian Journal of Medical Sciences,Nepal Journals Online,24679100|20910576 +Asian Journal of Nematology,Science Alert,1996403X| +Asian Journal of Neuroscience,Hindawi Publishing Corporation,23147482 +Asian Journal of Neurosurgery,Medknow Publications,17935482| +Asian Journal of Nursing Education and Research,Diva Enterprises Private Limited,22311149|23492996 +Asian Journal of Occupational Therapy,Japanese Association of Occupational Therapists,13473476|13473484 +Asian Journal of Oncology,Medknow Publications,24546798| +Asian Journal of Oral and Maxillofacial Surgery,Elsevier ,09156992| +Asian Journal of Organic Chemistry,Wiley Blackwell (John Wiley & Sons),21935807|21935815 +Asian Journal of Organic Chemistry,Wiley Blackwell (John Wiley & Sons),21935807| +Asian Journal of Pharmaceutical Analysis,Diva Enterprises Private Limited,22315667|22315675 +Asian Journal of Pharmaceutical Research,Diva Enterprises Private Limited,22315683|22315691 +Asian Journal of Pharmaceutical Research and Health Care,Informatics Publishing Limited,22501444|22501460 +Asian Journal of Pharmaceutical Sciences,Elsevier ,18180876| +Asian Journal of Pharmaceutics,Medknow Publications,09738398| +Asian Journal of Pharmacy and Technology,Diva Enterprises Private Limited,22315705|22315713 +Asian Journal of Plant Pathology,Science Alert,18191541| +Asian Journal of Plant Sciences,Science Alert,16823974|18125697 +Asian Journal of Political Science,Informa UK (Taylor & Francis),02185377|17507812 +Asian Journal of Poultry Science,Science Alert,18193609| +Asian Journal of Psychiatry,Elsevier ,18762018| +Asian Journal of Public Administration,Informa UK (Taylor & Francis),02598272| +Asian Journal of Public Affairs,Lee Kuan Yew School of Public Policy,23826134 +Asian Journal of Research in Banking and Finance,Diva Enterprises Private Limited,22497323 +Asian Journal of Research in Business Economics and Management,Diva Enterprises Private Limited,22497307 +Asian Journal of Research in Chemistry,Diva Enterprises Private Limited,09744169|09744150 +Asian Journal of Research in Pharmaceutical Science,Diva Enterprises Private Limited,22315640|22315659 +Asian Journal of Research in Social Sciences and Humanities,Diva Enterprises Private Limited,22497315 +Asian Journal of Rural Development,Science Alert,1996336X| +Asian Journal of Scientific Research,Science Alert,19921454| +Asian Journal Of Social Psychology,Wiley Blackwell (Blackwell Publishing),13672223|1467839X +Asian Journal of Social Science,Brill Academic Publishers,03038246|15685314 +Asian Journal of Social Science Studies,July Press Pte. Ltd.,24248517|24249041 +Asian Journal of Social Sciences and Management Studies,Asian Educational Journal Publishing Group,23137401 +Asian Journal of Sports Medicine,Kowsar Medical Institute,2008000X|20087209 +Asian Journal of Surgery,Elsevier ,10159584| +Asian Journal of Technology Innovation,Informa UK (Taylor & Francis),19761597|21586721 +Asian Journal of Textile,Science Alert,18193358| +Asian Journal of Transfusion Science,Medknow Publications,09736247| +Asian Journal of Urology,Elsevier ,22143890| +Asian Journal of Water Environment and Pollution,IOS Press,09729860|18758568 +Asian Journal of Women s Studies,Informa UK (Taylor & Francis),12259276|2377004X +Asian Journal on Quality,Emerald (MCB UP ),15982688| +Asian Libraries,Emerald (MCB UP ),10176748|00000000 +Asian Man (The) - An International Journal,Diva Enterprises Private Limited,09746366|09756884 +Asian Medicine,Brill Academic Publishers,1573420X|15734218 +Asian Music,Muse - Johns Hopkins University Press,00449202|15535630 +Asian Nursing Research,Elsevier ,19761317| +Asian Oncology Nursing,Korean Oncology Nursing Society (KAMJE),22872434|2287447X +Asian Pacific Island Nursing Journal,"""University Libraries, University of Nevada, Las Vegas""",23736658 +Asian Pacific Journal of Allergy and Immunology,"""Allergy, Asthma, and Immunology Association of Thailand""",0125877X| +Asian Pacific Journal of Cancer Prevention,Asian Pacific Organization for Cancer Prevention,15137368| +Asian Pacific Journal of Disease Management,Japan Society of Health Support Science,18823130 +Asian Pacific Journal of Reproduction,Elsevier ,23050500| +Asian Pacific Journal of Tropical Biomedicine,Elsevier ,22211691| +Asian Pacific Journal of Tropical Disease,Elsevier ,22221808| +Asian Pacific Journal of Tropical Medicine,Elsevier ,19957645| +Asian Perspectives,Muse - Johns Hopkins University Press,15358283 +Asian Perspectives in the Arts and Humanities,Ateneo de Manila University,20949219|20949375 +Asian Philosophy,Informa UK (Taylor & Francis),09552367|14692961 +Asian Politics & Policy,Wiley Blackwell (Blackwell Publishing),19430779|19430787 +Asian Population Studies,Informa UK (Taylor & Francis),17441730|17441749 +Asian Review of Accounting,Emerald (MCB UP ),13217348| +ASIAN SCIENCE,Hind Agri Horticultural Society,09734740|09767959 +Asian Security,Informa UK (Taylor & Francis),14799855|15552467 +Asian Social Science,Canadian Center of Science and Education,19112017|19112025 +Asian Social Work and Policy Review,Wiley Blackwell (Blackwell Publishing),17531403|17531411 +Asian Spine Journal,Korean Society of Spine Surgery (KAMJE),19761902|19767846 +Asian Studies,University of Ljubljana,22325131|23504226 +Asian Studies Association of Australia Review,Informa UK (Taylor & Francis),03147533| +Asian Studies Review,Informa UK (Taylor & Francis),10357823|14678403 +Asian Survey,University of California Press,00044687|1533838X +Asian Theatre Journal,Muse - Johns Hopkins University Press,07425457|15272109 +Asian Women,Research Institute of Asian Women,1225925X| +Asian-Australasian Journal of Animal Sciences,Asian Australasian Association of Animal Production Societies,10112367|19765517 +Asian-European Journal of Mathematics,World Scientific ,17935571|17937183 +Asian-Pacific Economic Literature,Wiley Blackwell (Blackwell Publishing),08189935|14678411 +Asian-Pacific Journal of Social Quality,Korean Association of Converging Humanities,23838051|23843411 +ASIANetwork Exchange A Journal for Asian Studies in the Liberal Arts,Open Library of Humanities,19439938|19439946 +Asiascape Digital Asia,Brill Academic Publishers,22142304|22142312 +Asiatic herpetological research,Smithsonian Institution Biodiversity Heritage Library,10513825| +Asiatische Studien – Études Asiatiques,Walter de Gruyter GmbH,00044717|22355871 +Asien Afrika Latinamerika,Informa UK (Taylor & Francis),03233790| +ASL- Musculoskeletal Diseases,Medknow Publications,2231072X| +Aslib Journal of Information Management,Emerald (MCB UP ),20503806| +Aslib Proceedings,Emerald (MCB UP ),0001253X| +ASLO Bulletin,Wiley Blackwell (John Wiley & Sons),1536352X| +ASN NEURO,SAGE Publications,17590914|17590914 +ASp,OpenEdition,12468185|21086354 +Asparkía Investigació feminista,Universitat Jaume I,11328231| +Aspasia,Berghahn Books,19332882|19332890 +ASR Chiang Mai University Journal of Social Sciences and Humanities,Chiang Mai University,24081469| +Assay and Drug Development Technologies,Mary Ann Liebert,1540658X|00000000 +Assemblage,JSTOR,08893012| +Assembly Automation,Emerald (MCB UP ),01445154|00000000 +Assessing Writing,Elsevier ,10752935| +Assessment,SAGE Publications,10731911|00000000 +Assessment & Evaluation in Higher Education,Informa UK (Taylor & Francis),02602938|1469297X +Assessment for Effective Intervention,SAGE Publications,15345084| +Assessment in Education Principles Policy and Practice,Informa UK (Taylor & Francis),0969594X|1465329X +Assessment in Higher Education,Informa UK (Taylor & Francis),03071367| +Assessment Matters,"""NZCER Press, New Zealand Council for Educational Research""",11767839|2230617X +Assessment Update,Wiley Blackwell (John Wiley & Sons),10416099|15360725 +Assistive Technology,Informa UK (Taylor & Francis),10400435|19493614 +ASSOCIATION CULTURELLE FRANC0-COREENNE,Association Culturelle Franco-Coreenne,1229697X| +Association for the Care of Children in Hosptials Journal,Informa UK (Taylor & Francis),01453351| +AStA Advances in Statistical Analysis,Springer-Verlag,18638171|1863818X +AStA Wirtschafts- und Sozialstatistisches Archiv,Springer-Verlag,18638155|18638163 +Aster,INIST-CNRS,02979373| +Astérion,OpenEdition,17626110|17626110 +ästhetische dermatologie & kosmetologie,Springer-Verlag,1867481X|21986517 +Asthma Magazine,Elsevier ,10880712| +Asthma Research and Practice,Springer (Biomed Central Ltd.),20547064|20547064 +Astin Bulletin,Cambridge University Press,05150361|05150361 +ASTRA Proceedings,Copernicus GmbH,21993963 +Astrobiology,Mary Ann Liebert,15311074|00000000 +Astrocyte,Medknow Publications,23490977| +Astronautics,American Institute of Aeronautics and Astronautics,19371322 +Astronomical and Astrophysical Transactions,Informa UK (Taylor & Francis),10556796|14763540 +Astronomical Review,Informa UK (Taylor & Francis),21672857|21672865 +Astronomische Nachrichten,Wiley Blackwell (John Wiley & Sons),00046337|15213994 +Astronomy & Geophysics,Oxford University Press,13668781|14684004 +Astronomy and Astrophysics,Hans Publishers,23291273|23291265 +Astronomy and Astrophysics,EDP Sciences,00046361|14320746 +Astronomy and Astrophysics Supplement Series,EDP Sciences,03650138|12864846 +Astronomy and Computing,Elsevier ,22131337| +Astronomy Education Review,Portico,15391515|15391515 +Astronomy Letters,Pleiades Publishing,10637737|15626873 +Astronomy Quarterly,Elsevier ,03649229| +Astronomy Reports,Pleiades Publishing,10637729|15626881 +Astronomy Studies Development,PAGEPress Publications,20389612|20389620 +Astroparticle Physics,Elsevier ,09276505| +Astrophysical Bulletin,Pleiades Publishing,19903413|19903421 +Astrophysics,Springer-Verlag,05717256|15738191 +Astrophysics and Space Science,Springer-Verlag,0004640X|1572946X +Astrophysics and Space Sciences Transactions,Copernicus GmbH,18106536 +Astropolitics,Informa UK (Taylor & Francis),14777622|15572943 +ASU International,Alfons W. Gentner Verlag,23634677 +ASVIDE,AME Publishing Company,2412270X +Aswan Heart Centre Science & Practice Series,Hamad bin Khalifa University Press (HBKU Press),22202730| +Asymmetric Acylation of Aryl Alkyl Carbinols,Thieme Publishing Group,20300530 +Asymmetric Addition of Aryl Groups to Carbonyl Compounds,Thieme Publishing Group,20600135 +Asymmetric Alkylation of a β-Amino-β-oxo Ester,Thieme Publishing Group,20500408 +Asymmetric Alkylation of α-Alkyl-α-amino Acid Derivatives for the Synthesis of α α-Dialkyl-α-amino Acids,Thieme Publishing Group,20500394 +Asymmetric Catalysis,Walter de Gruyter GmbH,23004630 +Asymmetric Cross Metathesis (ACM),Thieme Publishing Group,20100434 +Asymmetric Direct Reductive Amination of Ketones with Ammonium Formate,Thieme Publishing Group,20200129 +Asymmetric Epoxidation of Allylic Alcohols under Aqueous Conditions,Thieme Publishing Group,20600054 +Asymmetric Fluorination of β-Keto Esters,Thieme Publishing Group,20500440 +Asymmetric Hydrogenation,Thieme Publishing Group,20600232 +Asymmetric Hydrogenation of Acyclic -Alkylimines,Thieme Publishing Group,20200099 +Asymmetric Hydrosilylation of 1 3-Dienes,Thieme Publishing Group,20100477 +Asymmetric Intramolecular Benzoin Reactions,Thieme Publishing Group,20200463 +Asymmetric Intramolecular Stetter Reactions Catalyzed by N-Heterocyclic Carbenes,Thieme Publishing Group,20400292 +Asymmetric Mannich Reaction of a Glycine Derivative,Thieme Publishing Group,20500432 +Asymmetric Michael Addition of 2-Nitropropane to Chalcone,Thieme Publishing Group,20500424 +Asymmetric Michael Addition of an Alanine Derivative,Thieme Publishing Group,20500416 +Asymmetric Morita–Baylis–Hillman Reaction and Its Aza Analogue,Thieme Publishing Group,20200390 +Asymmetric Organocatalysis,De Gruyter Open Sp. z o.o. ,20848811 +Asymmetric Synthesis of a Methyl ()-4-(4-Fluorophenyl)-6-oxo-1 4 5 6-tetrahydropyridine-3-carboxylate by Desymmetrization,Thieme Publishing Group,20500610 +Asymmetric Synthesis of Biaryls,Thieme Publishing Group,20300379 +Asymmetric Transfer Hydrogenation,Thieme Publishing Group,20600224 +Asymmetric Transfer Hydrogenation of C=N Bonds with Metal Catalysts,Thieme Publishing Group,20200102 +Asymmetric α-Alkylation of Aldehydes with Alcohols,Thieme Publishing Group,20600461 +Asymptotic Analysis,IOS Press,09217134|18758576 +at - Automatisierungstechnik,Oldenbourg Wissenschaftsverlag,01782312|2196677X +AT&T Bell Laboratories Technical Journal,Institute of Electrical and Electronics Engineers,0748612X| +AT&T Technical Journal,Institute of Electrical and Electronics Engineers,87562324| +At-Taradhi,IAIN Antasari,19793804| +Ata Journal of Psychotherapy Aotearoa New Zealand,New Zealand Association of Psychotherapists,22535845| +Atalaya,OpenEdition,21025614|21025614 +Atatürk Üniversitesi Diş Hekimliği Fakültesi Dergisi,The Journal of Faculty of Dentistry of Ataturk University,13009044| +Atatürk Üniversitesi Veteriner Bilimleri Dergisi,Ataturk Universitesi Veteriner Bilimleri Dergisi,13066137|21479615 +Ateliê Geográfico,Universidade Federal de Goias,19821956 +Ateliers d anthropologie,OpenEdition,12451436|21173869 +Ateliers du LESC,OpenEdition,19543646 +Atemwegs- und Lungenkrankheiten,Dustri-Verlag Dr. Karl Feistle,03413055| +Atención Familiar,Elsevier ,14058871| +Atención Primaria,Elsevier ,02126567|15781275 +Atenea (Concepción),SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7180462 +Athenea Digital Revista de pensamiento e investigación social,Universitat Autonoma de Barcelona,15788946 +Atherosclerosis,Elsevier ,00219150| +Atherosclerosis Supplements,Elsevier ,15675688| +Athletic Training & Sports Health Care,"""SLACK, Inc.""",19425864| +Athletic Training Education Journal,Journal of Athletic Training/NATA,1947380X|1947380X +Atlantic Economic Journal,Springer-Verlag,01974254|15739678 +Atlantic Geology,Atlantic Geology,08435561|17187885 +Atlantic Journal of Communication,Informa UK (Taylor & Francis),15456870|15456889 +Atlantic Studies,Informa UK (Taylor & Francis),14788810|17404649 +Atlântica,Instituto de Oceanografia - FURG,01021656|22367586 +Atlas - News Supplement to Earth-Science Reviews,Elsevier ,03755746| +Atlas Journal of Biology,"""Atlas Scienfitic Publishing, LP""",21589151 +Atlas Journal of Biotechnology,"""Atlas Scienfitic Publishing, LP""",19491387 +Atlas Journal of Chemistry and Biochemistry,"""Atlas Scienfitic Publishing, LP""",19491433 +Atlas Journal of Materials Science,"""Atlas Scienfitic Publishing, LP""",23306831 +Atlas Journal of Medical and Biological Sciences,"""Atlas Scienfitic Publishing, LP""",19491352 +Atlas Journal of Plant Biology,"""Atlas Scienfitic Publishing, LP""",19491379 +Atlas Journal of Science Education,"""Atlas Scienfitic Publishing, LP""",21589224 +Atlas of Genetics and Cytogenetics in Oncology and Haematology,INIST-CNRS,17683262 +Atlas of the Hand Clinics,Elsevier ,10823131| +Atlas of the Oral and Maxillofacial Surgery Clinics,Elsevier ,10613315| +Atlas of the Urologic Clinics,Elsevier ,10635777| +Atmósfera,Elsevier ,01876236| +Atmosphere,MDPI AG,20734433 +Atmosphere,Korean Meteorological Society,15983560| +ATMOSPHERE-OCEAN,Informa UK (Taylor & Francis),07055900|14809214 +Atmospheric and Climate Sciences,"""Scientific Research Publishing, Inc.""",21600414|21600422 +Atmospheric and Oceanic Optics,Pleiades Publishing,10248560|20700393 +Atmospheric and Oceanic Science Letters,Informa UK (Taylor & Francis),16742834|23766123 +Atmospheric Chemistry and Physics,Copernicus GmbH,16807324 +Atmospheric Chemistry and Physics Discussions,Copernicus GmbH,16807375 +Atmospheric Environment,Elsevier ,13522310| +Atmospheric Environment (1967),Elsevier ,00046981| +Atmospheric Environment Part A General Topics,Elsevier ,09601686| +Atmospheric Environment Part B Urban Atmosphere,Elsevier ,09571272| +Atmospheric Measurement Techniques,Copernicus GmbH,18678548 +Atmospheric Measurement Techniques Discussions,Copernicus GmbH,18678610 +Atmospheric Pollution Research,Elsevier ,13091042|13091042 +Atmospheric Research,Elsevier ,01698095| +Atmospheric Science Letters,Wiley Blackwell (John Wiley & Sons),1530261X|1530261X +Atoll Research Bulletin,Smithsonian Institution,00775630|00775630 +Atom Indonesia,National Atomic Energy Agency of Indonesia (BATAN),01261568|23565322 +Atomic Data and Nuclear Data Tables,Elsevier ,0092640X|10902090 +Atomic Energy,Springer-Verlag,10634258|15738205 +Atomization and Sprays,Begell House Inc.,10445110| +Atomization and Sprays,Begell House Inc.,10455110| +Atoms,MDPI AG,22182004 +Atoms for Peace an International Journal,Inderscience Enterprises Ltd.,1741640X|17416418 +Atos de Pesquisa em Educação,Fundacao Universidade Regional de Blumenau,18090354 +AtoZ novas práticas em informação e conhecimento,Universidade Federal do Parana,2237826X +atp edition - Automatisierungstechnische Praxis,Deutscher Industrieverlag GmbH,21904111|23643137 +Attachment & Human Development,Informa UK (Taylor & Francis),14616734|14692988 +Attention Perception & Psychophysics,Springer - Psychonomic Society,19433921|1943393X +Atti della Società italiana di scienze naturali e del Museo civico di storia naturale di Milano,Smithsonian Institution Biodiversity Heritage Library,00378844| +ATUALIDADE TEOLÓGICA,Faculdades Catolicas,2237115X +ATZ - Automobiltechnische Zeitschrift,Springer-Verlag,00012785|21928800 +ATZ worldwide eMagazine,Springer Fachmedien Wiesbaden GmbH,21929076 +ATZagenda,Springer-Verlag,21949174|21949182 +ATZautotechnology,Springer Fachmedien Wiesbaden GmbH,16168216|2192886X +ATZelektronik,Springer Fachmedien Wiesbaden GmbH,18621791|21928878 +ATZelektronik worldwide eMagazine,Springer Fachmedien Wiesbaden GmbH,21929092 +ATZextra,Springer Fachmedien Wiesbaden GmbH,21951454|21951462 +ATZextra worldwide,Springer Fachmedien Wiesbaden GmbH,21951470|21951489 +ATZoffhighway,Springer-Verlag,21911843|21928819 +ATZoffhighway worldwide,Springer-Verlag,23661097 +ATZproduktion,Springer Fachmedien Wiesbaden GmbH,18654908|21928886 +ATZproduktion worldwide eMagazine,Springer Fachmedien Wiesbaden GmbH,21929106 +AUC GEOGRAPHICA,"""Charles University in Prague, Karolinum Press""",03005402|23361980 +AUC KINANTHROPOLOGICA,"""Charles University in Prague, Karolinum Press""",12121428|23366052 +AUC STUDIA TERRITORIALIA,"""Charles University in Prague, Karolinum Press""",12134449|23363231 +AUC THEOLOGICA,"""Charles University in Prague, Karolinum Press""",18045588|23363398 +Audio-Visual Communication Review,Springer-Verlag,00012890| +Audio-Visual Media,Informa UK (Taylor & Francis),05718716| +Audiological Medicine,Informa UK (Taylor & Francis),1651386X|16513835 +AUDIOLOGY,Japan Audiological Society,1884331X +Audiology - Communication Research,SciELO,23176431 +Audiology and Neurotology,S. Karger AG,14203030|14219700 +Audiology and Neurotology Extra,S. Karger AG,16645537 +AUDIOLOGY JAPAN,Japan Audiological Society,03038106|18837301 +Audiology Research,PAGEPress Publications,20394330|20394349 +Audit Financiar,Chamber of Financial Auditors of Romania,15835812|18448801 +AuditandFinancialAnalysis,"""Science and Education, Ltd.""",02362988| +Auditing A Journal of Practice & Theory,American Accounting Association,02780380|15587991 +AuditJournal,"""Science and Education, Ltd.""",17278058| +Auditor,Infra-M Academic Publishing House,19980701| +Aufklärung journal of philosophy,Aufklarung,23588470|23189428 +Augenheilkunde up2date,Thieme Publishing Group,16169719|16169735 +Augmentative and Alternative Communication,Informa UK (Taylor & Francis),07434618|14773848 +Augustinian,PhilJOL,16553535| +Augustinian Studies,Philosophy Documentation Center,00945323| +Augustinianum,Philosophy Documentation Center,00048011| +Aula,Ediciones Universidad de Salamanca,02143402| +Aula Abierta,Elsevier ,02102773| +Aula Universitaria,Universidad Nacional del Litoral,15142566|23623330 +AURA,"""Wydawnictwo SIGMA-NOT, sp. z.o.o.""",01373668| +Auris Nasus Larynx,Elsevier ,03858146| +AUS,Sistema de Bibliotecas UACH,0718204X|07187262 +AusArt,UPV/EHU Press,23408510|23409134 +Auslegung a Journal of Philosophy,The University of Kansas,07334311| +Austral Ecology,Wiley Blackwell (Blackwell Publishing),14429985|14429993 +Austral Entomology,Wiley Blackwell (Blackwell Publishing),2052174X| +Australasian Accounting Business and Finance Journal,University of Wollongog Library,18342000|18342019 +Australasian Emergency Nursing Journal,Elsevier ,15746267| +Australasian Journal of Computer Science,Science Alert,22513221| +Australasian Journal of Construction Economics and Building,"""University of Technology, Sydney""",18356354|18379133 +Australasian Journal of Dermatology,Wiley Blackwell (Blackwell Publishing),00048380|14400960 +Australasian Journal of Engineering Education,Informa UK (Taylor & Francis),22054952|13254340 +Australasian Journal of Environmental Management,Informa UK (Taylor & Francis),14486563|21595356 +Australasian Journal of Information Communication Technology and Applications,"""International Journal of Information, Communication Technology and Applications""",22048308 +Australasian Journal of Information Systems,Australian Journal of Information Systems,14498618|13262238 +Australasian Journal of Organisational Psychology,Cambridge University Press,20542232 +Australasian Journal of Philosophy,Informa UK (Taylor & Francis),00048402|14706828 +Australasian Journal of Popular Culture,Intellect,20455852|20455860 +Australasian Journal of Psychology and Philosophy,Informa UK (Taylor & Francis),18328660| +Australasian Journal of Social Science,Science Alert,22513205| +Australasian Journal of Special Education,Cambridge University Press,10300112|18336914 +Australasian Journal of Technology Education,University of Waikato,23822007|23822007 +Australasian Journal of Ultrasound in Medicine,Wiley Blackwell (John Wiley & Sons),18366864| +Australasian Journal on Ageing,Wiley Blackwell (Blackwell Publishing),14406381|17416612 +Australasian Marketing Journal (AMJ),Elsevier ,14413582| +Australasian Medical Journal,Australasian Medical Journal,18361935|18361935 +Australasian Physical & Engineering Sciences in Medicine,Springer-Verlag,01589938|18795447 +Australasian Plant Disease Notes,Springer-Verlag,1833928X|1833928X +Australasian Plant Pathology,Springer-Verlag,08153191|14486032 +Australasian Psychiatry,SAGE Publications,10398562|14401665 +Australasian Radiology,Wiley Blackwell (Blackwell Publishing),00048461|14401673 +Australia and New Zealand Health Policy,Springer (Biomed Central Ltd.),17438462| +Australia and New Zealand Journal of Developmental Disabilities,Informa UK (Informa Healthcare),07263864| +Australian & New Zealand Journal of Serials Librarianship,"""Informa UK (Haworth Press, Inc.,)""",08983283| +Australian & New Zealand Journal of Statistics,Wiley Blackwell (Blackwell Publishing),13691473|1467842X +Australian Academic & Research Libraries,Informa UK (Taylor & Francis),00048623|1839471X +Australian Accounting Review,Wiley Blackwell (Blackwell Publishing),10356908|18352561 +Australian and New Zealand Journal of Art,Informa UK (Taylor & Francis),14434318|22031871 +Australian and New Zealand Journal of Audiology,Portico,14434873| +Australian and New Zealand Journal of Criminology,SAGE Publications,00048658|18379273 +Australian and New Zealand Journal of Family Therapy,Wiley Blackwell (Blackwell Publishing),0814723X|14678438 +Australian and New Zealand Journal of Medicine,Wiley Blackwell (Blackwell Publishing),00048291| +Australian and New Zealand Journal of Mental Health Nursing,Wiley Blackwell (Blackwell Publishing),13243780|14400979 +Australian and New Zealand Journal of Obstetrics and Gynaecology,Wiley Blackwell (Blackwell Publishing),00048666|1479828X +Australian and New Zealand Journal of Ophthalmology,Wiley Blackwell (Blackwell Publishing),08149763|14401606 +Australian and New Zealand Journal of Psychiatry,SAGE Publications,00048674|14401614 +Australian and New Zealand Journal of Public Health,Wiley Blackwell (Blackwell Publishing),13260200|17536405 +Australian and New Zealand Journal of Surgery,Wiley Blackwell (Blackwell Publishing),00048682|14401622 +Australian Child and Family Welfare,Cambridge University Press,03128970|03128970 +Australian College of Midwives Incorporated Journal,Elsevier ,1031170X| +Australian Critical Care,Elsevier ,10367314| +Australian Cultural History,Informa UK (Taylor & Francis),07288433|19425139 +Australian Dental Journal,Wiley Blackwell (Blackwell Publishing),00450421|18347819 +Australian Economic History Review,Wiley Blackwell (Blackwell Publishing),00048992|14678446 +Australian Economic Papers,Wiley Blackwell (Blackwell Publishing),0004900X|14678454 +Australian Economic Review,Wiley Blackwell (Blackwell Publishing),00049018|14678462 +Australian Emergency Nursing Journal,Elsevier ,13282743| +Australian Endodontic Journal,Wiley Blackwell (Blackwell Publishing),13291947|17474477 +Australian Endodontic Newsletter,Wiley Blackwell (Blackwell Publishing),03137384| +Australian Feminist Law Journal,Informa UK (Taylor & Francis),13200968| +Australian Feminist Studies,Informa UK (Taylor & Francis),08164649|14653303 +Australian Forestry,Informa UK (Taylor & Francis),00049158| +Australian Geographer,Informa UK (Taylor & Francis),00049182|14653311 +Australian Geographical Studies,Wiley Blackwell (Blackwell Publishing),00049190|14678470 +Australian Health Review,CSIRO Publishing,01565788| +Australian Historical Studies,Informa UK (Taylor & Francis),1031461X|19405049 +Australian Journal of Agricultural and Resource Economics,Wiley Blackwell (Blackwell Publishing),1364985X|14678489 +Australian Journal of Agricultural Economics,Wiley Blackwell (Blackwell Publishing),00049395| +Australian Journal of Agricultural Research,CSIRO Publishing,00049409| +Australian Journal of Biological Sciences,CSIRO Publishing,00049417| +Australian Journal of Botany,CSIRO Publishing,00671924| +Australian Journal of Career Development,SAGE Publications,10384162|22006974 +Australian Journal of Chemistry,CSIRO Publishing,00049425| +Australian Journal of Civil Engineering,Informa UK (Taylor & Francis),14488353|22042245 +Australian Journal of Developmental Disabilities,Informa UK (Informa Healthcare),01599011| +Australian Journal of Earth Sciences,Informa UK (Taylor & Francis),08120099|14400952 +Australian Journal of Ecology,Wiley Blackwell (Blackwell Publishing),0307692X|14429993 +Australian Journal of Education,SAGE Publications,00049441|20505884 +Australian Journal of Electrical & Electronics Engineering,Informa UK (Taylor & Francis),1448837X|2205362X +Australian Journal of Entomology,Wiley Blackwell (Blackwell Publishing),13266756|14406055 +Australian Journal of Environmental Education,Cambridge University Press,08140626|2049775X +Australian Journal of Experimental Agriculture,CSIRO Publishing,08161089| +Australian Journal of Family Therapy,Wiley Blackwell (John Wiley & Sons),01568779| +Australian Journal of Forensic Sciences,Informa UK (Taylor & Francis),00450618|1834562X +Australian Journal of Forensic Sciences,Informa UK (Taylor & Francis),00450618| +Australian Journal of Forensic Sciences,Informa UK (Taylor & Francis),00450618| +Australian Journal of Forensic Sciences,Informa UK (Taylor & Francis),00450618| +Australian Journal of French Studies,Liverpool University Press,00049468|20462913 +Australian Journal of Grape and Wine Research,Wiley Blackwell (Blackwell Publishing),13227130|17550238 +Australian Journal of Guidance and Counselling,Cambridge University Press,10372911|18392520 +Australian Journal of Human Communication Disorders,Informa UK (Informa Healthcare),03106853| +Australian Journal Of International Affairs,Informa UK (Taylor & Francis),10357718|1465332X +Australian Journal of Learning Difficulties,Informa UK (Taylor & Francis),19404158| +Australian Journal of Learning Difficulties,Informa UK (Taylor & Francis),19404158|19404166 +Australian Journal of Learning Disabilities,Informa UK (Taylor & Francis),13248928| +Australian Journal of Linguistics,Informa UK (Taylor & Francis),07268602|14692996 +Australian Journal of Management,SAGE Publications,03128962|13272020 +Australian Journal of Maritime & Ocean Affairs,Informa UK (Taylor & Francis),18366503|23336498 +Australian Journal of Mechanical Engineering,Informa UK (Taylor & Francis),14484846|22042253 +Australian Journal of Mental Retardation,Informa UK (Informa Healthcare),00450634| +Australian Journal of Multi-Disciplinary Engineering,Informa UK (Taylor & Francis),14488388| +Australian Journal of Opthalmology,Wiley Blackwell (Blackwell Publishing),03101177| +Australian Journal of Physics,CSIRO Publishing,00049506| +Australian Journal of Physiotherapy,Elsevier ,00049514| +Australian Journal of Plant Physiology,CSIRO Publishing,03107841| +Australian Journal of Political Science,Informa UK (Taylor & Francis),10361146|1363030X +Australian Journal of Politics & History,Wiley Blackwell (Blackwell Publishing),00049522|14678497 +Australian Journal of Primary Health,CSIRO Publishing,14487527| +Australian Journal of Psychology,Wiley Blackwell (Blackwell Publishing),00049530|17429536 +Australian Journal of Public Administration,Wiley Blackwell (Blackwell Publishing),03136647|14678500 +Australian Journal of Public Health,Wiley Blackwell (Blackwell Publishing),10357319| +Australian Journal of Rehabilitation Counselling,Cambridge University Press,13238922|18386059 +Australian Journal of Rural Health,Wiley Blackwell (Blackwell Publishing),10385282|14401584 +Australian Journal of Social Work,Informa UK (Taylor & Francis),00049565| +Australian Journal of Soil Research,CSIRO Publishing,00049573| +Australian Journal of Statistics,Wiley Blackwell (Blackwell Publishing),00049581| +Australian Journal of Structural Engineering,Informa UK (Taylor & Francis),13287982|22042261 +Australian Journal of Teacher Education,Edith Cowan University,1835517X +Australian Journal of Telecommunications and the Digital Economy,Telecommunications Association Inc.,22031693|22031693 +Australian Journal of Water Resources,Informa UK (Taylor & Francis),13241583|2204227X +Australian Journal of Zoology,CSIRO Publishing,0004959X| +Australian Journal of Zoology Supplementary Series,CSIRO Publishing,03109089| +Australian Journal on Ageing,Wiley Blackwell (Blackwell Publishing),07264240| +Australian Literary Studies,Australian Literary Studies,00049697| +Australian Mammalogy,CSIRO Publishing,03100049| +Australian Midwifery,Elsevier ,14488272| +Australian Museum Memoir,Australian Museum,00671967| +Australian Occupational Therapy Journal,Wiley Blackwell (Blackwell Publishing),00450766|14401630 +Australian Outlook,Informa UK (Taylor & Francis),00049913| +Australian Planner,Informa UK (Taylor & Francis),07293682|21506841 +Australian Plant Pathology Society Newsletter,Springer-Verlag,03101266| +Australian Prescriber,NPS MedicineWise,03128008|18393942 +Australian Psychologist,Wiley Blackwell (Blackwell Publishing),00050067|17429544 +Australian Review of Applied Linguistics,John Benjamins Publishing Company,01550640|18337139 +Australian Social Work,Informa UK (Taylor & Francis),0312407X|0312407X +Australian Society for the Study of Labour History,JSTOR,18365264| +Australian Surveyor,Informa UK (Taylor & Francis),00050326| +Australian Systematic Botany,CSIRO Publishing,10301887| +Australian Veterinary Journal,Wiley Blackwell (Blackwell Publishing),00050423|17510813 +Australian Voice,Cambridge University Press (Australian Academic Press),13251317| +Australian Zoologist,Royal Zoological Society of New South Wales,00672238| +Austrian History Yearbook,Cambridge University Press,00672378|15585255 +Austrian Journal of Earth Sciences,Austrian Geological Society (OGG),20727151|20727151 +Austrian Journal of Statistics,Austrian Statistical Society,1026597X| +Austrian Review of International and European Law,Brill Academic Publishers,13851306|15736512 +Austrian Studies,Modern Humanities Research Association,13507532|22224262 +Autex Research Journal,De Gruyter Open Sp. z o.o. ,14709589|23000929 +Autism,SAGE Publications,13623613|00000000 +Autism - Open Access,OMICS Publishing Group,21657890|21657890 +Autism and Developmental Disorders,Moscow State Universtiy of Psychology and Education (MSUPE),19941617|24134317 +Autism Insights,CrossRef test user,11795964 +Autism Research,Wiley Blackwell (John Wiley & Sons),19393792|19393806 +Autism Research and Treatment,Hindawi Publishing Corporation,20901925|20901933 +Auto Tech Review,Springer Fachmedien Wiesbaden GmbH,22503390| +Auto/Biography,Portico,09675507|14799715 +Autoimmune and Infectious Diseases Open Access ( ISSN 2470-1025 ),"""Sci Forschen, Inc.""",24701025 +Autoimmune Diseases,Hindawi Publishing Corporation (Sage-Hindawi Access to Research),20900422|20900430 +Autoimmune Diseases and Therapeutic Approaches Open Access,Aperito Online Publishing Private Limited,23786337 +Autoimmunity,Informa UK (Taylor & Francis),08916934|1607842X +Autoimmunity Highlights,Springer-Verlag,20380305|20383274 +Autoimmunity Reviews,Elsevier ,15689972| +Automated Experimentation,Springer (Biomed Central Ltd.),17594499| +Automated Software Engineering,Springer-Verlag,09288910|15737535 +Automatic Control and Computer Sciences,Allerton Press,01464116|1558108X +Automatic Control of Physiological State and Function,OMICS Publishing Group,20905084|20905092 +Automatic Documentation and Mathematical Linguistics,Allerton Press,00051055|19348371 +Automatica,Elsevier ,00051098| +Automatika ‒ Journal for Control Measurement Electronics Computing and Communications,KOREMA,00051144|18483380 +Automation and Control in Technical Systems,Science and Innovation Center,23061561|23061561 +Automation and Remote Control,Pleiades Publishing,00051179|16083032 +Automation Control and Intelligent Systems,Science Publishing Group,23285583| +Automation in Construction,Elsevier ,09265805| +AUTOMATYKA ELEKTRYKA ZAKLOCENIA,Infotech,20824149 +Automatyka/Automatics,AGH University of Science and Technology Press,14293447| +Automotive Agenda,Springer Fachmedien Wiesbaden GmbH,1867495X|21928789 +Automotive and Engine Technology,Springer-Verlag,23655127|23655135 +Autonomic and Autacoid Pharmacology,Wiley Blackwell (Blackwell Publishing),14748665|14748673 +Autonomic Neuroscience,Elsevier ,15660702| +Autonomous Agents and Multi-Agent Systems,Springer-Verlag,13872532|15737454 +Autonomous Robots,Springer-Verlag,09295593|15737527 +Autophagy,Landes Bioscience,15548627|15548635 +Autopsy and Case Reports,Editora Cubo Multimidia,22361960 +Autrepart,CAIRN,12783986|21099561 +Autres Temps Les cahiers du christianisme social,PERSEE Program,07532776| +Availability of Alcohol Dehydrogenases,Thieme Publishing Group,20200048 +Avaliação Revista da Avaliação da Educação Superior (Campinas),SciELO,14144077|14144077 +Avaliação Revista da Avaliação da Educação Superior (Campinas),SciELO,14144077 +Avaliação Revista da Avaliação da Educação Superior (Campinas),SciELO,14144077 +Avances en Ciencias e Ingeniería,Universidad San Francisco de Quito,13905384| +Avances en Ciencias Veterinarias,Universidad de Chile,0716260X|0716260X +Avances en Diabetología,Elsevier ,11343230| +Avances en Enfermería,Universidad Nacional de Colombia,01214500|23460261 +Avances en Odontoestomatología,Instituto de Salud Carlos III/BNCS/SciELO Espana,02131285|02131285 +Avances en Periodoncia e Implantología Oral,Instituto de Salud Carlos III/BNCS/SciELO Espana,16996585|16996585 +Avances en Psicología Latinoamericana,Colegio Mayor de Nuestra Senora del Rosario,21454515|21454515 +Avesso do Avesso,Fundacao Educacional Aracatuba,16787862|21795991 +Avian and Poultry Biology Reviews,Science Reviews 2000 LTD.,14702061| +Avian Biology Research,Science Reviews 2000 LTD.,17581559|17581567 +Avian Conservation and Ecology,"""Resilience Alliance, Inc.""",17126568| +Avian Diseases,BioOne (American Association of Avian Pathologists),00052086|19384351 +Avian Diseases Digest,BioOne (American Association of Avian Pathologists),19335334|19335334 +Avian Pathology,Informa UK (Taylor & Francis),03079457|14653338 +Avian Research,Springer (Biomed Central Ltd.),20537166|20537166 +Aviation,Vilnius Gediminas Technical University,16487788|18224180 +Aviation in Focus - Journal of Aeronautical Sciences,EDIPUCRS,2179703X +Aviation Psychology and Applied Human Factors,Hogrefe Publishing Group,21920923|21920931 +Aviation Space and Environmental Medicine,Aerospace Medical Association,00956562| +Avicenna,Hamad bin Khalifa University Press (HBKU Press),22202749| +Avicenna Journal of Clinical Microbiology and Infection,International Neuroscience Institute,23830298| +Avicenna Journal of Dental Research,International Neuroscience Institute,20087695|20087667 +Avicenna Journal of Environmental Health Engineering,International Neuroscience Institute,24234583 +Avicenna Journal of Medical Biochemistry,International Neuroscience Institute,23454113 +Avicenna Journal of Medicine,Medknow Publications,22310770| +Avicenna Journal of Neuro Psych Physiology,International Neuroscience Institute,23832436|23832444 +Avrupa Endoskopik Laparoskopik Cerrahi Dergisi,Bilimsel Tip Publishing House,21484201| +AWHONN Lifelines,Elsevier ,10915923| +Axiomathes,Springer-Verlag,11221151|15728390 +Axioms,MDPI AG,20751680 +AYU (An International Quarterly Journal of Research in Ayurveda),Medknow Publications,09748520| +Ayurvedic,VRI Press,23756586 +Aza-Morita–Baylis–Hillman Reaction of Imines with Acrylates or Methyl Vinyl Ketone,Thieme Publishing Group,20500254 +Azalea Journal of Korean Literature & Culture,Muse - Johns Hopkins University Press,19446500 +Azania Archaeological Research in Africa,Informa UK (Taylor & Francis),0067270X|19455534 +Aziridination of Enones,Thieme Publishing Group,20400179 +Aziridination of Imines,Thieme Publishing Group,20200145 +Aziridine Ring Opening with Sulfur Nucleophiles,Thieme Publishing Group,20600453 +Azomethine Ylide Based Processes,Thieme Publishing Group,20400136 +B A B P bulletin,Cambridge University Press,20413483| +B en M - Beleid en Maatschappij,Uitgeverij Boom,13890069| +B&G Bewegungstherapie und Gesundheitssport,Thieme Publishing Group,16130863|16133269 +Babel,John Benjamins Publishing Company,05219744|15699668 +Babel,OpenEdition,12777897|22634746 +BABesch - Bulletin Antieke Beschaving,Peeters Publishers,1650937 +Background,Oxford University Press,03615448| +Background on World Politics,Oxford University Press,15336689| +Bacteriology Journal,Science Alert,21530211| +Bacteriophage,Landes Bioscience,21597073|21597081 +Badania Fizjograficzne nad Polska Zachodnia,De Gruyter Open Sp. z o.o. ,20816014| +Badania Fizjograficzne nad Polska Zachodnia,De Gruyter Open Sp. z o.o. ,00672807| +Baghdad Science Journal,College of Science for Women,20788665|24117986 +Baha i Studies Review,Intellect,13548697|20401701 +Bahrain Medical Bulletin,"""Al Manhal FZ, LLC""",10128298| +BAIKAL RESEARCH JOURNAL,Baikal State University,24116262 +Baillière s Clinical Anaesthesiology,Elsevier ,09503501| +Baillière s Clinical Endocrinology and Metabolism,Elsevier ,0950351X| +Baillière s Clinical Gastroenterology,Elsevier ,09503528| +Baillière s Clinical Haematology,Elsevier ,09503536| +Baillière s Clinical Obstetrics and Gynaecology,Elsevier ,09503552| +Baillière s Clinical Rheumatology,Elsevier ,09503579| +Bailliére' s Clinical Gastroenterology,Elsevier ,09503528| +Bajo Palabra,Servicio de Publicaciones de la Universidad Autonoma de Madrid,15763935|15763935 +Bakhtiniana Revista de Estudos do Discurso,SciELO,21764573 +Bakhtiniana Revista de Estudos do Discurso,SciELO,21764573 +Bakirkoy Tip Dergisi / Medical Journal of Bakirkoy,Yerkure Tanitim ve Yayincilik Hizmetleri,13059319|13059327 +Balance of Payments Statistics,International Monetary Fund,20797583|20797583 +Balance of Payments Statistics,International Monetary Fund,20797575|20797575 +Balance of payments statistics yearbook (International Monetary Fund),International Monetary Fund,02523035| +Balance Sheet,Emerald (MCB UP ),09657967|00000000 +Balcanica,National Library of Serbia,03507653|24060801 +Balcanica Posnaniensia Acta et studia,Adam Mickiewicz University Poznan,02394278|24503177 +Balduinia,Universidade Federal de Santa Maria,18082688|23581980 +Bali Medical Journal,"""DiscoverSys, Inc.""",20891180|23022914 +Balıkesır Health Sciences Journal,"""LookUs Bilisim, Ltd.""",21469601|21472238 +Balint Journal,Thieme Publishing Group,14395142|14399008 +Balkan Journal of Dental Medicine,Walter de Gruyter GmbH,23350245 +Balkan Journal of Electrical and Computer Engineering,Balkan Journal of Electrical & Computer Engineering (BAJECE),2147284X| +Balkan Journal of Medical Genetics,De Gruyter Open Sp. z o.o. ,13110160|13110160 +Balkan Journal of Philosophy,Philosophy Documentation Center,1313888X| +Balkan Journal of Wildlife Research,Visio Mundi Academic Media Group,23350113 +Balkan Medical Journal,AVES Publishing Co.,13013149| +Balkan Medical Journal,AVES Publishing Co.,21463123|21463131 +Balkan Military Medical Review,ScopeMed International Medical Journal Managment and Indexing System,11076275 +Balkan Region Conference on Engineering and Business Education,De Gruyter Open Sp. z o.o. ,18436730 +Balneo Research Journal,Romanian Association of Balneology,20697597|20697619 +Baltic Journal of Art History,University of Tartu Press,17368812|23465581 +Baltic Journal of Comparative and Clinical Systems Biology,Baltic Journal of Comparative and Clinical Systems Biology,22452826 +Baltic Journal of Economics,Informa UK (Taylor & Francis),1406099X|23344385 +Baltic Journal of European Studies,De Gruyter Open Sp. z o.o. ,22280588|22280596 +Baltic Journal of Health and Physical Activity,De Gruyter Open Sp. z o.o. ,20801297|20809999 +Baltic Journal of Law & Politics,De Gruyter Open Sp. z o.o. ,20290454|20290454 +Baltic Journal of Management,Emerald (MCB UP ),17465265| +Baltic Journal of Political Science,Vilnius University,23352337|23352337 +Baltic Journal of Real Estate Economics and Construction Management,De Gruyter Open Sp. z o.o. ,22559604|22559671 +Baltic Region,Immanuel Kant Baltic Federal University,20798555|23100524 +Baltic Screen Media Review,Walter de Gruyter GmbH,23465522 +Baltic Yearbook of International Law Online,Brill Academic Publishers,15696456|22115897 +Baltica,Association of Lithuaninan Serials,00673064| +Baltijskij region,Immanuel Kant Baltic Federal University,20749848|23100532 +Baltistica,Vilnius University,01326503|23450045 +Banach Center Publications,"""Institute of Mathematics, Polish Academy of Sciences""",01376934|17306299 +Banach Journal of Mathematical Analysis,Duke University Press,17358787 +Banat s Journal of Biotechnology,"""Exact Sciences Department, Banat's Journal of Biotechnology""",20684673|20684738 +Bandung Journal of the Global South,Springer (Biomed Central Ltd.),21983534|21983534 +Bangabandhu Sheikh Mujib Medical University Journal,Bangladesh Journals Online,20742908| +Bangladesh Agronomy Journal,Bangladesh Journals Online,10131922|24125830 +Bangladesh Critical Care Journal,Bangladesh Journals Online,23040009|23077654 +Bangladesh Journal of Agricultural Research,Bangladesh Journals Online,02587122|02587122 +Bangladesh Journal of Anatomy,Bangladesh Journals Online,1817065X|22193049 +Bangladesh Journal of Animal Science,Bangladesh Journals Online,00033588| +Bangladesh Journal of Bioethics,Bangladesh Journals Online,20781458|20781458 +Bangladesh Journal of Botany,Bangladesh Journals Online,02535416|20799926 +Bangladesh Journal of Child Health,Bangladesh Journals Online,02573490|24088315 +Bangladesh Journal of Dental Research & Education,Bangladesh Journals Online,22259015|23089733 +Bangladesh Journal of Endosurgery,Bangladesh Journals Online,23064560|23064390 +Bangladesh Journal of Infectious Diseases,Bangladesh Journals Online,24114820|2411670X +Bangladesh Journal of Library and Information Science,Bangladesh Journals Online,22236368| +Bangladesh Journal of Livestock Research,Bangladesh Journals Online,10223851| +Bangladesh Journal of Medical Biochemistry,Bangladesh Journals Online,20739915|24088331 +Bangladesh Journal of Medical Education,Bangladesh Journals Online,23060654| +Bangladesh Journal of Medical Microbiology,Bangladesh Journals Online,20701810|20723105 +Bangladesh Journal of Medical Physics,Bangladesh Journals Online,17276179|24088358 +Bangladesh Journal of Medical Science,Bangladesh Journals Online,22234721|20760299 +Bangladesh Journal of Medicine,Bangladesh Journals Online,10231986|24088366 +Bangladesh Journal of Microbiology,Bangladesh Journals Online,10119981| +Bangladesh Journal of Neuroscience,Bangladesh Journals Online,10234853| +Bangladesh Journal of Nuclear Medicine,Bangladesh Journals Online,15623831| +Bangladesh Journal of Nutrition,Bangladesh Journals Online,10136037|24088390 +Bangladesh Journal of Obstetrics & Gynaecology,Bangladesh Journals Online,10184287| +Bangladesh Journal of Orthodontics and Dentofacial Orthopedics,Bangladesh Journals Online,22195211|23134674 +Bangladesh Journal of Otorhinolaryngology,Bangladesh Journals Online,17288835|23046244 +Bangladesh Journal of Pathology,Bangladesh Journals Online,10176969| +Bangladesh Journal of Pharmacology,Bangladesh Journals Online,1991007X|19910088 +Bangladesh Journal of Physiology and Pharmacology,Bangladesh Journals Online,15611566|24088439 +Bangladesh Journal of Plant Breeding and Genetics,Bangladesh Journals Online,10263071|23108940 +Bangladesh Journal of Plant Taxonomy,Bangladesh Journals Online,10282092|22247297 +Bangladesh Journal of Plastic Surgery,Bangladesh Journals Online,22204199| +Bangladesh Journal of Scientific and Industrial Research,Bangladesh Journals Online,03049809|22247157 +Bangladesh Journal of Scientific Research,Bangladesh Journals Online,02535432|24088447 +Bangladesh Journal of Veterinary Medicine,Bangladesh Journals Online,17297893|23080922 +Bangladesh Journal of Zoology,Bangladesh Journals Online,03049027|24088455 +Bangladesh Liver Journal,Bangladesh Journals Online,20745117| +Bangladesh Medical Journal,Bangladesh Journals Online,0301035X|22191607 +Bangladesh Medical Journal Khulna,Bangladesh Journals Online,10128751|23118016 +Bangladesh Medical Research Council Bulletin,Bangladesh Journals Online,03779238|22247238 +Bangladesh Pharmaceutical Journal,Bangladesh Journals Online,03014606|24088463 +Bangladesh Rice Journal,Bangladesh Journals Online,10257330| +Bangladesh Veterinarian,Bangladesh Journals Online,10125949| +Bankac,Ankara University,13091859|13091859 +Bankarstvo,Centre for Evaluation in Education and Science,14514354| +BankFachklasse inklusive Online Prüfungstraining,Springer Fachmedien Wiesbaden GmbH,01706659|21928665 +Banking Journal,Nepal Journals Online,20910606|20910614 +Bankmagazin,Springer Fachmedien Wiesbaden GmbH,09443223|21928770 +Banko Janakari,Nepal Journals Online,10160582|10160582 +BANKPEDIA REVIEW,Assonebb,22398023 +Banks in Insurance Report,Wiley Blackwell (John Wiley & Sons),87566079|15309991 +BANTAO Journal,De Gruyter Open Sp. z o.o. ,13122517 +Bantu Studies,Informa UK (Taylor & Francis),02561751| +Banwa,PhilJOL,16563719 +Baptist Quarterly,Maney Publishing,0005576X|20567731 +BAR Brazilian Administration Review,SciELO,18077692|18077692 +Barbastella,SECEMU,15769720| +Barcelona Investigación Arte Creación,Hipatia Press,20148992|20148992 +Bariatric Nursing and Surgical Patient Care,Mary Ann Liebert,15571459|15571467 +Bariatric Surgical Patient Care,Mary Ann Liebert,2168023X|21680248 +Barış Araştırmaları ve Çatışma Çözümleri Dergisi,Baris Arastirmalari,2147544X +Barnboken,The Swedish Institute fo Children's Books,0347772X| +Barnboken – tidskrift för barnlitteraturforskning/Journal of Children s Literature Research,Co-Action Publishing,20004389 +Barnelitterært forskningstidsskrift/Nordic Journal of ChildLit Aesthetics,Co-Action Publishing,20007493 +Baroque,OpenEdition,00674222|2261639X +Bartın Üniversitesi Eğitim Fakültesi Dergisi,Bartin Universitesi Egitim Fakultesi Dergisi,13087177|13087177 +Basal Ganglia,Elsevier ,22105336| +BASE - Revista de Administração e Contabilidade da Unisinos,Universidade do Vale do Rio Dos Sinos - UNISINOS,1807054X|19848196 +Base Ball A Journal of the Early Game,"""McFarland & Company, Inc. """,19342802|19343167 +Basic & Clinical Pharmacology & Toxicology,Wiley Blackwell (Blackwell Publishing),17427835|17427843 +Basic and Applied Dryland Research,Schweizerbart,18643191| +Basic and Applied Ecology,Elsevier ,14391791| +Basic and Applied Herpetology,Asociacion Herpetologica Espanola,22551468|22551476 +Basic and Applied Pathology,Wiley Blackwell (Blackwell Publishing),17559294|17559294 +Basic and Applied Social Psychology,Informa UK (Taylor & Francis),01973533|15324834 +Basic and Clinical Andrology,Springer (Biomed Central Ltd.),20514190|20514190 +Basic and Clinical Sciences,Bilgi Terecem,13095102 +Basic Income Studies,Walter de Gruyter GmbH,21946094|19320183 +Basic Research in Cardiology,Springer-Verlag,03008428|14351803 +Basic Sciences of Medicine,Scientific and Academic Publishing,21677344| +Basin Research,Wiley Blackwell (Blackwell Publishing),0950091X|13652117 +Batiment International Building Research and Practice,Informa UK (Taylor & Francis),01823329| +Batteries,MDPI AG,23130105 +Bauphysik,Wiley Blackwell (John Wiley & Sons),01715445|14370980 +Baurechtliche Blätter,Springer-Verlag,14341832|16137612 +Bauregelliste A Bauregelliste B und Liste C,Wiley Blackwell (John Wiley & Sons),18623077|18623093 +Bautechnik,Wiley Blackwell (John Wiley & Sons),09328351|14370999 +Bayero Journal of Pure and Applied Sciences,African Journals Online ,20066996|20066996 +Bayesian Analysis,Institute of Mathematical Statistics,19360975| +Bayesian Analysis,Institute of Mathematical Statistics,19316690| +BBA Clinical,Elsevier ,22146474| +BBR - Biochemistry and Biotechnology Reports,Universidade Estadual de Londrina,23165200 +BDJ,Nature Publishing Group,00070610|14765373 +BDJ Open,Nature Publishing Group,2056807X +BDJ Team,Nature Publishing Group,20547617 +Béaloideas,JSTOR,0332270X| +Bearing Witness Joyce Carol Oates Studies,Gleeson Library Geschke Center,2373275X +Bears Their Biology and Management,JSTOR,19360614| +Bee World,Informa UK (Taylor & Francis),0005772X|23767618 +Before Farming,Liverpool University Press,14764253|20563264 +Behavior Analysis in Practice,Springer-Verlag,19981929|21968934 +Behavior Analysis Research and Practice,American Psychological Association,23729414 +Behavior and Social Issues,University of Illinois Libraries,10649506 +Behavior Genetics,Springer-Verlag,00018244|15733297 +Behavior Modification,SAGE Publications,01454455|00000000 +Behavior Research Methods,Springer - Psychonomic Society,1554351X|15543528 +Behavior Research Methods & Instrumentation,Springer - Psychonomic Society,00057878| +Behavior Research Methods Instruments & Computers,Springer - Psychonomic Society,07433808|15325970 +Behavior Therapy,Elsevier ,00057894| +Behavioral & Social Sciences Librarian,Informa UK (Taylor & Francis),01639269|15444546 +Behavioral and Brain Functions,Springer (Biomed Central Ltd.),17449081|17449081 +Behavioral and Brain Sciences,Cambridge University Press,0140525X|14691825 +Behavioral and Cognitive Neuroscience Reviews,SAGE Publications,15345823|00000000 +Behavioral and Neural Biology,Elsevier ,01631047| +Behavioral Biology,Elsevier ,00916773| +Behavioral Development Bulletin,American Psychological Association,19420722 +Behavioral Disorders,Council for Children with Behavioral Disorders,01987429| +Behavioral Ecology,Oxford University Press,10452249|14657279 +Behavioral Ecology and Sociobiology,Springer-Verlag,03405443|14320762 +Behavioral Interventions,Wiley Blackwell (John Wiley & Sons),10720847|1099078X +Behavioral Medicine,Informa UK (Taylor & Francis),08964289|19404026 +Behavioral Neuroscience,American Psychological Association,07357044|19390084 +Behavioral Research in Accounting,American Accounting Association,10504753|15588009 +Behavioral Science,Wiley Blackwell (John Wiley & Sons),00057940|10991743 +Behavioral Science & Policy,Muse - Johns Hopkins University Press,23794615 +Behavioral Sciences,MDPI AG,2076328X +Behavioral Sciences & the Law,Wiley Blackwell (John Wiley & Sons),07353936|10990798 +Behavioral Sciences of Terrorism and Political Aggression,Informa UK (Taylor & Francis),19434472|19434480 +Behavioral Sleep Medicine,Informa UK (Taylor & Francis),15402002|15402010 +Behaviormetrika,The Behaviormetric Society of Japan,03857417|13496964 +Behaviour,Brill Academic Publishers,00057959|1568539X +Behaviour and Information Technology,Informa UK (Taylor & Francis),0144929X|13623001 +Behaviour Change,Cambridge University Press,08134839|08134839 +Behaviour Research and Therapy,Elsevier ,00057967| +Behavioural and Cognitive Psychotherapy,Cambridge University Press,13524658|14691833 +Behavioural Brain Research,Elsevier ,01664328| +Behavioural Neurology,Hindawi Publishing Corporation,09534180|18758584 +Behavioural Pharmacology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,09558810| +Behavioural Processes,Elsevier ,03766357| +Behavioural Psychotherapy,Cambridge University Press,01413473| +Behemoth,Consortia Academia Publishing,18662447|18662447 +Beijing Law Review,"""Scientific Research Publishing, Inc.""",21594627|21594635 +Beilstein Journal of Nanotechnology,Beilstein-Institut,21904286|21904286 +Beilstein Journal of Organic Chemistry,Beilstein-Institut,18605397|18605397 +Beilstein Magazine,Beilstein-Institut,23659718 +Beiträage zur Klinik der Tuberkulose und spezifischen Tuberkulose-Forschung,Springer-Verlag,0179616X| +Beiträge aus der Plasmaphysik,Wiley Blackwell (John Wiley & Sons),00058025|15213986 +Beiträge zur Algebra und Geometrie / Contributions to Algebra and Geometry,Springer-Verlag,01384821|21910383 +Beiträge zur Geschichte der deutschen Sprache und Literatur (PBB),Walter de Gruyter GmbH,00058076|18659373 +Beiträge zur Klinik der Tuberkulose,Springer-Verlag,0179616X| +Beiträge zur Klinik der Tuberkulose und spezifischen Tuberkulose-Forschung,Springer-Verlag,03660966| +Beiträge zur Klinik und Erforschung der Tuberkulose und der Lungenkrankheiten,Springer-Verlag,03009696| +Beiträge zur Mineralogie und Petrographie,Springer-Verlag,03661369| +Beitrage zur Neotropischen Fauna,Informa UK (Taylor & Francis),00058130| +Beiträge zur Pathologie,Elsevier ,00058165| +Beiträge zur Rechtsgeschichte Österreichs,Verlag der Osterreichischen Akademie der Wissenschaften,22218890|22218890 +Beiträge zur Tabakforschung / Contributions to Tobacco Research,De Gruyter Open Sp. z o.o. ,16129237 +Beleidsonderzoek Online,Boom Uitgevers Den Haag,22133550| +Belgeo,OpenEdition,22949135|22949135 +Belgian Actuarial Bulletin,Ankara University,17845742 +Belgian Journal of Linguistics,John Benjamins Publishing Company,07745141|15699676 +Beliefs and Values,Springer Publishing Company,19420617| +Bell Labs Technical Journal,Institute of Electrical and Electronics Engineers,10897089|15387035 +Bell System Technical Journal,Institute of Electrical and Electronics Engineers,00058580| +Bellaterra Journal of Teaching & Learning Language & Literature,Universitat Autonoma de Barcelona,20136196 +Belphégor,OpenEdition,14997185 +BELT – Brazilian English Language Teaching Journal,EDIPUCRS,21783640 +Belvedere Meridionale,University of Szeged,14190222|20645929 +Ben Jonson Journal,Edinburgh University Press,10793453|1755165X +Benchmarking An International Journal,Emerald (MCB UP ),14635771|00000000 +Benchmarking for Quality Management & Technology,Emerald (MCB UP ),13513036| +Beneficial Microbes,Wageningen Academic Publishers,18762883|18762891 +Benha Medical Journal,Medknow Publications,1110208X| +Beni-Suef University Journal of Applied Sciences,ScopeMed International Medical Journal Managment and Indexing System,20908210| +Beni-Suef University Journal of Basic and Applied Sciences,Elsevier ,23148535| +Benin Journal of Postgraduate Medicine,African Journals Online ,07950268|07950268 +Benthos research,The Japanese Association of Benthology,02894548|1883888X +Benzylic Oxidation,Thieme Publishing Group,20300301 +Bereavement Care,Informa UK (Taylor & Francis),02682621|19448279 +Bergen Journal of Criminal Law & Criminal Justice,University of Bergen Library,18944183 +Bergen Language and Linguistics Studies,University of Bergen Library,18922449 +Berichte der Bunsengesellschaft für physikalische Chemie,Wiley Blackwell (John Wiley & Sons),03728323|00059021 +Berichte der deutschen chemischen Gesellschaft,Wiley Blackwell (John Wiley & Sons),03659496|10990682 +Berichte der deutschen chemischen Gesellschaft (A and B Series),Wiley Blackwell (John Wiley & Sons),03659631|10990682 +Berichte zur Wissenschaftsgeschichte,Wiley Blackwell (John Wiley & Sons),01706233|15222365 +Berliner entomologische Zeitschrift,Wiley Blackwell (John Wiley & Sons),03236145| +Berliner Journal für Soziologie,Springer-Verlag,08631808|18622593 +Bernoulli,Bernoulli Society for Mathematical Statistics and Probability,13507265| +Beskydy,Mendel University Press,18032451|18032451 +Best Practice & Research Clinical Anaesthesiology,Elsevier ,15216896| +Best Practice & Research Clinical Endocrinology & Metabolism,Elsevier ,1521690X|15321908 +Best Practice & Research Clinical Gastroenterology,Elsevier ,15216918| +Best Practice & Research Clinical Haematology,Elsevier ,15216926| +Best Practice & Research Clinical Obstetrics & Gynaecology,Elsevier ,15216934| +Best Practice & Research Clinical Rheumatology,Elsevier ,15216942| +best practice onkologie,Springer-Verlag,09464565|18628559 +Bestuurskunde,Boom Uitgevers Den Haag,09273387| +Bestuurswetenschappen,Boom Uitgevers Den Haag,01657194| +Beta,Scandinavian University Press / Universitetsforlaget AS,15043134|15043134 +Beton- und Stahlbetonbau,Wiley Blackwell (John Wiley & Sons),00059900|14371006 +Between the Species An Online Journal for the Study of Philosophy and Animals,"""Robert E. Kennedy Library, Cal Poly""",19458487 +Beverages,MDPI AG,23065710 +Beykent Üniversitesi Fen ve Mühendislik Bilimleri Dergisi,Beykent University Journal of Science and Engineering,13073818| +Beykent Üniversitesi Sosyal Bilimler Dergisi,Beykent University Journal of Social Sciences,13075063| +Beykoz Akademi Dergisi,Beykoz Vocational School of Logistics,21478082|21478082 +Beytulhikme An International Journal of Philosophy,Beytulhikme An International Journal of Philosophy,13038303 +Bezbednost Beograd,Centre for Evaluation in Education and Science,04092953| +Bezmialem Science,Bezmialem Vakif University,21482373|21482373 +BHM Berg- und Hüttenmännische Monatshefte,Springer-Verlag,00058912|16137531 +Bhutan Journal of Natural Resources & Development,College of Natural Resources (Royal University of Bhutan),24092797| +Białorutenistyka Białostocka,University of Bialystok,20812515| +Białostockie Archiwum Językowe,University of Bialystok,16416961| +Białostockie Studia Literaturoznawcze,University of Bialystok,20829701| +Białostockie Studia Prawnicze,University of Bialystok,16897404| +Białostockie Teki Historyczne,University of Bialystok,14251930| +BIBECHANA,Nepal Journals Online,20910762|20910762 +Biblica et Patristica Thoruniensia,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,16895150|24507059 +Biblical Interpretation,Brill Academic Publishers,09272569|15685152 +Biblical Theology Bulletin A Journal of Bible and Culture,SAGE Publications,01461079|19457596 +Biblios Journal of Librarianship and Information Science,"""University Library System, University of Pittsburgh""",15624730 +Bibliosphere,State Public Scientific Technological Library SB RAS,18153186| +Biblioteca Escolar em Revista,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,22385894 +Bibliotech,Ankara University,13074229 +Biblioteka,Adam Mickiewicz University Poznan,15063615|15063615 +Biblioteka zhurnala «Rusin»,Tomsk State University,23451734| +Bibliotheca Orientalis,Peeters Publishers,61913 +BIBLIOTHEK Forschung und Praxis,Walter de Gruyter GmbH,03414183|18657648 +Bibliotheksdienst,Walter de Gruyter GmbH,00061972|21949646 +Bibliothèque de l école des chartes,PERSEE Program,03736237|19538138 +Biblos Revista da FLUC,Coimbra University Press,08704112| +Bifidobacteria and Microflora,BMFH Press,02869306|18845126 +Bifröst Journal of Social Science / Tímarit um félagsvísindi,Samtid,16707788|16707796 +Bifunctional Chiral Phosphines,Thieme Publishing Group,20200404 +Big Data,Mary Ann Liebert,21676461|2167647X +Big Data & Society,SAGE Publications,20539517 +Big Data and Information Analytics,American Institute of Mathematical Sciences,23806966| +Big Data Research,Elsevier ,22145796| +Bihang till Kongl Svenska vetenskaps-akademiens handlingar,Smithsonian Institution Biodiversity Heritage Library,02847280| +Bijblijven,Springer-Verlag,01689428|18764916 +Bijdragen,Informa UK (Taylor & Francis),00062278|00062278 +Bijdragen tot de taal- land- en volkenkunde / Journal of the Humanities and Social Sciences of Southeast Asia,Brill Academic Publishers,00062294|22134379 +Bijzijn,Springer-Verlag,18717268|18764924 +Bijzijn XL,Springer-Verlag,22116524|22134565 +Bildung und Erziehung,Bohlau Verlag,00062456|21943834 +Bilgi Dünyasi,University and Research Librarians' Association,2148354X +Bilgi Dünyası,Ankara University,13023217| +Bilig Journal of Social Sciences in Turkish World,"""Bilig, Journal of Social Sciences of Turkish World""",13010549| +Bilingual Research,The Korean Society of Bilingualism,12291757| +Bilingual Research Journal,Informa UK (Taylor & Francis),15235882|15235890 +Bilingualism Language and Cognition,Cambridge University Press,13667289|14691841 +Bilişim Teknolojileri Dergisi,International Journal of Informatics Technologies,13079697|21470715 +Binghamton Journal of Philosophy,Philosophy Documentation Center,23248718| +BIO,Canadian Centre of Academic Art and Science,19254563|19254571 +Bio Science Research Bulletin,Diva Enterprises Private Limited,09700889|23203161 +Bio Tribune Magazine,Springer-Verlag,17729416|1951655X +BIO Web of Conferences,EDP Sciences,21174458 +Bio-Algorithms and Med-Systems,Walter de Gruyter GmbH,18959091|1896530X +BIO-Complexity,Biologic Institute,21517444 +Bio-Medical Materials and Engineering,IOS Press,09592989|18783619 +Bio-Research,African Journals Online ,15967409 +Bio/Technology,Nature Publishing Group,0733222X| +Bioacoustics,Informa UK (Taylor & Francis),09524622|21650586 +Bioactive Carbohydrates and Dietary Fibre,Elsevier ,22126198| +Bioanalysis,"""Future Science, LTD""",17576180|17576199 +Bioanalytical Reviews,Springer-Verlag,18672086|18672094 +BioArchitecture,Landes Bioscience,19490992|1949100X +BioAssay,Lepidus Tecnologia,18098460 +Biobehavioral Reviews,Elsevier ,01477552| +Biocatalysis,De Gruyter Open Sp. z o.o. ,23531746 +Biocatalysis and Agricultural Biotechnology,Elsevier ,18788181| +Biocatalysis and Biotransformation,Informa UK (Taylor & Francis),10242422|10292446 +Bioceramics Development and Applications,Ashdin Publishing,20905025|20905033 +Biochemia Medica,Croatian Society for Medical Biochemistry and Laboratory Medicine,13300962|18467482 +Biochemical and Biophysical Research Communications,Elsevier ,0006291X|10902104 +Biochemical and Molecular Medicine,Elsevier - Academic Press,10773150|10955577 +Biochemical Compounds,Herbert Publications,20529341 +Biochemical Education,Elsevier ,03074412|03074412 +Biochemical Engineering Journal,Elsevier ,1369703X| +Biochemical Genetics,Springer-Verlag,00062928|15734927 +Biochemical Journal,Portland Press,02646021|14708728 +Biochemical Medicine,Elsevier ,00062944| +Biochemical Medicine and Metabolic Biology,Elsevier ,08854505| +Biochemical Pharmacology,Elsevier ,00062952| +Biochemical Society Symposium,Portland Press,00678694|17441439 +Biochemical Society Transactions,Portland Press,03005127|14708752 +Biochemical Systematics and Ecology,Elsevier ,03051978| +Biochemie und Physiologie der Pflanzen,Elsevier ,00153796| +Biochemistry,American Chemical Society,00062960|15204995 +Biochemistry & Analytical Biochemistry,OMICS Publishing Group,21611009 +Biochemistry & Molecular Biology,Sciknow Publications,23318260 +Biochemistry & Pharmacology Open Access,OMICS Publishing Group,21670501 +Biochemistry & Physiology Open Access,OMICS Publishing Group,21689652 +Biochemistry (Moscow),Pleiades Publishing,00062979|16083040 +Biochemistry (Moscow) Supplement Series A Membrane and Cell Biology,Pleiades Publishing,19907478|19907494 +Biochemistry (Moscow) Supplement Series B Biomedical Chemistry,Pleiades Publishing,19907508|19907516 +Biochemistry and Biophysics Reports,Elsevier ,24055808| +Biochemistry and Cell Biology,Canadian Science Publishing,08298211|12086002 +Biochemistry and Molecular Biology Education,Wiley Blackwell (John Wiley & Sons),14708175|15393429 +Biochemistry Insights,"""Libertas Academica, Ltd.""",11786264 +Biochemistry Research International,Hindawi Publishing Corporation,20902247|20902255 +Biochimica et Biophysica Acta,Elsevier ,00063002| +Biochimica et Biophysica Acta (BBA) - Bioenergetics,Elsevier ,00052728| +Biochimica et Biophysica Acta (BBA) - Biomembranes,Elsevier ,00052736| +Biochimica et Biophysica Acta (BBA) - Biophysics including Photosynthesis,Elsevier ,09266585| +Biochimica et Biophysica Acta (BBA) - Enzymology,Elsevier ,00052744| +Biochimica et Biophysica Acta (BBA) - Enzymology and Biological Oxidation,Elsevier ,09266593| +Biochimica et Biophysica Acta (BBA) - Gene Regulatory Mechanisms,Elsevier ,18749399| +Biochimica et Biophysica Acta (BBA) - Gene Structure and Expression,Elsevier ,01674781| +Biochimica et Biophysica Acta (BBA) - General Subjects,Elsevier ,03044165| +Biochimica et Biophysica Acta (BBA) - Lipids and Lipid Metabolism,Elsevier ,00052760| +Biochimica et Biophysica Acta (BBA) - Molecular and Cell Biology of Lipids,Elsevier ,13881981| +Biochimica et Biophysica Acta (BBA) - Molecular Basis of Disease,Elsevier ,09254439| +Biochimica et Biophysica Acta (BBA) - Molecular Cell Research,Elsevier ,01674889| +Biochimica et Biophysica Acta (BBA) - Mucoproteins and Mucopolysaccharides,Elsevier ,09266534| +Biochimica et Biophysica Acta (BBA) - Nucleic Acids and Protein Synthesis,Elsevier ,00052787| +Biochimica et Biophysica Acta (BBA) - Protein Structure,Elsevier ,00052795| +Biochimica et Biophysica Acta (BBA) - Protein Structure and Molecular Enzymology,Elsevier ,01674838| +Biochimica et Biophysica Acta (BBA) - Proteins and Proteomics,Elsevier ,15709639| +Biochimica et Biophysica Acta (BBA) - Reviews on Bioenergetics,Elsevier ,03044173| +Biochimica et Biophysica Acta (BBA) - Reviews on Biomembranes,Elsevier ,03044157| +Biochimica et Biophysica Acta (BBA) - Reviews on Cancer,Elsevier ,0304419X| +Biochimica et Biophysica Acta (BBA) - Specialized Section on Biophysical Subjects,Elsevier ,09266577| +Biochimica et Biophysica Acta (BBA) - Specialized Section on Enzymological Subjects,Elsevier ,09266569| +Biochimica et Biophysica Acta (BBA) - Specialized Section on Lipids and Related Subjects,Elsevier ,09266542| +Biochimica et Biophysica Acta (BBA) - Specialized Section on Mucoproteins and Mucopolysaccharides,Elsevier ,09266526| +Biochimica et Biophysica Acta (BBA) - Specialized Section on Nucleic Acids and Related Subjects,Elsevier ,09266550| +Biochimie,Elsevier ,03009084| +Biochimie Open,Elsevier ,22140085| +BioChip Journal,Springer-Verlag,19760280|20927843 +Bioconjugate Chemistry,American Chemical Society,10431802|15204812 +BioControl,Springer-Verlag,13866141|15738248 +Biocontrol Science,"""The Society for Antibacterial and Antifungal Agents, Japan""",13424815|18840205 +Biocontrol Science and Technology,Informa UK (Taylor & Francis),09583157|13600478 +Bioconversion of 2‑ Ethylpyridine by Beauveria bassiana,"""Science and Education, Ltd.""",20720297| +BioData Mining,Springer (Biomed Central Ltd.),17560381|17560381 +Biodegradation,Springer-Verlag,09239820|15729729 +Biodemography and Social Biology,Informa UK (Taylor & Francis),19485565|19485573 +Biodiscovery,Dundee Science Press,20502966 +Biodiversidad Colombia,Universidad de la Salle,23448539|2389878X +Biodiversitas Journal of Biological Diversity,UNS Solo,1412033X|20854722 +Biodiversity,Informa UK (Taylor & Francis),14888386|21600651 +Biodiversity & Ecology,"""University of Hamburg, Biodiversitat, Evolution and Okologie der Pflanzen""",16139801| +Biodiversity and Conservation,Springer-Verlag,09603115|15729710 +Biodiversity Data Journal,Pensoft Publishers,13142836|13142828 +Biodiversity Informatics,The University of Kansas,15469735 +Biodiversity Letters,JSTOR,09679952| +Biodiversity Research and Conservation,De Gruyter Open Sp. z o.o. ,18972810|18972810 +Biodiversity Science,Biodiversity Science,10050094| +BioDrugs,Springer-Verlag,11738804|1179190X +Bioelectrochemistry,Elsevier ,15675394| +Bioelectrochemistry and Bioenergetics,Elsevier ,03024598| +Bioelectromagnetics,Wiley Blackwell (John Wiley & Sons),01978462|1521186X +Bioenergetics Open access,OMICS Publishing Group,21677662 +BioEnergy Research,Springer-Verlag,19391234|19391242 +Bioengineered,Landes Bioscience,21655979|21655987 +Bioengineered Bugs,Landes Bioscience,19491018|19491026 +Bioengineering,MDPI AG,23065354 +Bioengineering & Translational Medicine,Wiley Blackwell (John Wiley & Sons),23806761| +Bioengineering and Bioscience,"""Horizon Research Publishing Co., Ltd.""",2332001X|23320028 +Bioentrepreneur,Nature Publishing Group,15426572|15426572 +BioEssays,Wiley Blackwell (John Wiley & Sons),02659247|15211878 +Bioethanol,De Gruyter Open Sp. z o.o. ,22996788 +Bioethics,Wiley Blackwell (Blackwell Publishing),02699702|14678519 +Bioethics in Faith and Practice,Centennial Library,23741597 +Bioethics News,Springer-Verlag,13212753|18366716 +Bioethics Quarterly,Springer-Verlag,01639803| +Bioethics Update,Elsevier ,2395938X| +Biofabrication,IOP Publishing,17585082|17585090 +BioFactors,IOS Press,09516433|18728081 +Biofeedback,Association for Applied Psychophysiology and Biofeedback,10815937|2158348X +Biofeedback and Self-Regulation,Springer-Verlag,03633586| +Biofilms,Cambridge University Press,14790505|14790513 +Biofouling,Informa UK (Taylor & Francis),08927014|10292454 +Biofuel Research Journal,Greenwave Publishing of Canada,22928782 +Biofuels,Informa UK (Taylor & Francis),17597269|17597277 +Biofuels Bioproducts and Biorefining,Wiley Blackwell (John Wiley & Sons),1932104X|19321031 +Biofuels Engineering,Walter de Gruyter GmbH,20847181 +Biofutur,Elsevier ,02943506| +Biogenic Amines,Brill Academic Publishers,01688561|15693910 +Biogeochemistry,Springer-Verlag,01682563|1573515X +Biogeosciences,Copernicus GmbH,17264189 +Biogeosciences Discussions,Copernicus GmbH,18106285 +Biogeosystem Technique,Academic Publishing House Researcher,24093386|24137316 +Biogerontology,Springer-Verlag,13895729|15736768 +Biographical Memoirs of Fellows of the Royal Society,The Royal Society,00804606|17488494 +Biography,Muse - Johns Hopkins University Press,15291456 +Bioimaging,Wiley Blackwell (John Wiley & Sons),09669051|13616374 +Bioimpacts,International Society for Phytocosmetic Sciences,22285652|22285660 +BIOINFO Aquatic Ecosystem,Bioinfo Publications,2277369X|22773703 +BIOINFO Business Economics,Bioinfo Publications,22491775|22491783 +BIOINFO Business Management,Bioinfo Publications,22491791|22491805 +BIOINFO Computational Mathematics,Bioinfo Publications,22497099|22497102 +BIOINFO Computational Optimization,Bioinfo Publications,22495533|22495541 +BIOINFO Computer Engineering,Bioinfo Publications,22493980|22493999 +BIOINFO Drug targets,Bioinfo Publications,22491759|22491767 +BIOINFO Environment and Pollution,Bioinfo Publications,22491716|22491724 +BIOINFO Financial Management,Bioinfo Publications,2250091X|22500928 +BIOINFO Genetic Programming,Bioinfo Publications,22494006|22494014 +BIOINFO Journal of Proteomics,Bioinfo Publications,22491651|2249166X +BIOINFO Mechanical Engineering,Bioinfo Publications,22773738|22773746 +BIOINFO Medical Imaging,Bioinfo Publications,22497072|22497080 +BIOINFO Optimization Theory and Applications,Bioinfo Publications,22495495|22495509 +BIOINFO Pharmaceutical Biotechnology,Bioinfo Publications,22491813|22491821 +BIOINFO Project Management,Bioinfo Publications,22491732|22491740 +BIOINFO Renewable & Sustainable Energy,Bioinfo Publications,22491694|22491708 +BIOINFO Security Informatics,Bioinfo Publications,22499423|22499431 +BIOINFO Sensor Networks,Bioinfo Publications,2249944X|22499458 +BIOINFO Sociology,Bioinfo Publications,22491678|22491686 +BIOINFO Soft Computing,Bioinfo Publications,22492747|22492755 +BIOINFO Systems Engineering,Bioinfo Publications,22492720|22492739 +BIOINFO Vaccine Sciences,Bioinfo Publications,22773711|2277372X +BioInfoBank Library Acta,Instytut Bioinfobank Sp. z o.o.,16897366|16897366 +Bioinformatics,Oxford University Press,13674803|14602059 +Bioinformatics and Biology Insights,"""Libertas Academica, Ltd.""",11779322 +Bioinformation,Biomedical Informatics,09738894|09732063 +Bioinorganic Chemistry,Elsevier ,00063061| +Bioinorganic Chemistry and Applications,Hindawi Publishing Corporation,15653633|1687479X +BioInorganic Reaction Mechanisms,Walter de Gruyter GmbH,21912483|21912491 +Bioinspiration & Biomimetics,IOP Publishing,17483182|17483190 +Bioinspired Biomimetic and Nanobiomaterials,Thomas Telford Ltd.,20459858|20459866 +Bioinspired Materials,De Gruyter Open Sp. z o.o. ,23003634 +Biointerphases,American Institute of Physics,19348630|15594106 +BioInvasions Records,Regional Euro-Asian Biological Invasions Centre Oy - REABIC,22421300 +Biokemistri,African Journals Online ,7958080 +Biolife,Global Science Publishing Group,23204257 +Biologia,De Gruyter Open Sp. z o.o. ,00063088|13369563 +Biologia Plantarum,Springer-Verlag,00063134|15738264 +Biological & Pharmaceutical Bulletin,Pharmaceutical Society of Japan,09186158|13475215 +Biological Agriculture & Horticulture,Informa UK (Taylor & Francis),01448765|21650616 +Biological Bulletin,JSTOR,00063185| +Biological Bulletin of Bogdan Chmelnitskiy Melitopol State Pedagogical University,Oles Honchar Dnipropetrovsk National University,22255486|22269010 +Biological Chemistry,Walter de Gruyter GmbH,14316730|14374315 +Biological Chemistry Hoppe-Seyler,Walter de Gruyter GmbH,01773593| +Biological Conservation,Elsevier ,00063207| +Biological Control,Elsevier ,10499644|10902112 +Biological Cybernetics,Springer-Verlag,03401200|14320770 +Biological Engineering,American Society of Agricultural and Biological Engineers,19342799|19342837 +Biological Engineering Transactions,American Society of Agricultural and Biological Engineers,2162643X|23300337 +Biological Evidence,"""Sophia Publishing Group, Inc.""",19276478 +Biological Invasions,Springer-Verlag,13873547|15731464 +Biological Journal of the Linnean Society,Wiley Blackwell (Blackwell Publishing),00244066|10958312 +Biological Letters,De Gruyter Open Sp. z o.o. ,16447700|16447700 +Biological Markers and Guided Therapy,"""Hikari, Ltd.""",23674792 +Biological Mass Spectrometry,Wiley Blackwell (John Wiley & Sons),10529306|10969888 +Biological Procedures Online,Springer (Biomed Central Ltd.),14809222|14809222 +Biological Psychiatry,Elsevier ,00063223| +Biological Psychiatry Cognitive Neuroscience and Neuroimaging,Elsevier ,24519022| +Biological Psychology,Elsevier ,03010511| +Biological Research,Springer-Verlag,07169760|07169760 +Biological Research for Nursing,SAGE Publications,10998004|00000000 +Biological Reviews,Wiley Blackwell (Blackwell Publishing),14647931|1469185X +Biological Rhythm Research,Informa UK (Taylor & Francis),09291016|17444179 +Biological Sciences in Space,Japanese Society for Biological Sciences in Space,09149201|1349967X +Biological Systems Open Access,OMICS Publishing Group,23296577 +Biological Theory,Springer-Verlag,15555542|15555550 +Biological Therapies in Dentistry,"""Decker, Inc.""",8821852 +Biological Trace Element Research,Springer-Verlag,01634984|15590720 +Biological Wastes,Elsevier ,02697483| +Biologically Inspired Cognitive Architectures,Elsevier ,2212683X| +Biologicals,Elsevier ,10451056|10958320 +Biologics in Therapy,Springer-Verlag,21955840|21909164 +Biologics Targets & Therapy,Dove Medical Press,11775475 +Biologics Targets and Therapy,Dove Medical Press,11775491 +Biologie Aujourd hui,EDP Sciences,21050678|21050686 +Biologie in unserer Zeit,Wiley Blackwell (John Wiley & Sons),0045205X|1521415X +Biologija,Lithuanian Academy of Sciences,13920146|20290578 +Biologisches Zentralblatt,Smithsonian Institution Biodiversity Heritage Library,00063304| +Biology,MDPI AG,20797737 +Biology & Environment Proceedings of the Royal Irish Academy,Royal Irish Academy,07917945|2009003X +Biology & Philosophy,Springer-Verlag,01693867|15728404 +Biology and Fertility of Soils,Springer-Verlag,01782762|14320789 +Biology and Medicine,OMICS Publishing Group,9748369 +Biology Bulletin,Pleiades Publishing,10623590|16083059 +Biology Bulletin Reviews,Pleiades Publishing,20790864|20790872 +Biology Direct,Springer (Biomed Central Ltd.),17456150|17456150 +BIOLOGY EDUCATION,The Korean Society of Biology Education,2234876X| +Biology Letters,The Royal Society,17449561|1744957X +Biology Methods and Protocols,Oxford University Press,23968923 +Biology of Blood and Marrow Transplantation,Elsevier ,10838791| +biology of exercise,"""Department of Sport Management , University of Peloponnese""",1791325X|1791325X +Biology of Metals,Springer-Verlag,09335854| +Biology of Mood & Anxiety Disorders,Springer (Biomed Central Ltd.),20455380|20455380 +Biology of Reproduction,Society for the Study of Reproduction,00063363|15297268 +Biology of Sex Differences,Springer (Biomed Central Ltd.),20426410|20426410 +Biology of Sport,Index Copernicus International,0860021X|20831862 +Biology of the Cell,Wiley Blackwell (Blackwell Publishing),02484900|1768322X +Biology of the Neonate,S. Karger AG,00063126|14219727 +Biology Open,The Company of Biologists,20466390 +Biomacromolecules,American Chemical Society,15257797|15264602 +BioMagnetic Research and Technology,Springer (Biomed Central Ltd.),1477044X| +Biomarker Insights,"""Libertas Academica, Ltd.""",11772719 +Biomarker Research,Springer (Biomed Central Ltd.),20507771|20507771 +Biomarkers,Informa UK (Taylor & Francis),1354750X|13665804 +Biomarkers and Genomic Medicine,Elsevier ,22140247| +Biomarkers in Cancer,"""Libertas Academica, Ltd.""",1179299X +Biomarkers in Medicine,Future Medicine,17520363|17520371 +Biomass,Elsevier ,01444565| +Biomass and Bioenergy,Elsevier ,09619534| +Biomass Conversion and Biorefinery,Springer-Verlag,21906815|21906823 +BIOmaterialien,Walter de Gruyter GmbH,16160177|21914672 +Biomaterials,Elsevier ,01429612| +Biomaterials and Biomechanics in Bioengineering,Techno-Press,22883738| +Biomaterials Artificial Cells and Artificial Organs,Informa UK (Taylor & Francis),08905533| +Biomaterials Artificial Cells and Immobilization Biotechnology,Informa UK (Taylor & Francis),10557172| +Biomaterials Medical Devices and Artificial Organs,Informa UK (Taylor & Francis),00905488| +Biomaterials Research,Springer (Biomed Central Ltd.),20557124|20557124 +Biomaterials Science,The Royal Society of Chemistry,20474830|20474849 +BIOMATH,Biomath Forum,1314684X|13147218 +Biomath Communications,Biomath Forum,23675233|23675241 +Biomatter,Landes Bioscience,21592527|21592535 +Biomechanica Hungarica,University of Debrecen/Biomechanica Hungarica,20600305|20604475 +Biomechanics and Modeling in Mechanobiology,Springer-Verlag,16177959|16177940 +Biomechanisms,Society of Biomechanisms Japan,13487116|1349497X +Biomed Data Journal,"""Procon, Ltd.""",23676477 +BioMed Research International,Hindawi Publishing Corporation,23146133|23146141 +Biomédica,Instituto Nacional de Salud,01204157|01204157 +Biomedical & Pharmacology Journal,Oriental Scientific Publishing Company,09746242| +Biomedical and Environmental Sciences,Elsevier ,08953988| +Biomedical Chromatography,Wiley Blackwell (John Wiley & Sons),02693879|10990801 +Biomedical Data Journal,"""Procon, Ltd.""",23675322| +Biomedical Digital Libraries,Springer (Biomed Central Ltd.),17425581| +Biomedical Engineering,Springer-Verlag,00063398|15738256 +Biomedical Engineering / Biomedizinische Technik,Walter de Gruyter GmbH,00135585|1862278X +Biomedical Engineering and Computational Biology,"""Libertas Academica, Ltd.""",11795972 +Biomedical Engineering Applications Basis and Communications,National Taiwan University,10162372|17937132 +Biomedical Engineering Letters,Springer-Verlag,20939868|2093985X +BioMedical Engineering OnLine,Springer (Biomed Central Ltd.),1475925X|1475925X +Biomedical Engineering Research,The World Academic Publishing,23066008|23065990 +Biomedical glasses,Walter de Gruyter GmbH,22993932 +Biomedical Human Kinetics,De Gruyter Open Sp. z o.o. ,20802234|20802234 +Biomedical Imaging and Intervention Journal,"""Department of Biomedical Imaging, University of Malaya""",18235530|18235530 +Biomedical Informatics Insights,"""Libertas Academica, Ltd.""",11782226 +Biomedical Instrumentation & Technology,Association for the Advancement of Medical Instrumentation,08998205|19435967 +Biomedical Journal,Elsevier ,23194170| +Biomedical Materials,IOP Publishing,17486041|1748605X +Biomedical Microdevices,Springer-Verlag,13872176|15728781 +Biomedical Optics Express,The Optical Society,21567085|21567085 +Biomedical Papers,Palacky University Olomouc,12138118|18047521 +Biomedical Physics & Engineering Express,IOP Publishing,20571976 +Biomedical Reports,Spandidos Publications,20499434|20499442 +Biomedical Research,Biomedical Research Press,03886107|1880313X +Biomedical Research - India,Medknow Publications,0970938X| +Biomedical Research and Therapy,Springer - Global Science Journals,21984093 +Biomedical Research Reports,Elsevier , +Biomedical Reviews,Medical University Prof. Dr. Praskev Stoyanov - Varna,1310392X|13141929 +Biomedical Science and Engineering,"""Science and Education Publishing Co., Ltd.""",23731257| +Biomedical Science Letters,The Korean Society for Biomedical Laboratory Sciences,22887415 +Biomedical Signal Processing and Control,Elsevier ,17468094| +Biomedical Spectroscopy and Imaging,IOS Press,22128794|22128808 +Biomedicina,Internet Medical Publishing,23866942 +BioMedicine,Springer - Global Science Journals,22118039 +Biomedicine & Aging Pathology,Elsevier ,22105220| +Biomedicine & Pharmacotherapy,Elsevier ,07533322| +Biomedicine & Preventive Nutrition,Elsevier ,22105239| +Biomedicine Hub,S. Karger AG,22966870 +Biomedicines,MDPI AG,22279059 +Biomeditsinskaya Khimiya,Institute of Biomedical Chemistry,23106972|23106905 +BioMetals,Springer-Verlag,09660844|15728773 +Biometric Technology Today,Elsevier ,09694765| +Biometrical Journal,Wiley Blackwell (John Wiley & Sons),03233847|15214036 +Biometrical Letters,De Gruyter Open Sp. z o.o. ,18963811|18963811 +Biometrics,Wiley Blackwell (Blackwell Publishing),0006341X|15410420 +Biometrics & Biostatistics International Journal,MedCrave Group,2378315X +Biometrics Bulletin,JSTOR,00994987| +Biometrika,Oxford University Press,00063444|14643510 +Biometrische Zeitschrift,Wiley Blackwell (John Wiley & Sons),00063452|15214037 +Biomicrofluidics,American Institute of Physics,19321058|19321058 +Biomimetics,MDPI AG,23137673 +BioMolecular Concepts,Walter de Gruyter GmbH,18685021|1868503X +Biomolecular Detection and Quantification,Elsevier ,22147535| +Biomolecular Engineering,Elsevier ,13890344| +Biomolecular NMR Assignments,Springer-Verlag,18742718|1874270X +Biomolecules,MDPI AG,2218273X +Biomolecules and Therapeutics,The Korean Society of Applied Pharmacology,19769148|20054483 +Biomonitoring,De Gruyter Open Sp. z o.o. ,23004606 +BioNanoMaterials,Walter de Gruyter GmbH,21930651|2193066X +BioNanoScience,Springer-Verlag,21911630|21911649 +Bionomina,Magnolia Press,11797649|11797657 +Bioorganic & Medicinal Chemistry,Elsevier ,09680896| +Bioorganic & Medicinal Chemistry Letters,Elsevier ,0960894X| +Bioorganic Chemistry,Elsevier ,00452068|10902120 +Biopharmaceutics & Drug Disposition,Wiley Blackwell (John Wiley & Sons),01422782|1099081X +BIOPHILIA,International Biophilia Rehabilitation Academy,21868433|21868913 +Biophilia Rehabilitation Journal,Biophilia Rehabilitation Acdemy,13475568|18825559 +Biophysical Chemistry,Elsevier ,03014622| +Biophysical Journal,Elsevier ,00063495|15420086 +Biophysical Reviews,Springer-Verlag,18672450|18672469 +Biophysical Reviews and Letters,World Scientific ,17930480|17937035 +BIOPHYSICS,Pleiades Publishing,00063509|15556654 +BIOPHYSICS,Biophysical Society of Japan,13492942 +Biophysics,Hans Publishers,23301686|23301694 +Biophysics and Physicobiology,Biophysical Society of Japan,21894779 +Biophysics of Structure and Mechanism,Springer-Verlag,03401057| +Biophysics Reports,Springer-Verlag,23643439|23643420 +Biophysik,Springer-Verlag,00063517| +Biopolymers,Wiley Blackwell (John Wiley & Sons),00063525|10970282 +Biopolymers and Cell,"""Institute of Molecular Biology and Genetics, NAS Ukraine""",02337657|19936842 +Biopreservation and Biobanking,Mary Ann Liebert,19475535|19475543 +Bioprocess,Hans Publishers,21645566|21645582 +Bioprocess and Biosystems Engineering,Springer-Verlag,16157591|16157605 +Bioprocess Engineering,Springer-Verlag,0178515X| +BioProcessing Journal,BioProcessing Journal,15388786| +BioPsychoSocial Medicine,Springer (Biomed Central Ltd.),17510759|17510759 +Bioremediation Journal,Informa UK (Taylor & Francis),10889868|15476529 +BioResearch Open Access,Mary Ann Liebert,21647860|21647860 +Bioresource Technology,Elsevier ,09608524| +BioResources,BioResources,19302126 +Bioresources and Bioprocessing,Springer (Biomed Central Ltd.),21974365|21974365 +Biorheology,IOS Press,0006355X|18785034 +BIORISK – Biodiversity and Ecosystem Risk Assessment,Pensoft Publishers,13132644|13132652 +BIOS,BioOne (Beta Beta Biological Society),00053155|19436289 +Biosafety,OMICS Publishing Group,21670331 +Biosalud,Universidad de Caldas,16579550| +BioScience,Oxford University Press,00063568|15253244 +Bioscience and Microflora,BMFH Press,13421441|13498355 +Bioscience Biotechnology and Biochemistry,Informa UK (Taylor & Francis),09168451|13476947 +Bioscience Education,Informa UK (Taylor & Francis),14797860 +Bioscience Horizons,Oxford University Press,17547431 +Bioscience Hypotheses,Elsevier ,17562392| +Bioscience Journal,Fundacao de Apoio Universitario,19813163 +Bioscience Methods,"""Sophia Publishing Group, Inc.""",19251920 +Bioscience of Microbiota Food and Health,BMFH Press,21863342 +Bioscience Reports,Portland Press,01448463|15734935 +BioScience Trends,International Research and Cooperation Association for Bio & Socio-Sciences Advancement,18817815|18817823 +Biosciences Biotechnology Research Asia,Oriental Scientific Publishing Company,09731245| +BioScope South Asian Screen Studies,SAGE Publications,09749276|0976352X +Biosecurity and Bioterrorism Biodefense Strategy Practice and Science,Mary Ann Liebert,15387135|1557850X +Biosemiotics,Springer-Verlag,18751342|18751350 +Biosensors,Elsevier ,0265928X| +Biosensors,MDPI AG,20796374|20796374 +Biosensors and Bioelectronics,Elsevier ,09565663| +Biosensors Journal,OMICS Publishing Group,20904967|20904959 +Bioseparation,Springer (Kluwer Academic Publishers),0923179X| +BIOSILICO,Elsevier ,14785382| +Biosimilars,Dove Medical Press,2230245X +BioSocieties,Nature Publishing Group - Macmillan Publishers,17458552|17458560 +Biospectroscopy,Wiley Blackwell (John Wiley & Sons),10754261|15206343 +BIOspektrum,Springer-Verlag,09470867|18686249 +Biostatistics,Oxford University Press,14654644|14684357 +Biosurface and Biotribology,Elsevier ,24054518| +Biosystems,Elsevier ,03032647| +Biosystems and Information technology,Sia Tibit,22558004| +Biosystems Engineering,Elsevier ,15375110|15375129 +Biota Amazônia,Revista Biota Amazonia,21795746 +Biota Colombiana,Instituto de Investigacion de Recursos Biologicos Alexander von Humboldt (IAVH),01245376| +Biota Neotropica,SciELO,16760603|16760603 +Biotech Software & Internet Report,Mary Ann Liebert,15279162| +Biotech Today An International Journal of Biological Sciences,Diva Enterprises Private Limited,23192186|23220996 +Biotechnic & Histochemistry,Informa UK (Taylor & Francis),10520295|14737760 +BioTechniques,Informa UK (Informa Life Sciences),07366205|19409818 +BioTechnologia,Termedia Sp. z.o.o.,08607796| +Biotechnologia Acta,Co. Ltd. Ukrinformnauka,24107751|2410776X +Biotechnology,Nature Publishing Group,0733222X| +Biotechnology & Bioindustry,Informa UK (Taylor & Francis),02052067| +Biotechnology & Biotechnological Equipment,Informa UK (Taylor & Francis),13102818|13143530 +Biotechnology Advances,Elsevier ,07349750| +Biotechnology and Applied Biochemistry,Wiley Blackwell (John Wiley & Sons),08854513|14708744 +Biotechnology and Bioengineering,Wiley Blackwell (John Wiley & Sons),00063592|10970290 +Biotechnology and Bioprocess Engineering,Springer-Verlag,12268372|19763816 +Biotechnology and Genetic Engineering Reviews,Informa UK (Taylor & Francis),02648725|20465556 +Biotechnology and Health Sciences,International Neuroscience Institute,23830271|2383028X +Biotechnology and Molecular Biology Reviews,Academic Journals,15382273 +Biotechnology for Biofuels,Springer (Biomed Central Ltd.),17546834|17546834 +Biotechnology in Animal Husbandry,National Library of Serbia,14509156|22177140 +Biotechnology Journal,Wiley Blackwell (John Wiley & Sons),18606768|18607314 +Biotechnology Law Report,Mary Ann Liebert,0730031X|15578704 +Biotechnology Letters,Springer-Verlag,01415492|15736776 +Biotechnology Progress,Wiley Blackwell (John Wiley & Sons),87567938|15206033 +Biotechnology Reports,Elsevier ,2215017X| +Biotechnology Research International,Hindawi Publishing Corporation (Sage-Hindawi Access to Research),20903138|20903146 +Biotechnology Techniques,Springer-Verlag,0951208X|15736784 +Biotechnology Theory and practice,National Center for Biotechnology,10289399| +Biotechnology(Faisalabad),Science Alert,1682296X|16822978 +BIOtecnia,"""Division de Ciencias Biologicas y de la Salud, UNISON""",16651456|16651456 +Biotecnoloía en el Sector Agropecuario y Agroindustrial,Biotecnologia en el sector Agropecuario y Agroindustrial,19099959 +Bioteknologi,UNS Solo,02166887|23018658 +Biotemas,Universidade Federal de Santa Catarina,21757925|21757925 +Biotherapy,Springer-Verlag,0921299X|15738280 +Biotribology,Elsevier ,23525738| +BIOTROPIA,Seameo Biotrop,02156334|1907770X +Biotropica,Wiley Blackwell (Blackwell Publishing),00063606|17447429 +Biphasic Hydroformylation under Continuous Conditions,Thieme Publishing Group,20600119 +Bipolar Disorders,Wiley Blackwell (Blackwell Publishing),13985647|13995618 +Bird Behavior,Cognizant Communication Corp,01561383| +Bird Conservation International,Cambridge University Press,09592709|14740001 +Bird Study,Informa UK (Taylor & Francis),00063657|19446705 +Bird-Banding,JSTOR,00063630| +BIRDEM Medical Journal,Bangladesh Journals Online,23053712|23053720 +Birey ve Toplum Sosyal Bilimler Dergisi,Birey ve Toplum Sosyal Bilimler Dergisi,21464634|21482071 +Birikim,Ankara University,13008358 +Birth,Wiley Blackwell (Blackwell Publishing),07307659|1523536X +Birth Defects Research Part A Clinical and Molecular Teratology,Wiley Blackwell (John Wiley & Sons),15420752|15420760 +Birth Defects Research Part B Developmental and Reproductive Toxicology,Wiley Blackwell (John Wiley & Sons),15429733|15429741 +Birth Defects Research Part C Embryo Today Reviews,Wiley Blackwell (John Wiley & Sons),1542975X|15429768 +Bisnis & Birokrasi Journal,Jurnal Ilmu Administrasi dan Organisasi: Bisnis & Birokrasi,08543844| +BIT Numerical Mathematics,Springer-Verlag,00063835|15729125 +Bitácora Urbano Territorial,Universidad Nacional de Colombia,01247913|2027145X +Bitlis Eren Üniversitesi Fen Bilimleri Dergisi,Bitlis Eren Universitesi Fen Bilimleri Dergisi,21473188 +Bitlis Eren University Journal of Science and Technology,Bitlis Eren University Journal of Science and Technology,21467706 +Bitlis Eren University Journal of Science and Technology,Bitlis Eren University Journal of Science and Technology,21467706 +Biuletyn Instytutu Spawalnictwa,Instytut Spawalnictwa,0867583X|23001674 +Biuletyn Państwowego Instytutu Geologicznego,Index Copernicus International,08676143| +Biuletyn Polskiej Misji Historycznej,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,20837755|2391792X +Bizinfo Blace,Centre for Evaluation in Education and Science,22172769| +Biztosítás és Kockázat,Biztositas es Kockazat,20649584| +BJA Education,Oxford University Press,20585349|20585357 +BJHS Themes,Cambridge University Press,2058850X|2056354X +BJOG An International Journal of Obstetrics & Gynaecology,Wiley Blackwell (Blackwell Publishing),14700328|14710528 +BJPscyh Advances,Royal College of Psychiatrists,20564678|20564686 +BJPsych Bulletin,Royal College of Psychiatrists,20564694|20564708 +BJR|case reports,British Institute of Radiology,20557159 +BJU International,Wiley Blackwell (Blackwell Publishing),14644096|1464410X +BJUI,Wiley Blackwell (John Wiley & Sons),20422997 +Black American Literature Forum,JSTOR,01486179| +Black Ball A Negro Leagues Journal,"""McFarland & Company, Inc. """,19398484|19398379 +Black Camera,Indiana University Press,15363155|19474237 +Black Music Research Journal,University of Illinois Press,02763605|19461615 +Black Theology,Informa UK (Taylor & Francis),14769948|17431670 +Black Women Gender + Families,University of Illinois Press,19352743|19446462 +Bladder,Journal of Biological Methods,23272120 +Bladder Cancer,IOS Press,23523727|23523735 +Blätter der DGVFM,Springer-Verlag,18640281|18640303 +Blätter der Wohlfahrtspflege,Nomos Verlag,03408574| +Blickpunkt Medizin,Thieme Publishing Group,21997810|21997829 +BLL Review,Emerald (MCB UP ),03056503| +Blood,American Society of Hematology,00064971|15280020 +Blood & Vessel,The Japanese Society on Thrombosis and Hemostasis,03869717|18842372 +Blood and Lymphatic Cancer Targets and Therapy,Dove Medical Press,11799889 +Blood Cancer Journal,Nature Publishing Group,20445385 +Blood Cells Molecules and Diseases,Elsevier ,10799796|10960961 +Blood Coagulation & Fibrinolysis,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,09575235| +Blood Pressure,Informa UK (Taylor & Francis),08037051|16511999 +Blood Pressure Monitoring,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,13595237| +Blood Purification,S. Karger AG,02535068|14219735 +Blood Research,Korean Society of Hematology; Korean Society of Blood and Marrow Transplantation; Korean Society of Pediatric Hematology-Oncology; Korean Society on Thrombosis and Hemostasis (KAMJE),2287979X|22880011 +Blood Reviews,Elsevier ,0268960X| +Blucher Chemistry Proceedings,"""Editora Edgard Blucher, Ltda.""", +Blucher Design Proceedings,"""Editora Edgard Blucher, Ltda.""", +Blucher Medical Proceedings,"""Editora Edgard Blucher, Ltda.""", +Blumea - Biodiversity Evolution and Biogeography of Plants,Naturalis Biodiversity Center,00065196| +Blut Zeitschrift für die gesamte Blutforschung,Springer-Verlag,00065242| +BMB Reports,Korean Society for Biochemistry and Molecular Biology - BMB Reports,19766696|1976670X +BMC Anesthesiology,Springer (Biomed Central Ltd.),14712253|14712253 +BMC Biochemistry,Springer (Biomed Central Ltd.),14712091|14712091 +BMC Bioinformatics,Springer (Biomed Central Ltd.),14712105|14712105 +BMC Biology,Springer (Biomed Central Ltd.),17417007|17417007 +BMC Biophysics,Springer (Biomed Central Ltd.),20461682|20461682 +BMC Biotechnology,Springer (Biomed Central Ltd.),14726750|14726750 +BMC Blood Disorders,Springer (Biomed Central Ltd.),14712326| +BMC Cancer,Springer (Biomed Central Ltd.),14712407|14712407 +BMC Cardiovascular Disorders,Springer (Biomed Central Ltd.),14712261|14712261 +BMC Cell Biology,Springer (Biomed Central Ltd.),14712121|14712121 +BMC Chemical Biology,Springer (Biomed Central Ltd.),14726769| +BMC Clinical Pathology,Springer (Biomed Central Ltd.),14726890|14726890 +BMC Clinical Pharmacology,Springer (Biomed Central Ltd.),14726904| +BMC Complementary and Alternative Medicine,Springer (Biomed Central Ltd.),14726882|14726882 +BMC Dermatology,Springer (Biomed Central Ltd.),14715945|14715945 +BMC Developmental Biology,Springer (Biomed Central Ltd.),1471213X|1471213X +BMC Ear Nose and Throat Disorders,Springer (Biomed Central Ltd.),14726815|14726815 +BMC Ecology,Springer (Biomed Central Ltd.),14726785|14726785 +BMC Emergency Medicine,Springer (Biomed Central Ltd.),1471227X|1471227X +BMC Endocrine Disorders,Springer (Biomed Central Ltd.),14726823|14726823 +BMC Evolutionary Biology,Springer (Biomed Central Ltd.),14712148|14712148 +BMC Family Practice,Springer (Biomed Central Ltd.),14712296|14712296 +BMC Gastroenterology,Springer (Biomed Central Ltd.),1471230X|1471230X +BMC Genetics,Springer (Biomed Central Ltd.),14712156|14712156 +BMC Genomics,Springer (Biomed Central Ltd.),14712164|14712164 +BMC Geriatrics,Springer (Biomed Central Ltd.),14712318|14712318 +BMC Health Services Research,Springer (Biomed Central Ltd.),14726963|14726963 +BMC Hematology,Springer (Biomed Central Ltd.),20521839|20521839 +BMC Immunology,Springer (Biomed Central Ltd.),14712172|14712172 +BMC Infectious Diseases,Springer (Biomed Central Ltd.),14712334|14712334 +BMC International Health and Human Rights,Springer (Biomed Central Ltd.),1472698X|1472698X +BMC Medical Education,Springer (Biomed Central Ltd.),14726920|14726920 +BMC Medical Ethics,Springer (Biomed Central Ltd.),14726939|14726939 +BMC Medical Genetics,Springer (Biomed Central Ltd.),14712350|14712350 +BMC Medical Genomics,Springer (Biomed Central Ltd.),17558794|17558794 +BMC Medical Imaging,Springer (Biomed Central Ltd.),14712342|14712342 +BMC Medical Informatics and Decision Making,Springer (Biomed Central Ltd.),14726947|14726947 +BMC Medical Physics,Springer (Biomed Central Ltd.),17566649| +BMC Medical Research Methodology,Springer (Biomed Central Ltd.),14712288|14712288 +BMC Medicine,Springer (Biomed Central Ltd.),17417015|17417015 +BMC Meeting Abstracts,Springer (Biomed Central Ltd.),20484623| +BMC Microbiology,Springer (Biomed Central Ltd.),14712180|14712180 +BMC Molecular Biology,Springer (Biomed Central Ltd.),14712199|14712199 +BMC Musculoskeletal Disorders,Springer (Biomed Central Ltd.),14712474|14712474 +BMC Nephrology,Springer (Biomed Central Ltd.),14712369|14712369 +BMC Neurology,Springer (Biomed Central Ltd.),14712377|14712377 +BMC Neuroscience,Springer (Biomed Central Ltd.),14712202|14712202 +BMC Nuclear Medicine,Springer (Biomed Central Ltd.),14712385| +BMC Nursing,Springer (Biomed Central Ltd.),14726955|14726955 +BMC Nutrition,Springer (Biomed Central Ltd.),20550928|20550928 +BMC Obesity,Springer (Biomed Central Ltd.),20529538|20529538 +BMC Ophthalmology,Springer (Biomed Central Ltd.),14712415|14712415 +BMC Oral Health,Springer (Biomed Central Ltd.),14726831|14726831 +BMC Palliative Care,Springer (Biomed Central Ltd.),1472684X|1472684X +BMC Pediatrics,Springer (Biomed Central Ltd.),14712431|14712431 +BMC Pharmacology,Springer (Biomed Central Ltd.),14712210| +BMC Pharmacology and Toxicology,Springer (Biomed Central Ltd.),20506511|20506511 +BMC Physiology,Springer (Biomed Central Ltd.),14726793|14726793 +BMC Plant Biology,Springer (Biomed Central Ltd.),14712229|14712229 +BMC Pregnancy and Childbirth,Springer (Biomed Central Ltd.),14712393|14712393 +BMC Proceedings,Springer (Biomed Central Ltd.),17536561| +BMC Psychiatry,Springer (Biomed Central Ltd.),1471244X|1471244X +BMC Psychology,Springer (Biomed Central Ltd.),20507283|20507283 +BMC Public Health,Springer (Biomed Central Ltd.),14712458|14712458 +BMC Pulmonary Medicine,Springer (Biomed Central Ltd.),14712466|14712466 +BMC Research Notes,Springer (Biomed Central Ltd.),17560500|17560500 +BMC Sports Science Medicine and Rehabilitation,Springer (Biomed Central Ltd.),20521847|20521847 +BMC Sports Science Medicine and Rehabilitation,Springer (Biomed Central Ltd.),20521847| +BMC Structural Biology,Springer (Biomed Central Ltd.),14726807|14726807 +BMC Surgery,Springer (Biomed Central Ltd.),14712482|14712482 +BMC Systems Biology,Springer (Biomed Central Ltd.),17520509|17520509 +BMC Urology,Springer (Biomed Central Ltd.),14712490|14712490 +BMC Veterinary Research,Springer (Biomed Central Ltd.),17466148|17466148 +BMC Women s Health,Springer (Biomed Central Ltd.),14726874|14726874 +BMGN - Low Countries Historical Review,Uopen Journals,01650505|22112898 +BMJ,BMJ,17561833 +BMJ,BMJ,09598138|14685833 +BMJ Case Reports,BMJ,1757790X|1757790X +BMJ Innovations,BMJ,20558074|2055642X +BMJ Open,BMJ,20446055|20446055 +BMJ Open Diabetes Research & Care,BMJ,20524897 +BMJ Open Gastroenterology,BMJ,20544774 +BMJ Open Respiratory Research,BMJ,20524439 +BMJ Open Sport & Exercise Medicine,BMJ,20557647 +BMJ Quality & Safety,BMJ,14753898|14753901 +BMJ Quality & Safety,BMJ,20445415|20445423 +BMJ Quality Improvement Reports,BMJ,20501315 +BMJ Simulation and Technology Enhanced Learning,BMJ,20566697 +BMJ Supportive & Palliative Care,BMJ,2045435X|20454368 +Board & Administrator for Administrators Only,Wiley Blackwell (John Wiley & Sons),15257878|19493215 +Board Leadership,Wiley Blackwell (John Wiley & Sons),10614249|15427862 +Bocconea,Fondazione Pro Herbario Mediterraneo,11204060|22803882 +Bochumer Philosophisches Jahrbuch für Antike und Mittelalter,John Benjamins Publishing Company,13846663|15699684 +Bodenkunde und Pflanzenernährung,Wiley Blackwell (John Wiley & Sons),03662136| +Bodhi An Interdisciplinary Journal,Nepal Journals Online,20910479| +Body & Society,SAGE Publications,1357034X|00000000 +Body Image,Elsevier ,17401445| +Body Movement and Dance in Psychotherapy,Informa UK (Taylor & Francis),17432979|17432987 +Bolema Boletim de Educação Matemática,SciELO,0103636X|19804415 +Boletim Amazônico de Geografia,Boletim Amazonico de Geografia,23587040 +Boletim da Biblioteca da Universidade de Coimbra,Coimbra University Press,08700273|16478436 +Boletim da Faculdade de Filosofia Ciências e Letras Universidade de São Paulo Botânica,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,00680362|23185988 +Boletim da Sociedade Brasileira de Matemática,Springer-Verlag,01003569| +Boletim da Sociedade Paranaense de Matemática,Sociedade Paranaense de Matematica,00378712|21751188 +Boletim de Botânica,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,03022439|23169052 +Boletim de Ciências Económicas,Coimbra University Press,08704260| +Boletim de Ciências Geodésicas,SciELO,19822170 +Boletim de Estudos Clássicos,Coimbra University Press,08722110| +Boletim de Geografia,Universidade Estadual de Maringa,01025198|21764786 +Boletim de Indústria Animal,Instituto do Zootecnia,19814100 +Boletim de Pesquisa NELIC,Universidade Federal de Santa Catarina,15187284|1984784X +Boletim de Pneumologia Sanitária,Instituto Evandro Chagas,0103460X| +Boletim do Arquivo da Universidade de Coimbra,Coimbra University Press,21827974 +Boletim do Centro de Pesquisa de Processamento de Alimentos,Universidade Federal do Parana,01020323|19839774 +Boletim do Instituto Oceanográfico,SciELO,03735524| +Boletim do Instituto Paulista de Oceanografia,SciELO,01004239| +Boletim do Museu Paraense Emílio Goeldi Ciências Humanas,SciELO,19818122|21782547 +Boletim do Observatório Ambiental Alberto Ribeiro Lamego,Essentia Editora,21774560|21774560 +Boletim GEPEM,Editora Cubo Multimidia,21762988 +Boletim Goiano de Geografia,Universidade Federal de Goias,0101708X|19848501 +Boletim IG,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,01003879|23168978 +Boletim IG-USP Publicação Especial,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,01026275|23178078 +Boletim IG-USP Série Científica,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,01026283|23168986 +Boletim IG-USP Série Didática,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,01026291|2316896X +Boletim IGA,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,01003925|23169001 +Boletim Paranaense de Geociências,Universidade Federal do Parana,0067964X|0067964X +Boletim Técnico Científico do CEPNOR,Tropical Journal of Fisheries and Aquatic Sciences,16765664 +Boletín CDD,SIIS - Centro de Documentacion y Estudios,11331674| +Boletín CF+S,Instituto Juan de Herrera,1578097X +Boletín chileno de parasitología,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,3659402 +Boletín Científico Centro de Museos Museo de Historia Natural,Universidad de Caldas,01233068| +Boletín de AELFA,Elsevier ,11378174| +Boletín de Antropología,Universidad de Antioquia,01202510| +Boletín de Ciencias de la Tierra,Universidad Nacional de Colombia,01203630|23573740 +Boletín de filología,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7189303 +Boletín de la Asociación Internacional de Derecho Cooperativo,University of Deusto,1134993X|23864893 +Boletín de la Sociedad Chilena de Química,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,3661644 +Boletín de la Sociedad Española de Cerámica y Vidrio,Elsevier ,03663175|21730431 +Boletín de la Sociedad Española de Historia Natural,Smithsonian Institution Biodiversity Heritage Library,05837499| +Boletín de la Sociedad Matemática Mexicana,Springer-Verlag,1405213X|22964495 +Boletín de Matemáticas,Universidad Nacional de Colombia,01200380|23576529 +Boletín del Museo Chileno de Arte Precolombino,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7186894 +Boletín Galego de Literatura,University of Santiago de Compostela,02149117| +Boletín Médico del Hospital Infantil de México,Elsevier ,16651146| +Boletín Mexicano de Derecho Comparado,Elsevier ,00418633| +Boletín Terapéutico Andaluz,CADIME Centro Andaluz de Informacion de Medicamentos,02129450|02129450 +Bolivian Studies Journal/Revista de Estudios Bolivianos,"""University Library System, University of Pittsburgh""",10742247|21565163 +Bolletino di zoologia,Informa UK (Taylor & Francis),03734137| +Bollettino dei musei di zoologia ed anatomia comparata della R Università di Torino,Smithsonian Institution Biodiversity Heritage Library,03934683| +Bollettino dell Unione Matematica Italiana,Springer-Verlag,19726724|21982759 +Bollettino della Società dei naturalisti in Napoli,Smithsonian Institution Biodiversity Heritage Library,03662047| +Bollettino della Società Entomologica Italiana,PAGEPress Publications,03733491|22819282 +Bombay Natural History Society (BNHS),Bombay Natural History Society,66982 +Bone,Elsevier ,87563282|87563282 +Bone Abstracts,Bioscientifica,20521219 +Bone and Joint 360,British Editorial Society of Bone and Joint Surgery,20480091| +Bone and Joint Research,British Editorial Society of Bone and Joint Surgery,20463758 +Bone and Mineral,Elsevier ,01696009| +Bone and Tissue Regeneration Insights,"""Libertas Academica, Ltd.""",1179061X +Bone Marrow Research,Hindawi Publishing Corporation,20902999|20903006 +Bone Marrow Transplantation,Nature Publishing Group,02683369|02683369 +Bone Reports,Elsevier ,23521872| +Bone Research,Nature Publishing Group,20954700|20956231 +BoneKEy Reports,Nature Publishing Group,20476396 +BoneKEy-Osteovision,Nature Publishing Group,15334368 +Bonfring International Journal of Advances in Image Processing,Bonfring,22501053|2277503X +Bonfring International Journal of Data Mining,Bonfring,2250107X|22775048 +Bonfring International Journal of Industrial Engineering and Management Science,Bonfring,22501096|22775056 +Bonfring International Journal of Man Machine Interface,Bonfring,22501061|22775064 +Bonfring International Journal of Networking Technologies and Applications,Bonfring,22790152|23205377 +Bonfring International Journal of Power Systems and Integrated Circuits,Bonfring,22501088|22775072 +Bonfring International Journal of Research in Communication Engineering,Bonfring,2250110X|22775080 +Bonfring International Journal of Software Engineering and Soft Computing,Bonfring,22501045|22775099 +Book 2 0,Intellect,20428022|20428030 +Book History,Muse - Johns Hopkins University Press,15291499 +Book Research Quarterly,Springer-Verlag,07416148| +Bookbird A Journal of International Children s Literature,Muse - Johns Hopkins University Press,19186983 +Books Abroad,JSTOR,00067431| +Books Ireland,JSTOR,03766039| +Boom A Journal of California,University of California Press,21538018|2153764X +Borderline Personality Disorder and Emotion Dysregulation,Springer (Biomed Central Ltd.),20516673|20516673 +Bordón Revista de Pedagogía,Sociedad Espanola de Pedagogia,02105934|23406577 +Borealis – An International Journal of Hispanic Linguistics,UiT The Arctic University of Norway,18933211|18933211 +Boreas,Wiley Blackwell (Blackwell Publishing),03009483|15023885 +Bőrgyógyászati és Venerológiai Szemle,Hungarian Dermatological Society,00067768| +Borsa Istanbul Review,Elsevier ,22148450| +Bosnian Journal of Basic Medical Sciences,Association of Basic Medical Sciences of FBIH,15128601|18404812 +Bosque (Valdivia),SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,03048799|07179200 +Boston journal of natural history,Smithsonian Institution Biodiversity Heritage Library,02715716| +Boston Medical and Surgical Journal,New England Journal of Medicine,00966762| +Botanica Acta,Wiley Blackwell (Blackwell Publishing),09328629| +Botanica Complutensis,Universidad Complutense de Madrid,02144565|19882874 +Botanica Helvetica,Springer-Verlag,02531453|14209063 +Botanica Lithuanica,De Gruyter Open Sp. z o.o. ,13921665|2029932X +Botanica Marina,Walter de Gruyter GmbH,00068055|14374323 +Botanica Orientalis Journal of Plant Science,Nepal Journals Online,17266858| +Botanica Pacifica,Botanical Garden - Institute of the Far Eastern Branch of the RAS,22264701|24103713 +Botanical Bulletin,The University of Chicago Press,15294560| +Botanical Gazette,The University of Chicago Press,00068071| +Botanical Journal of Scotland,Informa UK (Taylor & Francis),13594869| +Botanical Journal of the Linnean Society,Wiley Blackwell (Blackwell Publishing),00244074|10958339 +Botanical Research,Hans Publishers,21685665|21685673 +Botanical Sciences,"""Botanical Sciences, Sociedad Botanica de Mexico""",20074298|20074476 +Botanical Studies,Springer (Biomed Central Ltd.),19993110|19993110 +Botanics Targets and Therapy,Dove Medical Press,11799897 +Botanikai Közlemények,Botanikai Kozlemenyek,00068144|24159662 +Botanische Jahrbücher,Schweizerbart,00068152|00000000 +Botany,Canadian Science Publishing,19162790|19162804 +Botany Letters,Informa UK (Taylor & Francis),23818107|23818115 +Botany Research Journal,Science Alert,19954751| +Bothalia,AOSIS,00068241|23119284 +Botswana Journal of Economics,African Journals Online ,18100163|18100163 +Botswana Journal of Technology,African Journals Online ,10191593 +Bouhouth Magazine,"""Al Manhal FZ, LLC""",23131004| +boundary 2,Duke University Press,01903659|15272141 +Boundary Field Problems and Computer Simulation,Riga Technical University,22559124|22559132 +Boundary Value Problems,Springer (Biomed Central Ltd.),16872762|16872770 +Boundary-Layer Meteorology,Springer-Verlag,00068314|15731472 +Bowen Journal of Agriculture,African Journals Online ,15972836 +Bozok Tıp Dergisi,Bozok Tip Dergisi,21464006|21482438 +Brachytherapy,Elsevier ,15384721| +Bradley His Book,JSTOR,19480717| +Bradley Studies,Philosophy Documentation Center,13620916| +Bragantia,SciELO,16784499 +Bragantia,SciELO,00068705|00068705 +Brain,Oxford University Press,00068950|14602156 +Brain & Neurorehabilitation,Korean Society for Neurorehabilitation (KAMJE),19768753|23839910 +Brain and Behavior,Wiley Blackwell (John Wiley & Sons),21623279| +Brain and Behavior,Wiley Blackwell (John Wiley & Sons),21579032| +Brain and Cognition,Elsevier ,02782626|10902147 +Brain and Development,Elsevier ,03877604| +Brain and Language,Elsevier ,0093934X|10902155 +Brain and Mind,Springer (Kluwer Academic Publishers),13891987| +Brain Behavior and Evolution,S. Karger AG,00068977|14219743 +Brain Behavior and Immunity,Elsevier ,08891591|10902139 +Brain Cell Biology,Springer-Verlag,15597105|15597113 +Brain Circulation,Medknow Publications,23948108| +Brain Connectivity,Mary Ann Liebert,21580014|21580022 +Brain Disorders & Therapy,OMICS Publishing Group,2168975X +Brain Imaging and Behavior,Springer-Verlag,19317557|19317565 +Brain Impairment,Cambridge University Press,14439646|18395252 +Brain Informatics,Springer-Verlag,21984018|21984026 +Brain Injury,Informa UK (Taylor & Francis),02699052|1362301X +Brain Pathology,Wiley Blackwell (Blackwell Publishing),10156305|17503639 +Brain Plasticity,IOS Press,22136304|22136312 +Brain Research,Elsevier ,00068993|00068993 +Brain Research Bulletin,Elsevier ,03619230| +Brain Research Protocols,Elsevier ,1385299X| +Brain Research Reviews,Elsevier ,01650173| +Brain Sciences,MDPI AG,20763425 +Brain Stimulation,Elsevier ,1935861X| +Brain Structure and Function,Springer-Verlag,18632653|18632661 +Brain Topography,Springer-Verlag,08960267|15736792 +Brain Tumor Pathology,Springer-Verlag,14337398|1861387X +Brain Tumor Research and Treatment,The Korean Brain Tumor Society; The Korean Society for Neuro-Oncology (KAMJE),22882405|22882413 +Brain-Computer Interfaces,Informa UK (Taylor & Francis),2326263X|23262621 +Brasília Médica,Associacao Medica de Brasilia,05242053|22365117 +Bratislava Medical Journal,"""AEPress, s.r.o.""",13360345 +Brazilian Archives of Biology and Technology,SciELO,15168913|15168913 +Brazilian Business Review,Fucape Business School,18082386 +Brazilian Dental Journal,SciELO,01036440|01036440 +Brazilian Dental Science,Lepidus Tecnologia,16782046|21786011 +Brazilian Journal of Allergy and Immunology (BJAI),GN1 Genesis Network,23185015| +Brazilian Journal of Anesthesiology,Elsevier ,00347094| +Brazilian Journal of Anesthesiology (Edicion en Espanol),Elsevier ,22554963| +Brazilian Journal of Anesthesiology (English Edition),Elsevier ,01040014| +Brazilian Journal of Aquatic Science and Technology,Editora UNIVALI,18087035|19839057 +Brazilian Journal of Biology,SciELO,15196984|15196984 +Brazilian Journal of Botany,Springer-Verlag,18069959|18069959 +Brazilian Journal of Cardiovascular Surgery,GN1 Genesis Network,01027638|16789741 +Brazilian Journal of Chemical Engineering,SciELO,01046632|01046632 +BRAZILIAN JOURNAL OF FOOD TECHNOLOGY,SciELO,19816723|19816723 +Brazilian Journal of Forensic Science Medical Law and Bioethics,"""Brazilian Journal of Forensic Sciences, Medical Law and Bioethics""",2237261X +Brazilian Journal of Genetics,SciELO,01008455|01008455 +Brazilian Journal of Geology,SciELO,23174889|23174692 +Brazilian Journal of Information Science,UNESP - Universidade Estdual Paulista,19811640 +Brazilian Journal of Instrumentation and Control,Universidade Tecnologica Federal do Parana,23184531 +Brazilian Journal of Internal Medicine,Brazilian Journal of Internal Medicine,24464899| +Brazilian Journal of International Relations,Brazilian Journal of International Relations,22377743 +Brazilian Journal of Medical and Biological Research,SciELO,1414431X|1414431X +Brazilian Journal of Medical and Biological Research,SciELO,0100879X|0100879X +Brazilian Journal of Medicine and Human Health,Escola Bahiana de Medicine e Saude Publica,23173386|23173386 +Brazilian Journal of Microbiology,Elsevier ,1678-4405|15178382 +Brazilian Journal of Motor Behavior,Brazilian Journal for Motor Behavior,19805586|24464902 +Brazilian Journal of Oceanography,SciELO,16798759|16798759 +Brazilian Journal of Oceanography,SciELO,1982436X|16798759 +Brazilian Journal of Operations & Production Management,Associacao Brasileira de Engenharia de Producao - ABEPRO,16798171|16798171 +Brazilian Journal of Oral Sciences,SciELO,16773225|16773225 +Brazilian Journal of Otorhinolaryngology,Elsevier ,18088694|18088694 +Brazilian Journal of Petroleum and Gas,Brazilian Journal of Petroleum and Gas,19820593|19820593 +Brazilian Journal of Pharmaceutical Sciences,SciELO,19848250|19848250 +Brazilian Journal of Physical Therapy,SciELO,14133555|14133555 +Brazilian Journal of Physics,Springer-Verlag,01039733|01039733 +Brazilian Journal of Plant Physiology,SciELO,16770420|16770420 +Brazilian Journal of Probability and Statistics,Institute of Mathematical Statistics,01030752| +Brazilian Journal of Radiation Sciences,Sociedade Brasileira de Protecao Radiologica - SBPR,23190612|23190612 +Brazilian Journal of Science and Technology,Springer (Biomed Central Ltd.),2196288X|2196288X +Brazilian Journal of Thermal Analysis,Instituto Internacional de Analise Termica,23169842| +Brazilian Journal of Veterinary Research and Animal Science,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,14139596|14139596 +Brazilian Oral Research,SciELO,18068324|18068324 +Brazilian Political Science Review,SciELO,19813821 +BRC Journal of Advances in Business,Cambria Press,21528616|21528667 +BRC Journal of Advances in Education,Cambria Press,21528810|21528829 +Breast Cancer,Springer-Verlag,13406868|18804233 +Breast Cancer Basic and Clinical Research,"""Libertas Academica, Ltd.""",11782234 +Breast Cancer Management,Future Medicine,17581923|17581931 +Breast Cancer Online,Cambridge University Press,14709031|14709031 +Breast Cancer Reports,Herbert Publications,20571631 +Breast Cancer Research,Springer (Biomed Central Ltd.),14655411|14655411 +Breast Cancer Research and Treatment,Springer-Verlag,01676806|15737217 +Breast Cancer Targets and Therapy,Dove Medical Press,11791314 +Breast Care,S. Karger AG,16613791|16613805 +Breast Disease,IOS Press,08886008|15581551 +Breast Diseases A Year Book Quarterly,Elsevier ,1043321X| +Breastfeeding Medicine,Mary Ann Liebert,15568253|15568342 +Breathe,European Respiratory Society ,18106838|20734735 +Breeding Research,Japanese Society of Breeding,13447629|13481290 +Breeding Science,Japanese Society of Breeding,13447610|13473735 +Brésil(s),OpenEdition,22570543|2425231X +Breviora,"""BioOne (Museum of Comparative Zoology, Harvard University)""",00069698|19382979 +BRICS Report Series,Aarhus University Library,09090878|16015355 +Bridge Structures,IOS Press,15732487|17448999 +Bridges,Indiana University Press,10468358|15589552 +Brief Treatment and Crisis Intervention,Portico,14743310|14743329 +Briefings in Bioinformatics,Oxford University Press,14675463|14774054 +Briefings in Functional Genomics,Oxford University Press,20412649|20412647 +Briefings in Functional Genomics and Proteomics,Oxford University Press,14739550|14774062 +Briefings in Real Estate Finance,Wiley Blackwell (John Wiley & Sons),14731894|15550990 +Brigham Young University science bulletin,Smithsonian Institution Biodiversity Heritage Library,00681024| +Brill Open Biology,Brill Academic Publishers,23527056|23527056 +Brill Open Humanities,Brill Academic Publishers,23527064|23527064 +Brill Open Law,Brill Academic Publishers,23527072|23527072 +Brill Open Social Sciences,Brill Academic Publishers,23527080|23527080 +Brill Research Perspectives in Diplomacy and Foreign Policy,Brill Academic Publishers,24055999|24056006 +Brill s Annual of Afroasiatic Languages and Linguistics,Brill Academic Publishers,18766633|18776930 +Britain and the World,Edinburgh University Press,20438567|20438575 +Britannia,Cambridge University Press,0068113X|17535352 +British Actuarial Journal,Cambridge University Press,13573217|20440456 +British Art Studies,Paul Mellon Centre for Studies In British Art,20585462 +British Biotechnology Journal,Sciencedomain International,22312927 +British Catholic History,Cambridge University Press,20557973|20557981 +British Ceramic Transactions,Maney Publishing,09679782|00000000 +British Corrosion Journal,Maney Publishing,00070599|00000000 +British Educational Research Journal,Wiley Blackwell (John Wiley & Sons),01411926|14693518 +British Elections and Parties Yearbook,Informa UK (Taylor & Francis),09682481| +British Food Journal,Emerald (MCB UP ),0007070X|00000000 +British Homeopathic Journal,Nature Publishing Group,70785 +British Homoeopathic journal,Elsevier ,00070785| +British Journal for the History of Philosophy,Informa UK (Taylor & Francis),09608788|14693526 +British Journal of Addiction,Wiley Blackwell (Blackwell Publishing),09520481| +British Journal of Addiction to Alcohol & Other Drugs,Wiley Blackwell (Blackwell Publishing),00070890| +British Journal of Anaesthesia,Oxford University Press,00070912|14716771 +British Journal of Anaesthetic and Recovery Nursing,Cambridge University Press,17426456|17442192 +British Journal of Applied Physics,IOP Publishing,05083443| +British Journal of Applied Science & Technology,Sciencedomain International,22310843 +British Journal of Audiology,Informa UK (Informa Healthcare),03005364| +British Journal of Canadian Studies,Liverpool University Press,02699222|17578078 +British Journal of Cancer,Nature Publishing Group,00070920|15321827 +British Journal of Cardiac Nursing,Mark Allen Group,17496403|20522207 +British Journal of Cardiology,"""Medinews (Cardiology), Ltd.""",09696113| +British Journal of Clinical Governance,Emerald (MCB UP ),14664100|00000000 +British Journal of Clinical Pharmacology,Wiley Blackwell (Blackwell Publishing),03065251|13652125 +British Journal of Clinical Psychology,Wiley Blackwell (Blackwell Publishing),01446657| +British Journal of Community Health Nursing,Mark Allen Group,13624407| +British Journal of Community Nursing,Mark Allen Group,14624753|20522215 +British Journal of Criminology,Oxford University Press,00070955|14643529 +British Journal of Dairy Sciences,Maxwell Scientific Publication Corp.,20442432|20442440 +British Journal of Dermatology,Wiley Blackwell (Blackwell Publishing),00070963|13652133 +British Journal of Developmental Psychology,Wiley Blackwell (Blackwell Publishing),0261510X|00000000 +British Journal of Diabetes,"""ABCD Diabetes Care, LTD.""",23976233|23976241 +British Journal of Diseases of the Chest,Elsevier ,00070971| +British Journal of Economics Management & Trade,Sciencedomain International,2278098X +British Journal of Education & Work,Informa UK (Taylor & Francis),02690004| +British Journal of Education Society & Behavioural Science,Sciencedomain International,22780998 +British Journal of Educational Psychology,Wiley Blackwell (Blackwell Publishing),00070998|20448279 +British Journal of Educational Studies,Informa UK (Taylor & Francis),00071005|14678527 +British Journal of Educational Technology,Wiley Blackwell (Blackwell Publishing),00071013|14678535 +British Journal of Environment and Climate Change,Sciencedomain International,22314784 +British Journal of Ethnomusicology,Informa UK (Taylor & Francis),09681221| +British Journal of General Practice,Royal College of General Practitioners,09601643|14785242 +British Journal of Guidance and Counselling,Informa UK (Taylor & Francis),03069885|14693534 +British Journal of Haematology,Wiley Blackwell (Blackwell Publishing),00071048|13652141 +British Journal of Health Psychology,Wiley Blackwell (Blackwell Publishing),1359107X|00000000 +British Journal of Healthcare Assistants,Mark Allen Group,17531586|20524420 +British Journal of Healthcare Management,Mark Allen Group,13580574|17597382 +British Journal of Hospital Medicine,Mark Allen Group,17508460|17597390 +British Journal of In-Service Education,Informa UK (Taylor & Francis),03057631| +British Journal of Industrial Relations,Wiley Blackwell (Blackwell Publishing),00071080|14678543 +British Journal of Infection Control,SAGE Publications,14690446| +British Journal of International Studies,Cambridge University Press,03058026| +British Journal of Law and Society,JSTOR,03063704| +British Journal of Learning Disabilities,Wiley Blackwell (Blackwell Publishing),13544187|14683156 +British Journal of Management,Wiley Blackwell (Blackwell Publishing),10453172|14678551 +British Journal of Mathematical and Statistical Psychology,Wiley Blackwell (Blackwell Publishing),00071102|20448317 +British Journal of Mathematics & Computer Science,Sciencedomain International,22310851 +British Journal of Medical and Surgical Urology,SAGE Publications,18759742| +British Journal of Medical Psychology,Wiley Blackwell (Blackwell Publishing),00071129| +British Journal of Medicine and Medical Research,Sciencedomain International,22310614 +British Journal of Mental Health Nursing,Mark Allen Group,20495919|2052496X +British Journal of Middle Eastern Studies,Informa UK (Taylor & Francis),13530194|14693542 +British Journal of Midwifery,Mark Allen Group,09694900|20524307 +British Journal of Music Education,Cambridge University Press,02650517|14692104 +British Journal of Music Therapy,SAGE Publications,13594575|20599773 +British Journal of Neuroscience Nursing,Mark Allen Group,17470307|20522800 +British Journal of Neurosurgery,Informa UK (Taylor & Francis),02688697|1360046X +British Journal of Nursing,Mark Allen Group,09660461|20522819 +British Journal Of Nutrition,Cambridge University Press,00071145|14752662 +British Journal of Obstetrics and Gynaecology,Elsevier ,03065456| +British Journal of Occupational Therapy,SAGE Publications,03080226|14776006 +British Journal of Ophthalmology,BMJ,00071161|14682079 +British Journal of Oral and Maxillofacial Surgery,Elsevier ,02664356| +British Journal of Orthodontics,Maney Publishing,0301228X| +British Journal of Pain,SAGE Publications,20494637|20494645 +British Journal of Pharmaceutical Research,Sciencedomain International,22312919 +British Journal of Pharmacology,Wiley Blackwell (Blackwell Publishing),00071188|14765381 +British Journal of Pharmacology and Chemotherapy,Wiley Blackwell (Blackwell Publishing),03660826| +British Journal of Pharmacology and Toxicology,Maxwell Scientific Publication Corp.,20442459|20442467 +British Journal of Plastic Surgery,Elsevier ,00071226|14653087 +British Journal of Political Science,Cambridge University Press,00071234|14692112 +British Journal of Politics & International Relations,SAGE Publications,13691481|1467856X +British Journal of Psychiatry Open,Royal College of Psychiatrists,20564724 +British Journal of Psychology,Wiley Blackwell (Blackwell Publishing),00071269| +British Journal of Psychology 1904-1920,Wiley Blackwell (Blackwell Publishing),09505652| +British Journal of Psychology General Section,Wiley Blackwell (Blackwell Publishing),03732460| +British Journal of Psychotherapy,Wiley Blackwell (Blackwell Publishing),02659883|17520118 +British Journal of Radiology,British Institute of Radiology,00071285|1748880X +British Journal of Radiology BARP Section,British Institute of Radiology,20531281|2053129X +British Journal of Radiology BIR Section,British Institute of Radiology,20531303|20531311 +British Journal of Radiology Röntgen Society Section,British Institute of Radiology,20531346|20531354 +British Journal of Religious Education,Informa UK (Taylor & Francis),01416200|17407931 +British Journal of School Nursing,Mark Allen Group,17522803|20522827 +British Journal of Science,"""Science and Education, Ltd.""",20473745| +British Journal of Social and Clinical Psychology,Wiley Blackwell (Blackwell Publishing),00071293| +British Journal of Social Psychology,Wiley Blackwell (Blackwell Publishing),01446665| +British Journal of Social Work,Oxford University Press,00453102|1468263X +British Journal of Sociology,Wiley Blackwell (Blackwell Publishing),00071315|14684446 +British Journal of Sociology of Education,Informa UK (Taylor & Francis),01425692|14653346 +British Journal of Special Education,Wiley Blackwell (Blackwell Publishing),09523383|14768578 +British Journal of Sports Medicine,BMJ,03063674|14730480 +British Journal of Statistical Psychology,Wiley Blackwell (Blackwell Publishing),0950561X| +British Journal of Surgery,Wiley Blackwell (John Wiley & Sons),00071323|13652168 +British Journal of Teacher Education,Informa UK (Taylor & Francis),03058913| +British Journal of Theological Education,Maney Publishing,1352741X| +British Journal of Therapy and Rehabilitation,Mark Allen Group,13548581| +British Journal of Tuberculosis,Elsevier ,03660850| +British Journal of Tuberculosis and Diseases of the Chest,Elsevier ,03660869| +British Journal of Urology,Wiley Blackwell (Blackwell Publishing),00071331|1464410X +British Journal of Visual Impairment,SAGE Publications,02646196|17445809 +British Journal of Wellbeing,Mark Allen Group,20439393| +British Journal Virology,Smith and Franklin Academic Publishing Corporation,20556128|20556128 +British Journalism Review,SAGE Publications,09564748|00000000 +British Medical Bulletin,Oxford University Press,00071420|14718391 +British Microbiology Research Journal,Sciencedomain International,22310886 +British Phycological Bulletin,Informa UK (Taylor & Francis),03746534| +British Phycological Journal,Informa UK (Taylor & Francis),00071617| +British Politics,Nature Publishing Group - Macmillan Publishers,1746918X|17469198 +British Polymer Journal,Wiley Blackwell (John Wiley & Sons),00071641|1934256X +British Poultry Abstracts,Informa UK (Taylor & Francis),17466202|17466210 +British Poultry Science,Informa UK (Taylor & Francis),00071668|14661799 +British Scholar,Edinburgh University Press,19416105| +British Society for Middle Eastern Studies Bulletin,Informa UK (Taylor & Francis),03056139| +British Society for the History of Mathematics Newsletter,Informa UK (Taylor & Francis),09629416| +British Veterinary Journal,Elsevier ,00071935| +British Yearbook of International Law,Oxford University Press,00682691|20449437 +Brittonia,Springer-Verlag,0007196X|1938436X +Brno Studies in English,Masaryk University Press,05246881|05246881 +Bronte Society Transactions,Informa UK (Taylor & Francis),03097765| +Brontë Studies,Informa UK (Taylor & Francis),14748932|17458226 +Brookings Papers on Economic Activity,Muse - Johns Hopkins University Press,00072303|15334465 +Brookings Papers on Economic Activity Microeconomics,JSTOR,10578641| +Brookings Papers on Education Policy,Muse - Johns Hopkins University Press,15334457 +Brookings Trade Forum,Muse - Johns Hopkins University Press,15340635 +Brookings-Wharton Papers on Financial Services,Muse - Johns Hopkins University Press,15334430 +Brookings-Wharton Papers on Urban Affairs,Muse - Johns Hopkins University Press,15334449 +Browning Institute Studies,Cambridge University Press,00924725| +BRQ Business Research Quarterly,Elsevier ,23409436| +Bruce R Hopkins Nonprofit Counsel,Wiley Blackwell (John Wiley & Sons),15428419|15428427 +Brumal Revista de Investigación sobre lo Fantástico,Universitat Autonoma de Barcelona,20147910 +Brunonia,CSIRO Publishing,03134245| +Brush and Pencil,JSTOR,19327080| +Bryophyte Diversity and Evolution,Magnolia Press,23819677|23819685 +Brønsted Acid Catalyzed Reactions,Thieme Publishing Group,20200323 +BSAP Occasional Publication,Cambridge University Press,0263967X| +BSHM Bulletin Journal of the British Society for the History of Mathematics,Informa UK (Taylor & Francis),17498430|17498341 +Bt Research,"""Sophia Publishing Group, Inc.""",19251939 +BT Technology Journal,Springer-Verlag,13583948|15731995 +Bubble Science Engineering & Technology,Maney Publishing,17588960|17588979 +Buddhist Studies Review,Equinox Publishing,02652897|17479681 +Buddhist-Christian Studies,Muse - Johns Hopkins University Press,08820945|15279472 +Budhi A Journal of Ideas and Culture,Ateneo de Manila University,01185942|22437886 +Buffalo Criminal Law Review,University of California Press,10933514| +Building Acoustics,SAGE Publications,1351010X|1351010X +Building and Environment,Elsevier ,03601323| +Building Research & Information,Informa UK (Taylor & Francis),09613218|14664321 +Building Research and Practice,Informa UK (Taylor & Francis),03069931| +Building Research Journal,De Gruyter Open Sp. z o.o. ,1339682X +Building Science,Elsevier ,00073628| +Building Services Engineering Research and Technology,SAGE Publications,01436244|14770849 +Building Simulation,Springer-Verlag,19963599|19968744 +Building Sustainable Legacies The New Frontier Of Societal Value Co-Creation,GSE Research Limited,20538898| +Buildings,MDPI AG,20755309 +Buildings & Landscapes Journal of the Vernacular Architecture Forum,University of Minnesota Press,19360886|19346832 +Built Environment,Alexandrine Press,02637960|02637960 +Built Environment Project and Asset Management,Emerald (MCB UP ),2044124X| +Built-Environment Sri Lanka,Sri Lanka Journals Online ,13915983| +BUL GYO HAK BO,Institute for Buddhist Culture,12261386| +Buletin Pos dan Telekomunikasi,R&D Center for Post & ICT Resources,16930991|24431524 +BULGARIAN JOURNAL OF VETERINARY MEDICINE,Trakia University,13111477|13133543 +Bulgarian Journal of Veterinary Medicine,Trakia University, +Bulletin (Archives of American Art),The University of Chicago Press,0884674X| +Bulletin (Archives of American Art),The University of Chicago Press,0884674X| +Bulletin (Society for Applied Spectroscopy),SAGE Publications,00968706| +Bulletin - Prague College Centre for Research and Interdisciplinary Studies,De Gruyter Open Sp. z o.o. ,18043402| +Bulletin - United States National Museum,Smithsonian Institution Biodiversity Heritage Library,00962961| +Bulletin annuel de l Institut français d histoire sociale,JSTOR,03988147| +Bulletin biologique de la France et de la Belgique,Smithsonian Institution Biodiversity Heritage Library,00074187| +Bulletin Classe des sciences mathematiques et natturalles,National Library of Serbia,05617332| +Bulletin d histoire politique,Consortium Erudit,12010421|19297653 +Bulletin d information de l Institut de Recherche et d Histoire des Textes,PERSEE Program,00738204| +Bulletin de correspondance hellénique,PERSEE Program,00074217| +Bulletin de correspondance hellénique,PERSEE Program,00074217| +Bulletin de correspondance hellénique Supplément,PERSEE Program,03042456| +Bulletin de droit nucléaire,Organisation for Economic Co-Operation and Development ,03043428| +Bulletin de droit nucléaire,Organisation for Economic Co-Operation and Development ,03043428|16843568 +Bulletin de l Académie vétérinaire de France,INIST-CNRS,00014192|22592385 +Bulletin de l Association d étude sur l humanisme la réforme et la renaissance,PERSEE Program,01816799| +Bulletin de l Association de géographes français,PERSEE Program,00045322| +Bulletin de l Association des démographes du Québec,Consortium Erudit,03801713|19253478 +Bulletin de l Association française des anthropologues,PERSEE Program,02497476| +Bulletin de l Association française pour l étude du quaternaire,PERSEE Program,00045500| +Bulletin de l Association Guillaume Budé,PERSEE Program,00045527| +Bulletin de l Association Guillaume Budé Lettres d humanité,PERSEE Program,12476862| +Bulletin de l Ecole française d Extrême-Orient,PERSEE Program,03361519|1760737X +Bulletin de l Institut océanographique de Monaco,Smithsonian Institution Biodiversity Heritage Library,03045722| +Bulletin de l Institut Pasteur,Elsevier ,00202452| +Bulletin de l Institut Pierre Renouvin,CAIRN,12768944|17754305 +Bulletin de la Société Botanique de France,Informa UK (Taylor & Francis),00378941| +Bulletin de la Société Botanique de France Actualités Botaniques,Informa UK (Taylor & Francis),01811789| +Bulletin de la Société Botanique de France Lettres Botaniques,Informa UK (Taylor & Francis),01811797| +Bulletin de la Société d Histoire de la Guadeloupe,Consortium Erudit,05838266| +Bulletin de la Société d histoire de la pharmacie,PERSEE Program,0995838X| +Bulletin de la Société de Linguistique de Paris,Peeters Publishers,379069 +Bulletin de la Société de pathologie exotique,Springer-Verlag,00379085|19619049 +Bulletin de la Société des sciences naturelles de l Ouest de la France,Smithsonian Institution Biodiversity Heritage Library,03733025| +Bulletin de la Société entomologique de France,Smithsonian Institution Biodiversity Heritage Library,0037928X| +Bulletin de la Société française d économie rurale,PERSEE Program,11469374| +Bulletin de la Société française de musicologie,JSTOR,09919228| +Bulletin de la Société Française de Physique,EDP Sciences,00379360|22595295 +Bulletin de la Societe Geologique de France,GeoScienceWorld,00379409| +Bulletin de la Société linnéenne de Normandie,Smithsonian Institution Biodiversity Heritage Library,03663388| +Bulletin de la Société préhistorique de France,PERSEE Program,00379514| +Bulletin de la Société préhistorique française,PERSEE Program,02497638|17607361 +Bulletin de la Société zoologique de France,Smithsonian Institution Biodiversity Heritage Library,0037962X| +Bulletin de la Société zoologique de France,Smithsonian Institution Biodiversity Heritage Library,0037962X| +Bulletin de la Société neuchâteloise des sciences naturelles,Smithsonian Institution Biodiversity Heritage Library,03663469| +Bulletin de l’association pharmaceutique française pour l’hydrologie,EDP Sciences,0335959X| +Bulletin de l’Institut français d’études andines,OpenEdition,03037495|20765827 +Bulletin de l’Union Nationale pour l’Intérêt de l’Orthopédie Dento-Faciale,EDP Sciences,17689775| +Bulletin de Philosophie Médiévale,"""Brepols Publishers, NV""",00684023| +Bulletin de psychologie,CAIRN,00074403|19683766 +Bulletin des Sciences Mathématiques,Elsevier ,00074497| +Bulletin des Sociétés Chimiques Belges,Wiley Blackwell (John Wiley & Sons),00379646| +Bulletin du Cancer,Elsevier ,00074551| +Bulletin du Cancer/Radiothérapie,Elsevier ,09244212| +Bulletin du Centre de recherche du château de Versailles,OpenEdition,19589271|19589271 +Bulletin du Centre d’études médiévales d’Auxerre,OpenEdition,16235770|19543093 +Bulletin du Jardin botanique de l État a Bruxelles,JSTOR,03746313| +Bulletin du Jardin botanique national de Belgique / Bulletin van de National Plantentuin van België,JSTOR,03039153| +Bulletin du Muséum national d histoire naturelle,Smithsonian Institution Biodiversity Heritage Library,11488425| +Bulletin d’études orientales,OpenEdition,20774079|20774079 +Bulletin Economics Organisation and Informatics in Healthcare,De Gruyter Open Sp. z o.o. ,13182927| +Bulletin for the Council for British Research in the Levant,Informa UK (Taylor & Francis),17527260|17527279 +Bulletin for the Study of Religion,Equinox Publishing,20411863|20411871 +Bulletin Français de la Pêche et de la Pisciculture,EDP Sciences,07672861|07672861 +Bulletin Français de Pisciculture,EDP Sciences,03730514| +Bulletin Géodésique,Springer-Verlag,00074632|00074632 +Bulletin Hispanique,PERSEE Program,00074640|17753821 +Bulletin International des Societes de la Croix-Rouge,Cambridge University Press,18169686| +Bulletin International des Societes de Secours aux Militaires Blesses,Cambridge University Press,18169678| +Bulletin Monumental,PERSEE Program,0007473X| +Bulletin of African Studies in Canada,JSTOR,05251370| +Bulletin of Alloy Phase Diagrams,Springer-Verlag,01970216| +Bulletin of Anesthesia History,Elsevier ,15228649| +Bulletin of Animal Health and Production in Africa,African Journals Online ,3789721 +Bulletin of Baltic Studies,Informa UK (Taylor & Francis),00074772| +Bulletin of Bryansk state technical university,Infra-M Academic Publishing House,19998775| +Bulletin of Canadian Petroleum Geology,GeoScienceWorld,00074802| +Bulletin of Carnegie Museum of Natural History,BioOne (Carnegie Museum of Natural History),01459058| +BULLETIN OF CHEMICAL REACTION ENGINEERING AND CATALYSIS,Bulletin of Chemical Reaction Engineering and Catalysis,19782993 +Bulletin of Chinese Linguistics,Brill Academic Publishers,19336985|2405478X +Bulletin of Earthquake Engineering,Springer-Verlag,1570761X|15731456 +Bulletin of Economic Research,Wiley Blackwell (Blackwell Publishing),03073378|14678586 +Bulletin of Electrical Engineering and Informatics,Institute of Advanced Engineering and Science,20893191|23029285 +Bulletin of Engineering Geology and the Environment,Springer-Verlag,14359529|14359537 +Bulletin of Entomological Research,Cambridge University Press,00074853|00000000 +Bulletin of entomological research supplement series,Cambridge University Press,13674269| +Bulletin of Environmental Contamination and Toxicology,Springer-Verlag,00074861|14320800 +Bulletin of Experimental Biology and Medicine,Springer-Verlag,00074888|15738221 +Bulletin of Faculty of Pharmacy Cairo University,Elsevier ,11100931| +Bulletin of Faculty of Physical Therapy,Medknow Publications,11106611| +Bulletin of Geography Physical Geography Series,De Gruyter Open Sp. z o.o. ,20807686|23008490 +Bulletin of Geography Socio-economic series,De Gruyter Open Sp. z o.o. ,17324254|17324254 +Bulletin of Geosciences,Czech Geological Survey,12141119|18028225 +Bulletin of Glaciological Research,Japanese Society of Snow and Ice,13453807|18848044 +Bulletin of Higher Educational Institutions Lesnoi Zhurnal (Forestry journal),Kniga - Service Agency Ltd.,05361036| +Bulletin of Hispanic Studies,Informa UK (Taylor & Francis),0007490X|14693550 +Bulletin of Indonesian Economic Studies,Informa UK (Taylor & Francis),00074918|00000000 +Bulletin of Japan Society of Coordination Chemistry,Japan Society of Coordination Chemistry,18826954|18831737 +Bulletin of Japanese Society of Microbial Ecology,Japanese Society of Microbial Ecology,09117830| +Bulletin of JSME,The Japan Society of Mechanical Engineers,00213764|18811426 +Bulletin of Kemerovo State University of culture adn arts,Central Collector of Libraries BIBCOM,20781768| +Bulletin of Latin American Research,Wiley Blackwell (Blackwell Publishing),02613050|14709856 +Bulletin of Literary Semiotics,Philosophy Documentation Center,01960385| +Bulletin of Mari state University,"""Science and Education, Ltd.""",24119687| +Bulletin of Marine Science,Bulletin of Marine Science,00074977| +Bulletin of Maritime Institute,Index Copernicus International,02395886| +Bulletin of Materials Science,Springer-Verlag,02504707|09737669 +Bulletin of Mathematical Biology,Springer-Verlag,00928240|15229602 +Bulletin of Mathematical Sciences,Springer-Verlag,16643607|16643615 +Bulletin of Mathematical Sciences and Applications,SciPress Ltd.,22789634 +Bulletin of Mathematical Sciences and Applications,SciPress Ltd.,22789634 +Bulletin of Medical Ethics,Ankara University,9629564 +Bulletin of Medieval Canon Law,Muse - Johns Hopkins University Press,23722509 +Bulletin of Miscellaneous Information (Royal Gardens Kew),JSTOR,03664457| +Bulletin of Orenburg State University,"""Science and Education, Ltd.""",18146457| +Bulletin of Peoples Friendship University of Russia Scientific Journal,"""Science and Education, Ltd.""",08698732| +BULLETIN OF PERM NATIONAL RESEARCH POLYTECHNICAL UNIVERSITY ISSUES IN LINGUISTICS AND PEDAGOGICS,PNRPU Publishing Office,22249389|2305140X +Bulletin of Pure & Applied Sciences- Botany,Diva Enterprises Private Limited,09704612|23203196 +Bulletin of Pure & Applied Sciences- Chemistry,Diva Enterprises Private Limited,09704620|2320320X +Bulletin of Pure & Applied Sciences- Geology,Diva Enterprises Private Limited,09704639|23203234 +Bulletin of Pure & Applied Sciences- Mathematics and Statistics,Diva Enterprises Private Limited,09706577|23203226 +Bulletin of Pure & Applied Sciences- Physics,Diva Enterprises Private Limited,09706569|23203218 +Bulletin of Pure & Applied Sciences- Zoology,Diva Enterprises Private Limited,09700765|23203188 +Bulletin of Reproductive Health,Endocrinology Research Centre,20756569|2310421X +Bulletin of Science Technology & Society,SAGE Publications,02704676|15524183 +Bulletin of Scientific Conferences,Consulting Company Ucom,24128988 +Bulletin of Siberian Medicine,Siberian State Medical University,16820363|18193684 +Bulletin of Sociological Methodology/Bulletin de Méthodologie Sociologique,SAGE Publications,07591063|20702779 +"""Bulletin of South Ural State University series """"Construction Engineering and Architecture""""""",Federal State Funded Educational Institution of Higher Professional Education,19919743|24114693 +"""Bulletin of South Ural State University series """"Economics and management""""""",Federal State Funded Educational Institution of Higher Professional Education,19970129|24131016 +Bulletin of Spanish Studies,Informa UK (Taylor & Francis),14753820|00000000 +Bulletin of Symbolic Logic,Cambridge University Press,10798986|19435894 +Bulletin of Taras Shevchenko National University of Kyiv Economics,Taras Shevchenko National University of Kyiv,17282667| +Bulletin of the Academy of Sciences of the USSR Division of Chemical Science,Springer-Verlag,05685230| +Bulletin of the Agricultural Chemical Society of Japan,"""Japan Society for Bioscience, Biotechnology, and Agrochemistry""",03758397|18811272 +Bulletin of the Altai Academy of Economics and law,"""Science and Education, Ltd.""",18184057| +Bulletin of the American Academy of Arts and Sciences,JSTOR,0002712X| +Bulletin of the American Art-Union,JSTOR,21526125| +Bulletin of the American Association of Teachers of Italian,JSTOR,15398692| +Bulletin of the American Association of University Professors,JSTOR,08831610| +Bulletin of the American Astronomical Society,American Astronomical Society,27537 +Bulletin of the American College of Nurse-Midwifery,Wiley Blackwell (Blackwell Publishing),00983721| +Bulletin of the American College of Nurse-Midwives,Wiley Blackwell (Blackwell Publishing),00028002| +Bulletin of the American Geographical Society,JSTOR,01905929| +Bulletin of the American Institute for Conservation,Informa UK (Taylor & Francis),01461257| +Bulletin of the American Interplanetary Society,American Institute of Aeronautics and Astronautics,19371314 +Bulletin of the American Mathematical Society,American Mathematical Society,02730979|10889485 +Bulletin of the American Meteorological Society,American Meteorological Society,00030007|15200477 +Bulletin of the American Museum of Natural History,BioOne (American Museum of Natural History),00030090|19373546 +Bulletin of the American Musicological Society,University of California Press,15444708| +Bulletin of the American School of Oriental Research in Jerusalem,JSTOR,02767732| +Bulletin of the American Schools of Oriental Research,The American Schools of Oriental Research,0003097X|21618062 +Bulletin of the American Schools of Oriental Research Supplementary Studies,JSTOR,01453661| +Bulletin of the American Society for Information Science and Technology,Wiley Blackwell (John Wiley & Sons),00954403|15508366 +Bulletin of the American Society of Veterinary Clinical Pathologists,Wiley Blackwell (Blackwell Publishing),01470701| +Bulletin of the Art Institute of Chicago (1907-1951),JSTOR,19356595| +Bulletin of the Art Institute of Chicago (1973-1982),JSTOR,00943312| +Bulletin of the Association for Comparative Economic Studies,Japan Association for Comparative Economic Studies,18839797 +Bulletin of the Association for Information Science and Technology,Wiley Blackwell (John Wiley & Sons),23739223| +Bulletin of the Association for Preservation Technology,JSTOR,00449466| +Bulletin of the Association for the Study in Socialist Economies,Japan Association for Comparative Economic Studies,18839789 +Bulletin of the Atomic Scientists,Informa UK (Taylor & Francis),00963402|19383282 +Bulletin of the Australian Mathematical Society,Cambridge University Press,00049727|17551633 +Bulletin of the Bibliographical Society of America,The University of Chicago Press,23796634| +Bulletin of the Biological Society of Washington,BioOne (The Biological Society of Washington),00970298| +Bulletin of the Brazilian Mathematical Society New Series,Springer-Verlag,16787544|16787714 +Bulletin of the British Association for American Studies,Cambridge University Press,05245001| +Bulletin of the British Museum (Natural History),Smithsonian Institution Biodiversity Heritage Library,00071498| +Bulletin of the British Mycological Society,Elsevier ,00071528| +Bulletin of the British Society for the History of Science,Cambridge University Press,09505636| +Bulletin of the Bureau of Standards,National Institute of Standards and Technology,00968579| +Bulletin of the Business Historical Society,JSTOR,10659048| +Bulletin of the Center for Children s Books,Muse - Johns Hopkins University Press,15586766 +Bulletin of the Centre for Asia Minor Studies,National Documentation Centre,11050322|24592579 +Bulletin of the Chemical Society of Ethiopia,African Journals Online ,10113924 +Bulletin of the Chemical Society of Japan,The Chemical Society of Japan,00092673|13480634 +Bulletin of the Chinese Linguistic Society of Japan,The Chinese Linguistic Society of Japan,05780969|18841287 +Bulletin of the Comediantes,Muse - Johns Hopkins University Press,19440928 +Bulletin of the Committee on Canadian Labour History / Bulletin du Comité sur l Histoire Ouvrière Canadienne,JSTOR,0701161X| +Bulletin of the Cooper Ornithological Club,JSTOR,15531031| +Bulletin of the Council for Research in Music Education,University of Illinois Press,00109894| +Bulletin of the Crimean Astrophysical Observatory,Allerton Press,01902717|19347863 +Bulletin of the Department of Geology,Nepal Journals Online,19963491| +Bulletin of the Ecological Society of America,Wiley Blackwell (John Wiley & Sons),00129623|2327-6096 +Bulletin of the Entomological Society of America,Oxford University Press,00138754| +Bulletin of the Essex Institute,Smithsonian Institution Biodiversity Heritage Library,07324952| +Bulletin of the Faculty of Science Ibaraki University Series A Mathematics,"""Department of Mathematics, Faculty of Science""",05793068|18834345 +Bulletin of the Geological Society of China,Wiley Blackwell (Blackwell Publishing),1673274X| +Bulletin of the Geological Society of Finland,The Geological Society of Finland,03675211|03675211 +BULLETIN OF THE GEOLOGICAL SURVEY OF JAPAN,National Institute of Advanced Industrial Scicence,13464272|2186490X +Bulletin of the Global Volcanism Network,Smithsonian Institution,10504818| +Bulletin of the History of Archaeology,"""Ubiquity Press, Ltd.""",10624740|20476930 +Bulletin of the History of Medicine,Muse - Johns Hopkins University Press,10863176 +Bulletin of the Indo-Pacific Prehistory Association,University of Washington Libraries,01561316|18351794 +Bulletin of the Institute of Classical Studies,Wiley Blackwell (Blackwell Publishing),00760730|20415370 +Bulletin of the International Association of Engineering Geology,Springer-Verlag,00741612| +Bulletin of the International Institute of Social History,Cambridge University Press,0921254X| +Bulletin of the Japan Association for Comparative Economic Studies,Japan Association for Comparative Economic Studies,13484060|18839800 +Bulletin of the Japan Institute of Metals,The Japan Institute of Metals,00214426|18845835 +Bulletin of The Japan Petroleum Institute,Japan Petroleum Institute,05824656| +Bulletin of the John Rylands Library,Manchester University Press,20549318|20549326 +Bulletin of the Korean Chemical Society,Wiley Blackwell (John Wiley & Sons),02532964|12295949 +Bulletin of the Korean Mathematical Society,The Korean Mathematical Society,10158634| +Bulletin of the Kostroma state University,"""Science and Education, Ltd.""",19980817| +Bulletin of the Lebedev Physics Institute,Allerton Press,10683356|1934838X +Bulletin of the London Mathematical Society,Oxford University Press - London Mathematical Society,00246093|14692120 +Bulletin of the Malaysian Mathematical Sciences Society,Springer-Verlag,01266705|21804206 +Bulletin of the Menninger Clinic,Guilford Publications,00259284| +Bulletin of the Military University of Technology,Index Copernicus International,12345865|12345865 +Bulletin Of The Mineral Research and Exploration,Bulletin of the Mineral Research and Exploration,00264563| +Bulletin of the Moscow state University of culture and arts,"""Science and Education, Ltd.""",19970803| +Bulletin of the Moskow State Regional University,Moscow Regional State University,22240209| +Bulletin of the Museum of Comparative Zoology,"""BioOne (Museum of Comparative Zoology, Harvard University)""",00274100|19382987 +Bulletin of the National Association of Student Anthropologists,Wiley Blackwell (Blackwell Publishing),15563618|15563626 +Bulletin of the Natural History Museum,Centre for Evaluation in Education and Science,18209521| +Bulletin of the Natural History Museum Botany,Cambridge University Press,09680446|14752956 +Bulletin of the Natural History Museum Botany Series,Cambridge University Press,09680446|14752956 +Bulletin of the Natural History Museum Entomology,Cambridge University Press,09680454|14752964 +Bulletin of the Natural History Museum Entomology Series,Cambridge University Press,09680454|14752964 +Bulletin of the Natural History Museum Geology,Cambridge University Press,09680462|14752972 +Bulletin of the Natural History Museum Geology Series,Cambridge University Press,09680462|14752972 +Bulletin of the Natural History Museum Zoology,Cambridge University Press,09680470|14752980 +Bulletin of the Natural History Museum Zoology Series,Cambridge University Press,09680470|14752980 +Bulletin of the New England Art Union,JSTOR,19440383| +Bulletin of the Orton Society,Springer-Verlag,04747534| +Bulletin of the Oxford University Institute of Economics & Statistics,Wiley Blackwell (Blackwell Publishing),01405543| +Bulletin of the Peabody Museum of Natural History,BioOne (Bulletin of the Peabody Museum of Natural History),0079032X|21624135 +Bulletin of the Pennsylvania Museum,JSTOR,08913609| +Bulletin of the Polish Academy of Sciences Mathematics,"""Institute of Mathematics, Polish Academy of Sciences""",02397269|17328985 +Bulletin of the Polish Academy of Sciences Technical Sciences,De Gruyter Open Sp. z o.o. ,02397528|23001917 +Bulletin of the Psychonomic Society,Springer - Psychonomic Society,00905054| +Bulletin of the Rocky Mountain Modern Language Association,Muse - Johns Hopkins University Press,23257660 +Bulletin of The Royal College of Surgeons of England,The Royal College of Surgeons of England,14736357|14787075 +Bulletin of the Russian Academy of Sciences Division of Chemical Science,Springer-Verlag,10635211| +Bulletin of the Russian Academy of Sciences Physics,Allerton Press,10628738|19349432 +Bulletin of the Saint Petersburg State Institute of Technology (Technical University),Central Collector of Libraries BIBCOM,19989849|19989849 +Bulletin of the Santayana Society,Philosophy Documentation Center,08468508| +Bulletin of the saratov state technical university,"""Science and Education, Ltd.""",19998341| +Bulletin of the School of Oriental and African Studies,Cambridge University Press,0041977X|14740699 +Bulletin of the Seismological Society of America,Seismological Society,00371106|19433573 +Bulletin of the Sholokhov Moscow State University for the Humanities,"""Science and Education, Ltd.""",19926391| +Bulletin of the Sholokhov Moscow State University for the Humanities Philology,"""Science and Education, Ltd.""",19926375| +Bulletin of the Society for Near Eastern Studies in Japan,The Society for Near Eastern Studies in Japan,00305219|18841406 +Bulletin of the Society of Psychologists in Addictive Behaviors,American Psychological Association,08839646| +Bulletin of the South Ural State University Ser Computer Technologies Automatic Control & Radioelectronics,Federal State Funded Educational Institution of Higher Professional Education,1991976X|24096571 +"""Bulletin of the South Ural State University Series """"Computational Mathematics and Software Engineering""""""",Federal State Funded Educational Institution of Higher Professional Education,23059052| +"""Bulletin of the South Ural State University series """"Education Education Sciences""""""",Federal State Funded Educational Institution of Higher Professional Education,20737602|24120553 +"""Bulletin of the South Ural State University Series """"Mathematical Modelling Programming and Computer Software""""""",Federal State Funded Educational Institution of Higher Professional Education,20710216| +"""Bulletin of the South Ural State University series """"Mathematics Mechanics Physics""""""",Federal State Funded Educational Institution of Higher Professional Education,2075809X|24096547 +"""Bulletin of the South Ural State University series """"Mechanical Engineering Industry""""""",Federal State Funded Educational Institution of Higher Professional Education,19908504|24104744 +"""Bulletin of the South Ural State University series """"Power Engineering""""""",Federal State Funded Educational Institution of Higher Professional Education,19908512|24091057 +"""Bulletin of the South Ural State University series """"Psychology""""""",Federal State Funded Educational Institution of Higher Professional Education,20713053|24111104 +Bulletin of the South Ural State University Series Education health physical culture,Federal State Funded Educational Institution of Higher Professional Education,24107026 +Bulletin of the South Ural State University Series Food and Biotechnology,Federal State Funded Educational Institution of Higher Professional Education,23102748|24130559 +Bulletin of the South Ural State University series Linguistics,Federal State Funded Educational Institution of Higher Professional Education,19919751|24130532 +Bulletin of the South Ural State University Series «Social Sciences and the Humanities»,Federal State Funded Educational Institution of Higher Professional Education,19908466|24131024 +Bulletin of the South Ural State University Series ‘Metallurgy’,Federal State Funded Educational Institution of Higher Professional Education,19908482|24110906 +Bulletin of the South-Russian state technical University (NPI) Series Socio-economic Sciences,South Russian State Polytechnic University (NPI),20752067| +Bulletin of the Torrey Botanical Club,JSTOR,00409618| +Bulletin of the United States National Museum,Smithsonian Institution,03629236| +Bulletin of the Veterinary Institute in Pulawy,De Gruyter Open Sp. z o.o. ,00424870|00424870 +Bulletin of the Volgograd pedagogical University,"""Science and Education, Ltd.""",18159044| +Bulletin of the Wildlife Disease Association,Wildlife Disease Association,0098373X| +Bulletin of the World Health Organization,WHO Press,00429686| +Bulletin of University of Agricultural Sciences and Veterinary Medicine Cluj-Napoca Agriculture,AcademicPres (EAP) Publishing House,18435246|18435386 +Bulletin of University of Agricultural Sciences and Veterinary Medicine Cluj-Napoca Animal Science and Biotechnologies,AcademicPres (EAP) Publishing House,18435262|1843536X +Bulletin of University of Agricultural Sciences and Veterinary Medicine Cluj-Napoca Food Science and Technology,AcademicPres (EAP) Publishing House,23442344|23445300 +Bulletin of University of Agricultural Sciences and Veterinary Medicine Cluj-Napoca Horticulture,AcademicPres (EAP) Publishing House,18435254|18435394 +Bulletin of University of Agricultural Sciences and Veterinary Medicine Cluj-Napoca Veterinary Medicine,AcademicPres (EAP) Publishing House,18435270|18435378 +Bulletin of Ural Federal University Series Economics and Management,Ural Federal University,20715692| +Bulletin of Volcanology,Springer-Verlag,02588900|14320819 +BULLETIN OF VYATKA STATE HUMANITIES UNIVERSITY,"""Science and Education, Ltd.""",19974280| +Bulletin on General Relativity and Gravitation,Springer-Verlag,16625390 +Bulletin Samara State Agricultural Academy,Infra-M Academic Publishing House,19973225| +Bulletin Southern California Academy of Sciences,BioOne (Southern California Academy of Sciences),00383872|21624534 +Bulletin Volcanologique,Springer-Verlag,0366483X| +Bulletin оf Kamchatka State Technical University,Kamchatka State Technical University,20790333| +Bulletins de la Société d anthropologie de Paris,PERSEE Program,03018644| +Bulletins de la Société d anthropologie de Paris,PERSEE Program,03018644| +Bulletins de la Société d anthropologie de Paris,PERSEE Program,03018644| +Bulletins et Mémoires de la Société d anthropologie de Paris,Springer-Verlag,00378984|17775469 +Bulletion of the International Association for Landscape Ecology-Japan,Japan Association for Landscape Ecology,1345532X|1884670X +BULMIM Journal of Management and Research,Diva Enterprises Private Limited,24553298 +Bundesgesundheitsblatt,Springer-Verlag,00075914| +Bundesgesundheitsblatt - Gesundheitsforschung - Gesundheitsschutz,Springer-Verlag,14369990|14371588 +BUNSEKI KAGAKU,Japan Society for Analytical Chemistry,05251931| +BuR - Business Research,Springer-Verlag,21983402|18668658 +Bureau of Standards Journal of Research,National Institute of Standards and Technology,00911801| +Burnout Research,Elsevier ,22130586| +Burns,Elsevier ,03054179| +Burns & Trauma,Springer (Biomed Central Ltd.),23213868|23213876 +Business & Information Systems Engineering,Springer-Verlag,23637005|18670202 +Business & Society,SAGE Publications,00076503|15524205 +Business + Innovation,Springer Fachmedien Wiesbaden GmbH,18688241|1868825X +Business and Economic Horizons,Prague Development Center ,18041205|18045006 +Business and Economic Research,"""Macrothink Institute, Inc.""",21624860 +Business and Economics Journal,OMICS Publishing Group,21516219 +Business and Economics Research Journal,Business and Economics Research Journal,13092448| +Business and Globalization,Hans Publishers,23310189|23310219 +Business and Human Rights Journal,Cambridge University Press,20570198|20570201 +Business and Management Education in HE,Informa UK (Taylor & Francis),20522363 +Business and Management Horizons,"""Macrothink Institute, Inc.""",23260297 +Business and Management Research,Sciedu Press,19276001|1927601X +Business and Management Studies,Redfame Publishing,23745916|23745924 +Business And Management Studies An International Journal,Business and Management Studies: An International Journal,21482586|21482586 +Business and Politics,Walter de Gruyter GmbH,13695258|14693569 +Business and Professional Communication Quarterly,SAGE Publications,23294906|23294922 +Business and Professional Ethics Journal,Philosophy Documentation Center,02772027| +Business and Society Review,Wiley Blackwell (Blackwell Publishing),00453609|14678594 +Business Change and Re-engineering,Wiley Blackwell (John Wiley & Sons),09693866|10990828 +Business Communication Quarterly,SAGE Publications,10805699|00000000 +Business Creativity and the Creative Economy,"""ICSC Press, International Center for Studies in Creativity""",23741414|23741422 +Business Economics,Nature Publishing Group - Macmillan Publishers,0007666X|0007666X +Business Ethics A European Review,Wiley Blackwell (Blackwell Publishing),09628770|14678608 +Business Ethics Journal Review,Journal Review Foundation,23267526 +Business Ethics Quarterly,Cambridge University Press,1052150X|21533326 +Business Ethics The Magazine of Corporate Responsibility,Philosophy Documentation Center,08946582| +Business History,Informa UK (Taylor & Francis),00076791|17437938 +Business Horizons,Elsevier ,00076813| +Business Informatics,"""National Research University, Higher School of Economics (HSE)""",19980663| +Business Information Review,SAGE Publications,02663821|00000000 +Business Law Review,Springer (Kluwer Academic Publishers),01436295| +Business Management and Education,Vilnius Gediminas Technical University,20297491|20296169 +Business Management and Strategy,"""Macrothink Institute, Inc.""",21576068 +Business Peace and Sustainable Development,GSE Research Limited,20518757| +Business Perspectives and Research,SAGE Publications,22785337|23949937 +Business Process Management Journal,Emerald (MCB UP ),14637154|00000000 +Business Process Re-engineering & Management Journal,Emerald (MCB UP ),13552503| +Business Strategies,Real Economy Publishing,23117184 +Business Strategy and the Environment,Wiley Blackwell (John Wiley & Sons),09644733|10990836 +Business Strategy Review,Wiley Blackwell (Blackwell Publishing),09556419|14678616 +Business Strategy Series,Emerald (MCB UP ),17515637| +Business Systems & Economics,Mykolas Romeris University,20298234 +Business Systems Research Journal,De Gruyter Open Sp. z o.o. ,18478344|18479375 +Business Valuation Review,Business Valuation Review Journal,08971781| +Bustan The Middle East Book Review,Brill Academic Publishers,18785301|18785328 +BUTSURI-TANSA(Geophysical Exploration),The Society of Exploration Geophysicists of Japan,09127984|18814824 +By Laws Rules & Regulations,International Monetary Fund,02507307| +By Laws Rules & Regulations,International Monetary Fund,02507323| +By Laws Rules & Regulations,International Monetary Fund,02507315| +By Laws Rules & Regulations,International Monetary Fund,16079426 +By Laws Rules & Regulations,International Monetary Fund,16079434 +By Laws Rules & Regulations,International Monetary Fund,16079442 +BYZANTINA SYMMEIKTA,National Documentation Centre,11051639|17914884 +Byzantine and Modern Greek Studies,Cambridge University Press,03070131|1749625X +Byzantinische Zeitschrift,Walter de Gruyter GmbH,00077704|1864449X +Byzantion nea hellas,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7188471 +C R C Critical Reviews in Analytical Chemistry,Informa UK (Taylor & Francis),00078980| +C R C Critical Reviews in Environmental Control,Informa UK (Taylor & Francis),00078999| +C R C Critical Reviews in Food Science and Nutrition,Informa UK (Taylor & Francis),00990248| +C R C Critical Reviews in Food Technology,Informa UK (Taylor & Francis),00079006| +C R C Critical Reviews in Solid State Sciences,Informa UK (Taylor & Francis),0011085X| +C – Journal of Carbon Research,MDPI AG,23115629 +CA A Cancer Journal for Clinicians,Wiley (American Cancer Society) ,00079235|15424863 +CAA Reviews,College Art Association,1543950X +CAA Slides & Photographs Newsletter,The University of Chicago Press,21637679| +CAAI Transactions on Intelligence Technology,Elsevier ,24682322| +CAB Reviews Perspectives in Agriculture Veterinary Science Nutrition and Natural Resources,CABI Publishing,17498848 +Cactus and Succulent Journal,BioOne (Cactus and Succulent Society of America),00079367|1938288X +CAD&GIS for roads,IndorSoft LLC,23104376| +Caderno Brasileiro de Ensino de Física,Universidade Federal de Santa Catarina,16772334|21757941 +Caderno CRH,SciELO,01034979|01034979 +Caderno CRH,SciELO,1034979 +Caderno CRH,SciELO,01034979|01034979 +Caderno CRH,SciELO,1034979 +Caderno de Estudos,SciELO,14139251| +Caderno de Geografia,Pontificia Universidade Catolica de Minas Gerais,01038427|23182962 +Caderno de Terapia Ocupacional da UFSCar,Editora Cubo Multimidia,22382860 +Caderno Seminal,Universidade do Estado do Rio de Janeiro UERJ,14144298|18069142 +Caderno Virtual,Instituto Brasiliense de Direito Publico,19813759 +Cadernos Benjaminianos,Faculdade de Letras da UFMG,21798478 +Cadernos CEDES,SciELO,01013262|01013262 +Cadernos Cenpec | Nova série,"""Centro de Estudos e Pesquisas em Educacao, Cultura e Acao Comunitaria (CENPEC)""",22379983|22379983 +Cadernos de arquitetura e urbanismo,Pontificia Universidade Catolica de Minas Gerais,14132095|23161752 +Cadernos de arte e antropologia,OpenEdition,22380361 +Cadernos de Campo (São Paulo 1991),Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,01045679|23169133 +Cadernos de Comunicação,Universidade Federal de Santa Maria,16779061|2316882X +Cadernos de Cultura e Ciência,Lepidus Tecnologia,19805861 +Cadernos de Direito,Instituto Educacional Piracicabano da Igreja Metodista,22381228 +Cadernos de Educação,Instituto Metodista de Ensino Superior,16798104 +CADERNOS DE EDUCAÇÃO SAÚDE E FISIOTERAPIA,Associacao Brasileira da Rede Unida,23588306|23588306 +Cadernos de Educação Tecnologia e Sociedade,"""Biblioteca Atena, Instituto Federal de Goias""",23169907 +Cadernos de Estudos Africanos,OpenEdition,16453794|21827400 +Cadernos de Filosofia Alemã Crítica e Modernidade,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,14137860|23189800 +Cadernos de Geografia,Coimbra University Press,08711623|21834016 +Cadernos de História,Pontificia Universidade Catolica de Minas Gerais,16795636|22378871 +Cadernos de Linguística e Teoria da Literatura,Faculdade de Letras da UFMG,01013548|01013548 +Cadernos de Literatura em Tradução,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,19812558|23595388 +Cadernos de Pesquisa,SciELO,01001574|01001574 +Cadernos de Pesquisa Interdisciplinar em Ciências Humanas,Universidade Federal de Santa Catarina,16787730|19848951 +Cadernos de Prospecção,Universidade Federal da Bahia,19831358|23170026 +Cadernos de Psicologia Social do Trabalho,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,15163717|19810490 +Cadernos de Saúde Pública,SciELO,0102311X|16784464 +Cadernos de Terapia Ocupacional da UFSCar,Editora Cubo Multimidia,1044931 +Cadernos de Tradução,Universidade Federal de Santa Catarina,1414526X|21757968 +Cadernos do Desenvolvimento Fluminense,Universidade do Estado do Rio de Janeiro UERJ,23176539 +Cadernos do IME - Série Estatística,Universidade do Estado do Rio de Janeiro UERJ,14139022|23174536 +Cadernos do IME - Série Informática,Universidade do Estado do Rio de Janeiro UERJ,14139014|23172193 +Cadernos EBAPE BR,SciELO,16793951|16793951 +Cadernos Espinosanos,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,14136651|24479012 +Cadernos Gestão Pública e Cidadania,Fundacao Getulio Vargas,18062261|22365710 +CADERNOS IBERO-AMERICANOS DE DIREITO SANITÁRIO,Cadernos Ibero-Americanos de Direito Sanitario,23581824 +Cadernos Metrópole,SciELO,22369996 +Cadernos Nietzsche,SciELO,23168242 +Cadernos Pagu,SciELO,01048333|01048333 +Cadernos PROLAM/USP,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,16766288 +Cadernos Saúde Coletiva,SciELO,1414462X|2358291X +CADMO,Franco Angeli,11225165|19725019 +Cadmo Revista de História Antiga,Coimbra University Press,08719527| +Caeculus,Peeters Publishers,17824907 +Cahier / Groupe Réseaux,PERSEE Program,11629630| +Cahier de linguistique,Consortium Erudit,03154025|19201346 +Cahier des Annales de Normandie,PERSEE Program,05701600| +Cahiers Agricultures,EDP Sciences,11667699|17775949 +Cahiers archéologiques de Picardie,PERSEE Program,03983064| +Cahiers balkaniques,OpenEdition,02907402|22614184 +Cahiers critiques de thérapie familiale et de pratiques de réseaux,CAIRN,13728202|17821398 +Cahiers d Économie Politique,PERSEE Program,01548344|19696779 +Cahiers d études hispaniques médiévales,PERSEE Program,17794684|21087083 +Cahiers d études romanes,OpenEdition,0180684X|22711465 +Cahiers d Extrême-Asie,PERSEE Program,07661177| +Cahiers d histoire,Consortium Erudit,07122330|1929610X +Cahiers d histoire de l aluminium,CAIRN,09906908|22728856 +Cahiers de civilisation espagnole contemporaine,OpenEdition,19577761|19577761 +Cahiers de civilisation médiévale,PERSEE Program,00079731| +Cahiers de géographie du Québec,Consortium Erudit,00079766|17088968 +Cahiers de l Association internationale des études francaises,PERSEE Program,05715865|20768443 +Cahiers de l Association Scientifique Européenne pour l Eau et la Santé,EDP Sciences,10274820|21051143 +Cahiers de l Institut de Linguistique de Louvain,Peeters Publishers,7716524 +Cahiers de la Méditerranée,PERSEE Program,03959317| +Cahiers de la Méditerranée série spéciale,PERSEE Program,03370569| +Cahiers de la Puéricultrice,Elsevier ,00079820| +Cahiers de linguistique - Asie orientale,Brill Academic Publishers,01533320|19606028 +Cahiers de linguistique hispanique médiévale,PERSEE Program,03969045| +Cahiers de littérature orale,OpenEdition,0396891X|22661816 +Cahiers de musiques traditionnelles,JSTOR,10155775| +Cahiers de narratologie,OpenEdition,09938516|1765307X +Cahiers de Nutrition et de Diététique,Elsevier ,00079960| +Cahiers de PréAut,CAIRN,17673151|22732225 +Cahiers de psychologie clinique,CAIRN,1370074X|17821401 +Cahiers de recherche sociologique,Consortium Erudit,08311048|19235771 +Cahiers de recherches médiévales et humanistes,OpenEdition,21156360|22730893 +Cahiers de sociolinguistique,CAIRN,12736449| +Cahiers des Amériques latines,OpenEdition,11417161|22684247 +Cahiers Droit Sciences & Technologies,OpenEdition,19670311|24318663 +Cahiers du Centre de recherches anthropologiques,PERSEE Program,12977810| +Cahiers du Centre Gustave Glotz,PERSEE Program,10169008|21175624 +Cahiers du Centre Gustave Glotz,PERSEE Program,10169008| +Cahiers du Genre,CAIRN,12986046|19683928 +Cahiers du GRM,OpenEdition,17753902|17753902 +Cahiers du monde hispanique et luso-brésilien,PERSEE Program,00080152| +Cahiers du monde russe,OpenEdition,17775388|17775388 +Cahiers du monde russe et soviétique,PERSEE Program,00080160| +Cahiers du monde russe Russie Empire russe Union soviétique États indépendants,PERSEE Program,12526576|17775388 +Cahiers d’études africaines,PERSEE Program,00080055|17775353 +Cahiers d’études africaines,OpenEdition,17775353|17775353 +Cahiers d’études du religieux,OpenEdition,17605776|17605776 +Cahiers d’études italiennes,OpenEdition,17709571|2260779X +Cahiers Élisabéthains A Journal of English Renaissance Studies,SAGE Publications,01847678|20544715 +Cahiers franco-canadiens de l Ouest,Consortium Erudit,08439559|19167792 +Cahiers Georges Sorel,PERSEE Program,07558287| +Cahiers Georges Sorel,PERSEE Program,07558287| +Cahiers Georges Sorel,PERSEE Program,07558287| +Cahiers GUTenberg,Cellule MathDoc/CEDRAM,11409304|21188254 +Cahiers internationaux de sociolinguistique,CAIRN,22576517|22731350 +Cahiers internationaux de sociologie,CAIRN,00080276|19696787 +Cahiers jungiens de psychanalyse,CAIRN,09848207|22624783 +Cahiers philosophiques,CAIRN,02412799|22642641 +Cahiers québécois de démographie,Consortium Erudit,03801721|17051495 +Cahiers victoriens et édouardiens,OpenEdition,02205610|22716149 +Cahiers « Mondes anciens »,OpenEdition,21070199 +CAISE Review,Centre for Advancement in Inclusive and Special Education,23051930|23051922 +Calcified Tissue International,Springer-Verlag,0171967X|14320827 +Calcified Tissue Research,Springer-Verlag,00080594| +CALCOLO,Springer-Verlag,00080624|11265434 +Calculus of Variations and Partial Differential Equations,Springer-Verlag,09442669|14320835 +Caldasia,Universidad Nacional de Colombia,03665232|23573759 +Calendar of the Art Institute of Chicago,JSTOR,19356625| +Caliban,OpenEdition,24256250| +CALICO Journal,Equinox Publishing,07427778|07427778 +Calidad en la educación,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7184565 +Calidoscópio,Universidade do Vale do Rio Dos Sinos - UNISINOS,16798740|21776202 +California Agriculture,University of California Agriculture and Natural Resources (UC ANR)e,00080845| +California Archaeology,Maney Publishing,1947461X|19474628 +California Business Review,International Academy of Business and Economics,23309156|23788437 +California Folklore Quarterly,JSTOR,15561283| +California Historical Quarterly,JSTOR,00976059| +California Historical Society Quarterly,JSTOR,00081175| +California History,JSTOR,01622897|01622897 +California Journal of Politics and Policy,eScholarship,21946132|19444370 +California Law Review,JSTOR,00081221| +California Management Review,University of California Press,00081256|21628564 +California Studies in Classical Antiquity,JSTOR,00685895| +Caligrama (São Paulo Online),Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,18080820 +Caligrama Revista de Estudos Românicos,Faculdade de Letras da UFMG,01032178|22383824 +Call Center Profi,Springer Fachmedien Wiesbaden GmbH,14330199|21928673 +Callaloo,Muse - Johns Hopkins University Press,01612492|10806512 +CallCenter INTERNATIONAL,Springer-Verlag,18659381| +CALLE14 revista de investigación en el campo del arte,Universidad Distrital Francisco Jose de Caldas,20113757|21450706 +Calphad,Elsevier ,03645916| +Cambridge Anthropology,Berghahn Books,03057674|20477716 +Cambridge Archaeological Journal,Cambridge University Press,09597743|14740540 +Cambridge Historical Journal,Cambridge University Press,14746913| +Cambridge Journal of Economics,Oxford University Press,0309166X|14643545 +Cambridge Journal of Education,Informa UK (Taylor & Francis),0305764X|14693577 +Cambridge Journal of International and Comparative Law,Cambridge Journal of International and Comparative Law,20501706|20501714 +Cambridge Journal of Mathematics,"""International Press of Boston, Inc.""",21680930|21680949 +Cambridge Journal of Regions Economy and Society,Oxford University Press,17521378|17521386 +Cambridge Medicine Journal,Cambridge Medicine Journal,20461798 +Cambridge Opera Journal,Cambridge University Press,09545867|14740621 +Cambridge Quarterly of Healthcare Ethics,Cambridge University Press,09631801|14692147 +Cambridge Review of International Affairs,Informa UK (Taylor & Francis),09557571|00000000 +Cambridge yearbook of European legal studies,Cambridge University Press,15288870|20497636 +Camden Fifth Series,Cambridge University Press,09601163|14785110 +Camden Fourth Series,Cambridge University Press,00686905| +Camden New Series,Cambridge University Press,20421702 +Camden Old Series,Cambridge University Press,20421699 +Camden Third Series,Cambridge University Press,20421710 +Camel An International Journal of Veterinary Sciences,Diva Enterprises Private Limited,23199660|2321709X +Camel An International Journal of Veterinary Sciences,Diva Enterprises Private Limited,23199660|2321709X +Camera Obscura Feminism Culture and Media Studies,Duke University Press,02705346|15291510 +Cameroon Journal of Agricultural Science,African Journals Online ,18133320 +Cameroon Journal of Experimental Biology,African Journals Online ,18160573 +Caminhando,Instituto Metodista de Ensino Superior,21763828 +Caminhos,Pontifica Universidade Catolica de Goias -PUC Goias,16783034|1983778X +CAMPOS - Revista de Antropologia Social,Universidade Federal do Parana,15195538|15195538 +Campus Legal Advisor,Wiley Blackwell (John Wiley & Sons),15313999|19456239 +Campus Security Report,Wiley Blackwell (John Wiley & Sons),15512800|19456247 +Campus-Wide Information Systems,Emerald (MCB UP ),10650741|00000000 +Can J Public Health,Canadian Public Health Association,00084263|19207476 +Canadian Accounting Perspectives,Wiley Blackwell (Canadian Academic Accounting Association),14998653| +Canadian Aeronautics and Space Journal,Canadian Aeronautics and Space Institute,17127998|17127998 +Canadian Anaesthetists Society journal / Journal de la Société canadienne des anesthésistes,Springer-Verlag,00082856| +Canadian Applied Mathematics Quarterly,Rocky Mountain Mathematics Consortium,10731849| +Canadian Art Therapy Association Journal,Informa UK (Taylor & Francis),08322473|2377360X +Canadian Association of Radiologists Journal,Elsevier ,08465371| +Canadian Biosystems Engineering,Canadian Society for Bioengineering,14929058|14929066 +Canadian Chemical Transactions,Borderless Scicence Publishing,22916458|22916466 +Canadian Electrical Engineering Journal,Institute of Electrical and Electronics Engineers,07009216| +Canadian Ethnic Studies,Muse - Johns Hopkins University Press,19138253 +Canadian Food Studies / La Revue canadienne des études sur l alimentation,University of Waterloo,22923071 +Canadian Foreign Policy Journal,Informa UK (Taylor & Francis),11926422|21570817 +Canadian Geographer / Le Géographe canadien,Wiley Blackwell (Blackwell Publishing),00083658|15410064 +Canadian Geotechnical Journal,Canadian Science Publishing,00083674|12086010 +Canadian Geriatrics Journal,Canadian Geriatrics Society,19258348|19258348 +Canadian Graduate Journal of Sociology and Criminology,University of Waterloo,19279825 +Canadian Historical Review,University of Toronto Press Inc,00083755|17101093 +Canadian Institute of Food Science and Technology Journal,Elsevier ,03155463| +Canadian Institute of Food Technology Journal,Elsevier ,00083860| +Canadian Journal of Administrative Sciences / Revue Canadienne des Sciences de l Administration,Wiley Blackwell (John Wiley & Sons),08250383|19364490 +Canadian Journal of African Studies,JSTOR,00083968| +Canadian Journal of Agricultural Economics/Revue canadienne d agroeconomie,Wiley Blackwell (Blackwell Publishing),00083976|17447976 +Canadian Journal of Anesthesia/Journal canadien d anesthésie,Springer-Verlag,0832610X|14968975 +Canadian Journal of Animal Science,Canadian Science Publishing,00083984|19181825 +Canadian Journal of Applied Physiology,Canadian Science Publishing,10667814|15432718 +Canadian Journal of Applied Sciences,Intellectual Consortium of Drug Discovery and Technology Development Incorporation,19257430 +Canadian Journal of Arthropod Identification,Biological Survey Foundation,19112173|19112173 +Canadian Journal of Behavioural Science/Revue canadienne des sciences du comportement,American Psychological Association,18792669|0008400X +Canadian Journal of Biochemistry,Canadian Science Publishing,00084018| +Canadian Journal of Biochemistry and Cell Biology,Canadian Science Publishing,07147511| +Canadian Journal of Biochemistry and Physiology,Canadian Science Publishing,05765544| +Canadian Journal of Botany,Canadian Science Publishing,00084026|14803305 +Canadian Journal of Cardiology,Elsevier ,0828282X| +Canadian Journal of Chemistry,Canadian Science Publishing,00084042|14803291 +Canadian Journal of Civil Engineering,Canadian Science Publishing,03151468|12086029 +Canadian Journal of Clinical Nutrition,Global Science Heritage,19278942|19278950 +Canadian Journal of Community Mental Health,Canadian Periodical for Community Studies,07133936| +Canadian Journal of Criminology and Criminal Justice/La Revue canadienne de criminologie et de justice pénale,University of Toronto Press Inc,17077753|19110219 +Canadian Journal of Development Studies/Revue canadienne d études du développement,Informa UK (Taylor & Francis),02255189|21589100 +Canadian Journal of Diabetes,Elsevier ,14992671| +Canadian Journal of Dietetic Practice and Research,Dietitians of Canada,14863847|22929592 +Canadian Journal of Disability Studies,University of Waterloo,19299192 +Canadian Journal of Earth Sciences,Canadian Science Publishing,00084077|14803313 +Canadian Journal of Economics/Revue canadienne d économique,Wiley Blackwell (Blackwell Publishing),00084085|15405982 +Canadian Journal of Education / Revue canadienne de l éducation,JSTOR,03802361|03802361 +Canadian Journal of Electrical and Computer Engineering,Institute of Electrical and Electronics Engineers,08408688| +Canadian Journal of Experimental Psychology/Revue canadienne de psychologie expérimentale,American Psychological Association,11961961|18787290 +Canadian Journal of Fisheries and Aquatic Sciences,Canadian Science Publishing,0706652X|12057533 +Canadian Journal of Forest Research,Canadian Science Publishing,00455067|12086037 +Canadian Journal of Gastroenterology,Hindawi Publishing Corporation,08357900| +Canadian Journal of Gastroenterology and Hepatology,Hindawi Publishing Corporation,22912789|22912797 +Canadian Journal of General Internal Medicine,"""Andrew John Publishing, Inc.""",19111606|23691778 +Canadian Journal of Genetics and Cytology,Canadian Science Publishing,00084093| +Canadian Journal of History / Annales canadienne d histoire,University of Toronto Press Inc,00084107|22928502 +Canadian Journal of Infectious Diseases,Hindawi Publishing Corporation,11802332| +Canadian Journal of Infectious Diseases and Medical Microbiology,Hindawi Publishing Corporation,17129532|19181493 +Canadian Journal of Information and Library Science,Muse - Johns Hopkins University Press,19207239 +Canadian Journal of Kidney Health and Disease,Springer (Biomed Central Ltd.),20543581|20543581 +Canadian Journal of Latin American and Caribbean Studies / Revue canadienne des études latino-américaines et caraïbes,Informa UK (Taylor & Francis),08263663|23331461 +Canadian Journal of Law & Jurisprudence,Cambridge University Press,08418209|20564260 +Canadian Journal of Law and Society / Revue Canadienne Droit et Société,Cambridge University Press,08293201|19110227 +Canadian Journal of Mathematics,Canadian Mathematical Society,0008414X|14964279 +Canadian Journal of Medical Radiation Technology,Elsevier ,08205930| +Canadian Journal of Microbiology,Canadian Science Publishing,00084166|14803275 +Canadian Journal of Neurological Sciences / Journal Canadien des Sciences Neurologiques,Cambridge University Press,03171671|20570155 +Canadian Journal of Occupational Therapy,SAGE Publications,00084174|19119828 +Canadian Journal of Ophthalmology / Journal Canadien d Ophtalmologie,Elsevier ,00084182|17153360 +Canadian Journal of Philosophy,Informa UK (Taylor & Francis),00455091|19110820 +Canadian Journal of Physics,Canadian Science Publishing,00084204|12086045 +Canadian Journal of Physiology and Pharmacology,Canadian Science Publishing,00084212|12057541 +Canadian Journal of Plant Pathology,Informa UK (Taylor & Francis),07060661|17152992 +Canadian Journal of Plant Science,Canadian Science Publishing,00084220|19181833 +Canadian Journal of Political Science,Cambridge University Press,00084239|17449324 +Canadian Journal of Program Evaluation,University of Toronto Press Inc, +Canadian Journal of Program Evaluation / La Revue canadienne d évaluation de programme,University of Toronto Press Inc,08341516| +Canadian Journal of Psychology/Revue Canadienne de Psychologie,American Psychological Association,00084255| +Canadian Journal of Remote Sensing,Informa UK (Taylor & Francis),17127971|17127971 +Canadian Journal of Research,Canadian Science Publishing,19234287| +Canadian Journal of School Psychology,SAGE Publications,08295735| +Canadian Journal of Science Mathematics and Technology Education,Informa UK (Taylor & Francis),14926156|19424051 +Canadian Journal of Sociology / Cahiers canadiens de sociologie,JSTOR,03186431|03186431 +Canadian Journal of Soil Science,Canadian Science Publishing,00084271|19181841 +Canadian Journal of Statistics,Wiley Blackwell (John Wiley & Sons),03195724|1708945X +Canadian Journal of Surgery,"""8872147 Canada, Inc.""",0008428X| +Canadian Journal of Women and the Law/Revue Femmes et Droit,University of Toronto Press Inc,08328781|19110235 +Canadian Journal of Zoology,Canadian Science Publishing,00084301|14803283 +Canadian Journal on Aging / La Revue canadienne du vieillissement,Cambridge University Press,07149808|17101107 +Canadian Mathematical Bulletin,Canadian Mathematical Society,00084395|14964287 +Canadian Medical Association Journal,"""8872147 Canada, Inc.""",08203946|14882329 +Canadian Metallurgical Quarterly,Informa UK (Taylor & Francis),00084433|18791395 +Canadian Modern Language Review/ La Revue canadienne des langues vivantes,University of Toronto Press Inc,00084506|17101131 +Canadian Oncology Nursing Journal,Pappin Communications,1181912X|23688076 +Canadian Pharmacists Journal / Revue des Pharmaciens du Canada,SAGE Publications,17151635|1913701X +Canadian Psychological Review/Psychologie canadienne,American Psychological Association,03182096| +Canadian Psychology/Psychologie canadienne,American Psychological Association,07085591|18787304 +Canadian Public Administration,Wiley Blackwell (Blackwell Publishing),00084840|17547121 +Canadian Public Policy,University of Toronto Press Inc,03170861|19119917 +Canadian Respiratory Journal,Hindawi Publishing Corporation,11982241|19167245 +Canadian Review of American Studies,University of Toronto Press Inc,00077720|1710114X +Canadian Review of Comparative Literature / Revue Canadienne de Littérature Comparée,Muse - Johns Hopkins University Press,19139659 +Canadian Review of Sociology/Revue canadienne de sociologie,Wiley Blackwell (Blackwell Publishing),17556171|1755618X +Canadian Slavonic Papers,Informa UK (Taylor & Francis),00085006|23752475 +Canadian Social Work Review,Consortium Erudit,23695757 +Canadian Society of Forensic Science Journal,Informa UK (Taylor & Francis),00085030|23321660 +Canadian Theatre Review,University of Toronto Press Inc,03150836|1920941X +Canadian University Music Review,Consortium Erudit,07100353|22912436 +Canadian Urological Association Journal,Canadian Urological Association Journal,19116470|19201214 +Canadian Water Resources Journal / Revue canadienne des ressources hydriques,Informa UK (Taylor & Francis),07011784|19181817 +Canadian Yearbook of international Law/Annuaire canadien de droit international,Cambridge University Press,00690058|19250169 +Canadian-American Slavic Studies,Brill Academic Publishers,00908290|22102396 +Çanakkale Araştırmaları Türk Yıllığı,Canakkale Arastirmalari Turk Yilligi Dergisi,21480877| +Canberra Anthropology,Informa UK (Taylor & Francis),03149099| +Cancer,Wiley Blackwell (John Wiley & Sons),0008543X|10970142 +Cancer & Metabolism,Springer (Biomed Central Ltd.),20493002|20493002 +Cancer and Clinical Oncology,Canadian Center of Science and Education,19274858|19274866 +Cancer and Metastasis Reviews,Springer-Verlag,01677659|15737233 +Cancer and Oncology Research,"""Horizon Research Publishing Co., Ltd.""",23316128|23316136 +Cancer Biology & Therapy,Landes Bioscience,15384047|15558576 +Cancer Biomarkers,IOS Press,15740153|18758592 +Cancer Biotherapy,Mary Ann Liebert,10628401| +Cancer Biotherapy & Radiopharmaceuticals,Mary Ann Liebert,10849785|15578852 +Cancer Biotherapy and Radiopharmaceuticals,Mary Ann Liebert,10849785| +Cancer Causes & Control,Springer-Verlag,09575243|15737225 +Cancer Cell,Elsevier ,15356108| +Cancer Cell & Microenvironment,"""Smart Science and Technology, LLC""",2331091X|23310928 +Cancer Cell International,Springer (Biomed Central Ltd.),14752867|14752867 +Cancer Chemotherapy and Pharmacology,Springer-Verlag,03445704|14320843 +Cancer Cytopathology,Wiley Blackwell (John Wiley & Sons),1934662X|19346638 +Cancer Detection and Prevention,Elsevier ,0361090X|15251500 +Cancer Discovery,American Association for Cancer Research,21598274|21598290 +Cancer Drug Delivery,Mary Ann Liebert,07329482| +Cancer Epidemiology,Elsevier ,18777821| +Cancer Epidemiology Biomarkers & Prevention,American Association for Cancer Research,10559965|15387755 +Cancer Gene Therapy,Nature Publishing Group,09291903|09291903 +Cancer Genetics,Elsevier ,22107762| +Cancer Genetics and Cytogenetics,Elsevier ,01654608| +Cancer Genetics and Epigenetics,"""Sophia Publishing Group, Inc.""",23692995 +Cancer Growth and Metastasis,"""Libertas Academica, Ltd.""",11790644 +Cancer Hallmarks,American Scientific Publishers,2165428X| +Cancer Imaging,Springer (Biomed Central Ltd.),14707330|14707330 +Cancer Immunology Immunotherapy,Springer-Verlag,03407004|14320851 +Cancer Immunology Research,American Association for Cancer Research,23266066|23266074 +Cancer Informatics,"""Libertas Academica, Ltd.""",11769351 +Cancer Investigation,Informa UK (Taylor & Francis),07357907|15324192 +Cancer Letters,Elsevier ,03043835| +Cancer Management and Research,Dove Medical Press,11791322 +Cancer Medicine,Wiley Blackwell (John Wiley & Sons),20457634| +Cancer Microenvironment,Springer-Verlag,18752292|18752284 +Cancer Nanotechnology,Springer-Verlag,18686958|18686966 +Cancer Nursing,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,0162220X| +Cancer Nursing Practice,RCN Publishing,14754266|20478933 +Cancer Practice,Wiley Blackwell (Blackwell Publishing),10654704|15235394 +Cancer Prevention International,Cognizant Communication Corp,10839984| +Cancer Prevention Research,American Association for Cancer Research,19406207|19406215 +Cancer Research,American Association for Cancer Research,00085472|15387445 +Cancer Research and Treatment,Korean Cancer Association,15982998|20059256 +Cancer Research Frontiers,Cancer Research Frontiers,23285249 +Cancer Research Journal,Science Publishing Group,23308192| +Cancer Reviews Asia-Pacific,World Scientific ,02198363| +Cancer Reviews Online Content,American Association for Cancer Research,1935620X| +Cancer Science,Wiley Blackwell (Blackwell Publishing),13479032|13497006 +Cancer Science & Research Open Access,Symbiosis Group,23720921 +Cancer Studies and Molecular Medicine - Open Journal,Openventio Publishers,23771518 +Cancer Translational Medicine,Medknow Publications,23953977| +Cancer Treatment Communications,Elsevier ,22130896| +Cancer Treatment Reviews,Elsevier ,03057372| +Cancer Urology,Publishing House ABV Press,17269776|19961812 +Cancer Vaccines,Walter de Gruyter GmbH,23537809 +Cancer/Radiothérapie,Elsevier ,12783218| +Cancéro digest,INIST-CNRS,19535171|21000794 +Cancers,MDPI AG,20726694 +Cancers Review,Pak Publishing Group,24092053|24089273 +Candollea,BioOne (Society of Conservatoire at Jardin Botaniques de la Ville de Geneve),03732967| +Canine Genetics and Epidemiology,Springer (Biomed Central Ltd.),20526687|20526687 +Cankiri Karatekin Universitesi Iktisadi ve Idari Bilimler Fakultesi Dergisi,Cankiri Karatekin Universitesi Iktisadi ve Idari Bilimler Fakultesi Dergisi,13085549| +Cannabis and Cannabinoid Research,Mary Ann Liebert,23788763|23788763 +CAPE Studies in Applied Philosophy and Ethics Series,Kyoto University,21876223| +CAPE Studies in Applied Philosophy and Ethics Series,Kyoto University,21876223| +Cape Town Convention Journal,Informa UK (Taylor & Francis),2049761X|20497628 +Capital & Class,SAGE Publications,03098168|20410980 +Capital Markets Law Journal,Oxford University Press,17507219|17507227 +Capitalism and Society,Walter de Gruyter GmbH,21946140|19320213 +Capitalism Nature Socialism,Informa UK (Taylor & Francis),10455752|15483290 +Caplletra Revista Internacional de Filologia,Universitat de Valencia,02148188|23867159 +Cappadocia Journal of History and Social Sciences,Cappadocia Journal of History and Social Sciences,2199353X| +Caracol,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,21781702|23179651 +Caravelle,PERSEE Program,01847694|22729828 +Carbene-Catalyzed Benzoin Reactions,Thieme Publishing Group,20400276 +Carbocyclization of 1 6-Enynes with Electron-Deficient Ketones,Thieme Publishing Group,20300107 +Carbohydrate Polymers,Elsevier ,01448617| +Carbohydrate Research,Elsevier ,00086215|00086215 +Carbon,Elsevier ,00086223| +Carbon Balance and Management,Springer (Biomed Central Ltd.),17500680|17500680 +Carbon letters,Korean Carbon Society,19764251| +Carbon Management,Informa UK (Taylor & Francis),17583004|17583012 +Carbonates and Evaporites,Springer-Verlag,08912556|18785212 +Carbon—Heteroatom Bond-Forming Reactions,Thieme Publishing Group,20600410 +Carcinogenesis,Oxford University Press,01433334|14602180 +Card Technology Today,Elsevier ,09652590| +Cardiac Cath Lab Director,SAGE Publications,21501335|21500134 +Cardiac Electrophysiology Clinics,Elsevier ,18779182| +Cardiac Electrophysiology Review,Springer (Kluwer Academic Publishers),13852264| +Cardiac Failure Review,"""Medical Media Communications LTD, T/A Radcliffe Cardiology""",20577559| +Cardio-IT,LLC Science and Innovations,23130318 +Cardio-Oncology,Springer (Biomed Central Ltd.),20573804 +Cardiocore,Elsevier ,1889898X| +Cardiogenetics,PAGEPress Publications,20358253|20358148 +Cardiologia Croatica,"""Medical Publishing, d.o.o.""",1848543X|18485448 +Cardiology,S. Karger AG,00086312|14219751 +Cardiology and Angiology An International Journal,Sciencedomain International,2347520X +Cardiology and Therapy,Springer-Verlag,21938261|21936544 +Cardiology Clinics,Elsevier ,07338651| +Cardiology Clinics,Elsevier ,07338651| +Cardiology in Review,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10615377| +Cardiology in the Young,Cambridge University Press,10479511|14671107 +Cardiology Journal,VM Media Sp zo.o. - VMGroup SK,18975593|1898018X +Cardiology News,Elsevier ,15448800| +Cardiology Research,"""Elmer Press, Inc.""",19232829|19232837 +Cardiology Research and Practice,Hindawi Publishing Corporation,20908016|20900597 +Cardiometry,Russian New University,23047232|23047232 +Cardiorenal Medicine,S. Karger AG,16643828|16645502 +CardioVasc,Springer-Verlag,16174933|16183851 +Cardiovascular & Haematological Disorders - Drug Targets,Bentham Science,1871529X| +Cardiovascular & Hematological Agents in Medicinal Chemistry,Bentham Science,18715257| +CardioVascular and Interventional Radiology,Springer-Verlag,01741551|1432086X +Cardiovascular and Thoracic Open,SAGE Publications,20555520 +Cardiovascular Diabetology,Springer (Biomed Central Ltd.),14752840|14752840 +Cardiovascular Diagnosis and Therapy,AME Publishing Company,22233652|22233660 +Cardiovascular Drug Reviews,Wiley Blackwell (Blackwell Publishing),08975957|15273466 +Cardiovascular Drugs and Therapy,Springer-Verlag,09203206|15737241 +Cardiovascular Endocrinology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,2162688X| +Cardiovascular Endocrinology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,21626898| +Cardiovascular Engineering An International Journal,Springer (Kluwer Academic Publishers),15678822| +Cardiovascular Engineering and Technology,Springer-Verlag,1869408X|18694098 +Cardiovascular Innovations and Applications,"""Compuscript, Ltd.""",20098618| +Cardiovascular Intervention and Therapeutics,Springer-Verlag,18684300|18684297 +Cardiovascular Intervention and Therapeutics Japanese Edition,Japanese Association of Cardiovascular Intervention and Therapeutics,18840027|21873526 +Cardiovascular Journal,Bangladesh Journals Online,20710917|23096357 +CardioVascular Journal of Africa,Clinics Cardive Publishing,19951892|16800745 +Cardiovascular Pathology,Elsevier ,10548807| +Cardiovascular Pharmacology Open Access,OMICS Publishing Group,23296607 +Cardiovascular Psychiatry and Neurology,Hindawi Publishing Corporation,20900163|20900171 +Cardiovascular Radiation Medicine,Elsevier ,15221865| +Cardiovascular Radiology,Springer-Verlag,03427196| +Cardiovascular Regenerative Medicine,"Smart Science and Technology, LLC",23783141 +Cardiovascular Research,Oxford University Press,00086363|17553245 +Cardiovascular Revascularization Medicine,Elsevier ,15538389| +Cardiovascular Surgery,Elsevier ,09672109| +Cardiovascular Surgery and Interventions,Baycinar Tibbi Yayincilik,21489211 +Cardiovascular System,Herbert Publications,20524358 +Cardiovascular Therapeutics,Wiley Blackwell (Blackwell Publishing),17555914|17555922 +CARDIOVASCULAR THERAPY AND PREVENTION,"Silicea - Poligraf, LLC",17288800| +Cardiovascular Toxicology,Springer-Verlag,15307905|15307905 +Cardiovascular Ultrasound,Springer (Biomed Central Ltd.),14767120|14767120 +Cardozo Studies in Law and Literature,University of California Press,10431500| +Care Giver,Informa UK (Taylor & Francis),10778586| +Care Management Journals,Springer Publishing Company,15210987|00000000 +Career and Technical Education Research,Association for Career and Technical Education Research,1554754X|15547558 +Career Designing Research and Counselling,Vytautas Magnus University,23352191|23352205 +Career Development and Transition for Exceptional Individuals,SAGE Publications,21651434|21651442 +Career Development International,Emerald (MCB UP ),13620436|00000000 +Caribbean Journal of Science,BioOne (University of Puerto Rico at Mayaguez),00086452| +Caribbean Studies,Muse - Johns Hopkins University Press,19409095 +Caribisch Juristenblad,Boom Uitgevers Den Haag,22113266| +Caries Research,S. Karger AG,00086568|1421976X +Caring for the Ages,Elsevier ,15264114| +Carlsberg Research Communications,Springer-Verlag,01051938| +Carnegie Institution of Washington publication,Smithsonian Institution Biodiversity Heritage Library,00994936| +Carnegie-Rochester Conference Series on Public Policy,Elsevier ,01672231|01672231 +Carnets de géologie (Notebooks on geology),INIST-CNRS,17652553|16340744 +Carpathian Mathematical Publications,Vasyl Stefanyk Precarpathian National University,20759827|23130210 +Carrefours de l éducation,CAIRN,12623490|19696949 +Carta Mensual INTAL No 226 Junio 2015,Felipe Herrera Library (Inter-American Development Bank),10271899| +Cartilage,SAGE Publications,19476035|19476043 +Cartographic Perspectives,North American Cartographic Information Society,10489053| +Cartographica The International Journal for Geographic Information and Geovisualization,University of Toronto Press Inc,03177173|19119925 +Cartography,Informa UK (Taylor & Francis),00690805| +Cartography and Geographic Information Science,Informa UK (Taylor & Francis),15230406|15450465 +Cartoon and Animation Studies,Korean Society of Cartoon and Animation Studies,1738009X| +Caryologia,Informa UK (Taylor & Francis),00087114|21655391 +Case Reports in Anesthesiology,Hindawi Publishing Corporation,20906382|20906390 +Case Reports in Cardiology,Hindawi Publishing Corporation,20906404|20906412 +Case Reports in Clinical Medicine,"""Scientific Research Publishing, Inc.""",23257075|23257083 +Case Reports in Clinical Pathology,Sciedu Press,23312726|23312734 +Case Reports in Critical Care,Hindawi Publishing Corporation,20906420|20906439 +Case Reports in Dentistry,Hindawi Publishing Corporation,20906447|20906455 +Case Reports in Dermatological Medicine,Hindawi Publishing Corporation,20906463|20906471 +Case Reports in Dermatology,S. Karger AG,16626567 +Case Reports in Emergency Medicine,Hindawi Publishing Corporation,2090648X|20906498 +Case Reports in Endocrinology,Hindawi Publishing Corporation,20906501|2090651X +Case Reports in Gastroenterology,S. Karger AG,16620631|16620631 +Case Reports in Gastrointestinal Medicine,Hindawi Publishing Corporation,20906528|20906536 +Case Reports in Genetics,Hindawi Publishing Corporation,20906544|20906552 +Case Reports in Hematology,Hindawi Publishing Corporation,20906560|20906579 +Case Reports in Hepatology,Hindawi Publishing Corporation,20906587|20906595 +Case Reports in Immunology,Hindawi Publishing Corporation,20906609|20906617 +Case Reports in Infectious Diseases,Hindawi Publishing Corporation,20906625|20906633 +Case Reports in Internal Medicine,Sciedu Press,23327243|23327251 +Case Reports in Medicine,Hindawi Publishing Corporation,16879627|16879635 +Case Reports in Nephrology,Hindawi Publishing Corporation,20906641|2090665X +Case Reports in Nephrology and Dialysis,S. Karger AG,22969705 +Case Reports in Nephrology and Urology,S. Karger AG,16645510 +Case Reports in Neurological Medicine,Hindawi Publishing Corporation,20906668|20906676 +Case Reports in Neurology,S. Karger AG,1662680X +Case Reports in Obstetrics and Gynecology,Hindawi Publishing Corporation,20906684|20906692 +Case Reports in Oncological Medicine,Hindawi Publishing Corporation,20906706|20906714 +Case Reports in Oncology,S. Karger AG,16626575 +Case Reports in Ophthalmological Medicine,Hindawi Publishing Corporation,20906722|20906730 +Case Reports in Ophthalmology,S. Karger AG,16632699 +Case Reports in Orthopedics,Hindawi Publishing Corporation,20906749|20906757 +Case Reports in Otolaryngology,Hindawi Publishing Corporation,20906765|20906773 +Case Reports in Pancreatic Cancer,Mary Ann Liebert,23799897|23799897 +Case Reports in Pathology,Hindawi Publishing Corporation,20906781|2090679X +Case Reports in Pediatrics,Hindawi Publishing Corporation,20906803|20906811 +Case Reports in Perinatal Medicine,Walter de Gruyter GmbH,21928932|21928959 +Case Reports in Plastic Surgery and Hand Surgery,Informa UK (Taylor & Francis),23320885 +Case Reports in Psychiatry,Hindawi Publishing Corporation,2090682X|20906838 +Case Reports in Pulmonology,Hindawi Publishing Corporation,20906846|20906854 +Case Reports in Radiology,Hindawi Publishing Corporation,20906862|20906870 +Case Reports in Rheumatology,Hindawi Publishing Corporation,20906889|20906897 +Case Reports in Surgery,Hindawi Publishing Corporation,20906900|20906919 +Case Reports in Transplantation,Hindawi Publishing Corporation,20906943|20906951 +Case Reports in Urology,Hindawi Publishing Corporation,2090696X|20906978 +Case Reports in Vascular Medicine,Hindawi Publishing Corporation,20906986|20906994 +Case Reports in Veterinary Medicine,Hindawi Publishing Corporation,20907001|2090701X +Case Reports in Women s Health,Elsevier ,22149112| +Case Studies in Business and Management,"""Macrothink Institute, Inc.""",23333324 +Case Studies in Construction Materials,Elsevier ,22145095| +Case Studies in Engineering Failure Analysis,Elsevier ,22132902| +Case Studies in Fire Safety,Elsevier ,2214398X| +Case Studies in Mechanical Systems and Signal Processing,Elsevier ,23519886| +Case Studies in Nondestructive Testing and Evaluation,Elsevier ,22146571| +Case Studies in Sport Management,Human Kinetics,23725540|21672458 +Case Studies in Structural Engineering,Elsevier ,22143998| +Case Studies in Surgery,Sciedu Press,23777311|2377732X +Case Studies in Thermal Engineering,Elsevier ,2214157X| +Case Studies on Transport Policy,Elsevier ,2213624X| +Cases Journal,Springer (Biomed Central Ltd.),17571626|17571626 +Casopis Slezského Zemského Muzea (A),De Gruyter Open Sp. z o.o. ,12113026| +Caspian Journal of Applied Sciences Research,Caspian Journal of Applied Sciences Research,22519114|22519114 +Castanea,BioOne (Castanea),00087475|19384386 +Catalan Journal of Communication & Cultural Studies,Intellect,17571898|17571901 +Catalan Review,Liverpool University Press,02135949|2053339X +Catalan Review,Liverpool University Press,02135949| +Cataloging & Classification Quarterly,Informa UK (Taylor & Francis),01639374|15444554 +Catalysis Communications,Elsevier ,15667367| +Catalysis for Sustainable Energy,De Gruyter Open Sp. z o.o. ,20846819 +Catalysis in Industry,Pleiades Publishing,20700504|20700555 +Catalysis Letters,Springer-Verlag,1011372X|1572879X +Catalysis Reviews,Informa UK (Taylor & Francis),01614940|15205703 +Catalysis Science & Technology,The Royal Society of Chemistry,20444753|20444761 +Catalysis Structure & Reactivity,Maney Publishing,2055074X|20550758 +Catalysis Surveys from Asia,Springer-Verlag,15711013|15749266 +Catalysis Surveys from Japan,Springer (Kluwer Academic Publishers),13846574| +Catalysis Today,Elsevier ,09205861| +Catalyst Tuning by Water,Thieme Publishing Group,20600038 +Catalyst-Free Addition in C—N Bond Formation,Thieme Publishing Group,20600151 +Catalyst-Free Addition of Carbonyl Compounds,Thieme Publishing Group,20600143 +Catalysts,MDPI AG,20734344 +Catalytic Asymmetric Additions of Alkynes to Aliphatic Aldehydes via Zinc(II) Salts,Thieme Publishing Group,20200250 +Catalytic Diboration Conjugate Additions,Thieme Publishing Group,20100191 +Catalytic Enantioselective Fluorination,Thieme Publishing Group,20300557 +Catalytic Generation of Activated Carboxylates from α β-Epoxyaldehydes,Thieme Publishing Group,20400314 +Catalytic Use of Indium(0) for C—C Bond Transformations in Water,Thieme Publishing Group,20600615 +Catalyzed Carbozincation of Alkenes,Thieme Publishing Group,20100213 +Catalyzed Reactions,Thieme Publishing Group,20600348 +Catch-Cropped Soils,American Society of Agronomy, +Catedral Tomada Revista de crítica literaria latinoamericana,"""University Library System, University of Pittsburgh""",21690847 +CATENA,Elsevier ,03418162| +Catheterization and Cardiovascular Diagnosis,Wiley Blackwell (John Wiley & Sons),00986569|10970304 +Catheterization and Cardiovascular Interventions,Wiley Blackwell (John Wiley & Sons),15221946|1522726X +Catholic Social Science Review,Philosophy Documentation Center,10910905| +Catholic Social Science Review,Philosophy Documentation Center,10910905| +Catrina The International Journal of Environmental Sciences,"""Al Manhal FZ, LLC""",16875052| +CATTECH,Springer (Kluwer Academic Publishers),13846566| +Caucasus Survey,Informa UK (Taylor & Francis),23761199|23761202 +CAUCHY,Maulana Malik Ibrahim State Islamic University,20860382| +CBU International Conference Proceedings,Central Bohemia University,1805997X|18059961 +CEA Critic,Muse - Johns Hopkins University Press,23275898 +CEAS Aeronautical Journal,Springer-Verlag,18695582|18695590 +CEAS Space Journal,Springer-Verlag,18682502|18682510 +CedarEthics A Journal of Critical Thinking in Bioethics,Centennial Library,23339713 +Cedrus,Cedrus,21478058| +Ceiba,Latin America Journals Online,00088692| +Celal Bayar Üniversitesi Fen Bilimleri Dergisi,Celal Bayar University Journal of Science,1305130X|13051385 +Celal Bayar Üniversitesi Sosyal Bilimler Dergisi,Celal Bayar University Journal of Social Sciences,13044796|21462844 +Celebrity Studies,Informa UK (Taylor & Francis),19392397|19392400 +Celestial Mechanics,Springer-Verlag,00088714| +Celestial Mechanics and Dynamical Astronomy,Springer-Verlag,09232958|15729478 +Celeuma,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,23187875 +Cell,Elsevier ,00928674| +Cell & Bioscience,Springer (Biomed Central Ltd.),20453701|20453701 +Cell & Chromosome,Springer (Biomed Central Ltd.),14759268| +Cell & Developmental Biology,OMICS Publishing Group,21689296 +Cell & Tissue Transplantation & Therapy,"""Libertas Academica, Ltd.""",11790687 +Cell Adhesion & Migration,Landes Bioscience,19336918|19336926 +Cell and Gene Therapy Insights,"""BioInsights Publishing, Ltd.""",20597800|20597800 +Cell and Tissue Banking,Springer-Verlag,13899333|15736814 +Cell and Tissue Biology,Pleiades Publishing,1990519X|19905203 +Cell and Tissue Research,Springer-Verlag,0302766X|14320878 +Cell Biochemistry and Biophysics,Springer-Verlag,10859195|15590283 +Cell Biochemistry and Function,Wiley Blackwell (John Wiley & Sons),02636484|10990844 +Cell Biology,Science Publishing Group,23300175| +Cell Biology and Toxicology,Springer-Verlag,07422091|15736822 +Cell Biology Education,American Society for Cell Biology,15367509|15367509 +Cell Biology Education,American Society for Cell Biology,19317913 +Cell Biology International,Wiley Blackwell (John Wiley & Sons),10656995|10958355 +Cell Biology International Reports,Portland Press,03091651|20415346 +Cell Biology Research & Therapy,OMICS Publishing Group,23249293 +Cell Biophysics,Springer-Verlag,01634992| +Cell Calcium,Elsevier ,01434160| +Cell Chemical Biology,Elsevier ,24519456| +Cell Chemical Biology,Elsevier ,24519456| +Cell Chemical Biology,Elsevier ,24519456| +Cell Chemical Biology,Elsevier ,24519456| +Cell Communication & Adhesion,Informa UK (Taylor & Francis),15419061|15435180 +Cell Communication and Signaling,Springer (Biomed Central Ltd.),1478811X|1478811X +Cell Communication Insights,"""Libertas Academica, Ltd.""",11795689 +Cell Cycle,Landes Bioscience,15384101|15514005 +Cell Death and Differentiation,Nature Publishing Group,13509047|13509047 +Cell Death and Disease,Nature Publishing Group,20414889 +Cell Death Discovery,Nature Publishing Group,20587716 +Cell death in therapy,De Gruyter Open Sp. z o.o. ,23537817 +Cell Differentiation,Elsevier ,00456039| +Cell Differentiation and Development,Elsevier ,09223371| +Cell Discovery,Nature Publishing Group,20565968 +Cell Division,Springer (Biomed Central Ltd.),17471028|17471028 +Cell Health and Cytoskeleton,Dove Medical Press,11791330 +Cell Host & Microbe,Elsevier ,19313128| +Cell Medicine,Cognizant Communication Corp,21551790| +Cell Metabolism,Elsevier ,15504131| +Cell Motility,Wiley Blackwell (John Wiley & Sons),02716585| +Cell Motility and the Cytoskeleton,Wiley Blackwell (John Wiley & Sons),08861544|10970169 +Cell Preservation Technology,Mary Ann Liebert,1538344X|00000000 +Cell Proliferation,Wiley Blackwell (Blackwell Publishing),09607722|13652184 +Cell Regeneration,Springer (Biomed Central Ltd.),20459769|20459769 +Cell Reports,Elsevier ,22111247| +Cell Research,Nature Publishing Group,10010602|17487838 +Cell signalling and Trafficking,Herbert Publications,20541481 +Cell Signalling Biology,Portland Press,17497787|17497787 +Cell Stem Cell,Elsevier ,19345909| +Cell Stress and Chaperones,Springer-Verlag,13558145|14661268 +Cell Structure and Function,Japan Society for Cell Biology,03867196|13473700 +Cell Systems,Elsevier ,24054712| +Cell Therapy and Regenerative Medicine Journal,"""DiscoverSys, Inc.""",2476373X +Cell Transplantation,Cognizant Communication Corp,09636897|15553892 +CellBio,"""Scientific Research Publishing, Inc.""",23257776|23257792 +Cells,MDPI AG,20734409 +Cells Tissues Organs,S. Karger AG,14226405|14226421 +Cellular & Molecular Biology Letters,De Gruyter Open Sp. z o.o. ,14258153|16891392 +Cellular and Molecular Bioengineering,Springer-Verlag,18655025|18655033 +Cellular and Molecular Biology,CMB Association,1165158X +Cellular and Molecular Exercise Physiology,Cellular and Molecular Exercise Physiology,2049419X|2049419X +Cellular and Molecular Immunology,Nature Publishing Group,16727681|20420226 +Cellular and Molecular Life Sciences,Springer-Verlag,1420682X|14209071 +Cellular and Molecular Neurobiology,Springer-Verlag,02724340|15736830 +Cellular Immunology,Elsevier ,00088749|10902163 +Cellular Logistics,Landes Bioscience,21592780|21592799 +Cellular Microbiology,Wiley Blackwell (Blackwell Publishing),14625814|14625822 +Cellular Oncology,Springer-Verlag,22113428|22113436 +Cellular Oncology,IOS Press,15705870|18758606 +Cellular Physiology and Biochemistry,S. Karger AG,10158987|14219778 +"""Cellular Reprogramming (Formerly """"Cloning and Stem Cells"""")""",Mary Ann Liebert,21524971|21524998 +Cellular Signalling,Elsevier ,08986568| +Cellular Therapy and Transplantation,Foundation for the Development of Bone Marrow Transplantation,18668836 +Cellulose,Springer-Verlag,09690239|1572882X +Cement and Concrete Composites,Elsevier ,09589465| +Cement and Concrete Research,Elsevier ,00088846| +Cement Concrete and Aggregates,ASTM International,01496123| +Cement Science and Concrete Technology,Japan Cement Association,09163182|21873313 +CEMOTI,PERSEE Program,07649878| +CEN Case Reports,Springer-Verlag,21924449 +Centaurus,Wiley Blackwell (Blackwell Publishing),00088994|16000498 +Center for Migration Studies special issues,Wiley Blackwell (Blackwell Publishing),2050411X| +Center House Bulletin,JSTOR,0098809X| +Central African Journal of Medicine,African Journals Online ,89176 +Central and Eastern European Review,De Gruyter Open Sp. z o.o. ,17527503 +Central Asia and the Caucasus,"""Science and Education, Ltd.""",14046091| +Central Asian Affairs,Brill Academic Publishers,22142282|22142290 +Central Asian Journal of Global Health,"""University Library System, University of Pittsburgh""",21667403 +Central Asian Survey,Informa UK (Taylor & Francis),02634937|14653354 +Central Asiatic Journal,Harrassowitz Publishing House,00089192| +Central Asiatic Journal,Harrassowitz Publishing House,00089192| +Central Bank Review,Elsevier ,13030701| +Central Europe,Maney Publishing,14790963|00000000 +Central European Business Review,University of Economics,18054854|18054862 +Central European Geology,Akademiai Kiado Zrt.,17882281|17893348 +Central European History,Cambridge University Press,00089389|15691616 +Central European Journal of Biology,De Gruyter Open Sp. z o.o. ,1895104X|16443632 +Central European Journal of Botany,Academic Publishing House Researcher,24122262|2413757X +Central European Journal of Chemistry,De Gruyter Open Sp. z o.o. ,18951066|16443624 +Central European Journal of Computer Science,De Gruyter Open Sp. z o.o. ,18961533|20819935 +Central European Journal of Engineering,De Gruyter Open Sp. z o.o. ,18961541|20819927 +Central European Journal of Geosciences,De Gruyter Open Sp. z o.o. ,20819900|18961517 +Central European Journal of Immunology,Termedia Sp. z.o.o.,14263912| +Central European Journal of Management,Masaryk University Press,23362693|23364890 +Central European Journal of Mathematics,De Gruyter Open Sp. z o.o. ,18951074|16443616 +Central European Journal of Medicine,De Gruyter Open Sp. z o.o. ,18951058|16443640 +Central European Journal of Nursing and Midwifery,University of Ostrava,23363517 +Central European Journal of Operations Research,Springer-Verlag,1435246X|16139178 +Central European Journal of Physics,De Gruyter Open Sp. z o.o. ,18951082|16443608 +Central European Journal of Public Health, National Institute of Public Health,12107778|18031048 +Central European Journal of Public Policy,Walter de Gruyter GmbH,18024866 +Central European Journal of Urology,Polish Urological Association,05007208|20804873 +Central European Journal of Zoology,Academic Publishing House Researcher,24122270| +Central European Neurosurgery,Thieme Publishing Group,18684904|18684912 +Central Issues in Anthropology,Wiley Blackwell (Blackwell Publishing),07397917| +Central Nervous System Agents in Medicinal Chemistry,Bentham Science,18715249| +Central Russian Journal of Social Sciences,Infra-M Academic Publishing House,20712367| +Central States Speech Journal,Informa UK (Taylor & Francis),00089575| +CEPAL Review,United Nations Publications,16840348 +Cephalalgia,SAGE Publications,03331024|14682982 +Cerâmica,SciELO,03666913|03666913 +Cerâmica Industrial,Editora Cubo Multimidia,14134608 +Ceramics - Silikaty,"""Institute of Rock Structure and Mechanics, AS CR""",08625468| +Ceramics International,Elsevier ,02728842| +Ceramurgia International,Elsevier ,03905519| +Cercetari Agronomice in Moldova,De Gruyter Open Sp. z o.o. ,03795837|20671865 +Cercle Linguistique de Copenhague,Informa UK (Taylor & Francis),01050206| +Cereal Chemistry,Scientific Societies,00090352| +Cereal Foods World,Scientific Societies,01466283|01466283 +Cereal Research Communications,Akademiai Kiado Zrt.,01333720|17889170 +Cerebellum & Ataxias,Springer (Biomed Central Ltd.),20538871|20538871 +Cerebral Blood Flow and Metabolism (Japanese journal of cerebral blood flow and metabolism),The Japanese Society of Cerebral Blood Flow and Metabolism,09159401|21887519 +Cerebral Cortex,Oxford University Press,10473211|14602199 +Cerebrospinal Fluid Research,Springer (Biomed Central Ltd.),17438454| +Cerebrovascular Diseases,S. Karger AG,10159770|14219786 +Cerebrovascular Diseases Extra,S. Karger AG,16645456 +Cerevisia,Elsevier ,13737163| +CERNE,SciELO,01047760|23176342 +CERNE,SciELO,01047760| +CESifo Economic Studies,Oxford University Press,1610241X|16127501 +Česká a slovenská neurologie a neurochirurgie,"""Ambit Media, a.s.""",12107859|18024041 +Český finanční a účetní časopis,University of Economics,18022200|18022200 +Ceylon Journal of Medical Science,Sri Lanka Journals Online ,00112232| +Ceylon Journal of Otolaryngology,Sri Lanka Journals Online ,2012855X| +Ceylon Journal of Science (Biological Sciences),Sri Lanka Journals Online ,00692379| +Ceylon Medical Journal,Sri Lanka Journals Online ,00090875|23861274 +CFA Digest,CFA Institute,00469777|19383320 +CFA Institute Conference Proceedings,CFA Institute,15350207| +CFA Institute Conference Proceedings Quarterly,CFA Institute,19302703| +CFA Magazine,CFA Institute,15431398| +cftm,American Society of Agronomy,23743832 +CFW Plexus,Scientific Societies,2168118X +CGB Technical Report,Indiana University Center for Genomics and Bioinformatics,19331916 +Chagyo Kenkyu Hokoku (Tea Research Journal),Japanese Society of Tea Science and Technology,03666190|1883941X +Challenge,Informa UK (Taylor & Francis),05775132|15581489 +Challenge Journal of Structural Mechanics,Tulpar Academic Publishing,21498024 +Challenges,MDPI AG,20781547 +Challenges in Sustainability,Librello,22976477 +Champ pénal,OpenEdition,17775272|17775272 +Champ psy,CAIRN,22602100|22731571 +Champ psychosomatique,CAIRN,12665371|19618638 +Chanakya International Journal of Business Research,"""Indira Institute of Managment, Pune""",23952830 +CHANCE,Informa UK (Taylor & Francis),09332480|18672280 +Change and Adaptation in Socio-Ecological Systems,De Gruyter Open Sp. z o.o. ,23003669 +Change Management An International Journal,Common Ground Publishing,2327798X|23279176 +Change Over Time,Muse - Johns Hopkins University Press,21530548 +Change The Magazine of Higher Learning,Informa UK (Taylor & Francis),00091383|19399146 +Changes,Wiley Blackwell (John Wiley & Sons),02638371|1234980X +Changing English,Informa UK (Taylor & Francis),1358684X|14693585 +Channels,Landes Bioscience,19336950|19336969 +Chaos An Interdisciplinary Journal of Nonlinear Science,American Institute of Physics,10541500|10897682 +Chaos Solitons & Fractals,Elsevier ,09600779| +Chaplaincy Today,Informa UK (Taylor & Francis),10999183| +Chartered Institute of Public Finance and Accountancy Public Money,Informa UK (Taylor & Francis),02611252| +Chasqui,JSTOR,01458973| +Chasqui Revista Latinoamericana de Comunicación,CIESPAL,13901079|1390924X +Chattagram Maa-O-Shishu Hospital Medical College Journal,Bangladesh Journals Online,23057890|23064919 +Che vuoi ?,CAIRN,09942424|22624848 +Check List,Check List Journal,1809127X +Chelonian Conservation and Biology,BioOne (Chelonian Conservation and Biology Journal),10718443|19433956 +CheM,Canadian Centre of Academic Art and Science,19256981|1925699X +Chem-Bio Informatics Journal,Chem-Bio Informatics Society,13476297|13470442 +ChemBioChem,Wiley Blackwell (John Wiley & Sons),14394227|14397633 +ChemBioEng Reviews,Wiley Blackwell (John Wiley & Sons),21969744| +ChemCatChem,Wiley Blackwell (John Wiley & Sons),18673880|18673899 +ChemElectroChem,Wiley Blackwell (John Wiley & Sons),21960216| +Chemical & Engineering News,American Chemical Society,00092347|21574936 +CHEMICAL & PHARMACEUTICAL BULLETIN,Pharmaceutical Society of Japan,00092363|13475223 +Chemical and Biochemical Engineering Quarterly Journal,Croatian Society of Chemical Engineers/HDKI,03529568|18465153 +Chemical and Biological Technologies in Agriculture,Springer (Biomed Central Ltd.),21965641|21965641 +Chemical and Materials Engineering,"""Horizon Research Publishing Co., Ltd.""",23321032|23321067 +Chemical and Petroleum Engineering,Springer-Verlag,00092355|15738329 +Chemical and Process Engineering,De Gruyter Open Sp. z o.o. ,02086425|02086425 +Chemical Biology & Drug Design,Wiley Blackwell (Blackwell Publishing),17470277|17470285 +Chemical Bulletin of Kazakh National University,Center of Physical Chemical Methods of Research and Analysis,15630331|23127554 +Chemical Communications,The Royal Society of Chemistry,13597345|1364548X +Chemical Communications (London),The Royal Society of Chemistry,0009241X| +Chemical Data Collections,Elsevier ,24058300| +Chemical engineering,The Society of Chemical Engineers Japan,03759253| +Chemical Engineering & Technology,Wiley Blackwell (John Wiley & Sons),09307516|15214125 +Chemical Engineering and Processing Process Intensification,Elsevier ,02552701| +Chemical Engineering and Science,"""Science and Education Publishing Co., Ltd.""",23287381| +Chemical Engineering Communications,Informa UK (Taylor & Francis),00986445|15635201 +Chemical Engineering Journal,Elsevier ,13858947| +Chemical Engineering Research and Design,Elsevier ,02638762|02638762 +Chemical Engineering Research Bulletin,Bangladesh Journals Online,03797678|20729510 +Chemical Engineering Science,Elsevier ,00092509| +Chemical Geology,Elsevier ,00092541| +Chemical Geology Isotope Geoscience section,Elsevier ,01689622| +Chemical Health and Safety,Elsevier ,10749098| +Chemical Industry and Chemical Engineering Quarterly,National Library of Serbia,14519372|22177434 +Chemical Papers,De Gruyter Open Sp. z o.o. ,03666352|13369075 +Chemical Physics,Elsevier ,03010104| +Chemical Physics Letters,Elsevier ,00092614| +Chemical Product and Process Modeling,Walter de Gruyter GmbH,21946159|19342659 +Chemical Research in Chinese Universities,Springer-Verlag,10059040|22103171 +Chemical Research in Toxicology,American Chemical Society,0893228X|15205010 +Chemical Reviews,American Chemical Society,00092665|15206890 +Chemical Science,The Royal Society of Chemistry,20416520|20416539 +Chemical Science Transactions,Chemical Science Transactions,22783318|22783458 +Chemical Sciences Journal,OMICS Publishing Group,21503494 +Chemical Senses,Oxford University Press,0379864X|14643553 +Chemical Sensors,Walter de Gruyter GmbH,23917393 +Chemical Society Reviews,The Royal Society of Chemistry,03060012|14604744 +Chemical Speciation and Bioavailability,Informa UK (Taylor & Francis),09542299|09542299 +Chemical Technology,Publishing House Technologija,13921231| +Chemical Vapor Deposition,Wiley Blackwell (John Wiley & Sons),09481907|15213862 +Chemico-Biological Interactions,Elsevier ,00092797| +Chemie der Erde - Geochemistry,Elsevier ,00092819| +Chemie in unserer Zeit,Wiley Blackwell (John Wiley & Sons),00092851|15213781 +Chemie Ingenieur Technik,Wiley Blackwell (John Wiley & Sons),0009286X|15222640 +ChemInform,Wiley Blackwell (John Wiley & Sons),09317597|15222667 +Chemische Berichte,Wiley Blackwell (John Wiley & Sons),00092940|10990682 +Chemische Revue über die Fett- und Harz-Industrie,Wiley Blackwell (John Wiley & Sons),03667960|15214133 +Chemische Umschau auf dem Gebiet der Fette Oele Wachse und Harze,Wiley Blackwell (John Wiley & Sons),03668320|15214133 +Chemischer Informationsdienst,Wiley Blackwell (John Wiley & Sons),00092975| +Chemischer Informationsdienst Organische Chemie,Wiley Blackwell (John Wiley & Sons),03005151| +Chemistry & Biodiversity,Wiley Blackwell (John Wiley & Sons),16121872|16121880 +Chemistry & Biology,Elsevier ,10745521| +Chemistry & Industry,Wiley Blackwell (John Wiley & Sons),00093068| +Chemistry - A European Journal,Wiley Blackwell (John Wiley & Sons),09476539|15213765 +Chemistry - An Asian Journal,Wiley Blackwell (John Wiley & Sons),18614728|1861471X +Chemistry and Ecology,Informa UK (Taylor & Francis),02757540|10290370 +Chemistry and Physics of Lipids,Elsevier ,00093084| +Chemistry and Technology of Fuels and Oils,Springer-Verlag,00093092|15738310 +Chemistry Biology Ecology,Saratov State University,18169775| +Chemistry Central Journal,Springer (Biomed Central Ltd.),1752153X|1752153X +Chemistry Education Research and Practice,The Royal Society of Chemistry,17561108|11094028 +Chemistry International,Walter de Gruyter GmbH,01936484|13652192 +Chemistry Letters,The Chemical Society of Japan,03667022|13480715 +Chemistry of Heterocyclic Compounds,Springer-Verlag,00093122|15738353 +Chemistry of Materials,American Chemical Society,08974756|15205002 +Chemistry of Natural Compounds,Springer-Verlag,00093130|15738388 +chemistry of plant raw material,Altai State University,10295151|10295143 +Chemistry-Didactics-Ecology-Metrology,De Gruyter Open Sp. z o.o. ,20844506|20844506 +ChemistryOpen,Wiley Blackwell (John Wiley & Sons),21911363| +ChemistrySelect,Wiley Blackwell (John Wiley & Sons),23656549| +CHEMKON,Wiley Blackwell (John Wiley & Sons),09445846|15213730 +ChemMedChem,Wiley Blackwell (John Wiley & Sons),18607179|18607187 +ChemNanoMat,Wiley Blackwell (John Wiley & Sons),2199692X| +Chemoecology,Springer-Verlag,09377409|14230445 +Chemometrics and Intelligent Laboratory Systems,Elsevier ,01697439| +Chemosensors,MDPI AG,22279040 +Chemosensory Perception,Springer-Verlag,19365802|19365810 +Chemosphere,Elsevier ,00456535| +Chemosphere - Global Change Science,Elsevier ,14659972| +Chemotherapy,S. Karger AG,00093157|14219794 +Chemotherapy Open access,OMICS Publishing Group,21677700 +Chemotherapy Research and Practice,Hindawi Publishing Corporation,20902107|20902115 +ChemPhysChem,Wiley Blackwell (John Wiley & Sons),14394235|14397641 +ChemPlusChem,Wiley Blackwell (John Wiley & Sons),21926506| +ChemSusChem,Wiley Blackwell (John Wiley & Sons),18645631|1864564X +ChemTexts,Springer-Verlag,21993793 +ChemViews,Wiley Blackwell (John Wiley & Sons),21903735 +Chesapeake Science,Springer-Verlag,00093262| +Chest Disease Reports,PAGEPress Publications,20394764|20394772 +CHEST Journal,Elsevier ,00123692|19313543 +Chest Surgery Clinics of North America,Elsevier ,10523359| +Chiang Mai University Journal of Natural Sciences,Chiang Mai University,16851994| +Chiasmi International,Philosophy Documentation Center,16376757| +Chicago Journal of Theoretical Computer Science,Theory of Computing Exchange,10730486 +Chicago Review,JSTOR,00093696| +Child & Family Behavior Therapy,Informa UK (Taylor & Francis),07317107|1545228X +Child & Family Social Work,Wiley Blackwell (Blackwell Publishing),13567500|13652206 +Child & Youth Care Forum,Springer-Verlag,10531890|15733319 +Child & Youth Care Quarterly,Springer-Verlag,08930848| +Child & Youth Services,Informa UK (Taylor & Francis),0145935X|15452298 +Child Abuse & Neglect,Elsevier ,01452134| +Child Abuse Review,Wiley Blackwell (John Wiley & Sons),09529136|10990852 +Child and Adolescent Mental Health,Wiley Blackwell (Blackwell Publishing),1475357X|14753588 +Child and Adolescent Psychiatric Clinics of North America,Elsevier ,10564993| +Child and Adolescent Psychiatry and Mental Health,Springer (Biomed Central Ltd.),17532000|17532000 +Child and Adolescent Psychopharmacology News,Guilford Publications,10850295| +Child and Adolescent Social Work Journal,Springer-Verlag,07380151|15732797 +Child Behavior Therapy,"""Informa UK (Haworth Press, Inc.,)""",01621416| +Child Care,Mark Allen Group,17539900| +Child Care Health and Development,Wiley Blackwell (Blackwell Publishing),03051862|13652214 +Child Care in Practice,Informa UK (Taylor & Francis),13575279|1476489X +Child Care Quarterly,Springer-Verlag,00456632| +Child Development,Wiley Blackwell (Blackwell Publishing),00093920|14678624 +Child Development Perspectives,Wiley Blackwell (Blackwell Publishing),17508592|17508606 +Child Development Research,Hindawi Publishing Corporation,20903987|20903995 +Child Health Nursing Research,Korean Academy of Child Health Nursing,22879110|22879129 +Child Indicators Research,Springer-Verlag,1874897X|18748988 +Child Language Teaching and Therapy,SAGE Publications,02656590|14770865 +Child Maltreatment,SAGE Publications,10775595|00000000 +Child Neurology,Polish Society of Child Neurologists,12303690| +Child Neurology Open,SAGE Publications,2329048X +Child Neuropsychology,Informa UK (Taylor & Francis),09297049|17444136 +Child Psychiatry & Human Development,Springer-Verlag,0009398X|15733327 +Child Psychology and Psychiatry Review,Cambridge University Press,13606417|14692155 +Child s Nervous System,Springer-Verlag,02567040|14330350 +Child Studies in Asia-Pacific Contexts,Korean Association of Child Studies,2288601X| +Child Studies in Diverse Contexts,Korean Association of Child Studies,2233890X| +Childhood,SAGE Publications,09075682|00000000 +Childhood Education,Informa UK (Taylor & Francis),00094056|21620725 +Childhood in the Past,Informa UK (Taylor & Francis),17585716|20408528 +Childhood Kidney Diseases,Korean Society of Pediatric Nephrology,23840242|23840250 +Childhood Obesity (Formerly Obesity and Weight Management),Mary Ann Liebert,21532168|21532176 +Children,MDPI AG,22279067 +Children & Schools,Oxford University Press,15328759|1545682X +Children & Society,Wiley Blackwell (Blackwell Publishing),09510605|10990860 +Children and Libraries,American Library Association,15429806| +Children and Youth Services Review,Elsevier ,01907409| +Children Australia,Cambridge University Press,10350772|10350772 +Children s Geographies,Informa UK (Taylor & Francis),14733285|14733277 +Children s Health Care,Informa UK (Taylor & Francis),02739615|15326888 +Children s Literature,Muse - Johns Hopkins University Press,15433374 +Children s Literature Association Quarterly,Muse - Johns Hopkins University Press,15531201 +Children s Literature in Education,Springer-Verlag,00456713|15731693 +Children s Literature Studies and Research,"""Al Manhal FZ, LLC""",2090827X| +Children s Services,Informa UK (Taylor & Francis),10939644|15326918 +Children Youth and Environments,"""Children, Youth and Environments Center""",15462250|15462250 +Chilean journal of agricultural research,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7185839 +CHIMERA Revista de Corpus de Lenguas Romances y Estudios Lingüísticos,Servicio de Publicaciones de la Universidad Autonoma de Madrid,23862629|23862629 +Chimères,CAIRN,09866035|21114412 +Chimerism,Landes Bioscience,19381956|19381964 +CHIMIA International Journal for Chemistry,Swiss Chemical Society,00094293|00000000 +Chimica Techno Acta,Ural Federal University,24095613|24111414 +China & World Economy,Wiley Blackwell (Blackwell Publishing),16712234|1749124X +China Accounting and Finance Review,Springer - Global Science Journals,23073055 +China Agricultural Economic Review,Emerald (MCB UP ),1756137X| +China An International Journal,World Scientific ,02197472|02198614 +China and Sinology,China Research Center,15988465| +China and WTO Review,Yijun Institute of International Law,23838221|23844388 +China Communications,Institute of Electrical and Electronics Engineers,16735447| +China Economic Journal,Informa UK (Taylor & Francis),17538963| +China Economic Journal,Informa UK (Taylor & Francis),17538963|17538971 +China Economic Policy Review,World Scientific ,17939690|17939704 +China Economic Review,Elsevier ,1043951X| +China Finance and Economic Review,Springer (Biomed Central Ltd.),20954638|21965633 +China Finance Review International,Emerald (MCB UP ),20441398| +China Foundry,Springer-Verlag,16726421|23659459 +china Frontiers,The Higher Education Electronic & Audio-Video Press,14323123| +China Information,SAGE Publications,0920203X|1741590X +China Journal of Accounting Research,Elsevier ,17553091| +China Journal of Accounting Studies,Informa UK (Taylor & Francis),21697221|21697213 +China Journal of Chinese Materia Medica,China Journal of Chinese Materia Medica,10015302| +China Journal of Social Work,Informa UK (Taylor & Francis),17525098|17525101 +China Law Review,Informa UK (Taylor & Francis),17457238|17506611 +China Ocean Engineering,Springer-Verlag,08905487|21918945 +China PARTICUOLOGY,Elsevier ,16722515| +China Population Resources and Environment,Elsevier ,1872583X| +China Quarterly of International Strategic Studies,World Scientific ,23777400|23777419 +China Report,SAGE Publications,00094455|0973063X +China Review International,Muse - Johns Hopkins University Press,15279367 +China Studies,"""Institute of Chinese Studies, Hankuk University of Foreign Studies""",12258695| +China-EU Law Journal,Springer-Verlag,18685153|18685161 +China-USA Business Review,David Publishing Company,15371514|15371514 +Chinese Annals of Mathematics Series B,Springer-Verlag,02529599|18606261 +Chinese Archaeology,Walter de Gruyter GmbH,21605025|21605068 +Chinese as a Second Language Research,Walter de Gruyter GmbH,21932263|21932271 +Chinese Astronomy,Elsevier ,01466364| +Chinese Astronomy and Astrophysics,Elsevier ,02751062| +Chinese Birds,Chinese Birds Press,16747674| +CHINESE BULLETIN OF BOTANY,China Science Publishing & Media Ltd.,16743466| +Chinese Business Review,David Publishing Company,15371506|15371506 +Chinese Chemical Letters,Elsevier ,10018417| +Chinese Economy,Informa UK (Taylor & Francis),10971475|15580954 +Chinese Education & Society,Informa UK (Taylor & Francis),10611932|19447116 +Chinese Geographical Science,Springer-Verlag,10020063|1993064X +Chinese Herbal Medicines,Elsevier ,16746384| +Chinese Journal of Aeronautics,Elsevier ,10009361| +Chinese Journal of Agricultural Biotechnology,Cambridge University Press,14792362| +Chinese Journal of Analytical Chemistry,Elsevier ,18722040| +CHINESE JOURNAL OF ANALYTICAL CHEMISTRY (CHINESE VERSION),China Science Publishing & Media Ltd.,02533820| +Chinese Journal of Applied Linguistics,Walter de Gruyter GmbH,21929505|21929513 +Chinese Journal of Appplied Environmental Biology,China Science Publishing & Media Ltd.,1006687X| +Chinese Journal of Astronomy and Astrophysics,IOP Publishing,10099271| +Chinese Journal of Astronomy and Astrophysics,IOP Publishing,10099271| +Chinese Journal of Astronomy and Astrophysics,IOP Publishing,10099271| +Chinese Journal of Astronomy and Astrophysics,IOP Publishing,10099271| +Chinese Journal of Astronomy and Astrophysics,IOP Publishing,10099271| +Chinese Journal of Astronomy and Astrophysics,IOP Publishing,10099271| +Chinese Journal of Astronomy and Astrophysics,IOP Publishing,10099271| +Chinese Journal of Biology,Hindawi Publishing Corporation,23147474 +Chinese Journal of Biotechnology,Elsevier ,18722075| +Chinese Journal of Cancer,Springer (Biomed Central Ltd.),1000467X|1944446X +Chinese Journal of Cancer Research,Springer-Verlag,10009604|19930631 +Chinese Journal of Catalysis,Elsevier ,18722067| +CHINESE JOURNAL OF CATALYSIS (CHINESE VERSION),China Science Publishing & Media Ltd.,02539837| +Chinese Journal of Chemical Engineering,Elsevier ,10049541| +Chinese Journal of Chemical Physics,American Institute of Physics,10037713|16740068 +Chinese Journal of Chemistry,Wiley Blackwell (John Wiley & Sons),1001604X|16147065 +Chinese Journal of Chromatography,China Science Publishing & Media Ltd.,10008713|18722059 +Chinese Journal of Clinical Oncology,Springer-Verlag,16727118|19935145 +Chinese Journal of Communication,Informa UK (Taylor & Francis),17544750|17544769 +Chinese Journal of Computers,China Science Publishing & Media Ltd.,02544164| +Chinese Journal of Digestive Diseases,Wiley Blackwell (Blackwell Publishing),14439611|14439573 +CHINESE JOURNAL OF ECO-AGRICULTURE,China Science Publishing & Media Ltd.,16713990| +Chinese Journal of Electronics,Institution of Electrical Engineers,10224653|20755597 +Chinese Journal of Engineering,Hindawi Publishing Corporation,23148063 +Chinese Journal of Geochemistry,Springer-Verlag,10009426|19930364 +Chinese Journal of Geophysics,Wiley Blackwell (John Wiley & Sons),08989591| +Chinese Journal of Integrative Medicine,Springer-Verlag,16720415|19930402 +Chinese Journal of International Law,Oxford University Press,15401650|17469937 +Chinese Journal of Lasers,Shanghai Institute of Optics and Fine Mechanics,02587025| +Chinese Journal of Liquid Crystals and Displays,Shanghai Institute of Optics and Fine Mechanics,10072780| +Chinese Journal of Luminescence,Shanghai Institute of Optics and Fine Mechanics,10007032| +Chinese Journal of Mathematics,Hindawi Publishing Corporation,23148071 +Chinese Journal of Mechanical Engineering,Chinese Journal of Mechanical Engineering,10009345|21928258 +Chinese Journal of Multiple Organ Diseases in the Elderly,China Science Publishing & Media Ltd.,16715403| +Chinese Journal of Natural Medicines,China Science Publishing & Media Ltd.,16723651| +Chinese Journal of Natural Medicines,Elsevier ,18755364| +Chinese Journal of Oceanology and Limnology,Springer-Verlag,02544059|19935005 +Chinese Journal of Optics and Applied Optics,Shanghai Institute of Optics and Fine Mechanics,16742915| +Chinese Journal of Organic Chemistry,Shaghai Institute of Organic Chemistry,02532786| +Chinese Journal of Plant Ecology,Chinese Journal of Plant Ecology,1005264X| +CHINESE JOURNAL OF POLAR RESEARCH,China Science Publishing & Media Ltd.,10077073| +Chinese Journal of Polymer Science,Springer-Verlag,02567679|14396203 +Chinese Journal of Population Resources and Environment,Informa UK (Taylor & Francis),10042857|23254262 +Chinese Journal of Semiconductors,IOP Publishing,02534177| +Chinese Journal of Sociology,SAGE Publications,2057150X|20571518 +Chinese Journal of Traumatology,Elsevier ,10081275| +Chinese Journal of Urban and Environmental Studies,World Scientific ,23457481|2345752X +Chinese Language & Discourse,John Benjamins Publishing Company,18777031|18778798 +Chinese Law & Government,Informa UK (Taylor & Francis),00094609|19447051 +Chinese Literature Essays Articles Reviews (CLEAR),JSTOR,01619705| +Chinese Management Studies,Emerald (MCB UP ),1750614X| +Chinese Medical Journal,Medknow Publications,03666999| +Chinese Medical Record English Edition,Informa UK (Taylor & Francis),23256176|23256176 +Chinese Medical Sciences Journal,Elsevier ,10019294| +Chinese Medicine,"""Scientific Research Publishing, Inc.""",21511918|21511926 +Chinese Medicine,Springer (Biomed Central Ltd.),17498546|17498546 +Chinese Neurosurgical Journal,Springer (Biomed Central Ltd.),20574967 +Chinese Nursing Research,Elsevier ,20957718| +Chinese Optics,Shanghai Institute of Optics and Fine Mechanics,20951531| +Chinese Optics Letters,Shanghai Institute of Optics and Fine Mechanics,16717694| +Chinese Physics,IOP Publishing,10091963|17414199 +Chinese Physics B,IOP Publishing,16741056| +Chinese Physics C,IOP Publishing,16741137| +Chinese Physics C,IOP Publishing,16741137| +Chinese Physics Letters,IOP Publishing,0256307X|17413540 +Chinese Political Science Review,Springer-Verlag,23654244|23654252 +Chinese Science Bulletin,Springer-Verlag,10016538|18619541 +Chinese Science Bulletin (Chinese Version),Science in China Press,0023074X| +Chinese Semiotic Studies,Walter de Gruyter GmbH,21989605|21989613 +Chinese Sociological Review,Informa UK (Taylor & Francis),21620555|21620563 +Chinese Sociology & Anthropology,Informa UK (Taylor & Francis),00094625| +Chinese Studies,Korean Association for Chinese Studies,12299618| +Chinese Studies,"""Scientific Research Publishing, Inc.""",21685428|2168541X +Chinese Studies in History,Informa UK (Taylor & Francis),00094633|15580407 +Chinese Traditional Culture,Hans Publishers,23326794|23326824 +Chinesische Medizin / Chinese Medicine,Springer-Verlag,09302786|21965668 +CHINOPERL,Informa UK (Taylor & Francis),01937774|20516150 +Chiral Alkanes by Hydrogenation of Prochiral Alkenes Catalyzed by Rhodium(I) Complexes,Thieme Publishing Group,20600089 +Chiral Lewis Acid Catalyzed [3 + 3] Cycloadditions of Nitrones to Doubly Activated Cyclopropanes,Thieme Publishing Group,20300034 +Chirality,Wiley Blackwell (John Wiley & Sons),08990042|1520636X +CHIRONOMUS Journal of Chironomidae Research,Norwegian University of Science and Technology Library,01721941|23875372 +Chiropractic & Manual Therapies,Springer (Biomed Central Ltd.),2045709X|2045709X +Chiropractic & Osteopathy,Springer (Biomed Central Ltd.),17461340| +Chirurgia Plastica,Springer-Verlag,03405664| +Chirurgia Plastyczna i Oparzenia / Plastic Surgery & Burns,Evereth Publishing,23007893|23917989 +Chirurgie,Elsevier ,00014001| +Chirurgie de la Main,Elsevier ,12973203| +Chirurgische Gastroenterologie,S. Karger AG,01779990|14219808 +Chitkara Chemistry Review,Chitkara University Publications,23202807|23208813 +Chittagong University Journal of Biological Sciences,Bangladesh Journals Online,19967772| +CHIYEOK KWA YEOKSA The Journal of Korean History,The Pukyung Institute for Korean History,12296600| +Choice Reviews Online,American Library Association,00094978|15238253 +Cholesterol,Hindawi Publishing Corporation,20901283|20901291 +Chonnam Medical Journal,Chonnam National University Medical School (KAMJE),03779564|22337393 +Choonpa Igaku,The Japan Society of Ultrasonics in Medicine,13461176|18819311 +Chôra,Philosophy Documentation Center,15838617| +CHOREGIA,"""Department of Sport Management , University of Peloponnese""",17914027|17914027 +Choreographic Practices,Intellect,20405669|20405677 +Chornomorski Botanical Journal,Chornomorski Botanical Journal,1990553X|23089628 +Chrétiens et sociétés,OpenEdition,1257127X|19650809 +CHRISMED Journal of Health and Research,Medknow Publications,23483334| +Christian Bioethics,Oxford University Press,13803603|17444195 +Christian Higher Education,Informa UK (Taylor & Francis),15363759|15394107 +Christian Journal for Global Health,Christian Journal for Global Health,21672415 +Christianity & Literature,SAGE Publications,01483331|20565666 +Christianity and History in Korea,The Institute of the History of Christianity in Korea,15987256| +chromatikon,Philosophy Documentation Center,20344651| +Chromatographia,Springer-Verlag,00095893|16121112 +Chromatographic Reviews,Elsevier ,00095907| +Chromatography,MDPI AG,22279075 +Chromatography,The Society for Chromatographic Sciences,13428284|13483315 +Chromatography Research International,Hindawi Publishing Corporation (Sage-Hindawi Access to Research),20903502|20903510 +Chromosoma,Springer-Verlag,00095915|14320886 +Chromosome Botany,International Society of Chromosome Botany,18815936|18818285 +Chromosome Research,Springer-Verlag,09673849|15736849 +Chronic Diseases and Translational Medicine,Elsevier ,2095882X| +Chronic Illness,SAGE Publications,17423953|17459206 +Chronic Obstructive Pulmonary Diseases Journal of the COPD Foundation,COPD Foundation,2372952X|2372952X +Chronic Respiratory Disease,SAGE Publications,14799723|14799731 +Chronic Wound Care Management and Research,Dove Medical Press,2324481X +Chronicle of The New Researcher,Sigma Xi,23345225| +Chronicles of Surgery,Herbert Publications,20537212 +Chronicles of Young Scientists,Medknow Publications,22295186| +Chronique d Egypte,"""Brepols Publishers, NV""",00096067| +Chronique des activités archéologiques de l’École française de Rome,OpenEdition,22825703 +Chronique ONU,United Nations Publications,24119911 +Chroniques du manuscrit au Yémen,OpenEdition,21160813 +Chronobiology International,Informa UK (Taylor & Francis),07420528|15256073 +ChronoPhysiology and Therapy,Dove Medical Press,22302026 +Chungará (Arica),SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7177356 +Chuoujuikaizasshi,Japanese Society of Veterinary Science,18839096 +Church History,Cambridge University Press,00096407|17552613 +Church History and Religious Culture,Brill Academic Publishers,1871241X|18712428 +CHUUGOKU GOGAKU,The Chinese Linguistic Society of Japan,18846033 +Chymia,JSTOR,00959367| +CHŁODNICTWO,"""Wydawnictwo SIGMA-NOT, sp. z.o.o.""",00094919| +CIC Cuadernos de Información y Comunicación,Universidad Complutense de Madrid,11357991|19884001 +CIDADES Comunidades e Territórios,Dinamia'cet-IUL,21823030 +Ciência & Educação (Bauru),SciELO,15167313|15167313 +Ciência & Educação (Bauru),SciELO,15167313|15167313 +Ciência & Educação (Bauru),SciELO,1980850X +Ciência & Engenharia,Fundacao de Apoio Universitario,0103944X|19834071 +Ciência & Saúde,EDIPUCRS,1983652X +Ciência & Saúde Coletiva,SciELO,14138123|14138123 +Ciência & Tecnologia dos Materiais,Elsevier ,08708312| +Ciencia & trabajo,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7182449 +Ciência Animal Brasileira,Universidade Federal de Goias,10896891 +Ciência Animal Brasileira,SciELO,15182797|18096891 +Ciência Cuidado e Saúde,Universidade Estadual de Maringa,16773861|19847513 +Ciência da Informação,SciELO,01001965|01001965 +Ciência e Agrotecnologia,SciELO,14137054|14137054 +Ciencia e Ingeniería Neogranadina,Universidad Militar Nueva Granada,01248170|19097735 +Ciencia e Innovación en Salud,Universidad Simon Bolivar,23448636| +Ciencia e Interculturalidad,Latin America Journals Online,19979231|22236260 +Ciencia e investigación agraria,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7181620 +Ciência e Natura,Universidade Federal de Santa Maria,01008307|2179460X +Ciência e sociedade,Brazilian Center for Physican Research,23174595 +Ciência e Técnica Vitivinícola,EDP Sciences,24163953|24163953 +Ciência e Tecnologia de Alimentos,SciELO,01012061|01012061 +Ciência em Movimento,Instituto Porto Alegre da Igreja Metodista,19839480 +CIENCIA EN DESARROLLO,Universidad Pedagogica y Tecnologica de Colombia,01217488| +Ciência Florestal,Universidade Federal de Santa Maria,01039954|19805098 +Ciencia Política,Universidad Nacional de Colombia,1909230X| +Ciência Rural,SciELO,01038478|01038478 +Ciencia y agricultura,Universidad Pedagogica y Tecnologica de Colombia,01228420| +Ciencia y enfermería,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7179553 +Ciencia y Poder Aéreo,Escuela de Posgrados FAC,19097050|23899468 +Ciencia y Tecnologia Alimentaria,Informa UK (Taylor & Francis),11358122| +Ciencia y Tecnología para la Salud Visual y Ocular,Universidad de la Salle,16928415|23898801 +Ciencias Clínicas,Elsevier ,16651383| +Ciencias de la Salud,Colegio Mayor de Nuestra Senora del Rosario,16927273|21454507 +Ciencias Económicas,Universidad Nacional del Litoral,16668359|2362552X +Ciencias Espaciales,Latin America Journals Online,22255249| +Ciências Humanans e Sociais em Revista,Editora Cubo Multimidia,2177756X +Ciencias Marinas,Instituto de Investigaciones Oceanologicas,01853880|23959053 +Ciências Sociais Unisinos,Universidade do Vale do Rio Dos Sinos - UNISINOS,15197050|21776229 +Científica,FUNEP,01000039|19845529 +CIEPŁOWNICTWO OGRZEWNICTWO WENTYLACJA,"""Wydawnictwo SIGMA-NOT, sp. z.o.o.""",01373676| +CIHS Journal,California Institute for Human Science,19316917 +Cilia,Springer (Biomed Central Ltd.),20462530|20462530 +CIM Journal,"""Canadian Institute of Mining, Metallurgy, and Petroleum""",19236026| +CIN Computers Informatics Nursing,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15382931| +Cine forum,Cineforum,20949839| +CINEJ Cinema Journal,"""University Library System, University of Pittsburgh""",21592411|21588724 +Cinema Journal,Muse - Johns Hopkins University Press,00097101|15272087 +Cinémas d’Amérique latine,OpenEdition,12674397|24251356 +Cinémas Revue d études cinématographiques,Consortium Erudit,11816945|17056500 +Cinergis,APESC - Associacao Pro-Ensino em Santa Cruz do Sul,21774005 +Cinta de moebio,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,0717554X +Cipango,OpenEdition,11645857|22607706 +Cipango - French Journal of Japanese Studies,OpenEdition,22681744 +Circa,JSTOR,02639475| +Circuit Musiques contemporaines,Consortium Erudit,11831693|14889692 +Circuit Technology,Japan Institute of Electronics Packaging,09148299|1884118X +Circuit World,Emerald (MCB UP ),03056120| +Circuits and Systems,"""Scientific Research Publishing, Inc.""",21531285|21531293 +Circuits and Systems An International Journal,Academy and Industry Research Collaboration Center,23492171 +Circuits Systems and Signal Processing,Springer-Verlag,0278081X|15315878 +Circula,Universite de Sherbrooke,23696761 +Circulation,Ovid Technologies Wolters Kluwer -American Heart Association,00097322|15244539 +Circulation Arrhythmia and Electrophysiology,Ovid Technologies Wolters Kluwer -American Heart Association,19413149|19413084 +Circulation Cardiovascular Genetics,Ovid Technologies Wolters Kluwer -American Heart Association,1942325X|19423268 +Circulation Cardiovascular Imaging,Ovid Technologies Wolters Kluwer -American Heart Association,19419651|19420080 +Circulation Cardiovascular Interventions,Ovid Technologies Wolters Kluwer -American Heart Association,19417640|19417632 +Circulation Cardiovascular Quality and Outcomes,Ovid Technologies Wolters Kluwer -American Heart Association,19417705|19417713 +Circulation Heart Failure,Ovid Technologies Wolters Kluwer -American Heart Association,19413289|19413297 +Circulation Journal,The Japanese Circulation Society,13469843|13474820 +Circulation Research,Ovid Technologies Wolters Kluwer -American Heart Association,00097330|15244571 +Círculo de lingüística aplicada a la comunicación,Universidad Complutense de Madrid,15764737 +CIRP Annals - Manufacturing Technology,Elsevier ,00078506| +CIRP Journal of Manufacturing Science and Technology,Elsevier ,17555817| +Cirugía Cardiovascular,Elsevier ,11340096| +Cirugía Española,Elsevier ,0009739X| +Cirugía Española (English Edition),Elsevier ,21735077| +CIRUGIA PARAGUAYA,Instituto de Investigaciones en Ciencias de la Salud,23070420 +Cirugía Plástica Ibero-Latinoamericana,Instituto de Salud Carlos III/BNCS/SciELO Espana,03767892|03767892 +Cirugía y Cirujanos,Elsevier ,00097411| +Cirujano General,Elsevier ,14050099| +CIS Iron and Steel Review,Ore and Metals Publishing House,20720815| +Cités,CAIRN,12995495|19696876 +Cities,Elsevier ,02642751| +Cities and the Environment,Loyola Marymount University,19327048 +Cities People Places An International Journal on Urban Environments,Sri Lanka Journals Online ,24489247| +Citius Altius Fortius,Servicio de Publicaciones de la Universidad Autonoma de Madrid,23409886| +Citizenship Social and Economics Education,SAGE Publications,14788047|20471734 +Citizenship Studies,Informa UK (Taylor & Francis),13621025|14693593 +Citizenship Teaching and Learning,Intellect,17511917|17511925 +Citrus Research & Technology,GN1 Genesis Network,22363122| +CITTADINANZA EUROPEA (LA),Franco Angeli,20392788|20399383 +City,Informa UK (Taylor & Francis),13604813|14703629 +City & Society,Wiley Blackwell (Blackwell Publishing),08930465|1548744X +City and Community,Wiley Blackwell (Blackwell Publishing),15356841|15406040 +City Culture and Society,Elsevier ,18779166| +City Dental College Journal,Bangladesh Journals Online,23052694 +City Territory and Architecture,Springer (Biomed Central Ltd.),21952701|21952701 +CITYGREEN Nature & Health in Cities,Research Publishing Services,20100981| +Ciudad Paz-ando,Universidad Distrital Francisco Jose de Caldas,20115253|2422278X +Civil and Environmental Engineering,De Gruyter Open Sp. z o.o. ,13365835 +Civil And Environmental Engineering Reports,De Gruyter Open Sp. z o.o. ,20805187|20805187 +Civil Engineering and Architecture,"""Horizon Research Publishing Co., Ltd.""",23321091|23321121 +Civil Engineering and Environmental Systems,Informa UK (Taylor & Francis),10286608|10290249 +Civil Engineering and Urban Planning An International Journal (CiVEJ),Academy and Industry Research Collaboration Center,23945818 +Civil Engineering Dimension,Petra Christian University,14109530|1979570X +Civil Engineering Innovation,Thomas Telford Ltd.,17550890|17550904 +Civil Engineering Magazine Archive,American Society of Civil Engineers,23810688 +Civil Engineering Systems,Informa UK (Taylor & Francis),02630257| +Civil War History,Muse - Johns Hopkins University Press,15336271 +Civil Wars,Informa UK (Taylor & Francis),13698249|1743968X +Civilisations,OpenEdition,00098140|20320442 +Civitas - Revista de Ciências Sociais,EDIPUCRS,15196089|19847289 +CJEM,Cambridge University Press,14818035|14818043 +Cladistics,Wiley Blackwell (Blackwell Publishing),07483007|10960031 +Claremont-UC Undergraduate Research Conference on the European Union,Claremont Colleges Library,21528713|21545731 +Classica - Revista Brasileira de Estudos Clássicos,Coimbra University Press,01034316|21766436 +Classica Cracoviensia,Ksiegarnia Akademicka Sp. z.o.o.,15058913|15058913 +Classical and Quantum Gravity,IOP Publishing,02649381|13616382 +Classical Antiquity,University of California Press,02786656|10678344 +Classical Philology,The University of Chicago Press,0009837X|1546072X +Classical Receptions Journal,Oxford University Press,17595134|17595142 +Classical World,Muse - Johns Hopkins University Press,15589234 +Classics Ireland,JSTOR,07919417| +Classroom Discourse,Informa UK (Taylor & Francis),19463014|19463022 +Clay Minerals,The Mineralogical Society,00098558|14718030 +Clays and Clay Minerals,Clay Minerals Society,00098604|00000000 +CLCWeb Comparative Literature and Culture,Purdue University (bepress),14814374 +CLEAN - Soil Air Water,Wiley Blackwell (John Wiley & Sons),18630650|18630669 +Clean Air,Informa UK (Taylor & Francis),15614417| +Clean Air International Journal on Energy for a Clean Environment,Begell House Inc.,15614417| +Clean Air Journal,Academy of Science of South Africa,10171703|2410972X +Clean Coal and Energy,Hans Publishers,2334332X|23343516 +Clean Products and Processes,Springer-Verlag,14352974| +Clean Technologies and Environmental Policy,Springer-Verlag,1618954X|16189558 +Clean Technology,The Korean Society of Clean Technology,15989712| +Clefs CEA,EDP Sciences,02986248| +CLEI electronic journal,Centro Latino Americano de Estudios en Informatica,7175000 +Cleveland Clinic Journal of Medicine,Cleveland Clinic Journal of Medicine,08911150|19392869 +Cleveland Studies in the History of Art,"""Brepols Publishers, NV""",10923934| +Climacteric,Informa UK (Taylor & Francis),13697137|14730804 +Climate,MDPI AG,22251154 +Climate and Development,Informa UK (Taylor & Francis),17565529|17565537 +Climate Change and Environmental Sustainability,Diva Enterprises Private Limited,23206411|2320642X +Climate Change Economics,World Scientific ,20100078|20100086 +Climate Change Research Letters,Hans Publishers,21685711|21685703 +Climate Change Responses,Springer (Biomed Central Ltd.),20537565|20537565 +Climate Disaster and Development Journal,"""Oscar M. Lopez for Climate Change Adaptation and Disaster Risk Management Foundation, Inc.""",24676926 +Climate Dynamics,Springer-Verlag,09307575|14320894 +Climate in Biosphere,The Society of Agricultural Meteorology of Japan,13465368|21857954 +Climate Law,IOS Press,18786553|18786561 +Climate of the Past,Copernicus GmbH,18149332 +Climate of the Past Discussions,Copernicus GmbH,18149359 +Climate Policy,Informa UK (Taylor & Francis),14693062|17527457 +Climate Research,Inter-Research Science Center,0936577X|16161572 +Climate Risk Management,Elsevier ,22120963| +Climate Services,Elsevier ,24058807| +Climatic Change,Springer-Verlag,01650009|15731480 +Climatologie,INIST-CNRS,19963041|24135380 +Clin-Alert,SAGE Publications,00694770|1530812X +Clinica Chimica Acta,Elsevier ,00098981| +Clínica Contemporánea,Colegio Oficial de Psicologos de Madrid,19899912| +Clínica e Investigación en Arteriosclerosis,Elsevier ,02149168| +Clínica e Investigación en Ginecología y Obstetricia,Elsevier ,0210573X| +Clínica e Investigación Relacional,Instituto de Psicoterapia Relacional (IPR),19882939 +Clínica y Salud,Elsevier ,11305274|11305274 +Clinical & Biomedical Research,Editora Cubo Multimidia,23579730 +Clinical & Experimental Allergy,Wiley Blackwell (Blackwell Publishing),09547894|13652222 +Clinical & Experimental Allergy Reviews,Wiley Blackwell (Blackwell Publishing),14729725|14729725 +Clinical & Experimental Immunology,Wiley Blackwell (Blackwell Publishing),00099104|13652249 +Clinical & Experimental Metastasis,Springer-Verlag,02620898|15737276 +Clinical & Experimental Thrombosis and Hemostasis,The Korean Society on Thrombosis and Hemostasis,22888209|22888217 +Clinical & Experimental Thyroidology,Korean Thyroid Association (KAMJE),23842636| +Clinical & Laboratory Haematology,Wiley Blackwell (Blackwell Publishing),01419854|13652257 +Clinical & Translational Immunology,Nature Publishing Group,20500068 +Clinical & Translational Oncology,Springer-Verlag,1699048X|16993055 +Clinical Acupuncture and Oriental Medicine,Elsevier ,14611449| +Clinical Advances in Periodontics,American Academy of Periodontology,21630097| +Clinical Anatomy,Wiley Blackwell (John Wiley & Sons),08973806|10982353 +Clinical and Applied Immunology Reviews,Elsevier ,15291049| +Clinical and Applied Thrombosis/Hemostasis,SAGE Publications,10760296|19382723 +Clinical and Developmental Immunology,Hindawi Publishing Corporation,17402522|17402530 +Clinical and Diagnostic Laboratory Immunology,American Society for Microbiology,1071412X| +Clinical and Diagnostic Virology,Elsevier ,09280197| +Clinical and Experimental Dental Research,Wiley Blackwell (John Wiley & Sons),20574347| +Clinical and Experimental Dermatology,Wiley Blackwell (Blackwell Publishing),03076938|13652230 +Clinical and Experimental Dialysis and Apheresis,Informa UK (Taylor & Francis),02765497| +Clinical and Experimental Emergency Medicine,Korean Society of Emergency Medicine,23834625 +Clinical and Experimental Gastroenterology,Dove Medical Press,11787023 +Clinical and Experimental Hepatology,Termedia Sp. z.o.o.,23921099| +Clinical and Experimental Hypertension,Informa UK (Taylor & Francis),10641963|15256006 +Clinical and Experimental Hypertension Part A Theory and Practice,Informa UK (Taylor & Francis),07300077| +Clinical and Experimental Hypertension Part B Hypertension in Pregnancy,Informa UK (Taylor & Francis),07300085| +Clinical and Experimental Medical Journal,Akademiai Kiado Zrt.,20606249|2060968X +Clinical and Experimental Medical Sciences,"""Hikari, Ltd.""",13147528|13147676 +Clinical and Experimental Medicine,Springer-Verlag,15918890|15919528 +Clinical and Experimental Nephrology,Springer-Verlag,13421751|14377799 +Clinical and Experimental Neuroimmunology,Wiley Blackwell (Blackwell Publishing),17591961|17591961 +Clinical and Experimental Ophthalmology,Wiley Blackwell (Blackwell Publishing),14426404|14429071 +Clinical and Experimental Optometry,Wiley Blackwell (Blackwell Publishing),08164622|14440938 +Clinical and Experimental Otorhinolaryngology,Korean Society of Otorhinolaryngology-Head and Neck Surgery,19768710|20050720 +Clinical and Experimental Pharmacology,OMICS Publishing Group,21611459 +Clinical and Experimental Pharmacology and Physiology,Wiley Blackwell (Blackwell Publishing),03051870|14401681 +Clinical and Experimental Psychology,OMICS Publishing Group,24712701 +Clinical and Experimental Reproductive Medicine,The Korean Society for Reproductive Medicine (KAMJE),22338233|22338241 +Clinical and experimental thyroidology,Endocrinology Research Centre,19955472|23103787 +Clinical and Experimental Vaccine Research,Korean Vaccine Society (KAMJE),22873651|2287366X +Clinical and Laboratorial Research in Dentistry,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,23578041 +Clinical and Molecular Allergy,Springer (Biomed Central Ltd.),14767961|14767961 +Clinical and Molecular Hepatology,The Korean Association for the Study of the Liver ,22872728|2287285X +Clinical and Translational Allergy,Springer (Biomed Central Ltd.),20457022|20457022 +Clinical and Translational Gastroenterology,Nature Publishing Group,2155384X +Clinical and Translational Imaging,Springer-Verlag,22815872|22817565 +Clinical and Translational Medicine,Springer (Biomed Central Ltd.),20011326|20011326 +Clinical and Translational Science,Wiley Blackwell (Blackwell Publishing),17528054|17528062 +Clinical and Vaccine Immunology,American Society for Microbiology,15566811|1556679X +Clinical Anti-Inflammatory & Anti-Allergy Drugs,Bentham Science,22127038| +Clinical Audit,Dove Medical Press,11792760 +Clinical Autonomic Research,Springer-Verlag,09599851|16191560 +Clinical Biochemistry,Elsevier ,00099120| +Clinical Biomechanics,Elsevier ,02680033| +Clinical Breast Cancer,Elsevier ,15268209|19380666 +Clinical Bulletin of Myofascial Therapy,Informa UK (Taylor & Francis),10894195| +Clinical Cancer Drugs,Bentham Science,2212697X| +Clinical Cancer Investigation Journal,Medknow Publications,22780513| +Clinical Cancer Research,American Association for Cancer Research,10780432|15573265 +Clinical Cancer Reviews,Elsevier ,19461674|19461682 +Clinical Cardiology,Wiley Blackwell (John Wiley & Sons),01609289|19328737 +Clinical Case Reports,Wiley Blackwell (John Wiley & Sons),20500904| +Clinical Case Reports and Reviews,Open Access Text,20590393 +Clinical Case Studies,SAGE Publications,15346501|00000000 +CLINICAL CASES IN MINERAL AND BONE METABOLISM,CIC Edizioni Internazionali,19713266 +Clinical Chemistry,American Association for Clinical Chemistry,00099147|15308561 +Clinical Chemistry and Laboratory Medicine (CCLM),Walter de Gruyter GmbH,14346621|14374331 +Clinical Child and Family Psychology Review,Springer-Verlag,10964037|15732827 +Clinical Child Psychology and Psychiatry,SAGE Publications,13591045|14617021 +Clinical Chiropractic,Elsevier ,14792354| +Clinical Colorectal Cancer,Elsevier ,15330028|19380674 +Clinical Communications-Oncology,Medknow Publications,23938633| +Clinical Cornerstone,Elsevier ,10983597| +Clinical Cosmetic and Investigational Dentistry,Dove Medical Press,11791357 +Clinical Cosmetic and Investigational Dermatology,Dove Medical Press,11787015 +CLINICAL DENTISTRY,Ternopil State Medical University,23119624| +Clinical Dermatology,CIC Edizioni Internazionali,22824103 +Clinical Diabetes,American Diabetes Association,08918929|08918929 +Clinical Diabetes and Endocrinology,Springer (Biomed Central Ltd.),20558260|20558260 +Clinical Drug Investigation,Springer-Verlag,11732563|11791918 +Clinical Dysmorphology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,09628827| +Clinical EEG and Neuroscience,SAGE Publications,15500594| +Clinical Effectiveness in Nursing,Elsevier ,13619004| +Clinical Endocrinology,Wiley Blackwell (Blackwell Publishing),03000664|13652265 +Clinical Endocrinology News,Elsevier ,15580164| +Clinical Endoscopy,The Korean Society of Gastrointestinal Endoscopy (KAMJE),22342400|22342443 +Clinical Epidemiology,Dove Medical Press,11791349 +Clinical Epidemiology and Global Health,Elsevier ,22133984| +Clinical Epidemiology Reviews,Swedish Science Pioneers,20016565 +Clinical Epigenetics,Springer-Verlag,18687075|18687083 +Clinical Ethics,SAGE Publications,14777509|1758101X +Clinical Excellence for Nurse Practitioners,Elsevier- Churchill Livingstone,10852360| +Clinical Eye and Vision Care,Elsevier ,09534431| +Clinical Gastroenterology and Hepatology,Elsevier ,15423565| +Clinical Genetics,Wiley Blackwell (Blackwell Publishing),00099163|13990004 +Clinical Genitourinary Cancer,Elsevier ,15587673|19380682 +Clinical Gerontologist,Informa UK (Taylor & Francis),07317115|15452301 +Clinical Governance An International Journal,Emerald (MCB UP ),14777274| +Clinical Hemorheology and Microcirculation,IOS Press,13860291|18758622 +Clinical Hepatology and Hepatitis Reports,Herbert Publications,2055088X +Clinical Hypertension,Springer (Biomed Central Ltd.),20565909|20565909 +Clinical Imaging,Elsevier ,08997071| +Clinical Immunology,Elsevier ,15216616|15217035 +Clinical Immunology and Immunopathology,Elsevier - Academic Press,00901229|10902341 +Clinical Immunology Endocrine & Metabolic Drugs,Bentham Science,22127070| +Clinical Immunology Newsletter,Elsevier ,01971859| +Clinical Immunotherapeutics,Springer-Verlag,11727039| +Clinical Implant Dentistry and Related Research,Wiley Blackwell (Blackwell Publishing),15230899|17088208 +Clinical Infectious Diseases,Oxford University Press,10584838|15376591 +Clinical Intensive Care,Informa UK (Taylor & Francis),09563075|14737752 +Clinical Interventions in Aging,Dove Medical Press,11769092|11781998 +Clinical Investigation,"""Future Science, LTD""",20416792|20416806 +Clinical Journal of Gastroenterology,Springer-Verlag,18657257|18657265 +Clinical Journal of Oncology Nursing,Oncology Nursing Society,1538067X|1538067X +Clinical Journal of Pain,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,07498047| +Clinical Journal of Sport Medicine,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,1050642X| +Clinical Journal of the American Society of Nephrology,American Society of Nephrology,15559041|1555905X +Clinical Journal of Women s Health,Elsevier - WB Saunders,15270289| +Clinical Kidney Journal,Oxford University Press,20488505|20488513 +Clinical Laboratory,Clinical Laboratory Publications,14336510| +Clinical Lactation,Springer Publishing Company,21580782|21580537 +Clinical Leukemia,Elsevier ,19316925|19380704 +Clinical Linguistics & Phonetics,Informa UK (Taylor & Francis),02699206|14645076 +Clinical Lipidology,Future Medicine,17584299|17584302 +Clinical Liver Disease,Wiley Blackwell (John Wiley & Sons),20462484| +Clinical Lung Cancer,Elsevier ,15257304|19380690 +Clinical Lymphoma,Elsevier - CIG Media Group LP,15269655| +Clinical Lymphoma & Myeloma,Elsevier - CIG Media Group LP,15579190|19380712 +Clinical Lymphoma Myeloma & Leukemia,Elsevier ,21522650|21522669 +Clinical Management Issues,Seed SRL,19734832|22833137 +Clinical Materials,Elsevier ,02676605| +Clinical Medicine,Royal College of Physicians,14702118|14734893 +Clinical Medicine & Research,Marshfield Clinic Research Foundation,15394182|15546179 +Clinical Medicine and Diagnostics,Scientific and Academic Publishing,21631433| +Clinical Medicine and Pharmacology,Infra-M Academic Publishing House,24093750| +Clinical Medicine Insights Arthritis and Musculoskeletal Disorders,"""Libertas Academica, Ltd.""",11795441 +Clinical Medicine Insights Blood Disorders,"""Libertas Academica, Ltd.""",1179545X +Clinical Medicine Insights Cardiology,"""Libertas Academica, Ltd.""",11795468 +Clinical Medicine Insights Case Reports,"""Libertas Academica, Ltd.""",11795476 +Clinical Medicine Insights Circulatory Respiratory and Pulmonary Medicine,"""Libertas Academica, Ltd.""",11795484 +Clinical Medicine Insights Dermatology,CrossRef test user,11795492 +Clinical Medicine Insights Ear Nose and Throat,"""Libertas Academica, Ltd.""",11795506 +Clinical Medicine Insights Endocrinology and Diabetes,"""Libertas Academica, Ltd.""",11795514 +Clinical Medicine Insights Gastroenterology,"""Libertas Academica, Ltd.""",11795522 +Clinical Medicine Insights Geriatrics,"""Libertas Academica, Ltd.""",11795530 +Clinical Medicine Insights Oncology,"""Libertas Academica, Ltd.""",11795549 +Clinical Medicine Insights Pathology,"""Libertas Academica, Ltd.""",11795557 +Clinical Medicine Insights Pediatrics,"""Libertas Academica, Ltd.""",11795565 +Clinical Medicine Insights Psychiatry,"""Libertas Academica, Ltd.""",11795573 +Clinical Medicine Insights Reproductive Health,"""Libertas Academica, Ltd.""",11795581 +Clinical Medicine Insights Therapeutics,"""Libertas Academica, Ltd.""",1179559X +Clinical Medicine Insights Trauma and Intensive Medicine,"""Libertas Academica, Ltd.""",11795603 +Clinical Medicine Insights Urology,"""Libertas Academica, Ltd.""",11795611 +Clinical Medicine Insights Women s Health,"""Libertas Academica, Ltd.""",1179562X +Clinical Medicine Research,Science Publishing Group,23269049| +Clinical Medicine Reviews in Cardiology,"""Libertas Academica, Ltd.""",11792523 +Clinical Medicine Reviews in Oncology,"""Libertas Academica, Ltd.""",11792531 +Clinical Medicine Reviews in Patient Care,"""Libertas Academica, Ltd.""",1179254X +Clinical Medicine Reviews in Therapeutics,"""Libertas Academica, Ltd.""",11792558 +Clinical Medicine Reviews in Vascular Health,"""Libertas Academica, Ltd.""",11792566 +Clinical Medicine Reviews in Women s Health,"""Libertas Academica, Ltd.""",11792574 +Clinical Microbiology and Infection,Elsevier ,1198743X|14690691 +Clinical Microbiology Newsletter,Elsevier ,01964399| +Clinical Microbiology Open Access,OMICS Publishing Group,23275073 +Clinical Microbiology Reviews,American Society for Microbiology,08938512|10986618 +Clinical Nephrology,Dustri-Verlag Dr. Karl Feistle,03010430| +Clinical Nephrology - Case Studies,Dustri-Verlag Dr. Karl Feistle,21965293| +Clinical Nephrology and Urology Science,Herbert Publications,20547161 +Clinical Neurology and Neurosurgery,Elsevier ,03038467| +Clinical Neurology News,Elsevier ,15533212| +Clinical Neuropathology,Dustri-Verlag Dr. Karl Feistle,07225091| +Clinical Neuropharmacology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,03625664| +Clinical Neurophysiology,Elsevier ,13882457| +Clinical Neuropsychologist,Informa UK (Taylor & Francis),09201637| +Clinical Neuropsychopharmacology and Therapeutics,The Japanese Society of Clinical Neuropsychopharmacology,18848826 +Clinical Neuroradiology,Springer-Verlag,18691439|18691447 +Clinical Neuroradiology,Springer-Verlag,09397116|16156706 +Clinical Neuroscience Research,Elsevier ,15662772| +Clinical Nuclear Medicine,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,03639762| +Clinical Nurse Specialist,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,08876274| +Clinical Nursing Research,SAGE Publications,10547738|00000000 +Clinical Nursing Studies,Sciedu Press,23247940|23247959 +Clinical Nutrition,Elsevier ,02615614| +Clinical Nutrition ESPEN,Elsevier ,24054577| +Clinical Nutrition Experimental,Elsevier ,23529393| +Clinical Nutrition INSIGHT,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,19388640| +Clinical Nutrition Research,Korean Society of Clinical Nutrition,22873732|22873740 +Clinical Nutrition Supplements,Elsevier ,17441161| +Clinical Obesity,Wiley Blackwell (Blackwell Publishing),17588103| +Clinical Obstetrics & Gynecology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,00099201| +Clinical OMICs,Mary Ann Liebert,23341351 +Clinical Oncology,Elsevier ,09366555| +Clinical Oncology and Cancer Research,Springer-Verlag,16745361|1868324X +Clinical Oncology in Adolescents and Young Adults,Dove Medical Press,22302263 +Clinical Ophthalmology,Dove Medical Press,11775483 +Clinical Optometry,Dove Medical Press,11792752 +Clinical Oral Implants Research,Wiley Blackwell (Blackwell Publishing),09057161|16000501 +Clinical Oral Investigations,Springer-Verlag,14326981|14363771 +Clinical Orthodontics and Research,Wiley Blackwell (Blackwell Publishing),13975927|16000544 +Clinical Orthopaedics and Related Research®,Springer-Verlag,0009921X|15281132 +Clinical Otolaryngology,Wiley Blackwell (Blackwell Publishing),03077772|13652273 +Clinical Otolaryngology,Wiley Blackwell (Blackwell Publishing),17494478| +Clinical Ovarian and Other Gynecologic Cancer,Elsevier ,22129553| +Clinical Ovarian and Other Gynecologic Cancer,Elsevier ,22129553| +Clinical Ovarian Cancer,Elsevier ,19414390|19414404 +Clinical Pediatric Emergency Medicine,Elsevier ,15228401| +Clinical Pediatric Endocrinology,The Japanese Society for Pediatric Endocrinology,09185739|13477358 +Clinical Pediatric Hematology-Oncology,The Korean Society of Pediatric Hematology-Oncology,22335250|22334580 +Clinical Pediatrics,SAGE Publications,00099228| +Clinical Performance and Quality Healthcare,Emerald (MCB UP ),10630279| +Clinical Pharmacist,Royal Pharmaceutical Society,20536178| +Clinical Pharmacokinetics,Springer-Verlag,03125963|11791926 +Clinical Pharmacology & Biopharmaceutics,OMICS Publishing Group,2167065X +Clinical Pharmacology & Therapeutics,Wiley Blackwell (Blackwell Publishing),00099236|15326535 +Clinical Pharmacology Advances and Applications,Dove Medical Press,11791438 +Clinical Pharmacology in Drug Development,Wiley Blackwell (John Wiley & Sons),2160763X|21607648 +Clinical Physics and Physiological Measurement,IOP Publishing,01430815| +Clinical Physiology,Wiley Blackwell (Blackwell Publishing),01445979|13652281 +Clinical Physiology and Functional Imaging,Wiley Blackwell (Blackwell Publishing),14750961| +Clinical Physiology and Functional Imaging,Wiley Blackwell (Blackwell Publishing),1475097X|13652281 +Clinical Phytoscience,Springer (Biomed Central Ltd.),21991197 +Clinical Plasma Medicine,Elsevier ,22128166| +Clinical Positron Imaging,Elsevier ,10950397| +Clinical Practice,Future Medicine,20449038|20449046 +Clinical Practice and Epidemiology in Mental Health,Bentham Science,17450179| +Clinical Practice in Pediatric Psychology,American Psychological Association,21694826|21694834 +Clinical Progress in Electrophysiology and Pacing,Wiley Blackwell (Blackwell Publishing),87569264| +Clinical Progress in Pacing and Electrophysiology,Wiley Blackwell (Blackwell Publishing),07366108| +Clinical Prostate Cancer,Elsevier - CIG Media Group LP,15400352| +Clinical Proteomics,Springer (Biomed Central Ltd.),15590275| +Clinical Proteomics,Springer (Biomed Central Ltd.),15426416|15426416 +Clinical Psychiatry News,Elsevier ,02706644| +Clinical Psychological Science,SAGE Publications,21677026|21677034 +Clinical Psychologist,Wiley Blackwell (Blackwell Publishing),13284207|17429552 +Clinical Psychology & Psychotherapy,Wiley Blackwell (John Wiley & Sons),10633995|10990879 +Clinical Psychology and Special Education,Moscow State Universtiy of Psychology and Education (MSUPE),23040394 +Clinical Psychology Review,Elsevier ,02727358| +Clinical Psychology Science and Practice,Wiley Blackwell (Blackwell Publishing),09695893|14682850 +Clinical Psychopharmacology and Neuroscience,Korean College of Neuropsychopharmacology,17381088|20934327 +Clinical Pulmonary Medicine,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10680640| +Clinical Queries Nephrology,Elsevier ,22119477| +Clinical Radiology,Elsevier ,00099260| +Clinical Radiology Extra,Elsevier ,14776804| +Clinical Rehabilitation,SAGE Publications,02692155|14770873 +Clinical Research and Development Open Access,Aperito Online Publishing Private Limited,23787708 +Clinical Research and Regulatory Affairs,Informa UK (Taylor & Francis),10601333|15322521 +Clinical Research and Trials,Open Access Text,20590377 +Clinical Research in Cardiology,Springer-Verlag,18610684|18610692 +Clinical Research in Cardiology Supplements,Springer-Verlag,18610706|18610714 +Clinical Research on Foot & Ankle,OMICS Publishing Group,2329910X +Clinical Research Open Access ( ISSN 2469-6714 ),"""Sci Forschen, Inc.""",24696714 +Clinical Research Practices and Drug Regulatory Affairs,Informa UK (Taylor & Francis),07357915| +Clinical Reviews and Opinions,Academic Journals,21412553 +Clinical Reviews in Allergy,Springer-Verlag,07318235| +Clinical Reviews in Allergy & Immunology,Springer-Verlag,10800549|15590267 +Clinical Reviews in Bone and Mineral Metabolism,Springer-Verlag,15348644|15590119 +Clinical Rheumatology,Springer-Verlag,07703198|14349949 +Clinical Rhinology An International Journal,Jaypee Brothers Medical Publishing,09744630|09756965 +Clinical Risk,SAGE Publications,13562622|17581028 +Clinical Sarcoma Research,Springer (Biomed Central Ltd.),20453329|20453329 +Clinical Schizophrenia & Related Psychoses,"""Walsh Medical Media, LLC""",19351232| +Clinical Scholars Review,Springer Publishing Company,19392095| +Clinical Science,Portland Press,01435221|14708736 +Clinical Simulation in Nursing,Elsevier ,18761399| +Clinical Social Work,Index Copernicus International,2222386X| +Clinical Social Work Journal,Springer-Verlag,00911674|15733343 +Clinical Techniques in Equine Practice,Elsevier - WB Saunders,15347516| +Clinical Techniques in Small Animal Practice,Elsevier ,10962867| +Clinical Therapeutics,Elsevier ,01492918| +Clinical Thyroidology,Mary Ann Liebert,23299711|2329972X +Clinical Toxicology,Informa UK (Taylor & Francis),15563650|15569519 +Clinical Transplantation,Wiley Blackwell (Blackwell Publishing),09020063|13990012 +Clinical Trials,SAGE Publications,17407745|17407753 +Clinical Trials and Regulatory Science in Cardiology,Elsevier ,24055875| +Clinical Update,Elsevier ,10707212| +ClinicoEconomics and Outcomes Research,Dove Medical Press,11786981 +Clinics,Fundacao Faculdade de Medicina,18075932|18075932 +Clinics and Practice,PAGEPress Publications,20397275|20397283 +Clinics and Research in Hepatology and Gastroenterology,Elsevier ,22107401| +Clinics in Chest Medicine,Elsevier ,02725231| +Clinics in Chest Medicine,Elsevier ,02725231| +Clinics in Colon and Rectal Surgery,Thieme Publishing Group,15310043|15215741 +Clinics in Dermatology,Elsevier ,0738081X| +Clinics in Endocrinology and Metabolism,Elsevier ,0300595X| +Clinics in Family Practice,Elsevier ,15225720| +Clinics in Geriatric Medicine,Elsevier ,07490690| +Clinics in Geriatric Medicine,Elsevier ,07490690| +Clinics in Haematology,Elsevier ,03082261| +Clinics in Laboratory Medicine,Elsevier ,02722712| +Clinics in Liver Disease,Elsevier ,10893261| +Clinics in Mother and Child Health,OMICS Publishing Group,18125840|20907214 +Clinics in Occupational and Environmental Medicine,Elsevier ,15260046| +Clinics in Orthopedic Surgery,The Korean Orthopaedic Association (KAMJE),2005291X|20054408 +Clinics in Perinatology,Elsevier ,00955108| +Clinics in Plastic Surgery,Elsevier ,00941298| +Clinics in Podiatric Medicine and Surgery,Elsevier ,08918422| +Clinics in Shoulder and Elbow,Korean Shoulder and Elbow Society,12269344| +Clinics in Sports Medicine,Elsevier ,02785919| +Cliniques,CAIRN,21158177|19683944 +Cliniques méditerranéennes,CAIRN,07627491|17762790 +Clio,OpenEdition,12527017|17775299 +Clio y Asociados,Universidad Nacional del Litoral,0328820X|23623063 +CLIO – Arqueológica,Clio Arqueologica,1026003 +Cliometrica,Springer-Verlag,18632505|18632513 +Clogher Record,JSTOR,04128079| +Cloning,Mary Ann Liebert,15204553|15204553 +Cloning & Transgenesis,OMICS Publishing Group,21689849 +Cloning and Stem Cells,Mary Ann Liebert,15362302|15577457 +Clothing and Textiles Research Journal,SAGE Publications,0887302X| +Clothing Cultures,Intellect,20500742|20500750 +Cloud-Cuckoo-Land,"""Science and Education, Ltd.""",14340984| +Clues A Journal of Detection,"""McFarland & Company, Inc. """,07424248|19403046 +Clujul Medical,Clujul Medical,12222119|20668872 +Cluster Computing,Springer-Verlag,13867857|15737543 +CM - casopis za upravljanje komuniciranjem,Centre for Evaluation in Education and Science,14527405| +CMAJ Open,Canadian Medical Association,22910026 +CME,Springer-Verlag,1614371X|16143744 +CMGH Cellular and Molecular Gastroenterology and Hepatology,Elsevier ,2352345X| +CMIG Extra Cases,Elsevier ,15723496| +cne fortbildung,Thieme Publishing Group,21903034|21969396 +CNS & Neurological Disorders - Drug Targets,Bentham Science,18715273| +CNS Drug Reviews,Wiley Blackwell (Blackwell Publishing),1080563X|15273458 +CNS Drugs,Springer-Verlag,11727047|11791934 +CNS Neuroscience & Therapeutics,Wiley Blackwell (Blackwell Publishing),17555930|17555949 +CNS Oncology,Future Medicine,20450907|20450915 +CNS Spectrums,Cambridge University Press,10928529|21656509 +CNSA Journal,Elsevier ,08188157| +CNU Journal of Agricultural Science,CNU Journal of Agricultural Science,12252220| +CNU Journal of Educational Studies,CNU Research Institute of Education,17389429| +Co,Ankara University,13035851|13035851 +Co-herencia,Universidad EAFIT,17945887| +Coaching An International Journal of Theory Research and Practice,Informa UK (Taylor & Francis),17521882| +Coaching An International Journal of Theory Research and Practice,Informa UK (Taylor & Francis),17521882|17521890 +Coaching An International Journal of Theory Research and Practice,Informa UK (Taylor & Francis),17521882| +Coaching An International Journal of Theory Research and Practice,Informa UK (Taylor & Francis),17521882| +Coaching | Theorie & Praxis,Springer Fachmedien Wiesbaden GmbH,23645148 +Coal Combustion and Gasification Products,Center for Applied Energy Research,19460198 +Coal Preparation,Informa UK (Taylor & Francis),07349343|15455831 +Coastal and Marine Research,Sciknow Publications,23339594 +Coastal Engineering,Elsevier ,03783839| +Coastal Engineering Journal,World Scientific ,05785634|05785634 +Coastal Engineering Proceedings,Coastal Engineering Reserach Council,0589087X|21561028 +Coastal Management,Informa UK (Taylor & Francis),08920753|15210421 +Coastal Zone Management Journal,Informa UK (Taylor & Francis),00908339| +Coatings,MDPI AG,20796412 +Cobalt-Catalyzed Reductive Coupling of Alkynes and Enals Enones or Ester Enoates To Form γ δ-Unsaturated Products,Thieme Publishing Group,20100302 +Cobalt-Mediated [4 + 2 + 2]-Carbocyclization Reactions,Thieme Publishing Group,20300158 +Cochlear Implants International,Maney Publishing,14670100|15569152 +COCOS,Sri Lanka Journals Online ,02554100| +Çocuk Enfeksiyon Dergisi/Journal of Pediatric Infection,AVES Publishing Co.,13071068|13085271 +Cocyclization of 1 7-Diynes and Internal Alkynes,Thieme Publishing Group,20300123 +Cocyclization of 1 n-Diynes and Internal Alkynes,Thieme Publishing Group,20300131 +CoDAS,SciELO,23171782 +CoDesign,Informa UK (Taylor & Francis),15710882|17453755 +Coevolution,Informa UK (Taylor & Francis),23256214 +Cogeneration & Distributed Generation Journal,Informa UK (Taylor & Francis),15453669| +Cogeneration and Competitive Power Journal,Metapress,10668683| +Cogent Arts and Humanities,Informa UK (Taylor & Francis),23311983 +Cogent Biology,Informa UK (Taylor & Francis),23312025 +Cogent Business & Management,Informa UK (Taylor & Francis),23311975 +Cogent Chemistry,Informa UK (Taylor & Francis),23312009 +Cogent Economics & Finance,Informa UK (Taylor & Francis),23322039 +Cogent Education,Informa UK (Taylor & Francis),2331186X +Cogent Engineering,Informa UK (Taylor & Francis),23311916 +Cogent Environmental Science,Informa UK (Taylor & Francis),23311843 +Cogent Food & Agriculture,Informa UK (Taylor & Francis),23311932 +Cogent Geoscience,Informa UK (Taylor & Francis),23312041 +Cogent Mathematics,Informa UK (Taylor & Francis),23311835 +Cogent Medicine,Informa UK (Taylor & Francis),2331205X +Cogent Physics,Informa UK (Taylor & Francis),23311940 +Cogent Psychology,Informa UK (Taylor & Francis),23311908 +Cogent Social Sciences,Informa UK (Taylor & Francis),23311886 +Cogitare Enfermagem,Universidade Federal do Parana,14148536|21769133 +Cogito,Philosophy Documentation Center,09508864| +Cognitextes,OpenEdition,19585322|19585322 +Cognition,Elsevier ,00100277| +Cognition & Emotion,Informa UK (Taylor & Francis),02699931|14640600 +Cognition and Instruction,Informa UK (Taylor & Francis),07370008|1532690X +Cognition Technology & Work,Springer-Verlag,14355558|14355566 +Cognitive Affective & Behavioral Neuroscience,Springer - Psychonomic Society,15307026|1531135X +Cognitive and Behavioral Neurology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15433633| +Cognitive and Behavioral Practice,Elsevier ,10777229| +Cognitive Behaviour Therapy,Informa UK (Taylor & Francis),16506073|00000000 +Cognitive Brain Research,Elsevier ,09266410| +Cognitive Computation,Springer-Verlag,18669956|18669964 +Cognitive Development,Elsevier ,08852014| +Cognitive Linguistic Studies,John Benjamins Publishing Company,22138722|22138730 +Cognitive Linguistics,Walter de Gruyter GmbH,09365907|16133641 +Cognitive Linguistics Bibliography,Walter de Gruyter GmbH,1861048X +Cognitive Neurodynamics,Springer-Verlag,18714080|18714099 +Cognitive Neuropsychiatry,Informa UK (Taylor & Francis),13546805|14640619 +Cognitive Neuropsychology,Informa UK (Taylor & Francis),02643294|14640627 +Cognitive Neuroscience,Informa UK (Taylor & Francis),17588928|17588936 +Cognitive Processing,Springer-Verlag,16124782|16124790 +Cognitive Psychology,Elsevier ,00100285|10955623 +Cognitive Science,Wiley Blackwell (Blackwell Publishing),03640213|15516709 +Cognitive Semantics,Brill Academic Publishers,23526408|23526416 +Cognitive Semiotics,Walter de Gruyter GmbH,16621425|22352066 +Cognitive Studies | Études cognitives,Institute of Slavic Studies of the Polish Academy of Sciences,20807147|23922397 +Cognitive Systems Research,Elsevier ,13890417| +Cognitive Therapy and Research,Springer-Verlag,01475916|15732819 +Coherent Phenomena,De Gruyter Open Sp. z o.o. ,22993983 +Coke and Chemistry,Allerton Press,1068364X|19348398 +Cold Regions Science and Technology,Elsevier ,0165232X| +Cold Spring Harbor Perspectives in Biology,Cold Spring Harbor Laboratory Press,19430264 +Cold Spring Harbor Perspectives in Medicine,Cold Spring Harbor Laboratory Press,21571422 +Cold Spring Harbor Protocols,Cold Spring Harbor Laboratory Press,19403402|15596095 +Cold Spring Harbor Symposia on Quantitative Biology,Cold Spring Harbor Laboratory Press,00917451|19434456 +Cold War History,Informa UK (Taylor & Francis),14682745|17437962 +Collaborative Anthropologies,Muse - Johns Hopkins University Press,21524009 +Collabra,University of California Press,23766832 +Collagen and Related Research,Elsevier ,0174173X| +Collectanea Botanica,Departmento de Publicaciones del CSIC,00100730|19891067 +Collectanea mathematica,Springer-Verlag,00100757|20384815 +Collectanea Philologica,Uniwersytet Lodzki (University of Lodz),17330319| +Collection Building,Emerald (MCB UP ),01604953|00000000 +Collection Forum,Society for the Preservation of Natural History Collections SPNHC,08314985| +Collection Management,Informa UK (Taylor & Francis),01462679|15452549 +Collection of Czechoslovak Chemical Communications,"""Institute of Organic Chemistry & Biochemistry, Academy of Sciences of the Czech Republic""",00100765|12126950 +Collection of Scientific Publications NUS,Admiral Makarov National Unviersity of Shipbuilding,23113405|23130415 +Collective Dynamics,"""Forschungszentrum Julich, Zentralbibliotek""",23668539 +Collectivus,Universidad del Atlantico,23824018 +College & Research Libraries,American Library Association,00100870|21506701 +College & Research Libraries,American Library Association,00100870|21506701 +College & Research Libraries,American Library Association,00100870|21506701 +College & Undergraduate Libraries,Informa UK (Taylor & Francis),10691316|15452530 +College Art Journal,JSTOR,15436322| +College Athletics and the Law,Wiley Blackwell (John Wiley & Sons),15528774|19437579 +College Composition and Communication,JSTOR,0010096X| +College English,JSTOR,00100994| +College Literature,Muse - Johns Hopkins University Press,15424286 +College Mathematics Journal,Mathematical Association of America,07468342|19311346 +College of Science Education Journal,Liceo de Cagayan University,23508345|23508353 +College Student Affairs Journal,Muse - Johns Hopkins University Press,23812338 +College Student Personnel Abstracts,Wiley Blackwell (Blackwell Publishing),00101168| +College Teaching,Informa UK (Taylor & Francis),87567555|19308299 +College Teaching Methods & Styles Journal (CTMS),Clute Institute,15489566|2157880X +Collegian Journal of the Royal College of Nursing Australia,Elsevier ,13227696| +Collegium Antropologicum,Croatian Anthropological Society,03506134| +Collnet Journal of Scientometrics and Information Management,Informa UK (Taylor & Francis),09737766|2168930X +Colloid & Polymer Science,Springer-Verlag,0303402X|14351536 +Colloid Journal,Pleiades Publishing,1061933X|16083067 +Colloids and Interface Science Communications,Elsevier ,22150382| +Colloids and Surfaces,Elsevier ,01666622| +Colloids and Surfaces A Physicochemical and Engineering Aspects,Elsevier ,09277757| +Colloids and Surfaces B Biointerfaces,Elsevier ,09277765| +Colloque - Société d études anglo-américaines des 17e et 18e siècles,PERSEE Program,02941953| +Colloquia Humanistica,Institute of Slavic Studies of the Polish Academy of Sciences,20816774|20816774 +Colloquium Agrariae,Associacao Prudentina de Educacao e Cultura,18098215 +Colloquium Exactarum,Associacao Prudentina de Educacao e Cultura,21788332 +Colloquium Humanarum,Associacao Prudentina de Educacao e Cultura,18098207 +Colloquium Mathematicum,"""Institute of Mathematics, Polish Academy of Sciences""",00101354|17306302 +Colloquium Series on Biotechnology,Morgan & Claypool,21592969|21592950 +Colloquium Series on Building Blocks of the Cell Cell Structure and Function,Morgan & Claypool,23283041|2328305X +Colloquium Series on Developmental Biology,Morgan & Claypool,21553521|2155353X +Colloquium Series on Genomic and Molecular Medicine,Morgan & Claypool,21677840|21677859 +Colloquium Series on Integrated Systems Physiology From Molecule to Function,Morgan & Claypool,2154560X|21545626 +Colloquium Series on Neurobiology of Alzheimer s Disease,Morgan & Claypool,23758937|23758945 +Colloquium Series on Neuroglia in Biology and Medicine From Physiology to Disease,Morgan & Claypool,23759933|23759917 +Colloquium Series on Neuroglia in Biology and Medicine From Physiology to Disease,Morgan & Claypool,23759933|23759917 +Colloquium Series on Neuropeptides,Morgan & Claypool,21666628|21666636 +Colloquium Series on Protein Activation and Cancer,Morgan & Claypool,21699399|21699410 +Colloquium Series on Quantitative Cell Biology,Morgan & Claypool,23757744|23757752 +Colloquium Series on Stem Cell Biology,Morgan & Claypool,21683972|21683980 +Colloquium Series on the Cell Biology of Medicine,Morgan & Claypool,21530513|21530521 +Colloquium Series on The Developing Brain,Morgan & Claypool,21595194|21595208 +Colloquium Series on The Genetic Basis of Human Disease,Morgan & Claypool,21684006|21684022 +Colloquium Vitae,Associacao Prudentina de Educacao e Cultura,19846436 +Colombia Forense,Universidad Cooperativa de Colombia - UCC,21459649 +Colombia Forestal,Universidad Distrital Francisco Jose de Caldas,2256201X|01200739 +Colombia Internacional,Universidad de los Andes,01215612|19006004 +Colombian Applied Linguistics Journal,Universidad Distrital Francisco Jose de Caldas,01234641|22487085 +Colombian Journal of Anesthesiology,Elsevier ,22562087| +Côlon & Rectum,Springer-Verlag,19516371|1951638X +Colonial Latin American Review,Informa UK (Taylor & Francis),10609164|14661802 +Colonial Waterbirds,JSTOR,07386028| +coloproctology,Springer-Verlag,01742442|16156730 +Color Research & Application,Wiley Blackwell (John Wiley & Sons),03612317|15206378 +Colorado Review,Muse - Johns Hopkins University Press,2325730X +Coloration Technology,Wiley Blackwell (Blackwell Publishing),14723581|14784408 +Colorectal Cancer,Future Medicine,1758194X|17581958 +Colorectal Disease,Wiley Blackwell (Blackwell Publishing),14628910|14631318 +Columbia Law Review,JSTOR,00101958| +Columella Journal of Agricultural and Environmental Sciences,Columella,20647816|20649479 +Coluna/Columna,SciELO,18081851|18081851 +Combination Products in Therapy,Springer-Verlag,21955859|21909180 +Combinatorial Chemistry & High Throughput Screening,Bentham Science,13862073|00000000 +Combinatorial Chemistry - an Online Journal,Elsevier ,14643383| +COMBINATORICA,Springer-Verlag,02099683|14396912 +Combinatorics Probability Computing,Cambridge University Press,09635483|14692163 +Combustion and Flame,Elsevier ,00102180| +Combustion Explosion and Shock Waves,Springer-Verlag,00105082|15738345 +Combustion Science and Technology,Informa UK (Taylor & Francis),00102202|1563521X +Combustion Theory and Modelling,Informa UK (Taylor & Francis),13647830|17413559 +Comedy Studies,Informa UK (Taylor & Francis),2040610X|20406118 +Comhar,JSTOR,00102369| +COMHARTaighde,Comhar Teoranta,20098626 +Comicalités,OpenEdition,21174911 +Comillas Journal of International Relations,Universidad Pontificia Comillas,23865776 +Comitatus A Journal of Medieval and Renaissance Studies,Muse - Johns Hopkins University Press,15570290 +Comma,Liverpool University Press,16801865|20493355 +Commentaire,CAIRN,01808214|22728988 +Commentarii Mathematici Helvetici,European Mathematical Society Publishing House,00102571|14208946 +Commentationes Mathematicae,Polish Mathematical Society,03738299| +Commentationes Mathematicae Universitatis Carolinae,"""Charles University in Prague, Karolinum Press""",00102628|12137243 +Comments on Inorganic Chemistry,Informa UK (Taylor & Francis),02603594|15489574 +Comments on Toxicology,Informa UK (Taylor & Francis),08865140|1545584X +Comments® on Theoretical Biology,Informa UK (Taylor & Francis),08948550| +Commercial Law Review,Korean Commercial Law Association,12263362| +Common Knowledge,Duke University Press,0961754X|15384578 +Common Law World Review,SAGE Publications,14737795|17405556 +Common Market Law Review,Springer (Kluwer Academic Publishers),01650750| +Commonwealth and Comparative Politics,Informa UK (Taylor & Francis),14662043|17439094 +Commonwealth Fund Fund Reports,The Commonwealth Fund,15586839 +Commonwealth Fund Issue Briefs,The Commonwealth Fund,15586847 +Commonwealth Journal of Local Governance,"""University of Technology, Sydney""",18360394 +Commonwealth Law Bulletin,Informa UK (Taylor & Francis),03050718| +Commonwealth Law Bulletin,Informa UK (Taylor & Francis),03050718|17505976 +Communal/Plural Journal of Transnational & Cross-Cultural Studies,Informa UK (Taylor & Francis),13207873|14693607 +Communicate Journal of Library and Information Science,African Journals Online ,11152664|11152664 +Communicatio,Informa UK (Taylor & Francis),02500167|17535379 +Communication,OpenEdition,11893788|19207344 +Communication & langages,Editions NecPlus,03361500| +Communication & management,CAIRN,22697195|2271734X +Communication & Medicine,Equinox Publishing,16121783|16133625 +Communication & Social Change,Hipatia Press,20145462 +Communication & Society,Universidad de Navarra,02140039|23867876 +Communication and Critical/Cultural Studies,Informa UK (Taylor & Francis),14791420|14794233 +Communication and Sport,SAGE Publications,21674795|21674809 +Communication and the Public,SAGE Publications,20570473|20570481 +Communication Booknotes,Informa UK (Taylor & Francis),0748657X| +Communication Booknotes Quarterly,Informa UK (Taylor & Francis),10948007|15326896 +Communication Culture & Critique,Wiley Blackwell (Blackwell Publishing),17539129|17539137 +Communication Design,Informa UK (Taylor & Francis),20557132|20557140 +Communication Design Quarterly Review,Association for Computing Machinery,21661200| +Communication Disorders Quarterly,SAGE Publications,15257401|15384837 +Communication Education,Informa UK (Taylor & Francis),03634523|14795795 +Communication et Langages,PERSEE Program,17787459 +Communication et organisation,OpenEdition,17753546|17753546 +Communication in Statistics- Theory and Methods,Informa UK (Marcel Dekker),03610926|1532415X +Communication Law and Policy,Informa UK (Taylor & Francis),10811680|15326926 +Communication Methods and Measures,Informa UK (Taylor & Francis),19312458|19312466 +Communication Monographs,Informa UK (Taylor & Francis),03637751|14795787 +Communication on Contemporary Anthropology,"""Scientific Research Publishing, Inc.""",19390580|19364458 +Communication Quarterly,Informa UK (Taylor & Francis),01463373|17464102 +Communication Reports,Informa UK (Taylor & Francis),08934215|17451043 +Communication Research,SAGE Publications,00936502|00000000 +Communication Research and Practice,Informa UK (Taylor & Francis),22041451| +Communication Research Reports,Informa UK (Taylor & Francis),08824096|17464099 +Communication Sciences & Disorders,Korean Academy of Speech-Language Pathology and Audiology,22881328|22880917 +Communication Studies,Informa UK (Taylor & Francis),10510974|17451035 +Communication Teacher,Informa UK (Taylor & Francis),17404622|17404630 +Communication Theory,Wiley Blackwell (Blackwell Publishing),10503293|14682885 +Communication Yearbook,Informa UK (Taylor & Francis),01474642|15567419 +Communications,PERSEE Program,05888018|21025924 +Communications,Walter de Gruyter GmbH,03412059|16134087 +Communications,Science Publishing Group,23285966| +Communications,ACTA Press,19257929| +Communications and Computer Security,ACTA Press,19257880| +Communications and Network,"""Scientific Research Publishing, Inc.""",19492421|19473826 +Communications Engineer,Institution of Electrical Engineers,14798352|17410452 +Communications Faculty Of Science University of Ankara,Ankara University,13036009|13036009 +Communications Faculty Of Science University of Ankara Series A1Mathematics and Statistics,Ankara University,13035991|13035991 +Communications Faculty Of Science University of Ankara Series B Chemistry and Chemical Engineering,Ankara University,13036017|13036017 +Communications Faculty of Science University of Ankara Series C Biology Geological Engineering and Geophysical Engineering,Ankara University,13036025|13036025 +Communications for Statistical Applications and Methods,The Korean Statistical Society,22877843|23834757 +Communications in Algebra,Informa UK (Taylor & Francis),00927872|15324125 +Communications in Analysis and Geometry,"""International Press of Boston, Inc.""",10198385|19449992 +Communications in Applied and Industrial Mathematics,SIMAI,20380909 +Communications in Applied Mathematics and Computational Science,Mathematical Sciences Publishers,15593940|21575452 +Communications in Applied Numerical Methods,Wiley Blackwell (John Wiley & Sons),07488025|15552047 +Communications in Asteroseismology,Verlag der Osterreichischen Akademie der Wissenschaften,10212043|10212043 +Communications in Computational Chemistry,Global Science Press,23057076| +Communications in Computational Physics,Global Science Press,18152406|19917120 +Communications in Contemporary Mathematics,World Scientific ,02191997|02191997 +Communications in Information and Systems,"""International Press of Boston, Inc.""",15267555|21634548 +Communications In Inorganic Synthesis,Communications in Inorganic Synthesis,7192827 +Communications in Mathematical Physics,Springer-Verlag,00103616|14320916 +Communications in Mathematical Sciences,"""International Press of Boston, Inc.""",15396746|19450796 +Communications in Mathematics and Statistics,Springer-Verlag,21946701|2194671X +Communications in Mobile Computing,Springer (Biomed Central Ltd.),21921121|21921121 +Communications in Nonlinear Science and Numerical Simulation,Elsevier ,10075704| +Communications in Number Theory and Physics,"""International Press of Boston, Inc.""",19314523|19314531 +Communications in Numerical Analysis,ISPACS GmbH,21934215 +Communications in Numerical Methods in Engineering,Wiley Blackwell (John Wiley & Sons),10698299|10990887 +Communications in Partial Differential Equations,Informa UK (Taylor & Francis),03605302|15324133 +Communications in Physics,"""Publishing House for Science and Technology Vietnam, Vietnam Academy of Science and Technology""",08683166|08683166 +Communications in Soil Science and Plant Analysis,Informa UK (Taylor & Francis),00103624|15322416 +Communications in Statistics,Informa UK (Taylor & Francis),00903272| +Communications in Statistics - Simulation and Computation,Informa UK (Taylor & Francis),03610918|15324141 +Communications in Statistics Case Studies Data Analysis and Applications,Informa UK (Taylor & Francis),23737484 +Communications in Statistics Part C Sequential Analysis,Informa UK (Taylor & Francis),0731177X| +Communications in Statistics Stochastic Models,Informa UK (Taylor & Francis),08820287| +Communications in Theoretical Physics,IOP Publishing,02536102| +Communications in Theoretical Physics,IOP Publishing,02536102| +Communications of Mathematical Education,Korea Society of Mathematical Education,12266663| +Communications of the ACM,Association for Computing Machinery,00010782| +Communications of the IBIMA,IBIMA Publishing,19437765 +Communications of the Korean Mathematical Society,The Korean Mathematical Society,12251763| +Communications of the Korean statistical society,The Korean Statistical Society,12259500| +Communications on Advanced Computational Science with Applications,ISPACS GmbH,21962499 +Communications on Applied Electronics,Foundation of Computer Science,23944714 +Communications on Pure and Applied Analysis,American Institute of Mathematical Sciences,15340392| +Communications on Pure and Applied Mathematics,Wiley Blackwell (John Wiley & Sons),00103640|10970312 +Communications Society,Institute of Electrical and Electronics Engineers,00945579| +Communicative & Integrative Biology,Landes Bioscience,19420889|19420889 +Communicator Newsletter of the CNA,Wiley Blackwell (Blackwell Publishing),10621938|15487172 +Communiquer Revue de communication sociale et publique,OpenEdition,23689587|23689587 +Communist Affairs,Elsevier ,05888174| +Communist and Post-Communist Studies,Elsevier ,0967067X| +Communist Economies,Informa UK (Taylor & Francis),09540113| +Communist Economies and Economic Transformation,Informa UK (Taylor & Francis),13514393| +Community & Junior College Libraries,Informa UK (Taylor & Francis),02763915|15452522 +Community Acquired Infection,Medknow Publications,22256482| +Community Based Medical Journal,Bangladesh Journals Online,22269290| +Community College Journal of Research & Practice,Informa UK (Taylor & Francis),10668926|15210413 +Community College Review,SAGE Publications,00915521| +Community Dentistry And Oral Epidemiology,Wiley Blackwell (Blackwell Publishing),03015661|16000528 +Community Development,Informa UK (Taylor & Francis),15575330|19447485 +Community Development Journal,Oxford University Press,00103802|14682656 +Community Development Society Journal,Informa UK (Taylor & Francis),00103829| +Community Ecology,Akademiai Kiado Zrt.,15858553|15882756 +Community Genetics,S. Karger AG,14222795|14222833 +Community Health Studies,Wiley Blackwell (Blackwell Publishing),03149021| +Community Junior College Research Quarterly,Informa UK (Taylor & Francis),03616975| +Community Junior College Research Quarterly of Research and Practice,Informa UK (Taylor & Francis),02776774| +Community Literacy Journal,Muse - Johns Hopkins University Press,21626324 +Community Medicine,Springer-Verlag,01422456| +Community Mental Health Journal,Springer-Verlag,00103853|15732789 +Community Mental Health Review,"""Informa UK (Haworth Press, Inc.,)""",03631605| +Community Oncology,"""Frontline Medical Communications, Inc.""",15485315| +Community Work & Family,Informa UK (Taylor & Francis),13668803|14693615 +Companion Animal,Mark Allen Group,14644630|20530897 +Comparative American Studies An International Journal,Informa UK (Taylor & Francis),14775700|17412676 +Comparative and Continental Philosophy,Maney Publishing,17570638|17570646 +Comparative and Functional Genomics,Hindawi Publishing Corporation,15316912|15326268 +Comparative and General Pharmacology,Elsevier ,00104035| +Comparative Biochemistry and Physiology,Elsevier ,0010406X| +Comparative Biochemistry and Physiology Part A Molecular & Integrative Physiology,Elsevier ,10956433| +Comparative Biochemistry and Physiology Part A Physiology,Elsevier ,03009629| +Comparative Biochemistry and Physiology Part B Biochemistry and Molecular Biology,Elsevier ,10964959| +Comparative Biochemistry and Physiology Part B Comparative Biochemistry,Elsevier ,03050491| +Comparative Biochemistry and Physiology Part C Comparative Pharmacology,Elsevier ,03064492| +Comparative Biochemistry and Physiology Part C Pharmacology Toxicology and Endocrinology,Elsevier ,07428413| +Comparative Biochemistry and Physiology Part C Toxicology & Pharmacology,Elsevier ,15320456| +Comparative Biochemistry and Physiology Part D Genomics and Proteomics,Elsevier ,1744117X| +Comparative Clinical Pathology,Springer-Verlag,16185641|1618565X +Comparative Cognition & Behavior Reviews,Comparative Cognition Society,19114745 +Comparative Critical Studies,Edinburgh University Press,17441854|17500109 +Comparative Cytogenetics,Pensoft Publishers,19930771|1993078X +Comparative Drama,Muse - Johns Hopkins University Press,19361637 +Comparative Economic Research,De Gruyter Open Sp. z o.o. ,15082008|15082008 +Comparative Economic Studies,Nature Publishing Group - Macmillan Publishers,08887233|14783320 +Comparative Education,Japan Comparative Education Society,09166785|21852073 +Comparative Education,Informa UK (Taylor & Francis),03050068|13600486 +Comparative Education Review,The University of Chicago Press,00104086|1545701X +Comparative Effectiveness Research,Dove Medical Press,11798483 +Comparative Endocrinology,Japan Society for Comparative Endocrinology,18826636|18826644 +Comparative European Politics,Nature Publishing Group - Macmillan Publishers,14724790|1740388X +Comparative Exercise Physiology,Wageningen Academic Publishers,17552540|17552559 +Comparative Haematology International,Springer-Verlag,09387714|14332973 +Comparative Hepatology,Springer (Biomed Central Ltd.),14765926| +Comparative Immunology Microbiology and Infectious Diseases,Elsevier ,01479571| +Comparative Islamic Studies,Equinox Publishing,17407125|17431638 +Comparative Korean Studies,The International Association of Comparative Korean Studies,12262250| +Comparative Law Review,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,08669449| +Comparative Legal History,Informa UK (Taylor & Francis),2049677X|20496788 +Comparative Literature,Duke University Press,00104124|19458517 +Comparative Literature Studies,The Pennsylvania State University Press,00104132|15284212 +Comparative Medicine East and West,World Scientific ,01472917| +Comparative Migration Studies,Springer (Biomed Central Ltd.),2214594X +Comparative Migration Studies,Amsterdam University Press,22148590| +Comparative Parasitology,BioOne (Helminthological Society of Washington),15252647|19382952 +Comparative Political Studies,SAGE Publications,00104140|00000000 +Comparative Politics,Comparative Politics,00104159|21516227 +Comparative Politics (Russia),Comparative Politics,22213279|24124990 +Comparative Professional Pedagogy,De Gruyter Open Sp. z o.o. ,23084081 +Comparative Sociology,Brill Academic Publishers,15691322|00000000 +Comparative Strategy,Informa UK (Taylor & Francis),01495933|15210448 +Comparative Studies In Law and Politics,Infra-M Academic Publishing House,23092653| +Comparative Studies in Society and History,Cambridge University Press,00104175|14752999 +Comparative Studies of South Asia Africa and the Middle East,Duke University Press,1089201X|1548226X +Comparative Technology Transfer and Society,Muse - Johns Hopkins University Press,15433404 +Comparative Theatre Review,"""Japanese Society for Theatre Research, Comparative Theatre Section""",13472720|21865094 +Compare A Journal of Comparative and International Education,Informa UK (Taylor & Francis),03057925|14693623 +Comparison of cadmium and lead content in milk of different animals species,Wroclaw University of Economics, +Comparison of Cofactor Regeneration Systems,Thieme Publishing Group,20200056 +COMPEL The International Journal for Computation and Mathematics in Electrical and Electronic Engineering,Emerald (MCB UP ),03321649| +Compendio de Ciencias Veterinarias,Instituto de Investigaciones en Ciencias de la Salud,22261761 +Compensation & Benefits Review,SAGE Publications,08863687|15523837 +Competition and Change,SAGE Publications,10245294|14772221 +Competitive Intelligence Review,Wiley Blackwell (John Wiley & Sons),10580247|15206386 +Competitiveness Review An International Business Journal incorporating Journal of Global Competitiveness,Emerald (MCB UP ),10595422| +Complementary Therapies in Clinical Practice,Elsevier ,17443881| +Complementary Therapies in Medicine,Elsevier ,09652299| +Complementary Therapies in Nursing and Midwifery,Elsevier ,13536117| +Complex & Intelligent Systems,Springer-Verlag,21994536|21986053 +Complex Adaptive Systems Modeling,Springer (Biomed Central Ltd.),21943206|21943206 +Complex Analysis and its Synergies,Springer (Biomed Central Ltd.),2197120X|2197120X +Complex Analysis and Operator Theory,Springer-Verlag,16618254|16618262 +Complex Issues of Cardiovascular Diseases,NII KPSSZ,23061278| +Complex Manifolds,De Gruyter Open Sp. z o.o. ,23007443 +Complex Metals,Informa UK (Taylor & Francis),2164232X +Complex Systems Informatics and Modeling Quarterly,Riga Technical University,22559922 +Complex Variables,Informa UK (Taylor & Francis),02781077| +Complex Variables and Elliptic Equations,Informa UK (Taylor & Francis),17476933|17476941 +Complexity,Wiley Blackwell (John Wiley & Sons),10762787|10990526 +Complexity Economics,Baltzer Science Publishers,22104275|22104283 +Complexity Governance & Networks,Baltzer Science Publishers,22142991|22143009 +Complexity Mind Postnonclassic,Infra-M Academic Publishing House,2306174X| +Complexus,S. Karger AG,14248492|14248506 +Complutense Journal of English Studies,Universidad Complutense de Madrid,23863935| +Complutum,Universidad Complutense de Madrid,11316993|19882327 +Composite Interfaces,Informa UK (Taylor & Francis),09276440|15685543 +Composite Structures,Elsevier ,02638223| +Composites,Elsevier ,00104361| +Composites Business Analyst,Elsevier ,14642840| +Composites Engineering,Elsevier ,09619526| +Composites Manufacturing,Elsevier ,09567143| +Composites Mechanics Computations Applications An International Journal,Begell House Inc.,21522057| +Composites Part A Applied Science and Manufacturing,Elsevier ,1359835X| +Composites Part B Engineering,Elsevier ,13598368| +Composites Research,The Korean Society for Composite Materials,22882103| +Composites Science and Technology,Elsevier ,02663538| +Compositio Mathematica,Oxford University Press - London Mathematical Society,0010437X|15705846 +Compost Science & Utilization,Informa UK (Taylor & Francis),1065657X|23262397 +Comprehensive Analytical Chemistry,Elsevier , +Comprehensive Child and Adolescent Nursing,Informa UK (Informa Healthcare),24694193|24694207 +Comprehensive Psychiatry,Elsevier ,0010440X| +Comprehensive Psychology,SAGE Publications,21652228|21652228 +Comprehensive Results in Social Psychology,Informa UK (Taylor & Francis),23743603|23743611 +Comprehensive Reviews in Food Science and Food Safety,Wiley Blackwell (Blackwell Publishing),15414337|15414337 +Comprehensive Therapy,Springer-Verlag,00988243|00988243 +Comptabilité - Contrôle - Audit,CAIRN,12622788|2313514X +Comptes nationaux trimestriels,Organisation for Economic Co-Operation and Development ,22195122| +Comptes Rendus Biologies,Elsevier ,16310691| +Comptes Rendus Chimie,Elsevier ,16310748| +Comptes Rendus de l Académie des Sciences - Series I - Mathematics,Elsevier ,07644442| +Comptes Rendus de l Académie des Sciences - Series IIA - Earth and Planetary Science,Elsevier ,12518050| +Comptes Rendus de l Académie des Sciences - Series IIB - Mechanics,Elsevier ,16207742| +Comptes Rendus de l Académie des Sciences - Series IIB - Mechanics-Physics-Astronomy,Elsevier ,12874620| +Comptes Rendus de l Académie des Sciences - Series IIB - Mechanics-Physics-Chemistry-Astronomy,Elsevier ,12518069| +Comptes Rendus de l Académie des Sciences - Series IIB - Mechanics-Physics-Chemistry-Astronomy,Elsevier ,12518069| +Comptes Rendus de l Académie des Sciences - Series IIC - Chemistry,Elsevier ,13871609| +Comptes Rendus de l Académie des Sciences - Series III - Sciences de la Vie,Elsevier ,07644469| +Comptes Rendus de l Académie des Sciences - Series III - Sciences de la Vie,Elsevier ,07644469| +Comptes Rendus de l Académie des Sciences - Series IV - Physics-Astrophysics,Elsevier ,12962147| +Comptes Rendus Geoscience,Elsevier ,16310713| +Comptes rendus hebdomadaires des séances de l Académie des sciences,Smithsonian Institution Biodiversity Heritage Library,00014036| +Comptes Rendus Mathematique,Elsevier ,1631073X| +Comptes Rendus Mécanique,Elsevier ,16310721| +Comptes Rendus Palevol,Elsevier ,16310683| +Comptes Rendus Physique,Elsevier ,16310705| +Comptes-rendus des séances de l année - Académie des inscriptions et belles-lettres,PERSEE Program,00650536|19696663 +Computability,IOS Press,22113568|22113576 +Computación y Sistemas,Instituto Politecnico Nacional/Centro de Investigacion en Computacion,14055546|20079737 +Computation,MDPI AG,20793197 +Computational and Applied Mathematics,Springer-Verlag,01018205|18070302 +Computational and Mathematical Methods in Medicine,Hindawi Publishing Corporation,1748670X|17486718 +Computational and Mathematical Organization Theory,Springer-Verlag,1381298X|15729346 +Computational and Structural Biotechnology Journal,Elsevier ,20010370|20010370 +Computational and Theoretical Chemistry,Elsevier ,2210271X| +Computational and Theoretical Polymer Science,Elsevier ,10893156| +Computational Astrophysics and Cosmology,Springer (Biomed Central Ltd.),21977909|21977909 +Computational Biology and Bioinformatics,Science Publishing Group,23308265| +Computational Biology and Chemistry,Elsevier ,14769271| +Computational Biology Journal,Hindawi Publishing Corporation,23144165|23144173 +Computational Chemistry,"""Scientific Research Publishing, Inc.""",23325968|23325984 +Computational Cognitive Science,Springer (Biomed Central Ltd.),21953961|21953961 +Computational Complexity,Springer-Verlag,10163328|14208954 +Computational Condensed Matter,Elsevier ,23522143| +Computational Continuum Mechanics,Institute of Continuous Media Mechanics,19996691| +Computational Economics,Springer-Verlag,09277099|15729974 +Computational Geometry,Elsevier ,09257721| +Computational Geosciences,Springer-Verlag,14200597|15731499 +Computational Intelligence,Wiley Blackwell (Blackwell Publishing),08247935|14678640 +Computational Intelligence and Neuroscience,Hindawi Publishing Corporation,16875265|16875273 +Computational Linguistics,MIT Press,08912017|15309312 +Computational Management Science,Springer-Verlag,1619697X|16196988 +Computational Materials Science,Elsevier ,09270256| +Computational Mathematics and Mathematical Physics,Pleiades Publishing,09655425|15556662 +Computational Mathematics and Modeling,Springer-Verlag,1046283X|1573837X +Computational Mechanics,Springer-Verlag,01787675|14320924 +Computational Methods and Function Theory,Springer-Verlag,16179447|21953724 +Computational Methods in Applied Mathematics,Walter de Gruyter GmbH,16094840|16099389 +Computational Methods in Science and Technology,ICHB PAS Poznan Supercomputing and Networking Center,15050602|23539453 +Computational Molecular Biology,"""Sophia Publishing Group, Inc.""",19275587 +Computational Molecular Bioscience,"""Scientific Research Publishing, Inc.""",21653445|21653453 +Computational Optimization and Applications,Springer-Verlag,09266003|15732894 +Computational Particle Mechanics,Springer-Verlag,21964378|21964386 +Computational Science & Discovery,IOP Publishing,17494680|17494699 +Computational Science and Techniques,Klaipeda University Press,20299966 +Computational Seismology and Geodynamics,American Geophysical Union,07335792| +Computational Social Networks,Springer (Biomed Central Ltd.),21974314|21974314 +Computational Statistics,Springer-Verlag,09434062|16139658 +Computational Statistics & Data Analysis,Elsevier ,01679473| +Computational Technology Reviews,"""Civil-Comp, Ltd.""",20448430| +Computational Thermal Sciences An International Journal,Begell House Inc.,19402554| +Computational Thermal Sciences An International Journal,Begell House Inc.,19402503| +Computational Visual Media,Springer-Verlag,20960433|20960662 +Computational Water Energy and Environmental Engineering,"""Scientific Research Publishing, Inc.""",21681562|21681570 +Computer,Institute of Electrical and Electronics Engineers,00189162| +Computer Aided Geometric Design,Elsevier ,01678396| +Computer Aided Surgery,Informa UK (Taylor & Francis),10929088|10970150 +Computer and Information Science,Canadian Center of Science and Education,19138989|19138997 +Computer Animation and Virtual Worlds,Wiley Blackwell (John Wiley & Sons),15464261|1546427X +Computer Applications An International Journal,Academy and Industry Research Collaboration Center,23938455|23938455 +Computer Applications in Engineering Education,Wiley Blackwell (John Wiley & Sons),10613773|10990542 +Computer Assisted Language Learning,Informa UK (Taylor & Francis),09588221|17443210 +Computer Audit Update,Elsevier ,09602593| +Computer Communications,Elsevier ,01403664|01403664 +Computer Compacts,Elsevier ,01677136| +Computer Fraud & Security,Elsevier ,13613723| +Computer Fraud & Security Bulletin,Elsevier ,01420496| +Computer Graphics and Image Processing,Elsevier ,0146664X| +Computer Graphics Forum,Wiley Blackwell (Blackwell Publishing),01677055|14678659 +Computer Integrated Manufacturing Systems,Elsevier ,09515240| +Computer Languages,Elsevier ,00960551| +Computer Languages Systems & Structures,Elsevier ,14778424| +Computer Law & Security Review,Elsevier ,02673649| +Computer Law Review International,Verlag Dr. Otto Schmidt KG,16107608|21944164 +Computer Methods and Programs in Biomedicine,Elsevier ,01692607| +Computer Methods in Applied Mechanics and Engineering,Elsevier ,00457825| +Computer Methods in Biomechanics & Biomedical Engineering,Informa UK (Taylor & Francis),10255842|14768259 +Computer Methods in Biomechanics and Biomedical Engineering Imaging & Visualization,Informa UK (Taylor & Francis),21681163|21681171 +Computer Methods in the Geosciences,Elsevier ,1874561X| +Computer Music Journal,MIT Press,01489267|15315169 +Computer Networks,Elsevier ,13891286| +Computer Networks (1976),Elsevier ,03765075| +Computer Networks and ISDN Systems,Elsevier ,01697552| +Computer Optics,Samara State Aerospace University,01342452|24126179 +Computer Physics Communications,Elsevier ,00104655| +Computer Physics Reports,Elsevier ,01677977| +Computer Programs in Biomedicine,Elsevier ,0010468X| +Computer Science,AGH University of Science and Technology Press,15082806| +Computer Science & Engineering An International Journal,Academy and Industry Research Collaboration Center,22313583|2231329X +Computer Science - Research and Development,Springer-Verlag,18652034|18652042 +Computer Science and Application,Hans Publishers,21618801|2161881X +Computer Science and Engineering,Scientific and Academic Publishing,21631484| +Computer Science and Information Systems,National Library of Serbia,18200214|24061018 +Computer Science and Information Technology,"""Horizon Research Publishing Co., Ltd.""",23316063|23316071 +Computer Science Education,Informa UK (Taylor & Francis),08993408|17445175 +Computer Science in Economics and Management,Springer-Verlag,09212736| +Computer Science Review,Elsevier ,15740137| +Computer Speech & Language,Elsevier ,08852308|10958363 +Computer Standards & Interfaces,Elsevier ,09205489| +Computer Supported Cooperative Work (CSCW),Springer-Verlag,09259724|15737551 +Computer Technology and Application,David Publishing Company,19347332|19347340 +Computer und Recht,Verlag Dr. Otto Schmidt KG,01791990|21944172 +Computer Vision and Image Understanding,Elsevier ,10773142|1090235X +Computer Vision Graphics and Image Processing,Elsevier ,0734189X| +Computer-Aided Civil and Infrastructure Engineering,Wiley Blackwell (Blackwell Publishing),10939687|14678667 +Computer-Aided Design,Elsevier ,00104485| +Computer-Aided Design and Applications,Informa UK (Taylor & Francis),16864360|16864360 +Computer-Aided Engineering Journal,Institution of Electrical Engineers,02639327| +Computeralgebra-Rundbrief,Springer-Verlag,9335994 +Computerised Manufacturing,Institution of Electrical Engineers,02698536| +Computerized Medical Imaging and Graphics,Elsevier ,08956111| +Computerized Radiology,Elsevier ,07304862| +Computerized Tomography,Elsevier ,03638235| +Computers,MDPI AG,2073431X +Computers & Chemical Engineering,Elsevier ,00981354| +Computers & Chemistry,Elsevier ,00978485| +Computers & Education,Elsevier ,03601315| +Computers & Electrical Engineering,Elsevier ,00457906| +Computers & Fluids,Elsevier ,00457930| +Computers & Geosciences,Elsevier ,00983004| +Computers & Graphics,Elsevier ,00978493| +Computers & Industrial Engineering,Elsevier ,03608352| +Computers & Mathematics with Applications,Elsevier ,08981221| +Computers & Operations Research,Elsevier ,03050548| +Computers & Security,Elsevier ,01674048| +Computers & Structures,Elsevier ,00457949| +Computers & Urban Society,Elsevier ,03057097| +Computers and Biomedical Research,Elsevier ,00104809|10902368 +Computers and Composition,Elsevier ,87554615| +Computers and Concrete,Techno-Press,15988198| +Computers and Electronics in Agriculture,Elsevier ,01681699| +Computers and Geotechnics,Elsevier ,0266352X| +Computers and Standards,Elsevier ,01678051| +Computers and the Humanities,Springer-Verlag,00104817|15728412 +Computers and Translation,Springer-Verlag,08840709| +Computers Environment and Urban Systems,Elsevier ,01989715| +Computers in Biology and Medicine,Elsevier ,00104825| +Computers in Entertainment,Association for Computing Machinery,15443574|15443574 +Computers in Human Behavior,Elsevier ,07475632|07475632 +Computers in Human Services,Informa UK (Taylor & Francis),0740445X| +Computers in Industry,Elsevier ,01663615| +Computers in Nursing,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,07368593| +Computers in Physics,American Institute of Physics,08941866| +Computers in the Schools,Informa UK (Taylor & Francis),07380569|15287033 +Computing,Springer-Verlag,0010485X|14365057 +Computing & Control Engineering Journal,Institution of Electrical Engineers,09563385|17410460 +Computing and Visualization in Science,Springer-Verlag,14329360|14330369 +Computing in Science & Engineering,Institute of Electrical and Electronics Engineers,15219615| +Computing Letters,Brill Academic Publishers,15740404|00000000 +Computing Systems in Engineering,Elsevier ,09560521| +Comunicação & Educação,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,01046829|23169125 +Comunicação & Informação,Universidade Federal de Goias,14155842|2317675X +Comunicação & Inovação,USCS Universidade Municipal de Sao Caetano do Sul,1809564X|21780145 +Comunicação & Sociedade,Instituto Metodista de Ensino Superior,21757755 +Comunicação e Sociedade,"""Centro de Estudos de Comunicacao e Sociedade, Universidade Minho""",16452089|21833575 +Comunicação Mídia e Consumo,Escola Superior de Propaganda e Marketing (ESPM),19837070 +Comunicação pública,OpenEdition,16461479|21832269 +Comunicació Educativa,Universitat Rovira I Virgili,15759911|23395559 +Comunicación,Universidad Pontificia Bolivariana,01201166|23900075 +Comunicación Lenguaje y Educación,Informa UK (Taylor & Francis),02147033|00000000 +Comunicación y Cultura,Fundacion Infancia y Aprendizaje,1138395X|00000000 +Comunicación y Medios,Universidad de Chile,07163991|07163991 +Comunicaciones en Estadística,Universidad Santo Tomas,20273355|20273355 +Comunicações,Instituto Educacional Piracicabano da Igreja Metodista,2238121X +Comunicar,Grupo Comunicar,11343478|19883293 +Comunicata Scientiae,Lepidus Tecnologia,21769079|21775133 +Comunitania Revista Internacional de Trabajo Social y Ciencias Sociales,UNED - Universidad Nacional de Educacion a Distancia,21730512|21730520 +Con A de animación,Universitat Politecnica de Valencia,21736049|21733511 +Con-texto,Universidad Externado de Colombia,01236458|23462078 +CONCEPT AND COMMUNICATION,The Hallym Academyn of Sciences,20051492| +Concepts and Transformation,John Benjamins Publishing Company,13846639|00000000 +Concepts in Magnetic Resonance,Wiley Blackwell (John Wiley & Sons),10437347|10990534 +Concepts in Magnetic Resonance Part A,Wiley Blackwell (John Wiley & Sons),15466086|15525023 +Concepts in Magnetic Resonance Part B Magnetic Resonance Engineering,Wiley Blackwell (John Wiley & Sons),15525031|1552504X +Conceptus,Walter de Gruyter GmbH,00105155|21969523 +ConCiencia,Universidad Nacional del Litoral,03283992|23623292 +Concrete Journal,Japan Concrete Institute,03871061|21862753 +Concrete Operators,De Gruyter Open Sp. z o.o. ,22993282 +Concrete Research and Technology,Japan Concrete Institute,13404733|21862745 +Concurrency and Computation Practice and Experience,Wiley Blackwell (John Wiley & Sons),15320626|15320634 +Concurrency Practice and Experience,Wiley Blackwell (John Wiley & Sons),10403108|10969128 +Concurrent Advances in Mechanical Engineering,DJ Publications,24553638 +Concurrent Engineering,SAGE Publications,1063293X|15312003 +Concussion,Future Medicine,20563299 +Condensed Matter,MDPI AG,24103896 +Condensed Matter Physics,Institute for Condensed Matter Physics,1607324X|22249079 +Confederation of Australian Critical Care Nurses Journal,Elsevier ,10333355| +Conference Papers in Energy,Hindawi Publishing Corporation,23144009 +Conference Papers in Engineering,Hindawi Publishing Corporation,23145366 +Conference Papers in Materials Science,Hindawi Publishing Corporation,20909713 +Conference Papers in Mathematics,Hindawi Publishing Corporation,23144777 +Conference Papers in Medicine,Hindawi Publishing Corporation,2314534X +Conference Papers in Science,Hindawi Publishing Corporation,23566108|23566094 +Conferences on New Political Economy,Mohr Siebeck,18618340| +Confero Essays on Education Philosophy and Politics,Linkoping University Electronic Press,20014562 +Configurações,OpenEdition,21827419|21827419 +Configurations,Muse - Johns Hopkins University Press,10806520 +Confins,OpenEdition,19589212|19589212 +Conflict and Health,Springer (Biomed Central Ltd.),17521505|17521505 +Conflict Management and Peace Science,SAGE Publications,07388942|15499219 +Conflict Resolution Quarterly,Wiley Blackwell (John Wiley & Sons),15365581|15411508 +Conflict Security and Development,Informa UK (Taylor & Francis),14678802|14781174 +Confluences Méditerranée,CAIRN,11482664|21025991 +Confluência,Liceu Literario Portugues,14157403|23174153 +Confluencia Revista Hispánica de Cultura y Literatura,Muse - Johns Hopkins University Press,23286962 +Confluentes Mathematici,Cellule MathDoc/CEDRAM,17937442|17937434 +Conformal Geometry and Dynamics of the American Mathematical Society,American Mathematical Society,10884173 +Confrontation and Cooperation 1000 Years of Polish-German-Russian Relations,De Gruyter Open Sp. z o.o. ,23915536 +Congenital Anomalies,Wiley Blackwell (Blackwell Publishing),09143505|17415420 +Congenital Heart Disease,Wiley Blackwell (Blackwell Publishing),1747079X|17470803 +Congestive Heart Failure,Wiley Blackwell (Blackwell Publishing),15275299|17517133 +Congress & the Presidency,Informa UK (Taylor & Francis),07343469|19441053 +Congress on Research in Dance Conference Proceedings,Cambridge University Press,20491255 +Conia-Ene Reaction,Thieme Publishing Group,20300174 +Conia-Ene Reactions,Thieme Publishing Group,20300190 +Conimbriga Revista de Arqueologia,Coimbra University Press,00849189|16478657 +Conjectura filosofia e educação,Universidade Caixias do Sul,01031457|21784612 +Conjunctions Transdisciplinary Journal of Cultural Participation,Aarhus University Library,22463755 +Conjuntura Global,Universidade Federal do Parana,23176563 +Connection Science,Informa UK (Taylor & Francis),09540091|13600494 +Connections,International Network for Social Network Analysts,02261766| +Connections The Quarterly Journal,"""Procon, Ltd.""",18121098|18122973 +Connective Tissue Research,Informa UK (Taylor & Francis),03008207|16078438 +Connexions,CAIRN,03373126|17762804 +Conradiana,Muse - Johns Hopkins University Press,19350252 +ConScientiae Saúde,University Nove de Julho - Uninove,16771028|19839324 +Consciousness & Emotion,John Benjamins Publishing Company,15665836|00000000 +Consciousness and Cognition,Elsevier ,10538100|10902376 +Conservación Vegetal,Servicio de Publicaciones de la Universidad Autonoma de Madrid,11379952| +Conservar Património,Associacao Profissional de Conservadores-Restauradores de Portugal,1646043X|21829942 +Conservation,Wiley Blackwell (Blackwell Publishing),19362145|19366779 +Conservation & Recycling,Elsevier ,03613658| +Conservation and Management of Archaeological Sites,Maney Publishing,13505033|17535522 +Conservation and Restoration of Cultural Heritage,The Korean Society of Conservation Science for Cultural Heritage,22880798| +Conservation and Society,Medknow Publications,09724923| +Conservation Biology,Wiley Blackwell (Blackwell Publishing),08888892|15231739 +Conservation Genetics,Springer-Verlag,15660621|15729737 +Conservation Genetics Resources,Springer-Verlag,18777252|18777260 +Conservation in Practice,Wiley Blackwell (Blackwell Publishing),15396827|15525228 +Conservation Letters,Wiley Blackwell (Blackwell Publishing),1755263X|1755263X +Conservation Physiology,Oxford University Press,20511434 +Conservation Science,Nepal Journals Online,20912307| +Conservative Judaism,Muse - Johns Hopkins University Press,19474717 +Constellations,Wiley Blackwell (Blackwell Publishing),13510487|14678675 +Constitutional Political Economy,Springer-Verlag,10434062|15729966 +Constraints,Springer-Verlag,13837133|15729354 +Construction and Architecture,Infra-M Academic Publishing House,23080191| +Construction and Building Materials,Elsevier ,09500618| +Construction Economics and Building,"""University of Technology, Sydney""",22049029 +Construction Engineering,"""Science and Engineering Publishing, Co.""",23293373| +Construction Innovation,Emerald (MCB UP ),14714175| +Construction Law Handbook,Thomas Telford Ltd.,17526841| +Construction Management and Economics,Informa UK (Taylor & Francis),01446193|1466433X +Construction Science,De Gruyter Open Sp. z o.o. ,22558551|22558551 +Constructions and Frames,John Benjamins Publishing Company,18761933|18761941 +Constructive Approximation,Springer-Verlag,01764276|14320940 +Consulting Psychology Journal Practice and Research,American Psychological Association,10614087|19390149 +Consumer Policy and Education Review,Korean Society of Consumer Policy and Education,17389194| +Consumption Markets and Culture,Informa UK (Taylor & Francis),10253866|1477223X +Contabilidad y Negocios,Sistema de Bibliotecas PUCP,19921896|2221724X +CONTABILITÀ E CULTURA AZIENDALE,Franco Angeli,17215242|22837337 +Contact Dermatitis,Wiley Blackwell (Blackwell Publishing),01051873|16000536 +Contact Lens and Anterior Eye,Elsevier ,13670484|13670484 +Contact Lens Update,Elsevier ,08859264| +Contaduría y Administración,Elsevier ,01861042| +Contagion Journal of Violence Mimesis and Culture,Michigan State University Press,10757201|19301200 +ContaminAzioni ecologiche Cibi nature e culture,Led Edizioni Universitarie,22836845| +Contemporaneity Historical Presence in Visual Culture,"""University Library System, University of Pittsburgh""",21535914 +Contemporary Accounting Research,Wiley Blackwell (Blackwell Publishing),08239150|19113846 +Contemporary Analysis and Applied Mathematics,Contemporary Analysis and Applied Mathematics,21473730|2149861X +Contemporary Arab Affairs,Informa UK (Taylor & Francis),17550912|17550920 +Contemporary Behavioral Health Care,Open Access Text,20588690 +Contemporary British History,Informa UK (Taylor & Francis),13619462|17437997 +Contemporary Buddhism,Informa UK (Taylor & Francis),14639947|14767953 +Contemporary Chinese Thought,Informa UK (Taylor & Francis),10971467|15580997 +Contemporary Clinical Dentistry,Medknow Publications,0976237X| +Contemporary Clinical Trials,Elsevier ,15517144| +Contemporary Clinical Trials Communications,Elsevier ,24518654| +Contemporary Concepts of Condensed Matter Science,Elsevier , +Contemporary Crises,Springer-Verlag,03781100| +Contemporary Diagnostic Radiology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,01499009| +Contemporary Drug Problems,SAGE Publications,00914509|21631808 +Contemporary Economic Policy,Wiley Blackwell (Blackwell Publishing),10743529|14657287 +Contemporary Economics,University of Finance and Management in Warsaw,20840845| +Contemporary Economics,University of Finance and Management in Warsaw,18979254| +Contemporary Education Dialogue,SAGE Publications,09731849|22495320 +Contemporary Educational Psychology,Elsevier ,0361476X|10902384 +Contemporary Educational Researches Journal,Sciencepark Research Organization and Counseling,23012552 +Contemporary Engineering Sciences,"""Hikari, Ltd.""",13136569|13147641 +Contemporary Europe,"""Institute of Europe, Russian Academy of Sciences IERAS""",02017083| +Contemporary European History,Cambridge University Press,09607773|14692171 +Contemporary Family Therapy,Springer-Verlag,08922764|15733335 +Contemporary Film Studies,Contemporary Film Research Institute,19755082| +Contemporary French and Francophone Studies,Informa UK (Taylor & Francis),17409292|17409306 +Contemporary French Civilization,Liverpool University Press,01479156|2044396X +Contemporary Hypnosis,Wiley Blackwell (John Wiley & Sons),09605290|15570711 +Contemporary Islam,Springer-Verlag,18720218|18720226 +Contemporary Islamic Studies,Hamad bin Khalifa University Press (HBKU Press),22202757| +Contemporary Issues in Early Childhood,SAGE Publications,14639491|14639491 +Contemporary Issues in Education Research (CIER),Clute Institute,19405847|1941756X +Contemporary Italian Politics,Informa UK (Taylor & Francis),23248823|23248831 +Contemporary Japan,Walter de Gruyter GmbH,18692729|18692737 +Contemporary Jewry,Springer-Verlag,01471694|18765165 +Contemporary Justice Review,Informa UK (Taylor & Francis),10282580|14772248 +Contemporary Literature,University of Wisconsin Press,00107484|15489949 +Contemporary Logistics,"""St. Plum-Blossom Press Pty, Ltd.""",1838739X| +Contemporary Management Research,Academy of Taiwan Information Systems Research,18135498|18135498 +Contemporary Materials,National and University Library of the Republic of Srpska,19868669|19868677 +Contemporary Mathematics and Statistics,Columbia International Publishing,21631204 +Contemporary Music Review,Informa UK (Taylor & Francis),07494467|14772256 +Contemporary Neurosurgery,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,01632108| +Contemporary Nurse,Informa UK (Taylor & Francis),10376178|18393535 +Contemporary Organic Synthesis,The Royal Society of Chemistry,13504894| +Contemporary Physics,Informa UK (Taylor & Francis),00107514|13665812 +Contemporary Political Theory,Nature Publishing Group - Macmillan Publishers,14708914|14708914 +Contemporary Politics,Informa UK (Taylor & Francis),13569775|14693631 +Contemporary Pragmatism,Brill Academic Publishers,15723429|18758185 +Contemporary Problems of Ecology,Pleiades Publishing,19954255|19954263 +Contemporary problems of social work,Russian State Social University,24125466|2412527X +Contemporary Psychoanalysis,Informa UK (Taylor & Francis),00107530|23309091 +Contemporary Record,Informa UK (Taylor & Francis),09509224| +Contemporary Review of the Middle East,SAGE Publications,23477989|23490055 +Contemporary School Psychology,Springer-Verlag,21592020|21611505 +Contemporary Security Policy,Informa UK (Taylor & Francis),13523260|17438764 +Contemporary Social Science,Informa UK (Taylor & Francis),21582041|2158205X +Contemporary Sociological Studies,Hokkaido Sociological Association,09151214|21866163 +Contemporary Sociology A Journal of Reviews,SAGE Publications,00943061|19398638 +Contemporary South Asia,Informa UK (Taylor & Francis),09584935|1469364X +Contemporary Southeast Asia,Institute of Southeast Asian Studies,0129797X| +Contemporary Southeast Asia A Journal of International and Strategic Affairs,Muse - Johns Hopkins University Press,1793284X +Contemporary Spine Surgery,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15274268| +Contemporary Theatre Review,Informa UK (Taylor & Francis),10486801|14772264 +Contemporary Trends in Geoscience,De Gruyter Open Sp. z o.o. ,20845707 +Contemporary Women s Writing,Oxford University Press,17541484|17541476 +CONTENTS PLUS,The Korean Society of Media and Arts,20928157| +Contextes,OpenEdition,1783094X|1783094X +Contexto Internacional,SciELO,1028529 +Contexto Internacional,SciELO,01028529|01028529 +Contextos Clínicos,Universidade do Vale do Rio Dos Sinos - UNISINOS,19833482 +Contextos Educativos Revista de Educación,Universidad de la Rioja,1575023X|16955714 +Contexts,SAGE Publications,15365042|15365042 +Contextus - Revista Contemporânea de Economia e Gestão,Revista Contextus Universidade Federal do Ceara,16782089|21789258 +Continental J Agricultural Economics,Wilolud Journals,21414130| +Continental J Arts and Humanities,Wilolud Journals,21414092| +Continental J Biomedical Sciences,Wilolud Journals,2141419X| +Continental J Earth Sciences,Wilolud Journals,21414076| +Continental J Food Science and Technology,Wilolud Journals,2141422X| +Continental J Information Technology,Wilolud Journals,21414033| +Continental J Sustainable Development,Wilolud Journals,22510486| +Continental J Water Air and Soil Pollution,Wilolud Journals,22510508| +Continental Journal of Pharmaceutical Sciences,Wilolud Journals,21414149| +Continental Journal of Pharmacology and Toxicology Research,Wilolud Journals,21414238| +Continental Philosophy Review,Springer-Verlag,13872842|15731103 +Continental Shelf Research,Elsevier ,02784343| +Continents manuscrits,OpenEdition,22751742 +Continuing Cardiology Education,Wiley Blackwell (John Wiley & Sons),20591594| +Continuing Education in Anaesthesia Critical Care & Pain,Oxford University Press,17431816|17431824 +Continuing Education in Anaesthesia Critical Care & Pain,Oxford University Press,14722615|14774518 +Continuing Education in Radiologic Technology,Elsevier - WB Saunders,15433544| +Continuity and Change,Cambridge University Press,02684160|1469218X +Continuum,Informa UK (Taylor & Francis),10304312|14693666 +CONTINUUM Lifelong Learning in Neurology,Ovid Technologies (Wolters Kluwer) - American Academy of Neurology,10802371| +Continuum Mechanics and Thermodynamics,Springer-Verlag,09351175|14320959 +Contraception,Elsevier ,00107824| +Contraception and Reproductive Medicine,Springer (Biomed Central Ltd.),20557426 +Contracteren,Boom Uitgevers Den Haag,15660893| +Contrast Media & Molecular Imaging,Wiley Blackwell (John Wiley & Sons),15554309|15554317 +Contraste,CAIRN,12547689|22593780 +Contributions from the United States National Herbarium,Smithsonian Institution Biodiversity Heritage Library,00971618| +Contributions in Economic Analysis & Policy,Walter de Gruyter GmbH,15380645 +Contributions in Macroeconomics,Walter de Gruyter GmbH,15346005 +Contributions in Theoretical Economics,Walter de Gruyter GmbH,15345971 +Contributions of the Meteoritical Society,Wiley Blackwell (Blackwell Publishing),00962805| +Contributions of the Society for Research on Meteorites,Wiley Blackwell (Blackwell Publishing),00962813| +Contributions to Canadian Biology and Fisheries,Canadian Science Publishing,03665348| +Contributions to Canadian Economics,JSTOR,03836258| +Contributions to Geophysics and Geodesy,De Gruyter Open Sp. z o.o. ,13352806|13380540 +Contributions to Gynecology and Obstetrics,S. Karger AG,03044246|16622901 +Contributions to Indian Sociology,SAGE Publications,00699667|09730648 +Contributions to Mineralogy and Petrology,Springer-Verlag,00107999|14320967 +Contributions to Oncology / Beiträge zur Onkologie,S. Karger AG, +Contributions to Plasma Physics,Wiley Blackwell (John Wiley & Sons),08631042|15213986 +Contributions to Political Economy,Oxford University Press,02775921|14643588 +Contributions to the History of Concepts,Berghahn Books,18079326|1874656X +Control and Intelligent Systems,ACTA Press,14801752| +Control Engineering Practice,Elsevier ,09670661| +Control of Diastereoselectivity,Thieme Publishing Group,20300085 +Control Theory and Technology,Springer-Verlag,20956983|21980942 +Controlled Clinical Trials,Elsevier ,01972456| +Controlling,C.H. Beck,09350381| +Controlling & Management,Springer-Verlag,16141822|18645410 +Controlling & Management Review,Springer Fachmedien Wiesbaden GmbH,21958262|21958270 +Convergence The International Journal of Research into New Media Technologies,SAGE Publications,13548565|17487382 +Convergent Science Physical Oncology,IOP Publishing,20571739 +Conversations in Religion and Theology,Wiley Blackwell (Blackwell Publishing),14792206|14792214 +Convivium,"""Brepols Publishers, NV""",23363452| +Convivium Germanistisches Jahrbuch Polen,Adam Mickiewicz University Poznan,21968403| +Cooperation and Conflict,SAGE Publications,00108367|00000000 +Cooperativismo & Desarrollo,Universidad Cooperativa de Colombia - UCC,01207180| +Coordination Chemistry Reviews,Elsevier ,00108545|00108545 +COPD Journal of Chronic Obstructive Pulmonary Disease,Informa UK (Taylor & Francis),15412555|15412563 +COPD Research and Practice,Springer (Biomed Central Ltd.),20549040 +Copeia,BioOne (American Society of Icthyologists and Herpetologists),00458511|00458511 +Copernican Journal of Finance & Accounting,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,23001240|23003065 +Copernican Letters,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,2082968X| +Cor et Vasa,Elsevier ,00108650| +Coral Reefs,Springer-Verlag,07224028|14320975 +CORD News,JSTOR,05887356| +Core Evidence,Dove Medical Press,1555175X +Corela,OpenEdition,16385748 +Corinth,JSTOR,15587185| +Cornea,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,02773740| +Cornell Hospitality Quarterly,SAGE Publications,19389655|19389663 +Cornell Hotel and Restaurant Administration Quarterly,SAGE Publications,00108804| +Cornish Studies,Intellect,1352271X|20539363 +Coronary Artery Disease,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,09546928| +Coronary Health Care,Elsevier ,13623265| +Corpora,Edinburgh University Press,17495032|17551676 +Corporate Communications An International Journal,Emerald (MCB UP ),13563289|00000000 +Corporate Environmental Strategy,Elsevier ,10667938| +Corporate Governance,Emerald (MCB UP ),14720701| +Corporate Governance An International Review,Wiley Blackwell (Blackwell Publishing),09648410|14678683 +Corporate Philanthropy Report,Wiley Blackwell (John Wiley & Sons),08858365|19493207 +Corporate Reputation Review,Nature Publishing Group - Macmillan Publishers,13633589|14791889 +Corporate Social Responsibility and Environmental Management,Wiley Blackwell (John Wiley & Sons),15353958|15353966 +Corps,CAIRN,19541228|19696957 +Corpus,OpenEdition,18538037|18538037 +Corpus Eve,OpenEdition,24251593 +Corpus Linguistics and Linguistic Theory,Walter de Gruyter GmbH,16137027|16137035 +Corpus Linguistics Research,Korean Association of Corpus Linguistics,2465812X| +Correction Review,Korean Society for Correction Service,12266809|24660698 +Corrections,Informa UK (Taylor & Francis),23774657|23774665 +Correlatio,Instituto Metodista de Ensino Superior,16772644 +CORROSION,NACE International,00109312|1938159X +CORROSION ENGINEERING DIGEST,Japan Society of Corrosion Engineering,18841147 +Corrosion Engineering Science and Technology,Informa UK (Taylor & Francis),1478422X|00000000 +Corrosion Reviews,Walter de Gruyter GmbH,03346005|21910316 +Corrosion Science,Elsevier ,0010938X| +Corrosion Science and Technology,The Corrosion Science Society of Korea,15986462| +Cortex,Elsevier ,00109452| +Corvinus Journal of Sociology and Social Policy,Corvinus University of Budapest,20615558|2062087X +Cosmetics,MDPI AG,20799284 +Cosmic Research,Pleiades Publishing,00109525|16083075 +Cosmopolitan Civil Societies An Interdisciplinary Journal,"""University of Technology, Sydney""",18375391 +Cosmopolitan Law Journal / Revista de Direito Cosmopolita,Universidade do Estado do Rio de Janeiro UERJ,23578440 +COSMOS,World Scientific ,02196077|17937051 +COSPAR Information Bulletin,Elsevier ,00458732| +Cost Effectiveness and Resource Allocation,Springer (Biomed Central Ltd.),14787547|14787547 +COSTRUZIONI PSICOANALITICHE,Franco Angeli,17219612|19725744 +Costume,Maney Publishing,05908876|17496306 +Cotton Genomics and Genetics,"""Sophia Publishing Group, Inc.""",19251947 +Cough,Springer (Biomed Central Ltd.),17459974|17459974 +Council for Museum Anthropology newsletter,Wiley Blackwell (Blackwell Publishing),01991450| +Council on Anthropology and Education Newsletter,Wiley Blackwell (Blackwell Publishing),05912202|19374380 +Council on Anthropology and Education Quarterly,Wiley Blackwell (Blackwell Publishing),00982881|19374399 +Council on Undergraduate Research Quarterly,Council on Undergraduate Research,10725830| +Counseling and Values,Wiley Blackwell (John Wiley & Sons),01607960| +Counseling Outcome Research and Evaluation,SAGE Publications,21501378|21501386 +Counseling Psychology and Psychotherapy,Moscow State Universtiy of Psychology and Education (MSUPE),20753470|23119446 +Counselling and Psychotherapy Research,Informa UK (Taylor & Francis),14733145|17461405 +Counselling Psychology Quarterly,Informa UK (Taylor & Francis),09515070|14693674 +Counselor Education and Supervision,Wiley Blackwell (John Wiley & Sons),00110035| +CounterText,Edinburgh University Press,20564406|20564414 +Couple and Family Psychology Research and Practice,American Psychological Association,21604096|2160410X +Coupled systems mechanics an international journal,Techno-Press,22342184| +Courrier du Centre international Blaise Pascal,OpenEdition,02496674| +Courrier hebdomadaire du CRISP,CAIRN,00089664|1782141X +CPS International Journal of Social Science Research,Centre for Postgraduate Studies,22893318| +CPT Pharmacometrics & Systems Pharmacology,Wiley Blackwell (John Wiley & Sons),21638306|21638306 +CR The New Centennial Review,Michigan State University Press,1532687X|15396630 +Cracow Indological Studies,Ksiegarnia Akademicka Sp. z.o.o.,17320917|17320917 +Craft Research,Intellect,20404689|20404697 +Craniomaxillofacial Trauma and Reconstruction,Thieme Publishing Group,19433875|19433883 +CRANIO®,Maney Publishing,08869634|21510903 +CRC Critical Reviews in Clinical Laboratory Sciences,Informa UK (Taylor & Francis),05908191| +CRC Critical Reviews in Microbiology,Informa UK (Taylor & Francis),00456454| +CRC Critical Reviews in Toxicology,Informa UK (Taylor & Francis),00456446| +Cream City Review,Muse - Johns Hopkins University Press,2166014X +Creative and Knowledge Society,De Gruyter Open Sp. z o.o. ,13384465|13385283 +Creative Approaches to Research,RMIT Publishing,18359442| +Creative Economy,BIBLIO-GLOBUS Publishing House,19946929|24094684 +Creative Education,"""Scientific Research Publishing, Inc.""",21514755|21514771 +Creative Education Studies,Hans Publishers,2331799X|2331804X +Creative Industries Journal,Informa UK (Taylor & Francis),17510694|17510708 +Creative Nursing,Springer Publishing Company,10784535| +CREATIVE SPACE,Chitkara University Publications,23213892|23217154 +Creativity and Innovation Management,Wiley Blackwell (Blackwell Publishing),09631690|14678691 +Creativity Research Journal,Informa UK (Taylor & Francis),10400419|15326934 +Creativity Studies,Vilnius Gediminas Technical University,23450479|23450487 +Creativity Theories – Research – Applications,University of Bialystok,23540036 +Credit,Hans Publishers,2168586X|21685886 +Credit and Capital Markets – Kredit und Kapital,Duncker & Humblot GmbH,21991227|21991235 +Credit and Capital Markets – Kredit und Kapital,Duncker & Humblot GmbH,21991227|21991235 +Creighton Journal of Interdisciplinary Leadership,"""Health Services Library, Creighton University""",23799307 +Cretaceous Research,Elsevier ,01956671|1095998X +Crime & Delinquency,SAGE Publications,00111287|00000000 +Crime and Justice,The University of Chicago Press,01923234|01923234 +Crime Histoire et Sociétés,OpenEdition,14220857|16634837 +Crime Law and Social Change,Springer-Verlag,09254994|15730751 +Crime Media Culture,SAGE Publications,17416590|17416604 +Crime Prevention and Community Safety,Nature Publishing Group - Macmillan Publishers,14603780|17434629 +Crime Psychology Review,Informa UK (Taylor & Francis),23744006|23744014 +Crime Science,Springer (Biomed Central Ltd.),21937680|21937680 +Criminal Behaviour and Mental Health,Wiley Blackwell (John Wiley & Sons),09579664|14712857 +Criminal Justice,SAGE Publications,14668025|00000000 +Criminal Justice and Behavior,SAGE Publications,00938548|00000000 +Criminal Justice Ethics,Informa UK (Taylor & Francis),0731129X|19375948 +Criminal Justice Matters,Informa UK (Taylor & Francis),09627251|19346220 +Criminal Justice Matters,Informa UK (Taylor & Francis),09627251| +Criminal Justice Policy Review,SAGE Publications,08874034|00000000 +Criminal Justice Review,SAGE Publications,07340168|15563839 +Criminal Justice Studies,Informa UK (Taylor & Francis),1478601X|14786028 +Criminal Justice Studies A Critical Journal of Crime Law and Society,Informa UK (Taylor & Francis),1478601X| +Criminal Law and Philosophy,Springer-Verlag,18719791|18719805 +Criminal Law Forum,Springer-Verlag,10468374|15729850 +Criminologie,Consortium Erudit,03160041|14921367 +Criminology,Wiley Blackwell (Blackwell Publishing),00111384|17459125 +Criminology & Public Policy,Wiley Blackwell (Blackwell Publishing),15386473|17459133 +Criminology and Criminal Justice,SAGE Publications,17488958|17488966 +CRIS - Bulletin of the Centre for Research and Interdisciplinary Study,De Gruyter Open Sp. z o.o. ,18055117|18055117 +Crisis,Hogrefe Publishing Group,02275910|21512396 +Crisis Intervention and Time-Limited Treatment,Informa UK (Taylor & Francis),10645136| +CRITIC,"""Science and Education, Ltd.""",22297146| +Critical African Studies,Informa UK (Taylor & Francis),21681392|20407211 +Critical and Radical Social Work,The Policy Press,20498608|20498675 +Critical Arts,Informa UK (Taylor & Francis),02560046| +Critical Arts,Informa UK (Taylor & Francis),02560046| +Critical Arts,Informa UK (Taylor & Francis),02560046| +Critical Arts,Informa UK (Taylor & Francis),02560046|19926049 +Critical Arts,Informa UK (Taylor & Francis),02560046| +Critical Asian Studies,Informa UK (Taylor & Francis),14672715|00000000 +Critical Care,Springer (Biomed Central Ltd.),13648535|18757081 +Critical Care Clinics,Elsevier ,07490704| +Critical Care Medicine,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,00903493| +Critical Care Nurse,AACN Publishing,02795442|19408250 +Critical Care Nursing Clinics of North America,Elsevier ,08995885| +Critical Care Nursing Quarterly,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,08879303| +Critical Care Research and Practice,Hindawi Publishing Corporation,20901305|20901313 +Critical Criminology,Springer-Verlag,12058629|15729877 +Critical Discourse Studies,Informa UK (Taylor & Francis),17405904|17405912 +Critical Ethnic Studies,University of Minnesota Press,23735031|23735031 +Critical Finance Review,Now Publishers,21645744|21645760 +Critical Historical Studies,The University of Chicago Press,23264462|23264470 +Critical Horizons,Informa UK (Taylor & Francis),14409917|15685160 +Critical Housing Analysis,Institute of Sociology of the Academy of Sciences of the Czech Republic,23362839| +Critical Inquiry,The University of Chicago Press,00931896|15397858 +Critical Inquiry in Language Studies,Informa UK (Taylor & Francis),15427587|15427595 +Critical Interventions,Informa UK (Taylor & Francis),19301944|2326411X +Critical Military Studies,Informa UK (Taylor & Francis),23337486|23337494 +Critical Pathways in Cardiology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,1535282X| +Critical Perspectives on Accounting,Elsevier ,10452354|10959955 +Critical Perspectives on International Business,Emerald (MCB UP ),17422043| +Critical Philosophy of Race,The Pennsylvania State University Press,21658684|21658692 +Critical Policy Studies,Informa UK (Taylor & Francis),19460171|1946018X +Critical Public Health,Informa UK (Taylor & Francis),09581596|14693682 +Critical Quarterly,Wiley Blackwell (Blackwell Publishing),00111562|14678705 +Critical Research on Religion,SAGE Publications,20503032|20503040 +Critical Review,Informa UK (Taylor & Francis),08913811|19338007 +Critical Review of International Social and Political Philosophy,Informa UK (Taylor & Francis),13698230|17438772 +Critical Reviews in Analytical Chemistry,Informa UK (Taylor & Francis),10408347|15476510 +Critical Reviews in Biochemistry,Informa UK (Taylor & Francis),10408355| +Critical Reviews in Biochemistry and Molecular Biology,Informa UK (Taylor & Francis),10409238|15497798 +Critical Reviews in Biomedical Engineering,Begell House Inc.,0278940X| +Critical Reviews in Biotechnology,Informa UK (Taylor & Francis),07388551|15497801 +Critical Reviews in Clinical Laboratory Sciences,Informa UK (Taylor & Francis),10408363|1549781X +Critical Reviews in Diagnostic Imaging,Informa UK (Taylor & Francis),10408371|15497844 +Critical Reviews in Environmental Control,Informa UK (Taylor & Francis),1040838X| +Critical Reviews in Environmental Science and Technology,Informa UK (Taylor & Francis),10643389|15476537 +Critical Reviews in Eukaryotic Gene Expression,Begell House Inc.,10454403| +Critical Reviews in Food Science and Nutrition,Informa UK (Taylor & Francis),10408398|15497852 +Critical Reviews in Immunology,Begell House Inc.,10408401| +Critical Reviews in Microbiology,Informa UK (Taylor & Francis),1040841X|15497828 +Critical Reviews in Neurobiology,Begell House Inc.,08920915| +Critical Reviews in Neurosurgery,Springer-Verlag,09390146|14330377 +Critical Reviews in Oncogenesis,Begell House Inc.,21626448| +Critical Reviews in Oncology/Hematology,Elsevier ,10408428| +Critical Reviews in Oral Biology & Medicine,SAGE Publications,10454411| +Critical Reviews in Physical and Rehabilitation Medicine,Begell House Inc.,08962960| +Critical Reviews in Plant Sciences,Informa UK (Taylor & Francis),07352689|15497836 +Critical Reviews in Solid State and Material Sciences,Informa UK (Taylor & Francis),10408436|15476561 +Critical Reviews in Therapeutic Drug Carrier Systems,Begell House Inc.,07434863| +Critical Reviews in Toxicology,Informa UK (Taylor & Francis),10408444|15476898 +Critical Reviews™ in Immunology,Begell House Inc.,21626472| +Critical Reviews™ in Oncogenesis,Begell House Inc.,08939675| +Critical Social Policy,SAGE Publications,02610183|1461703X +Critical Sociology,SAGE Publications,08969205|15691632 +Critical Strategies Psychotherapy in Managed Care,"""Informa UK (Haworth Press, Inc.,)""",15228924| +Critical Studies in Education,Informa UK (Taylor & Francis),17508487|17508495 +Critical Studies in Education,Informa UK (Taylor & Francis),17508487| +Critical Studies in Fashion and Beauty,Intellect,20404417|20404425 +Critical Studies in Improvisation / Études critiques en improvisation,University of Guelph,17120624 +Critical Studies in Mass Communication,Informa UK (Taylor & Francis),07393180| +Critical Studies in Media Communication,Informa UK (Taylor & Francis),15295036|14795809 +Critical Studies in Men???s Fashion,Intellect,2050070X|20500718 +Critical Studies in Teaching and Learning,University of the Western Cape Library Service,23107103|23107103 +Critical Studies in Television An International Journal of Television Studies,SAGE Publications,17496020|17496039 +Critical Studies on Security,Informa UK (Taylor & Francis),21624887|21624909 +Critical Studies on Terrorism,Informa UK (Taylor & Francis),17539153|17539161 +Critical Survey,Berghahn Books,00111570|17522293 +Critical Ultrasound Journal,Springer-Verlag,20363176|20367902 +Critical Values,Oxford University Press,23788321|23788372 +Criticism,Wayne State University Press,00111589|15360342 +Criticón,OpenEdition,0247381X|22729852 +Critique,Informa UK (Taylor & Francis),03017605|17488605 +Critique Critical Middle Eastern Studies,Informa UK (Taylor & Francis),10669922|00000000 +Critique d’art,OpenEdition,12468258|22659404 +Critique internationale,CAIRN,12907839|1777554X +Critique of Anthropology,SAGE Publications,0308275X|14603721 +Critique Studies in Contemporary Fiction,Informa UK (Taylor & Francis),00111619|19399138 +Croatian Economic Survey,"""The Institute of Economics, Zagreb""",13304860|18463878 +Croatian International Relations Review,De Gruyter Open Sp. z o.o. ,18485782 +Croatian Journal of Education - Hrvatski časopis za odgoj i obrazovanje,"""Faculty of Teacher Education, University of Zagreb""",18485189|18485197 +Croatian Journal of Fisheries,Croatian Journal of Fisheries,1330061X|18480586 +Croatian Journal of Food Science and Technology,Faculty of Food Technology Osijek,18473466|18489923 +Croatian Journal of Philosophy,Philosophy Documentation Center,13331108| +Croatian Medical Journal,Croatian Medical Journal,03539504|13328166 +Croatian Operational Research Review,Croatian Operational Research Society,18480225|18489931 +Croatica Chemica Acta,Croatian Chemical Society,00111643|1334417X +Crop and Pasture Science,CSIRO Publishing,18360947| +Crop Management,American Society of Agronomy,15437833 +Crop Protection,Elsevier ,02612194| +Crop Science,Crop Science Society of America,0011183X|14350653 +Cropp Breeding and Applied Biotechnology,SciELO,19847033|19847033 +Cross Cultural & Strategic Management,Emerald (MCB UP ),20595794| +Cross Cultural Management An International Journal,Emerald (MCB UP ),13527606| +Cross Metathesis Using Ruthenium-Based Defined Catalysts in Homogeneous Water/Organic Solvent Mixtures,Thieme Publishing Group,20600186 +Cross-Cultural Research,SAGE Publications,10693971|00000000 +Cross-Currents East Asian History and Culture Review,Muse - Johns Hopkins University Press,21589674 +CrossCurrents,Wiley Blackwell (Blackwell Publishing),00111953|19393881 +Crossing Borders An Interdisciplinary Journal of Undergraduate Scholarship,New Prairie Press,23730978 +Crossing the Border International Journal of Interdisciplinary Studies,Nepal Journals Online,23508752|23508922 +Crossings Journal of Migration and Culture,Intellect,20404344|20404352 +Crossroads A Journal of English Studies,University of Bialystok,23006250 +Crusader,Academic Publishing House Researcher,24109126|24137502 +Crustacea amphipoda borealia et arctica auctore Axel Boeck,Smithsonian Institution Biodiversity Heritage Library,03326683| +Crustacean Research,Carcinological Society of Japan,02873478|21895317 +Crustaceana,Brill Academic Publishers,0011216X|15685403 +Cryobiology,Elsevier ,00112240|10902392 +Cryogenics,Elsevier ,00112275| +Cryptogamie Algologie,BioOne (Association des Amis des Cryptogames),01811568|17760984 +Cryptogamie Bryologie,BioOne (Association des Amis des Cryptogames),12900796|17760992 +Cryptogamie Mycologie,BioOne (Association des Amis des Cryptogames),01811584|1776100X +Cryptography,MDPI AG,2410387X +Cryptography and Communications,Springer-Verlag,19362447|19362455 +Cryptologia,Informa UK (Taylor & Francis),01611194|15581586 +Crystal Engineering,Elsevier ,14630184| +Crystal Growth & Design,American Chemical Society,15287483|15287505 +Crystal Research and Technology,Wiley Blackwell (John Wiley & Sons),02321300|15214079 +Crystal Structure Theory and Applications,"""Scientific Research Publishing, Inc.""",21692491|21692505 +Crystallography Reports,Pleiades Publishing,10637745|1562689X +Crystallography Reviews,Informa UK (Taylor & Francis),0889311X|14763508 +Crystals,MDPI AG,20734352 +CrystEngComm,The Royal Society of Chemistry,14668033 +CSA News,American Society of Agronomy,15299163 +CSA News,American Society of Agronomy,15299163 +CSA News,American Society of Agronomy,15299163 +CSA News,American Society of Agronomy,15299163 +CSA News,American Society of Agronomy,15299163 +CSEE Journal of Power and Energy Systems,CSSE,20960042 +CSI Transactions on ICT,Springer-Verlag,22779078|22779086 +CSurgeries,CSurgeries,23720395 +Cuadernos de Administración,Editorial Pontificia Universidad Javeriana,01203592|19007205 +Cuadernos de Antropología,Universidad de Costa Rica,14093138|2215356X +Cuadernos de Arqueología,Universidad de Navarra,11331542|23871814 +Cuadernos de Biodiversidad,Publicaciones Universidad de Alicante,15755495|2254612X +Cuadernos de Cine Documental,Universidad Nacional del Litoral,18511627|23625635 +Cuadernos de Cirugía,Sistema de Bibliotecas UACH,07167040|07182864 +Cuadernos de Contabilidad,Editorial Pontificia Universidad Javeriana,01231472| +Cuadernos de Desarrollo Rural,Editorial Pontificia Universidad Javeriana,01221450|22157727 +Cuadernos de Documentación Multimedia,Universidad Complutense de Madrid,15759733 +Cuadernos de Econom,Elsevier ,02100266| +Cuadernos de Economía,Universidad Nacional de Colombia,01214772|22484337 +Cuadernos de economía,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7176821 +Cuadernos de Economía y Dirección de la Empresa,Elsevier ,11385758| +Cuadernos de Estudios Empresariales,Universidad Complutense de Madrid,11316985|19882610 +Cuadernos de Estudios Gallegos,Departmento de Publicaciones del CSIC,0210847X|19888333 +Cuadernos de Filología Clásica Estudios griegos e indoeuropeos,Universidad Complutense de Madrid,11319070|19882637 +Cuadernos de Filología Clásica Estudios Latinos,Universidad Complutense de Madrid,11319062|19882343 +Cuadernos de Filología Italiana,Universidad Complutense de Madrid,11339527|19882394 +Cuadernos de Filosofía Latinoamericana,Universidad Santo Tomas,01208462| +Cuadernos de Geografía Revista Colombiana de Geografía,Universidad Nacional de Colombia,0121215X|22565442 +Cuadernos de Gestión,Instituto de Economia Aplicada a la Empresa,11316837|19882157 +Cuadernos de Gobierno y Administración Pública,Universidad Complutense de Madrid,23413808|23414839 +Cuadernos de historia (Santiago),SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7191243 +Cuadernos de Historia Contemporánea,Universidad Complutense de Madrid,0214400X|19882734 +Cuadernos de Historia del Derecho,Universidad Complutense de Madrid,11337613|19882521 +Cuadernos de Historia Moderna,Universidad Complutense de Madrid,02144018|19882475 +Cuadernos de informacion,Pontificia Universidad Catolica de Chile,0716162X|07178697 +Cuadernos de Investigación Educativa,Universidad ORT Uruguay,15102432|16889304 +Cuadernos de Investigación Filológica,Universidad de la Rioja,02110547|1699292X +Cuadernos de Investigación Geográfica,Universidad de la Rioja,02116820|16979540 +Cuadernos de lingüística hispánica,Universidad Pedagogica y Tecnologica de Colombia,0121053X|23461829 +Cuadernos de Literatura,Editorial Pontificia Universidad Javeriana,01228102|23461691 +Cuadernos de Medicina Forense,Instituto de Salud Carlos III/BNCS/SciELO Espana,11357606|11357606 +Cuadernos de Música Artes Visuales y Artes Escénicas,Editorial Pontificia Universidad Javeriana,17946670|22159959 +Cuadernos de Prehistoria y Arqueología,Servicio de Publicaciones de la Universidad Autonoma de Madrid,02111608|02111608 +Cuadernos de Psicología del Deporte,Instituto de Salud Carlos III/BNCS/SciELO Espana,15788423| +Cuadernos de Relaciones Laborales,Universidad Complutense de Madrid,11318635|19882572 +Cuadernos de Trabajo Social,Universidad Complutense de Madrid,02140314|19888295 +Cuadernos de Turismo,Servicio de Publicaciones de la Universidad e Murcia,11397861|19894635 +Cuadernos de Vivienda y Urbanismo,Editorial Pontificia Universidad Javeriana,20272103|21450226 +Cuadernos del CLAEH,SciELO,7976062 +Cuadernos Dieciochistas,Ediciones Universidad de Salamanca,15767914|23411902 +Cuadernos Europeos de Deusto,University of Deusto,11308354| +Cuadernos info,Pontificia Universidad Catolica de Chile,07193661|0719367X +Cuadernos Inter c a mbio sobre Centroamérica y el Caribe,Universidad de Costa Rica,16590139|16594940 +Cuadernos Judaicos,Universidad de Chile,7188749 +Cuadernos Latinoamericanos de Administración,Universidad el Bosque,19005016| +Cuadernos LIRICO,OpenEdition,22628339|22628339 +Cuaternario y Geomorfología,AEQUA & SEG,02141744| +Cuban Studies,Muse - Johns Hopkins University Press,15482464 +Cubo (Temuco),SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7190646 +Cuerpo Cultura y Movimiento,Universidad Santo Tomas,22484418| +Cuestiones Constitucionales,Elsevier ,14059193| +Cuestiones de filosofía,Universidad Pedagogica y Tecnologica de Colombia,01235095| +Cuestiones de género de la igualdad y la diferencia,University of Leon,24440221 +Cuestiones teológicas,Universidad Pontificia Bolivariana,0120131X|23899980 +Cuidado de Enfermería y Educación en Salud,Universidad de la Serena,7194331 +Cuizine The Journal of Canadian Food Cultures,Consortium Erudit,19185480 +Çukurova Araştırmaları Dergisi,Cukurova Arastirmalari Dergisi,24587559| +Cukurova Medical Journal,Cukurova Medical Journal,02505150| +Cukurova University Faculty of Education Journal,Cukurova University Faculty of Education,13029967|2149116X +Culinary Science & Hospitality Research,Culinary Society of Korea,24660752| +Cultura,OpenEdition,08704546|21832021 +Cultura - Hombre - Sociedad CUHSO,Universidad Catolica de Temuco,07161557|07192789 +Cultura de los Cuidados Revista de Enfermería y Humanidades,Publicaciones Universidad de Alicante,11381728|16996003 +Cultura de Paz,Latin America Journals Online,22199381|23082771 +Cultura International Journal of Philosophy of Culture and Axiology,Philosophy Documentation Center,15841057|20655002 +Cultura Lenguaje y Representación,Universitat Jaume I,16977750|16977750 +Cultura y Educación,Fundacion Infancia y Aprendizaje,02143550|15793702 +Cultura y Educación,Informa UK (Taylor & Francis),11356405|15784118 +Cultural and Social History,Informa UK (Taylor & Francis),14780038|14780046 +Cultural Anthropology,Society for Cultural Anthropology,08867356|15481360 +Cultural Critique,University of Minnesota Press,08824371|15345203 +Cultural Diversity & Ethnic Minority Psychology,American Psychological Association,10999809| +Cultural Diversity & Mental Health,American Psychological Association,1077341X| +Cultural Diversity and Ethnic Minority Psychology,American Psychological Association,10999809|19390106 +Cultural Diversity in China,De Gruyter Open Sp. z o.o. ,2353995X|23537795 +Cultural Dynamics,SAGE Publications,09213740|00000000 +Cultural Encounters,"""Institute for the Theology of Culture: New Wine, New Wineskins""",15504891| +Cultural Geographies,SAGE Publications,14744740|14770881 +Cultural History,Edinburgh University Press,2045290X|20452918 +Cultural Politics an International Journal,Duke University Press,17432197|00000000 +Cultural Sociology,SAGE Publications,17499755|17499763 +Cultural Studies,Informa UK (Taylor & Francis),09502386|14664348 +Cultural Studies of Science Education,Springer-Verlag,18711502|18711510 +Cultural Studies Review,"""University of Technology, Sydney""",14468123|18378692 +Cultural Trends,Informa UK (Taylor & Francis),09548963|14693690 +Cultural Values,Informa UK (Taylor & Francis),13625179|00000000 +Cultural-Historical Psychology,Moscow State Universtiy of Psychology and Education (MSUPE),18165435|22248935 +Culturas,Universidad Nacional del Litoral,15153738|23625538 +Culturas Revista de Gestión Cultural,Universitat Politecnica de Valencia,23867515 +Cultura_Ciencia_Deporte,UCAM CCD,16965043|19897413 +Culture & Agriculture,Wiley Blackwell (Blackwell Publishing),10484876|1556486X +Culture & History Digital Journal,Departmento de Publicaciones del CSIC,2253797X +Culture & Musées,PERSEE Program,17662923| +Culture & Psychology,SAGE Publications,1354067X|00000000 +Culture & Society,Vytautas Magnus University,20294573|20294573 +Culture Agriculture Food and Environment,Wiley Blackwell (Blackwell Publishing),21539553| +Culture and Brain,Springer-Verlag,21938652|21938660 +Culture and Local Governance,University of Ottawa Library,19117469 +Culture and Organization,Informa UK (Taylor & Francis),14759551|14772760 +Culture and Religion,Informa UK (Taylor & Francis),14755610|14755629 +Culture chiffres,CAIRN,19596928|2118464X +Culture Etudes,CAIRN,1959691X|21184674 +Culture Health & Sexuality,Informa UK (Taylor & Francis),13691058|14645351 +Culture Medicine and Psychiatry,Springer-Verlag,0165005X|1573076X +Culture méthodes,CAIRN,19596936|19683774 +Culture prospective,CAIRN,19596944|21184631 +Culture Society and Masculinities,"""Men's Studies Press, LLC""",19415583|19415591 +Culture Sport Society,Informa UK (Taylor & Francis),14610981| +Culture Studies ↔ Critical Methodologies,SAGE Publications,15327086|1552356X +Culture Theory and Critique,Informa UK (Taylor & Francis),14735784|00000000 +Culture Unbound Journal of Current Cultural Research,Linkoping University Electronic Press,20001525 +Culture/Clinic,University of Minnesota Press,21680981|2168099X +Cultures & conflits,OpenEdition,17775345|17775345 +Cumhuriyet Dental Journal,Cumhuriyet University Faculty of Dentistry,21462852 +Cumhuriyet Medical Journal,Cumhuriyet Medical Journal,13050028 +Cumhuriyet Science Journal,Cumhuriyet University Sciences Journal,13001949|13001949 +Cumhuriyet Üniversitesi İlahiyat Fakültesi Dergisi,Cumhuriyet Universitesi Ilahiyat Fakultesi Dergisi,13011197|13049399 +Cunninghamia,Royal Botanica Gardens and Domain Trust,07279620|2200405X +Curare,Universidad Cooperativa de Colombia - UCC,23823356|23823364 +Curationis,AOSIS,03798577|22236279 +Curator The Museum Journal,Wiley Blackwell (Blackwell Publishing),00113069|21516952 +Cureus,"""Cureus, Inc.""",21688184| +Current Addiction Reports,Springer-Verlag,21962952 +Current Advances in Agricultural Sciences(An International Journal),Diva Enterprises Private Limited,09752315|23944471 +Current Advances in Environmental Science,American V-King Scientific Publishers,23318457|23318465 +Current Aging Science,Bentham Science,18746098| +Current Aging Sciencee,Bentham Science,18746128| +Current Agricultural Science and Technology,Current Agriculture Science and Technology (CAST),23172436|23172436 +Current Agriculture Research Journal,Enviro Research Publishers,23474688|23219971 +Current Allergy and Asthma Reports,Springer-Verlag,15297322|15346315 +Current Alzheimer Research,Bentham Science,15672050|00000000 +Current Anaesthesia and Critical Care,Elsevier ,09537112| +Current Analytical Chemistry,Bentham Science,15734110|00000000 +Current Anesthesiology Reports,Springer-Verlag,21676275 +Current Angiogenesis,Bentham Science,22115528| +Current Anthropology,The University of Chicago Press,00113204|15375382 +Current Applied Physics,Elsevier ,15671739| +Current Atherosclerosis Reports,Springer-Verlag,15233804|15346242 +Current Attention Disorders Reports,Springer-Verlag,19434561|1943457X +Current Behavioral Neuroscience Reports,Springer-Verlag,21962979 +Current Bioactive Compounds,Bentham Science,15734072|00000000 +Current Biochemical Engineering,Bentham Science,22127119| +Current Bioinformatics,Bentham Science,15748936| +Current Biology,Elsevier ,09609822| +Current Biomarker Findings,Dove Medical Press,22302492 +Current Bionanotechnology,Bentham Science,22135294| +Current Biotechnology,Bentham Science,2211551X| +Current Biotechnology,Bentham Science,22115501| +Current Bladder Dysfunction Reports,Springer-Verlag,19317212|19317220 +Current Botany,Scienceflora Publishers Pvt. Ltd.,22204822 +Current Breast Cancer Reports,Springer-Verlag,19434588|19434596 +Current Cancer Drug Targets,Bentham Science,15680096|00000000 +Current Cancer Therapy Reviews,Bentham Science,15733947|00000000 +Current Cardiology Reports,Springer-Verlag,15233782|15343170 +Current Cardiology Reviews,Bentham Science,1573403X|00000000 +Current Cardiovascular Imaging Reports,Springer-Verlag,19419066|19419074 +Current Cardiovascular Risk Reports,Springer-Verlag,19329520|19329563 +Current Catalysis,Bentham Science,22115455| +Current Catalysise,Bentham Science,22115447| +Current Chemical Biology,Bentham Science,18723136| +Current Chemical Genomics,Bentham Science,18753973| +Current Chemical Genomics and Translational Medicine,Bentham Science,22139885| +Current Chemistry Letters,Growing Science,19277296|1927730X +Current Chromatography,Bentham Science,22132406| +Current Climate Change Reports,Springer-Verlag,21986061 +Current Clinical Microbiology Reports,Springer-Verlag,21965471 +Current Clinical Pharmacology,Bentham Science,15748847| +Current Colorectal Cancer Reports,Springer-Verlag,15563790|15563804 +Current Computer - Aided Drug Design,Bentham Science,15734099|00000000 +Current Controlled Trials in Cardiovascular Medicine,Springer (Biomed Central Ltd.),14686708| +Current Dermatology Reports,Springer-Verlag,21624933 +Current Development in Oceanography,Pushpa Publishing House,09766960| +Current Developmental Disorders Reports,Springer-Verlag,21962987 +Current Developments in Mathematics,"""International Press of Boston, Inc.""",10896384|21644829 +Current Diabetes Reports,Springer-Verlag,15344827|15390829 +Current Diabetes Reviews,Bentham Science,15733998|00000000 +Current Diagnostic Pathology,Elsevier ,09686053| +Current Directions in Biomedical Engineering,Walter de Gruyter GmbH,23645504 +Current Directions in Psychological Science,SAGE Publications,09637214|14678721 +Current Drug Abuse Reviews,Bentham Science,18744737| +Current Drug Delivery,Bentham Science,15672018|00000000 +Current Drug Discovery Technologies,Bentham Science,15701638|00000000 +Current Drug Metabolism,Bentham Science,13892002|00000000 +Current Drug Safety,Bentham Science,15748863| +Current Drug Targets,Bentham Science,13894501|00000000 +Current Drug Targets - Cardiovascular & Hematological Disorders,Bentham Science,15680061|00000000 +Current Drug Targets - CNS & Neurological Disorders,Bentham Science,1568007X|00000000 +Current Drug Targets - Immune Endocrine & Metabolic Disorders,Bentham Science,15680088|00000000 +Current Drug Targets - Infectious Disorders,Bentham Science,15680053|00000000 +Current Drug Targets - Inflammation & Allergy,Bentham Science,1568010X|00000000 +Current Drug Therapy,Bentham Science,15748855| +Current Emergency and Hospital Medicine Reports,Springer-Verlag,21674884 +Current Environmental Engineering,Bentham Science,22127178| +Current Environmental Health Reports,Springer-Verlag,21965412 +Current Enzyme Inhibition,Bentham Science,15734080|00000000 +Current Epidemiology Reports,Springer-Verlag,21962995 +Current Eye Research,Informa UK (Informa Healthcare),02713683|14602202 +Current Forestry Reports,Springer-Verlag,21986436 +Current Fungal Infection Reports,Springer-Verlag,19363761|1936377X +Current Gastroenterology Reports,Springer-Verlag,15228037|1534312X +Current Gene Therapy,Bentham Science,15665232|00000000 +Current Genetic Medicine Reports,Springer-Verlag,21674876 +Current Genetics,Springer-Verlag,01728083|14320983 +Current Genomics,Bentham Science,13892029|00000000 +Current GERD Reports,Springer-Verlag,1934967X|19349661 +Current Geriatrics Reports,Springer-Verlag,21967865 +Current Gerontology and Geriatrics Research,Hindawi Publishing Corporation,16877063|16877071 +Current Green Chemistry,Bentham Science,22133461| +Current Gynecologic Oncology,Medical Communications Sp. z.o.o.,20811632| +Current Heart Failure Reports,Springer-Verlag,15469530|15469549 +Current Hematologic Malignancy Reports,Springer-Verlag,15588211|1558822X +Current Hepatology Reports,Springer-Verlag,15403416|21959595 +Current Herpetology,Herpetological Society of Japan,13455834|18811019 +Current HIV Research,Bentham Science,1570162X|00000000 +Current HIV/AIDS Reports,Springer-Verlag,15483568|15483576 +Current Hypertension Reports,Springer-Verlag,15226417|15343111 +Current Hypertension Reviews,Bentham Science,15734021|00000000 +Current Immunology Reviews,Bentham Science,15733955|00000000 +Current Infectious Disease Reports,Springer-Verlag,15233847|15343146 +Current Inorganic Chemistry,Bentham Science,18779441| +Current Issues and Research in Advertising,Informa UK (Taylor & Francis),01633392|2165820X +Current Issues in Auditing,American Accounting Association,19361270|19361270 +Current Issues In Language and Society,Informa UK (Taylor & Francis),13520520| +Current Issues in Language Planning,Informa UK (Taylor & Francis),14664208|17477506 +Current Issues in Personality Psychology,Termedia Sp. z.o.o.,23534192| +Current Issues in Pharmacy and Medical Sciences,Walter de Gruyter GmbH,23006676 +Current issues in pharmacy and medicine science and practice,Zaporozhye State Medical University,23068094|24092932 +Current Issues in Psychoanalytic Practice,"""Informa UK (Haworth Press, Inc.,)""",07377851| +Current Issues in Tourism,Informa UK (Taylor & Francis),13683500|17477603 +Current Issues of Pharmacy and Medical Sciences,Medical University of Lublin,2084980X| +Current Journal of Glaucoma Practice with DVD,Jaypee Brothers Medical Publishing,09740333|09751947 +Current Legal Problems,Oxford University Press,00701998|20448422 +Current Medical Imaging Reviews,Bentham Science,15734056|00000000 +Current Medical Research and Opinion,Informa UK (Librapharm),03007995|14734877 +Current Medicinal Chemistry,Bentham Science,09298673|00000000 +Current Medicinal Chemistry - Anti-Cancer Agents,Bentham Science,15680118|00000000 +Current Medicinal Chemistry - Anti-Infective Agents,Bentham Science,15680126|00000000 +Current Medicinal Chemistry - Anti-Inflammatory & Anti-Allergy Agents,Bentham Science,15680142|00000000 +Current Medicinal Chemistry - Cardiovascular & Hematological Agents,Bentham Science,15680169|00000000 +Current Medicinal Chemistry - Central Nervous System Agents,Bentham Science,15680150|00000000 +Current Medicinal Chemistry - Immunology Endocrine & Metabolic Agents,Bentham Science,15680134|00000000 +Current Medicine Research and Practice,Elsevier ,23520817| +Current Metabolomics,Bentham Science,2213235X| +Current Microbiology,Springer-Verlag,03438651|14320991 +Current Microwave Chemistry,Bentham Science,22133356| +Current Molecular Biology Reports,Springer-Verlag,21986428 +Current Molecular Imaginge,Bentham Science,22115552| +Current Molecular Medicine,Bentham Science,15665240|00000000 +Current Molecular Pharmacology,Bentham Science,18744672| +Current Molecular Pharmacologye,Bentham Science,18744702| +Current Nanomaterials,Bentham Science,24054615| +Current Nanomedicine,Bentham Science,24681873| +Current Nanoscience,Bentham Science,15734137|00000000 +Current Neurobiology,OMICS Publishing Group,9759042 +Current Neurology and Neuroscience Reports,Springer-Verlag,15284042|15346293 +Current Neuropharmacology,Bentham Science,1570159X|00000000 +Current Neurovascular Research,Bentham Science,15672026|00000000 +Current Nutrition & Food Science,Bentham Science,15734013|00000000 +Current Nutrition Reports,Springer-Verlag,21613311 +Current Obesity Reports,Springer-Verlag,21624968 +Current Obstetrics and Gynaecology,Elsevier ,09575847| +Current Obstetrics and Gynecology Reports,Springer-Verlag,21613303 +Current Oncology,MultiMed Inc.,11980052|11980052 +Current Oncology Reports,Springer-Verlag,15233790|15346269 +Current Ophthalmology Reports,Springer-Verlag,21674868 +Current Opinion in Allergy and Clinical Immunology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15284050|14736322 +Current Opinion in Anaesthesiology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,09527907| +Current Opinion in Behavioral Sciences,Elsevier ,23521546| +Current Opinion in Biotechnology,Elsevier ,09581669| +Current Opinion in Cardiology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,02684705| +Current Opinion in Cell Biology,Elsevier ,09550674| +Current Opinion in Chemical Biology,Elsevier ,13675931|13675931 +Current Opinion in Chemical Engineering,Elsevier ,22113398| +Current Opinion in Clinical Nutrition & Metabolic Care,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,13631950| +Current Opinion in Colloid & Interface Science,Elsevier ,13590294| +Current Opinion in Creativity Innovation and Entrepreneurship,Chimera Innova Group,7192991 +Current Opinion in Critical Care,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10705295| +Current Opinion in Endocrinology & Diabetes,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10683097| +Current Opinion in Endocrinology and Diabetes,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10683097| +Current Opinion in Endocrinology Diabetes and Obesity,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,1752296X| +Current Opinion in Environmental Sustainability,Elsevier ,18773435| +Current Opinion in Food Science,Elsevier ,22147993| +Current Opinion in Gastroenterology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,02671379| +Current Opinion in Genetics & Development,Elsevier ,0959437X| +Current Opinion in Hematology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10656251| +Current Opinion in HIV and AIDS,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,1746630X| +Current Opinion in Immunology,Elsevier ,09527915| +Current Opinion in Infectious Diseases,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,09517375| +Current Opinion in Insect Science,Elsevier ,22145745| +Current Opinion in Insect Science,Elsevier ,22145745| +Current Opinion in Internal Medicine,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15355942| +Current Opinion in Lipidology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,09579672| +Current Opinion in Microbiology,Elsevier ,13695274|13695274 +Current Opinion in Nephrology & Hypertension,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10624821| +Current Opinion in Neurobiology,Elsevier ,09594388| +Current Opinion in Neurology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,13507540| +Current Opinion in Obstetrics & Gynecology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,1040872X| +Current Opinion in Oncology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10408746| +Current Opinion in Ophthalmology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10408738| +Current Opinion in Organ Transplantation,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10872418| +Current Opinion in Orthopedics,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10419918| +Current Opinion in Otolaryngology & Head & Neck Surgery,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10689508| +Current Opinion in Pediatrics,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10408703| +Current Opinion in Pharmacology,Elsevier ,14714892| +Current Opinion in Plant Biology,Elsevier ,13695266| +Current Opinion in Psychiatry,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,09517367| +Current Opinion in Psychology,Elsevier ,2352250X| +Current Opinion in Pulmonary Medicine,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10705287| +Current Opinion in Pulmonary Medicine,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10781641| +Current Opinion in Rheumatology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10408711| +Current Opinion in Solid State and Materials Science,Elsevier ,13590286| +Current Opinion in Structural Biology,Elsevier ,0959440X| +Current Opinion in Supportive and Palliative Care,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,17514258| +Current Opinion in Urology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,09630643| +Current Opinion in Virology,Elsevier ,18796257| +Current Opinion on Therapeutic Patents,Informa UK (Ashley Publications),09622594| +Current Oral Health Reports,Springer-Verlag,21963002 +Current Organic Chemistry,Bentham Science,13852728|00000000 +Current Organic Synthesis,Bentham Science,15701794|00000000 +Current Organocatalysis,Bentham Science,22133372| +Current Orthopaedic Practice,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,19407041| +Current Orthopaedics,Elsevier ,02680890| +Current Osteoporosis Reports,Springer-Verlag,15441873|15442241 +Current Otorhinolaryngology Reports,Springer-Verlag,2167583X +Current Paediatrics,Elsevier ,09575839| +Current Pain and Headache Reports,Springer-Verlag,15313433|15343081 +Current Pathobiology Reports,Springer-Verlag,2167485X +Current Pediatric Reviews,Bentham Science,15733963|00000000 +Current Pediatrics Reports,Springer-Verlag,21674841 +Current Pharmaceutical Analysis,Bentham Science,15734129|00000000 +Current Pharmaceutical Biotechnology,Bentham Science,13892010|00000000 +Current Pharmaceutical Design,Bentham Science,13816128|00000000 +Current Pharmacogenomics,Bentham Science,15701603|00000000 +Current Pharmacogenomics and Personalized Medicine,Bentham Science,18756921| +Current Pharmacology Reports,Springer-Verlag,2198641X +Current Physical Chemistry,Bentham Science,18779468| +Current Physical Chemistrye,Bentham Science,18779476| +Current Physical Medicine and Rehabilitation Reports,Springer-Verlag,21674833 +Current Plant Biology,Elsevier ,22146628| +Current Pollution Reports,Springer-Verlag,21986592 +Current Problems in Cancer,Elsevier ,01470272| +Current Problems in Cardiology,Elsevier ,01462806| +Current Problems in Dermatology,Elsevier ,10400486| +Current Problems in Diagnostic Radiology,Elsevier ,03630188| +Current Problems in Obstetrics Gynecology and Fertility,Elsevier - Mosby,87560410| +Current Problems in Pediatric and Adolescent Health Care,Elsevier ,00459380| +Current problems in remote sensing of the Earth from space,Space Research Institute RAS,20707401|24110280 +Current Problems in Surgery,Elsevier ,00113840| +Current Problems of Psychiatry,Medical University of Lublin,20813910| +Current Prostate Reports,Springer-Verlag,1544225X|15441865 +Current Protein and Peptide Science,Bentham Science,13892037|00000000 +Current Proteomics,Bentham Science,15701646|00000000 +Current Psychiatry Reports,Springer-Verlag,15233812|15351645 +Current Psychiatry Reviews,Bentham Science,15734005|00000000 +Current Psychological Research,Springer-Verlag,01433887| +Current Psychological Reviews,Springer-Verlag,01443895| +Current Psychology,Springer-Verlag,10461310|19364733 +Current Psychopharmacology,Bentham Science,22115579| +Current Psychopharmacologye,Bentham Science,22115560| +Current Psychosis & Therapeutics Reports,Springer-Verlag,15458083|15458091 +Current Pulmonology Reports,Springer-Verlag,21992428 +Current Radiology Reports,Springer-Verlag,21674825 +Current Radiopharmaceuticals,Bentham Science,18744710| +Current Research in Agricultural Sciences,Pak Publishing Group,23133716|23126418 +Current Research in Bacteriology,Science Alert,19945426| +Current Research in Cardiovascular Pharmacology,Science Alert,2152193X| +Current Research in Chemistry,Science Alert,19965052| +Current Research in Dairy Sciences,Science Alert,19945434| +Current Research in Dentistry,Science Publications,19490119| +Current Research in Drug Discovery,Science Publications,23333235| +Current Research in Environmental & Applied Mycology,Mushroom Research Foundation,22292225 +Current Research in Neuroscience,Science Alert,19963408| +Current Research in Nutrition and Food Science Journal,Enviro Research Publishers,2347467X|23220007 +Current Research in Physics,Science Alert,21543119| +Current Research in Poultry Science,Science Alert,21522111| +Current Research in Psychology,Science Publications,19490178| +Current Research in Space Science,Science Alert,21543097| +Current Research in Translational Medicine,Elsevier ,24523186| +Current Research in Tuberculosis,Science Alert,18193366| +Current Research Journal of Biological Sciences,Maxwell Scientific Publication Corp.,2041076X|20410778 +Current Research Journal of Economic Theory,Maxwell Scientific Publication Corp.,20424841|2042485X +Current Research Journal of Social Sciences,Maxwell Scientific Publication Corp.,20413238|20413246 +Current Research on Agriculture and Life Sciences,Current Research on Agriculture and Life Science,2287271X|22880356 +Current Respiratory Care Reports,Springer-Verlag,2161332X +Current Respiratory Medicine Reviews,Bentham Science,1573398X|00000000 +Current Review of Pain,Springer-Verlag,10695850| +Current Reviews in Musculoskeletal Medicine,Springer-Verlag,1935973X|19359748 +Current Rheumatology Reports,Springer-Verlag,15233774|15346307 +Current Rheumatology Reviews,Bentham Science,15733971|00000000 +Current Science,Current Science Association,00113891| +Current Sexual Health Reports,Springer-Verlag,15483584|15483592 +Current Signal Transduction Therapy,Bentham Science,15743624| +Current Sleep Medicine Reports,Springer-Verlag,21986401 +Current Smart Materials,Bentham Science,24054658| +Current Sociology,SAGE Publications,00113921|14617064 +Current Sports Medicine Reports,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,1537890X|15378918 +Current Stem Cell Reports,Springer-Verlag,21987866 +Current Stem Cell Research & Therapy,Bentham Science,1574888X| +Current Surgery,Elsevier ,01497944| +Current Surgery Reports,Springer-Verlag,21674817 +Current Sustainable/Renewable Energy Reports,Springer-Verlag,21963010 +Current Synthetic and Systems Biology,OMICS Publishing Group,23320737 +Current Therapeutic Research,Elsevier ,0011393X| +Current Tissue Engineering,Bentham Science,22115420| +Current Topics in Biophysics,De Gruyter Open Sp. z o.o. ,12329630|12329630 +Current Topics in Developmental Biology,Elsevier , +Current Topics in Medicinal Chemistry,Bentham Science,15680266|00000000 +Current Traditional Medicine,Bentham Science,22150838| +Current Translational Geriatrics and Experimental Gerontology Reports,Springer-Verlag,21624941 +Current Transplantation Reports,Springer-Verlag,21963029 +Current Trauma Reports,Springer-Verlag,21986096 +Current Treatment Options in Allergy,Springer-Verlag,21963053 +Current Treatment Options in Cardiovascular Medicine,Springer-Verlag,10928464|15343189 +Current Treatment Options in Gastroenterology,Springer-Verlag,10928472|1534309X +Current Treatment Options in Infectious Diseases,Springer-Verlag,15346250 +Current Treatment Options in Neurology,Springer-Verlag,10928480|15343138 +Current Treatment Options in Oncology,Springer-Verlag,15272729|15346277 +Current Treatment Options in Pediatrics,Springer-Verlag,21986088 +Current Treatment Options in Psychiatry,Springer-Verlag,21963061 +Current Treatment Options in Rheumatology,Springer-Verlag,21986002 +Current Trends in Clinical Embriology,CIC Edizioni Internazionali,23852836 +Current Tropical Medicine Reports,Springer-Verlag,21963045 +Current Urban Studies,"""Scientific Research Publishing, Inc.""",23284900|23284919 +Current Urology,S. Karger AG,16617649|16617657 +Current Urology Reports,Springer-Verlag,15272737|15346285 +Current Vascular Pharmacology,Bentham Science,15701611|00000000 +Current Women s Health Reviews,Bentham Science,15734048|00000000 +Current World Environment,Enviro Research Publishers,09734929|23208031 +Current Writing,Informa UK (Taylor & Francis),1013929X|21599130 +Current Zoology,Oxford University Press,16745507|23969814 +Currents in Biblical Research,SAGE Publications,1476993X|17455200 +Currents in Pharmacy Teaching and Learning,Elsevier ,18771297| +Curriculum and Teaching,James Nicholas Publishers,0726416X| +Curriculum Inquiry,Informa UK (Taylor & Francis),03626784|1467873X +Curriculum Matters,"""NZCER Press, New Zealand Council for Educational Research""",11771828| +Curriculum Theory Network,JSTOR,00784931| +Curtis s Botanical Magazine,Wiley Blackwell (Blackwell Publishing),13554905|14678748 +Curved and Layered Structures,De Gruyter Open Sp. z o.o. ,23537396 +Customer Needs and Solutions,Springer-Verlag,2196291X|21962928 +Cutaneous and Ocular Toxicology,Informa UK (Taylor & Francis),15569527|15569535 +CVD Prevention and Control,Elsevier ,18754570| +CVGIP Graphical Models and Image Processing,Elsevier - Academic Press,10499652| +CVGIP Image Understanding,Elsevier ,10499660| +Cyber-Physical Systems,Informa UK (Taylor & Francis),23335777|23335785 +Cybergeo,OpenEdition,12783366|12783366 +Cybernetics,Springer-Verlag,00114235| +Cybernetics & Systems,Informa UK (Taylor & Francis),01969722|10876553 +Cybernetics and Information Technologies,De Gruyter Open Sp. z o.o. ,13144081|13144081 +Cybernetics and Systems Analysis,Springer-Verlag,10600396|15738337 +CyberPsychology & Behavior,Mary Ann Liebert,10949313|10949313 +Cyberpsychology Behavior and Social Networking,Mary Ann Liebert,21522715|21522723 +Cyberpsychology Journal of Psychosocial Research on Cyberspace,Masaryk University Press,18027962 +Cybrarians Journal,"""Al Manhal FZ, LLC""",16872215| +Cyclization Reactions,Thieme Publishing Group,20600321 +Cycloaddition Reactions Catalyzed by Amino Acid Based Phosphines,Thieme Publishing Group,20300026 +Cyclodextrins as Dispersing Agents of Supported Metals,Thieme Publishing Group,20600577 +Cypriot Journal of Educational Sciences,Sciencepark Research Organization and Counseling,13059076|1305905X +Cyprus Journal of Medical Sciences,AVES Publishing Co.,21497893| +CyTA - Journal of Food,Informa UK (Taylor & Francis),19476337|19476345 +Cytogenetic and Genome Research,S. Karger AG,14248581|1424859X +CytoJournal,Medknow Publications,17426413| +Cytokine,Elsevier ,10434666|10960023 +Cytokine & Growth Factor Reviews,Elsevier ,13596101| +Cytokine Reference,Elsevier - Academic Press, +Cytokines Cellular & Molecular Therapy,Informa UK (Taylor & Francis),13684736|1471177X +CYTOLOGIA,International Society of Cytology,00114545|13487019 +Cytology and Genetics,Allerton Press,00954527|19349440 +Cytometry,Wiley Blackwell (John Wiley & Sons),01964763|10970320 +Cytometry Part A,Wiley Blackwell (John Wiley & Sons),15524922|15524930 +Cytometry Part B Clinical Cytometry,Wiley Blackwell (John Wiley & Sons),15524949|15524957 +Cytopathology,Wiley Blackwell (Blackwell Publishing),09565507|13652303 +Cytoskeleton,Wiley Blackwell (John Wiley & Sons),19493584|19493592 +Cytotechnology,Springer-Verlag,09209069|15730778 +Cytotherapy,Elsevier ,14653249|14772566 +Czasopismo Prawno-Historyczne,Adam Mickiewicz University Poznan,00702471| +Czasopismo Psychologiczne Psychological Journal,Stowarzyszenie Psychologia i Architektura (Society for Psychology and Architecture),14256460| +Czech Journal of Animal Science,Czech Academy of Agricultural Sciences,12121819|18059309 +Czech Journal of Food Sciences,Czech Academy of Agricultural Sciences,12121800|18059317 +Czech Journal of Genetics and Plant Breeding,Czech Academy of Agricultural Sciences,12121975|18059325 +Czech Journal of Tourism,De Gruyter Open Sp. z o.o. ,18053580|18053580 +Czech Polar Reports,Masaryk University Press,18050689|18050697 +Czech Sociological Review,Institute of Sociology of the Academy of Sciences of the Czech Republic,00380288| +Czech-Polish Historical and Pedagogical Journal,De Gruyter Open Sp. z o.o. ,18036546 +Czechoslovak Journal of Physics,Springer-Verlag,00114626|15729486 +Czechoslovak Mathematical Journal,Springer-Verlag,00114642|15729141 +Czytanie Literatury Łódzkie Studia Literaturoznawcze,Uniwersytet Lodzki (University of Lodz),22997458|24498386 +C—C Bond-Forming Reactions,Thieme Publishing Group,20600380 +D-Lib Magazine,Corporation for National Research Initiatives,10829873 +Dados,SciELO,00115258|00115258 +Daedalus,MIT Press,00115266|00000000 +DAEDONG MUNHWA YEON GU,Daedong Institute for Korean Studies,12253820| +Daffodil International University Journal of Science and Technology,Bangladesh Journals Online,18185878| +Dahili ve Cerrahi Bilimler Yoğun Bakım Dergisi/Turkish Journal of Medical and Surgical Intensive Care,AVES Publishing Co.,13091689|13096222 +DAIMI Report Series,Aarhus University Library,01058517|22459316 +Daímon,Servicio de Publicaciones de la Universidad e Murcia,11300507|19894651 +Dainipponjuikaishi,Japanese Society of Veterinary Science,1883910X +Dairy Science & Technology,EDP Sciences,00237302|12979694 +Dairy Science and Technology,Springer-Verlag,19585586|19585594 +Dalhousie Journal of Interdisciplinary Management,Dalhousie Journal of Interdisciplinary Management,19236530 +Dalhousie Medical Journal,Dalhousie Libraries,14889994| +DalSpace,Dalhousie Libraries,20412096 +Dalton Transactions,The Royal Society of Chemistry,14779226|14779234 +Damar Cerrahi Dergisi,Damar Cerrahi Dergisi - Turkish Journal of Vascular Surgery,13011839| +Dams and Reservoirs,Thomas Telford Ltd.,13681494|17568404 +Dance Chronicle,Informa UK (Taylor & Francis),01472526|15324257 +Dance Education in Practice,Informa UK (Taylor & Francis),23734833|23734841 +Dance Movement & Spiritualities,Intellect,20517068|20517076 +Dance Research,Edinburgh University Press,02642875|17500095 +Dance Research Aotearoa,University of Waikato,23244593 +Dance Research Journal,Cambridge University Press,01497677|1940509X +Dancecult,Dancecult: Journal of Electronic Dance Music Culture,19475403 +Danish Journal of Archaeology,Informa UK (Taylor & Francis),21662282|21662290 +Dankook Law Riview,Institute for Legal Study,17383242| +Dante Studies,Muse - Johns Hopkins University Press,2470427X +DANUBE Law and Economics Review,De Gruyter Open Sp. z o.o. ,18048285|18048285 +Dao,Springer-Verlag,15403009|15697274 +DAPesquisa,Universidade do Estado de Santa Catarina,18083129 +Daphnis,Brill Academic Publishers,0300693X|18796583 +Dapim Studies on the Holocaust,Informa UK (Taylor & Francis),23256249|23256257 +Dar Es Salaam Medical Students Journal,African Journals Online ,08567212|08567212 +DARU Journal of Pharmaceutical Sciences,Springer (Biomed Central Ltd.),15608115| +DARU Journal of Pharmaceutical Sciences,Springer (Biomed Central Ltd.),20082231|20082231 +Darwiniana nueva serie,Instituto de Botanica Darwinion (IBODA),00116793|18501699 +Das Gesundheitswesen,Thieme Publishing Group,09413790|14394421 +Das Juristische Büro,Walter de Gruyter GmbH,09316000|23661941 +Das Mittelalter,Oldenbourg Wissenschaftsverlag,09490345|21966869 +Das Neurophysiologie-Labor,Elsevier ,14394847| +Das Rechenzentrum,Walter de Gruyter GmbH,0343317X| +Data,MDPI AG,23065729 +Data & Knowledge Engineering,Elsevier ,0169023X| +Data and Research – SDA Info,Institute of Sociology of the Academy of Sciences of the Czech Republic,18028152| +Data Curation Profiles Directory,Purdue University Press,23266651 +Data Envelopment Analysis and Decision Science,ISPACS GmbH,21954496 +Data Envelopment Analysis Journal,Now Publishers,21611815 +Data Handling in Science and Technology,Elsevier , +Data in Brief,Elsevier ,23523409| +Data Mining and Knowledge Discovery,Springer-Verlag,13845810|1573756X +Data Processing,Elsevier ,0011684X| +Data Science and Engineering,Springer-Verlag,23641185|23641541 +Data Science Journal,"""Ubiquity Press, Ltd.""",16831470 +Database,Oxford University Press,17580463 +Dataset Papers in Biology,Hindawi (Datasets International),23145307 +Dataset Papers in Biology,Hindawi (Datasets International),20909764 +Dataset Papers in Chemistry,Hindawi (Datasets International),23145315 +Dataset Papers in Ecology,Hindawi (Datasets International),20909322 +Dataset Papers in Geosciences,Hindawi (Datasets International),20909276 +Dataset Papers in Materials Science,Hindawi Publishing Corporation,20909292 +Dataset Papers in Medicine,Hindawi Publishing Corporation,23145293 +Dataset Papers in Nanotechnology,Hindawi (Datasets International),20909349 +Dataset Papers in Neuroscience,Hindawi (Datasets International),20909799 +Dataset Papers in Pharmacology,Hindawi (Datasets International),20909365 +Dataset Papers in Physics,Hindawi Publishing Corporation,23145285 +Dataset Papers in Science,Hindawi Publishing Corporation,23148497 +Datenbank-Spektrum,Springer-Verlag,16182162|16101995 +Datenschutz und Datensicherheit,Springer-Verlag,07244371| +Datenschutz und Datensicherheit - DuD,Springer-Verlag,16140702|18622607 +Day Care and Early Education,Springer-Verlag,00924199| +DC-Papers,Iniciativa Digital Politecnica,18872360| +DDI Alliance Working Papers Series,Inter-university Consortium for Political and Social Research,21538247| +De,Ankara University,1303880X +De Arquitectura,Universidad de Chile,07168772|07168772 +De Arte Revista de Historia del Arte,University of Leon,16960319|24440256 +De Economist,Springer-Verlag,0013063X|15729982 +De Ethica A Journal of Philosophical Theological and Applied Ethics,Linkoping University Electronic Press,20018819 +De Jure,Academy of Science of South Africa,14663597|22257160 +De Jure - Revista Jurídica do Ministério Público do Estado de Minas Gerais,GN1 Genesis Network,18098487| +De musica disserenda,Scientific Research Centre ZRC-SAZU,18543405| +De Ratione,Informa UK (Taylor & Francis),10108270|23763965 +De Relaciones Internacionales Estrategia y Seguridad,Universidad Militar Nueva Granada,19093063|19097743 +De Signos y Sentidos,Universidad Nacional del Litoral,1668866X|23625627 +De Verpleegkundig Specialist,Springer-Verlag,23528605|23528613 +De Zeventiende Eeuw Cultuur in de Nederlanden in interdisciplinair perspectief,Uopen Journals,0921142X|22127402 +Dead Sea Discoveries,Brill Academic Publishers,09290761|15685179 +Deafness & Education International,Maney Publishing,14643154|1557069X +Dean and Provost,Wiley Blackwell (John Wiley & Sons),15276562|19437587 +Dearq Revista de Arquitectura / Journal of Architecture,Universidad de Los Andes - Facultad de Arquitectura y Diseno,20113188|2215969X +Death Education,Informa UK (Taylor & Francis),01457624| +Death Studies,Informa UK (Taylor & Francis),07481187|10917683 +Debater a Europa,Coimbra University Press,16476336 +Debates in Neuroscience,Springer-Verlag,15598314|15598357 +Debatte Journal of Contemporary Central and Eastern Europe,Informa UK (Taylor & Francis),0965156X|14693712 +Décadrages,OpenEdition,22357823|22357823 +Déchets sciences et techniques,INIST-CNRS,09862943|22687289 +Decision,American Psychological Association,23259965|23259973 +DECISION,Springer-Verlag,03040941|21971722 +Decision Analysis,Institute for Operations Research and the Management Sciences,15458490|15458504 +Decision Analytics,Springer (Biomed Central Ltd.),21938636|21938636 +Decision Making in Manufacturing and Services,AGH University of Science and Technology Press,18968325| +Decision Science Letters,Growing Science,19295804|19295812 +Decision Sciences,Wiley Blackwell (Blackwell Publishing),00117315|15405915 +Decision Sciences Journal of Innovative Education,Wiley Blackwell (Blackwell Publishing),15404595|15404609 +Decision Support Systems,Elsevier ,01679236| +Decisions in Economics and Finance,Springer-Verlag,15938883|11296569 +Décisions Marketing,In Quarto - Editions EMS,07797389| +Decyzje,Kozminski University,17330092| +Deep Sea Research,Elsevier ,01466291| +Deep Sea Research (1953),Elsevier ,01466313| +Deep Sea Research and Oceanographic Abstracts,Elsevier ,00117471| +Deep Sea Research Part A Oceanographic Research Papers,Elsevier ,01980149| +Deep Sea Research Part B Oceanographic Literature Review,Elsevier ,01980254| +Deep Sea Research Part I Oceanographic Research Papers,Elsevier ,09670637| +Deep Sea Research Part II Topical Studies in Oceanography,Elsevier ,09670645| +Defect and Diffusion Forum,Trans Tech Publications,16629507 +Defence and Peace Economics,Informa UK (Taylor & Francis),10242694|14768267 +Defence Economics,Informa UK (Taylor & Francis),10430717| +Defence Science Journal,Defence Scientific Information and Documentation Centre,0011748X|0976464X +Defence Studies,Informa UK (Taylor & Francis),14702436|17439698 +Defence Technology,Elsevier ,22149147| +Defendologija,National and University Library of the Republic of Srpska,14506157|22330895 +Defense Analysis,Informa UK (Taylor & Francis),07430175|14703602 +Defense and Security Analysis,Informa UK (Taylor & Francis),14751798|14751801 +Defense Counsel Journal,Defence Counsel Journal,08950016| +Degenerative Neurological and Neuromuscular Disease,Dove Medical Press,11799900 +DEL NACIONAL,Instituto de Investigaciones en Ciencias de la Salud,20728174| +Dela,University of Ljubljana,03540596|18541089 +deleted title Geoinformatics Research Papers,Geophysical Center of the Russian Academy of Sciences, +Deleuze Studies,Edinburgh University Press,17502241|17551684 +Delhi Journal of Ophthalmology,EMED Publishing,09720200|24542784 +Delito y Sociedad,Universidad Nacional del Litoral,12345679|12345679 +DELTA Documentação de Estudos em Lingüística Teórica e Aplicada,SciELO,01024450|01024450 +Delta Journal of Ophthalmology,Medknow Publications,11109173| +Delta Medical College Journal,Bangladesh Journals Online,23076615|2308460X +Dementia,SAGE Publications,14713012|17412684 +Dementia & Neuropsychologia,SciELO,19805764| +Dementia and Geriatric Cognitive Disorders,S. Karger AG,14208008|14219824 +Dementia and Geriatric Cognitive Disorders Extra,S. Karger AG,16645464 +Dementia and Neurocognitive Disorders,Korean Dementia Association (KAMJE),17381495|23840757 +DEMETRA Alimentação Nutrição & Saúde,Universidade do Estado do Rio de Janeiro UERJ,2238913X +Democracy & Development Journal of West African Affairs,African Journals Online ,14650142 +Democracy & Nature,Informa UK (Taylor & Francis),10855661|14693720 +Democracy and Security,Informa UK (Taylor & Francis),17419166|15555860 +Democratic Legal Studies,Democratic Legal Studies Association,12266612| +Democratic Theory,Berghahn Books,23328894| +Democratization,Informa UK (Taylor & Francis),13510347|1743890X +DEMOCRAZIA E DIRITTO,Franco Angeli,04169565|19725590 +Demographic Research,Max Planck Institute for Demographic Research,14359871|14359871 +Demography,Springer-Verlag,00703370|15337790 +Demography and social economy,Co. Ltd. Ukrinformnauka,20729480|23092351 +Demokratie und Geschichte,Bohlau Verlag,22277633|23072881 +Demokratizatsiya The Journal of Post-Soviet Democratization,Informa UK (Heldref Publications),10746846|19404603 +Demonstratio Mathematica,De Gruyter Open Sp. z o.o. ,4201213 +Dendrobiology,Bogucki Wydawnictwo Naukowe,16411307| +Dendrochronologia,Elsevier ,11257865| +Denkbeeld,Springer-Verlag,09267182|18765653 +DENKI-SEIKO[ELECTRIC FURNACE STEEL],Electric Furnace Steel Forum,00118389|18834558 +Dental Abstracts,Elsevier ,00118486| +Dental and Medical Problems,Wroclaw Medical University,1644387X| +Dental Cadmos,Elsevier ,00118524| +Dental Clinics of North America,Elsevier ,00118532| +Dental Health Current Research,OMICS Publishing Group,24700886 +Dental Hypotheses,Medknow Publications,21558213|21558213 +Dental Materials,Elsevier ,01095641| +Dental Materials Journal,Japanese Society for Dental Materials and Devices,02874547|18811361 +Dental Medicine Research,Showa University Dental Society,18820719| +Dental News,"""Al Manhal FZ, LLC""",1026261X| +Dental Nursing,Mark Allen Group,17496799|17597404 +Dental Oral and Craniofacial Research,Open Access Text,20585314 +Dental Press Endodontics,Dental Press International,21783713|21783713 +Dental Press Implantology,Dental Press International,19802269|23582553 +Dental Press Journal of Orthodontics,SciELO,21769451|21769451 +Dental Research Journal,Medknow Publications,17353327| +Dental Traumatology,Wiley Blackwell (Blackwell Publishing),16004469|16009657 +Dentistry,OMICS Publishing Group,21611122 +Dentistry - Open Journal,Openventio Publishers,23771623 +Dentistry 3000,"""University Library System, University of Pittsburgh""",21678677 +Dentistry and Medical Research,Medknow Publications,23481471| +Dentistry Journal,MDPI AG,23046767 +Dentomaxillofacial Radiology,British Institute of Radiology,0250832X|0250832X +Departures in Critical Qualitative Research,University of California Press,23339489|23339497 +Dependence Modeling,De Gruyter Open Sp. z o.o. ,23002298 +DEPIK,"""Institute of Postgraduate Studies, Syiah Kuala University""",20897790|20897790 +Depression,Wiley Blackwell (John Wiley & Sons),10626417|15227162 +Depression and Anxiety,Wiley Blackwell (John Wiley & Sons),10914269|15206394 +Depression Research and Treatment,Hindawi Publishing Corporation,20901321|2090133X +Der Anaesthesist,Springer-Verlag,00032417|1432055X +Der Chirurg,Springer-Verlag,00094722|14330385 +Der Diabetologe,Springer-Verlag,18609716|18609724 +Der Donauraum,Bohlau Verlag,00125415|2307289X +Der Freie Zahnarzt,Springer-Verlag,03401766|21903824 +Der Gastroenterologe,Springer-Verlag,18619681|1861969X +Der Gynäkologe,Springer-Verlag,00175994|14330393 +Der Hausarzt,Springer-Verlag,14348950| +Der Hautarzt,Springer-Verlag,00178470|14321173 +Der Internist,Springer-Verlag,00209554|14321289 +Der Islam,Walter de Gruyter GmbH,00211818|16130928 +der junge zahnarzt,Springer-Verlag,18695744|18695752 +Der Kardiologe,Springer-Verlag,18649718|18649726 +Der Klinikarzt,Thieme Publishing Group,03412350|14393859 +der markt,Springer-Verlag,00253863|18678882 +Der Merkurstab,Gesellschaft Anthroposophischer Arzte in Deutschland GAAD,0935798X| +Der MKG-Chirurg,Springer-Verlag,18659659|18659667 +Der Nephrologe,Springer-Verlag,1862040X|18620418 +Der Nervenarzt,Springer-Verlag,00282804|14330407 +Der Notarzt,Thieme Publishing Group,01772309|14388693 +Der Nuklearmediziner,Thieme Publishing Group,07237065|14395800 +Der Onkologe,Springer-Verlag,09478965|14330415 +Der Ophthalmologe,Springer-Verlag,0941293X|14330423 +Der Orthopäde,Springer-Verlag,00854530|14330431 +Der Pathologe,Springer-Verlag,01728113|14321963 +Der Pneumologe,Springer-Verlag,16135636|16136055 +Der Radiologe,Springer-Verlag,0033832X|14322102 +Der Schmerz,Springer-Verlag,0932433X|14322129 +Der Staat,Duncker & Humblot GmbH,0038884X|18655203 +Der Unfallchirurg,Springer-Verlag,01775537|1433044X +Der Urologe,Springer-Verlag,03402592|14330563 +Der Urologe B,Springer-Verlag,00421111|14330571 +Der Zoologische Garten,Elsevier ,00445169| +Derecho Penal y Criminología,Universidad Externado de Colombia,01210483|23462108 +Derecho Privado y Constitución,Centro de Estudios Politicos y Constitucionales,11338768|19895542 +Derecho y Humanidades,Universidad de Chile,07169825|07192517 +Dereito revista xurídica da Universidade de Santiago de Compostela,University of Santiago de Compostela,11329947|21740690 +DeReMa (Development Research of Management) Jurnal Manajemen,Universitas Pelita Harapan,19070853|2476955X +Dergi Karadeniz,Dergi Karadeniz,13086200| +Derim,Derim,13003496|21492182 +Derivatives Use Trading & Regulation,Nature Publishing Group - Macmillan Publishers,13570927|17474426 +Dermatitis,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,17103568|17103568 +Dermato-Endocrinology,Landes Bioscience,19381972|19381980 +Dermatologia v Rossii,All-Russian National Academy of Mycology,20773544 +Dermatologic Clinics,Elsevier ,07338635| +Dermatologic Surgery,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10760512|15244725 +Dermatologic Therapy,Wiley Blackwell (Blackwell Publishing),13960296|15298019 +Dermatologica Helvetica,S. Karger AG,14202360|14244608 +Dermatologica Sinica,Elsevier ,10278117| +Dermatologie in Beruf und Umwelt,Dustri-Verlag Dr. Karl Feistle,1438776X| +Dermatology,S. Karger AG,10188665|14219832 +Dermatology and Psychosomatics / Dermatologie und Psychosomatik,S. Karger AG,14229196|14240564 +Dermatology and Therapy,Springer-Verlag,21938210|21909172 +Dermatology Aspects,Herbert Publications,20535309 +Dermatology Practical & Conceptual,Derm101.com,21609381|21609381 +Dermatology Reports,PAGEPress Publications,20367392|20367406 +Dermatology Research and Practice,Hindawi Publishing Corporation,16876105|16876113 +Dermatology Review,Termedia Sp. z.o.o.,00332526| +Dermatopathology,S. Karger AG,22963529 +Dermatopedia,Instytut Dermatologii Radoslaw Spiewak,23537027 +Dermatoz,Society of Academy of Dermatology,13094262 +Derrida Today,Edinburgh University Press,17548500|17548519 +Desafíos,Colegio Mayor de Nuestra Senora del Rosario,01244035|21455112 +Desalination,Elsevier ,00119164| +Desalination and Water Treatment,Informa UK (Taylor & Francis),19443994|19443986 +Desarrollo Económico,JSTOR,0046001X| +Desarrollo Gerencial,Universidad Simon Bolivar,21455147| +Desarrollo y Sociedad,Revista Desarrollo y Sociedad,01203584| +Desde el Jardín de Freud,Universidad Nacional de Colombia,16573986|22565477 +Desenvolve Revista de Gestão do Unilasalle,Centro Universitario La Salle - UNILASALLE,23165537 +Desenvolvimento e Meio Ambiente,Universidade Federal do Parana,1518952X|21769109 +Desenvolvimento Socioeconômico em Debate,Fundacao Educacional de Criciuma- FUCRI,24465496|24465496 +DESIDOC Bulletin of Information Technology,Defence Scientific Information and Documentation Centre,09714383| +DESIDOC Journal of Library & Information Technology,Defence Scientific Information and Documentation Centre,09740643|09764658 +Design,Informa UK (Taylor & Francis),00119253| +Design and Culture,Informa UK (Taylor & Francis),17547075|17547083 +Design Automation for Embedded Systems,Springer-Verlag,09295585|15728080 +Design Ecologies,Intellect,2043068X|20430698 +Design For Arts in Education,Informa UK (Taylor & Francis),07320973| +Design Issues,MIT Press,07479360|15314790 +Design Management Journal,Wiley Blackwell (Blackwell Publishing),19425074|19487177 +Design Management Journal (Former Series),Wiley Blackwell (Blackwell Publishing),10457194| +Design Management Review,Wiley Blackwell (Blackwell Publishing),15570614|19487169 +Design Philosophy Papers,Informa UK (Taylor & Francis),14487136|14487136 +Design Principles and Practices An International Journal—Annual Review,Common Ground Publishing,18331874| +Design Quarterly,JSTOR,00119415| +Design Science,Cambridge University Press,20534701 +Design Studies,Elsevier ,0142694X| +Designed Monomers & Polymers,Informa UK (Taylor & Francis),1385772X|15685551 +Designs Codes and Cryptography,Springer-Verlag,09251022|15737586 +Designs for Learning,Stockholm University Press,16547608 +Desymmetrization,Thieme Publishing Group,20100027 +Detection,"""Scientific Research Publishing, Inc.""",23312076|23312084 +Deuterocanonical and Cognate Literature Yearbook,Walter de Gruyter GmbH,16143361|1614337X +Deutsche Entomologische Zeitschrift,Wiley Blackwell (John Wiley & Sons),00120073| +Deutsche Entomologische Zeitschrift,Pensoft Publishers,14351951|18601324 +Deutsche Gesellschaft für Unfallchirurgie - Mitteilungen und Nachrichten,Thieme Publishing Group,14366142|14389576 +Deutsche Heilpraktiker-Zeitschrift,Thieme Publishing Group,18622267|18622275 +Deutsche Hydrographische Zeitschrift,Springer-Verlag,00120308| +Deutsche Vierteljahrsschrift für Literaturwissenschaft und Geistesgeschichte,Springer-Verlag,00120936|23659521 +Deutsche Zeitschrift für Akupunktur,Elsevier ,04156412|14394359 +Deutsche Zeitschrift für Chirurgie,Springer-Verlag,03670023| +Deutsche Zeitschrift für die Gesamte Gerichtliche Medizin,Springer-Verlag,03670031| +Deutsche Zeitschrift für Nervenheilkunde,Springer-Verlag,0367004x| +Deutsche Zeitschrift für Onkologie,Thieme Publishing Group,16175891|14390930 +Deutsche Zeitschrift für Philosophie,Oldenbourg Wissenschaftsverlag,00121045|21921482 +Deutsche Zeitschrift für Sportmedizin,Deutsche Zeitschrift Fur Sportmedizin/German Journal of Sports Medicine,03445925| +Deutsche Zeitschrift für Wirtschafts- und Insolvenzrecht,Walter de Gruyter GmbH,14391589|16127056 +Deutsches Archiv für Erforschung des Mittelalters,Bohlau Verlag,00121223|21943842 +Deutsches Dante-Jahrbuch,Walter de Gruyter GmbH,0070444X|21944059 +Deutsches und Europäisches Familienrecht,Springer-Verlag,14359499|14359502 +Deutsches Verwaltungsblatt,Walter de Gruyter GmbH,00121363|23660651 +Developing World Bioethics,Wiley Blackwell (Blackwell Publishing),14718731|14718847 +Development,Nature Publishing Group - Macmillan Publishers,10116370|14617072 +Development,The Company of Biologists,09501991|14779129 +Development & Reproduction,Korean Society of Developmental Biology,24659525|24659541 +Development and Alumni Relations Report,Wiley Blackwell (John Wiley & Sons),15235343|19456255 +Development and Applications of Oceanic Engineering,"""Science and Engineering Publishing, Co.""",23253762| +Development and Change,Wiley Blackwell (Blackwell Publishing),0012155X|14677660 +Development and Learning in Organizations,Emerald (MCB UP ),1477-7282| +Development and Psychopathology,Cambridge University Press,09545794|14692198 +Development and Reproduction,Korean Society of Developmental Biology,12266752|22877967 +Development Engineering,Elsevier ,23527285| +Development Genes and Evolution,Springer-Verlag,0949944X|1432041X +Development Growth & Differentiation,Wiley Blackwell (Blackwell Publishing),00121592|1440169X +Development in Earth Science,"""Science and Engineering Publishing, Co.""",23323930| +Development in Learning Organizations An International Journal,Emerald (MCB UP ),14777282| +Development in Practice,Informa UK (Taylor & Francis),09614524|13649213 +Development Outreach,The World Bank,1020797X| +Development Policy Review,Wiley Blackwell (Blackwell Publishing),09506764|14677679 +Development Southern Africa,Informa UK (Taylor & Francis),0376835X|14703637 +Development Studies Research,Informa UK (Taylor & Francis),21665095 +Developmental & Comparative Immunology,Elsevier ,0145305X| +Developmental Biology,Elsevier ,00121606|1095564X +Developmental Biology Journal,Hindawi Publishing Corporation,23144181|2314419X +Developmental Brain Research,Elsevier ,01653806| +Developmental Cell,Elsevier ,15345807| +Developmental Cognitive Neuroscience,Elsevier ,18789293| +Developmental Disabilities Research Reviews,Wiley Blackwell (John Wiley & Sons),19405510|19405529 +Developmental Dynamics,Wiley Blackwell (John Wiley & Sons),10588388|10970177 +Developmental Genetics,Wiley Blackwell (John Wiley & Sons),0192253X|15206408 +Developmental Immunology,Hindawi Publishing Corporation,10446672| +Developmental Medicine & Child Neurology,Wiley Blackwell (Blackwell Publishing),00121622|14698749 +Developmental Neurobiology,Wiley Blackwell (John Wiley & Sons),19328451|1932846X +Developmental Neuropsychology,Informa UK (Taylor & Francis),87565641|15326942 +Developmental Neurorehabilitation,Informa UK (Taylor & Francis),17518423|17518431 +Developmental Neuroscience,S. Karger AG,03785866|14219859 +Developmental Psychobiology,Wiley Blackwell (John Wiley & Sons),00121630|10982302 +Developmental Psychology,American Psychological Association,00121649|19390599 +Developmental Review,Elsevier ,02732297|10902406 +Developmental Science,Wiley Blackwell (Blackwell Publishing),1363755X|14677687 +Developments in Agricultural Engineering,Elsevier , +Developments in Chemical Engineering and Mineral Processing,Wiley Blackwell (John Wiley & Sons),09691855| +Developments in Environmental Modelling,Elsevier , +Developments in Geotechnical Engineering,Elsevier , +Developments in Geotectonics,Elsevier , +Developments in Integrated Environmental Assessment,Elsevier ,1574101X| +Developments in Petroleum Science,Elsevier , +Developments in Plant Genetics and Breeding,Elsevier , +Developments in Quaternary Sciences,Elsevier , +Developments in Volcanology,Elsevier ,1871644X| +Développement durable et territoires,OpenEdition,17729971|17729971 +Développements,CAIRN,21032874| +Devenir,CAIRN,10158154|22352090 +Déviance et Société,CAIRN,03787931|22964096 +Deviant Behavior,Informa UK (Taylor & Francis),01639625|15210456 +DFI Journal The Journal of the Deep Foundations Institute,Informa UK (Taylor & Francis),19375247|19375255 +Dhaka University Journal of Biological Sciences,Bangladesh Journals Online,10212787| +Dhaka University Journal of Linguistics,Bangladesh Journals Online,20753098| +Dhaka University Journal of Pharmaceutical Sciences,Bangladesh Journals Online,18161820|18161839 +Dhaka University Journal of Science,Bangladesh Journals Online,10222502|24088528 +Dhaulagiri Journal of Sociology and Anthropology,Nepal Journals Online,19942664|19942672 +Diá-logos,Latin America Journals Online,19961642| +Diabesity,"""DiscoverSys, Inc.""",23690569 +Diabetes,American Diabetes Association,00121797|00121797 +Diabetes & Metabolic Syndrome Clinical Research & Reviews,Elsevier ,18714021| +Diabetes & Metabolism,Elsevier ,12623636| +Diabetes & Metabolism Journal,Korean Diabetes Association (KAMJE),22336079|22336087 +Diabetes aktuell,Thieme Publishing Group,18616089|18641733 +Diabetes and Vascular Disease Research,SAGE Publications,14791641|17528984 +Diabetes Care,American Diabetes Association,01495992|01495992 +Diabetes Frontier Online,"""Medical Review Co., Ltd.""",21887527 +Diabetes Management,Future Medicine,17581907|17581915 +Diabetes Mellitus,Endocrinology Research Centre,20720351|20720378 +Diabetes Metabolic Syndrome and Obesity Targets and Therapy,Dove Medical Press,11787007 +Diabetes Obesity and Metabolism,Wiley Blackwell (Blackwell Publishing),14628902|14631326 +Diabetes Research - Open Journal,Openventio Publishers,23796391 +Diabetes Research and Clinical Practice,Elsevier ,01688227| +Diabetes Research and Treatment Open Access,Aperito Online Publishing Private Limited,24695688|23777206 +Diabetes Spectrum,American Diabetes Association,10409165|10409165 +Diabetes Technology & Therapeutics,Mary Ann Liebert,15209156|15209156 +Diabetes Therapy,Springer-Verlag,18696953|18696961 +Diabetes/Metabolism Research and Reviews,Wiley Blackwell (John Wiley & Sons),15207552|15207560 +Diabetes/Metabolism Reviews,Wiley Blackwell (John Wiley & Sons),07424221|10990895 +Diabetic Foot & Ankle,Co-Action Publishing,2000625X +Diabetic Medicine,Wiley Blackwell (Blackwell Publishing),07423071|14645491 +Diabetologia,Springer-Verlag,0012186X|14320428 +Diabetologia Kliniczna,VM Media Sp zo.o. - VMGroup SK,20844441|22992529 +Diabetologia Notes de lecture,Springer-Verlag,21000719|21026246 +Diabetologie und Stoffwechsel,Thieme Publishing Group,18619002|18619010 +Diabetology & Metabolic Syndrome,Springer (Biomed Central Ltd.),17585996|17585996 +Diabetology International,Springer-Verlag,21901678|21901686 +Diachronica,John Benjamins Publishing Company,01764225|00000000 +Diaconia,"""Vandenhoeck & Ruprecht GmbH & Co, KG""",21969027|21969027 +diacritics,Muse - Johns Hopkins University Press,03007162|10806539 +Diacronia,Diacronia,23931140 +Diacronie,OpenEdition,20380925 +Diagnosis,Walter de Gruyter GmbH,21948011|2194802X +Diagnostic and Interventional Imaging,Elsevier ,22115684| +Diagnostic and Interventional Radiology,AVES Publishing Co.,13053825|13053612 +Diagnostic and Therapeutic Endoscopy,Hindawi Publishing Corporation,10703608|10290516 +Diagnostic Cytopathology,Wiley Blackwell (John Wiley & Sons),87551039|10970339 +Diagnostic Histopathology,Elsevier ,17562317| +Diagnostic Innovation,Springer - Adis,15371336| +Diagnostic Microbiology and Infectious Disease,Elsevier ,07328893| +Diagnostic Molecular Pathology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10529551| +Diagnostic Pathology,Springer (Biomed Central Ltd.),17461596|17461596 +Diagnostica,Hogrefe Publishing Group,00121924|2190622X +Diagnóstico Prenatal,Elsevier ,21734127| +Diagnostics,MDPI AG,20754418 +Diagnostics in Neuropsychiatry,Elsevier ,24058017| +Diagnostics Resource and Mechanics of materials and structures,"""Institute of Engineering Science, Ural Branch RAS""",24109908 +dialectica,Wiley Blackwell (Blackwell Publishing),00122017|17468361 +Dialectical Anthropology,Springer-Verlag,03044092|15730786 +Dialectics and Humanism,Philosophy Documentation Center,03248275| +Dialectologia et Geolinguistica,Walter de Gruyter GmbH,09424040|18670903 +Dialektiké,"""Instituto Federal de Educacao, Ciencia e Tecnologia do Rio Grande do Norte (IFRN)""",23591323 +Diálisis y Trasplante,Elsevier ,18862845| +Dialog,Wiley Blackwell (Blackwell Publishing),00122033|15406385 +Dialogi Polityczne,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,17308003| +Dialogia,University Nove de Julho - Uninove,16771303|19839294 +Dialogic Pedagogy An International Online Journal,"""University Library System, University of Pittsburgh""",23253290 +Diálogo,Muse - Johns Hopkins University Press,24711039 +Diálogo,Centro Universitario La Salle - UNILASALLE,15193640|22389024 +Diálogo andino,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7192681 +Diálogos,Universidade Estadual de Maringa,14159945|21772940 +Diálogos & Ciência,Faculdade de Tecnologia e Ciencias,16780493 +Diálogos Revista Electrónica,Universidad de Costa Rica,22153292|1409469X +Dialogue,CAIRN,02428962|19618662 +Dialogue,Cambridge University Press,00122173|17590949 +Dialogue & Discourse,Dialogue and Discourse,21529620 +Dialogue and Universalism,Philosophy Documentation Center,12345792| +Dialogues d histoire ancienne,PERSEE Program,07557256|1955270X +Dialogues d histoire ancienne Supplément,PERSEE Program,21081433| +Dialogues francophones,Walter de Gruyter GmbH,12247073 +Dialogues in Human Geography,SAGE Publications,20438206|20438214 +Dialyse aktuell,Thieme Publishing Group,14340704|18603300 +Dialysis & Transplantation,Wiley Blackwell (John Wiley & Sons),00902934|15548309 +Diamond and Related Materials,Elsevier ,09259635| +Diamond Light Source Proceedings,Cambridge University Press,20448201 +Diaspora A Journal of Transnational Studies,Muse - Johns Hopkins University Press,19111568 +Diaspora Indigenous and Minority Education,Informa UK (Taylor & Francis),15595692|15595706 +Diaspora Studies,Informa UK (Taylor & Francis),09739572|09763457 +Diasporas,OpenEdition,16375823|24311472 +Diastereoselection through Chelate Intermediates,Thieme Publishing Group,20200005 +Diatom Research,Informa UK (Taylor & Francis),0269249X|21598347 +DIBt Mitteilungen,Wiley Blackwell (John Wiley & Sons),14387778|14371030 +Dicenda Cuadernos de Filología Hispánica,Universidad Complutense de Madrid,02122952|19882556 +Dickens Quarterly,Muse - Johns Hopkins University Press,21695377 +Dickens Studies Annual Essays on Victorian Fiction,"""AMS Press, Inc.""",00849812|21678510 +Dicle Medical Journal / Dicle Tip Dergisi,Dicle Medical Journal/Dicle Tip Dergisi,13002945|13089889 +Dicle Üniversitesi Ziya Gökalp Eğitim Fakültesi Dergisi,Dicle Universitesi Ziya Gokalp Egitim Fakultesi Dergisi,13050060| +Dictionaries Journal of the Dictionary Society of North America,Muse - Johns Hopkins University Press,21605076 +Didáctica de las Ciencias Experimentales y Sociales,Universitat de Valencia,02144379|22553835 +Didáctica Lengua y Literatura,Universidad Complutense de Madrid,11300531|19882548 +Didactica Mathematicae,Polish Mathematical Society,02088916|23530960 +Didácticas específicas,Servicio de Publicaciones de la Universidad Autonoma de Madrid,19895240|19895240 +Didactics of Mathematics,Wroclaw University of Economics,17337941|17337941 +Didaskalia,INIST-CNRS,12500739| +Die Angewandte Makromolekulare Chemie,Wiley Blackwell (John Wiley & Sons),00033146|15229505 +Die Hebamme,Thieme Publishing Group,09328122|14394197 +Die Kulturpflanze,Springer-Verlag,00757209| +Die Makromolekulare Chemie,Wiley Blackwell (John Wiley & Sons),0025116X|0025116X +Die Makromolekulare Chemie Rapid Communications,Wiley Blackwell (John Wiley & Sons),01732803|01732803 +Die Makromolekulare Chemie Theory and Simulations,Wiley Blackwell (John Wiley & Sons),10185054|10185054 +Die Mitteilungen,Competence Network Pediatric Oncology & Hematology,16135687| +Die Philosophin,Philosophy Documentation Center,09367586| +Die Rehabilitation,Thieme Publishing Group,00343536|14391309 +Die Unternehmung,Nomos Verlag,0042059X| +Die Unternehmung,Nomos Verlag,0042059X| +Die Unterrichtspraxis/Teaching German,Wiley Blackwell (Blackwell Publishing),0042062X| +Die Verwaltung,Duncker & Humblot GmbH,00424498|18655211 +Die Welt des Islams,Brill Academic Publishers,00432539|15700607 +Die Welt des Orients,"""Vandenhoeck & Ruprecht GmbH & Co, KG""",21969019|21969019 +Die Weltwirtschaft,Springer-Verlag,00432652|16139828 +differences,Duke University Press,10407391|15271986 +Differential Equations,Pleiades Publishing,00122661|16083083 +Differential Equations & Applications,Element d.o.o.,1847120X| +Differential Equations and Dynamical Systems,Springer-Verlag,09713514|09746870 +Differential Equations and Nonlinear Mechanics,Hindawi Publishing Corporation,16874099|16874102 +Differential Geometry and its Applications,Elsevier ,09262245| +Differentiation,Elsevier ,03014681|14320436 +Diffusion Foundations,Trans Tech Publications,22963642 +DIFI Family Research and Proceedings,Hamad bin Khalifa University Press (HBKU Press),23093927| +Digest Journal of Nanomaterials and Biostructures,Virtual Company of Physics,18423582 +Digest of Middle East Studies,Wiley Blackwell (Blackwell Publishing),10604367|19493606 +Digestion,S. Karger AG,00122823|14219867 +Digestive and Liver Disease,Elsevier ,15908658| +Digestive and Liver Disease Supplements,Elsevier ,15945804| +Digestive Diseases,S. Karger AG,02572753|14219875 +Digestive Diseases and Sciences,Springer-Verlag,01632116|15732568 +Digestive Endoscopy,Wiley Blackwell (Blackwell Publishing),09155635|14431661 +Digestive Surgery,S. Karger AG,02534886|14219983 +Digital Applications in Archaeology and Cultural Heritage,Elsevier ,22120548| +Digital Communications and Networks,Elsevier ,23528648| +Digital Creativity,Informa UK (Taylor & Francis),14626268|17443806 +Digital Culture & Society,Transcript Verlag,23642114|23642122 +Digital Evidence and Electronic Signature Law Review,School of Advanced Study,17564611|20548508 +Digital Experiences in Mathematics Education,Springer-Verlag,21993246|21993254 +Digital Health,SAGE Publications,20552076| +Digital Investigation,Elsevier ,17422876| +Digital Journal of Ophthalmology,Digital Journal of Opthamology,15428958 +Digital Journalism,Informa UK (Taylor & Francis),21670811|2167082X +Digital Medicine,Medknow Publications,22268561| +Digital Philology A Journal of Medieval Cultures,Muse - Johns Hopkins University Press,21629552 +Digital Scholarship in the Humanities,Oxford University Press,20557671|2055768X +Digital Signal Processing,Elsevier ,10512004|10954333 +Digithum,Fundacio per la Universitat Oberta de Catalunya,15752275 +Dihydroxyacetone Phosphate from Chemical Synthesis,Thieme Publishing Group,20200366 +Dijalog časopis za filozofiju i društvenu teoriju,Academy of Sciences and Arts of Bosnia anad Herzegovina,03506177| +Díkaion,Universidad de la Sabana,01208942|20275366 +Dil Dergisi,Ankara University,13003542|13003542 +Dilbilim Araştırmaları Dergisi,Journal of Linguistics Research,13008552| +DIMENSI (Journal of Architecture and Built Environment),Petra Christian University,0126219X|0126219X +Dimensi Interior,Petra Christian University,16933532|16933532 +Dimensión Empresarial,Universidad Autonoma del Caribe,16928563|2322956X +Dimensions of Critical Care Nursing,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,07304625| +Dimenziók matematikai közlemények,Dimenziok: matematikai kozlemenyek,20642172| +DINAMIKA ILMU,IAIN Samarinda,14113031|24429651 +Dini Ara,Religious Studies,1301966X|1301966X +Diogène,CAIRN,04191633|20775253 +Diogenes,SAGE Publications,03921921|14677695 +Diplomacy and Statecraft,Informa UK (Taylor & Francis),09592296|1557301X +Diplomatic History,Oxford University Press,01452096|14677709 +Dirasat Administrative Sciences,"""Al Manhal FZ, LLC""",1026373X|1026373X +Dirasat Educational Sciences,"""Al Manhal FZ, LLC""",10263713| +Dirasat Human and Social Sciences,"""Al Manhal FZ, LLC""",10263721| +Dirasat Shari a and Law Sciences,"""Al Manhal FZ, LLC""",10263748| +Direct (Three-Component) Mannich Processes,Thieme Publishing Group,20300433 +Direct Aldol Reactions,Thieme Publishing Group,20200331 +Direct Catalytic Aldol Reactions,Thieme Publishing Group,20600275 +Direct Marketing An International Journal,Emerald (MCB UP ),17505933| +Directieve therapie,Springer-Verlag,0167238X|18756824 +Direction of Trade Statistics,International Monetary Fund,20797869|20797869 +Direction of trade statistics (Electronic ed ),International Monetary Fund,10172734 +Direction of Trade Statistics (Online),International Monetary Fund,2304151X +Direction of Trade Statistics (Quarterly),International Monetary Fund,0252306X| +Direction of Trade statistics Yearbook (International Monetary Fund),International Monetary Fund,02523019| +Directions in Science,Hindawi (The Scientific World),15380033 +Direito & Justiça,EDIPUCRS,01009079|19847718 +Direito e Humanidades,USCS Universidade Municipal de Sao Caetano do Sul,1518594X| +Direito Izabela Hendrix,Instituto Metodista Izabela Hendrix,2237955X +Direito Público,Instituto Brasiliense de Direito Publico,22361766|22361766 +Dirhodium(II)-Catalyzed Carbene C—H Insertion,Thieme Publishing Group,20300352 +DIRITTO IMMIGRAZIONE E CITTADINANZA,Franco Angeli,1720433X|19724799 +Disability & Employment,"""Korea Employment Agency for the Disabled/Employ,emt Development Institute""",19764871| +Disability & Society,Informa UK (Taylor & Francis),09687599|13600508 +Disability and Health Journal,Elsevier ,19366574| +Disability and Rehabilitation,Informa UK (Taylor & Francis),09638288|14645165 +Disability and Rehabilitation Assistive Technology,Informa UK (Taylor & Francis),17483107|17483115 +Disability CBR & Inclusive Development,VU E-Publishing,22115242 +Disability Compliance for Higher Education,Wiley Blackwell (John Wiley & Sons),10861335|19438001 +Disability Handicap & Society,Informa UK (Taylor & Francis),02674645| +Disability Studies Quarterly,The Ohio State University Libraries,10415718|21598371 +Disaster and Military Medicine,Springer (Biomed Central Ltd.),2054314X|2054314X +Disaster Health,Landes Bioscience,21665044|21665052 +Disaster Management & Response,Elsevier ,15402487| +Disaster Medicine and Public Health Preparedness,Cambridge University Press,19357893|1938744X +Disaster Prevention and Management An International Journal,Emerald (MCB UP ),09653562| +Disasters,Wiley Blackwell (Blackwell Publishing),03613666|14677717 +Discours,OpenEdition,19631723|19631723 +Discourse,Wayne State University Press,15225321|15361810 +Discourse & Communication,SAGE Publications,17504813|17504821 +Discourse & Society,SAGE Publications,09579265|14603624 +Discourse 201,Korean Association of Socio-Historical Studies,15981118| +Discourse and Cognition,The Discourse and Cognitive Linguistics Society of Korea,12265691| +Discourse and Communication for Sustainable Education,De Gruyter Open Sp. z o.o. ,16916301|22557547 +Discourse and Interaction,Masaryk University Press,18029930|1805952X +Discourse Context & Media,Elsevier ,22116958| +Discourse Processes,Informa UK (Taylor & Francis),0163853X|15326950 +Discourse Studies,SAGE Publications,14614456|00000000 +Discourse Studies in the Cultural Politics of Education,Informa UK (Taylor & Francis),01596306|14693739 +Discoveries,"""Applied Systems, srl""",23597232 +Discoveries Reports,"""Applied Systems, srl""",2393249X +Discovery and Innovation,African Journals Online ,1015079X +Discovery Phytomedicine,"""DiscoverSys, Inc.""",23684798 +Discovery reports,Smithsonian Institution Biodiversity Heritage Library,00706698| +Discrete & Computational Geometry,Springer-Verlag,01795376|14320444 +Discrete Analysis,Discrete Analysis,23973129 +Discrete and Continuous Dynamical Systems,American Institute of Mathematical Sciences,10780947|15535231 +Discrete and Continuous Dynamical Systems - Series B,American Institute of Mathematical Sciences,15313492| +Discrete and Continuous Dynamical Systems - Series S,American Institute of Mathematical Sciences,19371632| +Discrete Applied Mathematics,Elsevier ,0166218X| +Discrete Dynamics in Nature and Society,Hindawi Publishing Corporation,10260226|1607887X +Discrete Event Dynamic Systems,Springer-Verlag,09246703|15737594 +Discrete Mathematics,Elsevier ,0012365X| +Discrete Mathematics Algorithms and Applications,World Scientific ,17938309|17938317 +Discrete Mathematics and Applications,Walter de Gruyter GmbH,09249265|15693929 +Discrete Optimization,Elsevier ,15725286| +Discursos Fotograficos,Universidade Estadual de Londrina,18085652|19847939 +Discussion of Clinical Cases,New Century Science Press. LLC,23758449|23758473 +Discussiones Mathematicae - General Algebra and Applications,"""Faculty of Mathematics, Computer Science and Econometrics, University of Zielona Gora""",15099415|20840373 +Discussiones Mathematicae Differential Inclusions Control and Optimization,"""Faculty of Mathematics, Computer Science and Econometrics, University of Zielona Gora""",15099407|20840365 +Discussiones Mathematicae Graph Theory,"""Faculty of Mathematics, Computer Science and Econometrics, University of Zielona Gora""",12343099|20835892 +Discussiones Mathematicae Probability and Statistics,"""Faculty of Mathematics, Computer Science and Econometrics, University of Zielona Gora""",15099423|20840381 +Discussions of the Faraday Society,The Royal Society of Chemistry,03669033| +Disease and Molecular Medicine,ScopeMed International Medical Journal Managment and Indexing System,21476748|21476748 +Disease Management,Mary Ann Liebert,1093507X| +Disease Management & Health Outcomes,Springer-Verlag,11738790| +Disease Management and Clinical Outcomes,Elsevier ,10883371|10883371 +Disease Markers,Hindawi Publishing Corporation,02780240|18758630 +Disease Models & Mechanisms,The Company of Biologists,17548403|17548411 +Disease-a-Month,Elsevier ,00115029| +Diseases,MDPI AG,20799721 +Diseases of Aquatic Organisms,Inter-Research Science Center,01775103|16161580 +Diseases of the Chest,Elsevier ,00960217| +Diseases of the Colon & Rectum,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,00123706|15300358 +Diseases of the Esophagus,Wiley Blackwell (Blackwell Publishing),11208694|14422050 +Disertaciones Anuario electrónico estudios de comunicación social,Colegio Mayor de Nuestra Senora del Rosario,18569536 +Diskurs Kindheits- und Jugendforschung,Barbara Budrich Publishers,18625002|21939713 +DISKUS,British Association for the Study of Religions (BASR),9678948 +disP - The Planning Review,Informa UK (Taylor & Francis),02513625|21668604 +Displays,Elsevier ,01419382| +Dispositiva,Pontificia Universidade Catolica de Minas Gerais,22379967 +Dispute Resolution Studies Review,Dankook Center for Dispute Resolution,1738365X| +Dispute Settlement,Hans Publishers,23793074|23793104 +Disruptive Science and Technology,Mary Ann Liebert,2163310X|21633118 +Dissent,Muse - Johns Hopkins University Press,19460910 +Dissertationes Forestales,Finnish Society of Forest Science,23239220|17957389 +Dissertationes Forestales,Finnish Society of Forest Science,17957389 +Dissertationes Mathematicae,"""Institute of Mathematics, Polish Academy of Sciences""",00123862|17306310 +Dissolution Technologies,Dissolution Technologies,1521298X| +DISTANCE AND VIRTUAL LEARNING,"""Science and Education, Ltd.""",15612449| +Distance Education,Informa UK (Taylor & Francis),01587919|00000000 +Distances et médiations des savoirs,OpenEdition,22647228|22647228 +Distances et savoirs,Lavoisier SAS,17650887| +Distinktion Scandinavian Journal of Social Theory,Informa UK (Taylor & Francis),1600910X|21599149 +Distributed and Parallel Databases,Springer-Verlag,09268782|15737578 +Distributed Computing,Springer-Verlag,01782770|14320452 +Distributed Generation & Alternative Energy Journal,Informa UK (Taylor & Francis),21563306|21566550 +Distributed Systems Engineering,IOP Publishing,09671846|13616390 +DIURETIC ACTIVITY OF KAEMPFERIA GALANGA LINN RHIZOME EXTRACT IN ALBINO RAT,World Journal of Pharmacy and Pharmaceutical Sciences,22784357 +Divan Edebiyatı Araştırmaları Dergisi,Divan Edebiyati Arastirmalari Dergisi,13086553| +Divergence Press,University of Huddersfield Press,20523467 +Divers !,Universidade Federal do Parana,19838921 +Diversitas,Universidad Santo Tomas,17949998|22563067 +Diversité urbaine,Consortium Erudit,19130694|19130708 +Diversity,MDPI AG,14242818 +Diversity and Distributions,Wiley Blackwell (Blackwell Publishing),13669516|14724642 +Diversity Oriented Synthesis,De Gruyter Open Sp. z o.o. ,20846827 +Division of Labour & Transaction Costs,World Scientific ,02198711| +Dix-huitième siècle,CAIRN,00706760|17607892 +Dix-Neuf,Informa UK (Taylor & Francis),14787318|14787318 +Dix-septième siècle,CAIRN,00124273|19696965 +Dixi,Universidad Cooperativa de Colombia - UCC,01247255|23575891 +DJ Journal of Advances in Electronics and Communication Engineering,DJ Publications,24553980 +DJ Journal of Engineering and Applied Mathematics,DJ Publications,2455362X +DJ Journal of Engineering Chemistry and Fuel,DJ Publications,24555193 +djbZ - Zeitschrift des Deutschen Juristinnenbundes,Nomos Verlag,1866377X|1866377X +DLSU Business & Economics Review,PhilJOL,01167111| +DMW - Deutsche Medizinische Wochenschrift,Thieme Publishing Group,00120472|14394413 +DNA,Mary Ann Liebert,01980238| +DNA and Cell Biology,Mary Ann Liebert,10445498|10445498 +DNA and RNA Nanotechnology,De Gruyter Open Sp. z o.o. ,23531770 +DNA Barcodes,De Gruyter Open Sp. z o.o. ,22991077 +DNA Repair,Elsevier ,15687864| +DNA Research,Oxford University Press,13402838|17561663 +DNA Sequence,Informa UK (Taylor & Francis),10425179|10425179 +DNP - Der Neurologe und Psychiater,Springer-Verlag,16162455|21966427 +Do,Ankara University,13086979 +DO - Deutsche Zeitschrift für Osteopathie,Thieme Publishing Group,16105044|16133781 +Doboku Gakkai Ronbunshu,Japan Society of Civil Engineers,02897806|18827187 +Doboku Gakkai Ronbunshuu A,Japan Society of Civil Engineers,18806023 +Doboku Gakkai Ronbunshuu B,Japan Society of Civil Engineers,18806031 +Doboku Gakkai Ronbunshuu C,Japan Society of Civil Engineers,1880604X +Doboku Gakkai Ronbunshuu D,Japan Society of Civil Engineers,18806058 +Doboku Gakkai Ronbunshuu E,Japan Society of Civil Engineers,18806066 +Doboku Gakkai Ronbunshuu F,Japan Society of Civil Engineers,18806074 +Doboku Gakkai Ronbunshuu G,Japan Society of Civil Engineers,18806082 +Dobutsu seiri,The Japanese Society for Comparative Physiology and Biochemistry,02896583|21860874 +DOC online - Revista Digital de Cinema Documentário,Universidade da Beira Interior,1646477X +DoctorConsult - The Journal Wissen für Klinik und Praxis,Elsevier ,18794122| +Document Design,John Benjamins Publishing Company,13888951|00000000 +Document numérique,Lavoisier SAS,12795127| +Documenta & Instrumenta - Documenta et Instrumenta,Universidad Complutense de Madrid,16974328|16973798 +Documenta Ophthalmologica,Springer-Verlag,00124486|15732622 +Documenta Praehistorica,University of Ljubljana,1408967X|18542492 +Documentación de las Ciencias de la Información,Universidad Complutense de Madrid,02104210|19882890 +Documentaliste-Sciences de l Information,CAIRN,00124508|17775868 +Documentation et bibliothèques,Consortium Erudit,03152340|22918949 +Documentos y Aportes,Universidad Nacional del Litoral,16664124|18513727 +Documents d Anàlisi Geogràfica,Universitat Autonoma de Barcelona,02121573|20144512 +Documents d Archéologie Méridionale,PERSEE Program,01841068| +Documents de l OCDE,Organisation for Economic Co-Operation and Development ,16095316| +Doğu Coğrafya Dergisi,Dogu Cografya Dergisi,13027956| +DoisPontos,Universidade Federal do Parana,18073883|21797412 +Dokazatel naya gastroenterologiya,Media Sphere Publishing Group,23052260| +Doklady Biochemistry and Biophysics,Pleiades Publishing,16076729|16083091 +Doklady Biological Sciences,Pleiades Publishing,00124966|16083105 +Doklady Biophysics,Springer (Kluwer Academic Publishers),00124974| +Doklady Botanical Sciences,Springer (Kluwer Academic Publishers),00124982| +Doklady Chemical Technology,Springer (Kluwer Academic Publishers),00124990| +Doklady Chemistry,Pleiades Publishing,00125008|16083113 +Doklady Earth Sciences,Pleiades Publishing,1028334X|15318354 +Doklady Mathematics,Pleiades Publishing,10645624|15318362 +Doklady Physical Chemistry,Pleiades Publishing,00125016|16083121 +Doklady Physics,Pleiades Publishing,10283358|15626903 +Dokuchaev Soil Bulletin,V.V. Dokuchaev Soil Science Institute,01361694|23124202 +Dokuz Eylül Üniversitesi Denizcilik Fakültesi Dergisi,Maritime Faculty Journal - Denizcilik Fakultesi Dergisi,13089161| +Dokuz Eylül Üniversitesi Güzel Sanatlar Fakültesi Dergisi,"""YEDI: Journal of Art, Design and Science""",13079840| +Dokuz Eylül Üniversitesi Sosyal Bilimler Enstitüsü Dergisi,Dokuz Eylul University Graduate School of Socal Sciences,13023284|13080911 +Dokuz Eylül Üniversitesi Tıp Fakültesi Dergisi,Dokuz Eylul Universitesi Tip Fakultesi Dergisi,13006622| +Domestic Animal Endocrinology,Elsevier ,07397240| +Domínios da Imagem,Universidade Estadual de Londrina,19822766|22379126 +Domínios de Lingu gem,Fundacao de Apoio Universitario,19805799|19805799 +Donald School Journal of Ultrasound in Obstetrics & Gynecology,Jaypee Brothers Medical Publishing,0973614X|09751912 +DONAM OHMUNHAK,The Donam Language and Literature ,12292117| +DONG-BANG KOREAN CHINESE LIEARATURE,Dong-Bang Korean Chines Language Society,1226668X| +Dongak Art History,Association of Dongak Art History,15981851| +Dongyang Misulsahak(Journal of Asian Art History,Association of Asian Art History,22874399| +Dos Algarves a Multidisciplinary e-journal,"""School of Management, Hospitality and Tourism, University of the Algarve""",21825580|21825580 +Dose-Response,SAGE Publications,15593258 +Dossiers Feministes,Universitat Jaume I,11391219| +Douleur et Analgésie,Springer-Verlag,1011288X|19516398 +Douleurs Evaluation - Diagnostic - Traitement,Elsevier ,16245687| +Down Syndrome Research and Practice,The Down Syndrome Educational Trust,09687912|17537606 +DOXA Cuadernos de Filosofía del Derecho,Publicaciones Universidad de Alicante,02148676| +Drama Research,The Association of Korean Drama,17389267| +Drama Therapy Review,Intellect,20547668|20547676 +Dramatherapy,Informa UK (Taylor & Francis),02630672|21571430 +Draw Science,Draw Science LLC,23809434 +Drawing Research Theory Practice,Intellect,20570384|20570392 +Dreaming,American Psychological Association,10530797|15733351 +Dress,Maney Publishing,03612112|20421729 +Drinking Water Engineering and Science,Copernicus GmbH,19969465 +Drinking Water Engineering and Science Discussions,Copernicus GmbH,19969481 +Drogomedia Monografikoak,SIIS - Centro de Documentacion y Estudios,24445797 +Drogues santé et société,Consortium Erudit,17038839|17038847 +Droit Déontologie & Soin,Elsevier ,16296583| +Droit et Médecine Bucco-Dentaire,EDP Sciences,21161321|2116133X +Droit et société,PERSEE Program,07693362| +Droits,CAIRN,07663838| +Drug and Alcohol Dependence,Elsevier ,03768716| +Drug and Alcohol Review,Wiley Blackwell (Blackwell Publishing),09595236|14653362 +Drug and Chemical Toxicology,Informa UK (Taylor & Francis),01480545|15256014 +Drug and Therapeutics Bulletin,BMJ,00126543|17555248 +Drug Data Report,Thomson Reuters (Prous Science),03794121| +Drug Delivery,Informa UK (Taylor & Francis),10717544|15210464 +Drug Delivery and Translational Research,Springer-Verlag,2190393X|21903948 +Drug Delivery Letters,Bentham Science,2210304X| +Drug Delivery Letters,Bentham Science,22103031| +Drug Delivery System,Japan Society of Drug Delivery System,09135006|18812732 +Drug Design and Discovery,Informa UK (Informa Healthcare),10559612| +Drug Design Development and Therapy,Dove Medical Press,11778881 +Drug Design Reviews - Online,Bentham Science,15672697|00000000 +Drug Designing Open Access,OMICS Publishing Group,21690138 +Drug Development and Industrial Pharmacy,Informa UK (Taylor & Francis),03639045|15205762 +Drug Development and Therapeutics,Medknow Publications,23942002| +Drug Development Communications,Informa UK (Taylor & Francis),00955183| +Drug Development Research,Wiley Blackwell (John Wiley & Sons),02724391|10982299 +Drug Discoveries & Therapeutics,International Research and Cooperation Association for Bio & Socio-Sciences Advancement,18817831|1881784X +Drug Discovery Today,Elsevier ,13596446| +Drug Discovery Today BIOSILICO,Elsevier ,17418364| +Drug Discovery Today Disease Mechanisms,Elsevier ,17406765| +Drug Discovery Today Disease Models,Elsevier ,17406757| +Drug Discovery Today TARGETS,Elsevier ,17418372| +Drug Discovery Today Technologies,Elsevier ,17406749| +Drug Discovery Today Therapeutic Strategies,Elsevier ,17406773| +Drug Healthcare and Patient Safety,Dove Medical Press,11791365 +Drug Information Journal,SAGE Publications,00928615| +Drug Intoxication & Detoxication Novel Approaches,OMICS Publishing Group,23274557 +Drug Invention Today,Elsevier ,09757619| +Drug Investigation,Springer-Verlag,01142402| +Drug Metabolism and Disposition,American Society for Pharmacology & Experimental Therapeutics,00909556|1521009X +Drug Metabolism and Drug Interactions,Walter de Gruyter GmbH,03342190|21910162 +Drug Metabolism and Personalized Therapy,Walter de Gruyter GmbH,23638907|23638915 +Drug Metabolism and Pharmacokinetics,Elsevier ,13474367|18800920 +Drug Metabolism Letters,Bentham Science,18723128| +Drug Metabolism Reviews,Informa UK (Taylor & Francis),03602532|10979883 +Drug News & Perspectives,Thomson Reuters (Prous Science),02140934| +Drug Repurposing Rescue and Repositioning,Mary Ann Liebert,23320257|23320265 +Drug Research,Thieme Publishing Group,21949379|21949387 +Drug Resistance Updates,Elsevier ,13687646| +Drug Safety,Springer-Verlag,01145916|11791942 +Drug Safety - Case Reports,Springer-Verlag,21991162|2198977X +Drug Science Policy and Law,SAGE Publications,20503245 +Drug Target Insights,"""Libertas Academica, Ltd.""",11773928 +Drug Testing and Analysis,Wiley Blackwell (John Wiley & Sons),19427603|19427611 +Drugs,Springer-Verlag,00126667|11791950 +Drugs & Aging,Springer-Verlag,1170229X|11791969 +Drugs & Society,Informa UK (Taylor & Francis),87568233| +Drugs & Therapy Perspectives,Springer-Verlag,11720360|11791977 +Drugs - Real World Outcomes,Springer-Verlag,21991154|21989788 +Drugs and Alcohol Today,Emerald (MCB UP ),17459265|20428359 +Drugs and Cell Therapies in Hematology,PAGEPress Publications,22814884|22814876 +Drugs and Therapy Studies,PAGEPress Publications,20389493|20389507 +Drugs Education Prevention and Policy,Informa UK (Taylor & Francis),09687637|14653370 +Drugs in Context,"""Just Medical Media, Ltd.""",17404398 +Drugs in R&D,Springer-Verlag,11745886|11796901 +Drugs of the Future,Thomson Reuters (Prous Science),03778282| +Drugs of Today,Thomson Reuters (Prous Science),00257656| +Drukerovskij vestnik,South Russian State Polytechnic University (NPI),23126469| +Drustvena istrazivanja,Institute of Social Sciences Ivo Pilar,13300288|18486096 +Drustveni ogledi,International Burch University,23035706|23036281 +Drvna industrija,"""Faculty of Forestry, University of Zagreb""",00126772|18471153 +Drying Technology,Informa UK (Taylor & Francis),07373937|15322300 +DS testing timestamp with 19 digits,CrossRef test user, +Du Bois Review Social Science Research on Race,Cambridge University Press,1742058X|17420598 +Dublin James Joyce Journal,Muse - Johns Hopkins University Press,20094507 +Dublin Journal of Medical Science,Springer-Verlag,0790231X|0790231X +Duke Bar Journal,JSTOR,15538729| +Duke Law Journal,JSTOR,00127086| +Duke Mathematical Journal,Duke University Press,00127094| +Dumbarton Oaks Papers,JSTOR,00707546| +Duplication - Delet this one - L’ Anné e Biologique,Elsevier , +Duquesne Studies in Phenomenological Psychology,Philosophy Documentation Center,23285311| +Durkheimian Studies,Berghahn Books,1362024X|17522307 +Dusunen Adam The Journal of Psychiatry and Neurological Sciences,Yerkure Tanitim ve Yayincilik Hizmetleri,10188681|13095749 +Dutch Crossing,Informa UK (Taylor & Francis),03096564|17597854 +Dutch Journal of Applied Linguistics,John Benjamins Publishing Company,22117245|22117253 +Dydaktyka Informatyki,University of Rzeszow,20833156| +Dyes and Pigments,Elsevier ,01437208| +DYNA,Universidad Nacional de Colombia,00127353|23462183 +DYNA ENERGIA Y SOSTENIBILIDAD,Publicaciones DYNA,22542833 +DYNA INGENIERIA E INDUSTRIA,Publicaciones DYNA,00127361|19891490 +DYNA MANAGEMENT,Publicaciones DYNA,23406585 +DYNA NEW TECHNOLOGIES,Publicaciones DYNA,23868406 +Dynamic Econometric Models,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,12343862|24507067 +Dynamic Games and Applications,Springer-Verlag,21530785|21530793 +Dynamic Medicine,Springer (Biomed Central Ltd.),14765918| +Dynamic Relationships Management Journal,The Slovenian Academy of Management,22325867|2350367X +Dynamical Systems,Informa UK (Taylor & Francis),14689367|14689375 +Dynamical Systems and Control,Hans Publishers,2325677X|23256761 +Dynamics and Control,Springer (Kluwer Academic Publishers),09254668|15738450 +Dynamics and Stability of Systems,Informa UK (Taylor & Francis),02681110|14653389 +Dynamics and Statistics of the Climate System,Oxford University Press,20596987 +Dynamics of Asymmetric Conflict,Informa UK (Taylor & Francis),17467586|17467594 +Dynamics of Atmospheres and Oceans,Elsevier ,03770265| +Dynamics of Partial Differential Equations,"""International Press of Boston, Inc.""",1548159X|21637873 +Dynamics of Public Administration,Diva Enterprises Private Limited,09753907|09760733 +Dynamis,Instituto de Salud Carlos III/BNCS/SciELO Espana,02119536|02119536 +Dyslexia,Wiley Blackwell (John Wiley & Sons),10769242|10990909 +Dysphagia,Springer-Verlag,0179051X|14320460 +D_Advances in Austrian Economics,Emerald (MCB UP ), +D_Advances in Business Marketing and Purchasing,Emerald (MCB UP ), +D_Advances in Education in Diverse Communities Research Policy and Praxis,Emerald (MCB UP ), +D_Advances in Hospitality and Leisure,Emerald (MCB UP ), +D_Advances in Mergers and Acquisitions,Emerald (MCB UP ), +D_Advances in Program Evaluation,Emerald (MCB UP ), +D_Advances in Public Interest Accounting,Emerald (MCB UP ), +D_Advances in the Study of Entrepreneurship Innovation & Economic Growth,Emerald (MCB UP ), +D_Advances in Veterinary Medicine,CrossRef test user, +D_Capturing Intelligence,CrossRef test user, +D_Comprehensive Biochemistry,CrossRef test user, +D_Contemporary Perspectives in Family Research,Elsevier , +D_Contributions to Conflict Management Peace Economics and Development,Emerald (MCB UP ), +D_Fortschritte der Hochpolymeren-Forschung,Springer-Verlag, +D_Geological Society of America Memoirs,Geological Society of America, +D_Immunotoxicology of Drugs and Chemicals an Experimental and Clinical Approach,CrossRef test user, +D_International Perspectives on Higher Education Research,Emerald (MCB UP ), +D_International Perspectives on Inclusive Education,Emerald (MCB UP ), +D_Political Power and Social Theory,Emerald (MCB UP ), +D_Progress in Psychobiology and Physiological Psychology,Emerald (MCB UP ), +D_Research in Accounting in Emerging Economies,CrossRef test user, +D_Research in Community and Mental Health,Emerald (MCB UP ), +D_Research in Finance,Emerald (MCB UP ), +D_Research in Middle East Economics,Emerald (MCB UP ), +D_Research in Multi Level Issues,Emerald (MCB UP ), +D_Research in Organizational Change and Development,Emerald (MCB UP ), +D_Research in Political Economy,Emerald (MCB UP ), +D_Research in Public Policy Analysis and Management,Emerald (MCB UP ), +D_Research in Rural Sociology and Development,Emerald (MCB UP ), +D_Research in Social Movements Conflicts and Change,Emerald (MCB UP ), +D_Research in Social Problems and Public Policy,Emerald (MCB UP ), +D_Research in Social Science and Disability,Emerald (MCB UP ), +D_Research in the History of Economic Thought and Methodology,Emerald (MCB UP ), +D_Research in the Sociology of Work,Emerald (MCB UP ), +D_Research in Urban Sociology,Emerald (MCB UP ), +D_Research Methodology in Strategy and Management,Emerald (MCB UP ), +D_Research on Managing Groups and Teams,Emerald (MCB UP ), +D_Sociological Studies of Children and Youth,Emerald (MCB UP ), +D_Studies in Law Politics and Society,Emerald (MCB UP ), +D_Syntax and Semantics,Emerald (MCB UP ), +D_Trace Metals in the Environment,CrossRef test user, +e & i Elektrotechnik und Informationstechnik,Springer-Verlag,0932383X|16137620 +e Curriculum Geriatrie,Springer-Verlag,21950660 +e Curriculum Implantologie,Springer-Verlag,21950679 +e Curriculum Innere Medizin,Springer-Verlag,21960208 +E+M Ekonomie a Management,Technical University of Liberac,12123609| +e-biomed the journal of regenerative medicine,Mary Ann Liebert,15248909|15248909 +e-cadernos CES,OpenEdition,16470737 +e-Ciencias de la Información,Universidad de Costa Rica,16594142 +E-Commerce Letters,Hans Publishers,21685843|21685851 +E-conom,E-CONOM,2063644X +e-conservation Journal,E-Conservation Journal - University of Evora,21831335 +E-Health Telecommunication Systems and Networks,"""Scientific Research Publishing, Inc.""",21679517|21679525 +e-Informatica Software Engineering Journal,De Gruyter Open Sp. z o.o. ,18977979| +e-International Journal of Educational Research,International Journal of Educational Researchers,13096265 +E-journal GEO,The Association of Japanese Geographers,18808107 +E-Journal of Applied Psychology,Swinburne University of Technology,18327931|18327931 +E-Journal of Chemistry,Hindawi Publishing Corporation,09734945|20909810 +e-Journal of New World Sciences Academy,NWSA Academic Journals,13063111 +e-Journal of Soft Materials,The Society of Rubber Industry,13497308 +e-Journal of Surface Science and Nanotechnology,The Surface Science Society of Japan,13480391 +E-Learning,SAGE Publications,17418887| +E-Learning and Digital Media,SAGE Publications,20427530|20427530 +e-Library Science Research Journal,Laxmi Book Publication,23198435 +e-Makalat Mezhep Araştırmaları Dergisi,E-Makalat Mezhep Arastirmalari Dergisi,13095803 +e-Makalat Mezhep Araştırmaları Dergisi,E-Makalat Mezhep Arastirmalari Dergisi,13095803 +e-mentor,Foundation for the Promotion and Accreditation of Economic Education,17317428|17316758 +e-Migrinter,OpenEdition,19619685|19619685 +e-Mosaicos,Universidade do Estado do Rio de Janeiro UERJ,23169303 +e-Neuroforum,Springer-Verlag,1868856X +e-Oftalmo CBO Revista Digital de Oftalmologia,Conselho Brasileiro do Oftalmologia,23593962 +e-Polymers,Walter de Gruyter GmbH,21974586|16187229 +E-rea,OpenEdition,16381718|16381718 +E-Review Rivista degli Istituti Storici dell Emilia-Romagna in Rete,BraDypUS,22824979 +e-Service Journal,Indiana University Press,15288226|15288234 +e-Spania,OpenEdition,19516169|19516169 +e-SPEN Journal,Elsevier ,22128263| +e-SPEN the European e-Journal of Clinical Nutrition and Metabolism,Elsevier ,17514991| +E-Theologos Theological revue of Greek Catholic Theological Faculty,De Gruyter Open Sp. z o.o. ,13355570|13381350 +e-xacta,Revista Exacta,19843151|19843151 +E3 Journal of Business Management and Economics,E3 Journals Ltd,21417482 +E3S Web of Conferences,EDP Sciences,22671242 +EAD em FOCO,Fundacao CECIERJ,21778310 +EAI Endorsed Transactions on Cloud Systems,"""Institute for Computer Sciences, Social Informatics and TelecommunicationsEngineering""",24106895 +EAI Endorsed Transactions on Cognitive Communications,"""Institute for Computer Sciences, Social Informatics and TelecommunicationsEngineering""",23134534 +EAI Endorsed Transactions on Collaborative Computing,"""Institute for Computer Sciences, Social Informatics and TelecommunicationsEngineering""",23128623 +EAI Endorsed Transactions on Context-aware Systems and Applications,"""Institute for Computer Sciences, Social Informatics and TelecommunicationsEngineering""",24090026 +EAI Endorsed Transactions on Creative Technologies,"""Institute for Computer Sciences, Social Informatics and TelecommunicationsEngineering""",24099708 +EAI Endorsed Transactions on Energy Web,"""Institute for Computer Sciences, Social Informatics and TelecommunicationsEngineering""",2032944X +EAI Endorsed Transactions on Future Intelligent Educational Environments,"""Institute for Computer Sciences, Social Informatics and TelecommunicationsEngineering""",24090034 +EAI Endorsed Transactions on Game-Based Learning,"""Institute for Computer Sciences, Social Informatics and TelecommunicationsEngineering""",20348800 +EAI Endorsed Transactions on Industrial Networks and Intelligent Systems,"""Institute for Computer Sciences, Social Informatics and TelecommunicationsEngineering""",24100218 +EAI Endorsed Transactions on Internet of Things,"""Institute for Computer Sciences, Social Informatics and TelecommunicationsEngineering""",24141399 +EAI Endorsed Transactions on Pervasive Health and Technology,"""Institute for Computer Sciences, Social Informatics and TelecommunicationsEngineering""",24117145 +EAI Endorsed Transactions on Self-Adaptive Systems,"""Institute for Computer Sciences, Social Informatics and TelecommunicationsEngineering""",24104051 +EAI Endorsed Transactions on Wireless Spectrum,"""Institute for Computer Sciences, Social Informatics and TelecommunicationsEngineering""",23126620 +Ear and Hearing,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,01960202| +eari educación artística revista de investigación,Universitat de Valencia,16958403|22547592 +Early American Literature,Muse - Johns Hopkins University Press,1534147X +Early American Studies An Interdisciplinary Journal,Muse - Johns Hopkins University Press,15590895 +Early Child Development and Care,Informa UK (Taylor & Francis),03004430|14768275 +EARLY CHILDHOOD EDUCATION & CARE,The Korean Society for Early Childhood Education and Care,17389739| +Early Childhood Education Journal,Springer-Verlag,10823301|15731707 +Early Childhood Folio,"""NZCER Press, New Zealand Council for Educational Research""",01120530|22532137 +Early Childhood Research Quarterly,Elsevier ,08852006| +Early China,Cambridge University Press,03625028|23252324 +Early Christianity,Mohr Siebeck,18687032|18688020 +Early Development and Parenting,Wiley Blackwell (John Wiley & Sons),10573593|10990917 +Early Education and Development,Informa UK (Taylor & Francis),10409289|15566935 +Early Human Development,Elsevier ,03783782| +Early Intervention in Psychiatry,Wiley Blackwell (Blackwell Publishing),17517885|17517893 +Early Medieval China,Maney Publishing,15299104|19467842 +Early Medieval Europe,Wiley Blackwell (Blackwell Publishing),09639462|14680254 +Early Modern French Studies,Maney Publishing,20563035|20563043 +Early Music,Oxford University Press,03061078|17417260 +Early Music History,Cambridge University Press,02611279|14740559 +Early Popular Visual Culture,Informa UK (Taylor & Francis),17460654|17460662 +Early Science and Medicine,Brill Academic Publishers,13837427|15733823 +Early Theatre,Early Theatre,12069078|12069078 +Early Years Educator,Mark Allen Group,1465931X| +Early Years Journal of International Research and Development,Informa UK (Taylor & Francis),09575146|14724421 +Earth and Environmental Science Transactions of the Royal Society of Edinburgh,Cambridge University Press,17556910|17556929 +Earth and Planetary Science Letters,Elsevier ,0012821X| +Earth and Space Science,Wiley Blackwell (John Wiley & Sons),23335084| +Earth Interactions,American Meteorological Society,10873562|10873562 +Earth Moon and Planets,Springer-Verlag,01679295|15730794 +Earth Perspectives,Springer (Biomed Central Ltd.),21946434|21946434 +Earth Planets and Space,Springer-Verlag,13438832|18805981 +Earth Resources,Sciknow Publications,23303328 +Earth s Future,Wiley Blackwell (John Wiley & Sons),23284277| +Earth Science Frontiers,Elsevier ,18725791| +Earth Science Informatics,Springer-Verlag,18650473|18650481 +Earth Science Research,Canadian Center of Science and Education,19270542|19270550 +Earth Science-Journal of China University of Geosciences,Editorial Office of Earth Science,10002383| +Earth Sciences,Science Publishing Group,23285974| +Earth Sciences History,History of the Earth Sciences Society HESS,0736623X|19446187 +Earth Sciences Research Journal,Universidad Nacional de Colombia,17946190|23393459 +Earth Surface Dynamics,Copernicus GmbH,2196632X +Earth Surface Dynamics Discussions,Copernicus GmbH,21966338 +Earth Surface Processes,Wiley Blackwell (John Wiley & Sons),03601269|19318065 +Earth Surface Processes and Landforms,Wiley Blackwell (John Wiley & Sons),01979337|10969837 +Earth System Dynamics,Copernicus GmbH,21904987 +Earth System Dynamics Discussions,Copernicus GmbH,21904995 +Earth System Science Data,Copernicus GmbH,18663516 +Earth System Science Data Discussions,Copernicus GmbH,18663591 +Earth-Science Reviews,Elsevier ,00128252| +Earthquake Engineering & Structural Dynamics,Wiley Blackwell (John Wiley & Sons),00988847|10969845 +Earthquake Engineering and Engineering Vibration,Springer-Verlag,16713664|1993503X +Earthquake Science,Springer-Verlag,16744519|18678777 +Earthquake Spectra,Earthquake Engineering Research Institute,87552930| +Earthquakes and Structures,Techno-Press,20927614| +EAS Publications Series,EDP Sciences,16334760|16381963 +East African Agricultural and Forestry Journal,African Journals Online ,128325 +East African Geographical Review,Informa UK (Taylor & Francis),00707961| +East African Journal of Peace and Human Rights,African Journals Online ,10218858 +East African Journal of Public Health,African Journals Online ,8568960 +East African Journal of Sciences,African Journals Online ,19920407 +East African Journal of Statistics,African Journals Online ,18117503 +East African Medical Journal,African Journals Online ,0012835X +East African Orthopaedic Journal,African Journals Online ,19941072|19941072 +East and Central African Journal of Pharmaceutical Sciences,African Journals Online ,1026552X +East Asia,Springer-Verlag,10966838|18746284 +East Asian Journal of Popular Culture,Intellect,20517084|20517092 +East Asian Journal on Applied Mathematics,Global Science Press,20797362|20797370 +East Asian Mathematical Journal,The Busan Gyeongnam Mathematical Society,12266973| +East Asian Policy,World Scientific ,17939305|22513175 +East Asian Publishing and Society,Brill Academic Publishers,22106278|22106286 +East Asian Science Technology and Society,Duke University Press,18752160|18752152 +East Central Europe,Brill Academic Publishers,00943037|18763308 +East European Jewish Affairs,Informa UK (Taylor & Francis),13501674|1743971X +East European Politics,Informa UK (Taylor & Francis),21599165|21599173 +East European Politics & Societies,SAGE Publications,08883254|00000000 +Eastern Africa Journal of Rural Development,African Journals Online ,3777103 +Eastern Africa Social Science Research Review,Muse - Johns Hopkins University Press,16844173 +Eastern African Literary and Cultural Studies,Informa UK (Taylor & Francis),23277408|23277416 +Eastern Christian Art,Peeters Publishers,17810930 +Eastern Economic Journal,Nature Publishing Group - Macmillan Publishers,00945056|19394632 +Eastern European Countryside,De Gruyter Open Sp. z o.o. ,12328855|23008717 +Eastern European Economics,Informa UK (Taylor & Francis),00128775|15579298 +Eastern Librarian,Bangladesh Journals Online,10213651| +Eastern-European Journal of Enterprise Technologies,Private Company Technology Center,17293774|17294061 +Eating and Weight Disorders - Studies on Anorexia Bulimia and Obesity,Springer-Verlag,11244909|15901262 +Eating Behaviors,Elsevier ,14710153| +Eating Disorders,Informa UK (Taylor & Francis),10640266|1532530X +EAU Update Series,Elsevier ,15709124| +EAU-EBU Update Series,Elsevier ,18712592| +EBioMedicine,Elsevier ,23523964| +Ebisu,PERSEE Program,13403656|21891893 +Ebonyi Medical Journal,African Journals Online ,15971260 +EC Tax Review,Springer (Kluwer Academic Publishers),09282750| +ecancermedicalscience,Cancer Intelligence,17546605|17546605 +Ecclesia Studia z Dziejów Wielkopolski,Adam Mickiewicz University Poznan,17310679| +Ecclesial Practices,Brill Academic Publishers,22144463|22144471 +Ecclesiastical Law Journal,Cambridge University Press,0956618X|17518539 +Ecclesiology,Brill Academic Publishers,17441366|17455316 +EccoS – Revista Científica,University Nove de Julho - Uninove,15171949|19839278 +Echo Research and Practice,Bioscientifica,20550456|20550464 +Echocardiography,Wiley Blackwell (Blackwell Publishing),07422822|15408175 +EchoGéo,OpenEdition,19631197|19631197 +Échos d Orient,PERSEE Program,11469447| +Eckhart Review,Maney Publishing,09693661| +Eclética Química,SciELO,01004670|01004670 +Eclogae Geologicae Helvetiae,Springer-Verlag,00129402|14209128 +eco mont (Journal on Protected Mountain Areas Research),Verlag der Osterreichischen Akademie der Wissenschaften,2073106X|20731558 +Eco-Management and Auditing,Wiley Blackwell (John Wiley & Sons),09689427|10990925 +Ecocycles,Ecocycles,24162140 +Ecography,Wiley Blackwell (Blackwell Publishing),09067590|16000587 +EcoHealth,Springer-Verlag,16129202|16129210 +Ecohydrology,Wiley Blackwell (John Wiley & Sons),19360584|19360592 +Ecohydrology & Hydrobiology,Elsevier ,16423593|20803397 +École pratique des hautes études 4e section Sciences historiques et philologiques,PERSEE Program,02459000| +École pratique des hautes études 4e section sciences historiques et philologiques Livret,PERSEE Program,07660677| +École pratique des hautes études 5e section Sciences religieuses,PERSEE Program,01837435| +École pratique des hautes études Section des sciences historiques et philologiques,PERSEE Program,05559189| +École pratique des hautes études Section des sciences historiques et philologiques Livret-Annuaire,PERSEE Program,02920980| +École pratique des hautes études Section des sciences religieuses,PERSEE Program,12679240| +École thématique de la Société Française de la Neutronique,EDP Sciences,21077223|21077231 +Ecologia,Science Alert,19964021| +Ecological Applications,Wiley Blackwell (John Wiley & Sons),10510761| +Ecological Chemistry and Engineering S,De Gruyter Open Sp. z o.o. ,18986196|18986196 +Ecological Complexity,Elsevier ,1476945X| +Ecological Economics,Elsevier ,09218009| +Ecological Engineering,Elsevier ,09258574| +Ecological Entomology,Wiley Blackwell (Blackwell Publishing),03076946|13652311 +Ecological Genetics and Genomics,Elsevier ,24059854| +Ecological Indicators,Elsevier ,1470160X| +Ecological Informatics,Elsevier ,15749541| +Ecological Management & Restoration,Wiley Blackwell (Blackwell Publishing),14427001|14428903 +Ecological Modelling,Elsevier ,03043800| +Ecological Monographs,Wiley Blackwell (John Wiley & Sons),00129615| +Ecological Parasitology and Immunology,Ashdin Publishing,20908245|20908253 +Ecological Processes,Springer (Biomed Central Ltd.),21921709|21921709 +Ecological Psychology,Informa UK (Taylor & Francis),10407413|15326969 +Ecological Questions,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,16447298| +Ecological Research,Springer-Verlag,09123814|14401703 +Ecological Restoration,University of Wisconsin Press,15434060|15434079 +Ecologie & politique,CAIRN,11663030|21183147 +Ecology,Wiley Blackwell (John Wiley & Sons),00129658| +Ecology and Civil Engineering,Ecology and Civil Engineering Society,13443755|18825974 +Ecology and Evolution,Wiley Blackwell (John Wiley & Sons),20457758| +Ecology and Industry of Russia,Kalvis,18160395|24136042 +Ecology and Noospherology,Oles Honchar Dnipropetrovsk National University,17261112|23104309 +Ecology and Resilient Infrastructure,Korean Society of Ecology and Infrastructure Engineering,22888527| +Ecology and Society,"""Resilience Alliance, Inc.""",17083087| +Ecology Letters,Wiley Blackwell (Blackwell Publishing),1461023X|14610248 +Ecology of Food and Nutrition,Informa UK (Taylor & Francis),03670244|15435237 +Ecology Of Freshwater Fish,Wiley Blackwell (Blackwell Publishing),09066691|16000633 +Econometric Reviews,Informa UK (Taylor & Francis),07474938|15324168 +Econometric Theory,Cambridge University Press,02664666|14694360 +Econometrica,The Econometric Society,00129682|14680262 +Econometrics,MDPI AG,22251146 +Econometrics Journal,Wiley Blackwell (Blackwell Publishing),13684221|1368423X +Economía,Muse - Johns Hopkins University Press,15336239 +Economia,Muse - Johns Hopkins University Press,15336239 +EconomiA,Elsevier ,15177580| +Economia & Pesquisa,Fundacao Educacional Aracatuba,15167666|21796009 +Economia & Região,Universidade Estadual de Londrina,2317627X +Economia agraria y recursos naturales,Asociacion Espanola de Economia Agraria,15780732|21747350 +ECONOMIA AGRO-ALIMENTARE,Franco Angeli,11261668|19724802 +Economia Aplicada,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,14138050|14138050 +Economia e Desenvolvimento,Universidade Federal de Santa Maria,14146509 +ECONOMIA E DIRITTO DEL TERZIARIO,Franco Angeli,15939464|19725256 +Economia e Politica Industriale,Springer-Verlag,03912078|19724977 +Economia e Sociedade,SciELO,01040618|01040618 +ECONOMIA E SOCIETÀ REGIONALE,Franco Angeli,18272479|20386745 +Economía Informa,Elsevier ,01850849| +Economia Politica,Springer-Verlag,11202890|1973820X +ECONOMIA PUBBLICA,Franco Angeli,03906140|19725566 +Economía UNAM,Elsevier ,1665952X| +Economía y Administración (E&A),Latin America Journals Online,22196722|22222707 +Economía y Sociedad,Universidad Nacional de Costa Rica,14091070|22153403 +Economic & Labour Market Review,Nature Publishing Group - Macmillan Publishers,17518326|17518334 +Economic Affairs,Wiley Blackwell (Blackwell Publishing),02650665|14680270 +Economic Affairs,Diva Enterprises Private Limited,04242513|09764666 +Economic Analysis,Informa UK (Taylor & Francis),13668099|14693747 +Economic Analysis and Policy,Elsevier ,03135926| +Economic Analysis of Law Review,Economic Analysis of Law Review,21780587 +Economic and Environmental Geology,The Korean Society of Economic and Environmental Geology,12257281| +Economic and Industrial Democracy,SAGE Publications,0143831X|00000000 +Economic Annals,National Library of Serbia,00133264|18207375 +Economic Anthropology,Wiley Blackwell (John Wiley & Sons),23304847| +Economic Botany,Springer-Verlag,00130001|18749364 +Economic Bulletin,Springer-Verlag,0343754X|1438261X +Economic Change and Restructuring,Springer-Verlag,15739414|15740277 +Economic Design,Springer-Verlag,09285040| +Economic Development and Cultural Change,The University of Chicago Press,00130079|15392988 +Economic Development Quarterly,SAGE Publications,08912424|15523543 +Economic Geography,Informa UK (Taylor & Francis),00130095|19448287 +Economic Geology,GeoScienceWorld,03610128|15540774 +Economic History of Developing Regions,Informa UK (Taylor & Francis),20780389|20780397 +Economic Inquiry,Wiley Blackwell (Blackwell Publishing),00952583|14657295 +Economic Issues,International Monetary Fund,16079485 +Economic Issues,International Monetary Fund,15645177 +Economic Issues,International Monetary Fund,10208399| +Economic Issues,International Monetary Fund,10208402| +Economic Issues,International Monetary Fund,10208372| +Economic Issues,International Monetary Fund,10208380| +Economic Issues,International Monetary Fund,10207724| +Economic Issues,International Monetary Fund,10205098| +Economic Journal of Development Issues,Nepal Journals Online,2091055X|20912285 +Economic Journal of Emerging Markets,Universitas Islam Indonesia (Islamic University of Indonesia),20863128|2502180X +Economic Journal of Nepal,Nepal Journals Online, +Economic Modelling,Elsevier ,02649993| +Economic Notes,Wiley Blackwell (Blackwell Publishing),03915026|14680300 +Economic Outlook,Wiley Blackwell (Blackwell Publishing),0140489X|14680319 +Economic Papers A journal of applied economics and policy,Wiley Blackwell (Blackwell Publishing),08120439|17593441 +Economic Policy,Oxford University Press,02664658|14680327 +Economic Policy (in Russian),Economic Policy,19945124| +Economic Quality Control,Walter de Gruyter GmbH,09405151|18696147 +Economic Record,Wiley Blackwell (Blackwell Publishing),00130249|14754932 +Economic Research-Ekonomska Istraživanja,Informa UK (Taylor & Francis),1331677X|18489664 +Economic Studies,Vietnam Journals Online, +Economic Systems,Elsevier ,09393625| +Economic Systems Research,Informa UK (Taylor & Francis),09535314|14695758 +Economic Themes,Walter de Gruyter GmbH,22173668 +Economic Theory,Springer-Verlag,09382259|14320479 +Economic Theory Bulletin,Springer-Verlag,21961085|21961093 +Economica,Wiley Blackwell (Blackwell Publishing),00130427|14680335 +Económicas CUC,Corporacion Universidad de la Costa - CUC,01203932|23823860 +Economics,Infra-M Academic Publishing House,23082844| +ECONOMICS,Walter de Gruyter GmbH,23035013 +Economics & Finance Research,Informa UK (Taylor & Francis),21649480|21649499 +Economics & Human Biology,Elsevier ,1570677X| +Economics & Sociology,"""Centre of Sociological Research, NGO""",2071789X|23063459 +Economics and Business,De Gruyter Open Sp. z o.o. ,14077337|22558756 +Economics and Business Letters,Universidad de Oviedo,22544380 +Economics and Business Review,Poznan University of Economics,23921641|24500097 +ECONOMICS AND MANAGEMENT,Publishing House Technologija,18226515| +Economics and Organization of Enterprise,De Gruyter Open Sp. z o.o. ,08606846| +Economics and Philosophy,Cambridge University Press,02662671|14740028 +ECONOMICS AND POLICY OF ENERGY AND THE ENVIRONMENT,Franco Angeli,22807659|22807667 +Economics and Politics,Wiley Blackwell (Blackwell Publishing),09541985|14680343 +Economics and Rural Development,Aleksandras Stulginskis University,18223346|23450347 +Economics Letters,Elsevier ,01651765| +Economics of Education Review,Elsevier ,02727757| +Economics of Energy and Environmental Policy,International Association for Energy Economics,21605882|21605890 +Economics of Governance,Springer-Verlag,14356104|14358131 +Economics of Innovation and New Technology,Informa UK (Taylor & Francis),10438599|14768364 +Economics of Planning,Springer-Verlag,00130451|15730808 +Economics of The Firm,Infra-M Academic Publishing House,2306627X| +Economics of Transition,Wiley Blackwell (Blackwell Publishing),09670750|14680351 +Economics of Transportation,Elsevier ,22120122| +Economics Research International,Hindawi Publishing Corporation,20902123|20902131 +Economics The Open-Access Open-Assessment E-Journal,ZBW - German National Library of Economics,18646042 +Economics World,David Publishing Company,23287144|23287144 +Économie & prévision,PERSEE Program,02494744|17775795 +Économie et Solidarités,Consortium Erudit,19230818 +Economie et statistique,PERSEE Program,03361454|17775574 +Économie rurale,PERSEE Program,00130559|21052581 +Economies,MDPI AG,22277099 +Economy,Asian Educational Journal Publishing Group,23138181 +Economy and History,Informa UK (Taylor & Francis),00708852| +Economy and Society,Korean Critical Sociological Association,12271373| +Economy and Society,Informa UK (Taylor & Francis),03085147|14695766 +Economy Business Computer science,LLC Publishing House Internauka,25002074 +Economy in the industry,National University of Science and Technology MISiS,20721633| +Economy of region,Institute of Economics of the Ural Branch of the RAS,20726414| +EconoQuantum,EconoQuantum,18706622|20079869 +Ecoprint An International Journal of Ecology,Nepal Journals Online,10248668| +Ecopsychology,Mary Ann Liebert,19429347|19429347 +ECOS,CSIRO Publishing,03114546| +Ecos de Economía,Universidad EAFIT,16574206|24628107 +EcoSal Plus,American Society for Microbiology,23246200 +EcoSal Plus,American Society for Microbiology,23246200 +Ecoscience,BioOne (Ecoscience),11956860| +Ecosistemas,Asociacion Espanola de Ecologia Terrestre,16972473 +Ecosphere,Wiley Blackwell (John Wiley & Sons),21508925| +Ecosystem Health,Wiley Blackwell (Blackwell Publishing),10762825|15260992 +Ecosystem Health and Sustainability,Wiley Blackwell (John Wiley & Sons),23328878| +Ecosystem Services,Elsevier ,22120416| +Ecosystems,Springer-Verlag,14329840|14350629 +Ecotheology,Equinox Publishing,13637320|17431689 +Ecotone,Muse - Johns Hopkins University Press,21652651 +Ecotoxicology,Springer-Verlag,09639292|15733017 +Ecotoxicology and Environmental contamination,Ecototoxicology and Environmental Contamination,23179643|23179643 +Ecotoxicology and Environmental Safety,Elsevier ,01476513|10902414 +ECPS - Educational Cultural and Psychological Studies,Led Edizioni Universitarie,20377932|20377924 +Ecquid Novi African Journalism Studies,University of Wisconsin Press,02560054|19420773 +Écrire l histoire,OpenEdition,19677499| +ECS Electrochemistry Letters,The Electrochemical Society,21628726|21628734 +ECS Journal of Solid State Science and Technology,The Electrochemical Society,21628769|21628777 +ECS Solid State Letters,The Electrochemical Society,21628742|21628750 +ECS Transactions,The Electrochemical Society,19386737|19385862 +Ecumene,SAGE Publications,09674608|00000000 +Edad de Oro,Servicio de Publicaciones de la Universidad Autonoma de Madrid,02120429| +Edda,Scandinavian University Press / Universitetsforlaget AS,00130818|15001989 +Edebiyat,Informa UK (Taylor & Francis),03646505| +Edentata,BioOne (Edentata),14134411| +Edinburgh Journal of Botany,Cambridge University Press,09604286|14740036 +Edinburgh Law Review,Edinburgh University Press,13649809|17551692 +Edinburgh Mathematical Notes,Cambridge University Press,09501843| +editio - International Yearbooks for Scholarly Editing / Internationales Jahrbuch für Editionswissenschaft,Walter de Gruyter GmbH,09313079|18659446 +Editor-in-Chief s Voice List of Authors is an Important Element in a Scientific Publication,Polish Urological Association,20804806 +Editorial Office News,International Society for Managing and Technical Editors,23777087|23777087 +Editors Bulletin,Informa UK (Taylor & Francis),17521742 +Edo Journal of Counselling,African Journals Online ,20067593|20067593 +EDPACS,Informa UK (Taylor & Francis),07366981|19361009 +EDTNA-ERCA Journal,Wiley Blackwell (Blackwell Publishing),1019083X| +Educação,EDIPUCRS,19812582|0101465X +Educação & Linguagem,Instituto Metodista de Ensino Superior,21761043 +Educação & Realidade,SciELO,21756236 +Educação & Sociedade,SciELO,01017330|01017330 +Educação (UFSM),Universidade Federal de Santa Maria,01019031|19846444 +Educação Ciência e Cultura,Centro Universitario La Salle - UNILASALLE,14137321|22366377 +Educação Ciência e Saúde,Biblioteca do Centro de Educacao e Saude (CES) ,23587504 +EDUCAÇÃO E FILOSOFIA,Fundacao de Apoio Universitario,01026801|1982596X +Educação e Pesquisa,SciELO,15179702|15179702 +Educação em Análise,Universidade Estadual de Londrina,24480320 +Educação em Revista,SciELO,01024698|19826621 +Educação Por Escrito,EDIPUCRS,21798435 +Educação Unisinos,Universidade do Vale do Rio Dos Sinos - UNISINOS,1519387X|21776210 +Educación Médica,Elsevier ,15751813|15751813 +Educación Química,Elsevier ,0187893X| +Educación XX1,UNED - Universidad Nacional de Educacion a Distancia,1139613X|21745374 +Educación y Educadores,Universidad de la Sabana,01231294|20275358 +Educación y Humanismo,Universidad Simon Bolivar,01242121| +Educar,Universitat Autonoma de Barcelona,0211819X|20148801 +Educar em Revista,SciELO,1044060 +Educar em Revista,SciELO,01044060|01044060 +Educatio Siglo XXI,Servicio de Publicaciones de la Universidad e Murcia,16992105|1989466X +Education,Scientific and Academic Publishing,21629463| +Education (Basel),MDPI AG,20763344 +Education + Training,Emerald (MCB UP ),00400912|00000000 +Education 3-13,Informa UK (Taylor & Francis),03004279|14757575 +Education and Computing,Elsevier ,01679287| +Education and Culture,Purdue University Press,10854908|15591786 +Education and Information Technologies,Springer-Verlag,13602357|15737608 +Education and Linguistics Research,"""Macrothink Institute, Inc.""",23771356 +Education and Pedagogical Sciences,State Institution Luhansk Taras Shevchenko National University,22272747|2227281X +Education and Society,James Nicholas Publishers,07262655| +Education and the Law,Informa UK (Taylor & Francis),09539964|14695774 +Education and Treatment of Children,Muse - Johns Hopkins University Press,19348924 +Education and Urban Society,SAGE Publications,00131245|00000000 +Education as Change,Informa UK (Taylor & Francis),16823206|19479417 +Education Business and Society Contemporary Middle Eastern Issues,Emerald (MCB UP ),17537983| +Education Citizenship and Social Justice,SAGE Publications,17461979|17461987 +Education Communication and Information,Informa UK (Taylor & Francis),1463631X|14706725 +Education Economics,Informa UK (Taylor & Francis),09645292|14695782 +Éducation et didactique,OpenEdition,21114838|21114838 +Éducation et francophonie,Consortium Erudit,08491089|19168659 +Éducation et socialisation,OpenEdition,09923705|22716092 +Education et sociétés,CAIRN,1373847X|17821428 +Education Finance and Policy,MIT Press,15573060|15573079 +Education for Chemical Engineers,Elsevier ,17497728|17497728 +Education for Health,Medknow Publications,13576283|14695804 +Education for Information,IOS Press,01678329|01678329 +Education for Primary Care,Informa UK (Taylor & Francis),14739879|1475990X +Education in a Changing Society,Klaipeda University Press,18222196|23516550 +Education in Medicine Journal,KKMed Publications,21801932 +Education in the Knowledge Society (EKS),Ediciones Universidad de Salamanca,11389737 +Education Inquiry,Co-Action Publishing,20004508 +Education Journal,Science Publishing Group,23272600| +Education Knowledge and Economy,Informa UK (Taylor & Francis),17496896|1749690X +Education of Primary School Mathematics,Korea Society of Mathematical Education,12266914| +Education Policy Analysis Archives,Education Policy Analysis Archives,10682341 +Education Practice and Innovation,"""Scientific Online Publishing, Co., Ltd.""",23723092|23723106 +Education Reform in Comprehensive School Education Content Research and Implementation Problems,Rezeknes Augstskola,16915895|22560823 +Education Research International,Hindawi Publishing Corporation,20904002|20904010 +Education Review // Reseñas Educativas,Education Policy Analysis Archives,10945296 +Education Sciences,MDPI AG,22277102 +Education thérapeutique du patient - Therapeutic patient education,EDP Sciences,21000808|21000816 +Educational Action Research,Informa UK (Taylor & Francis),09650792|17475074 +Educational Administration Quarterly,SAGE Publications,0013161X|15523519 +Educational Administration Theory and Practice journal,Pegem Akademi Yayincilik Egitim Danismanlik Hizmetleri,13004832|21482403 +Educational and Psychological Measurement,SAGE Publications,00131644|00000000 +Educational Assessment,Informa UK (Taylor & Francis),10627197|15326977 +Educational Assessment Evaluation and Accountability,Springer-Verlag,18748597|18748600 +Educational Evaluation and Policy Analysis,American Educational Research Association,01623737|19351062 +Educational Gerontology,Informa UK (Taylor & Francis),03601277|15210472 +Educational Horizons,SAGE Publications,0013175X|21623163 +Educational Management & Administration,SAGE Publications,0263211X|00000000 +Educational Management Administration & Leadership,SAGE Publications,17411432|00000000 +Educational Measurement Issues and Practice,Wiley Blackwell (Blackwell Publishing),07311745|17453992 +Educational Media International,Informa UK (Taylor & Francis),09523987|14695790 +Educational Neuroscience,SAGE Publications,23776161 +Educational Philosophy and Theory,Informa UK (Taylor & Francis),00131857|14695812 +Educational Policy,SAGE Publications,08959048|00000000 +Educational Practice and Theory,James Nicholas Publishers,1323577X| +EDUCATIONAL PROCESS INTERNATIONAL JOURNAL,Eurasian Society of Educational Research,21470901| +Educational Psychologist,Informa UK (Taylor & Francis),00461520|15326985 +Educational Psychology,Index Copernicus International,00332860| +Educational Psychology,Informa UK (Taylor & Francis),01443410|14695820 +Educational Psychology in Practice,Informa UK (Taylor & Francis),02667363|14695839 +Educational Psychology Review,Springer-Verlag,1040726X|1573336X +Educational Quest- An International Journal of Education and Applied Social Sciences,Diva Enterprises Private Limited,09767258|22307311 +EDUCATIONAL REFLECTIVE PRACTICES,Franco Angeli,22407758|22799605 +Educational Research,Informa UK (Taylor & Francis),00131881|14695847 +Educational Research and Evaluation,Informa UK (Taylor & Francis),13803611|17444187 +Educational Research and Reviews,Academic Journals,19903839 +Educational Research eJournal,Educational Research e-Journal,22540385 +Educational Research for Policy and Practice,Springer-Verlag,15702081|15731723 +Educational Research Journal,International Research Journals,21415161 +Educational Research Review,Elsevier ,1747938X| +Educational Researcher,American Educational Research Association,0013189X|1935102X +Educational Review,Informa UK (Taylor & Francis),00131911|14653397 +Educational Sciences Theory & Practice,Egitim Danismanligi ve Arastirmalari Merkezi - EDAM,13030485|21487561 +Educational Studies,Informa UK (Taylor & Francis),00131946|15326993 +Educational Studies,Informa UK (Taylor & Francis),03055698|14653400 +Educational Studies in Japan,Japanese Educational Research Association,18814832|21875286 +Educational Studies in Mathematics,Springer-Verlag,00131954|15730816 +Educational Technology & Society,Ankara University,11763647 +Educational Technology Research and Development,Springer-Verlag,10421629|15566501 +Educational Theatre Journal,JSTOR,00131989| +Educational Theory,Wiley Blackwell (Blackwell Publishing),00132004|17415446 +Educationis,Escola Superior de Sustentabilidade,23183047 +Educativa,Pontifica Universidade Catolica de Goias -PUC Goias,14150492|19837771 +EDUCAZIONE SENTIMENTALE,Franco Angeli,20377355|20377649 +Edukacyjna Analiza Transakcyjna,Akademia im. Jana Dlugosza w Czestochowie,22997466| +EDUSAINS,E-Journal System Portal of Syarif Hidayatullah State Islamic University,19797281|24431281 +Eduvantage,Om Vindhyavasini College of IT and Management,23199628|23199954 +eEarth,Copernicus GmbH,18153828 +eEarth Discussions,Copernicus GmbH,18153844 +Eesti Haridusteaduste Ajakiri = Estonian Journal of Education,University of Tartu Press,2346562X +Eesti ja soome-ugri keeleteaduse ajakiri Journal of Estonian and Finno-Ugric Linguistics,University of Tartu Press,17368987|22281339 +Eesti Rakenduslingvistika Ühingu aastaraamat Estonian Papers in Applied Linguistics,Estonian Association for Applied Linguistics,17362563|22280677 +Effective crisis management,Real Economy Publishing,20788886| +Effective Education,Informa UK (Taylor & Francis),19415532|19415540 +Efficacy and Mechanism Evaluation,National Institute for Health Research,20504365|20504373 +EFORT Open Reviews,British Editorial Society of Bone and Joint Surgery,23967544|20585241 +EFSA Journal,Wiley Blackwell (John Wiley & Sons),18314732| +EGA Revista de expresión gráfica arquitectónica,Universitat Politecnica de Valencia,11336137|22546103 +Ege Akademik Bakis (Ege Academic Review),Ege Akademik Bakis (Ege Academic Review),1303099X| +Ege Eğitim Dergisi,Ege Egitim Dergisi,13074474| +Ege Journal of Fisheries and Aquatic Sciences,Ege University Faculty of Fisheries,13001590|21474303 +Ege Stratejik Araştırmalar Dergisi,Ege Strategic Research Journal,1309887X|21490465 +Ege Tıp Dergisi,Ege Journal of Medicine,10169113|21476500 +Ege Universitesi Turk Dunyasi Incelemeleri Dergisi,Ege Universitesi Turk Dunyasi Incelemeleri Dergisi,13012045| +Ege Üniversitesi Ziraat Fakültesi Dergisi,The Journal of Ege University Faculty of Agriculture,10188851| +eGEMs (Generating Evidence & Methods to improve patient outcomes),Academy Health,23279214 +Eğitim Bilimleri Dergisi,Egitim Bilimleri Dergisi,13008889|21475202 +Eğitim Teknolojisi Kuram ve Uygulama,Education Technology Theory and Practice,21471908| +Eğitimde Kuram ve Uygulama,Egitimde Kuram ve Uygulama,13049496|13049496 +Eğitimde ve Psikolojide Ölçme ve Değerlendirme Dergisi,Egitimde ve Psikolojide Olcme ve Degerlendirme Dergisi,13096575|13096575 +Egyptian Informatics Journal,Elsevier ,11108665| +Egyptian Journal of Anaesthesia,Elsevier ,11101849| +Egyptian Journal of Aquatic Biology and Fisheries,"""Al Manhal FZ, LLC""",11106131| +Egyptian Journal of Basic and Applied Sciences,Elsevier ,2314808X| +Egyptian Journal of Biochemistry and Molecular Biology,African Journals Online ,16871502 +Egyptian Journal of Biology,African Journals Online ,11106859 +Egyptian Journal of Biomedical Sciences,African Journals Online ,11106379 +Egyptian Journal of Biotechnology,African Journals Online ,11106093 +Egyptian Journal of Bronchology,Medknow Publications,16878426| +Egyptian Journal of Chest Diseases and Tuberculosis,Elsevier ,04227638| +Egyptian Journal of Dermatology and Venerology,Medknow Publications,11106530| +Egyptian Journal of Ear Nose Throat and Allied Sciences,Elsevier ,20900740| +Egyptian Journal of Forensic Sciences,Elsevier ,2090536X| +Egyptian Journal of Medical Human Genetics,Elsevier ,11108630| +Egyptian Journal of Medical Laboratory Sciences,African Journals Online ,11105593 +Egyptian Journal of Natural History,African Journals Online ,11106867 +Egyptian Journal of Obesity Diabetes and Endocrinology,Medknow Publications,23568062| +Egyptian Journal of Oral & Maxillofacial Surgery,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,2090097X| +Egyptian Journal of Pathology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,16874277| +Egyptian Journal of Petroleum,Elsevier ,11100621| +Egyptian Journal of Plant Breeding,"""Al Manhal FZ, LLC""",11107863| +Egyptian Journal of Psychiatry,Medknow Publications,11101105|20902425 +Egyptian Journal of Sheep and Goat Sciences,"""Al Manhal FZ, LLC""",20900368| +Egyptian Journal Of Zoology,"""Al Manhal FZ, LLC""",11106344| +Egyptian Liver Journal,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,20906218| +Egyptian Pediatric Association Gazette,Elsevier ,11106638| +Egyptian Pharmaceutical Journal,Medknow Publications,16874315| +Egyptian Retina Journal,Medknow Publications,23475617| +Egyptian Rheumatology and Rehabilitation,Medknow Publications,1110161X| +eHealth International,Springer (Biomed Central Ltd.),14763591| +Ehquidad Revista Internacional de Políticas de Bienestar y Trabajo Social,International Social Sciences and Social Work Association AICTS,23864915 +EIDON,Fundacion de Ciencias de al Salud,21748292|21748292 +Eidos,Universidad del Norte,20117477 +Eighteenth Century Music,Cambridge University Press,14785706|14785714 +Eighteenth-Century Fiction,University of Toronto Press Inc,08406286|19110243 +Eighteenth-Century Life,Duke University Press,00982601|10863192 +Eighteenth-Century Music,Cambridge University Press,14785706|14785714 +Eighteenth-Century Studies,Muse - Johns Hopkins University Press,00132586|1086315X +Einstein (São Paulo),SciELO,16794508|23176385 +Einstein (São Paulo),SciELO,16794508| +Éire-Ireland,Muse - Johns Hopkins University Press,15505162 +Eisei kagaku,Pharmaceutical Society of Japan,0013273X| +Eiyo Shokuryo Gakkaishi,Japanese Society of Nutrition and Food Science,18838871 +Eiyo To Shokuryo,Japanese Society of Nutrition and Food Science,18838863 +EJNMMI Physics,Springer (Biomed Central Ltd.),21977364|21977364 +EJNMMI Radiopharmacy and Chemistry,Springer (Biomed Central Ltd.),2365421X +EJNMMI Research,Springer (Biomed Central Ltd.),2191219X|2191219X +EJOS,Ankara University,9286802 +EJOVOC Electronic Journal of Vocational Colleges,EJOVOC,21467684|21467684 +EJVES Extra,Elsevier ,15333167|15333167 +EJVES Short Reports,Elsevier ,24056553| +EKAIA Euskal Herriko Unibertsitateko Zientzi eta Teknologi Aldizkaria,UPV/EHU Press,02149001| +Ekev Akademi Dergisi,Ekev Akademi Dergisi,21480710| +Ekfrase,Scandinavian University Press / Universitetsforlaget AS,18915752|18915760 +Ekológia (Bratislava),Walter de Gruyter GmbH,1337947X +Ekologija,Lithuanian Academy of Sciences,02357224|20290586 +Ekoloji,Cevre Koruma ve Arastirma Vakfi,13001361|13001361 +Ekonometria,Wroclaw University of Economics,15073866|15073866 +Ekonomia i Prawo,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,18982255|23921625 +Ekonomia i Zarzadzanie,Walter de Gruyter GmbH,23000813 +Ekonomia XXI Wieku,Wroclaw University of Economics,23538929|23538929 +Ekonomická revue - Central European Review of Economic Issues,"""Faculty of Economics, VSB Technical University of Ostrava""",12123951| +Ekonomija teorija i praksa,Centre for Evaluation in Education and Science,22175458| +Ekonomik Yaklasim,ScopeMed International Medical Journal Managment and Indexing System,13001868| +Ekonomika,Centre for Evaluation in Education and Science,0350137X| +Ekonomika poljoprivrede,Centre for Evaluation in Education and Science,03523462| +Ekonomika preduzeca,Centre for Evaluation in Education and Science,0353443X| +Ekonomisk Tidskrift,JSTOR,02847310| +Ekonomisti,"""Science and Education, Ltd.""",19876890| +Ekonomski horizonti,Centre for Evaluation in Education and Science,1450863X| +Ekonomski signali,Centre for Evaluation in Education and Science,14524457| +Eksploatacja i Niezawodnosc - Maintenance and Reliability,Polskie Naukowo-Techniczne Towarzystwo Eksploatacyjne,15072711| +Ekstasis Revista de Hermenêutica e Fenomenologia,Universidade do Estado do Rio de Janeiro UERJ,23164786 +El Argonauta español,OpenEdition,17652901 +El Argonauta español,OpenEdition,17652901 +El Dinar,Maulana Malik Ibrahim State Islamic University,23392797| +El Futuro del Pasado,FahrenHouse,19899289 +El Hilo de la Fabula,Universidad Nacional del Litoral,16677900|23625651 +El Mednifico Journal,El Mednifico Journal,23077301 +El Mensajero,Wiley Blackwell (Blackwell Publishing),15566617|15566617 +El Muhasaba Jurnal Akuntansi,Maulana Malik Ibrahim State Islamic University,20861249|24428922 +El Profesional de la Informacion,El Profesional de la Informacion,13866710| +El profesional de la información,El Profesional de la Informacion,13866710|16992407 +El Taco en la Brea,Universidad Nacional del Litoral,23624191|23625813 +El-HARAKAH (TERAKREDITASI),Maulana Malik Ibrahim State Islamic University,18584357|23561734 +Elastomers and Composites,The Rubber Society of Korea,20929676| +ELCVIA Electronic Letters on Computer Vision and Image Analysis,Universitat Autonoma de Barcelona,15775097 +Elderly Care,RCN Publishing,13691856| +eLearn,Association for Computing Machinery,1535394X|1535394X +Election Law Journal,Mary Ann Liebert,15331296|00000000 +Electoral Studies,Elsevier ,02613794| +Electric Machines & Power Systems,Informa UK (Taylor & Francis),0731356X|15210502 +Electric Power Components and Systems,Informa UK (Taylor & Francis),15325008|15325016 +Electric Power Systems Research,Elsevier ,03787796| +Electrical & Computer Engineering An International Journal,Wireilla Scientific Publications,22015957 +ELECTRICAL AND COMPUTER SYSTEMS,Odessa National Polytechnic University,22213937|22213805 +Electrical and Electronic Engineering,Scientific and Academic Publishing,21629455| +Electrical and Electronics Engineering An International Journal,Wireilla Scientific Publications,22005846|22005846 +Electrical Control and Communication Engineering,De Gruyter Open Sp. z o.o. ,22559140|22559159 +Electrical Engineering,Institute of Electrical and Electronics Engineers,00959197| +Electrical Engineering,Springer-Verlag,09487921|14320487 +Electrical Engineering An International Journal,Academy and Industry Research Collaboration Center,23493739 +Electrical Engineering in Japan,Wiley Blackwell (John Wiley & Sons),04247760|15206416 +Electrical Engineering Research,"""Science and Engineering Publishing, Co.""",23277564| +Electro- and Magnetobiology,Informa UK (Marcel Dekker),10619526| +Electroanalysis,Wiley Blackwell (John Wiley & Sons),10400397|15214109 +Electrocatalysis,Springer-Verlag,18682529|18685994 +Electrochemical and Solid-State Letters,The Electrochemical Society,10990062|19448775 +Electrochemical Energy Technology,De Gruyter Open Sp. z o.o. ,23003545 +Electrochemistry,The Electrochemical Society of Japan,13443542|21862451 +Electrochemistry Communications,Elsevier ,13882481| +Electrochimica Acta,Elsevier ,00134686| +ElectroComponent Science and Technology,Hindawi Publishing Corporation,03053091| +Electrocyclizations of Hexatrienes and Octatetraenes,Thieme Publishing Group,20300239 +Electrodeposition and Surface Treatment,Elsevier ,03009416| +Electroencephalography and Clinical Neurophysiology,Elsevier ,00134694|00134694 +Electroencephalography and Clinical Neurophysiology/Electromyography and Motor Control,Elsevier ,0924980X| +Electroencephalography and Clinical Neurophysiology/Evoked Potentials Section,Elsevier ,01685597| +Electrolytes & Blood Pressure,The Korean Society of Electrolyte Metabolism (KAMJE),17385997|20929935 +Electromagnetic Analysis and Applications,Hans Publishers,23256710|23256729 +Electromagnetic Biology and Medicine,Informa UK (Taylor & Francis),15368378|15368386 +Electromagnetics,Informa UK (Taylor & Francis),02726343|1532527X +Electron Microscopy Reviews,Elsevier ,08920354| +Electronic Commerce Research,Springer-Verlag,13895753|15729362 +Electronic Commerce Research and Applications,Elsevier ,15674223| +Electronic Communication Law Review,Springer (Kluwer Academic Publishers),15702294| +Electronic Communications in Probability,Institute of Mathematical Statistics,1083589X +Electronic Government an International Journal,Inderscience Enterprises Ltd.,17407494|17407508 +electronic International Journal of Time Use Research,Forschungsinstitut Freie Berufe,18609937|18609937 +Electronic Journal of Biotechnology,Elsevier ,07173458|07173458 +Electronic Journal of Boundary Elements,Rutgers University Libraries,15423891 +Electronic Journal of Energy & Environment,Universidad Catolica de Temuco,0719269X +Electronic Journal of Graph Theory and Applications,The Institute for Research and Community Services ITB,23382287 +Electronic Journal of Linear Algebra,University of Wyoming Libraries,10813810 +Electronic Journal of Probability,Institute of Mathematical Statistics,10836489 +Electronic journal of qualitative theory of differential equations,University of Szeged,14173875 +Electronic Journal of Research in Educational Psychology,Education & Psychology I+D+i,16962095 +Electronic Journal of Statistics,Institute of Mathematical Statistics,19357524|19357524 +Electronic Journal of Theoretical Chemistry,Wiley Blackwell (John Wiley & Sons),10824928|10824928 +Electronic Markets,Springer-Verlag,10196781|14228890 +Electronic Materials Letters,Springer-Verlag,17388090|20936788 +Electronic News,SAGE Publications,19312431|1931244X +Electronic Notes in Discrete Mathematics,Elsevier ,15710653| +Electronic Notes in Theoretical Computer Science,Elsevier ,15710661| +Electronic physician,Mehr Publishing Group,20085842 +Electronic Proceedings in Theoretical Computer Science,Open Publishing Association,20752180|20752180 +Electronic Research Announcements in Mathematical Sciences,American Institute of Mathematical Sciences,19359179| +Electronic Research Announcements of the American Mathematical Society,American Mathematical Society,10796762 +Electronic Resources Review,Emerald (MCB UP ),13645137| +Electronic Systems and Software,Institution of Electrical Engineers,14798336|17410479 +Electronic Systems News,Institution of Electrical Engineers,02650096| +Electronics,MDPI AG,20799292 +Electronics & Communications Engineering Journal,Institution of Electrical Engineers,09540695| +Electronics and Communications in Japan,Wiley Blackwell (John Wiley & Sons),19429533|19429541 +Electronics and Communications in Japan (Part I Communications),Wiley Blackwell (John Wiley & Sons),87566621|15206424 +Electronics and Communications in Japan (Part II Electronics),Wiley Blackwell (John Wiley & Sons),8756663X|15206432 +Electronics and Communications in Japan (Part III Fundamental Electronic Science),Wiley Blackwell (John Wiley & Sons),10420967|15206440 +Electronics and Power,Institution of Electrical Engineers,00135127| +Electronics Education,Institution of Electrical Engineers,09572953|20540329 +Electronics ETF,National and University Library of the Republic of Srpska,14505843| +Electronics Letters,Institution of Electrical Engineers,00135194|1350911X +Electronics Optics & Control,Shanghai Institute of Optics and Fine Mechanics,1671637X| +Electronics Science Technology and Application,Universe Scientific Publishing Pte. Ltd.,22512608|24248460 +Electrophilic Substitution of Benzenes,Thieme Publishing Group,20600372 +Electrophoresis,Wiley Blackwell (John Wiley & Sons),01730835|15222683 +Electrophoresis Letters,Japanese Electrophoresis Society,21892628|21892636 +Electrospinning,Walter de Gruyter GmbH,23917407 +Elektronički časopis građevinskog fakulteta Osijek,Faculty of Civil Engineering Osijek,18478948 +Elektronik Sosyal Bilimler Dergisi,Electronic Journal of Social Sciences,13040278| +ELEKTRONIKA - KONSTRUKCJE TECHNOLOGIE ZASTOSOWANIA,"""Wydawnictwo SIGMA-NOT, sp. z.o.o.""",00332089| +Elektronika ir Elektrotechnika,Publishing House Technologija,13921215|20295731 +Elementa Science of the Anthropocene,BioOne (Elementa),23251026 +Elemente der Mathematik,European Mathematical Society Publishing House,00136018|14208962 +ELEMENTOS,Institucion Universitaria Politecnico Grancolombiano,2027923X|22485252 +Elements,Boston College University Libraries,23780185|23806087 +Elements,GeoScienceWorld,18115209|18115217 +Eletrônica de Potência,Associacao Brasileira de Eletronica de Potencia SOBRAEP,14148862|1984557X +ELH,Muse - Johns Hopkins University Press,00138304|10806547 +Elia,Editorial Universidad de Sevilla,15765059|22538283 +eLife,"""eLife Sciences Organisation, Ltd.""",2050084X +ELK Asia Pacific Journal of Applied Thermal Engineering,"""ELK Education Consultants, Pvt., LTD.""",23940433 +ELK Asia Pacific Journal of Applied Thermal Engineering,"""ELK Education Consultants, Pvt., LTD.""",23940433 +ELK Asia Pacific Journal of Computer Science and Information Systems,"""ELK Education Consultants, Pvt., LTD.""",23940441 +ELK Asia Pacific Journal of Finance and Risk Management,"""ELK Education Consultants, Pvt., LTD.""",23492325 +ELK Asia Pacific Journal of Human Resource Management and Organisational Behaviour,"""ELK Education Consultants, Pvt., LTD.""",23940409 +ELK Asia Pacific Journal of Leadership and Innovation Management,"""ELK Education Consultants, Pvt., LTD.""",23940417 +ELK Asia Pacific Journal of Manufacturing Science and Engineering,"""ELK Education Consultants, Pvt., LTD.""",23940425 +ELK Asia Pacific Journal of Marketing and Retail Management,"""ELK Education Consultants, Pvt., LTD.""",23492317 +ELK Asia Pacific Journal of Social Sciences,"""ELK Education Consultants, Pvt., LTD.""",23949392 +ELOHI,OpenEdition,24318175| +ELOPE English Language Overseas Perspectives and Enquiries,University of Ljubljana,15818918|23860316 +Elos Revista de Literatura Infantil e Xuvenil,University of Santiago de Compostela,23867620 +Elpis czasopismo teologiczne Katedry Teologii Prawosławnej Uniwersytetu w Białymstoku,University of Bialystok,15087719| +ELT Journal,Oxford University Press,09510893|14774526 +ELUA Estudios de Lingüística Universidad de Alicante,Publicaciones Universidad de Alicante,02127636|21716692 +el–Hayah,Maulana Malik Ibrahim State Islamic University,20860064|24607207 +Em cima do Joelho,Coimbra University Press,08746168| +Em Curso,Editora Cubo Multimidia,23595841 +Em Debate,Universidade Federal de Santa Catarina,19803532|19803532 +Em Questão,Faculdade de Biblioteconomia Comunicacao,18078893|18085245 +Em Tese,Universidade Federal de Santa Catarina,18065023|18065023 +Em Tese,Faculdade de Letras da UFMG,1415594X|19820739 +EMAJ Emerging Markets Journal,"""University Library System, University of Pittsburgh""",2159242X|21588708 +Emancipacao,Universidade Estadual de Ponta Grossa,15197611|19827814 +Emblemas - Revista do Departamento de História e Ciências Sociais - UFG/CAC,Universidade Federal de Goias,18087914|22384251 +EMBnet journal,EMBnet Stichting,22266089|22266089 +EMBO Molecular Medicine,EMBO,17574676|17574684 +EMBO Reports,EMBO,1469221X|14693178 +Embryologia,Wiley Blackwell (Blackwell Publishing),03670228| +EMC - AKOS - Trattato di Medicina,Elsevier ,16347358| +EMC - Anestesia-Reanimación,Elsevier ,12804703| +EMC - Anestesia-Rianimazione,Elsevier ,12830771| +EMC - Anesthésie-Réanimation,Elsevier ,16386205| +EMC - Angéiologie,Elsevier ,22110364| +EMC - Aparato Locomotor,Elsevier ,1286935X| +EMC - Appareil locomoteur,Elsevier ,02460521| +EMC - Biologie Médicale,Elsevier ,22119698| +EMC - Cardiologie,Elsevier ,11664568| +EMC - Cardiologie-Angéiologie,Elsevier ,17626137| +EMC - Chirurgie,Elsevier ,1762570X| +EMC - Cirugía General,Elsevier ,16347080| +EMC - Cirugía Otorrinolaringológica y Cervicofacial,Elsevier ,16352505| +EMC - Cirugía Plástica Reparadora y Estética,Elsevier ,16342143| +EMC - Cosmetologia Medica e Medicina degli Inestetismi Cutanei,Elsevier ,17760313| +EMC - Cosmétologie et dermatologie esthétique,Elsevier ,22110380| +EMC - Cosmétologie et dermatologie esthétique,Elsevier ,22110380| +EMC - Dentisterie,Elsevier ,17625661| +EMC - Dermatología,Elsevier ,17612896| +EMC - Dermatologie,Elsevier ,02460319| +EMC - Dermatologie-Cosmétologie,Elsevier ,17625696| +EMC - Endocrinologie,Elsevier ,17625653| +EMC - Endocrinologie - Nutrition,Elsevier ,11551941| +EMC - Gastro-entérologie,Elsevier ,11551968| +EMC - Ginecología-Obstetricia,Elsevier ,1283081X| +EMC - Gynécologie,Elsevier ,02461064| +EMC - Gynécologie-obstétrique,Elsevier ,17626145| +EMC - Hématologie,Elsevier ,16386213| +EMC - Hépato-Gastroenterologie,Elsevier ,17696763| +EMC - Hépatologie,Elsevier ,16386221| +EMC - Hépatologie,Elsevier ,11551976| +EMC - Kinesiterapia - Medicina Física,Elsevier ,12932965| +EMC - Kinésithérapie,Elsevier ,17696852| +EMC - Kinésithérapie - Médecine physique - Réadaptation,Elsevier ,12830887| +EMC - Maladies Infectieuses,Elsevier ,1638623X| +EMC - Médecine,Elsevier ,17624193| +EMC - Médecine d urgence,Elsevier ,19595182| +EMC - Medicina Riabilitativa,Elsevier ,1283078X| +EMC - Néphrologie,Elsevier ,16386248| +EMC - Neurologia,Elsevier ,16347072| +EMC - Neurologie,Elsevier ,17624231| +EMC - Obstétrique,Elsevier ,02460335| +EMC - Odontologie,Elsevier ,17696836| +EMC - Ophtalmologie,Elsevier ,1762584X| +EMC - Oto-rhino-laryngologie,Elsevier ,17625688| +EMC - Otorinolaringoiatria,Elsevier ,1639870X| +EMC - Otorrinolaringología,Elsevier ,16323475| +EMC - Pathologie professionnelle et de l environnement,Elsevier ,18777856| +EMC - Pediatría,Elsevier ,12451789| +EMC - Pédiatrie,Elsevier ,17626013| +EMC - Pédiatrie - Maladies infectieuses,Elsevier ,16375017| +EMC - Pneumologie,Elsevier ,17624223| +EMC - Podología,Elsevier ,1762827X| +EMC - Podologie,Elsevier ,17696860| +EMC - Podologie-Kinésithérapie,Elsevier ,1762567X| +EMC - Psychiatrie,Elsevier ,17625718| +EMC - Radiologie,Elsevier ,17624185| +EMC - Radiologie et imagerie médicale - Abdominale - Digestive,Elsevier ,18798527| +EMC - Radiologie et imagerie médicale - Cardiovasculaire - Thoracique - Cervicale,Elsevier ,18798535| +EMC - Radiologie et imagerie médicale - Génito-urinaire - Gynéco-obstétricale - Mammaire,Elsevier ,18798543| +EMC - Radiologie et imagerie médicale - Musculosquelettique - Neurologique - Maxillofaciale,Elsevier ,18798551| +EMC - Radiologie et imagerie médicale - Principes et techniques - Radioprotection,Elsevier ,18798497| +EMC - Rhumatologie-Orthopédie,Elsevier ,17624207| +EMC - Stomatologie,Elsevier ,17696844| +EMC - Techniques chirurgicales - Appareil digestif,Elsevier ,02460424| +EMC - Techniques chirurgicales - Chirurgie plastique reconstructrice et esthétique,Elsevier ,12869325| +EMC - Techniques chirurgicales - Chirurgie vasculaire,Elsevier ,02460459| +EMC - Techniques chirurgicales - Gynécologie,Elsevier ,22110666| +EMC - Techniques chirurgicales - Orthopédie - Traumatologie,Elsevier ,02460467| +EMC - Techniques chirurgicales - Tête et cou,Elsevier ,22110402| +EMC - Techniques chirurgicales - Thorax,Elsevier ,12418226| +EMC - Técnicas Quirúrgicas - Aparato Digestivo,Elsevier ,12829129| +EMC - Técnicas Quirúrgicas - Ortopedia y Traumatología,Elsevier ,2211033X| +EMC - Tecniche Chirurgiche - Chirurgia Generale,Elsevier ,16365577| +EMC - Tecniche Chirurgiche - Chirurgia ORL e Cervico-Facciale,Elsevier ,12923036| +EMC - Tecniche Chirurgiche - Chirurgia Ortopedica,Elsevier ,22110801| +EMC - Tecniche Chirurgiche - Chirurgia Plastica¸ Ricostruttiva ed Estetica,Elsevier ,17696704| +EMC - Tecniche Chirurgiche Addominale,Elsevier ,12830798| +EMC - Tecniche Chirurgiche Torace,Elsevier ,12883336| +EMC - Tecniche Chirurgiche Vascolare,Elsevier ,12830801| +EMC - Toxicologie-Pathologie,Elsevier ,17625858| +EMC - Traité de médecine AKOS,Elsevier ,16346939| +EMC - Tratado de Medicina,Elsevier ,16365410| +EMC - Urgenze,Elsevier ,12869341| +EMC - Urología,Elsevier ,17613310| +EMC - Urologie,Elsevier ,17620953| +EMC - Vétérinaire,Elsevier ,17624215| +EMC Review - Časopis za ekonomiju - APEIRON,National and University Library of the Republic of Srpska,22328823|22329633 +EME Experimental Illustration Art & Design,Universitat Politecnica de Valencia,22536337|23413018 +Emerald Emerging Markets Case Studies,Emerald (MCB UP ),20450621| +Emergence,Informa UK (Taylor & Francis),15213250|15327000 +Emergence and Transfer of Wealth,Hans Publishers,2165638X|21656398 +Emergences Journal for the Study of Media & Composite Cultures,Informa UK (Taylor & Francis),10457224|14695855 +Emergency Care Journal,PAGEPress Publications,18269826| +Emergency Health Services Quarterly,"""Informa UK (Haworth Press, Inc.,)""",01639358| +Emergency Health Services Review,"""Informa UK (Haworth Press, Inc.,)""",07386192| +Emergency Medicine,Wiley Blackwell (Blackwell Publishing),14410737|14422026 +Emergency Medicine,"""Frontline Medical Communications, Inc.""",00136654| +Emergency Medicine,Wiley Blackwell (Blackwell Publishing),10356851|14422026 +Emergency Medicine - Open Journal,Openventio Publishers,23794046 +Emergency Medicine and Health Care,Herbert Publications,20526229 +Emergency Medicine Australasia,Wiley Blackwell (Blackwell Publishing),17426731| +Emergency Medicine Clinics of North America,Elsevier ,07338627| +Emergency Medicine International,Hindawi Publishing Corporation,20902840|20902859 +Emergency Medicine Journal,BMJ,14720205|14720213 +Emergency Medicine News,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10540725| +Emergency Medicine News,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10540725| +Emergency Medicine Open Access,OMICS Publishing Group,21657548 +Emergency Nurse,RCN Publishing,13545752|20478984 +Emergency Radiology,Springer-Verlag,10703004|14381435 +Emerging Adulthood,SAGE Publications,21676968|21676984 +Emerging Cancer Therapeutics,Demos Medical Publishing,21514194| +Emerging Contaminants,Elsevier ,24056650| +Emerging Drugs,Informa UK (Ashley Publications),13619195| +Emerging Drugs,Informa UK (Ashley Publications),13619195| +Emerging Economy Studies,SAGE Publications,23949015|24542148 +Emerging Health Threats Journal,Co-Action Publishing,17528550 +Emerging Infectious Diseases,Centers For Disease Control and Prevention,10806059|10806059 +Emerging Markets Finance and Trade,Informa UK (Taylor & Francis),1540496X|15580938 +Emerging Markets Review,Elsevier ,15660141| +Emerging Materials Research,Thomas Telford Ltd.,20460147|20460155 +Emerging Microbes & Infections,Nature Publishing Group,22221751 +Emerging Theatre Research,Emerging Theatre Research,23291141 +Emerging Themes in Epidemiology,Springer (Biomed Central Ltd.),17427622|17427622 +Emerging Therapeutic Targets,Informa UK (Ashley Publications),14600412| +Emerita,Departmento de Publicaciones del CSIC,00136662|19888384 +Emilio Aguinaldo College Research Bulletin,PhilJOL,01191438| +Emirates Journal of Food and Agriculture,"""Faculty of Food and Agriculture, United Arab Emerites University""",2079052X|20790538 +EMISA FORUM,Springer-Verlag,16103351 +Emission Control Science and Technology,Springer-Verlag,21993629|21993637 +emma,CrossRef test user, +Emotion,American Psychological Association,15283542|19311516 +Emotion Review,SAGE Publications,17540739|17540747 +Emotion Space and Society,Elsevier ,17554586| +Emotional and Behavioural Difficulties,Informa UK (Taylor & Francis),13632752|17412692 +Empan,CAIRN,11523336|17762812 +Empedocles European Journal for the Philosophy of Communication,Intellect,17571952|17571960 +Empiria Revista de metodología de ciencias sociales,UNED - Universidad Nacional de Educacion a Distancia,11395737|21740682 +Empirica,Springer-Verlag,03408744|15736911 +EmpíricaBR - Revista Brasileira de Gestão Negócio e Tecnologia da Informação,"""Instituto Federal de Educacao, Ciencia e Tecnologia do Rio Grande do Norte (IFRN)""",2447178X +Empirical Economics,Springer-Verlag,03777332|14358921 +Empirical Research in Vocational Education and Training,Springer (Biomed Central Ltd.),18776345|18776345 +Empirical Software Engineering,Springer-Verlag,13823256|15737616 +Empirical Studies of the Arts,SAGE Publications,02762374|15414493 +Employee Assistance Quarterly,"""Informa UK (Haworth Press, Inc.,)""",07490003|15452514 +Employee Counselling Today,Emerald (MCB UP ),09558217| +Employee Relations,Emerald (MCB UP ),01425455|00000000 +Employee Responsibilities and Rights Journal,Springer-Verlag,08927545|15733378 +Employment Relations Today,Wiley Blackwell (John Wiley & Sons),07457790|15206459 +Employment Research,W.E. Upjohn Institute for Employment Research,10758445|10758445 +Empowerment in Organizations,Emerald (MCB UP ),09684891|00000000 +EMS Insider,Elsevier ,10814507| +EMS Surveys in Mathematical Sciences,European Mathematical Society Publishing House,23082151| +EMU,CSIRO Publishing,01584197| +EN BLANCO Revista de Arquitectura,Universitat Politecnica de Valencia,18885616 +En la España Medieval,Universidad Complutense de Madrid,02143038|19882971 +Enantiomer A Journal of Stereochemistry,Informa UK (Taylor & Francis),10242430| +Enantioselective 1 4-Addition of Sulfur Nucleophiles,Thieme Publishing Group,20400160 +Enantioselective 1 4-Hydride Reduction,Thieme Publishing Group,20400152 +Enantioselective Addition of Metal Alkynylides to Imino Groups,Thieme Publishing Group,20200528 +Enantioselective Allylation of Aldehydes,Thieme Publishing Group,20200188 +Enantioselective Allylation of Ketones,Thieme Publishing Group,20200196 +Enantioselective and Diastereoselective Alkene Metathesis,Thieme Publishing Group,20100426 +Enantioselective Catalysis Using Multifunctional Chiral Phosphines,Thieme Publishing Group,20400411 +Enantioselective Dihydroxylation,Thieme Publishing Group,20600070 +Enantioselective Fragmentation Reactions,Thieme Publishing Group,20100469 +Enantioselective Reaction of Ketones,Thieme Publishing Group,20300182 +Enantioselective Reactions with Achiral Electrophiles and Symmetric Intermediate π-Allyl Complexes,Thieme Publishing Group,20300255 +Enantioselective Rhodium-Catalyzed Reactions Using Aldehydes,Thieme Publishing Group,20300077 +Enantioselective Ring Opening of -Aziridines,Thieme Publishing Group,20300506 +Enantioselective Sulfoxidation with Enzymes,Thieme Publishing Group,20600488 +Enciclopédia Biosfera,Centro Cientifico Conhecer,18090583|23172606 +Encontros Bibli Revista Eletrônica de Biblioteconomia e Ciência da Informação,Universidade Federal de Santa Catarina,15182924|15182924 +Encounters/Encuentros/Rencontres on Education,Encounters/Encuentros/Rencontres on Education,19258992 +Encrucijada,Dartmouth College Library Press,15433315 +Encuentro,Latin America Journals Online,04249674|22207112 +Encyclopedia Of Law,Infra-M Academic Publishing House,23092645| +End of Life Journal,BMJ,17541069|20476361 +Endangered Species Research,Inter-Research Science Center,18635407|16134796 +Endeavour,Elsevier ,01609327| +Endo-Praxis,Thieme Publishing Group,01774077|16116429 +Endocrine,Springer-Verlag,0969711X|15590100 +Endocrine Abstracts,Bioscientifica,14703947|14796848 +Endocrine Connections,Bioscientifica,20493614|20493614 +Endocrine Disruptors,Landes Bioscience,23273747 +Endocrine Journal,The Japan Endocrine Society,09188959|13484540 +Endocrine Metabolic & Immune Disorders - Drug Targets,Bentham Science,18715303| +Endocrine Oncology and Metabolism,Endocrine Oncology and Metabolism,18498922|18499031 +Endocrine Pathology,Springer-Verlag,10463976|15590097 +Endocrine Practice,American Association of Clinical Endocrinologists,1530891X|19342403 +Endocrine Regulations,Walter de Gruyter GmbH,12100668|13360329 +Endocrine Related Cancer,Bioscientifica,13510088|14796821 +Endocrine Research,Informa UK (Taylor & Francis),07435800|15324206 +Endocrine Research Communications,Informa UK (Taylor & Francis),00936391| +Endocrine Reviews,The Endocrine Society,0163769X|19457189 +Endocrine Surgery,Endocrinology Research Centre,23063513|23103965 +Endocrinologia Japonica,The Japan Endocrine Society,00137219|21856370 +Endocrinología y Nutrición,Elsevier ,15750922| +Endocrinología y Nutrición (English Edition),Elsevier ,21735093| +Endocrinology,The Endocrine Society,00137227|19457170 +Endocrinology & Metabolic Syndrome,OMICS Publishing Group,21611017 +Endocrinology and Metabolism,Korean Endocrine Society (KAMJE),2093596X|20935978 +Endocrinology and Metabolism Clinics of North America,Elsevier ,08898529| +Endocrinology Diabetes and Metabolism Case Reports,Bioscientifica,20520573|20520573 +Endocrinology Studies,PAGEPress Publications,20389515|20389523 +Endodontic Topics,Wiley Blackwell (Blackwell Publishing),16011538|16011546 +Endokrynologia Polska,VM Media Sp zo.o. - VMGroup SK,0423104X|22998306 +Endoplasmic Reticulum Stress in Cancers,De Gruyter Open Sp. z o.o. ,22991182 +Endoplasmic Reticulum Stress in Diseases,De Gruyter Open Sp. z o.o. ,23004266 +Endoscopia,Elsevier ,01889893| +Endoscopic Surgery of Armenia,Armenian Association of Endoscopic Surgery,18290310| +Endoscopic Ultrasound,Medknow Publications,23039027| +Endoscopy,Thieme Publishing Group,0013726X|14388812 +Endoscopy International Open,Thieme Publishing Group,23643722|21969736 +Endoskopicheskaya khirurgiya,Media Sphere Publishing Group,10257209| +Endoskopie heute,Thieme Publishing Group,0933811X|14392577 +Endosopic Ultrasound,"""Hong Kong STM Publishing Co., Ltd.""",22267190 +Endothelium,Informa UK (Taylor & Francis),10623329|10292373 +EndoTrends,Elsevier - Academic Press,15347621|1534763X +Endouroloji Bulteni,Yerkure Tanitim ve Yayincilik Hizmetleri,13083287|21480532 +ENDOXA,UNED - Universidad Nacional de Educacion a Distancia,11335351|21745676 +Ene,Instituto de Salud Carlos III/BNCS/SciELO Espana,1988348X +Ene,Instituto de Salud Carlos III/BNCS/SciELO Espana,1988348X +Enecarbamates as Ene Components,Thieme Publishing Group,20300204 +Energética,Universidad Nacional de Colombia,01209833|2357612X +Energetika,Lithuanian Academy of Sciences,02357208|02357208 +ENERGETIKA Proceedings of CIS higher education institutions and power engineering associations,Belarusian National Technical University,10297448|24140341 +ENERGIA NA AGRICULTURA,EIA Energy in Agriculture,01029169|23596562 +Energies,MDPI AG,19961073 +Energy,Elsevier ,03605442|03605442 +Energy & Environment,SAGE Publications,0958305X|0958305X +Energy & Environmental Science,The Royal Society of Chemistry,17545692|17545706 +Energy & Fuels,American Chemical Society,08870624|15205029 +Energy and Buildings,Elsevier ,03787788| +Energy and Emission Control Technologies,Dove Medical Press,22532218 +Energy and Environment Focus,American Scientific Publishers,23263040|23263059 +Energy and Environment Research,Canadian Center of Science and Education,19270569|19270577 +Energy and Environmental Engineering,"""Horizon Research Publishing Co., Ltd.""",23316306|23316330 +Energy and Policy Research,Informa UK (Taylor & Francis),23815639 +Energy and Power,Scientific and Academic Publishing,2163159X| +Energy and Power Engineering,"""Scientific Research Publishing, Inc.""",1949243X|19473818 +Energy Conversion,Elsevier ,00137480| +Energy Conversion and Management,Elsevier ,01968904| +Energy Ecology and Environment,Springer-Verlag,23637692|23638338 +Energy Economics,Elsevier ,01409883| +Energy Economics Letters,Pak Publishing Group,23082925 +Energy Efficiency,Springer-Verlag,1570646X|15706478 +Energy Engineering,Metapress,01998595| +Energy Exploration & Exploitation,SAGE Publications,01445987|00000000 +Energy for Sustainable Development,Elsevier ,09730826| +Energy Harvesting and Systems,Walter de Gruyter GmbH,23298766|23298766 +Energy in Agriculture,Elsevier ,01675826| +Energy law forum,The Publishing Group Jurist,23124350| +Energy Materials,Maney Publishing,17489237|17489245 +Energy Policy,Elsevier ,03014215| +Energy Prices and Taxes,Organisation for Economic Co-Operation and Development ,16096835|02562332 +Energy Procedia,Elsevier ,18766102| +Energy Psychology Journal,Energy Psychology Press,19496575| +Energy Reports,Elsevier ,23524847| +Energy Research & Social Science,Elsevier ,22146296| +Energy Research Journal,Science Publications,19490151| +Energy Review,Pak Publishing Group,24123390|24094293 +Energy Safety and Energy Economy,Moscow Institute of Energy-Safety and Energy-Economy,20712219| +Energy Science & Engineering,Wiley Blackwell (John Wiley & Sons),20500505| +Energy Sources,Informa UK (Taylor & Francis),00908312|15210510 +Energy Sources Part A Recovery Utilization and Environmental Effects,Informa UK (Taylor & Francis),15567036|15567230 +Energy Sources Part B Economics Planning and Policy,Informa UK (Taylor & Francis),15567249|15567257 +Energy Storage Materials,Elsevier ,24058297| +Energy Strategy Reviews,Elsevier ,2211467X| +Energy Studies Review,Escarpment Press,08434379| +Energy Sustainability and Society,Springer (Biomed Central Ltd.),21920567|21920567 +Energy Systems,Springer-Verlag,18683967|18683975 +Energy Technology,Wiley Blackwell (John Wiley & Sons),21944288| +Energy Technology & Policy,Informa UK (Taylor & Francis),23317000 +eNeuro,Society for Neuroscience,23732822 +eNeurologicalSci,Elsevier ,24056502| +Enfance,Editions NecPlus,00137545|19696981 +Enfance en difficulté,Consortium Erudit,19206275|19298544 +Enfances & Psy,CAIRN,12865559|17762820 +Enfances Familles Générations,Consortium Erudit,17086310 +Enfermedad Inflamatoria Intestinal al Día,Elsevier ,16967801| +Enfermedades Infecciosas y Microbiología Clínica,Elsevier ,0213005X|15781852 +Enfermería actual de Costa Rica,Universidad de Costa Rica,14094568 +Enfermería Clínica,Elsevier ,11308621| +Enfermería Global,Servicio de Publicaciones de la Universidad e Murcia,16956141 +Enfermería Intensiva,Elsevier ,11302399| +Enfermería Nefrológica,Instituto de Salud Carlos III/BNCS/SciELO Espana,22542884| +Enfermería Universitaria,Elsevier ,16657063| +Enfoque Reflexão Contábil,Universidade Estadual de Maringa,15179087|1984882X +Engaged Scholar Journal Community-Engaged Research Teaching and Learning,Engaged Scholar Journal,23691190|2368416X +Engaging Pedagogies in Catholic Higher Education,St. Mary's College of California,2379920X +Engaging Science Technology and Society,Society for Social Studies of Science (4S),24138053 +Engei Gakkai zasshi,The Japanese Society for Horticultural Science,00137626|1880358X +Engenharia Agrícola,SciELO,01006916|01006916 +Engenharia Sanitaria e Ambiental,SciELO,14134152|14134152 +Engineer Journal of the Institution of Engineers Sri Lanka,Sri Lanka Journals Online ,18001122| +Engineering,"""Scientific Research Publishing, Inc.""",19473931|1947394X +Engineering & Technology,Institution of Electrical Engineers,17509637|17509645 +Engineering & Technology Reference,Institution of Electrical Engineers,20564007 +Engineering Analysis,Elsevier ,0264682X| +Engineering Analysis with Boundary Elements,Elsevier ,09557997| +Engineering and Process Economics,Elsevier ,0377841X| +ENGINEERING AND TECHNOLOGY IN INDIA,Hind Agri Horticultural Society,09761268|22309284 +Engineering Applications of Artificial Intelligence,Elsevier ,09521976| +Engineering Applications of Computational Fluid Mechanics,Informa UK (Taylor & Francis),19942060|1997003X +Engineering Computations,Emerald (MCB UP ),02644401| +Engineering Construction & Architectural Management,Emerald (MCB UP ),09699988|1365232X +Engineering Costs and Production Economics,Elsevier ,0167188X| +Engineering Economics,Publishing House Technologija,13922785|20295839 +Engineering Education,Informa UK (Taylor & Francis),17500052|17500044 +Engineering Failure Analysis,Elsevier ,13506307|13506307 +Engineering Fracture Mechanics,Elsevier ,00137944| +Engineering Geology,Elsevier ,00137952| +Engineering in Agriculture Environment and Food,Elsevier ,18818366| +Engineering in Life Sciences,Wiley Blackwell (John Wiley & Sons),16180240|16182863 +Engineering in Medicine,SAGE Publications,00462039| +Engineering in Medicine and Biology Magazine,Institute of Electrical and Electronics Engineers,02780054| +Engineering Journal,"""Faculty of Engineering, Chulalongkorn University""",01258281|01258281 +Engineering Journal Science and Innovation,Bauman Moscow State Technical University,23086033 +Engineering Management,Institution of Electrical Engineers,09607919|17410487 +Engineering Management International,Elsevier ,01675419| +Engineering Management Journal,Informa UK (Taylor & Francis),10429247|23770643 +Engineering Management Research,Canadian Center of Science and Education,19277318|19277326 +Engineering Management Reviews,"""Science and Engineering Publishing, Co.""",23265884| +Engineering Optimization,Informa UK (Taylor & Francis),0305215X|10290273 +Engineering Project Organization Journal,Informa UK (Taylor & Francis),21573727|21573735 +Engineering Science and Education Journal,Institution of Electrical Engineers,09637346| +Engineering Science and Technology an International Journal,Elsevier ,22150986| +Engineering Sciences,Escola Superior de Sustentabilidade,23183055 +Engineering Sciences And Technologies,Wroclaw University of Economics,20805985|20805985 +Engineering Solid Mechanics,Growing Science,22918744|22918752 +Engineering Structures,Elsevier ,01410296| +Engineering Structures and Technologies,Vilnius Gediminas Technical University,2029882X|20298838 +Engineering Studies,Informa UK (Taylor & Francis),19378629|19408374 +Engineering With Computers,Springer-Verlag,01770667|14355663 +Engineering(BeiJing),Elsevier ,20958099| +Englera,JSTOR,01704818| +English,Oxford University Press,00138215|17561124 +English & American Cultural Studies,English and American Cultural Studies,15985431| +English Academy Review,Informa UK (Taylor & Francis),10131752|17535360 +English and American Studies in German,Walter de Gruyter GmbH,00710490|18658946 +English for Specific Purposes,Elsevier ,08894906| +English Heritage Historical Review,Maney Publishing,17520169|20469187 +English in Africa,African Journals Online ,3768902 +English in Education,Wiley Blackwell (Blackwell Publishing),04250494|17548845 +English Language and Linguistics,Cambridge University Press,13606743|14694379 +English Language and Linguistics,The English Linguistics Society of Korea,15989453| +English Language and Literature Studies,Canadian Center of Science and Education,19254768|19254776 +English Language Teaching,Developing Country Think Institute Ltd,2378556X|23785578 +English Language Teaching,Pan-Korea English Teachers Association,12266566| +English Language Teaching,Canadian Center of Science and Education,19164742|19164750 +ENGLISH LINGUISTICS,The English Linguistic Society of Japan,09183701|18843107 +English Linguistics Research,Sciedu Press,19276028|19276036 +English Literary Renaissance,Wiley Blackwell (Blackwell Publishing),00138312|14756757 +English Literature in Transition 1880-1920,Muse - English Literature in Transition,00138339|15592715 +English Profile Journal,Cambridge University Press,20415362 +English Studies,Informa UK (Taylor & Francis),0013838X|17444217 +English Studies in Africa,Informa UK (Taylor & Francis),00138398|19438117 +English Teaching,Korea Association of Teachers of English,10177108| +English Teaching Practice & Critique,Emerald (MCB UP ),11758708| +English Text Construction,John Benjamins Publishing Company,18748767|18748775 +English Today,Cambridge University Press,02660784|14740567 +English Usage in Southern Africa,Informa UK (Taylor & Francis),02565986| +English World-Wide,John Benjamins Publishing Company,01728865|15699730 +Englishes in Practice,De Gruyter Open Sp. z o.o. ,20497156 +Engrami,Centre for Evaluation in Education and Science,03512665| +Enhancing Learning in the Social Sciences,Informa UK (Taylor & Francis),1756848X +Enhancing the Learner Experience in Higher Education,University of Northampton,20413122 +Enliven Bioinformatics,Enliven Archive,23769416 +Enliven Challenges in Cancer Detection and Therapy,Enliven Archive,2376046X +Enliven Clinical Dermatology,Enliven Archive,23795832 +Enliven Gynecology and Obstetrics,Enliven Archive,23775351 +Enliven Journal of Anesthesiology and Critical Care Medicine,Enliven Archive,23744448 +Enliven Journal of Dietetics Research and Nutrition,Enliven Archive,23785438 +Enliven Journal of Genetics Molecular and Cellular Biology,Enliven Archive,23795700 +Enliven Nephrology and Renal Studies,Enliven Archive,2378542X +Enliven Pediatrics and Neonatal Biology,Enliven Archive,23795824 +Enliven Pharmacovigilance and Drug Safety,Enliven Archive,23785411 +Enliven Surgery and Transplantation,Enliven Archive,23795719 +Enquête,OpenEdition,12452084|1953809X +Enquiry A Journal for Architectural Research,Enquiry: The ARCC Journal of Arch Research,23299339 +Enrahonar Quaderns de filosofia,Universitat Autonoma de Barcelona,0211402X|2014881X +Enrollment Management Report,Wiley Blackwell (John Wiley & Sons),10943757|19456263 +Ensaio Avaliação e Políticas Públicas em Educação,SciELO,01044036|01044036 +Ensaio Pesquisa em Educação em Ciências (Belo Horizonte),SciELO,19832117|19832117 +Ensaios de Literatura e Filologia,Faculdade de Letras da UFMG,01042785| +Ensayos de Economía,Universidad Nacional de Colombia,0121117X| +Ensayos sobre Política Económica,Elsevier ,01204483| +Enseñanza & Teaching Revista Interuniversitaria de Didáctica,Ediciones Universidad de Salamanca,23863919|23863927 +Enseñanza de las Ciencias Revista de investigación y experiencias didácticas,Universitat Autonoma de Barcelona,02124521|21746486 +Ensho,The Japanese Society of Inflammation and Regeneration,03894290|18844006 +Ensho Saisei,The Japanese Society of Inflammation and Regeneration,13468022|18805795 +ENT Updates,Deomed Publishing,21497109|21496498 +Enterprise & Society,Muse - Johns Hopkins University Press,14672235 +Enterprise and Innovation Management Studies,Informa UK (Taylor & Francis),14632446|14695863 +Enterprise and Society,Cambridge University Press,14672227|14672227 +Enterprise Development and Microfinance,Practical Action Publishing,17551978|17551986 +Enterprise Information Systems,Informa UK (Taylor & Francis),17517575|17517583 +Enterprise Modelling and Information Systems Architectures,Springer-Verlag,18663621 +Entertainment Computing,Elsevier ,18759521| +Entertainment Law,Informa UK (Taylor & Francis),14730987| +EntomoBrasilis,Entomo Brasilis,19830572 +Entomologia,PAGEPress Publications,22819584 +Entomologia Experimentalis et Applicata,Wiley Blackwell (Blackwell Publishing),00138703|15707458 +Entomologia Generalis,Schweizerbart,01718177| +Entomología y Vectores,SciELO,03280381|03280381 +Entomologica Americana,BioOne (New York Entomological Society),19475136|19475144 +Entomological News,BioOne (American Entomological Society),0013872X|21623236 +Entomological Research,Wiley Blackwell (Blackwell Publishing),17382297|17485967 +Entomological Review,Pleiades Publishing,00138738|15556689 +Entomological Science,Wiley Blackwell (Blackwell Publishing),13438786|14798298 +Entomologische berichten,Smithsonian Institution Biodiversity Heritage Library,00138827| +Entomologische Mitteilungen,Smithsonian Institution Biodiversity Heritage Library,00710806| +Entomologische Nachrichten,Smithsonian Institution Biodiversity Heritage Library,02325535| +Entomologisk tidskrift / Entomologiska föreningen i Stockholm,Smithsonian Institution Biodiversity Heritage Library,0013886X| +Entomologiske meddelelser,Smithsonian Institution Biodiversity Heritage Library,00138851| +Entomology Ornithology & Herpetology Current Research,OMICS Publishing Group,21610983 +Entomophaga,Springer-Verlag,00138959| +ENTRAMADO,Universidad Libre Seccional Cali,19003803| +Entrelacs,OpenEdition,12667188|22615482 +Entremeios Revista de Estudos do Discurso,Programa de Pos-Graduacao em Ciencias da Linguagem - PPGCL/UNIVAS,21793514 +Entreprendre & Innover,CAIRN,20347634|20347642 +Entrepreneurial Business and Economics Review,Uniwersytet Ekonomiczny w Krakowie - Krakow University of Economics,2353883X|23538821 +Entrepreneurship and Regional Development,Informa UK (Taylor & Francis),08985626|14645114 +Entrepreneurship Research Journal,Walter de Gruyter GmbH,21946175|21575665 +Entrepreneurship Theory and Practice,Wiley Blackwell (Blackwell Publishing),10422587|15408520 +Entreprises et histoire,CAIRN,11612770|21009864 +Entropy,MDPI AG,10994300 +Enunciación,Universidad Distrital Francisco Jose de Caldas,01226339|22486798 +Envigogika,"""Charles University in Prague, Karolinum Press""",18023061 +Environment and Behavior,SAGE Publications,00139165|1552390X +Environment and Development Economics,Cambridge University Press,1355770X|14694395 +Environment and Ecology Research,"""Horizon Research Publishing Co., Ltd.""",2331625X|23316268 +Environment and History,White Horse Press ,09673407|17527023 +Environment and Natural Resources Research,Canadian Center of Science and Education,19270488|19270496 +Environment and Planning A,SAGE Publications,0308518X|14723409 +Environment and Planning B Planning and Design,SAGE Publications,02658135|14723417 +Environment and Planning C Government and Policy,SAGE Publications,0263774X|14723425 +Environment and Planning D Society and Space,SAGE Publications,02637758|14723433 +Environment and Pollution,Canadian Center of Science and Education,19270909|19270917 +Environment and Social Psychology,Whioce Publishing Pte Ltd.,24247979| +Environment and Society Advances in Research,Berghahn Books,21506779|21506787 +Environment and Urbanization,SAGE Publications,09562478|17460301 +Environment and Urbanization Asia,SAGE Publications,09754253|09763546 +Environment Control in Biology,"""Japanese Society of Agricultural, Biological and Environmental Engineers and Scientists""",1880554X|18830986 +Environment Development and Sustainability,Springer-Verlag,1387585X|15732975 +Environment International,Elsevier ,01604120| +Environment Science and Policy for Sustainable Development,Informa UK (Taylor & Francis),00139157|19399154 +Environment Space Place,Philosophy Documentation Center,20665377|20689616 +Environment Systems & Decisions,Springer-Verlag,21945403|21945411 +Environment Technology Resources Proceedings of the International Scientific and Practical Conference,Rezeknes Augstskola,16915402|16915402 +Environmental & Socio-economic Studies,Walter de Gruyter GmbH,23540079 +Environmental and Climate Technologies,De Gruyter Open Sp. z o.o. ,22558837 +Environmental and Earth Sciences Research Journal,International Information and Engineering Technology Association,23695668|23695676 +Environmental and Ecological Statistics,Springer-Verlag,13528505|15733009 +Environmental and Engineering Geoscience,GeoScienceWorld,10787275| +Environmental and Experimental Botany,Elsevier ,00988472| +Environmental and Molecular Mutagenesis,Wiley Blackwell (John Wiley & Sons),08936692|10982280 +Environmental and Resource Economics,Springer-Verlag,09246460|15731502 +Environmental and Resource Economics Review,Korean Resource Economics Association,12293091| +Environmental Archaeology,Maney Publishing,14614103|17496314 +Environmental Bioindicators,Informa UK (Taylor & Francis),15555275|15555267 +Environmental Biology of Fishes,Springer-Verlag,03781909|15735133 +Environmental Biology Research,Korean Society of Environmental Biology,12269999|22877851 +Environmental Biosafety Research,EDP Sciences,16357922|16357930 +Environmental Biotechnology,Environmental Biotechnology,17344964| +Environmental Carcinogenesis Reviews,Informa UK (Taylor & Francis),08828164| +Environmental Chemistry,CSIRO Publishing,14482517| +Environmental Chemistry Letters,Springer-Verlag,16103653|16103661 +Environmental Claims Journal,Informa UK (Taylor & Francis),10406026|1547657X +Environmental Communication,Informa UK (Taylor & Francis),17524032|17524040 +Environmental Conservation,Cambridge University Press,03768929|14694387 +Environmental Development,Elsevier ,22114645| +Environmental Earth Sciences,Springer-Verlag,18666280|18666299 +Environmental Economics and Policy Studies,Springer-Verlag,1432847X|1867383X +Environmental Education,The Japanese Society of Environmental Education,09172866|21855625 +Environmental Education Research,Informa UK (Taylor & Francis),13504622|14695871 +Environmental Engineering and Policy,Springer-Verlag,14336618|14340852 +Environmental Engineering Research,Korean Society of Environmental Engineering,12261025| +Environmental Engineering Science,Mary Ann Liebert,10928758|00000000 +Environmental Entomology,Oxford University Press,0046225X|0046225X +Environmental Epigenetics,Oxford University Press,20585888 +Environmental Ethics,Philosophy Documentation Center,01634275| +Environmental Evidence,Springer (Biomed Central Ltd.),20472382|20472382 +Environmental Fluid Mechanics,Springer-Verlag,15677419|15731510 +Environmental Forensics,Informa UK (Taylor & Francis),15275922|15275930 +Environmental Geochemistry and Health,Springer-Verlag,02694042|15732983 +Environmental Geology,Springer-Verlag,09430105|14320495 +Environmental Geology and Water Sciences,Springer-Verlag,00990094| +Environmental Geosciences,AAPG/Datapages,10759565|15260984 +Environmental Geotechnics,Thomas Telford Ltd.,2051803X +Environmental Hazards,Informa UK (Taylor & Francis),17477891|18780059 +Environmental Health,Springer (Biomed Central Ltd.),1476069X|1476069X +Environmental Health and Preventive Medicine,Springer-Verlag,1342078X|13474715 +Environmental Health and Toxicology,The Korean Society of Environmental Health and Toxicology,22336567 +Environmental Health Insights,"""Libertas Academica, Ltd.""",11786302 +Environmental Health Perspectives,Environmental Health Perspectives,00916765|15529924 +Environmental Health Review,Canadian Institute of Public Health Inspectors,03196771| +Environmental History,Oxford University Press,10845453|19308892 +Environmental History Review,Oxford University Press,10534180| +Environmental Impact Assessment Review,Elsevier ,01959255| +Environmental Innovation and Societal Transitions,Elsevier ,22104224| +Environmental Justice,Mary Ann Liebert,19394071|19375174 +Environmental Law & Management,Wiley Blackwell (John Wiley & Sons),10676058|10990941 +Environmental Law and Policy,Kangwon National University Institute of Comparative Legal Studies,19763743| +Environmental Law Review,SAGE Publications,14614529|17405564 +Environmental Letters,Informa UK (Taylor & Francis),00139300| +Environmental Management,Springer-Verlag,0364152X|14321009 +Environmental Management and Health,Emerald (MCB UP ),09566163|00000000 +Environmental Management and Sustainable Development,"""Macrothink Institute, Inc.""",21647682 +Environmental Microbiology,Wiley Blackwell (Blackwell Publishing),14622912|14622920 +Environmental Microbiology Reports,Wiley Blackwell (Blackwell Publishing),17582229|17582229 +Environmental Modeling & Assessment,Springer-Verlag,14202026|15732967 +Environmental Modelling & Software,Elsevier ,13648152| +Environmental Monitoring and Assessment,Springer-Verlag,01676369|15732959 +Environmental Mutagen Research,The Japanese Environmental Mutagen Society,09100865|18807054 +Environmental Mutagenesis,Wiley Blackwell (John Wiley & Sons),01922521|1930238X +Environmental Nanotechnology Monitoring & Management,Elsevier ,22151532| +Environmental Philosophy,Philosophy Documentation Center,17180198| +Environmental Policy and Governance,Wiley Blackwell (John Wiley & Sons),1756932X|17569338 +Environmental Policy and Law,IOS Press,0378777X|18785395 +Environmental Politics,Informa UK (Taylor & Francis),09644016|17438934 +Environmental Pollution,Elsevier ,02697491| +Environmental Pollution (1970),Elsevier ,00139327| +Environmental Pollution Series A Ecological and Biological,Elsevier ,01431471| +Environmental Pollution Series B Chemical and Physical,Elsevier ,0143148X| +Environmental Practice,Cambridge University Press,14660466|14660474 +Environmental Processes,Springer-Verlag,21987491|21987505 +Environmental Progress,Wiley Blackwell (John Wiley & Sons),02784491|15475921 +Environmental Progress & Sustainable Energy,Wiley Blackwell (John Wiley & Sons),19447442|19447450 +Environmental Psychology and Nonverbal Behavior,Springer-Verlag,03613496| +Environmental Quality Management,Wiley Blackwell (John Wiley & Sons),10881913|15206483 +Environmental Research,Elsevier ,00139351|10960953 +Environmental Research Engineering and Management,Publishing House Technologija,13921649|20292139 +Environmental Research Journal,Science Alert,19945396| +Environmental Research Letters,IOP Publishing,17489326 +Environmental Review ER,Oxford University Press,01472496| +Environmental Reviews,Canadian Science Publishing,11818700|12086053 +Environmental Science & Policy,Elsevier ,14629011| +Environmental Science & Technology,American Chemical Society,0013936X|15205851 +Environmental Science & Technology Letters,American Chemical Society,23288930|23288930 +Environmental Science and Pollution Research,Springer-Verlag,09441344|16147499 +Environmental Science Nano,The Royal Society of Chemistry,20518153|20518161 +Environmental Science Processes & Impacts,The Royal Society of Chemistry,20507887|20507895 +Environmental Science Water Research & Technology,The Royal Society of Chemistry,20531400|20531419 +Environmental Sciences,"""Hikari, Ltd.""",1314765X|1314765X +Environmental Sciences,Informa UK (Taylor & Francis),15693430|17444225 +Environmental Sciences Europe,Springer (Biomed Central Ltd.),21904715|21904715 +Environmental Semeiotics,diaNet,19713460 +Environmental Sociology,Informa UK (Taylor & Francis),23251042 +Environmental Software,Elsevier ,02669838| +ENVIRONMENTAL SYSTEMS RESEARCH,Japan Society of Civil Engineers,09150390|18848117 +ENVIRONMENTAL SYSTEMS RESEARCH,Springer (Biomed Central Ltd.),21932697|21932697 +Environmental Technology,Informa UK (Taylor & Francis),09593330|1479487X +Environmental Technology & Innovation,Elsevier ,23521864| +Environmental Technology Letters,Informa UK (Taylor & Francis),01432060| +Environmental Technology Reviews,Informa UK (Taylor & Francis),21622515|21622523 +Environmental Toxicology,Wiley Blackwell (John Wiley & Sons),15204081|15227278 +Environmental Toxicology and Chemistry,Wiley Blackwell (John Wiley & Sons),07307268|15528618 +Environmental Toxicology and Pharmacology,Elsevier ,13826689| +Environmental Toxicology and Water Quality,Wiley Blackwell (John Wiley & Sons),10534725|10982256 +Environmental Values,White Horse Press ,09632719|17527015 +Environments,MDPI AG,20763298 +Environmetrics,Wiley Blackwell (John Wiley & Sons),11804009|1099095X +Environnement urbain,Consortium Erudit,19164645 +Enyne Cycloisomerization,Thieme Publishing Group,20300166 +Enzyme and Microbial Technology,Elsevier ,01410229| +Enzyme Engineering,OMICS Publishing Group,23296674 +Enzyme Research,Hindawi Publishing Corporation (Sage-Hindawi Access to Research),20900406|20900414 +Eoa kai Esperia,National Documentation Centre,11062614|22417540 +Eolas The Journal of the American Society of Irish Medieval Studies,JSTOR,19312539| +EOMUNYEONGU,Journal of the Research Society of Language and Literature,12250783| +EONEOHAG,The Linguistic Society of Korea,12257494| +Eos Transactions American Geophysical Union,American Geophysical Union,00963941|23249250 +EPA Newsletter,European Paediatric Association,23088540 +EPE Journal,Informa UK (Taylor & Francis),09398368|23769319 +Ephemerides Theologicae Lovanienses,Peeters Publishers,139513 +Epidemics,Elsevier ,17554365| +Epidemiologia e Psichiatria Sociale,Cambridge University Press,1121189X|20381816 +Epidemiologia e psichiatria sociale Monograph Supplement,Cambridge University Press,18274331|18274331 +Epidemiologia e Serviços de Saúde,Instituto Evandro Chagas,16794974| +Epidemiologic Methods,Walter de Gruyter GmbH,21949263|2161962X +Epidemiologic Perspectives & Innovations,Springer (Biomed Central Ltd.),17425573| +Epidemiologic Reviews,Oxford University Press,0193936X|14786729 +Epidemiology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10443983| +Epidemiology and Health,Korean Society of Epidemiology (KAMJE),20927193 +Epidemiology and Infection,Cambridge University Press,09502688|14694409 +Epidemiology and Psychiatric Sciences,Cambridge University Press,20457960|20457979 +Epidemiology Open Access,OMICS Publishing Group,21611165 +Epidemiology Reports,Herbert Publications,20549911 +Epidemiology Research International,Hindawi Publishing Corporation,20902972|20902980 +Epigenetic Diagnosis & Therapy,Bentham Science,22140832| +Epigenetics,Landes Bioscience,15592294|15592308 +Epigenetics & Chromatin,Springer (Biomed Central Ltd.),17568935|17568935 +Epigenetics in Cancer,De Gruyter Open Sp. z o.o. ,22991018 +Epigenetics of Degenerative Diseases,De Gruyter Open Sp. z o.o. ,22991069 +Epigenomics,Future Medicine,17501911|1750192X +Epígrafe,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,23188855 +Epilepsia,Wiley Blackwell (Blackwell Publishing),00139580|15281157 +Èpilepsiâ i paroksizmal’nye sostoâniâ,IRBIS,20778333|23114088 +Epilepsy & Behavior,Elsevier ,15255050|15255069 +Epilepsy & Behavior Case Reports,Elsevier ,22133232| +Epilepsy & Seizure,The Japan Epilepsy Society,18825567 +Epilepsy Currents,American Epilepsy Society,15357597|15357597 +Epilepsy Research,Elsevier ,09201211| +Epilepsy Research and Treatment,Hindawi Publishing Corporation,20901348|20901356 +Epileptology,Elsevier ,22128220| +Episodes,International Union of Geological Sciences,07053797|07053797 +Episteme,Cambridge University Press,17423600|17500117 +EPISTEMOLOGIA,Franco Angeli,03929760|1825652X +Épistémologiques,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,15177823|19823568 +Epistemology & Philosophy of Science,Philosophy Documentation Center,1811833X| +Épités - Épitészettudomány,Akademiai Kiado Zrt.,00139661|15882764 +Epitoanyag-Journal of Silicate Based and Composite Materials,SZTE Hungarian Scientific Society of the Silicate Industry,0013970X|20644477 +EPJ Applied Metamaterials,EDP Sciences,22722394 +EPJ Data Science,Springer-Verlag,21931127|21931127 +EPJ direct,Springer-Verlag,14353725|14353725 +EPJ Nonlinear Biomedical Physics,Springer (Biomed Central Ltd.),21950008|21950008 +EPJ Nuclear Sciences & Technologies,EDP Sciences,24919292 +EPJ Photovoltaics,EDP Sciences,21050716 +EPJ Quantum Technology,Springer-Verlag,21960763|21960763 +EPJ Techniques and Instrumentation,Springer-Verlag,21957045|21957045 +EPJ Web of Conferences,EDP Sciences,2100014X +EPL (Europhysics Letters),IOP Publishing - Europhysics Letters,02955075|12864854 +Epoché,Philosophy Documentation Center,10851968| +Epos Revista de filología,UNED - Universidad Nacional de Educacion a Distancia,0213201X|22553495 +Epoxidation,Thieme Publishing Group,20500149 +Epoxidation with Hydrogen Peroxide,Thieme Publishing Group,20500378 +Epoxide Ring Opening with Carbon Nucleophiles,Thieme Publishing Group,20600445 +Epoxide Ring Opening with Nitrogen Nucleophiles,Thieme Publishing Group,20600429 +Epoxy,De Gruyter Open Sp. z o.o. ,22996842 +EPPO Bulletin,Wiley Blackwell (Blackwell Publishing),02508052|13652338 +EPTA Bulletin,Informa UK (Taylor & Francis),07746210| +Equal Opportunities International,Emerald (MCB UP ),02610159| +Equality Diversity and Inclusion An International Journal,Emerald (MCB UP ),20407149| +Equidad y Desarrollo,Universidad de la Salle,16927311|23898844 +Equilibrium,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,1689765X|23533293 +Equilibrium Research,Japan Society for Equilibrium Research,03855716|1882577X +Equine and Comparative Exercise Physiology,Cambridge University Press,1479070X|00000000 +Equine Health,Mark Allen Group,20479867| +Equine Veterinary Education,Wiley Blackwell (Blackwell Publishing),09577734|00000000 +Equine Veterinary Journal,Wiley Blackwell (Blackwell Publishing),04251644|20423306 +Equity & Excellence in Education,Informa UK (Taylor & Francis),10665684|15473457 +ERA Forum,Springer-Verlag,16123093|18639038 +Erasmus Law Review,Boom Uitgevers Den Haag,22102671| +Erasmus of Rotterdam Society Yearbook,Brill Academic Publishers,02762854|18749275 +Erciyes İletişim Dergisi,Erciyes Iletisim Dergisi,13083198|13083198 +Erciyes Tıp Dergisi/Erciyes Medical Journal,AVES Publishing Co.,1300199X|21471789 +Erciyes Üniversitesi İktisadi ve İdari Bilimler Fakültesi Dergisi,Erciyes University Journal of Faculty of Economics and Administrative Sciences,13013688| +Erdészettudományi Közlemények,Erdeszettudomanyi Kozlemenyek,20626711| +Erdkunde,Erdkunde,00140015| +Erfahrungsheilkunde,Thieme Publishing Group,00140082|14394294 +ERGA-LOGOI - Rivista di storia letteratura diritto e culture dell’antichità,Led Edizioni Universitarie,22809678|22823212 +Ergebnisse der Physiologie,Springer-Verlag,00802042| +Ergo,De Gruyter Open Sp. z o.o. ,18022006|18022170 +Ergo an Open Access Journal of Philosophy,University of Michigan Library,23304014 +Ergodic Theory and Dynamical Systems,Cambridge University Press,01433857|14694417 +Ergonomics,Informa UK (Taylor & Francis),00140139|13665847 +Ergonomics in Design The Quarterly of Human Factors Applications,SAGE Publications,10648046| +Ergonomics SA,African Journals Online ,10102728| +ergopraxis,Thieme Publishing Group,14392283|18695507 +ergoscience,Thieme Publishing Group,18616348|18616356 +Ería,Universidad de Oviedo,02110563| +ÉRIU,Royal Irish Academy,03320758|20090056 +ERJ Open Research,European Respiratory Society ,23120541 +Erkenntnis,Springer-Verlag,01650106|15728420 +Ernährung & Medizin,Thieme Publishing Group,14391635|14389002 +Ernährung - Wissenschaft und Praxis,Springer-Verlag,18643825|18643825 +Ernährungsforschung,Informa UK (Taylor & Francis),00711179| +Erudition and the Republic of Letters,Brill Academic Publishers,24055050|24055069 +Erwachsenenbildung,"""Vandenhoeck & Ruprecht GmbH & Co, KG""",03417905|23654953 +Erwerbs-Obstbau,Springer-Verlag,00140309|14390302 +Erziehungswissenschaft,Springer-Verlag,09385363|18625231 +Erzincan Üniversitesi Eğitim Fakültesi Dergisi,Erzincan University Journal of Education Faculty,21487510|21487758 +Erzincan Üniversitesi Fen Bilimleri Enstitüsü Dergisi,Erzincan Universitesi Fen Bilimleri Ensitusu Dergisi,13079085|21494584 +ESAIM Control Optimisation and Calculus of Variations,EDP Sciences,12928119|12623377 +ESAIM Mathematical Modelling and Numerical Analysis,EDP Sciences,0764583X|12903841 +ESAIM Probability and Statistics,EDP Sciences,12928100|12623318 +ESAIM Proceedings,EDP Sciences,1270900X +ESAIM Proceedings and Surveys,EDP Sciences,22673059 +ESARBICA Journal Journal of the Eastern and Southern Africa Regional Branch of the International Council on Archives,African Journals Online ,3764753 +Esboços - Revista do Programa de Pós-Graduação em História da UFSC,Universidade Federal de Santa Catarina,1414722X|21757976 +ESC English Studies in Canada,Muse - Johns Hopkins University Press,19134835 +ESC Heart Failure,Wiley Blackwell (John Wiley & Sons),20555822| +Escenarios,Universidad Autonoma del Caribe,17941180|23393300 +Escola Anna Nery,GN1 Genesis Network,14148145| +Escritos,Universidad Pontificia Bolivariana,01201263|23900032 +Escritos de Psicología / Psychological Writings,Universidad de Malaga Faculty of Psychology,19893809 +Escritura e Imagen,Universidad Complutense de Madrid,18855687|19882416 +ESENSI,E-Journal System Portal of Syarif Hidayatullah State Islamic University,20872038|24611182 +Esferas,Revista Esferas Interprogramas de Pos-graduacao em Comunicacao do Centro-Oeste,23167122|24466190 +ESHRE Monographs,Oxford University Press,1477741X|14778378 +ESIC MARKET Economic and Business Journal,ESIC Business and Marketing School,02121867|19893558 +Eskişehir Osmangazi Üniversitesi Sosyal Bilimler Dergisi,Eskisehir Osmangazi University Journal of Social Sciences,13029703| +Eslavística Complutense,Universidad Complutense de Madrid,15781763|19882912 +Esophagus,Springer-Verlag,16129059|16129067 +Espace géographique,PERSEE Program,00462497|17762936 +Espace populations sociétés,PERSEE Program,07557809|21043752 +Espaces et sociétés,CAIRN,00140481|19618700 +Espaces Temps,PERSEE Program,03393267| +Espacio Tiempo y Educación,FahrenHouse,23407263 +Espacio Tiempo y Forma Serie I Prehistoria y Arqueología,UNED - Universidad Nacional de Educacion a Distancia,11317698|23401354 +Espacio Tiempo y Forma Serie II Historia Antigua,UNED - Universidad Nacional de Educacion a Distancia,11301082|23401370 +Espacio Tiempo y Forma Serie III Historia Medieval,UNED - Universidad Nacional de Educacion a Distancia,02149745|23401362 +Espacio Tiempo y Forma Serie IV Historia Moderna,UNED - Universidad Nacional de Educacion a Distancia,1131768X| +Espacio Tiempo y Forma Serie V Historia Contemporánea,UNED - Universidad Nacional de Educacion a Distancia,11300124| +Espacio Tiempo y Forma Serie VI Geografía,UNED - Universidad Nacional de Educacion a Distancia,11302968| +Espacio Tiempo y Forma Serie VII Historia del Arte,UNED - Universidad Nacional de Educacion a Distancia,11304715| +Espaço e Economia,OpenEdition,23177837 +Espaço Jurídico Journal of Law [EJJL] - Qualis A2,Universidade do Oeste de Santa Catarina,15195899|21797943 +ESPERIENZE D IMPRESA,Franco Angeli,19715293|22833374 +Espiral Revista de Docencia e Investigación,Universidad Santo Tomas,2256151X|23899719 +Esprit,CAIRN,00140759|21114579 +ESQ A Journal of the American Renaissance,Muse - Johns Hopkins University Press,1935021X +Essaim,CAIRN,1287258X|17762839 +Essays in Biochemistry,Portland Press,00711365|17441358 +Essays in Criticism,Oxford University Press,00140856|14716852 +Essays in Medieval Studies,Muse - Johns Hopkins University Press,15384608 +Essays in Philosophy,Pacific University Library,15260569 +Essays in Romanticism,Liverpool University Press,20496699|20496702 +Essays in the Philosophy of Humanism,Equinox Publishing,15227340|20528388 +Estetologia Medyczna i Kosmetologia,Instytut Dermatologii Radoslaw Spiewak,20842007 +Estilos da Clinica,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,14157128|19811624 +Estonian Journal of Archaeology,Estonian Academy Publishers,14062933| +Estonian Journal of Earth Sciences,Estonian Academy Publishers,17364728| +Estonian Journal of Ecology,Estonian Academy Publishers,1736602X| +Estonian Journal of Engineering,Estonian Academy Publishers,17366038| +Estrategias,Universidad Cooperativa de Colombia - UCC,17941652|23899247 +Estuaries,Springer-Verlag,01608347| +Estuaries and Coasts,Springer-Verlag,15592723|15592731 +Estuarine and Coastal Marine Science,Elsevier ,03023524| +Estuarine Coastal and Shelf Science,Elsevier ,02727714|10960015 +Estudios atacameños,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7181043 +Estudios constitucionales,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7185200 +Estudios de Cultura Maya,Instituto de Investigaciones Filologicas,01852574| +Estudios de derecho,Universidad de Antioquia,01201867| +Estudios de Deusto,University of Deusto,04234847|23869062 +Estudios de economía,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7185286 +Estudios de Filosofía,Universidad de Antioquia,01213628|2256358X +Estudios de Historia Moderna y Contemporánea de México,Elsevier ,01852620| +Estudios de Historia Novohispana,Elsevier ,18709060| +Estudios de Literatura Colombiana,Universidad de Antioquia,01234412| +Estudios de Psicología,Informa UK (Taylor & Francis),02109395|15793699 +Estudios de Traducción,Universidad Complutense de Madrid,2174047X|22541756 +Estudios filológicos,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,00711713|00711713 +Estudios Geográficos,Departmento de Publicaciones del CSIC,00141496|19888546 +Estudios Geológicos,Departmento de Publicaciones del CSIC,03670449|19883250 +Estudios Gerenciales,Elsevier ,01235923| +Estudios Humanísticos Filología,University of Leon,02131382|2444023X +Estudios Humanísticos Historia,University of Leon,16960300|24440248 +Estudios Ingleses de la Universidad Complutense,Universidad Complutense de Madrid,11330392|19883005 +Estudios Internacionales,Universidad de Chile,07160240|07193769 +Estudios Medievales Hispánicos,Servicio de Publicaciones de la Universidad Autonoma de Madrid,22542906| +Estudios pedagógicos (Valdivia),SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7180705 +Estudios Políticos,Elsevier ,01851616| +Estudios Políticos (Medellín),Universidad de Antioquia,01215167| +Estudios sobre Educación,Universidad de Navarra,15787001|23866292 +Estudios sobre el Mensaje Periodístico,Universidad Complutense de Madrid,11341629|19882696 +Estudios Sociales,Universidad Nacional del Litoral,22506950 +Estudios Socio-Jurídicos,Colegio Mayor de Nuestra Senora del Rosario,01240579|21454531 +Estudis de Literatura Oral Popular / Studies in Oral Folk Literature,Universitat Rovira I Virgili,20147996 +Estudos Afro-Asiáticos,SciELO,0101546X|0101546X +Estudos Avançados,SciELO,01034014|01034014 +Estudos de Biologia,Pontificia Universidade Catolica do Parana - PUCPR,01022067| +Estudos de Conservação e Restauro,"""Escola das Artes, Universidade Catolica Portuguesa""",16472098 +Estudos de Lingüística Galega,University of Santiago de Compostela,18892566|1989578X +Estudos de Literatura Brasileira Contemporânea,SciELO,23164018|23164018 +Estudos de Nietzsche,Pontificia Universidade Catolica do Parana - PUCPR,21793441| +Estudos de Psicologia,GN1 Genesis Network,16784669| +Estudos de Psicologia (Campinas),SciELO,19820275|0103166X +Estudos de Psicologia (Campinas),SciELO,0103166X|0103166X +Estudos de Psicologia (Natal),SciELO,1413294X|1413294X +Estudos de Religião,Instituto Metodista de Ensino Superior,21761078 +Estudos do CEPE,APESC - Associacao Pro-Ensino em Santa Cruz do Sul,19826729 +Estudos e Pesquisas em Psicologia,Universidade do Estado do Rio de Janeiro UERJ,18084281 +Estudos Econômicos (São Paulo),SciELO,01014161|01014161 +Estudos em Avaliação Educacional,Fundacao Carlos Chagas,01036831|1984932X +Estudos em Comunicação,Universidade da Beira Interior,16464974 +Estudos em Jornalismo e Mídia,Universidade Federal de Santa Catarina,18066496|19846924 +Estudos Geológicos,Estudos Geologicos,19808208 +Estudos Germânicos,Faculdade de Letras da UFMG,0101837X| +Estudos Históricos (Rio de Janeiro),SciELO,01032186|21781494 +Estudos Ibero-Americanos,EDIPUCRS,01014064|1980864X +Estudos Interdisciplinares em Psicologia,Universidade Estadual de Londrina,22366407 +Estudos Portugueses,Faculdade de Letras da UFMG,24470546| +Estudos Semióticos,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,19804016|19804016 +Estudos Sociedade e Agricultura,SciELO,14130580 +Estudos Tecnológicos em Engenharia,Universidade do Vale do Rio Dos Sinos - UNISINOS,18087310 +ethic - An international Journal for Moral Phylosophy,Universidade Federal de Santa Catarina,16772954|16772954 +Ethical Human Psychology and Psychiatry,Springer Publishing Company,15594343| +Ethical Human Psychology and Psychiatry,Springer Publishing Company,1523150X|00000000 +Ethical Perspectives,Peeters Publishers,13700049 +Ethical Theory and Moral Practice,Springer-Verlag,13862820|15728447 +Ethics,The University of Chicago Press,00141704|1539297X +Ethics & Behavior,Informa UK (Taylor & Francis),10508422|15327019 +Ethics & Global Politics,Co-Action Publishing,16544951|16546369 +Ethics & International Affairs,Cambridge University Press,08926794|17477093 +Ethics & the Environment,Indiana University Press,10856633|15355306 +Ethics and Animals,"""Robert E. Kennedy Library, Cal Poly""",01979094|01979094 +Ethics and Education,Informa UK (Taylor & Francis),17449642|17449650 +Ethics and Information Technology,Springer-Verlag,13881957|15728439 +Ethics and Social Welfare,Informa UK (Taylor & Francis),17496535|17496543 +Ethics in Biology Engineering and Medicine An International Journal,Begell House Inc.,21518068| +Ethics in Biology Engineering and Medicine An International Journal,Begell House Inc.,2151805X| +Ethics in Science and Environmental Politics,Inter-Research Science Center,18635415|16118014 +Ethics Medicine and Public Health,Elsevier ,23525525| +Ethics Place & Environment,Informa UK (Taylor & Francis),1366879X|14696703 +Ethics Policy & Environment,Informa UK (Taylor & Francis),21550085|21550093 +Ethik in der Medizin,Springer-Verlag,09357335|14371618 +Ethiopian Journal of Biological Sciences,African Journals Online ,18198678 +Ethiopian Journal of Business and Economics (The),African Journals Online ,23119772|24102393 +Ethiopian Journal of Development Research,African Journals Online ,3780813 +Ethiopian Journal of Economics,African Journals Online ,19933681 +Ethiopian Journal of Education and Sciences,African Journals Online ,19988907 +Ethiopian Journal of Environmental Studies and Management,African Journals Online ,19980507 +Ethiopian Journal of Health Development,African Journals Online ,10216790 +Ethiopian Journal of Health Sciences,African Journals Online ,10291857|10291857 +Ethiopian Journal of Science and Technology,African Journals Online ,18163378|23126019 +Ethiopian Journal of the Social Sciences and Humanities,African Journals Online ,18104487 +Ethiopian Pharmaceutical Journal,African Journals Online ,10295933 +Ethiopian Veterinary Journal,African Journals Online ,16836324|22215034 +Éthique & Santé,Elsevier ,17654629| +Éthique Publique,OpenEdition,14880946|19297017 +Ethische Perspectieven,Peeters Publishers,7786069 +Ethnic and Racial Studies,Informa UK (Taylor & Francis),01419870|14664356 +Ethnicities,SAGE Publications,14687968|00000000 +Ethnicity & Disease,ISHIB (Ethnicity & Disease),1049510X|19450826 +Ethnicity and Health,Informa UK (Taylor & Francis),13557858|14653419 +Ethnicity and Inequalities in Health and Social Care,Emerald (MCB UP ),17570980|20428367 +Ethnicity and Race in a Changing World,Manchester University Press,17588685 +Ethnoarchaeology,Maney Publishing,19442890|19442904 +Ethnobiology and Conservation,Universidade Estadual da Paraiba/Universidade Federal Rural de Pernambuco,22384782 +Ethnobiology Letters,Society of Ethnobiology,21598126 +Ethnobotany Research and Applications,Botanical Research Institute of Texas,15473465 +Ethnographic Praxis in Industry Conference Proceedings,Wiley Blackwell (Blackwell Publishing),1559890X|15598918 +Ethnography,SAGE Publications,14661381|17412714 +Ethnography & Education,Informa UK (Taylor & Francis),17457823|17457831 +Ethnohistory,Duke University Press,00141801|15275477 +Ethnologia Actualis,De Gruyter Open Sp. z o.o. ,13397877 +Ethnologie française,CAIRN,00462616|21010064 +Ethnologies,Consortium Erudit,14815974|17080401 +Ethnology,JSTOR,00141828| +Ethnomusicology,University of Illinois Press,00141836|00141836 +Ethnomusicology Forum,Informa UK (Taylor & Francis),17411912|17411920 +Ethnopolitics,Informa UK (Taylor & Francis),17449057|17449065 +Ethnos,Informa UK (Taylor & Francis),00141844|1469588X +Ethology,Wiley Blackwell (Blackwell Publishing),01791613|14390310 +Ethology and Sociobiology,Elsevier ,01623095| +Ethology Ecology & Evolution,Informa UK (Taylor & Francis),03949370|18287131 +Ethos,Wiley Blackwell (Blackwell Publishing),00912131|15481352 +Etikk i praksis - Nordic Journal of Applied Ethics,Norwegian University of Science and Technology Library,18903991|18904009 +ETIKONOMI,E-Journal System Portal of Syarif Hidayatullah State Islamic University,14128969|24610771 +Etnografica,OpenEdition,08736561|21822891 +Etnolingwistyka,Wydawnictwo Uniwersytetu Marii Curie-SkÅ?odowskiej w Lublinie,08608032| +Etnološka tribina,Croatian Ethnological Society,03511944|18489540 +ETP International Journal of Food Engineering,EJournal Publishing,23013664| +ETRI Journal,Electronics and Telecommunications Research Institute,12256463| +Etruscan Studies,Walter de Gruyter GmbH,10801960|21638217 +ETS Research Bulletin Series,Wiley Blackwell (John Wiley & Sons),04246144| +ETS Research Report Series,Wiley Blackwell (John Wiley & Sons),23308516| +Études arméniennes contemporaines,OpenEdition,22695281|24251682 +Études britanniques contemporaines,OpenEdition,11684917|22715444 +Études byzantines,PERSEE Program,02582880| +Études canadiennes / Canadian Studies,OpenEdition,01531700|24294667 +Études caribéennes,OpenEdition,17790980|1961859X +Études d histoire religieuse,Consortium Erudit,1193199X|19206267 +Études de communication,OpenEdition,21010366|21010366 +Études de Langue et Littérature Françaises,The French Language and Literature Association of Korea,12264350| +Études de lettres,OpenEdition,00142026|22965084 +Études Épistémè,OpenEdition,16340450 +Études et chronique de démographie historique,PERSEE Program,11471832| +Etudes et conjoncture - Economie mondiale,PERSEE Program,11493755| +Etudes et conjoncture - Institut national de la statistique et des études économiques,PERSEE Program,04235681| +Etudes et conjoncture - Union française / Economie française,PERSEE Program,11493720| +Études et dossiers (Institut d études judiciaires de Rennes),PERSEE Program,20215819| +Études finno-ougriennes,OpenEdition,00712051|22751947 +Études françaises,Consortium Erudit,00142085|14921405 +Études Germaniques,CAIRN,00142115|24265543 +Études internationales,Consortium Erudit,00142123|17037891 +Études irlandaises,OpenEdition,0183973X|22598863 +Études Lawrenciennes,OpenEdition,09945490|22724001 +Études littéraires,Consortium Erudit,0014214X|17089069 +Études littéraires africaines,Consortium Erudit,07694563| +Études mongoles sibériennes centrasiatiques et tibétaines,OpenEdition,07665075|21010013 +Études Océan Indien,OpenEdition,02460092|22607730 +Études Phénoménologiques,Philosophy Documentation Center,07737912| +Études platoniciennes,OpenEdition,22751785 +Études Ricoeuriennes / Ricoeur Studies,"""University Library System, University of Pittsburgh""",21567808 +Études rurales,PERSEE Program,00142182|1777537X +Etudes sur la mort,CAIRN,11570466|19618654 +Études théologiques et religieuses,CAIRN,00142239|22729011 +Etudes Tsiganes,CAIRN,00142247|24266078 +Études/Inuit/Studies,Consortium Erudit,07011008|17085268 +EU agrarian Law,De Gruyter Open Sp. z o.o. ,13386891|13386891 +EU Studies in Japan,The European Union Studies Association - Japan,18843123|18842739 +Eudora Welty Review,Muse - Johns Hopkins University Press,2165266X +Eugenics Quarterly,Informa UK (Taylor & Francis),00972762| +Eukaryotic Cell,American Society for Microbiology,15359778|15359786 +EuPA Open Proteomics,Elsevier ,22129685| +Euphytica,Springer-Verlag,00142336|15735060 +EURASIA Journal of Mathematics Science and Technology Education,Eurasian Society of Educational Research,13058215|13058223 +Eurasian Academy of Sciences Social Sciences Journal,Eurasian Academy of Sciences,21491348|21491348 +Eurasian Art & Humanities Journal,Eurasian Academy of Sciences,21493537 +Eurasian Business & Economics Journal,Eurasian Academy of Sciences,21493545 +Eurasian Chemico-Technological Journal,Institute of Combustion Problems,15623920| +Eurasian Econometrics Statistics & Emprical Economics Journal,Eurasian Academy of Sciences,21493561 +Eurasian Economic Review,Springer-Verlag,13094297|21474281 +Eurasian Education & Literature Journal,Eurasian Academy of Sciences,21493510 +Eurasian Geography and Economics,Informa UK (Taylor & Francis),15387216|19382863 +Eurasian Journal of Biosciences,Cevre Koruma ve Arastirma Vakfi,13079867 +Eurasian Journal of Business and Economics,International Ataturk Alatoo University,16945948|16945972 +Eurasian Journal of Business and Management,Eurasian Publications,21480206 +Eurasian Journal of Economics and Finance,Eurasian Publications,21480192 +Eurasian Journal of Educational Research,Ani Publishing and Consulting Company,1302597X|1302597X +Eurasian Journal of Emergency Medicine,AVES Publishing Co.,21495807|21496048 +Eurasian Journal of Medicine,AVES Publishing Co.,13088742|13088734 +Eurasian Journal of Pulmonology,AVES Publishing Co.,21483620|21485402 +Eurasian Journal of Social Sciences,Eurasian Publications,21480214 +EURASIAN JOURNAL OF SOIL SCIENCE (EJSS),Eurasian Journal of Soil Science,21474249 +Eurasian Journal of Veterinary Sciences,Eurasian Journal of Veterinary Sciences,21461953| +Eurasian Mining,Ore and Metals Publishing House,20720823| +Eurasian Soil Science,Pleiades Publishing,10642293|1556195X +EurasianUnionofScientists,"""Science and Education, Ltd.""",24116467| +EURASIP Journal on Advances in Signal Processing,Springer (Biomed Central Ltd.),11108657|16870433 +EURASIP Journal on Advances in Signal Processing,Springer (Biomed Central Ltd.),16876180|16876180 +EURASIP Journal on Applied Signal Processing,Hindawi Publishing Corporation,11108657|16870433 +EURASIP Journal on Audio Speech and Music Processing,Springer (Biomed Central Ltd.),16874714|16874722 +EURASIP Journal on Bioinformatics and Systems Biology,Springer (Biomed Central Ltd.),16874145|16874153 +EURASIP Journal on Embedded Systems,Springer (Biomed Central Ltd.),16873955|16873963 +EURASIP Journal on Image and Video Processing,Springer (Biomed Central Ltd.),16875176|16875281 +EURASIP Journal on Information Security,Springer (Biomed Central Ltd.),16874161|1687417X +EURASIP Journal on Wireless Communications and Networking,Springer (Biomed Central Ltd.),16871472|16871499 +EURE (Santiago),SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,02507161|02507161 +Euro III-Vs Review,Elsevier ,09593527| +EURO Journal on Computational Optimization,Springer-Verlag,21924406|21924414 +EURO Journal on Decision Processes,Springer-Verlag,21939438|21939446 +EURO Journal on Transportation and Logistics,Springer-Verlag,21924376|21924384 +EURO-NanoTox-Letters,Walter de Gruyter GmbH,20748515 +Euroasian Journal of Hepato-Gastroenterology,Jaypee Brothers Medical Publishing,22315047|22315128 +EuroChoices,Wiley Blackwell (Blackwell Publishing),14780917|1746692X +EuroIntervention,Europa Digital and Publishing,1774024X|19696213 +EuroMed J of Management,Inderscience Enterprises Ltd.,20551703|20551711 +EuroMed Journal of Business,Emerald (MCB UP ),14502194| +Euromicro Newsletter,Elsevier ,03031268| +Europa Orientalis Studia z Dziejów Europy Wschodniej i Państw Bałtyckich,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,20818742| +Europa XXI,"""Institute of Geography and Spatial Organization, Polish Academy of Sciences""",14297132| +Europace,Oxford University Press,10995129|15322092 +Europäisches Journal für Minderheitenfragen,Springer-Verlag,18651089|18651097 +Europe Asia Studies,Informa UK (Taylor & Francis),09668136|14653427 +European Accounting Review,Informa UK (Taylor & Francis),09638180|14684497 +European Actuarial Journal,Springer-Verlag,21909733|21909741 +European Addiction Research,S. Karger AG,10226877|14219891 +European Agrophysical Journal,European Agrophysical Institut,22967664|2296763X +European Annals of Otorhinolaryngology Head and Neck Diseases,Elsevier ,18797296| +European Applied Sciences,"""Science and Education, Ltd.""",21952183| +European Archives of Oto-Rhino-Laryngology,Springer-Verlag,09374477|14344726 +European Archives of Paediatric Dentistry,Springer-Verlag,18186300|19969805 +European Archives of Psychiatry and Clinical Neuroscience,Springer-Verlag,09401334|14338491 +European Archives of Psychiatry and Neurological Sciences,Springer-Verlag,0175758X| +European Biophysics Journal,Springer-Verlag,01757571|14321017 +European Biotechnology Newsletter,Elsevier ,07652046| +European Business Law Review,Springer (Kluwer Academic Publishers),09596941| +European Business Organization Law Review,Springer-Verlag,15667529|17416205 +European Business Review,Emerald (MCB UP ),0955534X|00000000 +European Cardiology Review,"""Medical Media Communications LTD, T/A Radcliffe Cardiology""",17583756| +European Child & Adolescent Psychiatry,Springer-Verlag,10188827|1435165X +European Clinical Respiratory Journal,Co-Action Publishing,20018525 +European Clinics in Obstetrics and Gynaecology,Springer-Verlag,16133412|16133420 +European Comic Art,Berghahn Books,17543797|17543800 +European Company and Financial Law Review,Walter de Gruyter GmbH,16132548|16132556 +European Competition Journal,Informa UK (Taylor & Francis),17441056|17578396 +European Constitutional Law Review,Cambridge University Press,15740196|17445515 +European Countryside,De Gruyter Open Sp. z o.o. ,18038417 +European Criminal Law Review,Nomos Verlag,21917442|21935505 +European Demographic Information Bulletin,Springer-Verlag,00462756| +European Diabetes Nursing,Maney Publishing,15517853|15517861 +European Early Childhood Education Research Journal,Informa UK (Taylor & Francis),1350293X|17521807 +European Eating Disorders Review,Wiley Blackwell (John Wiley & Sons),10724133|10990968 +European Economic Review,Elsevier ,00142921| +European Education,Informa UK (Taylor & Francis),10564934|19447086 +European Educational Research Journal,SAGE Publications,14749041|14749041 +European Employment Law Cases,Boom Uitgevers Den Haag,18779107| +European Endocrinology,Touch Digital Media LTD.,17583772| +European Environment,Wiley Blackwell (John Wiley & Sons),09610405|10990976 +European Environmental Law Review,Springer (Kluwer Academic Publishers),09661646| +European Finance Review,Oxford University Press,13826662| +European Financial and Accounting Journal,University of Economics,18022197|18054846 +European Financial Management,Wiley Blackwell (Blackwell Publishing),13547798|1468036X +European Food Research and Technology,Springer-Verlag,14382377|14382385 +European Foreign Affairs Review,Springer (Kluwer Academic Publishers),13846299| +European Geographical Studies,Academic Publishing House Researcher,23120029|23120029 +European Geriatric Medicine,Elsevier ,18787649| +European Heart Journal,Oxford University Press,0195668X|15229645 +European Heart Journal - Cardiovascular Imaging,Oxford University Press,20472404|20472412 +European Heart Journal - Cardiovascular Pharmacotherapy,Oxford University Press,20556837|20556845 +European Heart Journal - Quality of Care and Clinical Outcomes,Oxford University Press,20585225|20581742 +European Heart Journal Acute Cardiovascular Care,SAGE Publications,20488726|20488734 +European Heart Journal Supplements,Oxford University Press,1520765X|15542815 +European History and Culture E-Books Online Collection 2012,CrossRef test user,8291985 +European History Quarterly,SAGE Publications,02656914|00000000 +European Integration Studies,Publishing House Technologija,18228402|23358831 +European J of Cross-Cultural Competence and Management,Inderscience Enterprises Ltd.,17581508|17581516 +European J of Industrial Engineering,Inderscience Enterprises Ltd.,17515254|17515262 +European J of International Management,Inderscience Enterprises Ltd.,17516757|17516765 +European Journal for Church and State Research - Revue européenne des relations Églises-État,Peeters Publishers,13705954 +European Journal for Church and State Research - Revue européenne des relations Églises-État,Peeters Publishers,13705954 +European Journal for Church and State Research - Revue européenne des relations Églises-État,Peeters Publishers,13705954 +European Journal for Education Law and Policy,Springer (Kluwer Academic Publishers),13868349| +European Journal for Person Centered Healthcare,University of Buckingham Press,20525648|20525656 +European Journal for Philosophy of Science,Springer-Verlag,18794912|18794920 +European Journal for Research on the Education and Learning of Adults,Linkoping University Electronic Press,20007426 +European Journal of Academic Research,"""Science and Education, Ltd.""",20539738| +European Journal of Ageing,Springer-Verlag,16139372|16139380 +European Journal of Agricultural Education and Extension,Informa UK (Taylor & Francis),13812335| +European Journal of Agronomy,Elsevier ,11610301| +European Journal of American Culture,Intellect,14660407|17589118 +European Journal of American Studies,OpenEdition,19919336|19919336 +European Journal of Anaesthesiology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,02650215|13652346 +European Journal of Anaesthesiology - Supplement,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,09521941| +European Journal of Applied Linguistics,Walter de Gruyter GmbH,21929521|2192953X +European Journal of Applied Mathematics,Cambridge University Press,09567925|14694425 +European Journal Of Applied Microbiology,Springer-Verlag,03402118| +European Journal of Applied Microbiology and Biotechnology,Springer-Verlag,01711741| +European Journal of Applied Physiology,Springer-Verlag,14396319|14396327 +European Journal of Applied Physiology and Occupational Physiology,Springer-Verlag,03015548|14396327 +European Journal of Archaeology,Maney Publishing,14619571|00000000 +European Journal of Arrhythmia & Electrophysiology,Touch Digital Media LTD.,20583869| +European Journal of Basic Medical Sciences,Health Sciences Researches Society,21491895 +European Journal of Basic Medical Sciences,Health Sciences Researches Society,21465665 +European Journal of Behavior Analysis,Informa UK (Taylor & Francis),15021149|2377729X +European Journal of Biochemistry,Wiley Blackwell (Blackwell Publishing),00142956|14321033 +European Journal of Bioinformatics,Whites Science Innovation Limited,20569912 +European Journal of BioMedical Research,French Sciences Publishing Group,24285544 +European Journal of Biophysics,Science Publishing Group,23291745| +European Journal of Business and Economics,Central Bohemia University,18045839|18049699 +European Journal of Business Research,International Academy of Business and Economics,19452977|23788461 +European Journal of Cancer,Elsevier ,09598049| +European Journal of Cancer (1965),Elsevier ,00142964| +European Journal of Cancer and Clinical Oncology,Elsevier ,02775379| +European Journal of Cancer Care,Wiley Blackwell (Blackwell Publishing),09615423|13652354 +European Journal of Cancer Part B Oral Oncology,Elsevier ,09641955| +European Journal of Cancer Prevention,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,09598278| +European Journal of Cancer Supplements,Elsevier ,13596349| +European Journal of Cardio-Thoracic Surgery,Oxford University Press,10107940|1873734X +European Journal of Cardio-Thoracic Surgery Supplements,Elsevier ,15674258| +European Journal of Cardiovascular Medicine,Healthcare Bulletin,20424884| +European Journal of Cardiovascular Nursing,SAGE Publications,14745151|18731953 +European Journal of Cardiovascular Prevention & Rehabilitation,SAGE Publications,17418267|17418275 +European Journal of Cell Biology,Elsevier ,01719335| +European Journal of Chemistry,European Journal of Chemistry,21532257|21532249 +European Journal of Clinical Investigation,Wiley Blackwell (Blackwell Publishing),00142972|13652362 +European Journal of Clinical Microbiology,Springer-Verlag,07222211| +European Journal of Clinical Microbiology & Infectious Diseases,Springer-Verlag,09349723|14354373 +European Journal of Clinical Nutrition,Nature Publishing Group,09543007|09543007 +European Journal of Clinical Pharmacology,Springer-Verlag,00316970|14321041 +European Journal of Combinatorics,Elsevier ,01956698|10959971 +European Journal of Commercial Contract Law,Paris Legal Publishers,18771467|18771475 +European Journal of Communication,SAGE Publications,02673231|14603705 +European Journal of Comparative Law and Governance,Brill Academic Publishers,22134506|22134514 +European Journal of Computer Science,Academic Publishing House Researcher,24122033| +European Journal of Contemporary Education,Academic Publishing House Researcher,23049650|23056746 +European Journal of Control,Elsevier ,09473580| +European Journal of Crime Criminal Law and Criminal Justice,Brill Academic Publishers,09289569|15718174 +European Journal of Criminology,SAGE Publications,14773708|00000000 +European Journal of Cultural and Political Sociology,Informa UK (Taylor & Francis),23254823|23254815 +European Journal of Cultural Studies,SAGE Publications,13675494|14603551 +European Journal Of Dental Education,Wiley Blackwell (Blackwell Publishing),13965883|16000579 +European Journal of Dentistry,Medknow Publications,13057456| +European Journal of Dentistry and Medicine,Science Alert,19963378| +EUROPEAN JOURNAL OF DEVELOPING COUNTRY STUDIES,"""International Institute for Science, Technology and Education""",26683385|26683687 +European Journal of Development Research,Nature Publishing Group - Macmillan Publishers,09578811|17439728 +European Journal of Developmental Psychology,Informa UK (Taylor & Francis),17405629|17405610 +European Journal of Drug Metabolism and Pharmacokinetics,Springer-Verlag,03787966|21070180 +European Journal of East Asian Studies,Brill Academic Publishers,15680584|15700615 +European Journal of Echocardiography,Oxford University Press,15252167|15322114 +European Journal of Ecology,Walter de Gruyter GmbH,13398474 +European Journal of Economic and Social Systems,EDP Sciences,12928895|12928909 +European Journal of Economic Studies,Academic Publishing House Researcher,23049669|23056282 +European Journal of Economics and Economic Policies Intervention,Edward Elgar Publishing,20527764|20527772 +European Journal of Education,Wiley Blackwell (Blackwell Publishing),01418211|14653435 +EUROPEAN JOURNAL OF EDUCATION AND LEARNING,"""International Institute for Science, Technology and Education""",26683318|2668361X +European Journal of Education and Psychology,Elsevier ,18888992| +European Journal of Educational Research,Eurasian Society of Educational Research,21658714|21658714 +European Journal of Electrical Engineering,Lavoisier SAS,21033641| +European Journal of Emergency Medicine,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,09699546| +European Journal of Endocrinology,Bioscientifica,08044643|1479683X +European Journal of Engineering Education,Informa UK (Taylor & Francis),03043797|14695898 +European Journal of English Studies,Informa UK (Taylor & Francis),13825577|17444233 +European Journal of Entomology,Biology Centre AS CR,12105759|18028829 +European Journal of Environment,Cevre Koruma ve Arastirma Vakfi,2146961X +European Journal of Environmental and Civil engineering,Informa UK (Taylor & Francis),19648189|21167214 +EUROPEAN JOURNAL OF ENVIRONMENTAL SCIENCES,"""Charles University in Prague, Karolinum Press""",18050174|23361964 +European Journal of Epidemiology,Springer-Verlag,03932990|15737284 +European Journal of Finance,Informa UK (Taylor & Francis),1351847X|14664364 +European Journal of Forensic Sciences,ScopeMed International Medical Journal Managment and Indexing System,21485798| +European Journal of Forest Pathology,Wiley Blackwell (Blackwell Publishing),03001237| +European Journal of Forest Research,Springer-Verlag,16124669|16124677 +European Journal of Futures Research,Springer-Verlag,21954194|21952248 +European Journal of Gastroenterology & Hepatology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,0954691X| +European Journal of General Dentistry,Medknow Publications,22789626| +European Journal of General Medicine,Health Sciences Researches Society,13043897|13043897 +European Journal of General Practice,Informa UK (Taylor & Francis),13814788|17511402 +European Journal Of Haematology,Wiley Blackwell (Blackwell Publishing),09024441|16000609 +European Journal of Health Law,Brill Academic Publishers,09290273|15718093 +European Journal of Heart Failure,Wiley Blackwell (John Wiley & Sons),13889842|18790844 +European Journal of Heart Failure Supplements,Oxford University Press,15674215|18781314 +European Journal of High Ability,Informa UK (Taylor & Francis),09374450| +European Journal of Higher Education,Informa UK (Taylor & Francis),21568235|21568243 +European Journal of Histochemistry,PAGEPress Publications,1121760X|20388306 +European Journal of Horticultural Science,International Society for Horticultural Science (ISHS),16114426|16114434 +European Journal of Hospital Pharmacy,BMJ,20479956|20479964 +European Journal of Human Genetics,Nature Publishing Group,10184813|14765438 +European Journal of Immunogenetics,Wiley Blackwell (Blackwell Publishing),09607420|13652370 +European Journal of Immunology,Wiley Blackwell (John Wiley & Sons),00142980|15214141 +European journal of Implant and Refractive Surgery,Elsevier ,09553681| +European Journal of Industrial Relations,SAGE Publications,09596801|00000000 +European Journal of Inflammation,SAGE Publications,1721727X| +European Journal of Information Systems,Nature Publishing Group - Macmillan Publishers,0960085X|0960085X +European Journal of Innovation Management,Emerald (MCB UP ),14601060|00000000 +European Journal of Inorganic Chemistry,Wiley Blackwell (John Wiley & Sons),14341948|10990682 +European Journal of Integrative Medicine,Elsevier ,18763820| +European Journal of Intensive Care Medicine,Springer-Verlag,03400964| +European Journal of Intercultural studies,Informa UK (Taylor & Francis),0952391X| +European Journal of Internal Medicine,Elsevier ,09536205| +European Journal of International Law,Oxford University Press,09385428|14643596 +European Journal of International Relations,SAGE Publications,13540661|00000000 +European Journal of International Security,Cambridge University Press,20575637|20575645 +European Journal of Jewish Studies,Brill Academic Publishers,10259996|1872471X +European Journal of Language Policy,Liverpool University Press,17576822|17576830 +European Journal of Law and Economics,Springer-Verlag,09291261|15729990 +European Journal of Law Reform,Boom Uitgevers Den Haag,13872370| +European Journal of Legal Education,Informa UK (Taylor & Francis),16841360| +European Journal of Legal Education,Informa UK (Taylor & Francis),16841360| +European Journal of Legal Education,Informa UK (Taylor & Francis),16841360|17504686 +European Journal of Legal Education,Informa UK (Taylor & Francis),16841360| +European Journal of Life Writing,VU E-Publishing,2211243X +European Journal of Lipid Science and Technology,Wiley Blackwell (John Wiley & Sons),14387697|14389312 +European Journal of Management,International Academy of Business and Economics,15554015|23788526 +European Journal of Management and Business Economics,Elsevier ,24448451| +European Journal of Marketing,Emerald (MCB UP ),03090566|00000000 +European Journal of Mass Spectrometry,IM Publications,13561049| +European Journal of Mass Spectrometry,IM Publications,14690667| +European Journal of Mathematics,Springer-Verlag,2199675X|21996768 +European Journal of Mechanics - A/Solids,Elsevier ,09977538| +European Journal of Mechanics - B/Fluids,Elsevier ,09977546| +European Journal of Medical Genetics,Elsevier ,17697212| +European Journal of Medical Research,Springer (Biomed Central Ltd.),2047783X|2047783X +European Journal of Medical Sciences,Eurasian Society of Educational Research,21567352|21567352 +European Journal of Medicinal Chemistry,Elsevier ,02235234|02235234 +European Journal of Medicinal Plants,Sciencedomain International,22310894 +European Journal of Medicine,Academic Publishing House Researcher,23086513|23103434 +European Journal of Medicine Series B,Academic Publishing House Researcher,24096296|24137464 +European Journal of Mental Health,Binwin BT,17884934|17887119 +European Journal of Microbiology and Immunology,Akademiai Kiado Zrt.,2062509X|2062509X +European Journal of Migration and Law,Brill Academic Publishers,1388364X|15718166 +European Journal of Mineralogy,Schweizerbart,09351221|00000000 +European Journal of Molecular Biotechnology,Academic Publishing House Researcher,23106255|24091332 +European Journal of Morphology,Informa UK (Swets & Zeitlinger Publishers),09243860|17444241 +European Journal of Nanomedicine,Walter de Gruyter GmbH (European Journal of Nanomedicine),16625986|1662596X +European Journal of Natural History,"""Eurasian Scientific and Industrial Chamber, Ltd.""",20734972| +European Journal of Neurology,Wiley Blackwell (Blackwell Publishing),13515101|14681331 +European Journal of Neuroscience,Wiley Blackwell (Blackwell Publishing),0953816X|14609568 +European Journal of Nuclear Medicine,Springer-Verlag,03406997|16197089 +European Journal of Nuclear Medicine and Molecular Imaging,Springer-Verlag,16197070|16197089 +European Journal of Nutrition,Springer-Verlag,14366207|14366215 +European Journal of Nutrition & Food Safety,Sciencedomain International,23475641 +European Journal of Obstetrics & Gynecology,Elsevier ,00282243| +European Journal of Obstetrics & Gynecology and Reproductive Biology,Elsevier ,03012115| +European Journal of Oncology Nursing,Elsevier ,14623889| +European Journal of Open Distance and E-Learning,De Gruyter Open Sp. z o.o. ,10275207 +European Journal of Operational Research,Elsevier ,03772217| +European Journal of Ophthalmology,"""Wichtig Publishing, SRL""",11206721| +European Journal Of Oral Sciences,Wiley Blackwell (Blackwell Publishing),09098836|16000722 +European Journal of Organic Chemistry,Wiley Blackwell (John Wiley & Sons),1434193X|10990690 +European Journal of Orthopaedic Surgery & Traumatology,Springer-Verlag,16338065|14321068 +European Journal of Paediatric Neurology,Elsevier ,10903798| +European Journal of Pain,Wiley Blackwell (John Wiley & Sons),10903801|15322149 +European Journal of Pain Supplements,Wiley Blackwell (John Wiley & Sons),17543207| +European Journal of Pediatric Surgery,Thieme Publishing Group,09397248|1439359X +European Journal of Pediatric Surgery Reports,Thieme Publishing Group,21947619|21947627 +European Journal of Pediatrics,Springer-Verlag,03406199|14321076 +European Journal of Personality,Wiley Blackwell (John Wiley & Sons),08902070|10990984 +European Journal of Pharmaceutical Sciences,Elsevier ,09280987| +European Journal of Pharmaceutics and Biopharmaceutics,Elsevier ,09396411| +European Journal of Pharmacology,Elsevier ,00142999| +European Journal of Pharmacology Environmental Toxicology and Pharmacology,Elsevier ,09266917| +European Journal of Pharmacology Molecular Pharmacology,Elsevier ,09224106| +European Journal of Philosophical Research,Academic Publishing House Researcher,24089435|24137286 +European Journal of Philosophy,Wiley Blackwell (Blackwell Publishing),09668373|14680378 +European Journal of Phycology,Informa UK (Taylor & Francis),09670262|14694433 +European Journal of Physical Education,Informa UK (Taylor & Francis),13627120| +European Journal of Physical Education and Sport,Academic Publishing House Researcher,23100133|24091952 +European Journal of Physics,IOP Publishing,01430807|13616404 +European Journal Of Physics Education,European Journal of Physics Education,13097202 +European Journal of Physiotherapy,Informa UK (Taylor & Francis),21679169|21679177 +European Journal of Plant Pathology,Springer-Verlag,09291873|15738469 +European Journal of Plastic Surgery,Springer-Verlag,0930343X|14350130 +European Journal of Podiatry / Revista Europea de Podología,Universidade da Coruna,24451835 +European Journal of Political Economy,Elsevier ,01762680| +European Journal of Political Research,Wiley Blackwell (Blackwell Publishing),03044130|14756765 +European Journal of Political Research Political Data Yearbook,Wiley Blackwell (Blackwell Publishing),20478844| +European Journal of Political Theory,SAGE Publications,14748851|00000000 +European Journal of Population / Revue européenne de Démographie,Springer-Verlag,01686577|15729885 +European Journal of Preventive Cardiology,SAGE Publications,20474873|20474881 +European Journal of Preventive Medicine,Science Publishing Group,23308222| +European Journal of Probation,SAGE Publications,20662203 +European Journal of Prosthodontics,Medknow Publications,23474610| +European Journal of Protistology,Elsevier ,09324739| +European Journal of Psychological Assessment,Hogrefe Publishing Group,10155759|21512426 +European Journal of Psychological Studies,Academic Publishing House Researcher,23120363|24093297 +European Journal of Psychology and Educational Studies,Medknow Publications,23952555| +European Journal of Psychology of Education,Springer-Verlag,02562928|18785174 +European Journal of Psychotherapy & Counselling,Informa UK (Taylor & Francis),13642537|14695901 +European Journal of Psychotraumatology,Co-Action Publishing,20008198|2000818X +European Journal of Public Order and National Security,European Association of Scientific Research,23600519 +European Journal of Purchasing & Supply Management,Elsevier ,09697012| +European Journal of Radiography,Elsevier ,17561175| +European Journal of Radiology,Elsevier ,0720048X| +European Journal of Radiology Extra,Elsevier ,15714675| +European Journal of Radiology Open,Elsevier ,23520477| +European Journal of Remote Sensing,Associazione Italiana di Telerilevamento,22797254 +European Journal of Research on Education,European Journal of Research on Education,21476284| +European Journal of Research on Social Studies,European Journal of Research on Social Studies,21486018| +European Journal of Rheumatology,AVES Publishing Co.,21479720|21484279 +European Journal of Scandinavian Studies,Walter de Gruyter GmbH,03428427|21911738 +European Journal of Scandinavian Studies,Walter de Gruyter GmbH,21919399|21919402 +European Journal of Science Education,Informa UK (Taylor & Francis),01405284| +European Journal of Scientific Research,"""Science and Education, Ltd.""",1450202X| +European Journal of Social Psychology,Wiley Blackwell (John Wiley & Sons),00462772|10990992 +European Journal of Social Quality,Berghahn Books,14617919|17522315 +European Journal of Social Security,Springer (Kluwer Academic Publishers),13882627| +European Journal of Social Theory,SAGE Publications,13684310|00000000 +European Journal of Social Work,Informa UK (Taylor & Francis),13691457|14682664 +European Journal of Sociology,Cambridge University Press,00039756|14740583 +European Journal of Soil Biology,Elsevier ,11645563| +European Journal of Soil Science,Wiley Blackwell (Blackwell Publishing),13510754|13652389 +European Journal of Solid State and Inorganic Chemistry,Elsevier ,09924361| +European Journal of Special Needs Education,Informa UK (Taylor & Francis),08856257|1469591X +European Journal of Sport Science,Informa UK (Taylor & Francis),17461391|17461391 +European Journal of STEM Education,Lectito BV,24681954| +European Journal of Surgical Oncology (EJSO),Elsevier ,07487983| +European Journal of Sustainable Development,European Center of Sustainable Development,22395938|22396101 +European Journal of Taxonomy,Museum National D'Histoire Naturelle,21189773 +European Journal of Teacher Education,Informa UK (Taylor & Francis),02619768|14695928 +European Journal of Technology and Design,Academic Publishing House Researcher,23086505|23103450 +European Journal of the History of Economic Thought,Informa UK (Taylor & Francis),09672567|14695936 +European Journal of Training and Development,Emerald (MCB UP ),20469012| +European Journal of Translational Myology,PAGEPress Publications,20377452|20377460 +European Journal of Trauma,Springer-Verlag,14390590|16153146 +European Journal of Trauma and Emergency Surgery,Springer-Verlag,18639933|18639941 +European Journal of Ultrasound,Elsevier ,09298266| +European Journal of Vascular and Endovascular Surgery,Elsevier ,10785884| +European Journal of Vascular Surgery,Elsevier ,0950821X| +European journal of water quality,EDP Sciences,18188710|21000646 +European Journal of Wildlife Research,Springer-Verlag,16124642|14390574 +European Journal of Women s Studies,SAGE Publications,13505068|14617420 +European Journal of Wood and Wood Products,Springer-Verlag,00183768|1436736X +European Journal of Work and Organizational Psychology,Informa UK (Taylor & Francis),1359432X|14640643 +European Journal on Criminal Policy and Research,Springer-Verlag,09281371|15729869 +European Judaism,Berghahn Books,00143006|17522323 +European Law Journal,Wiley Blackwell (Blackwell Publishing),13515993|14680386 +European Law Reports,Hart Publishing,10913297| +European Management Journal,Elsevier ,02632373| +European Management Review,Wiley Blackwell (Blackwell Publishing),17404754|17404762 +European Medical Health and Pharmaceutical Journal,Central Bohemia University,18045804|18049702 +European Medieval Drama,"""Brepols Publishers, NV""",12877484| +European Neurological Review,Touch Digital Media LTD.,17583837| +European Neurology,S. Karger AG,00143022|14219913 +European Neuropsychopharmacology,Elsevier ,0924977X| +European Oncology & Haematology,Touch Digital Media LTD.,20455275| +European Ophthalmic Review,Touch Digital Media LTD.,17561795| +European Orthopaedics and Traumatology,Springer-Verlag,18674569|18674577 +European Paediatric Haematology and Oncology,Informa UK (Taylor & Francis),08002789| +European Physical Education Review,SAGE Publications,1356336X|00000000 +European Planning Studies,Informa UK (Taylor & Francis),09654313|14695944 +European Policy Analysis,Policy Studies Organization,23806567 +European Political Science,Nature Publishing Group - Macmillan Publishers,16804333|16820983 +European Political Science Review,Cambridge University Press,17557739|17557747 +European Politics and Society,Informa UK (Taylor & Francis),23745118|23745126 +European Polygraph,De Gruyter Open Sp. z o.o. ,18985238 +European Polymer Journal,Elsevier ,00143057| +European Potato Journal,Springer-Verlag,03671216| +European Property Law Journal,Walter de Gruyter GmbH,21908273|21908362 +European Psychiatry,Elsevier ,09249338| +European Psychologist,Hogrefe Publishing Group,10169040|1878531X +European Public Law,Springer (Kluwer Academic Publishers),13543725| +European Radiology,Springer-Verlag,09387994|14321084 +European Radiology Supplements,Springer-Verlag,16133749|16133757 +EUROPEAN RESEARCH,OLIMP,24102873| +European Research in Telemedicine / La Recherche Européenne en Télémédecine,Elsevier ,2212764X| +European Research on Management and Business Economics,Elsevier ,24448834| +European Researcher,Academic Publishing House Researcher,22198229|22240136 +European Respiratory & Pulmonary Diseases,Touch Digital Media LTD.,20584881| +European Respiratory Journal,European Respiratory Society ,09031936|13993003 +European Respiratory Monograph,European Respiratory Society ,1025448X|20756674 +European Respiratory Review,European Respiratory Society ,09059180|16000617 +European Review,Cambridge University Press,10627987|1234981X +European Review of Aging and Physical Activity,Springer-Verlag,18137253|18616909 +European Review of Agricultural Economics,Oxford University Press,01651587|14643618 +European Review Of Applied Sociology,Walter de Gruyter GmbH,22862552 +European Review of Contract Law,Walter de Gruyter GmbH,16149920|16149939 +European Review of Economic History,Oxford University Press,13614916|14740044 +European Review of History Revue européenne d histoire,Informa UK (Taylor & Francis),13507486|14698293 +European Review of Latin American and Caribbean Studies | Revista Europea de Estudios Latinoamericanos y del Caribe,Uopen Journals,09240608|18794750 +European Review of Private Law/Revue européenne de droit privé/Europäische Zeitschrift für Privatrecht,Springer (Kluwer Academic Publishers),09289801| +European Review of Social Psychology,Informa UK (Taylor & Francis),10463283|1479277X +European Reviews of Chemical Research,Academic Publishing House Researcher,23127708|24137243 +European Romantic Review,Informa UK (Taylor & Francis),10509585|17404657 +European Science Review,East West Association for Advanced Studies and Higher Education GmbH,23105577| +European Scientific Journal,"""European Scientific Institute, ESI""",18577881|18577431 +European Security,Informa UK (Taylor & Francis),09662839|17461545 +European Social Science Journal,"""Science and Education, Ltd.""",20795513| +European Societies,Informa UK (Taylor & Francis),14616696|14698307 +European Sociological Review,Oxford University Press,02667215|14682672 +European Spatial Research and Policy,De Gruyter Open Sp. z o.o. ,12311952|18961525 +European Spine Journal,Springer-Verlag,09406719|14320932 +European Sport Management Quarterly,Informa UK (Taylor & Francis),16184742|1746031X +European Stroke Journal,SAGE Publications,23969873|23969881 +European Structural Integrity Society,Elsevier , +European Surgery,Springer-Verlag,16828631|16824016 +European Surgical Research,S. Karger AG,0014312X|14219921 +European Thyroid Journal,S. Karger AG,22350640|22350802 +European Transactions on Electrical Power,Wiley Blackwell (John Wiley & Sons),1430144X|15463109 +European Transactions on Telecommunications,Wiley Blackwell (John Wiley & Sons),1124318X|15418251 +European Transport Research Review,Springer-Verlag,18670717|18668887 +European Union Politics,SAGE Publications,14651165|17412757 +European Urban and Regional Studies,SAGE Publications,09697764|00000000 +European Urology,Elsevier ,03022838|1421993X +European Urology Focus,Elsevier ,24054569| +European Urology Supplements,Elsevier ,15699056| +European View,Springer-Verlag,17816858|18655831 +European Work and Organizational Psychologist,Informa UK (Taylor & Francis),09602003| +European Yearbook of Minority Issues Online,Brill Academic Publishers,15707865|22116117 +Europe’s Journal of Psychology,Leibniz Institute for Psychology Information,18410413 +Europhysics news,EDP Sciences,05317479|14321092 +EUROSLA Yearbook,John Benjamins Publishing Company,15681491|15699749 +Eurostudia,Consortium Erudit,17188946 +Eurosurveillance,European Centre for Disease Control and Prevention (ECDC),1025496X|15607917 +Eutomia,Eutomia - Revista de Literatura e Linguistica,19826850 +Eutopía - Revista de Desarrollo Económico Territorial,Facultad Latinoamericana de Ciencias Sociales (FLACSO),13905708|13905708 +Evaluation,SAGE Publications,13563890|00000000 +Evaluation & Research in Education,Informa UK (Taylor & Francis),09500790|17477514 +Evaluation & the Health Professions,SAGE Publications,01632787|15523918 +Evaluation and Program Planning,Elsevier ,01497189| +Evaluation in Education,Elsevier ,0191765X| +Evaluation in Education International Progress,Elsevier ,01459228| +Evaluation Matters—He Take Tō Te Aromatawai,"""NZCER Press, New Zealand Council for Educational Research""",24230790|24230804 +Evaluation News,Elsevier ,01918036| +Evaluation Practice,Elsevier ,08861633| +Evaluation Review,SAGE Publications,0193841X|00000000 +Evangelische Theologie,Gutersloher Verlaghaus,00143502|21980470 +Evans School Review,University of Washington Libraries,21638136 +Evansia,BioOne (American Bryological and Lichenological Society),07479859| +Event Management,Cognizant Communication Corp,15259951|19434308 +Everyday Art Quarterly,JSTOR,19340591| +Evidence & Policy A Journal of Research Debate and Practice,The Policy Press,17442648|17442656 +Evidence Based Library and Information Practice,EBLIP Journal,1715720X +Evidence Based Womenʼs Health Journal,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,20907265| +Evidence-based Cardiovascular Medicine,Elsevier ,13612611| +Evidence-Based Child Health A Cochrane Review Journal,Wiley Blackwell (John Wiley & Sons),15576272|15576272 +Evidence-Based Communication Assessment and Intervention,Informa UK (Taylor & Francis),17489539|17489547 +Evidence-based Complementary and Alternative Medicine,Hindawi Publishing Corporation,1741427X|17414288 +Evidence-Based Dentistry,Nature Publishing Group,14620049|14620049 +Evidence-Based Gastroenterology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15278557| +Evidence-based Healthcare,Elsevier ,14629410| +Evidence-based Healthcare and Public Health,Elsevier ,17442249| +Evidence-based HRM a Global Forum for Empirical Scholarship,Emerald (MCB UP ),20493983| +Evidence-Based Integrative Medicine,Springer-Verlag,11762330| +Evidence-Based Medicine,BMJ,13565524|14736810 +Evidence-based Medicine & Public Health,"""Smart Science and Technology, LLC""",23808500 +Evidence-Based Mental Health,BMJ,13620347|1468960X +Evidence-Based Nursing,BMJ,13676539|14689618 +Evidence-based Obstetrics and Gynaecology,Elsevier- Churchill Livingstone,1361259X| +Evidence-based Oncology,Elsevier- Churchill Livingstone,13634054| +Evidence-Based Ophthalmology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15559203| +Evidence-Based Practice in Child and Adolescent Mental Health,Informa UK (Taylor & Francis),23794925|23794933 +Evidence-based Preclinical Medicine,Wiley Blackwell (John Wiley & Sons),2054703X| +Evidence-Based Spine Surgery,Thieme Publishing Group,18672302|18672310 +Evidence-Based Spine-Care Journal,Thieme Publishing Group,16637976|18694136 +Evidência - Ciência e Biotecnologia,Universidade do Oeste de Santa Catarina,15195287|22366059 +EvoDevo,Springer (Biomed Central Ltd.),20419139|20419139 +Evolução e Conservação da Biodiversidade,Araucaria Comunicacao Integrada,22363866 +Evolution,Wiley Blackwell (Blackwell Publishing),00143820|15585646 +Evolution & Development,Wiley Blackwell (Blackwell Publishing),1520541X|1525142X +Evolution and Human Behavior,Elsevier ,10905138| +Evolution Education and Outreach,Springer-Verlag,19366426|19366434 +Evolution Equations and Control Theory,American Institute of Mathematical Sciences,21632480| +Evolution Medicine and Public Health,Oxford University Press,20506201 +Evolution of Communication,John Benjamins Publishing Company,13875337|00000000 +Evolutionary and Institutional Economics Review,Springer-Verlag,13494961|21882096 +Evolutionary Anthropology Issues News and Reviews,Wiley Blackwell (John Wiley & Sons),10601538|15206505 +Evolutionary Applications,Wiley Blackwell (Blackwell Publishing),17524563|17524571 +Evolutionary Behavioral Sciences,American Psychological Association,23302925|23302933 +Evolutionary Bioinformatics,"""Libertas Academica, Ltd.""",11769343 +Evolutionary Biology,Springer-Verlag,00713260|19342845 +Evolutionary Computation,MIT Press,10636560|15309304 +Evolutionary Ecology,Springer-Verlag,02697653|15738477 +Evolutionary Intelligence,Springer-Verlag,18645909|18645917 +Evolutionary Psychological Science,Springer-Verlag,21989885 +Evolutionary Psychology,SAGE Publications,14747049 +Evolving Systems,Springer-Verlag,18686478|18686486 +Evolving Trends in Engineering and Technology,SciPress Ltd.,2349915X +Evolving Trends in Engineering and Technology,SciPress Ltd.,2349915X +Evropska revija za pravo osiguranja,Centre for Evaluation in Education and Science,23347597| +Ewha Medical Journal,Ewha Womans University School of Medicine (KAMJE),15987450| +Exacta,University Nove de Julho - Uninove,16785428|19839308 +EXAMÃPAKU,Universidade Federal de Roraima,19839065 +Excellence in Higher Education,"""University Library System, University of Pittsburgh""",21539669|21539677 +Excellence in Performing Arts Research,Kent State University,23752505 +Exceptional Children,SAGE Publications,00144029| +Exceptionality,Informa UK (Taylor & Francis),09362835|15327035 +Exchange,Brill Academic Publishers,01662740|1572543X +Executive,The Academy of Management,19389779| +Executive Development,Emerald (MCB UP ),09533230|00000000 +Exemplaria,Maney Publishing,10412573|17533074 +Exercise and Quality of Life,Centre for Evaluation in Education and Science,18213480| +Exercise and Sport Sciences Reviews,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,00916331| +Exercise Science,Korean Society of Exercise Physiology,12261726| +Exergy An International Journal,Elsevier ,11640235| +Exogenous Dermatology,S. Karger AG,14244616|14244624 +Exosomes and Microvesicles,InTech,18489214| +Experiment,Brill Academic Publishers,10844945|2211730X +Experimental & Clinical Hepatology,Index Copernicus International,17343038| +Experimental & Translational Stroke Medicine,Springer (Biomed Central Ltd.),20407378|20407378 +Experimental Aging Research,Informa UK (Taylor & Francis),0361073X|10964657 +Experimental Agriculture,Cambridge University Press,00144797|14694441 +Experimental and Applied Acarology,Springer-Verlag,01688162|15729702 +Experimental and Clinical Endocrinology & Diabetes,Thieme Publishing Group,09477349|14393646 +Experimental and Clinical Endocrinology & Diabetes Reports,Thieme Publishing Group,21967407 +Experimental and Clinical Immunogenetics,S. Karger AG,02549670|14219948 +Experimental and Clinical Psychopharmacology,American Psychological Association,10641297|19362293 +Experimental and Clinical Transplantation,Baskent University Publishers,13040855|21468427 +Experimental and Molecular Medicine,Nature Publishing Group,12263613|20926413 +Experimental and Molecular Pathology,Elsevier ,00144800|10960945 +Experimental and Therapeutic Medicine,Spandidos Publications,17920981|17921015 +Experimental and Toxicologic Pathology,Elsevier ,09402993| +Experimental Animals,Japanese Association for Laboratory Animal Science,13411357|18817122 +Experimental Astronomy,Springer-Verlag,09226435|15729508 +Experimental Biology and Medicine,SAGE Publications,15353702|15353699 +Experimental Biology Online,Springer-Verlag,14353237|14303418 +Experimental Brain Research,Springer-Verlag,00144819|14321106 +Experimental Cell Research,Elsevier ,00144827|10902422 +Experimental Dermatology,Wiley Blackwell (Blackwell Publishing),09066705|16000625 +Experimental Diabesity Research,Hindawi Publishing Corporation,15438600|15438619 +Experimental Diabetes Research,Hindawi Publishing Corporation,16875214|16875303 +Experimental Earth,Elsevier ,18722881| +Experimental Economics,Springer-Verlag,13864157|15736938 +Experimental Eye Research,Elsevier ,00144835|10960007 +Experimental Gerontology,Elsevier ,05315565| +Experimental Heat Transfer,Informa UK (Taylor & Francis),08916152|15210480 +Experimental Hematology,Elsevier ,0301472X| +Experimental Hematology and Oncology,Springer (Biomed Central Ltd.),21623619|21623619 +Experimental Lung Research,Informa UK (Taylor & Francis),01902148|15210499 +Experimental Mathematics,Informa UK (Taylor & Francis),10586458|1944950X +Experimental Mechanics,Springer-Verlag,00144851|17412765 +Experimental Mycology,Elsevier ,01475975| +Experimental Neurobiology,The Korean Society for Brain and Neural Science (KAMJE),12262560|20938144 +Experimental Neurology,Elsevier ,00144886|10902430 +Experimental Parasitology,Elsevier ,00144894|10902449 +Experimental Pathology,Elsevier ,02321513| +Experimental Physiology,Wiley Blackwell (Blackwell Publishing -The Physiological Society),09580670|09580670 +Experimental Psychology (formerly Zeitschrift für Experimentelle Psychologie),Hogrefe Publishing Group,16183169|21905142 +Experimental Psychology (Russia),Moscow State Universtiy of Psychology and Education (MSUPE),20727593|23117036 +Experimental Techniques,Springer-Verlag,07328818|17471567 +Experimental Thermal and Fluid Science,Elsevier ,08941777| +Experimentelle Pathologie,Elsevier ,00144908| +Experiments in Fluids,Springer-Verlag,07234864|14321114 +Expert Evidence,Springer (Kluwer Academic Publishers),09653643| +Expert Opinion on Biological Therapy,Informa UK (Ashley Publications),14712598|17447682 +Expert Opinion on Drug Delivery,Informa UK (Taylor & Francis),17425247|17447593 +Expert Opinion on Drug Discovery,Informa UK (Taylor & Francis),17460441|1746045X +Expert Opinion on Drug Metabolism & Toxicology,Informa UK (Taylor & Francis),17425255|17447607 +Expert Opinion on Drug Safety,Informa UK (Taylor & Francis),14740338|1744764X +Expert Opinion on Emerging Drugs,Informa UK (Taylor & Francis),14728214|17447623 +Expert Opinion on Environmental Biology,OMICS Publishing Group,23259655 +Expert Opinion on Investigational Drugs,Informa UK (Taylor & Francis),13543784|17447658 +Expert Opinion on Medical Diagnostics,Informa UK (Taylor & Francis),17530059|17530067 +Expert Opinion on Orphan Drugs,Informa UK (Taylor & Francis),21678707|21678707 +Expert Opinion on Pharmacotherapy,Informa UK (Taylor & Francis),14656566|17447666 +Expert Opinion on Therapeutic Patents,Informa UK (Taylor & Francis),13543776|17447674 +Expert Opinion on Therapeutic Targets,Informa UK (Taylor & Francis),14728222|17447631 +Expert Review of Anti-infective Therapy,"""Informa Healthcare (Expert Reviews, LTD)""",14787210|17448336 +Expert Review of Anticancer Therapy,Informa UK (Taylor & Francis),14737140|17448328 +Expert Review of Cardiovascular Therapy,Informa UK (Taylor & Francis),14779072|17448344 +Expert Review of Clinical Immunology,Informa UK (Taylor & Francis),1744666X|17448409 +Expert Review of Clinical Pharmacology,Informa UK (Taylor & Francis),17512433|17512441 +Expert Review of Dermatology,Informa UK (Taylor & Francis),17469872|17469880 +Expert Review of Endocrinology & Metabolism,Informa UK (Taylor & Francis),17446651|17448417 +Expert Review of Gastroenterology & Hepatology,Informa UK (Taylor & Francis),17474124|17474132 +Expert Review of Hematology,Informa UK (Taylor & Francis),17474086|17474094 +Expert Review of Medical Devices,Informa UK (Taylor & Francis),17434440|17452422 +Expert Review of Molecular Diagnostics,Informa UK (Taylor & Francis),14737159|17448352 +Expert Review of Neurotherapeutics,Informa UK (Taylor & Francis),14737175|17448360 +Expert Review of Obstetrics & Gynecology,Informa UK (Taylor & Francis),17474108|17474116 +Expert Review of Ophthalmology,Informa UK (Taylor & Francis),17469899|17469902 +Expert Review of Pharmacoeconomics & Outcomes Research,Informa UK (Taylor & Francis),14737167|17448379 +Expert Review of Precision Medicine and Drug Development,Informa UK (Taylor & Francis),23808993 +Expert Review of Proteomics,Informa UK (Taylor & Francis),14789450|17448387 +Expert Review of Quality of Life in Cancer Care,Informa UK (Taylor & Francis),23809000 +Expert Review of Respiratory Medicine,Informa UK (Taylor & Francis),17476348|17476356 +Expert Review of Vaccines,Informa UK (Taylor & Francis),14760584|17448395 +Expert Reviews in Molecular Medicine,Cambridge University Press,14623994|14623994 +Expert Systems,Wiley Blackwell (Blackwell Publishing),02664720|14680394 +Expert Systems with Applications,Elsevier ,09574174| +Experts in Ultrasound Reviews and Perspectives,EURP,21752338 +Exploration and Mining Geology,GeoScienceWorld,09641823| +Exploration Geophysics,CSIRO Publishing,08123985| +Explorations in Economic History,Elsevier ,00144983|10902457 +Explorations in Media Ecology,Intellect,15397785|20480717 +Explorations in Renaissance Culture,Brill Academic Publishers,00982474|23526963 +EXPLORE The Journal of Science and Healing,Elsevier ,15508307| +Expositiones Mathematicae,Elsevier ,07230869| +Expositions,Equinox Publishing,17475368|17475376 +eXPRESS Polymer Letters,"""Department of Polymer Engineering Budapest University of Technology & Economics), Scientific Society of Mechanical Engineerin""",1788618X|1788618X +Extensão em Foco,Universidade Federal do Parana,19824432|23587180 +Extensão Rural,Universidade Federal de Santa Maria,14157802|23181796 +Extensio Revista Eletrônica de Extensão,Universidade Federal de Santa Catarina,18070221|18070221 +Extrapolation,Liverpool University Press,00145483|20477708 +Extreme Mechanics Letters,Elsevier ,23524316| +Extrême orient Extrême occident,PERSEE Program,07545010|21087105 +Extreme Physiology & Medicine,Springer (Biomed Central Ltd.),20467648|20467648 +Extrême-Orient Extrême-Occident,OpenEdition,21087105|21087105 +Extremes,Springer-Verlag,13861999|1572915X +Extremophiles,Springer-Verlag,14310651|14334909 +Eye,Nature Publishing Group,0950222X|00785334 +Eye & Contact Lens Science & Clinical Practice,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15422321| +Eye and Brain,Dove Medical Press,11792744 +Eye and Vision,Springer (Biomed Central Ltd.),23260254|23260254 +Eye Reports,PAGEPress Publications,20394748|20394756 +F,Ankara University,1304639X +F1000 Biology Reports,"""Faculty of 1000, Ltd.""",1757594X|1757594X +F1000 Developer Test Research,"""Faculty of 1000, Ltd.""",23232323 +F1000 Medicine Reports,"""Faculty of 1000, Ltd.""",17575931|17575931 +F1000Prime Reports,"""Faculty of 1000, Ltd.""",20517599 +F1000Research,"""F1000 Research, Ltd.""",20461402 +FABICIB,Universidad Nacional del Litoral,03295559|23625546 +Fabrications,Informa UK (Taylor & Francis),10331867|21644756 +Fabula,Walter de Gruyter GmbH,00146242|16130464 +Fachanwalt Arbeitsrecht,Walter de Gruyter GmbH,14344602|2366066X +Facial Plastic Surgery,Thieme Publishing Group,07366825|10988793 +Facial Plastic Surgery Clinics of North America,Elsevier ,10647406| +Facies,Springer-Verlag,01729179|16124820 +Facilities,Emerald (MCB UP ),02632772|00000000 +Facta Philosophica,"""Peter Lang, International Academic Publishers""",14240602| +Facta universitatis - series Architecture and Civil Engineering,National Library of Serbia,03544605|24060860 +Facta universitatis - series Electronics and Energetics,National Library of Serbia,03533670|22175997 +Facta universitatis - series Physics Chemistry and Technology,National Library of Serbia,03544656|24060879 +Faculty Dental Journal,The Royal College of Surgeons of England,20426852|20426860 +FAEDPYME INTERNATIONAL REVIEW,Fundacion para el Analisis Estrategio y Desarrollo de la Pequena y Mediana Empresa (FAEDPYME),2255078X +Failure and Lessons Learned in Information Technology Management,Cognizant Communication Corp,1088128X| +Fairy Tale Review,Wayne State University Press,15566153|23276819 +Faith and Philosophy,Philosophy Documentation Center,07397046| +Faits de langues,PERSEE Program,12445460| +Faits de langues,PERSEE Program,12445460|19589514 +Faits de langues,PERSEE Program,12445460| +Familial Cancer,Springer-Verlag,13899600|15737292 +Familie & Recht,Boom Uitgevers Den Haag,22133798| +Familie und Recht,Walter de Gruyter GmbH,09372180|23662018 +Families in Society The Journal of Contemporary Social Services,Alliance for Children and Families,10443894|19451350 +Families Relationships and Societies,The Policy Press,20467435|20467443 +Families Systems & Health,American Psychological Association,10917527|19390602 +Family & Community Health,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,01606379| +Family & Community History,Maney Publishing,14631180|17513812 +Family and Consumer Sciences Research Journal,Wiley Blackwell (John Wiley & Sons),1077727X| +Family and Environment Research,The Korean Home Economics Association,22883541|2288355X +Family Business Review,SAGE Publications,08944865|17416248 +Family Court Review,Wiley Blackwell (Blackwell Publishing),15312445|17441617 +Family Health — the 21 Century,Ural Regional Nutrition Centre,20772548| +Family Medicine & Medical Science Research,OMICS Publishing Group,23274972 +Family Medicine and Community Health,"""Compuscript, Ltd.""",23056983|20098774 +Family Planning Perspectives,JSTOR,00147354| +Family Practice,Oxford University Press,02632136|14602229 +Family Practice News,Elsevier ,03007073| +Family Practice Reports,Herbert Publications,20565690 +Family Process,Wiley Blackwell (Blackwell Publishing),00147370|15455300 +Family Relations,Wiley Blackwell (Blackwell Publishing),01976664|17413729 +Family Science,Informa UK (Taylor & Francis),19424620|19424639 +Family Spending,Nature Publishing Group - Macmillan Publishers,09651403|20401647 +Family Systems Medicine,American Psychological Association,07361718| +Far East Journal of Applied Mathematics,Pushpa Publishing House,09720960| +Far East Journal of Dynamical Systems,Pushpa Publishing House,09721118| +Far East Journal of Electronics and Communications,Pushpa Publishing House,09737006| +Far East Journal of Mathematical Education,Pushpa Publishing House,09735631| +Far East Journal of Mathematical Sciences (FJMS),Pushpa Publishing House,09720871| +Far East Journal of Theoretical Statistics,Pushpa Publishing House,09720863| +Far Eastern Survey,University of California Press,03628949| +Far Eastern University Communication Journal,PhilJOL,16569989| +Far Eastern University English Language Journal,PhilJOL,16568451| +Faraday Discussions,The Royal Society of Chemistry,13596640|13645498 +Faraday Discussions of the Chemical Society,The Royal Society of Chemistry,03017249| +Faraday Symposia of the Chemical Society,The Royal Society of Chemistry,03015696| +Faridpur Medical College Journal,Bangladesh Journals Online,20793553| +Farm Economist,Informa UK (Taylor & Francis),00147931| +Farmacéuticos Comunitarios,Institut d'Educacio Fisica de Catalunya,18858619|21739218 +Farmacéuticos de Atención Primaria,Elsevier ,21723761| +Farmacia Hospitalaria,Elsevier ,11306343| +Farmacia Hospitalaria (English Edition),Elsevier ,21735085| +Farmacología y Toxicología,Internet Medical Publishing,21748365 +Farmakoèkonomika,IRBIS,20704909|20704933 +Farmeconomia Health economics and therapeutic pathways,Seed SRL,17216915|2240256X +Fasciculi Mathematici,Walter de Gruyter GmbH,444413 +Fascism,Brill Academic Publishers,22116249|22116257 +Fashion & Textile Research Journal,The Korean Society for Clothing Industry,12292060| +Fashion and Textiles,Springer (Biomed Central Ltd.),21980802|21980802 +Fashion business,The Korean Society of Fashion Business,12293350| +Fashion Practice The Journal of Design Creative Process & the Fashion,Informa UK (Taylor & Francis),17569370|17569389 +Fashion Style & Popular Culture,Intellect,20500726|20500734 +Fashion Theory The Journal of Dress Body & Culture,Informa UK (Taylor & Francis),1362704X|00000000 +Fat Studies,Informa UK (Taylor & Francis),21604851|2160486X +Fathering A Journal of Theory Research and Practice about Men as Fathers,"""Men's Studies Press, LLC""",15376680|1933026X +FATHOM,OpenEdition,22706798 +Fatigue & Fracture of Engineering Materials & Structures,Wiley Blackwell (Blackwell Publishing),8756758X|14602695 +Fatigue Biomedicine Health & Behavior,Informa UK (Taylor & Francis),21641846|21641862 +Fatigue of Aircraft Structures,De Gruyter Open Sp. z o.o. ,20817738|23007591 +Fauna norvegica,Norwegian University of Science and Technology Library,15024873|18915396 +FAVE,Universidad Nacional del Litoral,03253112| +FAVE Sección Ciencias Agrarias,Universidad Nacional del Litoral,16667719|23469129 +FAVE Sección Ciencias Veterinarias,Universidad Nacional del Litoral,1666938X|23625589 +FBIM Transactions,MESTE NGO,2334718X|2334704X +fe dergi feminist ele,Ankara University,1309128X|1309128X +FEBS Journal,Wiley Blackwell (Blackwell Publishing),1742464X|17424658 +FEBS Letters,Wiley Blackwell (John Wiley & Sons),00145793| +FEBS Open Bio,Wiley Blackwell (John Wiley & Sons),22115463| +Feddes Repertorium,Wiley Blackwell (John Wiley & Sons),00148962|1522239X +Feddes Repertorium specierum novarum regni vegetabilis Supplements,Wiley Blackwell (John Wiley & Sons),0233187X|1522239X +Federal Facilities Environmental Journal,Wiley Blackwell (John Wiley & Sons),10484078|15206513 +Federal Grants & Contracts,Wiley Blackwell (John Wiley & Sons),19493177|19493185 +Federal Sentencing Reporter,University of California Press,10539867|15338363 +FEDS Notes,Board of Governors of the Federal Reserve System,23807172|23807172 +Felsefelogos,Felsefelogos,13099175| +FEM Revista de la Fundación Educación Médica,Instituto de Salud Carlos III/BNCS/SciELO Espana,20149832| +Female Pelvic Medicine & Reconstructive Surgery,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,21518378| +FEMINA POLITICA – Zeitschrift für feministische Politikwissenschaft,Barbara Budrich Publishers,14336359|21961646 +Feminism & Psychology,SAGE Publications,09593535|14617161 +Feminism and Korean Literature,Feminism and Korean Literature,12294632| +Feminismo/s,Publicaciones Universidad de Alicante,16968166|19899998 +Feminist Criminology,SAGE Publications,15570851|1557086X +Feminist Economics,Informa UK (Taylor & Francis),13545701|14664372 +Feminist Formations,Muse - Johns Hopkins University Press,21517371 +Feminist Issues,Springer-Verlag,02706679| +Feminist Legal Studies,Springer-Verlag,09663622|15728455 +Feminist Media Histories,University of California Press,23737492 +Feminist Media Studies,Informa UK (Taylor & Francis),14680777|00000000 +Feminist Review,Nature Publishing Group - Macmillan Publishers,01417789|01417789 +Feminist Studies,Feminist Studies,00463663| +Feminist Studies in English Literature,The Korean Association for Feminist Studies in English Literature,12269689| +Feminist Teacher,University of Illinois Press,08824843|19346034 +Feminist Theology,SAGE Publications,09667350|17455189 +Feminist Theory,SAGE Publications,14647001|00000000 +FEMS Immunology & Medical Microbiology,Oxford University Press,09288244|1574695X +FEMS Microbiology Ecology,Oxford University Press,01686496|15746941 +FEMS Microbiology Immunology,Oxford University Press,09208534| +FEMS Microbiology Letters,Oxford University Press,03781097|15746968 +FEMS Microbiology Reviews,Oxford University Press,01686445|15746976 +FEMS Yeast Research,Oxford University Press,15671356|15671364 +Fennia - International Journal of Geography,Geographical Societ of Finland,17985617 +Fermentation,MDPI AG,23115637 +Fermentation Technology,OMICS Publishing Group,21677972 +Ferroelectrics,Informa UK (Taylor & Francis),00150193|15635112 +Ferroelectrics Letters Section,Informa UK (Taylor & Francis),07315171|15635228 +FERS-Mitteilungen,Springer-Verlag,07245319|07245319 +Fertility and Sterility,Elsevier ,00150282| +Fertility Research and Practice,Springer (Biomed Central Ltd.),20547099|20547099 +Fertility Science and Research,Medknow Publications,23944285| +Fertilizer Research,Springer-Verlag,01671731| +Festival Management and Event Tourism,Cognizant Communication Corp,10652701| +Fetal and Maternal Medicine Review,Cambridge University Press,09655395|14695065 +Fetal and Pediatric Pathology,Informa UK (Taylor & Francis),15513815|15513823 +Fetal Diagnosis and Therapy,S. Karger AG,10153837|14219964 +Fettchemische Umschau,Wiley Blackwell (John Wiley & Sons),03672107|15214133 +Fette Seifen Anstrichmittel,Wiley Blackwell (John Wiley & Sons),0015038X|15214133 +Fette und Seifen,Wiley Blackwell (John Wiley & Sons),03673278|15214133 +Feuillets de Radiologie,Elsevier ,01819801| +Few-Body Systems,Springer-Verlag,01777963|14325411 +Fiber & Integrated Optics,Informa UK (Taylor & Francis),01468030|10964681 +Fibers,MDPI AG,20796439 +Fibers and Polymers,Springer-Verlag,12299197|18750052 +Fibre Chemistry,Springer-Verlag,00150541|15738493 +Fibre Diffraction Review,Fibre Diffraction Review,14638401| +Fibre Science and Technology,Elsevier ,00150568| +Fibres and Textiles in Eastern Europe,Index Copernicus International,12303666| +Fibrinolysis and Proteolysis,Elsevier ,02689499| +Fibrogenesis & Tissue Repair,Springer (Biomed Central Ltd.),17551536|17551536 +Ficha de Evaluación de Medicamentos,CADIME Centro Andaluz de Informacion de Medicamentos,22555773|22555773 +Fichte-Studien,Philosophy Documentation Center,09250166| +Field Actions Science Reports,Copernicus GmbH,18678521 +Field Analytical Chemistry & Technology,Wiley Blackwell (John Wiley & Sons),1086900X|15206521 +Field Crops Research,Elsevier ,03784290| +Field Methods,SAGE Publications,1525822X|00000000 +Field Mycology,Elsevier ,14681641| +Fieldiana Anthropology,BioOne (Field Museum of Natural History),00714739|21624321 +Fieldiana Botany,BioOne (Field Museum of Natural History),00150746| +Fieldiana Geology,BioOne (Field Museum of Natural History),00962651| +Fieldiana Life and Earth Sciences,BioOne (Field Museum of Natural History),21585520|21637105 +Fieldiana Zoology,BioOne (Field Museum of Natural History),00150754|21624291 +Fields journal of Huddersfield student research,University of Huddersfield Press,20570163 +Fieldwork in Religion,Equinox Publishing,17430615|17430623 +Fiep Bulletin - online,FIEP Bulletin Online,02566419|24122688 +FIGEEA - Revista Internacional em Ciências da Educação,FUTURE - Instituto Superior de Educacao e Saude Sinop EIRELI,2318731X|2318731X +FIGESC - Revista Internacional em Saúde Coletiva,FUTURE - Instituto Superior de Educacao e Saude Sinop EIRELI,23187301|23187301 +Figurationen,Bohlau Verlag,14394367|2194363X +Figures de la psychanalyse,CAIRN,16233883|17762847 +Filaria Journal,Springer (Biomed Central Ltd.),14752883| +Filigrane Écoutes psychothérapiques,Consortium Erudit,11921412|19114656 +Film & History An Interdisciplinary Journal of Film and Television Studies,Muse - Johns Hopkins University Press,15489922 +Film & History An Interdisciplinary Journal of Film and Television Studies,Muse - Johns Hopkins University Press,15489922 +Film Criticism,University of Michigan Library,24714364 +Film Fashion & Consumption,Intellect,20442823|20442831 +Film History,Indiana University Press,08922160|15533905 +Film International,Intellect,16516826|20403801 +Film International,Intellect,16516826| +Film Matters,Intellect,20421869|20421877 +Film Quarterly,University of California Press,00151386|15338630 +Film Studies,Manchester University Press,14690314| +Film-Philosophy,Edinburgh University Press,14664615 +Filologia e Linguística Portuguesa,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,15174530|21769419 +Filomat,National Library of Serbia,03545180|24060933 +Filosofia e Educação,Universidade Estadual de Campinas,19849605 +Filosofia Theoretica Journal of African Philosophy Culture and Religions,African Journals Online ,22768386|24085987 +Filosofia Unisinos,Universidade do Vale do Rio Dos Sinos - UNISINOS,15195023|19848234 +Filosofiya metodologiya i istoriya nauki,Innovative Medical Technologies Development Foundation,24133809| +Filozofia Chrześcijańska,Adam Mickiewicz University Poznan,17344530|24500399 +Filozofia Publiczna i Edukacja Demokratyczna,Adam Mickiewicz University Poznan,22991875| +Filozofija i drustvo,National Library of Serbia,03535738|23348577 +Filtration + Separation,Elsevier ,00151882| +Filtration Industry Analyst,Elsevier ,13656937| +Finance,Hans Publishers,21610967|21610975 +Finance & Bien Commun,CAIRN,14224658| +Finance & Development,International Monetary Fund,20772009 +Finance & Development,International Monetary Fund,23041498 +Finance & Development,International Monetary Fund,23041145 +Finance & Development,International Monetary Fund,16079531 +Finance & Development,International Monetary Fund,16079523 +Finance & Development,International Monetary Fund,01451707| +Finance & Development,International Monetary Fund,02557622| +Finance & Development,International Monetary Fund,02562561| +Finance & Development,International Monetary Fund,02507455| +Finance & Development,International Monetary Fund,02507447| +Finance & Development,International Monetary Fund,02507439| +Finance & Development,International Monetary Fund,15645142 +Finance & Development,International Monetary Fund,10208151| +Finance & Development,International Monetary Fund,01451707| +Finance & Development,International Monetary Fund,0430473X| +Finance & Development March 2006,International Monetary Fund,00151947| +Finance and credit,"""Science and Education, Ltd.""",20714688| +Finance and Economics Discussion Series,Board of Governors of the Federal Reserve System,19362854| +Finance and Society,"""UKOLN, University of Bath""",20595999 +Finance and Stochastics,Springer-Verlag,09492984|14321122 +Finance Contrôle Stratégie,OpenEdition,12871141|22615512 +Finance Research Letters,Elsevier ,15446123| +Financial Accountability & Management,Wiley Blackwell (Blackwell Publishing), +Financial Accountability and Management,Wiley Blackwell (Blackwell Publishing),02674424|14680408 +Financial Analysts Journal,CFA Institute,0015198X| +Financial and credit activity problems of theory and practice,University of Banking of National Bank of Ukraine (Kyiv),23064994|23108770 +Financial and Quantitative Analysis,Sciknow Publications,23276592|23276584 +Financial Assets and Investing,Masaryk University Press,18045081|1804509X +Financial Engineering and the Japanese Markets,Springer-Verlag,13802011| +Financial History Review,Cambridge University Press,09685650|14740052 +Financial Innovation,Springer (Biomed Central Ltd.),21994730 +Financial Management,Wiley Blackwell (Blackwell Publishing),00463892|1755053X +Financial Market Trends,Organisation for Economic Co-Operation and Development ,0378651X| +Financial Markets and Portfolio Management,Springer-Verlag,15554961|1555497X +Financial Markets Institutions and Instruments,Wiley Blackwell (Blackwell Publishing),09638008|14680416 +FINANCIAL REPORTING,Franco Angeli,2036671X|20366779 +Financial Review,Wiley Blackwell (Blackwell Publishing),07328516|15406288 +Financial Risk and Management Reviews,Pak Publishing Group,24123404|24116408 +Financial Sciences,Wroclaw University of Economics,20805993|20805993 +Financial Services Review,Elsevier ,10570810| +Financial Statistics,Nature Publishing Group - Macmillan Publishers,0015203X|20401566 +Financial Theory and Practice,Institute of Public Finance,1846887X|18459757 +Financing,National and University Library of the Republic of Srpska,1986812X|22331131 +Finansal Araştırmalar ve Çalışmalar Dergisi,The Journal of Financial Researches and Studies,13091123| +Finanz-Rundschau Ertragsteuerrecht,Verlag Dr. Otto Schmidt KG,0940452X|21944156 +FinanzArchiv Public Finance Analysis,Mohr Siebeck,00152218|00000000 +Fine Arts Journal,JSTOR,21512760| +Finisterra,Centro de Estudos Geograficos (IGOT) Universidade de Lisboa,04305027| +Finite Elements in Analysis and Design,Elsevier ,0168874X| +Finite Fields and Their Applications,Elsevier ,10715797|10902465 +Fırat Üniversitesi Sosyal Bilimler Dergisi,Firat Universitesi Sosyal Bilimler Dergisi,13009702| +Fire and Materials,Wiley Blackwell (John Wiley & Sons),03080501|10991018 +Fire Ecology,Association for Fire Ecology,19339747 +Fire Safety Journal,Elsevier ,03797112| +Fire Safety Science,International Association for Fire Safety Science,18174299| +Fire science and engineering,Korea Institute of Fire Science and Engineering,17387167| +Fire Science and Technology,"""The Center for Fire Science and Technology, Research Institute for Science and Technology, Tokyo University of Science""",02859521|18820492 +Fire Science Reviews,Springer (Biomed Central Ltd.),21930414|21930414 +Fire Technology,Springer-Verlag,00152684|15728099 +Fire!!!,Association for the Study of African American Life and History,21564078 +First Amendment Studies,Informa UK (Taylor & Francis),21689725|21689733 +First Break,EAGE Publications,02635046|13652397 +First Language,SAGE Publications,01427237|17402344 +First Monday,University of Illinois Libraries,13960466 +First World War Studies,Informa UK (Taylor & Francis),19475020|19475039 +Fiscal Monitor,International Monetary Fund,2219276X|22192778 +Fiscal Studies,Wiley Blackwell (Blackwell Publishing),01435671|14755890 +Fiscus,Institute of Public Finance,18499309 +Fish & Shellfish Immunology,Elsevier ,10504648|10959947 +Fish and Fisheries,Wiley Blackwell (Blackwell Publishing),14672960|14672979 +Fish Pathology,The Japanese Society of Fish Pathology,0388788X|18817335 +Fish Physiology and Biochemistry,Springer-Verlag,09201742|15735168 +Fisheries,American Fisheries Society,03632415|15488446 +Fisheries and Aquaculture Journal,OMICS Publishing Group,21503508 +Fisheries and aquatic sciences,The Korean Society of Fisheries and Aquatic Science,12269204| +Fisheries and Aquatic Sciences,Springer (Biomed Central Ltd.),22341757 +Fisheries Management and Ecology,Wiley Blackwell (Blackwell Publishing),0969997X|13652400 +Fisheries Oceanography,Wiley Blackwell (Blackwell Publishing),10546006|13652419 +Fisheries Research,Elsevier ,01657836| +Fisheries Science,Springer-Verlag,09199268|14442906 +Fishery Bulletin,NMFS Scientific Publications Office,00900656| +Fishes,MDPI AG,24103888 +Física de la Tierra,Universidad Complutense de Madrid,02144557|19882440 +Fisioterapia,Elsevier ,02115638| +Fisioterapia e Pesquisa,SciELO,18092950| +Fisioterapia em Movimento,SciELO,01035150|19805918 +Fitness & Performance Journal,Colegio Brasileiro de Atividade Fisica Saude e Esporte,16765133 +Fitopatologia Brasileira,SciELO,01004158|01004158 +Fitoterapia,Elsevier ,0367326X| +Five,Claremont Colleges Library,21693722 +Five to Eleven,Mark Allen Group,17447240| +Fixed Point Theory and Applications,Springer (Biomed Central Ltd.),16871820|16871812 +Fizicka kultura,Centre for Evaluation in Education and Science,03503828| +Flavour,Springer (Biomed Central Ltd.),20447248|20447248 +Flavour and Fragrance Journal,Wiley Blackwell (John Wiley & Sons),08825734|10991026 +Flebologiia,"""Science and Education, Ltd.""",19976976| +FLEKS - Scandinavian Journal of Intercultural Theory and Practice,Oslo and Akershus University College of Applied Sciences,18945988 +Flexible and Printed Electronics,IOP Publishing,20588585 +Flexible Services and Manufacturing Journal,Springer-Verlag,19366582|19366590 +Flora - Morphology Distribution Functional Ecology of Plants,Elsevier ,03672530| +Flora Mediterranea,Fondazione Pro Herbario Mediterraneo,11204052|22404538 +Florence Nightingale Hemşirelik Dergisi,Florence Nightingale Journal of Nursing,13044869|21460639 +FLORESTA,Universidade Federal do Parana,00153826|19824688 +Floresta e Ambiente,SciELO,14150980|21798087 +Florida Entomologist,BioOne (Florida Entomological Society),00154040|19385102 +FLOTATION,The Resources Processing Society of Japan,04277775|18839142 +Flow Measurement and Instrumentation,Elsevier ,09555986| +Flow Turbulence and Combustion,Springer-Verlag,13866184|15731987 +Flower Research Journal,Korean Society for Floricultural Science,12255009|2287772X +Fluctuation and Noise Letters,World Scientific ,02194775|17936780 +Flugmedizin · Tropenmedizin · Reisemedizin - FTR,Thieme Publishing Group,18644538|1864175X +Fluid Dynamics,Pleiades Publishing,00154628|15738507 +Fluid Dynamics Research,IOP Publishing,01695983|18737005 +Fluid Phase Equilibria,Elsevier ,03783812| +Fluids,MDPI AG,23115521 +Fluids and Barriers of the CNS,Springer (Biomed Central Ltd.),20458118|20458118 +Fluorescent Materials,Walter de Gruyter GmbH,22991158 +FLUORINE NOTES,P2M Invest,20714807 +Flux,PERSEE Program,11542721|19589557 +Fly,Landes Bioscience,19336934|19336942 +FMC - Formación Médica Continuada en Atención Primaria,Elsevier ,11342072| +FME Transaction,Centre for Evaluation in Education and Science,14512092| +Focaal,Berghahn Books,09201297|15585263 +Focus,American Physical Society,15390748 +FOCUS Journal of International Business,Journal Press India,23474459|2395258X +focus neurogeriatrie,Springer-Verlag,18641954|18641962 +Focus on Alternative and Complementary Therapies,Wiley Blackwell (Blackwell Publishing),14653753|20427166 +Focus on Autism and Other Developmental Disabilities,SAGE Publications,10883576|15384829 +Focus on Catalysts,Elsevier ,13514180| +Focus on Geography,Wiley Blackwell (Blackwell Publishing),15494934|19498535 +Focus on Health Professional Education A Multi-Professional Journal,University of Otago Library,14421100|22047662 +Focus on Pigments,Elsevier ,09696210| +Focus on Polyvinyl Chloride,Elsevier ,14685736| +Focus on Powder Coatings,Elsevier ,13645439| +Focus on Sciences,Nova Explore Publications Inc.,24238198|24238198 +Focus on Surfactants,Elsevier ,13514210| +FOCUS The Journal of Lifelong Learning in Psychiatry,American Psychiatric Publishing,15414094|15414108 +Focus The Journal of Planning Practice and Education,"""Robert E. Kennedy Library, Cal Poly""",15493776|15493776 +Focusing on Modern Food Industry,"""Science and Engineering Publishing, Co.""",23257016| +Fokus på familien,Scandinavian University Press / Universitetsforlaget AS,03325415|08077487 +Folding and Design,Elsevier ,13590278| +Folia Anatomica Japonica,Department of Anatomy Keio University School of Medicine,21870152 +Folia Bibliologica,Wydawnictwo Uniwersytetu Marii Curie-SkÅ?odowskiej w Lublinie,12302376|24498246 +Folia Biologica,"""Institute of Systematics and Evolution of Animals, Polish Academy of Sciences""",00155497|17349168 +Folia Biologica et Oecologica,De Gruyter Open Sp. z o.o. ,17302366|17302366 +Folia Cardiologica,VM Media Sp zo.o. - VMGroup SK,23537752|23537760 +Folia Cryptogamica Estonica,University of Tartu Press,14062070|17367786 +Folia Endocrinologica Japonica,The Japan Endocrine Society,00290661|2186506X +Folia Entomologica Hungarica,Folia Entomologica Hungarica,03739465| +Folia Forestalia Polonica,De Gruyter Open Sp. z o.o. ,00716677|00716677 +Folia Geobotanica,Springer-Verlag,12119520|18749348 +Folia Geobotanica et Phytotaxonomica,Springer-Verlag,00155551|15731170 +Folia Histochemica et Cytobiologica,VM Media Sp zo.o. - VMGroup SK,02398508|18975631 +Folia Historica Cracoviensia,Pontifical Universtiy of John Paul II in Krakow,08678294|23916702 +Folia Horticulturae,De Gruyter Open Sp. z o.o. ,08671761|20835965 +Folia Linguistica,Walter de Gruyter GmbH,01654004|16147308 +Folia Linguistica Historica,Walter de Gruyter GmbH,0168647X|16147316 +Folia Malacologica,Bogucki Wydawnictwo Naukowe,15067629| +Folia Medica,De Gruyter Open Sp. z o.o. ,02048043|13142143 +Folia Microbiologica,Springer-Verlag,00155632|18749356 +Folia Morphologica,VM Media Sp zo.o. - VMGroup SK,00155659|16443284 +Folia Musei rerum naturalium Bohemiae occidentalis Geologica et Paleobiologica,De Gruyter Open Sp. z o.o. ,1805286X +Folia Neuropathologica,Termedia Sp. z.o.o.,16414640| +Folia Oeconomica Stetinensia,De Gruyter Open Sp. z o.o. ,17304237|18980198 +Folia Parasitologica,Biology Centre AS CR,00155683|18036465 +Folia Pharmacologica Japonica,The Japanese Pharmacological Society,00155691|13478397 +Folia Phoniatrica et Logopaedica,S. Karger AG,10217762|14219972 +Folia Praehistorica Posnaniensia,Adam Mickiewicz University Poznan,02398524| +Folia Primatologica,S. Karger AG,00155713|14219980 +Folia Quaternaria,De Gruyter Open Sp. z o.o. ,0015573X +Folia Scandinavica Posnaniensia,De Gruyter Open Sp. z o.o. ,22996885|22996885 +Fólio - Revista Científica Digital - Jornalismo Publicidade e Turismo,Instituto Porto Alegre da Igreja Metodista,19813422 +Folios,Universidad Pedagogica Nacional,01234870|01202146 +Folk Life,Informa UK (Taylor & Francis),04308778|1759670X +Folklore,Informa UK (Taylor & Francis),0015587X|14698315 +Folklore Electronic Journal of Folklore,Estonian Literary Museum Scholary Press,14060957|14060949 +Folklore Studies,JSTOR,03880370| +Folklorica,The University of Kansas,19200234|19200242 +Food & Function,The Royal Society of Chemistry,20426496|2042650X +Food & Nutrition Research,Co-Action Publishing,16546628|1654661X +Food Additives & Contaminants,Informa UK (Taylor & Francis),0265203X|14645122 +Food Additives & Contaminants Part A,Informa UK (Taylor & Francis),19440049|19440057 +Food Additives and Contaminants Part B,Informa UK (Taylor & Francis),19393210|19393229 +Food Analytical Methods,Springer-Verlag,19369751|1936976X +Food and Agricultural Immunology,Informa UK (Taylor & Francis),09540105|14653443 +Food and Bioprocess Technology,Springer-Verlag,19355130|19355149 +Food and Bioproducts Processing,Elsevier ,09603085|09603085 +Food and Chemical Toxicology,Elsevier ,02786915| +Food and Cosmetics Toxicology,Elsevier ,00156264| +Food and Energy Security,Wiley Blackwell (John Wiley & Sons),20483694| +Food and Environmental Virology,Springer-Verlag,18670334|18670342 +Food and Feed Research,Centre for Evaluation in Education and Science,22175369| +Food and Foodways,Informa UK (Taylor & Francis),07409710|15423484 +Food and History,"""Brepols Publishers, NV""",17803187| +Food and Nutrition Bulletin,SAGE Publications,03795721|15648265 +Food and Nutrition Sciences,"""Scientific Research Publishing, Inc.""",2157944X|21579458 +Food and Public Health,Scientific and Academic Publishing,21629412| +Food and raw materials,Infra-M Academic Publishing House,23084057| +Food and Waterborne Parasitology,Elsevier ,24056766| +Food Biophysics,Springer-Verlag,15571858|15571866 +Food Bioscience,Elsevier ,22124292| +Food Biotechnology,Informa UK (Taylor & Francis),08905436|15324249 +Food Chain,Practical Action Publishing,20461879|20461887 +Food Chemistry,Elsevier ,03088146| +Food Control,Elsevier ,09567135| +Food Culture and Society An International Journal of MultidisciplinaryResearch,Informa UK (Taylor & Francis),15528014|00000000 +Food Digestion,Springer-Verlag,18691978|18691986 +Food Economics,Informa UK (Taylor & Francis),2164828X|21648298 +Food Economics - Acta Agriculturae Scandinavica Section C,Informa UK (Taylor & Francis),16507541|1651288X +Food Engineerin Theory and Practice,Academic Publishing House Researcher,24122254| +Food Engineering Progress,Korean Society for Food Engineering,12264768|22881247 +Food Engineering Reviews,Springer-Verlag,18667910|18667929 +Food Hydrocolloids,Elsevier ,0268005X| +Food Hygiene and Safety Science (Shokuhin Eiseigaku Zasshi),Japanese Society for Food Hygiene and Safety,00156426|18821006 +FOOD IRRADIATION JAPAN,Japanese Research Association for Food Irradiation,03871975|18843611 +Food Manufacturing Efficiency,IFIS Publishing,17502683|17502691 +Food Microbiology,Elsevier ,07400020|10959998 +Food Packaging and Shelf Life,Elsevier ,22142894| +Food Policy,Elsevier ,03069192| +food preservation science,Japan Association of Food Preservation Scientists,13441213|21861277 +Food Quality and Preference,Elsevier ,09503293| +Food Research International,Elsevier ,09639969| +Food Reviews International,Informa UK (Taylor & Francis),87559129|15256103 +Food Safety,"""Food Safety Commission, Cabinet Office""",21878404 +Food Science & Nutrition,Wiley Blackwell (John Wiley & Sons),20487177| +Food Science & Technology Bulletin Functional Foods,IFIS Publishing,14762137|14762137 +Food Science and Biotechnology,Springer-Verlag,12267708|20926456 +Food Science and Human Wellness,Elsevier ,22134530| +Food Science and Technology,"""Horizon Research Publishing Co., Ltd.""",2331513X|23315156 +Food Science and Technology (Campinas),SciELO,1678457X +Food Science and Technology International,SAGE Publications,10820132|15321738 +Food Science and Technology International Tokyo,Japanese Society for Food Science and Technology,13417592|18813976 +Food Science and Technology Letters,Bioinfo Publications,0976982X|09769838 +Food Science and Technology Research,Japanese Society for Food Science and Technology,13446606|18813984 +FOOD SCIENCE RESEARCH JOURNAL,Hind Agri Horticultural Society,09761276|22309403 +Food Security,Springer-Verlag,18764517|18764525 +Food Service Technology,Wiley Blackwell (Blackwell Publishing),14715732|14715740 +Food Structure,Elsevier ,22133291| +Food Studies An Interdisciplinary Journal,Common Ground Publishing,21601933|21601941 +Food Technology and Biotechnology,Food Technology nd Biotechnology Journal,13309862|13342606 +Food Webs,Elsevier ,23522496| +Foodborne Pathogens and Disease,Mary Ann Liebert,15353141|15567125 +Foods,MDPI AG,23048158 +FoodSci Indian Journal of Research in Foods and Nutrition,Vellalar College for Women,23498897|23501006 +Foodservice Research International,Wiley Blackwell (Blackwell Publishing),15248275|17454506 +Foot & Ankle International,SAGE Publications,10711007|19447876 +Foot & Ankle Specialist,SAGE Publications,19386400|19387636 +Foot and Ankle Clinics,Elsevier ,10837515| +Foot and Ankle Surgery,Elsevier ,12687731|14609584 +Footwear Science,Informa UK (Taylor & Francis),19424280|19424299 +Fooyin Journal of Health Sciences,Elsevier ,18778607| +FOR Rivista per la formazione,Franco Angeli,18281966|1972506X +Forage and Grazinglands,American Society of Agronomy,15474631 +Forbes & Fifth,"""University Library System, University of Pittsburgh""",23327863 +Foreign Affairs,JSTOR,00157120| +Foreign Language Annals,Wiley Blackwell (Blackwell Publishing),0015718X|19449720 +Foreign Languages Education,The Korea Association of Foreign Languages Education,12264628| +Foreign Policy,JSTOR,00157228| +Foreign Policy Analysis,Oxford University Press,17438586|17438594 +Foreign Policy Bulletin,Cambridge University Press,10527036|17451302 +Foreign Trade Review,SAGE Publications,00157325|09717625 +Forensic Medicine and Anatomy Research,"""Scientific Research Publishing, Inc.""",23274115|23274107 +Forensic Science,Elsevier ,03009432| +Forensic Science International,Elsevier ,03790738| +Forensic Science International Genetics,Elsevier ,18724973| +Forensic Science International Genetics Supplement Series,Elsevier ,18751768| +Forensic Science International Supplement Series,Elsevier ,18751741| +Forensic Science Medicine and Pathology,Springer-Verlag,1547769X|15562891 +Forensic Science Policy & Management An International Journal,Informa UK (Taylor & Francis),19409044|19409036 +Forensic Toxicology,Springer-Verlag,18608965|18608973 +Forensische Psychiatrie Psychologie Kriminologie,Springer-Verlag,18627072|18627080 +Foresic Research & Criminology International Journal,MedCrave Group,24692794 +foresight,Emerald (MCB UP ),14636689| +Foresight-Russia,"""National Research University, Higher School of Economics (HSE)""",1995459X|23129972 +Forest & Conservation History,Oxford University Press,10467009| +Forest - Rivista di Selvicoltura ed Ecologia Forestale,SISEF,18240119 +Forest Ecology and Management,Elsevier ,03781127| +Forest Ecosystems,Springer (Biomed Central Ltd.),21975620|21975620 +Forest History,JSTOR,00157422| +Forest Pathology,Wiley Blackwell (Blackwell Publishing),14374781|14390329 +Forest Phytophthoras,Oregon State University,21647232 +Forest Policy and Economics,Elsevier ,13899341| +Forest Products Journal,Forest Products Society,00157473| +Forest Products Journal,Forest Products Society,00157473| +Forest Research Open Access,OMICS Publishing Group,21689776 +Forest Research Papers,De Gruyter Open Sp. z o.o. ,17329442|20828926 +Forest Science,Society of American Foresters,0015749X| +Forest Science and Practice,Springer-Verlag,20954034|20954034 +Forest Science and Technology,Informa UK (Taylor & Francis),21580103|21580715 +Forest Systems,Instituto Nacional de Investigacion y Tecnologia Agraria y Alimentaria,21715068|21719845 +Forestry,Oxford University Press,0015752X|14643626 +Forestry Engineering Journal,Infra-M Academic Publishing House,22227962| +Forestry Journal,De Gruyter Open Sp. z o.o. ,03231046|13384295 +Forestry Studies / Metsanduslikud Uurimused,De Gruyter Open Sp. z o.o. ,14069954|17368723 +Forestry Studies in China,Springer-Verlag,10081321|19930372 +Forests,MDPI AG,19994907 +Forests Trees and Livelihoods,Informa UK (Taylor & Francis),14728028|21643075 +Forftwiffenfchaftliches Centralblatt,Springer-Verlag,00158003|14390337 +Forma,Terrapub,09116036|21891311 +Forma y Función,Universidad Nacional de Colombia,0120338X|22565469 +Formação Docente,Instituto Metodista Izabela Hendrix,22370587 +Formación universitaria,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7185006 +FORMakademisk,Oslo and Akershus University College of Applied Sciences,18909515 +Formal Aspects of Computing,Springer-Verlag,09345043|1433299X +Formal Methods in System Design,Springer-Verlag,09259856|15728102 +Formalized Mathematics,De Gruyter Open Sp. z o.o. ,14262630|18989934 +FORMATH,FORMATH Research Group,21885729 +Formation emploi,CAIRN,07596340|21070946 +Formation of -Stereotriads by Aldol Coupling of Vinyl Ketones and α-Amino Aldehydes,Thieme Publishing Group,20100299 +Formosan Journal of Musculoskeletal Disorders,Elsevier ,22107940| +Formosan Journal of Surgery,Elsevier ,1682606X| +Foro de Educación,FahrenHouse,16987799|16987802 +Foro Interno,Universidad Complutense de Madrid,15784576|19882920 +FORO Revista de Ciencias Jurídicas y Sociales Nueva Época,Universidad Complutense de Madrid,16985583| +Forschende Komplementärmedizin / Research in Complementary Medicine,S. Karger AG,16614127|16614119 +Forschende Komplementärmedizin und Klassische Naturheilkunde / Research in Complementary and Classical Natural Medicine,S. Karger AG,14247364|14247372 +Forschung,Wiley Blackwell (John Wiley & Sons),01721518|16198166 +Forschung im Ingenieurwesen,Springer-Verlag,00157899|14340860 +Forschungen und Berichte,JSTOR,00676004| +Forschungen zur Brandenburgischen und Preußischen Geschichte,Duncker & Humblot GmbH,09341234|18655750 +Forschungsjournal Soziale Bewegungen,Walter de Gruyter GmbH,21924848|23659890 +Fortschritte der Kieferorthopädie,Springer-Verlag,0015816X| +Fortschritte der KieferorthopNdie,Springer-Verlag,0015816X| +Fortschritte der Neurologie · Psychiatrie,Thieme Publishing Group,07204299|14393522 +Fortschritte der Physik,Wiley Blackwell (John Wiley & Sons),00158208|15213978 +Fortschritte der Physik/Progress of Physics,Wiley Blackwell (John Wiley & Sons),00158209|15213979 +Forum,Springer-Verlag,09470255|21909784 +FORUM,"""Symposium Books, Ltd.""",09638253| +FORUM,John Benjamins Publishing Company,15987647|2451909X +FORUM,Franco Angeli,19710399|19725051 +Forum Criminalistic / Forensic Science Forum,European Association of Scientific Research,18442641| +Fòrum de Recerca,Universitat Jaume I,11395486 +Forum der Psychoanalyse,Springer-Verlag,01787667|14370751 +Forum for Development Studies,Informa UK (Taylor & Francis),08039410|18911765 +Forum for Health Economics & Policy,Walter de Gruyter GmbH,21946191|15589544 +Forum for Modern Language Studies,Oxford University Press,00158518|14716860 +Forum for Social Economics,Informa UK (Taylor & Francis),07360932|18746381 +Forum For Youth Culture,The Research Center for Korea Youth Culture,19752733| +Forum für osteuropäische Ideen -und Zeitgeschichte,Bohlau Verlag,14334887|21943672 +Forum geografic,A. I. Rosu Cultural Scientific Foundation Fundatia cultural-stiintifica A. I. Rosu,15831523|20674635 +Forum Italicum A Journal of Italian Studies,SAGE Publications,00145858|2168989X +Forum Journal of History,"""Robert E. Kennedy Library, Cal Poly""",21537119|21537178 +Fórum Linguístico,Universidade Federal de Santa Catarina,14158698|19848412 +Forum Mathematicum,Walter de Gruyter GmbH,09337741|14355337 +Forum Modernes Theater,Muse - Johns Hopkins University Press,21963517 +Forum of Clinical Oncology,De Gruyter Open Sp. z o.o. ,1792362X +Forum of Mathematics Pi,Cambridge University Press,20505086 +Forum of Mathematics Sigma,Cambridge University Press,20505094|20505094 +Forum on Immunopathological Diseases and Therapeutics,Begell House Inc.,21518017| +Forum Philosophicum,Philosophy Documentation Center,14261898| +Forum Psychotherapeutische Praxis,Hogrefe Publishing Group,18607357| +Forum Revista Departamento Ciencia Política,Universidad Nacional de Colombia,22161775| +Forum Sociológico,OpenEdition,21827427|21827427 +Forum Sociológico,OpenEdition,21827427|21827427 +Forum Zakażeń,Evereth Publishing,20820623|20844174 +Fossil Record,Copernicus GmbH,14351943|18601014 +Fottea,Palacky University Olomouc,18025439|18054927 +Foundations and Trends in Databases,Now Publishers,19317883|19317891 +Foundations and Trends in Robotics,Now Publishers,19358253|19358261 +Foundations and Trends® in Accounting,Now Publishers,15540642|15540650 +Foundations and Trends® in Communications and Information Theory,Now Publishers,15672190|15672328 +Foundations and Trends® in Computer Graphics and Vision,Now Publishers,15722740|15722759 +Foundations and Trends® in Econometrics,Now Publishers,15513076|15513084 +Foundations and Trends® in Electronic Design Automation,Now Publishers,15513939|15513947 +Foundations and Trends® in Entrepreneurship,Now Publishers,15513114|15513122 +Foundations and Trends® in Finance,Now Publishers,15672395|15672409 +Foundations and Trends® in Human–Computer Interaction,Now Publishers,15513955|15513963 +Foundations and Trends® in Information Retrieval,Now Publishers,15540669|15540677 +Foundations and Trends® in Information Systems,Now Publishers,23311231|2331124X +Foundations and Trends® in Machine Learning,Now Publishers,19358237|19358245 +Foundations and Trends® in Marketing,Now Publishers,15550753|15550761 +Foundations and Trends® in Microeconomics,Now Publishers,15479846|15479854 +Foundations and Trends® in Networking,Now Publishers,1554057X|15540588 +Foundations and Trends® in Optimization,Now Publishers,21673888|21673918 +Foundations and Trends® in Programming Languages,Now Publishers,23251107|23251131 +Foundations and Trends® in Signal Processing,Now Publishers,19328346|19328354 +Foundations and Trends® in Stochastic Systems,Now Publishers,15513092|15513106 +Foundations and Trends® in Systems and Control,Now Publishers,23256818|23256826 +Foundations and Trends® in Technology Information and Operations Management,Now Publishers,15719545|15719553 +Foundations and Trends® in Theoretical Computer Science,Now Publishers,1551305X|15513068 +Foundations and Trends® in Web Science,Now Publishers,1555077X|15550788 +Foundations of Chemistry,Springer-Verlag,13864238|15728463 +Foundations of Computational Mathematics,Springer-Verlag,16153375|16153383 +Foundations of Computing and Decision Sciences,De Gruyter Open Sp. z o.o. ,08676356|08676356 +Foundations of Management,De Gruyter Open Sp. z o.o. ,20807279|23005661 +Foundations of Physics,Springer-Verlag,00159018|15729516 +Foundations of Physics Letters,Springer-Verlag,08949875|15729524 +Foundations of Science,Springer-Verlag,12331821|15728471 +Fourth Genre Explorations in Nonfiction,Michigan State University Press,15223868|15441733 +Fractal Geometry and Nonlinear Analysis in Medicine and Biology,Open Access Text,20589506 +Fractal Revista de Psicologia,SciELO,19840292|19840292 +Fractals,World Scientific ,0218348X|17936543 +Fractional Calculus and Applied Analysis,De Gruyter Open Sp. z o.o. ,13110454|13142224 +Fractional Differential Calculus,Element d.o.o.,18479677| +Fragblast,Informa UK (Taylor & Francis),1385514X|17444977 +Fragmenta,"""Brepols Publishers, NV""",1784410X| +Fragmenta Entomologica,PAGEPress Publications,0429288X|22844880 +Fragmenta Faunistica,Museum and Institute of Zoology at the Polish Academy of Sciences,00159301| +Fragmenta Faunistica Musei Zoologici Polonici,Museum and Institute of Zoology at the Polish Academy of Sciences,15053970| +Fragmenta Palaeontologica Hungarica,Fragmenta Palaeontologica Hungarica,1586930X| +Fragmentos Revista de Língua e Literatura Estrangeiras,Universidade Federal de Santa Catarina,01031783|21757992 +Fragmentum,Universidade Federal de Santa Maria,15199894|21792194 +Framework The Journal of Cinema and Media,Wayne State University Press,03067661|15597989 +Francis W Parker School Studies in Education,The University of Chicago Press,21612501| +Francis W Parker School Yearbook,The University of Chicago Press,2161248X| +Franciscan Studies,Muse - Johns Hopkins University Press,19459718 +Francophonies d Amérique,Consortium Erudit,11832487|17101158 +Francosphères,Liverpool University Press,20463820|20463839 +Franquisme & Transició Revista d Història i de Cultura,Fundacio per la Universitat Oberta de Catalunya,23399309|2014511X +Frauen machen Informatik,Springer-Verlag,09440925| +Frauenheilkunde aktuell,S. Karger AG,10215697| +Frauenheilkunde up2date,Thieme Publishing Group,14393719|1611650X +Free Radical Biology and Medicine,Elsevier ,08915849| +Free Radical Research,Informa UK (Taylor & Francis),10715762|10292470 +Free Radical Research Communications,Informa UK (Taylor & Francis),87550199| +Free Radicals and Antioxidants,EManuscript Services,22312536|22312536 +Free Speech Yearbook,Informa UK (Taylor & Francis),08997225|21681430 +Freiburger Zeitschrift für GeschlechterStudien,Barbara Budrich Publishers,09489975|21964459 +French Colonial History,Michigan State University Press,15393402|15437787 +French Cultural Studies,SAGE Publications,09571558|00000000 +French Forum,Muse - Johns Hopkins University Press,15341836 +French Historical Studies,Duke University Press,00161071|15275493 +French History,Oxford University Press,02691191|14774542 +French Politics,Nature Publishing Group - Macmillan Publishers,14763419|14763427 +French Politics Culture & Society,Berghahn Books,15376370|15585271 +French Studies,Oxford University Press,00161128|14682931 +French Studies Bulletin,Oxford University Press,02622750|17489180 +Frequenz,Walter de Gruyter GmbH,00161136|21916349 +Fresenius Journal of Analytical Chemistry,Springer-Verlag,09370633|14321130 +Fresenius Zeitschrift für Analytische Chemie,Springer-Verlag,00161152| +Freshwater Biology,Wiley Blackwell (Blackwell Publishing),00465070|13652427 +Freshwater Crayfish,International Association of Astacology,20764324|20764332 +Freshwater Invertebrate Biology,The University of Chicago Press,07382189| +Freshwater Metadata Journal,University of Natural Resources and Life Sciences BOKU Vienna,23126604 +Freshwater Reviews,BioOne (Freshwater Biological Association),1755084X| +Freshwater Science,The University of Chicago Press,21619549|21619565 +Friction,Springer-Verlag,22237690|22237704 +Friction and Wear Research,"""Science and Engineering Publishing, Co.""",23293357| +Friedel–Crafts Reaction,Thieme Publishing Group,20500165 +Friedel–Crafts Reaction of Indoles with Acylphosphonates,Thieme Publishing Group,20500270 +Fronteiras - estudos midiáticos,Universidade do Vale do Rio Dos Sinos - UNISINOS,15186113|19848226 +Fronteiras – estudos midiáticos,Universidade do Vale do Rio Dos Sinos - UNISINOS,19848226 +Frontières,Consortium Erudit,11803479|19160976 +Frontiers A Journal of Women Studies,University of Nebraska Press,01609009|15360334 +Frontiers for Young Minds,Frontiers Media SA,22966846 +Frontiers in Aerospace Engineering,DEStech Publications,23256796|23256788 +Frontiers in Aging Neuroscience,Frontiers Media SA,16634365 +Frontiers in Applied Mathematics and Statistics,Frontiers Media SA,22974687 +Frontiers in Astronomy and Space Sciences,Frontiers Media SA,2296987X +Frontiers in Behavioral Neuroscience,Frontiers Media SA,16625153|16625153 +Frontiers in Bioengineering and Biotechnology,Frontiers Media SA,22964185 +Frontiers in Biology,Springer-Verlag,16747984|16747992 +Frontiers in Bioscience,Frontiers in BioScience,10939946|10934715 +Frontiers in Bioscience,Frontiers in BioScience,19450494|19450508 +Frontiers in Built Environment,Frontiers Media SA,22973362 +Frontiers in Cardiovascular Medicine,Frontiers Media SA,2297055X +Frontiers in Cell and Developmental Biology,Frontiers Media SA,2296634X +Frontiers in Cellular and Infection Microbiology,Frontiers Media SA,22352988 +Frontiers in Cellular Neuroscience,Frontiers Media SA,16625102|16625102 +Frontiers in Chemistry,Frontiers Media SA,22962646 +Frontiers in Computational Neuroscience,Frontiers Media SA,16625188|16625188 +Frontiers in Digital Humanities,Frontiers Media SA,22972668 +Frontiers in Drug Design & Discovery,Bentham Science,15740889|00000000 +Frontiers in Earth Science,Frontiers Media SA,22966463 +Frontiers in Ecology and Evolution,Frontiers Media SA,2296701X +Frontiers in Ecology and the Environment,Wiley Blackwell (John Wiley & Sons),15409295|15409309 +Frontiers in Endocrinology,Frontiers Media SA,16642392 +Frontiers in Energy,Springer-Verlag,20951701|20951698 +Frontiers in Energy Research,Frontiers Media SA,2296598X +Frontiers in Enteric Neuroscience,Frontiers Media SA,16634608|16634608 +Frontiers in Environmental Engineering,DEStech Publications,23265787 +Frontiers in Environmental Microbiology,Science Publishing Group,24697869| +Frontiers in Environmental Science,Frontiers Media SA,2296665X +Frontiers in Evolutionary Neuroscience,Frontiers Media SA,1663070X +Frontiers in Finance,"""Science and Engineering Publishing, Co.""",23801689| +Frontiers in Genetics,Frontiers Media SA,16648021 +Frontiers in Heat and Mass Transfer,Global Digital Central,21518629|21518629 +Frontiers in Heat Pipes,Global Digital Central,2155658X|2155658X +Frontiers in Human Neuroscience,Frontiers Media SA,16625161|16625161 +Frontiers in ICT,Frontiers Media SA,2297198X +Frontiers in Immunology,Frontiers Media SA,16643224 +Frontiers in Integrative Neuroscience,Frontiers Media SA,16625145|16625145 +Frontiers in Internal Medicine,Frontiers Media SA,22962573 +Frontiers in Language Teaching Research,"""Science and Engineering Publishing, Co.""",23337885| +Frontiers in Life Science,Informa UK (Taylor & Francis),21553769|21553777 +Frontiers in Marine Science,Frontiers Media SA,22967745 +Frontiers in Materials,Frontiers Media SA,22968016 +Frontiers in Mechanical Engineering,Frontiers Media SA,22973079 +Frontiers in Medicinal Chemistry - Online,Bentham Science,15672042|00000000 +Frontiers in Medicine,Frontiers Media SA,2296858X +Frontiers in Microbiology,Frontiers Media SA,1664302X +Frontiers in Molecular Biosciences,Frontiers Media SA,2296889X +Frontiers in Molecular Neuroscience,Frontiers Media SA,16625099|16625099 +Frontiers in Natural Product Chemistry,Bentham Science,15740897|00000000 +Frontiers in Neural Circuits,Frontiers Media SA,16625110|16625110 +Frontiers in Neuroanatomy,Frontiers Media SA,16625129|16625129 +Frontiers in Neuroendocrinology,Elsevier ,00913022|10956808 +Frontiers in Neuroenergetics,Frontiers Media SA,16626427 +Frontiers in Neuroengineering,Frontiers Media SA,16626443|16626443 +Frontiers in Neurogenesis,Frontiers Media SA,1663800X +Frontiers in Neurogenomics,Frontiers Media SA,16637763 +Frontiers in Neuroinformatics,Frontiers Media SA,16625196|16625196 +Frontiers in Neurology,Frontiers Media SA,16642295 +Frontiers in Neuromethods,Frontiers Media SA,1663375X +Frontiers in Neuropharmacology,Frontiers Media SA,16638328 +Frontiers in Neuroprosthetics,Frontiers Media SA,16629957 +Frontiers in Neurorobotics,Frontiers Media SA,16625218 +Frontiers in Neuroscience,Frontiers Media SA,16624548|1662453X +Frontiers in Nutrition,Frontiers Media SA,2296861X +Frontiers in Oncology,Frontiers Media SA,2234943X +Frontiers in Organic Chemistry,Bentham Science,15740900| +Frontiers in Pediatrics,Frontiers Media SA,22962360 +Frontiers in Pharmacology,Frontiers Media SA,16639812 +Frontiers in Physics,Frontiers Media SA,2296424X +Frontiers in Physiology,Frontiers Media SA,1664042X +Frontiers in Plant Science,Frontiers Media SA,1664462X +Frontiers in Psychiatry,Frontiers Media SA,16640640 +Frontiers in Psychology,Frontiers Media SA,16641078 +Frontiers in Public Health,Frontiers Media SA,22962565 +Frontiers in Robotics and AI,Frontiers Media SA,22969144 +Frontiers in Science,Scientific and Academic Publishing,21666083| +Frontiers in Sensors,"""Science and Engineering Publishing, Co.""",23277610| +Frontiers in Sociology,Frontiers Media SA,22977775 +Frontiers in Surgery,Frontiers Media SA,2296875X +Frontiers in Synaptic Neuroscience,Frontiers Media SA,16633563 +Frontiers in Systems Neuroscience,Frontiers Media SA,16625137 +Frontiers in Veterinary Science,Frontiers Media SA,22971769 +Frontiers in Zoology,Springer (Biomed Central Ltd.),17429994|17429994 +Frontiers of Agricultural Science and Engineering,Editorial Department of Engineering Sciences,20957505| +Frontiers of Agriculture in China,Springer-Verlag,16737334|1673744X +Frontiers of Architectural Research,Elsevier ,20952635| +Frontiers of Architecture and Civil Engineering in China,Springer-Verlag,16737407|16737512 +Frontiers of Biological and Life Sciences,Sciknow Publications,23338695 +Frontiers of Biology in China,Springer-Verlag,16733509|16733622 +Frontiers of Business Research in China,Brill Academic Publishers,16737326|16737431 +Frontiers of Chemical Engineering in China,Springer-Verlag,16737369|16737474 +Frontiers of Chemical Science and Engineering,Springer-Verlag,20950179|20950187 +Frontiers of Chemistry in China,Springer-Verlag,16733495|16733614 +Frontiers of Computer Science,Springer-Verlag,20952228|20952236 +Frontiers of Computer Science in China,Springer-Verlag,16737350|16737466 +Frontiers of Earth Science,Springer-Verlag,20950195|20950209 +Frontiers of Earth Science in China,Springer-Verlag,16737385|16737490 +Frontiers of Economic Analysis & Policy,Walter de Gruyter GmbH,15380629 +Frontiers of Economics in China,Brill Academic Publishers,16733444|16733568 +Frontiers of Education in China,Brill Academic Publishers,1673341X|16733533 +Frontiers of Electrical and Electronic Engineering,Springer-Verlag,20952732|20952740 +Frontiers of Electrical and Electronic Engineering in China,Springer-Verlag,16733460|16733584 +Frontiers of Energy and Power Engineering in China,Springer-Verlag,16737393|16737504 +Frontiers of Engineering Management,Editorial Department of Engineering Sciences,20957513| +Frontiers of Environmental Science & Engineering,Springer-Verlag,20952201|2095221X +Frontiers of Environmental Science & Engineering in China,Springer-Verlag,16737415|16737520 +Frontiers of Forestry in China,Springer-Verlag,16733517|16733630 +Frontiers of History in China,Brill Academic Publishers,16733401|16733525 +Frontiers of Information Technology & Electronic Engineering,Zhejiang University Press,20959184|20959230 +Frontiers of International Accounting,Hans Publishers,21692572|21692580 +Frontiers of Law in China,Springer-Verlag,16733428|16733541 +Frontiers of Literary Studies in China,Brill Academic Publishers,16737318|16737423 +Frontiers of Macroeconomics,Walter de Gruyter GmbH,15346021 +Frontiers of Materials Science,Springer-Verlag,2095025X|20950268 +Frontiers of Materials Science in China,Springer-Verlag,16737377|16737482 +Frontiers of Mathematics in China,Springer-Verlag,16733452|16733576 +Frontiers of Mechanical Engineering,Springer-Verlag,20950233|20950241 +Frontiers of Mechanical Engineering in China,Springer-Verlag,16733479|16733592 +Frontiers of Medical & Biological Engineering,Brill Academic Publishers,09213775|15685578 +Frontiers of Medicine,Springer-Verlag,20950217|20950225 +Frontiers of Medicine in China,Springer-Verlag,16737342|16737458 +Frontiers of Optoelectronics,Springer-Verlag,20952759|20952767 +Frontiers of Optoelectronics in China,Springer-Verlag,16744128|16744594 +Frontiers of Philosophy in China,Brill Academic Publishers,16733436|1673355X +Frontiers of Physical in China,The Higher Education Electronic & Audio-Video Press,16733508| +Frontiers of Physics,Springer-Verlag,20950462|20950470 +Frontiers of Physics in China,Springer-Verlag,16733487|16733606 +Frontiers of Structural and Civil Engineering,Springer-Verlag,20952430|20952449 +Frontiers of Theoretical Economics,Walter de Gruyter GmbH,15345955 +Frontline Gastroenterology,BMJ,20414137|20414137 +Frontline Learning Research,EARLI,22953159 +Fróðskaparrit - Faroese Scientific Journal,Faroe University Press,03671704|24456144 +Frühe Bildung,Hogrefe Publishing Group,21919186|21919194 +Frühförderung interdisziplinär,"""Ernst Reinhardt, GmbH & Co. KG""",07219121| +Frühmittelalterliche Studien,Walter de Gruyter GmbH,00719706|16130812 +Fruits,EDP Sciences,02481294|1625967X +FSM İlmî Araştırmalar İnsan ve Toplum Bilimleri Dergisi,FSM Scholarly Journal of Humanities ands Social Sciences,21473153|21482217 +Fudan Journal of the Humanities and Social Sciences,Springer-Verlag,16740750|21982600 +Fuel,Elsevier ,00162361| +Fuel and Energy Abstracts,Elsevier ,01406701| +Fuel Cells,Wiley Blackwell (John Wiley & Sons),16156846|16156854 +Fuel Cells Bulletin,Elsevier ,14642859| +Fuel Processing Technology,Elsevier ,03783820| +Fuel Science and Technology International,Informa UK (Taylor & Francis),08843759| +Fühner-Weilands Sammlung von Vergiftungsfällen Archiv für Toxikologie,Springer-Verlag,03708497| +Fühner-Wielands Sammlung von Vergiftungsfällen,Springer-Verlag,03708497| +Fühner-Wielands Sammlung von Vergiftungsfällen Archiv für Toxikologie,Springer-Verlag,03708497| +FUKUSHIMA JOURNAL OF MEDICAL SCIENCE,The Fukushima Society of Medical Science,00162590|21854610 +Fullerene Science and Technology,Informa UK (Marcel Dekker),1064122X|15322343 +Fullerenes Nanotubes and Carbon Nanostructures,Informa UK (Taylor & Francis),1536383X|15364046 +Functional & Integrative Genomics,Springer-Verlag,1438793X|14387948 +Functional Analysis and Its Applications,Springer-Verlag,00162663|15738485 +Functional Analysis and Other Mathematics,Springer-Verlag,19910061|18637914 +Functional Ecology,Wiley Blackwell (Blackwell Publishing),02698463|13652435 +Functional Glycomics,Nature Publishing Group,1752184X| +Functional Glycomics Gateway,Nature Publishing Group,1752184X| +Functional Linguistics,Springer (Biomed Central Ltd.),2196419X|2196419X +Functional materials,Co. Ltd. Ukrinformnauka,10275495|22182993 +Functional Materials Letters,World Scientific ,17936047|17937213 +Functional Neurology,CIC Edizioni Internazionali,3935264 +Functional Plant Biology,CSIRO Publishing,14454408| +Functiones et Approximatio Commentarii Mathematici,Adam Mickiewicz University,02086573| +Functions of Language,John Benjamins Publishing Company,0929998X|15699765 +Fundamenta Informaticae,IOS Press,01692968|18758681 +Fundamenta Mathematicae,"""Institute of Mathematics, Polish Academy of Sciences""",00162736|17306329 +Fundamental and Applied Limnology / Archiv für Hydrobiologie,Schweizerbart,18639135|00000000 +Fundamental and Applied Toxicology,Elsevier ,02720590|10956832 +Fundamental and Clinical Pharmacology,Wiley Blackwell (Blackwell Publishing),07673981|14728206 +Fundamental Toxicological Sciences,Japanese Society of Toxicology,2189115X +Fundamina,Academy of Science of South Africa,1021545X|24117870 +Fundraising for Schools,Mark Allen Group,17555094| +Fungal Biology,Elsevier ,18786146| +Fungal Biology and Biotechnology,Springer (Biomed Central Ltd.),20543085|20543085 +Fungal Biology Reviews,Elsevier ,17494613| +Fungal Diversity,Springer-Verlag,15602745|18789129 +Fungal Ecology,Elsevier ,17545048| +Fungal Genetics and Biology,Elsevier ,10871845|10960937 +Fungal Genomics & Biology,OMICS Publishing Group,21658056 +Funkcialaj Ekvacioj,Mathematical Society of Japan,05328721| +Fuß & Sprunggelenk,Elsevier ,16199987|16199995 +Fusion Engineering and Design,Elsevier ,09203796| +Fusion Science & Technology,American Nuclear Society,15361055| +Future Anterior Journal of Historic Preservation History Theory and Criticism,University of Minnesota Press,15499715|19346026 +Future Business Journal,Elsevier ,23147210| +Future Cardiology,Future Medicine,14796678|17448298 +Future Cities and Environment,Springer (Biomed Central Ltd.),23639075 +Future Dental Journal,Elsevier ,23147180| +Future Generation Computer Systems,Elsevier ,0167739X| +Future HIV Therapy,Future Medicine,17469600|17469619 +Future Internet,MDPI AG,19995903 +Future Journal of Pharmaceutical Sciences,Elsevier ,23147245| +Future Learning,Baltzer Science Publishers,22115609|22115617 +Future Lipidology,Future Medicine,17460875|17460883 +Future Medicinal Chemistry,"""Future Science, LTD""",17568919|17568927 +Future Microbiology,Future Medicine,17460913|17460921 +Future Neurology,Future Medicine,14796708|17486971 +Future Oncology,Future Medicine,14796694|17448301 +Future Perspectives on Brønsted Base and Acid Catalysts and Additional Topics,Thieme Publishing Group,20500629 +Future Prescriber,Wiley Blackwell (John Wiley & Sons),14689871|19312261 +Future Rheumatology,Future Medicine,17460816|17460824 +Future Science OA,"""Future Science, LTD""",20565623 +Future Studies Research Journal Trends and Strategies,Fundacao Instituto de Administracao,21755825|21755825 +Future Virology,Future Medicine,17460794|17460808 +Futures,Elsevier ,00163287| +Futuribles,EDP Sciences,0337307X|0003181X +FUTY Journal of the Environment,African Journals Online ,15978826|15978826 +Fuzzy Information and Engineering,Elsevier ,16168658|16168666 +Fuzzy Optimization and Decision Making,Springer-Verlag,15684539|15732908 +Fuzzy Sets and Systems,Elsevier ,01650114| +G3 Genes|Genome|Genetics,The Genetics Society of America,21601836 +Gaceta Médica de Bilbao,Elsevier ,03044858| +Gaceta Mexicana de Oncología,Elsevier ,16659201| +Gaceta Sanitaria,Elsevier ,02139111|15781283 +Gadelica A Journal of Modern Irish Studies,JSTOR,20090943| +Gaea - Journal of Geoscience,Universidade do Vale do Rio Dos Sinos - UNISINOS,18085261|19833628 +GAIA - Ecological Perspectives for Science and Society,Oekom Publishers,09405550| +Gaia revue interdisciplinaire sur la Grèce Archaïque,PERSEE Program,12873349| +Gait & Posture,Elsevier ,09666362| +Galatasaray Üniversitesi İleti-ş-im Dergisi,Galatasaray Universitesi Iletisim,13052411| +Galaxea Journal of Coral Reef Studies,Japanese Coral Reef Society,18830838|18833969 +Galáxia (São Paulo),SciELO,19822553 +Galaxies,MDPI AG,20754434 +Galemys Spanish Journal of Mammalogy,Sociedad Espanola para la Conservacion y Estudio de los Mamiferos,11378700|22548408 +Gallaecia revista de arqueoloxía e antigüidade,University of Santiago de Compostela,02118653| +Galle Medical Journal,Sri Lanka Journals Online ,13917072| +Gallia,PERSEE Program,00164119|21099588 +Gallia préhistoire,PERSEE Program,00164127|21099642 +Game Theory,Hindawi Publishing Corporation,23566930|23146559 +Gamer o adicto? Revisión narrativa de los aspectos psicológicos de la adicción a los videojuegos,Revista Neuropsicologia Latinoamericana, +Games,MDPI AG,20734336 +Games and Culture,SAGE Publications,15554120|15554139 +Games and Economic Behavior,Elsevier ,08998256|10902473 +Games for Health Journal,Mary Ann Liebert,2161783X|21617856 +Gamete Research,Wiley Blackwell (John Wiley & Sons),01487280|15543919 +Gaming Law Review,Mary Ann Liebert,10921885| +Gaming Law Review and Economics,Mary Ann Liebert,10975349|19415494 +GAMM-Mitteilungen,Wiley Blackwell (John Wiley & Sons),09367195|15222608 +GANIT Journal of Bangladesh Mathematical Society,Bangladesh Journals Online,16063694|22245111 +Gardarika,Academic Publishing House Researcher,24096288|24137456 +Garden History,JSTOR,03071243| +Gardens’ Bulletin Singapore,Research Publishing Services,23825812| +Gardens’ Bulletin Singapore,Research Publishing Services,03747859| +Gas Separation & Purification,Elsevier ,09504214| +Gastric Cancer,Springer-Verlag,14363291|14363305 +Gastro - Open Journal,Openventio Publishers,23778369 +Gastro Open Access,Aperito Online Publishing Private Limited,23786221 +Gastroenterologia Japonica,Springer-Verlag,04351339| +Gastroenterología y Hepatología,Elsevier ,02105705|15789519 +Gastroenterología y Hepatología (English Edition),Elsevier ,24443824| +Gastroenterología y Hepatología Continuada,Elsevier ,15781550| +Gastroenterological and Intestinal Systems,Herbert Publications,20544154 +Gastroenterologie a hepatologie,"""Ambit Media, a.s.""",18047874|1804803X +Gastroentérologie Clinique et Biologique,Elsevier ,03998320| +Gastroenterologie up2date,Thieme Publishing Group,16169670|16169727 +Gastroenterology,Elsevier ,00165085| +Gastroenterology & Hepatology Open Access,MedCrave Group,23736372|23736372 +Gastroenterology Clinics of North America,Elsevier ,08898553| +Gastroenterology Insights,PAGEPress Publications,20367414|20367422 +Gastroenterology Nursing,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,1042895X| +Gastroenterology Report,Oxford University Press,20520034 +Gastroenterology Research,"""Elmer Press, Inc.""",19182805|19182813 +Gastroenterology Research and Practice,Hindawi Publishing Corporation,16876121|1687630X +Gastroenterology Review,Termedia Sp. z.o.o.,18955770| +Gastrointestinal Cancer Targets and Therapy,Dove Medical Press,11799919 +Gastrointestinal Endoscopy,Elsevier ,00165107| +Gastrointestinal Endoscopy Clinics of North America,Elsevier ,10525157| +Gastrointestinal Intervention,Society of Gastrointestinal Intervention,22131795|22131809 +Gastrointestinal Nursing,Mark Allen Group,14795248|20522835 +Gastrointestinal Oncology,Informa UK (Taylor & Francis),1475956X|14768283 +Gastrointestinal Radiology,Springer-Verlag,03642356| +Gastrointestinal Tumors,S. Karger AG,22963774|22963766 +Gastronomica The Journal of Food and Culture,University of California Press,15293262|15338622 +Gate to Computer Vision and Pattern Recognition,Science Gate Publishing PC,24080551 +Gateways International Journal of Community Research and Engagement,"""University of Technology, Sydney""",18363393 +Gayana (Concepción),SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7176538 +Gayana Botánica,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7176643 +GAZ WODA I TECHNIKA SANITARNA,"""Wydawnictwo SIGMA-NOT, sp. z.o.o.""",00165352| +Gazette,SAGE Publications,00165492|00000000 +Gazi Akademik Bakış,Gazi Academic View,13079778| +Gazi Medical Journal,Gazi University,1300056X|21472092 +Gazi Üniversitesi Gazi Eğitim Fakültesi Dergisi,Gazi Egitim Fakultesi Dergisi,13019058| +Gazi Üniversitesi Mühendislik-Mimarlık Fakültesi Dergisi,Journal of the Faculty of Engineering and Architecture of Gazi University,13001884|13044915 +Gaziantep Medical Journal,ScopeMed International Medical Journal Managment and Indexing System,13000888| +Gaziosmanpasa Universitesi Sosyal Bilimler Arastirmalari Dergisi,Gaziosmanpasa Universitesi Sosyal Bilimler Arastirmalari Dergisi,1306732X| +GBM Annual Fall meeting Berlin/Potsdam 2005,Elsevier- Spektrum Akademischer Verlag, +GBM Annual Fall meeting Halle 2002,Elsevier- Spektrum Akademischer Verlag, +GBM Annual Fall meeting Münster 2004,Elsevier- Spektrum Akademischer Verlag, +GBM Annual Spring meeting Mosbach 2003,Elsevier- Spektrum Akademischer Verlag, +GBM Annual Spring meeting Mosbach 2004,Elsevier- Spektrum Akademischer Verlag, +GBM Annual Spring meeting Mosbach 2005,Elsevier- Spektrum Akademischer Verlag, +GBM Annual Spring meeting Mosbach 2006,Elsevier- Spektrum Akademischer Verlag, +GBM Annual Spring meeting Mosbach 2007,Elsevier- Spektrum Akademischer Verlag, +GBM Annual Spring meeting Mosbach 2008,Elsevier- Spektrum Akademischer Verlag, +GBM Annual Spring meeting Mosbach 2009,Elsevier- Spektrum Akademischer Verlag, +GBM Fall meeting Hamburg 2007,Elsevier- Spektrum Akademischer Verlag, +GCB Bioenergy,Wiley Blackwell (Blackwell Publishing),17571693|17571707 +GDR Bulletin,New Prairie Press,21595933|21595941 +GE Jornal Português de Gastrenterologia,Elsevier ,08728178| +GE Portuguese Journal of Gastroenterology,Elsevier ,23414545| +Geburtshilfe und Frauenheilkunde,Thieme Publishing Group,00165751|14388804 +Gedrag & Organisatie,Boom Uitgevers Den Haag,09215077| +Gefäßmedizin Scan,Thieme Publishing Group,21975922|21975930 +Gefässchirurgie,Springer-Verlag,09487034|14343932 +Gels,MDPI AG,23102861 +GEM - International Journal on Geomathematics,Springer-Verlag,18692672|18692680 +GEMA Online Journal of Language Studies,Penerbit Universiti Kebangsaan Malaysia (UKM Press),16758021| +Gems & Gemoloy,Gemological Institute of America,0016626X| +Genba Panfuretto,The Surface Finishing Society of Japan,03685527|18843379 +Gender & History,Wiley Blackwell (Blackwell Publishing),09535233|14680424 +Gender & Society,SAGE Publications,08912432|15523977 +Gender and Behaviour,African Journals Online ,15969231 +Gender and Culture,KeiMyung University Institute for Women's Studies,20056354| +Gender and Development,Informa UK (Taylor & Francis),13552074|13649221 +Gender and Education,Informa UK (Taylor & Francis),09540253|13600516 +Gender and Language,Equinox Publishing,17476321|1747633X +Gender Equal Opportunities Research,Institute of Sociology of the Academy of Sciences of the Czech Republic,12130028| +Gender in Management An International Journal,Emerald (MCB UP ),17542413| +Gender Issues,Springer-Verlag,1098092X|19364717 +Gender Medicine,Elsevier ,15508579| +Gender Place & Culture,Informa UK (Taylor & Francis),0966369X|13600524 +Gender Sexuality & Feminism,University of Michigan Library,21688850 +Gender Studies,De Gruyter Open Sp. z o.o. ,22860134|1583980X +Gender Technology and Development,SAGE Publications,09718524|09730656 +Gender Work and Organization,Wiley Blackwell (Blackwell Publishing),09686673|14680432 +GENDER – Zeitschrift für Geschlecht Kultur und Gesellschaft,Barbara Budrich Publishers,18687245|21964467 +Gene,Elsevier ,03781119| +Gene Analysis Techniques,Elsevier ,07350651| +Gene and Gene Editing,American Scientific Publishers,23763949| +Gene Cell and Tissue,International Neuroscience Institute,23456833|23456841 +Gene Expression,Cognizant Communication Corp,10522166|15553884 +Gene Expression Patterns,Elsevier ,1567133X| +Gene Expression to Genetical Genomics,"""Libertas Academica, Ltd.""",11795697 +Gene Function & Disease,Wiley Blackwell (John Wiley & Sons),14387506|1438826X +Gene Regulation and Systems Biology,"""Libertas Academica, Ltd.""",11776250 +Gene Reports,Elsevier ,24520144| +Gene Technology,OMICS Publishing Group,23296682 +Gene Therapy,Nature Publishing Group,09697128|09697128 +Gene Therapy and Regulation,World Scientific ,13889532|15685586 +Genealogy,MDPI AG,23135778 +Genel Tip Dergisi,Genel Tip Dergisi,1301191X| +General and Comparative Endocrinology,Elsevier ,00166480|10956840 +General Anthropology,Wiley Blackwell (Blackwell Publishing),15371727|19393466 +General Hospital Psychiatry,Elsevier ,01638343| +General Mathematics Notes,"""Science and Education, Ltd.""",22197184| +General Medicine,The Japan Primary Care Association,13460072|18836011 +General Medicine Open Access,OMICS Publishing Group,23275146 +General Music Today,SAGE Publications,10483713|19313756 +General Pharmacology,Elsevier ,03063623| +General Pharmacology The Vascular System,Elsevier ,03063623| +General Physiology and Biophysics,"""AEPress, s.r.o.""",02315882|13384325 +General Reanimatology,FSBI SRIGR RAMS,18139779|24117110 +General Relativity and Gravitation,Springer-Verlag,00017701|15729532 +General Science Quarterly,Wiley Blackwell (John Wiley & Sons),00970352| +General Thoracic and Cardiovascular Surgery,Springer-Verlag,18636705|18636713 +General Topology and its Applications,Elsevier ,0016660X| +Generics and Biosimilars Initiative Journal,Pro Pharma Communications International,20336403|20336772 +Gênero & Direito,Revista Genero & Direito,21797137 +Genes,MDPI AG,20734425 +Genes & Cancer,"""Impact Journals, LLC """,19476019|19476027 +Genes & Development,Cold Spring Harbor Laboratory Press,08909369|08909369 +Genes & Diseases,Elsevier ,23523042| +Genes & Genetic Systems,The Genetics Society of Japan,13417568|18805779 +Genes & Genomics,Springer-Verlag,19769571|20929293 +Genes & Nutrition,Springer-Verlag,15558932|18653499 +Genes and Environment,Springer (Biomed Central Ltd.),18807046|18807062 +Genes and Function,Wiley Blackwell (Blackwell Publishing),13607413| +Genes and Immunity,Nature Publishing Group,14664879|14664879 +Genes Brain & Behavior,Wiley Blackwell (Blackwell Publishing),16011848|1601183X +Genes Chromosomes and Cancer,Wiley Blackwell (John Wiley & Sons),10452257|10982264 +Genes to Cells,Wiley Blackwell (Blackwell Publishing),13569597|13652443 +GeneScreen,Wiley Blackwell (Blackwell Publishing),1466920X|14669218 +Genèses,PERSEE Program,11553219|17762944 +genesis,Wiley Blackwell (John Wiley & Sons),1526954X|1526968X +Genesis,OpenEdition,11675101|22681590 +Genesis исторические исследования,"""NB-Media, Ltd.""",2409868X +Genetic Analysis Biomolecular Engineering,Elsevier ,10503862| +Genetic Analysis Techniques,Elsevier ,07350651| +Genetic Engineering & Biotechnology News,Mary Ann Liebert,1935472X|19378661 +Genetic Epidemiology,Wiley Blackwell (John Wiley & Sons),07410395|10982272 +Genetic Programming and Evolvable Machines,Springer-Verlag,13892576|15737632 +Genetic Resources and Crop Evolution,Springer-Verlag,09259864|15735109 +Genetic Social and General Psychology Monographs,Informa UK (Heldref Publications),87567547|19405286 +Genetic Testing,Mary Ann Liebert,10906576|10906576 +Genetic Testing and Molecular Biomarkers,Mary Ann Liebert,19450265|19450257 +Genetic Vaccines and Therapy,Springer (Biomed Central Ltd.),14790556| +Genetica,Springer-Verlag,00166707|15736857 +Genetics,The Genetics Society of America,00166731| +Genetics & Epigenetics,"""Libertas Academica, Ltd.""",1179237X +Genetics and Molecular Biology,SciELO,14154757|14154757 +Genetics and Molecular Research,Genetics and Molecular Research,16765680 +Genetics in Medicine,Nature Publishing Group,10983600|15300366 +Genetics of Multifactorial Disorders,De Gruyter Open Sp. z o.o. ,22996796 +Genetics Research,Cambridge University Press,00166723|14695073 +Genetics Research International,Hindawi Publishing Corporation,20903154|20903162 +Genetics Selection Evolution,Springer (Biomed Central Ltd.),0999193X|12979686 +Genetika,National Library of Serbia,05340012|18206069 +Génétique Sélection Évolution,Springer (Biomed Central Ltd.),07540264| +Genij Ortopedii,Russian Ilizarov Scientific Centre Restorative Traumatology and Orthopaedics,10284427| +Genocide Studies and Prevention,University of South Florida Libraries,19110359|19119933 +Genocide Studies International,University of Toronto Press Inc,22911847|22911855 +Genome,Canadian Science Publishing,08312796|14803321 +Genome Announcements,American Society for Microbiology,21698287 +Genome Biology,Springer (Biomed Central Ltd.),14656906|14656906 +Genome Biology and Evolution,Oxford University Press,17596653 +Genome Integrity,Medknow Publications,20419414| +Genome Letters,American Scientific Publishers,15373053|15373061 +Genome Medicine,Springer (Biomed Central Ltd.),1756994X|1756994X +Genome Research,Cold Spring Harbor Laboratory Press,10889051|10889051 +Genome Science and Technology,Mary Ann Liebert,10702830| +Genomic Medicine,Springer-Verlag,18717934|18717942 +Genomic Medicine Biomarkers and Health Sciences,Elsevier ,22114254| +Genomics,Elsevier ,08887543|10898646 +Genomics & Informatics,Korea Genome Organization,1598866X|22340742 +Genomics and Applied Biology,"""Sophia Publishing Group, Inc.""",19251602 +Genomics and Computational Biology,Kernel Press UG,23657154 +Genomics Data,Elsevier ,22135960| +Genomics Discovery,Herbert Publications,20527993 +Genomics Insights,"""Libertas Academica, Ltd.""",11786310 +Genomics Proteomics & Bioinformatics,Elsevier ,16720229| +Genre,Duke University Press,00166928|21600228 +Genre sexualité & société,OpenEdition,21043736|21043736 +Gentse Bijdragen tot de Interieurgeschiedenis,Peeters Publishers,7727151 +Geo Geography and Environment,Wiley Blackwell (John Wiley & Sons),20544049| +Geo UERJ,Universidade do Estado do Rio de Janeiro UERJ,14157543|19819021 +Geo-information Science,China Science Publishing & Media Ltd.,15608999| +Geo-Marine Letters,Springer-Verlag,02760460|14321157 +Geo-spatial Information Science,Informa UK (Taylor & Francis),10095020|19935153 +Geoambiente on-line,Universidade Federal de Goias,16799860 +Geoarchaeology,Wiley Blackwell (John Wiley & Sons),08836353|15206548 +Geobiology,Wiley Blackwell (Blackwell Publishing),14724677|14724669 +Geobios,Elsevier ,00166995| +Géocarrefour,PERSEE Program,16274873|1960601X +Geocarto International,Informa UK (Taylor & Francis),10106049|17520762 +GEOCHEMICAL JOURNAL,The Geochemical Society of Japan,00167002|18805973 +Geochemical Perspectives,European Association of Geochemistry,22237755|22242759 +Geochemical Perspectives Letters,European Association of Geochemistry,2410339X|24103403 +Geochemical Transactions,Springer (Biomed Central Ltd.),14674866|14674866 +Geochemistry Exploration Environment Analysis,Geological Society of London,14677873|20414943 +Geochemistry Geophysics Geosystems,Wiley Blackwell (John Wiley & Sons),15252027| +Geochemistry International,Pleiades Publishing,00167029|15561968 +Geochimica Brasiliensis,Zeppelini Editorial e Comunicacao,01029800| +Geochimica et Cosmochimica Acta,Elsevier ,00167037|00167037 +Geochronometria,De Gruyter Open Sp. z o.o. ,17338387|18971695 +Geociencias Aplicadas Latinoamericanas,EAGE Publications,23528281 +GEOCONEXÕES,"""Instituto Federal de Educacao, Ciencia e Tecnologia do Rio Grande do Norte (IFRN)""",23596007 +Geoderma,Elsevier ,00167061| +Geoderma Regional,Elsevier ,23520094| +Geodesy and Cartography,De Gruyter Open Sp. z o.o. ,20806736|23002581 +Geodesy and Cartography,Vilnius Gediminas Technical University,13921541|16483502 +Geodesy and Cartography,Vilnius Gediminas Technical University,20296991|20297009 +Geodesy and Geodynamics,Elsevier ,16749847| +Geodetski vestnik,Faculty of Civil and Geodetic Engineering,03510271|15811328 +Geodezijos Darbai,Informa UK (Taylor & Francis),13921843| +Geodinamica Acta,Informa UK (Taylor & Francis),09853111|17783593 +Geodiversitas,"""BioOne (Museum National d'Histoire Naturelle, Paris, France)""",12809659|16389395 +Geodynamics & Tectonophysics,"""Institute of Earth's Crust, Siberian Branch of Russian Academy of Sciences""",2078502X +Géoéconomie,CAIRN,12849340|22587748 +Geoenvironmental Disasters,Springer (Biomed Central Ltd.),21978670|21978670 +Geoexploration,Elsevier ,00167142| +Geofísica Internacional,Elsevier ,00167169| +Geofizika,"""Department of Geophysics, Faculty of Science, University of Zagreb""",03523659|18466346 +Geofluids,Wiley Blackwell (Blackwell Publishing),14688115|14688123 +Geoforum,Elsevier ,00167185| +Geografia Ensino & Pesquisa,Universidade Federal de Santa Maria,01031538|22364994 +Geografické informácie,Constantine the Philosopher University in Nitra,13379453|13379453 +Geografické štúdie,Constantine the Philosopher University in Nitra,13379445 +Geografija,Lithuanian Academy of Sciences,13921096|13921096 +Geografisk Tidsskrift-Danish Journal of Geography,Informa UK (Taylor & Francis),00167223|19032471 +Geografiska Annaler,JSTOR,16513215| +Geografiska Annaler Series A Physical Geography,Wiley Blackwell (Blackwell Publishing),04353676|14680459 +Geografiska Annaler Series B Human Geography,Wiley Blackwell (Blackwell Publishing),04353684|14680467 +Geografski vestnik,Scientific Research Centre ZRC-SAZU,03503895|1580335X +Geographia Polonica,"""Institute of Geography and Spatial Organization, Polish Academy of Sciences""",00167282|23007362 +Geographia Technica,Asociatia Geograhia Technica,18425135|20654421 +Geographica Helvetica,Copernicus GmbH,21948798 +Geographical Analysis,Wiley Blackwell (Blackwell Publishing),00167363|15384632 +Geographical and Environmental Modelling,Informa UK (Taylor & Francis),13615939|14698323 +Geographical Journal,Wiley Blackwell (Blackwell Publishing),00167398|14754959 +Geographical Research,Wiley Blackwell (Blackwell Publishing),17455863|17455871 +Geographical Review,Wiley Blackwell (Blackwell Publishing),00167428|19310846 +Geographical Review of Japan,The Association of Japanese Geographers,00167444|21851719 +Geographical review of Japan series A,The Association of Japanese Geographers,18834388|21851751 +Geographical review of Japan series B,The Association of Japanese Geographers,02896001|18834396 +Geographical Science Research,Hans Publishers,21685762|21685770 +Geographical Society of Ireland Bulletin,Informa UK (Taylor & Francis),07906978| +Geographical Studies,Hokkaido Geographical Society,18822118|21865450 +Géographie Économie Société,Lavoisier SAS,1295926X| +Géographie et cultures,OpenEdition,11650354|22676759 +Géographie physique et Quaternaire,Consortium Erudit,07057199|1492143X +GeoGraphos Revista Digital para Estudiantes de Geografía y Ciencias Sociales,Publicaciones Universidad de Alicante,21731276|21731276 +Geography and Natural Resources,Springer-Verlag,18753728|1875371X +Geography Compass,Wiley Blackwell (Blackwell Publishing),17498198|17498198 +Geography Department University of Sao Paulo,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,01024582|22362878 +GEOGRAPHY ENVIRONMENT SUSTAINABILITY,"""Institute of Geography, Russian Academy of Sciences""",20719388 +Geography Journal,Hindawi Publishing Corporation,23144203|23144211 +Geoheritage,Springer-Verlag,18672477|18672485 +GeoHumanities,Informa UK (Taylor & Francis),2373566X|23735678 +Geoid,Lembaga Penelitian dan Pengabdian kepada Masyarakat ITS,18582281|24423998 +GeoInformatica,Springer-Verlag,13846175|15737624 +Geoinformatica Polonica,De Gruyter Open Sp. z o.o. ,16422511|16422511 +GEOINFORMATICS,Japan Society of Geoinformatics,0388502X|1347541X +Geoinformatics & Geostatistics An Overview,OMICS Publishing Group,23274581 +Geoinformatics FCE CTU,Czech Technical University in Prague - Central Library,18022669 +GeoJournal,Springer-Verlag,03432521|15729893 +Geología Colombiana,Universidad Nacional de Colombia,00720992|23573767 +Geologia Croatica,Croatian Geological Survey,1330030X|13334875 +Geologia USP Publicação Especial,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,16767829|23169087 +Geologia USP Série Científica,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,1519874X|23169095 +Geologia USP Série Didática,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,16777549|23169109 +Geologica Belgica,Geologicva Belgica,13748505|20341954 +Geologica Carpathica,De Gruyter Open Sp. z o.o. ,13350552|13368052 +Geological Field Trips,Societa Geologica Italiana,20384947 +Geological Journal,Wiley Blackwell (John Wiley & Sons),00721050|10991034 +Geological Magazine,Cambridge University Press,00167568|14695081 +Geological Quarterly,Polish Geological Institute,16417291|16417291 +Geological Society London Engineering Geology Special Publications,Geological Society of London,02679914|20414730 +Geological Society London Memoirs,Geological Society of London,04354052|20414722 +Geological Society London Special Publications,Geological Society of London,03058719|20414927 +Geological Society of America Bulletin,Geological Society of America,00167606|19432674 +Geological Society of America Special Papers,Geological Society of America,0072-1077| +Geologické výzkumy na Moravě a ve Slezsku,Masaryk University Press,12126209|23364378 +Geologija,Lithuanian Academy of Sciences,1392110X|2029056X +Geologija,Geological Survey of Slovenia,00167789|1854620X +Geologija Geografija,Lithuanian Academy of Sciences,23517549|24243205 +Geologische Rundschau,Springer-Verlag,00167835|14321149 +Geologiska Foereningan i Stockholm Foerhandlingar,Informa UK (Taylor & Francis),0016786X| +GeologiskNyt,Aarhus University Library,09066861|19048203 +Geologos,De Gruyter Open Sp. z o.o. ,14268981|20806574 +Geology,Geological Society of America,00917613|00917613 +Geology Geophysics & Environment,AGH University of Science and Technology Press,01380974| +Geology of Ore Deposits,Pleiades Publishing,10757015|15556476 +Geology Today,Wiley Blackwell (Blackwell Publishing),02666979|13652451 +Geoloski anali Balkanskog poluostrva,National Library of Serbia,03500608|24060747 +Geomagnetism and Aeronomy,Pleiades Publishing,00167932|1555645X +Geomaterials,"""Scientific Research Publishing, Inc.""",21617538|21617546 +GEOMATICA,Canadian Institute of Geomatics,11951036|19254296 +Geomatics and Environmental Engineering,AGH University of Science and Technology Press,18981135| +Geomatics Landmanagement and Landscape,The University of Agriculture in Krakow,23001496| +Geomatics Natural Hazards and Risk,Informa UK (Taylor & Francis),19475705|19475713 +Geomatics Science and Technology,Hans Publishers,2329549X|23297239 +Geomechanics and Engineering,Techno-Press,2005307X| +Geomechanics and Geoengineering,Informa UK (Taylor & Francis),17486025|17486033 +Geomechanics and Geophysics for Geo-Energy and Geo-Resources,Springer-Verlag,23638419|23638427 +Geomechanics and Tunnelling,Wiley Blackwell (John Wiley & Sons),18657362|18657389 +Geomechanics for Energy and the Environment,Elsevier ,23523808| +Geometriae Dedicata,Springer-Verlag,00465755|15729168 +Geometric and Functional Analysis,Springer-Verlag,1016443X|14208970 +Geometric Flows,Walter de Gruyter GmbH,23533382 +Geometry,Hindawi Publishing Corporation,2314422X|23144238 +Geometry & Graphics,Infra-M Academic Publishing House,23084898| +Geometry & Topology,Mathematical Sciences Publishers,14653060|13640380 +Geometry and Topology Monographs,Mathematical Sciences Publishers, +Geometry Imaging and Computing,"""International Press of Boston, Inc.""",23288876|23288884 +Geomicrobiology Journal,Informa UK (Taylor & Francis),01490451|15210529 +Géomorphologie relief processus environnement,OpenEdition,12665304|1957777X +Geomorphology,Elsevier ,0169555X| +Geomorphology RAS,"""Institute of Geography, Russian Academy of Sciences""",04354281| +Geonauka,Serbian Union of Surveyors,23348119| +Geophysical & Astrophysical Fluid Dynamics,Informa UK (Taylor & Francis),03091929|10290419 +Geophysical Fluid Dynamics,Informa UK (Taylor & Francis),00167991| +Geophysical Journal International,Oxford University Press,0956540X|1365246X +Geophysical Journal of the Royal Astronomical Society,Wiley Blackwell (Blackwell Publishing),00168009| +Geophysical Prospecting,Wiley Blackwell (Blackwell Publishing),00168025|13652478 +Geophysical Research Letters,Wiley Blackwell (John Wiley & Sons),00948276| +Geophysical Supplements to the Monthly Notices of the Royal Astronomical Society,Oxford University Press,20511965|20511973 +Geophysical Surveys,Springer-Verlag,00465763| +Geophysics,Society of Exploration Geophysicists,00168033|19422156 +Geophysics and Geophysical Exploration,Korean Society of Earth and Exploration Geophysicists,12291064| +Geoplanning Journal of Geomatics and Planning,Institute of Research and Community Services Diponegoro University (LPPM UNDIP),23556544 +Geopolítica(s) Revista de estudios sobre espacio y poder,Universidad Complutense de Madrid,21723958|21727155 +Geopolitics,Informa UK (Taylor & Francis),14650045|15573028 +Geopolitics and International Boundaries,Informa UK (Taylor & Francis),13629379| +GeoResJ,Elsevier ,22142428| +Georesursy,Georesursy,16085043|16085078 +Georg Büchner Jahrbuch,Walter de Gruyter GmbH,07223420|18659454 +George Eliot - George Henry Lewes Studies,The Pennsylvania State University Press,23721901|2372191X +George Herbert Journal,Muse - Johns Hopkins University Press,19311192 +Georgian Mathematical Journal,Walter de Gruyter GmbH,1072947X|15729176 +Georisk Assessment and Management of Risk for Engineered Systems and Geohazards,Informa UK (Taylor & Francis),17499518|17499526 +GeoScape,De Gruyter Open Sp. z o.o. ,18021115 +Geoscience and Man,Informa UK (Taylor & Francis),00721395| +Geoscience Canada,Geological Association of Canada,03150941|19114850 +Geoscience Data Journal,Wiley Blackwell (Blackwell Publishing),20496060| +GeoScience Engineering,De Gruyter Open Sp. z o.o. ,18025420 +Geoscience Frontiers,Elsevier ,16749871| +Geoscience Letters,Springer (Biomed Central Ltd.),21964092|21964092 +Geoscience Research,Bioinfo Publications,09769846|09769854 +Geoscience Research Reports,Czech Geological Survey,05148057|23365757 +Geosciences,MDPI AG,20763263 +Geosciences Journal,Springer-Verlag,12264806|15987477 +Geoscientific Instrumentation Methods and Data Systems,Copernicus GmbH,21930864 +Geoscientific Instrumentation Methods and Data Systems Discussions,Copernicus GmbH,21930872 +Geoscientific Model Development,Copernicus GmbH,19919603 +Geoscientific Model Development,Copernicus GmbH,19919603 +Geoscientific Model Development Discussions,Copernicus GmbH,1991962X +Geospatial health,PAGEPress Publications,18271987|19707096 +Geosphere,Geological Society of America,1553040X|1553040X +Geostandards and Geoanalytical Research,Wiley Blackwell (Blackwell Publishing),16394488| +Geostandards and Geoanalytical Research,Wiley Blackwell (Blackwell Publishing),01505505|1751908X +Geosul,Universidade Federal de Santa Catarina,01033964|21775230 +Geosynthetics Engineering Journal,Japan Chapter of International Geosynthetics Society,13446193|1883146X +Geosynthetics International,Thomas Telford Ltd.,10726349|17517613 +Geosystem Engineering,Informa UK (Taylor & Francis),12269328|21663394 +Geotechnical and Geological Engineering,Springer-Verlag,09603182|15731529 +Geotechnical Research,Thomas Telford Ltd.,20526156 +Geotechnical Testing Journal,ASTM International,01496115| +geotechnik,Wiley Blackwell (John Wiley & Sons),01726145| +Géotechnique,Thomas Telford Ltd.,00168505|17517656 +Géotechnique Letters,Thomas Telford Ltd.,20452543 +Geotectonic Research,Schweizerbart,18645658| +Geotectonics,Pleiades Publishing,00168521|15561976 +Geotextiles and Geomembranes,Elsevier ,02661144| +Geothermal Energy,Springer (Biomed Central Ltd.),21959706|21959706 +Geothermal Energy Science,Copernicus GmbH,2195478X +Geothermics,Elsevier ,03756505| +Geotourism/Geoturystyka,AGH University of Science and Technology Press,17310830| +GEOUSP Espaço e Tempo (Online),Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,14147416|21790892 +Gerencia y Políticas de Salud,Editorial Pontificia Universidad Javeriana,16577027| +Geriatric Care,PAGEPress Publications,24651109|24651397 +Geriatric Mental Health Care,Elsevier ,22129693| +Geriatric Nephrology and Urology,Springer-Verlag,09248455|15737306 +Geriatric Nursing,Elsevier ,01974572| +Geriatric Orthopaedic Surgery & Rehabilitation,SAGE Publications,21514585|21514593 +Geriatrics,MDPI AG,23083417 +Geriatrics and Gerontology International,Wiley Blackwell (Blackwell Publishing),14441586|14441586 +Gerión Revista de Historia Antigua,Universidad Complutense de Madrid,02130181|19883080 +German Economic Review,Wiley Blackwell (Blackwell Publishing),14656485|14680475 +German History,Oxford University Press,02663554|1477089X +German Journal of Human Resource Management Zeitschrift fü r Personalforschung,SAGE Publications,23970022|23970030 +German Life and Letters,Wiley Blackwell (Blackwell Publishing),00168777|14680483 +German Politics,Informa UK (Taylor & Francis),09644008|17438993 +German Politics & Society,Berghahn Books,10450300|15585441 +German Research,Wiley Blackwell (John Wiley & Sons),01721526|15222322 +German Studies Review,Muse - Johns Hopkins University Press,21648646 +German Studies Review,JSTOR,01497952| +Germanica,OpenEdition,21070784|21070784 +Germanica,OpenEdition,21070784|21070784 +Germanistik,Walter de Gruyter GmbH,00168912|18659187 +GERMS,European HIV/AIDS and Infectious Diseases Academy,22482997 +Gerodontology,Wiley Blackwell (Blackwell Publishing),07340664|17412358 +GeroFam-A peer reviewed evidence-based gerontology-oriented family practice journal,GeroFam Journal,13096478| +Gerokomos,Instituto de Salud Carlos III/BNCS/SciELO Espana,1134928X|1134928X +Gerontechnology,International Society for Gerontechnology,15691101|1569111X +Gerontologia Clinica,S. Karger AG,00168998| +Gérontologie et société,CAIRN,01510193|21010218 +Gerontology,S. Karger AG,0304324X|14230003 +Gerontology & Geriatrics Education,Informa UK (Taylor & Francis),02701960|15409473 +Gerontology and Geriatric Medicine,SAGE Publications,23337214 +GeroPsych,Hogrefe Publishing Group,16629647|1662971X +Gerōn,Springer-Verlag,1389143X| +Geschichte in Köln,Bohlau Verlag,07203659|21980667 +Geschichte und Gesellschaft,"""Vandenhoeck & Ruprecht GmbH & Co, KG""",21969000|21969000 +Gesta,The University of Chicago Press,0016920X|21693099 +Gestão & Produção,SciELO,0104530X|0104530X +Gestão & Regionalidade,USCS Universidade Municipal de Sao Caetano do Sul,18085792|21765308 +Gestão & Tecnologia de Projetos,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,19811543 +Gestion,CAIRN,07010028|23691352 +Gestion 2000,CAIRN,07730543|24064734 +Gestion de l enseignement supérieur,Organisation for Economic Co-Operation and Development ,10138501| +Gestión de la educación,Universidad de Costa Rica,22152288 +Gestion et management public,CAIRN,21168865|21168865 +Gestión Turística,Sistema de Bibliotecas UACH,07171811|07186428 +Gestión y Ambiente,Universidad Nacional de Colombia,0124177X|23575905 +Gestión y Tendencias,Chimera Innova Group,07196768|07196768 +Gesture,John Benjamins Publishing Company,15681475|15699773 +Gesunde Pflanzen,Springer-Verlag,03674223|14390345 +Gesundheits- und Sozialpolitik,Nomos Verlag,16115821| +Gesundheitsökonomie & Qualitätsmanagment,Thieme Publishing Group,14322625|14394049 +GesundheitsRecht,Verlag Dr. Otto Schmidt KG,16101197|21944229 +Getty Research Journal,The University of Chicago Press,19448740|23291249 +Gettysburg Magazine,Muse - Johns Hopkins University Press,23770783 +Gezinstherapie Wereldwijd,Springer-Verlag,15660206| +GFF,Informa UK (Taylor & Francis),11035897|20000863 +GfK Marketing Intelligence Review,De Gruyter Open Sp. z o.o. ,18655866 +Ghana Journal of Agricultural Science,African Journals Online ,8550042 +Ghana Journal of Development Studies,African Journals Online ,8556768 +Ghana Journal of Forestry,African Journals Online ,8551707 +Ghana Journal of Linguistics,African Journals Online ,20266596| +Ghana Journal of Science,African Journals Online ,8551448 +Ghana Library Journal,African Journals Online ,8553033 +Ghana Medical Journal,African Journals Online ,8550328 +Ghana Mining Journal,African Journals Online ,0855210X +Ghana Studies,Muse - Johns Hopkins University Press,23337168 +GIDA / THE JOURNAL OF FOOD,"""Association of Food Technology, Turkey""",13003070|13096273 +Gifted Child Quarterly,SAGE Publications,00169862|19349041 +Gifted Child Today,SAGE Publications,10762175| +Gifted Education International,SAGE Publications,02614294|20479077 +GigaScience,Springer (Biomed Central Ltd.),2047217X|2047217X +Giornale botanico italiano,Informa UK (Taylor & Francis),00170070| +Giornale della L,mEDRA,11218932|11218932 +Giornale della Libreria,Publications Office of the European Union,7580452 +Giornale della Libreria,mEDRA,11249137|11249137 +Giornale di Chirurgia - Journal of Surgery,CIC Edizioni Internazionali,1971145X +Giornale di Cinzia,Publications Office of the European Union,00036420|00036420 +GIORNALE DI DIRITTO DEL LAVORO E DI RELAZIONI INDUSTRIALI,Franco Angeli,17204321|19725507 +Giornale di Tecniche Nefrologiche e Dialitiche,"""Wichtig Publishing, SRL""",03949362| +Giornale Italiano di Endodonzia,Elsevier ,11214171| +Giornale Italiano di Filologia,"""Brepols Publishers, NV""",00170461| +Giornale Italiano di Health Technology Assessment,Springer-Verlag,20353510|20356129 +Giornale Italiano di Ostetricia e Ginecologia,CIC Edizioni Internazionali,19711433 +Girlhood Studies,Berghahn Books,19388209|19388322 +Giroskopiya i Navigatsiya,CSRI Elektropribor,08697035|20750927 +GISAP Biology Veterinary Medicine and Agricultural Sciences,International Academy of Science and Higher Education,20541139|20541147 +GISAP Culturology Sports and Art History,International Academy of Science and Higher Education,20540809|20540817 +GISAP Economics Jurisprudence and Management,International Academy of Science and Higher Education,20536402|20536410 +GISAP Educational Sciences,International Academy of Science and Higher Education,20536429|20536437 +GISAP Medical Science Pharmacology,International Academy of Science and Higher Education,20537751|20540795 +GISAP Philological Sciences,International Academy of Science and Higher Education,20531532|20531540 +GISAP Physics Mathematics and Chemistry,International Academy of Science and Higher Education,20546483|20546491 +GISAP Psychological Sciences,International Academy of Science and Higher Education,20546505|20546513 +GISAP Sociological Political and Military Sciences,International Academy of Science and Higher Education,20546440|20546459 +GISAP Technical Sciences Construction and Architecture,International Academy of Science and Higher Education,20541155|20541163 +GIScience & Remote Sensing,Informa UK (Taylor & Francis),15481603|19437226 +GIZARTERATUZ,SIIS - Centro de Documentacion y Estudios,21712778| +GI_Forum,Verlag der Osterreichischen Akademie der Wissenschaften,23081708|23081708 +Gladius,Departmento de Publicaciones del CSIC,0436029X|19884168 +Glasgow Archaeological Journal,Edinburgh University Press,03058980| +Glasgow Mathematical Journal,Cambridge University Press,00170895|1469509X +Glasnik Antropoloskog drustva Srbije,Centre for Evaluation in Education and Science,18207936| +Glasnik Etnografskog instituta,National Library of Serbia,03500861|23348259 +GLASNIK HEMIČARA TEHNOLOGA I EKOLOGA REPUBLIKE SRPSKE,National and University Library of the Republic of Srpska,1840054X|2232755X +Glasnik Matematicki,"""University of Zagreb, Department of Mathematics""",0017095X| +Glasnik srpskog geografskog drustva,National Library of Serbia,03503593|2406078X +Glasnik Sumarskog fakulteta,National Library of Serbia,03534537|22178600 +Glass and Ceramics,Springer-Verlag,03617610|15738515 +Glass Physics and Chemistry,Pleiades Publishing,10876596|1608313X +Glass Structures & Engineering,Springer-Verlag,23635142|23635150 +Glia,Wiley Blackwell (John Wiley & Sons),08941491|10981136 +Global Advances in Health and Medicine,Global Advances in Health and Medicine,2164957X|21649561 +Global Affairs,Informa UK (Taylor & Francis),23340460|23340479 +Global and Planetary Change,Elsevier ,09218181| +Global and regional health technology assessment,"""Wichtig Publishing, SRL""",22842403| +Global Anesthesia and Perioperative Medicine,Open Access Text,20590512 +Global Approaches to Extension Practice A Journal of Agricultural Extension,African Journals Online ,7941005 +Global Bioethics,Informa UK (Taylor & Francis),11287462|15917398 +Global Biogeochemical Cycles,Wiley Blackwell (John Wiley & Sons),08866236| +GLOBAL BUSINESS & FINANCE REVIEW,People and Global Business Association,10886931|23841648 +Global Business and Economics Review,Inderscience Enterprises Ltd.,10974954|17451329 +Global Business and Organizational Excellence,Wiley Blackwell (John Wiley & Sons),19322054|19322062 +Global Business Perspectives,Springer-Verlag,21940061|2194007X +Global Business Review,SAGE Publications,09721509|09730664 +Global Cardiology Science and Practice,Hamad bin Khalifa University Press (HBKU Press),23057823| +Global Challenges,Wiley Blackwell (John Wiley & Sons),20566646| +Global Change and Human Health,Springer (Kluwer Academic Publishers),13895702| +Global Change Biology,Wiley Blackwell (Blackwell Publishing),13541013|13652486 +Global Change Peace & Security,Informa UK (Taylor & Francis),14781158|14781166 +Global Chinese,Walter de Gruyter GmbH,21994374|21994382 +Global Constitutionalism,Cambridge University Press,20453817|20453825 +Global Credit Review,World Scientific ,20104936|23013966 +Global Crime,Informa UK (Taylor & Francis),17440572|17440580 +Global Dermatology,Open Access Text,20567863 +Global Discourse,Informa UK (Taylor & Francis),23269995|20437897 +Global Ecology and Biogeography,Wiley Blackwell (Blackwell Publishing),1466822X|1466822X +Global Ecology and Biogeography Letters,JSTOR,09607447| +Global Ecology and Conservation,Elsevier ,23519894| +Global Economic Review,Informa UK (Taylor & Francis),1226508X|17443873 +Global Economics and Management Review,Elsevier ,23401540| +Global Economy Journal,Walter de Gruyter GmbH,21945659|15245861 +Global Environment,White Horse Press ,19733739|20537352 +Global Environmental Change,Elsevier ,09593780| +Global Environmental Change Part B Environmental Hazards,Elsevier ,14642867| +Global Environmental Politics,MIT Press,15263800|15360091 +Global Epidemic Obesity,Herbert Publications,20525966 +Global Fashion Brands Style Luxury & History,Intellect,20551126|20551126 +Global Fashion Management Conference,Global Alliance of Marketing and Management Associations,2288825X| +Global Finance Journal,Elsevier ,10440283| +Global Financial Stability Report,International Monetary Fund,1729701X| +Global Financial Stability Report,International Monetary Fund,23043431|2304344X +Global Financial Stability Report,International Monetary Fund,23043423 +Global Food History,Informa UK (Taylor & Francis),20549547|20549555 +Global Food Security,Elsevier ,22119124| +Global Geobotany,Asociacion Espanola de Fitosociologia,22536426| +Global Health Action,Co-Action Publishing,16549716|16549880 +Global Health Epidemiology and Genomics,Cambridge University Press,20544200 +Global Health Perspectives,"""Maralte, B.V.""",22128832 +Global Health Promotion,SAGE Publications,17579759|17579767 +Global Health Science and Practice,"""Johns Hopkins Bloomberg School of Public Health, CEnter for Communication Programs""",2169575X +Global Heart,Elsevier ,22118160| +Global Journal Al-Thaqafah,Kolej Islam Darul Ridzuan,22320474|22320482 +Global Journal For Research Analysis,The Global Journals,22778160|22778160 +Global Journal of Agricultural Innovation Research & Development,Avanti Publishers,24099813 +Global Journal of Agricultural Sciences,African Journals Online ,15962903 +Global Journal of Anesthesiology,Peertechz.com,24553476 +Global Journal of Anthropology Research,Cosmos Scholars Publishing House,24102806 +Global Journal of Arts Education,Sciencepark Research Organization and Counseling,23012560 +Global Journal Of Botanical Science,Savvy Science Publisher,2311858X +Global Journal of Breast Cancer Research,Pharma Publisher,23094419 +Global Journal of Business Economics and Management,Sciencepark Research Organization and Counseling,23012579 +Global Journal of Community Medicine,African Journals Online ,15979857|15979857 +Global Journal of Comparative Law,Brill Academic Publishers,22119051|2211906X +Global Journal of Computer Science,Sciencepark Research Organization and Counseling,23012587 +Global Journal of Dermatology & Venereology,Synergy Publishers,2310998X +Global Journal of Earth Science and Engineering,Avanti Publishers,24095710 +Global Journal of Economics,World Scientific ,22513612|22513620 +Global Journal of Educational Research,African Journals Online ,15966224 +Global Journal of Educational Studies,"""Macrothink Institute, Inc.""",23773936 +Global Journal of Emerging Market Economies,SAGE Publications,09749101|09752730 +Global Journal of Energy Technology Research Updates,Avanti Publishers,24095818 +Global Journal of Engineering Research,African Journals Online ,1596292X +Global Journal of Enterprise Information System,Global Journal of Enterprise Information System,0975153X|09751432 +Global Journal of Environmental Sciences,African Journals Online ,15966194 +Global Journal of Epidemiology and Public Health,Savvy Science Publisher,23130946 +Global Journal of Flexible Systems Management,Springer-Verlag,09722696|09740198 +Global Journal of Foreign Language Teaching,Sciencepark Research Organization and Counseling,23012595 +Global Journal of Gastroenterology & Hepatology,Synergy Publishers,23086483 +Global Journal of Geological Sciences,African Journals Online ,15966798 +Global Journal of Guidance and Counselling,Sciencepark Research Organization and Counseling,23012609 +Global Journal of Health Education and Promotion,"""Sagamore Publishing, LLC""",23321024 +Global Journal of Health Science,Canadian Center of Science and Education,19169736|19169744 +Global Journal of Hematology and Blood Transfusion,Cosmos Scholars Publishing House,24089877 +Global Journal of Human Genetics & Gene Therapy,Pharma Publisher,23110309 +Global Journal of Humanities,African Journals Online ,15966232 +Global Journal of Immunology and Allergic Diseases,Pharma Publisher,23106980 +Global Journal of Infectious Diseases and Clinical Research,Peertechz.com,24555363 +Global Journal of Information Technology,Sciencepark Research Organization and Counseling,23012617 +Global Journal of Mathematical Analysis,Science Publishing Corporation,23079002 +Global Journal of Mathematical Sciences,African Journals Online ,15966208 +Global Journal of Medical and Clinical Case Reports,Peertechz.com,24555282 +Global Journal of Medical Imaging,New Century Science Press. LLC,23723874 +Global Journal of Medical Sciences,African Journals Online ,15962911 +Global Journal of Oncologists,Savvy Science Publisher,23096160 +Global Journal of Pathology and Microbiology,Pharma Publisher,23108703 +Global Journal of Psychology Research,Sciencepark Research Organization and Counseling,23012625 +Global Journal of Pure and Applied Sciences,African Journals Online ,11180579 +Global Journal of Researches in Engineering,"""Science and Education, Ltd.""",09755861| +Global Journal of Respiratory Care,Savvy Science Publisher,23125470 +Global Journal of Science Frontier Research A Physics # Space Science,"""Science and Education, Ltd.""",22494626| +Global Journal of Science Frontier Research A Physics # Space Science,"""Science and Education, Ltd.""",22494626| +Global Journal of Social Sciences,African Journals Online ,15966216 +Global Journal of Sociology,Sciencepark Research Organization and Counseling,23012633 +Global Journal of Surgery,"""Science and Education Publishing Co., Ltd.""",23798742| +Global Journal of Technology and Optimization,OMICS Publishing Group,22298711 +Global Journal on Humanities and Social Sciences,Sciencepark Research Organization and Counseling,24218030 +Global Jurist,Walter de Gruyter GmbH,21945675|19342640 +Global Jurist Advances,Walter de Gruyter GmbH,15351661 +Global Jurist Frontiers,Walter de Gruyter GmbH,15351653 +Global Jurist Topics,Walter de Gruyter GmbH,1535167X +Global Labour Journal,Escarpment Press,19186711 +Global Markets and Financial Engineering,BIBLIO-GLOBUS Publishing House,24108618|24101575 +Global Media and Communication,SAGE Publications,17427665|17427673 +Global Media Journal African Edition,Stellenbosch University - Global Media Journal African Edition,20732740|20732740 +Global Mental Health,Cambridge University Press,20544251 +Global Meteorology,PAGEPress Publications,20389639|20389647 +Global Networks,Wiley Blackwell (Blackwell Publishing),14702266|14710374 +Global Pediatric Health,SAGE Publications,2333794X +Global Perspectives on Artificial Intelligence,"""Science and Engineering Publishing, Co.""",23277580| +Global Policy,Wiley Blackwell (Blackwell Publishing),17585880|17585899 +Global Public Health,Informa UK (Taylor & Francis),17441692|17441706 +Global Qualitative Nursing Research,SAGE Publications,23333936 +Global Responsibility to Protect,Brill Academic Publishers,18759858|1875984X +Global Review of Ethnopolitics,Informa UK (Taylor & Francis),14718804| +Global Sci-Tech,Diva Enterprises Private Limited,09759638|24557110 +Global Science and Technology,Global Science and Technology,19843801 +Global Social Policy,SAGE Publications,14680181|00000000 +Global Social Welfare,Springer-Verlag,21968799 +Global Society,Informa UK (Taylor & Francis),13600826|1469798X +Global Spine Journal,Thieme Publishing Group,21925682|21925690 +Global Strategy Journal,Wiley Blackwell (John Wiley & Sons),20425791| +Global Studies of Childhood,SAGE Publications,20436106|20436106 +Global Summitry,Oxford University Press,20587430|20587449 +Global Summitry Journal,"""Global Summitry Project, Munk School""",22914110 +Global Tectonics and Metallogeny,Schweizerbart,01633171| +Global War Studies,Global War Studies,19498489|19498497 +Globalisation Societies and Education,Informa UK (Taylor & Francis),14767724|14767732 +Globalization and Health,Springer (Biomed Central Ltd.),17448603|17448603 +Globalizations,Informa UK (Taylor & Francis),14747731|1474774X +Globe Revue internationale d’études québécoises,Consortium Erudit,14815869|19238231 +Glocality,"""Ubiquity Press, Ltd.""",20592949 +Glossa a journal of general linguistics,"""Ubiquity Press, Ltd.""",23971835 +Glotta,"""Vandenhoeck & Ruprecht GmbH & Co, KG""",00171298|21969043 +Glottodidactica An International Journal of Applied Linguistics,Adam Mickiewicz University Poznan,00724769| +Glottotheory,Oldenbourg Wissenschaftsverlag,13377892|21966907 +GLQ A Journal of Lesbian and Gay Studies,Duke University Press,10642684|15279375 +Glycobiology,Oxford University Press,09596658|14602423 +Glycobiology Insights,"""Libertas Academica, Ltd.""",11792515 +Glycoconjugate Journal,Springer-Verlag,02820080|15734986 +Glycosylation & Disease,Springer-Verlag,09693653| +GM Crops,Landes Bioscience,19381999| +GM crops & food,Landes Bioscience,21645698|21645701 +GMO Biosafety Research,"""Sophia Publishing Group, Inc.""",19251955 +Gnomon,C.H. Beck,00171417| +Godišnjak Centra za balkanološka ispitivanja,Academy of Sciences and Arts of Bosnia anad Herzegovina,03500020|22327770 +Godisnjak Fakulteta politickih nauka,Centre for Evaluation in Education and Science,18206700| +Godisnjak Fakulteta sporta i fizickog vaspitanja,Centre for Evaluation in Education and Science,14525917| +Godisnjak Fakulteta za kulturu i medije - komunikacije mediji kultura,Centre for Evaluation in Education and Science,18210171| +Godišnjak Pravnog Fakulteta u Banja Luci,National and University Library of the Republic of Srpska,03509052|22330429 +Godisnjak Uciteljskog fakulteta u Vranju,Centre for Evaluation in Education and Science,18203396| +Goethe Yearbook,Muse - Johns Hopkins University Press,19409087 +Gogoa,UPV/EHU Press,15779424| +Gold Bulletin,Springer-Verlag,00171557|21907579 +Golden Research Thoughts,Laxmi Book Publication,22315063|22315063 +GOMU,The Society of Rubber Industry,18840434 +Góndola Enseñanza y Aprendizaje de las Ciencias (Bogotá Colombia),Universidad Distrital Francisco Jose de Caldas,23464712 +Gondwana Research,Elsevier ,1342937X| +Goodwin Series,JSTOR,03043460| +Gornyi Zhurnal,Ore and Metals Publishing House,00172278| +Gospodarka Surowcami Mineralnymi,De Gruyter Open Sp. z o.o. ,22992324 +Gospodarka Surowcami Mineralnymi - Mineral Resources Management,De Gruyter Open Sp. z o.o. ,08600953| +Gospodarka w praktyce i teorii/ Economy in Practice and Theory,Uniwersytet Lodzki (University of Lodz),14293730|2450095X +GOT - Geography and Spatial Planning Journal,CEGOT - Center of Studies on Geography and Spatial Planning,21821267 +Gothic Studies,Manchester University Press,13627937|2050456X +Göttinger Predigtmeditationen,"""Vandenhoeck & Ruprecht GmbH & Co, KG""",21970815|21970815 +GOUT AND NUCLEIC ACID METABOLISM,Japanese Society of Gout and Nucleic Acid Metabolism,13449796|21866368 +Gouvernement et action publique,CAIRN,22600965|2262340X +Gouvernement et action publique,CAIRN,22600965|2262340X +Governance,Wiley Blackwell (Blackwell Publishing),09521895|14680491 +Governance in Africa,"""Ubiquity Press, Ltd.""",20534825|20534825 +Government and Opposition,Cambridge University Press,0017257X|14777053 +Government Finance Statistics,International Monetary Fund,2079813X|20798148 +Government Finance Statistics,International Monetary Fund,02507374| +Government Information Quarterly,Elsevier ,0740624X| +Government Publications Review,Elsevier ,02779390| +Government Publications Review (1973),Elsevier ,0093061X| +Government Publications Review Part A,Elsevier ,0196335X| +Government Publications Review Part B,Elsevier ,01963368| +GPS Solutions,Springer-Verlag,10805370|15211886 +GPSA Journal The Georgia Political Science Association,Wiley Blackwell (Blackwell Publishing),00929395| +Gradhiva,OpenEdition,1760849X|1760849X +Gradjevinski materijali i konstrukcije,Centre for Evaluation in Education and Science,05430798| +Graduate Faculty Philosophy Journal,Philosophy Documentation Center,00934240| +Graduate School Research Journal University of the East,PhilJOL,01179802| +Graefe s Archive for Clinical and Experimental Ophthalmology,Springer-Verlag,0721832X|1435702X +Graellsia,Departmento de Publicaciones del CSIC,03675041|1989953X +Grafo Working Papers,Universitat Autonoma de Barcelona,20145993 +Graft,Portico,15221628| +Gragoatá,Editora da Universidade Federal Fluminense,14139073|14139073 +Grammars,Springer (Kluwer Academic Publishers),13867393| +Grana,Informa UK (Taylor & Francis),00173134|00000000 +Grana Palynologica,Informa UK (Taylor & Francis),0374793X| +Grand Rounds,E-MED LTD.,14705206|14705206 +Grand Street,JSTOR,07345496| +Granular Computing,Springer-Verlag,23644966|23644974 +Granular Matter,Springer-Verlag,14345021|14347636 +Graphene,"""Scientific Research Publishing, Inc.""",21693439|21693471 +Graphene,American Scientific Publishers,2167275X| +Graphene and 2D Materials,De Gruyter Open Sp. z o.o. ,22993134 +Graphical Models,Elsevier ,15240703|15240711 +Graphical Models and Image Processing,Elsevier - Academic Press,10773169|10902481 +Graphs and Combinatorics,Springer-Verlag,09110119|14355914 +Grasas y Aceites,Departmento de Publicaciones del CSIC,00173495|19884214 +Grass and Forage Science,Wiley Blackwell (Blackwell Publishing),01425242|13652494 +Grassland Science,Wiley Blackwell (Blackwell Publishing),17446961|1744697X +Gratis Journal of Biomedical Sciences,Gratis Open Access Publishers LLC,23796510 +Gratis Journal of Cancer Biology and Therapeutics,Gratis Open Access Publishers LLC,23795972 +Gravitation and Cosmology,Pleiades Publishing,02022893|19950721 +Grazer Philosophische Studien,Philosophy Documentation Center,01659227| +Great Basin naturalist memoirs,Smithsonian Institution Biodiversity Heritage Library,0160239X| +Great Plains Quarterly,Muse - Johns Hopkins University Press,23335092 +Great Plains Research,Muse - Johns Hopkins University Press,23342463 +Greece and Rome,Cambridge University Press,00173835|14774550 +Greek and Roman Musical Studies,Brill Academic Publishers,2212974X|22129758 +Green,Walter de Gruyter GmbH,1869876X|18698778 +Green and Sustainable Chemistry,"""Scientific Research Publishing, Inc.""",21606951|2160696X +Green Care,Hogrefe Publishing Group,22964924|22964932 +Green Chemistry,The Royal Society of Chemistry,14639262|14639270 +Green Chemistry & Technology Letters,GIAP Journals,24553611 +Green Chemistry Letters and Reviews,Informa UK (Taylor & Francis),17518253|17517192 +Green Chemistry Letters and Reviews,Informa UK (Taylor & Francis),17518253| +Green Letters,Informa UK (Taylor & Francis),14688417|21681414 +Green Materials,Thomas Telford Ltd.,20491220|20491239 +Green Processing and Synthesis,Walter de Gruyter GmbH,21919542|21919550 +Green Theory & Praxis The Journal of Ecopedagogy,Green Theory and Praxis: The Journal of Ecopedagogy,19410948 +Greener Journal of Agricultural Sciences,Greener Journals,22767770 +Greener Journal of Agronomy Forestry and Horticulture,Greener Journals,23542306 +Greener Journal of Arts and Humanities,Greener Journals,22767819 +Greener Journal of Biochemistry and Biotechnology,Greener Journals,23846321 +Greener Journal of Biological Sciences,Greener Journals,22767762 +Greener Journal of Business and Management Studies,Greener Journals,22767827 +Greener Journal of Ecology and Ecosolution,Greener Journals,23846356 +Greener Journal of Economics and Accountancy,Greener Journals,23542357 +Greener Journal of Economics and Accountancy,Greener Journals,23542357 +Greener Journal of Education and Training Studies,Greener Journals,2354225X +Greener Journal of Educational Research,Greener Journals,22767789 +Greener Journal of Environment Management and Public Safety,Greener Journals,23542276 +Greener Journal of Epidemiology and Public Health,Greener Journals,23542381 +Greener Journal of Geology and Earth Sciences,Greener Journals,23542268 +Greener Journal of Internet Information and Communication Systems,Greener Journals,23542373 +Greener Journal of Medical Sciences,Greener Journals,22767797 +Greener Journal of Social Sciences,Greener Journals,22767800 +Greener Management International,GSE Research Limited,09669671|20513062 +Greenhouse Gas Measurement and Management,Informa UK (Taylor & Francis),20430779|20430787 +Greenhouse Gases Science and Technology,Wiley Blackwell (John Wiley & Sons),21523878| +Grey Room,MIT Press,15263819|15360105 +Grey Systems Theory and Application,Emerald (MCB UP ),20439377| +GRH,CAIRN,20349130|22959149 +Griffith Law Review,Informa UK (Taylor & Francis),10383441|18394205 +Grotiana,Brill Academic Publishers,01673831|18760759 +Ground Improvement,Thomas Telford Ltd.,1365781X| +Ground Water,Wiley Blackwell (Blackwell Publishing),0017467X|17456584 +Ground Water Monitoring and Remediation,Wiley Blackwell (Blackwell Publishing),10693629|17456592 +GROUNDING,Franco Angeli,19710372|19724993 +Groundwater for Sustainable Development,Elsevier ,2352801X| +Group,Eastern Group Psychotherapy Society,03624021|15733386 +Group & Organization Management,SAGE Publications,10596011|15523993 +Group Analysis,SAGE Publications,05333164|00000000 +Group Decision and Negotiation,Springer-Verlag,09262644|15729907 +Group Dynamics Theory Research and Practice,American Psychological Association,10892699|19307802 +Group Processes & Intergroup Relations,SAGE Publications,13684302|14617188 +Groups Geometry and Dynamics,European Mathematical Society Publishing House,16617207| +Groups – Complexity – Cryptology,Walter de Gruyter GmbH,18671144|18696104 +Groupwork,Whiting & Birch Ltd,0951824X|17466091 +Growth and Change,Wiley Blackwell (Blackwell Publishing),00174815|14682257 +Growth Factors,Informa UK (Taylor & Francis),08977194|10292292 +Growth Hormone & IGF Research,Elsevier ,10966374| +Growth Performance and Yield of Oyster Mushroom (Pleurotus Ostreatus) on Different Substrates Composition in Buea South West Cameroon,Science Journal Publications,22766294 +Grundwasser,Springer-Verlag,1430483X|14321165 +Gruppe Interaktion Organisation Zeitschrift für Angewandte Organisationspsychologie (GIO),Springer-Verlag,23666145|23666218 +Gruppendynamik und Organisationsberatung,Springer-Verlag,16187849|18622615 +Gruppenpsychotherapie und Gruppendynamik,"""Vandenhoeck & Ruprecht GmbH & Co, KG""",21967989|21967989 +GRUPPI,Franco Angeli,18262589|19724837 +GSA Today,Geological Society of America,10525173|19432690 +GSTF International Journal of Physics and Applications,Global Science and Technology Forum,23356901|2335691X +GSTF International Journal on Computing,Springer - Global Science Journals,22513043| +GSTF International Journal on Education,Global Science and Technology Forum,23395060|23395079 +GSTF Journal of Advances in Medical Research,Global Science and Technology Forum,23457201|2345721X +GSTF Journal of BioSciences,Global Science and Technology Forum,22513140|22513159 +GSTF Journal of Engineering Technology,Global Science and Technology Forum,22513701|2251371X +GSTF Journal of General Philosophy,Global Science and Technology Forum,23457856|23457937 +GSTF Journal of Geological Sciences,Global Science and Technology Forum,23356774|23356782 +GSTF Journal of Law and Social Sciences,Springer - Global Science Journals,22512861 +GSTF Journal of Law and Social Sciences,Global Science and Technology Forum,22512853| +GSTF Journal of Mathematics Statistics and Operations Research,Global Science and Technology Forum,22513388|22513396 +GSTF Journal of Music,Global Science and Technology Forum,2382574X|23825928 +GSTF Journal of Nursing and Health Care,Global Science and Technology Forum,2345718X|23457198 +GSTF Journal of Psychology,Global Science and Technology Forum,23457872|23457929 +GSTF Journal of Veterinary Science,Global Science and Technology Forum,23457880|23457910 +GSTF Journal on Agricultural Engineering,Global Science and Technology Forum,23457848|23457945 +GSTF Journal on Aviation Technology,Global Science and Technology Forum,23825758|2382591X +GSTF Journal on Business Review (GBR),Springer - Global Science Journals,22512888 +GSTF Journal on Computing (JoC),Springer - Global Science Journals,20102283 +GSTF Journal on Education,Global Science and Technology Forum,23457163|23457171 +GSTF Journal on Media & Communications,Global Science and Technology Forum,23356618|23356626 +Guaju,Universidade Federal do Parana,24474096 +Guerres mondiales et conflits contemporains,CAIRN,09842292|21010137 +Gulf and Caribbean Research,Univeristy of Southern Mississippi,15280470 +Gulf Coast Association of Geological Societies,AAPG/Datapages,05336562| +Gulf Research Reports,Univeristy of Southern Mississippi,729027 +Gulhane Medical Journal,ScopeMed International Medical Journal Managment and Indexing System,13020471| +Gumanitarnaya informatika,Tomsk State University,23046082| +Gümüşhane Üniversitesi Fen Bilimleri Enstitüsü Dergisi,Gumushane University Journal of Science and Technology Institute,2146538X| +Gümüşhane Üniversitesi İletişim Fakültesi Elektronik Dergisi,Gumushane University E-Journal of Faculty of Communication,21463301 +Gumushane Universitesi Sosyal Bilimler Elektronik Dergisi,Gumushane Universitesi Sosyal Bilimler Enstitusu Elektronik Dergisi,13097423| +Güncel Göğüs Hastalıkları Serisi,AVES Publishing Co.,21475776| +Güncel Pediatri,Galenos Yayinevi,13049054| +Gut,BMJ,00175749|14683288 +Gut and Liver,The Editorial Office of Gut and Liver,19762283|20051212 +Gut Microbes,Landes Bioscience,19490976|19490984 +Gut Pathogens,Springer (Biomed Central Ltd.),17574749|17574749 +Gwerin A Half-Yearly Journal of Folk Life,Maney Publishing,04349725| +GYANODAYA - The Journal of Progressive Education,Diva Enterprises Private Limited,09741801|22294422 +Gynaecological Endoscopy,Wiley Blackwell (Blackwell Publishing),09621091|13652508 +gynäkologie + geburtshilfe,Springer-Verlag,14393557|21966435 +Gynäkologische Endokrinologie,Springer-Verlag,16102894|16102908 +Gynecologic and Obstetric Investigation,S. Karger AG,03787346|1423002X +Gynecologic Oncology,Elsevier ,00908258|10956859 +Gynecologic Oncology Case Reports,Elsevier ,2211338X| +Gynecologic Oncology Reports,Elsevier ,23525789| +Gynecologic Oncology Research and Practice,Springer (Biomed Central Ltd.),20536844|20536844 +Gynecological Endocrinology,Informa UK (Taylor & Francis),09513590|14730766 +Gynecological Surgery,Springer-Verlag,16132076|16132084 +Gynécologie Obstétrique & Fertilité,Elsevier ,12979589| +Gynecology,Herbert Publications,20526210 +Gynecology & Obstetrics,OMICS Publishing Group,21610932 +Gynecology and Minimally Invasive Therapy,Elsevier ,22133070| +Gynecology and Obstetrics Research - Open Journal,Openventio Publishers,23771542 +Gyn�kologisch-geburtshilfliche Rundschau,S. Karger AG,10188843|14230011 +Gyroscopy and Navigation,Pleiades Publishing,20751087|20751109 +Gyrus,Studentska Sekcija za Neuroznanost,18495427|18495427 +GZ - Psychologie,Springer-Verlag,18795080|18795099 +H&G Zeitschrift für Hautkrankheiten,Wiley Blackwell (Blackwell Publishing),03010481|14390353 +H&V Journal,Springer Fachmedien Wiesbaden GmbH,09369856|21928657 +Habitat International,Elsevier ,01973975| +Habitation,Cognizant Communication Corp,15429660| +Hacettepe,Ankara University,13015737 +Hacettepe Journal of Biology and Chemistry,Hacettepe Journal of Biology and Chemistry,13035002| +Hacettepe Journal of Mathematics and Statistics,Hacettepe Journal of Mathematics and Statistics,13035010| +Hacettepe Üniversitesi İktisadi ve İdari Bilimler Fakültesi Dergisi,Hacettepe University Journal of Economics and Administrative Sciences,13018752|13096338 +Hacettepe University Journal of Education,Hacettepe University Journal of Education,13005340| +Hacia la Promoción de la Salud,Universidad de Caldas,01217577| +Hacquetia,De Gruyter Open Sp. z o.o. ,15814661|18549829 +Hadhramout Journal of Medical Sciences,"""Al Manhal FZ, LLC""",22241086| +Haematologia,Brill Academic Publishers,00176559|15685594 +Haematologica,Ferrata Storti Foundation,03906078|15928721 +Haemophilia,Wiley Blackwell (Blackwell Publishing),13518216|13652516 +Hague Journal on the Rule of Law,Springer-Verlag,18764045|18764053 +Haigan,The Japan Lung Cancer Society,03869628|13489992 +Hair Therapy & Transplantation,OMICS Publishing Group,21670951 +Hallazgos,Universidad Santo Tomas,17943841|2422409X +Hallym International Journal of Aging,SAGE Publications,15356523|15414485 +HAMDAN MEDICAL JOURNAL,Hamdan Medical Journal,22272437|2227247X +hamon,The Japanese Society for Neutron Science,1349046X|1884636X +Hämostaseologie,Schattauer GmbH (Hamostaseologie),07209355| +Han-Character and Classical written language Education,Han-Character and Classical Written Language Education,15981363|24658138 +Hand,Springer-Verlag,15589447|15589455 +Hand and Microsurgery,ScopeMed International Medical Journal Managment and Indexing System,21461155|21468079 +Hand Clinics,Elsevier ,07490712| +Hand Surgery,World Scientific ,02188104|17936535 +Hand Surgery and Rehabilitation,Elsevier ,24681229| +Hand Therapy,SAGE Publications,17589983|17589991 +Handbook of Agricultural Economics,Elsevier , +Handbook of Business Strategy,Emerald (MCB UP ),10775730| +Handbook of Computational Economics,Elsevier , +Handbook of Defense Economics,Elsevier , +Handbook of Econometrics,Elsevier , +Handbook of Environmental Economics,Elsevier , +Handbook of Game Theory with Economic Applications,Elsevier , +Handbook of Industrial Organization,Elsevier ,1573448X| +Handbook of Labor Economics,Elsevier , +Handbook of Macroeconomics,Elsevier , +Handbook of Mathematical Economics,Elsevier , +Handbook of Metal Physics,Elsevier ,1570002X| +Handbook of Monetary Economics,Elsevier , +Handbook of Natural Resource and Energy Economics,Elsevier , +Handbook of Numerical Analysis,Elsevier , +Handbook of Population and Family Economics,Elsevier ,1574003X| +Handbook of Practice Management,SAGE Publications,0962144X|0962144X +Handbook of Public Economics,Elsevier , +Handbook of Regional and Urban Economics,Elsevier , +Handbook of Social Choice and Welfare,Elsevier , +Handbook of Systemic Autoimmune Diseases,Elsevier , +Handbooks in Operations Research and Management Science,Elsevier , +Handbooks of Management Accounting Research,Elsevier , +Handchirurgie Scan,Thieme Publishing Group,21948976|21948984 +Handchirurgie · Mikrochirurgie · Plastische Chirurgie,Thieme Publishing Group,07221819|14393980 +Hans Journal of Agricultural Sciences,Hans Publishers,21645507|21645523 +Hans Journal of Biomedicine,Hans Publishers,21618976|21618984 +Hans Journal of Chemical Engineering and Technology,Hans Publishers,21618844|21618852 +Hans Journal of Civil Engineering,Hans Publishers,23263458|23263466 +Hans Journal of Computational Biology,Hans Publishers,21645426|21645434 +Hans Journal of Data Mining,Hans Publishers,2163145X|21631468 +Hans Journal of Food and Nutrition Science,Hans Publishers,2166613X|21666121 +Hans Journal of Medical Cosmetology,Hans Publishers,23326913|23326921 +Hans Journal of Medicinal Chemistry,Hans Publishers,23318287|23318295 +Hans Journal of Nanotechnology,Hans Publishers,2161086X|21610878 +Hans Journal of Ophthalmology,Hans Publishers,21676542|21676550 +Hans Journal of Soil Science,Hans Publishers,23297255|23297263 +Hans Journal of Surgery,Hans Publishers,21685584|21685576 +Hans Journal of Wireless Communications,Hans Publishers,21633983|21633991 +Hanyang Medical Reviews,Hanyang University College of Medicine (KAMJE),1738429X|22344446 +Hapág A Journal of Interdisciplinary Theological Research,PhilJOL,16562739| +Hard Tissue,Open Access Publishing London,20502303 +Harita Teknolojileri Elektronik Dergisi,Makale Sistemi/Geomes,13093983 +Harm Reduction Journal,Springer (Biomed Central Ltd.),14777517|14777517 +Harmful Algae,Elsevier ,15689883| +Harmonia Journal of Arts Research and Education,"""Department of Drama, Dance and Music, Semarang State Universtiy""",14115115|23553820 +Harrington Gay Men s Fiction Quarterly,"""Informa UK (Haworth Press, Inc.,)""",15223140|15223159 +Harrington Gay Men s Literary Quarterly,"""Informa UK (Haworth Press, Inc.,)""",15569241|1556925X +Harrington Lesbian Fiction Quarterly,Informa UK (Taylor & Francis),15228894|1522905X +Harrington Lesbian Literary Quarterly,"""Informa UK (Haworth Press, Inc.,)""",15569225|15569233 +Harvard Deusto Business Research,Omnia Publisher SL,22546235 +Harvard Educational Review,Harvard Education Publishing Group,00178055|19435045 +Harvard Journal of Asiatic Studies,Muse - Johns Hopkins University Press,19446454 +Harvard Journal of Asiatic Studies,JSTOR,00730548| +Harvard Law Review,JSTOR,0017811X| +Harvard Papers in Botany,BioOne (Harvard University Botany Libraries),10434534|19382944 +Harvard Review of Psychiatry,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10673229|14657309 +Harvard Studies in Classical Philology,JSTOR,00730688| +Harvard Theological Review,Cambridge University Press,00178160|14754517 +Hasanuddin Law Review,"""Hasanuddin University, Faculty of Law""",24429880|24429899 +Haseki Tıp Bülteni,Galenos Yayinevi,13020072| +Haseltonia,BioOne (Cactus and Succulent Society of America),10700048|19382898 +Hastings Center Report,Muse - Johns Hopkins University Press,1552146X +Hau Journal of Ethnographic Theory,"""HAU, Journal of Ethnographic Theory""",20491115 +Haushalt in Bildung und Forschung,Barbara Budrich Publishers,21938806|21961662 +HautinForm,Springer-Verlag,18666353|21983445 +hautnah,Springer-Verlag,18662250|21926484 +hautnah dermatologie,Springer-Verlag,09380221|21966451 +Hawaiian Journal of History,Muse - Johns Hopkins University Press,21697639 +Hawwa,Brill Academic Publishers,15692078|15692086 +HAYATI Journal of Biosciences,Elsevier ,19783019| +Hazardous Waste,Mary Ann Liebert,07386168| +Hazardous Waste and Hazardous Materials,Mary Ann Liebert,08825696| +HBRC Journal,Elsevier ,16874048| +He lth Information on the Internet,The Royal Society of Medicine,14604140| +Head & Face Medicine,Springer (Biomed Central Ltd.),1746160X|1746160X +Head & Neck,Wiley Blackwell (John Wiley & Sons),10433074|10970347 +Head & Neck Oncology,Springer (Biomed Central Ltd.),17583284| +Head & Neck Surgery,Wiley Blackwell (John Wiley & Sons),01486403|19302398 +Head and Neck Pathology,Springer-Verlag,1936055X|19360568 +Head and neck tumors (HNT),Publishing House ABV Press,22221468|24114634 +Headache Care,Informa UK (Librapharm),17423430|00000000 +Headache Currents,Wiley Blackwell (Blackwell Publishing),17435005|17435013 +Headache Research and Treatment,Hindawi Publishing Corporation,20901909|20901917 +Headache The Journal of Head and Face Pain,Wiley Blackwell (Blackwell Publishing),00178748|15264610 +HEADline,Springer-Verlag,22104887|23521767 +Headteacher Update,Mark Allen Group,14785307| +Health,"""Scientific Research Publishing, Inc.""",19494998|19495005 +Health & Justice,Springer (Biomed Central Ltd.),21947899|21947899 +Health & Place,Elsevier ,13538292| +Health & Social Care in the Community,Wiley Blackwell (Blackwell Publishing),09660410|13652524 +Health & Social Work,Oxford University Press,03607283|15456854 +Health Affairs,Project Hope,02782715|15445208 +Health An Interdisciplinary Journal for the Social Study of Health Illness and Medicine,SAGE Publications,13634593|00000000 +Health and History,Australian and New Zealand Society of the History of Medicine,14421771|14421771 +Health and Human Rights,JSTOR,10790969|10790969 +Health and Interprofessional Practice,Pacific University Library,21591253 +Health and Quality of Life Outcomes,Springer (Biomed Central Ltd.),14777525|14777525 +Health and Social Care Chaplaincy,Equinox Publishing,20515553|20515561 +Health and Social Welfare Review,Korea Institute for Health and Social Affairs,1226072X| +Health and Technology,Springer-Verlag,21907188|21907196 +Health Behavior and Policy Review,Paris Scholar Publishing,23264403| +Health Care,Sciknow Publications,23297832 +Health Care Academician Journal,ScopeMed International Medical Journal Managment and Indexing System,21487472| +Health Care Analysis,Springer-Verlag,10653058|15733394 +Health Care Current Reviews,OMICS Publishing Group,23754273|23754273 +Health Care For Women International,Informa UK (Taylor & Francis),07399332|10964665 +Health Care Management Review,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,03616274| +Health Care Management Science,Springer-Verlag,13869620|15729389 +Health Care on the Internet,Informa UK (Taylor & Francis),10894187| +Health Communication,Informa UK (Taylor & Francis),10410236|15327027 +Health Culture and Society,"""University Library System, University of Pittsburgh""",21616590 +Health Economics,Wiley Blackwell (John Wiley & Sons),10579230|10991050 +Health Economics Policy and Law,Cambridge University Press,17441331|1744134X +Health Economics Review,Springer (Biomed Central Ltd.),21911991|21911991 +Health Education,Emerald (MCB UP ),09654283|00000000 +Health Education & Behavior,SAGE Publications,10901981|15526127 +Health Education Journal,SAGE Publications,00178969|17488176 +Health Education Research,Oxford University Press,02681153|14653648 +Health Evaluation and Promotion,Japan Society of Health Evaluation and Promiotion,13470086|18844103 +Health Expectations,Wiley Blackwell (Blackwell Publishing),13696513|13696513 +Health Informatics - An International Journal,Academy and Industry Research Collaboration Center,23193190|23192046 +Health Informatics Journal,SAGE Publications,14604582|00000000 +Health Information & Libraries Journal,Wiley Blackwell (Blackwell Publishing),14711834|14711842 +Health Information Management Journal,SAGE Publications,18333583|18333575 +Health Information Science and Systems,Springer (Biomed Central Ltd.),20472501|20472501 +Health Libraries Review,Wiley Blackwell (Blackwell Publishing),02656647|13652532 +Health Manpower Management,Emerald (MCB UP ),09552065|00000000 +Health Marketing Quarterly,Informa UK (Taylor & Francis),07359683|15450864 +HEALTH OF WOMAN,"""Group of Companies, Med Expert, LLC""",19925921|23075074 +Health Outcomes Research in Medicine,Elsevier ,18771319| +Health Physics,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,00179078| +Health Policy,Elsevier ,01688510| +Health Policy and Education,Elsevier ,01652281| +Health Policy and Management,The Korean Society of Health Policy and Administration,12254266| +Health Policy and Management,Mykolas Romeris University,20299001|20299001 +Health Policy and Planning,Oxford University Press,02681080|14602237 +Health Policy and Technology,Elsevier ,22118837| +Health Problems of Civilization,Termedia Sp. z.o.o.,23536942| +Health Professions Education,Elsevier ,24523011| +Health Promotion International,Oxford University Press,09574824|14602245 +Health Promotion Journal of Australia,CSIRO Publishing,10361073| +Health Promotion Perspectives,International Society for Phytocosmetic Sciences,22286497 +Health Promotion Practice,SAGE Publications,15248399|00000000 +Health Prospect,Nepal Journals Online,20912021|2091203X +Health Psychology,American Psychological Association,02786133|19307810 +Health Psychology and Behavioral Medicine,Informa UK (Taylor & Francis),21642850 +Health Psychology Open,SAGE Publications,20551029 +Health Psychology Report,Termedia Sp. z.o.o.,23534184| +Health Psychology Research,PAGEPress Publications,22812075 +Health Psychology Review,Informa UK (Taylor & Francis),17437199|17437202 +Health Reform Observer - Observatoire des Réformes de Santé,Health Reform Observer - Observatoire des Reformes de Sante,22916369 +Health Renaissance,Nepal Journals Online,19947208| +Health Research Policy and Systems,Springer (Biomed Central Ltd.),14784505|14784505 +Health Risk & Society,Informa UK (Taylor & Francis),13698575|14698331 +Health SA Gesondheid,Elsevier ,10259848|20719736 +Health Scope,International Neuroscience Institute,22518959|22519513 +Health Security,Mary Ann Liebert,23265094|23265108 +Health Services and Delivery Research,National Institute for Health Research,20504349|20504357 +Health Services and Outcomes Research Methodology,Springer-Verlag,13873741|15729400 +Health Services Insights,"""Libertas Academica, Ltd.""",11786329 +Health Services Management Research,SAGE Publications,09514848|17581044 +Health Services Reports,JSTOR,00902918| +Health Services Research,Wiley Blackwell (Blackwell Publishing),00179124|14756773 +Health Services Research and Managerial Epidemiology,SAGE Publications,23333928 +Health Sociology Review,Informa UK (Taylor & Francis),14461242|18393551 +Health Statistics Quarterly,Nature Publishing Group - Macmillan Publishers,14651645|20401574 +Health Systems,Nature Publishing Group - Macmillan Publishers,20476965|20476973 +Health Systems & Reform,Landes Bioscience,23288604|23288620 +Health Technology Assessment,National Institute for Health Research,13665278|20464924 +Healthcare,Elsevier ,22130764| +Healthcare,MDPI AG,22279032 +Healthcare in Low-resource Settings,PAGEPress Publications,22817824 +Healthcare in Low-resource Settings,PAGEPress Publications,22814663 +Healthcare Infection,Elsevier ,18355617| +Healthcare Infection,Elsevier ,13299360| +Healthcare Informatics Research,The Korean Society of Medical Informatics (KAMJE),20933681|2093369X +Healthcare Management Forum,SAGE Publications,08404704|23523883 +Healthcare Policy | Politiques de Santé,Longwoods Publishing,17156580 +Healthcare Quarterly,Longwoods Publishing,19296347 +Healthcare Technology Letters,Institution of Electrical Engineers,20533713 +Healthcare Transformation,Mary Ann Liebert,23799900|23799900 +HealthcarePapers,Longwoods Publishing,19296339|19296339 +Healthy Aging & Clinical Care in the Elderly,"""Libertas Academica, Ltd.""",11790601 +Healthy Aging Research,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,22617434|22617434 +Health and Social Care Education,Informa UK (Taylor & Francis),20510888 +Hearing Balance and Communication,Informa UK (Taylor & Francis),21695717|21695725 +Hearing Research,Elsevier ,03785955| +Heart,BMJ,13556037|1468201X +Heart,BMJ,00070769| +Heart & Lung The Journal of Acute and Critical Care,Elsevier ,01479563| +Heart and Vessels,Springer-Verlag,09108327|16152573 +Heart Asia,BMJ,17591104 +Heart Disease,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,1521737X| +Heart Drug,S. Karger AG,14229528|14240556 +Heart Failure Clinics,Elsevier ,15517136| +Heart Failure Reviews,Springer-Verlag,13824147|15737322 +Heart India,Medknow Publications,2321449X| +Heart International,"""Wichtig Publishing, SRL""",18261868|20362579 +Heart Lung and Circulation,Elsevier ,14439506|14442892 +Heart Research - Open Journal,Openventio Publishers,2377164X +Heart Rhythm,Elsevier ,15475271| +Heart Surgery Forum,Carden Jennings Publishing Co.,15226662| +Heart Views,Medknow Publications,1995705X| +HeartRhythm Case Reports,Elsevier ,22140271| +Heat and Mass Transfer,Springer-Verlag,09477411|14321181 +Heat Pipe Science and Technology An International Journal,Begell House Inc.,21517975| +Heat Pipe Science and Technology An International Journal,Begell House Inc.,21517991| +Heat Recovery Systems and CHP,Elsevier ,08904332| +Heat Transfer - Japanese Research,Wiley Blackwell (John Wiley & Sons),00960802|15206556 +Heat Transfer Engineering,Informa UK (Taylor & Francis),01457632|15210537 +Heat Transfer Research,Begell House Inc.,10642285| +Heat Transfer-Asian Research,Wiley Blackwell (John Wiley & Sons),10992871|15231496 +Hebraica,The University of Chicago Press,01602810| +Hebrew Bible and Ancient Israel,Mohr Siebeck,21922276| +hebrew characters in titles 3050,CrossRef test user,10683585| +Hebrew characters test 5 בוא,CrossRef test user,01487736| +Hebrew Studies,Muse - Johns Hopkins University Press,21581681 +HEC Forum,Springer-Verlag,09562737|15728498 +HEGEL - HEpato-GastroEntérologie Libérale,INIST-CNRS,2115452X +Hegel Bulletin,Cambridge University Press,20515367|20515375 +Hegel-Studien (Hegel-Yeongu),The Hegel Society of Korea,15989410| +Heidegger Studies,Philosophy Documentation Center,08854580| +Heilberufe,Springer-Verlag,00179604|18671535 +HeilberufeScience,Springer-Verlag,21902100 +Heimen,Scandinavian University Press / Universitetsforlaget AS,00179841|18943195 +Helgoland Marine Research,Springer-Verlag,1438387X|14383888 +Helgoländer Meeresuntersuchungen,Springer-Verlag,01743597| +Helgoländer Wissenschaftliche Meeresuntersuchungen,Springer-Verlag,00179957| +Helia,Walter de Gruyter GmbH,10181806|21970483 +Helicobacter,Wiley Blackwell (Blackwell Publishing),10834389|15235378 +Helios,Muse - Johns Hopkins University Press,19350228 +Heliyon,Elsevier ,24058440| +Hellenic Journal of Surgery,Springer-Verlag,00180092|18688845 +Hellenic Plant Protection Journal,Walter de Gruyter GmbH,17913691 +Helminthologia,De Gruyter Open Sp. z o.o. ,04406605|13369083 +Helsinki Monitor,Brill Academic Publishers,09250972|1571814X +Helvetica Chimica Acta,Wiley Blackwell (John Wiley & Sons),0018019X|15222675 +Hem-Onc,Landes Bioscience,21505632|21505640 +Hematologia,Science Alert,22241566| +Hematologia,VM Media Sp zo.o. - VMGroup SK,20810768|20813287 +Hematological Oncology,Wiley Blackwell (John Wiley & Sons),02780232|10991069 +Hematology,Maney Publishing,15204391|15204383 +Hematology & Transfusion International Journal,MedCrave Group,24692778 +Hematology and Cell Therapy,Springer-Verlag,12693286|12798509 +Hematology and Leukemia,Herbert Publications,2052434X +Hematology Reports,PAGEPress Publications,20388322|20388330 +Hematology Reviews,PAGEPress Publications,19706804|19706790 +Hematology Reviews Soviet Medical Review,"""Science and Education, Ltd.""",08883920| +Hematology/Oncology and Stem Cell Therapy,Elsevier ,16583876| +Hematology/Oncology Clinics of North America,Elsevier ,08898588| +Hemijska industrija,National Library of Serbia,0367598X|22177426 +Hemodialysis International,Wiley Blackwell (Blackwell Publishing),14927535|15424758 +Hemoglobin,Informa UK (Taylor & Francis),03630269|1532432X +hemşirelikte Eğitim ve Araştırma Dergisi,Logos Medical Publication,13050397| +HEPAC Health Economics in Prevention and Care,Springer-Verlag,14393972|14396637 +Hepatic Medicine Evidence and Research,Dove Medical Press,11791535 +Hepatic Oncology,Future Medicine,20450923|20450931 +Hepatitis B Annual,Medknow Publications,09729747| +Hepatitis Monthly,Kowsar Medical Institute,1735143X|17353408 +Hepatitis Research and Treatment,Hindawi Publishing Corporation,20901364|20901372 +Hepatobiliary & Pancreatic Diseases International,Elsevier ,14993872| +Hepatogastroenterology,Update Medical Publishing,01726390| +Hepatology,Wiley Blackwell (John Wiley & Sons),02709139|15273350 +Hepatology International,Springer-Verlag,19360533|19360541 +Hepatology Research,Wiley Blackwell (Blackwell Publishing),13866346|1872034X +Hepatoma Research,OAE Publishing,23945079|24542520 +Herald of the Bauman Moscow State Technical University Series Instrument Engineering,Bauman Moscow State Technical University,02363933| +Herald of the Bauman Moscow State Technical University Series Mechanical Engineering,Bauman Moscow State Technical University,02363941| +Herald of the Bauman Moscow State Technical University Series Natural Sciences,Bauman Moscow State Technical University,18123368| +Herald of the Kursk State Agricultural Academy,Russian Journal of Agricultural and Socio-Economic Sciences,19970749| +Herald of the Russian Academy of Sciences,Pleiades Publishing,10193316|15556492 +Herald of the Ural State University of Railway Transport,Ural State University of Railway Transport (USURT),20790392|20790392 +Herald of Tver State University,"""Science and Education, Ltd.""",19950136| +Herba Polonica,De Gruyter Open Sp. z o.o. ,180599 +Herbal Formula Science,The Korean Academy of Oriental Medicne Prescription,12291218| +Herbologia an International Journal on Weed Research and Control,Academy of Sciences and Arts of Bosnia anad Herzegovina,18400809| +HERD Health Environments Research & Design Journal,SAGE Publications,19375867|21675112 +Hereditary Cancer in Clinical Practice,Springer (Biomed Central Ltd.),18974287|18974287 +Hereditary Genetics,OMICS Publishing Group,21611041 +Hereditas,Springer (Biomed Central Ltd.),00180661|16015223 +Hereditas (Beijing),China Science Publishing & Media Ltd.,02539772| +Heredity,Nature Publishing Group,0018067X|0018067X +Heritage & Society,Maney Publishing,2159032X|21590338 +Heritage Management,Maney Publishing,19408439| +Heritage Science,Springer (Biomed Central Ltd.),20507445|20507445 +Heritage Turkey,British Institute at Ankara,13623567|2057889X +Hermann-Hesse-Jahrbuch,Walter de Gruyter GmbH,16141423|18658903 +Hermès,INIST-CNRS,07679513|19631006 +HERMES - Journal of Language and Communication in Business,Aarhus University Library,09041699| +Hernia,Springer-Verlag,12654906|12489204 +Hérodote,CAIRN,0338487X|17762987 +HEROM,Leuven University Press,22944273|22944281 +Herpesviridae,Springer (Biomed Central Ltd.),20424280| +Herpetologica,BioOne (Herpetologists League),00180831|19385099 +Herpetological Monographs,BioOne (Herpetologists League),07331347|19385137 +Herz,Springer-Verlag,03409937|16156692 +Herzogia,BioOne - Herzogia,00180971| +Herzschrittmachertherapie + Elektrophysiologie,Springer-Verlag,09387412|14351544 +Hesperia Supplements,JSTOR,10641173| +Hesperia The Journal of the American School of Classical Studies at Athens,The American School of Classical Studies at Athens,0018098X|15535622 +Het Christelijk Oosten,Peeters Publishers,95141 +Heteroatom Chemistry,Wiley Blackwell (John Wiley & Sons),10427163|10981071 +Heterocycles,Japan Institute of Heterocyclic Chemistry,03855414| +Heterocyclic Communications,Walter de Gruyter GmbH,07930283|21910197 +Heterogeneous Asymmetric Hydrogenation,Thieme Publishing Group,20100159 +Heterogeneous Chemistry Reviews,Wiley Blackwell (John Wiley & Sons),10686983|1234985X +Heteromagnetic microelectronics,"""Science and Education, Ltd.""",18109594| +Hexis Theory Society & Culture,University of Rzeszow,23917229| +HFSP Journal,Informa UK (Human Frontier Science Program Publishing),19552068| +High Ability Studies,Informa UK (Taylor & Francis),13598139|1469834X +High Altitude Medicine & Biology,Mary Ann Liebert,15270297|15270297 +High Blood Pressure & Cardiovascular Prevention,Springer-Verlag,11209879|11791985 +High Energy Chemistry,Pleiades Publishing,00181439|16083148 +High Energy Density Physics,Elsevier ,15741818| +High Performance Polymers,SAGE Publications,09540083|13616412 +High Power Laser and Particle Beams,Shanghai Institute of Optics and Fine Mechanics,10014322| +High Power Laser Science and Engineering,Cambridge University Press,20954719|20523289 +High Pressure Research,Informa UK (Taylor & Francis),08957959|14772299 +High Speed Machining,De Gruyter Open Sp. z o.o. ,22993975 +High Temperature,Pleiades Publishing,0018151X|16083156 +High Temperature Material Processes An International Quarterly of High-Technology Plasma Processes,Begell House Inc.,10933611| +High Temperature Material Processes (An International Quarterly of High-Technology Plasma Processes),Begell House Inc.,19404360| +High Temperature Materials and Processes,Walter de Gruyter GmbH,03346455|21910324 +High Temperatures-High Pressures,SAGE Publications,00181544|14723441 +Higher Brain Function Research,Japan Society for Higher Brain Dysfunction,13484818|18806554 +Higher Education,Springer-Verlag,00181560|1573174X +Higher Education Abstracts,Wiley Blackwell (Blackwell Publishing),07484364|21501092 +Higher Education FERPA Bulletin,Wiley Blackwell (John Wiley & Sons),19444478|19444486 +Higher Education for the Future,SAGE Publications,23476311|23485779 +Higher Education in Europe,Informa UK (Taylor & Francis),03797724|14698358 +Higher Education Management,Organisation for Economic Co-Operation and Development ,1013851X| +Higher Education Management and Policy,Organisation for Economic Co-Operation and Development ,16823451|17269822 +Higher Education Pedagogies,Informa UK (Taylor & Francis),23752696 +Higher Education Policy,Nature Publishing Group - Macmillan Publishers,09528733|09528733 +Higher Education Quarterly,Wiley Blackwell (Blackwell Publishing),09515224|14682273 +Higher Education Research & Development,Informa UK (Taylor & Francis),07294360|14698366 +Higher Education Skills and Work-based Learning,Emerald (MCB UP ),20423896| +Higher Education Studies,Canadian Center of Science and Education,19254741|1925475X +Higher Learning Research Communications,"""Laureate Education, Inc.""",21576254 +HIGHER SCHOOL’S PULSE,Index Copernicus International,20802021| +Higher-Order and Symbolic Computation,Springer (Kluwer Academic Publishers),13883690|15730557 +Highland Medical Research Journal,African Journals Online ,15962407 +Highlights of Astronomy,Cambridge University Press,15392996| +Hikaku seiri seikagaku(Comparative Physiology and Biochemistry),The Japanese Society for Comparative Physiology and Biochemistry,09163786|18819346 +Hikmet Yurdu Dusunce-Yorum Sosyal Bilimler Arastirma Dergisi,Hikmet Yurdu Dusunce-Yorum Sosyal Bilimler Arastirma Dergisi,13086944| +Hilgardia,University of California Agriculture and Natural Resources (UC ANR)e,00732230| +Himalayan Journal of Sciences,Nepal Journals Online,17275210|17275229 +Himalayan Journal of Sociology and Anthropology,Nepal Journals Online,23825073| +Himia Fizika ta Tehnologia Poverhni,Co. Ltd. Ukrinformnauka,20791704|20791704 +Hip & Pelvis,The Korean Hip Society (KAMJE),22873260|22873279 +Hip International,"""Wichtig Publishing, SRL""",11207000| +Hipertensión,Elsevier ,02128241| +Hipertensión y Riesgo Vascular,Elsevier ,18891837| +Hipogrifo Revista de literatura y cultura del Siglo de Oro,Instituto de Estudios Auriseculares,23281308|23281308 +Hippocampus,Wiley Blackwell (John Wiley & Sons),10509631|10981063 +Hirurgiâ pozvonočnika,ANO Clinic of NNIITO,18108997| +Hispania,Muse - Johns Hopkins University Press,00182133|21536414 +Hispania,Departmento de Publicaciones del CSIC,00182141|19888368 +Hispania Sacra,Departmento de Publicaciones del CSIC,0018215X|19884265 +Hispanic American Historical Review,Duke University Press,00182168|15271900 +Hispanic Health Care International,Springer Publishing Company,15404153|00000000 +Hispanic Journal of Behavioral Sciences,SAGE Publications,07399863|15526364 +Hispanic Research Journal,Maney Publishing,14682737|00000000 +Hispanic Review,Muse - Johns Hopkins University Press,00182176|15530639 +HISPANICA / HISPÁNICA,Asociacion Japonesa de Hispanistas,09107789|18840574 +Hispanófila,Muse - Johns Hopkins University Press,21656185 +Histochemie,Springer-Verlag,00182222| +Histochemistry,Springer-Verlag,03015564| +Histochemistry and Cell Biology,Springer-Verlag,09486143|1432119X +Histoire & Mesure,OpenEdition,09821783|19577745 +Histoire de la justice,CAIRN,16394399|22717501 +Histoire de la recherche contemporaine,OpenEdition,2265786X|2265786X +Histoire de l’éducation,OpenEdition,02216280|21025452 +Histoire économie et société,CAIRN,07525702|17775906 +Histoire Épistémologie Langage,EDP Sciences,07508069|16381580 +Histoire et littérature de l Europe du Nord-Ouest,OpenEdition,22630945 +Histoire monde et cultures religieuses,CAIRN,19575246|22711848 +Histoire Politique,CAIRN,19543670|19543670 +Histoire sociale/Social history,Muse - Johns Hopkins University Press,19186576 +Histoire urbaine,CAIRN,2101003X|2101003X +Histopathology,Wiley Blackwell (Blackwell Publishing),03090167|13652559 +HISTOREIN,National Documentation Centre,11083441|22412816 +HiSTOReLo Revista de Historia Regional y Local,Universidad Nacional de Colombia,2145132X +Historia,Academy of Science of South Africa,0018229X|23098392 +História & Ensino,Universidade Estadual de Londrina,14143488|22383018 +Historia (Santiago),SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7177194 +História (São Paulo),SciELO,01019074|01019074 +História (São Paulo),SciELO,19804369 +História (São Paulo),SciELO,19804369 +Historia Ambiental Latinoamericana y Caribeña (HALAC) revista de la Solcha,GN1 Genesis Network,22372717| +Historia Caribe,Universidad del Atlantico,01228803|23226889 +História Ciências Saúde-Manguinhos,SciELO,01045970|01045970 +Historia Contemporánea,UPV/EHU Press,11302402| +Historia Crítica No 40,Universidad de los Andes,01211617|20114273 +História da Educação,SciELO,22363459 +História da Historiografia,Sociedade Brasileria de Teoria e Historia de Historiografia,19839928|19839928 +História e Cultura,Revista Historia e Cultura,22386270|22386270 +Historia i Polityka,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,18995160| +Historia Instituciones Documentos,Editorial Universidad de Sevilla,02107716|22538291 +HISTORIA MAGISTRA,Franco Angeli,20364040|20365071 +Historia Mathematica,Elsevier ,03150860|1090249X +História Natureza e Espaço - Revista Eletrônica do Grupo de Pesquisa NIESBF,Universidade do Estado do Rio de Janeiro UERJ,23178361 +História Questões & Debates,Universidade Federal do Parana,01006932|01006932 +História Revista,Universidade Federal de Goias,14146312|19844530 +História Unisinos,Universidade do Vale do Rio Dos Sinos - UNISINOS,15193861|22361782 +Historia y Comunicación Social,Universidad Complutense de Madrid,11370734|19883056 +Historia y Memoria,Universidad Pedagogica y Tecnologica de Colombia,20275137| +Historia y Memoria de la Educación,UNED - Universidad Nacional de Educacion a Distancia,24440043 +Historia y Política Ideas Procesos y Movimientos Sociales,Centro de Estudios Politicos y Constitucionales,15750361|1989063X +Historia y Sociedad,Universidad Nacional de Colombia,01218417|23574720 +Historian,Wiley Blackwell (Blackwell Publishing),00182370|15406563 +Historic Brass Society Journal,Historic Brass Society,10454616| +Historical and social-educational ideas,Historical and Social Educational Ideas,20759908|22196048 +Historical Biology,Informa UK (Taylor & Francis),08912963|10292381 +Historical English Studies in Japan,Historical Society of English Studies in Japan,03869490|18839282 +Historical Journal Of Film Radio and Television,Informa UK (Taylor & Francis),01439685|14653451 +Historical Linguistics,"""Vandenhoeck & Ruprecht GmbH & Co, KG""",09353518|21968071 +Historical Materialism,Brill Academic Publishers,14654466|1569206X +Historical Methods A Journal of Quantitative and Interdisciplinary History,Informa UK (Taylor & Francis),01615440|19401906 +Historical Methods Newsletter,Informa UK (Taylor & Francis),00182494| +Historical Outlook,Informa UK (Taylor & Francis),21552983| +Historical Papers,Consortium Erudit,00688878|17129109 +Historical Records of Australian Science,CSIRO Publishing,07273061| +Historical Reflections,Berghahn Books,03157997|19392419 +Historical Research,Wiley Blackwell (Blackwell Publishing),09503471|14682281 +Historical Society of Southern California Los Angeles,JSTOR,21629013| +Historical Society of Southern California Los Angeles (1890),JSTOR,21632995| +Historical Studies,Informa UK (Taylor & Francis),00182559| +Historical Studies Australia and New Zealand,Informa UK (Taylor & Francis),07286023| +HISTORICAL STUDIES IN CIVIL ENGINEERING,Japan Society of Civil Engineers,09167293|18848141 +Historical Studies in Industrial Relations,Liverpool University Press,13621572|20494459 +Historical Studies in the Natural Sciences,University of California Press,19391811|1939182X +Historical Studies in the Physical and Biological Sciences,University of California Press,08909997|15338355 +Historical Studies in the Physical Sciences,JSTOR,00732672| +Historical Studies of Ancient and Medieval China,Society for Historical Studies of Ancient and Medieval China,12297860| +Historical Zoology,Brill Academic Publishers,18735029| +Historically Speaking,Muse - Johns Hopkins University Press,19446438 +HISTORICKÁ SOCIOLOGIE,"""Charles University in Prague, Karolinum Press""",18040616|23363525 +Histories of Anthropology Annual,Muse - Johns Hopkins University Press,19405138 +Historiographia Linguistica,John Benjamins Publishing Company,03025160|15699781 +Historiography East and West,Brill Academic Publishers,15701867|15701867 +Historisch-Politische Mitteilungen,Bohlau Verlag,0943691X|21944040 +Historische Anthropologie,Bohlau Verlag,09428704|21944032 +Historische Zeitschrift,Oldenbourg Wissenschaftsverlag,00182613|2196680X +Historisk tidsskrift,Scandinavian University Press / Universitetsforlaget AS,0018263X|15042944 +History,Wiley Blackwell (Blackwell Publishing),00182648|1468229X +History & Philosophy of the Life Sciences,Springer-Verlag,03919714|17426316 +History & the World,The Society for Hyo-won Historical Studies,20050143| +History and Anthropology,Informa UK (Taylor & Francis),02757206|14772612 +History and Computing,Edinburgh University Press,09570144| +History and Culture,The Korean Workshop for the History of Culture,1598365X| +History and Historians in the Context of the Time,Academic Publishing House Researcher,20781296|23106239 +History and Memory,Indiana University Press,0935560X|15271994 +History and Philosophy of Logic,Informa UK (Taylor & Francis),01445340|14645149 +History and Sociology of South Asia,SAGE Publications,22308075|22495312 +History and Technology,Informa UK (Taylor & Francis),07341512|14772620 +History and Theory,Wiley Blackwell (Blackwell Publishing),00182656|14682303 +History Australia,Monash University,14490854|18334881 +History Compass,Wiley Blackwell (Blackwell Publishing),14780542|14780542 +History in Africa,Cambridge University Press,03615413|15582744 +History journal of education & science,"""I-PC, LLC""",20798784 +History of Communism in Europe,Philosophy Documentation Center,20693192|20693206 +HISTORY OF ECONOMIC THOUGHT AND POLICY,Franco Angeli,22409971|2280188X +History of Economics Society Bulletin,Cambridge University Press,10427716| +History of Education,Informa UK (Taylor & Francis),0046760X|14645130 +History of Education Quarterly,Wiley Blackwell (Blackwell Publishing),00182680|17485959 +History of Education Review,Emerald (MCB UP ),08198691| +History of European Ideas,Informa UK (Taylor & Francis),01916599|1873541X +History of Geo- and Space Sciences,Copernicus GmbH,21905029 +History of Humanities,The University of Chicago Press,23793163|23793171 +History of Medicine/ru,Innovative Medical Technologies Development Foundation,24095834 +History of Photography,Informa UK (Taylor & Francis),03087298|21507295 +History of Political Economy,Duke University Press,00182702|15271919 +History of Psychiatry,SAGE Publications,0957154X|17402360 +History of Psychology,American Psychological Association,10934510|19390610 +History of Religions,The University of Chicago Press,00182710|15456935 +History of Retailing and Consumption,Informa UK (Taylor & Francis),2373518X|23735171 +History of Science,SAGE Publications,00732753|17538564 +History of Science in South Asia,HSSA Journal,2369775X +History of the Human Sciences,SAGE Publications,09526951|00000000 +History of the Present,University of Illinois Press,21599785|21599793 +History of Women in the Americas,School of Advanced Study,20426348 +History or Education,The Society for History of Education,15989151| +History Research,Science Publishing Group,23766700| +History Reviews of New Books,Informa UK (Taylor & Francis),03612759|19308280 +History Studies International Journal Of History,History Studies International Journal of History,13094688| +History Workshop Journal,Oxford University Press,13633554|14774569 +Hitit Üniversitesi Sosyal Bilimler Enstitüsü Dergisi,Hitit Universitesi Sosyal Bilimler Enstitusu Dergisi,13085107| +Hittite Journal of Science & Engineering,Hittite Journal of Science and Engineering,21492123|21484171 +HIV & AIDS Review,Elsevier ,17301270| +HIV Clinical Trials,Maney Publishing,15284336|19455771 +HIV Medicine,Wiley Blackwell (Blackwell Publishing),14642662|14681293 +HIV Therapy,Future Medicine,17584310|17584329 +HIV/AIDS - Research and Palliative Care,Dove Medical Press,11791373 +HIV/AIDS Research and Treatment - Open Journal,Openventio Publishers,23778377 +HKIE Transactions,Informa UK (Taylor & Francis),1023697X|23263733 +HLA,Wiley Blackwell (Blackwell Publishing),20592302| +HMD Praxis der Wirtschaftsinformatik,Springer Fachmedien Wiesbaden GmbH,14363011|21982775 +HNO,Springer-Verlag,00176192|14330458 +HNO Nachrichten,Springer-Verlag,01771000|21986533 +HNO-Informationen (Kongressabstracts),Thieme Publishing Group,03449319|14394537 +HOAJ Biology,Herbert Publications,20500874 +Hobbes Studies,Brill Academic Publishers,09215891|18750257 +Hoehnea,SciELO,22368906 +Hokengakuzasshi (JOURNAL of INSURANCE SCIENCE),Japanese Society of Insurance Sciene,03872939|21855064 +Hokkaido Mathematical Journal,"""Department of Mathematics, Hokkaido University""",03854035| +Holistic Medicine,Informa UK (Taylor & Francis),08843988| +Holistic Nursing Practice,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,08879311| +Hollywood Quarterly,University of California Press,15490076| +Holocaust and Genocide Studies,Oxford University Press,87566583|14767937 +Holocaust Studies,Informa UK (Taylor & Francis),17504902|20484887 +HOLOS - ISSN 1807-1600,"""Instituto Federal de Educacao, Ciencia e Tecnologia do Rio Grande do Norte (IFRN)""",18071600 +Holy Land Studies,Edinburgh University Press,14749475|17500125 +Holzforschung,Walter de Gruyter GmbH,00183830|1437434X +Home Care Provider,Elsevier - Mosby,1084628X| +Home Cultures,Informa UK (Taylor & Francis),17406315|00000000 +Home Economics Research Journal,Wiley Blackwell (Blackwell Publishing),00467774| +Home Health Care Management & Practice,SAGE Publications,10848223|00000000 +Home Health Care Services Quarterly,Informa UK (Taylor & Francis),01621424|15450856 +Home Healthcare Nurse,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,0884741X| +Home Healthcare Nurse,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,0884741X| +Homeopathy,Elsevier ,14754916| +Homicide Studies,SAGE Publications,10887679|00000000 +Homiletic,Vanderbilt University Library,21526923 +Homiletische Monatshefte,"""Vandenhoeck & Ruprecht GmbH & Co, KG""",21968012|21968012 +Homily Service An ecumenical resource for sharing the word,Informa UK (Taylor & Francis),07321872| +Hommes & migrations,OpenEdition,02233290| +Hommes & migrations,OpenEdition,02233290|22623353 +HOMO - Journal of Comparative Human Biology,Elsevier ,0018442X| +Homo Oeconomicus,Springer-Verlag,09430180|23666161 +Homoeopathic Links,Thieme Publishing Group,10192050|18603149 +Homogeneous Aqueous Reversible Addition–Fragmentation Chain-Transfer Polymerization,Thieme Publishing Group,20600518 +Homology Homotopy and Applications,"""International Press of Boston, Inc.""",15320073|15320081 +Honam Mathematical Journal,The Homan Mathematical Society,1225293X| +Hong Kong Journal of Nephrology,Elsevier ,15615413| +Hong Kong Journal of Occupational Therapy,Elsevier ,15691861| +Hong Kong Journal of Radiology,Hong Kong Academy of Medicine Press,22236619|23074620 +Hong Kong Medical Journal,Hong Kong Academy of Medicine Press,10242708| +Hong Kong Physiotherapy Journal,Elsevier ,10137025| +HOPOS The Journal of the International Society for the History of Philosophy of Science,The University of Chicago Press,21525188|21566240 +Hoppe-Seyler´s Zeitschrift für physiologische Chemie,Walter de Gruyter GmbH,00184888| +HORIZON / Fenomenologicheskie issledovanija/ STUDIEN ZUR PHÄNOMENOLOGIE / STUDIES IN PHENOMENOLOGY / ÉTUDES PHÉNOMÉNOLOGIQUES,St. Petersburg State University,22265260|23116986 +Horizons,Cambridge University Press,03609669|20508557 +Horizons in Biblical Theology,Brill Academic Publishers,01959085|18712207 +Horizons in Humanities and Social Sciences An International Refereed Journal,"""College of Humanities and Social Sciences, UAEU""",24136301 +Horizons philosophiques,Consortium Erudit,11819227|19202954 +HORIZONTE,Pontificia Universidade Catolica de Minas Gerais,16799615|21755841 +Horizonte de enfermeria,Pontificia Universidad Catolica de Chile,07168861| +Horizontes Antropológicos,SciELO,01047183|01047183 +Hormigón y Acero,Elsevier ,04395689| +Hormonal Studies,Herbert Publications,20528000 +Hormone and Metabolic Research,Thieme Publishing Group,00185043|14394286 +Hormone Molecular Biology and Clinical Investigation,Walter de Gruyter GmbH,18681883|18681891 +Hormone Research,S. Karger AG,03010163|14230046 +Hormone Research in Paediatrics,S. Karger AG,16632818|16632826 +HORMONES,Hellenic Endocrine Society,11093099| +Hormones and Behavior,Elsevier ,0018506X|10956867 +Hormones and Cancer,Springer-Verlag,18688497|18688500 +Horror Studies,Intellect,20403275|20403283 +Horse breeding and equestrian sports,"""Science and Education, Ltd.""",00233285| +Horticultura Brasileira,SciELO,01020536|01020536 +Horticulturae,MDPI AG,23117524 +Horticultural Biotechnology Research,Scienceflora Publishers Pvt. Ltd.,2455460X +Horticultural Plant Journal,Elsevier ,24680141| +Horticultural Research (Japan),The Japanese Society for Horticultural Science,13472658|18803571 +Horticultural Science,Czech Academy of Agricultural Sciences,0862867X|18059333 +Horticulture Environment and Biotechnology,Springer-Verlag,22113452|22113460 +Horticulture Research,Nature Publishing Group,20527276 +Hortus Artium Medievalium,"""Brepols Publishers, NV""",13307274| +HORTUS BOTANICUS,Petrozavodsk State University,19943849 +Hospital Aviation,Elsevier ,07408315| +Hospital Medicine,Mark Allen Group,14623935| +Hospital Medicine Clinics,Elsevier ,22115943| +Hospital Pediatrics,American Academy of Pediatrics,21541663|21541671 +Hospital Pharmacy,"""Thomas Land Publishers, Inc.""",00185787| +Hospital Practice,Informa UK (Informa Healthcare),00185809|21548331 +Hospital Practices and Research,Nova Explore Publications Inc.,2476390X +Hospital Topics,Informa UK (Taylor & Francis),00185868|19399278 +Hospitalist News,Elsevier ,18759122| +Hospitality & Society,Intellect,20427913|20427921 +Hot Topics in Cardiology,FBCommunication,19739621|20360924 +Hot Topics in Cardiometabolic Disorders,FBCommunication,20378831|20379080 +Hot Topics in Diabetes,FBCommunication,2282345X|22824383 +Hot Topics in HIV and Other Retroviruses,FBCommunication,20396546|22396659 +Hot Topics in Hypertension,FBCommunication,1973963X|20360908 +Hot Topics in Neurology and Psychiatry,FBCommunication,19747640|20360916 +Hot Topics in Oncology,FBCommunication,19739656|20360894 +Hot Topics in Respiratory Medicine,FBCommunication,19739664|20360886 +Hot Topics in Rheumatology,FBCommunication,22825096| +Hot Topics in Viral Hepatitis,FBCommunication,19739648|20360932 +Housing and Society,Informa UK (Taylor & Francis),08882746|23760923 +Housing Care and Support,Emerald (MCB UP ),14608790|20428375 +Housing Policy Debate,Informa UK (Taylor & Francis),10511482|2152050X +Housing Studies,Informa UK (Taylor & Francis),02673037|14661810 +Housing Theory and Society,Informa UK (Taylor & Francis),14036096|00000000 +HOW,Asociacion Colombiana de Profesores de Ingles - ASOCOPI,01205927| +Howard Journal of Communications,Informa UK (Taylor & Francis),10646175|10964649 +HPB,Elsevier ,1365182X|14772574 +HPB Surgery,Hindawi Publishing Corporation,08948569|16078462 +HSMHA Health Reports,JSTOR,00831204| +HSS Journal ®,Springer-Verlag,15563316|15563324 +HSTC Bulletin Journal of the History of Canadian Science Technology and Medecine,Consortium Erudit,02280086|19187742 +HTM Härtereitechnische Mitteilungen,Carl Hanser Verlag GMBH & Co KG,0341101X| +HTM Journal of Heat Treatment and Materials,Carl Hanser Verlag GMBH & Co KG,18672493|21941831 +HTS Teologiese Studies / Theological Studies,AOSIS,02599422|20728050 +Hudba - integrácie - interpretácie,Constantine the Philosopher University in Nitra,13384872|13384872 +HUFS Law Review,HUFS Law Research Institute,12260886| +Huisarts en Wetenschap,Springer-Verlag,00187070|18765912 +Huisarts Nu,Springer-Verlag,07750501|24057827 +Human & Experimental Toxicology,SAGE Publications,09603271|14770903 +Human Affairs,De Gruyter Open Sp. z o.o. ,12103055|1337401X +Human and Ecological Risk Assessment An International Journal,Informa UK (Taylor & Francis),10807039|15497860 +Human and Social Studies,De Gruyter Open Sp. z o.o. ,22855920|22855920 +Human Andrology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,20906048| +Human Antibodies,IOS Press,10932607|1875869X +Human Biology,Wayne State University Press,00187143|15346617 +Human Brain Mapping,Wiley Blackwell (John Wiley & Sons),10659471|10970193 +Human Cell,Springer-Verlag,09147470|17490774 +Human Communication Research,Wiley Blackwell (Blackwell Publishing),03603989|14682958 +Human Computation,"""ThinkSplash, LLC""",23308001|23308001 +Human Development,S. Karger AG,0018716X|14230054 +Human Dimensions of Wildlife,Informa UK (Taylor & Francis),10871209|00000000 +Human Ecology,Springer-Verlag,03007839|15729915 +Human Evolution,Springer-Verlag,03939375|1824310X +Human Factors and Ergonomics in Manufacturing & Service Industries,Wiley Blackwell (John Wiley & Sons),10908471|15206564 +Human Factors The Journal of the Human Factors and Ergonomics Society,SAGE Publications,00187208|15478181 +Human Fertility,Informa UK (Taylor & Francis),14647273|17428149 +Human Gene Therapy,Mary Ann Liebert,10430342|10430342 +Human Gene Therapy Clinical Development,Mary Ann Liebert,23248637|23248645 +Human Gene Therapy Methods,Mary Ann Liebert,19466536|19466544 +Human Genetics,Springer-Verlag,03406717|14321203 +Human Genetics & Embryology,OMICS Publishing Group,21610436 +Human Genome Variation,Nature Publishing Group,2054345X +Human Genomics,Springer (Biomed Central Ltd.),14739542|14797364 +Human Genomics and Proteomics,CrossRef test user,17574242|17574242 +HUMAN GEOGRAPHIES – Journal of Studies and Research in Human Geography,Human Geographies,18436587|20672284 +Human Heredity,S. Karger AG,00015652|14230062 +Human Immunology,Elsevier ,01988859| +Human Molecular Genetics,Oxford University Press,09646906|14602083 +Human Movement,De Gruyter Open Sp. z o.o. ,17323991|18991955 +Human Movement Science,Elsevier ,01679457| +Human Mutation,Wiley Blackwell (John Wiley & Sons),10597794|10981004 +Human Nature,Springer-Verlag,10456767|19364776 +Human Organization,Society for Applied Anthropology,00187259|19383525 +Human Origins Research,PAGEPress Publications,2039165X|20391668 +Human Parasitic Diseases,"""Libertas Academica, Ltd.""",11795700 +Human Pathology,Elsevier ,00468177| +Human Pathology Case Reports,Elsevier ,22143300| +Human Performance,Informa UK (Taylor & Francis),08959285|15327043 +Human Physiology,Pleiades Publishing,03621197|16083164 +Human Psychopharmacology Clinical and Experimental,Wiley Blackwell (John Wiley & Sons),08856222|10991077 +Human Relations,SAGE Publications,00187267|1741282X +Human Remains and Violence An Interdisciplinary Journal,Manchester University Press,20542240| +Human Reproduction,Oxford University Press,02681161|14602350 +Human Reproduction & Genetic Ethics,Maney Publishing,10287825|20430469 +Human Reproduction Update,Oxford University Press,13554786|14602369 +Human Resource Development International,Informa UK (Taylor & Francis),13678868|14698374 +Human Resource Development Quarterly,Wiley Blackwell (John Wiley & Sons),10448004|15321096 +Human Resource Development Review,SAGE Publications,15344843|00000000 +Human Resource Management,Wiley Blackwell (John Wiley & Sons),00904848|1099050X +Human Resource Management International Digest,Emerald (MCB UP ),09670734|00000000 +Human Resource Management Journal,Wiley Blackwell (Blackwell Publishing),09545395|17488583 +Human Resource Management Research,Scientific and Academic Publishing,21699607| +Human Resource Management Review,Elsevier ,10534822| +Human Resources for Health,Springer (Biomed Central Ltd.),14784491|14784491 +Human Rights Case Digest,Brill Academic Publishers,0965934X|15718131 +Human Rights in Development Online,Brill Academic Publishers,08018049|22116087 +HUMAN RIGHTS IN LAW ENFORCEMENT,European Association of Scientific Research,22855076 +Human Rights Law in Africa Online,Brill Academic Publishers,13853716|22116060 +Human Rights Law Review,Oxford University Press,14617781|17441021 +Human Rights Quarterly,Muse - Johns Hopkins University Press,02750392|1085794X +Human Rights Review,Springer-Verlag,15248879|18746306 +Human Services Organizations Management Leadership & Governance,Informa UK (Taylor & Francis),23303131|2330314X +Human Studies,Springer-Verlag,01638548|1572851X +Human Systems Management,IOS Press,01672533|18758703 +Human Technology An Interdisciplinary Journal On Humans In ICT Environments,Jyvaskyla University Library,17956889 +Human Vaccines,Landes Bioscience,15548600|15548619 +Human Vaccines & Immunotherapeutics,Informa UK (Taylor & Francis),21645515|2164554X +Human-centric Computing and Information Sciences,Springer (Biomed Central Ltd.),21921962|21921962 +Human-Computer Interaction,Informa UK (Taylor & Francis),07370024|15327051 +HumaNetten,Linnaeus University,14032279| +Humangenetik,Springer-Verlag,00187348| +humanidades,Universidad de Costa Rica,22152253|22153934 +Humanidades em diálogo,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,19826931|19827547 +Humanisme et Entreprise,CAIRN,00187372|22711791 +Humanist Studies & the Digital Age,Oregon State University,21583846 +Humanitas,Coimbra University Press,08711569|21831718 +HUMANITAS - Uluslararası Sosyal Bilimler Dergisi,Humanitas Uluslararasi Sosyal Bilimler Dergisi,2147088X| +Humanities,MDPI AG,20760787|20760787 +Humanities and Social Sciences,Science Publishing Group,23308176| +Humanities and Social Sciences Letters,Pak Publishing Group,23125659|23124318 +Humanities and Social Sciences quarterly,Rzeszow University of Technology,23005327|23009918 +Humanities Bulletin of BMSTU,Bauman Moscow State Technical University,23068477 +Humanities Bulletin of the University of Finance,Infra-M Academic Publishing House,22267867| +Humanities Collections,Informa UK (Taylor & Francis),10926763| +Humanities Contens,Korea Humanities Content Society,19754469| +Humanities Directory,Social Sciences Directory Limited,20506171| +HUMANITIES OF THE SOUTH OF RUSSIA,Kniga - Service Agency Ltd.,22278656| +Humanities Review Journal,African Journals Online ,15960749 +Humanity & Society,SAGE Publications,01605976| +Humanity An International Journal of Human Rights Humanitarianism and Development,Muse - Johns Hopkins University Press,21514372 +Humanmedizin kompakt,Springer-Verlag,21954453 +Humanomics,Emerald (MCB UP ),08288666| +human_ontogenetics,Wiley Blackwell (John Wiley & Sons),1863866X|18639526 +Hume Studies,Muse - Johns Hopkins University Press,19479921 +Humor - International Journal of Humor Research,Walter de Gruyter GmbH,09331719|16133722 +Hunarian Food and Agricultural Statistics 2014,Research Institute of Agricultural Economics,20636628| +Hungarian Agricultural Engineering,Hungarian Agricultural Engineering,08647410|24159751 +Hungarian Cultural Studies,"""University Library System, University of Pittsburgh""",19368879 +Hungarian Educational Researcch Journal,University of Debrecen/ Debreceni Egyetem - HERJ,20642199 +Hungarian Geographical Bulletin,"""Geographical Institute, Research Centre for Astronomy and Earth Sciences""",20645031|20645147 +Hungarian Journal of Industry and Chemistry,Walter de Gruyter GmbH,1330276 +Hungarian Journal of Industry and Chemistry,Walter de Gruyter GmbH,24505102 +Hungarian Medical Journal,Akademiai Kiado Zrt.,17886139|17890403 +Hungarian Studies,Akademiai Kiado Zrt.,02366568|15882772 +Hungarica Acta Physica,Springer-Verlag,03676382| +Hünkâr Alevilik Bektaşilik Akademik Araştırmalar Dergisi,Hunkar Alevilik Bektasilik Akademik Arastimalar Dergisi,21485216| +Hunter Gatherer Research,Liverpool University Press,14764261 +Huntington Library Quarterly,University of Pennsylvania Press,00187895|1544399X +Huria Journal of the Open University of Tanzania,African Journals Online ,8566739 +HuSS International Journal of Research in Humanities and Social Sciences,Vellalar College for Women,23494778|23498900 +Husserl Studies,Springer-Verlag,01679848|15728501 +HUTNIK - WIADOMOŚCI HUTNICZE,"""Wydawnictwo SIGMA-NOT, sp. z.o.o.""",12303534| +HVAC&R Research,Informa UK (Taylor & Francis),10789669|19385587 +Hybrid Materials,De Gruyter Open Sp. z o.o. ,22993940 +Hybrid Methods in Engineering,Begell House Inc.,10992391| +Hybridoma,Mary Ann Liebert,0272457X|0272457X +Hybridoma and Hybridomics,Mary Ann Liebert,15368599|00000000 +HYBRIDS,Japan Institute of Electronics Packaging,09142568|18841171 +Hydration,Thieme Publishing Group,20600593 +Hydraulics & Pneumatics,The Japan Fluid Power System Society,02866900|21855285 +Hydro Nepal Journal of Water Energy and Environment,Nepal Journals Online,19985452|23924101 +Hydroamination Hydrophosphination Hydrophosphinylation and Hydrophosphonylation of Carbon—Carbon Double Bonds,Thieme Publishing Group,20100361 +Hydroarylation with Imidazoles,Thieme Publishing Group,20100256 +Hydrobiologia,Springer-Verlag,00188158|15735117 +Hydrobiological Bulletin,Springer-Verlag,01651404| +Hydrobiological Journal,Begell House Inc.,00188166| +Hydroboration of C=N Bonds,Thieme Publishing Group,20200110 +Hydroboration of Styrenes Using Rhodium–QUINAP,Thieme Publishing Group,20100183 +Hydroboration/Amination of Alkenes,Thieme Publishing Group,20100388 +Hydrocyanation of Aldehydes,Thieme Publishing Group,20500556 +Hydroécologie Appliquée,EDP Sciences,11479213|1958556X +Hydrogels,De Gruyter Open Sp. z o.o. ,23533943 +Hydrogenation of Aromatic Ketones,Thieme Publishing Group,20200013 +Hydrogenation of Pent-2-yne with Polymer-Stabilized Metal Colloids,Thieme Publishing Group,20600100 +Hydrogeology Journal,Springer-Verlag,14312174|14350157 +Hydrological Processes,Wiley Blackwell (John Wiley & Sons),08856087|10991085 +Hydrological Research Letters,Japan Society of Hydrology and Water Resources,18823416 +Hydrological Sciences Bulletin,Informa UK (Taylor & Francis),03036936| +Hydrological Sciences Journal,Informa UK (Taylor & Francis),02626667|21503435 +Hydrology,MDPI AG,23065338 +Hydrology and Earth System Sciences,Copernicus GmbH,16077938 +Hydrology and Earth System Sciences Discussions,Copernicus GmbH,18122116 +Hydrology Journal,Diva Enterprises Private Limited,0971569X|09756914 +Hydrology Research,IWA Publishing,00291277|22247955 +Hydrometallurgy,Elsevier ,0304386X| +Hydrophosphonylation,Thieme Publishing Group,20500262 +Hydrotechnical Construction,Springer-Verlag,00188220| +Hygeia journal for drugs and medicines,CD Remedies,22293590 +Hygiea Internationalis An Interdisciplinary Journal for the History of Public Health,Linkoping University Electronic Press,14038668|14044013 +Hygiena, National Institute of Public Health,18026281|18031056 +Hygiene and Sanitation,"""Science and Education, Ltd.""",00169900| +Hygiene and Sanitation,"""Science and Education, Ltd.""",00169900| +Hyomen Kagaku,The Surface Science Society of Japan,03885321|18814743 +Hypatia,Wiley Blackwell (Blackwell Publishing),08875367|15272001 +Hyperfine Interactions,Springer-Verlag,03043843|15729540 +Hypersensitivity,Herbert Publications,2052594X +Hypertension,Ovid Technologies Wolters Kluwer -American Heart Association,0194911X|15244563 +Hypertension in Pregnancy,Informa UK (Taylor & Francis),10641955|15256065 +Hypertension Research,Nature Publishing Group,09169636|13484214 +Hypertension Research in Pregnancy,Japan Society for the Study of Hypertension in Pregnancy,21875987|21879931 +Hypothesis,Hypothesis Journal,1710338X|17103398 +Hypoxia,Dove Medical Press,23241128 +I Tatti Studies in the Italian Renaissance,The University of Chicago Press,03935949|20376731 +I V H S Journal,Informa UK (Taylor & Francis),10655123| +i-com,Oldenbourg Wissenschaftsverlag,1618162X|21966826 +i-Perception,SAGE Publications,20416695|20416695 +I2 Innovación e Investigación en Arquitectura y Territorio,Publicaciones Universidad de Alicante,23410515|23410515 +IABSE Congress Report,International Association for Bridge and Structural Engineering,22213791| +IABSE Symposium Report,International Association for Bridge and Structural Engineering,22213783| +IAES International Journal of Artificial Intelligence (IJ-AI),Institute of Advanced Engineering and Science,22528938| +IAES International Journal of Robotics and Automation (IJRA),Institute of Advanced Engineering and Science,20894856| +IALS Student Law Review,School of Advanced Study,20537646 +IAMURE International Journal of Business and Management,International Association of Multidisciplinary Research,22441492|22441506 +IAMURE International Journal of Ecology and Conservation,International Association of Multidisciplinary Research,22441573|22441581 +IAMURE International Journal of Education,International Association of Multidisciplinary Research,22441476|22441484 +IAMURE International Journal Of Health Education,International Association of Multidisciplinary Research,22441840|22441832 +IAMURE International Journal of Lesbian Gay Bisexual and Transgender Studies,International Association of Multidisciplinary Research,22441867|22441859 +IAMURE International Journal of Literature Philosophy & Religion,International Association of Multidisciplinary Research,22441530|22441549 +IAMURE International Journal of Marine Ecology,International Association of Multidisciplinary Research,22444610|22444629 +IAMURE International Journal of Mathematics Engineering & Technology,International Association of Multidisciplinary Research,2244159X|22441603 +IAMURE International Journal of Multidisciplinary Research,International Association of Multidisciplinary Research,22438327|22440429 +IAMURE International Journal of Plant Ecology,International Association of Multidisciplinary Research,22444556|22444564 +IAMURE International Journal of Science and Clinical Laboratory,International Association of Multidisciplinary Research,22441557|22441565 +IAMURE International Journal of Social Sciences,International Association of Multidisciplinary Research,22441514|22441522 +IAMURE International Journal of Terrestrial Ecology,International Association of Multidisciplinary Research,2244453X|22444548 +IARJSET,Tejass Publisheers,23938021|23938021 +IASPM Journal,The International Association for the Study of Popular Music,20793871|20793871 +IATREIA,Universidad de Antioquia,01210793| +IATSS Research,Elsevier ,03861112| +IAWA Journal,Brill Academic Publishers,09281541|22941932 +Iberian Journal of the History of Economic Thought,Universidad Complutense de Madrid,23865768 +Iberian-Latin American Congress on Computational Methods in Engineering,SWGE Sistemas, +Iberoamerican Journal of Industrial Engineering,Iberoamerican Journal of Industrial Engineering,21758018 +Iberoromania,Walter de Gruyter GmbH,00190993|18659039 +IBIMA Business Review,IBIMA Publishing,19473788 +Ibis,Wiley Blackwell (Blackwell Publishing),00191019|1474919X +IBM Journal of Research and Development,IBM ,00188646|00188646 +IBM Systems Journal,IBM ,00188670| +IBMRD s Journal of Management & Research,Institute of Business Management and Rural Development,22777830|23485922 +IBMS BoneKEy,Nature Publishing Group,19408692 +Ibrahim Cardiac Medical Journal,Bangladesh Journals Online,22230963|22230971 +Ibrahim Medical College Journal,Bangladesh Journals Online,19999690|19999704 +Ibsen Studies,Informa UK (Taylor & Francis),15021866|17418720 +iBusiness,"""Scientific Research Publishing, Inc.""",21504075|21504083 +ICAME Journal,De Gruyter Open Sp. z o.o. ,15025462 +ICAN Infant Child & Adolescent Nutrition,SAGE Publications,19414064|19414072 +Icarus,Elsevier ,00191035|10902643 +ICCM Bulletin,Informa UK (Taylor & Francis),10344233|03135381 +ICE Construction Law Quarterly,Thomas Telford Ltd.,20471424|20471432 +ICE Engineering Division Papers,Thomas Telford Ltd.,5342775 +ICE Proceedings,Thomas Telford Ltd.,203262 +ICE Proceedings Civil Engineering,Thomas Telford Ltd.,17517672 +ICE Proceedings Engineering Divisions,Thomas Telford Ltd.,5342767 +ICE Proceedings Engineering Divisions,Thomas Telford Ltd.,17537797|05342767 +ICE Proceedings Engineering Divisions,Thomas Telford Ltd.,5342767 +ICE Proceedings Geotechnical Engineering,Thomas Telford Ltd.,17518563 +ICE Proceedings Municipal Engineer,Thomas Telford Ltd.,17517699 +ICE Proceedings Structures and Buildings,Thomas Telford Ltd.,17517702 +ICE Proceedings Structures and Buildings,Thomas Telford Ltd.,17517702 +ICE Proceedings Transport,Thomas Telford Ltd.,17517710 +ICE Proceedings Water and Maritime Engineering,Thomas Telford Ltd.,17537800 +ICE Proceedings Water Maritime and Energy,Thomas Telford Ltd.,17537819 +ICE Selected Engineering Papers,Thomas Telford Ltd.,17537827 +ICE Transactions,Thomas Telford Ltd.,17537851 +ICE Transactions,Thomas Telford Ltd.,17537851 +Icelandic Agricultural Sciences,Agricultural University of Iceland,1670567X|2298786X +Icelandic Review of Politics & Administration,Institute of Public Administration and Politics - Icelandic Review of Politics and Administration,22984097|22983988 +ICES Journal of Marine Science,Oxford University Press,10543139|10959289 +ICGA Journal,IOS Press,13896911|24682438 +Ichnos,Informa UK (Taylor & Francis),10420940|15635236 +Ichthyological Research,Springer-Verlag,13418998|16163915 +Iconofacto,Universidad Pontificia Bolivariana,19002785|23900040 +Iconographia mycologica,Springer-Verlag,00734411| +Íconos - Revista de Ciencias Sociales,Facultad Latinoamericana de Ciencias Sociales (FLACSO),13901249|13908065 +ICSID Review,Oxford University Press,02583690|20491999 +ICST Transactions on Ambient Systems,"""Institute for Computer Sciences, Social Informatics and TelecommunicationsEngineering""",2032927X +ICST Transactions on Complex Systems,"""Institute for Computer Sciences, Social Informatics and TelecommunicationsEngineering""",20329229 +ICST Transactions on e-Business,"""Institute for Computer Sciences, Social Informatics and TelecommunicationsEngineering""",20329288 +ICST Transactions on e-Education and e-Learning,"""Institute for Computer Sciences, Social Informatics and TelecommunicationsEngineering""",20329253 +ICST Transactions on Mobile Communications and Applications,"""Institute for Computer Sciences, Social Informatics and TelecommunicationsEngineering""",20329504 +ICST Transactions on Scalable Information Systems,"""Institute for Computer Sciences, Social Informatics and TelecommunicationsEngineering""",20329407 +ICST Transactions on Security and Safety,"""Institute for Computer Sciences, Social Informatics and TelecommunicationsEngineering""",20329393 +ICST Transactions on Ubiquitous Environments,"""Institute for Computer Sciences, Social Informatics and TelecommunicationsEngineering""",20329377 +ICT Express,Elsevier ,24059595| +ICU Director,SAGE Publications,19444516|19444524 +ID on line REVISTA DE PSICOLOGIA,Lepidus Tecnologia,19811179 +IDA Journal of Desalination and Water Reuse,Maney Publishing,19477953|20516452 +IDCases,Elsevier ,22142509| +Idea Studia nad strukturą i rozwojem pojęć filozoficznych,University of Bialystok,08604487| +Idealistic Studies,Philosophy Documentation Center,00468541| +IdeAs,OpenEdition,19505701|19505701 +Ideas and Ideals,Novosibirsk State Technical University,20750862| +Ideas in Ecology and Evolution,Ideas in Ecology and Evolution,19183178 +Ideas y Valores,Universidad Nacional de Colombia,01200062|20113668 +Idées économiques et sociales,CAIRN,22575111|22642749 +Idées économiques et sociales,CAIRN,21165289| +Ideggyógyászati Szemle,Ideggyogyaszati Szemle Journal,00191442| +Identities,Informa UK (Taylor & Francis),1070289X|15473384 +Identity,Informa UK (Taylor & Francis),15283488|1532706X +Identity in the Information Society,Springer-Verlag,18760678 +Identity papers A journal of British and Irish studies,University of Huddersfield Press,20586205 +Idesia (Arica),SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7183429 +IDEYA,PhilJOL,01196405| +Idil Journal of Art and Language,Sada Institute,21469903|21473056 +IDP Revista de Internet Derecho y Política,Fundacio per la Universitat Oberta de Catalunya,16998154 +IDS Bulletin,Institute of Development Studies,02655012|17595436 +IDS Practice Papers,Wiley Blackwell (Blackwell Publishing),17598907|20400225 +IDS Research Reports,Wiley Blackwell (Blackwell Publishing),01411314|20400217 +IDS Working Papers,Wiley Blackwell (Blackwell Publishing),13536141|20400209 +IE interfaces,Korean Institute of Industrial Engineers,12250996| +IEE Journal on Computers and Digital Techniques,Institution of Electrical Engineers,01401335| +IEE Journal on Electric Power Applications,Institution of Electrical Engineers,01401327|20537999 +IEE Journal on Electronic Circuits and Systems,Institution of Electrical Engineers,03086984| +IEE Journal on Microwaves Optics and Acoustics,Institution of Electrical Engineers,03086976| +IEE Journal on SolidState and Electron Devices,Institution of Electrical Engineers,03086968| +IEE Proceedings - Circuits Devices and Systems,Institution of Electrical Engineers,13502409|13597000 +IEE Proceedings - Communications,Institution of Electrical Engineers,13502425|13597019 +IEE Proceedings - Computers and Digital Techniques,Institution of Electrical Engineers,13502387|13597027 +IEE Proceedings - Control Theory and Applications,Institution of Electrical Engineers,13502379|13597035 +IEE Proceedings - Electric Power Applications,Institution of Electrical Engineers,13502352| +IEE Proceedings - Generation Transmission and Distribution,Institution of Electrical Engineers,13502360| +IEE Proceedings - Information Security,Institution of Electrical Engineers,17470730| +IEE Proceedings - Intelligent Transport Systems,Institution of Electrical Engineers,17480248| +IEE Proceedings - Microwaves Antennas and Propagation,Institution of Electrical Engineers,13502417|1359706X +IEE Proceedings - Nanobiotechnology,Institution of Electrical Engineers,14781581| +IEE Proceedings - Optoelectronics,Institution of Electrical Engineers,13502433|13597078 +IEE Proceedings - Radar Sonar and Navigation,Institution of Electrical Engineers,13502395| +IEE Proceedings - Science Measurement and Technology,Institution of Electrical Engineers,13502344|13597094 +IEE Proceedings - Software,Institution of Electrical Engineers,14625970| +IEE Proceedings - Software Engineering,Institution of Electrical Engineers,13645080| +IEE Proceedings - Vision Image and Signal Processing,Institution of Electrical Engineers,1350245X| +IEE Proceedings A (Physical Science Measurement and Instrumentation Management and Education),Institution of Electrical Engineers,20537905 +IEE Proceedings A Physical Science Measurement and Instrumentation Management and Education Reviews,Institution of Electrical Engineers,0143702X| +IEE Proceedings A Science Measurement and Technology,Institution of Electrical Engineers,09607641| +IEE Proceedings B Electric Power Applications,Institution of Electrical Engineers,01437038| +IEE Proceedings C Generation Transmission and Distribution,Institution of Electrical Engineers,01437046| +IEE Proceedings D Control Theory and Applications,Institution of Electrical Engineers,01437054| +IEE Proceedings E (Computers and Digital Techniques),Institution of Electrical Engineers,20537948 +IEE Proceedings E Computers and Digital Techniques,Institution of Electrical Engineers,01437062| +IEE Proceedings F Communications Radar and Signal Processing,Institution of Electrical Engineers,01437070| +IEE Proceedings F Radar and Signal Processing,Institution of Electrical Engineers,0956375X| +IEE Proceedings G (Electronic Circuits and Systems),Institution of Electrical Engineers,01437089| +IEE Proceedings G Circuits Devices and Systems,Institution of Electrical Engineers,09563768| +IEE Proceedings H (Microwaves Antennas and Propagation),Institution of Electrical Engineers,2053907X +IEE Proceedings H Microwaves Antennas and Propagation,Institution of Electrical Engineers,0950107X| +IEE Proceedings H Microwaves Optics and Antennas,Institution of Electrical Engineers,01437097| +IEE Proceedings I (Communications Speech and Vision),Institution of Electrical Engineers,20539053 +IEE Proceedings I Communications Speech and Vision,Institution of Electrical Engineers,09563776| +IEE Proceedings I Solid State and Electron Devices,Institution of Electrical Engineers,01437100| +IEE Proceedings J Optoelectronics,Institution of Electrical Engineers,02673932| +IEE Review,Institution of Electrical Engineers,09535683|17410495 +IEE-IERE Proceedings - India,Institution of Electrical Engineers,00189146| +IEEE Access,Institute of Electrical and Electronics Engineers,21693536|21693536 +IEEE Acoustics Speech and Signal Processing Newsletter,Institute of Electrical and Electronics Engineers,21683093|21683085 +IEEE Aerospace and Electronic Systems Magazine,Institute of Electrical and Electronics Engineers,08858985| +IEEE Annals of the History of Computing,Muse - Johns Hopkins University Press,19341547 +IEEE Annals of the History of Computing,Institute of Electrical and Electronics Engineers,10586180| +IEEE Antennas and Propagation Group Newsletter,Institute of Electrical and Electronics Engineers,21680353|21680361 +IEEE Antennas and Propagation Magazine,Institute of Electrical and Electronics Engineers,10459243| +IEEE Antennas and Wireless Propagation Letters,Institute of Electrical and Electronics Engineers,15361225|15485757 +IEEE ASSP Magazine,Institute of Electrical and Electronics Engineers,07407467| +IEEE Audio and Electroacoustics Newsletter,Institute of Electrical and Electronics Engineers,21683069|21683050 +IEEE Circuits & Systems Magazine,Institute of Electrical and Electronics Engineers,01636812| +IEEE Circuits and Devices Magazine,Institute of Electrical and Electronics Engineers,87553996| +IEEE Circuits and Systems Magazine,Institute of Electrical and Electronics Engineers,1531636X| +IEEE Cloud Computing,Institute of Electrical and Electronics Engineers,23256095 +IEEE Communications Letters,Institute of Electrical and Electronics Engineers,10897798| +IEEE Communications Magazine,Institute of Electrical and Electronics Engineers,01636804| +IEEE Communications Society Magazine,Institute of Electrical and Electronics Engineers,01489615| +IEEE Communications Surveys & Tutorials,Institute of Electrical and Electronics Engineers,1553877X|1553877X +IEEE Computational Intelligence Magazine,Institute of Electrical and Electronics Engineers,1556603X| +IEEE Computational Science and Engineering,Institute of Electrical and Electronics Engineers,10709924| +IEEE Computer Applications in Power,Institute of Electrical and Electronics Engineers,08950156| +IEEE Computer Architecture Letters,Institute of Electrical and Electronics Engineers,15566056| +IEEE Computer Graphics and Applications,Institute of Electrical and Electronics Engineers,02721716| +IEEE Concurrency,Institute of Electrical and Electronics Engineers,10923063| +IEEE Concurreny,Institute of Electrical and Electronics Engineers,10923063| +IEEE Consumer Electronics Magazine,Institute of Electrical and Electronics Engineers,21622248|21622256 +IEEE Control Systems,Institute of Electrical and Electronics Engineers,1066033X| +IEEE Control Systems Magazine,Institute of Electrical and Electronics Engineers,02721708| +IEEE CSIT Newsletter,Institute of Electrical and Electronics Engineers,03647188| +IEEE Design & Test of Computers,Institute of Electrical and Electronics Engineers,07407475| +IEEE Design and Test,Institute of Electrical and Electronics Engineers,21682356|21682364 +IEEE Design and Test of Computers,Institute of Electrical and Electronics Engineers,07407475| +IEEE Distributed Systems Online,Institute of Electrical and Electronics Engineers,15414922| +IEEE Electrical Insulation Magazine,Institute of Electrical and Electronics Engineers,08837554| +IEEE Electrification Magazine,Institute of Electrical and Electronics Engineers,23255897|23255889 +IEEE Electromagnetic Compatibility Magazine,Institute of Electrical and Electronics Engineers,21622264|21622272 +IEEE Electron Device Letters,Institute of Electrical and Electronics Engineers,07413106|15580563 +IEEE Embedded Systems Letters,Institute of Electrical and Electronics Engineers,19430663|19430671 +IEEE Engineering in Medicine and Biology Magazine,Institute of Electrical and Electronics Engineers,07395175| +IEEE Engineering Management Review,Institute of Electrical and Electronics Engineers,03608581| +IEEE Expert,Institute of Electrical and Electronics Engineers,08859000| +IEEE Geoscience and Remote Sensing Letters,Institute of Electrical and Electronics Engineers,1545598X|15580571 +IEEE Geoscience and Remote Sensing Magazine,Institute of Electrical and Electronics Engineers,21686831 +IEEE Industrial Electronics Magazine,Institute of Electrical and Electronics Engineers,19324529| +IEEE Industry Applications Magazine,Institute of Electrical and Electronics Engineers,10772618| +IEEE Instrumentation & Measurement Magazine,Institute of Electrical and Electronics Engineers,10946969| +IEEE Instrumentation and Measurement Magazine,Institute of Electrical and Electronics Engineers,10946969| +IEEE Intelligent Systems,Institute of Electrical and Electronics Engineers,15411672| +IEEE Intelligent Systems and their Applications,Institute of Electrical and Electronics Engineers,10947167| +IEEE Intelligent Transportation Systems Magazine,Institute of Electrical and Electronics Engineers,19391390| +IEEE Internet Computing,Institute of Electrical and Electronics Engineers,10897801| +IEEE Internet of Things Journal,Institute of Electrical and Electronics Engineers,23274662 +IEEE Journal of Biomedical and Health Informatics,Institute of Electrical and Electronics Engineers,21682194|21682208 +IEEE Journal of Emerging and Selected Topics in Power Electronics,Institute of Electrical and Electronics Engineers,21686777|21686785 +IEEE Journal of Oceanic Engineering,Institute of Electrical and Electronics Engineers,03649059|15581691 +IEEE Journal of Photovoltaics,Institute of Electrical and Electronics Engineers,21563381|21563403 +IEEE Journal of Quantum Electronics,Institute of Electrical and Electronics Engineers,00189197|15581713 +IEEE Journal of Selected Topics in Applied Earth Observations and Remote Sensing,Institute of Electrical and Electronics Engineers,19391404|21511535 +IEEE Journal of Selected Topics in Quantum Electronics,Institute of Electrical and Electronics Engineers,1077260X|15584542 +IEEE Journal of Selected Topics in Signal Processing,Institute of Electrical and Electronics Engineers,19324553|19410484 +IEEE Journal of Solid-State Circuits,Institute of Electrical and Electronics Engineers,00189200|1558173X +IEEE Journal of the Electron Devices Society,Institute of Electrical and Electronics Engineers,21686734 +IEEE Journal of Translational Engineering in Health and Medicine,Institute of Electrical and Electronics Engineers,21682372|21682372 +IEEE Journal on Emerging and Selected Topics in Circuits and Systems,Institute of Electrical and Electronics Engineers,21563357|21563365 +IEEE Journal on Exploratory Solid-State Computational Devices and Circuits,Institute of Electrical and Electronics Engineers,23299231 +IEEE Journal on Robotics and Automation,Institute of Electrical and Electronics Engineers,08824967| +IEEE Journal on Selected Areas in Communications,Institute of Electrical and Electronics Engineers,07338716| +IEEE Latin America Transactions,Institute of Electrical and Electronics Engineers,15480992| +IEEE LCS,Institute of Electrical and Electronics Engineers,10459235| +IEEE Life Sciences Letters,Institute of Electrical and Electronics Engineers,23327685 +IEEE LTS,Institute of Electrical and Electronics Engineers,10556877| +IEEE Magnetics Letters,Institute of Electrical and Electronics Engineers,1949307X|19493088 +IEEE Micro,Institute of Electrical and Electronics Engineers,02721732| +IEEE Microwave and Guided Wave Letters,Institute of Electrical and Electronics Engineers,10518207| +IEEE Microwave and Wireless Components Letters,Institute of Electrical and Electronics Engineers,15311309|15581764 +IEEE Microwave Magazine,Institute of Electrical and Electronics Engineers,15273342| +IEEE Multimedia,Institute of Electrical and Electronics Engineers,1070986X| +IEEE Nanotechnology Express,Institute of Electrical and Electronics Engineers,23327715 +IEEE Nanotechnology Magazine,Institute of Electrical and Electronics Engineers,19324510| +IEEE Network,Institute of Electrical and Electronics Engineers,08908044| +IEEE Parallel & Distributed Technology Systems & Applications,Institute of Electrical and Electronics Engineers,10636552| +IEEE Parallel and Distributed Technology Systems and Applications,Institute of Electrical and Electronics Engineers,10636552| +IEEE Personal Communications,Institute of Electrical and Electronics Engineers,10709916| +IEEE Pervasive Computing,Institute of Electrical and Electronics Engineers,15361268| +IEEE Photonics Journal,Institute of Electrical and Electronics Engineers,19430655|19430655 +IEEE Photonics Technology Letters,Institute of Electrical and Electronics Engineers,10411135|19410174 +IEEE Potentials,Institute of Electrical and Electronics Engineers,02786648| +IEEE Power and Energy Magazine,Institute of Electrical and Electronics Engineers,15407977| +IEEE Power and Energy Technology Systems Journal,Institute of Electrical and Electronics Engineers,23327707 +IEEE Power Electronics Letters,Institute of Electrical and Electronics Engineers,15407985| +IEEE Power Electronics Magazine,Institute of Electrical and Electronics Engineers,23299207|23299215 +IEEE Power Engineering Review,Institute of Electrical and Electronics Engineers,02721724| +IEEE Professional Group on Antennas and Propagation Newsletter,Institute of Electrical and Electronics Engineers,21683670|21683689 +IEEE Professional Technical Group on Antennas and Propagation Newsletter,Institute of Electrical and Electronics Engineers,21683514|21683506 +IEEE Pulse,Institute of Electrical and Electronics Engineers,21542287| +IEEE Reviews in Biomedical Engineering,Institute of Electrical and Electronics Engineers,19373333|19411189 +IEEE Revista Iberoamericana de Tecnologias del Aprendizaje,Institute of Electrical and Electronics Engineers,19328540 +IEEE Robotics & Automation Magazine,Institute of Electrical and Electronics Engineers,10709932| +IEEE Robotics and Automation Letters,Institute of Electrical and Electronics Engineers,23773766 +IEEE Security & Privacy,Institute of Electrical and Electronics Engineers,15407993| +IEEE Sensors Journal,Institute of Electrical and Electronics Engineers,1530437X|15581748 +IEEE Signal Processing Letters,Institute of Electrical and Electronics Engineers,10709908|15582361 +IEEE Signal Processing Magazine,Institute of Electrical and Electronics Engineers,10535888| +IEEE Software,Institute of Electrical and Electronics Engineers,07407459| +IEEE Solid-State Circuits Magazine,Institute of Electrical and Electronics Engineers,19430582|19430590 +IEEE Solid-State Circuits Society Newsletter,Institute of Electrical and Electronics Engineers,10984232| +IEEE Spectrum,Institute of Electrical and Electronics Engineers,00189235| +IEEE Systems Journal,Institute of Electrical and Electronics Engineers,19328184|19379234 +IEEE Systems Man and Cybernetics Magazine,Institute of Electrical and Electronics Engineers,2333942X +IEEE Technology and Society Magazine,Institute of Electrical and Electronics Engineers,02780097| +IEEE Transactions on Acoustics Speech and Signal Processing,Institute of Electrical and Electronics Engineers,00963518| +IEEE Transactions on Advanced Packaging,Institute of Electrical and Electronics Engineers,15213323|15579980 +IEEE Transactions on Aerospace,Institute of Electrical and Electronics Engineers,05361516| +IEEE Transactions on Aerospace and Electronic Systems,Institute of Electrical and Electronics Engineers,00189251| +IEEE Transactions on Aerospace and Navigational Electronics,Institute of Electrical and Electronics Engineers,00961957| +IEEE Transactions on Affective Computing,Institute of Electrical and Electronics Engineers,19493045|19493045 +IEEE Transactions on Antennas and Propagation,Institute of Electrical and Electronics Engineers,0018926X|15582221 +IEEE Transactions on Applications and Industry,Institute of Electrical and Electronics Engineers,05361524| +IEEE Transactions on Applied Superconductivity,Institute of Electrical and Electronics Engineers,10518223|15582515 +IEEE Transactions on Audio,Institute of Electrical and Electronics Engineers,00961620| +IEEE Transactions on Audio and Electroacoustics,Institute of Electrical and Electronics Engineers,00189278| +IEEE Transactions on Audio Speech and Language Processing,Institute of Electrical and Electronics Engineers,15587916|15587924 +IEEE Transactions on Automatic Control,Institute of Electrical and Electronics Engineers,00189286|15582523 +IEEE Transactions on Automation Science and Engineering,Institute of Electrical and Electronics Engineers,15455955|15583783 +IEEE Transactions on Autonomous Mental Development,Institute of Electrical and Electronics Engineers,19430604|19430612 +IEEE Transactions on Big Data,Institute of Electrical and Electronics Engineers,23327790 +IEEE Transactions on Bio-medical Electronics,Institute of Electrical and Electronics Engineers,00960616|21681600 +IEEE Transactions on Biomedical Circuits and Systems,Institute of Electrical and Electronics Engineers,19324545|19409990 +IEEE Transactions on Biomedical Engineering,Institute of Electrical and Electronics Engineers,00189294|15582531 +IEEE Transactions on Broadcast and Television Receivers,Institute of Electrical and Electronics Engineers,00189308|2168166X +IEEE Transactions on Broadcasting,Institute of Electrical and Electronics Engineers,00189316|15579611 +IEEE Transactions on Cable Television,Institute of Electrical and Electronics Engineers,01473204| +IEEE Transactions on Circuit Theory,Institute of Electrical and Electronics Engineers,00189324| +IEEE Transactions on Circuits & Systems II Express Briefs,Institute of Electrical and Electronics Engineers,15497747|15583791 +IEEE Transactions on Circuits and Systems,Institute of Electrical and Electronics Engineers,00984094| +IEEE Transactions on Circuits and Systems for Video Technology,Institute of Electrical and Electronics Engineers,10518215|15582205 +IEEE Transactions on Circuits and Systems I Fundamental Theory and Applications,Institute of Electrical and Electronics Engineers,10577122| +IEEE Transactions on Circuits and Systems I Regular Papers,Institute of Electrical and Electronics Engineers,15498328|15580806 +IEEE Transactions on Circuits and Systems II Analog and Digital Signal Processing,Institute of Electrical and Electronics Engineers,10577130| +IEEE Transactions on Cloud Computing,Institute of Electrical and Electronics Engineers,21687161 +IEEE Transactions on Cognitive Communications and Networking,Institute of Electrical and Electronics Engineers,23327731 +IEEE Transactions on Communication and Electronics,Institute of Electrical and Electronics Engineers,05361532| +IEEE Transactions on Communication Technology,Institute of Electrical and Electronics Engineers,00189332| +IEEE Transactions on Communications,Institute of Electrical and Electronics Engineers,00906778| +IEEE Transactions on Communications Systems,Institute of Electrical and Electronics Engineers,00961965| +IEEE Transactions on Component Parts,Institute of Electrical and Electronics Engineers,00976601|21681716 +IEEE Transactions on Components and Packaging Technologies,Institute of Electrical and Electronics Engineers,15213331|15579972 +IEEE Transactions on Components Hybrids and Manufacturing Technology,Institute of Electrical and Electronics Engineers,01486411| +IEEE Transactions on Components Packaging and Manufacturing Technology,Institute of Electrical and Electronics Engineers,21563950|21563985 +IEEE Transactions on Components Packaging and Manufacturing Technology Part A,Institute of Electrical and Electronics Engineers,10709886| +IEEE Transactions on Components Packaging and Manufacturing Technology Part B,Institute of Electrical and Electronics Engineers,10709894| +IEEE Transactions on Components Packaging and Manufacturing Technology Part C,Institute of Electrical and Electronics Engineers,10834400| +IEEE Transactions on Computational Imaging,Institute of Electrical and Electronics Engineers,23339403 +IEEE Transactions on Computational Intelligence and AI in Games,Institute of Electrical and Electronics Engineers,1943068X|19430698 +IEEE Transactions on Computational Social Systems,Institute of Electrical and Electronics Engineers,2329924X +IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems,Institute of Electrical and Electronics Engineers,02780070|19374151 +IEEE Transactions on Computers,Institute of Electrical and Electronics Engineers,00189340| +IEEE Transactions on Consumer Electronics,Institute of Electrical and Electronics Engineers,00983063| +IEEE Transactions on Control of Network Systems,Institute of Electrical and Electronics Engineers,23255870 +IEEE Transactions on Control Systems Technology,Institute of Electrical and Electronics Engineers,10636536|15580865 +IEEE Transactions on Cybernetics,Institute of Electrical and Electronics Engineers,21682267|21682275 +IEEE Transactions on Dependable and Secure Computing,Institute of Electrical and Electronics Engineers,15455971| +IEEE Transactions on Device and Materials Reliability,Institute of Electrical and Electronics Engineers,15304388|15582574 +IEEE Transactions on Dielectrics and Electrical Insulation,Institute of Electrical and Electronics Engineers,10709878| +IEEE Transactions on Education,Institute of Electrical and Electronics Engineers,00189359|15579638 +IEEE Transactions on Electrical Insulation,Institute of Electrical and Electronics Engineers,00189367| +IEEE Transactions on Electromagnetic Compatibility,Institute of Electrical and Electronics Engineers,00189375|1558187X +IEEE Transactions on Electron Devices,Institute of Electrical and Electronics Engineers,00189383|15579646 +IEEE Transactions on Electronic Computers,Institute of Electrical and Electronics Engineers,03677508| +IEEE Transactions on Electronics Packaging Manufacturing,Institute of Electrical and Electronics Engineers,1521334X|15580822 +IEEE Transactions on Emerging Topics in Computing,Institute of Electrical and Electronics Engineers,21686750 +IEEE Transactions on Energy Conversion,Institute of Electrical and Electronics Engineers,08858969|15580059 +IEEE Transactions on Engineering Management,Institute of Electrical and Electronics Engineers,00189391|15580040 +IEEE Transactions on Engineering Writing and Speech,Institute of Electrical and Electronics Engineers,00189405| +IEEE Transactions on Evolutionary Computation,Institute of Electrical and Electronics Engineers,1089778X|1089778X +IEEE Transactions on Fuzzy Systems,Institute of Electrical and Electronics Engineers,10636706|19410034 +IEEE Transactions on Geoscience and Remote Sensing,Institute of Electrical and Electronics Engineers,01962892|15580644 +IEEE Transactions on Geoscience Electronics,Institute of Electrical and Electronics Engineers,03594237| +IEEE Transactions on Haptics,Institute of Electrical and Electronics Engineers,19391412| +IEEE Transactions on Human Factors in Electronics,Institute of Electrical and Electronics Engineers,0096249X|21682852 +IEEE Transactions on Human-Machine Systems,Institute of Electrical and Electronics Engineers,21682291|21682305 +IEEE Transactions on Image Processing,Institute of Electrical and Electronics Engineers,10577149|19410042 +IEEE Transactions on Industrial Electronics,Institute of Electrical and Electronics Engineers,02780046|15579948 +IEEE Transactions on Industrial Electronics and Control Instrumentation,Institute of Electrical and Electronics Engineers,00189421| +IEEE Transactions on Industrial Electronics [May 1963],Institute of Electrical and Electronics Engineers,00994553| +IEEE Transactions on Industrial Informatics,Institute of Electrical and Electronics Engineers,15513203|19410050 +IEEE Transactions on Industry and General Applications,Institute of Electrical and Electronics Engineers,0018943X| +IEEE Transactions on Industry Applications,Institute of Electrical and Electronics Engineers,00939994|19399367 +IEEE Transactions on Information Forensics and Security,Institute of Electrical and Electronics Engineers,15566013|15566021 +IEEE Transactions on Information Technology in Biomedicine,Institute of Electrical and Electronics Engineers,10897771|15580032 +IEEE Transactions on Information Theory,Institute of Electrical and Electronics Engineers,00189448|15579654 +IEEE Transactions on Instrumentation and Measurement,Institute of Electrical and Electronics Engineers,00189456|15579662 +IEEE Transactions on Intelligent Transportation Systems,Institute of Electrical and Electronics Engineers,15249050|15580016 +IEEE Transactions on Intelligent Vehicles,Institute of Electrical and Electronics Engineers,23798858|23798904 +IEEE Transactions on Knowledge and Data Engineering,Institute of Electrical and Electronics Engineers,10414347| +IEEE Transactions on Learning Technologies,Institute of Electrical and Electronics Engineers,19391382| +IEEE Transactions on Magnetics,Institute of Electrical and Electronics Engineers,00189464|19410069 +IEEE Transactions on Man Machine Systems,Institute of Electrical and Electronics Engineers,05361540|21682860 +IEEE Transactions on Manufacturing Technology,Institute of Electrical and Electronics Engineers,0046838X| +IEEE Transactions on Medical Imaging,Institute of Electrical and Electronics Engineers,02780062|1558254X +IEEE Transactions on Microwave Theory and Techniques,Institute of Electrical and Electronics Engineers,00189480|15579670 +IEEE Transactions on Military Electronics,Institute of Electrical and Electronics Engineers,05361559| +IEEE Transactions on Mobile Computing,Institute of Electrical and Electronics Engineers,15361233| +IEEE Transactions on Molecular Biological and Multi-Scale Communications,Institute of Electrical and Electronics Engineers,23327804 +IEEE Transactions on Multi-Scale Computing Systems,Institute of Electrical and Electronics Engineers,23327766 +IEEE Transactions on Multimedia,Institute of Electrical and Electronics Engineers,15209210|19410077 +IEEE Transactions on NanoBioscience,Institute of Electrical and Electronics Engineers,15361241|15582639 +IEEE Transactions on Nanotechnology,Institute of Electrical and Electronics Engineers,1536125X|19410085 +IEEE Transactions on Network and Service Management,Institute of Electrical and Electronics Engineers,19324537| +IEEE Transactions on Network Science and Engineering,Institute of Electrical and Electronics Engineers,23274697| +IEEE Transactions on Neural Networks,Institute of Electrical and Electronics Engineers,10459227|19410093 +IEEE Transactions on Neural Networks and Learning Systems,Institute of Electrical and Electronics Engineers,2162237X|21622388 +IEEE Transactions on Neural Systems and Rehabilitation Engineering,Institute of Electrical and Electronics Engineers,15344320|15580210 +IEEE Transactions on Nuclear Science,Institute of Electrical and Electronics Engineers,00189499|15581578 +IEEE Transactions on Parallel and Distributed Systems,Institute of Electrical and Electronics Engineers,10459219| +IEEE Transactions on Parts Hybrids and Packaging,Institute of Electrical and Electronics Engineers,03611000| +IEEE Transactions on Parts Materials and Packaging,Institute of Electrical and Electronics Engineers,00189502| +IEEE Transactions on Pattern Analysis and Machine Intelligence,Institute of Electrical and Electronics Engineers,01628828|21609292 +IEEE Transactions on Plasma Science,Institute of Electrical and Electronics Engineers,00933813|19399375 +IEEE Transactions on Power Apparatus and Systems,Institute of Electrical and Electronics Engineers,00189510| +IEEE Transactions on Power Delivery,Institute of Electrical and Electronics Engineers,08858977|19374208 +IEEE Transactions on Power Electronics,Institute of Electrical and Electronics Engineers,08858993|19410107 +IEEE Transactions on Power Systems,Institute of Electrical and Electronics Engineers,08858950|15580679 +IEEE Transactions on Product Engineering and Production,Institute of Electrical and Electronics Engineers,00974544| +IEEE Transactions on Professional Communication,Institute of Electrical and Electronics Engineers,03611434|15581500 +IEEE Transactions on Radio Frequency Interference,Institute of Electrical and Electronics Engineers,21681848|21681856 +IEEE Transactions on Rehabilitation Engineering,Institute of Electrical and Electronics Engineers,10636528| +IEEE Transactions on Reliability,Institute of Electrical and Electronics Engineers,00189529|15581721 +IEEE Transactions on Robotics,Institute of Electrical and Electronics Engineers,15523098|19410468 +IEEE Transactions on Robotics and Automation,Institute of Electrical and Electronics Engineers,1042296X| +IEEE Transactions on Semiconductor Manufacturing,Institute of Electrical and Electronics Engineers,08946507|15582345 +IEEE Transactions on Services Computing,Institute of Electrical and Electronics Engineers,19391374| +IEEE Transactions on Signal and Information Processing over Networks,Institute of Electrical and Electronics Engineers,2373776X +IEEE Transactions on Signal Processing,Institute of Electrical and Electronics Engineers,1053587X|19410476 +IEEE Transactions on Smart Grid,Institute of Electrical and Electronics Engineers,19493053|19493061 +IEEE Transactions on Software Engineering,Institute of Electrical and Electronics Engineers,00985589|19393520 +IEEE Transactions on Sonics and Ultrasonics,Institute of Electrical and Electronics Engineers,00189537| +IEEE Transactions on Space Electronics and Telemetry,Institute of Electrical and Electronics Engineers,00962414| +IEEE Transactions on Speech and Audio Processing,Institute of Electrical and Electronics Engineers,10636676| +IEEE Transactions on Sustainable Energy,Institute of Electrical and Electronics Engineers,19493029|19493037 +IEEE Transactions on Systems Man and Cybernetics,Institute of Electrical and Electronics Engineers,00189472|21682909 +IEEE Transactions on Systems Man and Cybernetics - Part A Systems and Humans,Institute of Electrical and Electronics Engineers,10834427|15582426 +IEEE Transactions on Systems Man and Cybernetics Part B (Cybernetics),Institute of Electrical and Electronics Engineers,10834419|19410492 +IEEE Transactions on Systems Man and Cybernetics Part C (Applications and Reviews),Institute of Electrical and Electronics Engineers,10946977|15582442 +IEEE Transactions on Systems Man and Cybernetics Systems,Institute of Electrical and Electronics Engineers,21682216|21682232 +IEEE Transactions on Systems Science and Cybernetics,Institute of Electrical and Electronics Engineers,05361567|21682887 +IEEE Transactions on Terahertz Science and Technology,Institute of Electrical and Electronics Engineers,2156342X|21563446 +IEEE Transactions on Transportation Electrification,Institute of Electrical and Electronics Engineers,23327782 +IEEE Transactions on Ultrasonics Engineering,Institute of Electrical and Electronics Engineers,08936706| +IEEE Transactions on Ultrasonics Ferroelectrics and Frequency Control,Institute of Electrical and Electronics Engineers,08853010|08853010 +IEEE Transactions on Vehicular Communications,Institute of Electrical and Electronics Engineers,00952503| +IEEE Transactions on Vehicular Technology,Institute of Electrical and Electronics Engineers,00189545|19399359 +IEEE Transactions on Very Large Scale Integration (VLSI) Systems,Institute of Electrical and Electronics Engineers,10638210|15579999 +IEEE Transactions on Visualization and Computer Graphics,Institute of Electrical and Electronics Engineers,10772626| +IEEE Transactions on Wireless Communications,Institute of Electrical and Electronics Engineers,15361276| +IEEE Translation Journal on Magnetics in Japan,Institute of Electrical and Electronics Engineers,08824959| +IEEE Vehicular Technology Magazine,Institute of Electrical and Electronics Engineers,15566072| +IEEE Vehicular Technology Magazine,Institute of Electrical and Electronics Engineers,15566072| +IEEE Wireless Communications,Institute of Electrical and Electronics Engineers,15361284| +IEEE Wireless Communications Letters,Institute of Electrical and Electronics Engineers,21622337|21622345 +IEEE Women in Engineering Magazine,Institute of Electrical and Electronics Engineers,1942065X|19420668 +IEEE/ACM Transactions on Audio Speech and Language Processing,Institute of Electrical and Electronics Engineers,23299290|23299304 +IEEE/ACM Transactions on Computational Biology and Bioinformatics,Institute of Electrical and Electronics Engineers,15455963| +IEEE/ACM Transactions on Networking,Institute of Electrical and Electronics Engineers,10636692|15582566 +IEEE/ASME Transactions on Mechatronics,Institute of Electrical and Electronics Engineers,10834435|1941014X +IEEJ Journal of Industry Applications,Institute Electrical Engineers Japan,21871094|21871108 +IEEJ Transactions on Electrical and Electronic Engineering,Wiley Blackwell (John Wiley & Sons),19314973|19314981 +IEEJ Transactions on Electronics Information and Systems,Institute Electrical Engineers Japan,03854221|13488155 +IEEJ Transactions on Fundamentals and Materials,Institute Electrical Engineers Japan,03854205|13475533 +IEEJ Transactions on Industry Applications,Institute Electrical Engineers Japan,09136339|13488163 +IEEJ Transactions on Power and Energy,Institute Electrical Engineers Japan,03854213|13488147 +IEEJ Transactions on Sensors and Micromachines,Institute Electrical Engineers Japan,13418939|13475525 +IEICE Communications Express,"""Institute of Electronics, Information and Communications Engineers""",21870136 +IEICE Communications Society Magazine,"""Institute of Electronics, Information and Communications Engineers""",18844863|21860661 +IEICE Electronics Express,"""Institute of Electronics, Information and Communications Engineers""",13492543 +IEICE ESS FUNDAMENTALS REVIEW,"""Institute of Electronics, Information and Communications Engineers""",18820875 +IEICE Proceeding Series,"""The Institute of Electronics, Information and Communication Engineers""",21885079 +IEICE Transactions on Communications,"""Institute of Electronics, Information and Communications Engineers""",09168516|17451345 +IEICE Transactions on Electronics,"""Institute of Electronics, Information and Communications Engineers""",09168524|17451353 +IEICE Transactions on Fundamentals of Electronics Communications and Computer Sciences,"""Institute of Electronics, Information and Communications Engineers""",09168508|17451337 +IEICE Transactions on Information and Systems,"""Institute of Electronics, Information and Communications Engineers""",09168532|17451361 +IEIE Transactions on Smart Processing and Computing,The Institute of Electronics Engineers of Korea,22875255 +IEIT Journal of Adaptive and Dynamic Computing,Institute of Electronic and Information Technology,22407855| +IEMEK Journal of Embedded Systems and Applications,Institute of Embedded Engineering of Korea,19755066| +IERI Procedia,Elsevier ,22126678| +IESE Insight,Universidad de Navarra,20133901 +IET Biometrics,Institution of Electrical Engineers,20474938|20474946 +IET Circuits Devices & Systems,Institution of Electrical Engineers,1751858X|17518598 +IET Communications,Institution of Electrical Engineers,17518628|17518636 +IET Computer Vision,Institution of Electrical Engineers,17519632|17519640 +IET Computers & Digital Techniques,Institution of Electrical Engineers,17518601|1751861X +IET Control Theory and Applications,Institution of Electrical Engineers,17518644|17518652 +IET Electric Power Applications,Institution of Electrical Engineers,17518660|17518679 +IET Electrical Systems in Transportation,Institution of Electrical Engineers,20429738|20429746 +IET Generation Transmission & Distribution,Institution of Electrical Engineers,17518687|17518695 +IET Image Processing,Institution of Electrical Engineers,17519659|17519667 +IET Information Security,Institution of Electrical Engineers,17518709|17518717 +IET Intelligent Transport Systems,Institution of Electrical Engineers,1751956X|17519578 +IET Microwaves Antennas & Propagation,Institution of Electrical Engineers,17518725|17518733 +IET Nanobiotechnology,Institution of Electrical Engineers,17518741|1751875X +IET Networks,Institution of Electrical Engineers,20474954|20474962 +IET Optoelectronics,Institution of Electrical Engineers,17518768|17518776 +IET Power Electronics,Institution of Electrical Engineers,17554535|17554543 +IET Radar Sonar & Navigation,Institution of Electrical Engineers,17518784|17518792 +IET Renewable Power Generation,Institution of Electrical Engineers,17521416|17521424 +IET Science Measurement & Technology,Institution of Electrical Engineers,17518822|17518830 +IET Signal Processing,Institution of Electrical Engineers,17519675|17519683 +IET Software,Institution of Electrical Engineers,17518806|17518814 +IET Synthetic Biology,Institution of Electrical Engineers,17521394|17521408 +IET Systems Biology,Institution of Electrical Engineers,17518849|17518857 +IET Wireless Sensor Systems,Institution of Electrical Engineers,20436386|20436394 +IETE Journal of Education,Informa UK (Taylor & Francis),09701664|09747338 +IETE Journal of Research,Informa UK (Taylor & Francis),03772063|0974780X +IETE Technical Review,Informa UK (Taylor & Francis),02564602|09745971 +IFAC-PapersOnLine,Elsevier ,24058963| +Ife Journal of Science,African Journals Online ,7944896 +IFE PsychologIA,African Journals Online ,11171421 +IFLA Journal,SAGE Publications,03400352|17452651 +iForest - Biogeosciences and Forestry,SISEF,19717458|19717458 +IFTTA Law Review,Walter de Gruyter GmbH,21928592|21939896 +IG,Nomos Verlag,07205120| +Igaku Toshokan,Japan Medical Library Association,04452429|18845622 +Igra ustvarjalnosti - Creativity Game,Faculty of Civil and Geodetic Engineering,23503637 +Iheringia Série Zoologia,SciELO,00734721|00734721 +IIC - International Review of Intellectual Property and Competition Law,Springer-Verlag,00189855|21950237 +IIE Transactions,Informa UK (Taylor & Francis),0740817X|15458830 +IIE Transactions on Healthcare Systems Engineering,Informa UK (Taylor & Francis),19488300|19488319 +IIE Transactions on Occupational Ergonomics and Human Factors,Informa UK (Taylor & Francis),21577323|21577331 +III-Vs Review,Elsevier ,09611290| +IIM Kozhikode Society & Management Review,SAGE Publications,22779752| +IIMB Management Review,Elsevier ,09703896| +IIMS Journal of Management Science,Diva Enterprises Private Limited,0976030X|0976173X +IIOAB Letters,"""University Library System, University of Pittsburgh""",21613702 +IIUC Studies,Bangladesh Journals Online,18137733|24088544 +IJAEDU- International E-Journal of Advances in Education,IJAEDU- International E-Journal of Advances in Education,24111821 +IJARCCE,Tejass Publisheers,22781021 +iJARS International Journal of Economics and Commerce,IJARS Group,2455149X +iJARS International Journal Of Humanities and Social Studies,IJARS Group,24551465 +iJARS International Journal of Management and Corporate Affairs,IJARS Group,24551473 +IJASOS- International E-journal of Advances in Social Sciences,IJASOS- International E-journal of Advances in Social Sciences,2411183X +IJC Heart & Vasculature,Elsevier ,23529067| +IJC Heart & Vessels,Elsevier ,22147632| +IJC Metabolic & Endocrine,Elsevier ,22147624| +IJCR International Journal of Cancer Research,Recent Science Publications,2051784X +IJCSME,Rishi Educational Society,23498439 +IJEE (Indonesian Journal of English Education),E-Journal System Portal of Syarif Hidayatullah State Islamic University,23561777|24430390 +IJFER (International Journal of Food Engneering Research),Istanbul Aydin University,21495777| +IJIREEICE,Tejass Publisheers,23212004 +IJSS journal of Surgery,IJSS Group of Journals,23951893| +IJTL - International Journal of Transmedia Literacy,Led Edizioni Universitarie,2465227X|24652261 +Íkala Revista de Lenguaje y Cultura,Universidad de Antioquia,01233432| +IKON,Franco Angeli,00191744|19725574 +IKON,"""Brepols Publishers, NV""",18468551| +İktisadi ve İdari Bilimler Dergisi,M.U. Iktisadi ve Idari Bilimler Dergisi,21491844| +İktisat İşletme ve Finans,Iktisat Isletme ve Finans Dergisi,1300610X|13084658 +Ikushugaku zasshi,Japanese Society of Breeding,05363683| +Il Cimento,Springer-Verlag,18275672 +Il Farmaco,Elsevier ,0014827X| +Il Giornale di Chirurgia - Journal of Surgery,CIC Edizioni Internazionali,3919005 +Il Nuovo Cimento,Springer-Verlag,00296341|18276121 +Il Nuovo Cimento A,Springer-Verlag,03693546|18269869 +Il Nuovo Cimento B,Springer-Verlag,03693554|18269877 +Il Nuovo Cimento C,Springer-Verlag,03905551|18269885 +Il Nuovo Cimento D,Springer-Verlag,03926737|18269893 +IL RISORGIMENTO,Franco Angeli,00355607| +Il segno e le lettere – Saggi,Led Edizioni Universitarie,22837140| +ILA Bridges,International Reading Association,24096237 +ILA E-ssentials,International Reading Association,23763310 +Ilahiyat Studies,Bursa Ilahiyat Foundation,13091786|13091719 +ILAR Journal,Oxford University Press,10842020|19306180 +İlef Dergisi,Ankara University,21487219| +İletişim Araştırmaları Dergisi,Ankara University,13037900| +Ilha do Desterro A Journal of English Language Literatures in English and Cultural Studies,Universidade Federal de Santa Catarina,01014846|21758026 +Ilha Revista de Antropologia,Universidade Federal de Santa Catarina,1517395X|21758034 +İlköğretim Online,Ilkogretim Online,13053515| +Illinois Agricultural Economics,JSTOR,00191833| +Illinois Classical Studies,University of Illinois Press,03631923|03631923 +Illness Crisis & Loss,SAGE Publications,10541373|15526968 +ILMU KELAUTAN Indonesian Journal of Marine Sciences,Institute of Research and Community Services Diponegoro University (LPPM UNDIP),08537291|24067598 +ILR Review,SAGE Publications,00197939|2162271X +Ilu Revista de Ciencias de las Religiones,Universidad Complutense de Madrid,11354712|19883269 +Im Focus Onkologie,Springer-Verlag,14357402|21925674 +Im OP,Thieme Publishing Group,16117905|16117913 +IMA Fungus,International Mycologica Association,22106340|22106359 +IMA Journal of Applied Mathematics,Oxford University Press,02724960|14643634 +IMA Journal of Management Mathematics,Oxford University Press,1471678X|14716798 +IMA Journal of Mathematical Control and Information,Oxford University Press,02650754|14716887 +IMA Journal of Numerical Analysis,Oxford University Press,02724979|14643642 +Image,Wiley Blackwell (Blackwell Publishing),03632792| +Image Analysis & Stereology,Slovenian Society for Stereology and Quantitative Image Analysis,15803139|18545165 +Image and Vision Computing,Elsevier ,02628856| +Image Processing & Communications,De Gruyter Open Sp. z o.o. ,1425140X|1425140X +Image Processing On Line,Image Processing On Line,21051232 +Image the Journal of Nursing Scholarship,Wiley Blackwell (Blackwell Publishing),07435150| +Imagen Diagnóstica,Elsevier ,21713669| +Imagens da Educação,Universidade Estadual de Maringa,21798427 +Imagerie de la Femme,Elsevier ,17769817| +Images,Brill Academic Publishers,18717993|18718000 +Images The International Journal of European Film Performing Arts and Audiovisual Communication,Adam Mickiewicz University Poznan,1731450X| +Imaginaire & Inconscient,CAIRN,16289676|19650183 +Imaginário,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,1413666X|19811616 +Imagination Cognition and Personality,SAGE Publications,02762366|15414477 +Imaginations Journal of Cross-Cultural Image Studies/revue d études interculturelle de l image,Immaginations: Journal of Cross-Cultural Image Studies,19188439|19188439 +Imagine,Muse - Johns Hopkins University Press,10863230 +Imaging,British Institute of Radiology,09656812|17488818 +Imaging & Microscopy,Wiley Blackwell (John Wiley & Sons),14394243|18637809 +Imaging Decisions MRI,Wiley Blackwell (Blackwell Publishing),14333317|16170830 +Imaging in Medicine,Future Medicine,17555191|17555205 +Imaging Science in Dentistry,Korean Academy of Oral and Maxillofacial Radiology (KAMJE),22337822|22337830 +Imago Mundi The International Journal for the History of Cartography,Informa UK (Taylor & Francis),03085694| +IMAGO Revista de Emblemática y Cultura Visual,Universitat de Valencia,21710147|22549633 +Imagologiya i komparativistika,Tomsk State University,24099554| +IMF Committee on Balance of Payments Statistics Annual Report,International Monetary Fund,23042249 +IMF Committee on Balance of Payments Statistics annual report,International Monetary Fund,10201637| +IMF Economic Review,Nature Publishing Group - Macmillan Publishers,20414161|2041417X +IMF economic reviews Press information notices,International Monetary Fund,10206779| +IMF Research Bulletin,International Monetary Fund,1607954X +IMF Research Bulletin,International Monetary Fund,16079515 +IMF Research Bulletin,International Monetary Fund,10208313| +IMF Research Bulletin,International Monetary Fund,16079566 +IMF Research Bulletin,International Monetary Fund,02507412| +IMF Research Bulletin,International Monetary Fund,02507420| +IMF Research Bulletin,International Monetary Fund,10149651| +IMF Staff Country Reports,International Monetary Fund,22278907| +IMF Staff Country Reports,International Monetary Fund,19347685|22278907 +IMF Staff Country Reports,International Monetary Fund,22278907| +IMF Staff Papers,Nature Publishing Group - Macmillan Publishers,10207635|15645150 +IMF Staff Papers,International Monetary Fund,10207635| +IMF Staff Position Notes,International Monetary Fund,20723202| +IMF Survey,International Monetary Fund,16079558 +IMF Survey,International Monetary Fund,0047083X| +IMF Survey,International Monetary Fund,0047083X| +IMF Working Papers,International Monetary Fund,22278885| +IMF Working Papers,International Monetary Fund,10185941| +IMIA Yearbook,Schattauer GmbH (IMIA Yearbook of Medical Informatics),09434747|23640502 +Iminium Catalysis by Diarylprolinol Silyl Ethers,Thieme Publishing Group,20500459 +Immediate Science Ecology,Immediate Science Ecology,19292201 +Immigrants & Minorities,Informa UK (Taylor & Francis),02619288|17440521 +Immune Network,Korean Association of Immunobiologists (KAMJE),15982629|20926685 +Immunity,Elsevier ,10747613| +Immunity & Ageing,Springer (Biomed Central Ltd.),17424933|17424933 +Immunity Inflammation and Disease,Wiley Blackwell (John Wiley & Sons),20504527| +Immuno-analyse & Biologie Spécialisée,Elsevier ,09232532| +Immunobiology,Elsevier ,01712985| +Immunochemistry,Elsevier ,00192791| +Immunochemistry & Immunopathology,OMICS Publishing Group,24699756 +Immunoendocrinology,"""Smart Science and Technology, LLC""",23783079 +ImmunoGastroenterology,"""Hong Kong STM Publishing Co., Ltd.""",22247696 +Immunogenetics,Springer-Verlag,00937711|14321211 +Immunologic Research,Springer-Verlag,0257277X|0257277X +Immunological Communications,Informa UK (Taylor & Francis),00900877| +Immunological Investigations,Informa UK (Taylor & Francis),08820139|15324311 +Immunological Reviews,Wiley Blackwell (Blackwell Publishing),01052896|1600065X +Immunologie und Impfen,Springer-Verlag,14352842| +Immunology,Wiley Blackwell (Blackwell Publishing),00192805|13652567 +Immunology and Allergy Clinics of North America,Elsevier ,08898561| +Immunology and Cell Biology,Nature Publishing Group,08189641|14401711 +Immunology and Immunogenetics Insights,"""Libertas Academica, Ltd.""",11786345 +Immunology Endocrine & Metabolic Agents - Medicinal Chemistry,Bentham Science,18715222| +Immunology Innovation,Herbert Publications,2053213X +Immunology Letters,Elsevier ,01652478| +Immunology Studies,Hans Publishers,2330166X|23301678 +Immunology Today,Elsevier ,01675699| +Immunome Research,OMICS Publishing Group,17457580|17457580 +Immunometabolism,De Gruyter Open Sp. z o.o. ,20846835 +ImmunoMethods,Elsevier ,10586687| +Immunopharmacology,Elsevier ,01623109| +Immunopharmacology and Immunotoxicology,Informa UK (Taylor & Francis),08923973|15322513 +ImmunoTargets and Therapy,Dove Medical Press,22531556 +Immunotechnology,Elsevier ,13802933| +Immunotherapy,Future Medicine,1750743X|17507448 +Immunotherapy Insights,CrossRef test user,11791756 +IMP Journal,Emerald (MCB UP ),08097259| +Impact,Wiley Blackwell (Blackwell Publishing),20484151| +Impact Assessment,Informa UK (Taylor & Francis),07349165| +Impact Assessment and Project Appraisal,Informa UK (Taylor & Francis),14615517|14715465 +IMPACT of Computing in Science and Engineering,Elsevier ,08998248| +Implant Dentistry,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10566163| +Implantodontie,Elsevier ,11581336| +Implementation Science,Springer (Biomed Central Ltd.),17485908|17485908 +Implicit Religion,Equinox Publishing,14639955|17431697 +Improving College and University Teaching,Informa UK (Taylor & Francis),00193089| +Improving Schools,SAGE Publications,13654802|00000000 +Impulso,Instituto Educacional Piracicabano da Igreja Metodista,22369767 +IMS Lecture Notes Monograph Series,Institute of Mathematical Statistics, +IMS Manthan (The Journal of Innovations),IMS Institute Noida,09747141|09761713 +In a good rythm,Index Copernicus International,18967892| +In die Skriflig/In Luce Verbi,AOSIS,10186441|23050853 +In Monte Artium,"""Brepols Publishers, NV""",20313098| +In Practice,BMJ,0263841X|20427689 +In Session Psychotherapy in Practice,Wiley Blackwell (John Wiley & Sons),10772413|15206572 +In Silico Biology,IOS Press,13866338|14343207 +In Silico Cell and Tissue Science,Springer (Biomed Central Ltd.),2196050X|2196050X +In Silico Pharmacology,Springer (Biomed Central Ltd.),21939616|21939616 +In Situ,OpenEdition,16307305|16307305 +In the World of Scientific Discoveries Series A,Science and Innovation Center,2330927X|23309288 +In the World of Scientific Discoveries Series B,Science and Innovation Center,23312173|23312181 +In Vitro,Springer-Verlag,00735655| +In Vitro & Molecular Toxicology,Mary Ann Liebert,10979336| +In Vitro Cellular & Developmental Biology,Springer-Verlag,08838364| +In Vitro Cellular & Developmental Biology - Animal,Springer-Verlag,10712690|1543706X +In Vitro Cellular & Developmental Biology - Plant,Springer-Verlag,10545476|14752689 +Incantatio An International Journal on Charms Charmers and Charming,Estonian Literary Museum Scholary Press,22281355| +INCAS BULLETIN,INCAS - National Institute for Aerospace Research Elie Carafoli,20668201|22474528 +InCID Revista de Ciência da Informação e Documentação,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,21782075|21782075 +Inclusion,American Association on Intellectual and Developmental Disabilities,23266988| +Incontri Rivista europea di studi italiani,Uopen Journals,01693379|22147705 +INCOSE International Symposium,Wiley Blackwell (John Wiley & Sons),23345837| +INCT-APA Annual Activity Report,Editora Cubo Multimidia,2177918X| +Indagationes Mathematicae,Elsevier ,00193577| +Indagationes Mathematicae (Proceedings),Elsevier ,13857258| +Independent Journal of Management & Production,Independent Journal of Management and Production,2236269X +Independent Nurse,Mark Allen Group,17479800|20522843 +Indes,"""Vandenhoeck & Ruprecht GmbH & Co, KG""",21967962|21967962 +Index de Enfermería,Instituto de Salud Carlos III/BNCS/SciELO Espana,11321296|11321296 +Index on Censorship,SAGE Publications,03064220|17466067 +India Quarterly A Journal of International Affairs,SAGE Publications,09749284|09752684 +India Review,Informa UK (Taylor & Francis),14736489|15573036 +Indian Academy of Oral Medicine and Radiology,Jaypee Brothers Medical Publishing,9751572 +Indian Chemical Engineer,Informa UK (Taylor & Francis),00194506|0975007X +Indian Dermatology Online Journal,Medknow Publications,22295178| +Indian Economic & Social History Review,SAGE Publications,00194646|09730893 +Indian Geotechnical Journal,Springer-Verlag,09719555|22773347 +Indian Growth and Development Review,Emerald (MCB UP ),17538254| +Indian Heart Journal,Elsevier ,00194832| +Indian Historical Review,SAGE Publications,03769836|09755977 +Indian Internet Journal of Forensic Medicine & Toxicology,Diva Enterprises Private Limited,09731970|09744487 +Indian Journal of Agricultural Biochemistry,Diva Enterprises Private Limited,09706399|09744479 +Indian Journal of Agricultural Research,Agricultural Research Communication Center,03678245|0976058X +Indian Journal of Allergy Asthma and Immunology,Medknow Publications,09726691| +Indian Journal of Anaesthesia,Medknow Publications,00195049| +Indian Journal of Animal Nutrition,Diva Enterprises Private Limited,09703209|22316744 +Indian Journal of Animal Research,Agricultural Research Communication Center,03676722|09760555 +Indian Journal Of Applied Research,The Global Journals,2249555X|2249555X +Indian Journal of Burns,Medknow Publications,0971653X| +Indian Journal of Cancer,Medknow Publications,0019509X| +Indian Journal of Cerebral Palsy,Medknow Publications,23954264| +Indian Journal of Clinical Anaesthesia,Diva Enterprises Private Limited,23944781|23944994 +Indian Journal of Clinical Anatomy and Physiology,Diva Enterprises Private Limited,23942118|23942126 +Indian Journal of Clinical and Experimental Ophthalmology,Diva Enterprises Private Limited,23951443|23951451 +Indian Journal of Clinical Biochemistry,Springer-Verlag,09701915|09740422 +Indian Journal of Clinical Medicine,"""Libertas Academica, Ltd.""",11799161 +Indian Journal of Community Medicine,Medknow Publications,09700218| +Indian Journal of Comparative Microbiology Immunology and Infectious Diseases,Diva Enterprises Private Limited,09709320|09740147 +Indian Journal of Contemporary Dentistry,Diva Enterprises Private Limited,23205806|23205962 +Indian Journal of Corporate Governance,SAGE Publications,09746862|24542482 +Indian Journal of Critical Care Medicine,Medknow Publications,09725229| +Indian Journal of Cryogenics,Diva Enterprises Private Limited,03790479|23492120 +Indian Journal of Dental Advancements,National Academy of Dentistry,22295038|22295127 +Indian Journal of Dental Research,Medknow Publications,09709290| +Indian Journal of Dentistry,Medknow Publications,0975962X| +Indian Journal of Dermatology,Medknow Publications,00195154| +Indian Journal of Dermatology Venereology and Leprology,Medknow Publications,03786323| +Indian Journal of Dermatopathology and Diagnostic Dermatology,Medknow Publications,23496029| +Indian Journal of Dryland Agricultural Research and Development,Diva Enterprises Private Limited,09712062|22316701 +Indian Journal of Economics and Development,Diva Enterprises Private Limited,22775412|23220430 +Indian Journal of Endocrinology and Metabolism,Medknow Publications,22308210| +Indian Journal of Entomology,Diva Enterprises Private Limited,03678288|09748172 +Indian Journal of Finance,"""Associated Management Consultants, PVT, Ltd.""",9738711 +Indian Journal of Fisheries,"""Central Marine Fisheries Research Institute, Kochi""",9706011 +Indian Journal of Forensic and Community Medicine,Diva Enterprises Private Limited,23946768|23946776 +Indian Journal of Forensic Medicine & Toxicology,Diva Enterprises Private Limited,09739122|09739130 +Indian Journal of Gastroenterology,Springer-Verlag,02548860|09750711 +Indian Journal of Gender Studies,SAGE Publications,09715215|09730672 +Indian Journal of Genetics and Plant Breeding (The),Diva Enterprises Private Limited,00195200|09756906 +Indian Journal of Gynecologic Oncology,Springer-Verlag,23638397|23638400 +Indian Journal of Health Sciences,Medknow Publications,09745912| +Indian Journal of Health Sciences and Care,Diva Enterprises Private Limited,23942363|23942800 +Indian Journal of Hematology and Blood Transfusion,Springer-Verlag,09714502|09740449 +Indian Journal of History of Science,Indian National Science Academy,195235 +Indian Journal of Horticulture,Diva Enterprises Private Limited,09728538|09740112 +Indian Journal of Human Genetics,Medknow Publications,09716866| +Indian Journal of Industrial and Applied Mathematics,Diva Enterprises Private Limited,09734317|1945919X +Indian Journal of International Law,Springer-Verlag,00195294|21997411 +Indian Journal of Labour Economics,Springer-Verlag,09717927|00195308 +Indian Journal of Library and Information Science,"""Red Flower Publication Private, Ltd.""",09739548|09739556 +Indian Journal of Marketing,"""Associated Management Consultants, PVT, Ltd.""",09738703|09738703 +Indian Journal of Materials Science,Hindawi Publishing Corporation,23147490 +Indian Journal of Medical and Paediatric Oncology,Medknow Publications,09715851| +Indian Journal of Medical Microbiology,Medknow Publications,02550857| +Indian Journal of Medical Sciences,Medknow Publications,00195359| +Indian Journal of Medical Specialities,Elsevier ,09762884|09762892 +Indian Journal of Mednodent and Allied Sciences,Diva Enterprises Private Limited,23476192|23476206 +Indian Journal of Microbiology,Springer-Verlag,00468991|09737715 +Indian Journal of Microbiology Research,Diva Enterprises Private Limited,2394546X|23945478 +Indian Journal of Multidisciplinary Dentistry,Medknow Publications,22296360| +Indian Journal of Neonatal Medicine and Research,JCDR Research and Publications,22778527| +Indian Journal of Nephrology,Medknow Publications,09714065| +Indian Journal of Neurosurgery,Thieme Publishing Group,2277954X|22779167 +Indian Journal of Nuclear Medicine,Medknow Publications,09723919| +Indian Journal of Obstetrics and Gynecology,"""Red Flower Publication Private, Ltd.""",23211636|24555339 +Indian Journal of Obstetrics and Gynecology Research,Diva Enterprises Private Limited,23942746|23942754 +Indian Journal of Occupational and Environmental Medicine,Medknow Publications,00195278| +Indian Journal of Ophthalmology,Medknow Publications,03014738| +Indian Journal of Oral Health and Research,Medknow Publications,23938692| +Indian Journal of Oral Sciences,Medknow Publications,09766944| +Indian Journal of Orthopaedics,Medknow Publications,00195413| +Indian Journal of Orthopaedics Surgery,Diva Enterprises Private Limited,23951354|23951362 +Indian Journal of Otolaryngology and Head & Neck Surgery,Springer-Verlag,00195421|09737707 +Indian Journal of Otology,Medknow Publications,09717749| +Indian Journal of Paediatric Dermatology,Medknow Publications,23197250| +Indian Journal of Pain,Medknow Publications,09705333| +Indian Journal of Palliative Care,Medknow Publications,09731075| +Indian Journal of Pathology and Microbiology,Medknow Publications,03774929| +Indian Journal of Pathology and Oncology,Diva Enterprises Private Limited,23946784|23946792 +Indian Journal of Pathology Research and Practice,"""Red Flower Publication Private, Ltd.""",2278148X|24555320 +Indian Journal of Peritoneal dialysis,Indian Journal of Peritoneal Dialysis,09764194|23496215 +Indian Journal of Pharmaceutical Education and Research,EManuscript Services,00195464|00195464 +Indian Journal of Pharmaceutical Sciences,Medknow Publications,0250474X| +Indian Journal of Pharmacology,Medknow Publications,02537613| +Indian Journal of Pharmacy Practice,EManuscript Services,09748326|09748326 +Indian Journal of Physics,Springer-Verlag,00195480|09749845 +Indian Journal of Physiotherapy and Occupational Therapy - An International Journal,Diva Enterprises Private Limited,09735666|09735674 +Indian Journal of Plant Genetic Resources,Diva Enterprises Private Limited,09718184|09761926 +Indian Journal of Plant Physiology,Springer-Verlag,00195502|09740252 +Indian Journal of Plastic Surgery,Medknow Publications,09700358| +Indian Journal of Psychiatry,Medknow Publications,00195545| +Indian Journal of Psychological Medicine,Medknow Publications,02537176| +Indian Journal of Public Health,Medknow Publications,0019557X| +Indian Journal of Public Health Research & Development,Diva Enterprises Private Limited,09760245|09765506 +Indian Journal of Pure and Applied Mathematics,Springer-Verlag,00195588|09757465 +Indian Journal of Radiology and Imaging,Medknow Publications,09713026| +Indian Journal of Research in Homoeopathy,Medknow Publications,09747168| +Indian Journal of Rheumatology,Elsevier ,09733698| +Indian Journal of Science and Technology,Indian Society for Education and Environment,09746846|09745645 +Indian Journal of Sexually Transmitted Diseases and AIDS,Medknow Publications,02537184| +Indian Journal of Sleep Medicine,Diva Enterprises Private Limited,0973340X|09740155 +Indian Journal of Small Ruminants (The),Diva Enterprises Private Limited,09719857|09739718 +Indian Journal of Social Psychiatry,Medknow Publications,09719962| +Indian Journal of Surgery,Springer-Verlag,09722068|09739793 +Indian Journal of Surgical Oncology,Springer-Verlag,09757651|09766952 +Indian Journal of Thoracic and Cardiovascular Surgery,Springer-Verlag,09709134|09737723 +Indian Journal of Transplantation,Elsevier ,22120017| +Indian Journal of Trauma & Emergency Pediatrics,"""Red Flower Publication Private, Ltd.""",23489987|24555517 +Indian Journal of Tuberculosis,Elsevier ,00195707| +Indian Journal of Urology,Medknow Publications,09701591| +Indian Journal of Vascular and Endovascular Surgery,Medknow Publications,09720820| +Indian Journal of Veterinary Pathology,Diva Enterprises Private Limited,02504758|0973970X +Indian Journal of Virology,Springer-Verlag,09702822|09740120 +Indian Pacing and Electrophysiology Journal,Elsevier ,09726292| +Indian Pediatrics,Springer-Verlag,00196061|09747559 +Indian Streams Research Journal,Laxmi Book Publication,22307850|22307850 +Indiana Health Law Review,IUPUI University Library,15493199|23742593 +Indiana International & Comparative Law Review,IUPUI University Library,21693226 +Indiana Journal of Global Legal Studies,Indiana University Press,10800727|15430367 +Indiana Law Review,IUPUI University Library,00904198|2169320X +Indiana Magazine of History,Indiana Magazine of History,00196673|19429711 +Indiana University Mathematics Journal,Indiana University Mathematics Journal,00222518| +Indicators,Informa UK (Taylor & Francis),15357449| +Indicators of Industry and Services,Organisation for Economic Co-Operation and Development ,16098714|16096932 +Indilinga African Journal of Indigenous Knowledge Systems,African Journals Online ,16830296 +Indirect Catalytic Aldol Addition Reactions,Thieme Publishing Group,20600267 +Indo-European Linguistics,Brill Academic Publishers,22125884|22125892 +Indo-Iranian Journal,Brill Academic Publishers,00197246|15728536 +Indo-Pacific Journal of Phenomenology,Informa UK (Taylor & Francis),20797222|14457377 +Indogermanische Forschungen,Walter de Gruyter GmbH,00197262|16130405 +Indonesia,Muse - Johns Hopkins University Press,21648654 +Indonesia,Cornell SEAP,00197289| +Indonesia and the Malay World,Informa UK (Taylor & Francis),13639811|14698382 +Indonesia Circle School of Oriental & African Studies Newsletter,Informa UK (Taylor & Francis),03062848| +Indonesia Law Review,Djokosoetono Research Center,20888430|23562129 +Indonesian Bulletin of Animal and Veterinary Sciences,"""Indonesian Center for Animal Research and Devleopment, ICARD""",02166461|23546832 +Indonesian Journal of Applied Linguistics,Universitas Pendidikan Indonesia,23019468| +INDONESIAN JOURNAL OF APPLIED PHYSICS,UNS Solo,20890133|24776416 +Indonesian Journal of Business and Entrepreneurship,"""Graduate Program of Management and Business, Bogor Agricultural University""",24075434|24077321 +Indonesian Journal of Clinical Pharmacy,Indonesian Journal of Clinical Pharmacy,22526218|23375701 +Indonesian Journal of Electrical Engineering and Computer Science,Institute of Advanced Engineering and Science,25024752|25024760 +Indonesian Journal of Electrical Engineering and Informatics (IJEEI),Institute of Advanced Engineering and Science,20893272|20893272 +Indonesian Journal of Forestry Research,"""Research, Development and Innovation Agency, Ministry of Environment and Forestry""",23557079|24068195 +Indonesian Journal of Islam and Muslim Societies,State Institute of Islamic Studies Salatiga,20891490|2406825X +Indonesian Journal of Pharmaceutical Science and Technology,Indonesian Journal of Clinical Pharmacy,23561971|2406856X +INDONESIAN JOURNAL OF PHARMACY,Indonesian Journal of Pharmacy,23389427|23389486 +Indonesian Journal on Computing (Indo-JC),"""School of Computing, Telkom University""",24609056 +Indonesian Journal on Geoscience,Indonesian Journal of Geoscience,23559314|23559306 +Indoor Air,Wiley Blackwell (Blackwell Publishing),09056947|16000668 +Indoor and Built Environment,SAGE Publications,1420326X|14230070 +Indoor Environment,Society of Indoor Environment Japan,18820395|21864322 +Industrial & Engineering Chemistry,American Chemical Society,00197866|15415724 +Industrial & Engineering Chemistry Analytical Edition,American Chemical Society,00964484|15414655 +Industrial & Engineering Chemistry Chemical & Engineering Data Series,American Chemical Society,00959146|15415759 +Industrial & Engineering Chemistry Fundamentals,American Chemical Society,01964313|15414833 +Industrial & Engineering Chemistry Process Design and Development,American Chemical Society,01964305|15415716 +Industrial & Engineering Chemistry Product Research and Development,American Chemical Society,01964321|15414841 +Industrial & Engineering Chemistry Research,American Chemical Society,08885885|15205045 +Industrial and Commercial Training,Emerald (MCB UP ),00197858|00000000 +Industrial and Corporate Change,Oxford University Press,09606491|14643650 +Industrial and Organizational Psychology,Cambridge University Press,17549426|17549434 +Industrial Archaeology Review,Maney Publishing,03090728|00000000 +Industrial Biotechnology,Mary Ann Liebert,15509087|19318421 +Industrial Chemistry,OMICS Publishing Group,24699764 +Industrial Crops and Products,Elsevier ,09266690| +Industrial Engineering & Management,OMICS Publishing Group,21690316 +Industrial Engineering and Management Systems,Korean Institute of Industrial Engineers,15987248| +Industrial Health,National Institute of Industrial Health,00198366|18808026 +Industrial Laboratory,Springer (Kluwer Academic Publishers),00198447| +Industrial Law Journal,Oxford University Press,03059332|14643669 +Industrial Lubrication and Tribology,Emerald (MCB UP ),00368792|00000000 +Industrial Management,Emerald (MCB UP ),00076929| +Industrial Management & Data Systems,Emerald (MCB UP ),02635577|00000000 +Industrial Marketing Management,Elsevier ,00198501| +Industrial Metrology,Elsevier ,09215956| +Industrial Psychiatry Journal,Medknow Publications,09726748| +Industrial Relations A Journal of Economy and Society,Wiley Blackwell (Blackwell Publishing),00198676|1468232X +Industrial Relations Journal,Wiley Blackwell (Blackwell Publishing),00198692|14682338 +Industrial Robot An International Journal,Emerald (MCB UP ),0143991X| +Industrija,Centre for Evaluation in Education and Science,03500373|23348526 +Industry and Higher Education,IP Publishing,09504222| +Industry and Innovation,Informa UK (Taylor & Francis),13662716|14698390 +Infancia y Aprendizaje,Informa UK (Taylor & Francis),02103702|15784126 +Infancias Imágenes,Universidad Distrital Francisco Jose de Caldas,16579089| +Infancy,Wiley Blackwell (Blackwell Publishing),15250008| +Infant and Child Development,Wiley Blackwell (John Wiley & Sons),15227227|15227219 +Infant Behavior and Development,Elsevier ,01636383| +Infant Mental Health Journal,Wiley Blackwell (John Wiley & Sons),01639641|10970355 +Infant Observation,Informa UK (Taylor & Francis),13698036|17458943 +Infants & Young Children,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,08963746| +Infarma - Ciências Farmacêuticas,Conselho Federal de Farmacia,01040219|23189312 +Infectio,Elsevier ,01239392| +Infection,Springer-Verlag,03008126|14390973 +Infection and Chemotherapy,Korean Society of Infectious Diseases and Korean Society for Chemotherapy (KAMJE),15988112|20926448 +Infection and Drug Resistance,Dove Medical Press,11786973 +Infection and Immunity,American Society for Microbiology,00199567|10985522 +Infection Control,Cambridge University Press,01959417|23279451 +Infection Control and Hospital Epidemiology,Cambridge University Press,0899823X|15596834 +Infection Disease & Health,Elsevier ,24680451| +Infection Ecology & Epidemiology,Co-Action Publishing,20008686 +Infection Genetics and Evolution,Elsevier ,15671348| +Infections Journal,Ashdin Publishing,20904975|20904983 +Infectious Agents and Cancer,Springer (Biomed Central Ltd.),17509378|17509378 +Infectious Disease Clinics of North America,Elsevier ,08915520| +Infectious Disease Reports,PAGEPress Publications,20367430|20367449 +Infectious Diseases,Informa UK (Taylor & Francis),23744235|23744243 +Infectious Diseases and Therapy,Springer-Verlag,21938229|21936382 +Infectious Diseases in Clinical Practice,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10569103| +Infectious Diseases in Obstetrics and Gynecology,Hindawi Publishing Corporation,10647449|10980997 +Infectious Diseases Newsletter,Elsevier ,02782316| +Infectious Diseases of Poverty,Springer (Biomed Central Ltd.),20499957|20499957 +Infectious Diseases Research and Treatment,"""Libertas Academica, Ltd.""",11786337 +Infectious Disorders - Drug Targets,Bentham Science,18715265| +Infekcionnye bolezni,Dynasty Publishing House,17299225|24149691 +Infinite Dimensional Analysis Quantum Probability and Related Topics,World Scientific ,02190257|02190257 +Inflammasome,De Gruyter Open Sp. z o.o. ,2300102X +Inflammation,Springer-Verlag,03603997|15732576 +Inflammation & Allergy - Drug Targets,Bentham Science,18715281| +Inflammation and Cell Signaling,"""Smart Science and Technology, LLC""",2330779X|23307803 +Inflammation and Regeneration,The Japanese Society of Inflammation and Regeneration,18809693|18808190 +Inflammation Research,Springer-Verlag,10233830|1420908X +Inflammatory Bowel Diseases,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10780998|15364844 +Inflammatory Intestinal Diseases,S. Karger AG,22969403|22969365 +Inflammopharmacology,Springer-Verlag,09254692|15685608 +Influenza and Other Respiratory Viruses,Wiley Blackwell (Blackwell Publishing),17502640|17502659 +Influenza Research and Treatment,Hindawi Publishing Corporation,20901380|20901399 +Info,Emerald (MCB UP ),14636697|14659840 +Info Diabetologie,Springer-Verlag,18655459|21966362 +InFo Neurologie & Psychiatrie,Springer-Verlag,1437062X|21955166 +Info Onkologie,Springer-Verlag,16133633|21965692 +INFOCOMP Journal of Computer Science,INFOCOMP Journal of Computer Science,18074545|19823363 +InfoKara,CAIRN,10219056| +Infokommunikacionnye tehnologii, Povolzhskiy State University of Telecommunications and Informatics,20733909| +INFOR Information Systems and Operational Research,University of Toronto Press Inc,03155986|19160615 +Informação & Informação,Universidade Estadual de Londrina,14142139|19818920 +Informação Arquivística,Informacao Arquivistica,23167300 +Informação Profissões,Universidade Estadual de Londrina,23174390 +Informacijos mokslai,Vilnius University,13920561|13920561 +Informacion Tecnica Economica Agraria,Asociacion Interprofesional Desarrollo Agrario AIDA,16996887| +Información tecnológica,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7180764 +Informační Bulletin České statistické společnosti,CSTUG,12108022|18048617 +Informatica,IOS Press,08684952| +Informatica Economica,ECO-INFOSOC Research Center,14531305|18428088 +Informatics,MDPI AG,22279709 +Informatics and Applications,Federal Investigation Centre for Information and Control,19922264| +Informatics Control Measurement in Economy and Environment Protection,Index Copernicus International,20830157|23916761 +Informatics Engineering an International Journal,Academy and Industry Research Collaboration Center,23492198 +Informatics for Health and Social Care,Informa UK (Taylor & Francis),17538157|17538165 +Informatics in Education,Vilnius University,16485831| +Informatics in Primary Care,BCS Learning and Development,14760320|14759985 +Informatik - Forschung und Entwicklung,Springer-Verlag,01783564|09492925 +Informatik and Recht,Recht Feur Deutschland GmbH,01790463| +Informatik Forschung und Entwicklung,Springer-Verlag,01783564|09492925 +Informatik-Spektrum,Springer-Verlag,01706012|1432122X +Information,MDPI AG,20782489 +Information & Communications Technology Law,Informa UK (Taylor & Francis),13600834|14698404 +Information & Culture,University of Texas Press,21648034|15347591 +Information & Culture A Journal of History,Muse - Johns Hopkins University Press,21663033 +Information & Management,Elsevier ,03787206| +Information & Security An International Journal,"""Procon, Ltd.""",08615160|13142119 +InFormation - Nordic Journal of Art and Research,Oslo and Akershus University College of Applied Sciences,18932479 +Information - Wissenschaft & Praxis,Walter de Gruyter GmbH,14344653|16194292 +Information and Computation,Elsevier ,08905401|10902651 +Information and Computer Security,Emerald (MCB UP ),20564961| +Information and Control,Elsevier ,00199958| +Information and Inference,Oxford University Press,20498764|20498772 +Information and Organization,Elsevier ,14717727| +Information and Software Technology,Elsevier ,09505849| +Information Communication & Society,Informa UK (Taylor & Francis),1369118X|14684462 +Information Design Journal,John Benjamins Publishing Company,01425471|1569979X +Information Development,SAGE Publications,02666669|00000000 +Information Economics and Policy,Elsevier ,01676245| +Information Engineering,"""Science and Engineering Publishing, Co.""",23265868| +Information Engineering Letters,Information Engineering Research Institute,21634114|21634122 +Information Fusion,Elsevier ,15662535| +Information Management & Computer Security,Emerald (MCB UP ),09685227| +Information Manager (The),African Journals Online ,15965422 +Information Polity,IOS Press,15701255|18758754 +Information Processing & Management,Elsevier ,03064573| +Information Processing in Agriculture,Elsevier ,22143173| +Information Processing Letters,Elsevier ,00200190| +Information Professional,Institution of Electrical Engineers,1743694X| +Information Resources Management Journal,IGI Global,10401628|15337979 +Information Retrieval,Springer-Verlag,13864564|15737659 +Information Science and Technology,Bioinfo Publications,0976917X|09769188 +Information Sciences,Elsevier ,00200255| +Information Sciences - Applications,Elsevier ,10690115| +Information Sciences Letters,Natural Sciences Publishing,20909551|2090956X +Information Security Journal A Global Perspective,Informa UK (Taylor & Francis),19393555|19393547 +Information Security Technical Report,Elsevier ,13634127| +Information Services & Use,IOS Press,01675265|18758789 +Information Standards Quarterly,National Information Standards Organization,10410031|10410031 +Information Storage and Retrieval,Elsevier ,00200271| +Information Studies,Diva Enterprises Private Limited,09716726|09761934 +Information Systems,Elsevier ,03064379| +Information Systems and e-Business Management,Springer-Verlag,16179846|16179854 +Information Systems Frontiers,Springer-Verlag,13873326|15729419 +Information Systems Journal,Wiley Blackwell (Blackwell Publishing),13501917|13652575 +Information Systems Management,Informa UK (Taylor & Francis),10580530|19348703 +Information Systems Research,Institute for Operations Research and the Management Sciences,10477047|15265536 +Information Systems Security,Informa UK (Taylor & Francis),1065898X|1934869X +Information Technologies and Control,De Gruyter Open Sp. z o.o. ,13122622 +Information Technologies and International Development,MIT Press,15447529|15447537 +Information Technologies in Education,Information Technologies in Education,19986939|23061707 +Information Technologist (The),African Journals Online ,15974316 +Information Technology & Tourism,Springer-Verlag,10983058|19434294 +Information Technology And Control,Publishing House Technologija,1392124X|2335884X +Information Technology and Libraries,Boston College University Libraries,07309295|21635226 +Information Technology and Management,Springer-Verlag,1385951X|15737667 +Information Technology and Management Science,De Gruyter Open Sp. z o.o. ,22559086|22559094 +Information Technology and People,Emerald (MCB UP ),09593845|00000000 +INFORMATION TECHNOLOGY EDUCATION,The Higher Education Electronic & Audio-Video Press,16717384| +Information Technology Education and Society,James Nicholas Publishers,1037616X| +Information Technology for Development,IOS Press,02681102|15540170 +Information Technology in Hospitality,Cognizant Communication Corp,15459535| +Information Technology Journal,King Mongkut's University of Technology North Bangkok,16858573| +Information Technology Journal,Science Alert,18125638|18125646 +Information Visualization,SAGE Publications,14738716|14738724 +Informationen aus Orthodontie & Kieferorthopädie,Thieme Publishing Group,00200336|14394200 +Informationsbrief Ausländerrecht,Walter de Gruyter GmbH,01742108|2366195X +Informatsionno-upravliaiushchie sistemy (Information and Control Systems),Central Collector of Libraries BIBCOM,16848853|16848853 +Informatyka Ekonomiczna,Wroclaw University of Economics,15073858|15073858 +Informe Epidemiológico do Sus,Instituto Evandro Chagas,01041673| +Informes de Evaluación de Medicamentos,CADIME Centro Andaluz de Informacion de Medicamentos,22554491 +Informes de la Construcción,Departmento de Publicaciones del CSIC,00200883|19883234 +Informes del Observatorio / Observatorio Reports,Instituto Cervantes at Harvard University,2372840X|2373874X +Informes Psicológicos,Universidad Pontificia Bolivariana,21453535|24223271 +INFORMS Journal on Computing,Institute for Operations Research and the Management Sciences,08991499|15265528 +INFORMS Transactions on Education,Institute for Operations Research and the Management Sciences,15320545|15320545 +Infosecurity,Elsevier ,17544548| +Infosecurity Today,Elsevier ,17426847| +InfraMatics,"""Scientific Research Publishing, Inc.""",2169270X|21692696 +Infrared and Laser Engineering,Shanghai Institute of Optics and Fine Mechanics,10072276| +Infrared Physics,Elsevier ,00200891| +Infrared Physics & Technology,Elsevier ,13504495| +Infrastructure Asset Management,Thomas Telford Ltd.,20530242|20530250 +Infrastructure Complexity,Springer (Biomed Central Ltd.),21963258|21963258 +INFRASTRUCTURE PLANNING REVIEW,Japan Society of Civil Engineers,09134034|18848303 +Infrastructures,MDPI AG,24123811 +Inge CUC,Corporacion Universidad de la Costa - CUC,01226517|23824700 +Ingeniare Revista chilena de ingeniería,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7183305 +Ingeniería,Universidad Distrital Francisco Jose de Caldas,0121750X|23448393 +Ingeniería Agrícola y Biosistemas,Universidad Autonoma Chapingo,20074026|20074026 +Ingeniería del agua,Universitat Politecnica de Valencia,11342196|18864996 +Ingeniería e Investigación,Universidad Nacional de Colombia,01205609|22488723 +Ingeniería Investigación y Desarrollo,Universidad Pedagogica y Tecnologica de Colombia,1900771X|24224324 +Ingeniería Investigación y Tecnología,Elsevier ,14057743| +Ingeniería solidaria,Universidad Cooperativa de Colombia - UCC,19003102| +Ingeniería y Ciencia,Universidad EAFIT,17949165|22564314 +Ingeniería y Desarrollo,Universidad del Norte,01223461|21459371 +Ingenieria y Universidad,Editorial Pontificia Universidad Javeriana,01232126|20112769 +Ingénierie des systèmes d information,Lavoisier SAS,16331311| +Ingenieur-Archiv,Springer-Verlag,00201154| +Ingenium Revista Electrónica de Pensamiento Moderno y Metodología en Historia de la Ideas,Universidad Complutense de Madrid,19893663 +Ingenius,Salesian Polytechnic University of Ecuador,1390650X|1390860X +Inhalation Toxicology,Informa UK (Taylor & Francis),08958378|10917691 +Injury,Elsevier ,00201383|00201383 +Injury Control and Safety Promotion,Informa UK (Taylor & Francis),15660974| +Injury Epidemiology,Springer (Biomed Central Ltd.),21971714|21971714 +Injury Extra,Elsevier ,15723461| +Injury Prevention,BMJ,13538047|14755785 +Inkanyiso Journal of Humanities and Social Sciences,African Journals Online ,20772815 +Inland Water Biology,Springer-Verlag,19950829|19950837 +Inland Waters,Freshwater Biological Association,20442041|2044205X +Inmunología,Elsevier ,02139626| +Innate Immunity,SAGE Publications,17534259|17534267 +Inner Asia,Brill Academic Publishers,14648172|22105018 +Innere Medizin up2date,Thieme Publishing Group,21960836|21960844 +Innoeduca International Journal of Technology and Educational Innovation,"""Research Group Innoeduca, University of Malaga""",24442925 +Innotrans,Ural State University of Railway Transport (USURT),2311164X|2311164X +Innovaciencia Facultad de Ciencias Exactas Físicas y Naturales,Universidad de Santander - UDES,2346075X +Innováció Kelet-Közép-Európában,Kozgazdasagi Szemle,00234346| +Innovación educativa,University of Santiago de Compostela,11308656|23400056 +InnovAiT Education and inspiration for general practice,SAGE Publications,17557380|17557399 +Innovare Revista de ciencia y tecnología,Latin America Journals Online,2310290X| +Innovation,African Journals Online ,10258892 +Innovation and Development,Informa UK (Taylor & Francis),2157930X|21579318 +Innovation and Entrepreneurship in Health,Dove Medical Press,23245905 +Innovation and Supply Chain Management,Japan Management Training Center,21870969|21878684 +Innovation in Language Learning and Teaching,Informa UK (Taylor & Francis),17501229|17501237 +Innovation in Teaching and Learning in Information and Computer Sciences,Informa UK (Taylor & Francis),14737507 +Innovation Management Policy & Practice,Informa UK (Taylor & Francis),14479338| +Innovation Policy and the Economy,The University of Chicago Press,15313468|15372618 +Innovation The European Journal of Social Science Research,Informa UK (Taylor & Francis),13511610|14698412 +Innovations,CAIRN,12674982|19650256 +Innovations in Corrosion and Materials Science (Formerly Recent Patents on Corrosion Science),Bentham Science,23520949| +Innovations in Education and Teaching International,Informa UK (Taylor & Francis),14703297|14703300 +Innovations in Education and Training International,Informa UK (Taylor & Francis),13558005|14698420 +Innovations in Global Health Professions Education,Weil Cornell Medicine-Qatar,24144398 +Innovations in Global Medical and Health Education,Hamad bin Khalifa University Press (HBKU Press),23082526| +Innovations in lifelong learning,"""Science and Education, Ltd.""",22218475| +Innovations in Systems and Software Engineering,Springer-Verlag,16145046|16145054 +Innovations Technology and Techniques in Cardiothoracic and Vascular Surgery,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15569845| +Innovations Technology Governance Globalization,MIT Press,15582477|15582485 +Innovative activity,"""Science and Education, Ltd.""",20715226| +Innovative Energy Policies,OMICS Publishing Group,20904991|20905009 +Innovative Food Science & Emerging Technologies,Elsevier ,14668564| +Innovative Higher Education,Springer-Verlag,07425627|15731758 +Innovative Infrastructure Solutions,Springer-Verlag,23644176|23644184 +Innovative Issues and Approaches in Social Sciences,"""Zalozba Vega, d.o.o.""",18550541 +Innovative Journal of Business and Management,Innovative Journal,22774947 +Innovative Journal of Medical and Health Science,Innovative Journal,22774939|22774939 +Innovative Neurosurgery,Walter de Gruyter GmbH,2193522X|21935238 +Innovative Teaching,SAGE Publications,21652236| +Innovative Verwaltung,Springer-Verlag,09483616|21929068 +İnönü Üniversitesi Eğitim Fakültesi Dergisi,Inonu University Journal of the Faculty of Education,13002899|21499683 +Inorganic and Nuclear Chemistry Letters,Elsevier ,00201650| +Inorganic Chemistry,American Chemical Society,00201669|1520510X +Inorganic Chemistry Communications,Elsevier ,13877003| +Inorganic Chemistry Frontiers,The Royal Society of Chemistry,20521545|20521553 +Inorganic Materials,Pleiades Publishing,00201685|16083172 +Inorganic Materials Applied Research,Pleiades Publishing,20751133|2075115X +Inorganic Reaction Mechanisms,Informa UK (Taylor & Francis),10286624| +Inorganica Chimica Acta,Elsevier ,00201693|00201693 +Inorganica Chimica Acta Reviews,Elsevier ,00738085| +Inorganics,MDPI AG,23046740 +Inova Saúde,Fundacao Educacional de Criciuma- FUCRI,23172460 +Inovacije u nastavi,Centre for Evaluation in Education and Science,03522334| +InPharma,Springer-Verlag,01562703| +Inpharma Weekly,Springer-Verlag,11738324|22306056 +Input-Output Analysis,Pan Pacific Association of Input-Output Studies,13419803|21873208 +Inquiry,Informa UK (Taylor & Francis),0020174X|0020174X +Inquiry Critical Thinking Across the Disciplines,Philosophy Documentation Center,10931082| +INQUIRY The Journal of Health Care Organization Provision and Financing,SAGE Publications,00469580| +INROADS- An International Journal of Jaipur National University,Diva Enterprises Private Limited,22774904|22774912 +İnsan & Toplum Dergisi (The Journal of Human & Society),Ilmi Etudler Dernegi - ILEM,21467099| +İnsan ve Toplum Bilimleri Araştırmaları Dergisi,Journal of the Human and Social Services Researchers,21471185|21471185 +Insaniyat / إنسانيات,OpenEdition,11112050| +Insaniyat / إنسانيات,OpenEdition,11112050|23351578 +Inscape,Informa UK (Taylor & Francis),02647141| +Insciences Journal,Insciences Organization,1664171X +Insect Biochemistry,Elsevier ,00201790| +Insect Biochemistry and Molecular Biology,Elsevier ,09651748| +Insect Conservation and Diversity,Wiley Blackwell (Blackwell Publishing),1752458X|17524598 +Insect Molecular Biology,Wiley Blackwell (Blackwell Publishing),09621075|13652583 +Insect Science,Wiley Blackwell (Blackwell Publishing),16729609|17447917 +Insect Systematics & Evolution,Brill Academic Publishers,1399560X|1876312X +Insectes Sociaux,Springer-Verlag,00201812|14209098 +Insects,MDPI AG,20754450 +Insecutor inscitiae menstruus,Smithsonian Institution Biodiversity Heritage Library,10591559| +Inside the Cell,Wiley Blackwell (John Wiley & Sons),23752920| +Insight,Wiley Blackwell (John Wiley & Sons),2156485X| +Insight - Non-Destructive Testing and Condition Monitoring,British Institute of Non-Destructive Testing,13542575|17544904 +Insight - the Journal of the American Society of Ophthalmic Registered Nurses,Elsevier - Mosby,1060135X| +Insight Bacteriology,Insight Knowledge,20448961| +Insight Biochemistry,Insight Knowledge,20410409| +Insight Bioinformatics,Insight Knowledge,20423233| +Insight Biomedical Science,Insight Knowledge,20407033| +Insight Biotechnology,Insight Knowledge,20408331| +Insight Botany,Insight Knowledge,20448767| +Insight Cancer Research,Insight Knowledge,20406738| +Insight Ecology,Insight Knowledge,20448783| +Insight Endocrinology and Metabolism,Insight Knowledge,20448805| +Insight Genetics,Insight Knowledge,20448686| +Insight Immunology,Insight Knowledge,20408358| +Insight Infectious Diseases,Insight Knowledge,20448848| +Insight Microbiology,Insight Knowledge,20410387| +Insight Nanotechnology,Insight Knowledge,20408447| +Insight on Africa,SAGE Publications,09750878|09763465 +Insight Pathology,Insight Knowledge,20441061| +Insight Pharmaceutical Sciences,Insight Knowledge,2040705X| +Insight Stem Cell Research,Insight Knowledge,20407076| +Insight Veterinary Research,Insight Knowledge,20448929| +Insights into Imaging,Springer-Verlag,18694101 +Insights the UKSG journal,UKSG,20487754 +Insistance,CAIRN,17787807|19516258 +Institute for Humanities and Social Sciences,Institute for Humanities and Social Sciences,20938780| +Institute for Humanities and Social Sciences,Institute for Humanities and Social Sciences,20938780| +Institute of Development Studies Bulletin,Wiley Blackwell (Blackwell Publishing),00202835| +Institute of History and Culture Hankuk University of Foreign Studies,Institute of History and Culture Hankuk University of Foreign Studies,15986454| +Institute of Muslim Minority Affairs Journal,Informa UK (Taylor & Francis),02666952| +Institution of Electrical Engineers - Proceedings of the Wireless Section of the Institution,Institution of Electrical Engineers,20540655 +Institutionalised Children Explorations and Beyond,Diva Enterprises Private Limited,23493003|23493011 +Instituto Florestal Série Registros,Editora Cubo Multimidia,21792372 +Instructional Science,Springer-Verlag,00204277|15731952 +Instrumentation and Equipments,Hans Publishers,23326980|23327006 +Instrumentation Mesure Métrologie,Lavoisier SAS,16314670| +Instrumentation Science & Technology,Informa UK (Taylor & Francis),10739149|15256030 +Instruments and Experimental Techniques,Pleiades Publishing,00204412|16083180 +INSULA Revista de Botânica,Universidade Federal de Santa Catarina,01019554|21784574 +Insulin,Elsevier ,15570843| +Insurance Mathematics and Economics,Elsevier ,01676687| +Int Journal of Chemistry,Recent Science Publications,20512732 +Int Journal of Heritage in the Digital Era,SAGE Publications,20474970| +INTAMS review,Peeters Publishers,13706020 +Intangible Capital,Omnia Publisher SL,16979818|16979818 +Integers,Walter de Gruyter GmbH,18670652|18670660 +Integral Equations and Operator Theory,Springer-Verlag,0378620X|14208989 +Integral Transforms and Special Functions,Informa UK (Taylor & Francis),10652469|14768291 +Integrated Assessment,Informa UK (Swets & Zeitlinger Publishers),13895176| +Integrated Blood Pressure Control,Dove Medical Press,11787104 +Integrated Computer-Aided Engineering,IOS Press,10692509|18758835 +Integrated Environmental Assessment and Management,Wiley Blackwell (John Wiley & Sons),15513777|15513793 +Integrated Ferroelectrics,Informa UK (Taylor & Francis),10584587|16078489 +Integrated Manufacturing Systems,Emerald (MCB UP ),09576061|00000000 +Integrated Pest Management Reviews,Springer-Verlag,13535226|15729745 +Integrated Pharmacy Research and Practice,Dove Medical Press,22305254 +Integrating Materials and Manufacturing Innovation,Springer (Biomed Central Ltd.),21939772|21939772 +Integration of Education,Ogarev Mordovia State University,19919468|23081058 +Integration the VLSI Journal,Elsevier ,01679260| +Integrative and Comparative Biology,Oxford University Press,15407063|15577023 +Integrative Biology,The Royal Society of Chemistry,17579694|17579708 +Integrative Biology Issues News and Reviews,Wiley Blackwell (John Wiley & Sons),10934391|15206602 +Integrative Biosciences,Informa UK (Taylor & Francis),17386357| +Integrative Cancer Science and Therapeutics,Open Access Text,20564546 +Integrative Cancer Therapies,SAGE Publications,15347354|00000000 +Integrative Food Nutrition and Metabolism,Open Access Text,20568339 +Integrative Medicine,Elsevier ,10962190| +Integrative Medicine Insights,"""Libertas Academica, Ltd.""",11773936 +Integrative Medicine International,S. Karger AG,22967389|22967362 +Integrative Medicine Research,Elsevier ,22134220| +Integrative Molecular Medicine,Open Access Text,20566360 +Integrative Obesity and Diabetes,Open Access Text,20568827 +Integrative Pharmacology Toxicology and Genotoxicology,Open Access Text,20588496 +Integrative Psychological and Behavioral Science,Springer-Verlag,19324502|19363567 +Integrative Zoology,Wiley Blackwell (Blackwell Publishing),17494868|17494877 +Integrative Zoology,Wiley Blackwell (Blackwell Publishing),17494869| +Integritas Advancing the Mission of Catholic Higher Education,Boston College University Libraries,2330538X|23305398 +Intel Technology Journal,Intel Corp,1535864X|1535864X +INTELIGENCIA ARTIFICIAL,Asociacion Espanola para la Inteligencia Artificial,11373601|19883064 +Inteligencia y Seguridad,Plaza y Valdes,1887293X|21737495 +Intellectual and Developmental Disabilities,American Association on Intellectual and Developmental Disabilities,19349556|19349556 +Intellectual Economics,Elsevier ,18228011|18228038 +Intellectual History of the Islamicate World,Brill Academic Publishers,22129421|2212943X +Intellectual History Review,Informa UK (Taylor & Francis),17496977|17496985 +Intellectual News,Informa UK (Taylor & Francis),15615324| +Intellectual Property Rights Open Access,OMICS Publishing Group,23754516 +Intellèctus,Universidade do Estado do Rio de Janeiro UERJ,16767640 +Intelligence,Elsevier ,01602896| +Intelligence & National Security,Informa UK (Taylor & Francis),02684527|17439019 +INTELLIGENCE MANAGEMENT,The Japan Society of Competitive Intelligence,21866252| +Intelligent Automation & Soft Computing,Informa UK (Taylor & Francis),10798587|2326005X +Intelligent Buildings International,Informa UK (Taylor & Francis),17508975|17566932 +Intelligent Control and Automation,"""Scientific Research Publishing, Inc.""",21530653|21530661 +Intelligent Data Analysis,IOS Press,1088467X|15714128 +Intelligent Decision Technologies,IOS Press,18724981|18758843 +Intelligent Industrial Systems,Springer-Verlag,23636912|2199854X +Intelligent Information Management,"""Scientific Research Publishing, Inc.""",21605912|21605920 +Intelligent Information Management,"""Scientific Research Publishing, Inc.""",21508194|21508208 +Intelligent Service Robotics,Springer-Verlag,18612776|18612784 +Intelligent Systems Engineering,Institution of Electrical Engineers,09639640| +Intelligent Systems in Accounting Finance & Management,Wiley Blackwell (John Wiley & Sons),1055615X|10991174 +Intelligent Tutoring Media,Informa UK (Taylor & Francis),09579133| +Intelligenza Artificiale,IOS Press,17248035|22110097 +Intelligere,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,24479020 +intensiv,Thieme Publishing Group,09426035|14393840 +Intensiv und Notfallbehandlung,Dustri-Verlag Dr. Karl Feistle,09475362| +Intensive and Critical Care Nursing,Elsevier ,09643397| +Intensive Care Medicine,Springer-Verlag,03424642|14321238 +Intensive Care Medicine Experimental,Springer (Biomed Central Ltd.),2197425X|2197425X +Intensive Care Nursing,Elsevier ,0266612X| +Intensivmedizin + Notfallmedizin,Springer-Verlag,01753851|14351420 +Intensivmedizin und Notfallmedizin,Springer-Verlag,01753851|14351420 +Intensivmedizin up2date,Thieme Publishing Group,16144856|16146697 +Inter-Asia Cultural Studies,Informa UK (Taylor & Francis),14649373|14698447 +Interação em Psicologia (Qualis/CAPES A2),Universidade Federal do Parana,19818076 +Interações (Campo Grande),SciELO,15187012|15187012 +Interações (Campo Grande),SciELO,15187012|15187012 +Interações - cultura e comunidade,Pontificia Universidade Catolica de Minas Gerais,18098479|19832478 +Interacting with Computers,Oxford University Press,09535438|18737951 +Interaction and multiscale mechanics,Techno-Press,19760426| +Interaction Studies,John Benjamins Publishing Company,15720373|15720381 +interactions,Association for Computing Machinery,10725520| +Interactions Studies in Communication & Culture,Intellect,17572681|1757269X +Interactive Cardiovascular and Thoracic Surgery,Oxford University Press,15699293|15699285 +Interactive Journal of Medical Research,JMIR Publications Inc.,1929073X +Interactive Learning Environments,Informa UK (Taylor & Francis),10494820|17445191 +Interactive Marketing,Nature Publishing Group - Macmillan Publishers,14635178|14780844 +Interactive Medicinal Chemistry,Herbert Publications,20537107 +Interactive Surgery,Springer-Verlag,17783739|17783968 +Interactive Technology and Smart Education,Emerald (MCB UP ),17415659| +Interagir pensando a extensão,Universidade do Estado do Rio de Janeiro UERJ,15198847|22364447 +INTERAZIONI,Franco Angeli,17210143|22394389 +Interbloc,Elsevier ,02423960| +Interbranch information service scientific-methodical journal,"""Science and Education, Ltd.""",02364972| +Interchange,Springer-Verlag,08264805|15731790 +Intercom Revista Brasileira de Ciências da Comunicação,SciELO,18095844|19803508 +Intercultural Education,Informa UK (Taylor & Francis),14675986|14698439 +Intercultural Pragmatics,Walter de Gruyter GmbH,1612295X|1613365X +Interdisciplinaria Revista de Psicología y Ciencias Afines,Centro Interdisciplinario de Investigaciones en Psicologia Matematic,03258203|16687027 +Interdisciplinary Bio Central,Korean Society for Bioinformatics and Systems Biology,20058543|20058543 +Interdisciplinary Description of Complex Systems,Croatian Interdisciplinary Society,13344684|13344676 +Interdisciplinary Environmental Review,Inderscience Enterprises Ltd.,15210227|20426992 +Interdisciplinary Information Sciences,"""Graduate School of Information Sciences, Tohoku University""",13409050|13476157 +Interdisciplinary Journal for Religion and Transformation in Contemporary Society – J-RaT,"""Vandenhoeck & Ruprecht GmbH & Co, KG - V&R Unipress""",23653140|23642807 +Interdisciplinary Journal of Microinflammation,OMICS Publishing Group,23818727 +Interdisciplinary Journal of Problem-based Learning,Purdue University (bepress),15415015 +Interdisciplinary Literary Studies,The Pennsylvania State University Press,15248429|2161427X +Interdisciplinary Neurosurgery,Elsevier ,22147519| +Interdisciplinary Peace Research,Informa UK (Taylor & Francis),10323856| +Interdisciplinary Perspectives on Infectious Diseases,Hindawi Publishing Corporation,1687708X|16877098 +Interdisciplinary Science Reviews,Maney Publishing,03080188|00000000 +Interdisciplinary Sciences Computational Life Sciences,Springer-Verlag,19132751|18671462 +Interdisciplinary Studies in Literature and Environment,Oxford University Press,10760962|17591090 +Interdisciplinary Studies in Musicology,Adam Mickiewicz University Poznan,17342406| +Interdisciplinary Toxicology,De Gruyter Open Sp. z o.o. ,13376853|13379569 +Interdyscyplinarne Konteksty Pedagogiki Specjalnej,Adam Mickiewicz University Poznan,2300391X| +Intereconomics,Springer-Verlag,00205346|1613964X +InterEspaço Revista de Geografia e Interdisciplinaridade,InterEspaco: Revista de Geografia e Interdisciplinaridade,24466549 +Interest Groups & Advocacy,Nature Publishing Group - Macmillan Publishers,20477414|20477422 +Interface,Informa UK (Taylor & Francis),03033902| +Interface - Comunicação Saúde Educação,SciELO,14143283|14143283 +Interface - Comunicação Saúde Educação,SciELO,18075762|18075762 +Interface A special topics journal,Pacific University Library,23734914 +Interface Focus,The Royal Society,20428898|20428901 +Interface magazine,The Electrochemical Society,10648208|19448783 +Interface Science,Springer-Verlag,09277056|15732746 +Interfaces,Institute for Operations Research and the Management Sciences,00922102|1526551X +Interfaces and Free Boundaries,European Mathematical Society Publishing House,14639963| +Interfaces Científicas - Direito,Universidade Tiradentes,23163321|2316381X +Interfaces Científicas - Educação,Universidade Tiradentes,2316333X|23163828 +Interfaces Científicas - Exatas e Tecnológicas,Universidade Tiradentes,23594934|23594942 +Interfaces Científicas - Humanas e Sociais,Universidade Tiradentes,23163348|23163801 +Interfaces Científicas - Saúde e Ambiente,Universidade Tiradentes,23163313|23163798 +Interfaces in Computing,Elsevier ,02527308| +Interfaces numériques,Lavoisier SAS,22587942| +Interfacial Phenomena and Heat Transfer,Begell House Inc.,21692785| +Interférences,OpenEdition,17775485|17775485 +Interiors Design Architecture and Culture,Informa UK (Taylor & Francis),20419112|20419120 +Interlending & Document Supply,Emerald (MCB UP ),02641615|00000000 +Interlending Review,Emerald (MCB UP ),01402773| +Interlitteraria,University of Tartu Press,14060701|22284729 +Intermédialités Histoire et théorie des arts des lettres et des techniques,Consortium Erudit,17058546|19203136 +Intermetallics,Elsevier ,09669795| +Intermolecular Michael Reaction of Aldehydes with Vinyl Sulfones,Thieme Publishing Group,20400071 +Intermolecular Michael Reaction of Hydroxyacetone Derivatives with Nitroalkenes,Thieme Publishing Group,20400055 +Intermolecular Michael Reaction of Ketones or Aldehydes with Modified Nitroalkenes,Thieme Publishing Group,20400063 +Intermolecular One-Pot Knoevenagel/Michael Reaction of Ketones with α β-Unsaturated Esters,Thieme Publishing Group,20400047 +Intermolecular Reductive Coupling of Alkynes and Imines,Thieme Publishing Group,20100280 +Internal and Emergency Medicine,Springer-Verlag,18280447|19709366 +Internal Medicine,Japanese Society of Internal Medicine,09182918|13497235 +Internal Medicine Inside,Herbert Publications,20526954 +Internal Medicine Journal,Wiley Blackwell (Blackwell Publishing),14440903|14455994 +Internal Medicine News,Elsevier ,10978690| +Internal Medicine Open Access,OMICS Publishing Group,21658048 +Internal Security,Index Copernicus International,20805268| +Internasjonal Politikk,Co-Action Publishing Cappelen Damms,18911757 +International Abstracts in Operations Research,Nature Publishing Group - Macmillan Publishers,0020580X| +International Academy of Global Business and Trade,International Academy of Global Business and Trade,19465130| +International Advances in Economic Research,Springer-Verlag,10830898|1573966X +International Affairs,Wiley Blackwell (Blackwell Publishing),00205850|14682346 +International Affairs (Royal Institute of International Affairs 1931-1939),JSTOR,14738104| +International Affairs Forum,Informa UK (Taylor & Francis),23258020|23258047 +International Affairs Review Supplement,JSTOR,14738112| +International African Bibliography (IAB),Walter de Gruyter GmbH,00205877|18659640 +International Agrophysics,De Gruyter Open Sp. z o.o. ,02368722|02368722 +International and Comparative Law Quarterly,Cambridge University Press,00205893|14716895 +International and Multidisciplinary Journal of Social Sciences,Hipatia Press,20143680 +International Anesthesiology Clinics,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,00205907| +International Applied Mechanics,Springer-Verlag,10637095|15738582 +International Aquatic Research,Springer-Verlag,20086970|20086970 +International Archives of Allergy and Immunology,S. Karger AG,10182438|14230097 +International Archives of Medicine,Internet Medical Publishing,17557682|17557682 +International Archives of Occupational and Environmental Health,Springer-Verlag,03400131|14321246 +International Archives of Otorhinolaryngology,Thieme Publishing Group,18099777|18094864 +International Area Studies Review,SAGE Publications,22338659| +International Association for Buddhist Thought and Culture,International Association for Buddhist Thought and Culture,15987914| +International Association of Scientific Hydrology Bulletin,Informa UK (Taylor & Francis),00206024| +International Audiology,Informa UK (Taylor & Francis),05384915| +International Bibliography of Military History,Brill Academic Publishers,03787869|22115757 +International Biodeterioration,Elsevier ,02653036| +International Biodeterioration & Biodegradation,Elsevier ,09648305| +International Biomechanics,Informa UK (Taylor & Francis),23335432 +International Blood Research & Reviews,Sciencedomain International,23217219 +International braz j urol,SciELO,16775538|16775538 +International Breastfeeding Journal,Springer (Biomed Central Ltd.),17464358|17464358 +International Bulletin of Mission Research,SAGE Publications,23969393|23969407 +International Business & Economics Research Journal (IBER),Clute Institute,15350754|21579393 +International Business Education Review,The Korea Academy of International Business Education,17384745| +International Business Journal,The Korean Academy of International Business,15982718| +International Business Management,Science Alert,19935250| +International Business Research,Canadian Center of Science and Education,19139004|19139012 +International Business Review,Elsevier ,09695931| +International Cancer Conference Journal,Springer-Verlag,21923183 +International Cardiovascular Forum Journal,International Cardiovascular Forum Journal,24102636|24093424 +International Cardiovascular Research Journal,Kowsar Medical Institute,1735885X|17358868 +International Cardivascular Research Journal,International Neuroscience Institute,22519130|22519149 +International Children s Rights Monitor,Springer (Kluwer Academic Publishers),02593696| +International Clinical Pathology Journal,MedCrave Group,24710016 +International Clinical Psychopharmacology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,02681315| +International Commentary on Evidence,Walter de Gruyter GmbH,21945691|15544567 +International Commerce and Information Review,Korea Association for International Commerce and Information,15987604| +International Commerce Review,Springer-Verlag,18645739|18645747 +International Communication Gazette,SAGE Publications,17480485|17480493 +International Communication of Chinese Culture,Springer-Verlag,21974233|21974241 +International Communications in Heat and Mass Transfer,Elsevier ,07351933| +International Community Law Review,Brill Academic Publishers,18719740|18719732 +International Comparative Jurisprudence,Elsevier ,23516674| +International conference KNOWLEDGE-BASED ORGANIZATION,Walter de Gruyter GmbH,18436722 +International Congress Series,Elsevier ,05315131| +International Contact Lens Clinic,Elsevier ,08928967| +International Contract Adviser,Springer (Kluwer Academic Publishers),08997799| +International Criminal Justice Review,SAGE Publications,10575677|15563855 +International Criminal Law Review,Brill Academic Publishers,1567536X|15718123 +International Critical Thought,Informa UK (Taylor & Francis),21598282|21598312 +International Current Pharmaceutical Journal,Bangladesh Journals Online,22249486 +International Dairy Journal,Elsevier ,09586946| +International Data Privacy Law,Oxford University Press,20443994|20444001 +International Dental Journal,Wiley Blackwell (Blackwell Publishing),00206539| +International Dental Research,International Dental Research,2146216X|21461767 +International Development Planning Review,Liverpool University Press,14746743|14783401 +International Diabetes Nursing,Maney Publishing,20573316|20573324 +International Disability Studies,Informa UK (Taylor & Francis),02599147| +International Economic Journal,Informa UK (Taylor & Francis),10168737|1743517X +International Economic Policy Review,International Monetary Fund,10207856| +International Economic Policy Review (Online),International Monetary Fund,16079574 +International Economic Review,Wiley Blackwell (Blackwell Publishing),00206598|14682354 +International Economics,Elsevier ,21107017| +International Economics and Economic Policy,Springer-Verlag,16124804|16124812 +International Education Research,Science and Education Centre of North America,22915273|22915281 +International Education Studies,Canadian Center of Science and Education,19139020|19139039 +International Electronic Journal of Environmental Education,International Electronic Journal of Environmental Education,21460329 +International Electronic Journal of Pure and Applied Mathematics,Academic Publications,13140744| +International Emergency Nursing,Elsevier ,1755599X| +International Endodontic Journal,Wiley Blackwell (Blackwell Publishing),01432885|13652591 +INTERNATIONAL ENGINEERING JOURNAL - IENGJ,International Engineering Journal,19239734|19239742 +International Entrepreneurship and Management Journal,Springer-Verlag,15547191|15551938 +International Environmental Agreements Politics Law and Economics,Springer-Verlag,15679764|15731553 +International Family Planning Digest,JSTOR,03624056| +International Family Planning Perspectives,Guttmacher Institute,01903187| +International Family Planning Perspectives and Digest,JSTOR,01622749| +International Feminist Journal of Politics,Informa UK (Taylor & Francis),14616742|14684470 +International Finance,Wiley Blackwell (Blackwell Publishing),13670271|14682362 +International Finance and Banking,"""Macrothink Institute, Inc.""",23742089 +International Finance Discussion Paper,Board of Governors of the Federal Reserve System,10732500|10732500 +International Financial Statistics,International Monetary Fund,20798164|20798172 +International Financial Statistics,International Monetary Fund,02523043| +International Financial Statistics,International Monetary Fund,02522977| +International Financial Statistics (Monthly),International Monetary Fund,00206725| +International financial statistics - International Monetary Fund Supplement series,International Monetary Fund,02523027| +International financial statistics yearbook (International Monetary Fund),International Monetary Fund,02507463| +International Food Risk Analysis Journal,InTech,18482368|18482368 +International Forestry Review,Commonwealth Forestry Association,14655489|20537778 +International Forum of Allergy & Rhinology,Wiley Blackwell (John Wiley & Sons),20426976| +International Forum of Psychoanalysis,Informa UK (Taylor & Francis),0803706X|00000000 +International Free and Open Source Software Law Review,International Free and Open Source Software Law Review,18776922|18776922 +International Frontier Science Letters,SciPress Ltd.,23494484 +International Gambling Studies,Informa UK (Taylor & Francis),14459795|14794276 +International Game Theory Review,World Scientific ,02191989|02191989 +International Geology Review,Informa UK (Taylor & Francis),00206814|19382839 +International Geophysics,Elsevier , +International Health,Oxford University Press,18763413|18763405 +International Heart Journal,International Heart Journal Association,13492365|13493299 +International Heat Treatment and Surface Engineering,Informa UK (Taylor & Francis),17495148|17495156 +International Hepatology Communications,Elsevier ,09284346| +International Human Rights Law Review,Brill Academic Publishers,22131027|22131035 +International Immunology,Oxford University Press,09538178|14602377 +International Immunopharmacology,Elsevier ,15675769| +International Indigenous Policy Journal,International Indigenous policy Journal,19165781|19165781 +International Insolvency Review,Wiley Blackwell (John Wiley & Sons),11800518|10991107 +International Institute for Conservation of Historic and Artistic Works,Informa UK (Taylor & Francis),05350867| +International Interactions,Informa UK (Taylor & Francis),03050629|15477444 +International Interdisciplinary Journal of Education,"""Al Manhal FZ, LLC""",22262717|22263500 +International Islamic Marketing Association Journal,"""Al Manhal FZ, LLC""",22255850| +International Journal Advances in Pharmaceutics,Scholar Science Journals,23204931|23204923 +International Journal Canada s Journal of Global Policy Analysis,SAGE Publications,00207020|2052465X +International Journal for Agro Veterinary and Medical Sciences,ScopeMed International Medical Journal Managment and Indexing System,19999666| +International Journal for Biotechnology and Molecular Biology Research,Academic Journals,21412154 +International Journal for Computational Civil and Structural Engineering,Begell House Inc.,15245845| +International Journal for Computational Methods in Engineering Science and Mechanics,Informa UK (Taylor & Francis),15502287|15502295 +International Journal for Consumer and Product Safety,Informa UK (Taylor & Francis),13873059| +International Journal for Court Administration,Uopen Journals,21567964 +International Journal for Crime Justice and Social Democracy,Queensland University of Technology,22027998|22028005 +International Journal for Educational and Vocational Guidance,Springer-Verlag,02512513|15731782 +International Journal for Educational Integrity,Springer-Verlag,18332595 +International Journal for Equity in Health,Springer (Biomed Central Ltd.),14759276|14759276 +International Journal for History Culture and Modernity,Uopen Journals,22149910|2213-0624 +International Journal for Human Caring,International Association for Human Caring,10915710| +International Journal for Ion Mobility Spectrometry,Springer-Verlag,14356163|18654584 +International Journal for Lesson and Learning Studies,Emerald (MCB UP ),20468253| +International Journal for Mathematics Teaching and Learning,Ankara University,14730111 +International Journal for Multiscale Computational Engineering,Begell House Inc.,15431649| +International Journal for Numerical and Analytical Methods in Geomechanics,Wiley Blackwell (John Wiley & Sons),03639061|10969853 +International Journal for Numerical Methods in Biomedical Engineering,Wiley Blackwell (John Wiley & Sons),20407939|20407947 +International Journal for Numerical Methods in Engineering,Wiley Blackwell (John Wiley & Sons),00295981|10970207 +International Journal for Numerical Methods in Fluids,Wiley Blackwell (John Wiley & Sons),02712091|10970363 +International Journal for Parasitology,Elsevier ,00207519| +International Journal for Parasitology Drugs and Drug Resistance,Elsevier ,22113207| +International Journal for Parasitology Parasites and Wildlife,Elsevier ,22132244| +International Journal for Philosophy of Religion,Springer-Verlag,00207047|15728684 +International Journal for Quality in Health Care,Oxford University Press,13534505|14643677 +International Journal for Radiation Physics and Chemistry,Elsevier ,00207055| +International Journal for Research on Extended Education,Barbara Budrich Publishers,21963673|21967423 +International Journal for Researcher Development,Emerald (MCB UP ),1759751X| +International Journal for Sciences and Technology,"""Al Manhal FZ, LLC""",18162509| +International Journal for Simulation and Multidisciplinary Design Optimization,EDP Sciences,1779627X|17796288 +International Journal for the Advancement of Counselling,Springer-Verlag,01650653|15733246 +International Journal for the History of Engineering & Technology,Maney Publishing,17581206|17581214 +International Journal for the Psychology of Religion,Informa UK (Taylor & Francis),10508619|15327582 +International Journal for the Scholarship of Teaching and Learning,Georgia Southern University,19314744 +International Journal for the Semiotics of Law - Revue internationale de Sémiotique juridique,Springer-Verlag,09528059|15728722 +International Journal for the Study of New Religions,Equinox Publishing,20419511|2041952X +International Journal for the Study of Skepticism,Brill Academic Publishers,22105697|22105700 +International Journal for the Study of the Christian Church,Informa UK (Taylor & Francis),1474225X|17470234 +International Journal for Traffic and Transport Engineering,"""City Net Scientific Research Center, Ltd. Belgrade""",2217544X|22175652 +International Journal for Transformative Research,De Gruyter Open Sp. z o.o. ,23535415 +International Journal for Uncertainty Quantification,Begell House Inc.,21525080| +International Journal for Vitamin and Nutrition Research,Hogrefe Publishing Group,03009831|16642821 +international journal high risk behaviors & addiction,Kowsar Medical Institute,22518711|2251872X +International Journal in Foundations of Computer Science & Technology,Academy and Industry Research Collaboration Center,18397662|18397662 +International Journal Middle East Studies,Cambridge University Press,00207438|14716380 +International Journal of 3-D Information Modeling,IGI Global,21561710|21561702 +International Journal of Abrasive Technology,Inderscience Enterprises Ltd.,17522641|1752265X +International Journal of Academic Research,Progress IPS,20754124|20757107 +International Journal of Academic Research in Accounting Finance and Management Sciences,Human Resource Management Academic Research Society,22258329|22258329 +International Journal of Academic Research in Business and Social Sciences,Human Resource Management Academic Research Society,22226990|22226990 +International Journal of Academic Research in Economics and Management Sciences,Human Resource Management Academic Research Society,22263624 +International Journal of Academic Research in Education,International Journal of Academic Research in Education,21492913|21492913 +International Journal of Academic Research in Progressive Education and Development,Human Resource Management Academic Research Society,22266348 +International Journal of Academic Research in Psychology,Human Resource Management Academic Research Society,23121882 +International Journal of Acarology,Informa UK (Taylor & Francis),01647954|19453892 +International Journal of Accounting and Economics Studies,Science Publishing Corporation,23094508 +International Journal of Accounting and Finance,Inderscience Enterprises Ltd.,17528224|17528232 +International Journal of Accounting and Financial Reporting,"""Macrothink Institute, Inc.""",21623082 +International Journal of Accounting and Information Management,Emerald (MCB UP ),18347649| +International Journal of Accounting and Taxation,American Research Institute for Policy Development,23724978|23724986 +International Journal of Accounting Auditing and Performance Evaluation,Inderscience Enterprises Ltd.,17408008|17408016 +International Journal of Accounting Information Systems,Elsevier ,14670895| +International Journal of Accounting Research,"""Al Manhal FZ, LLC""",2311326X| +International Journal of Acoustics and Vibration,International Institute of Acoustics and Vibration (IIAV),10275851| +International Journal of Actor-Network Theory and Technological Innovation,IGI Global,1942535X|19425368 +International Journal of Ad Hoc and Ubiquitous Computing,Inderscience Enterprises Ltd.,17438225|17438233 +International Journal of Ad hoc Sensor & Ubiquitous Computing,Academy and Industry Research Collaboration Center,09761764|09761764 +International Journal of Adaptive and Innovative Systems,Inderscience Enterprises Ltd.,17402107|17402115 +International Journal of Adaptive Control and Signal Processing,Wiley Blackwell (John Wiley & Sons),08906327|10991115 +International Journal of Adaptive Resilient and Autonomic Systems,IGI Global,19479220|19479239 +International Journal of Adhesion and Adhesives,Elsevier ,01437496| +International Journal of Adolescence and Youth,Informa UK (Taylor & Francis),02673843|21644527 +International Journal of Adolescent Medicine and Health,Walter de Gruyter GmbH,03340139|21910278 +International Journal of Adult Vocational Education and Technology,IGI Global,19478607|1947878X +International Journal of Advance Engineering and Research Development,International Journal of Advance Engineering and Research Development (IJAERD),23486406|23484470 +International Journal of Advance in Medical Science,DEStech Publications,23277629 +International Journal of Advance Industrial Engineering,Inpressco,23205539 +International Journal of Advance Innovations Thoughts & Ideas,OMICS Publishing Group,22771891 +International Journal of Advanced Applied Physics Research,Cosmos Scholars Publishing House,2408977X +International Journal of Advanced Astronomy,Science Publishing Corporation,23127414 +International Journal of Advanced Biological and Biomedical Research,CASRP; Center of Advanced Scientific Research and Publications,23832762|23224827 +International Journal of Advanced Chemistry,Science Publishing Corporation,23102977 +International Journal of Advanced Computer Research,"""Association of Computer, Communication and Education for National Triumph Social and Welfare Society (ACCENTS)""",22497277|22777970 +International Journal of Advanced Computer Science and Applications,The Science and Information Organization,2158107X|21565570 +International Journal of Advanced Computing,Recent Science Publications,20510845 +International Journal of Advanced Corporate Learning (iJAC),International Association of Online Engineering,18675565 +International Journal of Advanced Geosciences,Science Publishing Corporation,23117044 +International Journal of Advanced Information Science and Technology,International Journal of Advanced Information Science and Technology,23192682|23192682 +International Journal of Advanced Information Technology,Academy and Industry Research Collaboration Center,22311920|22311548 +International Journal of Advanced Intelligence Paradigms,Inderscience Enterprises Ltd.,17550386|17550394 +International Journal of Advanced Logistics,Informa UK (Taylor & Francis),2287108X|22877592 +International Journal of Advanced Materials Manufacturing and Characterization,Greit Publications,22773886|23471891 +International Journal of Advanced Mathematical Sciences,Science Publishing Corporation,2307454X +International Journal of Advanced Mechatronic Systems,Inderscience Enterprises Ltd.,17568412|17568420 +International Journal of Advanced Media and Communication,Inderscience Enterprises Ltd.,14624613|17418003 +International Journal of Advanced Medical and Health Research,Medknow Publications,23500298| +International Journal of Advanced Medical Research,Medknow Publications,23494220| +International Journal of Advanced Nursing Studies,Science Publishing Corporation,2227488X +International Journal of Advanced Operations Management,Inderscience Enterprises Ltd.,1758938X|17589398 +International Journal of Advanced Pervasive and Ubiquitous Computing,IGI Global,1937965X|19379668 +INTERNATIONAL JOURNAL OF ADVANCED RESEARCH IN ARTIFICIAL INTELLIGENCE,The Science and Information Organization,21654050|21654069 +International Journal of Advanced Research in Chemical Science,ARC Publications Pvt Ltd.,23490403 +International Journal of Advanced Research in Electrical Electronics and Instrumentation Engineering,The Society of Chemical Engineers Japan,00219592|18811299 +International Journal of Advanced Research in Electrical Electronics and Instrumentation Engineering,Ess and Ess Research Publications,23203765|22788875 +International Journal of Advanced Research in Mathematics,SciPress Ltd.,22976213 +International Journal of Advanced Research in Physical Science,"""Science and Education, Ltd.""",23497882| +International Journal of Advanced Robotic Systems,InTech,17298806|17298814 +International Journal of Advanced Science and Technology,Science and Engineering Research Support Society,20054238|20054238 +International journal of advanced smart convergence,"""The Institute of Webcasting, Internet and Telecommunication""",22882847|22882855 +International Journal of Advanced Smart Sensor Network Systems,Academy and Industry Research Collaboration Center,22315225|22314482 +International Journal of Advanced Statistics and Probability,Science Publishing Corporation,23079045 +International Journal of Advanced Structural Engineering (IJASE),Springer-Verlag,20083556|20086695 +International Journal of Advanced Studies,Science and Innovation Center,23281391|2227930X +International Journal of Advanced Technology and Engineering Exploration,"""Association of Computer, Communication and Education for National Triumph Social and Welfare Society (ACCENTS)""",23945443|23947454 +International Journal of Advancements in Computing Technology,AICIT,20058039|22339337 +International Journal of Advancements in Research & Technology,IJOART Publication,22787763 +International Journal of Advancements in Technology,OMICS Publishing Group,9764860 +International Journal of Advances in Agricultural & Environmental Engineering,International Institute of Engineers,23491531 +International Journal of Advances in Applied Sciences,Institute of Advanced Engineering and Science,22528814| +International Journal of Advances in Biology,Academy and Industry Research Collaboration Center,23940808 +International Journal of Advances in Chemical Engineering and Biological Sciences,International Institute of Engineers,23491515 +International Journal of Advances in Computing and Information Technology,Integrated Publishing Association,22779140 +International Journal of Advances in Embedded Systems,Bioinfo Publications,2249703X|22497048 +International Journal of Advances in Engineering & Technology,International Association of Engineering and Technology,22311963 +International Journal of Advances in Engineering Sciences and Applied Mathematics,Springer-Verlag,09750770|09755616 +International Journal of Advances in Life Science and Technology,Pak Publishing Group,24123803|23138335 +International Journal of Advances in Management Science,DEStech Publications,21697558|21697590 +International Journal of Advances in Materials Science and Engineering,Wireilla Scientific Publications,22012311|22012311 +International Journal of Advances in Mechanical & Automobile Engineering,International Institute of Engineers,23491485|23491493 +International Journal of Advances in Medicine,Medip Academy,23493925| +International Journal of Advances in Nursing Management,Diva Enterprises Private Limited,23478632|24542652 +International Journal of Advances in Pharmaceutical Analysis,Scholar Science Journals,22779353 +International Journal of Advances in Pharmaceutical Sciences,Advanced Research Journals,9761055 +International Journal of Advances in Psychology,"""Science and Engineering Publishing, Co.""",21694958| +International Journal of Advances in Scientific Research,Scholar Science Journals,23953616 +International Journal of Advances in Social Sciences,Diva Enterprises Private Limited,23475153|24542679 +International Journal of Advances in Telecommunications Electrotechnics Signals and Systems,International Science and Engineering Society,18055443 +International Journal of Advertising,World Advertising Research Center,02650487|02650487 +International Journal of Advertising and Marketing to Children,Emerald (MCB UP ),14646676| +International Journal of Aeroacoustics,SAGE Publications,1475472X|00000000 +International Journal of Aerodynamics,Inderscience Enterprises Ltd.,17435447|17435455 +International Journal of Aeronautical and Space Sciences,The Korean Society for Aeronautical & Space Sciences,12299626| +International Journal of Aeronautical Science & Aerospace Research,SciDoc Publishers LLC,24704415 +International Journal of Aerospace and Lightweight Structures (IJALS),Research Publishing Services,20104294| +International Journal of Aerospace and Lightweight Structures (IJALS) -,Research Publishing Services,20104286| +International Journal of Aerospace Engineering,Hindawi Publishing Corporation,16875966|16875974 +International Journal of Aerospace Innovations,Multiscience,17572258| +International Journal of Aerospace Sciences,Scientific and Academic Publishing,21698872| +International Journal of Affective Engineering,Japan Society of Kansei Engineering,21875413 +International Journal of Africa Nursing Sciences,Elsevier ,22141391| +International Journal of African Higher Education,Boston College University Libraries,23135069|23135069 +International Journal of African Renaissance Studies - Multi- Inter- and Transdisciplinarity,Informa UK (Taylor & Francis),18186874|17537274 +International Journal of Ageing and Later Life,Linkoping University Electronic Press,16528670|16528670 +International Journal of Agent Technologies and Systems,IGI Global,19430744|19430752 +International Journal of Agent-Oriented Software Engineering,Inderscience Enterprises Ltd.,17461375|17461383 +International Journal of Agile and Extreme Software Development,Inderscience Enterprises Ltd.,17435137|17435145 +International Journal of Agile Management Systems,Emerald (MCB UP ),14654652|00000000 +International Journal of Agile Systems and Management,Inderscience Enterprises Ltd.,17419174|17419182 +International Journal of Agricultural and Environmental Information Systems,IGI Global,19473192|19473206 +International Journal of Agricultural and Veterinary Sciences,International Journal of Agricultural & Veterinary Sciences ,24678708 +INTERNATIONAL JOURNAL OF AGRICULTURAL ENGINEERING,Hind Agri Horticultural Society,09742662|09767223 +International Journal of Agricultural Management,Institute of Agricultural Management,20473710| +International Journal of Agricultural Management and Development,ScopeMed International Medical Journal Managment and Indexing System,21595852| +International Journal of Agricultural Policy and Research,Journal Issues Limited,23501561 +International Journal of Agricultural Research,Science Alert,18164897| +International Journal of Agricultural Research Innovation and Technology,Bangladesh Journals Online,22240616 +International Journal of Agricultural Resources Governance and Ecology,Inderscience Enterprises Ltd.,14624605|14715004 +International Journal of Agricultural Science and Technology,DEStech Publications,23277246|23277645 +INTERNATIONAL JOURNAL OF AGRICULTURAL SCIENCES,Hind Agri Horticultural Society,0973130X|09765670 +International Journal of Agricultural Sustainability,Informa UK (Taylor & Francis),14735903|1747762X +International Journal of Agriculture and Biology,Friends Science Publishers,15608530|18149596 +International Journal of Agriculture and Forestry,Scientific and Academic Publishing,2165882X| +International Journal of Agriculture and Rural Development,African Journals Online ,15959716 +International Journal of Agriculture Environment and Biotechnology,Diva Enterprises Private Limited,09741712|2230732X +International Journal of Agriculture Sciences,Bioinfo Publications,09753710|09759107 +International Journal of Agronomy,Hindawi Publishing Corporation,16878159|16878167 +International Journal of Air-Conditioning and Refrigeration,World Scientific ,20101325|20101333 +International Journal of Algebra,"""Hikari, Ltd.""",13128868|13147595 +International Journal of Algebra and Computation,World Scientific ,02181967|02181967 +International Journal of Algebra and Statistics,Modern Science Publishers,23144548|23144556 +International Journal of Alternative Fuels,Recent Science Publications,20515987 +International Journal of Alternative Propulsion,Inderscience Enterprises Ltd.,14710234|17418011 +International Journal of Alzheimer s Disease,Hindawi Publishing Corporation,20908024|20900252 +International Journal of Alzheimer s Disease,Hindawi Publishing Corporation (Sage-Hindawi Access to Research),20900252 +International Journal of Ambient Computing and Intelligence,IGI Global,19416237|19416245 +International Journal of Ambient Energy,Informa UK (Taylor & Francis),01430750|21628246 +International Journal of American Linguistics,The University of Chicago Press,00207071|15457001 +International Journal of Analysis,Hindawi Publishing Corporation,2314498X|23144998 +International Journal of Analytical Chemistry,Hindawi Publishing Corporation,16878760|16878779 +International Journal of Analytical Mass Spectrometry and Chromatography,"""Scientific Research Publishing, Inc.""",23321768|23321776 +International Journal of Anatomy and Research,I MED Research Publications,23218967|23214287 +International Journal of Anatomy Radiology and Surgery,JCDR Research and Publications,22778543| +International Journal of Andrology,Wiley Blackwell (Blackwell Publishing),01056263|13652605 +International Journal of Anesthesiology & Research,SciDoc Publishers LLC,23322780 +International Journal of Anesthesiology Research,Pharma Publisher,23109394 +International Journal of Angiology,Thieme Publishing Group,10611711|16155939 +International Journal of Animal and Veterinary Advances,Maxwell Scientific Publication Corp.,20412894|20412908 +International Journal of Antennas and Propagation,Hindawi Publishing Corporation,16875869|16875877 +International Journal of Anthropology,Springer-Verlag,03939383|18243096 +International Journal of Antibiotics,Hindawi Publishing Corporation,23566949|23145773 +International Journal of Antimicrobial Agents,Elsevier ,09248579| +International Journal of Apllied Mathematics,Academic Publications,13111728|13148060 +International Journal of Applied Agricultural Sciences,Science Publishing Group,24697877| +International Journal of Applied and Basic Medical Research,Medknow Publications,2229516X| +International Journal of Applied and Computational Mathematics,Springer-Verlag,23495103|21995796 +International Journal of Applied Behavioral Economics,IGI Global,21609802|21609810 +International Journal of Applied Ceramic Technology,Wiley Blackwell (Blackwell Publishing),1546542X|17447402 +International Journal of Applied Chemistry,Seventh Sense Research Group Journals,23939133 +International Journal of Applied Control Electrical and Electronics Engineering,Academy and Industry Research Collaboration Center,23940816 +International Journal of Applied Cryptography,Inderscience Enterprises Ltd.,17530563|17530571 +International Journal of Applied Decision Sciences,Inderscience Enterprises Ltd.,17558077|17558085 +International Journal of Applied Earth Observation and Geoinformation,Elsevier ,03032434| +International Journal of Applied Electromagnetics and Mechanics,IOS Press,13835416|18758800 +International Journal of Applied Electronics in Physics & Robotics,Australian International Academic Centre,22030069 +International Journal of Applied Evolutionary Computation,IGI Global,19423594|19423608 +International Journal of Applied Geospatial Research,IGI Global,19479654|19479662 +International Journal of Applied Glass Science,Wiley Blackwell (Blackwell Publishing),20411286|20411294 +International Journal of Applied Industrial Engineering,IGI Global,21554153|21554161 +International Journal of Applied Information Systems,Foundation of Computer Science,2249085X +International Journal of Applied Linguistics,Wiley Blackwell (Blackwell Publishing),08026106|14734192 +International Journal of Applied Linguistics & English Literature,Australian International Academic Centre,22003592|22003452 +International Journal of Applied Logistics,IGI Global,19479573|19479581 +International Journal of Applied Management Science,Inderscience Enterprises Ltd.,17558913|17558921 +International Journal of Applied Management Sciences and Engineering,IGI Global,23277483|23277491 +International Journal of Applied Mathematical Research,Science Publishing Corporation,22274324 +International Journal of Applied Mathematics and Computer Science,De Gruyter Open Sp. z o.o. ,1641876X|20838492 +International Journal of Applied Mathematics and Machine Learning,Scientific Advances Publishers,23942258 +International Journal of Applied Mathematics Electronics and Computers,"""International Journal of Applied Mathematics, Electronics and Computers""",21478228 +International Journal of Applied Mechanics,World Scientific ,17588251|1758826X +International Journal of Applied Mechanics and Engineering,De Gruyter Open Sp. z o.o. ,17344492|17344492 +International Journal of Applied Metaheuristic Computing,IGI Global,19478283|19478291 +International Journal of Applied Nonlinear Science,Inderscience Enterprises Ltd.,17522862|17522870 +International Journal of Applied Pattern Recognition,Inderscience Enterprises Ltd.,2049887X|20498888 +International Journal of Applied Philosophy,Philosophy Documentation Center,0739098X| +International Journal of Applied Physics,Seventh Sense Research Group Journals,23500301 +International Journal of Applied Physics and Mathematics,International Academy Publishing (IAP),2010362X|2010362X +International Journal of Applied Power Engineering (IJAPE),Institute of Advanced Engineering and Science,22528792| +International Journal of Applied Psychoanalytic Studies,Wiley Blackwell (John Wiley & Sons),17423341|15569187 +International Journal of Applied Psychology,Scientific and Academic Publishing,21685010| +International Journal of Applied Quality Management,Elsevier ,10964738| +International Journal Of Applied Research and Studies,IJARS Group,22789480 +International Journal of Applied Research on Information Technology and Computing,Diva Enterprises Private Limited,09758070|09758089 +International Journal of Applied Science and Engineering,Diva Enterprises Private Limited,23210745|23220465 +International Journal of Applied Science and Engineering Research,Integrated Publishing Association,22779442 +International Journal of Applied Sciences and Biotechnology,Nepal Journals Online,20912609 +International Journal of Applied Sociology,Scientific and Academic Publishing,21699704| +International Journal of Applied Systemic Studies,Inderscience Enterprises Ltd.,17510589|17510597 +International Journal of Approximate Reasoning,Elsevier ,0888613X| +International Journal of Aquaculture,"""Sophia Publishing Group, Inc.""",19275773 +International Journal of Aquatic Research and Education,Human Kinetics,19329997| +International Journal of Arab Culture Management and Sustainable Development,Inderscience Enterprises Ltd.,17539412|17539420 +International Journal of Archaeology,Science Publishing Group,23307587| +International Journal of Architectural Computing,SAGE Publications,14780771|20483988 +International Journal of Architectural Engineering Technology,Avanti Publishers,24099821 +International Journal of Architectural Heritage,Informa UK (Taylor & Francis),15583058|15583066 +International Journal of Architecture Engineering and Construction,International Association fo Sustainable Development and Management,1911110X|19111118 +International Journal of Area Studies,De Gruyter Open Sp. z o.o. ,23450223|20292074 +International Journal of Aromatherapy,Elsevier ,09624562| +International Journal of Arrhythmia,Korea Heart Rhythm Society,24660981|24661171 +International Journal of Art & Design Education,Wiley Blackwell (Blackwell Publishing),14768062|14768070 +International Journal of Art and Art History,American Research Institute for Policy Development,23742321|2374233X +International Journal of Art Culture and Design Technologies,IGI Global,21554196|2155420X +International Journal of Art Therapy,Informa UK (Taylor & Francis),17454832|17454840 +International Journal of Artificial Intelligence & Applications,Academy and Industry Research Collaboration Center,09762191|0975900X +International Journal of Artificial Intelligence and Applications for Smart Devices,Science and Engineering Research Support Society,22886710|22886710 +International Journal of Artificial Intelligence and Soft Computing,Inderscience Enterprises Ltd.,17554950|17554969 +International Journal of Artificial Intelligence in Education,Springer-Verlag,15604292|15604306 +International Journal of Artificial Intelligence Tools,World Scientific ,02182130| +International Journal of Artificial Life Research,IGI Global,19473087|19473079 +International Journal of Arts,Scientific and Academic Publishing,21684995| +International Journal of Arts and Technology,Inderscience Enterprises Ltd.,17548853|17548861 +International Journal of Asian Business and Information Management,IGI Global,19479638|19479646 +International Journal of Asian Management,Springer-Verlag,16187504|16187512 +International Journal of Asian Social Science,Pak Publishing Group,22265139|22244441 +International Journal of Asian Studies,Cambridge University Press,14795914|14795922 +International Journal of Astrobiology,Cambridge University Press,14735504|15743006 +International Journal of Astronomy,Scientific and Academic Publishing,21698848| +International Journal of Astronomy and Astrophysics,"""Scientific Research Publishing, Inc.""",21614717|21614725 +International Journal of Astrophysics and Space Science,Science Publishing Group,23767014| +International Journal of Athletic Therapy & Training,Human Kinetics,21577277|21577285 +International Journal of Atmospheric Sciences,Hindawi Publishing Corporation,23144122|23144130 +International Journal of Audiology,Informa UK (Taylor & Francis),14992027|17088186 +International Journal of Auditing,Wiley Blackwell (Blackwell Publishing),10906738|10991123 +International Journal of Auditing Technology,Inderscience Enterprises Ltd.,17578752|17578760 +International Journal of Automation and Computing,Springer-Verlag,14768186|17518520 +International Journal of Automation and Control,Inderscience Enterprises Ltd.,17407516|17407524 +International Journal of Automation and Control Engineering,DEStech Publications,23257407|23257415 +International Journal of Automation and Logistics,Inderscience Enterprises Ltd.,20496745|20496753 +International Journal of Automation and Power Engineering,"""Science and Engineering Publishing, Co.""",21615055| +International Journal of Automation and Smart Technology,International Journal of Automation and Smart Technology,22239766 +International Journal of Automotive and Mechanical Engineering,Universiti Malaysia Pahang Publishing,22298649|21801606 +International Journal of Automotive Composites,Inderscience Enterprises Ltd.,20518218|20518226 +International Journal of Automotive Engineering and Technologies,International Journal of Automotive Engineering and Technologies,21469067 +International Journal of Automotive Technology,Springer-Verlag,12299138|19763832 +International Journal of Automotive Technology and Management,Inderscience Enterprises Ltd.,14709511|17415012 +International Journal of Autonomic Computing,Inderscience Enterprises Ltd.,17418569|17418577 +International Journal of Autonomous and Adaptive Communications Systems,Inderscience Enterprises Ltd.,17548632|17548640 +International Journal of Aviation Aeronautics and Aerospace,Embry-Riddle Aeronautical University/Hunt Library,23746793 +International Journal of Aviation Management,Inderscience Enterprises Ltd.,17559901|1755991X +International Journal of Aviation Psychology,Informa UK (Taylor & Francis),10508414|15327108 +International Journal of Aviation Systems Operations and Training,IGI Global,23345306|23345314 +International Journal of Aviation Technology Engineering and Management,IGI Global,21556962|21556970 +International Journal of Ayurveda Research,Medknow Publications,09747788| +International Journal Of Ayurvedic And Herbal Medicine,Research and Analysis Journals,22495746 +International Journal of Bacteriology,Hindawi Publishing Corporation,23566957|2314596X +International Journal of Bahamian Studies,The College of the Bahamas,22205772 +International Journal of Bank Marketing,Emerald (MCB UP ),02652323|00000000 +International Journal of Banking Accounting and Finance,Inderscience Enterprises Ltd.,17553830|17553849 +International Journal of Basic & Clinical Pharmacology,Medip Academy,23192003| +International Journal of Basic and Applied Science,Insan Akademika Publications,23018038|23014458 +International Journal of Basic and Applied Sciences,Science Publishing Corporation,22275053 +International Journal of Behavioral Consultation and Therapy,American Psychological Association,15557855 +International Journal of Behavioral Development,SAGE Publications,01650254|14640651 +International Journal of Behavioral Medicine,Springer-Verlag,10705503|15327558 +International Journal of Behavioral Nutrition and Physical Activity,Springer (Biomed Central Ltd.),14795868|14795868 +International Journal of Behavioral Research & Psychology,SciDoc Publishers LLC,23323000 +International Journal of Behavioural Accounting and Finance,Inderscience Enterprises Ltd.,17531969|17531977 +International Journal of Behavioural and Healthcare Research,Inderscience Enterprises Ltd.,17553539|17553547 +International Journal of Bias Identity and Diversities in Education,IGI Global,23797363|23797355 +International Journal of Bifurcation and Chaos,World Scientific ,02181274|02181274 +International Journal of Big Data Intelligence,Inderscience Enterprises Ltd.,20531389|20531397 +International Journal of Bilingual & Multilingual Teachers of English,Scientific Publishing Center,22101829| +International Journal of Bilingual Education and Bilingualism,Informa UK (Taylor & Francis),13670050|17477522 +International Journal of Bilingualism,SAGE Publications,13670069|17566878 +International Journal of Bio-Inspired Computation,Inderscience Enterprises Ltd.,17580366|17580374 +International Journal of Bio-Medical Computing,Elsevier ,00207101| +International Journal of Bio-resource and Stress Management,Diva Enterprises Private Limited,09763988|09764038 +International Journal of Bio-Science and Bio-Technology,Science and Engineering Research Support Society,22337849|22337849 +International Journal of BioAnalytical Methods & BioEquivalence Studies,SciDoc Publishers LLC,24704490 +International Journal of Biochemistry,Elsevier ,0020711X| +International Journal of Biochemistry Research & Review,Sciencedomain International,2231086X +International Journal of Bioclimatology Biometeorology,Springer-Verlag,03678253| +International Journal of Biodiversity,Hindawi Publishing Corporation,23144149|23144157 +International Journal of Biodiversity and Conservation,Academic Journals,2141243X +International Journal of Biodiversity Science Ecosystems Services & Management,Informa UK (Taylor & Francis),21513732|21513740 +International Journal of Bioinformatics and Biological Science,Diva Enterprises Private Limited,23195169|23217111 +International Journal of Bioinformatics Research,Bioinfo Publications,09753087|09759115 +International Journal of Bioinformatics Research and Applications,Inderscience Enterprises Ltd.,17445485|17445493 +International Journal of Biological and Chemical Sciences,African Journals Online ,19918631|19918631 +International Journal of Biological Chemistry,Science Alert,1819155X| +International Journal of Biological Engineering,Scientific and Academic Publishing,21631875| +International Journal of Biological Macromolecules,Elsevier ,01418130| +International Journal of Biological Research,Science Publishing Corporation,23079029 +International Journal of Biological Sciences,Ivyspring International Publisher,14492288| +International Journal of Biology,Canadian Center of Science and Education,19169671|1916968X +International Journal Of Biology Education,International Journal of Biology Education,21474990 +International Journal of Biomaterials,Hindawi Publishing Corporation,16878787|16878795 +International Journal of Biomaterials Research and Engineering,IGI Global,19473575|19473583 +International Journal of Biomathematics,World Scientific ,17935245|17937159 +International Journal of Biomechatronics and Biomedical Robotics,Inderscience Enterprises Ltd.,17576792|17576806 +International Journal of Biomedical and Advance Research,Scholar Science Journals,22293809 +International Journal of Biomedical and Clinical Engineering,IGI Global,21611610|21611629 +International Journal of Biomedical Data Mining,OMICS Publishing Group,20904916|20904924 +International journal of Biomedical Engineering and Science,Academy and Industry Research Collaboration Center,23940832 +International Journal of Biomedical Engineering and Technology,Inderscience Enterprises Ltd.,17526418|17526426 +International Journal of Biomedical Imaging,Hindawi Publishing Corporation,16874188|16874196 +International Journal of Biomedical Materials Research,Science Publishing Group,23307560| +International Journal of Biomedical Nanoscience and Nanotechnology,Inderscience Enterprises Ltd.,17560799|17560802 +International Journal of Biomedical Research,Scholar Science Journals,24550566|09769633 +International Journal of Biomedical Science and Engineering,Science Publishing Group,23767227| +International Journal of Biomedicine,International Medical Research and Development Corporation,21580510|21580529 +International Journal of Biometeorology,Springer-Verlag,00207128|14321254 +International Journal of Biometrics,Inderscience Enterprises Ltd.,17558301|1755831X +International Journal of Bioorganic Chemistry & Molecular Biology,SciDoc Publishers LLC,23322756 +International Journal of Biophysics,Scientific and Academic Publishing,21684979| +International Journal of Bioprinting,Whioce Publishing Pte Ltd.,24247723|24248002 +International Journal of Bioresource Science,Diva Enterprises Private Limited,23479655|24549541 +International Journal of Bioscience Biochemistry and Bioinformatics,International Academy Publishing (IAP),20103638|20103638 +International Journal of Biosciences (IJB),International Journal of Biosciences,22206655|22225234 +International Journal of Biotech Trends and Technology,Seventh Sense Research Group Journals,22490183 +International Journal of Biotechnology,Inderscience Enterprises Ltd.,09636048|17415020 +International Journal of Biotechnology Applications,Bioinfo Publications,09752943|09759123 +International Journal of Biotechnology for Wellness Industries,Lifescience Global,19273037 +International Journal of Bipolar Disorders,Springer (Biomed Central Ltd.),21947511|21947511 +International Journal of Blood Transfusion and Immunohematology,"""EDORIUM Journals, Pvt., Ltd.""",22309020| +International Journal of Bonds and Derivatives,Inderscience Enterprises Ltd.,20502281|2050229X +International Journal of Bone and Rheumatology Research,SciDoc Publishers LLC,24704520 +International Journal of Botany,Science Alert,18119700|18119700 +International Journal of Brain and Cognitive Sciences,Scientific and Academic Publishing,21631840| +International Journal of Brain Science,Hindawi Publishing Corporation,23566965|23147016 +International Journal of Breast Cancer,Hindawi Publishing Corporation,20903170|20903189 +International Journal of BRIC Business Research,Wireilla Scientific Publications,22014179 +International Journal of Building Sustainability and Secure,Czech Technical University in Prague - Central Library,23362707| +International Journal of Built Environment and Sustainability,Penerbit UTM Press,15111369|22898948 +International Journal of Business Administration,Sciedu Press,19234007|19234015 +International Journal of Business Analytics,IGI Global,23344547|23344555 +International Journal of Business and Administrative Studies,KKG Publications,24143081 +International Journal of Business and Economics Research,Science Publishing Group,23287543| +International Journal of Business and Emerging Markets,Inderscience Enterprises Ltd.,17536219|17536227 +International Journal of Business and Globalisation,Inderscience Enterprises Ltd.,17533627|17533635 +International Journal of Business and Management,Canadian Center of Science and Education,18333850|18338119 +International Journal of Business and Management,International Institute of Social and Economic Sciences,23362197 +International Journal of Business and Systems Research,Inderscience Enterprises Ltd.,1751200X|17512018 +International Journal of Business Communication,SAGE Publications,23294884|23294892 +International Journal of Business Competition and Growth,Inderscience Enterprises Ltd.,20423845|20423853 +International Journal of Business Continuity and Risk Management,Inderscience Enterprises Ltd.,17582164|17582172 +International Journal of Business Data Communications and Networking,IGI Global,15480631|1548064X +International Journal of Business Economics and Management,Pak Publishing Group,23125772|23120916 +International Journal of Business Economics and Management Perspectives,"""International Journal of Business, Economics, and Management Perspectives""",24588997| +International Journal of Business Environment,Inderscience Enterprises Ltd.,17400589|17400597 +International Journal of Business Excellence,Inderscience Enterprises Ltd.,17560047|17560055 +International Journal of Business Forecasting and Marketing Intelligence,Inderscience Enterprises Ltd.,17446635|17446643 +International Journal of Business Governance and Ethics,Inderscience Enterprises Ltd.,14779048|1741802X +International Journal of Business Information Systems,Inderscience Enterprises Ltd.,17460972|17460980 +International Journal of Business Information Systems Strategies,Wireilla Scientific Publications,22014152|22014152 +International Journal of Business Innovation and Research,Inderscience Enterprises Ltd.,17510252|17510260 +International Journal of Business Intelligence and Data Mining,Inderscience Enterprises Ltd.,17438187|17438195 +International Journal of Business Intelligence Research,IGI Global,19473591|19473605 +International Journal of Business Management and Social Research,Journal BiNET,24128279 +International Journal of Business Performance and Supply Chain Modelling,Inderscience Enterprises Ltd.,17589401|1758941X +International Journal of Business Performance Management,Inderscience Enterprises Ltd.,13684892|17415039 +International Journal of Business Process Integration and Management,Inderscience Enterprises Ltd.,17418763|17418771 +International Journal of Business Research,International Academy of Business and Economics,15551296|23788577 +International Journal of Business Strategy,International Academy of Business and Economics,15539563|23788585 +International Journal of Canadian Studies,University of Toronto Press Inc,11803991|19235291 +International Journal of Cancer,Wiley Blackwell (John Wiley & Sons),00207136|10970215 +International Journal of Cancer and Oncology,Ommega Online Publishers,23770902 +International Journal of Cancer Research,Science Alert,18119727|18119735 +International Journal of Cancer Research and Molecular Mechanisms ( ISSN 2381-3318 ),"""Sci Forschen, Inc.""",23813318 +International Journal of Cancer Studies & Research,SciDoc Publishers LLC,21679118 +International Journal of Cancer Therapy and Oncology,International Journal of Cancer Therapy and Oncology,23304049 +International Journal of Carbohydrate Chemistry,Hindawi Publishing Corporation,16879341|1687935X +International Journal of Cardiology,Elsevier ,01675273|01675273 +International Journal of Cardiology and Lipidology Research,Cosmos Scholars Publishing House,24102822 +International Journal of Cardiology and Research,SciDoc Publishers LLC,24704563 +International Journal of Cardiovascular and Cerebrovascular Disease,"""Horizon Research Publishing Co., Ltd.""",23319887|23319895 +International Journal of Cardiovascular Interventions,Informa UK (Taylor & Francis),14628848|14711796 +International Journal of Cardiovascular Research,OMICS Publishing Group,23248602 +International Journal of Cardiovascular Sciences,GN1 Genesis Network,21777772| +International Journal of Care Coordination,SAGE Publications,20534345|20534353 +International Journal of Care Pathways,SAGE Publications,20404026|20404034 +International Journal of Career Management,Emerald (MCB UP ),09556214|00000000 +International Journal of Cartography,Informa UK (Taylor & Francis),23729333|23729341 +International Journal of Case Reports and Images,"""EDORIUM Journals, Pvt., Ltd.""",09763198| +International Journal of Case Reports in Medicine,IBIMA Publishing,23273542 +International Journal of Cases on Electronic Commerce,IGI Global,15480623|15480615 +International Journal of Cast Metals Research,Maney Publishing,13640461|17431336 +International Journal of Cell Biology,Hindawi Publishing Corporation,16878876|16878884 +International Journal of Cellular and Molecular Biotechnology,ISPACS GmbH,21981744 +International Journal of Cement Composites and Lightweight Concrete,Elsevier ,02625075| +International Journal of Chaos Control Modelling and Simulation,Academy and Industry Research Collaboration Center,23198990|23195398 +International Journal of Chemical and Analytical Science,Elsevier ,09761209| +International Journal of Chemical and Analytical Science,Elsevier ,09761209| +International Journal of Chemical and Applied Biological Sciences,Medknow Publications,23480734| +International Journal of Chemical and Process Engineering Research,Pak Publishing Group,23132558|23130776 +International Journal of Chemical Engineering,Hindawi Publishing Corporation,1687806X|16878078 +International Journal of Chemical Engineering and Applications,EJournal Publishing,20100221|20100221 +International Journal of Chemical Kinetics,Wiley Blackwell (John Wiley & Sons),05388066|10974601 +International Journal of Chemical Physics,Hindawi Publishing Corporation,23566973|23146885 +International Journal of Chemical Reactor Engineering,Walter de Gruyter GmbH,21945748|15426580 +International Journal of Chemical Research,Bioinfo Publications,09753699|09759131 +International Journal of Chemical Technology,Science Alert,19963416|19963416 +International Journal of Chemistry,Canadian Center of Science and Education,19169698|19169701 +International Journal of Chemistry and Materials Research,Pak Publishing Group,23120991|2311763X +International Journal of Chemoinformatics and Chemical Engineering,IGI Global,21554110|21554129 +International Journal of Child Care and Education Policy,Springer-Verlag,22886729|22886729 +International Journal of Child Health and Nutrition,Lifescience Global,19294247 +International Journal of Child-Computer Interaction,Elsevier ,22128689| +International Journal of Childbirth,Springer Publishing Company,21565287|21565295 +International Journal of Children s Spirituality,Informa UK (Taylor & Francis),1364436X|14698455 +International Journal of Chinese Culture and Management,Inderscience Enterprises Ltd.,17521270|17521289 +International Journal of Chinese Education,Brill Academic Publishers,2212585X|22125868 +International Journal of Chinese Linguistics,John Benjamins Publishing Company,22138706|22138714 +International Journal of Christianity & Education,SAGE Publications,20569971|2056998X +International Journal of Chronic Diseases,Hindawi Publishing Corporation,23566981|23145749 +International Journal of Chronic Obstructive Pulmonary Disease,Dove Medical Press,11782005 +International Journal of Circuit Theory and Applications,Wiley Blackwell (John Wiley & Sons),00989886|1097007X +International Journal of Circuits and Architecture Design,Inderscience Enterprises Ltd.,20517025|20517033 +International Journal of Circumpolar Health,Co-Action Publishing,12399736|22423982 +International Journal of Civic Engagement and Social Change,IGI Global,23285494|23285508 +International Journal of Civil and Environmental Engineering,Recent Science Publications,17018285 +International Journal of Civil and Structural Engineering,Integrated Publishing Association,9764399 +International Journal of Civil Aviation,"""Macrothink Institute, Inc.""",19433433 +International Journal of Civil Engineering,Seventh Sense Research Group Journals,23488352 +International Journal of Clean Coal and Energy,"""Scientific Research Publishing, Inc.""",2168152X|21681538 +International Journal of Climate Change Strategies and Management,Emerald (MCB UP ),17568692| +International Journal of Climate Research,Pak Publishing Group, +International Journal of Climatology,Wiley Blackwell (John Wiley & Sons),08998418|10970088 +International Journal of Clinical & Laboratory Research,Springer-Verlag,09405437|14344467 +International Journal of Clinical & Medical Allergy,SciDoc Publishers LLC,23322799 +International Journal of Clinical & Medical Imaging,OMICS Publishing Group,23760249 +International Journal of Clinical and Developmental Anatomy,Science Publishing Group,24697990| +International Journal of Clinical and Experimental Hypnosis,Informa UK (Taylor & Francis),00207144|17445183 +International Journal of Clinical and Experimental Medical Sciences,Science Publishing Group,24698024| +International Journal of Clinical and Experimental Physiology,Medknow Publications,23488093| +International Journal of Clinical and Health Psychology,Elsevier ,16972600| +INTERNATIONAL JOURNAL OF CLINICAL AND SURGICAL ADVANCES,ScopeMed International Medical Journal Managment and Indexing System,23219351 +International Journal of Clinical Biochemistry and Research,Diva Enterprises Private Limited,23946369|23946377 +International Journal of Clinical Case Reports,"""Sophia Publishing Group, Inc.""",1927579X +International Journal of Clinical Case Studies,Graphy Publications,24552356 +International Journal of Clinical Chemistry and Laboratory Medicine,ARC Publications Pvt Ltd.,24557153 +International Journal of Clinical Dermatology & Research,SciDoc Publishers LLC,23322977 +International Journal of Clinical Implant Dentistry with DVD,Jaypee Brothers Medical Publishing,09749918|09751939 +International Journal of Clinical Legal Education,Northumbria University Library,14671069|20563930 +International Journal of Clinical Medicine,"""Scientific Research Publishing, Inc.""",2158284X|21582882 +International journal of clinical monitoring and computing,Springer-Verlag,01679945| +International Journal of Clinical Neurosciences and Mental Health,ARC Publishing Scientific Consulting,2182570X +International Journal of Clinical Nutrition,"""Science and Education Publishing Co., Ltd.""",23761385| +International Journal of Clinical Oncology,Springer-Verlag,13419625|14377772 +International Journal of Clinical Pediatric Dentistry,Jaypee Brothers Medical Publishing,09747052|09751904 +International Journal of Clinical Pediatrics,"""Elmer Press, Inc.""",19271255|19271263 +International Journal of Clinical Pharmacology & Toxicology,SciDoc Publishers LLC,2167910X +International Journal of Clinical Pharmacology and Therapeutics,Dustri-Verlag Dr. Karl Feistle,09461965| +International Journal of Clinical Pharmacy,Springer-Verlag,22107703|22107711 +International Journal of Clinical Practice,Wiley Blackwell (Blackwell Publishing),13685031|17421241 +International Journal of Clinical Preventive Dentistry,Korean Academy of Preventive Dentistry,17388546|22876197 +International Journal of Clinical Psychiatry and Mental Health,Synergy Publishers,23108231 +International Journal of Clinical Reviews,Remedica Medical Education and Publishing,20443323 +International Journal of Clinical Rheumatology,Future Medicine,17584272|17584280 +International Journal of Clinical Therapeutics and Diagnosis,SciDoc Publishers LLC,23322926 +International Journal of Clinical Toxicology,Pharma Publisher,23104007 +International Journal of Clinical Transfusion Medicine,Dove Medical Press,22533249 +International Journal of Clinical Trials,Medip Academy,23493240|23493259 +International Journal of Clothing Science and Technology,Emerald (MCB UP ),09556222|00000000 +International Journal of Cloud Applications and Computing,IGI Global,21561834|21561826 +International Journal of Cloud Computing,Inderscience Enterprises Ltd.,20439989|20439997 +International Journal of Cloud Computing and Services Science (IJ-CLOSER),Institute of Advanced Engineering and Science,20893337| +International Journal of Cloud-Computing and Super-Computing,Science and Engineering Research Support Society,22878491|22878491 +International Journal of Coal Geology,Elsevier ,01665162| +International Journal of Coal Preparation and Utilization,Informa UK (Taylor & Francis),19392699|19392702 +International Journal of Coal Science & Technology,Springer-Verlag,20958293|21987823 +International Journal of Cognition and Technology,John Benjamins Publishing Company,15692167|15699803 +International Journal of Cognitive Biometrics,Inderscience Enterprises Ltd.,20426461|2042647X +International Journal of Cognitive Ergonomics,Informa UK (Taylor & Francis),10886362|10886362 +International Journal of Cognitive Informatics and Natural Intelligence,IGI Global,15573958|15573966 +International Journal of Cognitive Performance Support,Inderscience Enterprises Ltd.,17427207|17427215 +International Journal of Cognitive Therapy,Guilford Publications,19371209| +International Journal of Collaborative Engineering,Inderscience Enterprises Ltd.,17450039|17450047 +International Journal of Collaborative Enterprise,Inderscience Enterprises Ltd.,17402085|17402093 +International Journal of Collaborative Intelligence,Inderscience Enterprises Ltd.,20517122|20517130 +International Journal of Colorectal Disease,Springer-Verlag,01791958|14321262 +International Journal of Combinatorics,Hindawi Publishing Corporation,16879163|16879171 +INTERNATIONAL JOURNAL OF COMMERCE AND BUSINESS MANAGEMENT,Hind Agri Horticultural Society,09742646|09767940 +International Journal of Commerce and Management,Emerald (MCB UP ),10569219| +International Journal of Communication and Media Science,Seventh Sense Research Group Journals,2349641X +International Journal of Communication Networks and Distributed Systems,Inderscience Enterprises Ltd.,17543916|17543924 +International Journal of Communication Systems,Wiley Blackwell (John Wiley & Sons),10745351|10991131 +International Journal of Communication Systems and Networks,"""Machine Intelligence Research Labs, Gwalior""",22348018 +International Journal of Communications Network and System Sciences,"""Scientific Research Publishing, Inc.""",19133715|19133723 +International Journal of Community Development,World Scholars,23302879|23302887 +International Journal of Community Medicine and Public Health,Medip Academy,23946032| +International Journal of Community Music,Intellect,17526299|17526302 +International Journal of Comparative and Applied Criminal Justice,Informa UK (Taylor & Francis),01924036|21576475 +International Journal of Comparative Labour Law and Industrial Relations,Springer (Kluwer Academic Publishers),0952617X| +International Journal of Comparative Literature and Translation Studies,Australian International Academic Centre,22021817|22021825 +International Journal of Comparative Sociology,SAGE Publications,00207152|15685187 +International Journal of Complementary & Alternative Medicine,MedCrave Group,23811803 +International Journal of Complexity in Leadership and Management,Inderscience Enterprises Ltd.,17590256|17590264 +International Journal of Composite Materials,Scientific and Academic Publishing,2166479X| +International Journal of Comprehensive Engineering,"""Diagnosis Engineering Technology, LLP, Japan""",21862680|21862656 +International Journal of Computational and Theoretical Chemistry,Science Publishing Group,23767286| +International Journal of Computational Biology,Bioinfo Publications,22296700|22296719 +International Journal of Computational Biology and Drug Design,Inderscience Enterprises Ltd.,17560756|17560764 +International Journal of Computational Bioscience,ACTA Press,19183909| +International Journal of Computational Economics and Econometrics,Inderscience Enterprises Ltd.,17571170|17571189 +International Journal of Computational Engineering Science,World Scientific ,14658763| +International Journal of Computational Fluid Dynamics,Informa UK (Taylor & Francis),10618562|10290257 +International Journal of Computational Geometry & Applications,World Scientific ,02181959|02181959 +International Journal of Computational Intelligence and Applications,World Scientific ,14690268|17575885 +International Journal of Computational Intelligence in Bioinformatics and Systems Biology,Inderscience Enterprises Ltd.,17558034|17558042 +International Journal of Computational Intelligence Research,Soft Computing and Intelligent Information Systems,09741259| +International Journal of Computational Intelligence Studies,Inderscience Enterprises Ltd.,17554977|17554985 +International Journal of Computational Intelligence Systems,Informa UK (Taylor & Francis),18756891|18756883 +International Journal of Computational Intelligence Techniques,Bioinfo Publications,09760466|09760474 +International Journal of Computational Materials Science and Engineering,World Scientific ,20476841|2047685X +International Journal of Computational Materials Science and Surface Engineering,Inderscience Enterprises Ltd.,17533465|17533473 +International Journal of Computational Mathematics,Hindawi Publishing Corporation,2356797X|2314856X +International Journal of Computational Methods,World Scientific ,02198762|17936969 +International Journal of Computational Methods and Experimental Measurements,WITPress,20460546|20460554 +International Journal of Computational Models and Algorithms in Medicine,IGI Global,19473133|19473141 +International Journal of Computational Science and Engineering,Inderscience Enterprises Ltd.,17427185|17427193 +International Journal of Computational Science and Engineering,Inderscience Enterprises Ltd.,17427185|17427193 +International Journal of Computational Science and Information Technology,Academy and Industry Research Collaboration Center,23208457|23207442 +International Journal of Computational Science Information Technology and Control Engineering,Academy and Industry Research Collaboration Center,23947527 +International Journal of Computational Systems Engineering,Inderscience Enterprises Ltd.,20463391|20463405 +International Journal of Computational Vision and Robotics,Inderscience Enterprises Ltd.,17529131|1752914X +International Journal of Computer & Information Sciences,Springer-Verlag,00917036| +International Journal of Computer & Organization Trends,Seventh Sense Research Group Journals,22492593 +International Journal of Computer Aided Engineering and Technology,Inderscience Enterprises Ltd.,17572657|17572665 +International Journal of Computer and Communication Engineering,International Academy Publishing (IAP),20103743|20103743 +International Journal of Computer and Electrical Engineering,International Academy Publishing (IAP),17938163|17938163 +International Journal of Computer Applications,Foundation of Computer Science,09758887|09758887 +International Journal of Computer Applications and Technology,Association of Technology and Science,22788298 +International Journal of Computer Applications in Technology,Inderscience Enterprises Ltd.,09528091|17415047 +International Journal of Computer Applications Technology and Research,Association of Technology and Science,23198656 +International Journal of Computer Assisted Radiology and Surgery,Springer-Verlag,18616410|18616429 +International Journal of Computer Engineering & Sciences,International Association of Engineering and Technology,22316590 +International Journal of Computer Games Technology,Hindawi Publishing Corporation,16877047|16877055 +International Journal of Computer Graphics,Science and Engineering Research Support Society,20939663|20939663 +International Journal of Computer Graphics & Animation,Academy and Industry Research Collaboration Center,22313591|22313281 +International Journal of Computer Integrated Manufacturing,Informa UK (Taylor & Francis),0951192X|13623052 +International Journal of Computer Mathematics,Informa UK (Taylor & Francis),00207160|10290265 +International Journal of Computer Mathematics Computer Systems Theory,Informa UK (Taylor & Francis),23799927|23799935 +International Journal of Computer Network and Information Security,MECS Publisher,20749090|20749104 +International journal of Computer Networks & Communications,Academy and Industry Research Collaboration Center,09752293|09749322 +International Journal of Computer Processing Of Languages,World Scientific ,17938406|20100205 +International Journal of Computer Processing of Oriental Languages,World Scientific ,02194279|02194279 +International Journal of Computer Science & Engineering Survey,Academy and Industry Research Collaboration Center,09763252|09762760 +International Journal of Computer Science and Application,DEStech Publications,23247037|23247134 +International Journal of Computer Science and Artificial Intelligence,The World Academic Publishing,22264450|22264469 +International Journal of Computer Science and Engineering,Seventh Sense Research Group Journals,23488387 +International Journal of Computer Science and Information Technology,Academy and Industry Research Collaboration Center,09754660|09753826 +International Journal of Computer Science Engineering and Applications,Academy and Industry Research Collaboration Center,22310088|22309616 +International Journal of Computer Science Engineering and Information Technology,Academy and Industry Research Collaboration Center,22313605|22313117 +International Journal of Computer Science Issues,"""SoftwareFirst, Ltd.""",16940814|16940784 +International Journal of Computer Systems & Software Engineering,Universiti Malaysia Pahang Publishing,22898522| +International Journal of Computer Theory and Engineering,IACSIT Press,17938201|17938201 +International Journal of Computer Trends and Technology,Seventh Sense Research Group Journals,23490829|22312803 +International Journal of Computer Vision,Springer-Verlag,09205691|15731405 +International Journal of Computer Vision and Image Processing,IGI Global,21556997|21556989 +International Journal of Computer-Assisted Language Learning and Teaching,IGI Global,21557098|21557101 +International Journal of Computer-Supported Collaborative Learning,Springer-Verlag,15561607|15561615 +International Journal of Computers and Applications,ACTA Press,1206212X| +International Journal of Computers Communications & Control,Agora University of Oradea,18419836|18419844 +International Journal of Computers for Mathematical Learning,Springer-Verlag,13823892|15731766 +International Journal of Computers in Healthcare,Inderscience Enterprises Ltd.,17553199|17553202 +International Journal of Computing Algorithm,Integrated Intelligent Research (IIR),22782397| +International Journal of Computing and Digital Systems,Scientific Publishing Center,2210142X| +International Journal of Computing and Network Technology,Scientific Publishing Center,22101519| +International Journal of Computing and Optimization,"""Hikari, Ltd.""",23675594 +International Journal of Computing Communication and Instrumentation Engineering,International Institute of Engineers,23491477|23491477 +International Journal of Computing Science and Mathematics,Inderscience Enterprises Ltd.,17525055|17525063 +International Journal of Conceptual Structures and Smart Applications,IGI Global,21667292|21667306 +International Journal of Concrete Structures and Materials,Springer-Verlag,19760485|22341315 +International Journal of Condition Monitoring,British Institute of Non-Destructive Testing,20476426| +International Journal of Conflict Management,Emerald (MCB UP ),10444068| +International Journal of Constitutional Law,Oxford University Press,14742640|14742659 +International Journal of Construction Education and Research,Informa UK (Taylor & Francis),15578771|15503984 +International Journal of Construction Engineering and Management,Scientific and Academic Publishing,23261102| +International Journal of Construction Management,Informa UK (Taylor & Francis),15623599|23312327 +International Journal of Construction Supply Chain Management,International Journal of Construction Supply Chain Management,11790776|11790776 +International Journal of Constructive Research in Civil Engineering,ARC Publications Pvt Ltd.,24548693 +International Journal of Consumer Studies,Wiley Blackwell (Blackwell Publishing),14706423|14706431 +International Journal of Contemporary Hospitality Management,Emerald (MCB UP ),09596119|00000000 +International Journal of Contemporary Iraqi Studies,Intellect,17512867|17512875 +International Journal of Contemporary Mathematical Sciences,"""Hikari, Ltd.""",13127586|13147544 +International Journal of Contemporary Medicine,Diva Enterprises Private Limited,23209623|23211032 +International Journal of Contemporary Microbiology,Diva Enterprises Private Limited,23949473|23951796 +International Journal of Contemporary Pathology,Diva Enterprises Private Limited,2394790X|23951184 +International Journal of Contemporary Pediatrics,Medip Academy,23493283| +International Journal of Contemporary Surgery,Diva Enterprises Private Limited,23209615|23211024 +International Journal of Contents,The Korea Contents Association,17386764| +International Journal of Continuing Engineering Education and Life-Long Learning,Inderscience Enterprises Ltd.,15604624|17415055 +International Journal of Control,Informa UK (Taylor & Francis),00207179|13665820 +International Journal of Control and Automation,Science and Engineering Research Support Society,20054297|20054297 +International Journal of Control Automation and Systems,Springer-Verlag,15986446|20054092 +International Journal of Control Science and Engineering,Scientific and Academic Publishing,21684952| +International Journal of Control Theory and Computer Modeling,Academy and Industry Research Collaboration Center,22491155|22491155 +International Journal of Convergence Computing,Inderscience Enterprises Ltd.,20489129|20489137 +International Journal of Cooperative Information Systems,World Scientific ,02188430|17936365 +International Journal of Cooperative Studies,World Scholars,21682631|2168264X +International Journal of COPD,Dove Medical Press,11769106| +International Journal of Corporate Finance and Accounting,IGI Global,23344628|23344636 +International Journal of Corporate Governance,Inderscience Enterprises Ltd.,17543037|17543045 +International Journal of Corpus Linguistics,John Benjamins Publishing Company,13846655|15699811 +International Journal of Corrosion,Hindawi Publishing Corporation,16879325|16879333 +International Journal of Corrosion and Scale Inhibition,IFHAN,23056894 +International Journal of Cosmetic Science,Wiley Blackwell (Blackwell Publishing),01425463|14672494 +International Journal of Cosmetic Surgery and Aesthetic Dermatology,Mary Ann Liebert,15308200|00000000 +International Journal of Crashworthiness,Informa UK (Taylor & Francis),13588265|17542111 +International Journal of Creative Computing,Inderscience Enterprises Ltd.,20438346|20438354 +International Journal of Creative Interfaces and Computer Graphics,IGI Global,19473117|19473125 +International Journal of Criminology and Sociology,Lifescience Global,19294409 +International Journal of Critical Accounting,Inderscience Enterprises Ltd.,17579848|17579856 +International Journal of Critical Computer-Based Systems,Inderscience Enterprises Ltd.,17578779|17578787 +International Journal of Critical Illness and Injury Science,Medknow Publications,22295151| +International Journal of Critical Infrastructure Protection,Elsevier ,18745482| +International Journal of Critical Infrastructures,Inderscience Enterprises Ltd.,14753219|17418038 +International Journal of Cross Cultural Management,SAGE Publications,14705958|17412838 +International Journal of Crude Drug Research,Informa UK (Taylor & Francis),01677314| +International Journal of Cryptography and Security,Bioinfo Publications,22497013|22497021 +International Journal of Cuban Studies,Pluto Journals,17563461|1756347X +International Journal of Cultural Policy,Informa UK (Taylor & Francis),10286632|14772833 +International Journal of Cultural Property,Cambridge University Press,09407391|14657317 +International Journal of Cultural Studies,SAGE Publications,13678779|00000000 +International Journal of Culture and History,"""Macrothink Institute, Inc.""",23325518 +International Journal of Culture and History (EJournal),EJournal Publishing,23826177|23826177 +International Journal of Culture and Mental Health,Informa UK (Taylor & Francis),17542863|17542871 +International Journal of Culture Tourism and Hospitality Research,Emerald (MCB UP ),17506182| +International Journal of Current Engineering and Technology,Inpressco,23475161|22774106 +International Journal of Current Microbiology and Applied Sciences,Excellent Publishers,23197692|23197706 +International Journal of Current Research and Academic Review,Excellent Publishers,23473215 +International Journal of Current Research in Biosciences and Plant Biology,Excellent Publishers,23498072|23498080 +International Journal of Customer Relationship Marketing and Management,IGI Global,19479247|19479255 +International Journal of Cyber Behavior Psychology and Learning,IGI Global,21557136|21557144 +International Journal of Cyber Ethics in Education,IGI Global,21556903|21556911 +International Journal of Cyber Society and Education,Academy of Taiwan Information Systems Research,19956649| +International Journal of Cyber Warfare and Terrorism,IGI Global,19473435|19473443 +International Journal of Cyber-Security and Digital Forensics,The Society of Digital Information and Wireless Communications (SDIWC),23050012| +International Journal of Cybernetics & Systemics,Bioinfo Publications,22496998|22497005 +International Journal of Dairy Science,Science Alert,18119743|18119751 +International Journal of Dairy Science & Processing,SciDoc Publishers LLC,23791578 +International Journal of Dairy Technology,Wiley Blackwell (Blackwell Publishing),1364727X|14710307 +International Journal of Damage Mechanics,SAGE Publications,10567895|15307921 +International Journal of Data Analysis Techniques and Strategies,Inderscience Enterprises Ltd.,17558050|17558069 +International Journal of Data Mining & Knowledge Management Process,Academy and Industry Research Collaboration Center,2231007X|22309608 +International Journal of Data Mining and Bioinformatics,Inderscience Enterprises Ltd.,17485673|17485681 +International Journal Of Data Mining And Emerging Technologies,Diva Enterprises Private Limited,22493212|22493220 +International Journal of Data Mining Modelling and Management,Inderscience Enterprises Ltd.,17591163|17591171 +International Journal of Data Science,Inderscience Enterprises Ltd.,20530811|2053082X +International Journal of Data Science and Analytics,Springer-Verlag,2364415X|23644168 +International Journal of Data Warehousing and Mining,IGI Global,15483924|15483932 +International Journal of Database Management Systems,Academy and Industry Research Collaboration Center,09755985|09755705 +International Journal of Database Theory and Application,Science and Engineering Research Support Society,20054270|20054270 +International Journal of Decision Sciences Risk and Management,Inderscience Enterprises Ltd.,17537169|17537177 +International Journal of Decision Support System Technology,IGI Global,19416296|1941630X +International Journal of Decision Support Systems,Inderscience Enterprises Ltd.,20506988|20506996 +International Journal of Dental and Medical Specialty,Diva Enterprises Private Limited,23500921|23944196 +International Journal of Dental Hygiene,Wiley Blackwell (Blackwell Publishing),16015029|16015037 +International Journal of Dental Research,Science Publishing Corporation,23102993 +International Journal of Dental Science and Research,Elsevier ,22139974| +International Journal of Dental Sciences and Research,"""Science and Education Publishing Co., Ltd.""",23331135| +International Journal of Dentistry,Hindawi Publishing Corporation,16878728|16878736 +International Journal of Dentistry and Oral Health,"""Sci Forschen, Inc.""",23787090 +International Journal of Dentistry and Oral Science,SciDoc Publishers LLC,23778075 +International Journal of Dependable and Trustworthy Information Systems,IGI Global,19479050|19479069 +International Journal of Dermatology,Wiley Blackwell (Blackwell Publishing),00119059|13654362 +International Journal of Design & Nature,WITPress,17443679|17443687 +International Journal of Design & Nature and Ecodynamics,WITPress,17557437|17557445 +International Journal of Design and Nature,WITPress,17443679|17443687 +International Journal of Design Creativity and Innovation,Informa UK (Taylor & Francis),21650349|21650357 +International Journal of Design Engineering,Inderscience Enterprises Ltd.,17515874|17515882 +International Journal of Developing Societies,World Scholars,21681783|21681791 +International Journal of Development,"""Al Manhal FZ, LLC""",23145552| +International Journal of Development and Conflict,World Scientific ,20102690|20102704 +International Journal of Development and Policy Studies,African Journals Online ,7950632 +International Journal of Development Issues,Emerald (MCB UP ),14468956| +International Journal of Developmental and Educational Psychology Revista INFAD de psicología,Asociacion INFAD,02149877| +International Journal of Developmental Disabilities,Maney Publishing,20473869|20473877 +International Journal of Developmental Neuroscience,Elsevier ,07365748| +International Journal of Developmental Science,IOS Press,2192001X|21917485 +International Journal of Dharma Studies,Springer (Biomed Central Ltd.),21968802|21968802 +International Journal of Diabetes & Clinical Diagnosis,Graphy Publications,23941499 +International Journal of Diabetes in Developing Countries,Springer-Verlag,09733930|19983832 +International Journal of Diabetes Mellitus,Elsevier ,18775934| +International Journal of Diabetes Research,Scientific and Academic Publishing,21631638| +International Journal of Diabetology & Vascular Disease Research,SciDoc Publishers LLC,2328353X +International Journal of Diagnostic Imaging,Sciedu Press,23315857|23315865 +International Journal of Diaspora&Cultural Criticism,The Center for Asia and Diaspora,20053037| +International Journal of Differential Equations,Hindawi Publishing Corporation,16879643|16879651 +International Journal of Differential Equations and Applications,Academic Publications,13112872|13112872 +International Journal of Digital & Analog Cabled Systems,Wiley Blackwell (John Wiley & Sons),08943222|10991131 +International Journal of Digital & Analog Communication Systems,Wiley Blackwell (John Wiley & Sons),10479627|10991131 +International Journal of Digital Content Technology and its Applications,AICIT,19759339|22339310 +International Journal of Digital Crime and Forensics,IGI Global,19416210|19416229 +International Journal of Digital Culture and Electronic Tourism,Inderscience Enterprises Ltd.,17535212|17535220 +International Journal of Digital Curation,"""UKOLN, University of Bath""",17468256 +International Journal of Digital Earth,Informa UK (Taylor & Francis),17538947|17538955 +International Journal of Digital Information and Wireless Communications,The Society of Digital Information and Wireless Communications (SDIWC),2225658X| +International Journal of Digital Library Systems,IGI Global,19479077|19479085 +International Journal of Digital Literacy and Digital Competence,IGI Global,19473494|19473508 +International Journal of Digital Multimedia Broadcasting,Hindawi Publishing Corporation,16877578|16877586 +International Journal of Digital Television,Intellect,20404182|20404190 +International Journal of Diplomacy and Economy,Inderscience Enterprises Ltd.,20490887|20490895 +International Journal of Disability Development and Education,Informa UK (Taylor & Francis),1034912X|1465346X +International Journal of Disability Management,Cambridge University Press,18338550|18344887 +International Journal of Disaster Medicine,Informa UK (Taylor & Francis),15031438|16513037 +International Journal of Disaster Recovery and Business Continuity,Science and Engineering Research Support Society,20054289|20054289 +International Journal of Disaster Resilience in the Built Environment,Emerald (MCB UP ),17595908| +International Journal of Disaster Risk Reduction,Elsevier ,22124209| +International Journal of Disaster Risk Science,Springer-Verlag,20950055|21926395 +International Journal of Disclosure and Governance,Nature Publishing Group - Macmillan Publishers,17413591|17466539 +International Journal of Discrimination and the Law,SAGE Publications,13582291|20479468 +International Journal of Distance Education Technologies,IGI Global,15393100|15393119 +International Journal of Distributed and Parallel systems,Academy and Industry Research Collaboration Center,22293957|09769757 +International Journal of Distributed Sensor Networks,Hindawi Publishing Corporation,15501329|15501477 +International Journal of Distributed Systems and Technologies,IGI Global,19473532|19473540 +International Journal of Drug Delivery,Advanced Research Journals,9750215 +International Journal of Drug Discovery,Bioinfo Publications,09754423|0975914X +International Journal of Drug Policy,Elsevier ,09553959| +International Journal of Dynamical Systems and Differential Equations,Inderscience Enterprises Ltd.,17523583|17523591 +International Journal of Dynamics and Control,Springer-Verlag,2195268X|21952698 +International Journal of E-Adoption,IGI Global,19379633|19379641 +International Journal of e-Business Management,RMIT Publishing,18355412| +International Journal of E-Business Research,IGI Global,15481131|1548114X +International Journal of e-Collaboration,IGI Global,15483673|15483681 +International Journal of e-Education e-Business e-Management and e-Learning,International Academy Publishing (IAP),20103654|20103654 +International Journal of E-Entrepreneurship and Innovation,IGI Global,19478585|19478593 +International Journal of E-Health and Medical Communications,IGI Global,1947315X|19473168 +International Journal of e-Navigation and Maritime Economy,Elsevier ,24055352| +International Journal of E-Planning Research,IGI Global,21609918|21609926 +International Journal of E-Politics,IGI Global,19479131|1947914X +International Journal of E-Services and Mobile Applications,IGI Global,1941627X|19416288 +International Journal of Early Childhood,Springer-Verlag,00207187|18784658 +International Journal of Early Childhood Special Education,International Journal of Early Childhood Special Education (INT-JECSE),13085581| +International Journal of Early Years Education,Informa UK (Taylor & Francis),09669760|14698463 +International Journal of Earth Sciences,Springer-Verlag,14373254|14373262 +International Journal of Eating Disorders,Wiley Blackwell (John Wiley & Sons),02763478|1098108X +International Journal of Ecodynamics,WITPress,17435242|17435250 +International Journal of Ecology,Hans Publishers,23247967|23247975 +International Journal of Ecology,Hindawi Publishing Corporation,16879708|16879716 +International Journal of Economic Behavior and Organization,Science Publishing Group,23287608| +International Journal of Economic Policy in Emerging Economies,Inderscience Enterprises Ltd.,17520452|17520460 +International Journal of Economic Sciences,International Institute of Social and Economic Sciences,18049796 +International Journal of Economic Theory,Wiley Blackwell (Blackwell Publishing),17427355|17427363 +International Journal of Economics & Management Sciences,OMICS Publishing Group,21626359|21626359 +International Journal of Economics and Accounting,Inderscience Enterprises Ltd.,2041868X|20418698 +International Journal of Economics and Business Modeling,Bioinfo Publications,0976531X|09765352 +International Journal of Economics and Business Research,Inderscience Enterprises Ltd.,17569850|17569869 +International Journal of Economics and Finance,Canadian Center of Science and Education,1916971X|19169728 +International Journal of Economics and Management Engineering,The World Academic Publishing,2225742X|22267344 +International Journal of Economics and Management Studies,Seventh Sense Research Group Journals,23939125 +International Journal of Economics Finance and Management Sciences,Science Publishing Group,23269553| +International Journal of Ecosystem,Scientific and Academic Publishing,21658889| +International Journal of Education,"""Macrothink Institute, Inc.""",19485476 +International Journal of Education and Learning,Science and Engineering Research Support Society,22348034|22348034 +International Journal of Education and Literacy Studies,Australian International Academic Centre,2201568X|22015698 +International Journal of Education and Management Engineering,MECS Publisher,23053623|23058463 +International Journal of Education and Practice,Pak Publishing Group,23116897|23103868 +International Journal of Education and Religion,Brill Academic Publishers,13899791|15700623 +International Journal of Education Economics and Development,Inderscience Enterprises Ltd.,17595673|17595681 +International Journal of Education through Art,Intellect,17435234|2040090X +International Journal of Educational Administration and Policy Studies,Academic Journals,21416656 +International Journal of Educational Advancement,Nature Publishing Group - Macmillan Publishers,17446503|17446511 +International Journal of Educational and Psychological Researches,Medknow Publications,23952296| +International Journal of Educational Development,Elsevier ,07380593| +International Journal of Educational Excellence,Universidad Metropolitana,23735929 +International Journal of Educational Leadership and Management,Hipatia Press,20149018 +International Journal of Educational Management,Emerald (MCB UP ),0951354X|00000000 +International Journal of Educational Methodology,Eurasian Society of Educational Research,24699632|24699632 +International Journal of Educational Psychology,Hipatia Press,20143591 +International Journal of Educational Research,Elsevier ,08830355| +International Journal of Educational Studies in Mathematics,International Journal of Educational Studies in Mathematics (IJESIM),21485984|21485984 +International Journal of Educational Technology in Higher Education,Springer (Biomed Central Ltd.),23659440 +International Journal of Electric and Hybrid Vehicles,Inderscience Enterprises Ltd.,17514088|17514096 +International Journal of Electrical and Computer Engineering,Avestia Publishing,19292716 +International Journal of Electrical and Computer Engineering (IJECE),Institute of Advanced Engineering and Science,20888708|20888708 +International Journal of Electrical and Electronics Engineering,Seventh Sense Research Group Journals,23488379 +International Journal of Electrical and Power Engineering,Science Alert,19907958| +International Journal of Electrical Components and Energy Conversion,Science Publishing Group,24698040| +International Journal of Electrical Components and Sustainable Energy,Australian International Academic Centre,22030034 +International Journal of Electrical Electronics and Data Communication,Institute of Research and Journals,23202084|23212950 +International Journal of Electrical Energy,EJournal Publishing,23013656| +International Journal of Electrical Engineering Education,SAGE Publications,00207209|20504578 +International Journal of Electrical Machining,Japan Society of Electrical Machining Engineers,13417908|21885117 +International Journal of Electrical Power & Energy Systems,Elsevier ,01420615| +International Journal of Electrochemical Science,ESG,14523981 +International Journal of Electrochemistry,Hindawi Publishing Corporation (Sage-Hindawi Access to Research),20903529|20903537 +International Journal of Electromagnetics and Applications,Scientific and Academic Publishing,21685037| +International Journal of Electronic Banking,Inderscience Enterprises Ltd.,17535239|17535247 +International Journal of Electronic Business,Inderscience Enterprises Ltd.,14706067|17415063 +International Journal of Electronic Commerce,Informa UK (Taylor & Francis),10864415|15579301 +International Journal of Electronic Commerce Studies,Academy of Taiwan Information Systems Research,20739729| +International Journal of Electronic Customer Relationship Management,Inderscience Enterprises Ltd.,17500664|17500672 +International Journal of Electronic Democracy,Inderscience Enterprises Ltd.,17424224|17424232 +International Journal of Electronic Finance,Inderscience Enterprises Ltd.,17460069|17460077 +International Journal of Electronic Governance,Inderscience Enterprises Ltd.,17427509|17427517 +International Journal of Electronic Government Research,IGI Global,15483886|15483894 +International Journal of Electronic Healthcare,Inderscience Enterprises Ltd.,17418453|17418461 +International Journal of Electronic Marketing and Retailing,Inderscience Enterprises Ltd.,17411025|17411033 +International Journal of Electronic Security and Digital Forensics,Inderscience Enterprises Ltd.,1751911X|17519128 +International Journal of Electronic Transport,Inderscience Enterprises Ltd.,17426952|17426960 +International Journal of Electronics,Informa UK (Taylor & Francis),00207217|13623060 +International Journal of Electronics and Communication Engineering,Seventh Sense Research Group Journals,23488549 +International Journal of Electronics and Electrical Engineering,EJournal Publishing,2301380X| +International Journal of Electronics and Telecommunications,De Gruyter Open Sp. z o.o. ,08676747|08676747 +International Journal of Electronics Letters,Informa UK (Taylor & Francis),21681724|21681732 +International Journal of Electronics Mechanical and Mechatronics Engineering,Istanbul Aydin University,21460604|2148998X +International Journal of Elementary Education,Science Publishing Group,23287632| +International Journal of Embedded and Real-Time Communication Systems,IGI Global,19473176|19473184 +International Journal of Embedded Systems,Inderscience Enterprises Ltd.,17411068|17411076 +International Journal of Embedded Systems and Applications,Academy and Industry Research Collaboration Center,18395171 +International Journal of Embryology,Hindawi Publishing Corporation,2356699X|23148357 +International Journal of Emergency Management,Inderscience Enterprises Ltd.,14714825|17415071 +International Journal of Emergency Medicine,Springer (Biomed Central Ltd.),18651372|18651380 +International Journal of Emergency Mental Health and Human Resilience,OMICS Publishing Group,15224821 +International Journal of Emergency Services,Emerald (MCB UP ),20470894| +International Journal of Emerging Electric Power Systems,Walter de Gruyter GmbH,21945756|1553779X +International Journal of Emerging Markets,Emerald (MCB UP ),17468809| +International Journal of Emerging Multidisciplinary Fluid Sciences,Multiscience,17568315| +International Journal of Emerging Sciences,"""Science and Education, Ltd.""",22224254| +International Journal of Emerging Technologies in Learning (iJET),International Association of Online Engineering,18688799|18630383 +INTERNATIONAL JOURNAL OF EMERGING TRENDS IN SCIENCE AND TECHNOLOGY,Research and Analysis Journals,23489480 +International Journal of Emotional Psychology and Sport Ethics,African Journals Online ,11197048 +International Journal of Endocrine Oncology,Future Medicine,20450869|20450877 +International Journal of Endocrinology,Hindawi Publishing Corporation,16878337|16878345 +International Journal of Endocrinology and Metabolic Disorders,"""Sci Forschen, Inc.""",2380548X +International Journal of Endocrinology and Metabolism,Kowsar Medical Institute,1726913X|17269148 +International Journal of Energetic Materials and Chemical Propulsion,Begell House Inc.,2150766X| +International Journal of Energy and Engineering,Scientific and Academic Publishing,21631891| +International Journal of Energy and Environment,GN1 Genesis Network,20762909| +International Journal of Energy and Environmental Engineering,Springer-Verlag,22516832|22516832 +International Journal of Energy and Power,"""Science and Engineering Publishing, Co.""",21694931| +International Journal of Energy and Power Engineering,Science Publishing Group,2326957X| +International Journal of Energy and Statistics,World Scientific ,23356804|23356812 +International Journal of Energy Engineering,The World Academic Publishing,22256563|22256571 +International Journal of Energy for a Clean Environment,Begell House Inc.,21503621| +International Journal of Energy Information and Communications,Science and Engineering Research Support Society,20939655|20939655 +International Journal of Energy Optimization and Engineering,IGI Global,21609500|21609543 +International Journal of Energy Production and Management,WITPress,20563272|20563280 +International Journal of Energy Research,Wiley Blackwell (John Wiley & Sons),0363907X|1099114X +International Journal of Energy Science,DEStech Publications,22186026|23043679 +International Journal of Energy Sector Management,Emerald (MCB UP ),17506220| +International Journal of Energy Technology and Policy,Inderscience Enterprises Ltd.,14728923|1741508X +International Journal of Engine Research,SAGE Publications,14680874|00000000 +International Journal of Engineering,International Digital Organization for Scientific Information,10252495| +International Journal of Engineering & Technology,Science Publishing Corporation,2227524X +International Journal Of Engineering And Computer Science,Research and Analysis Journals,23197242 +International Journal of Engineering and Industries,AICIT,20935765|22339418 +International Journal of Engineering and Manufacturing,MECS Publisher,23053631|23065982 +International Journal of Engineering and Technologies,SciPress Ltd.,2297623X +International Journal of Engineering and Technology,IACSIT Press,17938236| +International Journal of Engineering Business Management,InTech,18479790|18479790 +International Journal of Engineering Management and Economics,Inderscience Enterprises Ltd.,17565154|17565162 +International Journal of Engineering Mathematics,Hindawi Publishing Corporation,23567007|23146109 +International Journal of Engineering Mathematics and Computer Sciences,Innovative Journal,23215143 +International Journal of Engineering Pedagogy (iJEP),International Association of Online Engineering,21924880 +International Journal of Engineering Practical Research,DEStech Publications,23265914|23265922 +International Journal of Engineering Research,Innovative Research Publications,23475013|23196890 +International Journal of Engineering Research and,ESRSA Publications Pvt. Ltd.,22780181 +International Journal of Engineering Research and Applications,IOSR Journals,22489622 +International Journal of Engineering Research in Africa,Trans Tech Publications,16634144 +International Journal of Engineering Science,Elsevier ,00207225| +International Journal of Engineering Science and Technology,African Journals Online ,21412820|21412839 +International Journal of Engineering Sciences and Emerging Technologies,International Association of Engineering and Technology,22316604 +International Journal of Engineering Systems Modelling and Simulation,Inderscience Enterprises Ltd.,17559758|17559766 +International Journal of Engineering Technology and Computer Research,Research and Analysis Journals,23482117 +International Journal of Engineering Technology and Sciences,Universiti Malaysia Pahang Publishing,2289697X|24621269 +International Journal of Engineering Trends and Technology,Seventh Sense Research Group Journals,22315381 +International Journal of English and Literature,Academic Journals,21412626 +International Journal of English Language and Literature Studies,Pak Publishing Group,23060646|23069910 +International Journal of English Language Education,"""Macrothink Institute, Inc.""",23250887 +International Journal of English Language Teaching,Sciedu Press,23297913|23297921 +International Journal of English Linguistics,Canadian Center of Science and Education,1923869X|19238703 +International Journal of English Studies,Servicio de Publicaciones de la Universidad e Murcia,15787044|19896131 +International Journal of Enteric Pathogens,International Neuroscience Institute,23453362|23225866 +International Journal of Enterprise Information Systems,IGI Global,15481115|15481123 +International Journal of Enterprise Network Management,Inderscience Enterprises Ltd.,17481252|17481260 +International Journal of Entrepreneurial Behaviour & Research,Emerald (MCB UP ),13552554| +International Journal of Entrepreneurial Knowledge,International Journal of Enterpreneurial Knowledge,23362952|23362960 +International Journal of Entrepreneurial Venturing,Inderscience Enterprises Ltd.,17425360|17425379 +International Journal of Entrepreneurship and Innovation Management,Inderscience Enterprises Ltd.,1368275X|17415098 +International Journal of Entrepreneurship and Small Business,Inderscience Enterprises Ltd.,14761297|17418054 +International Journal of Environment,Nepal Journals Online,20912854 +International Journal of Environment and Health,Inderscience Enterprises Ltd.,17434955|17434963 +International Journal of Environment and Pollution,Inderscience Enterprises Ltd.,09574352|17415101 +International Journal of Environment and Resource,"""Science and Engineering Publishing, Co.""",23247029| +International Journal of Environment and Sustainable Development,Inderscience Enterprises Ltd.,14746778|14787466 +International Journal of Environment and Waste Management,Inderscience Enterprises Ltd.,14789876|14789868 +International Journal of Environment Workplace and Employment,Inderscience Enterprises Ltd.,17418437|17418445 +International Journal of Environmental & Analytical Chemistry,Informa UK (Taylor & Francis),03067319|10290397 +International Journal of Environmental Bioremediation & Biodegradation,"""Science and Education Publishing Co., Ltd.""",23338628| +International Journal of Environmental Engineering,Inderscience Enterprises Ltd.,17568463|17568471 +International Journal of Environmental Engineering and Natural resources,GN1 Genesis Network,23339241| +International Journal of Environmental Health Engineering,Medknow Publications,22779183| +International Journal of Environmental Health Research,Informa UK (Taylor & Francis),09603123|13691619 +International Journal of Environmental Monitoring and Analysis,Science Publishing Group,23287659| +International Journal of Environmental Policy and Decision Making,Inderscience Enterprises Ltd.,17526906|17526914 +International Journal of Environmental Pollution and Remediation,Avestia Publishing,19292732 +International Journal of Environmental Pollution and Solutions,Columbia International Publishing,2163212X +International Journal of Environmental Problems,Academic Publishing House Researcher,24109339|24137561 +International Journal of Environmental Protection and Policy,Science Publishing Group,23307528| +International Journal of Environmental Research and Public Health,MDPI AG,16604601 +International Journal of Environmental Science and Development,EJournal Publishing,20100264|20100264 +International Journal of Environmental Science and Technology,Springer-Verlag,17351472|17352630 +International Journal of Environmental Sciences,Integrated Publishing Association,9764402 +International Journal of Environmental Studies,Informa UK (Taylor & Francis),00207233|10290400 +International Journal of Environmental Technology and Management,Inderscience Enterprises Ltd.,14662132|1741511X +International Journal of Epidemiology,Oxford University Press,03005771|14643685 +International Journal of Epidemiology & Infection,Sciknow Publications,23318244 +International Journal of Epilepsy,Elsevier ,22136320| +International Journal of Erosion Control Engineering,Japan Society of Erosion Control Engineering,18826547 +International Journal of Estuarine and Coastal Law,Brill Academic Publishers,02680106|18752993 +International Journal of Ethics Education,Springer-Verlag,23639997|23640006 +INTERNATIONAL JOURNAL OF ETHICS TRAUMA & VICTIMOLOGY,Forensicwayout,23946822|23954272 +International Journal of Ethnomedicine and Pharmacognosy,Michael Joanna Publications,24371262|24371254 +International Journal of Euro-Mediterranean Studies,Springer-Verlag,18553362|22326022 +International Journal of Evaluation and Research in Education (IJERE),Institute of Advanced Engineering and Science,22528822| +International Journal of Event and Festival Management,Emerald (MCB UP ),17582954| +International Journal of Evidence and Proof,SAGE Publications,13657127|17405572 +International Journal of Evidence-Based Healthcare,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,17441595|17441609 +International Journal of Evidence-Based Practice for the Dental Hygienist,Quintessence Publishing,23791292| +International Journal of Evolution,OMICS Publishing Group,23248548 +International Journal of Evolutionary Biology,Hindawi Publishing Corporation,20908032|2090052X +International Journal of Excellence in e-Learning,"""Al Manhal FZ, LLC""",1996871X +International Journal of Excellence in Education,"""Al Manhal FZ, LLC""",19938675| +International Journal of Exergy,Inderscience Enterprises Ltd.,17428297|17428300 +International Journal of Experimental and Computational Biomechanics,Inderscience Enterprises Ltd.,17558735|17558743 +International Journal of Experimental Dental Science,Jaypee Brothers Medical Publishing,22781692|22781706 +International Journal of Experimental Design and Process Optimisation,Inderscience Enterprises Ltd.,20402252|20402260 +International Journal of Experimental Diabetes Research,Hindawi Publishing Corporation,15604284| +International Journal of Experimental Pathology,Wiley Blackwell (Blackwell Publishing),09599673|13652613 +International Journal of Expert Systems,Elsevier ,08949077| +International Journal of Eye Banking,International Journal of Eye Banking,21615446 +INTERNATIONAL JOURNAL OF FAMILY CHILD AND EDUCATION,"""GuvenGrup, Ltd. - International Journal of Family Child and Education""",21483973| +International Journal of Family Counseling,Informa UK (Taylor & Francis),01471775| +International Journal of Family Medicine,Hindawi Publishing Corporation,20902042|20902050 +International Journal of Family Therapy,Springer-Verlag,01488384| +International Journal of Fashion Design Technology and Education,Informa UK (Taylor & Francis),17543266|17543274 +International Journal of Fashion Studies,Intellect,20517106|20517114 +International Journal of Fatigue,Elsevier ,01421123| +International Journal of Feminist Approaches to Bioethics,Indiana University Press,19374585|19374577 +International Journal of Fermented Foods,Diva Enterprises Private Limited,23193549|2321712X +International Journal of Finance & Accounting Studies,Australian International Academic Centre,22034706 +International Journal of Finance & Banking Studies (2147-4486),Society for the Study of Business and Finance- SSBFNET,21474486 +International Journal of Finance & Economics,Wiley Blackwell (John Wiley & Sons),10769307|10991158 +International Journal of Finance and Accounting,Scientific and Academic Publishing,21684812| +International Journal of Finance and Accounting Studies,Australian International Academic Centre,2201604X|22016058 +International Journal of Financial Engineering,World Scientific ,24247863|24247944 +International Journal of Financial Engineering and Risk Management,Inderscience Enterprises Ltd.,20490909|20490917 +International Journal of Financial Markets and Derivatives,Inderscience Enterprises Ltd.,17567130|17567149 +International Journal of Financial Research,Sciedu Press,19234023|19234031 +International Journal of Financial Services Management,Inderscience Enterprises Ltd.,14606712|17418062 +International Journal of Financial Studies,MDPI AG,22277072 +International Journal of Fisheries and Aquaculture,Academic Journals,20069839 +International Journal of Fisheries and Aquatic Sciences,Maxwell Scientific Publication Corp.,20498411|2049842X +International Journal of Flexible Manufacturing Systems,Springer-Verlag,09206299|15729370 +International Journal of Flow Control,Multiscience,17568250| +International Journal of Fluid Dynamics,Hans Publishers,23280557|23280549 +International Journal of Fluid Machinery and Systems,Korean Society for Fluid machinery,18829554|18829554 +International Journal of Fluid Mechanics & Thermal Sciences,Science Publishing Group,24698105| +International Journal of Fluid Mechanics Research,Begell House Inc.,10642277| +International Journal of Fluid Power,Informa UK (Taylor & Francis),14399776|23321180 +International Journal of Food and Beverage Manufacturing and Business Models,IGI Global,23797509|23797495 +International Journal of Food and Fermentation Technology,Diva Enterprises Private Limited,22491570|22779396 +International Journal of Food and Nutritional Science,Ommega Online Publishers,23770619 +International Journal of Food Contamination,Springer (Biomed Central Ltd.),21962804|21962804 +International Journal of Food Design,Intellect,20566522| +International Journal of Food Engineering,Walter de Gruyter GmbH,21945764|15563758 +International Journal of Food Microbiology,Elsevier ,01681605| +International Journal of Food Processing Technology,Cosmos Scholars Publishing House,24089826 +International Journal of Food Properties,Informa UK (Taylor & Francis),10942912|15322386 +International Journal of Food Safety Nutrition and Public Health,Inderscience Enterprises Ltd.,14793911|1479392X +International Journal of Food Science,Hindawi Publishing Corporation,23567015|23145765 +International Journal of Food Science & Technology,Wiley Blackwell (Blackwell Publishing),09505423|13652621 +International Journal of Food Science and Nutrition Engineering,Scientific and Academic Publishing,21665168| +International Journal of Food Science Nutrition and Dietetics,SciDoc Publishers LLC,23263350 +International Journal of Food Sciences and Nutrition,Informa UK (Taylor & Francis),09637486|14653478 +International Journal of Food Studies,ISEKI Food Association,21821054|21821054 +International Journal of Forecasting,Elsevier ,01692070| +International Journal of Foreign Studies,"""Center for International Area Studies, HFUS""",20052464| +International Journal of Forensic Engineering,Inderscience Enterprises Ltd.,17449944|17449952 +International Journal of Forensic Mental Health,Informa UK (Taylor & Francis),14999013|19329903 +International Journal of Forensic Science & Pathology,SciDoc Publishers LLC,2332287X +International Journal of Foresight and Innovation Policy,Inderscience Enterprises Ltd.,17402816|17402824 +International Journal of Forest Engineering,Informa UK (Taylor & Francis),14942119|19132220 +INTERNATIONAL JOURNAL OF FORESTRY AND CROP IMPROVEMENT,Hind Agri Horticultural Society,0976562X|22309411 +International Journal of Forestry and Horticulture,ARC Publications Pvt Ltd.,24549487 +International Journal of Forestry Research,Hindawi Publishing Corporation,16879368|16879376 +International Journal of Forming Processes,Lavoisier SAS,12927775| +International Journal of Foundations of Computer Science,World Scientific ,01290541|17936373 +International Journal of Fracture,Springer-Verlag,03769429|15732673 +International Journal of Fracture Mechanics,Springer-Verlag,00207268| +International Journal of Franchising and Distribution Law,Springer (Kluwer Academic Publishers),1388817X| +International Journal of Francophone Studies,Intellect,13682679|17589142 +International Journal of Fruit Science,Informa UK (Taylor & Francis),15538362|15538621 +International Journal of Functional Analysis Operator Theory and Applications,Pushpa Publishing House,09752919| +International Journal of Functional Informatics and Personalised Medicine,Inderscience Enterprises Ltd.,17562104|17562112 +International Journal of Fundamental Arts and Architecture,Fundamental Journals,21897344 +International Journal of Fundamental Physical Sciences,Fundamental Journals,22318186 +International Journal of Fundamental Psychology and Social Sciences,Fundamental Journals,22319484 +International Journal of Future Computer and Communication,EJournal Publishing,20103751|20103751 +International Journal of Future Generation Communication and Networking,Science and Engineering Research Support Society,22337857|22337857 +International Journal of Fuzzy Computation and Modelling,Inderscience Enterprises Ltd.,2052353X|20523548 +International Journal of Fuzzy Logic and Intelligent Systems,Korean Institute of Intelligent Systems,15982645|2093744X +International Journal of Fuzzy Logic Systems,Academy and Industry Research Collaboration Center,18396283 +International Journal of Fuzzy System Applications,IGI Global,2156177X|21561761 +International Journal of Fuzzy Systems,Springer-Verlag,15622479|21993211 +International Journal of Game Theory,Springer-Verlag,00207276|14321270 +International Journal of Game-Based Learning,IGI Global,21556849|21556857 +International Journal of Gaming and Computer-Mediated Simulations,IGI Global,19423888|19423896 +International Journal of Gastroenterology Disorders & Therapy,Graphy Publications,23938498 +International Journal of Gastroenterology Research and Practice,IBIMA Publishing,23799757 +International Journal of Gastrointestinal Cancer,Springer-Verlag,15373649|15373649 +International Journal of Gastronomy and Food Science,Elsevier ,1878450X| +INTERNATIONAL JOURNAL OF GENDER & WOMEN S STUDIES,American Research Institute for Policy Development,23336021|2333603X +International Journal of Gender and Entrepreneurship,Emerald (MCB UP ),17566266| +International Journal of Gender Studies in Developing Societies,Inderscience Enterprises Ltd.,20520352|20520360 +International Journal of General Medicine,Dove Medical Press,11787074 +International Journal of General Systems,Informa UK (Taylor & Francis),03081079|15635104 +International Journal of Genetic Engineering,Scientific and Academic Publishing,21677239| +International Journal of Genetics,Bioinfo Publications,09752862|09759158 +International Journal of Genetics and Gene Therapy journal,"""EDORIUM Journals, Pvt., Ltd.""",23194243| +International Journal of Genetics and Genomics,Science Publishing Group,23767340| +International Journal of Genetics and Molecular Biology,Academic Journals,20069863 +International Journal of Genomic Medicine,OMICS Publishing Group,23320672 +International Journal of Genomics,Hindawi Publishing Corporation,2314436X|23144378 +International Journal of Genomics and Proteomics,Bioinfo Publications,09764887|09764895 +International Journal of Geo-Engineering,Springer (Biomed Central Ltd.),20929196|21982783 +International Journal of Geobotanical Research,Asociacion Espanola de Fitosociologia,22536302|22536515 +International Journal of Geographical Information Science,Informa UK (Taylor & Francis),13658816|13658824 +International Journal of Geographical Information Systems,Informa UK (Taylor & Francis),02693798|02693798 +International Journal of Geography and Geology,Pak Publishing Group,23069872|23057041 +International journal of geohazards and environment,Dalhousie Libraries,23685905|23685905 +International Journal of Geoinformatics and Geological Science,Seventh Sense Research Group Journals,23939206 +International Journal of Geomagnetism and Aeronomy,American Geophysical Union,15244423| +International Journal of Geomechanics,American Society of Civil Engineers,15323641|19435622 +International Journal of Geometric Methods in Modern Physics,World Scientific ,02198878|17936977 +International Journal of Geophysics,Hindawi Publishing Corporation,1687885X|16878868 +International Journal of Geosciences,"""Scientific Research Publishing, Inc.""",21568359|21568367 +International Journal of Geosynthetics and Ground Engineering,Springer-Verlag,21999260|21999279 +International Journal of Geotechnical Earthquake Engineering,IGI Global,19478488|19478496 +International Journal of Geotechnical Engineering,Maney Publishing,19386362|19397879 +International Journal of Geriatric Psychiatry,Wiley Blackwell (John Wiley & Sons),08856230|10991166 +International Journal of Gerontology,Elsevier ,18739598| +International Journal of Global Energy Issues,Inderscience Enterprises Ltd.,09547118|17415128 +International Journal of Global Environmental Issues,Inderscience Enterprises Ltd.,14666650|17415136 +International Journal of Global Warming,Inderscience Enterprises Ltd.,17582083|17582091 +International Journal of Globalisation and Small Business,Inderscience Enterprises Ltd.,14793059|14793067 +International Journal of Golf Science,Human Kinetics,21687595| +International Journal of Granular Computing Rough Sets and Intelligent Systems,Inderscience Enterprises Ltd.,17572703|17572711 +International Journal of Green Computing,IGI Global,19485018|19485026 +International Journal of Green Economics,Inderscience Enterprises Ltd.,17449928|17449936 +International Journal of Green Energy,Informa UK (Taylor & Francis),15435075|15435083 +International Journal of Green Nanotechnology,SAGE Publications,19430892|19430906 +International Journal of Green Nanotechnology Materials Science & Engineering,Informa UK (Taylor & Francis),19430841|19430833 +International Journal of Green Nanotechnology Physics and Chemistry,Informa UK (Taylor & Francis),19430876|19430884 +International Journal of Green Pharmacy,Medknow Publications,09738258| +International Journal of Greenhouse Gas Control,Elsevier ,17505836| +International Journal of Grid and Distributed Computing,Science and Engineering Research Support Society,20054262|20054262 +International Journal of Grid and High Performance Computing,IGI Global,19380259|19380267 +International Journal of Grid and Utility Computing,Inderscience Enterprises Ltd.,1741847X|17418488 +International Journal of Grid Computing & Applications,Academy and Industry Research Collaboration Center,22293949|09769404 +International Journal of Group Psychotherapy,Guilford Publications,00207284| +International Journal of Group Tensions,Springer (Kluwer Academic Publishers),00470732| +International Journal of Gynecological and Obstetrical Research,Pharma Publisher,23094400 +International Journal of Gynecological Cancer,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,1048891X|15251438 +International Journal of Gynecological Pathology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,02771691| +International Journal of Gynecology & Clinical Practices,Graphy Publications,23944986 +International Journal of Gynecology & Obstetrics,Elsevier ,00207292| +International journal of Gynecology Obstetrics and Neonatal Care,Cosmos Scholars Publishing House,24089761 +International Journal of Handheld Computing Research,IGI Global,19479158|19479166 +International Journal of Happiness and Development,Inderscience Enterprises Ltd.,20492790|20492804 +International Journal of Head and Neck Surgery,Jaypee Brothers Medical Publishing,09757899|09760539 +International Journal of Health,Science Publishing Corporation,23091630 +International Journal of Health & Allied Sciences,Medknow Publications,2278344X| +International Journal of Health and Medical Sciences,KKG Publications,24143057 +International Journal of Health and Rehabilitation Sciences (IJHRS),ScopeMed International Medical Journal Managment and Indexing System,22789014| +International Journal of Health Care Finance and Economics,Springer-Verlag,13896563|15736962 +International Journal of Health Care Quality Assurance,Emerald (MCB UP ),09526862|00000000 +International Journal of Health Economics and Management,Springer-Verlag,21999023|21999031 +International Journal of Health Geographics,Springer (Biomed Central Ltd.),1476072X|1476072X +International Journal of Health Policy and Management,International Society for Phytocosmetic Sciences,23225939|23225939 +International Journal of Health Professions,De Gruyter Open Sp. z o.o. ,2296990X +International Journal of Health Promotion and Education,Informa UK (Taylor & Francis),14635240|21649545 +International Journal of Health Research,African Journals Online ,15969819 +International JOURNAL OF HEALTH SCIENCE,Scientific and Academic Publishing,21665966| +International Journal of Health Sciences,"""Al Manhal FZ, LLC""",16583639| +International Journal of Health Sciences (IJHS),American Research Institute for Policy Development,23725060|23725079 +International Journal of Health Services,SAGE Publications,00207314|15414469 +International Journal of Health System and Disaster Management,Medknow Publications,23479019| +International Journal of Healthcare,Sciedu Press,23777338|23777346 +International Journal of Healthcare Delivery Reform Initiatives,IGI Global,19380216|19380224 +International Journal of Healthcare Information Systems and Informatics,IGI Global,15553396|1555340X +International Journal of Healthcare Management,Maney Publishing,20479700|20479719 +International Journal of Healthcare Technology and Management,Inderscience Enterprises Ltd.,13682156|17415144 +International Journal of Heat and Fluid Flow,Elsevier ,0142727X| +International Journal of Heat and Mass Transfer,Elsevier ,00179310|00179310 +International Journal of Heat and Technology,International Information and Engineering Technology Association,03928764| +International Journal of Heavy Vehicle Systems,Inderscience Enterprises Ltd.,1744232X|17415152 +International Journal of Hematologic Oncology,Future Medicine,20451393|20451407 +International Journal of Hematology,Springer-Verlag,09255710|18653774 +International Journal of Hematology and Oncology,Akademi Doktolar Yayinevi,1306133X| +International Journal of Hematology and Therapy,Ommega Online Publishers,23811404 +International Journal of Hematology Research,ACT Publishing Group,24093548| +International Journal of Hepatobiliary and Pancreatic Diseases,"""EDORIUM Journals, Pvt., Ltd.""",22309012| +International Journal of Hepatology,Hindawi Publishing Corporation,20903448|20903456 +International Journal of Heritage Studies,Informa UK (Taylor & Francis),13527258|14703610 +International Journal of High Energy Physics,Science Publishing Group,23767405| +International Journal of High Performance Computing and Networking,Inderscience Enterprises Ltd.,17400562|17400570 +International Journal of High Performance Computing Applications,SAGE Publications,10943420|00000000 +International Journal of High Performance Systems Architecture,Inderscience Enterprises Ltd.,17516528|17516536 +International Journal of High Speed Computing,World Scientific ,01290533| +International Journal of High Speed Electronics and Systems,World Scientific ,01291564|17936438 +International Journal of High Technology Ceramics,Elsevier ,02673762| +International Journal of High Throughput Screening,Dove Medical Press,11791381 +International Journal of Higher Education,Sciedu Press,19276044|19276052 +International Journal of Higher Education and Sustainability,Inderscience Enterprises Ltd.,20564023|20564031 +International Journal of Highway Engineering,Korean Society of Road Engineers,17387159|22873678 +International Journal of Hindu Studies,Springer-Verlag,10224556|15749282 +International Journal of Historical Archaeology,Springer-Verlag,10927697|15737748 +International Journal of History and Cultural Studies,ARC Publications Pvt Ltd.,24547654 +International Journal of HIV/AIDS and Research,SciDoc Publishers LLC,23791586 +INTERNATIONAL JOURNAL OF HOME SCIENCE EXTENSION & COMMUNICATION MANAGEMENT,Hind Agri Horticultural Society,23481099|23481099 +International Journal of Horticulture,"""Sophia Publishing Group, Inc.""",19275803 +International Journal of Hospital Environment & Hygiene Management,International Health Academy,20013949 +International Journal of Hospitality & Tourism Administration,Informa UK (Taylor & Francis),15256480|15286499 +International Journal of Hospitality and Event Management,Inderscience Enterprises Ltd.,20500483|20500491 +International Journal of Hospitality Information Technology,Cognizant Communication Corp,15337340| +International Journal of Hospitality Management,Elsevier ,02784319| +International Journal of Housing Markets and Analysis,Emerald (MCB UP ),17538270| +International Journal of Housing Policy,Informa UK (Taylor & Francis),14616718|00000000 +International Journal of Human and Behavioral Science,International Journal of Human and Behavioral Science,21494541| +International Journal of Human Capital and Information Technology Professionals,IGI Global,19473478|19473486 +International Journal of Human Culture Studies,"""Institute of Human Culture Studies, Otsuma Womens University""",21871930 +International journal of human ecology,The Korean Home Economics Association,15989593| +International Journal of Human Factors and Ergonomics,Inderscience Enterprises Ltd.,20457804|20457812 +International Journal of Human Factors in Manufacturing,Wiley Blackwell (John Wiley & Sons),10452699|15227111 +International Journal of Human Factors Modelling and Simulation,Inderscience Enterprises Ltd.,17425549|17425557 +International Journal of Human Movement and Sports Sciences,"""Horizon Research Publishing Co., Ltd.""",23316195|23316233 +International Journal of Human Resource Studies,"""Macrothink Institute, Inc.""",21623058 +International Journal of Human Resources Development and Management,Inderscience Enterprises Ltd.,14656612|17415160 +International Journal of Human Rights and Constitutional Studies,Inderscience Enterprises Ltd.,2050103X|20501048 +International Journal of Human Rights in Healthcare,Emerald (MCB UP ),20564902| +International Journal of Human-Computer Interaction,Informa UK (Taylor & Francis),10447318|15327590 +International Journal of Human-Computer Studies,Elsevier ,10715819|10959300 +International Journal of Humanities and Arts Computing,Edinburgh University Press,17538548|17551706 +International Journal of Humanities and Social Science,Seventh Sense Research Group Journals,23942703 +International Journal of Humanities Arts and Social Sciences,KKG Publications,24143073 +International Journal of Humanities Social Sciences and Education,ARC Publications Pvt Ltd.,23490381 +International Journal of Humanity and Social Sciences,Bioinfo Publications,22313532|22313540 +International Journal of Humanoid Robotics,World Scientific ,02198436|17936942 +International Journal of Hybrid Information Technology,Science and Engineering Research Support Society,17389968|17389968 +International Journal of Hybrid Intelligent Systems,IOS Press,14485869|18758819 +International Journal of Hydraulic Engineering,Scientific and Academic Publishing,21699771| +International Journal of Hydrogen Energy,Elsevier ,03603199|03603199 +International Journal of Hydrology Research,Pak Publishing Group, +International Journal of Hydrology Science and Technology,Inderscience Enterprises Ltd.,20427808|20427816 +International Journal of Hygiene and Environmental Health,Elsevier ,14384639| +International Journal of Hypersonics,Multiscience,17593107| +International Journal of Hypertension,Hindawi Publishing Corporation,20900384|20900392 +International Journal of Hyperthermia,Informa UK (Taylor & Francis),02656736|14645157 +International Journal of Iberian Studies,Intellect,1364971X|17589150 +International Journal of ICT Research and Development in Africa,IGI Global,19473419|19473427 +International Journal of Image and Data Fusion,Informa UK (Taylor & Francis),19479832|19479824 +International Journal of Image and Graphics,World Scientific ,02194678|17936756 +International Journal of Image Graphics and Signal Processing,MECS Publisher,20749074|20749082 +International Journal of Image Mining,Inderscience Enterprises Ltd.,20556039|20556047 +International Journal of Imaging Systems and Technology,Wiley Blackwell (John Wiley & Sons),08999457|10981098 +International Journal of Immunogenetics,Wiley Blackwell (Blackwell Publishing),17443121|1744313X +International Journal of Immunological Studies,Inderscience Enterprises Ltd.,17541441|1754145X +International Journal of Immunology,Science Publishing Group,2329177X| +International Journal of Immunology Research,Bioinfo Publications,09764909|09764917 +International Journal of Immunopathology and Pharmacology,SAGE Publications,03946320| +International Journal of Immunopharmacology,Elsevier ,01920561| +International Journal of Impact Engineering,Elsevier ,0734743X| +International Journal of Implant Dentistry,Springer (Biomed Central Ltd.),21984034|21984034 +International Journal of Impotence Research,Nature Publishing Group,09559930|09559930 +International Journal of Inclusive Education,Informa UK (Taylor & Francis),13603116|14645173 +International Journal of Indian Culture and Business Management,Inderscience Enterprises Ltd.,17530806|17530814 +International Journal of Indigenous Medicinal Plants,Recent Science Publications,20514263 +International Journal of Industrial and Systems Engineering,Inderscience Enterprises Ltd.,17485037|17485045 +International Journal of Industrial Chemistry,Springer-Verlag,22285547|22285547 +International Journal of Industrial Electronics and Drives,Inderscience Enterprises Ltd.,17573874|17573882 +International Journal of Industrial Engineering,Seventh Sense Research Group Journals,23499362 +International Journal of Industrial Engineering Computations,Growing Science,19232926|19232934 +International Journal of Industrial Entomology,Korean Society of Sericultural Science,15983579| +International Journal of Industrial Ergonomics,Elsevier ,01698141| +International Journal of Industrial Organization,Elsevier ,01677187| +International Journal of Infection,International Neuroscience Institute,23831413|23831421 +International Journal of Infection and Microbiology,Nepal Journals Online,20912145| +International Journal of Infection Control,International Federation of Infection Control,19969783 +International Journal of Infectious and Tropical Diseases,Michael Joanna Publications,23846607|23846585 +International Journal of Infectious Diseases,Elsevier ,12019712| +International Journal of Infertility & Fetal Medicine,Jaypee Brothers Medical Publishing,22293817|22293833 +International Journal of Inflammation,Hindawi Publishing Corporation,20908040|20420099 +International Journal of Informatics and Communication Technology (IJ-ICT),Institute of Advanced Engineering and Science,22528776| +International Journal of Information Acquisition,World Scientific ,02198789|17936985 +International Journal of Information and Coding Theory,Inderscience Enterprises Ltd.,17537703|17537711 +International Journal of Information and Communication Engineering,The Korean Institute of Information and Communication Sciences,22345973| +International Journal of Information and Communication Technology,Inderscience Enterprises Ltd.,14666642|17418070 +International Journal of Information and Communication Technology Education,IGI Global,15501876|15501337 +International Journal of Information and Computer Science,"""Science and Engineering Publishing, Co.""",21615381| +International Journal of Information and Computer Security,Inderscience Enterprises Ltd.,17441765|17441773 +International Journal of Information and Decision Sciences,Inderscience Enterprises Ltd.,17567017|17567025 +International Journal of Information and Education Technology,EJournal Publishing,20103689|20103689 +International Journal of Information and Electronics Engineering,EJournal Publishing,20103719|20103719 +International Journal of Information and Learning Technology,Emerald (MCB UP ),20564880| +International Journal of Information and Network Security (IJINS),Institute of Advanced Engineering and Science,20893299| +International Journal of Information and Operations Management Education,Inderscience Enterprises Ltd.,17442303|17442311 +International Journal of Information Communication Technologies and Human Development,IGI Global,19355661|1935567X +International Journal of Information Communication Technology and Applications,"""International Journal of Information, Communication Technology and Applications""",22050930 +International Journal of Information Engineering and Electronic Business,MECS Publisher,20749023|20749031 +International Journal of Information Management,Elsevier ,02684012| +International Journal of Information Privacy Security and Integrity,Inderscience Enterprises Ltd.,17418496|1741850X +International Journal of Information Processing and Management,AICIT,20934009|2233940X +International Journal of Information Processing Systems,Korea Information Processing Society ,17388899| +International Journal of Information Quality,Inderscience Enterprises Ltd.,17510457|17510465 +International Journal of Information Retrieval Research,IGI Global,21556377|21556385 +International Journal of Information Science,Scientific and Academic Publishing,21631921| +International Journal of Information Sciences and Techniques,Academy and Industry Research Collaboration Center,22491139|22491139 +International Journal of Information Security,Springer-Verlag,16155262|16155270 +International Journal of Information Security and Cybercrime,Romanian Association for Information Security Assurance (RAISA),22859225|22860096 +International Journal of Information Security and Privacy,IGI Global,19301650|19301669 +International Journal of Information System Modeling and Design,IGI Global,19478186|19478194 +International Journal of Information Systems and Change Management,Inderscience Enterprises Ltd.,14793121|1479313X +International Journal of Information Systems and Management,Inderscience Enterprises Ltd.,17513227|17513235 +International Journal of Information Systems and Social Change,IGI Global,1941868X|19418698 +International Journal of Information Systems and Supply Chain Management,IGI Global,19355726|19355734 +International Journal of Information Systems for Crisis Response Management,IGI Global,19379390|19379420 +International Journal of Information Systems in the Service Sector,IGI Global,19355688|19355696 +International Journal of Information Technologies and Systems Approach,IGI Global,1935570X|19355718 +International Journal of Information Technology & Decision Making,World Scientific ,02196220|17936845 +International Journal of Information Technology and Computer Science,MECS Publisher,20749007|20749015 +International Journal of Information Technology and Decision Making,World Scientific ,02196220| +International Journal of Information Technology and Management,Inderscience Enterprises Ltd.,14614111|17415179 +International Journal of Information Technology and Web Engineering,IGI Global,15541045|15541053 +International Journal of Information Technology Communications and Convergence,Inderscience Enterprises Ltd.,20423217|20423225 +International Journal of Information Technology Control and Automation,Academy and Industry Research Collaboration Center,18396682|18396682 +International Journal of Information Technology Convergence and Services,Academy and Industry Research Collaboration Center,22311939|2231153X +International Journal of Information Technology Modeling and Computing,Academy and Industry Research Collaboration Center,23208449|23207493 +International Journal of Information Technology Project Management,IGI Global,19380232|19380240 +International Journal of Infrared and Millimeter Waves,Springer-Verlag,01959271|15729559 +International Journal of Injury Control and Safety Promotion,Informa UK (Taylor & Francis),17457300|17457319 +International Journal of Innovation,University Nove de Julho - Uninove,23189975|23189975 +International Journal of Innovation and Economic Development,Inovatus Usluge Ltd.,18497020|18497551 +International Journal of Innovation and Learning,Inderscience Enterprises Ltd.,14718197|17418089 +International Journal of Innovation and Regional Development,Inderscience Enterprises Ltd.,17530660|17530679 +International Journal of Innovation and Sustainable Development,Inderscience Enterprises Ltd.,17408822|17408830 +International Journal of Innovation and Technology Management,World Scientific ,02198770|17936950 +International Journal of Innovation in Education,Inderscience Enterprises Ltd.,1755151X|17551528 +International Journal of Innovation in the Digital Economy,IGI Global,19478305|19478313 +International Journal of Innovation Management,World Scientific ,13639196|17575877 +International Journal of Innovation Management and Technology,EJournal Publishing,20100248|20100248 +International Journal of Innovation Science,Multiscience,17572223| +International Journal of Innovations in Biological and Chemical Sciences,Whites Science Innovation Limited,20479093 +International Journal of Innovative Computing and Applications,Inderscience Enterprises Ltd.,1751648X|17516498 +International Journal of Innovative Medicine and Health Science,Whites Science Innovation Limited,20569866 +International Journal of Innovative Research in Computer and Communication Engineering,Ess and Ess Research Publications,23209798|23209801 +International Journal of Innovative Research in Education,Sciencepark Research Organization and Counseling,24218162 +International Journal of Innovative Research in Electronics and Communications,ARC Publications Pvt Ltd.,23494050 +International Journal of Innovative Research in Science Engineering and Technology,Ess and Ess Research Publications,23476710|23198753 +International Journal of Innovative Studies in Aquatic Biology and Fisheries,ARC Publications Pvt Ltd.,24547670 +International Journal of Inorganic Chemistry,Hindawi Publishing Corporation,20902026|20902034 +International Journal of Inorganic Materials,Elsevier ,14666049| +International Journal of Insect Morphology and Embryology,Elsevier ,00207322| +International Journal of Insect Science,"""Libertas Academica, Ltd.""",11795433 +International Journal of Instruction,Eurasian Society of Educational Research,1694609X|1694609X +International Journal of Instrumentation and Control Systems,Academy and Industry Research Collaboration Center,2319412X|22491147 +International Journal of Instrumentation Science,Scientific and Academic Publishing,23249994| +International Journal of Instrumentation Technology,Inderscience Enterprises Ltd.,20437854|20437862 +International Journal of Integrated Care,"""Ubiquity Press, Ltd.""",15684156 +International Journal of Integrated Health Sciences,International Journal of Integrated Health Sciences (IJIHS),23021381|23384506 +International Journal of Integrated Supply Management,Inderscience Enterprises Ltd.,14775360|17418097 +International Journal of Integrative Medical Sciences,I MED Research Publications,23946318|23944137 +International Journal of Integrative Medicine,InTech,18488846| +International Journal of Integrative Pediatrics and Environmental Medicine,Lifescience Global,23684275 +International Journal of Intellectual Property,Scientific Publishing Center,22101772| +International Journal of Intellectual Property -Law Economy and Management,Intellectual Property Association of Japan,13494759 +International Journal of Intellectual Property Management,Inderscience Enterprises Ltd.,14789647|14789655 +International Journal of Intelligence and CounterIntelligence,Informa UK (Taylor & Francis),08850607|15210561 +International Journal of Intelligence Science,"""Scientific Research Publishing, Inc.""",21630283|21630356 +International Journal of Intelligent and Cooperative Information Systems,World Scientific ,02182157| +International Journal of Intelligent Computing and Cybernetics,Emerald (MCB UP ),1756378X| +International Journal of Intelligent Computing in Medical Sciences & Image Processing,Informa UK (Taylor & Francis),1931308X|23260068 +International Journal of Intelligent Control and Systems,World Scientific ,02187965| +International Journal of Intelligent Defence Support Systems,Inderscience Enterprises Ltd.,17551587|17551595 +International Journal of Intelligent Engineering Informatics,Inderscience Enterprises Ltd.,17588715|17588723 +International Journal of Intelligent Enterprise,Inderscience Enterprises Ltd.,17453232|17453240 +International Journal of Intelligent Information and Database Systems,Inderscience Enterprises Ltd.,17515858|17515866 +International Journal of Intelligent Information Processing,AICIT,20931964|22339426 +International Journal of Intelligent Information Systems,Science Publishing Group,23287675| +International Journal of Intelligent Information Technologies,IGI Global,15483657|15483665 +International Journal of Intelligent Mechatronics and Robotics,IGI Global,21561664|21561656 +International Journal of Intelligent Systems,Wiley Blackwell (John Wiley & Sons),08848173|1098111X +International Journal of Intelligent Systems and Applications,MECS Publisher,2074904X|20749058 +International Journal of Intelligent Systems and Applications in Engineering,International Journal of Intelligent Systems and Applications in Engineering,21476799 +International Journal of Intelligent Systems Technologies and Applications,Inderscience Enterprises Ltd.,17408865|17408873 +International Journal of Intelligent Transportation Systems Research,Springer-Verlag,13488503|18688659 +International Journal of Intelligent Unmanned Systems,Emerald (MCB UP ),20496427| +International Journal of Intensive Short-Term Dynamic Psychotherapy,Wiley Blackwell (John Wiley & Sons),10967028|10991182 +International Journal of Interactive Communication Systems and Technologies,IGI Global,21554218|21554226 +International Journal of Interactive Mobile Technologies (iJIM),International Association of Online Engineering,18657923 +International Journal of Interactive Multimedia and Artificial Intelligence,IMAI Software - International Journal of Interactive Multimedia and Artificial Intelligence,19891660 +International Journal of Interactive Worlds,IBIMA Publishing,21659508 +International Journal of Intercultural Information Management,Inderscience Enterprises Ltd.,17500028|17500036 +International Journal of Intercultural Relations,Elsevier ,01471767| +International Journal of Interdisciplinary Telecommunications and Networking,IGI Global,19418663|19418671 +International Journal of Interferon Cytokine and Mediator Research,Dove Medical Press,1179139X +International Journal of Internal Medicine,Scientific and Academic Publishing,23261064| +International Journal of Internet and Distributed Systems,"""Scientific Research Publishing, Inc.""",23277157|23277165 +International Journal of Internet and Enterprise Management,Inderscience Enterprises Ltd.,14761300|17415330 +International Journal of Internet Manufacturing and Services,Inderscience Enterprises Ltd.,17516048|17516056 +International Journal of Internet Marketing and Advertising,Inderscience Enterprises Ltd.,14775212|17418100 +International Journal of Internet Protocol Technology,Inderscience Enterprises Ltd.,17438209|17438217 +International Journal of Internet Technology and Secured Transactions,Inderscience Enterprises Ltd.,1748569X|17485703 +International Journal of Inventory Research,Inderscience Enterprises Ltd.,17466962|17466970 +International Journal of Invertebrate Reproduction,Informa UK (Taylor & Francis),01651269| +International Journal of Invertebrate Reproduction and Development,Informa UK (Taylor & Francis),01688170| +International Journal of Islamic and Middle Eastern Finance and Management,Emerald (MCB UP ),17538394| +International Journal of Islamic Architecture,Intellect,20455895|20455909 +International Journal of Islamic Marketing and Branding,Inderscience Enterprises Ltd.,20550944|20550952 +International Journal of IT Standards and Standardization Research,IGI Global,15393062|15393054 +International Journal of Japan Association for Management Systems,Japanese Association for Management Systems,18842089|21882460 +International Journal of Japanese Sociology,Wiley Blackwell (Blackwell Publishing),09187545|14756781 +International Journal of Journalism & Mass Communication,Graphy Publications,23492635 +International Journal of Jungian Studies,Informa UK (Taylor & Francis),19409052|19409060 +International Journal of KAATSU Training Research,Japan Kaatsu Training Society,13494562|18826628 +International Journal of Keratoconus and Ectatic Corneal Diseases,Jaypee Brothers Medical Publishing,22773800|22774203 +International Journal of Kinesiology and Sports Science,Australian International Academic Centre,2202946X +International Journal of Knowledge and Learning,Inderscience Enterprises Ltd.,17411009|17411017 +International Journal of Knowledge and Systems Science,IGI Global,19478208|19478216 +International Journal of Knowledge and Web Intelligence,Inderscience Enterprises Ltd.,17558255|17558263 +INTERNATIONAL JOURNAL OF KNOWLEDGE CONTENT DEVELOPMENT & TECHNOLOGY,Research Institute for Knowledge Content Development & Technology,22340068| +International Journal of Knowledge Discovery in Bioinformatics,IGI Global,19479115|19479123 +International Journal of Knowledge Engineering,Bioinfo Publications,09765816|09765824 +International Journal of Knowledge Engineering,EJournal Publishing,23826185|23826185 +International Journal of Knowledge Engineering and Data Mining,Inderscience Enterprises Ltd.,17552087|17552095 +International Journal of Knowledge Engineering and Soft Data Paradigms,Inderscience Enterprises Ltd.,17553210|17553229 +International Journal of Knowledge Management,IGI Global,15480666|15480658 +International Journal of Knowledge Management Studies,Inderscience Enterprises Ltd.,17438268|17438276 +International Journal of Knowledge Society Research,IGI Global,19478429|19478437 +International Journal of Knowledge-based and Intelligent Engineering Systems,IOS Press,13272314|18758827 +International Journal of Knowledge-Based Development,Inderscience Enterprises Ltd.,20404468|20404476 +International Journal of Knowledge-Based Organizations,IGI Global,21556393|21556407 +International Journal of Laboratory Hematology,Wiley Blackwell (Blackwell Publishing),17515521|13652257 +International Journal of Laboratory Medicine & Research,Graphy Publications,24554006 +International Journal of Land Systems,International Journal of Land Systems,2156325X| +International Journal of Language & Communication Disorders,Wiley Blackwell (Blackwell Publishing),13682822|14606984 +International Journal of Language Academy,International Journal of Language Academy,23420251| +International Journal of Language and Culture,John Benjamins Publishing Company,22143157|22143165 +International Journal of Language and Linguistics,Science Publishing Group,23300205| +International Journal of Language and Literature,American Research Institute for Policy Development,2334234X|23342358 +International Journal of Language Translation and Intercultural Communication,National Documentation Centre,22414304|22417214 +International Journal of Languages Education,International Journal of Languages Education and Teaching,21984999| +International Journal of Languages Literature and Linguistics,EJournal Publishing,23826282|23826282 +International Journal of Laser Dentistry,Jaypee Brothers Medical Publishing,22495614|22495622 +International Journal of Law and Information Technology,Oxford University Press,09670769|14643693 +International Journal of Law and Management,Emerald (MCB UP ),03090558| +International Journal of Law and Psychiatry,Elsevier ,01602527| +International Journal of Law Crime and Justice,Elsevier ,17560616| +International Journal of Law in Context,Cambridge University Press,17445523|17445531 +International Journal of Law in the Built Environment,Emerald (MCB UP ),17561450| +International Journal of Law Policy and the Family,Oxford University Press,13609939|14643707 +International Journal of Leadership in Education,Informa UK (Taylor & Francis),13603124|14645092 +International Journal of Lean Enterprise Research,Inderscience Enterprises Ltd.,17542294|17542308 +International Journal of Lean Six Sigma,Emerald (MCB UP ),20404166| +International Journal of Learner Corpus Research,John Benjamins Publishing Company,22151478|22151486 +International Journal of Learning and Change,Inderscience Enterprises Ltd.,17402875|17402883 +International Journal of Learning and Development,"""Macrothink Institute, Inc.""",21644063 +International Journal of Learning and Intellectual Capital,Inderscience Enterprises Ltd.,14794853|14794861 +International Journal of Learning and Media,MIT Press,19436068 +International Journal of Learning and Teaching,EJournal Publishing,23772891| +International Journal of Learning and Teaching,Sciencepark Research Organization and Counseling,19864558 +International Journal of Learning Management Systems,Natural Sciences Publishing,20908466|20908474 +International Journal of Learning Technology,Inderscience Enterprises Ltd.,14778386|17418119 +International Journal of Legal Medicine,Springer-Verlag,09379827|14371596 +International Journal of Legal Progress,International Journal of Legal Progress,21496021 +International Journal of Leisure and Tourism Marketing,Inderscience Enterprises Ltd.,17575567|17575575 +International Journal of Leprosy and Other Mycobacterial Diseases,The International Leprosy Association,0148916X|1544581X +International Journal of Lexicography,Oxford University Press,09503846|14774577 +International Journal of Liability and Scientific Enquiry,Inderscience Enterprises Ltd.,17416426|17416434 +International Journal of Library and Information Science,Academic Journals,21412537 +International Journal of Library Science,Scientific and Academic Publishing,2168488X| +International Journal of Life Science and Medical Research,The World Academic Publishing,22264566|22264558 +International Journal of Life Sciences,Nepal Journals Online,20910525 +International Journal of Lifecycle Performance Engineering,Inderscience Enterprises Ltd.,20438648|20438656 +International Journal of Lifelong Education,Informa UK (Taylor & Francis),02601370|1464519X +International Journal of Linguistics,"""Macrothink Institute, Inc.""",19485425 +International Journal of Linguistics and Communication,American Research Institute for Policy Development,2372479X|23724803 +International Journal of Listening,Informa UK (Taylor & Francis),10904018|1932586X +International Journal of Literature and Art,"""Science and Engineering Publishing, Co.""",23317205| +International Journal of Literature and Arts,Science Publishing Group,23310553| +International Journal of Livestock Production,Academic Journals,21412448 +International Journal of Livestock Research,ScopeMed International Medical Journal Managment and Indexing System,22771964 +International Journal of Logistics Economics and Globalisation,Inderscience Enterprises Ltd.,17415373|17415381 +International Journal of Logistics Research and Applications,Informa UK (Taylor & Francis),13675567|1469848X +International Journal of Logistics Systems and Management,Inderscience Enterprises Ltd.,17427967|17427975 +International Journal of Low Radiation,Inderscience Enterprises Ltd.,14776545|17419190 +International Journal of Low-Carbon Technologies,Oxford University Press,17481317|17481325 +International Journal of Machine Consciousness,World Scientific ,17938430|17938473 +International Journal of Machine Intelligence,Bioinfo Publications,09752927|09759166 +International Journal of Machine Intelligence and Sensory Signal Processing,Inderscience Enterprises Ltd.,20489161|2048917X +International Journal of Machine Learning and Applications,AOSIS,22202196 +International Journal of Machine Learning and Computing,EJournal Publishing,20103700|20103700 +International Journal of Machine Learning and Cybernetics,Springer-Verlag,18688071|1868808X +International Journal of Machine Tool Design and Research,Elsevier ,00207357| +International Journal of Machine Tools and Manufacture,Elsevier ,08906955| +International Journal of Machining and Machinability of Materials,Inderscience Enterprises Ltd.,17485711|1748572X +International Journal of Malaria and Tropical Diseases (IJMTD),African Journals Online ,15963381 +International Journal of Man-Machine Studies,Elsevier ,00207373| +International Journal of Management & Information Systems (IJMIS),Clute Institute,15465748|21579628 +International Journal Of Management and Applied Research,New Millennium Discoveries,2056757X +International Journal of Management and Decision Making,Inderscience Enterprises Ltd.,14624621|17415187 +International Journal of Management and Economics,De Gruyter Open Sp. z o.o. ,22999701 +International Journal of Management and Economics Invention,Research and Analysis Journals,23957220 +International Journal of Management and Enterprise Development,Inderscience Enterprises Ltd.,14684330|17418127 +International Journal of Management and Network Economics,Inderscience Enterprises Ltd.,17542316|17542324 +International Journal of Management and Sustainability,Pak Publishing Group,23069856|23060662 +International Journal of Management Cases,GSE Research Limited,17416264| +International Journal of Management Concepts and Philosophy,Inderscience Enterprises Ltd.,14781484|17418135 +International Journal of Management Development,Inderscience Enterprises Ltd.,17528240|1752850X +International Journal of Management Economics and Business,International Journal of Management Economics and Business,21479208|21479194 +International Journal of Management Excellence,Techmind Research Society,22921648 +International Journal of Management in Education,Inderscience Enterprises Ltd.,1750385X|17503868 +International Journal of Management IT and Engineering,"""Science and Education, Ltd.""",22490558| +International Journal of Management Practice,Inderscience Enterprises Ltd.,14779064|17418143 +International Journal of Management Reviews,Wiley Blackwell (Blackwell Publishing),14608545|14682370 +International Journal of Management Science and Engineering Management,Informa UK (Taylor & Francis),17509653|17509661 +International Journal of Management Science and Engineering Research,"""Science and Engineering Publishing, Co.""",23745517| +International Journal of Managerial and Financial Accounting,Inderscience Enterprises Ltd.,17536715|17536723 +International Journal of Managerial Finance,Emerald (MCB UP ),17439132| +International Journal of Managerial Studies and Research,ARC Publications Pvt Ltd.,23490349 +International Journal of Managing Information Technology,Academy and Industry Research Collaboration Center,09755926|09755586 +International Journal of Managing Projects in Business,Emerald (MCB UP ),17538378| +International Journal of Managing Projects in Business,Emerald (MCB UP ),17538378| +International Journal of Managing Public Sector Information and Communication Technologies,Academy and Industry Research Collaboration Center,22307958|09769773 +International Journal of Managing Value and Supply Chains,Academy and Industry Research Collaboration Center,22307966|0976979X +International Journal of Manpower,Emerald (MCB UP ),01437720|00000000 +International Journal of Manufacturing Engineering,Hindawi Publishing Corporation,23567023|23145781 +International Journal of Manufacturing Materials and Mechanical Engineering,IGI Global,21561680|21561672 +International Journal of Manufacturing Research,Inderscience Enterprises Ltd.,17500591|17500605 +International Journal of Manufacturing Systems,Science Alert,21521913| +International Journal of Manufacturing Technology and Management,Inderscience Enterprises Ltd.,13682148|17415195 +International Journal of Marine Energy,Elsevier ,22141669| +International Journal of Marine Science,"""Sophia Publishing Group, Inc.""",19276648 +International Journal of Maritime Economics,Nature Publishing Group - Macmillan Publishers,13881973|13881973 +International Journal of Maritime History,SAGE Publications,08438714|20527756 +International Journal of Market Research,World Advertising Research Center,14707853|14707853 +International Journal of Marketing Studies,Canadian Center of Science and Education,1918719X|19187203 +International Journal of Markets and Business Systems,Inderscience Enterprises Ltd.,20564112|20564120 +International Journal of Masonry Research and Innovation,Inderscience Enterprises Ltd.,20569459|20569467 +International Journal of Mass Customisation,Inderscience Enterprises Ltd.,17424208|17424216 +International Journal of Mass Spectrometry,Elsevier ,13873806| +International Journal of Mass Spectrometry and Ion Physics,Elsevier ,00207381| +International Journal of Mass Spectrometry and Ion Processes,Elsevier ,01681176| +International Journal of Material and Mechanical Engineering,"""Science and Engineering Publishing, Co.""",2164280X| +International Journal of Material Forming,Springer-Verlag,19606206|19606214 +International Journal of Material Science,DEStech Publications,22264531|22264523 +International Journal of Material Science and Engineering,Seventh Sense Research Group Journals,23948884 +International Journal of Materials and Chemistry,Scientific and Academic Publishing,21665346| +International Journal of Materials and Product Technology,Inderscience Enterprises Ltd.,02681900|17415209 +International Journal of Materials and Structural Integrity,Inderscience Enterprises Ltd.,17450055|17450063 +International Journal of Materials Engineering,Scientific and Academic Publishing,21665389| +International Journal of Materials Engineering and Technology,Pushpa Publishing House,09750444| +International Journal of Materials Engineering Innovation,Inderscience Enterprises Ltd.,17572754|17572762 +International Journal of Materials Forming and Machining Processes,IGI Global,23344563|23344571 +International Journal of Materials in Engineering Applications,Elsevier ,01415530| +International Journal of Materials Mechanics and Manufacturing,EJournal Publishing,17938198|17938198 +International Journal of Materials Research (formerly Zeitschrift fuer Metallkunde),Carl Hanser Verlag GMBH & Co KG,18625282|21958556 +International Journal of Materials Science and Applications,Science Publishing Group,23272635| +International Journal of Materials Science and Engineering,International Academy Publishing (IAP),23154527| +International Journal of Maternal and Child Health,Sciknow Publications,23303417 +International Journal of Mathematical Analysis,"""Hikari, Ltd.""",13128876|13147579 +International Journal of Mathematical Education in Science and Technology,Informa UK (Taylor & Francis),0020739X|14645211 +International Journal of Mathematical Modelling and Numerical Optimisation,Inderscience Enterprises Ltd.,20403607|20403615 +International Journal of Mathematical Research,Pak Publishing Group,23117427|23062223 +International Journal of Mathematical Sciences and Computing,MECS Publisher,23109025|23109033 +International Journal of Mathematics,World Scientific ,0129167X|0129167X +INTERNATIONAL JOURNAL OF MATHEMATICS AND COMPUTER RESEARCH,Research and Analysis Journals,23207167 +International Journal of Mathematics and Mathematical Sciences,Hindawi Publishing Corporation,01611712|16870425 +International Journal of Mathematics in Operational Research,Inderscience Enterprises Ltd.,17575850|17575869 +International Journal of Mathematics Trends and Technology,Seventh Sense Research Group Journals,22315373 +International Journal of Meat Science,Science Alert,20717113| +International Journal of Mechanical and Materials Engineering,Springer (Biomed Central Ltd.),18230334|21982791 +International Journal of Mechanical Engineering,Recent Science Publications,20513232 +International Journal of Mechanical Engineering,Seventh Sense Research Group Journals,23488360 +International Journal of Mechanical Engineering and Applications,Science Publishing Group,2330023X| +International Journal Of Mechanical Engineering And Information Technology,Research and Analysis Journals,2348196X +International Journal of Mechanical Engineering and Mechatronics,Avestia Publishing,19292724 +International Journal of Mechanical Engineering and Robotics Research,EJournal Publishing,22780149| +International Journal of Mechanical Engineering Education,SAGE Publications,03064190|20504586 +International Journal of Mechanical Sciences,Elsevier ,00207403| +International Journal of Mechanics and Applications,Scientific and Academic Publishing,21659281| +International Journal of Mechanics and Materials in Design,Springer-Verlag,15691713|15738841 +International Journal of Mechanics Research,Hans Publishers,2325498X|23255005 +International Journal of Mechanisms and Robotic Systems,Inderscience Enterprises Ltd.,20477244|20477252 +International Journal of Mechatronics and Automation,Inderscience Enterprises Ltd.,20451059|20451067 +International Journal of Mechatronics and Manufacturing Systems,Inderscience Enterprises Ltd.,17531039|17531047 +International Journal of Media and Cultural Politics,Intellect,17408296|20400918 +International Journal of Medical and Clinical Research,Bioinfo Publications,09765530|09765549 +International Journal of Medical and Dental Case Reports,Incessant Nature Science Publishers Pvt Ltd,23947152| +International Journal of Medical and Dental Sciences,International Journal of Medical and Dental Sciences,24548952|23201118 +International Journal of Medical and Health Sciences Research,Pak Publishing Group,23137746|23132752 +International Journal of Medical and Pharmaceutical Case Reports,Sciencedomain International,2394109X +International Journal of Medical Biology,Ashdin Publishing,23144440|23144459 +International Journal of Medical Biotechnology & Genetics,SciDoc Publishers LLC,23791020 +International Journal of Medical Education,International Journal of Medical Education,20426372 +International Journal of Medical Engineering and Informatics,Inderscience Enterprises Ltd.,17550653|17550661 +International Journal of Medical Genetics,Hindawi Publishing Corporation,23567031|23148225 +International Journal of Medical Imaging,Science Publishing Group,23308303| +International Journal of Medical Informatics,Elsevier ,13865056| +International Journal of Medical Microbiology,Elsevier ,14384221| +International Journal of Medical Microbiology Supplements,Elsevier ,14331128| +International Journal of Medical Physics Clinical Engineering and Radiation Oncology,"""Scientific Research Publishing, Inc.""",21685436|21685444 +International Journal of Medical Research,ScopeMed International Medical Journal Managment and Indexing System,23207159 +International Journal of Medical Research & Health Sciences,Diva Enterprises Private Limited,23195886 +International Journal of Medical Research and Review,Academy of Medical and Health Sciences Research,2321127X|23208686 +International Journal of Medical Robotics and Computer Assisted Surgery,Wiley Blackwell (Robotic Publications),14785951|1478596X +International Journal of Medical Science,Seventh Sense Research Group Journals,23939117 +International Journal Of Medical Science And Clinical Invention,Research and Analysis Journals,24549576|2348991X +International Journal of Medical Science and Public Health,ScopeMed International Medical Journal Managment and Indexing System,23204664|2277338X +International Journal of Medical Sciences,Ivyspring International Publisher,14491907| +International Journal of Medicinal Chemistry,Hindawi Publishing Corporation,20902069|20902077 +International Journal of Medicinal Mushrooms,Begell House Inc.,15219437| +International Journal of Medicine,Science Publishing Corporation,23091622 +International Journal of Medicine and Biomedical Research,Michael Joanna Publications,22770941|23155019 +International Journal of Medicine and Medical Research,Ternopil State Medical University,24136077| +International Journal of Medicine and Medical Sciences,Academic Journals,20069723 +International Journal of Medicine and Pharmacy,American Research Institute for Policy Development,23725087|23725095 +International Journal of Medicine and Public Health,Medknow Publications,22308598|22308598 +International Journal of Medicine and Surgery,Mediterranean BioMedical Journals,23360313 +International Journal of Membrane Science and Technology,Cosmos Scholars Publishing House,24101869 +International Journal of Men s Health,"""Men's Studies Press, LLC""",15326306|19330278 +International Journal of Mental Health,Informa UK (Taylor & Francis),00207411|15579328 +International Journal of Mental Health & Psychiatry,OMICS Publishing Group,24714372 +International Journal of Mental Health and Addiction,Springer-Verlag,15571874|15571882 +International Journal of Mental Health and Capacity Law,Northumbria University Library,20563922 +International Journal of Mental Health Nursing,Wiley Blackwell (Blackwell Publishing),14458330|14470349 +International Journal of Mental Health Promotion,Informa UK (Taylor & Francis),14623730|20498543 +International Journal of Mental Health Systems,Springer (Biomed Central Ltd.),17524458|17524458 +International Journal of Mentoring and Coaching in Education,Emerald (MCB UP ),20466854| +International Journal of Metadata Semantics and Ontologies,Inderscience Enterprises Ltd.,17442621|1744263X +International Journal of Metaheuristics,Inderscience Enterprises Ltd.,17552176|17552184 +International Journal of Metalcasting,Springer-Verlag,19395981|21633193 +International Journal of Metallurgical & Materials Engineering,Graphy Publications,24552372 +International Journal of Metallurgical Engineering,Scientific and Academic Publishing,2167700X| +International Journal of Metals,Hindawi Publishing Corporation,2356704X|2314680X +International Journal of Methods in Psychiatric Research,Wiley Blackwell (John Wiley & Sons),10498931|1234988X +International Journal of Metrology and Quality Engineering,EDP Sciences,21076839|21076847 +International Journal of Micro Air Vehicles,SAGE Publications,17568293| +International Journal of Micro-Nano Scale Transport,Multiscience,17593093| +International Journal of Microbiology,Hindawi Publishing Corporation,1687918X|16879198 +International Journal of Microbiology & Advanced Immunology,SciDoc Publishers LLC,23299967 +International Journal of Microbiology Research,Bioinfo Publications,09755276|09759174 +International Journal of Microcirculation,S. Karger AG,01676865| +International Journal of Microstructure and Materials Properties,Inderscience Enterprises Ltd.,17418410|17418429 +International Journal of Microwave and Millimeter-Wave Computer-Aided Engineering,Wiley Blackwell (John Wiley & Sons),10501827|15226301 +International Journal of Microwave and Wireless Technologies,Cambridge University Press,17590787|17590795 +International Journal of Microwave Science and Technology,Hindawi Publishing Corporation,16875826|16875834 +International Journal of Middle East Studies,Cambridge University Press,00207438|14716380 +International Journal of Migration and Border Studies,Inderscience Enterprises Ltd.,17552419|17552427 +International Journal of Migration and Residential Mobility,Inderscience Enterprises Ltd.,20516800|20516819 +International Journal of Migration Health and Social Care,Emerald (MCB UP ),17479894|20428650 +International Journal of Mine Water,Springer-Verlag,02556960| +International Journal of Mineral Processing,Elsevier ,03017516| +International Journal of Mineralogy,Hindawi Publishing Corporation,23567058|23146036 +International Journal of Minerals Metallurgy and Materials,Springer-Verlag,16744799|1869103X +International Journal of Mining and Geological Engineering,Springer-Verlag,02690136| +International Journal of Mining and Mineral Engineering,Inderscience Enterprises Ltd.,1754890X|17548918 +International Journal of Mining Engineering,Springer-Verlag,02634546| +International Journal of Mining Engineering and Mineral Processing,Scientific and Academic Publishing,2166997X| +International Journal of Mining Reclamation and Environment,Informa UK (Taylor & Francis),17480930|17480949 +International Journal of Mining Science and Technology,Elsevier ,20952686| +International Journal of Mobile and Blended Learning,IGI Global,19418647|19418655 +International Journal of Mobile Communications,Inderscience Enterprises Ltd.,1470949X|17415217 +International Journal of Mobile Computing and Multimedia Communications,IGI Global,19379412|19379404 +International Journal of Mobile Human Computer Interaction,IGI Global,1942390X|19423918 +International Journal of Mobile Learning and Organisation,Inderscience Enterprises Ltd.,1746725X|17467268 +International Journal of Mobile Network Communications & Telematics,Academy and Industry Research Collaboration Center,18395678 +International Journal of Mobile Network Design and Innovation,Inderscience Enterprises Ltd.,17442869|17442850 +International Journal of Modeling and Optimization,IACSIT Press,20103697|20103697 +International Journal of Modeling Simulation and Scientific Computing,World Scientific ,17939623|17939615 +International Journal of Modelling and Simulation,ACTA Press,02286203| +International Journal of Modelling Identification and Control,Inderscience Enterprises Ltd.,17466172|17466180 +International Journal of Modelling in Operations Management,Inderscience Enterprises Ltd.,20424094|20424108 +International Journal of Modern Anthropology,African Journals Online ,17377374|17378176 +International Journal of Modern Botany,Scientific and Academic Publishing,21665206| +International Journal of Modern Education and Computer Science,MECS Publisher,20750161|2075017X +International Journal of Modern Education Forum,DEStech Publications,23246928|23246944 +International Journal of Modern Nonlinear Theory and Application,"""Scientific Research Publishing, Inc.""",21679479|21679487 +International Journal of Modern Physics A,World Scientific ,0217751X|0217751X +International Journal of Modern Physics B,World Scientific ,02179792|17936578 +International Journal of Modern Physics C,World Scientific ,01291831|01291831 +International Journal of Modern Physics Conference Series,World Scientific ,20101945|20101945 +International Journal of Modern Physics D,World Scientific ,02182718|02182718 +International Journal of Modern Physics E,World Scientific ,02183013|02183013 +International Journal of Molecular Biology,Bioinfo Publications,09760482|09760490 +International Journal of Molecular Ecology and Conservation,"""Sophia Publishing Group, Inc.""",1927663X +International Journal of Molecular Evolution and Biodiversity,"""Sophia Publishing Group, Inc.""",19276664 +International Journal of Molecular Imaging,Hindawi Publishing Corporation,20901712|20901720 +International Journal of Molecular Medical Science,"""Sophia Publishing Group, Inc.""",19276656 +International Journal of Molecular Medicine,Spandidos Publications,11073756|1791244X +International Journal of Molecular Medicine and Advance Sciences,Science Alert,1813176X| +International Journal of Molecular Sciences,MDPI AG,14220067 +International Journal of Molecular Veterinary Research,"""Sophia Publishing Group, Inc.""",19275331 +International Journal of Molecular Zoology,"""Sophia Publishing Group, Inc.""",1927534X +International Journal of Monetary Economics and Finance,Inderscience Enterprises Ltd.,17520479|17520487 +International Journal of Monitoring and Surveillance Technologies Research,IGI Global,21667241|2166725X +International Journal of Morphology,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7179502 +International Journal of MS Care,Consortium of Multiple Sclerosis Centers,15372073| +International Journal of Multicriteria Decision Making,Inderscience Enterprises Ltd.,2040106X|20401078 +International Journal of Multicultural Education,Eastern University,19345267 +International Journal of Multidisciplinary and Current Research,Inpressco,23213124 +International Journal of Multilingualism,Informa UK (Taylor & Francis),14790718|17477530 +International Journal of Multimedia,Bioinfo Publications,22492801|2249281X +International Journal of Multimedia and Ubiquitous Engineering,Science and Engineering Research Support Society,19750080|19750080 +International Journal of Multimedia Data Engineering and Management,IGI Global,19478534|19478542 +International Journal of Multimedia Information Retrieval,Springer-Verlag,21926611|2192662X +International Journal of Multimedia Intelligence and Security,Inderscience Enterprises Ltd.,20423462|20423470 +International Journal of Multimedia Technology,The World Academic Publishing,22251456| +International Journal of Multiphase Flow,Elsevier ,03019322| +International Journal of Multiple Research Approaches,Informa UK (Taylor & Francis),18340806|18340814 +International Journal of Museum Management and Curatorship,Informa UK (Taylor & Francis),02604779| +International Journal of Music and Performing Arts,American Research Institute for Policy Development,23742690|23742704 +International Journal of Music Education,SAGE Publications,02557614|1744795X +International Journal of Mycobacteriology,Elsevier ,22125531| +International Journal of Myriapodology,Pensoft Publishers,18752535|18752543 +International Journal of Nano and Biomaterials,Inderscience Enterprises Ltd.,17528933|17528941 +International Journal of Nano Devices Sensors and Systems (IJ-Nano),Institute of Advanced Engineering and Science,20894848| +International Journal of Nano Studies & Technology,SciDoc Publishers LLC,21678685 +International Journal of Nanobiotechnology and Pharmacy,"""Science and Education, Ltd.""",23081104| +International Journal of Nanomanufacturing,Inderscience Enterprises Ltd.,17469392|17469406 +International Journal of Nanomaterials and Chemistry,Natural Sciences Publishing,20909578|20909586 +International Journal of Nanomaterials Nanotechnology and Nanomedicine,Peertechz.com,24553492 +International Journal of Nanomedicine,Dove Medical Press,11769114|11782013 +International Journal of Nanomedicine and Nanosurgery ( ISSN 2470-3206 ),"""Sci Forschen, Inc.""",24703206 +International Journal of Nanoparticles,Inderscience Enterprises Ltd.,17532507|17532515 +International Journal of Nanoscience,World Scientific ,0219581X|17935350 +International Journal of Nanotechnology,Inderscience Enterprises Ltd.,14757435|17418151 +International Journal of Nanotechnology and Molecular Computation,IGI Global,19416318|19416326 +International Journal of Nanotechnology Biomedicine,Informa UK (Taylor & Francis),1943085X| +International Journal of Natural and Applied Sciences,African Journals Online ,7944713 +International Journal of Natural Computing Research,IGI Global,1947928X|19479298 +International Journal of Natural Sciences,Bangladesh Journals Online,22211012|22211020 +International Journal of Naval Architecture and Ocean Engineering,Elsevier ,20926782|20926782 +International Journal of Navigation and Observation,Hindawi Publishing Corporation,16875990|16876008 +International Journal of Neonatal Screening,MDPI AG,2409515X +International Journal of Nephrology,Hindawi Publishing Corporation,2090214X|20902158 +International Journal of Nephrology and Kidney Failure ( ISSN 2380-5498 ),"""Sci Forschen, Inc.""",23805498 +International Journal of Nephrology and Renovascular Disease,Dove Medical Press,11787058 +International Journal of Network Management,Wiley Blackwell (John Wiley & Sons),10557148|10991190 +International Journal of Network Science,Inderscience Enterprises Ltd.,20482175|20482183 +International Journal of Network Security & Its Applications,Academy and Industry Research Collaboration Center,09752307|09749330 +International Journal of Networked and Distributed Computing,Atlantis Press,22117946| +International Journal of Networked Computing and Advanced Information Management,AICIT,2093968X|22343687 +International Journal of Networking,Bioinfo Publications,2249278X|22492798 +International Journal of Networking and Computing,IJNC Editorial Committee,21852839|21852847 +International Journal of Networking and Virtual Organisations,Inderscience Enterprises Ltd.,14709503|17415225 +International Journal of Networks and Communications,Scientific and Academic Publishing,21684936| +International Journal of Neural Networks,Bioinfo Publications,22492763|22492771 +International Journal of Neural Systems,World Scientific ,01290657|17936462 +International Journal of Neurology and Brain Disorders,Ommega Online Publishers,23771348 +International Journal of Neurology Research,ACT Publishing Group,23135611| +International Journal of Neuropathology,Columbia International Publishing,21631069 +International Journal of Neuropharmacology,Elsevier ,03759458| +International Journal of Neuropsychotherapy,"""Dahlitz Media Pty, Ltd.""",22027653 +International Journal of Neurorehabilitation,OMICS Publishing Group,23760281 +International Journal of Neuroscience,Informa UK (Taylor & Francis),00207454|15435245 +International Journal of New Computer Architectures and their Applications,The Society of Digital Information and Wireless Communications (SDIWC),22209085| +International Journal of Next-Generation Networks,Academy and Industry Research Collaboration Center,09757252|09757023 +International Journal of Non-Linear Mechanics,Elsevier ,00207462| +International Journal of Nonferrous Metallurgy,"""Scientific Research Publishing, Inc.""",21682054|21682062 +International Journal of Nonlinear Optical Physics,World Scientific ,02181991| +International Journal of Nonlinear Sciences and Numerical Simulation,Walter de Gruyter GmbH,15651339|21910294 +International Journal of Nonprofit and Voluntary Sector Marketing,Wiley Blackwell (John Wiley & Sons),14654520|1479103X +International Journal of Nuclear Desalination,Inderscience Enterprises Ltd.,1476914X|17419204 +International Journal of Nuclear Energy,Hindawi Publishing Corporation,23567066|23146060 +International Journal of Nuclear Energy Science and Engineering,"""Science and Engineering Publishing, Co.""",22263217| +International Journal of Nuclear Energy Science and Technology,Inderscience Enterprises Ltd.,17416361|1741637X +International Journal of Nuclear Governance Economy and Ecology,Inderscience Enterprises Ltd.,17424186|17424194 +International Journal of Nuclear Hydrogen Production and Applications,Inderscience Enterprises Ltd.,17434939|17434947 +International Journal of Nuclear Knowledge Management,Inderscience Enterprises Ltd.,1479540X|14795418 +International Journal of Nuclear Law,Inderscience Enterprises Ltd.,17416388|17416396 +International Journal of Nuclear Medicine and Biology,Elsevier ,00470740| +International Journal of Nuclear Medicine Research,Cosmos Scholars Publishing House,24089788 +International Journal of Number Theory,World Scientific ,17930421|17937310 +International Journal of Numerical Methods and Applications,Pushpa Publishing House,09750452| +International Journal of Numerical Methods for Heat & Fluid Flow,Emerald (MCB UP ),09615539| +International Journal of Numerical Modelling Electronic Networks Devices and Fields,Wiley Blackwell (John Wiley & Sons),08943370|10991204 +International Journal of Nursing,American Research Institute for Policy Development,23737662|23737670 +International Journal of Nursing & Clinical Practices,Graphy Publications,23944978 +International Journal of Nursing and Midwifery,Academic Journals,21412456 +International Journal of Nursing Care,Diva Enterprises Private Limited,23208643|23208651 +International journal of Nursing Didactics,Innovative Journal,22315454 +International Journal of Nursing Education,Diva Enterprises Private Limited,09749349|09749357 +International Journal of Nursing Education and Research,Diva Enterprises Private Limited,23478640|24542660 +International Journal of Nursing Education Scholarship,Walter de Gruyter GmbH,21945772|1548923X +International Journal of Nursing Knowledge,Wiley Blackwell (Blackwell Publishing),20473087| +International Journal of Nursing Practice,Wiley Blackwell (Blackwell Publishing),13227114|1440172X +International Journal of Nursing Science,Scientific and Academic Publishing,21677441| +International Journal of Nursing Sciences,Elsevier ,23520132| +International Journal of Nursing Studies,Elsevier ,00207489| +International Journal of Nursing Terminologies and Classifications,Wiley Blackwell (Blackwell Publishing),15415147|1744618X +International Journal of Nusantara Islam,Sunan Gunung Djati State Islamic University of Bandung,22525904|2355651X +International Journal Of Nutrition,Open Access Pub,23797835 +International Journal of Nutrition and Dietetics,Pushpa Publishing House,23475277| +International Journal of Nutrition and Food Sciences,Science Publishing Group,23272694| +International Journal of Nutrition and Metabolism,Academic Journals,21412332 +International journal of Nutrition Pharmacology Neurological Diseases,Medknow Publications,22310738| +International Journal of Obesity,Nature Publishing Group,03070565|03070565 +International Journal of Obesity Supplements,Nature Publishing Group,20462166|20462174 +International Journal of Obstetric Anesthesia,Elsevier ,0959289X| +International Journal of Occupational and Environmental Health,Maney Publishing,10773525|20493967 +International Journal of Occupational Medicine and Environmental Health,Nofer Institute of Occupational Medicine,12321087|1896494X +International Journal of Occupational Safety and Ergonomics,Informa UK (Taylor & Francis),10803548|23769130 +International Journal of Occupational Safety and Health,Nepal Journals Online,20910878|20910878 +International Journal of Ocean System Engineering,Korean Society of Ocean Engineers,22336478| +International Journal of Ocean Systems Management,Inderscience Enterprises Ltd.,17526582|17526590 +International Journal of Oceanography,Hindawi Publishing Corporation,16879406|16879414 +International Journal of Oceanography and Marine Ecological System,Science Alert,2224249X| +International Journal of Odonatology,Informa UK (Taylor & Francis),13887890|21596719 +International journal of odontostomatology,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,0718381X +International Journal of Offender Therapy and Comparative Criminology,SAGE Publications,0306624X|15526933 +International Journal of Offshore and Polar Engineering,International Society of Offshore and Polar Engineers,10535381| +International Journal of Oil Gas and Coal Engineering,Science Publishing Group,23767669| +International Journal of Oil Gas and Coal Technology,Inderscience Enterprises Ltd.,17533309|17533317 +International Journal of Older People Nursing,Wiley Blackwell (Blackwell Publishing),17483735|17483743 +International Journal of Oncology,Spandidos Publications,10196439|17912423 +International Journal of One Health,Veterinary World,24555673| +International Journal of Online Dispute Resolution,Boom Uitgevers Den Haag,23525002| +International Journal of Online Engineering (iJOE),International Association of Online Engineering,18681646|18612121 +International Journal of Online Marketing,IGI Global,21561753|21561745 +International Journal of Online Marketing Research,ScopeMed International Medical Journal Managment and Indexing System,24694029 +International Journal of Online Pedagogy and Course Design,IGI Global,21556873|21556881 +International Journal of Open Problems in Complex Analysis,"""Al Manhal FZ, LLC""",20742827| +International Journal of Open Problems in Computer Science and Mathematics,"""Al Manhal FZ, LLC""",19986262| +International Journal of Open Source Software and Processes,IGI Global,19423926|19423934 +International Journal of Operational Research,Inderscience Enterprises Ltd.,17457645|17457653 +International Journal of Operations & Production Management,Emerald (MCB UP ),01443577| +International Journal of Operations Research and Information Systems,IGI Global,19479328|19479336 +International Journal of Ophthalmic Pathology,OMICS Publishing Group,23248599 +International Journal of Ophthalmic Practice,Mark Allen Group,20445504|20522851 +International Journal of Ophthalmic Research,ACT Publishing Group,24095680| +International Journal of Ophthalmology,Press of International Journal of Ophthalmology (IJO Press),22223959|22274898 +International Journal of Ophthalmology & Eye Science,SciDoc Publishers LLC,2332290X +International Journal of Optics,Hindawi Publishing Corporation,16879384|16879392 +International Journal of Optics and Applications,Scientific and Academic Publishing,21685053| +International Journal of Optoelectronic Engineering,Scientific and Academic Publishing,21677301| +International Journal of Optomechatronics,Informa UK (Taylor & Francis),15599612|15599620 +International Journal of Oral and Craniofacial Science,Peertechz.com,24554634 +International Journal of Oral and Maxillofacial Surgery,Elsevier ,09015027|13990020 +International Journal of Oral Biology,Korean Academy of Oral Biology,12267155|22876618 +International Journal of Oral Health Dentistry,Diva Enterprises Private Limited,23954914|2395499X +International Journal of Oral Health Sciences,Medknow Publications,22316027| +International Journal of Oral Implantology and Clinical Research,Jaypee Brothers Medical Publishing,09756523|09760520 +International Journal of Oral Science,Nature Publishing Group,16742818|20493169 +International Journal of Oral Surgery,Elsevier ,03009785| +International Journal of Oral-Medical Sciences,Nihon University School of Dentistry at Matsudo Research Institute of Oral Science,13479733|21854254 +International Journal of Organic Chemistry,"""Scientific Research Publishing, Inc.""",21614687|21614695 +International Journal of Organisational Design and Engineering,Inderscience Enterprises Ltd.,17589797|17589800 +International Journal of Organization Theory and Behavior,Informa UK (Marcel Dekker),10934537|15324273 +International Journal of Organizational Analysis,Emerald (MCB UP ),19348835| +International Journal of Organizational and Collective Intelligence,IGI Global,19479344|19479352 +International Journal of Orthodontia,Elsevier ,10723471| +International Journal of Orthodontia and Dentistry for Children,Elsevier ,00970522| +International Journal of Orthodontia and Oral Surgery,Elsevier ,10723498| +International Journal of Orthodontia and Oral Surgery (1919),Elsevier ,1072348X| +International Journal of Orthodontia Oral Surgery and Radiography,Elsevier ,00996963| +International Journal of Orthopaedic and Trauma Nursing,Elsevier ,18781241| +International Journal of Orthopaedics,ACT Publishing Group,23115106| +International Journal of Orthopedics and Rehabilitation,Savvy Science Publisher,23130954 +International Journal of Osteoarchaeology,Wiley Blackwell (John Wiley & Sons),1047482X|10991212 +International Journal of Osteopathic Medicine,Elsevier ,17460689| +International Journal of Osteoporosis and Metabolic Disorders,Science Alert,19945442| +International Journal of Otolaryngology,Hindawi Publishing Corporation,16879201|1687921X +International Journal of Otolaryngology and Head & Neck Surgery,"""Scientific Research Publishing, Inc.""",21685452|21685460 +International Journal of Otorhinolaryngology,Avens Publishing Group,23800569 +International Journal of Otorhinolaryngology and Head and Neck Surgery,Medip Academy,24545929|24545937 +International Journal of P2P Network Trends and Technology,Seventh Sense Research Group Journals,22492615 +International Journal of Paediatric Dentistry,Wiley Blackwell (Blackwell Publishing),09607439|1365263X +International Journal of Paleopathology,Elsevier ,18799817| +International Journal of Palliative Care,Hindawi Publishing Corporation,23567074|2314579X +International Journal of Palliative Nursing,Mark Allen Group,13576321|2052286X +International Journal of Parallel and Distributed Computing,Bioinfo Publications,22771638|22771646 +International Journal of Parallel Emergent and Distributed Systems,Informa UK (Taylor & Francis),17445760|17445779 +International Journal of Parallel Programming,Springer-Verlag,08857458|15737640 +International Journal of Parasitology Research,Bioinfo Publications,09753702|09759182 +International Journal of Partial Differential Equations,Hindawi Publishing Corporation,23567082|23146524 +International Journal of Particle Therapy,International Journal of Particle Therapy,23315180| +International Journal of Pattern Recognition and Artificial Intelligence,World Scientific ,02180014|02180014 +International Journal of Pavement Engineering,Informa UK (Taylor & Francis),10298436|1477268X +International Journal of Pavement Research and Technology,Elsevier ,19966814| +International Journal of Peace and Development Studies,Academic Journals,21416621 +International Journal of Pedagogical Innovations,Scientific Publishing Center,22101543| +International Journal of Pedagogies and Learning,Informa UK (Taylor & Francis),18334105|18334105 +International Journal of Pedagogy Innovation and New Technologies,Index Copernicus International,13206591|23920092 +International Journal of Pediatric Endocrinology,Springer (Biomed Central Ltd.),16879848|16879856 +International Journal of Pediatric Obesity,Wiley Blackwell (Blackwell Publishing),17477166|17477174 +International Journal of Pediatric Otorhinolaryngology,Elsevier ,01655876|01655876 +International Journal of Pediatric Otorhinolaryngology Extra,Elsevier ,18714048| +International Journal of Pediatrics,Hindawi Publishing Corporation,16879740|16879759 +International Journal of Pediatrics & Neonatal Care,Graphy Publications,24552364 +International Journal of Pediatrics and Adolescent Medicine,Elsevier ,23526467| +International Journal of Pediatrics and Child Health,Savvy Science Publisher,23118687 +International Journal of Peer to Peer Networks,Academy and Industry Research Collaboration Center,22295240|22293930 +International Journal of People-Oriented Programming,IGI Global,21561796|21561788 +International journal of peptide & protein research,Wiley Blackwell (Blackwell Publishing),03678377| +International Journal of Peptide Research and Therapeutics,Springer-Verlag,15733149|15733904 +International Journal of Peptides,Hindawi Publishing Corporation,16879767|16879775 +International Journal of Performance Arts and Digital Media,Informa UK (Taylor & Francis),14794713|20400934 +International Journal of Perioperative Ultrasound and Applied Technologies,Jaypee Brothers Medical Publishing,22777466|22777474 +International Journal of Personal Construct Psychology,Informa UK (Taylor & Francis),0893603X| +International Journal of Pervasive Computing and Communications,Emerald (MCB UP ),17427371| +International Journal of Pest Management,Informa UK (Taylor & Francis),09670874|13665863 +International Journal of Pest Management Part A,Informa UK (Taylor & Francis),04345541| +International Journal of Pest Management Part B,Informa UK (Taylor & Francis),05331846| +International Journal of Pest Management Part C,Informa UK (Taylor & Francis),05331854| +International Journal of Petroleum Engineering,Inderscience Enterprises Ltd.,17548888|17548896 +International Journal of Petroleum Technology,Avanti Publishers,2409787X +International Journal of Pharma Medicine and Biological Sciences,EJournal Publishing,22785221 +International Journal of Pharmaceutical and Healthcare Marketing,Emerald (MCB UP ),17506123| +International Journal of Pharmaceutical and Life Sciences,Bangladesh Journals Online,23050330| +International Journal of Pharmaceutical Chemistry,Scholar Science Journals,2249734X +International Journal of Pharmaceutical Investigation,Medknow Publications,2230973X| +International Journal of Pharmaceutical Medicine,Springer-Verlag,13649027| +International Journal of Pharmaceutical Science Invention,IOSR Journals,2319670X|23196718 +International Journal of Pharmaceutical Sciences and Research,International Journal of Pharmaceutical Sciences and Research,23205148|09758232 +International Journal of Pharmaceutical Sciences Research,Graphy Publications,23941502 +International Journal of Pharmaceutical Sciences Review and Reseazch,"""Science and Education, Ltd.""",0976044X| +International Journal of Pharmaceuticals Analysis,Bioinfo Publications,09753079|09759190 +International Journal of Pharmaceutics,Elsevier ,03785173| +International Journal of Pharmacognosy,International Journal of Pharmaceutical Sciences and Research,23483962|23483962 +International Journal of Pharmacognosy and Phytochemistry,Recent Science Publications,20517858 +International Journal of Pharmacokinetics,"""Future Science, LTD""",20530846|20530854 +International Journal of Pharmacological Research,Scholar Science Journals,22773312 +International Journal of Pharmacology,Science Alert,18117775|18125700 +International Journal of Pharmacology and Clinical Sciences,EManuscript Services,22780068 +International Journal of Pharmacology and Clinical Trials,Recent Science Publications,20518293 +International Journal of Pharmacology and Toxicology,Science Publishing Corporation,23102985 +International Journal of Pharmacology Phytochemistry and Ethnomedicine,SciPress Ltd.,22976922 +International Journal of Pharmacy and Biomedical Engineering,Seventh Sense Research Group Journals,23942576 +International Journal of Pharmacy Practice,Wiley Blackwell (Blackwell Publishing),09617671|00000000 +International Journal of Philippine Science and Technology,International Journal of Philippine Science and Technology,24493767 +International Journal of Philosophical Studies,Informa UK (Taylor & Francis),09672559|14664542 +International Journal of Philosophy,Science Publishing Group,23307439| +International Journal of Philosophy and Theology,Informa UK (Taylor & Francis),21692327|21692335 +International Journal of Philosophy and Theology (IJPT),American Research Institute for Policy Development,23335750|23335769 +International Journal of Philosophy Study,"""Science and Engineering Publishing, Co.""",23281634| +International Journal of Phonosurgery & Laryngology,Jaypee Brothers Medical Publishing,22307508|22313702 +International Journal of Photochemistry,Hindawi Publishing Corporation,23567090|23147148 +International Journal of Photoenergy,Hindawi Publishing Corporation,1110662X|1687529X +International Journal of Physical and Social Sciences,"""Science and Education, Ltd.""",22495894| +International Journal of Physical Distribution,Emerald (MCB UP ),00207527| +International Journal of Physical Distribution & Logistics Management,Emerald (MCB UP ),09600035|00000000 +International Journal of Physical Distribution & Materials Management,Emerald (MCB UP ),02698218| +INTERNATIONAL JOURNAL OF PHYSICAL EDUCATION,Hind Agri Horticultural Society,09742638|09767924 +International Journal of Physical Education Sports Management and Yogic Sciences,Diva Enterprises Private Limited,22311394|2278795X +International Journal of Physical Medicine & Rehabilitation,OMICS Publishing Group,23299096 +International Journal of Physical Modelling in Geotechnics,Thomas Telford Ltd.,1346213X|20426550 +International Journal of Physical Research,Science Publishing Corporation,23079010 +International Journal of Physics,"""Science and Education Publishing Co., Ltd.""",23334568| +International Journal of Physics and Astronomy,American Research Institute for Policy Development,23724811|2372482X +International Journal of Physiology,Diva Enterprises Private Limited,23206039|2320608X +International Journal of Physiology and Pathophysiology,Begell House Inc.,2155014X| +International Journal of Physiotherapy,International Journal of Physiotherapy,23495987|23488336 +International Journal of Physiotherapy and Research,I MED Research Publications,23218975|23211822 +International Journal of Phytocosmetics and Natural Ingredients,International Society for Phytocosmetic Sciences,23740639|23740639 +International Journal of Phytomedicine,Advanced Research Journals,9750185 +International Journal of Phytopharmacy,Scholar Science Journals,22772928 +International Journal of Phytoremediation,Informa UK (Taylor & Francis),15226514|15497879 +International Journal of PIXE,World Scientific ,01290835|17936616 +International Journal of Planning and Scheduling,Inderscience Enterprises Ltd.,2044494X|20444958 +International Journal of Plant & Soil Science,Sciencedomain International,23207035 +International Journal of Plant and Environment,International Society of Environmental Botanists,24541117| +International Journal of Plant Biology,PAGEPress Publications,20370156|20370164 +International Journal of Plant Breeding and Genetics,Science Alert,18193595| +International Journal of Plant Genomics,Hindawi Publishing Corporation,16875370|16875389 +International Journal of Plant Pathology,Science Alert,19960719| +International Journal of Plant Physiology and Biochemistry,Academic Journals,21412162 +INTERNATIONAL JOURNAL OF PLANT PROTECTION,Hind Agri Horticultural Society,09742670|09766855 +International Journal of Plant Research,Scientific and Academic Publishing,21632596| +International Journal of Plant Sciences,The University of Chicago Press,10585893|15375315 +International Journal of Plasma Science and Engineering,Hindawi Publishing Corporation,16876245|16876253 +International Journal of Plasticity,Elsevier ,07496419| +International Journal of Plastics Technology,Springer-Verlag,0972656X|0975072X +International Journal of Play,Informa UK (Taylor & Francis),21594937|21594953 +International Journal of Play Therapy,American Psychological Association,15556824|19390629 +International Journal of Pluralism and Economics Education,Inderscience Enterprises Ltd.,17575648|17575656 +International Journal of Police Science and Management,SAGE Publications,14613557|14781603 +International Journal of Political Economy,Informa UK (Taylor & Francis),08911916|15580970 +International Journal of Political Science,ARC Publications Pvt Ltd.,24549452 +International Journal of Politics & Law Research,Sciknow Publications,23292245 +International Journal of Politics Culture and Society,Springer-Verlag,08914486|15733416 +International Journal of Polymer Analysis and Characterization,Informa UK (Taylor & Francis),1023666X|15635341 +International Journal of Polymer Science,Hindawi Publishing Corporation,16879422|16879430 +International Journal of Polymeric Materials,Informa UK (Taylor & Francis),00914037|1563535X +International Journal of Population Geography,Wiley Blackwell (John Wiley & Sons),10773495|10991220 +International Journal of Population Research,Hindawi Publishing Corporation,20904029|20904037 +International Journal of Population Studies,Whioce Publishing Pte Ltd.,24248150|24248606 +International Journal of Portfolio Analysis and Management,Inderscience Enterprises Ltd.,20482361|2048237X +International Journal of Postharvest Technology and Innovation,Inderscience Enterprises Ltd.,17447550|17447569 +International Journal of Poultry Science,Science Alert,16828356| +International Journal of Power and Energy Conversion,Inderscience Enterprises Ltd.,17571154|17571162 +International Journal of Power and Energy Systems,ACTA Press,10783466| +International Journal of Power Electronics,Inderscience Enterprises Ltd.,1756638X|17566398 +International Journal of Power Electronics and Drive Systems (IJPEDS),Institute of Advanced Engineering and Science,20888694|20888694 +International Journal of Power Management Electronics,Hindawi Publishing Corporation,16876679|16876687 +International Journal of Powertrains,Inderscience Enterprises Ltd.,17424267|17424275 +International Journal of Practical Nursing,"""Red Flower Publication Private, Ltd.""",23477083|24555010 +International Journal of Practical Theology,Walter de Gruyter GmbH,14306921|16129768 +International Journal of Practice-based Learning in Health and Social Care,"""Coventry University, Lanchester Library""",20516223 +International Journal of Precision Engineering and Manufacturing,Springer-Verlag,12298557|20054602 +International Journal of Precision Engineering and Manufacturing-Green Technology,Springer-Verlag,22886206|21980810 +International Journal of Precision Technology,Inderscience Enterprises Ltd.,17552060|17552079 +International Journal of Pressure Vessels and Piping,Elsevier ,03080161| +International Journal of Prevention and Treatment,Scientific and Academic Publishing,2167728X| +International Journal of Prevention and Treatment of Substance Use Disorders,Sri Lanka Journals Online ,22793909| +International Journal of Preventive and Public Health Sciences,IJSS Group of Journals,24549223 +International Journal of Preventive Medicine,Medknow Publications,20087802| +International Journal of Primatology,Springer-Verlag,01640291|15738604 +International Journal of Prisoner Health,Emerald (MCB UP ),17449200|17449219 +International Journal of Privacy and Health Information Management,IGI Global,21555621|2155563X +International Journal of Private Law,Inderscience Enterprises Ltd.,17536235|17536243 +International Journal of Probability and Statistics,Scientific and Academic Publishing,21684871| +International Journal of Process Management and Benchmarking,Inderscience Enterprises Ltd.,14606739|1741816X +International Journal of Process Systems Engineering,Inderscience Enterprises Ltd.,17576342|17576350 +INTERNATIONAL JOURNAL OF PROCESSING AND POST HARVEST TECHNOLOGY,Hind Agri Horticultural Society,09765638|22316426 +International Journal of Procurement Management,Inderscience Enterprises Ltd.,17538432|17538440 +International Journal of Product Development,Inderscience Enterprises Ltd.,14779056|17418178 +International Journal of Product Lifecycle Management,Inderscience Enterprises Ltd.,17435110|17435129 +International Journal of Production Economics,Elsevier ,09255273| +International Journal of Production Management and Engineering,Universitat Politecnica de Valencia,23404876 +International Journal of Production Research,Informa UK (Taylor & Francis),00207543|1366588X +International Journal of Productivity and Performance Management,Emerald (MCB UP ),17410401|00000000 +International Journal of Productivity and Quality Management,Inderscience Enterprises Ltd.,17466474|17466482 +International Journal of Productivity Management and Assessment Technologies,IGI Global,21609837|21609845 +International Journal of Programming Languages and Applications,Academy and Industry Research Collaboration Center,18396291 +International Journal of Project Management,Elsevier ,02637863| +International Journal of Project Organisation and Management,Inderscience Enterprises Ltd.,17402891|17402905 +International Journal of Prosthodontics and Restorative Dentistry,Jaypee Brothers Medical Publishing,22316361|2231637X +International Journal of Protective Structures,SAGE Publications,20414196|2041420X +International Journal of Protein Research,Wiley Blackwell (Blackwell Publishing),00207551| +International Journal of Proteomics,Hindawi Publishing Corporation,20902166|20902174 +International Journal of Psychiatric Nursing,Diva Enterprises Private Limited,23949465|2395180X +International Journal of Psychiatry,Sciknow Publications,23724064 +International Journal of Psychiatry and Neurology,Hans Publishers,21665788|2166580X +INTERNATIONAL JOURNAL OF PSYCHIATRY AND PSYCHOLOGICAL RESEARCHES,"""GuvenGrup, Ltd. - International Journal of Psychiatry and Psychological Researches""",21488215| +International Journal of Psychiatry in Clinical Practice,Informa UK (Taylor & Francis),13651501|14711788 +International Journal of Psychoanalytic Self Psychology,Informa UK (Taylor & Francis),15551024|19409141 +International Journal of Psychological Studies,Canadian Center of Science and Education,19187211|1918722X +International Journal of Psychology,Wiley Blackwell (John Wiley & Sons),00207594|1464066X +International Journal of Psychology & Behavior Analysis,Graphy Publications,24553867 +International Journal of Psychology a Biopsychosocial Approach,Vytautas Magnus University,19417233|2345024X +International Journal of Psychology and Behavioral Sciences,Scientific and Academic Publishing,21631948| +International Journal of Psychology and Counselling,Academic Journals,21412499 +International Journal of Psychology and Educational Studies,Kiperonline Academic,21489378|21489378 +International Journal of Psychology and Psychiatry,Diva Enterprises Private Limited,23206233 +International Journal of Psychophysiology,Elsevier ,01678760| +International Journal of Psychotherapy,Informa UK (Taylor & Francis),13569082|14698498 +International Journal of Public Administration,Informa UK (Taylor & Francis),01900692|15324265 +International Journal of Public Administration in the Digital Age,IGI Global,23344520|23344539 +International Journal of Public and Private Healthcare Management and Economics,IGI Global,21556423|21556431 +International Journal of Public Health,Springer-Verlag,16618556|16618564 +International Journal of Public Health and Human Rights,Bioinfo Publications,22776052|22776060 +International Journal of Public Health Science (IJPHS),Institute of Advanced Engineering and Science,22528806| +International Journal of Public Law and Policy,Inderscience Enterprises Ltd.,20447663|20447671 +International Journal of Public Leadership,Emerald (MCB UP ),20564929| +International Journal of Public Opinion Research,Oxford University Press,09542892|14716909 +International Journal of Public Policy,Inderscience Enterprises Ltd.,17400600|17400619 +International Journal of Public Policy and Administration Research,Pak Publishing Group,23130423|23126515 +International Journal of Public Sector Management,Emerald (MCB UP ),09513558|00000000 +International Journal of Public Sector Performance Management,Inderscience Enterprises Ltd.,17411041|1741105X +International Journal of Public Theology,Brill Academic Publishers,18725171|15697320 +International Journal of Purchasing and Materials Management,Wiley Blackwell (Blackwell Publishing),10556001| +International Journal of Pure & Applied Bioscience,Vital Biotech,23207051 +International Journal of Pure and Apllied Mathematics,Academic Publications,13118080|13143395 +International Journal of Pure and Applied Sciences and Technology,"""Science and Education, Ltd.""",22296107| +International Journal of Pure Mathematical Sciences,SciPress Ltd.,22976205 +International Journal of Qualitative Methods,SAGE Publications,16094069 +International Journal of Qualitative Research in Services,Inderscience Enterprises Ltd.,20510500|20510519 +International Journal of Qualitative Studies in Education,Informa UK (Taylor & Francis),09518398|13665898 +International Journal of Qualitative Studies on Health and Well-Being,Co-Action Publishing,17482623|17482631 +International Journal of Quality & Reliability Management,Emerald (MCB UP ),0265671X|00000000 +International Journal of Quality and Innovation,Inderscience Enterprises Ltd.,17566975|17566983 +International Journal of Quality and Service Sciences,Emerald (MCB UP ),1756669X| +International Journal of Quality Assurance in Engineering and Technology Education,IGI Global,2155496X|21554978 +International Journal of Quality Engineering and Technology,Inderscience Enterprises Ltd.,17572177|17572185 +International Journal of Quality Innovation,Springer (Biomed Central Ltd.),23637021|23637021 +International Journal of Quality Science,Emerald (MCB UP ),13598538|00000000 +International Journal of Quality Statistics and Reliability,Hindawi Publishing Corporation,16877144|16877152 +International Journal of Quantitative Research in Education,Inderscience Enterprises Ltd.,20495986|20495994 +International Journal of Quantitative Structure-Property Relationships,IGI Global,23797487|23797479 +International Journal of Quantum Chemistry,Wiley Blackwell (John Wiley & Sons),00207608|1097461X +International Journal of Quantum Information,World Scientific ,02197499|17936918 +International Journal of Radiation Applications and Instrumentation Part A Applied Radiation and Isotopes,Elsevier ,08832889| +International Journal of Radiation Applications and Instrumentation Part B Nuclear Medicine and Biology,Elsevier ,08832897| +International Journal of Radiation Applications and Instrumentation Part C Radiation Physics and Chemistry,Elsevier ,13590197| +International Journal of Radiation Applications and Instrumentation Part D Nuclear Tracks and Radiation Measurements,Elsevier ,13590189| +International Journal of Radiation Biology,Informa UK (Taylor & Francis),09553002|13623095 +International Journal of Radiation Biology and Related Studies in Physics Chemistry and Medicine,Informa UK (Taylor & Francis),00207616| +International Journal of Radiation Oncology*Biology*Physics,Elsevier ,03603016| +International Journal of Radio Frequency Identification & Wireless Sensor Networks,InTech,18479812| +International Journal of Radio Frequency Identification Technology and Applications,Inderscience Enterprises Ltd.,17453216|17453224 +International Journal of Radioactive Materials Transport,Maney Publishing,0957476X| +International Journal of Radiology,ACT Publishing Group,23133406| +International Journal of Rail Transportation,Informa UK (Taylor & Francis),23248378|23248386 +International Journal of Railway,Korean Society for Railway,19769067| +International Journal of Railway Technology,"""Civil-Comp, Ltd.""",20495358| +International Journal of Rapid Manufacturing,Inderscience Enterprises Ltd.,17578817|17578825 +International Journal of Reacting Systems,Hindawi Publishing Corporation,16876016|16876024 +International Journal of Real Options and Strategy,Japan Association of Real Options and Strategy,21864667 +International Journal of Reasoning-based Intelligent Systems,Inderscience Enterprises Ltd.,17550556|17550564 +International Journal of Recent advances in Mechanical Engineering,Wireilla Scientific Publications,22005854 +International Journal of Recent advances in Physics,Wireilla Scientific Publications,22011056|22011056 +International Journal of Recent Contributions from Engineering Science & IT (iJES),International Association of Online Engineering,21978581 +International Journal of Reciprocal Symmetry and Theoretical Physics,Asian Business Consortium,23080809| +International Journal of Reconfigurable and Embedded Systems (IJRES),Institute of Advanced Engineering and Science,20894864| +International Journal of Reconfigurable Computing,Hindawi Publishing Corporation,16877195|16877209 +International Journal Of Recycling of Organic Waste in Agriculture,Springer-Verlag,22517715|22517715 +International Journal of Refractory Metals and Hard Materials,Elsevier ,02634368| +International Journal of Refrigeration,Elsevier ,01407007| +International Journal of Refugee Law,Oxford University Press,09538186|14643715 +International Journal of Regional and Local History,Maney Publishing,20514530|20514549 +International Journal of Regional Development,"""Macrothink Institute, Inc.""",23739851 +International Journal of Regulation and Governance,IOS Press,09724907| +International Journal of Rehabilitation and Health,Springer-Verlag,10689591|15731537 +International Journal of Rehabilitation Research,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,03425282| +International Journal of Reliability and Safety,Inderscience Enterprises Ltd.,1479389X|14793903 +International Journal of Reliability Quality and Safety Engineering,World Scientific ,02185393|02185393 +International Journal of Reliable and Quality E-Healthcare,IGI Global,21609551|2160956X +International Journal of Remote Sensing,Informa UK (Taylor & Francis),01431161|13665901 +International Journal of Remote Sensing Application,"""Science and Engineering Publishing, Co.""",22264353| +International Journal of Renewable and Sustainable Energy,Science Publishing Group,23269715| +International Journal of Renewable Energy and Biofuels,IBIMA Publishing,23330589 +International Journal of Renewable Energy Development(IJRED),Institute of Research and Community Services Diponegoro University (LPPM UNDIP),22524940|22524940 +International Journal of Renewable Energy Technology,Inderscience Enterprises Ltd.,17573971|1757398X +International Journal of Reproduction Contraception Obstetrics and Gynecology,Medip Academy,23201770| +International Journal of Reproduction Fertility & Sexual Health,SciDoc Publishers LLC,23771887 +International Journal of Reproductive Medicine,Hindawi Publishing Corporation,23567104|23145757 +International Journal of Research & Method in Education,Informa UK (Taylor & Francis),1743727X|17437288 +International Journal of Research and Applications,Global Science Publishing Group,23944544|23490020 +International Journal of Research Foundation of Hospital and Health Care Administration,Jaypee Brothers Medical Publishing,23474254|23474602 +International Journal of Research in Applied and Basic Medical Sciences,Swedish Science Pioneers,24763624 +International Journal of Research in Arts and Science,Bonfring,23949759| +International Journal of Research in Ayurveda and Pharmacy,Moksha Publishing House,22774343| +International Journal of Research in Business and Social Science (2147-4478),Society for the Study of Business and Finance- SSBFNET,21474478 +International Journal of Research in Business and Technology,Techmind Research Society,22912118 +International Journal of Research in Chemical Metallurgical and Civil Engineering,International Institute of Engineers,23491442|23491450 +International Journal of Research in Computer Science,White Globe Publications,22498257|22498265 +International Journal of Research in Dermatology,Medip Academy,24554529 +International Journal of Research in Education and Psychology,Scientific Publishing Center,22101780| +International Journal of Research in Engineering and Science,IOSR Journals,23209356|23209364 +International Journal of Research in Engineering and Technology,eSAT Publishing House,23217308|23191163 +International Journal of Research in Environmental Science,ARC Publications Pvt Ltd.,24549444 +International Journal of Research in Geography,ARC Publications Pvt Ltd.,24548685 +International Journal of Research in Marketing,Elsevier ,01678116| +International Journal of Research in Medical Sciences,Medip Academy,23206071| +International Journal of Research in Nursing,Science Publications,19490194| +International Journal of Research in Orthopaedics,Medip Academy,24554510 +International Journal of Research in Sociology and Anthropology,ARC Publications Pvt Ltd.,24548677 +International Journal of Research in Tourism and Hospitality,ARC Publications Pvt Ltd.,24550043 +International Journal of Research in Undergraduate Mathematics Education,Springer-Verlag,21989745|21989753 +International Journal of Research in Urology,IBIMA Publishing,23799668 +International Journal of Research Studies in Agricultural Sciences,ARC Publications Pvt Ltd.,24546224 +International Journal of Research Studies in Biosciences,ARC Publications Pvt Ltd.,23490365 +International Journal of Research Studies in Computing,Consortia Academia Publishing,2243772X|22437797 +International Journal of Research Studies in Education,Consortia Academia Publishing,22437703|22437711 +International Journal of Research Studies in Educational Technology,Consortia Academia Publishing,22437738|22437746 +International Journal of Research Studies in Language Learning,Consortia Academia Publishing,22437754|22437762 +International Journal of Research Studies in Management,Consortia Academia Publishing,22437770|22437789 +International Journal of Research Studies in Psychology,Consortia Academia Publishing,22437681|2243769X +International Journal of Research Studies in Zoology,ARC Publications Pvt Ltd.,2454941X +International Journal of Retail & Distribution Management,Emerald (MCB UP ),09590552| +International Journal of Retina and Vitreous,Springer (Biomed Central Ltd.),20569920|20569920 +International Journal of Revenue Management,Inderscience Enterprises Ltd.,14747332|17418186 +International Journal of RF and Microwave Computer-Aided Engineering,Wiley Blackwell (John Wiley & Sons),10964290|1099047X +International Journal of RF Technologies,IOS Press,17545730|17545749 +International Journal of Rheumatic Diseases,Wiley Blackwell (Blackwell Publishing),17561841|1756185X +International Journal of Rheumatology,Hindawi Publishing Corporation,16879260|16879279 +International Journal of Risk & Safety in Medicine,IOS Press,09246479|18786847 +International Journal of Risk and Contingency Management,IGI Global,21609624|21609632 +International Journal of Risk Assessment and Management,Inderscience Enterprises Ltd.,14668297|17415241 +International Journal of River Basin Management,Informa UK (Taylor & Francis),15715124|18142060 +International Journal of Roads and Airports,Centro Sperimentale Interuniversitario di Ricerca Stradale-Aeroportuale,20362595 +International Journal of Robotics and Automation,ACTA Press,08268185| +International Journal of Robotics and Automation Technology,Avanti Publishers,24099694 +International Journal of Robotics Applications,Bioinfo Publications,2277159X|22771603 +International Journal of Robotics Applications and Technologies,IGI Global,21667195|21667209 +International Journal of Robots Education and Art,AICIT,22334572|2233937X +International Journal of Robust and Nonlinear Control,Wiley Blackwell (John Wiley & Sons),10498923|10991239 +International Journal of Rock Mechanics and Mining Sciences,Elsevier ,13651609| +International Journal of Rock Mechanics and Mining Sciences & Geomechanics Abstracts,Elsevier ,01489062| +International Journal of Rotating Machinery,Hindawi Publishing Corporation,1023621X|15423034 +International Journal of Rough Sets and Data Analysis,IGI Global,23344598|23344601 +International Journal of Rural Management,SAGE Publications,09730052|09730680 +International Journal of Safety and Security Engineering,WITPress,20419031|2041904X +International Journal of Sales Retailing and Marketing,GSE Research Limited,2045810X| +International Journal of Salt Lake Research,Springer-Verlag,10370544|15738590 +International Journal of Satellite Communications,Wiley Blackwell (John Wiley & Sons),07372884|10991247 +International Journal of Satellite Communications and Networking,Wiley Blackwell (John Wiley & Sons),15420973|15420981 +International Journal of Satellite Communications Policy and Management,Inderscience Enterprises Ltd.,17427568|17427576 +International Journal of School & Educational Psychology,Informa UK (Taylor & Francis),21683603|21683611 +International Journal of School and Cognitive Psychology,OMICS Publishing Group,24699837 +International Journal of School Health,International Neuroscience Institute,23455152|23831219 +International Journal of Science and Engineering,Chemical Engineering Diponegoro University,20865023|23025743 +International Journal of Science and Engineering Applications,Association of Technology and Science,23197560 +International Journal of Science and Mathematics Education,Springer-Verlag,15710068|15731774 +International Journal of Science and Qualitative Analysis,Science Publishing Group,24698156| +International Journal of Science and Research (IJSR),International Journal of Science and Research,23197064 +International Journal of Science and Technology Education Research,Academic Journals,21416559 +International journal of Science Culture and Sport,International Journal of Science Culture and Sport,21481148| +International Journal of Science Education,Informa UK (Taylor & Francis),09500693|14645289 +International Journal of Science Education Part B,Informa UK (Taylor & Francis),21548455|21548463 +International Journal of Science Technology & Society,Babasaheb Bhimrao Ambedkar University,23951605|23957395 +International Journal of Science Technology and Society,Science Publishing Group,23307412| +International Journal of Sciences,Alkhaer Publications,24104477|23053925 +International Journal of Sciences Basic and Applied Research,Science and Innovation Center,23074531| +International Journal of Scientific and Engineering Research,IJSER Publishing,22295518 +International Journal of Scientific and Innovative Mathematical Research,ARC Publications Pvt Ltd.,23473142 +International Journal of Scientific Engineering and Technology,Innovative Research Publications,22771581 +International Journal of Scientific Reports,Medip Academy,24542156|24542164 +International Journal of Scientific Research,The Global Journals,22778179|22778179 +International Journal Of Scientific Research And Education,Research and Analysis Journals,23217545 +International Journal of Scientific Research and Management,Research and Analysis Journals,23213418 +International Journal of Scientific Research in Agricultural Sciences,IJSR Publications,23456795 +International Journal of Scientific Research in Chemical Engineering,IJSR Publications,23456787 +International Journal of Scientific Research in Environmental Sciences,IJSR Publications,23224983 +International Journal of Scientific Research in Inventions and New Ideas,IJSR Publications,23224657 +International Journal of Scientific Research in Knowledge,IJSR Publications,23224541 +International Journal of Scientific World,Science Publishing Corporation,23079037 +International Journal of Secondary Education,Science Publishing Group,23767464| +International Journal of Secure Software Engineering,IGI Global,19473036|19473044 +International Journal of Security and Its Applications,Science and Engineering Research Support Society,17389976|17389976 +International Journal of Security and Networks,Inderscience Enterprises Ltd.,17478405|17478413 +International Journal of Security Privacy and Trust Management,Academy and Industry Research Collaboration Center,23194103|22775498 +International Journal of Sediment Research,Elsevier ,10016279| +International Journal of Selection and Assessment,Wiley Blackwell (Blackwell Publishing),0965075X|14682389 +International Journal of Self Help and Self Care,Portico,10912851|15414450 +International Journal of Self-Propagating High-Temperature Synthesis,Allerton Press,10613862|1934788X +International Journal of Semantic Computing,World Scientific ,1793351X|17937108 +International Journal of Sensor and Its Applications for Control Systems,Science and Engineering Research Support Society,22878467|22878467 +International Journal of Sensor Networks,Inderscience Enterprises Ltd.,17481279|17481287 +International Journal of Sensor Networks and Data Communications,OMICS Publishing Group,20904878|20904886 +International Journal of Sensors Wireless Communications and Control,Bentham Science,22103279| +International Journal of Serious Games,Serious Games Society,23848766 +International Journal of Service and Computing Oriented Manufacturing,Inderscience Enterprises Ltd.,2045175X|20451768 +International Journal of Service Industry Management,Emerald (MCB UP ),09564233|00000000 +International Journal of Service Science Management Engineering and Technology,IGI Global,1947959X|19479603 +International Journal of Services and Operations Management,Inderscience Enterprises Ltd.,17442370|17442389 +International Journal of Services and Standards,Inderscience Enterprises Ltd.,17408849|17408857 +International Journal of Services Economics and Management,Inderscience Enterprises Ltd.,17530822|17530830 +International Journal of Services Operations and Informatics,Inderscience Enterprises Ltd.,1741539X|17415403 +International Journal of Services Sciences,Inderscience Enterprises Ltd.,17531446|17531454 +International Journal of Services Technology and Management,Inderscience Enterprises Ltd.,14606720|1741525X +International Journal of Sexual Health,Informa UK (Taylor & Francis),19317611|1931762X +International Journal of Sexuality and Gender Studies,Springer (Kluwer Academic Publishers),15661768| +International Journal of Shape Modeling,World Scientific ,02186543|1793639X +International Journal of Shipping and Transport Logistics,Inderscience Enterprises Ltd.,17566517|17566525 +International Journal of Short-Term Psychotherapy,Wiley Blackwell (John Wiley & Sons),0884724X|15227170 +International Journal of Shoulder Surgery,Medknow Publications,09736042| +International Journal of Signal and Imaging Systems Engineering,Inderscience Enterprises Ltd.,17480698|17480701 +International Journal of Signal Processing Image Processing and Pattern Recognition,Science and Engineering Research Support Society,20054254|20054254 +International Journal of Signal Processing Systems,EJournal Publishing,23154535| +International Journal of Signs and Semiotic Systems,IGI Global,21555028|21555036 +International Journal of Simulation and Process Modelling,Inderscience Enterprises Ltd.,17402123|17402131 +International Journal of Simulation Modelling,Daaam International,17264529| +International Journal of Simulation Systems Science & Technology,UK Simulation Society,1473804X +International Journal of Six Sigma and Competitive Advantage,Inderscience Enterprises Ltd.,14792494|14792753 +International Journal of Smart and Nano Materials,Informa UK (Taylor & Francis),19475411|1947542X +International Journal of Smart Engineering System Design,Informa UK (Taylor & Francis),10255818|16078500 +International Journal of Smart Grid and Clean Energy,Engineering and Technology Publishing,23154462| +International Journal of Smart Home,Science and Engineering Research Support Society,19754094|19754094 +International Journal of Social and Economic Research,Diva Enterprises Private Limited,22496270 +International Journal of Social and Humanistic Computing,Inderscience Enterprises Ltd.,17526124|17526132 +International Journal of Social and Organizational Dynamics in IT,IGI Global,21556334|21556342 +International Journal of Social Computing and Cyber-Physical Systems,Inderscience Enterprises Ltd.,20400721|2040073X +International Journal of Social Ecology and Sustainable Development,IGI Global,19478402|19478410 +International Journal of Social Economics,Emerald (MCB UP ),03068293|00000000 +International Journal of Social Entrepreneurship and Innovation,Inderscience Enterprises Ltd.,20438257|20438265 +International Journal of Social Media and Interactive Learning Environments,Inderscience Enterprises Ltd.,20503954|20503962 +International Journal of Social Network Mining,Inderscience Enterprises Ltd.,17578485|17578493 +International Journal of Social Networking and Virtual Communities,Institute of Advanced Engineering and Science,22528784| +International Journal of Social Psychiatry,SAGE Publications,00207640|00000000 +International Journal of Social Quality,Berghahn Books,17570344|17570352 +International Journal of Social Research Methodology,Informa UK (Taylor & Francis),13645579|14645300 +International Journal of Social Robotics,Springer-Verlag,18754791|18754805 +International Journal of Social Science and Humanity,EJournal Publishing,20103646|20103646 +International Journal of Social Science Research,"""Macrothink Institute, Inc.""",23275510 +International Journal of Social Science Studies,Redfame Publishing,23248033|23248041 +International Journal of Social Sciences,Diva Enterprises Private Limited,22496637|23215771 +International Journal of Social Sciences and Management,Nepal Journals Online,20912986 +International Journal of Social Welfare,Wiley Blackwell (Blackwell Publishing),13696866|14682397 +International Journal of Social Work,"""Macrothink Institute, Inc.""",23327278 +International Journal of Social Work and Human Services Practice,"""Horizon Research Publishing Co., Ltd.""",23326832|23326840 +International Journal of Society Systems Science,Inderscience Enterprises Ltd.,17562511|1756252X +International Journal of Sociology,Informa UK (Taylor & Francis),00207659|15579336 +International Journal of Sociology and Anthropology,Academic Journals,2006988X +International Journal of Sociology and Social Policy,Emerald (MCB UP ),0144333X| +International Journal of Sociology of Education,Hipatia Press,20143575 +International Journal of Sociology Social Anthropology and Social Policy,Diva Enterprises Private Limited,24544833 +International Journal of Sociology Study,DEStech Publications,23281650|23281650 +International Journal of Sociotechnology and Knowledge Development,IGI Global,19416253|19416261 +International Journal of Soft Computing,Science Alert,18169503| +International Journal of Soft Computing and Software Engineering [JSCSE],International Journal of Soft Computing and Software Engineering,22517545 +International Journal of Soft Computing Mathematics and Control,Wireilla Scientific Publications,22014160 +International Journal of Software Architecture,"""Vrlsoft, Inc.""",21538395|21538409 +International Journal of Software Engineering,Scientific and Academic Publishing,2162934X| +International Journal of Software Engineering & Applications,Academy and Industry Research Collaboration Center,09762221|09759018 +International Journal of Software Engineering and Its Applications,Science and Engineering Research Support Society,17389984|17389984 +International Journal of Software Engineering and Knowledge Engineering,World Scientific ,02181940|02181940 +International Journal of Software Engineering Technology and Applications,Inderscience Enterprises Ltd.,20532466|20532474 +International Journal of Software Innovation,IGI Global,21667160|21667179 +International Journal of Software Science and Computational Intelligence,IGI Global,19429045|19429037 +International Journal of Soil Dynamics and Earthquake Engineering,Elsevier ,02617277| +International Journal of Soil Science,Science Alert,18164978| +International Journal of Solar Energy,Informa UK (Taylor & Francis),01425919| +International Journal of Solids and Structures,Elsevier ,00207683| +International Journal of Solution-Focused Practices,Solutionwork,20015453|20016980 +International Journal of Space Science and Engineering,Inderscience Enterprises Ltd.,20488459|20488467 +International Journal of Space Structures,SAGE Publications,02663511|02663511 +International Journal of Space Technology Management and Innovation,IGI Global,21556350|21556369 +International Journal of Space-Based and Situated Computing,Inderscience Enterprises Ltd.,20444893|20444907 +International Journal of Spatial Data Infrastructures Research,Publications Office of the European Union,17250463|17250463 +International Journal of Spectroscopy,Hindawi Publishing Corporation,16879449|16879457 +International Journal of Speech & Language Pathology and Audiology,Synergy Publishers,23111917 +International Journal of Speech and Language Processing,Bioinfo Publications,22771611|2277162X +International Journal of Speech Language and the Law,Equinox Publishing,17488885|17488893 +International Journal of Speech Technology,Springer-Verlag,13812416|15728110 +International Journal of Speech-Language Pathology,Informa UK (Taylor & Francis),17549507|17549515 +International Journal of Speleology,University of South Florida Libraries,03926672|1827806X +International Journal of Sport and Exercise Psychology,Informa UK (Taylor & Francis),1612197X|1557251X +International Journal of Sport and Health Science,"""Japan Society of Physical Education, Health and Sport Sciences""",13481509|18804012 +International Journal of Sport Communication,Human Kinetics,19363915| +International Journal of Sport Management and Marketing,Inderscience Enterprises Ltd.,14758962|17402808 +International Journal of Sport Management Recreation & Tourism,Association of Sport Tourism and Recreation,1791874X|1791874X +International Journal of Sport Nutrition and Exercise Metabolism,Human Kinetics,1526484X|15432742 +International Journal of Sport Policy and Politics,Informa UK (Taylor & Francis),19406940|19406959 +International Journal of Sports Exercise and Training Science,"""International Journal of Sport Education, Exercise and Training Science""",21498229| +International Journal of Sports Marketing and Sponsorship,Emerald (MCB UP ),14646668| +International Journal of Sports Medicine,Thieme Publishing Group,01724622|14393964 +International Journal of Sports Physiology and Performance,Human Kinetics,15550265|15550273 +International Journal of Sports Science,Scientific and Academic Publishing,21698759| +International Journal of Sports Science & Coaching,SAGE Publications,17479541|2048397X +International Journal of Spray and Combustion Dynamics,SAGE Publications,17568277|17568285 +International Journal of Standardization Research,IGI Global,24708542|24708550 +International Journal of Statistical Mechanics,Hindawi Publishing Corporation,23567112|23146850 +International Journal of Statistics and Applications,Scientific and Academic Publishing,21685193| +International Journal of Statistics and Probability,Canadian Center of Science and Education,19277032|19277040 +International Journal of Statistics in Medical Research,Lifescience Global,19296029 +International Journal of STD & AIDS,SAGE Publications,09564624|17581052 +International Journal of Steel Structures,Springer-Verlag,15982351|20936311 +International Journal of Stem Cell Research and Transplantation,SciDoc Publishers LLC,23283548 +International Journal of Stem Cells,Korean Society for Stem Cell Research,20053606|20055447 +International Journal of STEM Education,Springer (Biomed Central Ltd.),21967822|21967822 +International Journal of Stochastic Analysis,Hindawi Publishing Corporation,20903332|20903340 +international journal of stomatology & occlusion medicine,Springer-Verlag,18672221|1867223X +International Journal of Strategic Business Alliances,Inderscience Enterprises Ltd.,17566444|17566452 +International Journal of Strategic Change Management,Inderscience Enterprises Ltd.,17402859|17402867 +International Journal of Strategic Communication,Informa UK (Taylor & Francis),1553118X|15531198 +International Journal of Strategic Decision Sciences,IGI Global,19478569|19478577 +International Journal of Strategic Engineering Asset Management,Inderscience Enterprises Ltd.,17599733|17599741 +International Journal of Strategic Information Technology and Applications,IGI Global,19473095|19473109 +International Journal of Strategic Innovative Marketing,i-das,22418407| +International Journal of Strategic Management,International Academy of Business and Economics,15552411|23788615 +International Journal of Strategic Property Management,Vilnius Gediminas Technical University,1648715X|16489179 +International Journal of Stress Management,American Psychological Association,10725245|15733424 +International Journal of Stroke,SAGE Publications,17474930|17474949 +International Journal of Structural and Civil Engineering Research,EJournal Publishing,23196009| +International Journal of Structural Engineering,Inderscience Enterprises Ltd.,17587328|17587336 +International Journal of Structural Integrity,Emerald (MCB UP ),17579864| +International Journal of Structural Stability and Dynamics,World Scientific ,02194554|17936764 +International Journal of Students Research,Medknow Publications,22307095|22307095 +International Journal of Students Research in Technology & Management,GIAP Journals,23212543 +International Journal of Super Species Research,"""Sophia Publishing Group, Inc.""",19276621 +International Journal of Superconductivity,Hindawi Publishing Corporation,23567120|23146869 +International Journal of Supply Chain and Inventory Management,Inderscience Enterprises Ltd.,2054099X|20541007 +International Journal of Supply Chain and Operations Resilience,Inderscience Enterprises Ltd.,2052868X|20528698 +International Journal of Surface Engineering and Interdisciplinary Materials Science,IGI Global,21667225|21667233 +International Journal of Surface Mining Reclamation and Environment,Informa UK (Taylor & Francis),13895265|17445000 +International Journal of Surface Science and Engineering,Inderscience Enterprises Ltd.,1749785X|17497868 +International Journal of Surgery,Elsevier ,17439191| +International Journal of Surgery and Medicine,ScopeMed International Medical Journal Managment and Indexing System,23677414|2367699X +International Journal of Surgery and Research,SciDoc Publishers LLC,2379156X +International Journal of Surgery Case Reports,Elsevier ,22102612| +International Journal of Surgery Open,Elsevier ,24058572| +International Journal of Surgical Oncology,Hindawi Publishing Corporation,20901402|20901410 +International Journal of Surgical Pathology,SAGE Publications,10668969|19402465 +International Journal of Sustainability,AICIT,22874860|22874879 +International Journal of Sustainability in Higher Education,Emerald (MCB UP ),14676370|00000000 +International Journal of Sustainable Agricultural Management and Informatics,Inderscience Enterprises Ltd.,20545819|20545827 +International Journal of Sustainable Agricultural Research,Pak Publishing Group,23130393|23126477 +International Journal of Sustainable Aviation,Inderscience Enterprises Ltd.,20500467|20500475 +International Journal of Sustainable Building Technology and Urban Development,Informa UK (Taylor & Francis),2093761X|20937628 +International Journal of Sustainable Built Environment,Elsevier ,22126090| +International Journal of Sustainable Design,Inderscience Enterprises Ltd.,17438284|17438292 +International Journal of Sustainable Development,Inderscience Enterprises Ltd.,09601406|17415268 +International Journal of Sustainable Development & World Policy,Pak Publishing Group,23069929|2305705X +International Journal of Sustainable Development and Planning,WITPress,1743761X|17437601 +International Journal of Sustainable Economies Management,IGI Global,21609659|21609667 +International Journal of Sustainable Economy,Inderscience Enterprises Ltd.,17565804|17565812 +International Journal of Sustainable Energy,Informa UK (Taylor & Francis),14786451|1478646X +International Journal of Sustainable Energy and Environmental Research,Pak Publishing Group,23125764|23066253 +International Journal of Sustainable Engineering,Informa UK (Taylor & Francis),19397038|19397046 +International Journal of Sustainable Manufacturing,Inderscience Enterprises Ltd.,17427223|17427231 +International Journal of Sustainable Materials and Structural Systems,Inderscience Enterprises Ltd.,20438621|2043863X +International Journal of Sustainable Society,Inderscience Enterprises Ltd.,17562538|17562546 +International Journal of Sustainable Strategic Management,Inderscience Enterprises Ltd.,17533600|17533619 +International Journal of Sustainable Transportation,Informa UK (Taylor & Francis),15568318|15568334 +International Journal of Sustainable Water and Environmental Systems,International Association for Sharing Knowledge and Sustainability,19237537|19237545 +International Journal of Swarm Intelligence,Inderscience Enterprises Ltd.,20494041|2049405X +International Journal of Swarm Intelligence and Evolutionary Computation,OMICS Publishing Group,20904894|20904908 +International Journal of Swarm Intelligence Research,IGI Global,19479263|19479271 +International Journal of Synergy and Research,Wydawnictwo Uniwersytetu Marii Curie-SkÅ?odowskiej w Lublinie,20830025|24498475 +International Journal of Synthetic Emotions,IGI Global,19479093|19479107 +International Journal of System Control and Information Processing,Inderscience Enterprises Ltd.,17599334|17599342 +International Journal of System Dynamics Applications,IGI Global,21609772|21609799 +International Journal of System of Systems Engineering,Inderscience Enterprises Ltd.,17480671|1748068X +INTERNATIONAL JOURNAL OF SYSTEMATIC AND EVOLUTIONARY MICROBIOLOGY,Microbiology Society,14665026|14665034 +International Journal of Systematic Bacteriology,Microbiology Society,00207713|14652102 +International Journal of Systematic Theology,Wiley Blackwell (Blackwell Publishing),14631652|14631652 +International Journal of Systems and Service-Oriented Engineering,IGI Global,19473052|19473060 +International Journal of Systems and Society,IGI Global,23273984|23273992 +International Journal of Systems Assurance Engineering and Management,Springer-Verlag,09756809|09764348 +International Journal of Systems Biology,Bioinfo Publications,09752900|09759204 +International Journal of Systems Biology and Biomedical Technologies,IGI Global,21609586|21609594 +International Journal of Systems Control and Communications,Inderscience Enterprises Ltd.,17559340|17559359 +International Journal of Systems Science,Informa UK (Taylor & Francis),00207721|14645319 +International Journal of Systems Science Operations & Logistics,Informa UK (Taylor & Francis),23302674|23302682 +International Journal of Systems Signal Control and Engineering Application,Science Alert,19975422| +International Journal of Teaching and Case Studies,Inderscience Enterprises Ltd.,17499151|1749916X +International Journal of Teaching and Education,International Institute of Social and Economic Sciences,23362022 +International Journal of Technoentrepreneurship,Inderscience Enterprises Ltd.,17465370|17465389 +International Journal of Technoethics,IGI Global,19473451|1947346X +International Journal of Technological Learning Innovation and Development,Inderscience Enterprises Ltd.,17531942|17531950 +International Journal of Technology,International Journal of Technology,20869614|20872100 +International Journal of Technology,Diva Enterprises Private Limited,22313907|22313915 +International Journal of Technology & Aging,International Society for Gerontechnology,08914478| +International Journal of Technology and Design Education,Springer-Verlag,09577572|15731804 +International Journal of Technology and Educational Marketing,IGI Global,21555605|21555613 +International Journal of Technology and Engineering Studies,KKG Publications,24143413 +International Journal of Technology and Globalisation,Inderscience Enterprises Ltd.,14765667|17418194 +International Journal of Technology and Human Interaction,IGI Global,15483908|15483916 +International Journal of Technology Assessment in Health Care,Cambridge University Press,02664623|14716348 +International Journal of Technology Diffusion,IGI Global,19479301|1947931X +International Journal of Technology Enhanced Learning,Inderscience Enterprises Ltd.,17535255|17535263 +International Journal of Technology Intelligence and Planning,Inderscience Enterprises Ltd.,17402832|17402840 +International Journal of Technology Management,Inderscience Enterprises Ltd.,02675730|17415276 +International Journal of Technology Management and Sustainable Development,Intellect,14742748|20400551 +International Journal of Technology Marketing,Inderscience Enterprises Ltd.,1741878X|17418798 +International Journal of Technology Policy and Law,Inderscience Enterprises Ltd.,17424240|17424259 +International Journal of Technology Policy and Management,Inderscience Enterprises Ltd.,14684322|17415292 +International Journal of Technology Transfer and Commercialisation,Inderscience Enterprises Ltd.,14706075|17415284 +International Journal of Telemedicine and Applications,Hindawi Publishing Corporation,16876415|16876423 +International Journal of Telemedicine and Clinical Practices,Inderscience Enterprises Ltd.,20528434|20528442 +International Journal of Telerehabilitation,"""University Library System, University of Pittsburgh""",19452020 +International Journal of Testing,Informa UK (Taylor & Francis),15305058|15327574 +International Journal of Textile Science,Scientific and Academic Publishing,23250119| +International Journal of the Addictions,Informa UK (Taylor & Francis),0020773X| +International Journal of the Analytic Hierarchy Process,Creative Decisions Foundation,19366744 +International Journal of the Built Environment and Asset Management,Inderscience Enterprises Ltd.,20464533|20464541 +International Journal of the Cardiovascular Academy,Elsevier ,24058181| +International Journal of the Classical Tradition,Springer-Verlag,10730508|18746292 +International Journal of the Commons,Uopen Journals,18750281 +International Journal of the Digital Human,Inderscience Enterprises Ltd.,20463375|20463383 +International Journal of the Economics of Business,Informa UK (Taylor & Francis),13571516|14661829 +International Journal of the Legal Profession,Informa UK (Taylor & Francis),09695958|14699257 +International Journal of the Physical Sciences,Academic Journals,19921950 +International Journal of the Platonic Tradition,Brill Academic Publishers,18725082|18725473 +International Journal of the Society of Materials Engineering for Resources,The Society of Materials Engineering for Resources of Japan,13479725|18846629 +International Journal of the Sociology of Language,Walter de Gruyter GmbH,01652516|16133668 +International Journal of the Sociology of Law,Elsevier ,01946595|10959262 +International Journal of Theoretical and Applied Finance,World Scientific ,02190249|02190249 +International Journal of Theoretical and Applied Multiscale Mechanics,Inderscience Enterprises Ltd.,17559995|17560004 +International Journal of Theoretical and Applied Nanotechnology,Avestia Publishing,19291248 +International Journal of Theoretical and Mathematical Physics,Scientific and Academic Publishing,21676844| +International Journal of Theoretical Physics,Springer-Verlag,00207748|15729575 +International Journal of Therapeutic Applications,Whites Science Innovation Limited,2320138X +International Journal of Therapeutic Massage & Bodywork Research Education & Practice,Massage Therapy Foundation,1916257X +International Journal of Therapies and Rehabilitation Research,ScopeMed International Medical Journal Managment and Indexing System,22780343| +International Journal of Therapy and Rehabilitation,Mark Allen Group,17411645|1759779X +International Journal of Thermal and Environmental Engineering,International Association for Sharing Knowledge and Sustainability,19237308|19237316 +International Journal of Thermal and Fluid Sciences,Science Alert,22253556| +International Journal of Thermal Engineering,Seventh Sense Research Group Journals,23950250 +International Journal of Thermal Sciences,Elsevier ,12900729| +International Journal of Thermal Technologies,Inpressco,22774114 +International Journal of Thermodynamics,International Centre for Applied Thermodynamics,13019724|21461511 +International Journal of Thermophysics,Springer-Verlag,0195928X|15729567 +International Journal of Thin Films Science and Technology,Scientific Publishing Center,20909519|20909527 +International Journal of Thyroidology,Korean Thyroid Association (KAMJE),23843799| +International Journal of Tissue Engineering,Hindawi Publishing Corporation,23144408|23144416 +International Journal of Tourism & Hospitality Reviews,GIAP Journals,23957654 +International Journal of Tourism Anthropology,Inderscience Enterprises Ltd.,17590442|17590450 +International Journal of Tourism Cities,Emerald (MCB UP ),20565607| +International Journal of Tourism Management,Elsevier ,01432516| +International Journal of Tourism Policy,Inderscience Enterprises Ltd.,17504090|17504104 +International Journal of Tourism Research,Wiley Blackwell (John Wiley & Sons),10992340|15221970 +International Journal of Tourism Sciences,Informa UK (Taylor & Francis),15980634|23770058 +International Journal of Toxicology,SAGE Publications,10915818|1092874X +International Journal of Trade and Global Markets,Inderscience Enterprises Ltd.,17427541|1742755X +International Journal of Trade Economics and Finance,EJournal Publishing,2010023X|2010023X +International Journal of Traffic and Transportation Engineering,Scientific and Academic Publishing,23250062| +International Journal of Training and Development,Wiley Blackwell (Blackwell Publishing),13603736|14682419 +International Journal of Training Research,Informa UK (Taylor & Francis),14480220| +International Journal of Transgenderism,Informa UK (Taylor & Francis),15532739|14344599 +International Journal of Transitional Justice,Oxford University Press,17527716|17527724 +International Journal of Transitions and Innovation Systems,Inderscience Enterprises Ltd.,17450071|1745008X +International Journal of Translation & Community Medicine,SciDoc Publishers LLC,23338385 +International Journal of Translational Science,River Publishers,22468765| +International Journal of Transport Management,Elsevier ,14714051| +International Journal of Transportation,Science and Engineering Research Support Society,22877940|22877940 +International Journal of Transportation Science and Technology,Multiscience,20460430| +International Journal of Trauma Nursing,Elsevier ,10754210| +International Journal of Travel Medicine and Global Health,Nova Explore Publications Inc.,23221100 +International Journal of Trichology,Medknow Publications,09747753| +International Journal of Tropical Agriculture and Food Systems,African Journals Online ,1597913X +International Journal of TROPICAL DISEASE & Health,Sciencedomain International,22781005 +International Journal of Tropical Insect Science,Cambridge University Press,17427584|00000000 +International Journal of Tropical Medicine,Science Alert,18163319| +International journal of tropical medicine and public health,ScopeMed International Medical Journal Managment and Indexing System,20491956| +International Journal of Trust Management in Computing and Communications,Inderscience Enterprises Ltd.,20488378|20488386 +International Journal of Tryptophan Research,"""Libertas Academica, Ltd.""",11786469 +International Journal of Tumor Therapy,Scientific and Academic Publishing,21632189| +International Journal of Turbo and Jet Engines,Walter de Gruyter GmbH,03340082|21910332 +International Journal Of Turkish Literature Culture Education,Turkce Edebiyat Kultur Egitim Dergisi,21470146| +International Journal of u- and e- Service Science and Technology,Science and Engineering Research Support Society,20054246|20054246 +International Journal of UbiComp,Academy and Industry Research Collaboration Center,09762213|09758992 +International Journal of Ultra Wideband Communications and Systems,Inderscience Enterprises Ltd.,1758728X|17587298 +International Journal of Ultrasound and Applied Technologies in Perioperative Care,Jaypee Brothers Medical Publishing,09760423|09762302 +International Journal of Uncertainty Fuzziness and Knowledge-Based Systems,World Scientific ,02184885|17936411 +International Journal of Undergraduate Research and Creative Activities,Pacific University Library,21680620 +International Journal of Unmanned Systems Engineering,Marques Aviation Ltd.,2052112X +International Journal of Urban and Regional Research,Wiley Blackwell (Blackwell Publishing),03091317|14682427 +International Journal of Urban Sciences,Informa UK (Taylor & Francis),12265934|21616779 +International Journal of Urban Sustainable Development,Informa UK (Taylor & Francis),19463138|19463146 +International Journal of Urological Nursing,Wiley Blackwell (Blackwell Publishing),17497701|1749771X +International Journal of Urology,Wiley Blackwell (Blackwell Publishing),09198172|14422042 +International Journal of User-Driven Healthcare,IGI Global,21561818|2156180X +International Journal of Value Chain Management,Inderscience Enterprises Ltd.,17415357|17415365 +International Journal of Value-Based Management,Springer-Verlag,08958815|15728528 +International Journal of Vascular Medicine,Hindawi Publishing Corporation,20902824|20902832 +International Journal of Vascular Surgery and Medicine,Peertechz.com,24555452 +International Journal of Vegetable Science,Informa UK (Taylor & Francis),19315260|19315279 +International Journal of Vehicle Autonomous Systems,Inderscience Enterprises Ltd.,14710226|17415306 +International Journal of Vehicle Design,Inderscience Enterprises Ltd.,01433369|17415314 +International Journal of Vehicle Information and Communication Systems,Inderscience Enterprises Ltd.,14710242|17418208 +International Journal of Vehicle Noise and Vibration,Inderscience Enterprises Ltd.,14791471|1479148X +International Journal of Vehicle Performance,Inderscience Enterprises Ltd.,17453194|17453208 +International Journal of Vehicle Safety,Inderscience Enterprises Ltd.,14793105|14793113 +International Journal of Vehicle Structures and Systems,MAFTREE,09753060|09753540 +International Journal of Vehicle Systems Modelling and Testing,Inderscience Enterprises Ltd.,17456436|17456444 +International Journal of Vehicular Technology,Hindawi Publishing Corporation,16875702|16875710 +International Journal of Veterinary Health Science & Research,SciDoc Publishers LLC,23322748 +International Journal of Veterinary Medicine Research & Reports,IBIMA Publishing,23288752 +International Journal of Veterinary Science and Medicine,Elsevier ,23144599| +International Journal of Veterinary Sciences Research,Pak Publishing Group,24138444|24109444 +International Journal of Virology,Science Alert,18164900| +International Journal of Virology and Molecular Biology,Scientific and Academic Publishing,21632219| +International Journal of Virology Studies & Research,SciDoc Publishers LLC,23300027 +International Journal of Virtual and Personal Learning Environments,IGI Global,19478518|19478526 +International Journal of Virtual Communities and Social Networking,IGI Global,19429010|19429029 +International Journal of Virtual Technology and Multimedia,Inderscience Enterprises Ltd.,17411874|17411882 +International Journal of Virtual Worlds and Human Computer Interaction,Avestia Publishing,23686103 +International Journal of VLSI & Signal Processing,Seventh Sense Research Group Journals,23942584 +International Journal of VLSI Design & Communication Systems,Academy and Industry Research Collaboration Center,09761527|09761357 +International Journal of Vocational Education and Training Research,Science Publishing Group,24698180| +International Journal of Waste Resources,OMICS Publishing Group,22525211|22525211 +International Journal of Water,Inderscience Enterprises Ltd.,14656620|17415322 +International Journal of Water and Wastewater Treatment ( ISSN 2381-5299 ),"""Sci Forschen, Inc.""",23815299 +International Journal of Water Governance,Baltzer Science Publishers,22114491|22114505 +International Journal of Water Resources and Environmental Engineering,Academic Journals,21416613 +International Journal of Water Resources Development,Informa UK (Taylor & Francis),07900627|13600648 +International Journal of Water Sciences,InTech,1848929X| +International Journal of Wavelets Multiresolution and Information Processing,World Scientific ,02196913|1793690X +International journal of Web & Semantic Technology,Academy and Industry Research Collaboration Center,09762280|09759026 +International Journal of Web and Grid Services,Inderscience Enterprises Ltd.,17411106|17411114 +International Journal of Web Based Communities,Inderscience Enterprises Ltd.,14778394|17418216 +International Journal of Web Engineering and Technology,Inderscience Enterprises Ltd.,14761289|17419212 +International Journal of Web Information Systems,Emerald (MCB UP ),17440084| +International Journal of Web Portals,IGI Global,19380194|19380208 +International Journal of Web Science,Inderscience Enterprises Ltd.,17578795|17578809 +International Journal of Web Services Research,IGI Global,15457362|15465004 +International Journal of Web-Based Learning and Teaching Technologies,IGI Global,15481093|15481107 +International Journal of Wellbeing,International Journal fo Wellbeing,11798602 +International Journal of Wildland Fire,CSIRO Publishing,10498001| +International Journal of Wine Business Research,Emerald (MCB UP ),17511062| +International Journal of Wine Marketing,Emerald (MCB UP ),09547541| +International Journal of Wine Research,Dove Medical Press,11791403 +International Journal of Wireless & Mobile Networks,Academy and Industry Research Collaboration Center,09754679|09753834 +International Journal of Wireless and Microwave Technologies,MECS Publisher,20761449|20769539 +International Journal of Wireless and Mobile Computing,Inderscience Enterprises Ltd.,17411084|17411092 +International Journal of Wireless Communication,Bioinfo Publications,22313559|22313567 +International Journal of Wireless Communications and Mobile Computing,Science Publishing Group,23301007| +International Journal of Wireless Information Networks,Springer-Verlag,10689605|15728129 +International Journal of Wireless Networks and Broadband Technologies,IGI Global,21556261|2155627X +International Journal of Women s Dermatology,Elsevier ,23526475| +International Journal of Women s Health,Dove Medical Press,11791411 +International Journal of Women s Health and Reproduction Sciences,International Journal of Women's Health and Reproduction Studies,23304456|23304456 +International Journal of Work Innovation,Inderscience Enterprises Ltd.,20439032|20439040 +International Journal of Work Organisation and Emotion,Inderscience Enterprises Ltd.,17408938|17408946 +International Journal of Workplace Health Management,Emerald (MCB UP ),17538351| +International Journal of Wrestling Science,Informa UK (Taylor & Francis),21615667|21613524 +International Journal of Yoga,Medknow Publications,09736131| +International Journal of Yoga - Philosophy Psychology and Parapsychology,Medknow Publications,23475633| +International Journal of Yoga Therapy,International Association of Yoga Therapists,15312054| +International Journal of Zoological Research,Science Alert,18119778|18119786 +International Journal of Zoology,Hindawi Publishing Corporation,16878477|16878485 +International Journal of Zoology Research,Bioinfo Publications,22313516|22313524 +International Journal on AdHoc Networking Systems,Academy and Industry Research Collaboration Center,22492682|22490175 +International Journal on Advanced Science Engineering and Information Technology,Insight Society,20885334|24606952 +International Journal on Advances in ICT for Emerging Regions (ICTer),Sri Lanka Journals Online ,18004156| +INTERNATIONAL JOURNAL ON Advances in Information Sciences and Service Sciences,AICIT,19763700|22339345 +International Journal on Algae,Begell House Inc.,15219429| +International Journal on Applications of Graph Theory In wireless Ad Hoc Networks And sensor Networks,Academy and Industry Research Collaboration Center,09757260|09757260 +International Journal on Artificial Intelligence Tools,World Scientific ,02182130|17936349 +International Journal on Bioinformatics & Biosciences,Academy and Industry Research Collaboration Center,18399614 +International Journal on Cloud Computing Services and Architecture,Academy and Industry Research Collaboration Center,22316663|22315853 +International Journal on Communications,"""Science and Engineering Publishing, Co.""",2327106X| +International Journal on Communications Antenna and Propagation (IRECAP),"""Praise Worthy Prize, s.r.l.""",20395086|20395094 +International Journal on Computational Science & Applications,Academy and Industry Research Collaboration Center,22000011 +International Journal on Criminology,Policy Studies Organization,23339861 +International Journal on Cryptography and Information Security,Academy and Industry Research Collaboration Center,18398626 +International Journal on Cybernetics & Informatics,Academy and Industry Research Collaboration Center,23208430|2277548X +International Journal on Data Mining and Intelligent Information Technology Applications,AICIT,22343660|22343679 +International Journal on Digital Libraries,Springer-Verlag,14325012|14321300 +International Journal on Disability and Human Development,Walter de Gruyter GmbH,21911231|21910367 +International Journal on Document Analysis and Recognition (IJDAR),Springer-Verlag,14332833|14332825 +International Journal on Electrical Engineering and Informatics,School of Electrical Engineering and Informatics (STEI) ITB,20856830|20875886 +International Journal on Energy Conversion (IRECON),"""Praise Worthy Prize, s.r.l.""",22815295|22815309 +International Journal on Engineering Applications (IREA),"""Praise Worthy Prize, s.r.l.""",22812881|2281289X +International Journal on Graft and Corruption,Philippine Association of Institutions for Research ,23627476|23627492 +International Journal on Grey Literature,Emerald (MCB UP ),14666189|00000000 +International Journal on Heat and Mass Transfer - Theory and Applications (IREHEAT),"""Praise Worthy Prize, s.r.l.""",22817352 +International Journal on Information and Communication Technology (IJoICT),"""School of Computing, Telkom University""",23565462 +International Journal on Information Theory,Academy and Industry Research Collaboration Center,23208465|23197609 +International Journal on Integrated Information Management,i-das,2241827X| +International Journal on Integrating Technology in Education,Academy and Industry Research Collaboration Center,23203935|23201886 +International Journal on Interactive Design and Manufacturing (IJIDeM),Springer-Verlag,19552513|19552505 +International Journal on IT/Business Alignment and Governance,IGI Global,19479611|1947962X +International Journal on Measurement Technologies and Instrumentation Engineering,IGI Global,21561737|21561729 +International Journal on Minority and Group Rights,Brill Academic Publishers,13854879|15718115 +International Journal on Natural Language Computing,Academy and Industry Research Collaboration Center,23194111|22781307 +International Journal on Nuclear Energy Management and Safety,GSE Research Limited,20472609|20472617 +International Journal on Online Dispute Resolution,Boom Uitgevers Den Haag,23525010| +International Journal on Organic Electronics,Academy and Industry Research Collaboration Center,23194359|22781293 +International Journal on Pavement Engineering & Asphalt Technology,De Gruyter Open Sp. z o.o. ,20518234 +International Journal on Power Engineering and Energy,Infomesr,23147318|2314730X +International Journal on Recent and Innovation Trends in Computing and Communication,"""Auricle Technologies Pvt., Ltd.""",23218169 +International Journal on Semantic Web and Information Systems,IGI Global,15526283|15526291 +International Journal on Soft Computing,Academy and Industry Research Collaboration Center,22297103|22296735 +International Journal on Soft Computing Artificial Intelligence and Applications,Academy and Industry Research Collaboration Center,23194081|23191015 +International Journal on Software Tools for Technology Transfer,Springer-Verlag,14332779|14332787 +International Journal on Studies in English Language and Literature,ARC Publications Pvt Ltd.,23473134 +International Journal on Web Service Computing,Academy and Industry Research Collaboration Center,22307702|22307702 +International Journal on Wireless & Optical Communications,World Scientific ,02197995|17936934 +INTERNATIONAL JOURNAL PLANT SCIENCES,Hind Agri Horticultural Society,09731547|0976593X +INTERNATIONAL JOURNALS OF MEDICAL SCIENCES,Hind Agri Horticultural Society,09742654|09767932 +International Labor and Working-Class History,Cambridge University Press,01475479|14716445 +International Labor Rights Case Law,Brill Academic Publishers,2405688X|24056901 +International Labor Rights Case Law,Brill Academic Publishers,2405688X|24056901 +International Labour Law Reports Online,Brill Academic Publishers,01686526|22116028 +International Labour Review,Wiley Blackwell (Blackwell Publishing),00207780|1564913X +International Language Literature and Folklore Researchers Journal,"""International Language, Literature and Folklore Researchers Journal""",21478872| +International Law FORUM du droit international,Brill Academic Publishers,13889036|15718042 +International Law Research,Canadian Center of Science and Education,19275234|19275242 +International Law Revista Colombiana de Derecho Internacional,Editorial Pontificia Universidad Javeriana,16928156|20111703 +International Legal Materials,American Society of International Law,00207829|19306571 +International Letters of Chemistry Physics and Astronomy,SciPress Ltd.,22993843 +International Letters of Natural Sciences,SciPress Ltd.,23009675 +International Letters of Social and Humanistic Sciences,SciPress Ltd.,23002697 +International Library Review,Informa UK (Taylor & Francis),00207837| +International Listening Association Journal,Informa UK (Taylor & Francis),10924507| +International Maritime Health,VM Media Sp zo.o. - VMGroup SK,16419251|20813252 +International Marketing Review,Emerald (MCB UP ),02651335|00000000 +International Materials Reviews,Maney Publishing,09506608|00000000 +International Mathematical Forum,"""Hikari, Ltd.""",13127594|13147536 +International Mathematics Research Notices,Oxford University Press,10737928|16870247 +International Mathematics Research Papers,Oxford University Press,16873009|16873009 +International Mathematics Research Surveys,Oxford University Press,16871308|16871324 +International Medical Case Reports Journal,Dove Medical Press,1179142X +International Medical Journal of Sifa University,Medknow Publications,21487731| +International Medical Review on Down Syndrome,Elsevier ,21719748| +International Metallurgical Reviews,Maney Publishing,03679020| +International Metals Reviews,Maney Publishing,03084590| +International Microbiology,Springer-Verlag,11396709|16181905 +International Migration,Wiley Blackwell (Blackwell Publishing),00207985|14682435 +International Migration Digest,JSTOR,05388716| +International Migration Review,Wiley Blackwell (Blackwell Publishing),01979183|17477379 +International Monetary Fund Annual Report,International Monetary Fund,22278923| +International Monetary Fund Annual Report,International Monetary Fund,22278915| +International Monetary Fund Annual Report,International Monetary Fund,2304084X| +International Monetary Fund Annual Report,International Monetary Fund,22278990| +International Monetary Fund Annual Report,International Monetary Fund,23040858| +International Monetary Fund Annual Report,International Monetary Fund,16079418 +International Monetary Fund Annual Report,International Monetary Fund,02507528| +International Monetary Fund Annual Report,International Monetary Fund,02507501| +International Monetary Fund Annual Report,International Monetary Fund,02507498| +International Monetary Fund Annual Report,International Monetary Fund,1607937X +International Monetary Fund Annual Report,International Monetary Fund,16079396 +International Monetary Fund Annual Report,International Monetary Fund,1607940X +International Monetary Fund Staff Papers,Nature Publishing Group - Macmillan Publishers,00208027| +International Multilingual Journal of Contemporary Research,American Research Institute for Policy Development,23724846|23724854 +International Multilingual Research Journal,Informa UK (Taylor & Francis),19313152|19313160 +International Musculoskeletal Medicine,Maney Publishing,17536146|17536154 +International Nano Letters,Springer-Verlag,22285326|22285326 +International Naval Journal,Academic Publishing House Researcher,24113204|24137596 +International Negotiation,Brill Academic Publishers,1382340X|15718069 +International Neuropsychiatric Disease Journal,Sciencedomain International,23217235 +International Neuroscience Journal,International Neuroscience Institute,24518379|24518387 +International Neurourology Journal,Korean Continence Society,20934777|20936931 +International NGO Journal,Academic Journals,19938225 +International Nursing Review,Wiley Blackwell (Blackwell Publishing),00208132|14667657 +International Oil Spill Conference Proceedings,International Oil Spill Conference,21693366|21693358 +International Online Journal of Educational Sciences,International Online Journal of Educational Sciences,13092707 +International Ophthalmology,Springer-Verlag,01655701|15732630 +International Ophthalmology Clinics,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,00208167| +International Organization,Cambridge University Press,00208183|15315088 +International Organizations Law Review,Brill Academic Publishers,15723739|15723747 +International Orthodontics,Elsevier ,17617227| +International Orthopaedics,Springer-Verlag,03412695|14325195 +International Paramedic Practice,Mark Allen Group,20524889 +International Peacekeeping,Informa UK (Taylor & Francis),13533312|1743906X +INTERNATIONAL PEER-REVIEWED JOURNAL OF COMMUNICATION AND HUMANITIES RESEARCHES,"""GuvenGrup., Ltd. - International Peer-Reviewed Journal of Communication and Humanities Researches""",21483965| +INTERNATIONAL PEER-REVIEWED JOURNAL OF NUTRITION RESEARCH,"""GuvenGrup, Ltd. - International Peer-Reviewed Journal of Nutrition Research""",21488150| +International Perspectives in Psychology Research Practice Consultation,American Psychological Association,21573883|21573891 +International Perspectives on Sexual and Reproductive Health,Guttmacher Institute,19440391|19440405 +International Philosophical Quarterly,Philosophy Documentation Center,00190365| +International Planning Studies,Informa UK (Taylor & Francis),13563475|14699265 +International Political Science Abstracts,SAGE Publications,00208345|17519292 +International Political Science Review,SAGE Publications,01925121|1460373X +International Political Sociology,Oxford University Press,17495679|17495687 +International Politics,Nature Publishing Group - Macmillan Publishers,13845748|17403898 +International Politics Reviews,Nature Publishing Group - Macmillan Publishers,20502982|20502990 +International Polymer Processing The Journal of the Polymer Processing Society,Carl Hanser Verlag GMBH & Co KG,0930777X|21958602 +International Practice Development Journal,Foundation of Nursing Studies,20469292 +International Proceedings of Chemical Biological and Environmental Engineering,IACSIT Press,20104618| +International Proceedings of Computer Science and Information Technology,IACSIT Press,2010460X| +International Proceedings of Economics Development and Research,IACSIT Press,20104626| +International Psychogeriatrics,Cambridge University Press,10416102|1741203X +International Public Administration Review,"""Faculty of Administration, University of Ljubljana""",23353414|23859717 +International Public Management Journal,Informa UK (Taylor & Francis),10967494|15593169 +International Quarterly of Community Health Education,SAGE Publications,0272684X|15413519 +INTERNATIONAL REFEREED ACADEMIC JOURNAL OF SPORTS,"""GuvenGrup, Ltd. - International Refereed Academic Journal of Sports""",21471711| +INTERNATIONAL REFEREED ACADEMIC SOCIAL SCIENCES JOURNAL,GuvenGrup Ltd. - International Referred Academic Social Sciences Journal,2147172X| +INTERNATIONAL REFEREED JOURNAL OF DESIGN AND ARCHITECTURE,"""GuvenGrup, Ltd. - International Referred Journal of Design and Architecture""",21488142| +INTERNATIONAL REFEREED JOURNAL OF ENGINEERING AND SCIENCES,"""GuvenGrup, Ltd. - International Refereed Journal of Engineering and Sciences""",21484783| +INTERNATIONAL REFEREED JOURNAL OF GYNAECOLOGICAL DISEASES AND MATERNAL AND CHILD HEALTH,"""GuvenGrup, Ltd. - International Refereed Journal of Gynaecological Diseases and Maternal and Child Health""",21484775| +INTERNATIONAL REFEREED JOURNAL OF HUMANITIES AND ACADEMIC SCIENCES,"""GuvenGrup, Ltd. - International Refereed Journal of Humanities and Academic Sciences""",21475385| +INTERNATIONAL REFEREED JOURNAL OF MARKETING AND MARKET RESEARCHES,"""GuvenGrup, Ltd. - International Referred Journal of Marketing and Market Researches""",21485666| +INTERNATIONAL REFEREED JOURNAL OF MUSIC RESEARCHES,"""GuvenGrup, Ltd. - International Refereed Journal of Music Researches""",21488223| +INTERNATIONAL REFEREED JOURNAL OF NURSING RESEARCHES,"""GuvenGrup, Ltd. - International Referred Journal of Nursing Researches""",21484872| +INTERNATIONAL REFEREED JOURNAL OF ORTHOPAEDICS TRAUMATOLOGY AND SPORTS MEDICINE,"""GuvenGrup, Ltd. - International Refereed Journal of Orthopaedics Traumatology and Sports Medicine""",21485550| +INTERNATIONAL REFEREED JOURNAL OF RESEARCH ON ECONOMICS MANAGEMENT,"""GuvenGrup, Ltd. - International Refereed Journal of Research on Economics Management""",21488207| +International Regional Science Review,SAGE Publications,01600176|00000000 +International Rehabilitation Medicine,Informa UK (Taylor & Francis),03790797| +International Relations,SAGE Publications,00471178|00000000 +International Relations and Diplomacy,David Publishing Company,23282134|23282134 +International Relations in a Globalising World,SAGE Publications,09728864| +International Relations of the Asia-Pacific,Oxford University Press,1470482X|14704838 +International Research in Children s Literature,Edinburgh University Press,17556198|17556198 +International Research in Education,"""Macrothink Institute, Inc.""",23275499 +International Research in Geographical and Environmental Education,Informa UK (Taylor & Francis),10382046|17477611 +International Research in Higher Education,Sciedu Press,23809183|23809205 +INTERNATIONAL RESEARCH JOURNAL OF AGRICULTURAL ECONOMICS AND STATISTICS,Hind Agri Horticultural Society,22297278|22316434 +International Research Journal of Agriculture and Soil Science,International Research Journals,22510044 +International Research Journal of Arts and Social Sciences,International Research Journals,22766502 +International Research Journal of Bacteriology,Herbert Publications,20550901 +International Research Journal of Biochemistry and Bioinformatics,International Research Journals,22509941 +International Research Journal of Biotechnology,International Research Journals,21415153 +International Research Journal of Engineering Science Technology and Innovation,International Research Journals,23155663 +International Research Journal of Geology and Mining,International Research Journals,22766618 +International Research Journal of Horticulture,Sciknow Publications,23299436 +International Research Journal of Marketing,Sciknow Publications,23339608|23339616 +International Research Journal of Medicine and Biomedical Sciences,Journal Issues Limited,24889032 +International Research Journal of Medicine and Medical Sciences,International Research Journals,21419477 +International Research Journal of Microbiology,International Research Journals,21415463 +International Research Journal of Pharmacy,Moksha Publishing House,22308407 +International Research Journal of Pharmacy and Pharmacology,International Research Journals,22510176 +International Research Journal of Plant Science,International Research Journals,21415447 +International Research Journal of Public and Environmental Health,Journal Issues Limited,23608803 +International Research Journal of Pure and Applied Chemistry,Sciencedomain International,22313443 +International Review,Centre for Evaluation in Education and Science,22179739| +International Review for Social History,Cambridge University Press,18730841| +International Review for Spatial Planning and Sustainable Development,International Community of Spatial Planning and Sustainable Development,21873666 +International Review for the Sociology of Sport,SAGE Publications,10126902|14617218 +International Review of Administrative Sciences,SAGE Publications,00208523|00000000 +International Review of Aerospace Engineering (IREASE),"""Praise Worthy Prize, s.r.l.""",19737459|19737440 +International Review of Applied Economics,Informa UK (Taylor & Francis),02692171|14653486 +International Review of Applied Sciences,Asian Educational Journal Publishing Group,2411667X +International Review of Applied Sciences and Engineering,Akademiai Kiado Zrt.,20620810|20634269 +International Review of Automatic Control (IREACO),"""Praise Worthy Prize, s.r.l.""",19746059|19746067 +International Review of Chemical Engineering (IRECHE),"""Praise Worthy Prize, s.r.l.""",20351755|20351763 +International Review of Civil Engineering (IRECE),"""Praise Worthy Prize, s.r.l.""",20369913|20369921 +International Review of Community Development,Consortium Erudit,07079699|23696400 +International Review of Contemporary Learning Research,Scientific Publishing Center,22101438| +International Review of Cytology,Elsevier , +International Review of Economics,Springer-Verlag,18651704|18634613 +International Review of Economics & Finance,Elsevier ,10590560| +International Review of Economics and Management,International Review of Economics and Management,21483493| +International Review of Economics Education,Elsevier ,14773880| +International Review of Education,Springer-Verlag,00208566|15730638 +International Review of Electrical Engineering (IREE),"""Praise Worthy Prize, s.r.l.""",18276660|18276679 +International Review of Environmental and Resource Economics,Now Publishers,19311465|19321473 +International Review of Finance,Wiley Blackwell (Blackwell Publishing),1369412X|14682443 +International Review of Financial Analysis,Elsevier ,10575219| +International Review of Hydrobiology,Wiley Blackwell (John Wiley & Sons),14342944|15222632 +International Review of Law,Hamad bin Khalifa University Press (HBKU Press),2223859X| +International Review of Law and Economics,Elsevier ,01448188| +International Review of Law Computers & Technology,Informa UK (Taylor & Francis),13600869|13646885 +International Review of Mechanical Engineering (IREME),"""Praise Worthy Prize, s.r.l.""",19708734|19708742 +International Review of Mission,Wiley Blackwell (Blackwell Publishing),00208582|17586631 +International Review of Molecular Sciences,Pak Publishing Group, +International Review of Music Aesthetics and Sociology,JSTOR,00471208| +International Review of Neurobiology,Elsevier , +International Review of Poultry Science,Cambridge University Press,18779654| +International Review of Pragmatics,Brill Academic Publishers,18773095|18773109 +International Review of Psychiatry,Informa UK (Taylor & Francis),09540261|13691627 +International Review of Public Administration,Informa UK (Taylor & Francis),12294659|23317795 +International Review of Qualitative Research,University of California Press,19408447|19408455 +International Review of Scottish Studies,University of Guelph,19235755|19235763 +International Review of Social History,Cambridge University Press,00208590|1469512X +International Review of Social Psychology,"""Ubiquity Press, Ltd.""",21194130 +International Review of Social Research,Walter de Gruyter GmbH,20698534 +International Review of Sociology,Informa UK (Taylor & Francis),03906701|14699273 +International Review of Sport and Exercise Psychology,Informa UK (Taylor & Francis),1750984X| +International Review of Sport and Exercise Psychology,Informa UK (Taylor & Francis),1750984X|17509858 +International Review of the Aesthetics and Sociology of Music,JSTOR,03515796| +International Review of the Red Cross,Cambridge University Press,00208604|19611998 +International Review of the Red Cross,Cambridge University Press,18163831|16075889 +International Review of Victimology,SAGE Publications,02697580|20479433 +International Review on Computers and Software (IRECOS),"""Praise Worthy Prize, s.r.l.""",18286003|18286011 +International Review on Modelling and Simulations (IREMOS),"""Praise Worthy Prize, s.r.l.""",19749821|1974983X +International Review on Public and Nonprofit Marketing,Springer-Verlag,18651984|18651992 +International Reviews in Physical Chemistry,Informa UK (Taylor & Francis),0144235X|1366591X +International Reviews of Immunology,Informa UK (Taylor & Francis),08830185|15635244 +International Rice Research Notes,PhilJOL,01174185| +International rules for seed testing,International Seed Testing Association,23103655 +International Scholarly Research Notices,Hindawi Publishing Corporation,23567872 +International Scientific Journal for Alternative Energy and Ecology,Scientfic Technical Centre TATA,16088298| +International Scientific Research Journal,Alkhaer Publications,2412026X +International Security,MIT Press,01622889|15314804 +International Seminars In Pediatric Gastroenterology And Nutrition,"""Decker, Inc.""",11884525 +International Seminars in Surgical Oncology,Springer (Biomed Central Ltd.),14777800| +International Shipbuilding Progress,IOS Press,0020868X|15662829 +International Small Business Journal,SAGE Publications,02662426|17412870 +International Social Science Journal,Wiley Blackwell (Blackwell Publishing),00208701|14682451 +International Social Security Review,Wiley Blackwell (Blackwell Publishing),0020871X|1468246X +International Social Work,SAGE Publications,00208728|14617234 +International Sociology,SAGE Publications,02685809|00000000 +International Soil and Water Conservation Research,Elsevier ,20956339| +International Sport Coaching Journal,Human Kinetics,2328918X| +International Statistical Review,Wiley Blackwell (Blackwell Publishing),03067734|17515823 +International STD Research & Reviews,Sciencedomain International,23475196 +International Strategic Management Review,Elsevier ,23067748| +International Studies,SAGE Publications,00208817|09730702 +International Studies in Catholic Education,Informa UK (Taylor & Francis),19422539|19422547 +International Studies in Philosophy,Philosophy Documentation Center,02705664| +International Studies in Sociology of Education,Informa UK (Taylor & Francis),09620214|17475066 +International Studies in the Philosophy of Science,Informa UK (Taylor & Francis),02698595|14699281 +International Studies Interdisciplinary Political and Cultural Journal,De Gruyter Open Sp. z o.o. ,16414233|23008695 +International Studies of Management and Organization,Informa UK (Taylor & Francis),00208825|15580911 +International Studies on Sparrows,Walter de Gruyter GmbH,1734624X +International Studies Perspectives,Oxford University Press,15283577|15283577 +International Studies Quarterly,Oxford University Press,00208833|14682478 +International Studies Review,Oxford University Press,15219488|14682486 +International Studies Review,International Studies Review,12268240| +International Studies Review,Wiley Blackwell (Blackwell Publishing),15219488|14682486 +International Supply Chain Technology Journal,International Supply Chain Technology Journal,23805730| +International Surgery,International College of Surgeons,00208868| +International Surgery,International College of Surgeons,00208868| +International Surgery Journal,Medip Academy,23493305| +International Symposium on Eucommia ulmoides,Japanese Society of Eucommia,18815111|18823319 +International Symposium on Microelectronics,International Microelectronics and Packaging Society,23804505| +International Symposium on Technologies for Digital Photo Fulfillment,Society for Imaging Science & Technology,21694664|21694672 +International Tax and Public Finance,Springer-Verlag,09275940|15736970 +International Theory,Cambridge University Press,17529719|17529727 +International Trade by Commodity Statistics,Organisation for Economic Co-Operation and Development ,10288376|16097297 +International Trade by Commodity Statistics,Organisation for Economic Co-Operation and Development ,22195068| +International Transactions in Operational Research,Wiley Blackwell (Blackwell Publishing),09696016|14753995 +International Transactions on Electrical Energy Systems,Wiley Blackwell (John Wiley & Sons),20507038| +International Tree Crops Journal,Informa UK (Taylor & Francis),01435698| +International Trends (Mezhdunarodnye Protsessy) Journal of International Relations Theory and World Politics,Academic and Educational Forum on International Relations,18112773 +International Trends / Mezhdunarodnye protsessy,Academic and Educational Forum on International Relations,17282756| +International Trends in Immunity,Research Publisher Inc.,23263121|2326313X +International Union Rights,The International Centre for Trade Union Rights ICTUR,10185909|23085142 +International Urogynecology Journal,Springer-Verlag,09373462|14333023 +International Urology and Nephrology,Springer-Verlag,03011623|15732584 +International Wood Products Journal,Maney Publishing,20426445|20426453 +International Wound Journal,Wiley Blackwell (Blackwell Publishing),17424801|1742481X +International Yearbook for Tillich Research,Walter de Gruyter GmbH,19904231|21907455 +International Yearbook of Futurism Studies,Walter de Gruyter GmbH,21920281|2192029X +International Zoo Yearbook,Wiley Blackwell (Blackwell Publishing),00749664|17481090 +Internationale Neerlandistiek,Amsterdam University Press,18769071| +Internationale Revue der gesamten Hydrobiologie und Hydrographie,Wiley Blackwell (John Wiley & Sons),00209309|15222632 +Internationale Revue für Soziale Sicherheit,Wiley Blackwell (Blackwell Publishing),03790282|17521726 +Internationale Zeitschrift für Angewandte Physiologie Einschliesslich Arbeitsphysiologie,Springer-Verlag,00209376| +Internationales Archiv für Arbeitsmedizin,Springer-Verlag,00205923| +Internationales Archiv für Gewerbepathologie und Gewerbehygiene,Springer-Verlag,03679977| +Internationales Archiv für Sozialgeschichte der deutschen Literatur (IASL),Walter de Gruyter GmbH,03404528|18659128 +Internationales Handelsrecht,Walter de Gruyter GmbH,16175395|21939527 +Internationales Jahrbuch der Erwachsenenbildung,Bohlau Verlag,00749818|21943699 +Internationales Jahrbuch des deutschen Idealismus,Walter de Gruyter GmbH,16130472|16130480 +Internationales Jahrbuch für Medienphilosophie,Walter de Gruyter GmbH,21947554|21966834 +Internationales Jahrbuch für Philosophische Anthropologie,Oldenbourg Wissenschaftsverlag,21924279|21924287 +Internet Archaeology,Council for British Archaeology,13635387 +Internet Gaming International,Mary Ann Liebert,10974466|10974466 +Internet Interventions,Elsevier ,22147829| +Internet Journal of Medical Update - EJOURNAL,African Journals Online ,16940423 +Internet Journal of Rheumatology and Clinical Immunology,ChanRe Healthcare and Research,23207221 +Internet Learning,Policy Studies Organization,23250585 +Internet Mathematics,Informa UK (Taylor & Francis),15427951|19449488 +Internet of Things and Cloud Computing,Science Publishing Group,23767715| +Internet Reference Services Quarterly,Informa UK (Taylor & Francis),10875301|15404749 +Internet Research,Emerald (MCB UP ),10662243|00000000 +Internet Technologies and Applications Research,Sciknow Publications,23299398 +Internetnauka,LLC Publishing House Internauka,24140031 +Internext,Escola Superior de Propaganda e Marketing (ESPM),19804865 +Interpersona An International Journal on Personal Relationships,Leibniz Institute for Psychology Information,19816472 +Interpretation,Society of Exploration Geophysicists,23248858|23248866 +Interpretation A Journal of Bible and Theology,SAGE Publications,00209643|2159340X +Interpreting,John Benjamins Publishing Company,13846647|00000000 +InterScience Place,Interscience Place,16799844|16799844 +Interseções Revista de Estudos Interdisciplinares,Universidade do Estado do Rio de Janeiro UERJ,15176088|23171456 +Intersections,Intersections,2416089X +Intersections Canadian Journal of Music,Consortium Erudit,19110146|1918512X +Intertax,Springer (Kluwer Academic Publishers),01652826| +Intertexts,Muse - Johns Hopkins University Press,21565465 +Intervention,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15718883| +Intervention in School and Clinic,SAGE Publications,10534512|15384810 +Interventional Cardiology,Future Medicine,17555302|17555310 +Interventional Cardiology Clinics,Elsevier ,22117458| +Interventional Cardiology Newsletter,Elsevier ,10634282| +Interventional Cardiology Review,"""Medical Media Communications LTD, T/A Radcliffe Cardiology""",17561477| +Interventional Medicine and Applied Science,Akademiai Kiado Zrt.,20611617|20615094 +Interventional Neurology,S. Karger AG,16649737|16645545 +Interventional Neuroradiology,SAGE Publications,15910199|23852011 +Interventionelle Radiologie Scan,Thieme Publishing Group,21962510|21962529 +Interventions,Informa UK (Taylor & Francis),1369801X|1469929X +Intervirology,S. Karger AG,03005526|14230100 +Intestinal Research,Korean Association for the Study of Intestinal Diseases (KAMJE),15989100|22881956 +Intexto,Faculdade de Biblioteconomia Comunicacao,18078583 +Intractable & Rare Diseases Research,International Research and Cooperation Association for Bio & Socio-Sciences Advancement,21863644|2186361X +Intramolecular Aldol Reaction (Robinson-Type Annulation),Thieme Publishing Group,20500157 +Intramolecular Benzoin Reactions of Dialdehydes,Thieme Publishing Group,20400284 +Intramolecular Carbocyclization of Diynals and Diynones,Thieme Publishing Group,20300093 +Intramolecular Carbocyclization of Triynes,Thieme Publishing Group,20300115 +Intramolecular Michael Reaction of Aldehydes with Vinyl Sulfones,Thieme Publishing Group,20400039 +Intramolecular Synthesis of Lactams by Activation of sp C—H Bonds,Thieme Publishing Group,20300328 +IntraVital,Landes Bioscience,21659079|21659087 +Intrinsically Disordered Proteins,Landes Bioscience,21690693|21690707 +Intuitio,EDIPUCRS,19834012 +Invasion and Metastasis,S. Karger AG,02511789|14230119 +Invasive Plant Science and Management,BioOne (Weed Science Society of America),19397291|1939747X +Inventiones mathematicae,Springer-Verlag,00209910|14321297 +Inventions,MDPI AG,24115134 +Inverse Problems,IOP Publishing,02665611|13616420 +Inverse Problems and Imaging,American Institute of Mathematical Sciences,19308337| +Inverse Problems in Engineering,Informa UK (Taylor & Francis),10682767|10290281 +Inverse Problems in Science and Engineering,Informa UK (Taylor & Francis),17415977|17415985 +Invertebrate Biology,Wiley Blackwell (Blackwell Publishing),10778306|17447410 +Invertebrate Immunity,De Gruyter Open Sp. z o.o. ,2084767X|2084767X +Invertebrate Neuroscience,Springer-Verlag,13542516|14391104 +Invertebrate Reproduction & Development,Informa UK (Taylor & Francis),07924259|21570272 +Invertebrate Systematics,CSIRO Publishing,14455226| +Invertis Journal of Renewable Energy,Diva Enterprises Private Limited,22313419|24547611 +Investigación & Desarrollo,Universidad del Norte,01213261|20117574 +Investigación Agraria,Instituto de Investigaciones en Ciencias de la Salud,23050683 +Investigación Agraria Sistemas y Recursos Forestales,Instituto Nacional de Investigacion y Tecnologia Agraria y Alimentaria,11317965|23403578 +Investigación Bibliotecológica Bibliometría Archivonomía e Información,Elsevier ,0187358X| +Investigación Económica,Elsevier ,01851667| +Investigación en Educación Médica,Elsevier ,20075057| +Investigación en Enfermería Imagen y Desarrollo,Editorial Pontificia Universidad Javeriana,01242059|2027128X +Investigación y Educación en Enfermería,Universidad de Antioquia,01205307| +Investigaciones de Historia Económica - Economic History Research,Elsevier ,16986989| +Investigaciones Europeas de Dirección y Economía de la Empresa,Elsevier ,11352523| +Investigaciones Feministas,Universidad Complutense de Madrid,21716080 +Investigaciones Fenomenológicas,UNED - Universidad Nacional de Educacion a Distancia,11372400|18851088 +Investigaciones Geográficas,Publicaciones Universidad de Alicante,02134691|19899890 +Investigaciones Geográficas Boletín del Instituto de Geografía,"""Revista Investigaciones Geograficas, Boletin""",01884611| +Investigaciones marinas,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7177178 +Investigational New Drugs,Springer-Verlag,01676997|15730646 +Investigationes Linguisticae,Adam Mickiewicz University Poznan,1426188X| +Investigative and Clinical Urology,The Korean Urological Association (KAMJE),24660493|2466054X +Investigative Dermatology and Venereology Research,Ommega Online Publishers,23810858 +Investigative Genetics,Springer (Biomed Central Ltd.),20412223|20412223 +Investigative Magnetic Resonance Imaging,Korean Society of Magnetic Resonance in Medicine (KAMJE),23841095|23841109 +Investigative Ophthalmology & Visual Science,Association for Research in Vision and Opthalmology,01460404| +Investigative Opthalmology & Visual Science,Association for Research in Vision and Opthalmology,15525783| +Investigative Radiology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,00209996| +Investment Analysts Journal,Informa UK (Taylor & Francis),10293523|20770227 +Involve a Journal of Mathematics,Mathematical Sciences Publishers,19444176|19444184 +Inżynieria Ekologiczna,Wydawnictwo Naukowe Gabriel Borowski (WNGB),23920629 +INŻYNIERIA MATERIAŁOWA,"""Wydawnictwo SIGMA-NOT, sp. z.o.o.""",02086247| +Iodoetherification toward Spongistatin/Altohyrtin,Thieme Publishing Group,20200501 +Ionics,Springer-Verlag,09477047|18620760 +IOP Concise Physics,IOP Publishing,20532571 +IOP Conference Series Earth and Environmental Science,IOP Publishing,17551307|17551315 +IOP Conference Series Materials Science and Engineering,IOP Publishing,17578981|1757899X +IOSR Journal of Agriculture and Veterinary Science,IOSR Journals,23192372|23192380 +IOSR Journal of Applied Chemistry,IOSR Journals,22785736 +IOSR Journal of Applied Geology and Geophysic,IOSR Journals,23210982|23210990 +IOSR Journal of Applied Physics,IOSR Journals,22784861 +IOSR Journal of Business and Management,IOSR Journals,23197668|2278487X +IOSR Journal of Computer Engineering,IOSR Journals,22788727|22780661 +IOSR Journal of Dental and Medical Sciences,IOSR Journals,22790861|22790853 +IOSR Journal of Economics and Finance,IOSR Journals,23215925|23215933 +IOSR Journal of Electrical and Electronics Engineering,IOSR Journals,23203331|22781676 +IOSR Journal of Electronics and Communication Engineering,IOSR Journals,22788735|22782834 +IOSR Journal of Engineering,IOSR Journals,22788719|22503021 +IOSR Journal of Environmental Science Toxicology and Food Technology,IOSR Journals,23192399|23192402 +IOSR Journal of Humanities and Social Science,IOSR Journals,22790845|22790837 +IOSR Journal of Mathematics,IOSR Journals,2319765X|22785728 +IOSR Journal of Mechanical and Civil Engineering,IOSR Journals,2320334X|22781684 +IOSR Journal of Mobile Computing & Application,IOSR Journals,23940042|23940050 +IOSR Journal of Nursing and health Science,IOSR Journals,23201940|23201959 +IOSR Journal of Pharmacy (IOSRPHR),IOSR Journals,23194219|22503013 +IOSR Journal of Pharmacy and Biological Sciences,IOSR Journals,23197676|22783008 +IOSR Journal of Polymer and Textile Engineering,IOSR Journals,23480181|2348019X +IOSR Journal of Research & Method in Education (IOSRJRME),IOSR Journals,2320737X|23207388 +IOSR Journal of Sports and Physical Education,IOSR Journals,23476745|23476737 +IOSR Journal of VLSI and Signal processing,IOSR Journals,23194197|23194200 +IPNOSI,Franco Angeli,19710461|19724985 +IPrA Papers in Pragmatics,John Benjamins Publishing Company,24064246 +Iproceedings,JMIR Publications Inc.,23696893 +IPSJ Digital Courier,Information Processing Society of Japan,13497456 +IPSJ Online Transactions,Information Processing Society of Japan,18826660 +IPSJ Transactions on Bioinformatics,Information Processing Society of Japan,18826679 +IPSJ Transactions on Computer Vision and Applications,Information Processing Society of Japan,18826695 +IPSJ Transactions on System LSI Design Methodology,Information Processing Society of Japan,18826687 +IPTEK Journal of Engineering,Lembaga Penelitian dan Pengabdian kepada Masyarakat ITS,23378557 +IPTEK Journal of Proceedings Series,Lembaga Penelitian dan Pengabdian kepada Masyarakat ITS,23546026 +IPTEK The Journal for Technology and Science,Lembaga Penelitian dan Pengabdian kepada Masyarakat ITS,08534098|20882033 +IRA Bridges Instructional Units for the Engaging Classroom,International Reading Association,23115246 +IRA E-ssentials,International Reading Association,23267216 +IRA International Journal of Education and Multidisciplinary Studies (ISSN 2455–2526),Institute of Research Advances,24552526 +IRA-International Journal of Applied Sciences (ISSN 2455-4499),Institute of Research Advances,24554499 +IRA-International Journal of Management & Social Sciences (ISSN 2455-2267),Institute of Research Advances,24552267 +IRA-International Journal of Technology & Engineering (ISSN 2455-4480),Institute of Research Advances,24554480 +IRAL - International Review of Applied Linguistics in Language Teaching,Walter de Gruyter GmbH,0019042X|16134141 +Iran,JSTOR,05786967| +Iran and the Caucasus,Brill Academic Publishers,16098498|1573384X +Iranian Journal of Biotechnology,International Society for Phytocosmetic Sciences,17283043|23222921 +Iranian Journal of Cancer Prevention,International Neuroscience Institute,20082398|20082401 +Iranian Journal of Environmental Health Science & Engineering,Springer (Biomed Central Ltd.),17352746| +Iranian Journal of Nursing and Midwifery Research,Medknow Publications,17359066| +Iranian Journal of Orthodontics,International Neuroscience Institute,23833491 +Iranian Journal of Pediatrics,Kowsar Medical Institute,20082142|20082150 +Iranian Journal of Psychiatry and Behavioral Sciences,International Neuroscience Institute,17358639|17359287 +Iranian Journal of Radiology,Kowsar Medical Institute,17351065|20082711 +Iranian Polymer Journal,Springer-Verlag,10261265|17355265 +Iranian Red Crescent Medical Journal,Kowsar Medical Institute,20741804|20741812 +Iranian Studies,Informa UK (Taylor & Francis),00210862|14754819 +Iranica Antiqua,Peeters Publishers,210870 +Iranica Journal of Energy & Environment,International Digital Organization for Scientific Information,20792115|20792123 +Iraq,Cambridge University Press,00210889|20534744 +IRB Ethics and Human Research,JSTOR,01937758| +IRBM,Elsevier ,19590318| +IRBM News,Elsevier ,19597568| +IRE Professional Group on Antennas and Propagation Newsletter,Institute of Electrical and Electronics Engineers,21680523|21680515 +IRE Transactions on Aeronautical and Navigational Electronics,Institute of Electrical and Electronics Engineers,00961639| +IRE Transactions on Aerospace and Navigational Electronics,Institute of Electrical and Electronics Engineers,00961647| +IRE Transactions on Antennas and Propagation,Institute of Electrical and Electronics Engineers,00961973| +IRE Transactions on Audio,Institute of Electrical and Electronics Engineers,00961981|21682984 +IRE Transactions on Automatic Control,Institute of Electrical and Electronics Engineers,0096199X| +IRE Transactions on Bio-Medical Electronics,Institute of Electrical and Electronics Engineers,00961884|21680817 +IRE Transactions on Broadcast and Television Receivers,Institute of Electrical and Electronics Engineers,00961655|21681635 +IRE Transactions on Broadcast Transmission Systems,Institute of Electrical and Electronics Engineers,00996866| +IRE Transactions on Broadcasting,Institute of Electrical and Electronics Engineers,00961663| +IRE Transactions on Circuit Theory,Institute of Electrical and Electronics Engineers,00962007| +IRE Transactions on Communications Systems,Institute of Electrical and Electronics Engineers,00962244| +IRE Transactions on Component Parts,Institute of Electrical and Electronics Engineers,00962422| +IRE Transactions on Education,Institute of Electrical and Electronics Engineers,08937141| +IRE Transactions on Electron Devices,Institute of Electrical and Electronics Engineers,00962430| +IRE Transactions on Electronic Computers,Institute of Electrical and Electronics Engineers,03679950| +IRE Transactions on Engineering Management,Institute of Electrical and Electronics Engineers,00962252| +IRE Transactions on Engineering Writing and Speech,Institute of Electrical and Electronics Engineers,08937869| +IRE Transactions on Human Factors in Electronics,Institute of Electrical and Electronics Engineers,2262743X|21682836 +IRE Transactions on Industrial Electronics,Institute of Electrical and Electronics Engineers,01975706| +IRE Transactions on Information Theory,Institute of Electrical and Electronics Engineers,00961000|21682712 +IRE Transactions on Instrumentation,Institute of Electrical and Electronics Engineers,00962260|21681902 +IRE Transactions on Medical Electronics,Institute of Electrical and Electronics Engineers,00971049|21680795 +IRE Transactions on Microwave Theory and Techniques,Institute of Electrical and Electronics Engineers,00972002| +IRE Transactions on Military Electronics,Institute of Electrical and Electronics Engineers,00962511| +IRE Transactions on Nuclear Science,Institute of Electrical and Electronics Engineers,00962015| +IRE Transactions on Product Engineering and Production,Institute of Electrical and Electronics Engineers,00961760| +IRE Transactions on Production Techniques,Institute of Electrical and Electronics Engineers,00961779| +IRE Transactions on Radio Frequency Interference,Institute of Electrical and Electronics Engineers,00994545| +IRE Transactions on Reliability and Quality Control,Institute of Electrical and Electronics Engineers,00974552|21682801 +IRE Transactions on Space Electronics and Telemetry,Institute of Electrical and Electronics Engineers,0096252X| +IRE Transactions on Telemetry and Remote Control,Institute of Electrical and Electronics Engineers,00962538|21680337 +IRE Transactions on Ultrasonic Engineering,Institute of Electrical and Electronics Engineers,00961019| +IRE Transactions on Vehicular Communications,Institute of Electrical and Electronics Engineers,00976628| +Iridium-Catalyzed Asymmetric Hydrogenation,Thieme Publishing Group,20100167 +Irish Economic and Social History,SAGE Publications,03324893|20504918 +Irish Educational Studies,Informa UK (Taylor & Francis),03323315|17474965 +Irish Geography,Informa UK (Taylor & Francis),00750778|19394055 +Irish Geography,Informa UK (Taylor & Francis),00750778| +Irish Geography,Informa UK (Taylor & Francis),00750778| +Irish Geography,Informa UK (Taylor & Francis),00750778| +Irish Historical Studies,Cambridge University Press,00211214|20564139 +Irish Journal of Agricultural and Food Research,Walter de Gruyter GmbH,7916833 +Irish Journal of Earth Sciences,Royal Irish Academy,07901763|20090064 +Irish Journal of French Studies,Irish Journal of French Studies,16491335| +Irish Journal of Medical Science (1971 -),Springer-Verlag,00211265|18634362 +Irish Journal of Psychological Medicine,Cambridge University Press,07909667|20516967 +Irish Journal of Sociology,SAGE Publications,07916035|20505280 +Irish Philosophical Journal,Philosophy Documentation Center,02669080| +Irish Political Studies,Informa UK (Taylor & Francis),07907184|17439078 +Irish Studies in International Affairs,Royal Irish Academy,03321460|20090072 +Irish Studies Review,Informa UK (Taylor & Francis),09670882|14699303 +Irish Theological Quarterly,SAGE Publications,00211400|17524989 +Irish University Review,Edinburgh University Press,00211427|20472153 +Irish Veterinary Journal,Springer (Biomed Central Ltd.),20460481|20460481 +Ironmaking & Steelmaking,Maney Publishing,03019233|00000000 +Irriga,Brazilian Journal of Irrigation and Drainage - IRRIGA,18088546|18088546 +Irrigation & Drainage Systems Engineering,OMICS Publishing Group,21689768 +Irrigation and Drainage,Wiley Blackwell (John Wiley & Sons),15310353|15310361 +Irrigation and Drainage Systems,Springer-Verlag,01686291|15730654 +Irrigation Science,Springer-Verlag,03427188|14321319 +Irydion Literatura - Teatr - Kultura,Akademia im. Jana Dlugosza w Czestochowie,23918608| +Iryo To Shakai,The Health Care Science Institute,09169202|18834477 +Iryo Yakugaku (Japanese Journal of Pharmaceutical Health Care and Sciences),Japanese Society of Pharmaceutical Health Care and Sciences,1346342X|18821499 +Iryou kikigaku (The Japanese journal of medical instrumentation),Japanese Society of Medical Instrumentation,18824978|1884054X +İş ve İnsan Dergisi,Is ve Insan Dergisi,2148967X +ISA Transactions,Elsevier ,00190578| +ISABB Journal of Food and Agricultural Sciences,Academic Journals,19373244 +ISABB Journal of Health and Environmental Sciences,Academic Journals,19373236 +ISBT Science Series,Wiley Blackwell (Blackwell Publishing),17512816|17512824 +Isegoría,Departmento de Publicaciones del CSIC,11302097|19888376 +ISGUC The Journal of Industrial Relations and Human Resources,"""IS, GUC The Journal of Industrial Relations and Human Resoruces""",13032860 +ISH Journal of Hydraulic Engineering,Informa UK (Taylor & Francis),09715010|21643040 +ISIJ International,The Iron and Steel Institute of Japan,09151559|13475460 +Isis,The University of Chicago Press,00211753|15456994 +Iskolakultúra,Iskolakultura,12155233|17895170 +Islam and Christian–Muslim Relations,Informa UK (Taylor & Francis),09596410|14699311 +Islam and Civilisational Renewal,"""Al Manhal FZ, LLC""",13940937| +İslam Medeniyeti Araştırmaları Dergisi,Islam Medeniyet Arastirmalari Dergisi (IMAD),21490872 +Islami Bank Medical College Journal,Bangladesh Journals Online,22259171| +Islamic Africa,Brill Academic Publishers,08030685|21540993 +Islamic Law and Society,Brill Academic Publishers,09289380|15685195 +Islamic Lifestyle Centered on Health,Kowsar Medical Institute,23222166|23222174 +Islamic Perspective and Culture,Macro World Publishing,2148192X|21499403 +ISLAMICA Jurnal Studi Keislaman,"""State Islamic University (UIN) of Sunan, Ampel""",19783183|23562218 +Islamika Indonesiana,Sunan Gunung Djati State Islamic University of Bandung,23556242 +Islāmīyat alMa rifah Journal of Contemporary Islamic Thought,"""Al Manhal FZ, LLC""",17294193| +Islamiyyat,Penerbit Universiti Kebangsaan Malaysia (UKM Press),01265636| +Island Arc,Wiley Blackwell (Blackwell Publishing),10384871|14401738 +Islets,Landes Bioscience,19382014|19382022 +Isogloss A journal on variation of Romance and Iberian languages,Universitat Autonoma de Barcelona,23854138 +Isokinetics and Exercise Science,IOS Press,09593020|18785913 +Isotopenpraxis Isotopes in Environmental and Health Studies,Informa UK (Taylor & Francis),00211915| +Isotopes in Environmental and Health Studies,Informa UK (Taylor & Francis),10256016|14772639 +ISPRS - International Archives of the Photogrammetry Remote Sensing and Spatial Information Sciences,Copernicus GmbH,16821777 +ISPRS Annals of Photogrammetry Remote Sensing and Spatial Information Sciences,Copernicus GmbH,21949050 +ISPRS International Journal of Geo-Information,MDPI AG,22209964 +ISPRS Journal of Photogrammetry and Remote Sensing,Elsevier ,09242716| +ISRA International Arabic Journal of Islamic Journal,"""Al Manhal FZ, LLC""",22317325| +ISRA International Journal of Islamic Finance,"""Al Manhal FZ, LLC""",01281976| +Israel Affairs,Informa UK (Taylor & Francis),13537121|17439086 +Israel Journal of Chemistry,Wiley Blackwell (John Wiley & Sons),00212148|18695868 +Israel Journal of Earth Sciences,Laser Pages Publishing Ltd,00212164| +Israel Journal of Ecology and Evolution,Informa UK (Taylor & Francis),15659801|22244662 +Israel Journal of Foreign Affairs,Informa UK (Taylor & Francis),23739770|23739789 +Israel Journal of Health Policy Research,Springer (Biomed Central Ltd.),20454015|20454015 +Israel Journal of Mathematics,Springer-Verlag,00212172|15658511 +Israel Journal of Plant Sciences,Informa UK (Taylor & Francis),15658187|07929978 +Israel Journal of Zoology,Laser Pages Publishing Ltd,00212210| +Israel Law Review,Cambridge University Press,00212237|20479336 +Israel Studies,Indiana University Press,10849513|1527201X +Israel Studies Forum,Berghahn Books,10657711|1558545X +Israeli Studies Review,Berghahn Books,21590370|21590389 +ISRN Addiction,Hindawi Publishing Corporation,23144734 +ISRN Aerospace Engineering,Hindawi Publishing Corporation,23146427 +ISRN Agronomy,Hindawi (International Scholarly Research Network),20907656|20907664 +ISRN AIDS,Hindawi (International Scholarly Research Network),2090939X +ISRN Algebra,Hindawi (International Scholarly Research Network),20906285|20906293 +ISRN Allergy,Hindawi (International Scholarly Research Network),20905521|2090553X +ISRN Analytical Chemistry,Hindawi (International Scholarly Research Network),20907311|2090732X +ISRN Anatomy,Hindawi (International Scholarly Research Network),23144726 +ISRN Anesthesiology,Hindawi (International Scholarly Research Network),20905548|20905556 +ISRN Applied Mathematics,Hindawi (International Scholarly Research Network),20905564|20905572 +ISRN Artificial Intelligence,Hindawi (International Scholarly Research Network),20907435|20907443 +ISRN Astronomy and Astrophysics,Hindawi (International Scholarly Research Network),20904738|20904746 +ISRN Atmospheric Sciences,Hindawi (International Scholarly Research Network),23144645 +ISRN Automotive Engineering,Hindawi Publishing Corporation,23146362 +ISRN Bacteriology,Hindawi Publishing Corporation,23146273 +ISRN Biochemistry,Hindawi (International Scholarly Research Network),20907729 +ISRN Biodiversity,Hindawi Publishing Corporation,23146257 +ISRN Bioinformatics,Hindawi (International Scholarly Research Network),20907338|20907346 +ISRN Biomarkers,Hindawi Publishing Corporation,23146265 +ISRN Biomaterials,Hindawi (International Scholarly Research Network),23144025 +ISRN Biomathematics,Hindawi (International Scholarly Research Network),20907702 +ISRN Biomedical Engineering,Hindawi Publishing Corporation,23146346 +ISRN Biomedical Imaging,Hindawi Publishing Corporation,23145412 +ISRN Biophysics,Hindawi (International Scholarly Research Network),20907354|20907362 +ISRN Biotechnology,Hindawi (International Scholarly Research Network),20909403 +ISRN Botany,Hindawi (International Scholarly Research Network),20908598 +ISRN Cardiology,Hindawi (International Scholarly Research Network),20905580|20905599 +ISRN Cell Biology,Hindawi (International Scholarly Research Network),20907370|20907389 +ISRN Ceramics,Hindawi (International Scholarly Research Network),20907494|20907508 +ISRN Chemical Engineering,Hindawi (International Scholarly Research Network),2090861X +ISRN Chromatography,Hindawi (International Scholarly Research Network),20908636 +ISRN Civil Engineering,Hindawi (International Scholarly Research Network),20905106|20905114 +ISRN Combinatorics,Hindawi (International Scholarly Research Network),20908911 +ISRN Communications and Networking,Hindawi (International Scholarly Research Network),20904355|20904363 +ISRN Computational Biology,Hindawi Publishing Corporation,23145420 +ISRN Computational Mathematics,Hindawi (International Scholarly Research Network),20907842 +ISRN Computer Graphics,Hindawi (International Scholarly Research Network),20907869 +ISRN Condensed Matter Physics,Hindawi (International Scholarly Research Network),20907397|20907400 +ISRN Construction Engineering,Hindawi Publishing Corporation,23146370 +ISRN Corrosion,Hindawi (International Scholarly Research Network),20908903 +ISRN Critical Care,Hindawi (International Scholarly Research Network),20905610 +ISRN Dentistry,Hindawi (International Scholarly Research Network),20904371|2090438X +ISRN Dermatology,Hindawi (International Scholarly Research Network),20904592|20904606 +ISRN Developmental Biology,Hindawi (International Scholarly Research Network),23144653 +ISRN Discrete Mathematics,Hindawi Publishing Corporation,20907788 +ISRN Ecology,Hindawi (International Scholarly Research Network),20904614|20904622 +ISRN Economics,Hindawi (International Scholarly Research Network),20908938 +ISRN Education,Hindawi Publishing Corporation,20908652 +ISRN Electrochemistry,Hindawi Publishing Corporation,23145439 +ISRN Electronics,Hindawi (International Scholarly Research Network),20908679 +ISRN Emergency Medicine,Hindawi (International Scholarly Research Network),20905629|20905637 +ISRN Endocrinology,Hindawi (International Scholarly Research Network),20904630|20904649 +ISRN Endoscopy,Hindawi (International Scholarly Research Network),20909411 +ISRN Entomology,Hindawi Publishing Corporation,23145447 +ISRN Environmental Chemistry,Hindawi Publishing Corporation,23146419 +ISRN Epidemiology,Hindawi (International Scholarly Research Network),2090942X +ISRN Evolutionary Biology,Hindawi (International Scholarly Research Network),23144033 +ISRN Family Medicine,Hindawi (International Scholarly Research Network),23144769 +ISRN Forestry,Hindawi (International Scholarly Research Network),2090892X +ISRN Gastroenterology,Hindawi (International Scholarly Research Network),20904398|20904401 +ISRN Genetics,Hindawi (International Scholarly Research Network),20908687 +ISRN Genomics,Hindawi (International Scholarly Research Network),23144637 +ISRN Geology,Hindawi (International Scholarly Research Network),23144742 +ISRN Geometry,Hindawi (International Scholarly Research Network),20906307|20906315 +ISRN Geophysics,Hindawi (International Scholarly Research Network),20908946 +ISRN Geriatrics,Hindawi (International Scholarly Research Network),23144750 +ISRN Hematology,Hindawi (International Scholarly Research Network),2090441X|20904428 +ISRN Hepatology,Hindawi (International Scholarly Research Network),23144041 +ISRN High Energy Physics,Hindawi (International Scholarly Research Network),20907419|20907427 +ISRN Hypertension,Hindawi (International Scholarly Research Network),20908709 +ISRN Immunology,Hindawi (International Scholarly Research Network),20905645|20905653 +ISRN Industrial Engineering,Hindawi Publishing Corporation,23146435 +ISRN Infectious Diseases,Hindawi (International Scholarly Research Network),20908725 +ISRN Inflammation,Hindawi (International Scholarly Research Network),20908695 +ISRN Inorganic Chemistry,Hindawi (International Scholarly Research Network),2314470X +ISRN Machine Vision,Hindawi (International Scholarly Research Network),20907796|2090780X +ISRN Materials Science,Hindawi (International Scholarly Research Network),20906080|20906099 +ISRN Mathematical Analysis,Hindawi (International Scholarly Research Network),20904657|20904665 +ISRN Mathematical Physics,Hindawi (International Scholarly Research Network),20904673|20904681 +ISRN Mechanical Engineering,Hindawi (International Scholarly Research Network),20905122|20905130 +ISRN Medicinal Chemistry,Hindawi Publishing Corporation,2314629X +ISRN Metallurgy,Hindawi (International Scholarly Research Network),20908717 +ISRN Meteorology,Hindawi (International Scholarly Research Network),20907516|20907524 +ISRN Microbiology,Hindawi (International Scholarly Research Network),20907478|20907486 +ISRN Minimally Invasive Surgery,Hindawi (International Scholarly Research Network),20909438 +ISRN Molecular Biology,Hindawi (International Scholarly Research Network),20907907 +ISRN Molecular Imaging,Hindawi (International Scholarly Research Network),20908962 +ISRN Nanomaterials,Hindawi (International Scholarly Research Network),20908741 +ISRN Nanotechnology,Hindawi (International Scholarly Research Network),20906064|20906072 +ISRN Nephrology,Hindawi (International Scholarly Research Network),2314405X +ISRN Neuroendocrinology,Hindawi (International Scholarly Research Network),20907982 +ISRN Neurology,Hindawi (International Scholarly Research Network),20905505|20905513 +ISRN Neuroscience,Hindawi (International Scholarly Research Network),23144661 +ISRN Nursing,Hindawi (International Scholarly Research Network),20905483|20905491 +ISRN Nutrition,Hindawi (International Scholarly Research Network),23144068 +ISRN Obesity,Hindawi (International Scholarly Research Network),20909446 +ISRN Obstetrics and Gynecology,Hindawi (International Scholarly Research Network),20904436|20904444 +ISRN Oceanography,Hindawi (International Scholarly Research Network),20908989 +ISRN Oncology,Hindawi (International Scholarly Research Network),20905661|2090567X +ISRN Operations Research,Hindawi Publishing Corporation,23146397 +ISRN Ophthalmology,Hindawi (International Scholarly Research Network),20905688|20905696 +ISRN Optics,Hindawi (International Scholarly Research Network),20907826 +ISRN Organic Chemistry,Hindawi (International Scholarly Research Network),20905149|20905157 +ISRN Orthopedics,Hindawi (International Scholarly Research Network),20906161|2090617X +ISRN Otolaryngology,Hindawi (International Scholarly Research Network),20905742|20905750 +ISRN Oxidative Medicine,Hindawi Publishing Corporation,23146400 +ISRN Pain,Hindawi (International Scholarly Research Network),23144718 +ISRN Parasitology,Hindawi (International Scholarly Research Network),23144076 +ISRN Pathology,Hindawi (International Scholarly Research Network),2090570X|20905718 +ISRN Pediatrics,Hindawi (International Scholarly Research Network),2090469X|20904703 +ISRN Pharmaceutics,Hindawi (International Scholarly Research Network),20906145|20906153 +ISRN Pharmacology,Hindawi (International Scholarly Research Network),20905165|20905173 +ISRN Physical Chemistry,Hindawi (International Scholarly Research Network),20907761 +ISRN Physiology,Hindawi (International Scholarly Research Network),2314467X +ISRN Plastic Surgery,Hindawi (International Scholarly Research Network),20908768 +ISRN Polymer Science,Hindawi (International Scholarly Research Network),20908733 +ISRN Power Engineering,Hindawi Publishing Corporation,2314632X +ISRN Preventive Medicine,Hindawi (International Scholarly Research Network),20908784 +ISRN Probability and Statistics,Hindawi (International Scholarly Research Network),2090472X +ISRN Psychiatry,Hindawi (International Scholarly Research Network),20907966 +ISRN Public Health,Hindawi (International Scholarly Research Network),20908008|20908008 +ISRN Pulmonology,Hindawi (International Scholarly Research Network),20905769|20905777 +ISRN Radiology,Hindawi (International Scholarly Research Network),23144084 +ISRN Rehabilitation,Hindawi (International Scholarly Research Network),20906129|20906137 +ISRN Renewable Energy,Hindawi (International Scholarly Research Network),20907451|2090746X +ISRN Rheumatology,Hindawi (International Scholarly Research Network),20905467|20905475 +ISRN Robotics,Hindawi (International Scholarly Research Network),20908806 +ISRN Sensor Networks,Hindawi Publishing Corporation,20907745 +ISRN Signal Processing,Hindawi (International Scholarly Research Network),20905041|2090505X +ISRN Software Engineering,Hindawi (International Scholarly Research Network),20907672|20907680 +ISRN Soil Science,Hindawi (International Scholarly Research Network),2090875X +ISRN Spectroscopy,Hindawi (International Scholarly Research Network),20908776 +ISRN Stem Cells,Hindawi (International Scholarly Research Network),20908792 +ISRN Stroke,Hindawi (International Scholarly Research Network),20909454 +ISRN Structural Biology,Hindawi (International Scholarly Research Network),23144688 +ISRN Surgery,Hindawi (International Scholarly Research Network),20905785|20905793 +ISRN Textiles,Hindawi Publishing Corporation,23146389 +ISRN Thermodynamics,Hindawi (International Scholarly Research Network),20905211 +ISRN Tissue Engineering,Hindawi (International Scholarly Research Network),23144696 +ISRN Toxicology,Hindawi (International Scholarly Research Network),20906188|20906196 +ISRN Transplantation,Hindawi (International Scholarly Research Network),23144092 +ISRN Tribology,Hindawi (International Scholarly Research Network),2090889X +ISRN Tropical Medicine,Hindawi Publishing Corporation,23145455 +ISRN Urology,Hindawi (International Scholarly Research Network),20905807|20905815 +ISRN Vascular Medicine,Hindawi (International Scholarly Research Network),20905823|20905831 +ISRN Veterinary Science,Hindawi (International Scholarly Research Network),20904452|20904460 +ISRN Virology,Hindawi (International Scholarly Research Network),20908814 +ISRN Zoology,Hindawi (International Scholarly Research Network),2090522X|20905238 +Issue A Journal of Opinion,JSTOR,00471607| +Issues and Ideas in Education,Chitkara University Publications,23207655|23208805 +Issues in Accounting Education,American Accounting Association,07393172|15587983 +Issues in Biological Sciences and Pharmaceutical Research,Journal Issues Limited,23501588 +Issues in Business Management and Economics,Journal Issues Limited,2350157X +Issues in Comprehensive Pediatric Nursing,Informa UK (Taylor & Francis),01460862|1521043X +Issues in Economics and Business,"""Macrothink Institute, Inc.""",23772301 +Issues in Education,Elsevier ,10809724| +Issues in Feminism,Korea Women's Studies Institute,15984192| +Issues in Health Care of Women,Informa UK (Taylor & Francis),01615246| +Issues in Legal Scholarship,Walter de Gruyter GmbH,21945780|15398323 +Issues in Mental Health Nursing,Informa UK (Taylor & Francis),01612840|10964673 +Issues in Scientific Research,Journal Issues Limited,24087513 +Issues in Social Science,"""Macrothink Institute, Inc.""",2329521X +Issues of Analysis,Petrozavodsk State University,23063432 +Issues of Business and Law,De Gruyter Open Sp. z o.o. ,20291094 +Issues of Business and Law,Association of Lithuaninan Serials,20299214| +Istanbul Aydin Universitesi Dergisi,Istanbul Aydin University,13091352|21490074 +Istanbul Bilim University Florence Nightingale Journal of Medicine,Baycinar Tibbi Yayincilik,21494401| +Istanbul Cardiovascular Research Journal,Logos Medical Publication,21498237| +İstanbul Gelişim Üniversitesi Sosyal Bilimler Dergisi,Istanbul Gelisim University Journal of Social Sciences,21484287|21487189 +Istanbul Journal of Sociological Studies,Istanbul Journal of Sociological Studies,13040243| +İstanbul Kanuni Sultan Süleyman Tıp Dergisi,Logos Medical Publication,2148273X| +Istanbul Medical Journal,AVES Publishing Co.,13048503|13048503 +İstanbul Tıp Fakültesi Dergisi,Journal of Istanbul Faculty of Medicine,13056433|13056441 +İstanbul Üniversitesi Orman Fakültesi Dergisi,"""Journal of the Faculty of Forestry, Istanbul University""",05358418|13096257 +İstanbul Üniversitesi Veteriner Fakültesi Dergisi,Journal of the Faculty of Veterinary Medicine Istanbul University,02502836|21488320 +Istanbul University Journal of Fisheries & Aquatic Sciences,Istanbul University Faculty of Fisheries,10181911|13071416 +Istorija,Lithuanian University of Educational Sciences,13920456|20297181 +Istoriya meditsiny,Innovative Medical Technologies Development Foundation,23116919|24095583 +Istrazivanja i projektovanja za privredu,Centre for Evaluation in Education and Science,14514117| +it - Information Technology,Oldenbourg Wissenschaftsverlag,16112776|21967032 +IT Professional,Institute of Electrical and Electronics Engineers,15209202| +IT-Szene München,Springer-Verlag,18631983 +ITA-Manu scripte (Arbeitspapiere),Verlag der Osterreichischen Akademie der Wissenschaften,16819187 +ITA-Manu scripte (Arbeitspapiere),Verlag der Osterreichischen Akademie der Wissenschaften,16819187 +ITA-Manu scripte (Arbeitspapiere),Verlag der Osterreichischen Akademie der Wissenschaften,16819187 +ITA-Newsletter,Verlag der Osterreichischen Akademie der Wissenschaften,16079795 +ITA-Newsletter,Verlag der Osterreichischen Akademie der Wissenschaften,16079795 +ITA-Projektberichte,Verlag der Osterreichischen Akademie der Wissenschaften,18191320 +ÍTACA Revista de Filologia,Publicaciones Universidad de Alicante,21725500| +ITALIA CONTEMPORANEA,Franco Angeli,03921077|20364555 +Italian Culture,Maney Publishing,01614622|15590909 +Italian Economic Journal,Springer-Verlag,2199322X|21993238 +Italian Journal of Agronomy,PAGEPress Publications,11254718|20396805 +Italian Journal of Animal Science,PAGEPress Publications,15944077|1828051X +Italian Journal of Food Safety,PAGEPress Publications,22397132|22397132 +Italian Journal of Geosciences,Societa Geologica Italiana,20381719| +Italian Journal of Medicine,PAGEPress Publications,18779344|18779352 +Italian Journal of Pediatrics,Springer (Biomed Central Ltd.),18247288|18247288 +Italian Journal of Remote Sensing,Associazione Italiana di Telerilevamento,11298596|20397879 +Italian Journal of Zoology,Informa UK (Taylor & Francis),11250003|17485851 +Italian Oral Surgery,Elsevier ,18272452| +Italian Political Science Review/Rivista Italiana di Scienza Politica,Cambridge University Press,00488402|20574908 +Italian Politics,Berghahn Books,10864946|23267259 +Italian Science Review,"""Science and Education, Ltd.""",2308832X| +Italian Studies,Maney Publishing,00751634|17486181 +Italian Studies in Southern Africa/Studi d’Italianistica nell’Africa Australe,African Journals Online ,10122338|10122338 +Italica,JSTOR,00213020| +Italica Wratislaviensia,Wydawnictwo Adam Marszalek,20844514| +Italies,OpenEdition,21086540|21086540 +Italique,OpenEdition,14233983|16634438 +ITB Journal of Engineering Science,The Institute for Research and Community Services ITB,19783051| +ITB Journal of Information and Communication Technology,The Institute for Research and Community Services ITB,19783086| +ITB journal of Sciences,The Institute for Research and Community Services ITB,19783043| +ITB Journal of Visual Art and Design,The Institute for Research and Community Services ITB,19783078| +ITBM-RBM,Elsevier ,12979562| +ITBM-RBM News,Elsevier ,12979570| +Itch & Pain,"""Smart Science and Technology, LLC""",23779756 +ITE Transactions on Media Technology and Applications,The Institute of Image Information and Television Engineers,21867364 +ITECKNE Innovación e Investigación en Ingeniería,Universidad Santo Tomas,16921798|23393483 +ITEGAM- Journal of Engineering and Technology for Industrial Applications (ITEGAM-JETIA),GN1 Genesis Network,24470228| +Itinéraires,OpenEdition,21001340|2427920X +Itinerario,Cambridge University Press,01651153|20412827 +Itinerarios Educativos,Universidad Nacional del Litoral,18503853|23625554 +Itinerarius Reflectionis,Universidade Federal de Goias,16792009|18079342 +ITL - International Journal of Applied Linguistics,John Benjamins Publishing Company,00190829|00190810 +ITL Review of Applied Linguistics,Peeters Publishers,190810 +ITM Web of Conferences,EDP Sciences,22712097 +ITNOW,Oxford University Press,17465702|17465710 +ITS Journal - Intelligent Transportation Systems Journal,Informa UK (Taylor & Francis),10248072| +IUBMB Life,Wiley Blackwell (John Wiley & Sons),15216543|15216551 +IUCrData,International Union of Crystallography,24143146 +IUCrJ,International Union of Crystallography,20522525 +IUG Journal of Economics and Business Studies,"""Al Manhal FZ, LLC""",24108723| +IUG Journal of Educational and Psychological Studies,"""Al Manhal FZ, LLC""",24102946| +IUG Journal of Humanities Research,"""Al Manhal FZ, LLC""",24103160| +IUG Journal of Islamic Studies,"""Al Manhal FZ, LLC""",24108715| +IUMPST The Journal,Ankara University,21657874 +Ius et Praxis,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7180012 +IUSTA,Universidad Santo Tomas,19000448| +IVF Lite,Medknow Publications,23482907| +IZA Journal of European Labor Studies,Springer (Biomed Central Ltd.),21939012|21939012 +IZA Journal of Labor & Development,Springer (Biomed Central Ltd.),21939020|21939020 +IZA Journal of Labor Economics,Springer (Biomed Central Ltd.),21938997|21938997 +IZA Journal of Labor Policy,Springer (Biomed Central Ltd.),21939004|21939004 +IZA Journal of Migration,Springer (Biomed Central Ltd.),21939039|21939039 +IZA World of Labor,Forschungsinstitut zur Zukunft der Arbeit GmbH,20549571|20549571 +Izquierdas,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7185049 +IZUMI,Institute of Research and Community Services Diponegoro University (LPPM UNDIP),2338249X|25023535 +Izvestiâ vysših učebnyh zavedenij Priborostroenie,ITMO University,00213454| +Izvestiya Atmospheric and Oceanic Physics,Pleiades Publishing,00014338|1555628X +Izvestiya Mathematics,Turpion ,10645632|14684810 +Izvestiya of Altai State University,Altai State University,15619443|15619451 +IZVESTIYA OF SARATOV UNIVERSITY NEW SERIES SERIES ECONOMICS MANAGEMENT LAW,Saratov State University,19942540| +Izvestiya of Saratov University New Series Series Mathematics Mechanics Informatics,Saratov State University,18169791| +Izvestiya of Saratov University New Series Series Philology Journalism,Saratov State University,18177115| +Izvestiya Physics of the Solid Earth,Pleiades Publishing,10693513|15556506 +Izvestiya Rossiiskoi Akademii Nauk Seriya Geograficheskaya,"""Institute of Geography, Russian Academy of Sciences""",03732444| +IZVESTIYA SFedU ENGINEERING SCIENCES,"""Science and Education, Ltd.""",23113103| +Izvestiya Visshikh Uchebnykh Zavedenii Chernaya Metallurgiya = Izvestiya Ferrous Metallurgy,National University of Science and Technology MISiS,03680797|24102091 +Izvestiya Vuzov Poroshkovaya Metallurgiya i Funktsional’nye Pokrytiya (Proceedings of Higher Schools Powder Metallurgy аnd Functional Coatings),National University of Science and Technology MISiS,1997308X|24128767 +Izvestiya Vuzov Tsvetnaya Metallurgiya (Proceedings of Higher Schools Nonferrous Metallurgy),National University of Science and Technology MISiS,00213438|24128783 +Izvestiya Vysshikh Uchebnykh Zavedenii Materialy Elektronnoi Tekhniki = Materials of Electronics Engineering,National University of Science and Technology MISiS,16093577| +J for Global Business Advancement,Inderscience Enterprises Ltd.,1746966X|17469678 +J for International Business and Entrepreneurship Development,Inderscience Enterprises Ltd.,15499324|17476763 +J of Control Science and Engineering,David Publishing Company,23282231|23282231 +J of Design Research,Inderscience Enterprises Ltd.,17483050|15691551 +J of Electrical Engineering,David Publishing Company,23282223|23282223 +J of Health Science,David Publishing Company,23287136|23287136 +J of Hydraulic Engineering,David Publishing Company,23328215|23328215 +J of Tourism and Hospitality Management,David Publishing Company,23282169|23282169 +J Proteome Research,Nature Publishing Group, +J Qual Clin Practice,Wiley Blackwell (Blackwell Publishing),13205455|14401762 +J Reprod Fertil,Bioscientifica,00224251| +J TI UNDIP JURNAL TEKNIK INDUSTRI,Chemical Engineering Diponegoro University,19071434|25021516 +J19 The Journal of Nineteenth-Century Americanists,Muse - Johns Hopkins University Press,21667438 +J3eA,EDP Sciences,16385705 +JA Clinical Reports,Springer (Biomed Central Ltd.),23639024 +JAAD Case Reports,Elsevier ,23525126| +JACC Basic to Translational Science,Elsevier ,2452302X| +JACC Cardiovascular Imaging,Elsevier ,1936878X| +JACC Cardiovascular Interventions,Elsevier ,19368798| +JACC Clinical Electrophysiology,Elsevier ,24055018| +JACC Heart Failure,Elsevier ,22131779| +Jadavpur Journal of International Relations,SAGE Publications,09735984|23490047 +JAE,JSTOR,01492993| +Jahangirnagar University Environmental Bulletin,Bangladesh Journals Online,23043326| +Jahrbuch der Berliner Museen,JSTOR,00752207| +Jahrbuch der Göttinger Akademie der Wissenschaften,Walter de Gruyter GmbH,03739767| +Jahrbuch der Jean-Paul-Gesellschaft,Walter de Gruyter GmbH,00753580| +Jahrbuch der Juristischen Zeitgeschichte,Walter de Gruyter GmbH,18696899|18696902 +Jahrbuch der Österreichischen Byzantinistik,Verlag der Osterreichischen Akademie der Wissenschaften,03788660|1810536X +Jahrbuch der Raabe-Gesellschaft,Walter de Gruyter GmbH,00752371|18658857 +Jahrbuch des Instituts für Deutsche Sprache,Walter de Gruyter GmbH,05377900|18689124 +Jahrbuch des Kölnischen Geschichtsvereins,Bohlau Verlag,03419320|21980675 +Jahrbuch f??r P??dagogik,"""Peter Lang, International Academic Publishers""",09411461| +Jahrbuch für Geschichte Lateinamerikas,Bohlau Verlag,14384752|21943680 +Jahrbuch für Internationale Germanistik,"""Peter Lang, International Academic Publishers""",04495233| +Jahrbuch für Regionalwissenschaft,Springer-Verlag,01737600|16139836 +Jahrbuch für Volksliedforschung,JSTOR,00752789| +Jahrbuch für Wirtschaftsgeschichte / Economic History Yearbook,Oldenbourg Wissenschaftsverlag,00752800|21966842 +Jahrbuch für Wissenschaft und Ethik,Walter de Gruyter GmbH,14309017|16131142 +Jahrbuch Menschenrechte,Bohlau Verlag,23108843|2310886X +Jahrbücher für Nationalökonomie und Statistik,Walter de Gruyter GmbH,00214027|2366049X +Jahresbericht der Deutschen Mathematiker-Vereinigung,Springer Fachmedien Wiesbaden GmbH,00120456|18697135 +Jahresberichte und Mitteilungen des Oberrheinischen Geologischen Vereins,Schweizerbart,00782947| +Jahreshefte des Österreichischen Archäologischen Institutes in Wien,Verlag der Osterreichischen Akademie der Wissenschaften,00783579|17295416 +Jahreshefte des Vereins für vaterländische Naturkunde in Württemberg,Smithsonian Institution Biodiversity Heritage Library,03684717| +JAIDS Journal of Acquired Immune Deficiency Syndromes,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15254135| +JAK-STAT,Landes Bioscience,21623988|21623996 +JAMA,American Medical Association,00987484|15383598 +JAMA Cardiology,American Medical Association,23806583| +JAMA Dermatology,American Medical Association,21686068| +JAMA Facial Plastic Surgery,American Medical Association,21686076| +JAMA Internal Medicine,American Medical Association,21686106| +JAMA Neurology,American Medical Association,21686149| +JAMA Oncology,American Medical Association,23742437| +JAMA Ophthalmology,American Medical Association,21686165|21686173 +JAMA Otolaryngology—Head & Neck Surgery,American Medical Association,21686181|2168619X +JAMA Pediatrics,American Medical Association,21686203| +JAMA Psychiatry,American Medical Association,2168622X|21686238 +JAMA Surgery,American Medical Association,21686254| +Jàmbá Journal of Disaster Risk Studies,AOSIS,19961421|2072845X +James Baldwin Review,Manchester University Press,20569203|20569211 +James Joyce Quarterly,Muse - Johns Hopkins University Press,19386036 +JAMSTEC Report of Research and Development,Japan Agency for Marine-Earth Science and Technology,18801153|2186358X +Janaki Medical College Journal of Medical Science,Nepal Journals Online,20912242|20912358 +Japan Agricultural Research Quarterly JARQ,Japan International Research Center for Agricultural Sciences,00213551|21858896 +Japan and the World Economy,Elsevier ,09221425| +Japan Forum,Informa UK (Taylor & Francis),09555803|1469932X +Japan Journal of Applied Mathematics,Springer-Verlag,09102043| +Japan Journal of Human Growth and Development Research,Japan Society of Human Growth and Development,13408682|1884359X +Japan Journal of Industrial and Applied Mathematics,Springer-Verlag,09167005|1868937X +Japan Journal of Nursing Science,Wiley Blackwell (Blackwell Publishing),17427932|17427924 +Japan Journal of Sport Anthropology,Japan Society of Sport Anthropology,13454358|21861935 +JAPAN JOURNAL OF SPORT SOCIOLOGY,Japan Society of Sport Sociology,09192751|21858691 +Japan journal of water pollution research,Japan Society on Water Environment,03872025| +Japan Social Innovation Journal,"""Institute for Policy Studies and Social Innovation, University of Hyogo""",21859493 +JAPAN TAPPI JOURNAL,Japan Technical Association of the Pulp and Paper Industry,0022815X|18811000 +Japanese Circulation Journal,The Japanese Circulation Society,00471828|13474839 +Japanese Clinical Medicine,"""Libertas Academica, Ltd.""",11796707 +Japanese Cultural Studies,The Association of Japanology in East Asia,12294918| +Japanese Dental Science Review,Elsevier ,18827616| +Japanese Economic Review,Wiley Blackwell (Blackwell Publishing),13524739|14685876 +Japanese Economy,Informa UK (Taylor & Francis),1097203X| +Japanese Geotechnical Journal,The Japanese Geotechnical Society,18806341 +Japanese Geotechnical Society Special Publication,The Japanese Geotechnical Society,21888027 +Japanese Heart Journal,International Heart Journal Association,00214868|1348673X +Japanese jornal of Head and Neck Cancer,Japan Society for Head and Neck Cancer,09114335|18839878 +Japanese Journal of Administrative Science,The Japanese Association of Administrative Science,09145206|18846432 +Japanese journal of AMHTS,Japan Society of Health Evaluation and Promiotion,0386135X|18844081 +Japanese Journal of Animal Psychology,The Japanese Society for Animal Psychology,09168419|18809022 +Japanese Journal of Applied Entomology and Zoology,Japanese Society of Applied Entomology & Zoology,00214914|13476068 +Japanese Journal of Applied Physics,Japan Society of Applied Physics,00214922|13474065 +Japanese journal of applied statistics,Japanese Society of Applied Statistics,02850370|18838081 +Japanese journal of benthology,The Japanese Association of Benthology,1345112X|1883891X +Japanese Journal of Biometrics,The Biometric Society of Japan,09184430|21856494 +Japanese Journal of Cancer Research,Wiley Blackwell (Blackwell Publishing),09105050| +Japanese Journal of Cardiovascular Surgery,The Japanese Society for Cardiovascular Surgery,02851474|18834108 +Japanese Journal of Clinical Immunology,Japan Society for Clinical Immunology,09114300|13497413 +Japanese Journal of Clinical Oncology,Oxford University Press,03682811|14653621 +Japanese Journal of Comparative Economics,Japan Association for Comparative Economic Studies,18805647|18839819 +Japanese Journal of Complementary and Alternative Medicine,Japanese Society for Complementary & Alternative Medicine,13487922|13487930 +Japanese Journal of Crop Science,Crop Science Society of Japan,00111848|13490990 +Japanese Journal of Electrocardiology,The Japanes Society of Electrocardiology,02851660|18842437 +Japanese Journal of Equine Science,Japan Society of Equine Science,09171967|1884443X +Japanese journal of extra-corporeal technology,The Japanese Society of Extra-Corporeal Techology in Medicine,09122664|18845452 +Japanese Journal of Farm Work Research,Japanese Society of Farm Work Research,03891763|18832261 +Japanese Journal of Food Microbiology,Japanese Society of Food Microbiology,13408267|18825982 +Japanese Journal of Forensic Science and Technology,Japanese Association of Forensic Science and Technology,18801323|18814689 +JAPANESE JOURNAL OF GYNECOLOGIC AND OBSTETRIC ENDOSCOPY,Japan Society of Gynecologic and Obstetric Endoscopy and Minimally Invasive Therapy,18849938|18845746 +Japanese Journal of Health and Human Ecology,The Japanese Society of Health and Human Ecology,03689395|1882868X +Japanese Journal of Health Physics,Japan Health Physics Society,03676110|18847560 +Japanese Journal of Health Promotion and Physical Therapy,Japan Society of Health Promotion and Physical Therapy,21863741|21873305 +Japanese Journal of Hospital Pharmacy,Japanese Society of Pharmaceutical Health Care and Sciences,03899098|21859477 +Japanese Journal of Human Geography,The Human Geographical Society of Japan,00187216|18834086 +Japanese Journal of Ichthyology,Springer-Verlag,00215090| +Japanese Journal of Infection Prevention and Control,Japanese Society of Environmental Infections,1882532X|18832407 +Japanese Journal of Infectious Diseases,"""Editorial Committee of Japanese Journal of Infectious Diseases, National Institute of Infectious Diseases""",13446304|18842836 +Japanese Journal of Lactic Acid Bacteria,Japan Society for Lactic Acid Bacteria,1343327X|21865833 +Japanese Journal of Large Animal Clinics,Japanese Society of Veterinary Clinics,1884684X|21872805 +Japanese journal of leprosy,Japanese Leprosy Association,13423681|1884314X +Japanese Journal of Limnology (Rikusuigaku Zasshi),The Japanese Society of Limnology,00215104|18824897 +Japanese journal of mathematics New series,Springer-Verlag,02892316|18613624 +Japanese Journal of Medical Mycology,The Japanese Society for Medical Mycology,05830516|18846971 +Japanese Journal of Medical Science and Biology,"""Editorial Committee of Japanese Journal of Infectious Diseases, National Institute of Infectious Diseases""",00215112|18842828 +Japanese Journal of Medical Technology,The Japanese Journal of Gastroenterological Surgery,09158669|21885346 +Japanese Journal of Medical Technology,The Japanese Journal of Gastroenterological Surgery,09158669|21885346 +Japanese Journal of Medicine,Japanese Society of Internal Medicine,00215120|1881123X +Japanese journal of MHTS,Japan Society of Health Evaluation and Promiotion,09111840|1884409X +Japanese Journal of Microbiology,Wiley Blackwell (Blackwell Publishing),00215139| +JAPANESE JOURNAL OF MULTIPHASE FLOW,The Japanese Society for Multiphase Flow,09142843|18815790 +Japanese Journal of Neurosurgery,The Japanese Congress of Neurological Surgeons,0917950X|21873100 +Japanese Journal of Ophthalmology,Springer-Verlag,00215155|16132246 +Japanese Journal of Oral & Maxillofacial Surgery,Japanese Society of Oral and Maxillofacial Surgeons,00215163|21861579 +Japanese Journal of Oral Biology,Japanese Association for Oral Biology,03850137| +Japanese Journal of Oral Diagnosis / Oral Medicine,The Japanese Society of Oral Diagnosis/Oral Medicine,09149694|21882843 +Japanese Journal of Ornithology,JStage(Ornithological Society of Japan),0913400X|18819710 +Japanese Journal of Pediatric Pulmonology,Japanese Society of Pediatric Pulmonology,09183876|21853754 +Japanese Journal of Pesticide Science,Pesticide Science Society of Japan,21870365|21878692 +Japanese Journal of Pharmacoepidemiology/Yakuzai ekigaku,Japanese Society for Pharmacoepidemiology,13420445|1882790X +Japanese Journal of Physical Fitness and Sports Medicine,The Japanese Society of Physical Fitness and Sports Medicine,0039906X|18814751 +Japanese Journal of Physiological Psychology and Psychophysiology,Japanese Society for Physiological Psychology and Psychophysiology,02892405|2185551X +Japanese Journal of Phytopathology,The Phytopathological Society of Japan,00319473|18820484 +Japanese Journal of Political Science,Cambridge University Press,14681099|14740060 +Japanese Journal of Radiological Technology,Japanese Society of Radiological Technology,03694305|18814883 +Japanese Journal of Radiology,Springer-Verlag,18671071|1867108X +Japanese Journal of Religious Studies,Nanzan University,03041042| +Japanese Journal of Rheumatology,Informa UK (Informa Healthcare),01691163| +Japanese journal of science and technology for identification,Japanese Association of Forensic Science and Technology,13428713|18822827 +Japanese Journal of Sensory Evaluation,Japanese Society for Sensory Evaluation,1342906X|21872546 +Japanese Journal of Sheep Science,Japanese Society of Sheep Science,03891305|21861013 +Japanese Journal of Sign Language Studies,Japanese Association of Sign Linguistics,18843204|2187218X +Japanese Journal of Smooth Muscle Research,Japan Society of Smooth Muscle Research,03743527|18848788 +Japanese Journal of Sport Education Studies,Japanese Society of Sport Education,09118845|18845096 +Japanese Journal of Sport Management,Japanese Association for Sport Management,18840094|21850313 +Japanese Journal of Sport Psychology,Japanese Society of Sport Psychology,03887014|18836410 +Japanese Journal of Thrombosis and Hemostasis,The Japanese Society on Thrombosis and Hemostasis,09157441|18808808 +Japanese Journal of Transfusion and Cell Therapy,Japan Society of Transfusion Medicine and Cell Therapy,18813011|18830625 +Japanese Journal of Tropical Medicine,Japanese Society of Tropical Medicine,21861803 +Japanese Journal of Tropical Medicine and Hygiene,Japanese Society of Tropical Medicine,03042146|21861811 +Japanese Journal of Veterinary Anesthesia & Surgery,Japanese Society of Veterinary Anesthesia and Surgery,09165908|13497669 +Japanese Journal of Veterinary Clinics,Japanese Society of Veterinary Clinics,13468464|18834604 +Japanese Journal of Water Treatment Biology,Japanese Society of Water Treatment Biology,09106758|18810438 +Japanese Journal of Zoo and Wildlife Medicine,Japanese Society of Zoo and Wildlife Medicine,13426133|2185744X +Japanese Language and Literature,JSTOR,15367827| +Japanese Magazine of Mineralogical and Petrological Sciences,Japan Association of Mineralogical Sciences,1345630X|13497979 +JAPANESE ORTHOPTIC JOURNAL,Japan Society of Engineering Geology,03875172|18839215 +Japanese Political Science Review,Japanese Political Science Review,21887020 +Japanese poultry science,Japan Poultry Science Association,00290254| +Japanese Psychological Research,Wiley Blackwell (Blackwell Publishing),00215368|14685884 +Japanese Research in Business History,Business History Society of Japan,1349807X|1884619X +Japanese Sociological Review,The Japan Sociological Society,00215414|18842755 +Japanese Studies,Informa UK (Taylor & Francis),10371397|14699338 +Japanese Yearbook on Business History,Business History Society of Japan,09102027|18846181 +JAPCA,Informa UK (Taylor & Francis),08940630| +JASSA Journal of Applied Science in Southern Africa,African Journals Online ,10197788 +Javnost - The Public,Informa UK (Taylor & Francis),13183222|18548377 +JAWRA Journal of the American Water Resources Association,Wiley Blackwell (Blackwell Publishing),1093474X|17521688 +Jazz Perspectives,Informa UK (Taylor & Francis),17494060|17494079 +Jazz Research Journal,Equinox Publishing,17538637|17538645 +JBI Reports,Wiley Blackwell (Blackwell Publishing),1479697X|14796988 +JBIC Journal of Biological Inorganic Chemistry,Springer-Verlag,09498257|14321327 +JBJS Case Connector,Journal of Bone and Joint Surgery,21603251|21603251 +JBJS Essential Surgical Techniques,Journal of Bone and Joint Surgery,21602204|21602204 +JBJS Orthopaedic Highlights Hip Surgery,Journal of Bone and Joint Surgery,21672083| +JBJS Orthopaedic Highlights Knee Surgery,Journal of Bone and Joint Surgery,21672067| +JBJS Orthopaedic Highlights Shoulder & Elbow,Journal of Bone and Joint Surgery,21670927| +JBJS Orthopaedic Highlights Spine Surgery,Journal of Bone and Joint Surgery,23247304| +JBJS Orthopaedic Highlights Sports Medicine,Journal of Bone and Joint Surgery,21672091| +JBJS Orthopaedic Highlights Trauma,Journal of Bone and Joint Surgery,21672105| +JBJS Reviews,Journal of Bone and Joint Surgery,23299185 +JBR Journal of Clinical Diagnosis and Research,OMICS Publishing Group,23760311 +JBR Journal of Interdisciplinary Medicine and Dental Science,OMICS Publishing Group,2376032X +JBRA Assisted Reproduction,GN1 Genesis Network,15180557| +JCC Open,Elsevier ,22120149| +JCI Insight,American Society for Clinical Investigation,23793708 +JCMS Journal of Common Market Studies,Wiley Blackwell (Blackwell Publishing),00219886|14685965 +JCR Journal of Clinical Rheumatology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10761608| +JCRS Online Case Reports,Elsevier ,22141677| +JDDG Journal der Deutschen Dermatologischen Gesellschaft,Wiley Blackwell (Blackwell Publishing),16100379|16100387 +JDR Clinical & Translational Research,SAGE Publications,23800844|23800852 +JEJAK,"""Department of Drama, Dance and Music, Semarang State Universtiy""",24605123| +JEL-KÉP,JEL-KEP,0209584X| +Jelentés és Nyelvhasználat,University of Szeged,20649940 +JEMS Journal of Emergency Medical Services,Elsevier ,01972510| +Jentashapir Journal of Health Research,International Neuroscience Institute,23454067 +Jerusalem Review of Legal Studies,Oxford University Press,22197125|22197117 +JETP Letters,Pleiades Publishing,00213640|10906487 +Jeugd en Co Kennis,Springer-Verlag,18739164|18766080 +Jeugdbeleid,Springer-Verlag,18739482|18766056 +Jeunesse Young People Texts Cultures,Muse - Johns Hopkins University Press,1920261X +Jewish Culture and History,Informa UK (Taylor & Francis),1462169X|21679428 +Jewish Education,Informa UK (Taylor & Francis),00216429| +Jewish Film & New Media,Wayne State University Press,21690324|21690332 +Jewish Historical Studies,UCL Press,09629696| +Jewish History,Springer-Verlag,0334701X|15728579 +Jewish Quarterly,Informa UK (Taylor & Francis),0449010X|23262516 +Jewish Quarterly Review,Muse - Johns Hopkins University Press,15530604 +Jewish Social Studies,Indiana University Press,00216704|15272028 +Jewish Studies Quarterly,Mohr Siebeck,09445706|00000000 +JFPS International Journal of Fluid Power System,The Japan Fluid Power System Society,18815286 +JGZ Tijdschrift voor jeugdgezondheidszorg,Springer-Verlag,15678644|1876598X +JIMS8M The Journal of Indian Management & Strategy,Diva Enterprises Private Limited,09739335|09739343 +Jindal Global Law Review,Springer-Verlag,09752498|23644869 +Jindal Journal of Business Research,SAGE Publications,22786821| +Jinekoloji Obstetrik Pediatri ve Pediatrik Cerrahi Dergisi,Logos Medical Publication,13086715| +JITA - Journal of Information Technology and Applications (Banja Luka) - APEIRON,National and University Library of the Republic of Srpska,22329625|22330194 +Jitsumu Hyomen Gijutsu,The Surface Finishing Society of Japan,03682358|18843417 +Jiuzhou Xuelin,Chinese Civilisation Centre,17299756| +Jl of Computers in Mathematics and Science Teaching,Ankara University,7319258 +JMED Research,IBIMA Publishing,23332395 +JMIR Cancer,JMIR Publications Inc.,23691999 +JMIR Human Factors,JMIR Publications Inc.,22929495 +JMIR Medical Education,JMIR Publications Inc.,23693762 +JMIR Medical Informatics,JMIR Publications Inc.,22919694 +JMIR Mental Health,JMIR Publications Inc.,23687959 +JMIR mhealth and uhealth,JMIR Publications Inc.,22915222 +JMIR Public Health and Surveillance,JMIR Publications Inc.,23692960 +JMIR Rehabilitation and Assistive Technologies,JMIR Publications Inc.,23692529 +JMIR Research Protocols,JMIR Publications Inc.,19290748 +JMIR Serious Games,JMIR Publications Inc.,22919279 +JMM Case Reports,Microbiology Society,20533721 +JNCI Journal of the National Cancer Institute,Oxford University Press,00278874|14602105 +JNCI Monographs,Oxford University Press,10526773|17456614 +Joelho Revista de Cultura Arquitectonica,Coimbra University Press,16479548|16478681 +JOGN Nursing,Elsevier ,00900311| +Johnson Matthey Technology Review,Johnson Matthey,20565135| +Joho Chishiki Gakkaishi,Japan Society of Information and Knowledge,09171436|18817661 +Joint Bone Spine,Elsevier ,1297319X| +Joint Diseases and Related Surgery,Baycinar Tibbi Yayincilik,13058282|13090313 +Joints,CIC Edizioni Internazionali,22824324 +JOM,Springer-Verlag,10474838|15431851 +JOMEC Journal,Cardiff University Press,20492340 +JONA s Healthcare Law Ethics and Regulation,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15209229| +JONA The Journal of Nursing Administration,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,00020443| +Jonrnal of Social Thoughts and Culture,Association of East Asian Social Thoughts,12291234| +Jordan Journal for History and Archaeology,"""Al Manhal FZ, LLC""",19969546| +Jordan Journal of Agricultural Sciences,"""Al Manhal FZ, LLC""",18158625| +Jordan Journal of Biological Sciences,"""Al Manhal FZ, LLC""",19956673| +Jordan Journal of Business Administration,"""Al Manhal FZ, LLC""",18158633| +Jordan Journal of Chemistry,"""Al Manhal FZ, LLC""",18149111| +Jordan Journal of Civil Engineering,Jordan Journal of Civil Engineering,19930461|2225157X +Jordan Journal of Economic Sciences,"""Al Manhal FZ, LLC""",23089954| +Jordan Journal of Pharmaceutical Sciences,"""Al Manhal FZ, LLC""",19957157| +Jordan Journal of Social Sciences,"""Al Manhal FZ, LLC""",20719728| +Jordan Medical Journal,"""Al Manhal FZ, LLC""",04469283| +Jordanian Journal of Computers and Information Technology,ScopeMed International Medical Journal Managment and Indexing System,24139351| +Jornal Brasileiro de Doenças Sexualmente Transmissíveis,Editora da Universidade Federal Fluminense,01034065|21778264 +Jornal Brasileiro de Economia da Saúde,Jornal Brasileiro de Economia da Saude,23591641 +Jornal Brasileiro de Nefrologia,GN1 Genesis Network,01012800| +Jornal Brasileiro de Patologia e Medicina Laboratorial,GN1 Genesis Network,16762444|16762444 +Jornal Brasileiro de Pneumologia,SciELO,18063713|18063713 +Jornal Brasileiro de Psiquiatria,SciELO,00472085|00472085 +Jornal Brasileiro de TeleSSaúde,Universidade do Estado do Rio de Janeiro UERJ,22383581 +Jornal da Sociedade Brasileira de Fonoaudiologia,SciELO,21796491|21796491 +Jornal de Pediatria,Elsevier ,00217557|00217557 +Jornal de Pediatria (Versão em Português),Elsevier ,22555536| +Jornal de Pneumologia,SciELO,01023586|01023586 +Jornal de Políticas Educacionais,Universidade Federal do Parana,19811969| +Jornal of Seokdang Academy,Seokdang Academy,17386578| +Jornal Vascular Brasileiro,SciELO,16775449|16775449 +Jos Journal of Medicine,African Journals Online ,20060734|20060734 +JOT Journal für Oberflächentechnik,Springer-Verlag,09408789|2192869X +JOT-International Surface Technology,Springer Fachmedien Wiesbaden GmbH,18654827|21928703 +Jounal of Korea Service Management Society,The Korean Service Management Society,15981150| +Jour of Aerospace Science and Technology,David Publishing Company,23328258|23328258 +Jouranl of Korean Association of EMG Electrodiagnostic Medicine,Korean Association of EMG Electrodiagnostic Medicine,12296066| +"""Journal """"Ice and Snow""""""","""Institute of Geography, Russian Academy of Sciences""",20766734|20766734 +Journal about Law,The Russian Law Academy of the Ministry of Justice of the RF,23067136|23136715 +Journal Africain d Hépato-Gastroentérologie,Springer-Verlag,19543204|19543212 +Journal africain du cancer / African Journal of Cancer,Springer-Verlag,19650817|19650825 +Journal American Society of Mining and Reclamation,American Society of Mining and Reclamation (ASMR),23288744| +Journal and Proceedings of the Institute of Chemistry of Great Britain and Ireland,The Royal Society of Chemistry, +Journal and Proceedings of the Royal Institute of Chemistry of Great Britain and Ireland,The Royal Society of Chemistry, +Journal Applied Mathematics,Scientific and Academic Publishing,21631409| +Journal Asiatique,Peeters Publishers,0021762X +Journal Club AINS,Thieme Publishing Group,21949719|21949727 +Journal Club Schmerzmedizin,Thieme Publishing Group,21949735|21949743 +Journal d agriculture traditionnelle et de botanique appliquée,PERSEE Program,01835173| +Journal d agriculture tropicale et de botanique appliquée,PERSEE Program,00217662| +Journal d Analyse Mathématique,Springer-Verlag,00217670|15658538 +Journal de Chimie Physique et de Physico-Chimie Biologique,EDP Sciences,00217689| +Journal de Chirurgie,Elsevier ,00217697| +Journal de Chirurgie Viscérale,Elsevier ,1878786X| +Journal de gestion et d économie médicales,CAIRN,22625305|22702504 +Journal de Gynécologie Obstétrique et Biologie de la Reproduction,Elsevier ,03682315| +Journal de Jure,Maulana Malik Ibrahim State Islamic University,20851618|20851618 +Journal de la psychanalyse de l enfant,CAIRN,09947949|2264590X +Journal de la Recherche Scientifique de l Universite de Lome,African Journals Online ,10271988 +Journal de la Société de Biologie,EDP Sciences,12950661|17606128 +Journal de la Société des Africanistes,PERSEE Program,00379166| +Journal de la Société des Africanistes,PERSEE Program,00379166|19577850 +Journal de la Société des Africanistes,PERSEE Program,00379166| +Journal de la Société des Africanistes,PERSEE Program,00379166| +Journal de la Société des Américanistes,PERSEE Program,00379174|19577842 +Journal de la Société des Américanistes,PERSEE Program,00379174| +Journal de la Société des océanistes,PERSEE Program,0300953X|17607256 +Journal de l’École polytechnique — Mathématiques,Cellule MathDoc/CEDRAM,2270518X|2270518X +Journal de Mathématiques Pures et Appliquées,Elsevier ,00217824| +Journal de Mycologie Médicale / Journal of Medical Mycology,Elsevier ,11565233| +Journal de Pédiatrie et de Puériculture,Elsevier ,09877983| +Journal de Physique,EDP Sciences,03683842| +Journal de Physique Appliquée,EDP Sciences,11608161| +Journal de Physique et le Radium,EDP Sciences,03683842| +Journal de Physique I,EDP Sciences,11554304|12864862 +Journal de Physique II,EDP Sciences,11554312|12864870 +Journal de Physique III,EDP Sciences,11554320|12864897 +Journal de Physique IV (Proceedings),EDP Sciences,11554339|17647177 +Journal de Physique Lettres,EDP Sciences,0302072X| +Journal de Physique Théorique et Appliquée,EDP Sciences,03683893| +Journal de Radiologie,Elsevier ,02210363| +Journal de Radiologie Diagnostique et Interventionnelle,Elsevier ,22115706| +Journal de Réadaptation Médicale Pratique et Formation en Médecine Physique et de Réadaptation,Elsevier ,0242648X| +Journal de Théorie des Nombres de Bordeaux,Cellule MathDoc/CEDRAM,12467405|21188572 +Journal de Thérapie Comportementale et Cognitive,Elsevier ,11551704| +Journal de Traumatologie du Sport,Elsevier ,0762915X| +Journal der Juristischen Zeitgeschichte,Walter de Gruyter GmbH,18639984|18688810 +Journal des africanistes,PERSEE Program,03990346| +Journal des anthropologues,PERSEE Program,11560428|21142203 +Journal des Anti-infectieux,Elsevier ,22106545| +Journal des Economistes et des Etudes Humaines,Walter de Gruyter GmbH,11456396 +Journal des Économistes et des Études Humaines,Walter de Gruyter GmbH,21945799|21531552 +Journal des Maladies Vasculaires,Elsevier ,03980499| +Journal des savants,PERSEE Program,00218103|1775383X +Journal des Sciences Pour l Ingénieur,African Journals Online ,8514453 +Journal du droit des jeunes,CAIRN,21142068|22596003 +Journal Electrical and Electronic Engineering,Science Publishing Group,23291613| +Journal Européen des Systèmes Automatisés,Lavoisier SAS,12696935| +Journal Européen des Urgences,Elsevier ,09939857| +Journal Européen des Urgences et de Réanimation,Elsevier ,22114238| +Journal européen d’hydrologie,EDP Sciences,10236368| +JOURNAL FOR CLINICAL AND DIAGNOSTIC RESEARCH,JCDR Research and Publications,2249782X| +Journal for Cultural Research,Informa UK (Taylor & Francis),14797585|17401666 +Journal for Early Modern Cultural Studies,Indiana University Press,15310485|15533786 +Journal for Educating Gifted Young Scientists,Journal for Educating Gifted Young Scientists (JEGYS),21479518| +Journal for Education in the Built Environment,Informa UK (Taylor & Francis),17474205 +Journal for Eighteenth-Century Studies,Wiley Blackwell (Blackwell Publishing),17540194|17540208 +Journal for European Environmental & Planning Law,Brill Academic Publishers,16137272|18760104 +Journal for Foreign Languages,University of Ljubljana,18558453|23504269 +Journal for General Philosophy of Science,Springer-Verlag,09254560|15728587 +Journal for Healthcare Quality,Wiley Blackwell (Blackwell Publishing),10622551|19451474 +Journal for History of Mathematics,The Korean Society for History of Mathematics,1226931X| +Journal for ImmunoTherapy of Cancer,Springer (Biomed Central Ltd.),20511426|20511426 +Journal for Interdisciplinary Research in Education (JIRE),Springer - Global Science Journals,19859414 +Journal for Islamic Studies,African Journals Online ,2577062 +Journal for Juridical Science,African Journals Online ,0258252X|0258252X +Journal for Labour Market Research,Springer-Verlag,16143485|18678343 +Journal for Language Teaching,African Journals Online ,2599570 +Journal for Manufacturing Science and Production,Walter de Gruyter GmbH,07936648|21910375 +Journal for Maritime Research,Informa UK (Taylor & Francis),21533369|14691957 +Journal for Multicultural Education,Emerald (MCB UP ),2053535X| +Journal for Nature Conservation,Elsevier ,16171381| +Journal for Nurses in Professional Development,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,21699798| +Journal for Nurses in Staff Development,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10987886| +Journal for Peace and Justice Studies,Philosophy Documentation Center,10936831| +Journal for Peace and Justice Studies,Philosophy Documentation Center,10936831| +Journal for Person-Oriented Research,Lundh Research Foundation,20020244| +Journal for Perspectives of Economic Political and Social Integration,De Gruyter Open Sp. z o.o. ,17333911|17333911 +Journal for Research in Mathematics Education,National Council of Teachers of Mathematics,00218251|19452306 +Journal for Research in Mathematics Education Monograph,JSTOR,08839530| +Journal for Research into Freemasonry and Fraternalism,Equinox Publishing,17572460|17572479 +Journal for Specialists in Pediatric Nursing,Wiley Blackwell (Blackwell Publishing),15390136|17446155 +Journal for Technology of Plasticity,De Gruyter Open Sp. z o.o. ,03543870| +Journal for the Academic Study of Religion,Equinox Publishing,10312943|17439014 +Journal for the Cognitive Science of Religion,Equinox Publishing,20497555|20497563 +Journal for the Education of Gifted Young Scientists,Journal for Educating Gifted Young Scientists (JEGYS),2149360X| +journal for the education of the gifted,SAGE Publications,01623532| +Journal for the History of Analytical Philosophy,Escarpment Press,21590303 +Journal for the History of Astronomy,SAGE Publications,00218286|17538556 +Journal for the History of Modern Theology / Zeitschrift für Neuere Theologiegeschichte,Walter de Gruyter GmbH,09437592|16129776 +Journal for the Integrated Study of Dietary Habits,The Japanese Association for the Integrated Study of Dietary Habits,13469770|18812368 +Journal for the Scientific Study of Religion,Wiley Blackwell (Blackwell Publishing),00218294|14685906 +Journal for the Study of English Linguistics,"""Macrothink Institute, Inc.""",23297034 +Journal for the Study of Food and Society,Informa UK (Taylor & Francis),15289796| +Journal for the Study of Judaism,Brill Academic Publishers,00472212|15700631 +Journal for the Study of Radicalism,Michigan State University Press,19301189|19301197 +Journal for the Study of Religion,African Journals Online ,10117601 +Journal for the Study of Religion Nature and Culture,Equinox Publishing,17494907|17494915 +Journal for the Study of Spirituality,Maney Publishing,20440243|20440251 +Journal for the Study of Sports and Athletes in Education,Informa UK (Taylor & Francis),19357397|19357400 +Journal for the Study of the Historical Jesus,Brill Academic Publishers,14768690|17455197 +Journal for the Study of the New Testament,SAGE Publications,0142064X|17455294 +Journal for the Study of the Old Testament,SAGE Publications,03090892|14766728 +Journal for the Study of the Pseudepigrapha,SAGE Publications,09518207|17455286 +Journal for the Theory of Social Behaviour,Wiley Blackwell (Blackwell Publishing),00218308|14685914 +Journal for the Utilization of Agricultural Products,Japanese Society for Food Science and Technology,03695174| +Journal Français d Ophtalmologie,Elsevier ,01815512| +Journal français de psychiatrie,CAIRN,12605999|17762855 +Journal français d’hydrologie,EDP Sciences,03359581| +JOURNAL FRANCO-VIETNAMIEN DE PNEUMOLOGIE,French-Vietnamese Association of Pulmonology,22647899|22640754 +Journal für Ästhetische Chirurgie,Springer-Verlag,18674305|18674313 +Journal für Betriebswirtschaft,Springer-Verlag,03449327|1614631X +Journal für die reine und angewandte Mathematik (Crelles Journal),Walter de Gruyter GmbH,00754102|14355345 +Journal für Entwicklungspolitik,Mattersburger Kreis,02582384|24143197 +Journal für Mathematik-Didaktik,Springer-Verlag,01735322|18692699 +Journal für praktische Chemie,Wiley Blackwell (John Wiley & Sons),09411216|15213897 +Journal für Rechtspolitik,Springer-Verlag,09434011|1613754X +Journal für Verbraucherschutz und Lebensmittelsicherheit,Springer-Verlag,16615751|16615867 +Journal History School,Journal of History School,13085298| +Journal in Computer Virology,Springer-Verlag,17729890|17729904 +Journal International de Bioéthique,CAIRN,12877352|21025169 +Journal Multimodal Communication,Walter de Gruyter GmbH,22306579|22306587 +Journal of 3D Printing in Medicine,Future Medicine,20594755|20594763 +Journal of Abbasid Studies,Brill Academic Publishers,22142363|22142371 +Journal of Abnormal & Social Psychology,American Psychological Association,0096851X| +Journal of Abnormal Child Psychology,Springer-Verlag,00910627|15732835 +Journal of Abnormal Psychology,American Psychological Association,0021843X|19391846 +Journal of Academic Emergency Medicine,AVES Publishing Co.,1305760X|13098845 +Journal of Academic Emergency Medicine Case Reports,AVES Publishing Co.,1309534X|21462925 +Journal of Academic Ethics,Springer-Verlag,15701727|15728544 +Journal of Academic Ophthalmology,Thieme Publishing Group,21647879|21647852 +Journal of Academic Research in Medicine,AVES Publishing Co.,21466505|21471894 +Journal of Academic Research in Nursing,Logos Medical Publication,21494983| +Journal of Academic Writing,"""Coventry University, Lanchester Library""",22258973 +Journal of Academy of Business and Economics,International Academy of Business and Economics,15428710|23788631 +Journal of Academy of Dental Education,Academy of Dental Education,23481595|23482621 +Journal of Academy of Medical Sciences,Medknow Publications,22494855| +Journal of Access Services,Informa UK (Taylor & Francis),15367967|15367975 +Journal of Accessibility and Design for All,Iniciativa Digital Politecnica,20137087| +Journal of Accounting & Marketing,OMICS Publishing Group,21689601 +Journal of Accounting & Organizational Change,Emerald (MCB UP ),18325912| +Journal of Accounting and Auditing Research & Practice,IBIMA Publishing,21659532 +Journal of Accounting and Economics,Elsevier ,01654101| +Journal of Accounting and Finance,Bioinfo Publications,22493964|22493972 +Journal of Accounting and Public Policy,Elsevier ,02784254| +Journal of Accounting and Taxation,Academic Journals,21416664|21416664 +Journal of Accounting Auditing & Finance,SAGE Publications,0148558X| +Journal of Accounting Education,Elsevier ,07485751| +Journal of Accounting in Emerging Economies,Emerald (MCB UP ),20421168| +Journal of Accounting Literature,Elsevier ,07374607| +Journal of Accounting Research,Wiley Blackwell (Blackwell Publishing),00218456|1475679X +Journal of Acquired Immune Deficiency Syndromes & Human Retrovirology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10779450| +Journal of ACS Advances in Computer Science,"""Al Manhal FZ, LLC""",16878515| +Journal of Acupuncture and Herbs,Walter de Gruyter GmbH,20017464 +Journal of Acupuncture and Meridian Studies,Elsevier ,20052901| +Journal of Acupuncture and Tuina Science,Springer-Verlag,16723597|19930399 +Journal of Acute Care Physical Therapy,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,21588686| +JOURNAL OF ACUTE CARE SURGERY,Korean Society of Acute Care Surgery,22885862|22889582 +Journal of Acute Disease,Elsevier ,22216189| +Journal of Acute Medicine,Elsevier ,22115587| +Journal of Adaptation in Film & Performance,Intellect,17536421|1753643X +Journal of adapted physical activity and exercise,Korean Society of Adapted Physical Activity and Exercise,12265063| +Journal of Addiction,Hindawi Publishing Corporation,20907834|20907850 +Journal of Addiction & Prevention,Avens Publishing Group,23302178 +Journal of Addiction and Dependence,Ommega Online Publishers,2471061X +Journal of Addiction Medicine,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,19320620| +Journal of Addiction Medicine and Therapeutic Science,Peertechz.com,24553484 +Journal of Addiction Research & Therapy,OMICS Publishing Group,21556105|21556105 +Journal of Addictions & Offender Counseling,Wiley Blackwell (John Wiley & Sons),10553835| +Journal of Addictions Nursing,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10884602|15487148 +Journal of Addictive Behaviors Therapy & Rehabilitation,OMICS Publishing Group,23249005 +Journal of Addictive Diseases,Informa UK (Taylor & Francis),10550887|15450848 +Journal of Adhesion Science and Technology,Informa UK (Taylor & Francis),01694243|15685616 +Journal of administrative and business studies,TAF Publishing,2414309X +Journal of Administrative Sciences and Policy Studies,American Research Institute for Policy Development,23725109|23725117 +Journal of Administrative Sciences and Technology,IBIMA Publishing,21659435 +Journal of Adolescence,Elsevier ,01401971|10959254 +Journal of Adolescent & Adult Literacy,Wiley Blackwell (John Wiley & Sons),10813004| +Journal of Adolescent and Young Adult Oncology,Mary Ann Liebert,21565333|2156535X +Journal of Adolescent Chemical Dependency,"""Informa UK (Haworth Press, Inc.,)""",08967768| +Journal of Adolescent Health,Elsevier ,1054139X| +Journal of Adolescent Health Care,Elsevier ,01970070| +Journal of Adolescent Psychology and Psychiatry,Journal of Adolescent Psychology and Psychiatry,24592722 +Journal of Adolescent Research,SAGE Publications,07435584|15526895 +Journal of Adolescent welfare,Korean Association of Youth Welfare,12294705| +Journal of Adult and Continuing Education,SAGE Publications,14779714|14797194 +Journal of Adult Development,Springer-Verlag,10680667|15733440 +Journal of Adult Theological Education,Maney Publishing,17407141|17431654 +Journal of Advanced Academic Research,Nepal Journals Online,23621303|23621311 +Journal of Advanced Academics,SAGE Publications,1932202X|21629536 +Journal of Advanced Agricultural Technologies,EJournal Publishing,2373423X|23013737 +Journal of Advanced Biotechnology and Bioengineering,Synergy Publishers,23111755 +Journal of Advanced Botany and Zoology,ScienceQ Publishing Group,23487313 +Journal of Advanced Catalysis Science and Technology,Cosmos Scholars Publishing House,24089834 +Journal of Advanced Ceramics,Springer-Verlag,22264108|22278508 +Journal of Advanced Chemical Engineering,OMICS Publishing Group,2090455X|20904568 +Journal of Advanced Clinical and Research Insights,Incessant Nature Science Publishers Pvt Ltd,23938625 +Journal of Advanced Clinical Pharmacology,Pharma Publisher,23123710 +Journal of Advanced Computer Science & Technology,Science Publishing Corporation,22274332 +Journal of Advanced Computing,Columbia International Publishing,21657823 +Journal of Advanced Concrete Technology,Japan Concrete Institute,13468014|13473913 +Journal of Advanced Dielectrics,World Scientific ,2010135X|20101368 +JOURNAL OF ADVANCED INFORMATION TECHNOLOGY AND CONVERGENCE,Korean Institute of Information Technology,22341072| +Journal of Advanced Internet of Things,Columbia International Publishing,21632243 +Journal of Advanced Management Science,EJournal Publishing,21680787| +Journal of Advanced Manufacturing Systems,World Scientific ,02196867|17936896 +Journal of Advanced Mathematics and Applications,American Scientific Publishers,21567565|21567557 +Journal of Advanced Mechanical Design Systems and Manufacturing,The Japan Society of Mechanical Engineers,18813054 +Journal of Advanced Mechanical Engineering,Columbia International Publishing,21629870 +Journal of Advanced Microscopy Research,American Scientific Publishers,21567573|21567581 +Journal of Advanced Neuroscience Research,Cosmos Scholars Publishing House,24093564 +Journal of Advanced Nursing,Wiley Blackwell (Blackwell Publishing),03092402|13652648 +Journal of Advanced Nutrition and Human Metabolism,"""Smart Science and Technology, LLC""",23779764 +Journal of Advanced Pharmaceutical Science and Technology,Open Access Pub,23280182 +Journal of Advanced Pharmaceutical Technology & Research,Medknow Publications,01105558| +Journal of Advanced Pharmaceutical Technology amp Research,Medknow Publications,22314040| +Journal of Advanced Physics,American Scientific Publishers,21681996|21682003 +Journal of Advanced Research,Elsevier ,20901232| +Journal of Advanced Research in Applied Mathematics,Institute of Advanced Scientific Research,19429649 +Journal of Advanced Research in Differential Equations,Institute of Advanced Scientific Research,19430248 +Journal of Advanced Research in Dynamical and Control Systems,Institute of Advanced Scientific Research,1943023X +Journal of Advanced Research in Entrepreneurship and New Venture Creation,SC ASERS SRL,24571288| +Journal of Advanced Research in Law and Economics,De Gruyter Open Sp. z o.o. ,2068696X +Journal of Advanced Research in Ocean Engineering,Korean Society of Ocean Engineers,23841052| +Journal of Advanced Research in Pure Mathematics,Institute of Advanced Scientific Research,19432380 +Journal of Advanced Science,Society of Advanced Science,09155651|18813917 +Journal of Advanced Simulation in Science and Engineering,Japan Society for Simulation Technology,21885303 +Journal of Advanced Smart Convergence(JASC),"""The Institute of Webcasting, Internet and Telecommunication""",2287254X| +Journal of Advanced Studies in Finance,De Gruyter Open Sp. z o.o. ,20688393| +Journal of Advanced Studies in Topology,Modern Science Publishers,20908288|2090388X +Journal of Advanced Thermal Science Research,Avanti Publishers,24095826 +Journal of Advanced Transportation,Wiley Blackwell (John Wiley & Sons),01976729|20423195 +Journal of Advanced Veterinary and Animal Research,ScopeMed International Medical Journal Managment and Indexing System,23117710 +Journal of Advancement in Engineering and Technology,ScienceQ Publishing Group,23482931 +Journal of Advancement in Medical and Life Sciences,ScienceQ Publishing Group,2348294X +Journal of Advancement in Medicine,Springer (Kluwer Academic Publishers),08945888| +Journal of Advances in Applied & Computational Mathematics,Avanti Publishers,24095761 +Journal of Advances in Biology & Biotechnology,Sciencedomain International,23941081 +Journal of Advances in Biomedical Engineering and Technology,Cosmos Scholars Publishing House,24093394 +Journal of Advances in Business Management,Akshantala Enterprises,23957328|23957441 +Journal of Advances in Civil Engineering,DJ Publications,24553581 +Journal of Advances in Computer Networks,EJournal Publishing,17938244|17938244 +Journal of Advances in Information Technology,Engineering and Technology Publishing,17982340| +Journal of Advances in Internal Medicine,Nepal Journals Online,20911432|20911440 +Journal of Advances in Management Research,Emerald (MCB UP ),09727981| +Journal of Advances in Mechanical Engineering and Science,DJ Publications,24550957 +Journal of Advances in Medical and Pharmaceutical Sciences,Sciencedomain International,23941111 +Journal of Advances in Medicine,Diva Enterprises Private Limited,22779744|23194324 +Journal of Advances in Modeling Earth Systems,Wiley Blackwell (John Wiley & Sons),19422466|19422466 +Journal of Advances in Physical Chemistry,Hans Publishers,21686122|21686130 +Journal of Advances in Social Science and Humanities,Innovative Journal,23956542 +Journal of Adventure Education & Outdoor Learning,Informa UK (Taylor & Francis),14729679|17540402 +Journal of Adventure Education & Outdoor Learning,Informa UK (Taylor & Francis),14729679| +Journal of Adventure Education & Outdoor Learning,Informa UK (Taylor & Francis),14729679| +Journal of Adventure Education & Outdoor Learning,Informa UK (Taylor & Francis),14729679| +Journal of Adventure Education & Outdoor Learning,Informa UK (Taylor & Francis),14729679| +Journal of Adventure Education & Outdoor Learning,Informa UK (Taylor & Francis),14729679| +Journal of Advertising,Informa UK (Taylor & Francis),00913367|15577805 +Journal of Advertising Research,World Advertising Research Center,00218499|17401909 +Journal of Aero Aqua Bio-mechanisms,Study Group of Aero Aqua Bio-mechanisms,21851522 +Journal of Aerodynamics,Hindawi Publishing Corporation,23567139|23146206 +Journal of Aeronautics & Aerospace Engineering,OMICS Publishing Group,21689792 +Journal of Aeronautics and Space Technologies (Havacilik ve Uzay Teknolojileri Dergisi),Springer - Global Science Journals,21481059 +Journal of Aerosol Medicine,Mary Ann Liebert,08942684|00000000 +Journal of Aerosol Medicine and Pulmonary Drug Delivery,Mary Ann Liebert,19412711|19412703 +Journal of Aerosol Science,Elsevier ,00218502| +Journal of Aerospace Computing Information and Communication,American Institute of Aeronautics and Astronautics,15429423|15429423 +Journal of Aerospace Engineering,American Society of Civil Engineers,08931321|19435525 +Journal of Aerospace Engineering Sciences and Applications,Associacao Aerospacial Brasileira,2236577X| +Journal of Aerospace Information Systems,American Institute of Aeronautics and Astronautics,19403151|23273097 +Journal of Aerospace Operations,IOS Press,2211002X|22110038 +Journal of Aerospace Science and Technology,Hans Publishers,2330474X|23304758 +Journal of Aerospace Technology and Management,Institute of Aeronautics and Space,21759146 +Journal of Aesthetic Education,University of Illinois Press,00218510|15437809 +Journal of Aesthetic Nursing,Mark Allen Group,20503717|20522878 +Journal of AESTHETICS & CULTURE,Co-Action Publishing,20004214 +Journal of Aesthetics and Art Criticism,Wiley Blackwell (Blackwell Publishing),00218529|15406245 +Journal of Aesthetics and Phenomenology,Informa UK (Taylor & Francis),20539320|20539339 +Journal of Affective Disorders,Elsevier ,01650327| +Journal of African American Men,Springer-Verlag,10811753| +Journal of African American Studies,Springer-Verlag,15591646|19364741 +Journal of African Archaeology,Africa Magna Verlag,16121651|21915784 +Journal of African Business,Informa UK (Taylor & Francis),15228916|15229076 +Journal of African Cinemas,Intellect,17549221|1754923X +Journal of African Conflicts and Peace Studies,University of South Florida Libraries,19963157|2325484X +Journal of African Cultural Studies,Informa UK (Taylor & Francis),13696815|14699346 +Journal of African Diaspora Archaeology and Heritage,Maney Publishing,21619441|21619468 +Journal of African Earth Sciences,Elsevier ,1464343X| +Journal of African Earth Sciences (1983),Elsevier ,07317247| +Journal of African Earth Sciences (and the Middle East),Elsevier ,08995362| +Journal of African Economies,Oxford University Press,09638024|14643723 +Journal of African Languages and Linguistics,Walter de Gruyter GmbH,01676164|16133811 +Journal of African Law,Cambridge University Press,02218553|14643731 +Journal of African Leather and Leather Products Advances,COMESA - Leather and Leather Products Institute (COMESA/LLPI),24100838 +Journal of African Media Studies,Intellect,2040199X|17517974 +Journal of African Research in Business & Technology,IBIMA Publishing,21659443 +Journal of African Studies,Japan Association for African Studies,00654140|18845533 +Journal of African Studies and Development,Academic Journals,21412189 +Journal of African Trade,Elsevier ,22148515| +Journal of Africana Religions,The Pennsylvania State University Press,21655405|21655413 +Journal of Aggression Conflict and Peace Research,Emerald (MCB UP ),17596599|20428715 +Journal of Aggression Maltreatment & Trauma,Informa UK (Taylor & Francis),10926771|1545083X +Journal of Aging & Pharmacotherapy,Informa UK (Taylor & Francis),15405303|15404706 +Journal of Aging & Social Policy,Informa UK (Taylor & Francis),08959420|15450821 +Journal of Aging and Gerontology,Savvy Science Publisher,23096128 +Journal of Aging and Health,SAGE Publications,08982643|00000000 +Journal of Aging and Identity,Springer (Kluwer Academic Publishers),10873732| +Journal of Aging and Physical Activity,Human Kinetics,10638652|1543267X +Journal of Aging Humanities and the Arts,Informa UK (Taylor & Francis),19325614|19325622 +Journal of Aging Research,Hindawi Publishing Corporation,20902204|20902212 +Journal of Aging Science,OMICS Publishing Group,23298847 +Journal of Aging Studies,Elsevier ,08904065| +Journal of Agrarian Change,Wiley Blackwell (Blackwell Publishing),14710358|14710366 +Journal of Agribusiness and Rural Development,Uniwersytet Przyrodniczy w Poznaniu (Poznan University of Life Sciences),18995241 +Journal of Agribusiness in Developing and Emerging Economies,Emerald (MCB UP ),20440839| +Journal of Agricultural & Food Industrial Organization,Walter de Gruyter GmbH,21945896|15420485 +Journal of Agricultural & Food Information,Informa UK (Taylor & Francis),10496505|15404722 +Journal of Agricultural and Applied Economics,Cambridge University Press,10740708|20567405 +Journal of Agricultural and Environmental Ethics,Springer-Verlag,11877863|1573322X +Journal of Agricultural and Food Chemistry,American Chemical Society,00218561|15205118 +Journal of Agricultural and Urban Entomology,BioOne (South Carolina Entomological Society),15235475|15235475 +Journal of Agricultural Biological and Environmental Statistics,Springer-Verlag,10857117|15372693 +Journal of Agricultural Biotechnology and Sustainable Development,Academic Journals,21412340|21412340 +Journal of Agricultural Chemistry and Environment,"""Scientific Research Publishing, Inc.""",23257458|2325744X +Journal of Agricultural Economics,Wiley Blackwell (Blackwell Publishing),0021857X|14779552 +Journal of Agricultural Education,American Association for Agricultural Education,10420541|10420541 +Journal of Agricultural Engineering,PAGEPress Publications,19747071|22396268 +Journal of Agricultural Engineering and Biotechnology,Bowen Publishing Company,23313234|23313463 +Journal of Agricultural Engineering Research,Elsevier ,00218634|10959246 +Journal of Agricultural Ethics,Springer-Verlag,08934282| +Journal of Agricultural Extension,African Journals Online ,1119944X|1119944X +Journal of Agricultural Extension & Community Development,Korean Association of Agricultural Extension,19763107| +Journal of Agricultural Extension and Rural Development,Academic Journals,21412170 +Journal of Agricultural Faculty of Gaziosmanpasa University,Journal of Agricultural Faculty of Gaziosmanpasa University,13002910| +Journal of Agricultural Informatics,Journal of Agricultural Informatics,2061862X +Journal of agricultural medicine and community health,Korean Association of Agriculture Medicine and Community Health,17389577| +Journal of Agricultural Meteorology,The Society of Agricultural Meteorology of Japan,00218588|18810136 +Journal of Agricultural Research and Development,African Journals Online ,15965511 +Journal of Agricultural Safety and Health,American Society of Agricultural and Biological Engineers,10747583|19437846 +Journal of Agricultural Science,Canadian Center of Science and Education,19169752|19169760 +Journal of Agricultural Science and Applications,American V-King Scientific Publishers,22276475|22276483 +Journal of Agricultural Science and Technology A,David Publishing Company,21616256|21616256 +Journal of Agricultural Science and Technology B,David Publishing Company,21616264|21616264 +Journal of Agricultural Sciences,Sri Lanka Journals Online ,13919318|23861363 +Journal of Agricultural Sciences Belgrade,National Library of Serbia,14508109|24060968 +Journal of Agricultural Studies,"""Macrothink Institute, Inc.""",21660379 +Journal of Agriculture & Life Science,"""Institute of Agriculture and Life Science, Gyeongsang National University""",15985504|23838272 +Journal of Agriculture & Rural Development,Bangladesh Journals Online,18101860| +Journal of Agriculture and Ecology Research International,Sciencedomain International,23941073 +Journal of Agriculture and Environment,Nepal Journals Online,20911009| +Journal of Agriculture and Environmental Sciences,American Research Institute for Policy Development,23342404|23342412 +Journal of Agriculture and Food Sciences,African Journals Online ,15971074 +Journal of Agriculture and Social Research (JASR),African Journals Online ,15957470 +Journal of Agriculture Economics and Rural Development,Sciknow Publications,23724307 +Journal of Agriculture Food Systems and Community Development,Lyson Center for Civic Agriculture and Food Systems,21520798|21520801 +Journal of Agriculture Forestry and the Social Sciences,African Journals Online ,15970906 +Journal of Agriculture Science and Technology,African Journals Online ,15617645 +Journal of Agrobiology,De Gruyter Open Sp. z o.o. ,18034403|18042686 +Journal of Agromedicine,Informa UK (Taylor & Francis),1059924X|15450813 +Journal of Agronomy,Science Alert,18125379|18125417 +Journal of Agronomy and Crop Science,Wiley Blackwell (Blackwell Publishing),09312250|1439037X +Journal of AIDS & Clinical Research,OMICS Publishing Group,21556113|21556113 +Journal of AIDS and HIV infections,"""Annex Publishers, LLC""",2454499X +Journal of AIDS and HIV Research,Academic Journals,21412359 +Journal of Air Medical Transport,Elsevier ,10469095| +Journal of Air Transport Management,Elsevier ,09696997| +Journal of Air Transportation,American Institute of Aeronautics and Astronautics,23809450 +Journal of Aircraft,American Institute of Aeronautics and Astronautics,00218669|15333868 +Journal of Airline and Airport Management,Omnia Publisher SL,20144865|20144806 +Journal of Alcoholism and Drug Dependence,OMICS Publishing Group,23296488 +Journal of Algebra,Elsevier ,00218693|1090266X +Journal of Algebra and Its Applications,World Scientific ,02194988|17936829 +Journal of Algebra Combinatorics Discrete Structures and Applications,Journal of Algebra Combinatorics Discrete Structures and Applications,2148838X|2148838X +Journal of Algebra Number Theory Advances and Applications,Scientific Advances Publishers,9751548 +Journal of Algebraic Combinatorics,Springer-Verlag,09259899|15729192 +Journal of Algebraic Geometry,American Mathematical Society,10563911|15347486 +Journal of Algebraic Statistics,Paul V. Galvin Library/Illinois Institute of Technology,13093452 +Journal of Algorithms,Elsevier ,01966774|10902678 +Journal of Algorithms & Computational Technology,SAGE Publications,17483018|00000000 +Journal of Algorithms and Optimization,The World Academic Publishing,23127767|23127759 +Journal of Allergy,Hindawi Publishing Corporation,16879783|16879791 +Journal of Allergy,Elsevier ,00218707| +Journal of Allergy & Therapy,OMICS Publishing Group,21556121 +Journal of Allergy and Asthma,Herbert Publications,20549873 +Journal of Allergy and Clinical Immunology,Elsevier ,00916749| +Journal of allied health sciences,Society of Allied Health Services,21850399 +Journal of Alloys and Compounds,Elsevier ,09258388| +Journal of Alternative Medical Research,Elyns Group LLC,24701017 +Journal of Alzheimer s Disease,IOS Press,13872877|18758908 +Journal of Alzheimer’s Disease & Parkinsonism,OMICS Publishing Group,21610460 +Journal of Amateur Sport,The University of Kansas,23728078 +Journal of Ambient Intelligence and Humanized Computing,Springer-Verlag,18685137|18685145 +Journal of Ambient Intelligence and Smart Environments,IOS Press,18761364|18761372 +Journal of Ambient Wireless Communications and Smart Environments (AMBIENTCOM),River Publishers,22463410| +Journal of Ambulatory Care Management,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,01489917| +Journal of Ambulatory Care Management,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,01489917| +Journal of Ambulatory Care Management,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,01489917| +Journal of Ambulatory Care Marketing,"""Informa UK (Haworth Press, Inc.,)""",08869723| +Journal of American & Comparative Cultures,Wiley Blackwell (Blackwell Publishing),15374726|1540594X +Journal of American Association for Pediatric Ophthalmology and Strabismus,Elsevier ,10918531| +Journal of American College Health,Informa UK (Taylor & Francis),07448481|19403208 +Journal of American College Health Association,Informa UK (Taylor & Francis),01644300| +Journal of American Culture,Wiley Blackwell (Blackwell Publishing),01911813| +Journal of American Ethnic History,University of Illinois Press,02785927|19364695 +Journal of American Folklore,University of Illinois Press,00218715|15351882 +Journal of American Folklore,University of Illinois Press,00218715|15351882 +Journal of American Studies,Cambridge University Press,00218758|14695154 +Journal of American Studies Eurasian Perspective,Macro World Publishing,21473498|21490481 +Journal of American-East Asian Relations,Brill Academic Publishers,10583947|18765610 +Journal of Amino Acids,Hindawi Publishing Corporation (Sage-Hindawi Access to Research),20900112 +Journal of Amino Acids,Hindawi Publishing Corporation,20900104|20900104 +Journal of Anaesthesiology Clinical Pharmacology,Medknow Publications,09709185| +Journal of Analysis & Number Theory,Natural Sciences Publishing,23752785|23752807 +Journal of Analytic Social Work,"""Informa UK (Haworth Press, Inc.,)""",10529950| +Journal of Analytical & Bioanalytical Techniques,OMICS Publishing Group,21559872|21559872 +Journal of Analytical and Applied Pyrolysis,Elsevier ,01652370| +Journal of Analytical Atomic Spectrometry,The Royal Society of Chemistry,02679477|13645544 +Journal of Analytical Chemistry,Pleiades Publishing,10619348|16083199 +Journal of Analytical Methods in Chemistry,Hindawi Publishing Corporation,20908865|20908873 +Journal of Analytical Oncology,Lifescience Global,19277229 +Journal of Analytical Psychology,Wiley Blackwell (Blackwell Publishing),00218774|14655922 +Journal of Analytical Research in Clinical Medicine,International Society for Phytocosmetic Sciences,23454970 +Journal of Analytical Science & Technology,Springer (Biomed Central Ltd.),20933134|20933371 +Journal of Analytical Sciences Methods and Instrumentation,"""Scientific Research Publishing, Inc.""",21642745|21642753 +Journal of Analytical Techniques,Bioinfo Publications,0976769X|09767703 +Journal of Analytical Toxicology,Oxford University Press,01464760|19452403 +Journal of Anatolia Nursing and Health Sciences,Journal of Anatolia Nursing and Health Sciences,13095471| +Journal of Anatomical Society of India,Elsevier ,00032778| +Journal of Anatomy,Wiley Blackwell (Blackwell Publishing),00218782|14697580 +Journal of Ancient Diseases & Preventive Remedies,OMICS Publishing Group,23298731 +Journal of Ancient History,Walter de Gruyter GmbH,23248106|23248114 +Journal of Ancient History and Archeology,Institute of Archaeology and Art History,2360266X +Journal of Ancient Judaism,"""Vandenhoeck & Ruprecht GmbH & Co, KG""",21967954|21967954 +Journal of Ancient Near Eastern History,Walter de Gruyter GmbH,23289554|23289562 +Journal of Ancient Near Eastern Religions,Brill Academic Publishers,15692116|15692124 +Journal of Ancient Philosophy,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,19819471|19819471 +Journal of Andrology,Wiley Blackwell (John Wiley & Sons),01963635| +Journal of Andrology and Gynaecology,Avens Publishing Group,23323442 +Journal of Anesthesia,Springer-Verlag,09138668|14388359 +Journal of Anesthesia & Clinical Research,OMICS Publishing Group,21556148 +Journal of Anesthesia & Critical Care Open Access,MedCrave Group,23736437 +Journal of Anesthesia and Surgery,Ommega Online Publishers,23771364 +Journal of Anesthesia History,Elsevier ,23524529| +Journal of Anesthesiology,Hindawi Publishing Corporation,23567147|23146974 +journal of Anesthesiology and Clinical Science,Herbert Publications,20499752 +Journal of Anesthesiology Presentations,"""Journals of Biomedical Presentations Smart Sci Solutions, Inc.""",23745258 +Journal of Angiogenesis Research,Springer (Biomed Central Ltd.),20402384| +Journal of Angiology,Hindawi Publishing Corporation,23567155|2314694X +Journal of Angioplasty,International Society for Technology in Arthroplasty,20493630 +Journal of Anglican Studies,Cambridge University Press,17403553|17455278 +Journal of Animal and Veterinary Advances,Science Alert,16805593| +Journal of Animal Behavior,American Psychological Association,00959928| +Journal of Animal Behaviour and Biometeorology,Journal of Animal Behaviour and Biometeorology,23181265 +Journal of Animal Breeding and Genetics,Wiley Blackwell (Blackwell Publishing),09312668|14390388 +Journal of Animal Ecology,Wiley Blackwell (Blackwell Publishing),00218790|13652656 +Journal of Animal Environmental Science,The Korean Society for Livestock Housing and Environment,12260274| +Journal of Animal Ethics,University of Illinois Press,21565414|21601267 +Journal of Animal Genetic Research,Sciknow Publications,23303433 +Journal of Animal Health and Production,Nexus Academic Publishers,23082801 +Journal of Animal Physiology and Animal Nutrition,Wiley Blackwell (Blackwell Publishing),09312439|14390396 +Journal of Animal Production Advances,ScopeMed International Medical Journal Managment and Indexing System,22517677 +Journal of Animal Research,Diva Enterprises Private Limited,22495290|2277940X +Journal of Animal Research and Technology,"""Atlas Scienfitic Publishing, LP""",21533504 +Journal of Animal Science,American Society of Animal Science,00218812|15253163 +Journal of Animal Science Advances,ScopeMed International Medical Journal Managment and Indexing System,22517219 +Journal of Animal Science and Biotechnology,Springer (Biomed Central Ltd.),20491891|20491891 +Journal of Animal Science and Technology,Springer (Biomed Central Ltd.),15989429|20550391 +Journal of Animals,Hindawi Publishing Corporation,23567163|2314825X +Journal of Ankara Medical School,Ankara University,13005464|13005464 +Journal of Ankara Studies,"""LookUs Bilisim, Ltd.""",21478724| +Journal of Antennas,Hans Publishers,23252227|23252243 +Journal of Anthropological Archaeology,Elsevier ,02784165|10902686 +Journal of Anthropological Research,The University of Chicago Press,0091-7710|21533806 +Journal of Anthropology,Hindawi Publishing Corporation,20904045|20904053 +Journal of Anthropology,JSTOR,13560123| +Journal of Anthropology and Archaeology,American Research Institute for Policy Development,23342420|23342439 +Journal of Anti-Aging Medicine,Mary Ann Liebert,10945458| +Journal of Antimicrobial Chemotherapy,Oxford University Press,03057453|14602091 +Journal of Antioxidant Activity,Open Access Pub,24712140 +Journal of Antitrust Enforcement,Oxford University Press,20500688|20500696 +Journal of Antivirals & Antiretrovirals,OMICS Publishing Group,19485964|19485964 +Journal of Anxiety Disorders,Elsevier ,08876185| +Journal of AOAC International,The Journal of AOAC International,10603271|19447922 +Journal of Apicultural Research,Informa UK (Taylor & Francis),00218839|20786913 +Journal of Apicultural Science,De Gruyter Open Sp. z o.o. ,22994831|22994831 +Journal of Apicultural Science,De Gruyter Open Sp. z o.o. ,16434439| +Journal of Apiculture,The Apicultural Society of Korea,12250252| +Journal of ApiProduct and ApiMedical Science,International Bee Research Association,17597986 +Journal of Appalachian Studies,University of Illinois Press,10827161|10827161 +Journal of Applied & Computational Mathematics,OMICS Publishing Group,21689679 +Journal of Applied & Environmental Microbiology,"""Science and Education Publishing Co., Ltd.""",23736747| +Journal of Applied Accounting Research,Emerald (MCB UP ),09675426| +Journal of Applied Analysis,Walter de Gruyter GmbH,14256908|18696082 +Journal of Applied and Industrial Mathematics,Pleiades Publishing,19904789|19904797 +Journal of Applied and Physical Sciences,TAF Publishing,24143103 +Journal of Applied Animal Nutrition,Cambridge University Press,2049257X +Journal of Applied Animal Research,Informa UK (Taylor & Francis),09712119|09741844 +Journal of Applied Animal Welfare Science,Informa UK (Taylor & Francis),10888705|15327604 +Journal of Applied Aquaculture,Informa UK (Taylor & Francis),10454438|15450805 +Journal of Applied Arts and Health,Intellect,20402457|20402465 +Journal of Applied Bacteriology,Wiley Blackwell (Blackwell Publishing),00218847| +Journal of Applied Behavior Analysis,Wiley Blackwell (John Wiley & Sons),00218855|19383703 +Journal of Applied Bioanalysis,Betasciencepress Publishers,2405710X +Journal of Applied Biobehavioral Research,Wiley Blackwell (Blackwell Publishing),10712089|17519861 +Journal of Applied Bioinformatics & Computational Biology,OMICS Publishing Group,23299533 +Journal of Applied Biological Chemistry,The Korean Society for Applied Biological Chemistry,19760442|22347941 +Journal of Applied Biology & Biotechnology,Journal of Applied Pharmacuetical Science,2347212X +Journal of Applied Biomaterials,Wiley Blackwell (John Wiley & Sons),10454861|15499316 +Journal of Applied Biomaterials & Functional Materials,"""Wichtig Publishing, SRL""",22808000|22808000 +Journal of Applied Biomaterials & Functional Materials,"""Wichtig Publishing, SRL""",17226899| +Journal of Applied Biomechanics,Human Kinetics,10658483|15432688 +Journal of Applied Biomedicine,Elsevier ,1214021X|12140287 +Journal of Applied Biomedicine,Elsevier ,02085216| +Journal of Applied Biopharmaceutics and Pharmacokinetics,Pharma Publisher,23094435 +Journal of Applied Biosciences,African Journals Online ,19975902 +Journal of Applied Biotechnology,"""Macrothink Institute, Inc.""",23270640 +Journal of Applied Business Research (JABR),Clute Institute,08927626|21578834 +Journal of Applied Chemistry,Hindawi Publishing Corporation,23567171|23146923 +Journal of Applied Chemistry,Wiley Blackwell (John Wiley & Sons),00218871|1934998X +Journal of Applied Chemistry and Agricultural Research,African Journals Online ,11172894 +Journal of Applied Chemistry and Biotechnology,Wiley Blackwell (John Wiley & Sons),03759210|19350554 +Journal of Applied Clinical Medical Physics,American College of Medical Physics,15269914|15269914 +Journal of Applied Communication Research,Informa UK (Taylor & Francis),00909882|14795752 +Journal of Applied Computer Science Methods,De Gruyter Open Sp. z o.o. ,16899636 +Journal of Applied Computing Research,Universidade do Vale do Rio Dos Sinos - UNISINOS,22368434 +Journal of Applied Corporate Finance,Wiley Blackwell (Blackwell Publishing),10781196|17456622 +Journal of Applied Crystallography,International Union of Crystallography,00218898|16005767 +Journal of Applied Developmental Psychology,Elsevier ,01933973| +Journal of Applied Ecology,Wiley Blackwell (Blackwell Publishing),00218901|13652664 +Journal of Applied Econometrics,Wiley Blackwell (John Wiley & Sons),08837252|10991255 +Journal of Applied Economics,Elsevier ,15140326| +Journal of Applied Electrochemistry,Springer-Verlag,0021891X|15728838 +Journal of Applied Engineering Sciences,Walter de Gruyter GmbH,22473769 +Journal of Applied Entomology,Wiley Blackwell (Blackwell Publishing),09312048|14390418 +Journal of Applied Fire Science,SAGE Publications,10444300|15414183 +Journal of Applied Genetics,Springer-Verlag,12341983|21903883 +Journal of Applied Geochemistry,Diva Enterprises Private Limited,09721967|23194316 +Journal of Applied Geodesy,Walter de Gruyter GmbH,18629016|18629024 +Journal of Applied Geophysics,Elsevier ,09269851| +Journal of Applied Gerontology,SAGE Publications,07334648|00000000 +Journal of Applied Glycoscience,The Japanese Society of Applied Glycoscience,13447882|18807291 +Journal of Applied Hematology,Medknow Publications,16585127| +Journal of Applied Ichthyology,Wiley Blackwell (Blackwell Publishing),01758659|14390426 +Journal of Applied Journalism & Media Studies,Intellect,20010818|20499531 +Journal of Applied Life Sciences International,Sciencedomain International,23941103 +Journal of Applied Linguistics,Equinox Publishing,14797887|17431743 +Journal of Applied Linguistics and Professional Practice,Equinox Publishing,20403658|20403666 +Journal of Applied Logic,Elsevier ,15708683| +Journal of Applied Management Studies,Informa UK (Taylor & Francis),13600796|14699354 +Journal of Applied Mathematics,Hindawi Publishing Corporation,1110757X|16870042 +Journal of applied mathematics & informatics,Korean Society of Computational and Applied Mathematics,15985857| +Journal of Applied Mathematics and Computational Mechanics,Czestochowa University of Technology,22999965|23530588 +Journal of Applied Mathematics and Computing,Springer-Verlag,15985865|18652085 +Journal of Applied Mathematics and Decision Sciences,Hindawi Publishing Corporation,11739126|15327612 +Journal of Applied Mathematics and Mechanics,Elsevier ,00218928| +Journal of Applied Mathematics and Physics,"""Scientific Research Publishing, Inc.""",23274352|23274379 +Journal of Applied Mathematics and Simulation,Hindawi Publishing Corporation,08935688| +Journal of Applied Mathematics and Statistics,Columbia International Publishing,21631182 +Journal of Applied Mathematics and Stochastic Analysis,Hindawi Publishing Corporation,10489533|16872177 +Journal of Applied Mathematics Statistics and Informatics,De Gruyter Open Sp. z o.o. ,13369180|13369180 +Journal of Applied Mechanical Engineering,OMICS Publishing Group,21689873 +Journal of Applied Mechanics,ASME International ,00218936| +Journal of Applied Mechanics,Japan Society of Civil Engineers,13459139|1884832X +Journal of Applied Mechanics and Technical Physics,Springer-Verlag,00218944|15738620 +Journal of Applied Metalworking,Springer-Verlag,01629700| +Journal of Applied Meteorology,American Meteorological Society,08948763|15200450 +Journal of Applied Meteorology and Climatology,American Meteorological Society,15588424|15588432 +Journal of Applied Microbiology,Wiley Blackwell (Blackwell Publishing),13645072|13652672 +Journal of Applied Non-Classical Logics,Informa UK (Taylor & Francis),11663081|19585780 +Journal of Applied Nonlinear Dynamics,L&H Scientific Publishing LLC,21646457|21646473 +Journal of Applied Optics,Journal of Applied Optics,10022082| +Journal of Applied Oral Science,SciELO,16787757|16787757 +Journal of Applied Packaging Research,Wallace Center,15577244 +Journal of Applied Packaging Research,Wallace Center,15577244 +Journal of Applied Pharmaceutical Science,Journal of Applied Pharmacuetical Science,22313354 +Journal of Applied Pharmacy,OMICS Publishing Group,19204159 +Journal of Applied Philosophy,Wiley Blackwell (Blackwell Publishing),02643758|14685930 +Journal of Applied Phycology,Springer-Verlag,09218971|15735176 +Journal of Applied Physics,American Institute of Physics,00218979|10897550 +Journal of Applied Physiology,American Physiological Society,87507587|15221601 +Journal of Applied Polymer Science,Wiley Blackwell (John Wiley & Sons),00218995|10974628 +Journal of Applied Probability,Cambridge University Press,00219002|14756072 +Journal of Applied Psychoanalytic Studies,Springer (Kluwer Academic Publishers),15211401|15733459 +Journal of Applied Psychology,American Psychological Association,00219010|19391854 +Journal of Applied Remote Sensing,SPIE - International Society for Optical Engineering,19313195|19313195 +Journal of Applied Research and Technology,Elsevier ,16656423| +Journal of Applied Research in Higher Education,Emerald (MCB UP ),17581184| +Journal of Applied Research in Intellectual Disabilities,Wiley Blackwell (Blackwell Publishing),13602322|14683148 +Journal of Applied Research in Memory and Cognition,Elsevier ,22113681| +Journal of Applied Research on Medicinal and Aromatic Plants,Elsevier ,22147861| +Journal of Applied School Psychology,Informa UK (Taylor & Francis),15377903|15377911 +Journal of Applied Science and Technology,African Journals Online ,8552215 +Journal of Applied Science Engineering and Technology,African Journals Online ,15963233 +Journal of Applied Sciences,Science Alert,18125654|18125662 +Journal of Applied Sciences and Environmental Management,African Journals Online ,11198362 +Journal of Applied Security Research,Informa UK (Taylor & Francis),19361610|19361629 +Journal of Applied Social Psychology,Wiley Blackwell (Blackwell Publishing),00219029|15591816 +Journal of Applied Social Science,SAGE Publications,19367244|19370245 +Journal of Applied Solution Chemistry and Modeling,Lifescience Global,19295030 +Journal of Applied Spectroscopy,Springer-Verlag,00219037|15738647 +Journal of Applied Sport Management,"""Sagamore Publishing, LLC""",23270187 +Journal of Applied Sport Psychology,Informa UK (Taylor & Francis),10413200|15331571 +Journal of Applied Statistics,Informa UK (Taylor & Francis),02664763|13600532 +Journal of Applied Toxicology,Wiley Blackwell (John Wiley & Sons),0260437X|10991263 +Journal of Applied Virology,HK Institute of Biologicals Standardization Ltd,23055154|23066210 +Journal of Applied Volcanology,Springer (Biomed Central Ltd.),21915040|21915040 +Journal of Applied Water Engineering and Research,Informa UK (Taylor & Francis),23249676 +Journal of Approximation Theory,Elsevier ,00219045|10960430 +Journal of Aquaculture & Marine Biology,MedCrave Group,23783184 +Journal of Aquaculture Engineering and Fisheries Research,Scientific Web Journals (SWJ),21490236 +Journal of Aquaculture Feed Science and Nutrition,Science Alert,20701667| +Journal of Aquaculture Research & Development,OMICS Publishing Group,21559546 +Journal of Aquaculture Research & Development,OMICS Publishing Group, +Journal of Aquanautic and Underwater Sciences,Subsea Diving Contractor di Stefano Di Cagno Publisher,22835393|22835393 +Journal of Aquatic Animal Health,American Fisheries Society,08997659|15488667 +Journal of Aquatic Ecosystem Health,Springer-Verlag,09251014|15735141 +Journal of Aquatic Ecosystem Stress and Recovery,Springer (Kluwer Academic Publishers),13861980| +Journal of Aquatic Food Product Technology,Informa UK (Taylor & Francis),10498850|15470636 +Journal of Aquatic Sciences,African Journals Online ,1898779 +Journal of Arab & Muslim Media Research,Intellect,17519411|1751942X +Journal of Arab Child,"""Al Manhal FZ, LLC""",11100672| +Journal of Arabian Studies,Informa UK (Taylor & Francis),21534764|21534780 +Journal of Arabic Literature,Brill Academic Publishers,00852376|1570064X +Journal of Arabic Studies,"""Al Manhal FZ, LLC""",16584198| +Journal of Arachnology,BioOne (American Arachnological Society),01618202|19372396 +JOURNAL OF ARBITRATION STUDIES,Korean Association for Arbitration Studies,12263699| +JOURNAL OF ARBITRATION STUDIES,Korean Association for Arbitration Studies,12263699| +Journal of Archaeological Method and Theory,Springer-Verlag,10725369|15737764 +Journal of Archaeological Research,Springer-Verlag,10590161|15737756 +Journal of Archaeological Science,Elsevier ,03054403|10959238 +Journal of Archaeological Science Reports,Elsevier ,2352409X| +Journal of Archaeology,Hindawi Publishing Corporation,20904061|2090407X +Journal of Architectural Conservation,Informa UK (Taylor & Francis),13556207|23266384 +Journal of Architectural Education,Informa UK (Taylor & Francis),10464883|1531314X +Journal of Architectural Education (1947-1974),JSTOR,00472239| +Journal of Architectural Engineering,American Society of Civil Engineers,10760431|19435568 +Journal of Architectural Engineering Technology,OMICS Publishing Group,21689717 +Journal of architectural history,Korean Association of Architectural History,15981142|23839066 +Journal of Architecture and Planning (Transactions of AIJ),Architectural Institute of Japan,13404210|18818161 +Journal of Architecture and Urbanism,Vilnius Gediminas Technical University,20297955|20297947 +Journal of architecture&ENVIRONMENT,Lembaga Penelitian dan Pengabdian kepada Masyarakat ITS,1412937X|2355262X +Journal of Archival Organization,Informa UK (Taylor & Francis),15332748|15332756 +Journal of Archives in Military Medicine,Kowsar Medical Institute,23455071|23455063 +Journal of Area Studies (Series 1),Informa UK (Taylor & Francis),02613530|21602565 +Journal of Argumentation in Context,John Benjamins Publishing Company,22114742|22114750 +Journal of Arid Environments,Elsevier ,01401963|1095922X +Journal of Arid Land,Springer-Verlag,16746767|21947783 +Journal of Armed Forces Medical College Bangladesh,Bangladesh Journals Online,19925743| +Journal of Arrhythmia,Elsevier ,18804276|18832148 +Journal of Art & Design Education,Wiley Blackwell (Blackwell Publishing),02609991|14685949 +Journal of Arthritis,OMICS Publishing Group,21677921 +Journal of Arthroscopy and Joint Surgery,Elsevier ,22149635| +Journal of Artificial Evolution and Applications,Hindawi Publishing Corporation,16876229|16876237 +Journal of Artificial General Intelligence,De Gruyter Open Sp. z o.o. ,19460163 +Journal of Artificial Intelligence,Science Alert,19945450| +Journal of Artificial Intelligence and Data Mining,International Digital Organization for Scientific Information,23225211| +Journal of Artificial Intelligence and Soft Computing Research,De Gruyter Open Sp. z o.o. ,20832567 +Journal of Artificial Organs,Springer-Verlag,14347229|16190904 +Journal of Artificial Societies and Social Simulation,Journal of Artificial Societies and Social Simulation,14607425 +Journal of Arts & Communities,Intellect,17571936|17571944 +Journal of Arts and Cultural Management,Korean Society of Arts and Cultural Management,20927053| +Journal of Arts and Culture,Bioinfo Publications,09769862|09769870 +Journal of Arts Management and Law,Informa UK (Taylor & Francis),07335113| +Journal of Arts Writing by Students,Intellect,20552823|20552831 +Journal of Asia Business Studies,Emerald (MCB UP ),15587894| +Journal of Asia Pacific Counseling,Korean Counseling Association,22336710|23842121 +Journal of Asia-Pacific Biodiversity,Elsevier ,2287884X| +Journal of Asia-Pacific Business,Informa UK (Taylor & Francis),10599231|15286940 +Journal of Asia-Pacific Entomology,Elsevier ,12268615| +Journal of Asian American Studies,Muse - Johns Hopkins University Press,10968598 +Journal of Asian and African Studies,SAGE Publications,00219096|17452538 +Journal of Asian Architecture and Building Engineering,Architectural Institute of Japan,13467581|13472852 +Journal of Asian Ceramic Societies,Elsevier ,21870764| +Journal of Asian Concrete Federation,Asian Concrete Federation,24657964| +Journal of Asian Culture Society International,Asian Culture Society International,13405411|18845290 +Journal of Asian Development,"""Macrothink Institute, Inc.""",23779594 +Journal of Asian Earth Sciences,Elsevier ,13679120| +Journal of Asian Earth Sciences,Elsevier ,07439547| +Journal of Asian Economics,Elsevier ,10490078| +Journal of Asian Electric Vehicles,Asian Electric Vehicle Society,13483927|18836038 +Journal of Asian Finance Economics and Business,Korea Distribution Science Association,22884637|22884645 +JOURNAL OF ASIAN HISTORICAL STUDIES,The Society of Asian Historical Studies,12261270| +Journal of Asian History,Harrassowitz Publishing House,0021910X| +Journal of Asian Natural Products Research,Informa UK (Taylor & Francis),10286020|14772213 +Journal of Asian Pacific Communication,John Benjamins Publishing Company,09576851|15699838 +Journal of Asian Public Policy,Informa UK (Taylor & Francis),17516234| +Journal of Asian Public Policy,Informa UK (Taylor & Francis),17516234|17516242 +Journal of Asian Public Policy,Informa UK (Taylor & Francis),17516234| +Journal of Asian Public Policy,Informa UK (Taylor & Francis),17516234| +Journal of Asian Scientific Research,Pak Publishing Group,22265724|22231331 +Journal of Asian Security and International Affairs,SAGE Publications,23477970|23490039 +Journal of Assessment and Institutional Effectiveness,The Pennsylvania State University Press,21606765|21606757 +Journal of Asset Management,Nature Publishing Group - Macmillan Publishers,14708272|1479179X +Journal of Assisted Reproduction and Genetics,Springer-Verlag,10580468|15737330 +Journal of Assistive Rehabilitative & Therapeutic Technologies,Co-Action Publishing,20016824 +Journal of Assistive Technologies,Emerald (MCB UP ),17549450|20428723 +Journal of Association for Korean Public Administration History,Association for Korea Public Administration History,12297518| +Journal of Asthma,Informa UK (Taylor & Francis),02770903|15324303 +Journal of Asthma & Allergy Educators,SAGE Publications,21501297|21501300 +Journal of Asthma and Allergy,Dove Medical Press,11786965 +Journal of Asthma Research,Informa UK (Taylor & Francis),00219134| +Journal of ASTM International,ASTM International,1546962X| +Journal of Astrobiology & Outreach,OMICS Publishing Group,23322519 +Journal of Astronomical Instrumentation,World Scientific ,22511717|22511725 +Journal of Astronomical Telescopes Instruments and Systems,SPIE - International Society for Optical Engineering,23294124| +Journal of Astronomy & Earth Sciences Education (JAESE),Clute Institute,23746246|23746254 +Journal of Astronomy & Space Sciences,The Korean Space Science Society,1225052X| +Journal of Astronomy and Space Sciences,The Korean Space Science Society,20935587| +Journal of Astrophysics,Hindawi Publishing Corporation,2356718X|23146192 +Journal of Astrophysics & Aerospace Technology,OMICS Publishing Group,23296542 +Journal of Astrophysics and Astronomy,Springer-Verlag,02506335|09737758 +Journal of asymmetry,"""Science and Education, Ltd.""",19996489| +Journal of Atherosclerosis and Thrombosis,Japan Atherosclerosis Society,13403478|18803873 +Journal of Atherosclerosis Research,Elsevier ,03681319| +Journal of Athletic Enhancement,OMICS Publishing Group,23249080 +Journal of Athletic Training,Journal of Athletic Training/NATA,10626050| +Journal of Atmosphere,Pak Publishing Group,24142484 +Journal of Atmospheric & Ocean Science,Informa UK (Taylor & Francis),17417538| +Journal of Atmospheric & Ocean Science,Informa UK (Taylor & Francis),17417538|17417546 +Journal of Atmospheric & Ocean Science,Informa UK (Taylor & Francis),17417538| +Journal of Atmospheric & Ocean Science,Informa UK (Taylor & Francis),17417538| +Journal of Atmospheric and Ocean Science,Informa UK (Taylor & Francis),17417538| +Journal of Atmospheric and Oceanic Technology,American Meteorological Society,07390572|15200426 +Journal of Atmospheric and Solar-Terrestrial Physics,Elsevier ,13646826| +Journal of Atmospheric and Terrestrial Physics,Elsevier ,00219169| +Journal of Atmospheric Chemistry,Springer-Verlag,01677764|15730662 +Journal of Atmospheric Electricity,Institute Electrical Engineers Japan,09192050| +Journal of Atomic and Molecular Physics,Hindawi Publishing Corporation,23148039|23148020 +Journal of Atomic Molecular and Optical Physics,Hindawi Publishing Corporation,16879228|16879236 +Journal of Atrial Fibrillation,"""Cardiofront, LLC""",19416911 +Journal of Attention Disorders,SAGE Publications,10870547|15571246 +Journal of Audiology & Otology,The Korean Audiological Society (KAMJE),23841621|23841710 +Journal of Audiovisual Media in Medicine,Informa UK (Taylor & Francis),0140511X| +Journal of Australian Studies,Informa UK (Taylor & Francis),14443058|18356419 +Journal of Austrian Studies,Muse - Johns Hopkins University Press,23271809 +Journal of Austrian Studies,Muse - Johns Hopkins University Press,23271809 +Journal of Autacoids,OMICS Publishing Group,21610479 +Journal of Autism,Herbert Publications,2054992X +Journal of Autism and Childhood Schizophrenia,Springer-Verlag,00219185| +Journal of Autism and Developmental Disorders,Springer-Verlag,01623257|15733432 +Journal of Autoimmune Diseases,Springer (Biomed Central Ltd.),17402557| +Journal of Autoimmune Diseases and Rheumatology,Synergy Publishers,23109874 +Journal of Autoimmunity,Elsevier ,08968411|10959157 +Journal of Autoimmunity and Cell Responses,Herbert Publications,2054989X +Journal of Automated Methods and Management in Chemistry,Hindawi Publishing Corporation,14639246|14645068 +Journal of Automated Reasoning,Springer-Verlag,01687433|15730670 +Journal of Automatic Chemistry,Hindawi Publishing Corporation,01420453| +Journal of Automatic Control,National Library of Serbia,14509903| +Journal of Automation and Control Engineering,EJournal Publishing,23013702| +Journal of Automation and Control Research,Avestia Publishing,23686677 +Journal of Automation and Information Sciences,Begell House Inc.,10642315| +Journal of Automation Mobile Robotics & Intelligent Systems,PIAP - Industrial Research Institute for Automation and Measurements,18978649|20802145 +Journal of Autonomic Pharmacology,Wiley Blackwell (Blackwell Publishing),01441795|13652680 +Journal of Avian Biology,Wiley Blackwell (Blackwell Publishing),09088857|1600048X +Journal of Avian Medicine and Surgery,BioOne (Association of Avian Veterinarians),10826742|19382871 +Journal of Aviation Technology and Engineering,Purdue University (bepress),21596670 +Journal of Ayurveda and Integrative Medicine,Elsevier ,09759476| +Journal of Baccalaureate Social Work,"""The Association of Baccalaureate Social Work Program Directors, Inc.""",10847219| +Journal of Back and Musculoskeletal Rehabilitation,IOS Press,10538127|10538127 +Journal of Bacteriology,American Society for Microbiology,00219193|10985530 +Journal of Bacteriology & Parasitology,OMICS Publishing Group,21559597 +Journal of Bacteriology and Virology,The Korean Society for Microbiology and The Korean Society of Virology (KAMJE),15982467|20930429 +Journal of Bacteriology Research,Academic Journals,20069871 +Journal of Baghdad College of Dentistry,"""Al Manhal FZ, LLC""",16800087| +Journal of Balkan and Near Eastern Studies,Informa UK (Taylor & Francis),19448953|19448961 +Journal of Balkan Libraries Union,Balkan Libraries Union,2148077X| +Journal of Baltic Studies,Informa UK (Taylor & Francis),01629778|17517877 +Journal of Bamboo and Rattan,Brill Academic Publishers,15691586|15691594 +Journal of Bangladesh Academy of Sciences,Bangladesh Journals Online,03788121| +Journal of Bangladesh Chemical Society,Bangladesh Journals Online,1022016X| +Journal of Bangladesh College of Physicians and Surgeons,Bangladesh Journals Online,10150870| +Journal of Bangladesh Institute of Planners,Bangladesh Journals Online,20759363| +Journal of Bangladesh Society of Physiologist,Bangladesh Journals Online,19951213| +Journal of Banking & Finance,Elsevier ,03784266| +Journal of Banking and Financial Economics,"""University of Warsaw, Faculty of Management""",23536845 +Journal of Banking Regulation,Nature Publishing Group - Macmillan Publishers,17456452|17502071 +Journal of Basic & Applied Sciences,Lifescience Global,19275129 +Journal of Basic and Applied Physics,The World Academic Publishing,23049340|23049332 +Journal of Basic and Clinical Health Sciences,AVES Publishing Co.,24588938| +Journal of Basic and Clinical Pharmacy,Medknow Publications,09760105| +Journal of Basic and Clinical Physiology and Pharmacology,Walter de Gruyter GmbH,07926855|21910286 +Journal of Basic and Clinical Reproductive Sciences,Medknow Publications,2278960X| +Journal of Basic Engineering,ASME International ,00219223| +Journal of Basic Microbiology,Wiley Blackwell (John Wiley & Sons),0233111X|15214028 +Journal of Beckett Studies,Edinburgh University Press,03095207|17597811 +Journal of Behavior Analysis in Health Sports Fitness and Medicine,American Psychological Association,19467079 +Journal of Behavior Assessment and Intervention in Children,American Psychological Association,21557853 +Journal of Behavior Health & Social Issues,Asociacion Mexicana de Comportamiento y Salud,20070780|20070780 +Journal of Behavior Therapy and Experimental Psychiatry,Elsevier ,00057916| +Journal of Behavioral Addictions,Akademiai Kiado Zrt.,20625871|20625871 +Journal of Behavioral and Brain Science,"""Scientific Research Publishing, Inc.""",21605866|21605874 +Journal of Behavioral and Experimental Economics,Elsevier ,22148043| +Journal of Behavioral and Experimental Finance,Elsevier ,22146350| +Journal of Behavioral Assessment,Springer-Verlag,01640305| +Journal of Behavioral Decision Making,Wiley Blackwell (John Wiley & Sons),08943257|10990771 +Journal of Behavioral Economics,Elsevier ,00905720| +Journal of Behavioral Education,Springer-Verlag,10530819|15733513 +Journal of Behavioral Finance,Informa UK (Taylor & Francis),15427560|15427579 +Journal of Behavioral Health,ScopeMed International Medical Journal Managment and Indexing System,21468346| +Journal of Behavioral Health and Medicine,American Psychological Association,23754656 +Journal of Behavioral Medicine,Springer-Verlag,01607715|15733521 +Journal of Beliefs and Values,Informa UK (Taylor & Francis),13617672|14699362 +Journal of Benefit-Cost Analysis,Cambridge University Press,21945888|21522812 +Journal of Bentham Studies,UCL Press,2045757X +Journal of Berry Research,IOS Press,18785093|18785123 +Journal of Biblical Literature,Muse - Johns Hopkins University Press,19343876 +Journal of Biblical Literature,Society of Biblical Literature/SBL Press,00219231| +Journal Of Big Data,Springer (Biomed Central Ltd.),21961115|21961115 +Journal of Bio- and Tribo-Corrosion,Springer-Verlag,21984220|21984239 +Journal of Bio-Science,Bangladesh Journals Online,10238654|10238654 +Journal of Bioactive and Compatible Polymers,SAGE Publications,08839115|15308030 +Journal of Bioanalysis & Biomedicine,OMICS Publishing Group,1948593X +Journal of Biobased Materials and Bioenergy,American Scientific Publishers,15566560|15566579 +Journal of Biocatalysis & Biotransformation,OMICS Publishing Group,23249099 +Journal of Biochemical & Microbial Technology,Noble Research Publishers,20532482 +Journal of Biochemical and Biophysical Methods,Elsevier ,0165022X| +Journal of Biochemical and Microbiological Technology and Engineering,Wiley Blackwell (John Wiley & Sons),03681467|1547173X +Journal of Biochemical and Molecular Toxicology,Wiley Blackwell (John Wiley & Sons),10956670|10990461 +Journal of Biochemical Toxicology,Wiley Blackwell (John Wiley & Sons),08872082|15227146 +Journal of Biochemistry,Oxford University Press,0021924X|17562651 +Journal of Biochemistry and molecular biology,Korean Society for Biochemistry and Molecular Biology - BMB Reports,12258687| +Journal of Biochemistry and Molecular Biology Research,ACT Publishing Group,23137177| +Journal of Biochips & Tissue Chips,OMICS Publishing Group,21530777 +Journal of Biocommunication,University of Illinois Libraries,942499 +Journal of Biodiversity & Endangered Species,OMICS Publishing Group,23322543 +Journal of Biodiversity Bioprospecting and Development,OMICS Publishing Group,23760214 +Journal of Biodiversity Management & Forestry,OMICS Publishing Group,23274417 +Journal of Bioeconomics,Springer-Verlag,13876996|15736989 +Journal of Bioelectricity,Informa UK (Taylor & Francis),0730823X| +Journal of Bioenergetics,Springer-Verlag,04495705| +Journal of Bioenergetics and Biomembranes,Springer-Verlag,0145479X|15736881 +Journal of bioenergy and Food Science,Instituto Federal do Amapa,23592710 +Journal of Bioengineering and Biomedical Sciences,OMICS Publishing Group,21559538 +Journal of Bioequivalence & Bioavailability,OMICS Publishing Group,9750851 +Journal of Bioethical Inquiry,Springer-Verlag,11767529|18724353 +Journal of Biofertilizers & Biopesticides,OMICS Publishing Group,21556202 +Journal of Biofuels,Diva Enterprises Private Limited,09763015|09764763 +Journal of Biofuels and Bioenergy,Diva Enterprises Private Limited,2454860X|24548618 +Journal of Biogeography,Wiley Blackwell (Blackwell Publishing),03050270|13652699 +Journal of Bioinformatics and Computational Biology,World Scientific ,02197200|17576334 +Journal of Bioinformatics and Diabetes,Open Access Pub,23749431 +Journal of Bioinformatics and Intelligent Control,American Scientific Publishers,23267496| +JOURNAL OF BIOINFORMATICS AND PROTEOMICS REVIEW,Ommega Online Publishers,23810793|23810793 +Journal of Bioinformatics and Sequence Analysis,Academic Journals,21412464 +Journal of Biological and Scientific Opinion,Moksha Publishing House,23216328 +Journal of Biological Chemistry,American Society for Biochemistry and Molecular Biology,00219258|1083351X +Journal of Biological Control,Society of Biocontrol Advancement,0971930X|22307281 +Journal of Biological Dynamics,Informa UK (Taylor & Francis),17513758|17513766 +Journal of Biological Education,Informa UK (Taylor & Francis),00219266|21576009 +Journal of Biological Engineering,Springer (Biomed Central Ltd.),17541611|17541611 +Journal of Biological Macromolecules,Japan Science Society of Biological Macromolecules,13472194|21873240 +Journal of Biological Methods,Journal of Biological Methods,23269901 +Journal of Biological Physics,Springer-Verlag,00920606|15730689 +Journal of Biological Physics and Chemistry,Collegium Basilea,15120856| +Journal of Biological Research - Bollettino della Società Italiana di Biologia Sperimentale,PAGEPress Publications,18268838|22840230 +Journal of Biological Research-Thessaloniki,Springer (Biomed Central Ltd.),22415793|22415793 +Journal of Biological Rhythms,SAGE Publications,07487304|15524531 +Journal of Biological Sciences,Science Alert,17273048|18125719 +Journal of Biological Standardization,Elsevier ,00921157| +Journal of Biological System,World Scientific ,02183390| +Journal of Biological Systems,World Scientific ,02183390|02183390 +Journal of Biologically Active Products from Nature,Informa UK (Taylor & Francis),22311866|22311874 +Journal of Biology,Springer (Biomed Central Ltd.),14754924| +Journal of Biology and Life Science,"""Macrothink Institute, Inc.""",21576076 +Journal of Biology and Today s World,Lexis Publisher,23223308 +Journal of Bioluminescence and Chemiluminescence,Wiley Blackwell (John Wiley & Sons),08843996|10991271 +Journal of Biomarkers,Hindawi Publishing Corporation,20908660|20907699 +Journal of Biomass to Biofuel,Avestia Publishing,23685964 +Journal of Biomaterials and Nanobiotechnology,"""Scientific Research Publishing, Inc.""",21587027|21587043 +Journal of Biomaterials and Tissue Engineering,American Scientific Publishers,21579083|21579091 +Journal of Biomaterials Applications,SAGE Publications,08853282|15308022 +Journal of Biomaterials Science Polymer Edition,Informa UK (Taylor & Francis),09205063|15685624 +Journal of Biomechanical Engineering,ASME International ,01480731| +Journal of Biomechanical Science and Engineering,The Japan Society of Mechanical Engineers,18809863 +Journal of Biomechanics,Elsevier ,00219290| +Journal of Biomedical and Bioengineering,Bioinfo Publications,09768084|09768092 +Journal of Biomedical and Clinical Research,Walter de Gruyter GmbH,13139053 +Journal of Biomedical Discovery and Collaboration,University of Illinois Libraries,17475333|17475333 +Journal of Biomedical Education,Hindawi Publishing Corporation,23145021|2314503X +Journal of Biomedical Engineering,Elsevier ,01415425| +Journal of Biomedical Engineering and Informatics,Sciedu Press,23779381|2377939X +Journal of Biomedical Engineering and Medical Imaging,Scholar Publishing,20551266 +Journal of Biomedical Engineering Research,The Korea Society of Medical and Biological Engineering,12290807| +Journal of Biomedical Graphics and Computing,Sciedu Press,19254008|19254016 +Journal of Biomedical Informatics,Elsevier ,15320464|15320480 +Journal of Biomedical Investigation,African Journals Online ,15970043 +Journal of Biomedical Materials Research,Wiley Blackwell (John Wiley & Sons),00219304|10974636 +Journal of Biomedical Materials Research Part A,Wiley Blackwell (John Wiley & Sons),15493296|15524965 +Journal of Biomedical Materials Research Part B Applied Biomaterials,Wiley Blackwell (John Wiley & Sons),15524973|15524981 +Journal of Biomedical Nanotechnology,American Scientific Publishers,15507033|00000000 +Journal of Biomedical Optics,SPIE - International Society for Optical Engineering,10833668|15602281 +Journal of Biomedical Photonics & Engineering,Samara State Aerospace University,24112844 +Journal of Biomedical Research,Journal of Biomedical Research,16748301| +Journal of Biomedical Research,Research Institute of Veterinary Medicine,19767447|22877363 +Journal of Biomedical Science,Springer (Biomed Central Ltd.),10217770|14230127 +Journal of Biomedical Science and Engineering,"""Scientific Research Publishing, Inc.""",19376871|1937688X +Journal of Biomedical Sciences,Nepal Journals Online,23825545 +Journal of Biomedical Sciencies,Internet Medical Publishing,2254609X +Journal of Biomedical Semantics,Springer (Biomed Central Ltd.),20411480|20411480 +Journal of Biomedical Technologies,Petrozavodsk State University,23123672 +Journal of Biomedical Technology and Research,Elyns Group LLC,23783400 +Journal of Biomedicine and Biotechnology,Hindawi Publishing Corporation,11107243|11107251 +Journal of Biometrics,Bioinfo Publications,22296689|22296697 +Journal of Biometrics & Biostatistics,OMICS Publishing Group,21556180 +Journal of Biomimetics Biomaterials and Biomedical Engineering,Trans Tech Publications,22969845 +Journal of Biomimetics Biomaterials and Tissue Engineering,Trans Tech Publications,1662100X +Journal of Biomolecular NMR,Springer-Verlag,09252738|15735001 +Journal of Biomolecular Research & Therapeutics,OMICS Publishing Group,21677956 +Journal of Biomolecular Screening,SAGE Publications,10870571|1552454X +Journal of Biomolecular Structure and Dynamics,Informa UK (Taylor & Francis),07391102|15380254 +Journal of Biomolecular Techniques JBT,Association of Biomolecular Resource Facilities,15240215|19434731 +Journal of Biomusical Engineering,OMICS Publishing Group,20902700|20902719 +Journal of Bionanoscience,American Scientific Publishers,15577910|15577929 +Journal of Bionic Engineering,Elsevier ,16726529| +Journal of Biopharmaceutical Statistics,Informa UK (Taylor & Francis),10543406|15205711 +Journal of Biophotonics,Wiley Blackwell (John Wiley & Sons),1864063X|18640648 +Journal of Biophysical Chemistry,"""Scientific Research Publishing, Inc.""",2153036X|21530378 +Journal of Biophysics,Hindawi Publishing Corporation,16878000|16878019 +Journal of Biophysics and Structural Biology,Academic Journals,21412200 +Journal of Bioprocess Engineering and Biorefinery,American Scientific Publishers,21685134|21685142 +Journal of Bioprocessing & Biotechniques,OMICS Publishing Group,21559821 +Journal of Bioprocessing and Chemical Engineering,ScienceQ Publishing Group,23483768 +Journal of Bioremediation & Biodegradation,OMICS Publishing Group,21556199 +Journal of Biorepository Science for Applied Medicine,Dove Medical Press,22531785 +Journal of Biorheology,Japanese Society of Biorheology,18670466|18670474 +Journal of Biosafety & Health Education,OMICS Publishing Group,23320893 +Journal of Bioscience and Agriculture Research,Journal BiNET,23127945 +Journal of Bioscience and Bioengineering,Elsevier ,13891723|13474421 +Journal of Biosciences,Springer-Verlag,02505991|09737138 +Journal of Biosciences and Medicines,"""Scientific Research Publishing, Inc.""",23275081|2327509X +Journal of Biosecurity Biosafety and Biodefense Law,Walter de Gruyter GmbH,2194590X|21543186 +Journal of Biosensors & Bioelectronics,OMICS Publishing Group,21556210 +Journal of Biosocial Science,Cambridge University Press,00219320|14697599 +Journal of Biostatistics and Biometric Applications​,"""Annex Publishers, LLC""",2455765X +Journal of Biosystems Engineering,Korean Society for Agricultural Machinery,17381266| +Journal of Biotechnology,Elsevier ,01681656| +Journal of Biotechnology & Biomaterials,OMICS Publishing Group,2155952X +Journal of Biotechnology Letters,Bioinfo Publications,09767045|09767053 +Journal of Bioterrorism & Biodefense,OMICS Publishing Group,21572526 +Journal of Bisexuality,Informa UK (Taylor & Francis),15299716|15299724 +Journal of Black Psychology,SAGE Publications,00957984|00000000 +Journal of Black Sexuality and Relationships,Muse - Johns Hopkins University Press,23767510 +Journal of Black Sexuality and Relationships,Muse - Johns Hopkins University Press,23767510 +Journal of Black Studies,SAGE Publications,00219347|00000000 +Journal of Blindness Innovation and Research,The National Federation of the Blind,21552894 +Journal of Blood & Lymph,OMICS Publishing Group,21657831 +Journal of Blood Disorders & Transfusion,OMICS Publishing Group,21559864|21559864 +Journal of Blood Medicine,Dove Medical Press,11792736 +Journal of Blood Transfusion,Hindawi Publishing Corporation,20909187|20909195 +Journal of Bodywork and Movement Therapies,Elsevier ,13608592| +Journal of Bone and Joint Surgery - British Volume,British Editorial Society of Bone and Joint Surgery,0301620X|20445377 +Journal of Bone and Mineral Metabolism,Springer-Verlag,09148779|14355604 +Journal of Bone and Mineral Research,Wiley Blackwell (John Wiley & Sons),08840431|15234681 +Journal of Bone Biology and Osteoporosis,Gratis Open Access Publishers LLC,24704539 +Journal of Bone Marrow Research,OMICS Publishing Group,23298820 +Journal of Bone Metabolism,The Korean Society of Bone Metabolism (KAMJE),22876375|22877029 +Journal of Bone Oncology,Elsevier ,22121374| +Journal of Book of Mormon Studies,Neal A. Maxwell Institute for Religious Scholarship,23744766|23744774 +Journal of Borderlands Studies,Informa UK (Taylor & Francis),08865655|21591229 +Journal of Botanical Research,Bioinfo Publications,09769889|09769897 +Journal of Botany,Hindawi Publishing Corporation,20900120|20900139 +Journal of Brachial Plexus and Peripheral Nerve Injury,Thieme Publishing Group,17497221|17497221 +Journal of Brain Sciences,Pak Publishing Group,24123463|24108774 +Journal of Brand Management,Nature Publishing Group - Macmillan Publishers,1350231X|14791803 +Journal of Breast Cancer,Korean Breast Cancer Society (KAMJE),17386756|20929900 +Journal of Breast Disease,Korean Breast Cancer Society,22885560 +Journal of Breast Health,AVES Publishing Co.,21491976|21491976 +Journal of Breath Research,IOP Publishing,17527155|17527163 +Journal of Breath Research,IOP Publishing,17527155|17527163 +Journal of Brewing and Distilling,Academic Journals,21412197 +Journal of Bridge Engineering,American Society of Civil Engineers,10840702|19435592 +Journal of British and Irish Innovative Poetry,Open Library of Humanities,1758972X +Journal of British Cinema and Television,Edinburgh University Press,17434521|17551714 +Journal of British Studies,Cambridge University Press,00219371|15456986 +Journal of Broadcast Engineering,The Korean Institute of Broadcast and Media Engineers,12267953| +Journal of Broadcasting,Informa UK (Taylor & Francis),0021938X| +Journal of Broadcasting & Electronic Media,Informa UK (Taylor & Francis),08838151|15506878 +Journal of Bronchology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10708030|15367959 +Journal of Bronchology & Interventional Pulmonology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,19446586| +Journal of Bryology,Maney Publishing,03736687|00000000 +Journal of Buffalo Science,Lifescience Global,1927520X +Journal of Building and Land Development,African Journals Online ,8560501 +Journal of Building Appraisal,Nature Publishing Group - Macmillan Publishers,17428262|17449545 +Journal of Building Construction and Planning Research,"""Scientific Research Publishing, Inc.""",23284889|23284897 +Journal of Building Engineering,Elsevier ,23527102| +Journal of Building Performance Simulation,Informa UK (Taylor & Francis),19401493|19401507 +Journal of Building Physics,SAGE Publications,17442591|17442583 +Journal of Burma Studies,Muse - Johns Hopkins University Press,2010314X +Journal of Burn Care & Rehabilitation,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,02738481| +Journal of Burn Care & Research,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,1559047X| +Journal of Business,LAR Center Press,23804041|2380405X +Journal of Business & Economics Research (JBER),Clute Institute,15424448|21578893 +Journal of Business & Finance Librarianship,Informa UK (Taylor & Francis),08963568|15470644 +Journal of Business & Financial Affairs,OMICS Publishing Group,21670234 +Journal of Business & Hotel Management,OMICS Publishing Group,23249129 +Journal of Business & Management,Science and Education Centre of North America,22911995|22912002 +Journal of Business Administration Research,Sciedu Press,19279507|19279515 +Journal of Business and Administrative Studies,African Journals Online ,20773420|20773420 +Journal of Business and Banking,STIE Perbanas Surabaya,20887841|23033460 +Journal of Business and Economic Statistics,Informa UK (American Statistical Association),07350015|15372707 +Journal of Business and Economics,Academic Star Publishing Company,21557950| +Journal of Business and Industrial Marketing,Emerald (MCB UP ),08858624| +Journal of Business and Management,"""School of Business and Management, Institut Teknologui Bandung""",22523898|22523308 +Journal of Business and Management Research,Nepal Journals Online,24679267 +Journal of Business and Management Sciences,"""Science and Education Publishing Co., Ltd.""",23334495| +Journal of Business and Psychology,Springer-Verlag,08893268|1573353X +Journal of Business and Technical Communication,SAGE Publications,10506519|15524574 +Journal of Business and Technology (Dhaka),Bangladesh Journals Online,1992271X|24088609 +Journal of Business Case Studies (JBCS),Clute Institute,15553353|21578826 +Journal of Business Communication,SAGE Publications,00219436|00000000 +Journal of Business Cycle Measurement and Analysis,Organisation for Economic Co-Operation and Development ,17293618|17293626 +Journal of Business Economics,Springer-Verlag,00442372|18618928 +Journal of Business Economics and Management,Vilnius Gediminas Technical University,16111699|20294433 +Journal of Business Ethics,Springer-Verlag,01674544|15730697 +Journal of Business Ethics Education,Philosophy Documentation Center,16495195| +Journal of Business Excellence,Bioinfo Publications,09767711|0976772X +Journal of Business Finance & Accounting,Wiley Blackwell (Blackwell Publishing),0306686X|14685957 +Journal of Business Law and Ethics,American Research Institute for Policy Development,23724862|23724870 +Journal of Business Logistics,Wiley Blackwell (John Wiley & Sons),07353766| +Journal of Business Management & Economics,Innovative Journal,23475471 +Journal of business market management,Springer-Verlag,18640753|18640761 +Journal of Business of the University of Chicago,The University of Chicago Press,07409168| +Journal of Business Research,Elsevier ,01482963| +Journal of Business Research - Turk,Journal of Business Research - Turk,13090712| +Journal of Business Strategy,Emerald (MCB UP ),02756668| +Journal of Business Systems Governance & Ethics,Victoria University,18334318 +Journal of Business Valuation and Economic Loss Analysis,Walter de Gruyter GmbH,21945861|19329156 +Journal of Business Venturing,Elsevier ,08839026| +Journal of Business Venturing Insights,Elsevier ,23526734| +Journal of Business-to-Business Marketing,Informa UK (Taylor & Francis),1051712X|15470628 +Journal of Cachexia Sarcopenia and Muscle,Wiley Blackwell (John Wiley & Sons),21905991|21906009 +Journal of Caffeine Research,Mary Ann Liebert,21565783|21565368 +Journal of Calculus of Variations,Hindawi Publishing Corporation,23146613 +Journal of Camel Practice and Research,Diva Enterprises Private Limited,09716777|22778934 +Journal of Canadian Art History / Annales d histoire de l art Canadien,JSTOR,3154297 +Journal of Canadian Petroleum Technology,Society of Petroleum Engineers,00219487| +Journal of Canadian Studies,Muse - Johns Hopkins University Press,19110251 +Journal of Cancer,Ivyspring International Publisher,18379664| +Journal of Cancer and Tumor International,Sciencedomain International,24547360 +Journal of Cancer Education,Springer-Verlag,08858195|15430154 +Journal of Cancer Epidemiology,Hindawi Publishing Corporation,16878558|16878566 +Journal of Cancer Epidemiology and Prevention,Informa UK (Taylor & Francis),14766655|00000000 +Journal Of Cancer Integrative Medicine,"""Decker, Inc.""",15446307 +Journal of Cancer Metastasis and Treatment,OAE Publishing,23944722|24542857 +Journal of Cancer Nursing,Elsevier ,13649825| +Journal of Cancer Pain & Symptom Palliation,Informa UK (Taylor & Francis),15437671|1543768X +Journal of Cancer Policy,Elsevier ,22135383| +Journal of Cancer Prevention,Korean Society of Cancer Prevention,22883649|22883657 +Journal of Cancer Prevention & Current Research,MedCrave Group,2373633X|2373633X +Journal of Cancer Research,Hindawi Publishing Corporation,23567201|23146915 +Journal of Cancer Research & Therapy,Noble Research Publishers,20524994 +Journal of Cancer Research and Clinical Oncology,Springer-Verlag,01715216|14321335 +Journal of Cancer Research and Experimental Oncology,Academic Journals,21412243 +Journal of Cancer Research and Practice,Elsevier ,23113006| +Journal of Cancer Research and Therapeutic Oncology,JScholar,23322403| +Journal of Cancer Research and Therapeutics,Medknow Publications,09731482| +Journal of Cancer Research and Treatment,"""Science and Education Publishing Co., Ltd.""",23741996| +Journal of Cancer Research Updates,Lifescience Global,19292279 +Journal of Cancer Science & Therapy,OMICS Publishing Group,19485956 +Journal of Cancer Science and Clinical Oncology,"""Annex Publishers, LLC""",23946520 +Journal of Cancer Sciences,Avens Publishing Group,23779292 +Journal of Cancer Stem Cell Research,Trends Ahead Scientific Journals,23295872| +Journal of Cancer Survivorship,Springer-Verlag,19322259|19322267 +journal of cancer therapeutics and research,Herbert Publications,20497962 +Journal of Cancer Therapy,"""Scientific Research Publishing, Inc.""",21511934|21511942 +Journal of Cancer Treatment and Research,Science Publishing Group,23767782| +Journal of Cannabis Therapeutics,Informa UK (Taylor & Francis),15299775|15299783 +Journal of Carbohydrate Chemistry,Informa UK (Taylor & Francis),07328303|15322327 +Journal of Carcinogenesis,Medknow Publications,09746773|14773163 +Journal of Carcinogenesis & Mutagenesis,OMICS Publishing Group,21572518 +Journal of Cardiac Failure,Elsevier ,10719164| +Journal of Cardiac Surgery,Wiley Blackwell (Blackwell Publishing),08860440|15408191 +Journal of Cardio-Vascular-Thoracic Anaesthesia and Intensive Care Society,Logos Medical Publication,13055550| +Journal of Cardiobiology,Avens Publishing Group,23323671 +Journal of Cardiology,Elsevier ,09145087| +Journal of Cardiology & Current Research,MedCrave Group,23734396 +Journal of Cardiology and Therapeutics,Synergy Publishers,2311052X +Journal of Cardiology and Therapy,ACT Publishing Group,23096861| +Journal of Cardiology Cases,Elsevier ,18785409| +Journal of Cardiopulmonary Rehabilitation,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,08839212| +Journal of Cardiopulmonary Rehabilitation and Prevention,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,19327501| +Journal of Cardiothoracic and Vascular Anesthesia,Elsevier ,10530770| +Journal of Cardiothoracic Anesthesia,Elsevier ,08886296| +Journal of Cardiothoracic Surgery,Springer (Biomed Central Ltd.),17498090|17498090 +Journal of Cardiothoracic-Renal Research,Elsevier ,15740668| +Journal of Cardiovascular and Thoracic Research,International Society for Phytocosmetic Sciences,20085117|20086830 +Journal of Cardiovascular Computed Tomography,Elsevier ,19345925| +Journal of Cardiovascular Development and Disease,MDPI AG,23083425 +Journal of Cardiovascular Disease,Research Publisher Inc.,23304596|2330460X +Journal of Cardiovascular Disease Research,EManuscript Services,09753583|09762833 +Journal of Cardiovascular Diseases & Diagnosis,OMICS Publishing Group,23299517|23299517 +Journal of Cardiovascular Echography,Medknow Publications,22114122| +Journal of Cardiovascular Electrophysiology,Wiley Blackwell (Blackwell Publishing),10453873|15408167 +Journal Of Cardiovascular Emergencies,Walter de Gruyter GmbH,24575518 +Journal of Cardiovascular Magnetic Resonance,Springer (Biomed Central Ltd.),10976647|1532429X +Journal of Cardiovascular Medicine,Ovid Technologies (Wolters Kluwer) - Italian Federation of Cardiology,15582027| +Journal of Cardiovascular Medicine and Cardiology,Peertechz.com,24552976 +Journal of Cardiovascular Pharmacology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,01602446| +Journal of Cardiovascular Pharmacology and Therapeutics,SAGE Publications,10742484|19404034 +Journal of Cardiovascular Risk,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,13506277| +Journal of Cardiovascular Translational Research,Springer-Verlag,19375387|19375395 +Journal of Cardiovascular Ultrasound,Korean Society of Echocardiography (KAMJE),19754612|20059655 +Journal of Care Services Management,Maney Publishing,17501679|17501687 +Journal of Career Assessment,SAGE Publications,10690727|00000000 +Journal of Career Development,SAGE Publications,08948453|15733548 +Journal of Caring Sciences,International Society for Phytocosmetic Sciences,22519920 +Journal of Case Reports,Journal of Case Reports,22316809 +JOURNAL OF CASE REPORTS AND STUDIES,"""Annex Publishers, LLC""",23489820 +Journal of Case Reports in Medicine,Ashdin Publishing,20905343|20905351 +Journal of Cases in Educational Leadership,SAGE Publications,15554589| +Journal of Cases on Information Technology,IGI Global,15487717|15487725 +Journal of Catalysis,Elsevier ,00219517|10902694 +Journal of Catalysts,Hindawi Publishing Corporation,23145102|23145110 +Journal of Cataract & Refractive Surgery,Elsevier ,08863350| +Journal of Catholic Education,Loyola Marymount University,23738170 +Journal of Catholic Social Thought,Philosophy Documentation Center,15480712| +Journal of Causal Inference,Walter de Gruyter GmbH,21933677|21933685 +Journal of Cave and Karst Studies,National Speleological Society,10906924| +Journal of Cell Adhesion,Hindawi Publishing Corporation,2356721X|23148411 +Journal of Cell and Animal Biology,Academic Journals,19960867 +Journal of Cell Biology and Genetics,Academic Journals,21416516 +Journal of Cell Communication and Signaling,Springer-Verlag,18739601|1873961X +Journal of Cell Death,"""Libertas Academica, Ltd.""",11790660 +Journal of Cell Science,The Company of Biologists,00219533|14779137 +Journal of Cell Science & Therapy,OMICS Publishing Group,21577013 +Journal of Cells,Pak Publishing Group,24142476 +Journal of Cellular and Comparative Physiology,Wiley Blackwell (John Wiley & Sons),00959898|15530809 +Journal of Cellular and Molecular Medicine,Wiley Blackwell (Blackwell Publishing),15821838|15824934 +Journal of Cellular Biochemistry,Wiley Blackwell (John Wiley & Sons),07302312|10974644 +Journal of Cellular Biotechnology,IOS Press,23523689|23523697 +Journal of Cellular Immunotherapy,Elsevier ,23521775| +Journal of Cellular Physiology,Wiley Blackwell (John Wiley & Sons),00219541|10974652 +Journal of Cellular Plastics,SAGE Publications,0021955X|00000000 +Journal of Central Banking Theory and Practice,De Gruyter Open Sp. z o.o. ,23369205 +Journal of Central European Agriculture,Journal of Central European Agriculture,13329049 +Journal of Central Nervous System Disease,"""Libertas Academica, Ltd.""",11795735 +Journal of Central South University,Springer-Verlag,20952899|22275223 +Journal of Central South University of Technology,Springer-Verlag,10059784|19930666 +Journal of CENTRUM Cathedra (JCC) The Business and Economics Research Journal,Centrum Catolica,18516599| +Journal of Ceramics,Hindawi (International Scholarly Research Network),20908628|20908644 +Journal of Cereal Science,Elsevier ,07335210|10959963 +Journal of Cereals and Oilseeds,Academic Journals,21416591 +Journal of Cerebral Blood Flow & Metabolism,SAGE Publications,0271678X|15597016 +Journal of Cerebrovascular and Endovascular Neurosurgery,Korean Society of Cerebrovascular Surgeons/Korean Society of Endovascular Surgery (KAMJE),22348565|22343318 +Journal of Challenges,Pak Publishing Group,24123471|24106569 +Journal of Change Management,Informa UK (Taylor & Francis),14697017|14791811 +Journal of Chaos,Hindawi Publishing Corporation,23567228|23146605 +Journal of Chemical & Engineering Data,American Chemical Society,00219568|15205134 +Journal of Chemical and Biological Interfaces,American Scientific Publishers,23301562| +Journal of Chemical and Process Engineering,JScholar,23771755| +Journal of Chemical Biology,Springer-Verlag,18646158|18646166 +Journal of Chemical Crystallography,Springer-Verlag,10741542|15728854 +Journal of Chemical Dependency Treatment,Informa UK (Taylor & Francis),08854734|19317794 +Journal of Chemical Documentation,American Chemical Society,00219576|15415732 +Journal of Chemical Ecology,Springer-Verlag,00980331|15731561 +Journal of Chemical Education,American Chemical Society,00219584|19381328 +Journal of Chemical Engineering,Bangladesh Journals Online,22217436|24088617 +Journal of Chemical Engineering & Process Technology,OMICS Publishing Group,21577048 +Journal of Chemical Engineering and Chemistry,Universidade Federal de Vicosa,24469416|24469416 +Journal of Chemical Engineering and Materials Science,Academic Journals,21416605 +Journal of Chemical Engineering Research Updates,Avanti Publishers,2409983X +Journal of Chemical Health and Safety,Elsevier ,18715532| +Journal of Chemical Information and Computer Sciences,American Chemical Society,00952338| +Journal of Chemical Information and Modeling,American Chemical Society,15499596|1549960X +Journal of Chemical Neuroanatomy,Elsevier ,08910618| +Journal of Chemical Research,Science Reviews 2000 LTD.,17475198| +Journal of Chemical Research (Miniprint),Science Reviews 2000 LTD.,03082350| +Journal of Chemical Research Synopses,Science Reviews 2000 LTD.,03082342|13645560 +Journal of Chemical Sciences,Springer-Verlag,02534134|09737103 +Journal of Chemical Software,"""Society of Computer Chemistry, Japan""",09180761|18838359 +Journal of Chemical Technology & Biotechnology,Wiley Blackwell (John Wiley & Sons),02682575|10974660 +Journal of Chemical Technology & Biotechnology,Wiley Blackwell (John Wiley & Sons),02682575|10974660 +Journal of Chemical Technology and Biotechnology,Wiley Blackwell (John Wiley & Sons),01420356|1935181X +Journal of Chemical Technology and Biotechnology Biotechnology,Wiley Blackwell (John Wiley & Sons),02643421|19351828 +Journal of Chemical Technology and Biotechnology Chemical Technology,Wiley Blackwell (John Wiley & Sons),02643413|19351836 +Journal of Chemical Theory and Computation,American Chemical Society,15499618|15499626 +Journal of Cheminformatics,Springer (Biomed Central Ltd.),17582946|17582946 +Journal of Chemistry,Hindawi Publishing Corporation,20909063|20909071 +Journal of Chemistry and Applications,Avens Publishing Group,23805021 +Journal of Chemistry and Biochemistry,American Research Institute for Policy Development,23742712|23742720 +Journal of Chemistry and Chemical Engineering,David Publishing Company,19347375|19347375 +Journal of Chemistry Environmental Sciences and its Applications,Chitkara University Publications,23497564|23497769 +Journal of Chemometrics,Wiley Blackwell (John Wiley & Sons),08869383|1099128X +Journal of Chemotherapy,Informa UK (Taylor & Francis),1120009X|19739478 +Journal of Chest Diseases and Critical Care,Health Sciences Researches Society,21487421 +Journal of Child & Adolescent Substance Abuse,Informa UK (Taylor & Francis),1067828X|15470652 +Journal of Child & Adolescent Trauma,Springer-Verlag,19361521|1936153X +Journal of Child and Adolescent Behaviour,OMICS Publishing Group,23754494 +Journal of Child and Adolescent Counseling,Informa UK (Taylor & Francis),23727810|23727829 +Journal of Child and Adolescent Group Therapy,Springer-Verlag,10530800|15733467 +Journal of Child and Adolescent Mental Health,Informa UK (National Inquiry Services Center),17280583|17280591 +Journal of Child and Adolescent Psychiatric Nursing,Wiley Blackwell (Blackwell Publishing),10736077|17446171 +Journal of Child and Adolescent Psychopharmacology,Mary Ann Liebert,10445463|00000000 +Journal of Child and Family Studies,Springer-Verlag,10621024|15732843 +Journal of Child Custody,Informa UK (Taylor & Francis),15379418|1537940X +Journal of Child Health Care,SAGE Publications,13674935|00000000 +Journal of Child Language,Cambridge University Press,03050009|14697602 +Journal of Child Neurology,SAGE Publications,08830738|08830738 +Journal of Child Psychology and Psychiatry,Wiley Blackwell (Blackwell Publishing),00219630|14697610 +Journal of Child Psychotherapy,Informa UK (Taylor & Francis),0075417X|14699370 +Journal of Child Sexual Abuse,Informa UK (Taylor & Francis),10538712|15470679 +Journal of Children and Media,Informa UK (Taylor & Francis),17482798|17482801 +Journal of Children and Poverty,Informa UK (Taylor & Francis),10796126|14699389 +Journal of Children in Contemporary Society,"""Informa UK (Haworth Press, Inc.,)""",02766256| +Journal of Children s and Young People s Nursing,Mark Allen Group,17531594| +Journal of Children s Health,Informa UK (Informa Healthcare),15417069|15417077 +Journal of Children s Orthopaedics,Springer-Verlag,18632521|18632548 +Journal of Children s Services,Emerald - Pier Professional,17466660|20428677 +Journal of China Tourism Research,Informa UK (Taylor & Francis),19388160|19388179 +Journal of China University of Geosciences,Elsevier ,10020705| +Journal of China University of Mining and Technology,Elsevier ,10061266| +Journal of Chinese Cinemas,Informa UK (Taylor & Francis),17508061|1750807X +Journal of Chinese Economic and Business Studies,Informa UK (Taylor & Francis),14765284|14765292 +Journal of Chinese Economic and Foreign Trade Studies,Emerald (MCB UP ),17544408| +Journal of Chinese Entrepreneurship,Emerald (MCB UP ),17561396| +Journal of Chinese Human Resource Management,Emerald (MCB UP ),20408005| +Journal of Chinese Humanities,Brill Academic Publishers,23521333|23521341 +Journal of Chinese Integrative Medicine,Journal of Chinese Integrative Medicine Press,16721977| +Journal of Chinese Language and Literature,Journal of Chinese Language and Literature,1225083X| +Journal of Chinese Linguistics,Muse - Johns Hopkins University Press,24113484 +Journal of Chinese Literature and Culture,Duke University Press,23290048|23290056 +Journal of Chinese Management,Springer (Biomed Central Ltd.),21959897|21959897 +Journal of Chinese Military History,Brill Academic Publishers,22127445|22127453 +Journal of Chinese Overseas,Brill Academic Publishers,17930391|17932548 +Journal of Chinese Pharmaceutical Sciences,Journal of Chinese Pharmaceutical Sciences,10031057|10031057 +Journal of Chinese Philosophy,Wiley Blackwell (Blackwell Publishing),03018121|15406253 +Journal of Chinese Political Science,Springer-Verlag,10806954|18746357 +Journal of Chinese Religions,Maney Publishing,0737769X|20508999 +Journal of Chiropractic Education,Brighthall,10425055|2374250X +Journal of Chiropractic Humanities,Elsevier ,15563499| +Journal of Chiropractic Medicine,Elsevier ,08993467| +Journal of Chiropractic Medicine,Elsevier ,15563707| +Journal of Chitin and Chitosan,Journal of Chitin and Chitosan,12294160| +Journal of Chitin and Chitosan Science,American Scientific Publishers,23287519| +Journal of Chittagong Medical College Teachers Association,Bangladesh Journals Online,16091558| +Journal of Chitwan Medical College,Nepal Journals Online,20912412|20912889 +Journal of Choice Modelling,Elsevier ,17555345| +Journal of Christian Education,SAGE Publications,00219657| +Journal of Christian Education in Korea,The Korean Society of Christian Religious Education,1229781X| +Journal of Christian Nursing,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,07432550| +Journal of Chromatographic Science,Oxford University Press,00219665|1945239X +Journal of Chromatography & Separation Techniques,OMICS Publishing Group,21577064 +Journal of Chromatography A,Elsevier ,00219673| +Journal of Chromatography B,Elsevier ,15700232| +Journal of Chromatography B Biomedical Sciences and Applications,Elsevier ,03784347| +Journal of Chronic Diseases,Elsevier ,00219681| +Journal of Chronic Fatigue Syndrome,Informa UK (Taylor & Francis),10573321|15470660 +Journal of Church and State,Oxford University Press,0021969X|20404867 +Journal of Circadian Rhythms,"""Ubiquity Press, Ltd.""",17403391|17403391 +Journal of Circuits System and Computers,World Scientific ,02181266| +Journal of Circuits Systems and Computers,World Scientific ,02181266|17936454 +Journal of Circulating Biomarkers,InTech,18494544 +Journal of City Culture and Architecture,Macro World Publishing,21481938| +Journal of Civil & Environmental Engineering,OMICS Publishing Group,2165784X +Journal of Civil & Legal Sciences,OMICS Publishing Group,21690170 +Journal of Civil and Human Rights,University of Illinois Press,23784245|23784253 +Journal of Civil Engineering and Architecture,David Publishing Company,19347359|19347367 +Journal of Civil Engineering and Construction Technology,Academic Journals,21412634 +Journal of Civil Engineering and Environmental Sciences,Peertechz.com,2455488X +Journal of Civil Engineering and Management,Vilnius Gediminas Technical University,13923730|18223605 +Journal of Civil Engineering and Science,The World Academic Publishing,22274634|22274626 +Journal of Civil Engineering Environment and Architecture,Rzeszow University of Technology,23005130|23008903 +Journal of Civil Engineering JKUAT,African Journals Online ,15626121 +Journal of Civil Engineering Research,Scientific and Academic Publishing,21632316| +Journal of Civil Engineering Research and Practice,African Journals Online ,17295769 +Journal of Civil Society,Informa UK (Taylor & Francis),17448689|17448697 +Journal of Civil Structural Health Monitoring,Springer-Verlag,21905452|21905479 +Journal of Classic and English Renaissance Literature,The Classic and English Renaissance Literature Association of Korea,12268798| +Journal of Classical Sociology,SAGE Publications,1468795X|00000000 +Journal of Classics Teaching,Cambridge University Press,20586310 +Journal of Classification,Springer-Verlag,01764268|14321343 +Journal of Clean Energy Technologies,EJournal Publishing,1793821X|1793821X +Journal of Cleaner Production,Elsevier ,09596526| +Journal of Cleft Lip Palate and Craniofacial Anomalies,Medknow Publications,23482125| +Journal of Climate,American Meteorological Society,08948755|15200442 +Journal of Climate and Applied Meteorology,American Meteorological Society,07333021| +Journal of Climate Change,IOS Press,23957611|23957697 +Journal of Climate Change,IOS Press,23957611|23957697 +Journal of Climate Change Research,The Korean Society of Climate Change Research,20935919| +Journal of Climate Research,Konkuk University Climate Research Institute,19756151|22888772 +Journal of Climatology,Wiley Blackwell (John Wiley & Sons),01961748| +Journal of Climatology,Hindawi Publishing Corporation,23566361|23146214 +Journal of Climatology & Weather Forecasting,OMICS Publishing Group,23322594 +Journal of Clinical & Academic Ophthalmology,Thieme Publishing Group,23790539|23790555 +Journal of Clinical & Cellular Immunology,OMICS Publishing Group,21559899 +Journal of Clinical & Experimental Cardiology,OMICS Publishing Group,21559880 +Journal of Clinical & Experimental Dermatology Research,OMICS Publishing Group,21559554|21559554 +Journal of Clinical & Experimental Oncology,OMICS Publishing Group,23249110 +Journal of Clinical & Experimental Ophthalmology,OMICS Publishing Group,21559570|21559570 +Journal of Clinical & Experimental Pathology,OMICS Publishing Group,21610681 +Journal of Clinical & Medical Case Reports,Avens Publishing Group,23324120 +Journal of Clinical & Translational Endocrinology,Elsevier ,22146237| +Journal of Clinical & Experimental Research,ScopeMed International Medical Journal Managment and Indexing System,2320348X| +Journal of Clinical Activities Assignments & Handouts in Psychotherapy Practice,Informa UK (Taylor & Francis),15323285|15323293 +Journal of Clinical and Analytical Medicine,Journal of Clinical and Analytical Medicine,13090720|13092014 +Journal of Clinical and Anatomic Pathology,JScholar,23324864| +JOURNAL OF CLINICAL AND DIAGNOSTIC RESEARCH,JCDR Research and Publications,0973709X| +Journal of Clinical and Experimental Dentistry,"""Medicina Oral, S.L.""",19895488 +Journal of Clinical and Experimental Hematopathology,Japanese Society for Lymphoreticular Tissue Research,13464280|18809952 +Journal of Clinical and Experimental Hepatology,Elsevier ,09736883| +Journal of Clinical and Experimental Hypnosis,Informa UK (Taylor & Francis),0095988X| +Journal of Clinical and Experimental Investigations,Association of Health Investigations,13098578|13096621 +Journal of Clinical and Experimental Neuropsychology,Informa UK (Taylor & Francis),13803395|1744411X +Journal of Clinical and Experimental Neuroscience,Sciknow Publications,23318201 +Journal of Clinical and Experimental Research in Cardiology,"""Annex Publishers, LLC""",23946504 +Journal of Clinical and Investigative Dermatology,Avens Publishing Group,23731044 +Journal of Clinical and Laboratory Investigation Updates,Pharma Publisher,23109556 +Journal of Clinical and Translational Endocrinology Case Reports,Elsevier ,22146245| +Journal of Clinical and Translational Hepatology,Xia & He Publishing,22250719| +Journal of Clinical and Translational Research,Journal of Clinical and Translational Research,23826533|2424810X +Journal of Clinical Anesthesia,Elsevier ,09528180| +Journal of Clinical Anesthesia and Management ( ISSN 2470-9956 ),"""Sci Forschen, Inc.""",24709956 +Journal of Clinical Apheresis,Wiley Blackwell (John Wiley & Sons),07332459|10981101 +Journal of Clinical Biochemistry and Nutrition,The Society for Free Radical Research Japan,09120009|18805086 +Journal of Clinical Bioinformatics,Springer (Biomed Central Ltd.),20439113|20439113 +Journal of Clinical Case Reports,OMICS Publishing Group,21657920 +Journal of Clinical Child & Adolescent Psychology,Informa UK (Taylor & Francis),15374416|15374424 +Journal of Clinical Child Psychology,Informa UK (Taylor & Francis),0047228X| +Journal of Clinical Densitometry,Elsevier ,10946950|10946950 +Journal of Clinical Effectiveness,Emerald (MCB UP ),13615874| +Journal of Clinical Endocrinology & Metabolism,The Endocrine Society,0021972X|19457197 +Journal of Clinical Engineering,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,03638855| +Journal of Clinical Epidemiology,Elsevier ,08954356| +Journal of Clinical Forensic Medicine,Elsevier ,13531131| +Journal of Clinical Gastroenterology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,01920790| +Journal of Clinical Gerontology and Geriatrics,Elsevier ,22108335| +Journal of Clinical Geropsychology,Springer (Kluwer Academic Publishers),10799362| +Journal of Clinical Gynecology and Obstetrics,"""Elmer Press, Inc.""",19271271|1927128X +Journal of Clinical Hypertension,Wiley Blackwell (Blackwell Publishing),15246175|17517176 +Journal of Clinical Imaging Science,Medknow Publications,21567514| +Journal of Clinical Immunology,Springer-Verlag,02719142|15732592 +Journal of Clinical Immunology and Immunopathology Research,Academic Journals,21412219 +Journal of Clinical Investigation,American Society for Clinical Investigation,00219738|15588238 +Journal of Clinical Laboratory Analysis,Wiley Blackwell (John Wiley & Sons),08878013|10982825 +Journal of Clinical Laser Medicine & Surgery,Mary Ann Liebert,10445471|15578089 +Journal of Clinical Lipidology,Elsevier ,19332874| +Journal of Clinical Medicine,MDPI AG,20770383 +Journal of Clinical Medicine and Research,Academic Journals,21412235 +Journal of Clinical Medicine Research,"""Elmer Press, Inc.""",19183003|19183011 +Journal of Clinical Microbiology,American Society for Microbiology,00951137|1098660X +Journal of Clinical Monitoring and Computing,Springer-Verlag,07481977| +Journal of Clinical Monitoring and Computing,Springer-Verlag,13871307|15732614 +Journal of Clinical Movement Disorders,Springer (Biomed Central Ltd.),20547072|20547072 +Journal of Clinical Neonatology,Medknow Publications,22494847| +Journal of Clinical Neurology,Korean Neurological Association (KAMJE),17386586|20055013 +Journal of Clinical Neuromuscular Disease,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15220443| +Journal of Clinical Neurophysiology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,07360258| +Journal of Clinical Neuropsychology,Informa UK (Taylor & Francis),01650475| +Journal of Clinical Neuroscience,Elsevier ,09675868| +Journal of Clinical Nursing,Wiley Blackwell (Blackwell Publishing),09621067|13652702 +Journal of Clinical Nutrition,Korean Society for Parental and Enteral Nutrition,22890203|23837101 +Journal of Clinical Oncology,American Society of Clinical Oncology,0732183X|15277755 +Journal of Clinical Ophthalmology and Research,Medknow Publications,23203897| +Journal of Clinical Orthopaedics and Trauma,Elsevier ,09765662| +Journal of Clinical Pathology,BMJ,00219746|14724146 +Journal of Clinical Pathology and Forensic Medicine,Academic Journals,21412405 +Journal of Clinical Pediatric Dentistry,The Journal of Clinical Pediatric Dentistry,10534628| +Journal of Clinical Pediatric Nephrology,Indian Medico Journal,23199385|23202297 +Journal Of Clinical Periodontology,Wiley Blackwell (Blackwell Publishing),03036979|1600051X +Journal of Clinical Personalized Medicine,Hans Publishers,23343354|23343443 +Journal of Clinical Pharmacy and Therapeutics,Wiley Blackwell (Blackwell Publishing),02694727|13652710 +Journal of Clinical Psychology,Wiley Blackwell (John Wiley & Sons),00219762|10974679 +Journal of Clinical Psychology in Medical Settings,Springer-Verlag,10689583|15733572 +Journal of Clinical Psychopharmacology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,02710749| +Journal of Clinical Radiation Oncology,Noble Research Publishers,23978511 +Journal of Clinical Research & Bioethics,OMICS Publishing Group,21559627 +Journal of Clinical Research & Governance,Swedish Science Pioneers,20015682 +Journal of Clinical Research and Ophthalmology,Peertechz.com,24551414 +Journal of Clinical Research in Dermatology,Symbiosis Group,23781726|23781726 +Journal of Clinical Research in HIV AIDS and Prevention,Open Access Pub,23247339 +Journal of Clinical Research in Pediatric Endocrinology,Galenos Yayinevi,13085727|13085735 +Journal of Clinical Research Letters,Bioinfo Publications,09767061|0976707X +Journal of Clinical Sciences,Medknow Publications,24087408| +Journal of Clinical Sleep Medicine,American Academy of Sleep Medicine,15509389|15509397 +Journal of Clinical Sport Psychology,Human Kinetics,19329261| +Journal of Clinical Toxicology,OMICS Publishing Group,21610495 +Journal of Clinical Trials,OMICS Publishing Group,21670870 +Journal of Clinical Trials in Cardiology,Symbiosis Group,23746882|23746882 +Journal of Clinical Tuberculosis and Other Mycobacterial Diseases,Elsevier ,24055794| +Journal of Clinical Ultrasound,Wiley Blackwell (John Wiley & Sons),00912751|10970096 +Journal of Clinical Urology,SAGE Publications,20514158|20514166 +Journal of Clinical Virology,Elsevier ,13866532| +Journal of Cloud Computing,IBIMA Publishing,23266538 +Journal of Cloud Computing Advances Systems and Applications,Springer (Biomed Central Ltd.),2192113X|2192113X +Journal of Cluster Science,Springer-Verlag,10407278|15728862 +Journal of Co-operative Organization and Management,Elsevier ,2213297X| +Journal of CO2 Utilization,Elsevier ,22129820| +Journal of Coal Science and Engineering (China),Springer-Verlag,10069097|18666566 +Journal of Coastal Conservation,Springer-Verlag,14000350|18747841 +Journal of Coastal Development,OMICS Publishing Group,14105217 +Journal of Coastal Life Medicine,Asian Pacific Journal of Tropical Medicine Press,23095288|23096152 +Journal of Coastal Research,BioOne (Coastal Education and Research Foundation),07490208|15515036 +Journal of Coating Science and Technology,Lifescience Global,23693355 +Journal of Coatings,Hindawi Publishing Corporation,23567236|23146508 +Journal of Coatings Technology,Springer-Verlag,03618773| +Journal of Coatings Technology and Research,Springer-Verlag,15470091|19353804 +Journal of Cognition and Culture,Brill Academic Publishers,15677095|15685373 +Journal of Cognition and Development,Informa UK (Taylor & Francis),15248372|15327647 +Journal of Cognitive Education and Psychology,Springer Publishing Company,19458959| +Journal of Cognitive Engineering and Decision Making,SAGE Publications,15553434|00000000 +Journal of Cognitive Historiography,Equinox Publishing,20519672|20519680 +Journal of Cognitive Neuroscience,MIT Press,0898929X|15308898 +Journal of Cognitive Psychology,Informa UK (Taylor & Francis),20445911|2044592X +Journal of Cognitive Psychotherapy,Springer Publishing Company,08898391|00000000 +Journal of Cognitive Science,Institute for Cognitive Science,15982327| +Journal of Cognitive Science,"""Atlas Scienfitic Publishing, LP""",21589216 +Journal of Cognitive-Behavioral Psychotherapy and Research,ScopeMed International Medical Journal Managment and Indexing System,21469490| +Journal of Cold Regions Engineering,American Society of Civil Engineers,0887381X|19435495 +Journal of Cold War Studies,MIT Press,15203972|15313298 +Journal of Collective Negotiations (formerly Journal of Collective Negotiations in the Public Sector),Portico,21677816|21677824 +Journal of College & University Foodservice,"""Informa UK (Haworth Press, Inc.,)""",10538739| +Journal of College and Character,Informa UK (Taylor & Francis),2194587X|19401639 +Journal of College Counseling,Wiley Blackwell (John Wiley & Sons),10990399| +Journal of College of Medical Sciences-Nepal,Nepal Journals Online,20910657|20910673 +Journal of College of Medicine,African Journals Online ,11182601 +Journal of College Reading and Learning,Informa UK (Taylor & Francis),10790195|23327413 +Journal of College Science Teaching,National Science Teachers Association,0047231X| +Journal of College Student Development,Muse - Johns Hopkins University Press,15433382 +Journal of College Student Psychotherapy,Informa UK (Taylor & Francis),87568225|15404730 +Journal of College Student Retention Research Theory and Practice,SAGE Publications,15210251|15414167 +Journal of College Teaching & Learning (TLC),Clute Institute,15440389|2157894X +Journal of Colloid and Interface Science,Elsevier ,00219797|10957103 +Journal of Colloid Science,Elsevier ,00958522| +Journal of Colloid Science and Biotechnology,American Scientific Publishers,21649634|21649642 +Journal of Colonialism and Colonial History,Muse - Johns Hopkins University Press,15325768 +Journal of Coloproctology,Elsevier ,22379363| +Journal of Combat Sports and Martial Arts,Index Copernicus International,20815735|20844301 +Journal of Combinatorial Chemistry,American Chemical Society,15204766|15204774 +Journal of Combinatorial Designs,Wiley Blackwell (John Wiley & Sons),10638539|15206610 +Journal of Combinatorial Optimization,Springer-Verlag,13826905|15732886 +Journal of Combinatorial Theory,Elsevier ,00219800| +Journal of Combinatorial Theory Series A,Elsevier ,00973165|10960899 +Journal of Combinatorial Theory Series B,Elsevier ,00958956|10960902 +Journal of Combinatorics,"""International Press of Boston, Inc.""",21563527|2150959X +Journal of Combustion,Hindawi Publishing Corporation,20901968|20901976 +Journal of Commerce and Management Thought,Diva Enterprises Private Limited,0975623X|0976478X +Journal of Commercial Biotechnology,"""thinkBiotech, LLC""",14628732|1478565X +Journal of Commodity Markets,Elsevier ,24058513| +Journal of Commonwealth Law and Legal Education,Informa UK (Taylor & Francis),14760401| +Journal of Commonwealth Law and Legal Education,Informa UK (Taylor & Francis),14760401|1750662X +Journal of Commonwealth Political Studies,Informa UK (Taylor & Francis),00219908| +Journal of Communication,Wiley Blackwell (Blackwell Publishing),00219916|14602466 +Journal of Communication and Computer,David Publishing Company,15487709|19301553 +Journal of Communication and Information Systems,Sociedad Brasileira de Telecomunicacaoes,19806604|19806604 +Journal of Communication Disorders,Elsevier ,00219924| +Journal of Communication Disorders Deaf Studies & Hearing Aids,OMICS Publishing Group,23754427 +Journal of Communication Inquiry,SAGE Publications,01968599|15524612 +Journal of Communication Management,Emerald (MCB UP ),1363254X| +Journal of Communication Navigation Sensing and Services (CONASENSE),River Publishers,22462120| +Journal of Communication Science,Korea Regional Communication Research Association,15982653| +Journal of Communication Technology and Human Behaviors,Columbia International Publishing,21631298 +Journal of Communications,Engineering and Technology Publishing,17962021|17962021 +Journal of Communications and Information Sciences,AICIT,20939671|22339396 +Journal of Communications and Networks,Institute of Electrical and Electronics Engineers,12292370| +Journal of Communications Engineering and Networks,Bowen Publishing Company,23341505|23341513 +Journal of Communications In Healthcare,Informa UK (Taylor & Francis),17538068|17538076 +Journal of Communications Technology and Electronics,Pleiades Publishing,10642269|15556557 +Journal of Communist Studies,Informa UK (Taylor & Francis),02684535| +Journal of Community & Applied Social Psychology,Wiley Blackwell (John Wiley & Sons),10529284|10991298 +Journal of Community Archaeology & Heritage,Maney Publishing,20518196|2051820X +Journal of Community Genetics,Springer-Verlag,1868310X|18686001 +Journal of Community Health,Springer-Verlag,00945145|15733610 +Journal of Community Health Nursing,Informa UK (Taylor & Francis),07370016|15327655 +Journal of Community Health Sciences,University of the Western Cape Library Service,19909403 +Journal of Community Hospital Internal Medicine Perspectives,Co-Action Publishing,20009666 +Journal of Community Medicine & Health Education,OMICS Publishing Group,21610711 +Journal of Community Medicine and Primary Health Care,African Journals Online ,7947410 +Journal of Community Practice,Informa UK (Taylor & Francis),10705422|15433706 +Journal of Community Psychology,Wiley Blackwell (John Wiley & Sons),00904392|15206629 +Journal of community welfare,Korea Association of Community Welfare Studies,20934270| +Journal of Commutative Algebra,Rocky Mountain Mathematics Consortium,19392346| +Journal of Comorbidity,"""Swiss Medical Press, GmbH""",2235042X|2235042X +Journal of Comparative and Physiological Psychology,American Psychological Association,00219940| +Journal of Comparative Economics,Elsevier ,01475967|10957227 +Journal of Comparative Effectiveness Research,Future Medicine,20426305|20426313 +Journal of Comparative Neurology,Wiley Blackwell (John Wiley & Sons),00927317|15507130 +Journal of Comparative Neurology and Psychology,Wiley Blackwell (John Wiley & Sons),00927015|15507149 +Journal of Comparative Pathology,Elsevier ,00219975| +Journal of Comparative Pathology and Therapeutics,Elsevier ,03681742| +Journal of Comparative Physiology,Springer-Verlag,03029824| +Journal of Comparative Physiology A,Springer-Verlag,03407594|14321351 +Journal of Comparative Physiology B,Springer-Verlag,01741578|1432136X +Journal of Comparative Physiology □ B,Springer-Verlag,03407616| +Journal of Comparative Policy Analysis Research and Practice,Informa UK (Taylor & Francis),13876988|15725448 +Journal of Comparative Psychology,American Psychological Association,07357036|19392087 +Journal of Comparative Social Welfare,Informa UK (Taylor & Francis),17486831| +Journal of Comparative Social Welfare,Informa UK (Taylor & Francis),17486831|1748684X +Journal of Compassionate Health Care,Springer (Biomed Central Ltd.),20532393 +Journal of Compassionate Health Care,Springer (Biomed Central Ltd.),20532393|20532393 +Journal of Competition Law and Economics,Oxford University Press,17446414|17446422 +Journal of Competitiveness,Tomas Bata University in Zlin,1804171X|18041728 +Journal of Complementary and Integrative Medicine,Walter de Gruyter GmbH,21946329|15533840 +Journal of Complex Analysis,Hindawi Publishing Corporation,23144963|23144971 +Journal of Complex Networks,Oxford University Press,20511310|20511329 +Journal of Complex Systems,Hindawi Publishing Corporation,23567244|23146540 +Journal of Complexity,Elsevier ,0885064X|10902708 +Journal of Composite Materials,SAGE Publications,00219983|1530793X +Journal of Composites,Hindawi Publishing Corporation,23567252|23145978 +Journal of Composites and Biodegradable Polymers,Savvy Science Publisher,23118717 +Journal of Composites for Construction,American Society of Civil Engineers,10900268|19435614 +Journal of Composites Technology and Research,ASTM International,08846804| +Journal of Comprehensive Pediatrics,International Neuroscience Institute,22518150|22518177 +Journal of Computation in Biosciences and Engineering,ScienceQ Publishing Group,23487321 +Journal of Computational Acoustics,World Scientific ,0218396X|17936489 +Journal of Computational Analysis and Applications,Springer (Kluwer Academic Publishers),15211398| +Journal of Computational and Applied Mathematics,Elsevier ,03770427| +Journal of Computational and Engineering Mathematics,Federal State Funded Educational Institution of Higher Professional Education,23138106| +Journal of Computational and Graphical Statistics,Informa UK (American Statistical Association),10618600|15372715 +Journal of Computational and Nonlinear Dynamics,ASME International ,15551415| +Journal of Computational and Nonlinear Dynamics,ASME International ,15551423| +Journal of Computational and Theoretical Nanoscience,American Scientific Publishers,15461955|15461963 +Journal of Computational and Theoretical Transport,Informa UK (Taylor & Francis),23324309|23324325 +Journal of Computational Biology,Mary Ann Liebert,10665277|10665277 +Journal of Computational Biology and Bioinformatics Research,Academic Journals,21412227 +Journal of Computational Chemistry,Wiley Blackwell (John Wiley & Sons),01928651|1096987X +Journal of Computational Design and Engineering,Elsevier ,22884300| +Journal of Computational Dynamics,American Institute of Mathematical Sciences,21582491| +Journal of Computational Electronics,Springer-Verlag,15698025|15728137 +Journal of Computational Engineering,Hindawi Publishing Corporation,23567260|23146443 +Journal of Computational Environmental Sciences,Hindawi Publishing Corporation,23567279|23148292 +Journal of computational fluids engineering,Korea Society of Computational Fluids Engineering,15986071| +Journal of Computational Information Systems,Binary Information Press,15539105| +Journal of Computational Intelligence and Electronic Systems,American Scientific Publishers,23263008|23263024 +Journal of Computational Interdisciplinary Sciences,PACIS - Panamerican Association for Computational Interdisciplinary Sciences,19838409|21778833 +Journal of Computational Linguistics,Bioinfo Publications,22492828|22492836 +Journal of Computational Mathematics,Global Science Press,02549409|19917139 +Journal of Computational Medicine,Hindawi Publishing Corporation,23145080|23145099 +Journal of Computational Medicine,Hindawi Publishing Corporation,23145099 +Journal of Computational Methods in Physics,Hindawi Publishing Corporation,23567287|23146834 +Journal of Computational Methods in Sciences and Engineering,IOS Press,14727978|18758983 +Journal of Computational Neuroscience,Springer-Verlag,09295313|15736873 +Journal of Computational Physics,Elsevier ,00219991|10902716 +Journal of Computational Science,Elsevier ,18777503| +Journal of Computational Science and Technology,The Japan Society of Mechanical Engineers,18816894 +Journal of Computational Simulation and Modeling,Bioinfo Publications,22313494|22313508 +Journal of Computational Surgery,Springer (Biomed Central Ltd.),21943990|21943990 +Journal of Computational Systems Biology,"""Annex Publishers, LLC""",24557625 +Journal of Computed Tomography,Elsevier ,0149936X| +Journal of Computer Aided Chemistry,"""The Division of Chemical Information and Computer Sciences, Chemical Society of Japan""",13458647 +Journal of Computer and Communications,"""Scientific Research Publishing, Inc.""",23275219|23275227 +Journal of Computer and Education Research (ISSN 2148-2896),Journal of Computer and Education Research,21482896 +Journal of Computer and System Sciences,Elsevier ,00220000|10902724 +Journal of Computer and Systems Sciences International,Pleiades Publishing,10642307|15556530 +Journal of Computer Applications,China Science Publishing & Media Ltd.,10019081| +Journal of Computer Assisted Learning,Wiley Blackwell (Blackwell Publishing),02664909|13652729 +Journal of Computer Assisted Tomography,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,03638715| +Journal of Computer Chemistry Japan,"""Society of Computer Chemistry, Japan""",13471767|13473824 +Journal of Computer Chemistry Japan -International Edition,"""Society of Computer Chemistry, Japan""",2189048X +Journal of Computer Engineering and Informatics,The World Academic Publishing,23070072|23070064 +Journal of Computer Engineering and Information Technology,OMICS Publishing Group,23249307 +Journal of Computer Networks and Communications,Hindawi Publishing Corporation,20907141|2090715X +Journal of Computer Research and Development,China Science Publishing & Media Ltd.,10001239| +Journal of Computer Science,Science Publications,15493636| +Journal of Computer Science & Computational Mathematics,Science and Knowledge Research Society,22318879 +Journal of Computer Science & Systems Biology,OMICS Publishing Group,09747230|09747230 +Journal of Computer Science and Cybernetics,"""Publishing House for Science and Technology Vietnam, Vietnam Academy of Science and Technology""",18139663|18139663 +Journal of Computer Science and Information Technology,American Research Institute for Policy Development,23342366|23342374 +Journal of Computer Science and Its Application,African Journals Online ,20065523|20065523 +Journal of Computer Science and Technology,Springer-Verlag,10009000|18604749 +Journal of Computer Science Technology Updates,Cosmos Scholars Publishing House,24102938 +Journal of Computer Sciences and Applications,"""Science and Education Publishing Co., Ltd.""",23287268| +Journal of Computer Security,IOS Press,0926227X|18758924 +Journal of Computer Systems Networks and Communications,Hindawi Publishing Corporation,16877381|1687739X +Journal of Computer Virology and Hacking Techniques,Springer-Verlag,22742042|22638733 +Journal of Computer Virology and Hacking Techniques,Springer-Verlag,22638733 +Journal of Computer-Aided Design & Computer Graphics,China Science Publishing & Media Ltd.,10039775| +Journal of Computer-Aided Materials Design,Springer-Verlag,09281045|15734900 +Journal of Computer-Aided Molecular Design,Springer-Verlag,0920654X|15734951 +Journal of Computer-Assisted Microscopy,Springer (Kluwer Academic Publishers),10407286| +Journal of Computer-Mediated Communication,Wiley Blackwell (Blackwell Publishing),10836101|10836101 +Journal of Computerized Adaptive Testing,International Association for Computerized Adaptive Testing,21656592 +Journal of Computers,International Academy Publishing (IAP),1796203X|1796203X +Journal of Computers in Education,Springer-Verlag,21979987|21979995 +Journal of Computing and Information Science in Engineering,ASME International ,15309827| +Journal of Computing and Information Technology,"""Faculty of Electrical Engineering and Computing, Univ. of Zagreb""",13301136|18463908 +Journal of Computing in Civil Engineering,American Society of Civil Engineers,08873801|19435487 +Journal of Computing in Higher Education,Springer-Verlag,10421726|18671233 +Journal of Computing in Teacher Education,Informa UK (Taylor & Francis),10402454|23327421 +Journal of Computing Science and Engineering,Korean Institute of Information Scientists and Engineers,19764677| +Journal of Condensed Matter Physics,Sciknow Publications,23318228 +Journal of Conflict and Security Law,Oxford University Press,14677954|14677962 +Journal of Conflict Archaeology,Maney Publishing,15740773|15740781 +Journal of Conflict Resolution,SAGE Publications,00220027|15528766 +journal of conflict test deposit,CrossRef test user,21569819| +Journal of Conflictology,Fundacio per la Universitat Oberta de Catalunya,20138857|20138857 +Journal of Congestive Heart Failure and Circulatory Support,Informa UK (Taylor & Francis),14683768|00000000 +Journal of Conservation and Museum Studies,"""Ubiquity Press, Ltd.""",20494572|13640429 +Journal of Conservative Dentistry,Medknow Publications,09720707| +Journal of Construction Engineering,Hindawi Publishing Corporation,23567295|23145986 +Journal of Construction Engineering and Management,American Society of Civil Engineers,07339364|19437862 +Journal of Construction Engineering and Project Management,Korean Institute of Construction Engineering and Management,22339582 +Journal of Construction Management JSCE,Japan Society of Civil Engineers,18848311 +Journal of Constructional Steel Research,Elsevier ,0143974X| +Journal of Constructivist Psychology,Informa UK (Taylor & Francis),10720537|15210650 +Journal of Consulting and Clinical Psychology,American Psychological Association,0022006X|19392117 +Journal of Consulting Psychology,American Psychological Association,00958891| +Journal of Consumer Affairs,Wiley Blackwell (Blackwell Publishing),00220078|17456606 +Journal of Consumer Behaviour,Wiley Blackwell (John Wiley & Sons),14720817|14791838 +Journal of Consumer Culture,SAGE Publications,14695405|00000000 +Journal of Consumer Health on the Internet,Informa UK (Taylor & Francis),15398285|15398293 +Journal of Consumer Marketing,Emerald (MCB UP ),07363761|00000000 +Journal of Consumer Policy,Springer-Verlag,01687034|15730700 +journal of consumer policy studies,Korea Consumer Agency,17389003| +Journal of Consumer Psychology,Elsevier ,10577408|15327663 +Journal of Consumer Research,Oxford University Press,00935301|15375277 +Journal Of Consumer Studies and Home Economics,Wiley Blackwell (Blackwell Publishing),03093891|13652737 +Journal of Consumption Culture,Korean Consumption Culture Association,12290386| +Journal of Contaminant Hydrology,Elsevier ,01697722| +Journal of Contemporary Accounting & Economics,Elsevier ,18155669| +Journal of Contemporary African Studies,Informa UK (Taylor & Francis),02589001|14699397 +Journal of Contemporary Archaeology,Equinox Publishing,20513429|20513437 +Journal of Contemporary Asia,Informa UK (Taylor & Francis),00472336|17527554 +Journal of Contemporary Brachytherapy,Termedia Sp. z.o.o.,1689832X| +Journal of Contemporary China,Informa UK (Taylor & Francis),10670564|14699400 +Journal of Contemporary Chinese Art,Intellect,20517041| +Journal of Contemporary Clinical Practice,Asociatia Pentru Cresterea Vizibilitatii Cercetarii Stiintifice (ACVCS),24577200 +Journal of Contemporary Criminal Justice,SAGE Publications,10439862|00000000 +Journal of Contemporary Dentistry,Jaypee Brothers Medical Publishing,22782680|22790217 +Journal of Contemporary Drama in English,Walter de Gruyter GmbH,21950156|21950164 +Journal of Contemporary Eastern Asia,World Association for Triple Helix and Future Strategy Studies,23839449 +Journal of Contemporary Ethnography,SAGE Publications,08912416|00000000 +Journal of Contemporary European Studies,Informa UK (Taylor & Francis),14782804|14782790 +Journal of Contemporary History,SAGE Publications,00220094|00000000 +Journal of Contemporary Immunology,Columbia International Publishing,23745444 +Journal of Contemporary Issues in Business and Government,Swinburne University of Technology,13236903| +Journal of Contemporary Issues in Education,University of Alberta - Journal of Contemporary Issues in Education,17184770 +Journal of Contemporary Mathematical Analysis,Allerton Press,10683623|19349416 +Journal of Contemporary Medical Education,ScopeMed International Medical Journal Managment and Indexing System,21468354| +Journal of Contemporary Medicine,Cagdas Tip Dergisi: Journal of Contemporary Medicine,21464189|21466009 +Journal of Contemporary Medicine and Dentistry,Journal of Contemporary Medicine and Dentistry,23474513|23490799 +Journal of Contemporary Painting,Intellect,20526695|20526709 +Journal of Contemporary Physics (Armenian Academy of Sciences),Allerton Press,10683372|19349378 +Journal of Contemporary Psychotherapy,Springer-Verlag,00220116|15733564 +Journal of Contemporary Religion,Informa UK (Taylor & Francis),13537903|14699419 +Journal of Contemporary Water Research & Education,Wiley Blackwell (Blackwell Publishing),19367031|1936704X +Journal of Contextual Behavioral Science,Elsevier ,22121447| +Journal of Contingencies and Crisis Management,Wiley Blackwell (Blackwell Publishing),09660879|14685973 +Journal of Continuing Education and Professional Development,Columbia International Publishing,21631379 +Journal of Continuing Education in the Health Professions,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,08941912|1554558X +Journal of Contradiciting Results in Science,EManuscript Services,22787194 +Journal of Control and Decision,Informa UK (Taylor & Francis),23307706|23307714 +Journal of Control and Systems Engineering,Bowen Publishing Company,23312963|23312971 +Journal of Control Automation and Electrical Systems,Springer-Verlag,21953880|21953899 +Journal of Control Automation and Systems Engineering,"""Institute of Control, Robotics and Systems""",12259845| +Journal of Control Engineering and Technology,American V-King Scientific Publishers,22232036|22256598 +Journal of Control Science and Engineering,Hindawi Publishing Corporation,16875249|16875257 +Journal of Control Theory and Applications,Springer-Verlag,16726340|19930623 +Journal of Controlled Release,Elsevier ,01683659| +Journal of Controversies in Biomedical Research,Codon Publications,22055975 +Journal of Convention & Event Tourism,Informa UK (Taylor & Francis),15470148|15470156 +Journal of Convention & Exhibition Management,"""Informa UK (Haworth Press, Inc.,)""",1094608X| +Journal of Convergence Information Technology,AICIT,19759320|22339299 +Journal of Coordination Chemistry,Informa UK (Taylor & Francis),00958972|10290389 +Journal of Coptic Studies,Peeters Publishers,10165584 +Journal of Corporate Accounting & Finance,Wiley Blackwell (John Wiley & Sons),10448136|10970053 +Journal of Corporate Citizenship,GSE Research Limited,14705001|20514700 +Journal of Corporate Finance,Elsevier ,09291199| +Journal of Corporate Law Studies,Informa UK (Taylor & Francis),14735970|17578426 +Journal of Corporate Real Estate,Emerald (MCB UP ),1463001X| +Journal of Corporate Responsibility and Leadership,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,23922680|23922699 +Journal of Correctional Health Care,SAGE Publications,10783458|19405200 +Journal of Cosmetic and Laser Therapy,Informa UK (Taylor & Francis),14764172|14764180 +Journal of Cosmetic Dermatology,Wiley Blackwell (Blackwell Publishing),14732130|14732165 +Journal of Cosmetics Dermatological Sciences and Applications,"""Scientific Research Publishing, Inc.""",21614105|21614512 +Journal of Cosmology,"""Ubiquity Press, Ltd.""",2159063X +Journal of Cosmology and Astroparticle Physics,IOP Publishing,14757508|14757516 +Journal of Cost Analysis and Parametrics,Informa UK (Taylor & Francis),1941658X|21604746 +Journal of Cost Estimating,Informa UK (Taylor & Francis),21649405| +Journal of Counseling & Development,Wiley Blackwell (John Wiley & Sons),07489633| +Journal of Counseling and Gospel,Korea Evangelical Counseling Society,17390745| +Journal of Counseling Psychology,American Psychological Association,00220167|19392168 +Journal of Counselor Leadership and Advocacy,Informa UK (Taylor & Francis),2326716X|23267178 +Journal of Counselor Preparation and Supervision,North Atlantic Region Association for Counselor Education and Supervision,21643288|21643288 +Journal of Couple & Relationship Therapy,Informa UK (Taylor & Francis),15332691|15332683 +Journal of Coupled Systems and Multiscale Dynamics,American Scientific Publishers,2330152X| +Journal of Couples Therapy,Informa UK (Taylor & Francis),08974446| +Journal of Cranio-Maxillary Diseases,Medknow Publications,22789588| +Journal of Cranio-Maxillofacial Surgery,Elsevier ,10105182| +Journal of Craniofacial Surgery,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10492275| +Journal of Craniomandibular Practice,Informa UK (Taylor & Francis),07345410| +Journal of Craniovertebral Junction and Spine,Medknow Publications,09748237| +Journal of Crash Prevention and Injury Control,Informa UK (Taylor & Francis),10286586| +Journal of Creating Value,SAGE Publications,23949643|2454213X +Journal of Creative Communications,SAGE Publications,09732586|09732594 +Journal of Creativity in Mental Health,Informa UK (Taylor & Francis),15401383|15401391 +Journal of Crime and Justice,Informa UK (Taylor & Francis),0735648X|21589119 +Journal of Criminal Justice,Elsevier ,00472352| +Journal of Criminal Justice Education,Informa UK (Taylor & Francis),10511253|17459117 +Journal of Criminal Law,SAGE Publications,00220183|17405580 +Journal of Criminal Law and Criminology (1931-1951),JSTOR,08852731| +Journal of Criminal Psychology,Emerald (MCB UP ),20093829| +Journal of Criminological Research Policy and Practice,Emerald (MCB UP ),20563841| +Journal of Criminology,Hindawi (International Scholarly Research Network),20907753|2090777X +Journal of Critical Care,Elsevier ,08839441| +Journal of Critical Care Medicine,Hindawi Publishing Corporation,23567309|23146990 +Journal of Critical Care Nursing,International Neuroscience Institute,20083084|2008336X +Journal of Critical Realism,Maney Publishing,14767430|15725138 +Journal of Crohn s and Colitis,Oxford University Press,18739946|18764479 +Journal of Crohn s and Colitis Supplements,Oxford University Press,18739954|18764460 +Journal of Crop Improvement,Informa UK (Taylor & Francis),15427528|15427536 +Journal of Crop Production,Informa UK (Taylor & Francis),1092678X|15404110 +Journal of Crop Science,Bioinfo Publications,09768920|09768939 +Journal of Crop Science and Biotechnology,Springer-Verlag,19759479|20058276 +Journal of Cross-Cultural Gerontology,Springer-Verlag,01693816|15730719 +Journal of Cross-Cultural Psychology,SAGE Publications,00220221|15525422 +Journal of CrossMark Testing,CrossRef test user,10672249| +Journal of Crustacean Biology,Brill Academic Publishers,02780372|1937240X +Journal of Cryptographic Engineering,Springer-Verlag,21908508|21908516 +Journal of Cryptology,Springer-Verlag,09332790|14321378 +Journal of Crystal and Molecular Structure,Springer-Verlag,03084086| +Journal of Crystal Growth,Elsevier ,00220248| +Journal of Crystallization Process and Technology,"""Scientific Research Publishing, Inc.""",21617678|21617686 +Journal of Crystallographic and Spectroscopic Research,Springer-Verlag,02778068| +Journal of Crystallography,Hindawi Publishing Corporation,23567317|23145994 +Journal of Culinary Science & Technology,Informa UK (Taylor & Francis),15428052|15428044 +Journal of Cultural and Evolutionary Psychology,Akademiai Kiado Zrt.,15895254|15897397 +Journal of Cultural and Religious Studies,David Publishing Company,23282177|23282177 +Journal of Cultural Economics,Springer-Verlag,08852545|15736997 +Journal of Cultural Economy,Informa UK (Taylor & Francis),17530350|17530369 +Journal of Cultural Economy,Informa UK (Taylor & Francis),17530350| +Journal of Cultural Economy,Informa UK (Taylor & Francis),17530350| +Journal of Cultural Economy,Informa UK (Taylor & Francis),17530350| +Journal of Cultural Geography,Informa UK (Taylor & Francis),08873631|19406320 +Journal of Cultural Heritage,Elsevier ,12962074| +Journal of Cultural Heritage Management and Sustainable Development,Emerald (MCB UP ),20441266| +Journal of Cultural Studies,African Journals Online ,15950956 +Journal of Cuneiform Studies,The American Schools of Oriental Research,00220256| +Journal of Curatorial Studies,Intellect,20455836|20455844 +Journal of Current and Advance Medical Research,Bangladesh Journals Online,2313447X| +Journal of Current Issues & Research in Advertising,Informa UK (Taylor & Francis),10641734|21647313 +Journal of Current Ophthalmology,Elsevier ,24522325| +Journal of Current Surgery,"""Elmer Press, Inc.""",19271298|19271301 +Journal of Curriculum and Instruction,East Carolina University,19373929 +Journal of Curriculum and Pedagogy,Informa UK (Taylor & Francis),15505170|21568154 +Journal of Curriculum and Teaching,Sciedu Press,19272677|19272685 +Journal of Curriculum Studies,Informa UK (Taylor & Francis),00220272|13665839 +Journal of Customer Behaviour,Westburn Publishers,14753928|00000000 +Journal of Customer Service in Marketing & Management,"""Informa UK (Haworth Press, Inc.,)""",10692533| +Journal of Cutaneous and Aesthetic Surgery,Medknow Publications,09742077| +Journal of Cutaneous Laser Therapy,Informa UK (Taylor & Francis),1462883X| +Journal of Cutaneous Medicine and Surgery,SAGE Publications,12034754|16157109 +Journal of Cutaneous Pathology,Wiley Blackwell (Blackwell Publishing),03036987|16000560 +Journal of Cyber Security and Mobility,River Publishers,22451439| +Journal of Cybernetics,Informa UK (Taylor & Francis),00220280| +Journal of Cybersecurity,Oxford University Press,20572085|20572093 +Journal of Cystic Fibrosis,Elsevier ,15691993| +Journal of Cytology,Medknow Publications,09709371| +Journal of Cytology & Histology,OMICS Publishing Group,21577099 +Journal of Cytology & Molecular Biology,Avens Publishing Group,23254653 +Journal of Dairy Research,Cambridge University Press,00220299|14697629 +Journal of Dairy Science,American Dairy Science Association,00220302|15253198 +Journal of Dairy Veterinary & Animal Research,MedCrave Group,23774312 +Journal of Dance & Somatic Practices,Intellect,17571871|1757188X +Journal of Dance Education,Informa UK (Taylor & Francis),15290824|2158074X +Journal of Dance Medicine & Science,J. Michael Ryan Publishing,1089313X| +Journal of Data Analysis and Information Processing,"""Scientific Research Publishing, Inc.""",23277211|23277203 +Journal of Data and Information Quality,Association for Computing Machinery,19361955| +Journal of Data and Information Science,Journal of Data and Information Science,16743393| +Journal of Data Mining and Knowledge Discovery,Bioinfo Publications,22296662|22296670 +Journal of Data Mining in Genomics & Proteomics,OMICS Publishing Group,21530602 +Journal of Database Management,IGI Global,10638016|15338010 +Journal of Database Marketing,Nature Publishing Group - Macmillan Publishers,13502328|1479182X +Journal of Database Marketing & Customer Strategy Management,Nature Publishing Group - Macmillan Publishers,17412439|17412447 +Journal of Daylighting,SolarLits,23838701 +Journal of Deaf Studies and Deaf Education,Oxford University Press,10814159|14657325 +Journal of Decision System,Informa UK (Taylor & Francis),12460125|21167052 +Journal of Defense Management,OMICS Publishing Group,21670374 +Journal of Defense Studies & Resource Management,OMICS Publishing Group,23249315 +Journal of Degraded and Mining Lands Management,International Research Centre for the Management of Degraded and Mining Lands,2339076X|2339076X +Journal of Democracy,Muse - Johns Hopkins University Press,10863214 +Journal of Demographic Economics,Cambridge University Press,20540892|20540906 +Journal of Dental and Allied Sciences,Medknow Publications,22774696| +Journal of Dental Anesthesia and Pain Medicine,The Korean Dental Society of Anesthesiology (KAMJE),23839309|23839317 +Journal of Dental Biomechanics,CrossRef test user,17587360|17587360 +JOURNAL OF DENTAL HEALTH,Japanese Society for Dental Health,00232831| +Journal of Dental Health Oral Disorders and Therapy,MedCrave Group,23734345 +Journal of dental hygiene science,The Korean Society of Dental Hygiene Science,15984478| +Journal of Dental Implants,Medknow Publications,09746781| +Journal of Dental Lasers,Medknow Publications,09762868| +Journal of Dental Panacea,The Journal of Dental Panacea,23488727 +Journal of Dental Problems and Solutions,Peertechz.com,23948418|23948418 +Journal of Dental Rehabilitation and Applied Science,Korean Academy of Stomatognathic Function and Occlusion,23844353|23844272 +Journal of Dental Rehabilitation and Applied Science,Korean Academy of Stomatognathic Function and Occlusion,22334084| +Journal of Dental Research,SAGE Publications,00220345|15440591 +Journal of Dental Research and Review,Medknow Publications,23483172| +Journal of Dental Research and Scientific Development,Medknow Publications,23483407| +Journal of Dental Research Dental Clinics Dental Prospects,International Society for Phytocosmetic Sciences,2008210X|20082118 +Journal of Dental Sciences,Elsevier ,19917902| +Journal of Dental Sleep Medicine,American Academy of Sleep Medicine,23339756 +Journal of Dental Surgery,Hindawi Publishing Corporation,23567325|23146583 +Journal of Dentistry,Elsevier ,03005712| +Journal of Dentistry & Oral Health,JScholar,23324856| +journal of dentistry and oral biosciences,Dentaquest,22501126|22776680 +Journal of Dentistry and Oral Care,Ommega Online Publishers,23791705 +Journal of Dentistry and Oral Care Medicine,"""Annex Publishers, LLC""",24543276 +Journal of Dentistry and Oral Hygiene,Academic Journals,21412472 +Journal of Dentistry and Orofacial Surgery,Elyns Group LLC,24709735 +Journal of Dentistry Indonesia,Journal of Dentistry Indonesia,16939697|23554800 +Journal of Dentistry Oral Disorders and Therapy,Symbiosis Group,23720972 +Journal of Dentofacial Anomalies and Orthodontics,EDP Sciences,21105715 +Journal of Depression & Anxiety,OMICS Publishing Group,21671044 +Journal of Derivatives & Hedge Funds,Nature Publishing Group - Macmillan Publishers,17539641|1753965X +Journal of Derivatives Accounting,World Scientific ,02198681| +Journal of Dermatologic Research And Therapy,Open Access Pub,24712175 +Journal of Dermatological Case Reports,Specjalisci Dermatolodzy,18987249 +Journal of Dermatological Science,Elsevier ,09231811| +Journal of Dermatological Science Supplement,Elsevier ,15740757| +Journal of Dermatological Treatment,Informa UK (Taylor & Francis),09546634|14711753 +Journal of Dermatology & Dermatologic Surgery,Elsevier ,23522410| +Journal of Design and Manufacturing Automation,Informa UK (Taylor & Francis),15320375| +Journal of Design and Manufacturing Automation,Informa UK (Taylor & Francis),15320375| +Journal of Design Business & Society,Intellect,20552106|20552114 +Journal of Design History,Oxford University Press,09524649|17417279 +Journal of Destination Marketing & Management,Elsevier ,2212571X| +Journal of Developing Drugs,OMICS Publishing Group,23296631 +Journal of Developing Societies,SAGE Publications,0169796X|15685225 +Journal of Development and Administrative Studies,Nepal Journals Online,20910339| +Journal of Development and Agricultural Economics,Academic Journals,20069774 +Journal of Development Economics,Elsevier ,03043878| +Journal of Development Effectiveness,Informa UK (Taylor & Francis),19439342|19439407 +Journal of Developmental & Behavioral Pediatrics,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,0196206X| +Journal of Developmental and Life-Course Criminology,Springer-Verlag,21994641|2199465X +Journal of Developmental and Physical Disabilities,Springer-Verlag,1056263X|15733580 +Journal of Developmental Biology,MDPI AG,22213759 +Journal of Developmental Biology and Tissue Engineering,Academic Journals,21412251 +Journal of Developmental Entrepreneurship,World Scientific ,10849467|1793706X +Journal of Developmental Origins of Health and Disease,Cambridge University Press,20401744|20401752 +Journal of Dhaka Medical College,Bangladesh Journals Online,10280928|22197494 +Journal of Dhaka National Medical College & Hospital,Bangladesh Journals Online,18153100| +Journal of Diabetes,Wiley Blackwell (Blackwell Publishing),17530393|17530407 +Journal of Diabetes & Metabolic Disorders,Springer (Biomed Central Ltd.),22516581|22516581 +Journal of Diabetes & Metabolism,OMICS Publishing Group,21556156|21556156 +Journal of Diabetes and Endocrinology,Academic Journals,21412685 +Journal of Diabetes and its Complications,Elsevier ,10568727| +Journal of Diabetes and Obesity,Ommega Online Publishers,23760494|23760494 +Journal of Diabetes Investigation,Wiley Blackwell (Blackwell Publishing),20401116|20401124 +Journal of Diabetes Mellitus,"""Scientific Research Publishing, Inc.""",21605831|21605858 +Journal of Diabetes Metabolic Disorders & Control,MedCrave Group,23746947 +Journal of Diabetes Research,Hindawi Publishing Corporation,23146745|23146753 +journal of Diabetes Research and Clinical Metabolism,Herbert Publications,20500866 +Journal of Diabetes Research and Therapy ( ISSN 2380-5544 ),"""Sci Forschen, Inc.""",23805544 +Journal of Diabetes Science and Technology,SAGE Publications,19322968|19322968 +Journal of Diabetic Complications,Elsevier ,08916632| +Journal of Diabetology and Endocrinology,Noble Research Publishers,23980281 +Journal of Diagnostic Imaging in Therapy,Open Medscience Limited,20573782 +Journal of Diagnostic Medical Sonography,SAGE Publications,87564793|00000000 +Journal of Diagnostic Pathology,Sri Lanka Journals Online ,13916319| +Journal of Diagnostic Radiography and Imaging,Cambridge University Press,14604728|14671123 +Journal of Diagnostic Techniques and Biomedical Analysis,OMICS Publishing Group,23274638 +Journal of Diagnostic Techniques and Biomedical Analysis,OMICS Publishing Group,24695653 +Journal of Diagnostics,Pak Publishing Group,24138371|2409322X +Journal of Dialysis,Informa UK (Taylor & Francis),03628558| +Journal of Dietary Supplements,Informa UK (Taylor & Francis),19390211|1939022X +Journal of Difference Equations,Hindawi Publishing Corporation,23567856|23567848 +Journal of Differential Equations,Elsevier ,00220396|10902732 +Journal of Digestive Diseases,Wiley Blackwell (Blackwell Publishing),17512972|17512980 +Journal of Digestive Endoscopy,Medknow Publications,09765042| +Journal of Digital Asset Management,Nature Publishing Group - Macmillan Publishers,17436540|17436559 +Journal of Digital Contents Society,Digital Contents Society,15982009| +Journal of Digital Convergence,The Korea Society of Digital Policy and Management,17381916| +Journal of Digital Design,Korea Digital Design Council,15982319| +Journal of Digital Forensic Practice,Informa UK (Taylor & Francis),15567281| +Journal of Digital Forensic Practice,Informa UK (Taylor & Francis),15567281| +Journal of Digital Forensic Practice,Informa UK (Taylor & Francis),15567281| +Journal of Digital Forensic Practice,Informa UK (Taylor & Francis),15567281| +Journal of Digital Forensic Practice,Informa UK (Taylor & Francis),15567281|15567346 +Journal of Digital Imaging,Springer-Verlag,08971889|1618727X +Journal of Digital Learning in Teacher Education,Informa UK (Taylor & Francis),21532974|23327383 +Journal of Direct Data and Digital Marketing Practice,Nature Publishing Group - Macmillan Publishers,17460166|17460174 +Journal of Direct Marketing,Wiley Blackwell (John Wiley & Sons),08920591|15227138 +Journal of Disability & Religion,Informa UK (Taylor & Francis),23312521|2331253X +Journal of Disability Policy Studies,SAGE Publications,10442073| +Journal of Discrete Algorithms,Elsevier ,15708667| +Journal of Discrete Mathematical Sciences and Cryptography,Informa UK (Taylor & Francis),09720529|21690065 +Journal of Discrete Mathematics,Hindawi Publishing Corporation,20909837|20909845 +Journal of Disease Cause and Control,Elsevier ,24522228| +Journal of Diseases,Pak Publishing Group,2413838X|24106550 +Journal of Diseases and Medicinal Plants,Science Publishing Group,24698202| +Journal of Dispersion Science and Technology,Informa UK (Taylor & Francis),01932691|15322351 +Journal of Display Technology,Institute of Electrical and Electronics Engineers,1551319X|15589323 +Journal of Distribution and Management Research,Korea Research Academy of Distribution and Management,23840137| +Journal of Distribution Science,Korea Distribution Science Association,17383110|20937717 +Journal of Diversity in Higher Education,American Psychological Association,19388926|19388934 +Journal of Diversity Management (JDM),Clute Institute,15580121|21579512 +Journal of Divinity Faculty of Hitit University,"""Journal of Divinity Faculty, Hitit University""",13037757| +Journal of Divorce,"""Informa UK (Haworth Press, Inc.,)""",01474022| +Journal of Divorce & Remarriage,Informa UK (Taylor & Francis),10502556|15404811 +Journal of Documentation,Emerald (MCB UP ),00220418|00000000 +Journal of Dr Behcet Uz Children s Hospital,Logos Medical Publication,21462372|13099566 +Journal of Dr NTR University of Health Sciences,Medknow Publications,22778632| +Journal of Dramatic Theory and Criticism,Muse - Johns Hopkins University Press,21652686 +Journal of Drive and Control,Korea Society of Fluid Power and Construction Equipment,22348328| +Journal of Drug and Alcohol Research,Ashdin Publishing,20908334|20908342 +Journal of Drug Assessment,Informa UK (Taylor & Francis),21556660|21556660 +Journal of Drug Delivery,Hindawi Publishing Corporation,20903014|20903022 +Journal of Drug Delivery Science and Technology,Elsevier ,17732247| +Journal of Drug Delivery Science and Technology,Elsevier ,17732247| +Journal of Drug Delivery Science and Technology,Elsevier ,17732247| +Journal of Drug Education,SAGE Publications,00472379|15414159 +Journal of Drug Evaluation,Informa UK (Informa Healthcare),14791137| +Journal of Drug Issues,SAGE Publications,00220426|19451369 +Journal of Drug Metabolism & Toxicology,OMICS Publishing Group,21577609 +Journal of Drug Policy Analysis,Walter de Gruyter GmbH,21946337|19412851 +Journal of Drug Research and Development ( ISSN 2470-1009 ),"""Sci Forschen, Inc.""",24701009 +Journal of Drug Targeting,Informa UK (Taylor & Francis),1061186X|10292330 +Journal of Dual Diagnosis,Informa UK (Taylor & Francis),15504263|15504271 +Journal of Dynamic Behavior of Materials,Springer-Verlag,21997446|21997454 +Journal of Dynamic Systems Measurement and Control,ASME International ,00220434| +Journal of Dynamical and Control Systems,Springer-Verlag,10792724|15738698 +Journal of Dynamical Systems and Geometric Theories,Informa UK (Taylor & Francis),1726037X|21690057 +Journal of Dynamics and Differential Equations,Springer-Verlag,10407294|15729222 +Journal of Dynamics and Games,American Institute of Mathematical Sciences,21646066| +Journal of E-Government,"""Informa UK (Haworth Press, Inc.,)""",15424049|15424057 +Journal of E-Government Studies and Best Practices,IBIMA Publishing,21554137 +Journal of e-Health Management,IBIMA Publishing,21659478 +Journal of e-Learning & Higher Education,IBIMA Publishing,21690359 +Journal of e-Media Studies,Dartmouth College Library Press,19386060 +Journal of Early American History,Brill Academic Publishers,18770223|18770703 +Journal of Early and Intensive Behavior Intervention,American Psychological Association,15544893 +Journal of Early Childhood Literacy,SAGE Publications,14687984|00000000 +Journal of Early Childhood Research,SAGE Publications,1476718X|17412927 +Journal of Early Childhood Teacher Education,Informa UK (Taylor & Francis),10901027|10901027 +Journal of Early Christian Studies,Muse - Johns Hopkins University Press,10863184 +Journal of Early Intervention,SAGE Publications,10538151| +Journal of Early Modern Christianity,Walter de Gruyter GmbH,21966648|21966656 +Journal of Early Modern History,Brill Academic Publishers,13853783|15700658 +Journal of Early Modern Studies,Philosophy Documentation Center,22856382|22860290 +Journal of Earth Environment and Health Sciences,Medknow Publications,24237752| +Journal of Earth Science,Springer-Verlag,1674487X|1867111X +Journal of Earth Science & Climatic Change,OMICS Publishing Group,21577617 +Journal of Earth Science and Engineering,David Publishing Company,2159581X|2159581X +Journal of Earth Science Research,Bowen Publishing Company,23301740|23301759 +Journal of Earth System Science,Springer-Verlag,02534126|0973774X +Journal of Earthquake and Tsunami,World Scientific ,17934311|17937116 +Journal of Earthquake Engineering,Informa UK (Taylor & Francis),13632469|13632469 +Journal of Earthquakes,Hindawi Publishing Corporation,23567333|23146567 +Journal of East African Natural History,BioOne (East African Natural History Society),10261613|22248862 +Journal of East Aisan Cultures,Institute for East Asian Cultures,23836180| +Journal of East and West Studies,Informa UK (Taylor & Francis),12294098| +Journal of East Asia and International Law,Yijun Institute of International Law,19769229|22879218 +Journal of East Asian Archaeology,Brill Academic Publishers,13876813|15685233 +Journal of East Asian Economic Integration,Korea Institute for International Economic Policy,22348867| +Journal of East Asian Linguistics,Springer-Verlag,09258558|15728560 +Journal of East Asian Studies,Cambridge University Press,15982408|22346643 +Journal of East-West Business,Informa UK (Taylor & Francis),10669868|15286959 +journal of east-west nursing research,East-West Nursing Research Institute,12264938|12264938 +Journal of Eastern African Studies,Informa UK (Taylor & Francis),17531055| +Journal of Eastern African Studies,Informa UK (Taylor & Francis),17531055| +Journal of Eastern African Studies,Informa UK (Taylor & Francis),17531055| +Journal of Eastern African Studies,Informa UK (Taylor & Francis),17531055| +Journal of Eastern African Studies,Informa UK (Taylor & Francis),17531055|17531063 +Journal of Eastern African Studies,Informa UK (Taylor & Francis),17531055| +Journal of Eastern Christian Studies,Peeters Publishers,95141 +Journal of Eastern Europe Research in Business & Economics,IBIMA Publishing,21690367 +Journal of Eastern European and Central Asian Research,Journal of Eastern European and Central Asian Research,23288272|23288280 +Journal of Eastern Mediterranean Archaeology & Heritage Studies,The Pennsylvania State University Press,21663548|21663556 +Journal of Eastern Philosophy,The Society of Eastern Philosophy,12295965| +Journal of Eating Disorders,Springer (Biomed Central Ltd.),20502974| +Journal of Eating Disorders,Springer (Biomed Central Ltd.),20502974|20502974 +Journal of Echocardiography,Springer-Verlag,13490222|1880344X +Journal of Ecobiotechnology,Scienceflora Publishers Pvt. Ltd.,20770464 +Journal of Ecological Anthropology,University of South Florida Libraries,15286509|21624593 +Journal of Ecological Engineering,Wydawnictwo Naukowe Gabriel Borowski (WNGB),2081139X|22998993 +Journal of Ecology,Wiley Blackwell (Blackwell Publishing),00220477|13652745 +Journal of Ecology and Environment,The Ecological Society of Korean,22878327| +Journal of Ecology and Environmental Sciences,Bioinfo Publications,09769900|09769919 +Journal of Ecology and Field Biology,The Ecological Society of Korean,1975020X| +Journal of Ecology and the Natural Environment,Academic Journals,20069847 +Journal of Ecology of Health & Environment,Scientific Publishing Center,20909497|20909500 +Journal of Econometric Methods,Walter de Gruyter GmbH,21946345|21566674 +Journal of Econometrics,Elsevier ,03044076| +Journal of Economic & Financial Studies,LAR Center Press,23799463|23799471 +Journal of Economic and Administrative Sciences,Emerald (MCB UP ),10264116| +Journal of Economic and Social Measurement,IOS Press,07479662|18758932 +Journal of Economic and Social Studies,International Burch University,19868499|19868502 +Journal of Economic Behavior & Organization,Elsevier ,01672681|01672681 +Journal of Economic Dynamics and Control,Elsevier ,01651889| +Journal of Economic Entomology,Oxford University Press,00220493|00220493 +Journal of Economic Geography,Oxford University Press,14682702|14682710 +Journal of Economic Growth,Springer-Verlag,13814338|15737020 +Journal of Economic Integration,Center for Economic Integration,1225651X|19765525 +Journal of Economic Interaction and Coordination,Springer-Verlag,1860711X|18607128 +Journal of Economic Issues,Informa UK (Taylor & Francis),00213624|1946326X +Journal of Economic Literature,American Economic Association,00220515| +Journal of Economic Methodology,Informa UK (Taylor & Francis),1350178X|14699427 +Journal of Economic Perspectives,American Economic Association,08953309| +Journal of Economic Philosophy,Sciknow Publications,2329941X +Journal of Economic Policy Reform,Informa UK (Taylor & Francis),17487870|17487889 +Journal of Economic Psychology,Elsevier ,01674870| +Journal of Economic Regulation,Humanities Perspectives Limited,20785429|20785429 +Journal of Economic Research (JER),Hanyang Economic Research Institute,12264261| +Journal of Economic Research (JER),Hanyang Economic Research Institute,12264261| +Journal of Economic Sociology,"""National Research University, Higher School of Economics (HSE)""",17263247 +Journal of Economic Structures,Springer (Biomed Central Ltd.),21932409|21932409 +Journal of Economic Studies,Emerald (MCB UP ),01443585|00000000 +Journal of Economic Surveys,Wiley Blackwell (Blackwell Publishing),09500804|14676419 +Journal of Economic Theory,Elsevier ,00220531|10957235 +Journal of Economics,Springer-Verlag,09318658|16177134 +Journal of Economics & Management Strategy,Wiley Blackwell (Blackwell Publishing),10586407|15309134 +Journal of Economics & Management Strategy,Wiley Blackwell (Blackwell Publishing),10586407|14309134 +Journal of Economics and Business,Elsevier ,01486195| +Journal of Economics and Development Studies,American Research Institute for Policy Development,23342382|23342390 +Journal of Economics and Engineering,Progress IPS,20780346| +Journal of Economics and Finance,Springer-Verlag,10550925|19389744 +Journal of Economics and International Finance,Academic Journals,20069812 +Journal of Economics Business and Accountancy Ventura,STIE Perbanas Surabaya,20873735|2088785X +Journal of Economics Business and Management,EJournal Publishing,23013567|23013567 +Journal of Economics Entrepreneurship and Law,BIBLIO-GLOBUS Publishing House,2222534X +Journal of Economics Finance and Administrative Science,Elsevier ,20771886| +Journal of Economics Theory,Science Alert,19948212| +Journal of Economy and its Applications,Walter de Gruyter GmbH,22177973 +Journal of Ecophysiology and Occupational Health,Journal of Ecophysiology and Occupational Health,09724397|09740805 +Journal of Ecosystem & Ecography,OMICS Publishing Group,21577625 +Journal of Ecosystems,Hindawi Publishing Corporation,23567341|23146001 +Journal of Ecotourism,Informa UK (Taylor & Francis),14724049|17477638 +Journal of Ect,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10950680| +Journal of Ecumenical Studies,Muse - Johns Hopkins University Press,21623937 +Journal of Education,Bioinfo Publications,22495517|22495525 +Journal of Education & Social Sciences,"""Geist Science, Iqra University""",24148091|24105767 +Journal of Education and Community Health,Nova Explore Publications Inc.,23832312|23832312 +Journal of Education and e-Learning Research,Asian Educational Journal Publishing Group,24109991 +Journal of Education and Ethics in Dentistry,Medknow Publications,09747761| +Journal of Education and Health Promotion,Medknow Publications,22779531| +Journal of Education and Human Development,American Research Institute for Policy Development,2334296X|23342978 +Journal of Education and Learning,Canadian Center of Science and Education,19275250|19275269 +Journal of Education and Learning (EduLearn),Institute of Advanced Engineering and Science,20899823|23029277 +Journal of Education and Research,Nepal Journals Online,20910118|20912560 +Journal of Education and Sociology,Progress IPS,2078032X|2078032X +Journal of Education and Training,"""Macrothink Institute, Inc.""",23309709 +Journal of Education and Training Studies,Redfame Publishing,2324805X|23248068 +Journal of Education and Work,Informa UK (Taylor & Francis),13639080|14699435 +Journal of Education Finance,Muse - Johns Hopkins University Press,19446470 +Journal of Education for Business,Informa UK (Taylor & Francis),08832323|19403356 +Journal of Education for Librarianship,JSTOR,00220604| +Journal of Education for Library and Information Science,JSTOR,07485786| +Journal of Education for Library and Information Science Online,DEStech Publications,23282967 +Journal of Education for Social Work,Informa UK (Taylor & Francis),00220612| +Journal of Education for Students Placed at Risk (JESPAR),Informa UK (Taylor & Francis),10824669|15327671 +Journal of Education for Sustainable Development,SAGE Publications,09734082|09734074 +Journal of Education for Teaching International Research and Pedagogy,Informa UK (Taylor & Francis),02607476|13600540 +Journal of Education Policy,Informa UK (Taylor & Francis),02680939|14645106 +Journal of Educational & Psychological Sciences,Scientific Publishing Center,17263670| +Journal of Educational Administration,Emerald (MCB UP ),09578234|00000000 +Journal of Educational Administration & History,Informa UK (Taylor & Francis),00220620|14787431 +Journal of Educational and Behavioral Statistics,American Educational Research Association,10769986|19351054 +Journal of Educational and Developmental Psychology,Canadian Center of Science and Education,19270526|19270534 +Journal of Educational and Psychological Consultation,Informa UK (Taylor & Francis),10474412|1532768X +Journal of Educational and Psychological Studies,"""Al Manhal FZ, LLC""",22186506| +Journal of Educational and Social Research,Mediterranean Center of Social and Educational Research,2239978X|22400524 +Journal of Educational Change,Springer-Verlag,13892843|15731812 +Journal of Educational Computing Research,SAGE Publications,07356331|15414140 +Journal of Educational Evaluation for Health Professions,National Health Personnel Licensing Examination Board of the Republic of Korea,17381339|19755937 +Journal of Educational Issues,"""Macrothink Institute, Inc.""",23772263 +Journal of Educational Measurement,Wiley Blackwell (Blackwell Publishing),00220655|17453984 +Journal of Educational Media,Informa UK (Taylor & Francis),13581651|14699443 +Journal of Educational Media Memory and Society,Berghahn Books,20416938|20416946 +Journal of Educational Policies and Current Practices,Macro World Publishing,21473501|21489688 +Journal of Educational Psychology,American Psychological Association,00220663|19392176 +Journal of educational Research Institute,"""Research Institute of Education Science, Jeju National University""",12292702| +Journal of Educational Sciences Research,Eurasian Society of Educational Research,21465266 +Journal of Educational Sociology,JSTOR,08853525| +Journal of Educational Statistics,American Educational Research Association,03629791| +Journal of Educational Technology,Korean Society for Educational Technology,1225424X| +Journal of Educational Technology Systems,SAGE Publications,00472395|15413810 +Journal of Educational Television,Informa UK (Taylor & Francis),02607417| +Journal of Ege University School of Dentistry,"""LookUs Bilisim, Ltd.""",13027476| +Journal of Egyptian History,Brill Academic Publishers,18741657|18741665 +Journal of Elasticity,Springer-Verlag,03743535|15732681 +Journal of Elastomers and Plastics,SAGE Publications,00952443|15308006 +Journal of Elder Abuse & Neglect,Informa UK (Taylor & Francis),08946566|15404129 +Journal of Elections Public Opinion & Parties,Informa UK (Taylor & Francis),13689886| +Journal of Elections Public Opinion and Parties,Informa UK (Taylor & Francis),17457289|17457297 +Journal of Electrical & Electronic Systems,OMICS Publishing Group,23320796 +Journal of Electrical & Electronics,OMICS Publishing Group,2167101X +Journal of Electrical and Computer Engineering,Hindawi Publishing Corporation,20900147|20900155 +Journal of Electrical and Electronics Engineering Research,Academic Journals,21412367 +Journal of Electrical Bioimpedance,University of Oslo Library,18915469 +Journal of Electrical Engineering,De Gruyter Open Sp. z o.o. ,13353632|13353632 +Journal of Electrical Engineering,Hans Publishers,23335394|23335424 +Journal of Electrical Engineering & Electronic Technology,OMICS Publishing Group,23259833 +Journal of Electrical Engineering and Science,DJ Publications,24551945 +Journal of Electrical Engineering and Technology,The Korean Institute of Electrical Engineers,19750102| +Journal of Electrical Systems and Information Technology,Elsevier ,23147172| +Journal of Electroanalytical Chemistry,Elsevier ,00220728|00220728 +Journal of Electroanalytical Chemistry,Elsevier ,15726657| +Journal of Electroanalytical Chemistry (1959),Elsevier ,03681874| +Journal of Electroanalytical Chemistry and Interfacial Electrochemistry,Elsevier ,00220728| +Journal of Electrocardiology,Elsevier ,00220736| +Journal of Electroceramics,Springer-Verlag,13853449|15738663 +Journal of Electrochemical Energy Conversion and Storage,ASME International ,23816872| +Journal of Electrochemical Science and Engineering,International Association of Physical Chemists,18479286 +Journal of Electrochemical Science and Technology,The Korean Electrochemical Society,20938551| +Journal of Electromagnetic Analysis and Application,"""Scientific Research Publishing, Inc.""",19420730|19420749 +Journal of electromagnetic engineering and science,Korean Institute of Electromagnetic Engineering and Science,22348409| +Journal of Electromagnetic Waves and Applications,Informa UK (Taylor & Francis),09205071|15693937 +Journal of Electromyography and Kinesiology,Elsevier ,10506411| +Journal of Electron Microscopy,Oxford University Press,00220744|14779986 +Journal of Electron Microscopy Technique,Wiley Blackwell (John Wiley & Sons),07410581|15530817 +Journal of Electron Spectroscopy and Related Phenomena,Elsevier ,03682048| +Journal of Electronic and Electrical Engineering,Bioinfo Publications,09768106|09768114 +Journal of Electronic Banking Systems,IBIMA Publishing,21659982 +Journal of Electronic Commerce in Organizations,IGI Global,15392937|15392929 +Journal of Electronic Imaging,SPIE - International Society for Optical Engineering,10179909| +Journal of Electronic Materials,Springer-Verlag,03615235|1543186X +JOURNAL OF ELECTRONIC MEASUREMENT AND INSTRUMENT,China Science Publishing & Media Ltd.,10007105| +Journal of Electronic Packaging,ASME International ,10437398| +Journal of Electronic Publishing,University of Michigan Library,10802711 +Journal of Electronic Resources in Law Libraries,"""Informa UK (Haworth Press, Inc.,)""",15450422| +Journal of Electronic Resources in Medical Libraries,Informa UK (Taylor & Francis),15424065|15424073 +Journal of Electronic Resources Librarianship,Informa UK (Taylor & Francis),1941126X|19411278 +Journal of Electronic Testing,Springer-Verlag,09238174|15730727 +Journal of Electronics (China),Springer-Verlag,02179822|19930615 +Journal of Electronics and Control,Informa UK (Taylor & Francis),03681947| +Journal of Electronics Cooling and Thermal Control,"""Scientific Research Publishing, Inc.""",21626162|21626170 +JOURNAL OF ELECTRONICS INFORMATION TECHNOLOGY,China Science Publishing & Media Ltd.,10095896| +Journal of Electronics Manufacturing,World Scientific ,09603131| +Journal of Electrophoresis,Japanese Electrophoresis Society,13499394|13499408 +Journal of Electrophysiology,Wiley Blackwell (Blackwell Publishing),08921059| +Journal of Electrostatics,Elsevier ,03043886| +Journal of Elementary Science Education,Springer-Verlag,1090185X| +Journal of Elemntology,Polish Society for Magnesium Research,16442296| +Journal of Embryo Transfer,Korean Society of Embryo Transfer,12254991|22880178 +Journal of EMDR Practice and Research,Springer Publishing Company,19333196|00000000 +Journal of Emergencies Trauma and Shock,Medknow Publications,09742700| +Journal of Emergency Management,Weston Medical Publishers,15435865| +Journal of Emergency Medicine,Elsevier ,07364679| +Journal of Emergency Medicine & Critical Care,Avens Publishing Group,24694045 +Journal of Emergency Medicine and Intensive Care,Elyns Group LLC,24701033 +Journal of Emergency Medicine Case Reports,AVES Publishing Co.,21499934 +Journal of Emergency Medicine Trauma and Acute Care,Hamad bin Khalifa University Press (HBKU Press),19997094| +Journal of Emergency Medicine Trauma and Acute Care,Hamad bin Khalifa University Press (HBKU Press),19954522| +Journal of Emergency Nursing,Elsevier ,00991767| +Journal of Emergency Practice and Trauma,International Society for Phytocosmetic Sciences,23834544| +Journal of Emerging Knowledge on Emerging Markets,"""Kennesaw State University, Horace W. Sturgis Library""",1946651X +Journal of Emerging Market Finance,SAGE Publications,09726527|09730710 +Journal of Emerging Technologies in Accounting,American Accounting Association,15541908|15587940 +Journal of Emerging Technologies in Web Intelligence,Engineering and Technology Publishing,17980461| +Journal of Emotional Abuse,Informa UK (Taylor & Francis),10926798|15404714 +Journal of Emotional and Behavioral Disorders,SAGE Publications,10634266|15384799 +Journal of Empirical Finance,Elsevier ,09275398| +Journal of Empirical Legal Studies,Wiley Blackwell (Blackwell Publishing),17401453|17401461 +Journal of Empirical Research on Human Research Ethics,SAGE Publications,15562646|15562654 +Journal of Empirical Studies,Pak Publishing Group,2312623X|23126248 +Journal of Empirical Theology,Brill Academic Publishers,09222936|15709256 +Journal of Employment Counseling,Wiley Blackwell (John Wiley & Sons),00220787| +Journal of Enam Medical College,Bangladesh Journals Online,22276688|23049316 +Journal of Encapsulation and Adsorption Sciences,"""Scientific Research Publishing, Inc.""",21614865|21614873 +Journal of End-to-End-testing,Elsevier ,99999994| +Journal of Endocrinological Investigation,Springer-Verlag,03914097|17208386 +Journal of Endocrinology,Bioscientifica,00220795|14796805 +Journal of Endocrinology & Reproduction,Society for Reproductive Biology and Comparative Endocrinology,0971913X|24551244 +Journal of Endocrinology and Diabetes,Symbiosis Group,23746890|23746890 +Journal of Endocrinology and Diabetes Mellitus,Synergy Publishers,23109971 +Journal of Endocrinology and Metabolism,"""Elmer Press, Inc.""",19232861|19232861 +Journal of Endocrinology Metabolism and Diabetes of South Africa,Informa UK (Taylor & Francis),16089677|22201009 +Journal of Endodontics,Elsevier ,00992399| +Journal of Endometriosis,"""Wichtig Publishing, SRL""",20359969| +Journal of Endotoxin Research,SAGE Publications,09680519| +Journal of Endourology,Mary Ann Liebert,08927790|1557900X +Journal of Endourology Case Reports,Mary Ann Liebert,23799889|23799889 +Journal of Endourology Part B Videourology,Mary Ann Liebert,21511136|21511136 +Journal of Endovascular Surgery,International Society of Endovascular Specialists,10746218| +Journal of Endovascular Therapy,SAGE Publications,15266028|15451550 +Journal of Energetic Materials,Informa UK (Taylor & Francis),07370652|15458822 +Journal of Energy,American Institute of Aeronautics and Astronautics,01460412|15555917 +Journal of Energy,Hindawi Publishing Corporation,2356735X|2314615X +Journal of Energy & Natural Resources Law,Informa UK (Taylor & Francis),02646811|23764538 +Journal of Energy and Natural Resources,Science Publishing Group,23307366| +Journal of Energy and Power Engineering,David Publishing Company,19348975|19348983 +Journal of Energy Bioscience,"""Sophia Publishing Group, Inc.""",19251963 +Journal of Energy Chemistry,Elsevier ,20954956| +Journal of Energy Engineering,American Society of Civil Engineers,07339402|19437897 +Journal of Energy Engineering,The Korean Society for Energy Engineering,15987981| +Journal of Energy Finance & Development,Elsevier ,10857443| +Journal of Energy Resources Technology,ASME International ,01950738| +Journal of Energy Storage,Elsevier ,2352152X| +Journal of Engineering,Hindawi Publishing Corporation,23144912|23144904 +Journal of Engineering & Technology,Medknow Publications,09768580| +Journal of Engineering and Applied Sciences,Science Alert,1816949X| +Journal of Engineering and Architecture,American Research Institute for Policy Development,23342986|23342994 +Journal of Engineering and Computer Innovations,Academic Journals,21416508 +Journal of Engineering and Computer Sciences,"""Al Manhal FZ, LLC""",16584023| +Journal of Engineering and Technological Sciences,The Institute for Research and Community Services ITB,23375779|23385502 +Journal of Engineering and Technology Management,Elsevier ,09234748| +Journal of Engineering and Technology Research,Academic Journals,20069790 +Journal of Engineering Design,Informa UK (Taylor & Francis),09544828|14661837 +Journal of Engineering Design and Technology,Emerald (MCB UP ),17260531| +Journal of Engineering Education,Wiley Blackwell (John Wiley & Sons),10694730| +Journal of Engineering Education Research,Korean Society for Engineering Education,17386454| +Journal of Engineering Education Transformations,Rajarambapu Institute of Technology,23492473|23941707 +Journal of Engineering for Gas Turbines and Power,ASME International ,07424795| +Journal of Engineering for Industry,ASME International ,00220817| +Journal of Engineering for Power,ASME International ,00220825| +Journal of Engineering for Sustainable Community Development,College Publishing,21662509|21662517 +Journal of Engineering Geology and Hydrogeology,Sciknow Publications,23339632 +Journal of Engineering Management and Competitiveness,Centre for Evaluation in Education and Science,23349638| +Journal of Engineering Materials and Technology,ASME International ,00944289| +Journal of Engineering Mathematics,Springer-Verlag,00220833|15732703 +Journal of Engineering Mechanics,American Society of Civil Engineers,07339399|19437889 +Journal of Engineering Physics,Springer-Verlag,00220841| +Journal of Engineering Physics and Thermophysics,Springer-Verlag,00298131| +Journal of Engineering Physics and Thermophysics,Springer-Verlag,10620125|1573871X +Journal of Engineering Research,Springer - Global Science Journals,23071877|23071885 +JOURNAL OF ENGINEERING STUDIES,China Science Publishing & Media Ltd.,16744969| +Journal of Engineering Thermophysics,Pleiades Publishing,18102328|19905432 +Journal of English as a Lingua Franca,Walter de Gruyter GmbH,21919216|2191933X +Journal of English for Academic Purposes,Elsevier ,14751585| +Journal of English Language and Literature,Techmind Research Society,23682132 +Journal of English Linguistics,SAGE Publications,00754242|00000000 +Journal of Enhanced Heat Transfer,Begell House Inc.,10655131| +Journal of Enterprise Information Management,Emerald (MCB UP ),17410398|00000000 +Journal of Enterprise Resource Planning Studies,IBIMA Publishing,21554781 +Journal of Enterprise Transformation,Informa UK (Taylor & Francis),19488289|19488297 +Journal of Enterprising Communities People and Places in the Global Economy,Emerald (MCB UP ),17506204| +Journal of Enterprising Culture,World Scientific ,02184958|17936330 +Journal of Entomological and Acarological Research,PAGEPress Publications,2038324X|22797084 +Journal of Entomological Research,Diva Enterprises Private Limited,03789519|09744576 +Journal of Entomological Science,BioOne (Georgia Entomological Society),07498004| +Journal of Entomology,Science Alert,18125670|18125689 +Journal of Entomology and Nematology,Academic Journals,20069855 +Journal of entomology and zoology,Smithsonian Institution Biodiversity Heritage Library,00958530| +Journal of Entomology Series A General Entomology,Wiley Blackwell (Blackwell Publishing),00472409| +Journal of Entomology Series B Taxonomy,Wiley Blackwell (Blackwell Publishing),00472417| +Journal of Entrepreneurship,SAGE Publications,09713557|09730745 +Journal of Entrepreneurship & Organization Management,OMICS Publishing Group,2169026X +Journal of Entrepreneurship and Business,"""Faculty of Entrepeneurship and Business, Universiti Malaysia Kelantan""",22898298 +Journal of Entrepreneurship and Business Innovation,"""Macrothink Institute, Inc.""",23328851|23328851 +Journal of Entrepreneurship and Innovation in Emerging Economies,SAGE Publications,23939575|23949945 +Journal of Entrepreneurship and Public Policy,Emerald (MCB UP ),20452101| +Journal of Entrepreneurship and Sustainability Issues,Entrepreneurship and Sustainability Center,23450282 +Journal of Entrepreneurship in Emerging Economies,Emerald (MCB UP ),20534604| +Journal of Entrpreneurial and Organizational Diversity,EURICSE - European Research Institute on Cooperative and Social Enterprises,22818642 +Journal of Enviromental Immunology and Toxicology,"""Hong Kong STM Publishing Co., Ltd.""",22251219 +Journal of Environment and Ecology,"""Macrothink Institute, Inc.""",21576092 +Journal of Environment and Engineering,The Japan Society of Mechanical Engineers,1880988X +JOURNAL OF ENVIRONMENT AND HEALTH SCIENCE,Ommega Online Publishers,23786841 +Journal of Environment and Human,"""Scientific Online Publishing, Co., Ltd.""",23738324|23738332 +Journal of Environment Pollution and Human Health,"""Science and Education Publishing Co., Ltd.""",23343397| +Journal of Environmental & Analytical Toxicology,OMICS Publishing Group,21610525 +Journal of Environmental Accounting and Management,L&H Scientific Publishing LLC,23256192|23256206 +Journal of Environmental Analytical Chemistry,OMICS Publishing Group,23802391 +Journal of Environmental and Engineering Geophysics,GeoScienceWorld,10831363|19432658 +Journal of Environmental and Occupational Science,ScopeMed International Medical Journal Managment and Indexing System,21468311| +Journal of Environmental and Public Health,Hindawi Publishing Corporation,16879805|16879813 +Journal of Environmental Assessment Policy and Management,World Scientific ,14643332|17575605 +Journal of Environmental Chemical Engineering,Elsevier ,22133437| +Journal of Environmental Chemistry,Japan Society for Environmental Chemistry,09172408|18825818 +Journal of Environmental Chemistry and Ecotoxicology,Academic Journals,2141226X +Journal of Environmental Conservation Engineering,Society of Environmental Conservation Engineering,03889459|18828590 +Journal of Environmental Conservation Research,Sciknow Publications,23299401 +Journal of Environmental Economics and Management,Elsevier ,00950696|10960449 +Journal of Environmental Economics and Policy,Informa UK (Taylor & Francis),21606544|21606552 +Journal of Environmental Engineering,American Society of Civil Engineers,07339372|19437870 +Journal of Environmental Engineering (Transactions of AIJ),Architectural Institute of Japan,13480685|1881817X +journal of Environmental Engineering and Ecological Science,Herbert Publications,20501323 +Journal of Environmental Engineering and Landscape Management,Vilnius Gediminas Technical University,16486897|18224199 +Journal of Environmental Engineering and Science,Thomas Telford Ltd.,14962551|1496256X +Journal of Environmental Extension,African Journals Online ,15955125 +Journal of Environmental Geography,De Gruyter Open Sp. z o.o. ,2060467X +Journal of Environmental Health Science and Engineering,Springer (Biomed Central Ltd.),2052336X|2052336X +Journal of Environmental Impact Assessment,Korean Society of Environmental Impact Assessment,12257184| +Journal of Environmental Informatics,International Society for Environmental Information Sciences,17262135|16848799 +Journal of Environmental Law,Oxford University Press,09528873|1464374X +Journal of Environmental Management,Elsevier ,03014797|10958630 +Journal of Environmental Management and Tourism,De Gruyter Open Sp. z o.o. ,20687729| +Journal of Environmental Medicine,Wiley Blackwell (John Wiley & Sons),10951539|10991301 +Journal of Environmental Monitoring,The Royal Society of Chemistry,14640325|14640333 +Journal of Environmental Monitoring and Restoration,Society of Advocates for Sustainable Environment,15427102| +Journal of Environmental Nanotechnology,Journal of Environmental Nanotechnology,22790748|23195541 +Journal of Environmental Pathology Toxicology and Oncology,Begell House Inc.,07318898| +Journal of Environmental Planning and Management,Informa UK (Taylor & Francis),09640568|13600559 +Journal of Environmental Policy,Korea Environment Institute,15987582| +Journal of Environmental Policy & Planning,Informa UK (Taylor & Francis),1523908X|15227200 +Journal of Environmental Policy and Administration,Korea Environmental Policy and Administration Society,1598835X| +Journal of Environmental Polymer Degradation,Springer-Verlag,10647564| +Journal of Environmental Professionals Sri Lanka,Sri Lanka Journals Online ,22791809| +Journal of Environmental Protection,"""Scientific Research Publishing, Inc.""",21522197|21522219 +Journal of Environmental Psychology,Elsevier ,02724944|15229610 +Journal of Environmental Quality,American Society of Agronomy,00472425|15372537 +Journal of Environmental Radioactivity,Elsevier ,0265931X| +Journal of Environmental Science and Engineering - A,David Publishing Company,21625298|21625301 +Journal of Environmental Science and Engineering B,David Publishing Company,21625263|21625271 +Journal of Environmental Science and Engineering Technology,Savvy Science Publisher,23118741 +Journal of Environmental Science and Health Part A,Informa UK (Marcel Dekker),10934529|15324117 +Journal of Environmental Science and Health Part A Environmental Science and Engineering,Informa UK (Taylor & Francis),03601226| +Journal of Environmental Science and Health Part A Environmental Science and Engineering and Toxicology,Informa UK (Taylor & Francis),10771204| +Journal of Environmental Science and Health Part B,Informa UK (Marcel Dekker),03601234|15324109 +Journal of Environmental Science and Health Part C,Informa UK (Marcel Dekker),10590501|15324095 +Journal of Environmental Science and Health Part C Environmental Carcinogenesis Reviews,Informa UK (Taylor & Francis),07363001| +Journal of Environmental Science and Natural Resources,Bangladesh Journals Online,19997361|24088633 +Journal of Environmental Science and Technology,Science Alert,19947887| +Journal of Environmental Science for Sustainable Society,"""Graduate School of Environmental Science, Okayama University""",18815073 +Journal of Environmental Science International,The Korean Environmental Science Society,12254517|22873503 +Journal of Environmental Sciences,Elsevier ,10010742| +Journal of Environmental Solutions for Oil Gas and Mining,College Publishing,2377374X|23773545 +Journal of Environmental Studies and Sciences,Springer-Verlag,21906483|21906491 +Journal of Environmental Sustainability,Wallace Center,21592519 +Journal of Environmental Systems,Portico,00472433|15413802 +Journal of Environmentally Friendly Processes,Petrodex Publication Group,23281383| +Journal of Enzyme Inhibition,Informa UK (Taylor & Francis),87555093| +Journal of Enzyme Inhibition and Medicinal Chemistry,Informa UK (Taylor & Francis),14756366|14756374 +Journal of Enzyme Research,Bioinfo Publications,09767657|09767665 +Journal of Epidemiological Research,Sciedu Press,23779306|23779330 +Journal of Epidemiology,Japan Epidemiological Association,09175040|13499092 +Journal of Epidemiology & Community Health,BMJ,0143005X|14702738 +Journal of Epidemiology and Biostatistics,Informa UK (Taylor & Francis),13595229|00000000 +Journal of Epidemiology and Global Health,Elsevier ,22106006| +Journal of Epidemiology and Preventive Medicine,Elyns Group LLC,23785179 +Journal of Epilepsy,Elsevier ,08966974| +Journal of Epilepsy and Clinical Neurophysiology,SciELO,16762649|16762649 +Journal of Epilepsy Research,Korean Epilepsy Society,22336249|22336257 +Journal of Epileptology,Walter de Gruyter GmbH,23000147 +Journal of Epithelial Biology & Pharmacology,Bentham Science,18750443| +Journal of Equine Science,Japan Society of Equine Science,13403516|13477501 +Journal of Equine Veterinary Science,Elsevier ,07370806| +Journal of Ergonomics,OMICS Publishing Group,21657556 +Journal of eScience Librarianship,University of Massachusetts Medical School,21613974 +Journal of Essential Oil Bearing Plants,Informa UK (Taylor & Francis),0972060X|09765026 +Journal of Essential Oil Research,Informa UK (Taylor & Francis),10412905|21638152 +Journal of Esthetic and Restorative Dentistry,Wiley Blackwell (Blackwell Publishing),14964155|17088240 +Journal of ETA Maritime Science,"""LookUs Bilisim, Ltd.""",21472955|21489386 +Journal of Ethics,The Korean Association of Ethics,12250511| +Journal of Ethics Education Studies,The Korean Ethics Education Association,17380545| +Journal of Ethiopian Medical Practice,African Journals Online ,15601560 +Journal of Ethnic & Cultural Diversity in Social Work,Informa UK (Taylor & Francis),15313204|15313212 +Journal of Ethnic and Migration Studies,Informa UK (Taylor & Francis),1369183X|14699451 +Journal of Ethnic Foods,Elsevier ,23526181| +Journal of Ethnicity in Criminal Justice,Informa UK (Taylor & Francis),15377938|15377946 +Journal of Ethnicity in Substance Abuse,Informa UK (Taylor & Francis),15332640|15332659 +Journal of Ethnobiology,BioOne (Society of Ethnobiology),02780771|21624496 +Journal of Ethnobiology and Ethnomedicine,Springer (Biomed Central Ltd.),17464269|17464269 +Journal of Ethnopharmacology,Elsevier ,03788741| +Journal of Ethology,Springer-Verlag,02890771|14395444 +Journal of EU Research in Business,IBIMA Publishing,21659990 +Journal of Eukaryotic Microbiology,Wiley Blackwell (Blackwell Publishing),10665234|15507408 +Journal of Eurasian Studies,Elsevier ,18793665| +Journal of Euromarketing,IMDA Press,10496483|15286967 +Journal of European Archaeology,Maney Publishing,09657665| +Journal of European Area Studies,Informa UK (Taylor & Francis),14608464|1469946X +Journal of European CME,Co-Action Publishing,21614083|21614083 +Journal of European Competition Law & Practice,Oxford University Press,20417764|20417772 +Journal Of European Education-Avrupa Eğitim Dergisi,Journal of European Education,21462674 +Journal of European Industrial Training,Emerald (MCB UP ),03090590|00000000 +Journal of European Integration,Informa UK (Taylor & Francis),07036337|14772280 +Journal of European Integration History,Nomos Verlag,09479511|09479511 +Journal of European Popular Culture,Intellect,20406134|20406142 +Journal of European Psychology Students,"""Ubiquity Press, Ltd.""",22226931|22226931 +Journal of European Public Policy,Informa UK (Taylor & Francis),13501763|14664429 +Journal of European Real Estate Research,Emerald (MCB UP ),17539269| +Journal of European Social Policy,SAGE Publications,09589287|00000000 +Journal of European Studies,SAGE Publications,00472441|17402379 +Journal of European Tort Law,Walter de Gruyter GmbH,18689612|18689620 +Journal of European Union Studies,Institute for EU Studies,17382319| +Journal of Evaluation in Clinical Practice,Wiley Blackwell (Blackwell Publishing),13561294|13652753 +Journal of Evidence Based Dental Practice,Elsevier - Mosby,15323382| +Journal of Evidence Based Medicine and Healthcare,Level Up Business Center,23492562|23492570 +Journal of Evidence-Based Complementary & Alternative Medicine,SAGE Publications,10761675|21565899 +Journal of Evidence-Based Dental Practice (Brazil Edition),Elsevier ,1877069X| +Journal of Evidence-Based Dental Practice (Portugal Edition),Elsevier ,18770681| +Journal of Evidence-Based Medicine,Wiley Blackwell (Blackwell Publishing),17565383|17565391 +Journal of Evidence-Based Social Work,Informa UK (Taylor & Francis),15433714|15433722 +Journal of Evidence-Informed Social Work,Informa UK (Taylor & Francis),23761407|23761415 +Journal of Evolution and Health,Ancestral Health Society,23343591 +Journal of Evolution Equations,Springer-Verlag,14243199|14243202 +Journal of Evolution of Medical and Dental Sciences,Akshantala Enterprises,22784748|22784802 +Journal of Evolutionary Biochemistry and Physiology,Pleiades Publishing,00220930|16083202 +Journal of Evolutionary Biology,Wiley Blackwell (Blackwell Publishing),1010061X|14209101 +Journal of Evolutionary Biology Research,Academic Journals,21416583 +Journal of Evolutionary Economics,Springer-Verlag,09369937|14321386 +Journal of Evolutionary Medicine,Ashdin Publishing,20907915|20907923 +Journal of Evolutionary Psychology,Akademiai Kiado Zrt.,17892082|15897397 +Journal of excellence in Computer Science and Engineering,DJ Publications,24551937 +Journal of Exclusion Studies,Diva Enterprises Private Limited,22314547|22314555 +Journal of exercise physiology,The Society of Physical Therapy Science,09127100| +Journal of Exercise Rehabilitation,Korean Society of Exercise Rehabilitation,2288176X|22881778 +Journal of Exercise Science & Fitness,Elsevier ,1728869X| +Journal of Exercise Science and Physiotherapy,Excercise Fitness and Health Alliance,9732020 +Journal of Exercise Sports & Orthopedics,Symbiosis Group,23746904 +Journal of Exotic Pet Medicine,Elsevier - WB Saunders,15575063| +Journal of Experiential Education,SAGE Publications,10538259|2169009X +Journal of Experimental & Clinical Assisted Reproduction,Springer (Biomed Central Ltd.),17431050| +Journal of Experimental & Clinical Cancer Research,Springer (Biomed Central Ltd.),17569966|17569966 +Journal of Experimental & Clinical Medicine,Elsevier ,18783317| +Journal of Experimental & Theoretical Artificial Intelligence,Informa UK (Taylor & Francis),0952813X|13623079 +Journal of Experimental Algorithmics,Association for Computing Machinery,10846654| +Journal of Experimental and Applied Animal Sciences,Modern Science Publishers,23145684|23145692 +Journal of Experimental and Clinical Anatomy,Medknow Publications,15962393|15962393 +Journal of Experimental and Clinical Medicine,Journal of Experimental and Clinical Medicine,13094483|13095129 +Journal of Experimental and Clinical Neurosciences,Swedish Science Pioneers,2001824X +Journal of Experimental and Integrative Medicine,ScopeMed International Medical Journal Managment and Indexing System,13094572| +Journal of Experimental and Theoretical Physics,Pleiades Publishing,10637761|10906509 +Journal of Experimental Animal Science,Elsevier ,09398600| +Journal of Experimental Biology,The Company of Biologists,00220949|14779145 +Journal of Experimental Biology and Agricultural Sciences,Journal of Experimental Biology and Agricultural Sciences,23208694 +Journal of Experimental Botany,Oxford University Press,00220957|14602431 +Journal of Experimental Child Psychology,Elsevier ,00220965|10960457 +Journal of Experimental Criminology,Springer-Verlag,15733750|15728315 +Journal of Experimental Marine Biology and Ecology,Elsevier ,00220981| +Journal of Experimental Medicine,The Rockefeller University Press,00221007|15409538 +Journal of Experimental Nanoscience,Informa UK (Taylor & Francis),17458080|17458099 +Journal of Experimental Neuroscience,"""Libertas Academica, Ltd.""",11790695 +Journal of Experimental Orthopaedics,Springer (Biomed Central Ltd.),21971153|21971153 +Journal of Experimental Pharmacology,Dove Medical Press,11791454 +Journal of Experimental Physics,Hindawi Publishing Corporation,23567368|23147849 +Journal of Experimental Political Science,Cambridge University Press,20522630|20522649 +Journal of Experimental Psychology,American Psychological Association,00221015| +Journal of Experimental Psychology Animal Behavior Processes,American Psychological Association,00977403|19392184 +Journal of Experimental Psychology Animal Learning and Cognition,American Psychological Association,23298456|23298464 +Journal of Experimental Psychology Applied,American Psychological Association,1076898X|19392192 +Journal of Experimental Psychology General,American Psychological Association,00963445|19392222 +Journal of Experimental Psychology Human Learning & Memory,American Psychological Association,00961515| +Journal of Experimental Psychology Human Perception & Performance,American Psychological Association,00961523|19391277 +Journal of Experimental Psychology Learning Memory and Cognition,American Psychological Association,02787393|19391285 +Journal of Experimental Psychopathology,"""Textrum, Ltd.""",20438087 +Journal of Experimental Sciences,Scienceflora Publishers Pvt. Ltd.,22181768 +Journal of Experimental Social Psychology,Elsevier ,00221031|10960465 +Journal of Experimental Stroke and Translational Medicine,Association of Experimental Stroke and Translational Medicine,1939067X| +Journal of Experimental Therapeutics and Oncology,Wiley Blackwell (Blackwell Publishing),13594117|13594117 +Journal of Experimental Zoology,Wiley Blackwell (John Wiley & Sons),0022104X|1097010X +Journal of Experimental Zoology Part A Comparative Experimental Biology,Wiley Blackwell (John Wiley & Sons),15488969|1552499X +Journal of Experimental Zoology Part A Ecological Genetics and Physiology,Wiley Blackwell (John Wiley & Sons),19325223|19325231 +Journal of Experimental Zoology Part B Molecular and Developmental Evolution,Wiley Blackwell (John Wiley & Sons),15525007|15525015 +Journal of Exposure Analysis and Environmental Epidemiology,Nature Publishing Group,10534245|10534245 +Journal of Exposure Science & Environmental Epidemiology,Nature Publishing Group,15590631|1559064X +Journal of Extension Systems,Journal of Extension Systems,09702989|09702989 +Journal of Extracellular Vesicles,Co-Action Publishing,20013078 +Journal of Extreme Events,World Scientific ,23457376|23826339 +Journal of Eye and Ophthalmology,Herbert Publications,20552408 +Journal of Facade Design and Engineering,IOS Press,2213302X|22133038 +Journal of Facilities Management,Emerald (MCB UP ),14725967| +Journal of Facility Planning Design and Management,"""Sagamore Publishing, LLC""",2331236X +Journal of Failure Analysis and Prevention,Springer-Verlag,15477029|18641245 +Journal of Family & Consumer Sciences,American Association of Family and Consumer Sciences,10821651| +Journal of Family and Community Medicine,Medknow Publications,13191683| +Journal of Family and Community Medicine,Medknow Publications,22308229| +Journal of Family and Consumer Sciences,American Association of Family and Consumer Sciences,15523934| +Journal of Family and Economic Issues,Springer-Verlag,10580476|15733475 +Journal of Family Business Management,Emerald (MCB UP ),20436238| +Journal of Family Business Strategy,Elsevier ,18778585| +Journal of Family Communication,Informa UK (Taylor & Francis),15267431|15327698 +Journal of Family Counseling,Informa UK (Taylor & Francis),00933171| +Journal of Family Ecology and Consumer Sciences / Tydskrif vir Gesinsekologie en Verbruikerswetenskappe,African Journals Online ,03785254|03785254 +Journal of Family History,SAGE Publications,03631990|00000000 +Journal of Family Issues,SAGE Publications,0192513X|15525481 +Journal of Family Medicine and Health Care,Science Publishing Group,24698326| +Journal of Family Medicine and Primary Care,Medknow Publications,22494863| +Journal of Family Nursing,SAGE Publications,10748407|00000000 +Journal of Family Planning and Reproductive Health Care,BMJ,14711893|20452098 +Journal of Family Psychology,American Psychological Association,08933200|19391293 +Journal of Family Psychotherapy,Informa UK (Taylor & Francis),08975353|15404080 +Journal of Family Social Work,Informa UK (Taylor & Francis),10522158|15404072 +Journal of Family Studies,Informa UK (Taylor & Francis),13229400|18393543 +Journal of Family Theory & Review,Wiley Blackwell (Blackwell Publishing),17562570|17562589 +Journal of Family Therapy,Wiley Blackwell (Blackwell Publishing),01634445|14676427 +Journal of Family Violence,Springer-Verlag,08857482|15732851 +Journal of Farm Economics,JSTOR,10711031| +Journal of Fashion Marketing and Management,Emerald (MCB UP ),13612026|17587433 +Journal of Fashion Technology & Textile Engineering,OMICS Publishing Group,23299568 +Journal of Feline Medicine & Surgery,SAGE Publications,1098612X|15322750 +Journal of Feline Medicine and Surgery Open Reports,SAGE Publications,20551169 +Journal of Feminist Family Therapy,Informa UK (Taylor & Francis),08952833|15404099 +Journal of Feminist Gender and Women Studies,Servicio de Publicaciones de la Universidad Autonoma de Madrid,24441198| +Journal of Feminist Studies in Religion,Indiana University Press,87554178|15533913 +Journal of Fermentation and Bioengineering,Elsevier ,0922338X| +Journal of Fermentation Technology,Elsevier ,03856380| +Journal of Fertilization In vitro,OMICS Publishing Group,21657491 +Journal of Fertilization In Vitro - IVF-Worldwide Reproductive Medicine Genetics & Stem Cell Biology,OMICS Publishing Group,23754508 +Journal of Fetal Medicine,Springer-Verlag,23481153|23488859 +Journal of Fiber Bioengineering and Informatics,Textile Bioengineering and Informatics Society,19408676| +Journal of Fiber Science and Technology,Society of Fiber Science & Technology Japan,21897654 +Journal of Field Archaeology,Maney Publishing,00934690|20424582 +Journal of Field Ornithology,Wiley Blackwell (Blackwell Publishing),02738570|15579263 +Journal of Field Robotics,Wiley Blackwell (John Wiley & Sons),15564959|15564967 +Journal of Film and Video,University of Illinois Press,07424671|19346018 +Journal of Film Music,Equinox Publishing,10877142|1758860X +Journal of Finance & Economic Research,"""Geist Science, Iqra University""",24152463|24152455 +Journal of Finance & Economics,Science and Education Centre of North America,22914951|2291496X +Journal of Finance and Accounting,Science Publishing Group,23307331| +Journal of Finance and Bank Management,American Research Institute for Policy Development,23336064|23336072 +Journal of Finance and Economics,"""Science and Education Publishing Co., Ltd.""",23287284| +Journal of Financial and Quantitative Analysis,Cambridge University Press,00221090|17566916 +Journal of Financial Crime,Emerald (MCB UP ),13590790| +Journal of Financial Econometrics,Oxford University Press,14798409|14798417 +Journal of Financial Economic Policy,Emerald (MCB UP ),17576385| +Journal of Financial Economics,Elsevier ,0304405X| +Journal of Financial Engineering,World Scientific ,23457686|23825596 +Journal of Financial Innovation,Instituto Brasileiro de Inovacao Financeira - IBRIF,23591005|23591005 +Journal of Financial Intermediation,Elsevier ,10429573|10960473 +Journal of Financial Management of Property and Construction,Emerald (MCB UP ),13664387| +Journal of Financial Markets,Elsevier ,13864181| +Journal of Financial Regulation,Oxford University Press,20534833|20534841 +Journal of Financial Regulation and Compliance,Emerald (MCB UP ),13581988| +Journal of Financial Reporting,American Accounting Association,23802146| +Journal of Financial Reporting and Accounting,Emerald (MCB UP ),19852517| +Journal of Financial Risk Management,"""Scientific Research Publishing, Inc.""",21679533|21679541 +Journal of Financial Services Marketing,Nature Publishing Group - Macmillan Publishers,13630539|14791846 +Journal of Financial Services Research,Springer-Verlag,09208550|15730735 +Journal of Financial Stability,Elsevier ,15723089| +Journal of Financial Studies & Research,IBIMA Publishing,2166000X +Journal of Financial Therapy,New Prairie Press,19457774|19449771 +Journal of Fire Protection Engineering,Springer-Verlag,10423915|1532172X +Journal of Fire Sciences,SAGE Publications,07349041|15308049 +Journal of Fish and Wildlife Management,U.S. Fish and Wildlife Service,1944687X|1944687X +Journal of Fish Biology,Wiley Blackwell (Blackwell Publishing),00221112|10958649 +Journal of Fish Diseases,Wiley Blackwell (Blackwell Publishing),01407775|13652761 +Journal of fish pathology,The Korean Society of Fish Pathology,12260819| +Journal of Fisheries,Journal of Fisheries,2311729X|23113111 +Journal of Fisheries & Livestock Production,OMICS Publishing Group,23322608 +Journal of Fisheries and Aquaculture,Bioinfo Publications,09769927|09769935 +Journal of Fisheries and Aquatic Science,Science Alert,18164927|19960751 +Journal of Fisheries and Marine Sciences Education,The Korean Society for Fisheries and Marine Sciences Education,12298999| +Journal of Fisheries International,Science Alert,18173381| +JOURNAL OF FISHERIES OF CHINA,China Science Publishing & Media Ltd.,10000615| +Journal of FisheriesSciences com,Scientific Web Journals (SWJ),1307234X +Journal of Fishery Sciences of China,China Science Publishing & Media Ltd.,10058737| +Journal of Fixed Point Theory and Applications,Springer-Verlag,16617738|16617746 +Journal of Flood Risk Management,Wiley Blackwell (Blackwell Publishing),1753318X|1753318X +Journal of Flow Chemistry,Akademiai Kiado Zrt.,2062249X|20630212 +Journal of Flow Control Measurement & Visualization,"""Scientific Research Publishing, Inc.""",23293322|23293330 +Journal of Flow Visualization and Image Processing,Begell House Inc.,10653090| +Journal of Fluency Disorders,Elsevier ,0094730X| +Journal of Fluid Flow Heat and Mass Transfer,Avestia Publishing,23686111 +Journal of Fluid Machinery,Korean Society for Fluid machinery,12269883| +Journal of Fluid Mechanics,Cambridge University Press,00221120|14697645 +Journal of Fluid Mechanics Digital Archive,Cambridge University Press,17506859|17506859 +Journal of Fluid Science and Technology,The Japan Society of Mechanical Engineers,18805558 +Journal of Fluids,Hindawi Publishing Corporation,23567376|23146826 +Journal of Fluids and Structures,Elsevier ,08899746|10958622 +Journal of Fluids Engineering,ASME International ,00982202| +Journal of Fluorescence,Springer-Verlag,10530509|15734994 +Journal of Fluorine Chemistry,Elsevier ,00221139| +Journal of Folklore Research,Indiana University Press,07377037|15430413 +Journal of Food & Nutritional Disorders,OMICS Publishing Group,23249323 +Journal of Food and Agriculture,Sri Lanka Journals Online ,18004288| +Journal of Food and Drug Analysis,Elsevier ,10219498| +Journal of Food and Health Science,Scientific Web Journals (SWJ),21490473 +Journal of Food and Nutrition,JScholar,23756829| +Journal of Food and Nutrition Research,"""Science and Education Publishing Co., Ltd.""",23331119| +Journal of Food and Nutrition Sciences,Science Publishing Group,23307285| +Journal of Food Biochemistry,Wiley Blackwell (Blackwell Publishing),01458884|17454514 +Journal of Food Chemistry and Nanotechnology,United Scientific Group,24714291 +Journal of Food Composition and Analysis,Elsevier ,08891575|10960481 +Journal of Food Engineering,Elsevier ,02608774| +Journal of Food Hygiene and Safety,The Korean Society of Food Hygiene an Safety,12291153| +Journal of Food Lipids,Wiley Blackwell (Blackwell Publishing),10657258|17454522 +Journal of Food Measurement & Characterization,Springer-Verlag,21934126|21934134 +Journal of Food Nutrition and Dietetics,Elyns Group LLC,24709794 +Journal of Food Process Engineering,Wiley Blackwell (Blackwell Publishing),01458876|17454530 +Journal of Food Processing,Hindawi Publishing Corporation,23567384|2314839X +Journal of Food Processing & Beverages,Avens Publishing Group,23324104 +Journal of Food Processing & Technology,OMICS Publishing Group,21577110 +Journal of Food Processing and Preservation,Wiley Blackwell (Blackwell Publishing),01458892|17454549 +Journal of Food Products Marketing,Informa UK (Taylor & Francis),10454446|15404102 +Journal of Food Protection,International Association for Food Protection,0362028X| +Journal of Food Quality,Wiley Blackwell (Blackwell Publishing),01469428|17454557 +Journal of Food Research,Canadian Center of Science and Education,19270887|19270895 +Journal of Food Resource Science,Science Alert,22243550| +Journal of Food Safety,Wiley Blackwell (Blackwell Publishing),01496085|17454546 +Journal of Food Science,Wiley Blackwell (Blackwell Publishing),00221147|17503841 +Journal of Food Science and Engineering,David Publishing Company,21595828|21645795 +Journal of Food Science and Nutrition,The Korean Society of Food Science and Nutrition,1226332X| +Journal of Food Science and Technology,Springer-Verlag,00221155|09758402 +Journal of Food Science and Technology Nepal,Nepal Journals Online,18160727| +Journal of Food Science Education,Wiley Blackwell (Blackwell Publishing),15414329|15414329 +Journal of Food Security,"""Science and Education Publishing Co., Ltd.""",23720115| +Journal of Food Studies,"""Macrothink Institute, Inc.""",21661073 +Journal of Food System Research,The Food System Research Association of Japan,13410296|18845118 +Journal of Food Technology,Science Alert,16848462| +Journal of Food Technology in Africa,African Journals Online ,10286098 +Journal of Food Technology Research,Pak Publishing Group,23126426|23123796 +Journal of Foodservice,Wiley Blackwell (Blackwell Publishing),17480140|17454506 +Journal of Foodservice Business Research,Informa UK (Taylor & Francis),15378020|15378039 +Journal of Foot and Ankle Research,Springer (Biomed Central Ltd.),17571146|17571146 +Journal of Foot and Ankle Surgery (Asia Pacific),Jaypee Brothers Medical Publishing,23947705 +Journal of Foot and Ankle Surgery Asia Pacific,Jaypee Brothers Medical Publishing,2348280X| +Journal of Forecasting,Wiley Blackwell (John Wiley & Sons),02776693|1099131X +Journal of Foreign Language Teaching and Applied Linguistics,International Burch University,23035528| +Journal of Foreign Languages Cultures and Civilizations,American Research Institute for Policy Development,23335882|23335890 +Journal of Foreign Legislation and Comparative Law,Infra-M Academic Publishing House,19913222| +Journal of Forensic and Legal Medicine,Elsevier ,1752928X| +Journal of Forensic Biomechanics,OMICS Publishing Group,20902689|20902697 +Journal of Forensic Dental Sciences,Medknow Publications,09742948| +Journal of Forensic Dental Sciences,Medknow Publications,09751475| +Journal of Forensic Economics,Journal of Forensic Economics,08985510| +Journal of Forensic Investigation,Avens Publishing Group,23300396 +Journal of Forensic Neuropsychology,Informa UK (Taylor & Francis),15211029|15407136 +Journal of Forensic Nursing,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15563693|19393938 +Journal of Forensic Practice,Emerald (MCB UP ),20508794| +Journal of Forensic Psychiatry,Informa UK (Taylor & Francis),09585184|14699478 +Journal of Forensic Psychiatry and Psychology,Informa UK (Taylor & Francis),14789949|14789957 +Journal of Forensic Psychology Practice,Informa UK (Taylor & Francis),15228932|15229092 +Journal of Forensic Radiology and Imaging,Elsevier ,22124780| +Journal of Forensic Research,OMICS Publishing Group,21577145 +Journal of Forensic Research and Crime Studies,JScholar,23747900| +JOURNAL OF FORENSIC SCIENCE & CRIMINOLOGY,"""Annex Publishers, LLC""",23489804 +Journal of Forensic Science and Medicine,Medknow Publications,23495014| +Journal of Forensic Sciences,Wiley Blackwell (Blackwell Publishing),00221198|15564029 +Journal of Forensic Social Work,Informa UK (Taylor & Francis),1936928X|19369298 +Journal of Forensic Toxicology and Pharmacology,OMICS Publishing Group,23259841 +Journal of Forest and Environmental Science,"""Institute of Forest Science, Kangwon National University""",22889744| +Journal of Forest and Livelihood,Nepal Journals Online,16840186| +Journal of Forest Economics,Elsevier ,11046899| +Journal of Forest Engineering,Informa UK (Taylor & Francis),08435243|23278897 +Journal of Forest History,JSTOR,00945080| +Journal of Forest Research,Springer-Verlag,13416979|16107403 +Journal of Forest Science,Czech Academy of Agricultural Sciences,12124834|1805935X +Journal of Forest Science,"""Institute of Forest Science, Kangwon National University""",22872396| +Journal of Forestry,Society of American Foresters,00221201| +Journal of Forestry Research,Springer-Verlag,1007662X|19930607 +Journal of Forests,Pak Publishing Group,24138398|24093807 +Journal of Fourier Analysis and Applications,Springer-Verlag,10695869|15315851 +Journal of Fractal Geometry,European Mathematical Society Publishing House,23081309| +Journal of Fractional Calculus & Applications,Scientific Publishing Center,20905858| +Journal of Free Radicals in Biology & Medicine,Elsevier ,07485514| +Journal of French and Francophone Philosophy,"""University Library System, University of Pittsburgh""",19366280|21551162 +Journal of French Language Studies,Cambridge University Press,09592695|14740079 +Journal of Freshwater Ecology,Informa UK (Taylor & Francis),02705060|21566941 +Journal of Friction and Wear,Allerton Press,10683666|19349386 +Journal of Frugal Innovation,Springer (Biomed Central Ltd.),21977917 +Journal of Fruit and Ornamental Plant Research,De Gruyter Open Sp. z o.o. ,12310948| +Journal of Fuel Cell Science and Technology,ASME International ,1550624X| +Journal of Fuel Chemistry and Technology,Elsevier ,18725813| +Journal of Fuels,Hindawi Publishing Corporation,23567392|2314601X +Journal of Function Spaces,Hindawi Publishing Corporation,23148896|23148888 +Journal of Function Spaces and Applications,Hindawi Publishing Corporation,20908997|09726802 +Journal of Functional Analysis,Elsevier ,00221236|10960783 +Journal of Functional And Environmental Botany,Diva Enterprises Private Limited,22311742|22311750 +Journal of Functional Biomaterials,MDPI AG,20794983 +Journal of Functional Foods,Elsevier ,17564646| +Journal of Functional Morphology and Kinesiology,MDPI AG,24115142 +Journal of Functional Programming,Cambridge University Press,09567968|14697653 +Journal of Fundamental and Applied Sciences,African Journals Online ,11129867 +Journal of Fundamentals of Renewable Energy and Applications,OMICS Publishing Group,20904533|20904541 +Journal of Fungi,MDPI AG,2309608X +Journal of Fungus,The Journal of Fungus,21476845| +Journal of Further and Higher Education,Informa UK (Taylor & Francis),0309877X|14699486 +Journal of Fusion Energy,Springer-Verlag,01640313|15729591 +JOURNAL OF FUTURE POLITICS,Korea Institute for Future Politics,22337148| +Journal of Futures Markets,Wiley Blackwell (John Wiley & Sons),02707314|10969934 +Journal of Fuzzy Logic and Intelligent Systems,Korean Institute of Intelligent Systems,15987078| +Journal of Fuzzy Set Valued Analysis,ISPACS GmbH,21934169 +Journal of Gambling Behavior,Springer-Verlag,07420714| +Journal of Gambling Issues,Journal of Gambling Issues,19107595| +Journal of Gambling Studies,Springer-Verlag,10505350|15733602 +Journal of Game Theory,Scientific and Academic Publishing,23250046| +Journal of Game-Supported Interactive Learning,Macro World Publishing,21481946|21499411 +Journal of Gaming & Virtual Worlds,Intellect,1757191X|17571928 +Journal of Gastric Cancer,The Korean Gastric Cancer Association (KAMJE),2093582X|20935641 +Journal of Gastric Disorders and Therapy ( ISSN 2381-8689 ),"""Sci Forschen, Inc.""",23818689 +Journal of Gastroenterology,Springer-Verlag,09441174|14355922 +Journal of Gastroenterology and Hepatobiliary Disorders,Elyns Group LLC,24709891 +Journal of Gastroenterology and Hepatology,Wiley Blackwell (Blackwell Publishing),08159319|14401746 +Journal of Gastroenterology and Hepatology Research,ACT Publishing Group,22243992| +Journal of Gastroenterology Pancreatology & Liver Disorders,Symbiosis Group,2374815X +Journal of Gastrointestinal & Digestive System,OMICS Publishing Group,2161069X +Journal of Gastrointestinal and Liver Diseases,Romanian Society of Gastroenterology and Hepatology,18418724|18421121 +Journal of Gastrointestinal Cancer,Springer-Verlag,19416628|19416636 +Journal of Gastrointestinal Oncology,AME Publishing Company,20786891|2219679X +Journal of Gastrointestinal Surgery,Springer-Verlag,1091255X|18734626 +Journal of Gay & Lesbian Issues in Education,Informa UK (Taylor & Francis),15410889|15410870 +Journal of Gay & Lesbian Mental Health,Informa UK (Taylor & Francis),19359705|19359713 +Journal of Gay & Lesbian Psychotherapy,Informa UK (Taylor & Francis),08917140|15407128 +Journal of Gay & Lesbian Social Services,Informa UK (Taylor & Francis),10538720|15404056 +Journal of Gender Culture and Health,Springer (Kluwer Academic Publishers),10873201| +Journal of Gender Studies,Informa UK (Taylor & Francis),09589236|14653869 +Journal of Gene Therapy,Avens Publishing Group,23813326 +Journal of Gene Therapy Aspects,Herbert Publications,2057164X +Journal of General and Family Medicine,The Japan Primary Care Association,21896577|21897948 +Journal of General and Family Medicine,The Japan Primary Care Association,21896577|21897948 +Journal of General and Molecular Virology,Academic Journals,21416648 +Journal of General Internal Medicine,Springer-Verlag,08848734|15251497 +Journal of General Microbiology,Microbiology Society,00221287| +Journal of General Plant Pathology,Springer-Verlag,13452630|1610739X +Journal of General Practice,OMICS Publishing Group,23299126 +Journal of General Virology,Microbiology Society,00221317|14652099 +Journal of Generalized Lie Theory and Applications,OMICS Publishing Group,17365279|17364337 +Journal of Generic Medicines The Business Journal for the Generic Medicines Sector,SAGE Publications,17411343|17417090 +Journal of Genes and Cells,"""DiscoverSys, Inc.""",24106887 +Journal of Genetic Counseling,Springer-Verlag,10597700|15733599 +Journal of Genetic Disorders & Genetic Reports,OMICS Publishing Group,23275790 +Journal of Genetic Engineering and Biotechnology,Elsevier ,1687157X| +Journal of Genetic Medicine,Korean Society of Medical Genetics,12261769|22339108 +Journal of Genetic Syndromes & Gene Therapy,OMICS Publishing Group,21577412 +Journal of Genetics,Springer-Verlag,00221333|09737731 +Journal of Genetics and Genomics,Elsevier ,16738527| +Journal of Genetics Study,Herbert Publications,20541112 +Journal of Genital System & Disorders,OMICS Publishing Group,23259728 +Journal of Genocide Research,Informa UK (Taylor & Francis),14623528|14699494 +Journal of Genome Science and Technology,American Scientific Publishers,15517551|1551756X +Journal of Genomes and Exomes,"""Libertas Academica, Ltd.""",22535004 +Journal of Genomics,Ivyspring International Publisher,18399940| +Journal of Geo-Engineering Sciences,IOS Press,22132880|22132899 +Journal of Geo-sciences,Scientific and Academic Publishing,21631697| +Journal of Geochemical Exploration,Elsevier ,03756742| +Journal of Geochemistry,Hindawi Publishing Corporation,23567406|23145803 +Journal of Geodesy,Springer-Verlag,09497714|14321394 +Journal of Geodesy and Geoinformation,UCTEA Chamber of Surveying and Cadastre Engineers,21471339| +Journal of Geodesy and Geomatics Engineering,David Publishing Company,23328223|23328223 +Journal of Geodetic Science,De Gruyter Open Sp. z o.o. ,20819919|20819943 +Journal of Geodynamics,Elsevier ,02643707| +Journal of Geographic Information System,"""Scientific Research Publishing, Inc.""",21511950|21511969 +Journal of Geographical Sciences,Springer-Verlag,1009637X|18619568 +Journal of Geographical Systems,Springer-Verlag,14355930|14355949 +Journal of Geography,Informa UK (Taylor & Francis),00221341|17526868 +Journal of Geography & Natural Disasters,OMICS Publishing Group,21670587 +Journal of Geography (Chigaku Zasshi),Tokyo Geographical Society,0022135X|18840884 +Journal of Geography and Earth Sciences,American Research Institute for Policy Development,23342447|23342455 +Journal of Geography and Geology,Canadian Center of Science and Education,19169779|19169787 +Journal of Geography and Regional Planning,Academic Journals,20701845 +Journal of Geography Environment and Earth Science International,Sciencedomain International,24547352 +Journal of Geography in Higher Education,Informa UK (Taylor & Francis),03098265|14661845 +Journal of Geolocation Geo-information and Geo-intelligence,"""Giftet, Inc.""",23805633| +Journal of Geological Research,Hindawi Publishing Corporation,16878833|16878841 +Journal of Geological Resource and Engineering,David Publishing Company,23282193|23282193 +Journal of Geology & Geosciences,OMICS Publishing Group,23296755 +Journal of Geology and Mining Research,Academic Journals,20069766 +Journal of geomagnetism and geoelectricity,"""Society of Geomagnetism and Earth, Planetary and Space Sciences""",00221392| +Journal of Geometric Analysis,Springer-Verlag,10506926|1559002X +Journal of Geometry,Springer-Verlag,00472468|14208997 +Journal of Geometry and Physics,Elsevier ,03930440| +Journal of Geometry and Symmetry in Physics,Prof. Marin Drinov Academic Publishing House,13125192|13145673 +Journal of Geophysical Research Atmospheres,Wiley Blackwell (John Wiley & Sons),2169897X| +Journal of Geophysical Research Atmospheres,Wiley Blackwell (John Wiley & Sons),01480227| +Journal of Geophysical Research Biogeosciences,Wiley Blackwell (John Wiley & Sons),21698953| +Journal of Geophysical Research Earth Surface,Wiley Blackwell (John Wiley & Sons),21699003| +Journal of Geophysical Research Oceans,Wiley Blackwell (John Wiley & Sons),21699275| +Journal of Geophysical Research Planets,Wiley Blackwell (John Wiley & Sons),21699097| +Journal of Geophysical Research Solid Earth,Wiley Blackwell (John Wiley & Sons),21699313| +Journal of Geophysical Research Space Physics,Wiley Blackwell (John Wiley & Sons),21699380|21699402 +Journal of Geophysics & Remote Sensing,OMICS Publishing Group,21690049 +Journal of Geophysics and Engineering,IOP Publishing,17422132|17422140 +Journal of Georgetown University-Qatar Middle Eastern Studies Student Association,Hamad bin Khalifa University Press (HBKU Press),23118148| +Journal of Geoscience and Environment Protection,"""Scientific Research Publishing, Inc.""",23274336|23274344 +Journal of Geoscience Education,National Association of Geoscience Teachers,10899995| +Journal of Geosciences,Czech Geological Society,18026222|18031943 +Journal of Geosciences and Geomatics,"""Science and Education Publishing Co., Ltd.""",23736690| +Journal of Geotechnical and Geoenvironmental Engineering,American Society of Civil Engineers,10900241|19435606 +Journal of Geotechnical Engineering,American Society of Civil Engineers,07339410|19448368 +Journal of Geriatric Cardiology,China Science Publishing & Media Ltd.,16715411| +Journal of Geriatric Drug Therapy,Informa UK (Taylor & Francis),87564629| +Journal of Geriatric Mental Health,Medknow Publications,23489995| +Journal of Geriatric Oncology,Elsevier ,18794068| +Journal of Geriatric Physical Therapy,Ovid Technologies (Wolters Kluwer) - National Strength & Conditioning,15398412| +Journal of Geriatric Psychiatry and Neurology,SAGE Publications,08919887|15525708 +Journal of Geriatrics,Hindawi Publishing Corporation,23567414|23147121 +Journal of Geriatrics and Palliative Care,Avens Publishing Group,23731133 +Journal of Germanic Linguistics,Cambridge University Press,14705427|14753014 +Journal of Gerontological Nursing,"""SLACK, Inc.""",00989134| +Journal of Gerontological Social Work,Informa UK (Taylor & Francis),01634372|15404048 +Journal of Gerontology,Oxford University Press,00221422| +Journal of Gerontology & Geriatric Research,OMICS Publishing Group,21677182 +Journal of Gifted Education and Creativity,Journal of Gifted Education and Creativity,21491410| +Journal of Gifted/Talented Education,The Korean Society for the Gifted,15988333| +Journal of Ginseng Research,Elsevier ,12268453| +Journal of Glacial Archaeology,Equinox Publishing,20503393|20503407 +Journal of Glaciology,Cambridge University Press,00221430|17275652 +Journal of Glaucoma,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10570829| +Journal of GLBT Family Studies,Informa UK (Taylor & Francis),1550428X|15504298 +Journal of Global Academy of Marketing Science,Informa UK (Taylor & Francis),12297119| +Journal of Global Antimicrobial Resistance,Elsevier ,22137165| +Journal of Global Communication,Diva Enterprises Private Limited,09740600|09762442 +Journal of Global Economics,OMICS Publishing Group,23754389 +Journal of Global Energy Issues,Columbia International Publishing,21632146 +Journal of Global Entrepreneurship Research,Springer (Biomed Central Ltd.),22517316|22517316 +Journal of Global Ethics,Informa UK (Taylor & Francis),17449626|17449634 +Journal of Global Fashion Marketing,Informa UK (Taylor & Francis),20932685|23254483 +Journal of Global Health,Edinburgh University Global Health Society,20472978|20472986 +Journal of Global History,Cambridge University Press,17400228|17400236 +Journal of Global Infectious Diseases,Medknow Publications,0974777X| +Journal of Global Information Management,IGI Global,10627375|15337995 +Journal of Global Information Technology Management,Informa UK (Taylor & Francis),1097198X|23336846 +Journal of Global Innovations in Agricultural and Social Sciences,Friends Science Publishers,23125225|23113839 +Journal of Global Marketing,Informa UK (Taylor & Francis),08911762|15286975 +Journal of Global Mobility The Home of Expatriate Management Research,Emerald (MCB UP ),20498799| +Journal of Global Oncology,American Society of Clinical Oncology,23789506 +Journal of Global Optimization,Springer-Verlag,09255001|15732916 +Journal of Global Peace and Conflict,American Research Institute for Policy Development,2333584X|23335858 +Journal of Global Policy and Governance,Springer-Verlag,21947740|21947759 +Journal of Global Positioning Systems,Springer-Verlag,14463156|14463164 +Journal of Global Radiology,University of Massachusetts Medical School,23728418 +Journal of Global Responsibility,Emerald (MCB UP ),20412568| +Journal of Global Responsibility,Emerald (MCB UP ),20412568| +Journal of Global Scholars of Marketing Science,Informa UK (Taylor & Francis),21639159|21639167 +Journal of Global Security Studies,Oxford University Press,20573170|20573189 +Journal of Global Slavery,Brill Academic Publishers,24058351|2405836X +Journal of Global Strategic Management,Journal of Global Strategic Management,13076205| +Journal of Globalization and Business Management,Columbia International Publishing,2163209X +Journal of Globalization and Development,Walter de Gruyter GmbH,21946353|19481837 +Journal of Glycobiology,OMICS Publishing Group,2168958X +Journal of Glycomics & Lipidomics,OMICS Publishing Group,21530637 +Journal of Government and Politics,"""JK School of Gov, Universitas Muhammadiyah Yogyakarta""",19078374|23378220 +Journal of Government Information,Elsevier ,13520237| +Journal of Governmental & Nonprofit Accounting,American Accounting Association,21553815 +Journal of Graduate Medical Education,Journal of Graduate Medical Education,19498349|19498357 +Journal of Graph Algorithms and Applications,Journal of Algorithms and Applications,15261719|15261719 +Journal of Graph Theory,Wiley Blackwell (John Wiley & Sons),03649024|10970118 +Journal of Graphic Novels & Comics,Informa UK (Taylor & Francis),21504857|21504865 +Journal of Graphic Science of Japan,Japan Society for Graphic Science,03875512|18846106 +Journal of Graphics GPU and Game Tools,Informa UK (Taylor & Francis),2151237X|21512272 +Journal of Graphics Tools,Informa UK (Taylor & Francis),10867651|21653488 +Journal of Gravity,Hindawi Publishing Corporation,23567422|23146907 +Journal of Great Lakes Research,Elsevier ,03801330|03801330 +Journal of Greek Linguistics,Brill Academic Publishers,15665844|00000000 +Journal of Greek Media & Culture,Intellect,20523971|2052398X +Journal of Green Building,College Publishing,15526100|19434618 +Journal of Green Engineering,River Publishers,19044720| +Journal of Green Science and Technology,American Scientific Publishers,21647585| +Journal of Grid and Distributed Computing,Bioinfo Publications,22497056|22497064 +Journal of Grid Computing,Springer-Verlag,15707873|15729184 +Journal of Groundwater Hydrology,Japanese Association of Groundwater Hyrdology,09134182|21855943 +Journal of Group Psychotherapy Psychodrama & Sociometry,Informa UK (Heldref Publications),15453855| +Journal of Group Theory,Walter de Gruyter GmbH,14335883|14354446 +Journal of Groups in Addiction & Recovery,Informa UK (Taylor & Francis),1556035X|15560368 +Journal of Guidance Control and Dynamics,American Institute of Aeronautics and Astronautics,07315090|15333884 +Journal of Gymnastics for All,Japan Society of Gymnastics for All,18835872 +Journal of Gynecologic Oncology,Asian Society of Gynecologic Oncology; Korean Society of Gynecologic Oncology and Colposcopy (KAMJE),20050380|20050399 +Journal of Gynecologic Surgery,Mary Ann Liebert,10424067|00000000 +Journal of Gynecological Endoscopy and Surgery,Medknow Publications,09741216| +Journal of Gynecology & Neonatal Biology,Ommega Online Publishers,23805595 +Journal of Gynecology and Obstetrics,Science Publishing Group,23767812| +Journal of Gynecology Research,"""Annex Publishers, LLC""",24543284 +Journal of Haitian Studies,Muse - Johns Hopkins University Press,23337311 +Journal of Hand and Microsurgery,Springer-Verlag,09743227|09746897 +Journal of Hand Surgery (European Volume),SAGE Publications,17531934|20436289 +Journal of Hand Therapy,Elsevier ,08941130| +Journal of Happiness Studies,Springer-Verlag,13894978|15737780 +Journal of Hard Tissue Biology,The Society for Hard Tissue Regenerative Biology,13417649|1880828X +Journal of Hazardous Materials,Elsevier ,03043894| +Journal of Hazardous Toxic and Radioactive Waste,American Society of Civil Engineers,21535493|21535515 +Journal of Head Trauma Rehabilitation,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,08859701| +Journal of Head Trauma Rehabilitation,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,08859701| +Journal of Head Trauma Rehabilitation,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,08859701| +Journal of Health & Biological Sciences,Instituto para o Desenvolvimento da Educacao,23173084|23173076 +Journal of Health & Medical Informatics,OMICS Publishing Group,21577420|21577420 +Journal of Health & Social Policy,Informa UK (Taylor & Francis),08977186|15404064 +Journal of Health and Human Behavior,JSTOR,00959006| +Journal of Health and Pollution,Blacksmith Institute,21569614|21569614 +Journal of Health and Social Behavior,SAGE Publications,00221465|21506000 +Journal of Health Care Chaplaincy,Informa UK (Taylor & Francis),08854726|15286916 +Journal of Health Care for the Poor and Underserved,Muse - Johns Hopkins University Press,10492089|15486869 +Journal of Health Communication,Informa UK (Taylor & Francis),10810730|10870415 +Journal of Health Economics,Elsevier ,01676296| +Journal of Health Education,Informa UK (Taylor & Francis),10556699| +Journal of Health Education Research & Development,OMICS Publishing Group,23805439 +Journal of Health Informatics and Statistics,The Korean Society of Health Informatics and Statistics,24658014|24658022 +Journal of Health Management,SAGE Publications,09720634|09730729 +Journal of Health Organization and Management,Emerald (MCB UP ),14777266| +Journal of Health Politics Policy and Law,Duke University Press,03616878|15271927 +Journal of Health Population and Nutrition,Springer (Biomed Central Ltd.),16060997|20721315 +Journal of Health Psychology,SAGE Publications,13591053|14617277 +Journal of Health Research and Reviews,Medknow Publications,23942010| +JOURNAL OF HEALTH SCIENCE,Pharmaceutical Society of Japan,13449702|13475207 +Journal of Health Sciences,University of Sarajevo Faculty of Health Sciences,22327576|19868049 +Journal of Health Sciences,Editora e Distribuidora Educacional,24478938| +Journal of Health Sciences & Research,Jaypee Brothers Medical Publishing,22293655|22780572 +Journal of Health Services Research & Policy,SAGE Publications,13558196|17581060 +Journal of Health Specialties,Medknow Publications,1658600X| +Journal of Health Visiting,Mark Allen Group,20508719|20522908 +Journal of Healthcare Engineering,Hindawi Publishing Corporation,20402295|20402309 +Journal of Healthcare Leadership,Dove Medical Press,11793201 +Journal of Healthcare Risk Management,Wiley Blackwell (John Wiley & Sons),10744797|20400861 +Journal of Healthcare Technology and Management,Columbia International Publishing,21631328 +JOURNAL OF HEART AND CARDIOLOGY,Ommega Online Publishers,23786914 +Journal of Heart and Circulation,Elyns Group LLC,2470105X +Journal of Heart Health,"""Sci Forschen, Inc.""",2379769X +Journal of Heat Recovery Systems,Elsevier ,01987593| +Journal of Heat Transfer,ASME International ,00221481| +Journal of Heat Treating,Springer-Verlag,01909177| +Journal of Hebrew Scriptures,Journal of Hebrew Scriptures,12031542 +Journal of Helminthology,Cambridge University Press,0022149X|14752697 +Journal of Hematological Malignancies,Sciedu Press,19254024|19254032 +Journal of Hematology,"""Elmer Press, Inc.""",19271212|19271220 +Journal of Hematology & Oncology,Springer (Biomed Central Ltd.),17568722|17568722 +Journal of Hematology & Thromboembolic Diseases,OMICS Publishing Group,23298790 +Journal of Hematology & Thrombosis,Avens Publishing Group,23806842 +Journal of Hematology and Blood Disorders,"""Annex Publishers, LLC""",24557641 +Journal of Hematology and Oncology Research,Open Access Pub,23726601 +Journal of Hematology and Therapeutics,Noble Research Publishers,23978694 +Journal of Hematology Research,Savvy Science Publisher,23125411 +Journal of Hematopathology,Springer-Verlag,18655785|18655785 +Journal of Hematopoietic Cell Transplantation,The Japan Society for Hematopoietic Stem Cell Transplantation,21865612 +Journal of Hematotherapy,Mary Ann Liebert,10616128| +Journal of Hematotherapy & Stem Cell Research,Mary Ann Liebert,15258165| +Journal of Hepato-Biliary-Pancreatic Sciences,Wiley Blackwell (John Wiley & Sons),18686974|18686982 +Journal of Hepato-Biliary-Pancreatic Surgery,Springer-Verlag,09441166|14360691 +Journal of Hepatocellular Carcinoma,Dove Medical Press,22535969 +Journal of Hepatology,Elsevier ,01688278|01688278 +Journal of Herbal Medicine,Elsevier ,22108033| +Journal of Herbal Pharmacotherapy,Informa UK (Taylor & Francis),15228940|15229106 +Journal of Herbs Spices & Medicinal Plants,Informa UK (Taylor & Francis),10496475|15403580 +Journal of Heredity,Oxford University Press,00221503|14718505 +Journal of Heritage Tourism,Informa UK (Taylor & Francis),1743873X|17476631 +Journal of Herpetological Medicine and Surgery,Association of Reptilian and Amphibian Veterinarians,15299651| +Journal of Herpetology,BioOne (Society for the Study of Amphibians & Reptiles),00221511| +Journal of Heterocyclic Chemistry,Wiley Blackwell (John Wiley & Sons),0022152X|19435193 +Journal of Heuristics,Springer-Verlag,13811231|15729397 +Journal of High Energy Astrophysics,Elsevier ,22144048| +Journal of High Energy Physics,Springer-Verlag,11266708|10298479 +Journal of High Energy Physics Gravitation and Cosmology,"""Scientific Research Publishing, Inc.""",23804327|23804335 +Journal of High Performance Computing,Bioinfo Publications,22307192|22307206 +Journal of High Resolution Chromatography,Wiley Blackwell (John Wiley & Sons),09356304|15214168 +Journal of High Speed Networks,IOS Press,09266801|18758940 +Journal of High Temperature Society,"""Sumart Processing Society for Materials, Environment and Energy""",03871096| +Journal of Higher Education and Science,Zonguldak Karaelmas University,21465959|21465967 +Journal of Higher Education Policy and Management,Informa UK (Taylor & Francis),1360080X|14699508 +Journal of Highway and Transportation Research and Development (English Edition),American Society of Civil Engineers,20956215 +Journal of Hill Agriculture,Diva Enterprises Private Limited,09767606|22307338 +Journal of Hindu-Christian Studies,"""Butler University, Irwin Library""",21646279 +Journal of Hip Preservation Surgery,Oxford University Press,20548397 +Journal of Hispanic Higher Education,SAGE Publications,15381927|00000000 +Journal of Histochemistry & Cytochemistry,SAGE Publications,00221554|15515044 +Journal of Histology,Hindawi Publishing Corporation,23567430|23146028 +Journal of Histology and Histopathology,Herbert Publications,2055091X +Journal of Historians of Netherlandish Art,Historians of Netherlandish Art,19499833 +Journal of Historical Geography,Elsevier ,03057488|10958614 +Journal of Historical Linguistics,John Benjamins Publishing Company,22102116|22102124 +Journal of Historical Pragmatics,John Benjamins Publishing Company,15665852|15699854 +Journal of Historical Research in Marketing,Emerald (MCB UP ),1755750X| +Journal of Historical Research in Music Education,SAGE Publications,15366006|23282525 +Journal of Historical Society of English Studies in Japan,Historical Society of English Studies in Japan,18839274 +Journal of Historical Sociolinguistics,Walter de Gruyter GmbH,21992894|21992908 +Journal of Historical Sociology,Wiley Blackwell (Blackwell Publishing),09521909|14676443 +Journal of History and Diplomatic Studies,African Journals Online ,15973778|15973778 +Journal of History Culture and Art Research,Karabuk University,21470626 +Journal of History of Modern Art,Korea Association for History of Modern Art,15987728| +Journal of History Research,David Publishing Company,2159550X|2159550X +Journal of Histotechnology,Maney Publishing,01478885|20460236 +Journal of HIV and AIDS ( ISSN 2380-5536 ),"""Sci Forschen, Inc.""",23805536 +Journal of HIV and Human Reproduction,Medknow Publications,23219157| +Journal of HIV for Clinical and Scientific Research,Peertechz.com,24553786 +Journal of HIV/AIDS & Social Services,Informa UK (Taylor & Francis),15381501|1538151X +Journal of HIV/AIDS and Infectious Diseases,JScholar,2332483X|2332483X +Journal of HIV/AIDS Prevention & Education for Adolescents & Children,Informa UK (Taylor & Francis),1069837X|1540403X +Journal of HIV/AIDS Prevention in Children & Youth,Informa UK (Taylor & Francis),15538346|15538613 +Journal of Holistic Nursing,SAGE Publications,08980101|00000000 +Journal of Holography and Speckle,American Scientific Publishers,1546900X|15469018 +Journal of Holy Land and Palestine Studies,Edinburgh University Press,20541988|20541996 +Journal of Home & Consumer Horticulture,"""Informa UK (Haworth Press, Inc.,)""",10544682| +Journal of Homeland Security and Emergency Management,Walter de Gruyter GmbH,21946361|15477355 +Journal of Homeopathy & Ayurvedic Medicine,OMICS Publishing Group,21671206 +Journal of Homosexuality,Informa UK (Taylor & Francis),00918369|15403602 +Journal of Homotopy and Related Structures,Springer-Verlag,21938407|15122891 +Journal of hongik law review,The Law Research Institute of Hongik University,19759576| +Journal of Hormones,Hindawi Publishing Corporation,23567449|23146222 +Journal of Horticultural Research,De Gruyter Open Sp. z o.o. ,23005009 +Journal of Horticultural Science,Informa UK (Taylor & Francis),00221589| +Journal of Horticultural Science,Informa UK (Taylor & Francis),00221589| +Journal of Horticulture,OMICS Publishing Group,23760354 +Journal of Horticulture and Forestry,Academic Journals,20069782 +Journal of Horticulure Letters,Bioinfo Publications,09769943|09769951 +Journal of Hospice and Palliative Nursing,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15222179| +Journal of Hospital Administration,Sciedu Press,19276990|19277008 +Journal of Hospital Infection,Elsevier ,01956701| +Journal of Hospital Librarianship,Informa UK (Taylor & Francis),15323269|15323277 +Journal of Hospital Marketing,Informa UK (Taylor & Francis),08837570| +Journal of Hospital Marketing & Public Relations,Informa UK (Taylor & Francis),15390942|15390934 +Journal of Hospital Medicine,Wiley Blackwell (John Wiley & Sons),15535592|15535606 +Journal of Hospitality & Leisure Marketing,"""Informa UK (Haworth Press, Inc.,)""",10507051|15410897 +Journal of Hospitality & Tourism Education,Informa UK (Taylor & Francis),10963758|23256540 +Journal of Hospitality & Tourism Research,SAGE Publications,10963480|00000000 +Journal of Hospitality and Tourism Management,Elsevier ,14476770|18395260 +Journal of Hospitality and Tourism Technology,Emerald (MCB UP ),17579880| +Journal of Hospitality Leisure Sport & Tourism Education,Elsevier ,14738376| +Journal of Hospitality Management and Tourism,Academic Journals,21416575 +Journal of Hospitality Marketing & Management,Informa UK (Taylor & Francis),19368623|19368631 +Journal of Hotel & Business Management,OMICS Publishing Group,21690286 +Journal of Housing and the Built Environment,Springer-Verlag,15664910|15737772 +Journal of Housing Economics,Elsevier ,10511377|10960791 +Journal of Housing for the Elderly,Informa UK (Taylor & Francis),02763893|1540353X +Journal of Huazhong University of Science and Technology [Medical Sciences],Springer-Verlag,16720733|19931352 +Journal of Human Behavior in the Social Environment,Informa UK (Taylor & Francis),10911359|15403556 +Journal of Human Capital,The University of Chicago Press,19328575|19328664 +Journal of Human Development,Informa UK (Taylor & Francis),14649888|14699516 +Journal of Human Development and Capabilities,Informa UK (Taylor & Francis),19452829|19452837 +Journal of Human Environmental Studies,Society for Human Environmental Studies,13485253|18837611 +Journal of Human Evolution,Elsevier ,00472484|10958606 +Journal of Human Genetics,Nature Publishing Group,14345161|1435232X +Journal of Human Growth and Development,NEPAS,01041282|21753598 +Journal of Human Hypertension,Nature Publishing Group,09509240|09509240 +Journal of Human Kinetics,De Gruyter Open Sp. z o.o. ,16405544|18997562 +Journal of Human Lactation,SAGE Publications,08903344|15525732 +Journal of Human Nutrition and Dietetics,Wiley Blackwell (Blackwell Publishing),09523871|1365277X +Journal of Human Performance in Extreme Environments,Purdue University (bepress),23272937 +Journal of Human Reproductive Sciences,Medknow Publications,09741208| +Journal of Human Resource and Sustainability Studies,"""Scientific Research Publishing, Inc.""",23284862|23284870 +Journal of Human Resource Costing & Accounting,Emerald (MCB UP ),1401338X| +Journal of Human Resource Management,Science Publishing Group,23310707| +Journal of Human Resource Management Research,Korean Academy of Human Resource Management,15982637| +Journal of Human Resources,University of Wisconsin Press,15488004 +Journal of Human Resources in Hospitality & Tourism,Informa UK (Taylor & Francis),15332845|15332853 +Journal of Human Resources Management and Labor Studies,American Research Institute for Policy Development,23336390|23336404 +Journal of Human Resources Management Research,IBIMA Publishing,21660018 +Journal of Human Rights,Informa UK (Taylor & Francis),14754835|00000000 +Journal of Human Rights and Social Work,Springer-Verlag,23651792 +Journal of Human Rights and the Environment,Edward Elgar Publishing,17597188|17597196 +Journal of Human Rights in the Commonwealth,School of Advanced Study,20531699 +Journal of Human Rights Practice,Oxford University Press,17579619|17579627 +Journal of Human Sciences,Uluslararasi Insan Bilimleri Dergisi,13035134|24589489 +Journal of Human Security,Librello,18353800|18353800 +Journal of Human Sport and Exercise,Publicaciones Universidad de Alicante,19885202|19885202 +Journal of Human Stress,Informa UK (Taylor & Francis),0097840X| +Journal of Human Trafficking,Informa UK (Taylor & Francis),23322705|23322713 +Journal of Human Transcriptome,Informa UK (Taylor & Francis),23324015 +Journal of Human Values,SAGE Publications,09716858|09730737 +Journal of Human Virology & Retrovirology,MedCrave Group,23736453 +Journal of Human-Robot Interaction,Journal of Human-Robot Interaction,21630364 +Journal of Humanistic Mathematics,Claremont Colleges Library,21598118 +Journal of Humanistic Psychology,SAGE Publications,00221678|1552650X +Journal of Humanitarian Logistics and Supply Chain Management,Emerald (MCB UP ),20426747| +Journal of Humanities,African Journals Online ,10160728 +Journal of Humanities and Social Studies,"""Al Manhal FZ, LLC""",16583116| +Journal of Humanity,Journal of Humanity,23021861|23021683 +JOURNAL OF HUNAN AGRICULTURAL UNIVERSITY,China Science Publishing & Media Ltd.,10071032| +Journal of Hunger & Environmental Nutrition,Informa UK (Taylor & Francis),19320248|19320256 +Journal of Huntington s Disease,IOS Press,18796397|18796400 +Journal of Hydraulic Engineering,American Society of Civil Engineers,07339429|19437900 +Journal of Hydraulic Research,Informa UK (Taylor & Francis),00221686|18142079 +Journal of Hydro-environment Research,Elsevier ,15706443| +Journal of Hydrodynamics Ser B,Elsevier ,10016058| +Journal of Hydrogels,American Scientific Publishers,23776293| +Journal of Hydrogeology and Hydrologic Engineering,OMICS Publishing Group,23259647 +Journal of Hydroinformatics,IWA Publishing,14647141|14651734 +Journal of Hydrologic Engineering,American Society of Civil Engineers,10840699|19435584 +Journal of Hydrology,Elsevier ,00221694| +Journal of Hydrology and Hydromechanics,De Gruyter Open Sp. z o.o. ,0042790X|0042790X +Journal of Hydrology and Meteorology,Nepal Journals Online,18182518| +Journal of Hydrology Regional Studies,Elsevier ,22145818| +Journal of Hydrometeorology,American Meteorological Society,1525755X|15257541 +Journal of Hydronautics,American Institute of Aeronautics and Astronautics,00221716|15555909 +Journal of Hygiene,Cambridge University Press,00221724|00221724 +Journal of Hymenoptera Research,Pensoft Publishers,10709428|13142607 +Journal of Hyperbolic Differential Equations,World Scientific ,02198916|17936993 +Journal of Hyperspectral Remote Sensing,GN1 Genesis Network,22372202| +Journal of Hypertension,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,02636352| +Journal of Hypertension and Cardiology,Open Access Pub,23299487 +Journal of Hypertension Open Access,OMICS Publishing Group,21671095 +Journal of Hypo & Hyperglycemia,OMICS Publishing Group,23274700 +Journal of Iberian & Latin American Studies,Informa UK (Taylor & Francis),14701847|14699524 +Journal of Iberian and Latin American Research,Informa UK (Taylor & Francis),13260219|21519668 +Journal of Iberian Geology,Universidad Complutense de Madrid,16986180|18867995 +Journal of Ichthyology,Pleiades Publishing,00329452|15556425 +Journal of ICT Research and Applications,The Institute for Research and Community Services ITB,23375787|23385499 +Journal of ICT Standardization,River Publishers,2245800X| +Journal of IFA Korea,International Fiscal Association of Korea,1598477X| +Journal of IKEEE,Institute of Korean Electrical and Electronics Engineers,12267244| +Journal of ILASS-Korea,Institute for Liquid Atomization and Spray Systems - Korea,12262277| +Journal of Illustration,Intellect,20520204|20520212 +Journal of IMAB - Annual Proceeding (Scientific Papers),Journal of IMAB,1312773X +Journal of Image and Graphics,EJournal Publishing,23013699| +Journal of Image and Signal Processing,Hans Publishers,23256753|23256745 +Journal of Image Guided Surgery,Wiley Blackwell (John Wiley & Sons),10787844|1522712X +Journal of Imagery Research in Sport and Physical Activity,Walter de Gruyter GmbH,2194637X|19320191 +Journal of Imaging,MDPI AG,2313433X +Journal of Imaging Science and Technology,Society for Imaging Science & Technology,10623701|19433522 +Journal of Immersion and Content-Based Language Education,John Benjamins Publishing Company,22128433|22128441 +Journal of Immigrant & Refugee Services,Informa UK (Taylor & Francis),15362949|15362957 +Journal of Immigrant & Refugee Studies,Informa UK (Taylor & Francis),15562948|15562956 +Journal of Immigrant and Minority Health,Springer-Verlag,15571912|15571920 +Journal of Immigrant Health,Springer-Verlag,10964045|15733629 +Journal of Immune Based Therapies and Vaccines,Springer (Biomed Central Ltd.),14768518| +Journal of Immune Based Therapies Vaccines and Antimicrobials,"""Scientific Research Publishing, Inc.""",21681546|21681554 +Journal of Immunoassay,Informa UK (Taylor & Francis),01971522| +Journal of Immunoassay and Immunochemistry,Informa UK (Marcel Dekker),15321819|15324230 +Journal of Immunodeficiency & Disorders,OMICS Publishing Group,2324853X +Journal of Immunological Methods,Elsevier ,00221759| +Journal of Immunological Techniques in Infectious Diseases,OMICS Publishing Group,23299541 +Journal of Immunology and Immunopathology,Diva Enterprises Private Limited,09720561|09739149 +Journal of Immunology and Immunotechniques,"""ScienceScript, LLC""",23749105 +Journal of Immunology and Infectious Diseases,"""Annex Publishers, LLC""",23946512 +Journal of Immunology Research,Hindawi Publishing Corporation,23148861|23147156 +Journal of Immunopharmacology,Informa UK (Taylor & Francis),01630571| +Journal of Immunotherapy,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15249557| +Journal of Immunotherapy,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10538550| +Journal of Immunotherapy Applications,Herbert Publications,20552394 +Journal of Immunotoxicology,Informa UK (Taylor & Francis),1547691X|15476901 +Journal of In Vitro Fertilization and Embryo Transfer,Springer-Verlag,07407769| +Journal of In-service Education,Informa UK (Taylor & Francis),13674587|17475082 +Journal of Inborn Errors of Metabolism & Screening,SAGE Publications,23264098|23264594 +Journal of Inclusion Phenomena,Springer-Verlag,01677861| +Journal of Inclusion Phenomena and Macrocyclic Chemistry,Springer-Verlag,09230750|15731111 +Journal of Income Distribution,Elsevier ,09266437| +Journal of Independent Social Work,"""Informa UK (Haworth Press, Inc.,)""",08837562| +Journal of Indian Academy of Dental Specialist Researchers,Medknow Publications,22293019| +Journal of Indian Academy of Forensic Medicine,Diva Enterprises Private Limited,09710973|09740848 +Journal of Indian Academy of Oral Medicine and Radiology,Medknow Publications,09721363| +JOURNAL OF INDIAN AND BUDDHIST STUDIES (INDOGAKU BUKKYOGAKU KENKYU),Japanese Association of Indian and Buddhist Studies,00194344|18840051 +Journal of Indian Association of Pediatric Surgeons,Medknow Publications,09719261| +Journal of Indian Association of Public Health Dentistry,Medknow Publications,23195932| +Journal of Indian Business Research,Emerald (MCB UP ),17554195| +Journal of Indian College of Cardiology,Elsevier ,15618811| +Journal of Indian Council of Philosophical Research,Springer-Verlag,09707794|23639962 +Journal of Indian Philosophy,Springer-Verlag,00221791|15730395 +Journal of Indian Society of Pedodontics and Preventive Dentistry,Medknow Publications,09704388| +Journal of Indian Society of Periodontology,Medknow Publications,0972124X| +Journal of Indian Speech Language & Hearing Association,Medknow Publications,09742131| +Journal of Individual Differences,Hogrefe Publishing Group,16140001|21512299 +Journal of Individual Employment Rights,Portico,10557512|15413799 +Journal of Indo-Pacific Archaeology,University of Washington Libraries,23750510 +JOURNAL OF INDONESIAN ISLAM,"""State Islamic University (UIN) of Sunan, Ampel""",19786301|23556994 +Journal of Industrial & Engineering Chemistry,American Chemical Society,00959014|19432968 +Journal of Industrial Aerodynamics,Elsevier ,03043908| +Journal of Industrial and Engineering Chemistry,Elsevier ,1226086X| +Journal of Industrial and Intelligent Information,EJournal Publishing,23013745| +Journal of Industrial and Management Optimization,American Institute of Mathematical Sciences,15475816| +Journal of Industrial and Production Engineering,Informa UK (Taylor & Francis),21681015|21681023 +Journal of Industrial Distribution & Business,Korea Distribution Science Association,22334165|22335382 +Journal of Industrial Ecology,Wiley Blackwell (Blackwell Publishing),10881980|15309290 +Journal of Industrial Economics,Wiley Blackwell (Blackwell Publishing),00221821|14676451 +Journal of Industrial Engineering,Hindawi Publishing Corporation,23144890|23144882 +Journal of Industrial Engineering and Management,Omnia Publisher SL,20138423|20130953 +Journal of Industrial Engineering and Management Innovation,Atlantis Press,22151370| +Journal of Industrial Engineering International,Springer-Verlag,2251712X|2251712X +Journal of Industrial Hemp,Informa UK (Taylor & Francis),15377881|1537789X +Journal of Industrial Information Integration,Elsevier ,2452414X| +Journal of Industrial Mathematics,Hindawi Publishing Corporation,23148853|23146117 +Journal of Industrial Microbiology,Springer-Verlag,01694146| +Journal of Industrial Microbiology & Biotechnology,Springer-Verlag,13675435|14765535 +Journal of Industrial Organization Education,Walter de Gruyter GmbH,19355041 +Journal of Industrial Relations,SAGE Publications,00221856|14729296 +Journal of Industrial Textiles,SAGE Publications,15280837|15308057 +Journal of Industry Competition and Trade,Springer-Verlag,15661679|15737012 +Journal of Industry Studies,Informa UK (Taylor & Francis),13206095| +Journal of Inequalities and Applications,Springer (Biomed Central Ltd.),10255834|1029242X +Journal of Infant Child and Adolescent Psychotherapy,Informa UK (Taylor & Francis),15289168| +Journal of Infant Child and Adolescent Psychotherapy,Informa UK (Taylor & Francis),15289168| +Journal of Infant Child and Adolescent Psychotherapy,Informa UK (Taylor & Francis),15289168| +Journal of Infant Child and Adolescent Psychotherapy,Informa UK (Taylor & Francis),15289168|19409214 +Journal of Infection,Elsevier ,01634453| +Journal of Infection and Chemotherapy,Elsevier ,1341321X|14377780 +Journal of Infection and Molecular Biology,Nexus Academic Publishers,23075465 +Journal of Infection and Public Health,Elsevier ,18760341| +Journal of Infection Prevention,SAGE Publications,17571774|17571782 +Journal of Infection Research,Aurora Publishing LLC (UK) Limited,20533632 +Journal of Infectious Disease Pharmacotherapy,Informa UK (Taylor & Francis),10687777|1540711X +Journal of Infectious Diseases & Immunological Techniques,OMICS Publishing Group,23259752 +Journal of Infectious Diseases and Immunity,Academic Journals,21412375 +Journal of Infectious Diseases and Therapeutics,Pharma Publisher,23109386 +Journal of Infectious Diseases and Therapy,OMICS Publishing Group,23320877 +Journal of Infectious Diseases Letters,Bioinfo Publications,09768904|09768912 +Journal of Infectious Pulmonary Diseases ( ISSN 2470-3176 ),"""Sci Forschen, Inc.""",24703176 +Journal of Inflammation,Springer (Biomed Central Ltd.),14769255|14769255 +Journal of Inflammation Research,Dove Medical Press,11787031 +Journal of Information,Pak Publishing Group, +Journal of Information & Knowledge Management,World Scientific ,02196492|17936926 +Journal of information and communication convergence engineering,The Korean Institute of Information and Communication Sciences,22348255| +Journal of Information and Computational Science,Binary Information Press,15487741| +Journal of Information and Operations Management,Bioinfo Publications,09767754|09767762 +Journal of Information and Optimization Sciences,Informa UK (Taylor & Francis),02522667|21690103 +Journal of Information Assurance & Cybersecurity,IBIMA Publishing,21659923 +Journal of Information Communication and Ethics in Society,Emerald (MCB UP ),1477996X| +Journal of Information Display,Informa UK (Taylor & Francis),15980316|21581606 +Journal of Information Ethics,"""McFarland & Company, Inc. """,10619321| +Journal of Information Literacy,CILIP Information Literacy Group,17505968 +Journal of Information Management,KISTI,02543621| +Journal of Information Policy,The Pennsylvania State University Press,21583897 +Journal of Information Privacy and Security,Informa UK (Taylor & Francis),15536548|2333696X +Journal of Information Processing,Information Processing Society of Japan,18826652 +Journal of Information Processing and Management,Japan Science and Technology Agency,00217298|13471597 +Journal of Information Processing Systems,Korea Information Processing Society ,1976913X|2092805X +Journal of Information Science,SAGE Publications,01655515|00000000 +Journal of Information Science Theory and Practice,KISTI,22879099|22874577 +Journal of Information Security,"""Scientific Research Publishing, Inc.""",21531234|21531242 +Journal of Information Security and Applications,Elsevier ,22142126| +Journal of Information Systems,American Accounting Association,08887985|15587959 +Journal of Information Systems and Communication,Bioinfo Publications,09768742|09768750 +Journal of Information Systems and Technology Management,TECSI,18092640|18071775 +Journal of Information Systems Management,Informa UK (Taylor & Francis),07399014| +Journal of Information Technology,Nature Publishing Group - Macmillan Publishers,02683962|14664437 +Journal of Information Technology & Politics,Informa UK (Taylor & Francis),19331681|1933169X +Journal of Information Technology & Software Engineering,OMICS Publishing Group,21657866 +Journal of Information Technology and Application in Education,"""Science and Engineering Publishing, Co.""",22276467| +Journal of Information Technology Case and Application Research,Informa UK (Taylor & Francis),15228053|23336897 +Journal of Information Technology Research,IGI Global,19387857|19387865 +Journal of Information Technology Teaching Cases,Nature Publishing Group - Macmillan Publishers,20438869 +Journal of Information Techology for Teacher Education,Informa UK (Taylor & Francis),0962029X| +Journal of Informetrics,Elsevier ,17511577| +JOURNAL OF INFRARED AND MILLIMETER WAVES,China Science Publishing & Media Ltd.,10019014| +Journal of Infrared Millimeter and Terahertz Waves,Springer-Verlag,18666892|18666906 +Journal of Infrastructure Development,SAGE Publications,09749306|09755969 +Journal of Infrastructure Systems,American Society of Civil Engineers,10760342|1943555X +Journal of Infusion Nursing,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15331458| +Journal of Inherited Metabolic Disease,Springer-Verlag,01418955|15732665 +Journal of Injury and Violence Research,Journal of Injury and Violence Research,20082053|20084072 +Journal of Innate Immunity,S. Karger AG,1662811X|16628128 +Journal of Inner Asian Art and Archaeology,"""Brepols Publishers, NV""",17839025| +Journal of Innovation and Business Best Practices,IBIMA Publishing,21660743 +Journal of Innovation and Entrepreneurship,Springer (Biomed Central Ltd.),21925372|21925372 +Journal of Innovation Economics,CAIRN,20325355|20325355 +Journal of Innovation in Digital Ecosystems,Elsevier ,23526645| +Journal of Innovation in Health Informatics,BCS Learning and Development,20584555|20584563 +Journal of Innovation Management in Small and Medium Enterprises,IBIMA Publishing,2166076X +Journal of Innovations in Cardiac Rhythm Management,MediaSphere Medical LLC,21563977|21563993 +Journal of Innovative Optical Health Sciences,World Scientific ,17935458|17937205 +Journal of Innovative Technology and Education,"""Hikari, Ltd.""",23675608 +Journal of Inorganic and Nuclear Chemistry,Elsevier ,00221902| +Journal of Inorganic and Organometallic Polymers,Springer-Verlag,10530495|15728870 +Journal of Inorganic and Organometallic Polymers and Materials,Springer-Verlag,15741443|15741451 +Journal of Inorganic Biochemistry,Elsevier ,01620134| +Journal of Inorganic Chemistry,Sciknow Publications,23299622|23299622 +Journal of Inorganic Chemistry,Hindawi Publishing Corporation,23567457|2314713X +Journal of Inorganic Materials,Shanghai Institute of Ceramics,1000324X| +Journal of Insect Behavior,Springer-Verlag,08927553|15728889 +Journal of Insect Biodiversity,Journal of Insect Biodiversity,21477612 +Journal of Insect Conservation,Springer-Verlag,1366638X|15729753 +Journal of Insect Physiology,Elsevier ,00221910|00221910 +Journal of Insect Science,Oxford University Press,15362442 +Journal of Insects,Hindawi Publishing Corporation,23567465|23146478 +Journal of Insects as Food and Feed,Wageningen Academic Publishers,23524588|23524588 +journal of institute of cold chain,Japan Association of Food Preservation Scientists,02851377|21861242 +Journal of Institute of Control Robotics and Systems,"""Institute of Control, Robotics and Systems""",19765622| +Journal of Institute of Control Robotics and Systems,"""Institute of Control, Robotics and Systems""",19765622| +Journal of Institute of Medicine,Nepal Journals Online,19932979| +Journal of Institute of Science and Technology,Nepal Journals Online,24679240 +Journal of Institutional and Theoretical Economics JITE,Mohr Siebeck,09324569|00000000 +Journal of Institutional Economics,Cambridge University Press,17441374|17441382 +Journal of Institutional Studies,Humanities Perspectives Limited,20766297| +Journal of Instructional Development,Springer-Verlag,01622641| +Journal of Instructional Research,Grand Canyon University,21590281|2159029X +Journal of Instrumentation,IOP Publishing,17480221 +Journal of Insurance Medicine,American Academy of Insurance Medicine,07436661| +Journal of Integrable Systems,Oxford University Press,20585985 +Journal of Integral Equations and Applications,Rocky Mountain Mathematics Consortium,08973962| +Journal of Integrated Care,Emerald (MCB UP ),14769018|20428685 +Journal of Integrated Design and Process Science,IOS Press,10920617|18758959 +Journal of Integrated Disaster Risk Management,Journal of Integrated Disaster Risk Management,21858322 +Journal of Integrated OMICS,Proteomass,21820287 +Journal of Integrated Pest Management,Oxford University Press,21557470|21557470 +Journal of Integrative Agriculture,Elsevier ,20953119| +Journal of Integrative Cardiology,Open Access Text,20583702 +Journal of Integrative Environmental Sciences,Informa UK (Taylor & Francis),1943815X|19438168 +Journal of Integrative Medicine,Elsevier ,20954964| +Journal of Integrative Medicine & Therapy,Avens Publishing Group,23781343 +Journal of Integrative Nephrology and Andrology,Medknow Publications,22251243| +Journal of Integrative Neuroscience,World Scientific ,02196352|1757448X +Journal of Integrative Oncology,OMICS Publishing Group,23296771 +Journal of Integrative Plant Biology,Wiley Blackwell (Blackwell Publishing),16729072|17447909 +Journal of Integrative Psychology and Therapeutics,Herbert Publications,20544723 +Journal of Intellectual & Developmental Disability,Informa UK (Informa Healthcare),13668250|14699532 +Journal of Intellectual Capital,Emerald (MCB UP ),14691930|00000000 +Journal of Intellectual Disabilities,SAGE Publications,17446295|17446309 +Journal of Intellectual Disabilities and Offending Behaviour,Emerald (MCB UP ),20508824| +Journal of Intellectual Disability - Diagnosis and Treatment,Lifescience Global,22922598 +Journal of Intellectual Disability Research,Wiley Blackwell (Blackwell Publishing),09642633|13652788 +Journal of Intellectual Property Law & Practice,Oxford University Press,17471532|17471540 +Journal of Intelligence,MDPI AG,20793200 +Journal of Intelligence and Information Systems,Korea Intelligent Information System Society,22884866| +Journal of Intelligence History,Informa UK (Taylor & Francis),16161262|21695601 +Journal of Intelligence Systems,Bioinfo Publications,22297057|22297065 +Journal of Intelligent & Fuzzy Systems,IOS Press,10641246|18758967 +Journal of Intelligent & Robotic Systems,Springer-Verlag,09210296|15730409 +Journal of Intelligent Information Systems,Springer-Verlag,09259902|15737675 +Journal of Intelligent Learning Systems and Applications,"""Scientific Research Publishing, Inc.""",21508402|21508410 +Journal of Intelligent Manufacturing,Springer-Verlag,09565515|15728145 +Journal of Intelligent Material Systems and Structures,SAGE Publications,1045389X|15308138 +Journal of Intelligent Systems,Walter de Gruyter GmbH,03341860|2191026X +Journal of Intelligent Transportation and Urban Planning,Bowen Publishing Company,23730757|23730765 +Journal of Intelligent Transportation Systems,Informa UK (Taylor & Francis),15472450|15472442 +Journal of Intensive Care,Springer (Biomed Central Ltd.),20520492|20520492 +Journal of Intensive Care Medicine,SAGE Publications,08850666|15251489 +Journal of Inter-American Studies,JSTOR,08853118| +Journal of Interaction Science,Springer (Biomed Central Ltd.),21940827|21940827 +Journal of Interactional Research in Communication Disorders,Equinox Publishing,20405111|2040512X +Journal of Interactive Advertising,Informa UK (Taylor & Francis),15252019 +Journal of Interactive Humanities,Wallace Center,21657564 +Journal of Interactive Marketing,Elsevier ,10949968|15206653 +Journal of Interactive Media in Education,"""Ubiquity Press, Ltd.""",1365893X +Journal of Interamerican Studies and World Affairs,JSTOR,00221937| +Journal of Intercollegiate Sport,Human Kinetics,19416342| +Journal of Interconnection Networks,World Scientific ,02192659|02192659 +Journal of Intercultural Communication Research,Informa UK (Taylor & Francis),17475759|17475767 +Journal of Intercultural Ethnopharmacology,ScopeMed International Medical Journal Managment and Indexing System,21468397 +Journal of Intercultural Management,De Gruyter Open Sp. z o.o. ,20800150 +Journal of Intercultural Studies,Informa UK (Taylor & Francis),07256868|14699540 +Journal of Interdisciplinary Dentistry,Medknow Publications,22295194| +Journal of Interdisciplinary Economics,SAGE Publications,02601079|23215305 +Journal of Interdisciplinary Histopathology,ScopeMed International Medical Journal Managment and Indexing System,21468362| +Journal of Interdisciplinary History,MIT Press,00221953|15309169 +Journal of Interdisciplinary Mathematics,Informa UK (Taylor & Francis),09720502|2169012X +Journal of Interdisciplinary Nanomedicine,Wiley Blackwell (John Wiley & Sons),20583273| +Journal of Interdisciplinary Voice Studies,Intellect,20570341|2057035X +Journal of Interdisiplinary Cycle Research,Informa UK (Taylor & Francis),00221945| +Journal of Interferon & Cytokine Research,Mary Ann Liebert,10799907|10799907 +Journal of Interferon Research,Mary Ann Liebert,01978357| +Journal of Intergenerational Relationships,Informa UK (Taylor & Francis),15350770|15350932 +Journal of Interior Design,Wiley Blackwell (Blackwell Publishing),10717641|19391668 +Journal of Interlibrary Loan & Information Supply,"""Informa UK (Haworth Press, Inc.,)""",10424458| +Journal of Interlibrary Loan Document Delivery & Electronic Reserve,Informa UK (Taylor & Francis),1072303X|15403572 +Journal of Internal Medicine,Wiley Blackwell (Blackwell Publishing),09546820|13652796 +Journal of Internal Medicine Research,Sciknow Publications,23297743 +Journal of international academy of physical therapy research,International Academy of Physical Therapy Research,20928475| +Journal of International Accounting Auditing and Taxation,Elsevier ,10619518| +Journal of International Accounting Research,American Accounting Association,15426297|15588025 +Journal of International Agricultural and Extension Education,Journal of International Agricultural and Extension Education,10770755|10770755 +Journal of International and Comparative Social Policy,Informa UK (Taylor & Francis),21699763|2169978X +Journal of International and Comparative Social Welfare,Informa UK (Taylor & Francis),08985847| +Journal of International and Intercultural Communication,Informa UK (Taylor & Francis),17513057|17513065 +Journal of International Arbitration,Springer (Kluwer Academic Publishers),02558106| +Journal of international area studies,"""Center for International Area Studies, HFUS""",12265810| +Journal of International Biotechnology Law,Walter de Gruyter GmbH,16126068|16126076 +Journal of International Business and Economics,American Research Institute for Policy Development,23742208|23742194 +Journal of International Business and Economics,International Academy of Business and Economics,15448037|23789174 +Journal of International Business Research and Marketing,Inovatus Usluge Ltd.,18498558| +Journal of International Business Studies,Nature Publishing Group - Macmillan Publishers,00472506|14786990 +Journal of International Collaboration in Education,Institute of APEC Collaborative Education,20051190|22886389 +Journal of International Commerce Economics and Policy,World Scientific ,17939933|17939941 +Journal of International Communication,Informa UK (Taylor & Francis),13216597|21583471 +Journal of International Comparative Education,University of Malaya Press,22321802|22892567 +Journal of international Conference on Electrical Machines and Systems,Journal of International Conference on Electrical Machines and Systems,22346902| +Journal of International Consumer Marketing,Informa UK (Taylor & Francis),08961530|15287068 +Journal of International Council on Electrical Engineering,Informa UK (Taylor & Francis),22335951|22348972 +Journal of International Criminal Justice,Oxford University Press,14781387|14781395 +Journal of International Development,Wiley Blackwell (John Wiley & Sons),09541748|10991328 +Journal of International Dispute Settlement,Oxford University Press,20403585|20403593 +Journal of International Economic Law,Oxford University Press,13693034|14643758 +Journal of International Economics,Elsevier ,00221996| +Journal of International Education in Business,Emerald (MCB UP ),18363261| +Journal of International Education Research (JIER),Clute Institute,21580979|21580987 +Journal of International Energy Policy (JIEP),Clute Institute,2165252X|21652538 +Journal of International Entrepreneurship,Springer-Verlag,15707385|15737349 +Journal of International Finance and Economics,International Academy of Business and Economics,15556336|2378864X +Journal of International Finance Studies,International Academy of Business and Economics,19452950|23788674 +Journal of International Financial Management and Accounting,Wiley Blackwell (Blackwell Publishing),09541314|1467646X +Journal of International Financial Markets Institutions and Money,Elsevier ,10424431| +Journal of International Food & Agribusiness Marketing,Informa UK (Taylor & Francis),08974438|15286983 +Journal of International Hospitality Leisure & Tourism Management,"""Informa UK (Haworth Press, Inc.,)""",10923128| +Journal of International Humanitarian Action,Springer (Biomed Central Ltd.),23643412|23643404 +Journal of International Humanitarian Legal Studies,Brill Academic Publishers,18781373|18781527 +Journal of International Insurance,Springer (Kluwer Academic Publishers),13881922| +Journal of International Management,Elsevier ,10754253| +Journal of International Management Studies,International Academy of Business and Economics,19306105|23789557 +Journal of International Marketing,American Marketing Association,1069031X|15477215 +Journal of International Medical Research,SAGE Publications,03000605|14732300 +Journal of International Medicine and Dentistry,VXL Publishers,24548847|2350045X +Journal of International Migration and Integration / Revue de l integration et de la migration internationale,Springer-Verlag,14883473|18746365 +Journal of International Mobility,"""Peter Lang, International Academic Publishers""",22965165| +Journal of International Money and Finance,Elsevier ,02615606| +Journal of International Network Center for Fundamental and Applied Research,Academic Publishing House Researcher,24113239|24137588 +Journal of International Peacekeeping,Brill Academic Publishers,18754104|18754112 +Journal of International Political Theory,SAGE Publications,17550882|17551722 +Journal of International Politics,Ilmin International Relations Institute,17380154| +Journal of International Relations and Development,Nature Publishing Group - Macmillan Publishers,14086980|15811980 +Journal of International Relations and Foreign Policy,American Research Institute for Policy Development,23335866|23335874 +Journal of International Social Research,The Journal of International Social Research,13079581| +Journal of International Society for Simulation Surgery,International Society for Simulation Surgery ,23835389| +Journal of International Society of Preventive and Community Dentistry,Medknow Publications,22310762| +Journal of International Special Needs Education,Division of International Special Education and Services - DISES,21594341|23314001 +Journal of International Special Needs Education,Division of International Special Education and Services - DISES,21594341| +Journal of International Studies,Mongolia Journals Online,23124512| +JOURNAL OF INTERNATIONAL STUDIES,"""Centre of Sociological Research, NGO""",20718330|23063483 +Journal of International Trade & Economic Development,Informa UK (Taylor & Francis),09638199|14699559 +Journal of International Trade Law and Policy,Emerald (MCB UP ),14770024| +Journal of International Wildlife Law & Policy,Informa UK (Taylor & Francis),13880292|15481476 +Journal of Internet and e-Business Studies,IBIMA Publishing,21690391 +Journal of Internet and Information Systems,Academic Journals,21416478 +Journal of Internet Applications and Management,"""LookUs Bilisim, Ltd.""",13098810| +Journal of Internet Cataloging,Informa UK (Taylor & Francis),10911367|15287017 +Journal of Internet Commerce,Informa UK (Taylor & Francis),15332861|1533287X +Journal of Internet Computing and services,Korean Society for Internet Information,15980170| +Journal of Internet Services and Applications,Springer (Biomed Central Ltd.),18674828|18690238 +Journal of Internet Social Networking and Virtual Communities,IBIMA Publishing,21660794 +Journal of Interpersonal Violence,SAGE Publications,08862605|15526518 +Journal of Interpolation and Approximation in Scientific Computing,ISPACS GmbH,21943907 +Journal of Interprofessional Care,Informa UK (Taylor & Francis),13561820|14699567 +Journal of Interprofessional Education & Practice,Elsevier ,24054526| +Journal of Intervention and Statebuilding,Informa UK (Taylor & Francis),17502977|17502985 +Journal of Interventional Cardiac Electrophysiology,Springer-Verlag,1383875X|15728595 +Journal of Interventional Cardiology,Wiley Blackwell (Blackwell Publishing),08964327|15408183 +Journal of Interventional Gastroenterology,"""Hong Kong STM Publishing Co., Ltd.""",21541280|21541299 +Journal of Inverse and Ill-Posed Problems,Walter de Gruyter GmbH,09280219|15693945 +Journal of Invertebrate Pathology,Elsevier ,00222011|10960805 +Journal of Investigational Biochemistry,ScopeMed International Medical Journal Managment and Indexing System,21468338| +Journal of Investigative and Clinical Dentistry,Wiley Blackwell (Blackwell Publishing),20411618|20411626 +Journal of Investigative Cosmetology,The Korean Society for Investigative Cosmetology,17387574| +Journal of Investigative Dermatology,Elsevier ,0022202X|15231747 +Journal of Investigative Dermatology Symposium Proceedings,Elsevier ,10870024|15291774 +Journal of Investigative Genomics,MedCrave Group,23734469 +Journal of Investigative Medicine,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10815589|10815589 +Journal of Investigative Medicine High Impact Case Reports,SAGE Publications,23247096|23247096 +Journal of Investigative Psychology and Offender Profiling,Wiley Blackwell (John Wiley & Sons),15444759|15444767 +Journal of Investigative Surgery,Informa UK (Taylor & Francis),08941939|15210553 +Journal of Investment and Management,Science Publishing Group,23287713| +Journal of Investment Compliance,Emerald (MCB UP ),15285812| +Journal of Ion Exchange,Japan Association of Ion Exchange,0915860X|18843360 +Journal of Iron and Steel Research International,Elsevier ,1006706X| +Journal of Irrigation and Drainage Engineering,American Society of Civil Engineers,07339437|19434774 +Journal of ISAKOS Joint Disorders & Orthopaedic Sports Medicine,BMJ,20597754|20597762 +Journal of ISAKOS Joint Disorders & Orthopaedic Sports Medicine,BMJ,20597754|20597762 +Journal of Islamic Accounting and Business Research,Emerald (MCB UP ),17590817| +Journal of Islamic Archaeology,Equinox Publishing,20519710|20519729 +Journal of Islamic Architecture,Maulana Malik Ibrahim State Islamic University,20862636|23564644 +Journal of Islamic Banking and Finance,American Research Institute for Policy Development,23742666|23742658 +Journal of Islamic Business and Management,"""Al Manhal FZ, LLC""",20756291| +Journal of Islamic Economics Banking and Finance,"""Al Manhal FZ, LLC""",20704658| +Journal of Islamic Finance,"""Al Manhal FZ, LLC""",22892109| +Journal of Islamic Law and Culture,Informa UK (Taylor & Francis),1528817X| +Journal of Islamic Law and Culture,Informa UK (Taylor & Francis),1528817X|17534534 +Journal of Islamic Law and Culture,Informa UK (Taylor & Francis),1528817X| +Journal of Islamic Manuscripts,Brill Academic Publishers,18784631|1878464X +Journal of Islamic Marketing,Emerald (MCB UP ),17590833| +Journal of Islamic Philosophy,Philosophy Documentation Center,15364569| +Journal of Islamic Studies,Oxford University Press,09552340|14716917 +Journal of Islamic Studies and Culture,American Research Institute for Policy Development,23335904|23335912 +Journal of Israeli History,Informa UK (Taylor & Francis),13531042|17440548 +Journal of Istanbul University Faculty of Dentistry,Journal of Istanbul University Faculty of Dentistry,02578212|21478716 +Journal of Italian Cinema and Media Studies,Intellect,20477368|20477376 +Journal of Japan Academy of Critical Care Nursing,Japan Academy of Critical Care Nursing,18808913|2187400X +Journal of Japan Academy of Midwifery,Japan Academy of Midwifery,09176357|18824307 +Journal of Japan Academy of Nursing Science,Japan Academy of Nursing Science,02875330|21858888 +Journal of Japan Association for Earthquake Engineering,Japan Association for Earthquake Engineering,18846246 +Journal of Japan Association for Snow Engineering,Japan Society for Snow Engineering,09130314|18838103 +Journal of Japan Association on Odor Environment,Japan Association on Odor Environment,13482904|13497847 +Journal of Japan Cosmetic Chemists Association,Society of Cosmetic Chemists of Japan,18846572 +Journal of Japan Institute of Electronics Packaging,Japan Institute of Electronics Packaging,13439677|1884121X +Journal of Japan Institute of Light Metals,Japan Institute of Light Metals,04515994|18808018 +Journal of Japan Oil Chemists Society,Japan Oil Chemists' Society,13418327|18842003 +Journal of Japan Society for Fuzzy Theory and Intelligent Informatics,Japan Society for Fuzzy Theory and Intelligent Informatics,13477986|18817203 +JOURNAL OF JAPAN SOCIETY FOR HEAD AND NECK SURGERY,Japan Society for Head and Neck Surgery,1349581X|1884474X +Journal of Japan Society of Civil Engineers Ser A1 (Structural Engineering & Earthquake Engineering (SE/EE)),Japan Society of Civil Engineers,21854653 +Journal of Japan Society of Civil Engineers Ser A2 (Applied Mechanics (AM)),Japan Society of Civil Engineers,21854661 +Journal of Japan Society of Civil Engineers Ser B1 (Hydraulic Engineering),Japan Society of Civil Engineers,2185467X +Journal of Japan Society of Civil Engineers Ser B2 (Coastal Engineering),Japan Society of Civil Engineers,18842399|18838944 +Journal of Japan Society of Civil Engineers Ser B3 (Ocean Engineering),Japan Society of Civil Engineers,21854688 +Journal of Japan Society of Civil Engineers Ser C (Geosphere Engineering),Japan Society of Civil Engineers,21856516 +Journal of Japan Society of Civil Engineers Ser D1 (Architecture of Infrastructure and Environment),Japan Society of Civil Engineers,21856524 +Journal of Japan Society of Civil Engineers Ser D2 (Historical Studies in Civil Engineering),Japan Society of Civil Engineers,21856532 +Journal of Japan Society of Civil Engineers Ser D3 (Infrastructure Planning and Management),Japan Society of Civil Engineers,21856540 +Journal of Japan Society of Civil Engineers Ser E1 (Pavement Engineering),Japan Society of Civil Engineers,21856559 +Journal of Japan Society of Civil Engineers Ser E2 (Materials and Concrete Structures),Japan Society of Civil Engineers,21856567 +Journal of Japan Society of Civil Engineers Ser F1 (Tunnel Engineering),Japan Society of Civil Engineers,21856575 +Journal of Japan Society of Civil Engineers Ser F2 (Underground Space Research),Japan Society of Civil Engineers,21856583 +Journal of Japan Society of Civil Engineers Ser F3 (Civil Engineering Informatics),Japan Society of Civil Engineers,21856591 +Journal of Japan Society of Civil Engineers Ser F4 (Construction and Management),Japan Society of Civil Engineers,21856605 +Journal of Japan Society of Civil Engineers Ser F5 (Professional Practices in Civil Engineering),Japan Society of Civil Engineers,21856613 +Journal of Japan Society of Civil Engineers Ser F6 (Safety Problem),Japan Society of Civil Engineers,21856621 +Journal of Japan Society of Civil Engineers Ser G (Environmental Research),Japan Society of Civil Engineers,21856648 +Journal of Japan Society of Civil Engineers Ser H (Engineering Education and Practice),Japan Society of Civil Engineers,18847781 +Journal of Japan Society of Computer Aided Surgery,The Japan Society of Computer Aided Sugery,13449486|18845770 +JOURNAL OF JAPAN SOCIETY OF HYDROLOGY AND WATER RESOURCES,Japan Society of Hydrology and Water Resources,09151389|13492853 +Journal of Japan Society of Immunology & Allergology in Otolaryngology,Japan Society of Immunology. and Allergology in Otolaryngology,09130691|21855900 +Journal of Japan Society of Kansei Engineering,Japan Society of Kansei Engineering,13461958|1884524X +Journal of Japan Society of Sports Industry,Japan Society of Sports Industry,13430688|18842534 +Journal of Japan Society on Water Environment,Japan Society on Water Environment,09168958|18813690 +Journal of Japan Veterinary Cancer Society,Japan Veterinary Cancer Society,18843344|18843352 +Journal of Japanese & Korean Cinema,Informa UK (Taylor & Francis),17564905|17564913 +JOURNAL OF JAPANESE ASSOCIATION OF CERTIFIED ORTHOPTIST,Japan Society of Engineering Geology,03855341|1884362X +Journal of Japanese Association of Hydrological Sciences,Japanese Association of Hydrological Sciences,13429612|18837166 +journal of japanese institute of cold chain,Japan Association of Food Preservation Scientists,02851385|21861250 +Journal of japanese Language and Culture,Japanese Language and Culture Association of Korea,15989585| +Journal of Japanese Language and Literature,The Japanese Language and Literature Association of Korea,12262552| +Journal of Japanese Society for Dialysis Therapy,Japanese Society for Dialysis Therapy,09115889|18846211 +Journal of Japanese Society for Extremophiles,Japanese Society for Extremophiles,13485474|18815758 +Journal of Japanese Society for Laser Dentistry,Japanese Society for Laser Dentistry,09177450|21856702 +Journal of Japanese Society for Oral Mucous Membrane,Japanese Society of Oral Medicine,13417983|18841473 +Journal of Japanese Society of Oral Medicine,Japanese Society of Oral Medicine,21866147|21866155 +Journal of Japanese Society of Oral Oncology,Japan Society for Oral Tumors,09155988|18844995 +Journal of Japanese Studies,Institute of Japanese Studies,12256277| +Journal of Japanese Studies,JSTOR,00956848| +Journal of Japonisme,Brill Academic Publishers,24054984|24054992 +Journal of Jazz Studies,Rutgers University Libraries,21581401 +Journal of Jesuit Studies,Brill Academic Publishers,22141324|22141332 +Journal of Jet Propulsion,American Institute of Aeronautics and Astronautics,19369980 +Journal of Jewish Education,Informa UK (Taylor & Francis),15244113|1554611X +Journal of Jewish Ethics,The Pennsylvania State University Press,23341777|23341785 +Journal of Jewish Identities,Muse - Johns Hopkins University Press,19462522 +Journal of Jewish Languages,Brill Academic Publishers,22134387|22134638 +Journal of Jewish Studies,Journal of Jewish Studies,00222097|20566689 +Journal of Jewish Thought and Philosophy,Brill Academic Publishers,1053699X|1477285X +Journal of JSCE,Japan Society of Civil Engineers,21875103 +Journal of JSEE,Japanese Society for Engineering Education,13412167|18810764 +Journal of K-theory K-theory and its Applications to Algebra Geometry and Topology,Cambridge University Press,18652433|18655394 +Journal of K-theory K-theory and its Applications to Algebra Geometry and Topology,Cambridge University Press,17550696|1755070X +Journal of Kathmandu Medical College,Nepal Journals Online,20911785|20911793 +Journal of KIBIM,Korean Institute of Building Information Modeling,22881697| +Journal of Kidney Cancer and VHL,Codon Publications,22035826 +Journal of KIISE,Korean Institute of Information Scientists and Engineers,2383630X| +Journal of King Abdulaziz University-Arts and Humanities,King Abdulaziz University Scientific Publishing Centre,13190989|16584295 +Journal of King Abdulaziz University-Earth Sciences,King Abdulaziz University Scientific Publishing Centre,10128832|16584317 +Journal of King Abdulaziz University-Economics and Administration,King Abdulaziz University Scientific Publishing Centre,13190997|16584236 +Journal of King Abdulaziz University-Educational Sciences,King Abdulaziz University Scientific Publishing Centre,13190970| +Journal of King Abdulaziz University-Engineering Sciences,King Abdulaziz University Scientific Publishing Centre,13191047|16584260 +Journal of King Abdulaziz University-Environmental Design Sciences,King Abdulaziz University Scientific Publishing Centre,16581598|16584309 +Journal of King Abdulaziz University-Islamic Economics,King Abdulaziz University Scientific Publishing Centre,10187383|16584244 +Journal of King Abdulaziz University-Marine Sciences,King Abdulaziz University Scientific Publishing Centre,10128840|16584325 +Journal of King Abdulaziz University-Medical Sciences,King Abdulaziz University Scientific Publishing Centre,13191004|16584279 +Journal of King Abdulaziz University-Meteorology Environment and Arid Land Agriculture Sciences,King Abdulaziz University Scientific Publishing Centre,13191039|16584287 +Journal of King Abdulaziz University-Science,King Abdulaziz University Scientific Publishing Centre,13191012|16584252 +Journal of King Saud University - Computer and Information Sciences,Elsevier ,13191578| +Journal of King Saud University - Engineering Sciences,Elsevier ,10183639| +Journal of King Saud University - Languages and Translation,Elsevier ,22108319| +Journal of King Saud University - Science,Elsevier ,10183647| +Journal of Knee Surgery,Thieme Publishing Group,15388506|19382480 +Journal of Knee Surgery Reports,Thieme Publishing Group,23262729|23262737 +Journal of Knot Theory and Its Ramifications,World Scientific ,02182165|02182165 +Journal of Knowledge & Communication Management,Diva Enterprises Private Limited,22777938|22777946 +Journal of Knowledge Management,Emerald (MCB UP ),13673270|00000000 +Journal of Knowledge-based Innovation in China,Emerald (MCB UP ),17561418| +Journal of Knowledge-based Innovation in China,Emerald (MCB UP ),17561418| +Journal of Knowledge-based Innovation in China,Emerald (MCB UP ),17561418| +Journal of Knowledge-based Innovation in China,Emerald (MCB UP ),17561418| +Journal of Knowledge-based Innovation in China,Emerald (MCB UP ),17561418| +Journal of Konbin,De Gruyter Open Sp. z o.o. ,18958281|20834608 +Journal of KONES Powertrain and Transport,Index Copernicus International,12314005| +Journal of Korea Design Knowledge,Korea Design and Knowledge Society,20927045| +Journal of Korea Game Society,Korea Game Society,15984540|22878211 +Journal of Korea Multimedia Society,Korea Multimedia Society,12297771| +Journal of korea Planners Association,Korea Planners Association,12267147| +Journal of Korea Society for Plants People and Environment,"""Korean Society for People, Plants and Environment""",12269778|22878238 +Journal of Korea Society of Color Studies,Korea Society of Color Studies,12266450| +Journal of Korea Society of Waste Management,Korea Society of Waste Managment,20932332|22875638 +Journal of Korea Spatial Information Society,Korea Spatial Information Society,22879242| +Journal of Korea Technical Association of The Pulp and Paper Industry,Korea Technical Association of the Pulp and Paper Industry,02533200| +Journal of Korea Water Resources Association,Korea Water Resources Association,12266280|22876138 +Journal of korean Academy of Child and Adolescent Psychiatry,Korean Academy of Child and Adolescent Psychiatry,1225729X| +Journal of Korean Academy of Child Health Nursing,Korean Academy of Child Health Nursing,12261815|2233985X +Journal of Korean Academy of Community Health Nursing,Korean Academy of Community Health Nursing (KAMJE),12259594|22884203 +Journal of Korean Academy of Fundamentals of Nursing,Korean Academy of Fundamentals of Nursing,12259012|22871802 +Journal of Korean Academy of Nursing,Korean Society of Nursing Science (KAMJE),20053673|2093758X +Journal of Korean Academy of Nursing Administration,Korean Academy of Nursing Administration (KAMJE),12259330|22884955 +Journal of Korean Academy of Oral Health,Korean Academy of Oral Health (KAMJE),1225388X|20937784 +Journal of Korean Academy of Psychiatric and Mental Health Nursing,The Korean Academy of Psychiatric and Mental Health Nursing (KAMJE),12258482|22884653 +Journal of Korean Acedemy of Dental Technology,Korean Academy of Dental Technology,12293954| +Journal of Korean Association of Art History Education,Korean Association of Art History Education,12298433| +Journal of Korean Association of Physical Education and Sport for Girls and Women,Korean Physical Education Association for Women,12296341| +Journal of Korean Biological Nursing Science,Korean Society of Biological Nursing Science,23836415| +Journal of Korean Breast Cancer Society,Korean Breast Cancer Society (KAMJE),15983641| +Journal of Korean Classical Chinese Education,Society for Korean Classical Chinese Education,12251321| +Journal of Korean Classical Chinese Literature,The Classical Chinese Literature Association of Korea,1975521X| +Journal of Korean Clinical Health Science,The Korean Society of Clinical Health Science,22883193| +Journal of korean dental science,Korean Academy of Dental Sciences,20054742| +Journal of Korean Diabetes,Korean Diabetes Association (KAMJE),22337431| +Journal of Korean Elementary Science Education,The Korean Society of Elementary Science Education,15983099| +Journal of Korean Endocrine Society,Korean Endocrine Society (KAMJE),10156380| +Journal of Korean Foot and Ankle Society,Korean Foot and Ankle Society (KAMJE),17383757|22888551 +Journal of Korean Forestry Society,Korean Forest Society,04454650|04454650 +Journal of Korean Gerontological Nursing,Korean Gerontological Nursing Society,12295299|23838086 +Journal of Korean Home Management Association,Korean Home Management Association,12291331| +Journal of Korean Institute of Industrial Engineers,Korean Institute of Industrial Engineers,12250988| +Journal of Korean institute of intelligent systems,Korean Institute of Intelligent Systems,19769172| +Journal of Korean Institute of Traditional Landscape Architecture,Korean Institute of Traditional Landscape Architecture,1738236X| +Journal of Korean Language Education,The International Association For Korean Language Education,12256137| +Journal of Korean Language Education,Journal of Korean Language Education,12278823| +Journal of Korean Library and Information Science Society,Korean Library and Informatiomn Science Society,12250902| +Journal of Korean Linguistics,The Journal of Korean Linguistics,12251933| +Journal of Korean Medical Association,Korean Medical Association (KAMJE),19758456|20935951 +Journal of Korean Medical classics,The Society of Korean Medical Classics,12298328| +Journal of Korean Medical Science,Korean Academy of Medical Sciences (KAMJE),10118934|15986357 +Journal of Korean Medicine,The Society of Korean Medicine,10100695|22883339 +Journal of Korean Medicine for Obesity Research,Society of Korean Medicine for Obesity Research,19769334|22881522 +Journal of Korean Medicine Rehabilitation,The Society of Korean Medicine Rehabilitation,12291854| +Journal of Korean Nature,Elsevier ,19768648| +Journal of Korean Neuropsychiatric Association,Korean Neuropsychiatric Association (KAMJE),10154817|22890963 +Journal of Korean Neurosurgical Society,Korean Neurosurgical Society (KAMJE),12258245|15987876 +Journal of Korean Neurotraumatology Society,Korean Neurotraumatology Society (KAMJE),17388708| +Journal of Korean Oncology Nursing,Korean Oncology Nursing Society (KAMJE),15984559|20937776 +Journal of Korean Ophthalmic Optics Society,The Korean Opthalmic Optics Society,12265012| +Journal of Korean Political and Diplomatic History,Korean Association for Political and Diplomatic History,12294608| +Journal of Korean Powder Metallurgy Institute,The Korean Powder Metallurgy Institute,12257591|22878173 +Journal of Korean Practical Arts Education,The Society of Korean Practical Arts Education,12268658| +Journal of Korean Public Health Nursing,Korean Society of Public Health Nursing,12260290| +Journal of Korean Religions,Muse - Johns Hopkins University Press,21672040 +Journal of Korean Sleep Research Society,Korean Sleep Society,1738608X|22884912 +Journal of Korean Society for Atmospheric Environment,Korean Society for Atmospheric Environment,15987132| +Journal of Korean Society for Clinical Pharmacology and Therapeutics,Korean Society for Clinical Pharmacology and Therapeutics (KAMJE),12255467| +Journal of Korean Society for Environmental Education,Korean Society for Environmental Education,12251259| +Journal of Korean Society for Geospatial Information System,The Korean Society for Geospatial Informational Systems,15982955| +Journal of Korean Society for Imaging Science & Technology,Korean Society for Imaging Science and Technology,12260517|22889604 +Journal of Korean Society for Indoor Environment,Korean Society for Indoor Environment,17384125|22877509 +Journal of Korean Society for Marine Environmental Engineering,The Korean Society for Marine Environment and Energy,12267414| +Journal of Korean Society for Microsurgery,The Korean Society for Microsurgery,23835257|22886184 +Journal of Korean Society for the Study of Physical Education,Korean Society for the Studey of Physical Education,12299685| +Journal of Korean Society of Archives and Records Management,Korean Society of Archives and Records Managmenet,15981487| +Journal of Korean Society of Coastal and Ocean Engineers,Korean Society of Coastal and Ocean Engineers,19768192|22882227 +Journal of Korean society of Dental Hygiene,Korean Society of Dental Hygiene,22871705| +Journal of Korean Society of Environmental Engineers,Korean Society of Environmental Engineering,12255025| +Journal of korean society of hazard mitigation,Korean Society of Hazard Mitigation,17382424| +Journal of Korean Society of Medical Informatics,The Korean Society of Medical Informatics (KAMJE),12258903| +Journal of Korean Society of Occupational and Environmental Hygiene,Korean Industrial Hygiene Association,12264326| +Journal of Korean Society of Pediatric Endocrinology,Korean Society of Pediatric Endocrinology (KAMJE),12262242| +Journal of Korean Society of Rural Planning,Korean Society of Rural Planning,12258857|22889493 +Journal of Korean Society of Sensory Integration Therapists,Korean Acadmy of Sensory Integration,17380405| +Journal of Korean Society of Spine Surgery,Korean Society of Spine Surgery (KAMJE),12295701|20934386 +Journal of Korean Society of Steel Construction,Korean Society of Steel Construction,1226363X|22874054 +Journal of Korean Society of Transportation,Korean Society of Transportation,12291366| +Journal of Korean Society of Water Science and Technology,Korean Society of Water Science and Technology,12257192| +Journal of Korean Society on Water Environment,Korean Society on Water Environment,22890971| +Journal of Korean Studies,Muse - Johns Hopkins University Press,21581665 +Journal of korean theatre studies association,Korean Theatre Studies Association,12292877| +Journal of Korean Thyroid Association,Korean Thyroid Association (KAMJE),2005162X| +Journal of Korean Traditional Costume,Society of Korean Traditional Costume,15988295| +Journal of Korean Traditional Oncology,Korean Academy of Traditional Oncology,12292621| +Journal of Korean Tunnelling and Underground Space Association,Korean Tunnelling Association,22338292|22874747 +Journal of Koreanology,Korean Studies Institute,12267562| +Journal of Krishi Vigyan,Diva Enterprises Private Limited,23196432|23494433 +Journal of Kurdish Studies,Peeters Publishers,13707205 +Journal of Labelled Compounds,Wiley Blackwell (John Wiley & Sons),00222135|10991344 +Journal of Labelled Compounds and Radiopharmaceuticals,Wiley Blackwell (John Wiley & Sons),03624803|10991344 +Journal of Labor Economics,The University of Chicago Press,0734306X|15375307 +Journal of Labor Research,Springer-Verlag,01953613|19364768 +Journal of Laboratory and Clinical Medicine,Elsevier ,00222143| +Journal of Laboratory Automation,SAGE Publications,22110682|15402452 +Journal of Laboratory Medicine and Quality Assurance,Korean Association of Quality Assurance for Clinical Laboratory,23842458|22887261 +Journal of Laboratory Physicians,Medknow Publications,09742727| +Journal of Lacan & Contemporary Psychoanalysis,Korean Society for Lacan and Contemporary Psychoanalysis,1229666X| +Journal of Lake Sciences,Journal of Lake Sciences,10035427| +Journal of Land and Rural Studies,SAGE Publications,23210249|23217464 +Journal of Land Use Science,Informa UK (Taylor & Francis),1747423X|17474248 +Journal of Landscape Architecture,Informa UK (Taylor & Francis),18626033|2164604X +Journal of Landscape Ecology,De Gruyter Open Sp. z o.o. ,18032427|18054196 +Journal of Language Aggression and Conflict,John Benjamins Publishing Company,22131272|22131280 +Journal of Language and Cultural Education,Walter de Gruyter GmbH,13394584 +Journal of Language and Literature,Progress IPS,20780303|20780303 +Journal of Language and Literature Education,Eurasian Society of Educational Research,21466971|21466971 +Journal of Language and Politics,John Benjamins Publishing Company,15692159|15699862 +Journal of Language and Sexuality,John Benjamins Publishing Company,22113770|22113789 +Journal of Language and Social Psychology,SAGE Publications,0261927X|00000000 +Journal of Language Contact,Brill Academic Publishers,18774091|19552629 +Journal of Language Evolution,Oxford University Press,20584571|2058458X +Journal of Language Identity & Education,Informa UK (Taylor & Francis),15348458|15327701 +Journal of Language Literature and Culture,Informa UK (Taylor & Francis),20512856|20512864 +Journal of Language Modelling,"""Institute of Computer Science, Polish Academy of Sciences""",2299856X|22998470 +Journal of Language Sciences,The Korean Association of Language Sciences,12252522| +Journal of Language Teaching and Research,Academy Publication,17984769| +Journal of Language Technology & Entrepreneurship in Africa,African Journals Online ,19981279 +Journal of Languages and Culture,Academic Journals,21416540|21416540 +Journal of Laparoendoscopic & Advanced Surgical Techniques,Mary Ann Liebert,10926429|15579034 +Journal of Laparoendoscopic & Advanced Surgical Techniques Part B Videoscopy,Mary Ann Liebert,23733063| +Journal of Laparoendoscopic Surgery,Mary Ann Liebert,10523901| +Journal of large-scale research facilities JLSRF,"""Forschungszentrum Julich, Zentralbibliotek""",2364091X +Journal of Laryngology and Voice,Medknow Publications,22309748| +Journal of Laser Applications,Laser Institute of America,1042346X|19381387 +Journal of Laser Micro/Nanoengineering,Japan Laser Processing Society,18800688|18800688 +Journal of lasers in medical sciences,International Society for Phytocosmetic Sciences,20089783|22286721 +Journal of Lasers Optics & Photonics,OMICS Publishing Group,2469410X +Journal of Late Antiquity,Muse - Johns Hopkins University Press,19421273 +Journal of Latin American Anthropology,Wiley Blackwell (Blackwell Publishing),10857052|15487180 +Journal of Latin American Cultural Studies,Informa UK (Taylor & Francis),13569325|14699575 +Journal of Latin American Geography,Muse - Johns Hopkins University Press,15485811 +Journal of Latin American Studies,Cambridge University Press,0022216X|1469767X +Journal of Latin Linguistics,Walter de Gruyter GmbH,21948739|21948747 +Journal of Latina/o Psychology,American Psychological Association,21681678|21630070 +Journal of Latino/Latin American Studies,Journal of Latino/Latin American Studies,15499502| +Journal of Latinos and Education,Informa UK (Taylor & Francis),15348431|1532771X +Journal of Law,Scientific Publishing Center,19858000| +Journal of Law and Commerce,"""University Library System, University of Pittsburgh""",07332491|21647984 +Journal of Law and Conflict Resolution,Academic Journals,20069804 +Journal of Law and Courts,The University of Chicago Press,21646570|21646589 +Journal of Law and Criminal Justice,American Research Institute for Policy Development,23742674|23742682 +Journal of Law and Governance,Victoria University,2206088X +Journal of Law and Jurisprudence,UCL Press,20521871|20521871 +Journal of Law and Psychology,Progress IPS,20781083| +Journal of Law and Religion,Cambridge University Press,07480814|21633088 +Journal of Law and Society,Wiley Blackwell (Blackwell Publishing),0263323X|14676478 +Journal of Law and the Biosciences,Oxford University Press,20539711 +Journal of Law Economics and Organization,Oxford University Press,87566222|14657341 +Journal of Law Information & Science,"""Faculty of Law, University of Tasmania""",07291485| +Journal of Law Religion and State,Brill Academic Publishers,22126465|22124810 +Journal of Leadership & Organizational Studies,SAGE Publications,15480518|19397089 +Journal of Leadership Education,Journal of Leadership Education,15529045 +Journal of Leadership Studies,Wiley Blackwell (John Wiley & Sons),19352611|1935262X +Journal of Learning Analytics,Society for Learning Analytics Research,19297750 +Journal of Learning Design,Queensland University of Technology,18328342|18328342 +Journal of Learning Disabilities,SAGE Publications,00222194|15384780 +Journal of Learning Disabilities,SAGE Publications,14690047|00000000 +Journal of Learning Disabilities and Offending Behaviour,Emerald (MCB UP ),20420927|20428693 +Journal of Legal Affairs and Dispute Resolution in Engineering and Construction,American Society of Civil Engineers,19434162|19434170 +Journal of Legal Aspects of Sport,Human Kinetics,10720316| +Journal of Legal Medicine,Informa UK (Taylor & Francis),01947648|1521057X +Journal of Legal Studies,Walter de Gruyter GmbH,23927054 +Journal of Legal Studies Education,Wiley Blackwell (Blackwell Publishing),08965811|17441722 +Journal of Legislative Studies,Informa UK (Taylor & Francis),13572334|17439337 +Journal of Leisure Research,"""Sagamore Publishing, LLC""",21596417 +Journal of Lesbian Studies,Informa UK (Taylor & Francis),10894160|15403548 +Journal of Leukemia,OMICS Publishing Group,23296917 +Journal of Leukocyte Biology,Society for Leukocyte Biology,07415400|1938-3673 +Journal of LGBT Health Research,Informa UK (Taylor & Francis),15574091|15574105 +Journal of LGBT Issues in Counseling,Informa UK (Taylor & Francis),15538605|15538338 +Journal of LGBT Youth,Informa UK (Taylor & Francis),19361653|19361661 +Journal of Librarianship and Information Science,SAGE Publications,09610006|00000000 +Journal of Librarianship and Information Science in Africa,African Journals Online ,15958922 +Journal of Librarianship and Scholarly Communication,Pacific University Library,21623309 +Journal of Library & Information Services in Distance Learning,Informa UK (Taylor & Francis),1533290X|15332918 +Journal of Library Administration,Informa UK (Taylor & Francis),01930826|15403564 +Journal of Library and Information Sciences,American Research Institute for Policy Development,23742372|23742364 +Journal of Library Metadata,Informa UK (Taylor & Francis),19386389|19375034 +Journal of Life and Earth Science,Bangladesh Journals Online,19904827| +Journal of Life Cycle Assessment Japan,"""Institute of Life Cycle Assessment, Japan""",18802761|18810519 +Journal of Life Economics,Journal of Life Economics,21484139| +Journal of Life Medicine,American V-King Scientific Publishers,23295430|23295430 +Journal of Life Science,Korean Society of Life Science,12259918| +Journal of Life Sciences,David Publishing Company,19347391|19347391 +Journal of Life Sciences and Technologies,EJournal Publishing,23013672| +Journal of Life Sciences Research,Asian Educational Journal Publishing Group,24089184 +Journal of Life Support Engineering,The Society of Life Support Technology,13419455|18845827 +Journal of Life Support Technology,The Society of Life Support Technology,09121595|18845819 +Journal of Lifestyle Medicine,Institute of Lifestyle Medicine,22348549|22881557 +Journal of Light & Visual Environment,Illuminating Engineering Society of Japan,03878805|13498398 +Journal of Light Metals,Elsevier ,14715317| +Journal of Lightning Research,Bentham Science,16528034| +Journal of Lightwave Technology,Institute of Electrical and Electronics Engineers,07338724|15582213 +Journal of Limnology,PAGEPress Publications,11295767|17238633 +Journal of Limnology and Freshwater Fisheries Research,Journal of Limnology and Freshwater Fisheries Research,21489300|21494428 +Journal of Linguistic Anthropology,Wiley Blackwell (Blackwell Publishing),10551360|15481395 +Journal of Linguistic Geography,Cambridge University Press,20497547 +Journal of Linguistic Studies,Korean Association of Language Studies,12269859| +Journal of Linguistics,Cambridge University Press,00222267|14697742 +Journal of Linguistics/Jazykovedný casopis,De Gruyter Open Sp. z o.o. ,00215597|00215597 +Journal of Lipid and Atherosclerosis,Korean Society of Lipidology and Atherosclerosis (KAMJE),22872892|22882561 +Journal of Lipid Mediators and Cell Signalling,Elsevier ,09297855| +Journal of Lipid Nutrition,Japan Society of Lipid Nutrition,13434594|18832237 +Journal of Lipids,Hindawi Publishing Corporation,20903030|20903049 +Journal of Liposome Research,Informa UK (Taylor & Francis),08982104|15322394 +Journal of Liquid Chromatography,Informa UK (Taylor & Francis),01483919| +Journal of Liquid Chromatography & Related Technologies,Informa UK (Marcel Dekker),10826076|1520572X +Journal of Literacy Research,SAGE Publications,1086296X|15548430 +Journal of Literary & Cultural Disability Studies,Liverpool University Press,17576458|17576466 +Journal of Literary Semantics,Walter de Gruyter GmbH,03417638|16133838 +Journal of Literary Studies,Informa UK (Taylor & Francis),02564718|17535387 +Journal of Literary Theory,Walter de Gruyter GmbH,18625290|18628990 +Journal of Literature and Art Studies,David Publishing Company,21595836|21595836 +Journal of Literature and Trauma Studies,Muse - Johns Hopkins University Press,20454740 +Journal of Lithic Studies,"""UKOLN, University of Bath""",20550472|20550472 +Journal of Liver,OMICS Publishing Group,21670889 +Journal of Liver Cancer,The Korean Liver Cancer Study Group,22888128|23835001 +Journal of Liver Disease & Transplantation,OMICS Publishing Group,23259612 +Journal of Liver Research Disorders & Therapy,MedCrave Group,24711381 +Journal of Local and Global Health Perspectives,Hamad bin Khalifa University Press (HBKU Press),22259228| +Journal of Local and Global Health Science,Hamad bin Khalifa University Press (HBKU Press),23060441| +Journal of Local Government Studis,Korean Association for Local Government Studies,12267112| +Journal of Local Government Studis,Korean Association for Local Government Studies,12267112| +Journal of Local History and Culture,Korean Society for Local History and Culture,12299286| +Journal of Location Based Services,Informa UK (Taylor & Francis),17489725| +Journal of Location Based Services,Informa UK (Taylor & Francis),17489725|17489733 +Journal of Logic and Analysis,Journal of Logic and Analysis,17599008 +Journal of Logic and Computation,Oxford University Press,0955792X|1465363X +Journal of Logic Language and Information,Springer-Verlag,09258531|15729583 +Journal of Logical and Algebraic Methods in Programming,Elsevier ,23522208| +Journal of Long-Term Effects of Medical Implants,Begell House Inc.,10506934| +Journal of Loss and Trauma,Informa UK (Taylor & Francis),15325024|15325032 +Journal of Loss Prevention in the Process Industries,Elsevier ,09504230| +Journal of Low Carbon Economy,Hans Publishers,23247924|23247932 +Journal of Low Frequency Noise,SAGE Publications,02630923|20484046 +Journal of Low Power Electronics,American Scientific Publishers,15461998|00000000 +Journal of Low Power Electronics and Applications,MDPI AG,20799268 +Journal of Low Temperature Physics,Springer-Verlag,00222291|15737357 +Journal of Lower Genital Tract Disease,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10892591|15260976 +Journal of Lubrication Technology,ASME International ,00222305| +Journal of Luminescence,Elsevier ,00222313| +Journal of Luminescence and Applications,Columbia International Publishing,23751045 +Journal of Lung Cancer,Korean Association for the Study of Lung Cancer (KAMJE),15987809| +Journal of Lung Pulmonary & Respiratory Research,MedCrave Group,23760060 +Journal of Machine Intelligence,Sanford Inter-Science Press,23772220 +Journal of Machine Learning Research,CrossRef test prefix,15324435| +Journal of Machine Learning Technologies,Bioinfo Publications,22293981|2229399X +Journal of Machine to Machine Communications,River Publishers,2246137X| +Journal of Machinery Manufacture and Reliability,Allerton Press,10526188|19349394 +Journal of Macroeconomic Dynamics Research,Sciknow Publications,23297786 +Journal of Macroeconomics,Elsevier ,01640704| +Journal of Macromarketing,SAGE Publications,02761467|00000000 +Journal of Macromolecular Science Part A,Informa UK (Marcel Dekker),10601325|15205738 +Journal of Macromolecular Science Part A - Chemistry,Informa UK (Taylor & Francis),0022233X| +Journal of Macromolecular Science Part B,Informa UK (Marcel Dekker),00222348|1525609X +Journal of Macromolecular Science Part C- Polymer Reviews,Informa UK (Marcel Dekker),15321797|15329038 +Journal of Macromolecular Science Part D - Reviews in Polymer Processing,Informa UK (Taylor & Francis),00222321| +Journal of Magnesium and Alloys,Elsevier ,22139567| +Journal of Magnetic Resonance,Elsevier ,10907807|10960856 +Journal of Magnetic Resonance (1969),Elsevier ,00222364| +Journal of Magnetic Resonance Imaging,Wiley Blackwell (John Wiley & Sons),10531807|15222586 +Journal of Magnetic Resonance Series A,Elsevier - Academic Press,10641858|10960864 +Journal of Magnetic Resonance Series B,Elsevier - Academic Press,10641866|10960872 +Journal of Magnetics,The Korean Magnetics Society,12261750| +Journal of Magnetism and Magnetic Materials,Elsevier ,03048853| +Journal of Mahatma Gandhi Institute of Medical Sciences,Medknow Publications,09719903| +Journal of Maintenance in the Addictions,Informa UK (Taylor & Francis),10911332|15407624 +Journal of Maize Research and Development,Nepal Journals Online,24679291|24679305 +Journal of Mammalian Evolution,Springer-Verlag,10647554|15737055 +Journal of Mammalian Ova Research,BioOne (Japanese Society of Mammalian Ova Research),13417738|13475878 +Journal of Mammalogy,Oxford University Press,00222372|15451542 +Journal of Mammary Gland Biology and Neoplasia,Springer-Verlag,10833021|15737039 +Journal of Man Machine and Technology,AICIT,22341625|22341633 +Journal of Managed Care & Specialty Pharmacy,Academy of Managed Care Pharmacy,23760540|23761032 +Journal of Managed Care Pharmacy,Academy of Managed Care Pharmacy,10834087|1944706X +Journal of Managed Pharmaceutical Care,Informa UK (Taylor & Francis),15349713|15349721 +Journal of Management,Sri Lanka Journals Online ,13918230| +Journal of Management,SAGE Publications,01492063|15571211 +Journal of Management & Governance,Springer-Verlag,13853457|1572963X +Journal of Management & Marketing in Healthcare,Maney Publishing,17533031|1753304X +Journal of Management & Organization,Cambridge University Press,18333672|18393527 +Journal of Management Accounting Research,American Accounting Association,10492127|15588033 +Journal of Management Analytics,Informa UK (Taylor & Francis),23270012|23270039 +Journal of Management and Economics Research,Yonetim ve Ekonomi Arastirmalari Dergisi - Journal of Management and Economics Research,13048783| +Journal of Management and Strategy,Sciedu Press,19233965|19233973 +Journal of Management and Sustainability,Canadian Center of Science and Education,19254725|19254733 +Journal of Management and Training for Industries,Institute of Industrial Applications Engineers,21888728|21882274 +Journal of Management Control,Springer-Verlag,21914761|2191477X +Journal of Management Development,Emerald (MCB UP ),02621711|00000000 +Journal of Management Education,SAGE Publications,10525629|00000000 +Journal of Management for Global Sustainability,Ateneo de Manila University,22446885|22446893 +Journal of Management History,Emerald (MCB UP ),1355252X|00000000 +Journal of Management in Engineering,American Society of Civil Engineers,0742597X|19435479 +Journal of Management in Medicine,Emerald (MCB UP ),02689235| +Journal of Management Information System & E-commerce,American Research Institute for Policy Development,23737603|23737638 +Journal of Management Information Systems,Informa UK (Taylor & Francis),07421222|1557928X +Journal of Management Inquiry,SAGE Publications,10564926|00000000 +Journal of Management Policies and Practices,American Research Institute for Policy Development,23336048|23336056 +Journal of Management Research,"""Macrothink Institute, Inc.""",1941899X +Journal of Management Research and Analysis,Diva Enterprises Private Limited,23942762|23942770 +Journal of Management Science and Practice,The World Academic Publishing,23301783|23301791 +Journal of Management Sciences,"""Geist Science, Iqra University""",24138657|23130113 +Journal of Management Sciences,"""Geist Science, Iqra University""", +Journal of Management Spirituality & Religion,Informa UK (Taylor & Francis),14766086|1942258X +Journal of Management Studies,Wiley Blackwell (Blackwell Publishing),00222380|14676486 +Journal of Managerial Psychology,Emerald (MCB UP ),02683946| +Journal of Managment and Business Administration Central Europe,Kozminski University,24507814| +Journal of Manipulative and Physiological Therapeutics,Elsevier ,01614754| +Journal of Manmohan Memorial Institute of Health Sciences,Nepal Journals Online,20911041| +Journal of Manual & Manipulative Therapy,Maney Publishing,10669817|20426186 +Journal of Manufacturing Processes,Elsevier ,15266125| +Journal of Manufacturing Science and Engineering,ASME International ,10871357| +Journal of Manufacturing Systems,Elsevier ,02786125| +Journal of Manufacturing Technology Management,Emerald (MCB UP ),1741038X|00000000 +Journal of Map & Geography Libraries,Informa UK (Taylor & Francis),15420353|15420361 +Journal of Maps,Informa UK (Taylor & Francis),17445647 +Journal of Marine and Island Cultures,Elsevier ,22126821| +Journal of Marine Biology,Hindawi Publishing Corporation,16879481|1687949X +Journal of Marine Biology & Oceanography,OMICS Publishing Group,23248661 +Journal of Marine Biology and Aquaculture,Ommega Online Publishers,23810750 +Journal of Marine Bioscience and Biotechnology,The Korean Society for Marine Biotechnology,23835400 +Journal of Marine Engineering & Technology,Informa UK (Taylor & Francis),20464177|20568487 +Journal of Marine Research,Journal of Marine Research/Yale,00222402|15439542 +Journal of Marine Science and Application,Springer-Verlag,16719433|19935048 +Journal of Marine Science and Engineering,MDPI AG,20771312 +Journal of Marine Science and Technology,Springer-Verlag,09484280|14378213 +Journal of Marine Science Research & Development,OMICS Publishing Group,21559910 +Journal of Marine Systems,Elsevier ,09247963| +Journal of Marital and Family Therapy,Wiley Blackwell (Blackwell Publishing),0194472X|17520606 +Journal of Maritime & Transportation Science,Association for Promotion and Development of Maritime Industries,05546397| +Journal of Maritime Archaeology,Springer-Verlag,15572285|15572293 +Journal of Market Access & Health Policy,Co-Action Publishing,20016689 +Journal of Market-Focused Management,Springer-Verlag,13823019|15728846 +Journal of Marketing,American Marketing Association,00222429|00222429 +Journal of Marketing & Distribution,Japan Society of Marketing and Distribution,13459015|21860939 +Journal of Marketing & Public Policy,JSTOR,07486766| +Journal of Marketing Analytics,Nature Publishing Group - Macmillan Publishers,20503318|20503326 +Journal of Marketing and Consumer Behaviour in Emerging Markets,"""University of Warsaw, Faculty of Management""",24496634 +Journal of Marketing Behavior,Now Publishers,23265698 +Journal of Marketing Channels,Informa UK (Taylor & Francis),1046669X|15407039 +Journal of Marketing Communications,Informa UK (Taylor & Francis),13527266|14664445 +Journal of Marketing Education,SAGE Publications,02734753|15526550 +Journal of Marketing for HIGHER EDUCATION,Informa UK (Taylor & Francis),08841241|15407144 +Journal of Marketing Management,Informa UK (Taylor & Francis),0267257X|14721376 +Journal of Marketing Management (JMM),American Research Institute for Policy Development,23336080|23336099 +Journal of Marketing Practice Applied Marketing Science,Emerald (MCB UP ),13552538|00000000 +Journal of Marketing Research,American Marketing Association,00222437|15477193 +Journal of Marketing Research and Case Studies,IBIMA Publishing,21657009 +Journal of Marketing Thought,Sedam Sunchang Foundation,22889159|22890750 +Journal of Marmara University Institute of Health Sciences,ScopeMed International Medical Journal Managment and Indexing System,21463654 +Journal of Marriage and Family,Wiley Blackwell (Blackwell Publishing),00222445|17413737 +Journal of Mass Communication and Journalism,OMICS Publishing Group,21657912 +Journal of Mass Media Ethics,Informa UK (Taylor & Francis),08900523|15327728 +Journal of Mass Spectrometry,Wiley Blackwell (John Wiley & Sons),10765174|10969888 +Journal of Material Culture,SAGE Publications,13591835|00000000 +Journal of Material Cycles and Waste Management,Springer-Verlag,14384957|16118227 +Journal of Material Science & Engineering,OMICS Publishing Group,21690022 +Journal of Material Science and Technology,Elsevier ,10050302| +Journal of Material Science and Technology Research,Avanti Publishers,24104701 +Journal of Materials,Hindawi Publishing Corporation,23144866|23144874 +Journal of Materials Chemistry,The Royal Society of Chemistry,09599428|13645501 +Journal of Materials Chemistry A,The Royal Society of Chemistry,20507488|20507496 +Journal of Materials Chemistry B,The Royal Society of Chemistry,2050750X|20507518 +Journal of Materials Chemistry C,The Royal Society of Chemistry,20507526|20507534 +Journal of Materials Engineering,Springer-Verlag,09317058| +Journal of Materials Engineering,Springer-Verlag,09317058| +Journal of Materials Engineering and Performance,Springer-Verlag,10599495|15441024 +Journal of Materials for Energy Systems,Springer-Verlag,01629719| +Journal of Materials in Civil Engineering,American Society of Civil Engineers,08991561|19435533 +Journal of Materials Physics and Chemistry,"""Science and Education Publishing Co., Ltd.""",23334436| +Journal of Materials Processing & Manufacturing Science,Sage Publications - Technomic Publishing Company,10620656| +Journal of Materials Processing and Manufacturing Science,SAGE Publications,10620656|00000000 +Journal of Materials Processing Technology,Elsevier ,09240136| +Journal of Materials Research,Cambridge University Press (Materials Research Society),08842914|20445326 +Journal of Materials Research and Technology,Elsevier ,22387854| +Journal of Materials Science,Springer-Verlag,00222461|15734803 +Journal of Materials Science and Chemical Engineering,"""Scientific Research Publishing, Inc.""",23276045|23276053 +Journal of Materials Science and Engineering A,David Publishing Company,21616213|21616213 +Journal of Materials Science and Engineering B,David Publishing Company,21616221|21616221 +Journal of Materials Science and Engineering with Advanced Technology,Scientific Advances Publishers,9761446 +Journal of Materials Science and Nanotechnology,"""Annex Publishers, LLC""",23489812 +Journal of Materials Science Letters,Springer-Verlag,02618028|15734811 +Journal of Materials Science Materials in Electronics,Springer-Verlag,09574522|1573482X +Journal of Materials Science Materials in Medicine,Springer-Verlag,09574530|15734838 +Journal of Materials Science Research,Canadian Center of Science and Education,19270585|19270593 +Journal of Materials Shaping Technology,Springer-Verlag,0931704X| +Journal of Materials Synthesis and Processing,Springer (Kluwer Academic Publishers),10647562| +Journal of Materiomics,Elsevier ,23528478| +Journal of Mathematical Analysis and Applications,Elsevier ,0022247X|10960813 +Journal of Mathematical and Fundamental Sciences,The Institute for Research and Community Services ITB,23375760|23385510 +Journal of Mathematical Biology,Springer-Verlag,03036812|14321416 +Journal of Mathematical Chemistry,Springer-Verlag,02599791|15728897 +Journal of Mathematical Cryptology,Walter de Gruyter GmbH,18622976|18622984 +Journal of Mathematical Economics,Elsevier ,03044068| +Journal of Mathematical Finance,"""Scientific Research Publishing, Inc.""",21622434|21622442 +Journal of Mathematical Fluid Mechanics,Springer-Verlag,14226928|14226952 +Journal of Mathematical Imaging and Vision,Springer-Verlag,09249907|15737683 +Journal of Mathematical Inequalities,Element d.o.o.,1846579X| +Journal of Mathematical Logic,World Scientific ,02190613|17936691 +Journal of Mathematical Modelling and Algorithms,Springer-Verlag,15701166|15729214 +Journal of Mathematical Modelling and Algorithms in Operations Research,Springer-Verlag,22142487|22142495 +Journal of Mathematical Physics,American Institute of Physics,00222488|10897658 +Journal of Mathematical Psychology,Elsevier ,00222496|10960880 +Journal of Mathematical Sciences,Springer-Verlag,10723374|15738795 +Journal of Mathematical Sciences & Computer Applications,"""Atlas Scienfitic Publishing, LP""",2158933X +Journal of Mathematical Sciences Advances and Applications,Scientific Advances Publishers,9745750 +Journal of Mathematical Sociology,Informa UK (Taylor & Francis),0022250X|15455874 +Journal of Mathematical Study,Global Science Press,10066837| +Journal of Mathematics,Hindawi Publishing Corporation,23144629|23144785 +Journal of Mathematics and Music,Informa UK (Taylor & Francis),17459737|17459745 +Journal of Mathematics and Physics,Wiley Blackwell (Blackwell Publishing),00971421| +Journal of Mathematics and Statistics,Science Publications,15493644| +Journal of Mathematics and System Science,David Publishing Company,21595291|21595291 +Journal of Mathematics and Technology,Progress IPS,20780257| +Journal of Mathematics and the Arts,Informa UK (Taylor & Francis),17513472|17513480 +Journal of Mathematics in Industry,Springer (Biomed Central Ltd.),21905983|21905983 +Journal of Mathematics Research,Canadian Center of Science and Education,19169795|19169809 +Journal of Mathematics Teacher Education,Springer-Verlag,13864416|15731820 +Journal of Maxillofacial and Oral Surgery,Springer-Verlag,09728279|0974942X +Journal of Maxillofacial Surgery,Elsevier ,03010503| +Journal of Mechanical Design,ASME International ,10500472| +Journal of Mechanical Engineering,Chinese Journal of Mechanical Engineering,05776686| +Journal of Mechanical Engineering,Bangladesh Journals Online,03794318| +Journal of Mechanical Engineering and Automation,Scientific and Academic Publishing,21632405| +JOURNAL OF MECHANICAL ENGINEERING AND SCIENCES,Universiti Malaysia Pahang Publishing,22894659|22318380 +Journal of Mechanical Engineering and Technology,Bowen Publishing Company,23313013|2331303X +Journal of Mechanical Engineering Research,Academic Journals,21412383 +Journal of Mechanical Engineering Science,SAGE Publications,00222542| +Journal of Mechanical Science and Technology,Springer-Verlag,1738494X|19763824 +Journal of Mechanical Systems for Transportation and Logistics,The Japan Society of Mechanical Engineers,18821782 +Journal of Mechanical Working Technology,Elsevier ,03783804| +Journal of Mechanics,Cambridge University Press,17277191|18118216 +Journal of Mechanics & Industry Research,Sciknow Publications,23299428 +Journal of Mechanics Engineering and Automation,David Publishing Company,21595275|21595275 +Journal of Mechanics in Medicine and Biology,World Scientific ,02195194|17936810 +Journal of Mechanics of Materials and Structures,Mathematical Sciences Publishers,15593959|15593959 +Journal of Mechanisms,Elsevier ,00222569| +Journal of Mechanisms and Robotics,ASME International ,19424302| +Journal of Mechanisms Transmissions and Automation in Design,ASME International ,07380666| +Journal of Mechatronics,American Scientific Publishers,23262885| +Journal of Mechatronics and Applications,Hindawi Publishing Corporation,2090018X|20900198 +Journal of Media & Mass Communication,Engineering and Technology Publishing,23785047| +Journal of Media and Communication Studies,Academic Journals,21412545 +Journal of Media and Religion,Informa UK (Taylor & Francis),15348423|15328415 +Journal of Media Business Studies,Informa UK (Taylor & Francis),16522354|23762977 +Journal of Media Critiques,"""University of Lincoln, School of Film and Media and Changer Agency""",20569785|20569793 +Journal of Media Economics,Informa UK (Taylor & Francis),08997764|15327736 +Journal of Media Ethics,Informa UK (Taylor & Francis),23736992|2373700X +Journal of Media Law,Informa UK (Taylor & Francis),17577632|17577640 +Journal of Media Practice,Informa UK (Taylor & Francis),14682753|20400926 +Journal of Media Psychology Theories Methods and Applications,Hogrefe Publishing Group,18641105|21512388 +Journal of Medical and Allied Sciences,ScopeMed International Medical Journal Managment and Indexing System,22311696| +Journal of Medical and Bioengineering,EJournal Publishing,23013796| +Journal of Medical and Biological Engineering,Springer-Verlag,16090985|21994757 +Journal of Medical and Biomedical Sciences,African Journals Online ,20266294| +Journal of Medical and Dental Practice,Medinform LTD,23676795 +Journal of Medical and Pharmaceutical Innovation,Literati Scientific and Publishers,23478136 +Journal of Medical and Scientific Research,KIMS Foundation and Research Center,23211326|2394112X +Journal of Medical and Veterinary Mycology,Oxford University Press,02681218|1365280X +Journal of Medical Biochemistry,De Gruyter Open Sp. z o.o. ,14528258|14528258 +Journal of Medical Biography,SAGE Publications,09677720|17581087 +Journal of Medical Case Reports,Springer (Biomed Central Ltd.),17521947|17521947 +Journal of Medical Cases,"""Elmer Press, Inc.""",19234155|19234155 +Journal of Medical Colleges of PLA,Elsevier ,10001948| +Journal of Medical Devices,ASME International ,19326181| +Journal of Medical Diagnostic Methods,OMICS Publishing Group,21689784 +Journal of Medical Disorders,Herbert Publications,20533659 +Journal of Medical Economics,Informa UK (Taylor & Francis),13696998|1941837X +Journal of Medical Education and Curricular Development,"""Libertas Academica, Ltd.""",23821205 +Journal of Medical Engineering,Hindawi Publishing Corporation,23145129|23145137 +Journal of Medical Engineering & Technology,Informa UK (Taylor & Francis),03091902|1464522X +Journal of Medical Entomology,Oxford University Press,00222585|19382928 +Journal of Medical Ethics,BMJ,03066800|14734257 +Journal of Medical Genetics,BMJ,00222593|14686244 +Journal of Medical Genetics and Genomics,Academic Journals,21412278 +Journal of Medical Humanities,Springer-Verlag,10413545|15733645 +Journal of Medical Hypotheses and Ideas,Elsevier ,22517294| +Journal of Medical Imaging,SPIE - International Society for Optical Engineering,23294302| +Journal of Medical Imaging and Health Informatics,American Scientific Publishers,21567018|21567026 +Journal of Medical Imaging and Radiation Oncology,Wiley Blackwell (Blackwell Publishing),17549477|17549485 +Journal of Medical Imaging and Radiation Sciences,Elsevier ,19398654| +Journal of Medical Internet Research,JMIR Publications Inc.,14388871 +Journal of Medical Laboratory and Diagnosis,Academic Journals,21412618 +Journal of Medical Laboratory Science,African Journals Online ,11161043 +Journal of Medical Law and Ethics,Paris Legal Publishers,22135405|22145354 +Journal of Medical Marketing Device Diagnostic and Pharmaceutical Marketing,SAGE Publications,17457904|17457912 +Journal of Medical Microbiology,Microbiology Society,00222615|14735644 +Journal of Medical Microbiology & Diagnosis,OMICS Publishing Group,21610703 +Journal of Medical Nutrition and Nutraceuticals,Medknow Publications,2278019X| +Journal of Medical Physics,Medknow Publications,09716203| +Journal of Medical Primatology,Wiley Blackwell (Blackwell Publishing),00472565|16000684 +Journal of Medical Radiation Sciences,Wiley Blackwell (John Wiley & Sons),20513895| +Journal of Medical Research and Development,The World Academic Publishing,23039345|23039353 +Journal of Medical Robotics Research,World Scientific ,2424905X|24249068 +Journal of Medical Science & Research,Diva Enterprises Private Limited,09765948|23215798 +Journal of Medical Science And clinical Research,Research and Analysis Journals,2347176X +Journal of Medical Sciences,Hamdan Medical Journal,19963270| +Journal of Medical Sciences,Medknow Publications,10114564| +Journal of Medical Sciences(Faisalabad),Science Alert,16824474|18125727 +Journal of Medical Screening,SAGE Publications,09691413|14755793 +Journal of Medical Signals & Sensors,Medknow Publications,22287477| +Journal of Medical Society,Medknow Publications,09724958| +Journal of Medical Statistics and Informatics,Herbert Publications,20537662 +Journal of Medical Systems,Springer-Verlag,01485598|1573689X +Journal of Medical Thesis,Indian Orthopaedic Research Group,23475595 +Journal of Medical Toxicology,Springer-Verlag,15569039|19376995 +Journal of Medical Ultrasonics,Springer-Verlag,13464523|16132254 +Journal of Medical Ultrasound,Elsevier ,09296441| +Journal of Medical Updates,Deomed Publishing,21463840|21475067 +Journal of Medical Virology,Wiley Blackwell (John Wiley & Sons),01466615|10969071 +Journal of Medicinal Chemistry,American Chemical Society,00222623|15204804 +Journal of Medicinal Food,Mary Ann Liebert,1096620X|00000000 +Journal of Medicinal Herbs and Ethnomedicine,Scienceflora Publishers Pvt. Ltd.,24550485 +Journal of Medicinal Plants Research,Academic Journals,19960875|19960875 +Journal of Medicine,Bangladesh Journals Online,19979797|20755384 +Journal of Medicine and Biomedical Research,African Journals Online ,15966941 +Journal of Medicine and Biomedical Sciences,Progress IPS,20780273|20780273 +Journal of Medicine and Medical Sciences,African Journals Online ,11193999 +Journal of Medicine and Philosophy,Oxford University Press,03605310|17445019 +Journal of Medicine and the Person,Springer-Verlag,20359411|20363877 +Journal of Medicine in the Tropics,Medknow Publications,22767096|07959168 +Journal of Medicine Radiology Pathology & Surgery,Incessant Nature Science Publishers Pvt Ltd,23952075| +JOURNAL OF MEDICINES DEVELOPMENT SCIENCES,Whioce Publishing Pte Ltd.,23826363|23826371 +Journal of Medieval and Early Modern Studies,Duke University Press,10829636|15278263 +Journal of Medieval History,Informa UK (Taylor & Francis),03044181|18731279 +Journal of Medieval Iberian Studies,Informa UK (Taylor & Francis),17546559|17546567 +Journal of Medieval Monastic Studies,"""Brepols Publishers, NV""",20343515|20343523 +Journal of Mediterranean Archaeology,Equinox Publishing,09527648|17431700 +Journal of Melittology,The University of Kansas,23254467 +Journal of Membrane and Separation Technology,Lifescience Global,19296037 +Journal of Membrane Science,Elsevier ,03767388| +Journal of Membrane Science & Technology,OMICS Publishing Group,21559589 +Journal of Memory and Language,Elsevier ,0749596X|10960821 +Journal of Men s Health,Mary Ann Liebert,18756867| +Journal of Menopausal Medicine,The Korean Society of Menopause (KAMJE),22886478|22886761 +Journal of Mental Health,Informa UK (Taylor & Francis),09638237|13600567 +Journal of Mental Health and Human Behaviour,Medknow Publications,09718990| +Journal of Mental Health Counseling,American Mental Health Counselors Association,10402861| +Journal of Mental Health Research in Intellectual Disabilities,Informa UK (Taylor & Francis),19315864|19315872 +Journal of Metabolic Syndrome,OMICS Publishing Group,21670943|21670943 +Journal of Metabolomics,Herbert Publications,20590008 +Journal of Metabolomics & Systems Biology,Avens Publishing Group,23291583 +Journal of Metabonomics & Metabolites,OMICS Publishing Group,23259736 +Journal of Metallurgical Engineering,"""Science and Engineering Publishing, Co.""",21685568| +Journal of Metallurgy,Hindawi Publishing Corporation,16879465|16879473 +Journal of Metamorphic Geology,Wiley Blackwell (Blackwell Publishing),02634929|15251314 +Journal of Metastable and Nanocrystalline Materials,Trans Tech Publications,14226375 +Journal of Meteorological Research,Springer-Verlag,20956037|21980934 +Journal of Meteorology,American Meteorological Society,00959634|00959634 +Journal of Meteorology and Related Sciences,Kenya Meteorological Society,19959834|24123781 +Journal of Methods and Measurement in the Social Sciences,University of Arizona,21597855 +Journal of Micro and Nano-Manufacturing,ASME International ,21660468| +Journal of Micro-Bio Robotics,Springer-Verlag,21946418|21946426 +Journal of Micro-Nano Mechatronics,Springer-Verlag,18653928|18653936 +Journal of Micro/Nanolithography MEMS and MOEMS,SPIE - International Society for Optical Engineering,19325150| +Journal of Microbial & Biochemical Technology,OMICS Publishing Group,19485948|19485948 +Journal of Microbiological Methods,Elsevier ,01677012| +Journal of Microbiology & Experimentation,MedCrave Group,2373437X +Journal of Microbiology and Antimicrobials,Academic Journals,21412308 +Journal of Microbiology and Biology Education,American Society for Microbiology,19357877|19357885 +Journal of Microbiology and Biotechnology,Korean Society for Microbiology and Biotechnology,10177825|17388872 +Journal of Microbiology and Infectious Diseases,Association of Health Investigations,21463158|21469369 +Journal of Microbiology Biotechnology and Food Sciences,Slovak University of Agriculture in Nitra,13385178 +Journal of Microbiology Immunology and Infection,Elsevier ,16841182| +Journal of Microbiology Research,Scientific and Academic Publishing,21665885| +Journal of Microcolumn Separations,Wiley Blackwell (John Wiley & Sons),10407685|1520667X +Journal of Microcomputer Applications,Elsevier ,07457138|1096374X +Journal of Microelectromechanical Systems,Institute of Electrical and Electronics Engineers,10577157|19410158 +Journal of Microelectronics and Electronic Packaging,International Microelectronics and Packaging Society,15514897| +Journal of Microencapsulation,Informa UK (Taylor & Francis),02652048|14645246 +Journal of Microlithography Microfabrication and Microsystems,SPIE - International Society for Optical Engineering,15371646| +Journal of Micromechanics and Microengineering,IOP Publishing,09601317|13616439 +Journal of Micromechatronics,Brill Academic Publishers,13892258|15685632 +Journal of Micropalaeontology,Geological Society of London,0262821X|20414978 +Journal of Microscopy,Wiley Blackwell (Blackwell Publishing),00222720|13652818 +Journal of Microscopy and Ultrastructure,Elsevier ,2213879X| +Journal of Microwave Surgery,Study Group of Microwave Surgery,09177728|1882210X +Journal of Microwaves Optoelectronics and Electromagnetic Applications,SciELO,21791074|21791074 +Journal of Mid-life Health,Medknow Publications,09767800| +Journal of Middle East Women s Studies,Duke University Press,15525864|15589579 +Journal of Middle European Construction and Design of Cars,De Gruyter Open Sp. z o.o. ,12140821|18049338 +Journal of Midwifery & Women s Health,Wiley Blackwell (Blackwell Publishing),15269523| +Journal of Migration History,Brill Academic Publishers,23519916|23519924 +Journal of Military and Information Science,Journal of Military and Information Scicence,21483124 +Journal of Military Ethics,Informa UK (Taylor & Francis),15027570|00000000 +Journal of Military History Studies,Army Military History Institute,20931557| +Journal of Military Veteran and Family Health,University of Toronto Press Inc,23687924 +Journal of Mineralogical and Petrological Sciences,Japan Association of Mineralogical Sciences,13456296|13493825 +JOURNAL OF MINERALOGY PETROLOGY AND ECONOMIC GEOLOGY,Japan Association of Mineralogical Sciences,09149783|18813275 +Journal of Minerals,Pak Publishing Group, +Journal of Minerals and Materials Characterization and Engineering,"""Scientific Research Publishing, Inc.""",23274077|23274085 +Journal of Minimal Access Surgery,Medknow Publications,09729941| +Journal of Minimally Invasive Gynecology,Elsevier ,15534650| +Journal of Minimally Invasive Orthopedics,Asia Press,24095141 +Journal of Minimally Invasive Surgery,The Korean Society of Endoscopic and Laproscopic Surgeons (KAMJE),2234778X|22345248 +Journal of Minimally Invasive Surgical Sciences,International Neuroscience Institute,22517022|22517030 +Journal of Mining,Hindawi Publishing Corporation,23567473|23146532 +Journal of Mining and Geology,African Journals Online ,11162775 +Journal of Mining and Metallurgy A Mining,Centre for Evaluation in Education and Science,14505959| +Journal of Mining and Metallurgy Section B Metallurgy,National Library of Serbia,14505339|22177175 +Journal of Mining Science,Springer-Verlag,10627391|15738736 +Journal of Mining World Express,"""Science and Engineering Publishing, Co.""",21696438| +Journal of Ministry in Addiction & Recovery,Informa UK (Taylor & Francis),10538755|15286908 +Journal of Ministry Marketing & Management,Informa UK (Taylor & Francis),10571523|15286894 +Journal of Mixed Methods Research,SAGE Publications,15586898|15586901 +Journal of MMIJ,The Mining and Materials Processing Institute of Japan,18816118|18840450 +Journal of Mobile Communication,Science Alert,1990794X| +Journal of Mobile Technologies Knolwedge and Society,IBIMA Publishing,21554811 +Journal of Mobile Technology in Medicine,Journal of Mobile Technology in Medicine,18397808 +Journal of Modeling Design and Management of Engineering Systems,African Journals Online ,15963497 +Journal of Modeling Simulation Identification and Control,Columbia International Publishing,21629633 +Journal of Modelling in Management,Emerald (MCB UP ),17465664| +Journal of Modern Accounting and Auditing,David Publishing Company,15486583|19359683 +Journal of Modern Drug Discovery and Drug Delivery Research,ScienceQ Publishing Group,23483776 +Journal of Modern Dynamics,American Institute of Mathematical Sciences,19305311| +Journal of Modern Education Review,Academic Star Publishing Company,21557993|21557993 +Journal of Modern European History,C.H. Beck,16118944| +Journal of Modern Foreign Psychology,Moscow State Universtiy of Psychology and Education (MSUPE),23044977 +Journal of Modern Greek Studies,Muse - Johns Hopkins University Press,10863265 +Journal of Modern Human Pathology,Noble Research Publishers,23976845 +Journal of Modern Italian Studies,Informa UK (Taylor & Francis),1354571X|14699583 +Journal of Modern Jewish Studies,Informa UK (Taylor & Francis),14725886|00000000 +Journal of Modern Korean Literature,Modern Korean Literature Association,12298131| +Journal of Modern Literature,Indiana University Press,0022281X|15291464 +Journal of Modern Mathematics and Statistics,Science Alert,19945388| +Journal of Modern Mathematics Frontier,"""Science and Engineering Publishing, Co.""",22273751| +Journal of Modern Mechanical Engineering and Technology,Avanti Publishers,24099848 +Journal of Modern Medicinal Chemistry,Synergy Publishers,23088044 +Journal of Modern Methods in Numerical Mathematics,Modern Science Publishers,20908296|20904770 +Journal of Modern Optics,Informa UK (Taylor & Francis),09500340|13623044 +Journal of Modern Physics,"""Scientific Research Publishing, Inc.""",21531196|2153120X +Journal of Modern Power Systems and Clean Energy,Springer-Verlag,21965625|21965420 +Journal of Modern Russian History and Historiography,Brill Academic Publishers,19479956|22102388 +Journal of Modern Science,Wyzsza Szkola Gospodarki Euroregionalnej im. Alcide de Gasperi w Jozefowie,17342031| +Journal of Modern Transportation,Springer-Verlag,2095087X|21960577 +Journal of Molecular and Cellular Cardiology,Elsevier ,00222828|10958584 +Journal of Molecular and Engineering Materials,World Scientific ,22512373|22512381 +Journal of Molecular and Genetic Medicine,OMICS Publishing Group,17470862 +Journal of Molecular Biology,Elsevier ,00222836|10898638 +Journal of Molecular Biology Research,Canadian Center of Science and Education,1925430X|19254318 +Journal of Molecular Biomarkers & Diagnosis,OMICS Publishing Group,21559929 +Journal of Molecular Catalysis,Elsevier ,03045102| +Journal of Molecular Catalysis A Chemical,Elsevier ,13811169| +Journal of Molecular Catalysis B Enzymatic,Elsevier ,13811177| +Journal of Molecular Cell Biology,Oxford University Press,16742788|17594685 +Journal of Molecular Cell Biology,Oxford University Press,1673520X| +Journal of Molecular Cloning & Genetic Recombination,OMICS Publishing Group,23259787 +Journal of Molecular Diagnostics,Elsevier ,15251578|15251578 +Journal of Molecular Endocrinology,Bioscientifica,09525041|14796813 +journal of Molecular Engineering and Systems Biology,Herbert Publications,20501412 +Journal of Molecular Evolution,Springer-Verlag,00222844|14321432 +Journal of Molecular Genetics,Science Alert,20704267| +Journal of Molecular Graphics,Elsevier ,02637855| +Journal of Molecular Graphics and Modelling,Elsevier ,10933263| +Journal of Molecular Histology,Springer-Verlag,15672379|15672387 +Journal of Molecular Imaging & Dynamics,OMICS Publishing Group,21559937 +Journal of Molecular Liquids,Elsevier ,01677322| +Journal of Molecular Medicine,Springer-Verlag,09462716|14321440 +Journal of Molecular Microbiology and Biotechnology,S. Karger AG,14641801|16602412 +Journal of Molecular Modeling,Springer-Verlag,16102940|09485023 +Journal of Molecular Neuroscience,Springer-Verlag,08958696|15591166 +Journal of Molecular Pathophysiology,ScopeMed International Medical Journal Managment and Indexing System,2146832X| +Journal of Molecular Pharmaceutics & Organic Process Research,OMICS Publishing Group,23299053|23299053 +Journal of Molecular Psychiatry,Springer (Biomed Central Ltd.),20499256|20499256 +Journal of Molecular Recognition,Wiley Blackwell (John Wiley & Sons),09523499|10991352 +Journal of Molecular Signaling,"""Ubiquity Press, Ltd.""",17502187|17502187 +Journal of Molecular Spectroscopy,Elsevier ,00222852|1096083X +Journal of Molecular Structure,Elsevier ,00222860|00222860 +Journal of Molecular Structure THEOCHEM,Elsevier ,01661280| +Journal of Molecular Studies and Medicine Research,Journal BiNET,24145009 +Journal of Molluscan Studies,Oxford University Press,02601230|14643766 +Journal of Monetary Economics,Elsevier ,03043932| +Journal of money credit and banking,Wiley Blackwell (Blackwell Publishing),00222879|15384616 +Journal of Money Laundering Control,Emerald (MCB UP ),13685201| +Journal of Montessori Research,The University of Kansas,23783923 +Journal of Mood Disorders,ScopeMed International Medical Journal Managment and Indexing System,21461473| +Journal of Moral & Ethics Education,The Korean Society for Moral and Ethics Education,15988708| +Journal of Moral & Ethics Education,The Korean Society for Moral and Ethics Education,15988708| +Journal of Moral Education,Informa UK (Taylor & Francis),03057240|14653877 +Journal of Moral Philosophy,Brill Academic Publishers,17404681|17455243 +Journal of Moravian History,The Pennsylvania State University Press,19336632|21616310 +Journal of Mormon History,University of Illinois Press,00947342| +Journal of Morphological Sciences,Editora Cubo Multimidia,21770298 +Journal of Morphology,Wiley Blackwell (John Wiley & Sons),03622525|10974687 +Journal of Mosquito Research,"""Sophia Publishing Group, Inc.""",1927646X +Journal of Motivation Emotion and Personality Reversal Theory Studies,Reversal Theory Society,23312343 +Journal of Motor Behavior,Informa UK (Taylor & Francis),00222895|19401027 +Journal of Motor Learning and Development,Human Kinetics,23253193| +Journal of Mountain Science,Springer-Verlag,16726316|19930321 +Journal of Movement Disorders,The Korean Movement Disorder Society,2005940X|20934939 +Journal of mucopolysaccharidosis and rare disease,Association for Research of MPS and Rare Diseases,24658936| +Journal of Multi Business Model Innovation and Technology,River Publishers,2245456X| +Journal of Multi Business Model Innovation and Technology,River Publishers,2245456X| +Journal of Multi-Criteria Decision Analysis,Wiley Blackwell (John Wiley & Sons),10579214|10991360 +Journal of Multi-Criteria Decision Analysis,Wiley Blackwell (John Wiley & Sons),10579214|10991360 +Journal of Multi-Cultural Contents Studies,Cultural Contents and Technology Research Institute,20925042| +Journal of Multicultural Counseling and Development,Wiley Blackwell (John Wiley & Sons),08838534| +Journal of Multicultural Discourses,Informa UK (Taylor & Francis),17447143|17476615 +Journal of Multicultural Social Work,Informa UK (Taylor & Francis),10428224| +Journal of Multidisciplinary Healthcare,Dove Medical Press,11782390 +Journal of Multidisciplinary Research in Healthcare,Chitkara University Publications,23938536|23938544 +Journal of Multidisciplinary Studies,Liceo de Cagayan University,23507020| +Journal of Multifunctional Composites,DEStech Publications,21684278|21684286 +Journal of Multilingual and Multicultural Development,Informa UK (Taylor & Francis),01434632|17477557 +Journal of Multilingual Communication Disorders,Informa UK (Taylor & Francis),14769670|14769689 +Journal of Multimedia,Academy Publisher,17962048| +Journal of Multimedia Theory and Applications,Avestia Publishing,23685956 +Journal of Multinational Financial Management,Elsevier ,1042444X| +Journal of Multiple Sclerosis,OMICS Publishing Group,23760389 +Journal of Multiscale Modelling,World Scientific ,17569737|17569745 +Journal of Multivariate Analysis,Elsevier ,0047259X|10957243 +Journal of muscle and joint health,Korean Society of Muscle and Joint Health,19759398| +Journal of Muscle Foods,Wiley Blackwell (Blackwell Publishing),10460756|17454573 +Journal of Muscle Research and Cell Motility,Springer (Kluwer Academic Publishers),01424319|15732657 +Journal of Musculoskeletal Diseases in Ayurveda,Medknow Publications,00001112| +Journal of Musculoskeletal Pain,Informa UK (Taylor & Francis),10582452|15407012 +Journal of Musculoskeletal Research,World Scientific ,02189577|17936497 +Journal of Museum Education,Maney Publishing,10598650|20516169 +Journal of Mushrooms,The Korean Society of Mushroom Science,17380294| +Journal of Music and Dance,Academic Journals,23608579 +Journal of Music Teacher Education,SAGE Publications,10570837|19450079 +Journal of Music Technology and Education,Intellect,17527066|17527074 +Journal of Music Theory,Duke University Press,00222909|19417497 +Journal of Music Therapy,Oxford University Press,00222917|20537395 +Journal of Musical Arts in Africa,Informa UK (National Inquiry Services Center),18121004|2070626X +Journal of Musicological Research,Informa UK (Taylor & Francis),01411896|15477304 +Journal of Musicology,University of California Press,02779269|15338347 +Journal of Muslim Mental Health,University of Michigan Library,15564908|15565009 +Journal of Muslim Minority Affairs,Informa UK (Taylor & Francis),13602004|14699591 +Journal of Muslims in Europe,Brill Academic Publishers,2211792X|22117954 +Journal of Mycology,Hindawi Publishing Corporation,23567481|23146168 +Journal of Nanjing Medical University,Elsevier ,10074376| +Journal of Nano Education,American Scientific Publishers,19367449| +Journal of Nano Energy and Power Research,American Scientific Publishers,21536740|21536732 +Journal of Nano Research,Trans Tech Publications,16619897 +Journal of Nanobiotechnology,Springer (Biomed Central Ltd.),14773155|14773155 +Journal of Nanoelectronics and Optoelectronics,American Scientific Publishers,1555130X|15551318 +Journal of Nanoengineering and Nanomanufacturing,American Scientific Publishers,21579326|21579334 +Journal of Nanofluids,American Scientific Publishers,2169432X|21694338 +Journal of Nanomaterials,Hindawi Publishing Corporation,16874110|16874129 +Journal of Nanomaterials & Molecular Nanotechnology,OMICS Publishing Group,23248777 +Journal of Nanomechanics and Micromechanics,American Society of Civil Engineers,21535434|21535477 +Journal of Nanomedicine & Biotherapeutic Discovery,OMICS Publishing Group,2155983X +Journal of Nanomedicine & Nanotechnology,OMICS Publishing Group,21577439 +Journal of Nanomedicine Research,MedCrave Group,23774282 +Journal of Nanoneuroscience,American Scientific Publishers,19390637|19390653 +Journal of Nanoparticle Research,Springer-Verlag,13880764|1572896X +Journal of Nanoparticles,Hindawi Publishing Corporation,2314484X|23144858 +Journal of Nanopharmaceutics and Drug Delivery,American Scientific Publishers,21679312| +Journal of Nanophotonics,SPIE - International Society for Optical Engineering,19342608| +Journal of Nanoscience,Hindawi Publishing Corporation,2356749X|23146931 +Journal of Nanoscience and Nanotechnology,American Scientific Publishers,15334880|00000000 +Journal of Nanostructure in Chemistry,Springer-Verlag,21938865|21938865 +Journal of Nanotechnology,Hindawi Publishing Corporation,16879503|16879511 +Journal of Nanotechnology & Advanced Materials,Scientific Publishing Center,20909594|20909608 +Journal of Nanotechnology and Materials Science,Ommega Online Publishers,23771372|23771372 +Journal of Nanotechnology and Smart Materials,JScholar,23722797| +Journal of Nanotechnology in Diagnosis and Treatment,Savvy Science Publisher,23118792 +Journal of Nanotechnology in Engineering and Medicine,ASME International ,19492944| +Journal of Narrative and Life History,John Benjamins Publishing Company,10536981|24059374 +Journal of Narrative Theory,Muse - Johns Hopkins University Press,15489248 +Journal of Nasopharyngeal Carcinoma,Asia Press,23120398 +Journal of National Institute of Neurosciences Bangladesh,Bangladesh Journals Online,24108030| +Journal of Natural Disaster Science,Japan Society for Natural Disaster Science,03884090| +Journal of Natural Fibers,Informa UK (Taylor & Francis),15440478|1544046X +Journal of Natural Gas Chemistry,Elsevier ,10039953| +Journal of Natural Gas Engineering,Scrivener Publishing,23792892 +Journal of Natural Gas Science and Engineering,Elsevier ,18755100| +Journal of Natural History,Informa UK (Taylor & Francis),00222933|14645262 +Journal of Natural History,Informa UK (Taylor & Francis),03745481| +Journal of Natural Language Processing,Association for Natural Language Processing,13407619|21858314 +Journal of Natural Medicines,Springer-Verlag,13403443|18610293 +Journal of Natural Pharmaceuticals,Medknow Publications,22295119| +Journal of Natural Products,American Chemical Society,01633864|15206025 +Journal of Natural Remedies,Informatics Publishing Limited,23203358 +Journal of Natural Resources and Development,Pontificia Universidad Catolica de Valparaiso,07192452|07192452 +Journal of Natural Resources and Environmental Management,"""Center for Environmental Research, Institute of Research and Community Services (IPB)""",20864639|24605824 +Journal of Natural Resources Policy Research,Informa UK (Taylor & Francis),19390459|19390467 +Journal of Natural Science Biology and Medicine,Medknow Publications,09769668| +Journal of Natural Sciences,American Research Institute for Policy Development,23342943|23342951 +Journal of Natural Sciences and Mathematics,"""Al Manhal FZ, LLC""",16584031| +Journal of Naval Architecture and Marine Engineering,Bangladesh Journals Online,18138535|20708998 +Journal of Navigation,Cambridge University Press,03734633|14697785 +Journal of Navigation and Port Research,Korean Institute of Navigation and Port Research,15985725| +Journal of Near Eastern Studies,The University of Chicago Press,00222968|15456978 +Journal of Near Infrared Spectroscopy,IM Publications,09670335| +Journal of Near-Death Studies,International Association for Near-Death Studies,08914494|15733661 +Journal of Negative Results in BioMedicine,Springer (Biomed Central Ltd.),14775751|14775751 +Journal of NELTA,Nepal Journals Online,20910487| +Journal of NELTA Surkhet,Nepal Journals Online,23924209| +Journal of Neonatal Biology,OMICS Publishing Group,21670897 +Journal of Neonatal Nursing,Elsevier ,13551841| +Journal of Neonatal-Perinatal Medicine,IOS Press,19345798|18784429 +Journal of Nepal Chemical Society,Nepal Journals Online,20910304|20910304 +Journal of Nepal Geological Society,Nepal Journals Online,02591316| +Journal of Nepal Health Research Council,Nepal Journals Online,17275482| +Journal of Nepal Paediatric Society,Nepal Journals Online,19907974|19907982 +Journal of Nepal Pharmaceutical Association,Nepal Journals Online,02538261| +Journal of Nepal Physical Society,Nepal Journals Online,2392473X| +Journal of Nepalese Business Studies,Nepal Journals Online,23508795| +Journal of Nepalgunj Medical College,Nepal Journals Online,23621192|23621206 +Journal of Nephrology,Springer-Verlag,11218428|17246059 +Journal of Nephrology & Therapeutics,OMICS Publishing Group,21610959|21610959 +Journal of Nephrology and Urology Research,Synergy Publishers,2310984X +Journal of Nephrology Research,ACT Publishing Group,24100579| +Journal of Nephropathology,International Society for Phytocosmetic Sciences,22518363|22518819 +Journal of Network and Computer Applications,Elsevier ,10848045|10958592 +Journal of Network and Systems Management,Springer-Verlag,10647570|15737705 +Journal of Network Industries,Springer (Kluwer Academic Publishers),13899597| +Journal of Networks,Academy Publisher,17962056| +Journal of Neural Engineering,IOP Publishing,17412560|17412552 +Journal of Neural Transmission,Springer-Verlag,03009564|14351463 +Journal of Neural Transmission - Parkinsons Disease and Dementia Section,Springer-Verlag,09363076| +Journal of Neural Transplantation,Hindawi Publishing Corporation,1352237X| +Journal of Neural Transplantation and Plasticity,Hindawi Publishing Corporation,07928483| +Journal of Neuro-AIDS,Informa UK (Taylor & Francis),10697438| +Journal of Neuro-Oncology,Springer-Verlag,0167594X|15737373 +Journal of Neuro-Ophthalmology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10708022| +Journal of Neuro-Visceral Relations,Springer-Verlag,00223026| +Journal of Neuroanaesthesiology and Critical Care,Medknow Publications,23480548| +Journal of Neurobiology,Wiley Blackwell (John Wiley & Sons),00223034|10974695 +Journal of Neurochemistry,Wiley Blackwell (Blackwell Publishing),00223042|14714159 +Journal of Neurocritical Care,Korean Neurocritical Care Society,20050348|20050348 +Journal of Neurocytology,Springer-Verlag,03004864|15737381 +Journal of Neurodegenerative Diseases,Hindawi Publishing Corporation,2090858X|20908601 +Journal of Neurodevelopmental Disorders,Springer-Verlag,18661947|18661955 +Journal of Neuroendocrinology,Wiley Blackwell (Blackwell Publishing),09538194|13652826 +Journal of Neuroendovascular Therapy,The Japanese Society for Neuroendovascular Therapy,18824072|21862494 +Journal of NeuroEngineering and Rehabilitation,Springer (Biomed Central Ltd.),17430003|17430003 +Journal of Neurogastroenterology and Motility,The Korean Society of Neurogastroenterology and Motility (KAMJE),20930879|20930887 +Journal of Neurogenetics,Informa UK (Taylor & Francis),01677063|15635260 +Journal of Neuroimaging,Wiley Blackwell (Blackwell Publishing),10512284|15526569 +Journal of Neuroimmune Pharmacology,Springer-Verlag,15571890|15571904 +Journal of Neuroimmunology,Elsevier ,01655728| +Journal of Neuroinfectious Diseases,OMICS Publishing Group,23147326 +Journal of Neuroinflammation,Springer (Biomed Central Ltd.),17422094|17422094 +Journal of NeuroInterventional Surgery,BMJ,17598478|17598486 +Journal of Neurolinguistics,Elsevier ,09116044| +Journal of Neurologic Physical Therapy,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15570576| +Journal of Neurological Disorders,OMICS Publishing Group,23296895 +Journal of Neurological Research And Therapy,Open Access Pub,24705020 +Journal of Neurological Surgery Part A Central European Neurosurgery,Thieme Publishing Group,21936315|21936323 +Journal of Neurological Surgery Part B Skull Base,Thieme Publishing Group,21936331|2193634X +Journal of Neurological Surgery Reports,Thieme Publishing Group,21936358|21936366 +Journal of Neurology,Springer-Verlag,03405354|14321459 +Journal of Neurology & Neurophysiology,OMICS Publishing Group,21559562 +Journal of Neurology & Stroke,MedCrave Group,23736410 +Journal of Neurology and Epidemiology,Savvy Science Publisher,23096179 +Journal of Neurology and Neurobiology,"""Sci Forschen, Inc.""",23797150 +Journal of Neurology and Neurological Disorders,"""Annex Publishers, LLC""",24544981 +Journal of Neurology and Neuroscience,Internet Medical Publishing,21716625|21716625 +Journal of Neurology and Neurosurgery,Elyns Group LLC,23738995 +Journal of Neurology and Psychology,Avens Publishing Group,23323469 +Journal of Neurology and Therapeutics,Noble Research Publishers,23971304 +Journal of Neurology Neurosurgery & Psychiatry,BMJ,00223050|1468330X +Journal of Neurology Research,"""Elmer Press, Inc.""",19232845|19232853 +Journal of Neuromuscular Diseases,IOS Press,22143599|22143602 +Journal of Neuroparasitology,Ashdin Publishing,20902344|20902352 +Journal of Neuropathic Pain & Symptom Palliation,Informa UK (Taylor & Francis),15437698|15437701 +Journal of Neuropathology and Experimental Neurology,Oxford University Press,00223069|15546578 +Journal of Neurophysiology,American Physiological Society,00223077|15221598 +Journal of Neurophysiology and Neurological Disorders,JScholar,23752491| +Journal of Neuropsychiatry,American Psychiatric Publishing,08950172|15457222 +Journal of Neuropsychology,Wiley Blackwell (Blackwell Publishing),17486645| +Journal of Neuroradiology,Elsevier ,01509861| +Journal of Neurorestoratology,Dove Medical Press,23242426 +Journal of Neuroscience,Society for Neuroscience,02706474|15292401 +Journal of Neuroscience and Behavioral Health,Academic Journals,21412286 +Journal of Neuroscience and Neuroengineering,American Scientific Publishers,21682011|2168202X +Journal of Neuroscience and Rehabilitation,"""ScienceScript, LLC""",23749091 +Journal of Neuroscience Methods,Elsevier ,01650270| +Journal of Neuroscience Nursing,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,08880395| +Journal of Neuroscience Psychology and Economics,American Psychological Association,1937321X|2151318X +Journal of Neuroscience Research,Wiley Blackwell (John Wiley & Sons),03604012|10974547 +Journal of Neurosciences in Rural Practice,Medknow Publications,09763147| +Journal of Neurosurgery,Journal of Neurosurgery Publishing Group,00223085|19330693 +Journal of Neurosurgery,Journal of Neurosurgery Publishing Group,19330693|19330693 +Journal of Neurosurgery Pediatrics,Journal of Neurosurgery Publishing Group,19330707|19330715 +Journal of Neurosurgery Spine,Journal of Neurosurgery Publishing Group,15475654| +Journal of Neurosurgical Anesthesiology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,08984921| +Journal of Neurotherapy,Informa UK (Taylor & Francis),10874208|1530017X +Journal of Neurotrauma,Mary Ann Liebert,08977151|15579042 +Journal of NeuroVirology,Springer-Verlag,13550284|15382443 +Journal of Neutron Research,IOS Press,10238166|14772655 +Journal of New Approaches in Educational Research,University of Alicante,22547339 +Journal of new developments in Chemistry,Open Access Pub,23772549 +Journal of New Materials for Electrochemical Systems,Journal of New Materials for Electrochemical Systems,14802422|22921168 +Journal of New Media and Mass Communication,Pak Publishing Group,2413841X|24106585 +Journal of New Medical Technologies,Infra-M Academic Publishing House,16092163| +Journal of New Medical Technologies eJournal,Infra-M Academic Publishing House,20754094| +Journal of New Music Research,Informa UK (Taylor & Francis),09298215|17445027 +Journal of New Seeds,Informa UK (Taylor & Francis),1522886X|15229025 +Journal of New Technology and Materials,"""Al Manhal FZ, LLC""",2170161X| +Journal of New Zealand & Pacific Studies,Intellect,20504039|20504047 +Journal of Next Generation Information Technology,AICIT,20928637|22339388 +Journal of Next Generation Sequencing & Applications,OMICS Publishing Group,24699853 +Journal of Nihon University Medical Association,The Nihon University Medical Association,00290424|18840779 +Journal of Nippon Medical School,The Medical Association of Nippon Medical School,13454676|13473409 +Journal of Nobel Medical College,Nepal Journals Online,20912331|2091234X +Journal of Non-Crystalline Solids,Elsevier ,00223093| +Journal of Non-Equilibrium Thermodynamics,Walter de Gruyter GmbH,03400204|14374358 +Journal of Non-Newtonian Fluid Mechanics,Elsevier ,03770257| +Journal of Non-Significant Differences,Grand Canyon University,2161542X|21615411 +Journal of Non-White Concerns in Personnel and Guidance,Wiley Blackwell (John Wiley & Sons),00905461| +Journal of Noncommutative Geometry,European Mathematical Society Publishing House,16616952| +Journal of Nondestructive Evaluation,Springer-Verlag,01959298|15734862 +Journal of Nonlinear Analysis and Application,ISPACS GmbH,21933472 +Journal of Nonlinear Dynamics,Hindawi Publishing Corporation,23567503|23146893 +Journal of Nonlinear Mathematical Physics,Informa UK (Taylor & Francis),14029251|17760852 +Journal of Nonlinear Optical Physics & Materials,World Scientific ,02188635|17936624 +Journal of Nonlinear Science,Springer-Verlag,09388974|14321467 +Journal of Nonparametric Statistics,Informa UK (Taylor & Francis),10485252|10290311 +Journal of Nonprofit & Public Sector Marketing,Informa UK (Taylor & Francis),10495142|15406997 +Journal of Nonprofit Education and Leadership,"""Sagamore Publishing, LLC""",21570604 +Journal of Nonverbal Behavior,Springer-Verlag,01915886|15733653 +Journal of North African Research in Business,IBIMA Publishing,24696730 +Journal of North Carolina Academy of Science,"""North Carolina Academy of Science, Inc.""",21675872| +Journal of North-east Asian Cultures,The Association of North-East Asian Cultures,15983692| +Journal of Northeast Agricultural University (English edition),Elsevier ,10068104| +Journal of Northwest Atlantic Fishery Science,Northwest Atlantic Fisheries Organization,02506408|16829786 +Journal of Novel Physiotherapies,OMICS Publishing Group,21657025 +Journal of Novel Physiotherapy and Physical Rehabilitation,Peertechz.com,24555487 +Journal of Nuclear and Particle Physics,Scientific and Academic Publishing,21676895| +Journal of Nuclear and Radiochemical Sciences,The Japan Society of Nuclear and Radiochemical Sciences,13454749|18835813 +Journal of Nuclear Cardiology,Springer-Verlag,10713581|15326551 +Journal of Nuclear Chemistry,Hindawi Publishing Corporation,23144955|23144831 +Journal of Nuclear Energy,Elsevier ,00223107| +Journal of Nuclear Energy (1954),Elsevier ,08913919| +Journal of Nuclear Energy Part A Reactor Science,Elsevier ,03683265| +Journal of Nuclear Energy Part B Reactor Technology,Elsevier ,03683273| +Journal of Nuclear Energy Part C Plasma Physics Accelerators Thermonuclear Research,IOP Publishing,03683281| +Journal of Nuclear Energy Parts A/B Reactor Science and Technology,Elsevier ,03683230| +Journal of Nuclear Energy Science & Power Generation Technology,OMICS Publishing Group,23259809 +Journal of Nuclear Engineering and Radiation Science,ASME International ,23328983| +Journal of Nuclear Fuel Cycle and Environment,Atomic Energy Society of Japan,18847579|21867135 +Journal of Nuclear Fuel Cycle and Waste Technology,The Korean Radioactive Waste Society,22885455| +Journal of Nuclear Materials,Elsevier ,00223115|00223115 +Journal of Nuclear Medicine,Society of Nuclear Medicine,01615505| +Journal of Nuclear Medicine & Radiation Therapy,OMICS Publishing Group,21559619 +Journal of Nuclear Medicine Technology,Society of Nuclear Medicine,00914916| +Journal of Nuclear Physics Material Sciences Radiation and Applications,Chitkara University Publications,23218649|23219289 +Journal of Nuclear Science and Technology,Informa UK (Taylor & Francis),00223131|18811248 +Journal of Nuclear Sciences,Ankara University,21477736| +Journal of Nucleic Acids,Hindawi Publishing Corporation,20900201|2090021X +Journal of Nucleic Acids Investigation,PAGEPress Publications,20356005|20367996 +Journal of Number Theory,Elsevier ,0022314X|10961658 +Journal of Numbers,Hindawi Publishing Corporation,23567511|2314842X +Journal of Numerical Cognition,Leibniz Institute for Psychology Information,23638761 +Journal of Numerical Mathematics,Walter de Gruyter GmbH,15702820|15693953 +Journal of Nurse-Midwifery,Elsevier ,00912182| +Journal of Nursing,Herbert Publications,20569157 +Journal of Nursing,Universe Scientific Publishing Pte. Ltd.,22513582|23154578 +Journal of Nursing & Care,OMICS Publishing Group,21671168 +Journal of Nursing and Healthcare of Chronic Illness,Wiley Blackwell (Blackwell Publishing),17529816|17529824 +Journal of Nursing and Socioenvironmental Health,Journal of Nursing and Socioenvironmental Health,23589884 +Journal of Nursing Care Quality,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10573631| +Journal of Nursing Education,"""SLACK, Inc.""",01484834| +Journal of Nursing Education and Practice,Sciedu Press,19254040|19254059 +Journal of Nursing Law,Springer Publishing Company,10737472|00000000 +Journal of Nursing Management,Wiley Blackwell (Blackwell Publishing),09660429|13652834 +Journal of Nursing Measurement,Springer Publishing Company,10613749|00000000 +Journal of Nursing Practice Applications & Reviews of Research,Journal of Nursing Practice Applications and Reviews of Research,23294760|23294779 +Journal of Nursing Regulation,Elsevier ,21558256| +Journal of Nursing Research,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,16823141| +Journal of Nursing Scholarship,Wiley Blackwell (Blackwell Publishing),15276546|15475069 +Journal of Nutraceuticals Functional & Medical Foods,Informa UK (Taylor & Francis),10894179|15407020 +Journal of Nutrients,Pak Publishing Group,24138428|24106542 +Journal of Nutrigenetics and Nutrigenomics,S. Karger AG,16616499|16616758 +Journal of Nutrition,American Society for Nutrition,00223166|15416100 +Journal of Nutrition & Food Sciences,OMICS Publishing Group,21559600 +Journal of Nutrition & Intermediary Metabolism,Elsevier ,23523859| +Journal of Nutrition and Health,Avens Publishing Group,24694185 +Journal of Nutrition and Health,The Korean Nutrition Society (KAMJE),22883886|22883959 +Journal of Nutrition and Health Sciences,"""Annex Publishers, LLC""",23939060 +Journal of Nutrition and Metabolism,Hindawi Publishing Corporation,20900724|20900732 +Journal of Nutrition Education,Elsevier ,00223182| +Journal of Nutrition Education and Behavior,Elsevier ,14994046| +Journal of Nutrition for the Elderly,Informa UK (Taylor & Francis),01639366|15408566 +Journal of Nutrition in Gerontology and Geriatrics,Informa UK (Taylor & Francis),21551197|21551200 +Journal of Nutrition in Recipe & Menu Development,Informa UK (Taylor & Francis),10551379|15409600 +Journal of Nutritional & Environmental Medicine,Informa UK (Taylor & Francis),13590847|13646907 +Journal of Nutritional Biology,Gratis Open Access Publishers LLC,24694142 +Journal of Nutritional Disorders & Therapy,OMICS Publishing Group,21610509|21610509 +Journal of Nutritional Ecology and Food Research,American Scientific Publishers,23264225| +Journal of Nutritional Health & Food Engineering,MedCrave Group,23734310 +Journal of Nutritional Health & Food Science,Symbiosis Group,23720980 +Journal of Nutritional Immunology,Informa UK (Taylor & Francis),10495150| +Journal of Nutritional Medicine,Informa UK (Taylor & Francis),09556664| +Journal of Nutritional Science,Cambridge University Press,20486790|20486790 +Journal of Nutritional Science and Vitaminology,Center for Academic Publications Japan,03014800|18817742 +Journal of Nutritional Therapeutics,Lifescience Global,19295634 +Journal of Obesity,Hindawi Publishing Corporation,20900708|20900716 +Journal of Obesity & Weight loss Therapy,OMICS Publishing Group,21657904 +Journal of Obesity and Bariatrics,Avens Publishing Group,23779284 +Journal of Obesity and Metabolic Research,Medknow Publications,23479906| +Journal of Obesity and Overweight,"""Annex Publishers, LLC""",24557633 +Journal of Obsessive-Compulsive and Related Disorders,Elsevier ,22113649| +Journal of Obstetric Anaesthesia and Critical Care,Medknow Publications,22494472| +Journal of Obstetric Gynecologic & Neonatal Nursing,Elsevier ,08842175|15526909 +Journal of Obstetrics and Gynaecology,Informa UK (Taylor & Francis),01443615|13646893 +Journal of Obstetrics and Gynaecology,Wiley Blackwell (Blackwell Publishing),13409654| +Journal of Obstetrics and Gynaecology Canada,Elsevier ,17012163| +Journal of Obstetrics and Gynaecology Research,Wiley Blackwell (Blackwell Publishing),13418076|13418076 +Journal of Occupational Accidents,Elsevier ,03766349| +Journal of Occupational and Environmental Hygiene,Informa UK (Taylor & Francis),15459624|15459632 +Journal of Occupational and Environmental Medicine,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10762752| +Journal of Occupational and Organizational Psychology,Wiley Blackwell (Blackwell Publishing),09631798|20448325 +Journal of Occupational Health,Japan Society for Occupational Health,13419145|13489585 +Journal of Occupational Health Psychology,American Psychological Association,10768998|19391307 +Journal of Occupational Medicine and Toxicology,Springer (Biomed Central Ltd.),17456673|17456673 +Journal of Occupational Psychology,Wiley Blackwell (Blackwell Publishing),03058107| +Journal of Occupational Rehabilitation,Springer-Verlag,10530487|15733688 +Journal of Occupational Safety and Health,National Institute of Industrial Health,18826822|1883678X +Journal of Occupational Science,Informa UK (Taylor & Francis),14427591| +Journal of Occupational Science,Informa UK (Taylor & Francis),14427591|21581576 +Journal of Occupational Therapy Schools & Early Intervention,Informa UK (Taylor & Francis),19411243|19411251 +Journal of Ocean and Coastal Economics,Center for the Blue Economy,23738456 +Journal of Ocean and Wind Energy,International Society of Offshore and Polar Engineers,23103604| +Journal of Ocean Engineering and Marine Energy,Springer-Verlag,21986444|21986452 +Journal of Ocean Engineering and Science,Elsevier ,24680133| +Journal of Ocean Engineering and Technology,Korean Society of Ocean Engineers,12250767| +Journal of Ocean University of China,Springer-Verlag,16725182|19935021 +Journal of Oceanography,Springer-Verlag,09168370|1573868X +Journal of Oceanography and Marine Science,Academic Journals,21412294 +Journal of Ocular Biology,Avens Publishing Group,23342838 +Journal of Ocular Biology Diseases and Informatics,Springer-Verlag,19368445 +Journal of Ocular Diseases and Therapeutics,Savvy Science Publisher,23096136 +Journal of Ocular Pharmacology and Therapeutics,Mary Ann Liebert,10807683|00000000 +Journal of Odor and Indoor Environment,Journal of Odor and Indoor Environment,22889167|2288923X +Journal of Offender Counseling,Wiley Blackwell (John Wiley & Sons),02758598| +Journal of Offender Counseling Services Rehabilitation,Informa UK (Taylor & Francis),01956116| +Journal of Offender Rehabilitation,Informa UK (Taylor & Francis),10509674|15408558 +Journal of Official Statistics,De Gruyter Open Sp. z o.o. ,0282423X +Journal of Offshore Mechanics and Arctic Engineering,ASME International ,08927219| +Journal of Oil & Fat Industries,Springer-Verlag,00959774| +Journal of Oil Chemists Society Japan,Japan Oil Chemists' Society,18842011 +Journal of Oil Palm and the Environment,Malaysian Palm Oil Council,2180415X +Journal of Oleo Science,Japan Oil Chemists' Society,13458957|13473352 +Journal of Oncobiomarkers,Avens Publishing Group,23252340 +Journal of Oncological Science,Elsevier ,24523364| +Journal of Oncology,Hindawi Publishing Corporation,16878450|16878469 +Journal of Oncology Pharmacy Practice,SAGE Publications,10781552|1477092X +Journal of Oncology Practice,American Society of Clinical Oncology,15547477|1935-469X +Journal of Open Archaeology Data,"""Ubiquity Press, Ltd.""",20491565|20491565 +Journal of Open Humanities Data,"""Ubiquity Press, Ltd.""",2059481X +Journal of Open Innovation Technology Market and Complexity,Springer (Biomed Central Ltd.),21998531 +Journal of Open Psychology Data,"""Ubiquity Press, Ltd.""",20509863|20509863 +Journal of Open Public Health Data,"""Ubiquity Press, Ltd.""",20532407|20532407 +Journal of Open Research Software,"""Ubiquity Press, Ltd.""",20499647|20499647 +Journal of Operating Department Practitioners,Mark Allen Group,20533292|20533306 +Journal of Operational Meteorology,National Weather Association,23256184 +Journal of Operational Oceanography,Informa UK (Taylor & Francis),1755876X|17558778 +Journal of Operations and Supply Chain Management,Fundacao Getulio Vargas,19843046 +Journal of Operations Management,Elsevier ,02726963| +Journal of Operative and Esthetic Dentistry,Noble Research Publishers,2398029X +Journal of Operator Theory,Theta Foundation,03794024|18417744 +Journal of Operators,Hindawi Publishing Corporation,23145064|23145072 +Journal of Ophthalmic and Vision Research,Medknow Publications,2008322X| +Journal of Ophthalmic Inflammation and Infection,Springer (Biomed Central Ltd.),18695760|18695760 +Journal of Ophthalmic Science,Open Access Pub,24700436 +Journal of Ophthalmology,Hindawi Publishing Corporation,2090004X|20900058 +Journal of Opioid Management,Weston Medical Publishers,15517489| +Journal of Optical and Fiber Communications Reports,Springer-Verlag,16198638 +Journal of Optical and Fiber Communications Research,Springer-Verlag,18673007| +Journal of Optical Communications,Walter de Gruyter GmbH,01734911|21916322 +Journal of Optical Communications and Networking,The Optical Society,19430620|19430639 +Journal of Optical Networking,The Optical Society,15365379 +Journal of Optical Technology,The Optical Society,10709762| +Journal of Optics,Springer-Verlag,09728821|09746900 +Journal of Optics,IOP Publishing,20408978|20408986 +Journal of Optics A Pure and Applied Optics,IOP Publishing,14644258|17413567 +Journal of Optics and Photonics,Herbert Publications,20571569 +Journal of Optics B Quantum and Semiclassical Optics,IOP Publishing,14644266|17413575 +Journal of Optimization,Hindawi Publishing Corporation,2356752X|23146486 +Journal of Optimization Theory and Applications,Springer-Verlag,00223239|15732878 +Journal of Optometry,Elsevier ,18884296|19891342 +Journal of Oral & Facial Pain and Headache,Quintessence Publishing,23330384|23330376 +Journal of Oral and Dental Research,"""Al Manhal FZ, LLC""",23106417| +Journal of Oral and Maxillofacial Pathology,Medknow Publications,0973029X| +Journal of Oral and Maxillofacial Radiology,Medknow Publications,23213841| +Journal of Oral and Maxillofacial Research,Stilus Optimus,2029283X +Journal of Oral and Maxillofacial Surgery,Elsevier ,02782391| +Journal of Oral and Maxillofacial Surgery Medicine and Pathology,Elsevier ,22125558| +Journal of Oral Biology,Avens Publishing Group,2377987X +Journal of Oral Biology and Craniofacial Research,Elsevier ,22124268| +Journal of Oral Biosciences,Elsevier ,13490079|18803865 +Journal of Oral Diseases,Hindawi Publishing Corporation,23567538|23146516 +Journal of Oral Hygiene & Health,OMICS Publishing Group,23320702|23320702 +Journal of Oral Implantology,American Academy of Implant Dentistry,01606972|15481336 +Journal of Oral Implants,Hindawi Publishing Corporation,23567546|23146575 +Journal of Oral Investigations,Complexo de Ensino Superior Meridional S.A.,2238510X +Journal of Oral Medicine and Pain,Korean Academy of Orofacial Pain and Oral Medicine,22889272| +Journal of Oral Medicine Oral Surgery Oral Pathology and Oral Radiology,Diva Enterprises Private Limited,23956186|23956194 +Journal of Oral Microbiology,Co-Action Publishing,20002297 +Journal of Oral Oncology,Hindawi Publishing Corporation,23567554|23146591 +Journal of Oral Pathology and Medicine,Wiley Blackwell (Blackwell Publishing),09042512|16000714 +Journal of Oral Rehabilitation,Wiley Blackwell (Blackwell Publishing),0305182X|13652842 +Journal Of Oral Research,"""Facultad de Odontologia, Universidad de Concepcion""",07192460|07192479 +Journal of Oral Research and Review,Medknow Publications,22494987| +Journal of Oral Science,Nihon University School of Dentistry,13434934|18804926 +Journal of Oral Science and Health,"""ScienceScript, LLC""",23749075 +Journal of Oral Surgery Society of Japan,Japanese Society of Oral and Maxillofacial Surgeons,04541693|21861560 +Journal of Organ Dysfunction,Informa UK (Taylor & Francis),17471060|17471079 +Journal of Organic and Biomolecular Simulations,Science Publications,23252170| +Journal of Organic Chemistry Research,Hans Publishers,23305231|2330524X +Journal of Organic Chemistry Research,Scientific Publishing Center,23144564|23144572 +Journal of Organic Semiconductors,Informa UK (Taylor & Francis),21606099|21606110 +Journal of Organisational Transformation & Social Change,Informa UK (Taylor & Francis),14779633|2040056X +Journal of Organization Design,Aarhus University Library,2245408X +Journal of Organizational and End User Computing,IGI Global,15462234|15465012 +Journal of Organizational Behavior,Wiley Blackwell (John Wiley & Sons),08943796|10991379 +Journal of Organizational Behavior Management,Informa UK (Taylor & Francis),01608061|15408604 +Journal of Organizational Change Management,Emerald (MCB UP ),09534814|00000000 +Journal of Organizational Computing,Informa UK (Taylor & Francis),10541721| +Journal of Organizational Computing and Electronic Commerce,Informa UK (Taylor & Francis),10919392|15327744 +Journal of Organizational Effectiveness People and Performance,Emerald (MCB UP ),20516614| +Journal of Organizational Ethnography,Emerald (MCB UP ),20466749| +Journal of Organizational Excellence,Wiley Blackwell (John Wiley & Sons),15311864|15316653 +Journal of Organizational Knolwedge Management,IBIMA Publishing,21660808 +Journal of Organizational Knowledge Communication,Aarhus University Library,22467572 +Journal of Organizational Management Studies,IBIMA Publishing,21660816 +Journal of Organometallic Chemistry,Elsevier ,0022328X|0022328X +Journal of Oriental Neuropsychiatry,The Korean Society of Oriental Neuropsychiatry,12266396| +Journal of Ornithology,Springer-Verlag,00218375|14390361 +Journal of Ornithology,Springer-Verlag,21937192|21937206 +Journal of Orofacial & Health Sciences,Diva Enterprises Private Limited,09765360|22293264 +Journal of Orofacial Orthopedics / Fortschritte der Kieferorthopädie,Springer-Verlag,14345293|16156714 +Journal of Orofacial Pain,Quintessence Publishing,10646655| +Journal of Orofacial Research,Jaypee Brothers Medical Publishing,22777482|22499091 +Journal of Orofacial Sciences,Medknow Publications,09758844| +Journal of Orthodontic Research,Medknow Publications,23213825| +Journal of Orthodontic Science,Medknow Publications,22780203| +Journal of Orthodontics,Maney Publishing,14653125|14653133 +Journal of Orthopaedic and Sports Physical Therapy,Journal of Orthopaedic & Sports Physical Therapy,01906011|19381344 +Journal of Orthopaedic Case Reports,Indian Orthopaedic Research Group,22500685|23213817 +Journal of Orthopaedic Nursing,Elsevier ,13613111| +Journal of Orthopaedic Research,Wiley Blackwell (John Wiley & Sons),07360266|1554527X +Journal of Orthopaedic Science,Elsevier ,09492658|14362023 +Journal of Orthopaedic Surgery and Research,Springer (Biomed Central Ltd.),1749799X|1749799X +Journal of Orthopaedic Translation,Elsevier ,2214031X| +Journal of Orthopaedic Trauma,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,08905339| +Journal of Orthopaedics,Elsevier ,0972978X| +Journal of Orthopaedics and Allied Sciences,Medknow Publications,23192585| +Journal of Orthopaedics and Trauma,Ashdin Publishing,20902921|2090293X +Journal of Orthopaedics and Traumatology,Springer-Verlag,15909921|15909999 +Journal of Orthopaedics Trauma and Rehabilitation,Elsevier ,22104917| +Journal of Orthopedics & Rheumatology,Avens Publishing Group,23342846 +Journal of Orthopedics Rheumatology and sports Medicine,Elyns Group LLC,24709824 +Journal of Orthopedics Traumatology and Rehabilitation,Medknow Publications,09757341| +Journal of Orthoptera Research,BioOne (Orthopterist's Society),10826467|19372426 +Journal of Osteopathic Medicine,Elsevier ,14438461| +Journal of Osteoporosis,Hindawi Publishing Corporation,20908059|20420064 +Journal of Osteoporosis and Physical Activity,OMICS Publishing Group,23299509 +Journal of Otolaryngology - Head and Neck Surgery,Springer (Biomed Central Ltd.),19160216|19160216 +Journal of Otolaryngology Advances,Open Access Pub,23798572 +Journal of Otolaryngology and Reconstructive Surgery,Elyns Group LLC,24701041 +Journal of Otolaryngology-ENT Research,MedCrave Group,23796359 +Journal of Otology,Elsevier ,16722930| +Journal of Otology & Rhinology,OMICS Publishing Group,23248785 +Journal of Outdoor Recreation and Tourism,Elsevier ,22130780| +Journal of Outdoor Recreation Education and Leadership,"""Sagamore Publishing, LLC""",19485123 +Journal of Outsourcing & Organizational Information Management,IBIMA Publishing,21554846 +Journal of Ovarian Research,Springer (Biomed Central Ltd.),17572215|17572215 +Journal of Pacific History,Informa UK (Taylor & Francis),00223344|14699605 +Journal of Pacific Rim Psychology,Cambridge University Press,18344909|18344909 +Journal of Paediatric Surgeons of Bangladesh,Bangladesh Journals Online,20777469|23091320 +Journal of Paediatrics and Child Health,Wiley Blackwell (Blackwell Publishing),10344810|14401754 +Journal of Pain,Elsevier ,15265900| +Journal of Pain & Palliative Care Pharmacotherapy,Informa UK (Taylor & Francis),15360288|15360539 +Journal of Pain & Relief,OMICS Publishing Group,21670846|21670846 +Journal of Pain and Symptom Management,Elsevier ,08853924| +Journal of Pain Research,Dove Medical Press,11787090 +Journal of Palaeogeography,Elsevier ,20953836| +Journal of Paleolimnology,Springer-Verlag,09212728|15730417 +Journal of Paleontology,Cambridge University Press,00223360|19372337 +Journal of Palestine Studies,University of California Press,0377919X|15338614 +Journal of Palestinian Refugee Studies,"""Al Manhal FZ, LLC""",20467060| +Journal of Palliative Care & Medicine,OMICS Publishing Group,21657386 +Journal of Palliative Medicine,Mary Ann Liebert,10966218|15577740 +Journal of Pansori,Society of Pansori,15983552| +Journal of Paper Conservation,Maney Publishing,18680860|20571682 +Journal of Parallel and Distributed Computing,Elsevier ,07437315|10960848 +Journal of Paramedic Practice,Mark Allen Group,17591376|20419457 +Journal of Parasitic Diseases,Springer-Verlag,09717196|09750703 +Journal of Parasitology,BioOne (American Society of Parasitologists),00223395|19372345 +Journal of Parasitology and Vector Biology,Academic Journals,21416567 +Journal of Parasitology Research,Hindawi Publishing Corporation,20900023|20900031 +Journal of Parenteral and Enteral Nutrition,SAGE Publications,01486071|19412444 +Journal of Park and Recreation Administration,"""Sagamore Publishing, LLC""",21606862 +Journal of Parkinson s Disease,IOS Press,18777171|1877718X +Journal of Parkinsonism & Restless Legs Syndrome,Journal of Parkinsonism and RLS,19277733| +Journal of Parkinsonism and Restless Leg Syndrome,Journal of Parkinsonism and RLS,19277725| +Journal of Parkinson’s disease and Alzheimer s disease,Avens Publishing Group,2376922X +Journal of Parkinson’s Disease and Movement Disorders,Baycinar Tibbi Yayincilik,13019996| +Journal of Parliamentary Research,Korea Parliamentary Research Institute,19756461| +Journal of Partial Differential Equations,Global Science Press,1000940X| +Journal of Pastoral Care & Counseling Advancing theory and professional practice through scholarly and reflective publications,SAGE Publications,15423050|2167776X +Journal of Pastoral Theology,Maney Publishing,10649867|21614504 +Journal of Patan Academy of Health Sciences,Nepal Journals Online,20912749|20912757 +Journal of Pathogens,Hindawi Publishing Corporation,20903057|20903065 +Journal of Pathology and Translational Medicine,The Korean Society of Pathologists and The Korean Society for Cytopathology,23837837|23837845 +Journal of Pathology Informatics,Medknow Publications,21533539| +Journal of Pathology of Nepal,Nepal Journals Online,20910797|20910908 +Journal of Pathology Research,Bioinfo Publications,09768068|09768076 +Journal of Patient Experience,SAGE Publications,23743735|23743743 +Journal of Patient Safety,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15498417| +Journal of Patient Safety & Infection Control,Elsevier ,2214207X| +Journal of Patient-Centered Research and Reviews,"""Aurora Health Care, Inc.""",23300698 +Journal of Pattern Intelligence,Bioinfo Publications,22309330|22309349 +Journal of Pattern Recognition Research,Journal of Pattern Recognition Research,1558884X +JOURNAL OF PAVEMENT ENGINEERING JSCE,Japan Society of Civil Engineers,18848176 +Journal of Peace Conflict and Development,"""Journal of Peace, Conflict and Development""",17420601 +Journal of Peace Education,Informa UK (Taylor & Francis),17400201|1740021X +Journal of Peace Research,SAGE Publications,00223433|00000000 +Journal of Peacebuilding & Development,Informa UK (Taylor & Francis),15423166|21657440 +Journal of PEARLDENT,Diva Enterprises Private Limited,09760180|22294457 +Journal of Pedagogy / Pedagogický casopis,De Gruyter Open Sp. z o.o. ,13381563|13382144 +"""Journal of Pedagogy and Psychology """"Signum Temporis""""""",De Gruyter Open Sp. z o.o. ,16914929| +Journal of Pediatric & Prenatal Nutrition,"""Informa UK (Haworth Press, Inc.,)""",87566206| +Journal of Pediatric and Adolescent Gynecology,Elsevier ,10833188| +Journal of Pediatric Biochemistry,Thieme Publishing Group,18795390|18795404 +Journal of Pediatric Dentistry,Medknow Publications,23216646| +Journal of Pediatric Endocrinology and Metabolism,Walter de Gruyter GmbH,0334018X|21910251 +Journal of Pediatric Epilepsy,Thieme Publishing Group,2146457X|21464588 +Journal of Pediatric Gastroenterology and Nutrition,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,02772116| +Journal of Pediatric Genetics,Thieme Publishing Group,21464596|2146460X +Journal of Pediatric Health Care,Elsevier ,08915245| +Journal of Pediatric Hematology/Oncology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10774114| +Journal of Pediatric Infectious Diseases,Thieme Publishing Group,13057707|13057693 +Journal of Pediatric Intensive Care,Thieme Publishing Group,21464618|21464626 +Journal of Pediatric Nephrology,Nova Explore Publications Inc.,23453176 +Journal of Pediatric Neurology,Thieme Publishing Group,13042580|18759041 +Journal of Pediatric Neuropsychology,Springer-Verlag,21992681|21992673 +Journal of Pediatric Neuroradiology,Thieme Publishing Group,13096680|13096745 +Journal of Pediatric Neurosciences,Medknow Publications,18171745| +Journal of Pediatric Nursing,Elsevier - WB Saunders,08825963| +Journal of Pediatric Oncology,Pharma Publisher,23093021 +Journal of Pediatric Oncology Nursing,SAGE Publications,10434542|15328457 +Journal of Pediatric Ophthalmology & Strabismus,"""SLACK, Inc.""",01913913| +Journal of Pediatric Orthopaedics,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,02716798| +Journal of Pediatric Orthopaedics B,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,1060152X| +Journal of Pediatric Psychology,Oxford University Press,01468693|1465735X +Journal of Pediatric Rehabilitation Medicine,IOS Press,18745393|18758894 +Journal of Pediatric Sciences,Journal of Pediatric Sciences,13091247 +Journal of Pediatric Surgery,Elsevier ,00223468|15315037 +Journal of Pediatric Surgery Case Reports,Elsevier ,22135766| +Journal of Pediatric Urology,Elsevier ,14775131| +Journal of Pediatrics & Child Care,Avens Publishing Group,23800534 +Journal of Pediatrics & Neonatal Care,MedCrave Group,23734426 +Journal of Pediatrics Review,International Neuroscience Institute,23224401|23224398 +Journal of Pelvic Medicine and Surgery,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15425983| +Journal of Pension Economics and Finance,Cambridge University Press,14747472|14753022 +Journal of Pensions Economics and Finance,Cambridge University Press,14747472|14753022 +Journal of Pentecostal Theology,Brill Academic Publishers,09667369|17455251 +Journal of Peptide Research,Wiley Blackwell (Blackwell Publishing),1397002X|13993011 +Journal of Peptide Science,Wiley Blackwell (John Wiley & Sons),10752617|10991387 +Journal of Performance Magic,University of Huddersfield Press,20516037 +Journal of Performance of Constructed Facilities,American Society of Civil Engineers,08873828|19435509 +Journal of PeriAnesthesia Nursing,Elsevier ,10899472| +Journal of Perinatal Medicine,Walter de Gruyter GmbH,03005577|16193997 +Journal of Perinatology,Nature Publishing Group,07438346|07438346 +Journal of Periodontal & Implant Science,Korean Academy of Periodontology (KAMJE),20932278|20932286 +Journal of Periodontal Research,Wiley Blackwell (Blackwell Publishing),00223484|16000765 +Journal of Periodontology,American Academy of Periodontology,00223492|19433670 +Journal of Periodontology & Implant Dentistry,International Society for Phytocosmetic Sciences,20087748|20087756 +Journal of Perioperative Echocardiography,Jaypee Brothers Medical Publishing,2320527X|23207310 +Journal of Persianate Studies,Brill Academic Publishers,18747094|18747167 +Journal of Personal and Interpersonal Loss,Informa UK (Taylor & Francis),10811443| +Journal of Personal Selling and Sales Management,Informa UK (Taylor & Francis),08853134|15577813 +Journal of Personality,Wiley Blackwell (Blackwell Publishing),00223506|14676494 +Journal of Personality and Social Psychology,American Psychological Association,00223514|19391315 +Journal of Personality Assessment,Informa UK (Taylor & Francis),00223891|15327752 +Journal of Personality Disorders,Guilford Publications,0885579X| +Journal of Personalized Medicine,MDPI AG,20754426 +Journal of Personnel Evaluation in Education,Springer-Verlag,0920525X|15730425 +Journal of Personnel Psychology,Hogrefe Publishing Group,18665888|21905150 +Journal of Perspectives in Applied Academic Practice,Edinburgh Napier University,20519788 +Journal of Pest Science,Springer-Verlag,16124758|16124766 +Journal of Pesticide Science,Pesticide Science Society of Japan,1348589X|13490923 +Journal of Petroleum & Environmental Biotechnology,OMICS Publishing Group,21577463 +Journal of Petroleum and Gas Engineering,Academic Journals,21412677 +Journal of Petroleum and Gas Exploration Research,International Research Journals,22766510 +Journal of Petroleum Engineering,Hindawi Publishing Corporation,23145005|23145013 +Journal of Petroleum Exploration and Production Technology,Springer-Verlag,21900558|21900566 +Journal of Petroleum Geology,Wiley Blackwell (Blackwell Publishing),01416421|17475457 +Journal of Petroleum Science and Engineering,Elsevier ,09204105| +Journal of Petroleum Science Research,DEStech Publications,21685517|21685533 +Journal of Petroleum Technology,Society of Petroleum Engineers,01492136| +Journal of Petroleum Technology and Alternative Fuels,Academic Journals,23608560 +Journal of Petrology,Oxford University Press,00223530|14602415 +Journal of Pharmaceutical Analysis,Elsevier ,20951779| +Journal of Pharmaceutical and Allied Sciences,African Journals Online ,15968499 +Journal of Pharmaceutical and Biomedical Analysis,Elsevier ,07317085| +Journal of Pharmaceutical and Biomedical Sciences,Lawarence Press,22307885 +Journal of Pharmaceutical and Scientific Innovation,Moksha Publishing House,22774572 +Journal of Pharmaceutical Care & Health Systems,OMICS Publishing Group,23760419 +Journal of Pharmaceutical Care in Pain & Symptom Control,"""Informa UK (Haworth Press, Inc.,)""",10564950| +JOURNAL OF PHARMACEUTICAL CHEMISTRY,Vensel Publications,23495731 +Journal of Pharmaceutical Finance Economics & Policy,"""Informa UK (Haworth Press, Inc.,)""",15385698|15385396 +Journal of Pharmaceutical Health Care and Sciences,Springer (Biomed Central Ltd.),20550294|20550294 +Journal of Pharmaceutical Health Services Research,Wiley Blackwell (Blackwell Publishing),17598885|17598893 +Journal of Pharmaceutical Innovation,Springer-Verlag,18725120|19398042 +Journal of Pharmaceutical Investigation,Springer-Verlag,20935552| +Journal of Pharmaceutical Investigation,Springer-Verlag,20935552|20936214 +Journal of Pharmaceutical Marketing & Management,Informa UK (Taylor & Francis),08837597|15408574 +Journal of Pharmaceutical Marketing Practice,"""Informa UK (Haworth Press, Inc.,)""",10926801| +Journal of Pharmaceutical Negative Results,Medknow Publications,09769234| +Journal of Pharmaceutical Policy and Practice,Springer (Biomed Central Ltd.),20523211|20523211 +Journal of Pharmaceutical Research,Krupanidhi Educational Trust,09737200|24548405 +Journal of Pharmaceutical Research & Opinion,Innovative Journal,22491953 +Journal of Pharmaceutical Sciences,Elsevier ,00223549|15206017 +Journal of Pharmaceutical Sciences & Emerging Drugs,OMICS Publishing Group,23809477 +Journal of Pharmaceutical Sciences and Pharmacology,American Scientific Publishers,23333715|23333723 +journal of Pharmaceutical Technology and Drug Research,Herbert Publications,2050120X +Journal of Pharmaceutical Technology Research and Management,Chitkara University Publications,23212217|23212225 +Journal of Pharmaceutics,Hindawi (International Scholarly Research Network),20909918|20907818 +Journal of Pharmaceutics & Drug Delivery Research,OMICS Publishing Group,23259604 +Journal of Pharmaceutics & Pharmacology,Avens Publishing Group,2327204X +Journal of Pharmaceutics and Drug Development,"""Annex Publishers, LLC""",23489782 +Journal of Pharmacobio-Dynamics,Pharmaceutical Society of Japan,0386846X|18811353 +Journal of Pharmacoepidemiology,Informa UK (Taylor & Francis),08966966|15408582 +Journal of Pharmacogenomics & Pharmacoproteomics,OMICS Publishing Group,21530645 +Journal of Pharmacognosy,Bioinfo Publications,0976884X|09768858 +Journal of Pharmacognosy and Phytotherapy,Academic Journals,21412502 +Journal of Pharmacokinetics and Biopharmaceutics,Springer-Verlag,0090466X| +Journal of Pharmacokinetics and Pharmacodynamics,Springer-Verlag,1567567X|15738744 +Journal of Pharmacological and Toxicological Methods,Elsevier ,10568719| +Journal of Pharmacological Methods,Elsevier ,01605402| +Journal of Pharmacological Sciences,Elsevier ,13478613|13478648 +Journal of Pharmacology and Experimental Therapeutics,American Society for Pharmacology & Experimental Therapeutics,00223565|15210103 +Journal of Pharmacology and Pharmacotherapeutics,Medknow Publications,0976500X| +Journal of Pharmacology and Toxicology,Science Alert,1816496X| +Journal of Pharmacology Research,Bioinfo Publications,09767134|09767142 +Journal of Pharmacopuncture,Korean Pharmacopuncture Institute,12264849|22346856 +Journal of Pharmacovigilance,OMICS Publishing Group,23296887 +Journal of Pharmacy & Bioresources,African Journals Online ,1898442 +Journal of Pharmacy & Pharmaceutical Sciences,JPPS Journal,14821826|14821826 +Journal of Pharmacy & Pharmaceutics,Ommega Online Publishers,23771313 +Journal of Pharmacy and Allied Health Sciences,Science Alert,22242503| +Journal of Pharmacy And Bioallied Sciences,Medknow Publications,09757406| +Journal of Pharmacy and Nutrition Sciences,Lifescience Global,19275951 +Journal of Pharmacy and Pharmacology,Wiley Blackwell (Blackwell Publishing),00223573|20427158 +Journal of Pharmacy and Pharmacology,David Publishing Company,23282150|23282150 +Journal of Pharmacy Practice,SAGE Publications,08971900|15311937 +Journal of Pharmacy Practice and Community Medicine,EManuscript Services,24553255 +Journal of Pharmacy Practice and Research,Wiley Blackwell (John Wiley & Sons),1445937X| +Journal of Pharmacy Research,Elsevier ,09746943| +Journal of Pharmacy Teaching,Portico,10440054|15407365 +Journal of Pharmacy Technology,SAGE Publications,87551225|15494810 +Journal of Phase Equilibria,Springer-Verlag,10549714|00000000 +Journal of Phase Equilibria and Diffusion,Springer-Verlag,15477037|18637345 +Journal of Phenomenological Psychology,Brill Academic Publishers,00472662|15691624 +Journal of Philosophical Logic,Springer-Verlag,00223611|15730433 +Journal of Philosophical Research,Philosophy Documentation Center,10538364| +Journal of Philosophy A Cross-Disciplinary Inquiry,Philosophy Documentation Center,2072036X| +Journal of Philosophy and Culture,African Journals Online ,8556660 +Journal of Philosophy of Education,Wiley Blackwell (Blackwell Publishing),03098249|14679752 +Journal of Phonetics,Elsevier ,00954470|10958576 +Journal of Photochemistry,Elsevier ,00472670| +Journal of Photochemistry and Photobiology A Chemistry,Elsevier ,10106030| +Journal of Photochemistry and Photobiology B Biology,Elsevier ,10111344|10111344 +Journal of Photochemistry and Photobiology C Photochemistry Reviews,Elsevier ,13895567| +Journal of Photonic Materials and Technology,Science Publishing Group,24698423| +Journal of Photonics,Hindawi Publishing Corporation,23567562|23146451 +Journal of Photonics for Energy,SPIE - International Society for Optical Engineering,19477988| +Journal of Photopolymer Science and Technology,"""The Technical Association of Photopolymers, Japan""",09149244|13496336 +Journal of Phycology,Wiley Blackwell (Blackwell Publishing),00223646|15298817 +Journal of Phylogenetics & Evolutionary Biology,OMICS Publishing Group,23299002 +Journal of Physical Activity and Health,Human Kinetics,15433080| +Journal of Physical and Chemical Reference Data,American Institute of Physics,00472689|15297845 +Journal of physical and chemical sciences,ScienceQ Publishing Group,2348327X +Journal of Physical Chemistry & Biophysics,OMICS Publishing Group,21610398 +Journal of Physical Education and Sport,Physical Education and Sport Faculty,22478051|2247806X +Journal of Physical Education and Sports Management,American Research Institute for Policy Development,23732156|23732164 +Journal of Physical Education Recreation & Dance,Informa UK (Taylor & Francis),07303084|21683816 +Journal of Physical Mathematics,OMICS Publishing Group,20900899|20900902 +Journal of Physical Oceanography,American Meteorological Society,00223670|15200485 +Journal of Physical Organic Chemistry,Wiley Blackwell (John Wiley & Sons),08943230|10991395 +Journal of Physical Science and Application,David Publishing Company,21595348|21595348 +Journal of Physical Therapy and Health Promotion,Bowen Publishing Company,23761601|23761636 +Journal of Physical Therapy Science,The Society of Physical Therapy Science,09155287|21875626 +Journal of Physics A General Physics,IOP Publishing,03054470| +Journal of Physics A Mathematical and General,IOP Publishing,13616447|03054470 +Journal of Physics A Mathematical and Theoretical,IOP Publishing,17518113|17518121 +Journal of Physics A Mathematical Nuclear and General,IOP Publishing,03010015| +Journal of Physics and Chemistry of Materials,"""WorldAcademics, BOSON Academic Publications""",23486341 +Journal of Physics and Chemistry of Solids,Elsevier ,00223697| +Journal of Physics B Atomic and Molecular Physics,IOP Publishing,00223700| +Journal of Physics B Atomic Molecular and Optical Physics,IOP Publishing,09534075|13616455 +Journal of Physics C Solid State Physics,IOP Publishing,00223719| +Journal of Physics Condensed Matter,IOP Publishing,09538984|1361648X +Journal of Physics Conference Series,IOP Publishing,17426588|17426596 +Journal of Physics D Applied Physics,IOP Publishing,00223727|13616463 +Journal of Physics E Scientific Instruments,IOP Publishing,00223735| +Journal of Physics F Metal Physics,IOP Publishing,03054608| +Journal of Physics G Nuclear and Particle Physics,IOP Publishing,09543899|13616471 +Journal of Physics G Nuclear Physics,IOP Publishing,03054616| +Journal of Physics of the Earth,Seismological Society of Japan,00223743|18842305 +Journal of Physiobiochemical Metabolism,OMICS Publishing Group,23248793 +Journal of PHYSIOLOGICAL ANTHROPOLOGY,Springer (Biomed Central Ltd.),18806791|18806805 +Journal of PHYSIOLOGICAL ANTHROPOLOGY and Applied Human Science,Japan Society of Physiological Anthropology,13453475|13475355 +Journal of Physiology and Biochemistry,Springer-Verlag,11387548|18778755 +Journal of Physiology and Pathophysiology,Academic Journals,2141260X +Journal of Physiology and Pharmacology Advances,ScopeMed International Medical Journal Managment and Indexing System,22517693 +Journal of Physiology Studies,Hans Publishers,23301589|23301600 +Journal of Physiology-Paris,Elsevier ,09284257| +Journal of Physiotherapy,Elsevier ,18369553| +Journal of Phytology,Scienceflora Publishers Pvt. Ltd.,20756240 +Journal of Phytomedicine and Therapeutics,African Journals Online ,11181028 +Journal of Phytopathology,Wiley Blackwell (Blackwell Publishing),09311785|14390434 +Journal of Pidgin and Creole Languages,John Benjamins Publishing Company,09209034|15699870 +Journal of Pierre Fauchard Academy (India Section),Elsevier ,09702199| +Journal of Pigmentary Disorders,OMICS Publishing Group,23760427 +Journal of Pineal Research,Wiley Blackwell (Blackwell Publishing),07423098|1600079X +Journal of Pipeline Systems Engineering and Practice,American Society of Civil Engineers,19491190|19491204 +Journal of Place Management and Development,Emerald (MCB UP ),17538335| +Journal of Plankton Research,Oxford University Press,01427873|14643774 +Journal of Planning,"""LookUs Bilisim, Ltd.""",13007319| +Journal of Planning Education and Research,SAGE Publications,0739456X|00000000 +Journal of Planning History,SAGE Publications,15385132|15526585 +Journal of Planning Literature,SAGE Publications,08854122|00000000 +Journal of Plant Biochemistry & Physiology,OMICS Publishing Group,23299029 +Journal of Plant Biochemistry and Biotechnology,Springer-Verlag,09717811|09741275 +Journal of Plant Biology,Springer-Verlag,12269239|18670725 +Journal of Plant biology & Soil health,Avens Publishing Group,23318996 +Journal of Plant Biotechnology,The Korean Society for Plant Biotechnology,12292818|23841397 +Journal of Plant Breeding and Crop Science,Academic Journals,20069758 +Journal of Plant Diseases and Protection,Springer-Verlag,18613829|18613837 +Journal of Plant Ecology,Oxford University Press,17529921|1752993X +Journal of Plant Genome Sciences,"""Atlas Scienfitic Publishing, LP""",19491360 +Journal of Plant Genomics,Bioinfo Publications,09768823|09768831 +Journal of Plant Growth Regulation,Springer-Verlag,07217595|14358107 +Journal of Plant Interactions,Informa UK (Taylor & Francis),17429145|17429153 +Journal of Plant Nutrition,Informa UK (Taylor & Francis),01904167|15324087 +Journal of Plant Nutrition and Soil Science,Wiley Blackwell (John Wiley & Sons),14368730|15222624 +Journal of Plant Pathology & Microbiology,OMICS Publishing Group,21577471 +Journal of Plant Physiology,Elsevier ,01761617| +Journal of Plant Physiology & Pathology,OMICS Publishing Group,2329955X +Journal of Plant Protection Research,De Gruyter Open Sp. z o.o. ,14274345|1899007X +Journal of Plant Registrations,American Society of Agronomy,19365209|19403496 +Journal of Plant Research,Springer-Verlag,09189440|16180860 +journal of Plant Science and Molecular Breeding,Herbert Publications,20502389 +Journal of Plant Sciences,Science Alert,18164951| +Journal of Plant Sciences (Science Publishing Group),Science Publishing Group,23310723| +Journal of Plant Stress Physiology,Scienceflora Publishers Pvt. Ltd.,24550477 +Journal of Plant Studies,Canadian Center of Science and Education,19270461|1927047X +Journal of Plantation Crops,Scienceflora Publishers Pvt. Ltd.,03045242|24548480 +Journal of Plasma and Fusion Research,Japan Society of Plasma Science and Nuclear Fusion Research,09187928| +Journal of Plasma Physics,Cambridge University Press,00223778|14697807 +Journal of Plastic Film and Sheeting,SAGE Publications,87560879|15308014 +Journal of Plastic Reconstructive & Aesthetic Surgery,Elsevier ,17486815| +Journal of Plastic Surgery and Hand Surgery,Informa UK (Taylor & Francis),2000656X|20006764 +Journal of Playwork Practice,The Policy Press,20531621|2053163X +Journal of Poetry Therapy,Informa UK (Taylor & Francis),08893675|15672344 +Journal of Police and Criminal Psychology,Springer-Verlag,08820783|19366469 +Journal of Police Crisis Negotiations,Informa UK (Taylor & Francis),15332586|15332594 +Journal of Policing Intelligence and Counter Terrorism,Informa UK (Taylor & Francis),18335330|21595364 +Journal of Policy Analysis and Management,Wiley Blackwell (John Wiley & Sons),02768739|15206688 +Journal of Policy and Development Studies,"""Al Manhal FZ, LLC""",15979385| +Journal of Policy and Organisational Management,Bioinfo Publications,09767738|09767746 +Journal of Policy and Practice in Intellectual Disabilities,Wiley Blackwell (Blackwell Publishing),17411122|17411130 +Journal of Policy History,Cambridge University Press,08980306|15284190 +Journal of Policy Modeling,Elsevier ,01618938| +Journal of Policy Practice,Informa UK (Taylor & Francis),15588742|15588750 +Journal of Policy Research in Tourism Leisure and Events,Informa UK (Taylor & Francis),19407963|19407971 +Journal of Politeness Research,Walter de Gruyter GmbH,16125681|16134877 +Journal of Political Economy,The University of Chicago Press,00223808|1537534X +Journal of Political Ideologies,Informa UK (Taylor & Francis),13569317|14699613 +Journal of Political Marketing,Informa UK (Taylor & Francis),15377857|15377865 +Journal of Political Philosophy,Wiley Blackwell (Blackwell Publishing),09638016|14679760 +Journal of Political Power,Informa UK (Taylor & Francis),2158379X|21583803 +Journal of Political Science and Communication,The Korean Association of Political Science and Communication,12298255| +Journal of Political Science Education,Informa UK (Taylor & Francis),15512169|15512177 +Journal of Political Sciences & Public Affairs,OMICS Publishing Group,23320761 +Journal of Politics and Law,Canadian Center of Science and Education,19139047|19139055 +Journal of Pollution Effects & Control,OMICS Publishing Group,23754397 +Journal of Polymer Engineering,Walter de Gruyter GmbH,03346447|21910340 +Journal of Polymer Research,Springer-Verlag,10229760|15728935 +Journal of Polymer Science,Wiley Blackwell (John Wiley & Sons),00223832|15426238 +Journal of Polymer Science Macromolecular Reviews,Wiley Blackwell (John Wiley & Sons),00762083|15430480 +Journal of Polymer Science Part A General Papers,Wiley Blackwell (John Wiley & Sons),04492951|15426246 +Journal of Polymer Science Part A Polymer Chemistry,Wiley Blackwell (John Wiley & Sons),0887624X|10990518 +Journal of Polymer Science Part A-1 Polymer Chemistry,Wiley Blackwell (John Wiley & Sons),0449296X|15429350 +Journal of Polymer Science Part A-2 Polymer Physics,Wiley Blackwell (John Wiley & Sons),04492978|15429377 +Journal of Polymer Science Part B Polymer Letters,Wiley Blackwell (John Wiley & Sons),04492986|15426254 +Journal of Polymer Science Part B Polymer Physics,Wiley Blackwell (John Wiley & Sons),08876266|10990488 +Journal of Polymer Science Part C Polymer Letters,Wiley Blackwell (John Wiley & Sons),08876258|15430472 +Journal of Polymer Science Part C Polymer Symposia,Wiley Blackwell (John Wiley & Sons),04492994|19353065 +Journal of Polymer Science Polymer Chemistry Edition,Wiley Blackwell (John Wiley & Sons),03606376|15429369 +Journal of Polymer Science Polymer Letters Edition,Wiley Blackwell (John Wiley & Sons),03606384|15430472 +Journal of Polymer Science Polymer Physics Edition,Wiley Blackwell (John Wiley & Sons),00981273|15429385 +Journal of Polymer Science Polymer Symposia,Wiley Blackwell (John Wiley & Sons),03608905|19360959 +Journal of Polymers,Hindawi Publishing Corporation,23567570|23146877 +Journal of Polymers and the Environment,Springer-Verlag,15662543|15728900 +Journal of Polytechnic,Technical Education Faculty Gazi University,13020900| +Journal of Pomology and Horticultural Science,Informa UK (Taylor & Francis),03683621| +Journal of Popular Film,Informa UK (Taylor & Francis),00472719| +Journal of Popular Film and Television,Informa UK (Taylor & Francis),01956051|19306458 +Journal of Popular Music Studies,Wiley Blackwell (Blackwell Publishing),15242226| +Journal of Popular Narrative,The Association of Popular Narrative,17383188| +Journal of Population,Springer-Verlag,01461052| +Journal of Population Ageing,Springer-Verlag,18747884|18747876 +Journal of Population Economics,Springer-Verlag,09331433|14321475 +Journal of Population Research,Springer-Verlag,14432447|18359469 +Journal of Porous Materials,Springer-Verlag,13802224|15734854 +Journal of Porous Media,Begell House Inc.,1091028X| +Journal of Porphyrins and Phthalocyanines,World Scientific ,10884246|10991409 +Journal of Portuguese Linguistics,"""Ubiquity Press, Ltd.""",16454537|23975563 +Journal of Positioning Navigation and Timing,The Korean GNSS Society,22888187| +Journal of Positive Behavior Interventions,SAGE Publications,10983007|15384772 +Journal of Positive Management,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,2083103X|23921412 +Journal of Post Keynesian Economics,Informa UK (Taylor & Francis),01603477|15577821 +Journal of Postcolonial Writing,Informa UK (Taylor & Francis),17449855|17449863 +Journal of Postgenomics Drug & Biomarker Development,OMICS Publishing Group,21530769 +Journal of Postgraduate Medicine,Medknow Publications,00223859| +Journal of Postgraduate Medicine Education and Research,Jaypee Brothers Medical Publishing,22778969|22780262 +Journal of Poverty,Informa UK (Taylor & Francis),10875549|15407608 +Journal of Poverty and Social Justice,The Policy Press,17598273|17598281 +Journal of Powder Metallurgy and Mining,OMICS Publishing Group,21689806 +Journal of Powder Technology,Hindawi (International Scholarly Research Network),20907710|20907737 +Journal of Power,Informa UK (Taylor & Francis),17540291| +Journal of Power,Informa UK (Taylor & Francis),17540291| +Journal of Power,Informa UK (Taylor & Francis),17540291|17540305 +Journal of Power,Informa UK (Taylor & Francis),17540291| +Journal of Power and Energy Engineering,"""Scientific Research Publishing, Inc.""",2327588X|23275901 +Journal of Power and Energy Systems,The Japan Society of Mechanical Engineers,18813062 +Journal of Power Electronics,The Korean Institute of Power Electrics,15982092| +Journal of Power Politics & Governance,American Research Institute for Policy Development,23724919|23724927 +Journal of Power Sources,Elsevier ,03787753|03787753 +Journal of Practical Engineering Education,Korean Institute for Practical Engineering Education,2288405X| +Journal of Pragmatics,Elsevier ,03782166| +Journal of Praxis in Multicultural Education,"""University Libraries, University of Nevada, Las Vegas""",21612978 +Journal of Pre-Clinical and Clinical Research,Index Copernicus International,18982395|18987516 +Journal of Pre-College Engineering Education Research (J-PEER),Purdue University Press,21579288 +Journal of Pregnancy,Hindawi Publishing Corporation,20902727|20902735 +Journal of Pregnancy and Child Health,OMICS Publishing Group,2376127X +Journal of Prenatal Diagnosis and Therapy,Medknow Publications,09761756| +Journal of Prenatal Medicine,CIC Edizioni Internazionali,19713282 +Journal of Pressure Vessel Technology,ASME International ,00949930| +Journal of Prevention & Intervention in the Community,Informa UK (Taylor & Francis),10852352|15407330 +Journal of Preventive Medicine and Public Health,Korean Society for Preventive Medicine,19758375|22334521 +Journal of Preventive Veterinary Medicine,Korean Society of Preventive Veterinary Medicine,22877991|22878009 +Journal of Primary Care & Community Health,SAGE Publications,21501319|21501327 +Journal of Primary Health Care,CSIRO Publishing,11726164| +Journal of Primatology,OMICS Publishing Group,21676801 +Journal of Prison Education and Reentry,University of Bergen Library,23872306 +Journal of Private International Law,Informa UK (Taylor & Francis),17441048|17578418 +Journal of Probability,Hindawi Publishing Corporation,23567589|23148373 +Journal of Probability and Statistics,Hindawi Publishing Corporation,1687952X|16879538 +Journal of Probiotics & Health,OMICS Publishing Group,23298901 +Journal of proceedings of the Agricultural Economics Society,Wiley Blackwell (Blackwell Publishing),13601261| +Journal of Process Control,Elsevier ,09591524| +Journal of Process Management New Technologies,Centre for Evaluation in Education and Science,2334735X| +Journal of Product & Brand Management,Emerald (MCB UP ),10610421|00000000 +Journal of Product Innovation Management,Wiley Blackwell (Blackwell Publishing),07376782|15405885 +Journal of Productivity Analysis,Springer-Verlag,0895562X|15730441 +Journal of Professional Capital and Community,Emerald (MCB UP ),20569548| +Journal of Professional Communication,Escarpment Press,19206852 +Journal of Professional Issues in Engineering,American Society of Civil Engineers,07339380|23310030 +Journal of Professional Issues in Engineering Education and Practice,American Society of Civil Engineers,10523928|19435541 +Journal of Professional Nursing,Elsevier ,87557223| +Journal of Professional Services Marketing,Informa UK (Taylor & Francis),07484623| +Journal of Professions and Organization,Oxford University Press,20518803|20518811 +Journal of Progressive Human Services,Informa UK (Taylor & Francis),10428232|15407616 +Journal of Projective Techniques,Informa UK (Taylor & Francis),08853126| +Journal of Projective Techniques and Personality Assessment,Informa UK (Taylor & Francis),0091651X| +Journal of Promotion Management,Informa UK (Taylor & Francis),10496491|15407594 +Journal of Property Finance,Emerald (MCB UP ),0958868X|00000000 +Journal of Property Investment & Finance,Emerald (MCB UP ),1463578X| +Journal of Property Investment and Finance,Emerald (MCB UP ),1463578X|00000000 +Journal of Property Research,Informa UK (Taylor & Francis),09599916|14664453 +Journal of Property Valuation and Investment,Emerald (MCB UP ),09602712|00000000 +Journal of Propulsion and Power,American Institute of Aeronautics and Astronautics,07484658|15333876 +Journal of Prosthetic Dentistry,Elsevier - Mosby,00223913| +Journal of Prosthodontic Research,Elsevier ,18831958| +Journal of Prosthodontics,Wiley Blackwell (Blackwell Publishing),1059941X|1532849X +Journal of Protein Chemistry,Springer-Verlag,02778033| +Journal of Proteolysis,Journal of Pattern Recognition Research,23316977 +Journal of Proteome Research,American Chemical Society,15353893|15353907 +journal of Proteome Science and Computational Biology,Herbert Publications,20502273 +Journal of Proteomics,Elsevier ,18743919| +Journal of Proteomics & Bioinformatics,OMICS Publishing Group,0974276X +Journal of Proteomics & Enzymology,OMICS Publishing Group,24701289 +Journal of Proteomics and Genomics research,Open Access Pub,23260793 +Journal of Proton Therapy,International Journal of Cancer Therapy and Oncology,24695491 +Journal of Pseudo-Differential Operators and Applications,Springer-Verlag,16629981|1662999X +Journal of Psychiatric and Mental Health Nursing,Wiley Blackwell (Blackwell Publishing),13510126|13652850 +Journal of Psychiatric Intensive Care,NAPICU (National Association of Psychiatric Intensive Care Units),17426464|17442206 +Journal of Psychiatric Nursing,"""LookUs Bilisim, Ltd.""",13093568| +Journal of Psychiatric Practice,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15274160| +Journal of Psychiatric Research,Elsevier ,00223956| +Journal of Psychiatrists Association of Nepal,Nepal Journals Online,20912862|23508949 +Journal of Psychiatry,OMICS Publishing Group,23785756 +Journal of Psychiatry and Brain Functions,Herbert Publications,20553447 +Journal of Psychiatry and Neuroscience,"""8872147 Canada, Inc.""",11804882|14882434 +Journal of Psychoactive Drugs,Informa UK (Taylor & Francis),02791072|21599777 +Journal of Psychoceramics,CrossRef test user,2643561 +Journal of Psychoeducational Assessment,SAGE Publications,07342829|15575144 +Journal of Psycholinguistic Research,Springer-Verlag,00906905|15736555 +Journal of Psychological Abnormalities in Children,OMICS Publishing Group,23299525 +Journal of Psychological Issues in Organizational Culture,Wiley Blackwell (John Wiley & Sons),20418418|20418426 +Journal of Psychological Trauma,Informa UK (Taylor & Francis),19322887|19322895 +Journal of Psychologists and Counsellors in Schools,Cambridge University Press,20556365|20556373 +Journal of Psychology & Clinical Psychiatry,MedCrave Group,23736445 +Journal of Psychology & Human Sexuality,Informa UK (Taylor & Francis),08907064|15408698 +Journal of Psychology & Psychotherapy,OMICS Publishing Group,21610487 +Journal of Psychology and Behavioral Science,American Research Institute for Policy Development,23742380|23742399 +Journal of Psychology and Judaism,Springer (Kluwer Academic Publishers),07009801| +Journal of Psychology and Psychotherapy Research,Savvy Science Publisher,23131047 +Journal of Psychology in Africa,African Journals Online ,14330237 +Journal of Psychology of Science and Technology,Springer Publishing Company,19397054| +Journal of Psychology Research,David Publishing Company,21595542|21595550 +Journal of Psychopathology and Behavioral Assessment,Springer-Verlag,08822689|15733505 +Journal of Psychopharmacology,SAGE Publications,02698811|00000000 +Journal of Psychophysiology,Hogrefe Publishing Group,02698803|21512124 +Journal of Psychosocial Nursing and Mental Health Services,"""SLACK, Inc.""",02793695| +Journal of Psychosocial Oncology,Informa UK (Taylor & Francis),07347332|15407586 +Journal of Psychosocial Rehabilitation and Mental Health,Springer-Verlag,21989834|2198963X +Journal of Psychosomatic Obstetrics & Gynecology,Informa UK (Taylor & Francis),0167482X|17438942 +Journal of Psychosomatic Research,Elsevier ,00223999| +Journal of Psychotherapy & Psychological Disorders,OMICS Publishing Group,23274654 +Journal of Psychotherapy & The Family,"""Informa UK (Haworth Press, Inc.,)""",07429703| +Journal of Psychotherapy in Independent Practice,Informa UK (Taylor & Francis),15229580| +Journal of Psychotherapy Integration,American Psychological Association,10530479|15733696 +Journal of Public Administration and Governance,"""Macrothink Institute, Inc.""",21617104 +Journal of Public Administration and Policy Research,Academic Journals,21412480 +Journal of Public Administration Research and Theory,Oxford University Press,10531858|14779803 +Journal of Public Affairs,Wiley Blackwell (John Wiley & Sons),14723891|14791854 +Journal of Public and Municipal Administration,Infra-M Academic Publishing House,22258272| +Journal of Public and Nonprofit Affairs,Journal of Public and Nonprofit Affairs,23813717 +Journal of Public Child Welfare,Informa UK (Taylor & Francis),15548732|15548740 +Journal of Public Economic Theory,Wiley Blackwell (Blackwell Publishing),10973923|14679779 +Journal of Public Economics,Elsevier ,00472727| +Journal of Public Health,Oxford University Press,17413842|17413850 +Journal of Public Health,Springer-Verlag,09431853|16132238 +Journal of Public Health and Epidemiology,Academic Journals,21412316 +Journal of Public Health Aspects,Herbert Publications,20557205 +Journal of Public Health Dentistry,Wiley Blackwell (Blackwell Publishing),00224006|17527325 +Journal of Public Health in Africa,PAGEPress Publications,20389922|20389930 +Journal of Public Health Management and Practice,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10784659| +Journal of Public Health Medicine,Oxford University Press,09574832|14643782 +Journal of Public Health Policy,Nature Publishing Group - Macmillan Publishers,01975897|1745655X +Journal of Public Health Research,PAGEPress Publications,22799028|2239981X +Journal of Public Management Research,"""Macrothink Institute, Inc.""",23773294 +Journal of Public Mental Health,Emerald (MCB UP ),17465729|20428731 +Journal of Public Policy,Cambridge University Press,0143814X|14697815 +Journal of Public Policy & Marketing,American Marketing Association,07439156|15477207 +Journal of Public Relations,Korean Academic Society for Public Relations,12292869| +Journal of Public Relations Research,Informa UK (Taylor & Francis),1062726X|1532754X +Journal of Public Transportation,University of South Florida Libraries,1077291X|23750901 +Journal of Pulmonary & Respiratory Medicine,OMICS Publishing Group,2161105X +Journal of Purchasing and Supply Management,Elsevier ,14784092| +Journal of Purdue Undergraduate Research,Purdue University Press,21584044|21584052 +Journal of Pure and Applied Algebra,Elsevier ,00224049| +Journal of Pure and Applied Mathematics Advances and Applications,Scientific Advances Publishers,9749381 +Journal of Qualitative Research in Education,Ani Publishing and Consulting Company,21482624 +Journal of Quality and Reliability Engineering,Hindawi Publishing Corporation,23148055|23148047 +Journal of Quality Assurance,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10620273| +Journal of Quality Assurance in Hospitality & Tourism,Informa UK (Taylor & Francis),1528008X|15280098 +Journal of Quality in Maintenance Engineering,Emerald (MCB UP ),13552511|00000000 +Journal of Quality Management,Elsevier ,10848568| +Journal of Quantitative Analysis in Sports,Walter de Gruyter GmbH,21946388|15590410 +Journal of Quantitative Criminology,Springer-Verlag,07484518|15737799 +Journal of Quantitative Economics,Springer-Verlag,09711554|23641045 +Journal of Quantitative Linguistics,Informa UK (Taylor & Francis),09296174|17445035 +Journal of Quantitative Spectroscopy and Radiative Transfer,Elsevier ,00224073| +Journal of Quantum Chemistry,Hindawi Publishing Corporation,23567597|23146982 +Journal of Quantum Information Science,"""Scientific Research Publishing, Inc.""",21625751|2162576X +Journal of Quaternary Science,Wiley Blackwell (John Wiley & Sons),02678179|10991417 +Journal of Qur anic Studies,Edinburgh University Press,14653591|17551730 +Journal of Racial and Ethnic Health Disparities,Springer-Verlag,21973792|21968837 +JOURNAL OF RADARS,China Science Publishing & Media Ltd.,2095283X| +Journal of Radiation Oncology,Springer-Verlag,19487894|19487908 +Journal of Radiation Protection and Research,Korean Association for Radiation Protection,02534231| +Journal of Radiation Research,Oxford University Press,04493060|13499157 +Journal of Radiation Research and Applied Sciences,Elsevier ,16878507| +Journal of Radio & Audio Media,Informa UK (Taylor & Francis),19376529|19376537 +Journal of Radio Electronics,Begell House Inc.,21658439| +Journal of Radio Studies,Informa UK (Taylor & Francis),10955046|15506843 +Journal of Radioanalytical and Nuclear Chemistry,Springer-Verlag,02365731|15882780 +Journal of Radioanalytical Chemistry,Springer-Verlag,01340719| +Journal of Radiological Protection,IOP Publishing,09524746|13616498 +Journal of Radiological Science and Technology,Korean Society of Radiological Science,12262854|23841168 +Journal of Radiology and Diagnostic Imaging,Pharma Publisher,23094427 +Journal of Radiology Case Reports,EduRad,19430922 +Journal of Radiology Nursing,Elsevier ,15460843| +Journal of Radiology Research and Practice,IBIMA Publishing,23788720 +Journal of Radioprotection Research,Sciknow Publications,23339535 +Journal of Radiosurgery,Springer (Kluwer Academic Publishers),10964053| +Journal of Radiotherapy,Hindawi Publishing Corporation,23567600|23148349 +Journal of Radiotherapy in Practice,Cambridge University Press,14603969|14671131 +Journal of Rail Transport Planning & Management,Elsevier ,22109706| +Journal of Rainwater Catchment Systems,Journal of Rainwater Catchment Systems,13438646|21866228 +Journal of Raman Spectroscopy,Wiley Blackwell (John Wiley & Sons),03770486|10974555 +Journal of Range Management,University of Arizona,0022409X| +Journal of Rapid Methods & Automation in Microbiology,Wiley Blackwell (Blackwell Publishing),10603999|17454581 +Journal of Raptor Research,BioOne (The Raptor Research Foundation),08921016|21624569 +Journal of Rare Earths,Elsevier ,10020721| +Journal of Rational-Emotive & Cognitive-Behavior Therapy,Springer-Verlag,08949085|15736563 +Journal of Rational-Emotive Therapy,Springer-Verlag,07481985| +Journal of reading research,Korea Reading Association,15989607| +Journal of Reading Writing and Learning Disabilities International,Informa UK (Taylor & Francis),07487630| +Journal of Real Estate Literature,Springer (Kluwer Academic Publishers),09277544| +Journal of Real Options and Strategy,Japan Association of Real Options and Strategy,18815774|18841635 +Journal of Real-Time Image Processing,Springer-Verlag,18618200|18618219 +Journal of Recent Advances in Agriculture,ScopeMed International Medical Journal Managment and Indexing System,23221534 +Journal of Receptor Ligand and Channel Research,Dove Medical Press,1178699X +Journal of Receptor Research,Informa UK (Taylor & Francis),01975110| +Journal of Receptors and Signal Transduction,Informa UK (Taylor & Francis),10799893|15324281 +Journal of Reconstructive Microsurgery,Thieme Publishing Group,0743684X|10988947 +Journal of Reconstructive Microsurgery Open,Thieme Publishing Group,23770813|23770821 +Journal of Reducing Space Mission Cost,Springer (Kluwer Academic Publishers),13857479| +Journal of Reformed Theology,Brill Academic Publishers,18725163|15697312 +Journal of Refractive Surgery,"""SLACK, Inc.""",1081597X| +Journal of Refugee Studies,Oxford University Press,09516328|14716925 +Journal of Regenerative Medicine,OMICS Publishing Group,23259620 +journal of Regenerative Medicine and Tissue Engineering,Herbert Publications,20501218 +Journal of Regional and City Planning,The Institute for Research and Community Services ITB,25026429 +Journal of Regional Science,Wiley Blackwell (Blackwell Publishing),00224146|14679787 +Journal of Regional Security,Belgrade Centre for Security Policy,2217995X|24060364 +Journal of Regulatory Economics,Springer-Verlag,0922680X|15730468 +Journal of Rehabilitation and Assistive Technologies Engineering,SAGE Publications,20556683 +Journal of Rehabilitation Medicine,Acta Dermato-Venereologica,16501977| +Journal of Rehabilitation Robotics,Synergy Publishers,23088354 +Journal of Reinforced Plastics and Composites,SAGE Publications,07316844|15307964 +Journal of Relationship Marketing,Informa UK (Taylor & Francis),15332667|15332675 +Journal of Relationships Research,Cambridge University Press,18380956|18380956 +Journal of Reliable Intelligent Environments,Springer-Verlag,21994668|21994676 +Journal of Religion & Abuse,Informa UK (Taylor & Francis),15211037|15239179 +Journal of Religion & Aging,"""Informa UK (Haworth Press, Inc.,)""",07386184| +Journal of Religion & Spirituality in Social Work Social Thought,Informa UK (Taylor & Francis),15426432|15426440 +Journal of Religion and Health,Springer-Verlag,00224197|15736571 +Journal of Religion and Popular Culture,University of Toronto Press Inc,1703289X +Journal of Religion and Violence,Philosophy Documentation Center,21596808| +Journal of Religion Disability & Health,Informa UK (Taylor & Francis),15228967|15229122 +Journal of Religion in Africa,Brill Academic Publishers,00224200|15700666 +Journal of Religion in Disability & Rehabilitation,"""Informa UK (Haworth Press, Inc.,)""",10599258| +Journal of Religion in Europe,Brill Academic Publishers,18748910|18748929 +Journal of Religion in Japan,Brill Academic Publishers,22118330|22118349 +Journal of Religion Spirituality & Aging,Informa UK (Taylor & Francis),15528030|15528049 +Journal of Religious & Theological Information,Informa UK (Taylor & Francis),10477845|15286924 +Journal of Religious and Political Practice,Informa UK (Taylor & Francis),20566093|20566107 +Journal of Religious Education,Springer-Verlag,1442018X|21994625 +Journal of Religious Ethics,Wiley Blackwell (Blackwell Publishing),03849694|14679795 +Journal of Religious Gerontology,Informa UK (Taylor & Francis),10502289|1528686X +Journal of Religious History,Wiley Blackwell (Blackwell Publishing),00224227|14679809 +Journal of Remanufacturing,Springer (Biomed Central Ltd.),22104690|22104690 +Journal of Remote Sensing & GIS,OMICS Publishing Group,24694134 +Journal of Remote Sensing Technology,Bowen Publishing Company,23301767|23301775 +Journal of Renal Care,Wiley Blackwell (Blackwell Publishing),17556678|17556686 +Journal of Renal Injury Prevention,International Society for Phytocosmetic Sciences,23452781 +Journal of Renal Nursing,Mark Allen Group,20411448|20522894 +Journal of Renal Nutrition,Elsevier ,10512276|15328503 +Journal of Renewable Agriculture,Sciknow Publications,23284943|23284951 +Journal of Renewable and Sustainable Energy,American Institute of Physics,19417012|19417012 +Journal of Renewable Energy,Hindawi Publishing Corporation,23144386|23144394 +JOURNAL OF RENEWABLE MATERIALS,Scrivener Publishing,21646325|21646341 +Journal of Renin-Angiotensin-Aldosterone System,SAGE Publications,14703203|17528976 +Journal of Reproduction and Contraception,Elsevier ,10017844| +Journal of Reproduction and Development,Japanese Society of Animal Reproduction,09168818|13484400 +Journal of Reproductive and Infant Psychology,Informa UK (Taylor & Francis),02646838|1469672X +Journal of Reproductive Biology and Health,Herbert Publications,20540841 +Journal of Reproductive Biotechnology and Fertility,SAGE Publications,20589158 +Journal of Reproductive Health and Medicine,Elsevier ,2214420X| +Journal of Reproductive Immunology,Elsevier ,01650378| +Journal of Research & Developments in Chemistry,IBIMA Publishing,2379965X +Journal of Research and Education in Indian Medicine (Estt 1982),ScopeMed International Medical Journal Managment and Indexing System,09707700| +Journal of Research and Practice in Dentistry,IBIMA Publishing,23333650 +Journal of Research Design and Statistics in Linguistics and Communication Science,Equinox Publishing,2052417X|20524188 +Journal of Research in Art Education,Korean Society of Education Through Art,1229747X| +Journal of Research in Childhood Education,Informa UK (Taylor & Francis),02568543|21502641 +Journal of Research in Crime and Delinquency,SAGE Publications,00224278|00000000 +Journal of Research in Diabetes,IBIMA Publishing,23720654 +Journal of Research in Economics and International Finance,International Research Journals,23155671 +Journal of Research in Educational Sciences,De Gruyter Open Sp. z o.o. ,20688407 +Journal of Research in Environmental Science and Toxicology,International Research Journals,23155698 +Journal of Research in Hospitality Tourism and Culture,International Research Journals,22510028 +Journal of Research in Humanities and Social Science,IOSR Journals,23219467 +Journal of Research in Industrial Organization,IBIMA Publishing,23720778 +Journal of Research in Interactive Marketing,Emerald (MCB UP ),20407122| +Journal of Research in International Education,SAGE Publications,14752409|00000000 +Journal of Research in Marketing,Techmind Research Society,22929355 +Journal of Research in Marketing and Entrepreneurship,Emerald (MCB UP ),14715201| +Journal of Research in Mathematics Education,Hipatia Press,20143621 +Journal of Research in Mechanical Engineering,IOSR Journals,23218185| +Journal of Research in Medical and Dental Science,ScopeMed International Medical Journal Managment and Indexing System,23472545| +Journal of Research in Medical Education & Ethics,Diva Enterprises Private Limited,2231671X|22316728 +Journal of Research in Medical Sciences,Medknow Publications,17351995| +Journal of Research in Music Education,SAGE Publications,00224294|19450095 +Journal of Research in Nanotechnology,IBIMA Publishing,23799706 +Journal of Research in National Development,African Journals Online ,15968308 +Journal of Research in Nursing,SAGE Publications,13614096|1744988X +Journal of Research in Nursing and Midwifery,International Research Journals,2315568X +Journal of Research in Obesity,IBIMA Publishing,23333707 +Journal of Research in Peace Gender and Development,International Research Journals,22510036 +Journal of Research in Personality,Elsevier ,00926566|10957251 +Journal of Research in Pharmaceutical Economics,"""Informa UK (Haworth Press, Inc.,)""",08966621| +Journal of Research in Pharmacy Practice,Medknow Publications,2279042X| +Journal of Research in Physics,De Gruyter Open Sp. z o.o. ,14507404|2217933X +Journal of Research in Reading,Wiley Blackwell (Blackwell Publishing),01410423|14679817 +Journal of Research in Science Computing and Engineering,PhilJOL,16561996| +Journal of Research in Science Education,Society of Japan Science Teaching,13452614|2187509X +Journal of Research in Science Teaching,Wiley Blackwell (John Wiley & Sons),00224308|10982736 +Journal of Research in Special Educational Needs,Wiley Blackwell (Blackwell Publishing),14713802|14713802 +Journal of Research of the National Bureau of Standards,National Institute of Standards and Technology,01601741| +Journal of Research of the National Bureau of Standards Section A Physics and Chemistry,National Institute of Standards and Technology,00224332| +Journal of Research of the National Bureau of Standards Section B Mathematical Sciences,National Institute of Standards and Technology,00988979| +Journal of Research of the National Bureau of Standards Section B Mathematics and Mathematical Physics,National Institute of Standards and Technology,00224340| +Journal of Research of the National Bureau of Standards Section C Engineering and Instrumentation,National Institute of Standards and Technology,00224316| +Journal of Research of the National Bureau of Standards Section D Radio Propagation,National Institute of Standards and Technology,10601783| +Journal of Research of the National Bureau of Standards Section D Radio Science,National Institute of Standards and Technology,05022568| +Journal of Research of the National Institute of Standards and Technology,National Institute of Standards and Technology,1044677X|21657254 +Journal of Research on Adolescence,Wiley Blackwell (Blackwell Publishing),10508392|15327795 +Journal of Research on Christian Education,Informa UK (Taylor & Francis),10656219| +Journal of Research on Christian Education,Informa UK (Taylor & Francis),10656219|19344945 +Journal of Research on Computing in Education,Informa UK (Taylor & Francis),08886504| +Journal of Research on Educational Effectiveness,Informa UK (Taylor & Francis),19345747|19345739 +Journal of Research on Leadership Education,SAGE Publications,19427751| +Journal of Research on Technology in Education,Informa UK (Taylor & Francis),15391523|19450818 +Journal of Research Society of Buddhism and Cultural Heritage,Research Society of Buddhism and Cultural Heritage,09196943|21863253 +Journal of Research THE BEDE ATHENAEUM,Diva Enterprises Private Limited,09760598|09761748 +Journal of Research Updates in Polymer Science,Lifescience Global,19295995 +Journal of Residuals Science and Technology,DEStech Publications,15448053|2376578X +Journal of Resources and Ecology,"""BioOne (Institute of Geographic Scienes and Natural Resources Research, Chinese Academy of Sciences)""",1674764X| +Journal of Resources Energy and Development,IOS Press,09757554|09757562 +Journal of Respiratory Medicine,Hindawi Publishing Corporation,23567619|23146958 +Journal of Responsible Innovation,Informa UK (Taylor & Francis),23299460|23299037 +Journal of Restaurant & Foodservice Marketing,Informa UK (Taylor & Francis),1052214X| +Journal of Restorative Dentistry,Medknow Publications,23214619| +Journal of Restorative Medicine,Association for the Advancement of Restorative Medicine,21657971| +Journal of Restructuring Finance,World Scientific ,16099451| +Journal of Restructuring Finance,World Scientific ,0219869X| +Journal of Retail & Leisure Property,Nature Publishing Group - Macmillan Publishers,14791110|17502098 +Journal of Retailing,Elsevier ,00224359| +Journal of Retailing and Consumer Services,Elsevier ,09696989| +Journal of Revenue and Pricing Management,Nature Publishing Group - Macmillan Publishers,14766930|1477657X +Journal of Reviews on Global Economics,Lifescience Global,19297092 +Journal of Reward Deficiency Syndrome,United Scientific Group,2379111X +Journal of Rheology,Society of Rheology,01486055|15208516 +Journal of Rheology,Society of Rheology,00970360| +Journal of Rheumatic Diseases,The Korean Rheumatism Association (KAMJE),2093940X|22334718 +Journal of Rheumatology and Orthopedics,Herbert Publications,20557000 +Journal of Rheumatology Supplement,The Journal of Rheumatology,03800903| +Journal of Rhinolaryngo-Otologies,Synergy Publishers,23087978 +Journal of Rhinology,Korean Rhinologic Society (KAMJE),12256870|23844361 +Journal of Risk & Insurance,Wiley Blackwell (Blackwell Publishing),00224367|15396975 +Journal of Risk Analysis and Crisis Response,Atlantis Press,22108505| +Journal of Risk and Financial Management,MDPI AG,19118074 +Journal of Risk and Uncertainty,Springer-Verlag,08955646|15730476 +Journal of Risk Research,Informa UK (Taylor & Francis),13669877|14664461 +Journal of Robotic Surgery,Springer-Verlag,18632483|18632491 +Journal of Robotic Systems,Wiley Blackwell (John Wiley & Sons),07412223|10974563 +Journal of Robotics,Hindawi Publishing Corporation,16879600|16879619 +Journal of Robotics Networking and Artificial Life,Atlantis Press,23526386| +Journal of Rock Mechanics and Geotechnical Engineering,Elsevier ,16747755| +Journal of Roman Archaeology,Cambridge University Press,10477594|23315709 +Journal of Rural Medicine,The Japanese Association of Rural Medicine,1880487X|18804888 +JOURNAL OF RURAL PLANNING ASSOCIATION,The Association for Rural Planning,09129731|18812309 +Journal of Rural Problems,The Association for Regional Agricultural and Forestry Economics,03888525|21859973 +JOURNAL OF RURAL SOCIETY AND ECONOMICS,The Agricultural Economic Society of Tohoku,2187297X| +Journal of Rural Studies,Elsevier ,07430167| +Journal of Rural Studies,Japanese Association for Rural Studies,18824560|21872627 +Journal of Rural Studies(1994),Japanese Association for Rural Studies,13408240| +Journal of Russian and East European Psychology,Informa UK (Taylor & Francis),10610405|15580415 +Journal of Russian Laser Research,Springer-Verlag,10712836|15738760 +Journal of Russian Law,Infra-M Academic Publishing House,16056590| +Journal of Safety Engineering,Scientific and Academic Publishing,23250003| +Journal of Safety Research,Elsevier ,00224375| +Journal of Safety Studies,"""Macrothink Institute, Inc.""",23773219 +Journal of SAFOG with DVD,Jaypee Brothers Medical Publishing,09748938|09751920 +Journal of Sandwich Structures and Materials,SAGE Publications,10996362|15307972 +Journal of Sasang Constitutional Medicine,The Society of Sasang Constitutional Medicine,12264075| +Journal of Saudi Chemical Society,Elsevier ,13196103| +Journal of Scandinavian Cinema,Intellect,20427891|20427905 +Journal of Scandinavian Studies in Criminology and Crime Prevention,Informa UK (Taylor & Francis),14043858|16512340 +Journal of Scanning Probe Microscopy,American Scientific Publishers,15577937|15577945 +Journal of Scheduling,Springer-Verlag,10946136|10991425 +Journal of Scholarly Publishing,University of Toronto Press Inc,11989742|17101166 +Journal of School Choice,Informa UK (Taylor & Francis),15582159|15582167 +Journal of School Health,Wiley Blackwell (Blackwell Publishing),00224391|17461561 +Journal of School Psychology,Elsevier ,00224405| +Journal of School Social Work,The Korean Society of School Social Work,19751567| +Journal of School Violence,Informa UK (Taylor & Francis),15388220|15388239 +Journal of science and education,OLIMP,23128089| +Journal of Science and Medicine in Sport,Elsevier ,14402440| +Journal of Science and Sustainable Development,African Journals Online ,20701748|20701748 +Journal of Science and Technology,"""Publishing House for Science and Technology Vietnam, Vietnam Academy of Science and Technology""",0866708X|0866708X +Journal of Science and Technology (Ghana),African Journals Online ,8550395 +Journal of Science and Technology (Zambia),African Journals Online ,10274928 +Journal of Science and Technology of the Arts,"""Escola das Artes, Universidade Catolica Portuguesa""",16469798|16469798 +Journal of Science and Technology Policy in China,Emerald (MCB UP ),1758552X| +Journal of Science and Technology Policy Management,Emerald (MCB UP ),20534620| +Journal of Science Education and Technology,Springer-Verlag,10590145|15731839 +Journal of Science Education for Students with Disabilities,Wallace Center,19409923 +Journal of Science Educational Science,"""Journal of Science, Hanoi National University of Education""",23541075| +Journal of Science Foundation,Bangladesh Journals Online,17287855| +Journal of Science Humanities and Arts - JOSHA,"""JOSHA, GmbH""",23640626 +Journal of Science Natural Science,"""Journal of Science, Hanoi National University of Education""",23541059| +Journal of Science of the Gen Tadeusz Kosciuszko Military Academy of Land Forces,Index Copernicus International,17318157|23000090 +Journal of Science of the University of Kelaniya Sri Lanka,Sri Lanka Journals Online ,13919210| +Journal of Science Social Science,"""Journal of Science, Hanoi National University of Education""",23541067| +Journal of Science Teacher Education,Springer-Verlag,1046560X|15731847 +Journal of Science Technology and Environment Informatics,Journal BiNET,24097632 +Journal of Sciences of the Earth,"""Publishing House for Science and Technology Vietnam, Vietnam Academy of Science and Technology""",08667187|08667187 +Journal of Scientific Computing,Springer-Verlag,08857474|15737691 +Journal of Scientific Conference Proceedings,American Scientific Publishers,19376456|19376464 +Journal of Scientific Instruments,IOP Publishing,09507671| +Journal of Scientific Research,Bangladesh Journals Online,20700237|20700245 +Journal of Scientific Research and Reports,Sciencedomain International,23200227 +Journal of Scientometric Research,Medknow Publications,23200057|23200057 +Journal of Scleroderma and Related Disorders,"""Wichtig Publishing, SRL""",23971983| +Journal of Scottish Historical Studies,Edinburgh University Press,1748538X|17551749 +Journal of Scottish Philosophy,Edinburgh University Press,14796651|17552001 +Journal of Screenwriting,Intellect,17597137|17597145 +Journal of Sea Research,Elsevier ,13851101| +Journal of Second Language Pronunciation,John Benjamins Publishing Company,22151931|2215194X +Journal of Second Language Teaching and Research,University of Central Lancashire,20454031 +Journal of Second Language Writing,Elsevier ,10603743| +Journal of Security and Safety Technology,Hans Publishers,23304677|23304685 +Journal of Security and Sustainability Issues,Entrepreneurship and Sustainability Center,20297017|20297025 +Journal of Security Education,Informa UK (Taylor & Francis),15507890|15507904 +Journal of Security Engineering,Science and Engineering Research Support Society,17387531|17387531 +Journal of Sedimentary Environments,Universidade do Estado do Rio de Janeiro UERJ,24479462 +Journal of Sedimentary Research,Society for Sedimentary Geology,15271404| +Journal of Seed Science,SciELO,23171537| +Journal of Seed Science,SciELO,23171537|23171545 +Journal of Segmentation in Marketing,Informa UK (Taylor & Francis),10911340| +Journal of Seismology,Springer-Verlag,13834649|1573157X +Journal of Self-Assembly and Molecular Electronics (SAME),River Publishers,22454551| +Journal of Semantics,Oxford University Press,01675133|14774593 +Journal of Semiconductors,IOP Publishing,16744926| +Journal of Semitic Studies,Oxford University Press,00224480|14778556 +Journal of Sensor and Actuator Networks,MDPI AG,22242708 +Journal of Sensor Science and Technology,The Korean Sensors Society,12255475| +Journal of Sensor Technology,"""Scientific Research Publishing, Inc.""",2161122X|21611238 +Journal of Sensor Technology and Application,Hans Publishers,23310235|23310243 +Journal of Sensors,Hindawi Publishing Corporation,1687725X|16877268 +Journal of Sensors and Instrumentation,Columbia International Publishing,21629706 +Journal of Sensors and Sensor Systems,Copernicus GmbH,2194878X +Journal of Sensory Studies,Wiley Blackwell (Blackwell Publishing),08878250|1745459X +Journal of Separation Science,Wiley Blackwell (John Wiley & Sons),16159306|16159314 +Journal of Sericultural and Entomological Science,Korean Society of Sericultural Science,22348174| +Journal of Service Management,Emerald (MCB UP ),17575818| +Journal of Service Research,SAGE Publications,10946705|00000000 +Journal of Service Research and Studies,The Society of Service Science,22342850| +Journal of Service Science,Springer-Verlag,20053274|20925204 +Journal of Service Science (JSS),Clute Institute,19414722|19414730 +Journal of Service Science and Management,"""Scientific Research Publishing, Inc.""",19409893|19409907 +Journal of Service Science Research,Springer-Verlag,20930720|20930739 +Journal of Service Theory and Practice,Emerald (MCB UP ),20556225| +Journal of Services Marketing,Emerald (MCB UP ),08876045|00000000 +Journal of Severance Union Medical College,Yonsei University College of Medicine (KAMJE),03684415|23844159 +Journal of Sex & Marital Therapy,Informa UK (Taylor & Francis),0092623X|15210715 +Journal of Sex Education and Therapy,Informa UK (Taylor & Francis),01614576| +Journal of Sexual Aggression,Informa UK (Taylor & Francis),13552600|17426545 +Journal of Sexual Medicine,Elsevier ,17436095|17436109 +Journal of Sexually Transmitted Diseases,Hindawi Publishing Corporation,20907893|20907958 +Journal of Shaheed Suhrawardy Medical College,Bangladesh Journals Online,22265368| +Journal of Shanghai Jiaotong University (Science),Springer-Verlag,10071172|19958188 +Journal of Shanghai University (English Edition),Springer-Verlag,10076417|1863236X +Journal of Shellfish Research,BioOne (National Shellfisheries Association),07308000|19436319 +JOURNAL OF SHENZHEN UNIVERSITY SCIENCE AND ENGINEERING,China Science Publishing & Media Ltd.,10002618| +Journal of Shi a Islamic Studies,Muse - Johns Hopkins University Press,2051557X +Journal of Ship Production and Design,The Society of Naval Architects and Marine Engineers,21582866|21582874 +Journal of Ship Research,The Society of Naval Architects and Marine Engineers,00224502|15420604 +Journal of Shipping and Ocean Engineering,David Publishing Company,21595879|21595887 +Journal of SHM,Japan Institute of Electronics Packaging,09194398|18841198 +Journal of Shoulder and Elbow Surgery,Elsevier ,10582746| +Journal of Siberian Federal University Biology,Siberian Federal University,19971389|23135530 +Journal of Siberian Federal University Chemistry,Siberian Federal University,19982836|23136049 +Journal of Siberian Federal University Engineering & Technologies,Siberian Federal University,1999494X|23136057 +Journal of Siberian Federal University Humanities & Social Sciences,Siberian Federal University,19971370|23136014 +Journal of Siberian Federal University Mathematics & Physics,Siberian Federal University,19971397|23136022 +Journal of Signal and Image Processing,Bioinfo Publications,09768882|09768890 +Journal of Signal and Information Processing,"""Scientific Research Publishing, Inc.""",21594465|21594481 +Journal of Signal Processing,Research Institute of Signal Processing,13426230|18801013 +Journal of Signal Processing Systems,Springer-Verlag,19398018|19398115 +Journal of Signal Processing Systems,Springer-Verlag,19398018|19398115 +Journal of Signal Processing Systems,Springer-Verlag,19398018|19398115 +Journal of Signal Processing Theory and Applications,Columbia International Publishing,21632286 +Journal of Signal Transduction,Hindawi Publishing Corporation,20901739|20901747 +Journal of Simulation,Nature Publishing Group - Macmillan Publishers,17477778|17747786 +Journal of Single Molecule Research,Sciknow Publications,23318082 +Journal of Singularities,Journal of Singularities,19492006|19492006 +Journal of Skin and Stem Cell,International Neuroscience Institute,24237086 +Journal of Skin Cancer,Hindawi Publishing Corporation,20902905|20902913 +Journal of Skyscape Archaeology,Equinox Publishing,2055348X|20553498 +Journal of Slavic Linguistics,Muse - Johns Hopkins University Press,15430391 +Journal of Sleep Disorders & Therapy,OMICS Publishing Group,21670277 +Journal of Sleep Disorders Treatment & Care,OMICS Publishing Group,23259639 +Journal of Sleep Medicine,Korean Sleep Society,23842423|23842431 +Journal of Sleep Research,Wiley Blackwell (Blackwell Publishing),09621105|13652869 +Journal of Small Animal Practice,Wiley Blackwell (Blackwell Publishing),00224510|17485827 +Journal of Small Business & Entrepreneurship,Informa UK (Taylor & Francis),08276331|21692610 +Journal of Small Business - Canada,Informa UK (Taylor & Francis),0820957X| +Journal of Small Business and Enterprise Development,Emerald (MCB UP ),14626004|00000000 +Journal of Small Business and Entrepreneurship Development,American Research Institute for Policy Development,23336374|23336382 +Journal of Small Business Management,Wiley Blackwell (Blackwell Publishing),04472778|1540627X +Journal of Small Fruit & Viticulture,Informa UK (Taylor & Francis),10520015| +Journal of Smart Cities,Whioce Publishing Pte Ltd.,2382641X|23826401 +Journal of Smart Processing,"""Sumart Processing Society for Materials, Environment and Energy""",2186702X|21871337 +Journal of Smooth Muscle Research,Japan Society of Smooth Muscle Research,09168737|18848796 +Journal of smooth muscle research Japanese section,Japan Society of Smooth Muscle Research,13428152|1884877X +Journal of Snow Engineering of Japan,Japan Society for Snow Engineering,09133526|18824358 +Journal of Social and Biological Systems,Elsevier ,01401750| +Journal of Social and Clinical Psychology,Guilford Publications,07367236| +Journal of Social and Economic Development,Springer-Verlag,09725792|21996873 +Journal of Social and Evolutionary Systems,Elsevier ,10617361| +Journal of Social and Personal Relationships,SAGE Publications,02654075|00000000 +Journal of Social and Political Psychology,Leibniz Institute for Psychology Information,21953325 +Journal of Social Archaeology,SAGE Publications,14696053|00000000 +Journal of Social Development in Africa,African Journals Online ,10121080 +Journal of Social Distress and the Homeless,Maney Publishing,10530789|1573658X +Journal of Social Economics Research,Pak Publishing Group,23126329|23126264 +Journal of Social Entrepreneurship,Informa UK (Taylor & Francis),19420676|19420684 +Journal of Social Evolutionary and Cultural Psychology,American Psychological Association,19335377 +Journal of Social Forces,JSTOR,15321282| +Journal of Social Health and Diabetes,Medknow Publications,23210656| +Journal of Social History,Oxford University Press,00224529|15271897 +Journal of Social Intervention Theory and Practice,Uopen Journals,18768830 +Journal of Social Issues,Wiley Blackwell (Blackwell Publishing),00224537|15404560 +Journal of Social Issues in Southeast Asia,Institute of Southeast Asian Studies,02179520| +Journal of Social Marketing,Emerald (MCB UP ),20426763| +Journal of Social Media Studies,Macro World Publishing,21473366|21487502 +Journal of Social Ontology,Walter de Gruyter GmbH,21969655|21969663 +Journal of Social Philosophy,Wiley Blackwell (Blackwell Publishing),00472786|14679833 +Journal of Social Philosophy Research,Sciknow Publications,23724579 +Journal of Social Policy,Cambridge University Press,00472794|14697823 +Journal of Social Policy and Social Work in Transition,Whiting & Birch Ltd,19878710|20498330 +Journal of Social Science,Research Institute of Social Science,12267546| +Journal of Social Science,"""Institute of Social Sciences, Chungnam National University""",19762984| +Journal of Social Science for Policy Implications,American Research Institute for Policy Development,23342900|23342919 +Journal of Social Science Studies,"""Macrothink Institute, Inc.""",23299150 +Journal of Social Sciences,Science Publications,15493652| +Journal of Social Service Research,Informa UK (Taylor & Francis),01488376|15407314 +Journal of Social Studies Education Research,Journal of Social Studies Education Research,13099108 +Journal of Social Welfare and Family Law,Informa UK (Taylor & Francis),09649069|14699621 +Journal of Social Welfare and Human Rights,American Research Institute for Policy Development,23335920|23335939 +Journal of Social Work,SAGE Publications,14680173|00000000 +Journal of Social Work & Human Sexuality,"""Informa UK (Haworth Press, Inc.,)""",02763850| +Journal of Social Work Education,Council on Social Work Education,10437797| +Journal of Social Work in Disability & Rehabilitation,Informa UK (Taylor & Francis),1536710X|15367118 +Journal of Social Work in End-of-Life & Palliative Care,Informa UK (Taylor & Francis),15524256|15524264 +Journal of Social Work in Long-Term Care,Informa UK (Taylor & Francis),15332624|15332632 +Journal of Social Work Practice,Informa UK (Taylor & Francis),02650533|14653885 +Journal of Social Work Practice in the Addictions,Informa UK (Taylor & Francis),1533256X|15332578 +Journal of Socialomics,OMICS Publishing Group,21670358 +Journal of Society for Korean Bronze Culture,Society for Korean Bronze Culture,19768338| +Journal of Society of Anesthesiologists of Nepal,Nepal Journals Online,23621281|24679119 +Journal of Society of Cosmetic Chemists of Japan,Society of Cosmetic Chemists of Japan,03875253|18844146 +Journal of Society of Korea Industrial and Systems Engineering,The Society of Korea Industrial and Systems Engineering,20050461|22877975 +Journal of Sociolinguistics,Wiley Blackwell (Blackwell Publishing),13606441|14679841 +Journal of Sociological Research,"""Macrothink Institute, Inc.""",19485468 +Journal of Sociology,SAGE Publications,00048690|17412978 +Journal of Sociology and Social Work,American Research Institute for Policy Development,23335807|23335815 +Journal of Soft Computing and Applications,ISPACS GmbH,2195576X +Journal of Soft Matter,Hindawi Publishing Corporation,23567627|23146818 +Journal of Software,International Academy Publishing (IAP),1796217X|1796217X +Journal of Software,China Science Publishing & Media Ltd.,10009825| +Journal of Software & Systems Development,IBIMA Publishing,21660824 +Journal of Software Engineering,Science Alert,18194311| +Journal of Software Engineering and Applications,"""Scientific Research Publishing, Inc.""",19453116|19453124 +Journal of Software Engineering Research and Development,Springer (Biomed Central Ltd.),21951721|21951721 +Journal of Software Engineering Theories and Practices,Sanford Inter-Science Press,23773316 +Journal of Software Evolution and Process,Wiley Blackwell (John Wiley & Sons),20477473| +Journal of Software for Algebra and Geometry,Mathematical Sciences Publishers,19487916|19487916 +Journal of Software Maintenance and Evolution Research and Practice,Wiley Blackwell (John Wiley & Sons),1532060X|15320618 +Journal of Software Maintenance Research and Practice,Wiley Blackwell (John Wiley & Sons),1040550X|1096908X +Journal of Soil and Groundwater Environment,Korean Society of Soil and Groundwater Environment,15986438| +Journal of Soil and Water Conservation,Soil and Water Conservation Society,00224561|19413300 +Journal of Soil Contamination,Informa UK (Taylor & Francis),10588337| +Journal of Soil Science,Wiley Blackwell (Blackwell Publishing),00224588| +Journal of Soil Science and Environmental Management,Academic Journals,21412391 +Journal of soil science and plant nutrition,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7189516 +Journal of Soils and Sediments,Springer-Verlag,14390108|16147480 +Journal of Sol-Gel Science and Technology,Springer-Verlag,09280707|15734846 +Journal of Solar Energy,Hindawi Publishing Corporation,23567635|23146230 +Journal of Solar Energy Engineering,ASME International ,01996231| +Journal of Solar Energy Research Updates,Avanti Publishers,24102199 +Journal of Solid Mechanics and Materials Engineering,The Japan Society of Mechanical Engineers,18809871 +Journal of Solid State Chemistry,Elsevier ,00224596|1095726X +Journal of Solid State Electrochemistry,Springer-Verlag,14328488|14330768 +Journal of Solid State Lighting,Springer (Biomed Central Ltd.),21961107|21961107 +Journal of Solid State Physics,Hindawi Publishing Corporation,23567643|23146842 +Journal of Solid Tumors,Sciedu Press,19254067|19254075 +Journal of Solid-Phase Biochemistry,Springer-Verlag,01460641| +Journal of Solution Chemistry,Springer-Verlag,00959782|15728927 +Journal of Song-Yuan Studies,Muse - Johns Hopkins University Press,21546665 +Journal of Sound and Vibration,Elsevier ,0022460X|10958568 +Journal of South African Business Research,IBIMA Publishing,23788739 +Journal of South American Earth Sciences,Elsevier ,08959811| +Journal of South Asian Development,SAGE Publications,09731741|09731733 +Journal of South Asian Languages and Linguistics,Walter de Gruyter GmbH,21960771|2196078X +Journal of Southeast Asian American Education and Advancement,Purdue University (bepress),21538999 +Journal of Southeast Asian History,Cambridge University Press,02177811| +Journal of Southeast Asian Research,IBIMA Publishing,21660832 +Journal of Southeast Asian Studies,Cambridge University Press,00224634|14740680 +Journal of Southeast European and Black Sea Studies,Informa UK (Taylor & Francis),14683857|17439639 +Journal of Southern African Studies,Informa UK (Taylor & Francis),03057070|14653893 +Journal of Southern Europe and the Balkans,Informa UK (Taylor & Francis),14613190|1469963X +Journal of Soviet Laser Research,Springer-Verlag,02702010| +Journal of Soviet Mathematics,Springer-Verlag,00904104| +Journal of Space and Communication,Macro World Publishing,21481725| +Journal of Space Engineering,The Japan Society of Mechanical Engineers,1881736X +Journal of Space Weather and Space Climate,EDP Sciences,21157251 +Journal of Spacecraft and Rockets,American Institute of Aeronautics and Astronautics,00224650|15336794 +Journal of Spanish Cultural Studies,Informa UK (Taylor & Francis),14636204|14699818 +Journal of Spanish Language Teaching,Informa UK (Taylor & Francis),23247797|23247800 +Journal of Spatial Information Science,Journal of Spatial Information Science ,1948660X +Journal of Spatial Science,Informa UK (Taylor & Francis),14498596|18365655 +JOURNAL OF SPECIAL EDUCATION & REHABILITATION SCIENCE,The Research Institute for Special Education and Rehabilitation Science,17387205| +Journal of Special Education and Rehabilitation,"""Al Manhal FZ, LLC""",23148608| +Journal of Special Education and Rehabilitation,Journal of Special Education and Rehabilitation,14096099|1857663X +Journal of Special Education Research,The Japanese Association of Special Education,21875014|21884838 +Journal of Special Education Technology,SAGE Publications,01626434|23813121 +Journal of Special Education Theory and Practice,Daegu University Research Institute of the Korea Special Education,1598060X| +Journal of Species Research,The National Institute of Biological Resources,22347909| +Journal of Spectral Imaging,IM Publications,20404565| +Journal of Spectral Theory,European Mathematical Society Publishing House,1664039X| +Journal of Spectroscopy,Hindawi Publishing Corporation,23144920|23144939 +Journal of speech & hearing disorders,Korean Speech-Language and Hearing,1226587X| +Journal of Speech and Hearing Disorders,American Speech-Language-Hearing Association,00224677|21636184 +Journal of Speech and Hearing Research,American Speech-Language-Hearing Association,00224685| +Journal of Speech Communication,The Korean Association of Speech Communication,15989542| +Journal of Speech Disorders,American Speech-Language-Hearing Association,08859426| +Journal of Speech Language and Hearing Research,American Speech-Language-Hearing Association,10924388|15589102 +Journal of Spinal Cord Medicine,Maney Publishing,10790268|20457723 +Journal of Spinal Disorders,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,08950385| +Journal of Spinal Disorders & Techniques,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15360652| +Journal of Spine,OMICS Publishing Group,21657939 +Journal of Spine & Neurosurgery,OMICS Publishing Group,23259701 +Journal of Spine Surgery,AME Publishing Company,2414469X|24144630 +Journal of Spintronics and Magnetic Nanomaterials,American Scientific Publishers,2158866X|21588678 +Journal of Spirituality in Mental Health,Informa UK (Taylor & Francis),19349637|19349645 +Journal of Spirituality Leadership and Management,"""Spirituality, Leadership and Management, Inc.""",14473771|14473771 +Journal of Sport & Social Issues,SAGE Publications,01937235|15527638 +Journal of Sport and Exercise Psychology,Human Kinetics,08952779| +Journal of Sport and Health,Common Ground Publishing,23817070|23817097 +Journal of Sport and Health Science,Elsevier ,20952546| +Journal of Sport and Human Performance,Human Performance Corsortium,23266333 +Journal of Sport Management,Human Kinetics,08884773|1543270X +Journal of Sport Psychology in Action,Informa UK (Taylor & Francis),21520704|21520712 +Journal of Sport Rehabilitation,Human Kinetics,10566716|15433072 +Journal of Sport Tourism,Informa UK (Taylor & Francis),14775085|10295399 +Journal of Sporting Cultures and Identities,Common Ground Publishing,23816678|23816694 +Journal of Sports Analytics,IOS Press,2215020X|22150218 +Journal of Sports Economics,SAGE Publications,15270025|00000000 +Journal of Sports Management and Commercialization,Common Ground Publishing,23816937|23816961 +Journal of Sports Media,Muse - Johns Hopkins University Press,19405073 +Journal of Sports Medicine,Hindawi Publishing Corporation,23567651|23146176 +Journal of Sports Medicine & Doping Studies,OMICS Publishing Group,21610673|21610673 +Journal of Sports Pedagogy and Physical Education,Common Ground Publishing,23817100|23817119 +Journal of Sports Research,Pak Publishing Group,24138436|24106534 +Journal of Sports Science,David Publishing Company,23327839|23327839 +Journal of Sports Sciences,Informa UK (Taylor & Francis),02640414|1466447X +Journal of St Marianna University,Marianna University Society of Medical Science,21851336|21890277 +Journal of Statistical Computation and Simulation,Informa UK (Taylor & Francis),00949655|15635163 +Journal of Statistical Distributions and Applications,Springer (Biomed Central Ltd.),21955832|21955832 +Journal of Statistical Mechanics Theory and Experiment,IOP Publishing,17425468 +Journal of Statistical Physics,Springer-Verlag,00224715|15729613 +Journal of Statistical Planning and Inference,Elsevier ,03783758| +Journal of Statistical Science and Application,David Publishing Company,2328224X|2328224X +Journal of Statistical Software,Foundation for Open Access Statistic,15487660 +Journal of Statistical Theory and Applications,Atlantis Press,15387887| +Journal of Statistical Theory and Practice,Informa UK (Taylor & Francis),15598608|15598616 +Journal of Statistics Advances in Theory and Applications,Scientific Advances Publishers,9751262 +Journal of Statistics and Management Systems,Informa UK (Taylor & Francis),09720510|21690014 +Journal of Statistics and Mathematics,Bioinfo Publications,09768807|09768815 +Journal of Statistics Applications & Probability,Natural Sciences Publishing,20908423|20908431 +Journal of Statistics Applications & Probability Letters,Natural Sciences Publishing,2090844X|20908458 +Journal of Stem Cell and Regenerative Biology,Ommega Online Publishers,24710598 +Journal of Stem Cell and Transplantation Biology,Elyns Group LLC,24695157 +Journal of Stem Cell Research & Therapy,OMICS Publishing Group,21577633|21577633 +Journal of Steroid Biochemistry,Elsevier ,00224731| +Journal of Steroids & Hormonal Science,OMICS Publishing Group,21577536 +Journal of Stochastics,Hindawi Publishing Corporation,23567988|23148365 +Journal of Stock & Forex Trading,OMICS Publishing Group,21689458 +Journal of Stomatology (Czasopismo Stomatologiczne),Index Copernicus International,00114553|2299551X +Journal of Stored Products and Postharvest Research,Academic Journals,21412510 +Journal of Stored Products Research,Elsevier ,0022474X| +Journal of Strategic Contracting and Negotiation,SAGE Publications,20555636|20555644 +Journal of Strategic Management,Korean Society of Strategic Management,12268437| +Journal of Strategic Marketing,Informa UK (Taylor & Francis),0965254X|14664488 +Journal of Strategic Security,University of South Florida Libraries,19440464|19440472 +Journal of Strategic Studies,Informa UK (Taylor & Francis),01402390|1743937X +Journal of Strategy and Management,Emerald (MCB UP ),1755425X| +Journal of Strategy and Management,Emerald (MCB UP ),1755425X| +Journal of Stroke,Korean Stroke Society,22876391|22876405 +Journal of Stroke and Cerebrovascular Diseases,Elsevier ,10523057| +Journal of Structural and Construction Engineering (Transactions of AIJ),Architectural Institute of Japan,13404202|18818153 +Journal of Structural and Functional Genomics,Springer-Verlag,1345711X|15700267 +Journal of Structural Biology,Elsevier ,10478477|10958657 +Journal of Structural Chemistry,Springer-Verlag,00224766|15738779 +Journal of Structural Control,Wiley Blackwell (John Wiley & Sons),11228385|1538523X +Journal of Structural Engineering,American Society of Civil Engineers,07339445|1943541X +Journal of Structural Fire Engineering,Multiscience,20402317| +Journal of Structural Geology,Elsevier ,01918141| +Journal of Structural Heart Disease,Science International Corporation,23264004 +Journal of Structural Mechanics,Informa UK (Taylor & Francis),03601218| +Journal of Structures,Hindawi Publishing Corporation,2356766X|23146494 +Journal of Student Affairs in Africa,University of the Western Cape Library Service,23076267|23076267 +Journal of Student Affairs Research and Practice,Informa UK (Taylor & Francis),19496591|19496605 +Journal of Student Science and Technology,Journal of Student Science and Technology,19131925|22916954 +Journal of Studies in Education,"""Macrothink Institute, Inc.""",21626952 +Journal of Studies in International Education,SAGE Publications,10283153|00000000 +Journal of Studies on Alcohol,"""Alcohol Research Documentation, Inc.""",0096882X|19342683 +Journal of Studies on Alcohol and Drugs,"""Alcohol Research Documentation, Inc.""",19371888|19384114 +Journal of Studies on Alcohol and Drugs Supplement,"""Alcohol Research Documentation, Inc.""",1946584X|19465858 +Journal of Studies on Alcohol Supplement,"""Alcohol Research Documentation, Inc.""",0363468X|19466005 +Journal of Studies on Korean National Movement,The Association for the Historical Studies on Korean National Movement,12269980| +Journal of Substance Abuse,Elsevier ,08993289| +Journal of Substance Abuse Treatment,Elsevier ,07405472| +Journal of Substance Misuse,Informa UK (Taylor & Francis),13575007| +Journal of Substance Use,Informa UK (Taylor & Francis),14659891|14759942 +Journal of Sufi Studies,Brill Academic Publishers,22105948|22105956 +Journal of Sugarbeet Research,American Society of Sugarbeet Technologist,08991502| +Journal of Sulfur Chemistry,Informa UK (Taylor & Francis),17415993|17416000 +Journal of Superconductivity,Springer-Verlag,08961107|15729605 +Journal of Superconductivity and Novel Magnetism,Springer-Verlag,15571939|15571947 +Journal of Superhard Materials,Allerton Press,10634576|19349408 +Journal of Supply Chain and Customer Relationship Management,IBIMA Publishing,23267046 +Journal of Supply Chain Management,Wiley Blackwell (Blackwell Publishing),15232409|1745493X +Journal of Supramolecular Chemistry,Elsevier ,14727862| +Journal of Supramolecular Structure,Wiley Blackwell (John Wiley & Sons),00917419|15479366 +Journal of Supramolecular Structure and Cellular Biochemistry,Wiley Blackwell (John Wiley & Sons),02753723|15471748 +Journal of Supreme Court History,Wiley Blackwell (Blackwell Publishing),10594329|15405818 +Journal of Surface Analysis,The Surface Analysis Society of Japan,13411756|13478400 +Journal of Surface Engineered Materials and Advanced Technology,"""Scientific Research Publishing, Inc.""",21614881|2161489X +Journal of Surface Investigation X-ray Synchrotron and Neutron Techniques,Pleiades Publishing,10274510|18197094 +Journal of Surfaces and Interfaces of Materials,American Scientific Publishers,21647542| +Journal of Surfactants and Detergents,Springer-Verlag,10973958|15589293 +Journal of Surgery,Avens Publishing Group,23324139|23324139 +Journal of Surgery,Science Publishing Group,23300914| +Journal of Surgery and Operative Care,"""Annex Publishers, LLC""",24557617 +Journal of Surgery and Surgical Research,Peertechz.com,24552968 +Journal of Surgery Open Access ( ISSN 2470-0991 ),"""Sci Forschen, Inc.""",24700991 +JOURNAL OF SURGICAL AND CLINICAL RESEARCH,Journal of Surgical and Clinical Research,21797889 +Journal of Surgical Arts,Journal of Surgical Arts,13080709|13080709 +Journal of Surgical Case Reports,Oxford University Press,20428812 +Journal of Surgical Education,Elsevier ,19317204| +Journal of Surgical Oncology,Wiley Blackwell (John Wiley & Sons),00224790|10969098 +Journal of Surgical Orthopaedic Advances,Data Trace Publishing Company,1548825X| +Journal of Surgical Radiology,Surgisphere Corporation,2156213X| +Journal of Surgical Research,Elsevier ,00224804|10958673 +Journal of Surgical Research Updates,Synergy Publishers,23112816 +Journal of Surgical Sciences,Bangladesh Journals Online,17282152| +Journal of Surgical Simulation,E-MED LTD.,20517726 +Journal of Surgical Technique and Case Report,Medknow Publications,20068808| +Journal of Survey Statistics and Methodology,Oxford University Press,23250984|23250992 +Journal of Surveying Engineering,American Society of Civil Engineers,07339453|19435428 +Journal of Sustainability Management (JSM),Clute Institute,23306866|23306874 +Journal of Sustainable Agriculture,Informa UK (Taylor & Francis),10440046|15407578 +Journal of Sustainable Architecture and Civil Engineering,Publishing House Technologija,20299990| +Journal of Sustainable Bioenergy Systems,"""Scientific Research Publishing, Inc.""",2165400X|21654018 +Journal of Sustainable Cement-Based Materials,Informa UK (Taylor & Francis),21650373|21650381 +Journal of Sustainable Development,Canadian Center of Science and Education,19139063|19139071 +Journal of Sustainable Development Law and Policy (The),African Journals Online ,24678406|24678392 +Journal of Sustainable Development of Energy Water and Environment Systems,International Centre for Sustainable Development of Water,18489257 +Journal of Sustainable Energy Engineering,Scrivener Publishing,21646287|21646295 +Journal of Sustainable Finance & Investment,Informa UK (Taylor & Francis),20430795|20430809 +Journal of Sustainable Forestry,Informa UK (Taylor & Francis),10549811|1540756X +Journal of Sustainable Metallurgy,Springer-Verlag,21993823|21993831 +Journal of Sustainable Mining,Elsevier ,23003960| +Journal of Sustainable Society,World Scholars,21682585|21682593 +Journal of Sustainable Tourism,Informa UK (Taylor & Francis),09669582|17477646 +Journal of Sustainable Water in the Built Environment,American Society of Civil Engineers,23796111 +Journal of Sustainable Watershed Science and Management,"""Atlas Scienfitic Publishing, LP""",19491425 +Journal of Symbolic Computation,Elsevier ,07477171|1095855X +Journal of Symbolic Logic,Cambridge University Press,00224812|19435886 +Journal of Symbols & Sandplay Therapy,Korean Society of Sandplay Therapy,22340556|22885188 +Journal of Symplectic Geometry,"""International Press of Boston, Inc.""",15275256|15402347 +Journal of Synchrotron Radiation,International Union of Crystallography,09090495|16005775 +Journal of Syndromes,Avens Publishing Group,23806036 +Journal of Synthetic Biology,Hindawi Publishing Corporation,23145145|23145153 +Journal of Synthetic Lubrication,Wiley Blackwell (John Wiley & Sons),02656582|15576841 +Journal of Synthetic Organic Chemistry Japan,"""The Society of Synthetic Organic Chemistry, Japan""",00379980|18836526 +Journal of System Design and Dynamics,The Japan Society of Mechanical Engineers,18813046 +Journal of Systematic Palaeontology,Informa UK (Taylor & Francis),14772019|14780941 +Journal of Systematics and Evolution,Wiley Blackwell (Blackwell Publishing),16744918|17596831 +Journal of Systemic Therapies,Guilford Publications,11954396| +Journal of Systems and Information Technology,Emerald (MCB UP ),13287265| +Journal of Systems and Information Technology,Emerald (MCB UP ),13287265| +Journal of Systems and Software,Elsevier ,01641212| +Journal of Systems Architecture,Elsevier ,13837621| +Journal of Systems Chemistry,Springer (Biomed Central Ltd.),17592208|17592208 +Journal of Systems Engineering and Electronics,Institute of Electrical and Electronics Engineers,10044132|10044132 +Journal of Systems Integration,Springer-Verlag,09254676|15738787 +Journal of Systems Science and Complexity,Springer-Verlag,10096124|15597067 +Journal of Systems Science and Systems Engineering,Springer-Verlag,10043756|18619576 +Journal of Taibah University Arts and Humanities,"""Al Manhal FZ, LLC""",16586662| +Journal of Taibah University for Science,Elsevier ,16583655| +Journal of Taibah University Medical Sciences,Elsevier ,16583612| +Journal of Targeting Measurement and Analysis for Marketing,Nature Publishing Group - Macmillan Publishers,09673237|14791862 +Journal of Tea Science Research,"""Sophia Publishing Group, Inc.""",19276494 +Journal of Teacher Education,SAGE Publications,00224871|00000000 +Journal of Teacher Education and Research,Diva Enterprises Private Limited,09748210|24541664 +Journal of Teacher Education for Sustainability,De Gruyter Open Sp. z o.o. ,16914147|16915534 +Journal of Teaching and Learning with Technology,IUScholarWorks,21652554|21652554 +Journal of Teaching and Teacher Education,Scientific Publishing Center,22101578| +Journal of Teaching in International Business,Informa UK (Taylor & Francis),08975930|15286991 +Journal of Teaching in Marriage & Family,Informa UK (Taylor & Francis),15350762|15350819 +Journal of Teaching in Physical Education,Human Kinetics,02735024| +Journal of Teaching in Social Work,Informa UK (Taylor & Francis),08841233|15407349 +Journal of Teaching in the Addictions,Informa UK (Taylor & Francis),15332705|15332713 +Journal of Teaching in Travel & Tourism,Informa UK (Taylor & Francis),15313220|15313239 +Journal of Technical Writing and Communication,SAGE Publications,00472816|15413780 +Journal of Technological Advances and Scientific Research,Akshantala Enterprises,23955600|24541788 +Journal of Technologies and Human Usability,Common Ground Publishing,23819227|2381926X +Journal of Technologies in Education,Common Ground Publishing,23819243|23819286 +Journal of Technologies in Knowledge Sharing,Common Ground Publishing,23819235|23819278 +Journal of Technologies in Society,Common Ground Publishing,23819251|23819294 +Journal of Technology and Education in Nigeria,African Journals Online ,11185570 +Journal of Technology and Information,Palacky University Olomouc,1803537X|18036805 +Journal of Technology and Science Education,Omnia Publisher SL,20136374 +Journal of Technology Computer Aided Design TCAD,Institute of Electrical and Electronics Engineers,10972102 +Journal of Technology in Human Services,Informa UK (Taylor & Francis),15228835|15228991 +Journal of Technology Innovations in Renewable Energy,Lifescience Global,19296002 +Journal of technology management & innovation,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7182724 +Journal of Technology Management in China,Emerald (MCB UP ),17468779| +Journal of Technology Research and Review,Nepal Journals Online,23508825 +Journal of Telecommunications System & Management,OMICS Publishing Group,21670919 +Journal of Telematics and Informatics,Universitas Ahmad Dahlan ,23033711|23033703 +Journal of Telemedicine and Telecare,SAGE Publications,1357633X|17581109 +Journal of Terramechanics,Elsevier ,00224898| +Journal of Terrorism Research,University of St. Andrews Library,20497040 +Journal of Tertiary Education Administration,Informa UK (Taylor & Francis),10369708| +Journal of Test Deposits,CrossRef test user,10468986| +Journal of Test Deposits the sequel,CrossRef test user, +Journal of Test Deposits Title Change,CrossRef test user,1806275X| +Journal of Testing and Evaluation,ASTM International,00903973| +Journal of Testing and Evaluation,ASTM International,00903973| +Journal of Textile Design Research and Practice,Informa UK (Taylor & Francis),20511787|20511795 +Journal of Textile Engineering,The Textile Machinery Society of Japan,13468235|18801986 +Journal of Textile Science & Engineering,OMICS Publishing Group,21658064 +Journal of Textile Science and Technology,"""Scientific Research Publishing, Inc.""",23791543|23791551 +Journal of Textiles,Hindawi Publishing Corporation,23567678|23146044 +Journal of Texture Studies,Wiley Blackwell (Blackwell Publishing),00224901|17454603 +Journal of the A I E E,Institute of Electrical and Electronics Engineers,00959804| +Journal of The Academy of Clinical Microbiologists,Medknow Publications,09721282| +Journal of the Academy of Marketing Science,Springer-Verlag,00920703|15527824 +Journal of the Academy of Nutrition and Dietetics,Elsevier ,22122672| +Journal of the Acarological Society of Japan,The Acarological Society of Japan,09181067|18802273 +Journal of the ACM,Association for Computing Machinery,00045411| +Journal of The Adhesion Society of Japan,The Adhesion Society of Japan,09164812|21874816 +Journal of the Advanced Practitioner in Oncology,"""Harborside Press, LLC""",21500878| +Journal of the Aeronautical Sciences (Institute of the Aeronautical Sciences),American Institute of Aeronautics and Astronautics,19369956 +Journal of the Aerospace Sciences,American Institute of Aeronautics and Astronautics,19369999 +Journal of the agricultural chemical society of Japan,"""Japan Society for Bioscience, Biotechnology, and Agrochemistry""",00021407|18836844 +Journal of the Air & Waste Management Association,Informa UK (Taylor & Francis),10473289| +Journal of the Air & Waste Management Association,Informa UK (Taylor & Francis),10962247|21622906 +Journal of the Air Pollution Control Association,Informa UK (Taylor & Francis),00022470| +Journal of the Alamire Foundation,"""Brepols Publishers, NV""",20325371| +Journal of the American Academy of Audiology,American Academy of Audiology,10500545|21573107 +Journal of the American Academy of Child & Adolescent Psychiatry,Elsevier ,08908567| +Journal of the American Academy of Child Psychiatry,Elsevier ,00027138| +Journal of the American Academy of Dermatology,Elsevier ,01909622| +Journal of the American Academy of Nurse Practitioners,Wiley Blackwell (Blackwell Publishing),10412972|17457599 +Journal of the American Academy of Orthopaedic Surgeons,American Academy of Orthopaedic Surgeons,1067151X| +Journal of the American Academy of Physician Assistants,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15471896| +Journal of the American Academy of Psychoanalysis and Dynamic Psychiatry,Guilford Publications,15460371| +Journal of the American Academy of Religion,Oxford University Press,00027189|14774585 +Journal of the American Animal Hospital Association,American Animal Hospital Association,05872871|15473317 +Journal of the American Association of Nurse Practitioners,Wiley Blackwell (John Wiley & Sons),23276886| +Journal of the American Association of University Teachers of Insurance,JSTOR,15354016| +Journal of the American Ceramic Society,Wiley Blackwell (Blackwell Publishing),00027820|15512916 +Journal of the American Chemical Society,American Chemical Society,00027863|15205126 +Journal of the American College of Cardiology,Elsevier ,07351097| +Journal of the American College of Clinical Wound Specialists,Elsevier ,22135103| +Journal of the American College of Emergency Physicians,Elsevier ,03611124| +Journal of the American College of Nutrition,Informa UK (Taylor & Francis),07315724|15411087 +Journal of the American College of Radiology,Elsevier ,15461440| +Journal of the American College of Surgeons,Elsevier ,10727515| +Journal of the American Dietetic Association,Elsevier ,00028223| +Journal of the American Geographical and Statistical Society,JSTOR,15360393| +Journal of the American Geographical Society of New York,JSTOR,15360407| +Journal of the American Geriatrics Society,Wiley Blackwell (Blackwell Publishing),00028614|15325415 +Journal of the American Heart Association,Ovid Technologies Wolters Kluwer -American Heart Association,20479980|20479980 +Journal of the American Helicopter Society,American Helicopter Society,00028711| +Journal of the American Helicopter Society,American Helicopter Society,21616027|21616027 +Journal of the American Institute for Conservation,Maney Publishing,01971360|19452330 +Journal of the American Institute of Criminal Law and Criminology,JSTOR,08854173| +Journal of the American Institute of Electrical Engineers,Institute of Electrical and Electronics Engineers,03606449| +Journal of the American Institute of Planners,Informa UK (Taylor & Francis),00028991| +Journal of the American Mathematical Society,American Mathematical Society,08940347|10886834 +Journal of the American Medical Association,American Medical Association,00029955| +Journal of the American Medical Directors Association,Elsevier ,15258610| +Journal of the American Medical Informatics Association,Oxford University Press,10675027|1527974X +Journal of the American Mosquito Control Association,BioOne (American Mosquito Control Association),8756971X|19436270 +Journal of the American Musicological Society,University of California Press,00030139|15473848 +Journal of the American Oil Chemists Society,Springer-Verlag,0003021X|15589331 +Journal of the American Oriental Society,American Oriental Society,00030279|00030279 +Journal of the American Pharmaceutical Association (1961),Elsevier ,00030465| +Journal of the American Pharmaceutical Association (1996),Elsevier ,10865802| +Journal of the American Pharmaceutical Association (Practical Pharmacy ed ),Elsevier ,00959561| +Journal of the American Pharmaceutical Association (Scientific ed ),Elsevier ,00959553|19302304 +Journal of the American Pharmacists Association,Elsevier ,15443191| +Journal of the American Philosophical Association,Cambridge University Press,20534477|20534485 +Journal of the American Philosophical Association,Cambridge University Press,20534477|20534485 +Journal of the American Planning Association,Informa UK (Taylor & Francis),01944363|19390130 +Journal of the American Podiatric Medical Association,American Podiatric Medical Association,87507315| +Journal of the American Psychiatric Nurses Association,SAGE Publications,10783903|15325725 +Journal of the American Psychoanalytic Association,SAGE Publications,00030651|19412460 +Journal of the American Public Health Association,American Public Health Association,02731975| +Journal of the American Research Center in Egypt,Lockwood Press,00659991|23301880 +Journal of the American Rocket Society,American Institute of Aeronautics and Astronautics,19369964 +Journal of the American Society for Information Science,Wiley Blackwell (John Wiley & Sons),00028231|10974571 +Journal of the American Society for Information Science and Technology,Wiley Blackwell (John Wiley & Sons),15322882|15322890 +Journal of the American Society for Mass Spectrometry,Springer-Verlag,10440305|18791123 +Journal of the American Society for Surgery of the Hand,Elsevier ,15310914| +Journal of the American Society of Brewing Chemists,Scientific Societies,03610470|03610470 +Journal of the American Society of Cytopathology,Elsevier ,22132945| +Journal of the American Society of Echocardiography,Elsevier ,08947317| +Journal of the American Society of Hypertension,Elsevier ,19331711| +Journal of the American Society of Naval Engineers,Wiley Blackwell (Blackwell Publishing),00997056| +Journal of the American Society of Nephrology,American Society of Nephrology,10466673|15333450 +Journal of the American Statistical Association,Informa UK (American Statistical Association),01621459|1537274X +Journal of the American Taxation Association,American Accounting Association,01989073|15588017 +Journal of the American Veterinary Medical Association,American Veterinary Medical Association,00031488| +Journal of The Analgesics,Synchro Publisher,23110317 +Journal of the Anthropological Society of London,JSTOR,13560131| +Journal of The Arab Society for Medical Research,Medknow Publications,16874293| +Journal of the architectural institute of Korea planning & design,Architectural Institute of Korea,12269093| +Journal of the Architectural Institute of Korea Structure and Construction,Architectural Institute of Korea,12269107| +Journal of the Arizona Academy of Science,JSTOR,00041378| +Journal of the Arizona-Nevada Academy of Science,BioOne (JANAS),15336085|15336085 +Journal of the Arnold Arboretum,Smithsonian Institution Biodiversity Heritage Library,00042625| +Journal of the ASEAN Federation of Endocrine Societies,Journal of the ASEAN Federation of Endocrine Sciences (JAFES),08571074|2308118X +Journal of the Asia Pacific Economy,Informa UK (Taylor & Francis),13547860|14699648 +Journal of the Asiatic Society of Bangladesh Science,Bangladesh Journals Online,10166947| +Journal of the Association for Consumer Research,The University of Chicago Press,23781815|23781823 +Journal of the Association for Information Science and Technology,Wiley Blackwell (John Wiley & Sons),23301635| +Journal of the Association for Laboratory Automation,SAGE Publications,15355535| +Journal of the Association for Research in Otolaryngology,Springer-Verlag,15253961|14387573 +Journal of the Association for Vascular Access,Elsevier ,15528855|15571289 +Journal of the Association of Arab Universities for Basic and Applied Sciences,Elsevier ,18153852| +Journal of the Association of Avian Veterinarians,JSTOR,10448314| +Journal of the Association of Environmental and Resource Economists,The University of Chicago Press,23335955|23335963 +Journal of the Association of Nurses in AIDS Care,Elsevier ,10553290|00000000 +Journal of the Association of Western Art History,Association of Western Art History,12292095| +Journal of the Atmospheric Sciences,American Meteorological Society,00224928|15200469 +Journal of the Atomic Energy Society of Japan / Atomic Energy Society of Japan,Atomic Energy Society of Japan,00047120| +Journal of the Audio Engineering Society,Audio Engineering Society,15494950| +Journal of the Australasian Universities Language and Literature Association,Maney Publishing,00012793| +Journal of the Australian College of Speech Therapists,Informa UK (Informa Healthcare),00048909| +Journal of the Australian College of Speech Therapists,Informa UK (Informa Healthcare),00048909| +Journal of the Australian College of Speech Therapists,Informa UK (Informa Healthcare),00048909| +Journal of the Australian Mathematical Society,Cambridge University Press,14467887|14468107 +Journal of the Australian Population Association,Springer-Verlag,08145725| +Journal of the Autonomic Nervous System,Elsevier ,01651838| +Journal of the Bangladesh Agricultural University,Bangladesh Journals Online,18103030|24088684 +Journal of the Bangladesh Association of Young Researchers,Bangladesh Journals Online,19910746|2220119X +Journal of the Bangladesh Society of Anaesthesiologists,Bangladesh Journals Online,22208992|24088706 +Journal of the Belgian Society of Radiology,"""Ubiquity Press, Ltd.""",17802393 +Journal of the Bible and its Reception,Walter de Gruyter GmbH,2329440X|23294434 +Journal of the Biological Board of Canada,Canadian Science Publishing,03681424| +Journal of the Brazilian Chemical Society,GN1 Genesis Network,01035053|01035053 +Journal of the Brazilian College of Oral and Maxillofacial Surgery,Dental Press International,23582782| +Journal of the Brazilian Computer Society,Springer (Biomed Central Ltd.),01046500|16784804 +Journal of the Brazilian Society of Ecotoxicology,Ecototoxicology and Environmental Contamination,18098401|22361693 +Journal of the Brazilian Society of Mechanical Sciences,SciELO,01007386|01007386 +Journal of the Brazilian Society of Mechanical Sciences and Engineering,Springer-Verlag,16785878|16785878 +JOURNAL OF THE BREWING SOCIETY OF JAPAN,Brewing Society of Japan,09147314|21864012 +Journal of the British Academy,British Academy,20527217 +Journal of the British Archaeological Association,Maney Publishing,00681288|17476704 +Journal of The British Contact Lens Association,Elsevier ,01417037| +Journal of the British Institute of International Affairs,JSTOR,14737981| +Journal of the British Institute of Mental Handicap (APEX),Wiley Blackwell (Blackwell Publishing),02619997| +Journal of the British Institution of Radio Engineers,Institution of Electrical Engineers,2054054X +Journal of the British Society for Phenomenology,Informa UK (Taylor & Francis),00071773|23320486 +Journal of the British Society for Phenomenology,Informa UK (Taylor & Francis),00071773|23320486 +Journal of the Canadian Health Libraries Association / Journal de l Association de bilbiothèques de la santé du Canada,Canadian Health Libraries Association,17086892|17086892 +Journal of the Canadian Historical Association,Consortium Erudit,08474478|17126274 +Journal of the CardioMetabolic Syndrome,Wiley Blackwell (Blackwell Publishing),15594564|15594572 +Journal of the Central Society for Veterinary Medicine,Japanese Society of Veterinary Science,18839088 +Journal of the Ceramic Association Japan,Ceramic Society of Japan,00090255|18842127 +Journal of the Ceramic Society of Japan,Ceramic Society of Japan,09145400|13486535 +Journal of the Ceylon College of Physicians,Sri Lanka Journals Online ,0379802X| +Journal of the Chemical Society (Resumed),The Royal Society of Chemistry,03681769| +Journal of the Chemical Society A Inorganic Physical Theoretical,The Royal Society of Chemistry,00224944| +Journal of the Chemical Society Abstracts,The Royal Society of Chemistry,05909791| +Journal of the Chemical Society B Physical Organic,The Royal Society of Chemistry,00456470| +Journal of the Chemical Society C Organic,The Royal Society of Chemistry,00224952| +Journal of the Chemical Society Chemical Communications,The Royal Society of Chemistry,00224936| +Journal of the Chemical Society D Chemical Communications,The Royal Society of Chemistry,05776171| +Journal of the Chemical Society Dalton Transactions,The Royal Society of Chemistry,14727773|13645447 +Journal of the Chemical Society Faraday Transactions,The Royal Society of Chemistry,09565000|13645455 +Journal of the Chemical Society Faraday Transactions 1 Physical Chemistry in Condensed Phases,The Royal Society of Chemistry,03009599| +Journal of the Chemical Society Faraday Transactions 2 Molecular and Chemical Physics,The Royal Society of Chemistry,03009238| +Journal of the Chemical Society Perkin Transactions 1,The Royal Society of Chemistry,14727781|13645463 +Journal of the Chemical Society Perkin Transactions 2,The Royal Society of Chemistry,1472779X|13645471 +Journal of the Chemical Society Transactions,The Royal Society of Chemistry,03681645| +Journal of the Chilean Chemical Society,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7179707 +Journal of the Chinese Advanced Materials Society,Informa UK (Taylor & Francis),22243682|21681031 +Journal of the Chinese Chemical Society,Wiley Blackwell (John Wiley & Sons),00094536| +Journal of the Chinese Institute of Chemical Engineers,Elsevier ,03681653| +Journal of the Chinese Institute of Engineers,Informa UK (Taylor & Francis),02533839|21587299 +Journal of the Chinese Institute of Industrial Engineers,Informa UK (Taylor & Francis),10170669|21517606 +Journal of the Chinese Medical Association,Elsevier ,17264901| +Journal of the Chosun Natural Science,The Research Institute of Chosun Natural Science,20051042| +Journal of the Chungcheng Mathematical Society,Chungcheong Mathematical Society,12263524| +Journal of the College of Community Physicians of Sri Lanka,Sri Lanka Journals Online ,13913174| +Journal of the Computational Structural Engineering Institute of Korea,The Computational Structural Engineering Institute,12293059| +Journal of the County Louth Archaeological and Historical Society,JSTOR,00701327| +Journal of the County Louth Archaeological Society,JSTOR,13932195| +Journal of the Croatian Association of Civil Engineers,Croatian Association of Civil Engineers,03502465|13339095 +Journal of the Czech Geological Society,Czech Geological Society,12108197| +Journal of the Dermatology Nurses’ Association,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,1945760X| +Journal of the Early Republic,Muse - Johns Hopkins University Press,02751275|15530620 +Journal of the Earthquake Engineering Society of Korea,Earthquake Engineering Society of Korean,1226525X|22341099 +Journal of the East Asian Society of Dietary Life,The East Asian Society of Dietary Life,12256781| +Journal of the Economic and Social History of the Orient,Brill Academic Publishers,00224995|15685209 +Journal of the Economic Science Association,Springer-Verlag,21996776|21996784 +Journal of the Egyptian Mathematical Society,Elsevier ,1110256X| +Journal of the Egyptian National Cancer Institute,Elsevier ,11100362| +Journal of the Egyptian Ophthalmological Society,Medknow Publications,20900686| +Journal of the Egyptian Public Health Association,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,00132446| +Journal of the Egyptian Society of Cardio-Thoracic Surgery,Elsevier ,1110578X| +Journal of the Egyptian Society of Parasitology,"""Al Manhal FZ, LLC""",11100583| +Journal of the Egyptian Womenʼs Dermatologic Society,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,16871537| +Journal of The Electrochemical Society,The Electrochemical Society,00134651|19457111 +Journal of the Elisha Mitchell Scientific Society,Smithsonian Institution Biodiversity Heritage Library,00136220| +Journal of the Energy Institute,Elsevier ,01442600|17460220 +Journal of the Ergonomics Society of Korea,The Ergonomics Society of Korea,12291684| +Journal of the Eritrean Medical Association,African Journals Online ,19986017|19986017 +Journal of the Ethnological Society of London (1848-1856),JSTOR,13680358| +Journal of the European Academy of Dermatology and Venereology,Wiley Blackwell (Blackwell Publishing),09269959|14683083 +Journal of the European Ceramic Society,Elsevier ,09552219| +Journal of the European Economic Association,Wiley Blackwell (Blackwell Publishing),15424766|15424774 +Journal of the European Mathematical Society,European Mathematical Society Publishing House,14359855|14359863 +Journal of the European Optical Society Rapid Publications,European Optical Society,19902573 +Journal of the European Pentecostal Theological Association,Maney Publishing,18124461|22247963 +Journal of the European Society of Women in Theological Research,Peeters Publishers,17817846 +Journal of the Experimental Analysis of Behavior,Wiley Blackwell (John Wiley & Sons),00225002|00225002 +Journal of the Faculty of Radiologists,Elsevier ,03682242| +Journal of the Federated Institutes of Brewing,Wiley Blackwell (John Wiley & Sons),20502249| +Journal of the Fisheries Research Board of Canada,Canadian Science Publishing,0015296X| +JOURNAL OF THE FLOW VISUALIZATION SOCIETY OF JAPAN,The Visualization Society of Japan,02873605|18840361 +Journal of the Folklore Institute,JSTOR,00155934| +Journal of the Forensic Science Society,Elsevier ,00157368| +Journal of the Formosan Medical Association,Elsevier ,09296646| +Journal of the Franklin Institute,Elsevier ,00160032| +Journal of the Fuel Society of Japan,The Japan Institute of Energy,03693775|2185226X +Journal of the Gay and Lesbian Medical Association,Springer (Kluwer Academic Publishers),10907173| +Journal of the Geographical Institute Jovan Cvijic SASA,National Library of Serbia,03507599|18212808 +Journal of the Geological Society,Geological Society of London,00167649|2041479X +Journal of the Geological Society of Australia,Informa UK (Taylor & Francis),00167614| +Journal of the Geological Society of India,Springer-Verlag,00167622|09746889 +Journal of the geological society of Korea,The Geological Society of Korea,04354036|22887377 +Journal of the Ghana Science Association,African Journals Online ,8553823 +Journal of the Grassland Society of Southern Africa,Informa UK (Taylor & Francis),02566702| +Journal of the HCI Society of Korea,The HCI Society of Korea,19760671| +Journal of the Herpetological Association of Rhodesia,Informa UK (Taylor & Francis),0440730X|21593884 +Journal of the Historical Society,Wiley Blackwell (Blackwell Publishing),1529921X|15405923 +Journal of the History of Biology,Springer-Verlag,00225010|15730387 +Journal of the History of Collections,Oxford University Press,09546650|14778564 +Journal of the History of Economic Thought,Cambridge University Press,10538372|14699656 +Journal of the History of Ideas,Muse - Johns Hopkins University Press,00225037|10863222 +Journal of the History of International Law / Revue d histoire du droit international,Brill Academic Publishers,1388199X|15718050 +Journal of the History of Medicine and Allied Sciences,Oxford University Press,00225045|14684373 +Journal of the History of Philosophy,Muse - Johns Hopkins University Press,15384586 +Journal of the History of Sexuality,University of Texas Press,10434070|15353605 +Journal of the History of the Behavioral Sciences,Wiley Blackwell (John Wiley & Sons),00225061|15206696 +Journal of the History of the Neurosciences,Informa UK (Taylor & Francis),0964704X|17445213 +Journal of the Human-Environment System,Japanese Society of Human-Environment,13451324|13497723 +Journal of the ICE,Thomas Telford Ltd.,03682455|03682455 +Journal of the ICRU,Oxford University Press,14736691|17423422 +Journal of the IEE,Institution of Electrical Engineers,03682692|20540574 +Journal of the IEE,Institution of Electrical Engineers,03682692|20540574 +Journal of the IEST,Institute of Environmental Sciencs and Technology (IEST),10984321|15572196 +Journal of the Illinois State Historical Society (1998-),University of Illinois Press,15221067| +JOURNAL OF THE ILLUMINATING ENGINEERING INSTITUTE OF JAPAN,Illuminating Engineering Society of Japan,00192341|1349838X +Journal of the Illuminating Engineering Society,Informa UK (Taylor & Francis),00994480| +Journal of the Indian Academy of Wood Science,Springer-Verlag,0972172X|09768432 +Journal of the Indian Ocean Region,Informa UK (Taylor & Francis),19480881|1948108X +Journal of the Indian Society of Remote Sensing,Springer-Verlag,0255660X|09743006 +Journal of the Indian Society of Soil Science,Diva Enterprises Private Limited,0019638X|09740228 +Journal of the Indonesian Tropical Animal Agriculture,Institute of Research and Community Services Diponegoro University (LPPM UNDIP),20878273|24606278 +Journal of the Institute of Actuaries,Cambridge University Press,00202681| +Journal of the Institute of Agriculture and Animal Science,Nepal Journals Online, +Journal of the Institute of Bibliography,The Institute of Korea Bibliography,12255246| +Journal of the Institute of Brewing,Wiley Blackwell (John Wiley & Sons),00469750| +Journal of the Institute of Conservation,Informa UK (Taylor & Francis),19455224|19455232 +Journal of the Institute of Electronics and Information Engineers,The Institute of Electronics Engineers of Korea,22875026|2288159X +Journal of the Institute of Engineering,Nepal Journals Online,18103383| +Journal of The Institute of Environmental Studies,The Institute of Environment Studies Daejeon University,22871527| +Journal of the Institute of Industrial Applications Engineers,Institute of Industrial Applications Engineers,21881758|21878811 +Journal of the Institute of Mathematics of Jussieu,Cambridge University Press,14747480|14753030 +Journal of the Institute of Mental Subnormality (APEX),Wiley Blackwell (Blackwell Publishing),01412205| +Journal of the Institute of Positioning Navigation and Timing of Japan,"""The Institute of Positioning, Navigation and Timing of Japan""",21852952 +Journal of the Institute of Wood Science,Maney Publishing,00203203|20419430 +Journal of the Institution of Electrical Engineers,Institution of Electrical Engineers,20540612 +Journal of the Institution of Electrical Engineers - Part I General,Institution of Electrical Engineers,20540582 +Journal of the Institution of Electrical Engineers - Part II Power Engineering,Institution of Electrical Engineers,20540590 +Journal of the Institution of Electrical Engineers - Part IIA Automatic Regulators and Servo Mechanisms,Institution of Electrical Engineers,20540728 +Journal of the Institution of Electrical Engineers - Part III Communication Engineering including the Proceedings of the Wireless Section of the Institution,Institution of Electrical Engineers,20540647 +Journal of the Institution of Electrical Engineers - Part III Radio and Communication Engineering,Institution of Electrical Engineers,20540604 +Journal of the Institution of Electrical Engineers - Part IIIA Radiocommunication,Institution of Electrical Engineers,20505493| +Journal of the Institution of Electrical Engineers - Part IIIA Radiolocation,Institution of Electrical Engineers,20540744 +Journal of the Institution of Electronic and Radio Engineers,Institution of Electrical Engineers,02671689| +Journal of The Institution of Engineers (India) Series A,Springer-Verlag,22502149|22502157 +Journal of The Institution of Engineers (India) Series B,Springer-Verlag,22502106|22502114 +Journal of The Institution of Engineers (India) Series C,Springer-Verlag,22500545|22500553 +Journal of The Institution of Engineers (India) Series D,Springer-Verlag,22502122|22502130 +Journal of The Institution of Engineers (India) Series E,Springer-Verlag,22502483|22502491 +Journal of the Institution of Locomotive Engineers,SAGE Publications,0534283X| +Journal of the Institution of Production Engineers,Institution of Electrical Engineers,03682757| +Journal of the Intensive Care Society,SAGE Publications,17511437| +Journal of the International AIDS Society,International AIDS Society,17582652|17582652 +JOURNAL OF THE INTERNATIONAL ARTHURIAN SOCIETY,Walter de Gruyter GmbH,21969353|21969361 +Journal of the International Association for Mathematical Geology,Springer-Verlag,00205958|15738868 +Journal of the International Association for Shell and Spatial Structures,nternational Association for Shell and Spatial Structuresq,1028365X|19969015 +Journal of the International Association of Physicians in AIDS Care (JIAPAC),SAGE Publications,15451097|15570886 +Journal of the International Association of Providers of AIDS Care (JIAPAC),SAGE Publications,23259574|23259582 +Journal of the International Clinical Dental Research Organization,Medknow Publications,22310754| +Journal of the International Folk Music Council,JSTOR,09507922| +Journal of the International Network for Korean Language and Culture,International Network for Korean Language and Culture,17382793| +Journal of the International Neuropsychological Society,Cambridge University Press,13556177|14697661 +Journal of the International Phonetic Association,Cambridge University Press,00251003|14753502 +Journal of the International Society of Sports Nutrition,Springer (Biomed Central Ltd.),15502783|15502783 +Journal of the Iranian Chemical Society,Springer-Verlag,1735207X|17352428 +Journal of the Islamic Medical Association of North America,Islamic Medical Association of North America,08998299|21609829 +Journal of the Italian Statistical Society,Springer-Verlag,11219130| +Journal of the Japan Association for Philosophy of Science,The Japan Association for Philosophy of Science,00227668|18841236 +JOURNAL of the JAPAN ELECTRIC WELDING SOCIETY,Japan Welding Society,18837212 +Journal of the Japan Epilepsy Society,The Japan Epilepsy Society,09120890|13475509 +Journal of the Japan Institute of Energy,The Japan Institute of Energy,09168753|18826121 +Journal of the Japan Institute of Metals and Materials,The Japan Institute of Metals,00214876|18806880 +Journal of the Japan Institute of Power Electronics,The Japan Institute of Power Electronics,13488538|18843239 +Journal of the Japan Landslide Society,Japan Landslide Society,13483986|18820034 +Journal of the Japan Organization of Clinical Dermatologists,Japan Organization of Clinical Dermatologists,13497758|1882272X +Journal of the Japan Petroleum Institute,Japan Petroleum Institute,13468804|1349273X +JOURNAL OF THE JAPAN SOCIETY FOR AERONAUTICAL AND SPACE SCIENCES,Japan Society for Aeronautical and Space Sciences,13446460| +Journal of the Japan Society for Composite Materials,The Japan Society for Composite Materials,03852563|18848559 +Journal of the Japan Society for Precision Engineering,The Japan Society for Precision Engineering,09120289|1882675X +Journal of the Japan Society for Precision Engineering Contributed Papers,The Japan Society for Precision Engineering,13488724|18818722 +Journal of the Japan Society for Technology of Plasticity,The Japan Society for Technology and Plasticity,00381586|18820166 +journal of the Japan Society for Testing Materials,The Society of Materials Science Japan,03727971| +Journal of the Japan Society of Applied Electromagnetics and Mechanics,Japan Society of Applied Electromagnetics and Mechanics,09194452|21879257 +Journal of the Japan Society of Blood Transfusion,Japan Society of Transfusion Medicine and Cell Therapy,05461448|18838383 +Journal of the Japan Society of Colour Material,Japan Society of Colour Material,0010180X|18832199 +Journal of The Japan Society of Electrical Machining Engineers,Japan Society of Electrical Machining Engineers,0387754X|18810888 +Journal of the Japan Society of Engineering Geology,Japan Society of Engineering Geology,02867737|18840973 +Journal of the Japan Society of Material Cycles and Waste Management,Japan Society of Waste Management Experts,18835856|18835899 +Journal of the Japan Society of Naval Architects and Ocean Engineers,Japan Society of Naval Architects and Ocean Engineers,18803717|18811760 +Journal of the Japan society of photogrammetry,Japan Society of Photogrammetry and Remote Sensing,05494451|18843980 +Journal of the Japan society of photogrammetry and remote sensing,Japan Society of Photogrammetry and Remote Sensing,02855844|18839061 +Journal of the Japan Society of Powder and Powder Metallurgy,Japan Society of Powder and Powder Metallurgy,05328799|18809014 +Journal of the Japan Society of Precision Engineering,The Japan Society for Precision Engineering,03743543| +Journal of the Japan Society of the Reticuloendothelial System,Japanese Society for Lymphoreticular Tissue Research,03869725|18836801 +Journal of the Japan Society of Waste Management Experts,Japan Society of Waste Management Experts,18831648|1883163X +JOURNAL OF THE JAPAN STATISTICAL SOCIETY,The Japan Statistical Society,18822754|13486365 +Journal of the Japan Veterinary Medical Association,Japan Veterinary Medical Association,04466454|21860211 +JOURNAL OF THE JAPAN WELDING SOCIETY,Japan Welding Society,00214787|18837204 +Journal of the Japanese and International Economies,Elsevier ,08891583|10958681 +Journal of the Japanese Association for Digital Humanities,Japanese Association for Digital Humanities,21887276 +Journal of the Japanese Association for Petroleum Technology,Japanese Association for Petroleum Engineers,03709868|18814131 +JOURNAL OF THE JAPANESE ASSOCIATION OF RURAL MEDICINE,The Japanese Association of Rural Medicine,04682513|13467421 +Journal of the Japanese Association of Snow and Ice,Japanese Society of Snow and Ice,02869993|18836259 +Journal of the Japanese Coral Reef Society,Japanese Coral Reef Society,13451421|18825710 +Journal of the Japanese Coronary Association,The Japanese Coronary Association,13417703|21871949 +Journal of the Japanese Forest Society,The Japanese Forest Society,13498509|1882398X +Journal of the Japanese Institute of Landscape Architects,Japanese Institute of Landscape Architecture,03877248|21853053 +Journal of The Japanese Institute of Landscape Architecture,Japanese Institute of Landscape Architecture,13408984|13484559 +Journal of the Japanese Physical Therapy Association,Japanese Physical Therapy Association,13441272|21888361 +journal of the japanese society for cold preservation of food,Japan Association of Food Preservation Scientists,09147675|21861269 +Journal of the Japanese Society for Horticultural Science,The Japanese Society for Horticultural Science,00137626|1880358X +Journal of the Japanese Society of Computational Statistics,Japanese Society of Computational Statistics,09152350|18811337 +Journal of the Japanese Society of Intensive Care Medicine,Japanese Society of Intensive Care Medicine,13407988|1882966X +Journal of the Japanese Society of Revegetation Technology,The Japanese Society of Revegetation Technology,09167439|18843670 +Journal of the Japanese Society of Snow and Ice,Japanese Society of Snow and Ice,03731006|18836267 +Journal of the Japanese Society of Starch Science,The Japanese Society of Applied Glycoscience,00215406|1884488X +Journal of The Japanese Society of Veterinary Science,Japanese Society of Veterinary Science,18839193 +Journal of the Japanese Technical Association of the Pulp and Paper Industry,Japan Technical Association of the Pulp and Paper Industry,18844731 +Journal of the Kansas Entomological Society,Kansas Entomological Society,00228567|19372353 +Journal of the Kentucky Academy of Science,BioOne (Kentucky Academy of Science),10987096|19382960 +Journal of the Knowledge Economy,Springer-Verlag,18687865|18687873 +Journal of the Korea Academia-Industrial cooperation Society,The Korea Academia-Industrial Cooperation Society,19754701| +Journal of the Korea Computer Graphics Society,Korea Computer Graphics Society,19757883| +Journal of the Korea Concrete Institute,Korea Concrete Institute,12295515| +Journal of the Korea Convergence Society,Korea Convergence Society,22334890| +Journal of the Korea Electromagnetic Engineering Society,Korean Institute of Electromagnetic Engineering and Science,15982556| +Journal of the Korea English Education Society,The Korean English Education Society,1598513X| +Journal of the Korea Foundry Society,The Korean Foundrymens Society,1598706X| +Journal of the Korea Industrial Information Systems Research,The Korea Society for Industrial Systems,12293741| +Journal of the Korea institute for structural maintenance inspection,Korea Institute for Structural Maintenance Inspection,22346937| +Journal of the Korea Institute of Building Construction,The Korean Institute of Building Construction,15982033| +Journal of the Korea Institute of Ecological Architecture and Environment,Korea Institute of Ecological Architecture and Environment,15983730| +Journal of the Korea Institute of Ecological Architecture and Environment,Korea Institute of Ecological Architecture and Environment,15983730| +Journal of The Korea Institute of Healthcare Architecture,Korea Institute of Healthcare Architecture,19753349| +Journal of the Korea Institute of Information Security and Cryptology,Korea Institute of Information Security and Cryptology,15983986| +Journal of the Korea Institute of Military Science and Technology,The Korea Institute of Military Science and Technology,15989127| +Journal of the Korea Organic Resource Recycling Association,Korea Organic Resource Recycling Association,12256498| +Journal of the Korea Safety Management and Science,Korea Safety Management and Science,12296783| +Journal of the Korea Society for Industrial and Applied Mathematics,The Korean Society for Industrial and Applied Mathematics,12269433| +Journal of the Korea Society For Power System Engineering,The Korea Society for Power System Engineering,12267813| +Journal of the Korea Society for Simulation,The Korea Society for Simulation,12255904| +Journal of the Korea Society of Computer and Information,Korean Society of Computer Information,1598849X| +Journal of the Korea Society of Digital Industry and Information Management,Korea Society of Digital Industry and Information Managment,17386667| +Journal of the Korea Society of Environmental Restoration Technology,The Korea Society of Environmental Restoration Technology,12293032| +Journal of the Korea society of IT services,The Korea Society of Information Technology Services,19754256| +Journal of the Korea Society of Systems Engineering,The Korean Society of Systems Engineering,1738480X| +Journal of the Korean Academy of Clinical Electrophysiology,The Korean Academy of Clinical Electrophysiology,17380472| +Journal of the Korean Academy of Esthetic Dentistry,Korean Academy of Esthetic Dentistry,19754191| +Journal of The Korean Association For Science Education,The Korean Association for Science Education,12265187| +Journal of the Korean Association for Spatial Structures,Korean Association for Spatial Structures,15984095|22877401 +Journal of the Korean Association of Geographic Information Studies,The Korean Association of Geographic Information Studies,12269719|22876952 +Journal of the Korean Association of Information Education,Korean Association of Information Education,12293245| +Journal of the Korean Association of Oral and Maxillofacial Surgeons,The Korean Association of Oral and Maxillofacial Surgeons (KAMJE),12251585|22345930 +Journal of the Korean Association of Pediatric Surgeons,Korean Association of Pediatric Surgeons (KAMJE),12259047| +Journal of The Korean Astronomical Society,The Korean Astronomical Society,12254614| +Journal of the Korean BIBLIA Society for library and Information Science,Korea Biblia Society for Library and Information Science,12292435| +Journal of the Korean Ceramic Society,The Korean Ceramic Society,12297801| +Journal of the Korean Chemical Society,Korean Chemical Society,10172548| +Journal of the Korean Conservation Science for Cultural Properties,The Korean Society of Conservation Science for Cultural Heritage,12255459| +Journal of the Korean Continence Society,Korean Continence Society,1598186X| +Journal of the Korean Crystal Growth and Crystal Technology,The Korea Association of Crystal Growth,12251429| +Journal of the Korean Data and Information Science Society,Korean Data and Information Science Society,15989402| +Journal of the Korean Dietetic Association,The Korea Dietetic Association,12259861| +Journal of the Korean earth science society,The Korean Earth Science Society,12256692|22874518 +Journal of the Korean Electrochemical Society,The Korean Electrochemical Society,12291935| +Journal of the Korean Fracture Society,The Korean Fracture Society (KAMJE),12251682|22879293 +Journal of the Korean geoenvironmental society,Korean Geo-Environment Society,15980820| +JOURNAL OF THE KOREAN GEOMORPHOLOGICAL ASSOCIATION,Korean Geomorphological Association,12264296| +Journal of the korean geosynthetic society,Korean GeoSynthetics Society,19752423| +Journal of the Korean Geotechnical Society,Korean Geotechnical Society,12292427| +Journal of the Korean Geriatrics Society,The Korean Geriatrics Society (KAMJE),12292397|22881239 +Journal of the Korean GNSS Society,The Korean GNSS Society,22877398| +Journal of the Korean Home Economics Association,The Korean Home Economics Association,12250937| +Journal of the Korean housing association,The Korean Housing Association,22343571| +Journal of the Korean Institute of Electrical and Electronic Material Engineers,The Korean Institute of Electrical and Electronic Material Engineers,12267945| +Journal of the Korean institute of electromagnetic engineering and science,Korean Institute of Electromagnetic Engineering and Science,15982556| +Journal of the Korean Institute of Gas,The Korean Institute of Gas,12268402| +Journal of the Korean Institute of Illuminating and Electrical Installation Engineers,The Korean Institute of Illuminating and Electrical Installation Engineers,12294691| +Journal of the Korean Institute of Landscape Architecture,Korean Institute of Landscape Architecture,12251755| +Journal of the Korean Institute of Resources Recycling,The Korean Institute of Resources Recycling,12258326| +Journal of the Korean Institute of Rural Architecture,Korean Institute of Rural Architecture,12292532| +Journal of the Korean institute of surface engineering,The Korean Institute of Surface Engineering,12258024| +Journal of the Korean Magnetic Resonance Society,Korean Magnetic Resonance Society,12266531| +Journal of the Korean Magnetics Society,The Korean Magnetics Society,15985385| +Journal of the Korean Mathematical Society,The Korean Mathematical Society,03049914| +Journal of the Korean Medical Association,Korean Medical Association (KAMJE),00234028| +Journal of the Korean Neurological Association,Korean Neurological Association,12257044|2288985X +Journal of the Korean Oil Chemists Society,Korean Oil Chemists' Society,12259098|22881069 +Journal of the Korean Operations Research and Management Science Society,The Korean Operations and Management Science Society,12251119| +Journal of the Korean Ophthalmological Society,Korean Opthalmological Society (KAMJE),03786471|20929374 +Journal of the Korean Physical Society,Korean Physical Society,03744884|19768524 +Journal of the Korean Radiological Society,The Korean Society of Radiology (KAMJE),03012867| +Journal of the Korean Recycled Construction Resources Institute,Korean Recycled Construction Resource Institute,22883320| +Journal of the Korean Society for Advanced Composite Structures,Korean Society for Advanced Composite Structures,20935145|22880232 +Journal of the Korean Society for Aeronautical & Space Sciences,The Korean Society for Aeronautical & Space Sciences,12251348| +Journal of the Korean Society for Applied Biological Chemistry,Springer-Verlag,17382203|2234344X +Journal of the Korean Society for Aviation and Aeronautics,The Korean Society for Aviation and Aeronautics,12259705| +Journal of The Korean Society for Composite Materials,The Korean Society for Composite Materials,15986934| +Journal of The Korean Society for Geosystem Engineering,"""Docuhut, Co., Ltd.""",15988023|22874321 +Journal of the Korean Society for Heat Treatment,The Korean Society for Heat Treatment,12251070| +Journal of the Korean Society for information Management,Korean Society for Information Management,10130799| +Journal of the Korean Society for Library and Information Science,Korean Society for Library and Information Science,1225598X| +Journal of the Korean Society for Marine Environment & Energy,The Korean Society for Marine Environment and Energy,22880089| +Journal of the Korean Society for Nondestructive Testing,The Korean Society for Nondestructive Testing,12257842| +Journal of the Korean society for quality management,The Korean Society for Quality Management,12291889| +Journal of the Korean society for railway,Korean Society for Railway,17386225| +Journal of the Korean Society for Surgery of the Hand,The Korean Society for Surgery of the Hand (KAMJE),15983889|22340998 +Journal of The Korean Society of Agricultural Engineers,The Korean Society of Agricultural Engineers,17383692| +Journal of the Korean Society of Civil Engineers,Korean Society of Civil Engineers,10156348|2287934X +Journal of the Korean Society of Clothing and Textiles,The Korean Society of Clothing and Textiles,12251151| +Journal of the Korean Society of Coloproctology,Korean Society of Coloproctology (KAMJE),12298670|20937830 +Journal of the Korean Society of Combustion,The Korean Society of Combustion,12260959| +Journal of The Korean Society of Disaster Information,The Korean Society of Disaster Information,19762208| +Journal of the Korean society of earth science education,The Korean Society of Earth Science Education,20055668| +Journal of The Korean Society of Fashion Design,The Korean Society of Fashion Design,15983749| +Journal of the Korean society of Fisheries Technology,The Korean Society of Fisheries Technology,1225827X|22874623 +Journal of the Korean Society of Food Culture,Korean Society of Food Culture,12257060|22887148 +Journal of the Korean Society of Food Science and Nutrition,The Korean Society of Food Science and Nutrition,12263311| +Journal of The Korean Society of Grassland and Forage Science,The Korean Society of Grassland and Forage Sciences,10139354|22875832 +Journal of the Korean Society of Hypertension,The Korean Society of Hypertension (KAMJE),22338136|22338454 +Journal of The Korean Society of Integrative Medicine,Korean Society of Integrative Medicine,22881174| +Journal of the Korean Society of International Agriculture,Korean Society of International Agriculture,12258504|22878165 +Journal of the Korean Society of Magnetic Resonance in Medicine,Korean Society of Magnetic Resonance in Medicine (KAMJE),12269751|22883800 +Journal of the Korean Society of Manufacturing Process Engineers,The Korean Society of Manufacturing Process Engineers,15986721| +Journal of the korean society of manufacturing technology engineers,The Korean Society of Manufacturing Technology Engineers,22336036| +Journal of the Korean Society of Marine Engineering,Korean Society of Marine Engineers,12269549| +Journal of the Korean Society of Marine Environment and Safety,The Korean Society of Marine Environment and Safety,12293431|22873341 +Journal of the Korean Society of Mechanical Technology,Korean Society of Mechanical Technology,1229604X| +Journal of the Korean Society of Mineral and Energy Resources Engineers,"""Docuhut, Co., Ltd.""",22880291|22882790 +Journal of the Korean Society of Neonatology,The Korean Society of Neonatology (KAMJE),12261513|20937849 +Journal of the Korean Society of Pediatric Nephrology,Korean Society of Pediatric Nephrology,12265292|22344209 +Journal of the Korean Society of Physical Medicine,The Korean Society of Physical Medicine,1975311X|22877215 +Journal of the Korean Society of Precision Engineering,Korean Society of Precision Engineering,12259071| +Journal of the Korean Society of Propulsion Engineers,The Korean Society of Propulsion Engineers,12266027| +Journal of the Korean Society of Radiology,The Korean Society of Radiology (KAMJE),17382637|22882928 +Journal of the Korean Society of Radiology,The Korean Society of Radiology (KISTI),19760620| +Journal of the Korean Society of Safety,The Korean Society of Safety,17383803| +Journal of the Korean Society of School Health,The Korean Society of School Health,12259608|22889957 +Journal of the Korean society of speech sciences,The Korean Society of Speech Sciences,20058063| +Journal of the Korean Society of Surveying Geodesy Photogrammetry and Cartography,"""Korean Society of Surveying, Geodesy, Photogrammetry and Cartography""",15984850| +Journal of the Korean Society of Tribologists and Lubrication Engineers,The Korean Society of Tribologists and Lubrication Engineers,22874666| +Journal of the Korean Society of Tribologists and Lubrication Engineers,The Korean Society of Tribologists and Lubrication Engineers,12294845| +Journal of the Korean Society of Visualization,The Korean Society of Visualization,15988430| +Journal of The Korean Society of Water and Wastewater,The Korean Society of Water and Wastewater,12257672|2287822X +Journal of the Korean Solar Energy Society,The Korean Solar Energy Society,15986411| +Journal of the Korean Statistical Society,Elsevier ,12263192| +Journal of the Korean Surgical Society,The Korean Surgical Society (KAMJE),12260053|20930488 +Journal of the Korean Vacuum Society,The Korean Vacuum Society,12258822| +Journal of the Korean Wood Science and Technology,The Korean Society of Wood Science Technology,10170715| +Journal of the Learning Sciences,Informa UK (Taylor & Francis),10508406|15327809 +Journal of the Lepidopterists’ Society,BioOne (Lepidopterists' Society),00240966| +Journal of the Less Common Metals,Elsevier ,00225088| +Journal of the Limnological Society of Southern Africa,Informa UK (Taylor & Francis),03779688| +Journal of the Linnean Society of London Botany,Wiley Blackwell (Blackwell Publishing),03682927| +Journal of the Linnean Society of London Zoology,Wiley Blackwell (Blackwell Publishing),03682935| +Journal of the London Mathematical Society,Oxford University Press - London Mathematical Society,00246107|14697750 +Journal of the Magnetics Society of Japan,The Magnetics Society of Japan,02850192|18822932 +Journal of the Malaysian Branch of the Royal Asiatic Society,Muse - Johns Hopkins University Press,21804338 +Journal of the Marine Biological Association of India,Marine Biological Association of India,00253146|23217898 +Journal of the Marine Biological Association of the United Kingdom,Cambridge University Press,00253154|14697769 +JOURNAL OF THE MARINE ENGINEERING SOCIETY IN JAPAN,The Japan Institute of Marine Engineering,03883051|18844758 +Journal of the Mass Spectrometry Society of Japan,The Mass Spectrometry Society of Japan,13408097|18804225 +Journal of the Mathematical Society of Japan,The Mathematical Society of Japan,00255645| +Journal of the Mechanical Behavior of Biomedical Materials,Elsevier ,17516161| +Journal of the Mechanical Behavior of Materials,Walter de Gruyter GmbH,03348938|21910243 +Journal of the Mechanics and Physics of Solids,Elsevier ,00225096| +Journal of the Medical Library Association JMLA,Medical Library Association,15365050|15589439 +Journal of the Metal Finishing Society of Japan,The Surface Finishing Society of Japan,00260614|18843395 +Journal of the Meteorological Society of Japan Ser II,Meteorological Society of Japan,00261165|21869057 +Journal of the Microelectronics and Packaging Society,The Korean Microelectronics and Packaging Society,12269360| +Journal of the Midwest Modern Language Association,Muse - Johns Hopkins University Press,21626294 +Journal of the Mineralogical Society of Japan,Japan Association of Mineralogical Sciences,04541146|18837018 +Journal of the Mineralogical Society of Korea,The Mineralogical Society of Korea,1225309X|22887172 +Journal of the Multihandicapped Person,Springer-Verlag,08927561| +Journal of the Musicological Society of Korea,The Musicological Society of Korea,15989224| +Journal of the National Medical Association,Elsevier ,00279684| +Journal of the National Science Foundation of Sri Lanka,Sri Lanka Journals Online ,13914588|23620161 +Journal of the Neurological Sciences,Elsevier ,0022510X| +Journal of the New York Entomological Society,BioOne (New York Entomological Society),00287199|19372361 +Journal of the Nigerian Association of Mathematical Physics,African Journals Online ,11164336 +Journal of the Nigerian Infection Control Association,African Journals Online ,11191716 +Journal of the Nigerian Mathematical Society,Elsevier ,01898965| +Journal of the Nigerian Optometric Association,African Journals Online ,07950039|07950039 +Journal of the Nippon Medical School,The Medical Association of Nippon Medical School,00480444|18840108 +Journal of the North American Benthological Society,The University of Chicago Press,08873593|1937237X +Journal of the North Atlantic,BioOne (Journal of the North Atlantic),19351933|19351933 +Journal of the Nuclear Fuel Cycle and Waste Technology(JNFCWT),The Korean Radioactive Waste Society,17381894|22885471 +Journal of the Obafemi Awolowo University Medical Student s Association (IFEMED),African Journals Online ,3313727 +Journal of the Ohio Herpetological Society,JSTOR,04739868| +Journal of the Operational Research Society,Nature Publishing Group - Macmillan Publishers,01605682|01605682 +Journal of the Operations Research Society of America,Institute for Operations Research and the Management Sciences,00963984|23263229 +Journal of the Operations Research Society of China,Springer-Verlag,2194668X|21946698 +Journal of the Operations Research Society of Japan,The Operations Research Society of Japan,04534514|04534514 +Journal of the Optical Society of America,The Optical Society,00303941| +Journal of the Optical Society of America A,The Optical Society,10847529|15208532 +Journal of the Optical Society of America B,The Optical Society,07403224|15208540 +Journal of the Optical Society of Korea,Korean Journal of Optics and Photonics,12264776| +Journal of the Ottoman and Turkish Studies Association,Indiana University Press,23760699|23760702 +Journal of the Pediatric Infectious Diseases Society,Oxford University Press,20487193|20487207 +Journal of the Peripheral Nervous System,Wiley Blackwell (Blackwell Publishing),10859489|15298027 +Journal of the Philosophy of History,Brill Academic Publishers,1872261X|18722636 +Journal of the Philosophy of Sport,Informa UK (Taylor & Francis),00948705|15432939 +Journal of the Philosophy of Sport and Physical Education,Japan Society for the Philosophy of Sport and Physical Education,09155104|18844553 +Journal of the Physical Society of Japan,Physical Society of Japan,00319015|13474073 +Journal of the Plainsong and Mediaeval Music Society,Cambridge University Press,01434918| +Journal of the Polynesian Society,The Polynesian Society,324000 +Journal of the Postgraduate Institute of Medicine,Sri Lanka Journals Online ,23620323 +Journal of the Practice of Cardiovascular Sciences,Medknow Publications,23955414| +Journal of the Proceedings of the Linnean Society of London Botany,Wiley Blackwell (Blackwell Publishing),19459483|19459424 +Journal of the Proceedings of the Linnean Society of London Zoology,Wiley Blackwell (Blackwell Publishing),19459475|19459416 +Journal of the Reading Specialist,Informa UK (Taylor & Francis),00225126| +Journal of the Research Association of Powder Technology Japan,"""The Society of Powder Technology, Japan""",18838766 +Journal of the Robotics Society of Japan,The Robotics Society of Japan,02891824|18847145 +Journal of the Röntgen Society,British Institute of Radiology,2053132X|20531338 +Journal of the Royal Anthropological Institute,Wiley Blackwell (Blackwell Publishing),13590987|14679655 +Journal of the Royal Army Medical Corps,BMJ,00358665|20520468 +Journal of the Royal Asiatic Society,Cambridge University Press,13561863|14740591 +Journal of the Royal Asiatic Society of Great Britain & Ireland,Cambridge University Press,0035869X|0035869X +Journal of The Royal Central Asian Society,Informa UK (Taylor & Francis),00358789| +Journal of the Royal Geographical Society of London,JSTOR,02666235| +Journal of the Royal Institute of Chemistry,The Royal Society of Chemistry,03683958| +Journal of the Royal Institute of International Affairs,JSTOR,1473799X| +Journal of the Royal Medical Services,"""Al Manhal FZ, LLC""",20788703|20788711 +Journal of the Royal Microscopical Society,Wiley Blackwell (Blackwell Publishing),03683974| +Journal of the Royal Musical Association,Informa UK (Taylor & Francis),02690403|14716933 +Journal of The Royal Society Interface,The Royal Society,17425689|17425662 +Journal of the Royal Society of Medicine,SAGE Publications,01410768|17581095 +Journal of the Royal Society of New Zealand,Informa UK (Taylor & Francis),03036758|11758899 +Journal Of The Royal Statistical Society,JSTOR,09528385|14679868 +Journal of the Royal Statistical Society Series A (General),JSTOR,00359238| +Journal of the Royal Statistical Society Series A (Statistics in Society),Wiley Blackwell (Blackwell Publishing),09641998|1467985X +Journal of the Royal Statistical Society Series B (Statistical Methodology),Wiley Blackwell (Blackwell Publishing),13697412|14679868 +Journal of the Royal Statistical Society Series C (Applied Statistics),Wiley Blackwell (Blackwell Publishing),00359254|14679876 +Journal of the Royal Statistical Society Series D (The Statistician),Wiley Blackwell (Blackwell Publishing),00390526|14679884 +Journal of the Saudi Heart Association,Elsevier ,10167315| +Journal of the Saudi Heart Association,Elsevier ,13199218| +Journal of the Saudi Society of Agricultural Sciences,Elsevier ,1658077X| +Journal of the Saudi Society of Dermatology & Dermatologic Surgery,Elsevier ,2210836X| +Journal of the Scholarship of Teaching and Learning,IUScholarWorks,15279316|15279316 +Journal of the Science of Food and Agriculture,Wiley Blackwell (John Wiley & Sons),00225142|10970010 +Journal of the Scientific Society,Medknow Publications,09745009| +Journal of the Sedimentological Society of Japan,The Sedimentological Society of Japan,1342310X|18829457 +Journal of the Senologic International Society,Senologic International Society,16888170 +Journal of the Serbian Chemical Society,National Library of Serbia,03525139|18207421 +Journal of the Siena Academy of Sciences,PAGEPress Publications,2279882X|22798811 +Journal of the SMPTE,Society of Motion Picture and Television Engineers,03614573| +Journal of the Society for American Music,Cambridge University Press,17521963|17521971 +Journal of the Society for Gynecologic Investigation,SAGE Publications,10715576| +Journal of the Society for Industrial and Applied Mathematics,Society for Industrial and Applied Mathematics,03684245|21683484 +Journal of the Society for Industrial and Applied Mathematics Series A Control,Society for Industrial and Applied Mathematics,08874603| +Journal of the Society for Industrial and Applied Mathematics Series B Numerical Analysis,Society for Industrial and Applied Mathematics,0887459X| +Journal of the Society for Information Display,Wiley Blackwell (John Wiley & Sons),10710922|19383657 +Journal of the Society for Integrative Oncology,"""Decker, Inc.""",1715894X +Journal of the Society for Radiological Protection,IOP Publishing,02602814| +Journal of the Society for Social Work and Research,The University of Chicago Press,1948822X|1948822X +Journal of the Society for the Anthropology of Europe,Wiley Blackwell (Blackwell Publishing),15355632|15565823 +Journal of the Society for the Bibliography of Natural History,Edinburgh University Press,00379778| +Journal of the Society of Applied Mechanics of Japan,Japan Society for Aeronautical and Space Sciences,1883549X +Journal of the Society of Architectural Historians,University of California Press,00379808|21505926 +Journal of the Society of Archivists,Informa UK (Taylor & Francis),00379816|14653907 +Journal of the Society of Biblical Literature and Exegesis,JSTOR,10698337| +Journal of the Society of Biomechanisms,Society of Biomechanisms Japan,02850885| +JOURNAL OF THE SOCIETY OF BREWING JAPAN,Brewing Society of Japan,0369416X|21864004 +Journal of the Society of Chemical Industry,Wiley Blackwell (John Wiley & Sons),03684075|19349971 +Journal of the Society of Christian Ethics,Muse - Johns Hopkins University Press,23262176 +Journal of the Society of Cosmetic Scientists of Korea,Society of Cosmetic Scientists of Korea,12262587| +Journal of the Society of Dyers and Colourists,Wiley Blackwell (Blackwell Publishing),00379859| +Journal of The Society of Japanese Women Scientists,The Society of Japanese Women Scientists,13494449|21863776 +Journal of the Society of Materials Engineering for Resources of Japan,The Society of Materials Engineering for Resources of Japan,09199853|18846610 +Journal of the Society of Materials Science Japan,The Society of Materials Science Japan,05145163|18807488 +Journal of the Society of Motion Picture and Television Engineers,Society of Motion Picture and Television Engineers,0898042X| +Journal of the Society of Motion Picture Engineers,Society of Motion Picture and Television Engineers,00975834| +Journal of the Society of Naval Architects of Japan,Japan Society of Naval Architects and Ocean Engineers,05148499|18842070 +Journal of the Society of Naval Architects of Korea,The Society of Naval Architects of Korea,12251143| +Journal of the Society of Powder Technology Japan,"""The Society of Powder Technology, Japan""",03866157|18837239 +Journal of the Society of Telegraph Engineers,Institution of Electrical Engineers,20540698 +Journal of the Society of Telegraph Engineers and of Electricians,Institution of Electrical Engineers,2054068X +Journal of the Society of Telegraph-Engineers and Electricians,Institution of Electrical Engineers,20540671 +Journal of the South African Forestry Association,Informa UK (Taylor & Francis),03759873| +Journal of the South African Institution of Civil Engineering,Academy of Science of South Africa,10212019|23098775 +Journal of the South African Veterinary Association,AOSIS,10199128|22249435 +Journal of the Southern African Institute of Mining and Metallurgy,Academy of Science of South Africa,0038223X|24119717 +Journal of the Southern Association for Information Systems,University of Michigan Library,23253940 +Journal of the Southwest,Muse - Johns Hopkins University Press,21581371 +Journal of the Spectroscopical Society of Japan,The Spectroscopical Society of Japan,00387002|18846785 +Journal of the Staple Inn Actuarial Society,Cambridge University Press,0020269X|0020269X +Journal of the Statistical Society of London,JSTOR,09595341| +Journal of The Surface Finishing Society of Japan,The Surface Finishing Society of Japan,09151869|18843409 +Journal of the T S Eliot Society of Korea,The T.S. Eliot Society of Korea,12255912| +Journal of the Taiwan Institute of Chemical Engineers,Elsevier ,18761070| +Journal of the Technological Society of Starch,The Japanese Society of Applied Glycoscience,04169662|18844871 +Journal of the Text Encoding Initiative,OpenEdition,21625603|21625603 +Journal of the Textile Institute,Informa UK (Taylor & Francis),00405000|17542340 +Journal of the Textile Institute Proceedings,Informa UK (Taylor & Francis),19447019| +Journal of the Textile Institute Transactions,Informa UK (Taylor & Francis),19447027| +Journal of the Textile Machinary Society,The Textile Machinery Society of Japan,18838715 +Journal of the Textile Machinery of Japan - Proceedings -,The Textile Machinery Society of Japan,18838731 +Journal of the Textile Machinery Society of Japan,The Textile Machinery Society of Japan,00405043|18811159 +Journal of the Textile Machinery Society of Japan - Transactions -,The Textile Machinery Society of Japan,18838723 +Journal of the Transportation Research Forum,Oregon State University,10461469| +Journal of the Turkish Academy of Dermatology,Society of Academy of Dermatology in Turkey,1307394X|1307394X +Journal of the Turkish Chemical Society Section A Chemistry,"""Journal of the Turkish Chemical Society, Section A: Chemistry""",21490120 +Journal of the Turkish Epilepsi Society,"""LookUs Bilisim, Ltd.""",13007157| +Journal of the Turkish-German Gynecological Association,AVES Publishing Co.,13090399|13090380 +Journal of the U S SJWP,Water Environment Federation,19328591 +Journal of the University Librarians Association of Sri Lanka,Sri Lanka Journals Online ,13914081| +Journal of the University of Ruhuna,Sri Lanka Journals Online ,23459387| +Journal of the Vacuum Society of Japan,Vacuum Society of Japan,18822398|18824749 +Journal of the Virtual Explorer,The Virtual Explorer Pty Ltd.,14418142 +Journal of the Visualization Society of Japan,The Visualization Society of Japan,09164731|1884037X +Journal of the Warburg and Courtauld Institutes,JSTOR,00754390| +Journal of the Warburg Institute,JSTOR,09592024| +Journal of the Washington Academy of Sciences,Smithsonian Institution Biodiversity Heritage Library,00430439| +Journal of the World Aquaculture Society,Wiley Blackwell (Blackwell Publishing),08938849|17497345 +Journal of the World Federation of Orthodontists,Elsevier ,22124438| +Journal of the World Mariculture Society,Wiley Blackwell (Blackwell Publishing),07350147| +Journal of the Yamashina Institute for Ornithology,Yamashina Institute for Ornithology,13485032|18820999 +Journal of Theatre Dance and Performance Training,Informa UK (Taylor & Francis),19443927|19443919 +Journal of thee Medical Sciences (Berkala Ilmu Kedokteran),Journal of the Medical Sciences (Berkala Ilmu Kedokteran),01261312|23563931 +Journal of theoretical and applied electronic commerce research,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7181876 +Journal of Theoretical and Applied Mechanics,Polish Society of Theoretical and Applied Mechanics,14292955| +Journal of Theoretical and Applied Mechanics,De Gruyter Open Sp. z o.o. ,08616663|08616663 +Journal of Theoretical and Applied Physics,Springer-Verlag,22517235|22517235 +Journal of Theoretical and Computational Chemistry,World Scientific ,02196336|17936888 +Journal of Theoretical and Computational Science,OMICS Publishing Group,2376130X +Journal of Theoretical and Philosophical Psychology,American Psychological Association,10688471|21513341 +Journal of Theoretical Biology,Elsevier ,00225193|10958541 +Journal of Theoretical Chemistry,Hindawi Publishing Corporation,23567686|23146184 +Journal of Theoretical Medicine,Hindawi Publishing Corporation,10273662|16078578 +Journal of Theoretical Politics,SAGE Publications,09516298|14603667 +Journal of Theoretical Probability,Springer-Verlag,08949840|15729230 +Journal of Therapeutic Ultrasound,Springer (Biomed Central Ltd.),20505736|20505736 +Journal of Therapy and Management in HIV Infection,Synergy Publishers,23090529 +Journal of Thermal Analysis and Calorimetry,Springer-Verlag,13886150|15728943 +Journal of Thermal Analysis and Calorimetry,Springer-Verlag,00225215|15728943 +Journal of Thermal Biology,Elsevier ,03064565| +Journal of Thermal Engineering,Journal of Thermal Engineering,21487847| +Journal of Thermal Envelope and Building Science,SAGE Publications,10971963| +Journal of Thermal Science,Springer-Verlag,10032169|1993033X +Journal of Thermal Science and Engineering Applications,ASME International ,19485085| +Journal of Thermal Science and Technology,The Japan Society of Mechanical Engineers,18805566 +Journal of Thermal Spray Technology,Springer-Verlag,10599630|00000000 +Journal of Thermal Stresses,Informa UK (Taylor & Francis),01495739|1521074X +Journal of Thermodynamics,Hindawi Publishing Corporation,16879244|16879252 +Journal of Thermodynamics & Catalysis,OMICS Publishing Group,21577544|21577544 +Journal of Thermophysics and Heat Transfer,American Institute of Aeronautics and Astronautics,08878722|15336808 +Journal of Thermoplastic Composite Materials,SAGE Publications,08927057|15307980 +Journal of Thoracic and Cardiovascular Surgery,Elsevier ,00225223| +Journal of Thoracic Disease,AME Publishing Company,20721439|20776624 +Journal of Thoracic Imaging,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,08835993| +Journal of Thoracic Oncology,Elsevier ,15560864| +Journal of Thought,JSTOR,225231 +Journal of Threat Assessment,Informa UK (Taylor & Francis),15332608|15332616 +Journal of Threat Assessment and Management,American Psychological Association,21694842|21694850 +Journal of Threatened Taxa,Wildlife Information Liaison Development Society,09747893|09747907 +Journal of Thrombosis and Haemostasis,Wiley Blackwell (Blackwell Publishing),15387933|15387836 +Journal of Thrombosis and Thrombolysis,Springer-Verlag,09295305|1573742X +Journal of Thyroid Disorders & Therapy,OMICS Publishing Group,21677948 +Journal of Thyroid Research,Hindawi Publishing Corporation,20908067|20420072 +Journal of Time Series Analysis,Wiley Blackwell (Blackwell Publishing),01439782|14679892 +Journal of Time Series Econometrics,Walter de Gruyter GmbH,21946507|19411928 +Journal of Tissue Culture Methods,Springer-Verlag,02718057| +Journal of Tissue Engineering,SAGE Publications,20417314|20417314 +Journal of Tissue Engineering and Regenerative Medicine,Wiley Blackwell (John Wiley & Sons),19326254|19327005 +Journal of Tissue Science & Engineering,OMICS Publishing Group,21577552 +Journal of Tissue Viability,Elsevier ,02680009| +Journal of Tissue Viability,Elsevier ,0965206X| +Journal of title-level DOIs,CrossRef test user, +Journal of Tongji Medical University,Springer-Verlag,0257716X| +Journal of Topology,Oxford University Press - London Mathematical Society,17538416|17538424 +Journal of Topology and Analysis,World Scientific ,17935253|17937167 +Journal of Tort Law,Walter de Gruyter GmbH,21946515|19329148 +Journal of Tourism & Hospitality,OMICS Publishing Group,21670269 +Journal of Tourism and Cultural Change,Informa UK (Taylor & Francis),14766825|17477654 +Journal of Tourism and Hospitality Management,American Research Institute for Policy Development,23725125|23725133 +Journal of Tourism and Recreation,Science and Education Centre of North America,23682655|23682663 +Journal of Tourism and Research,The Journal of Tourism and Research,21470618 +Journal of Tourism Futures,Emerald (MCB UP ),20555911| +Journal of Tourism History,Informa UK (Taylor & Francis),1755182X|17551838 +Journal of Tourism Insights,Grand Valley State University Libraries,23280824 +Journal of Tourism Management Research,Pak Publishing Group,24089117|23134178 +Journal of Tourism Management Research,Tourism Management Research Organization,2092528X| +Journal of Tourism Research & Hospitality,OMICS Publishing Group,23248807 +Journal of Tourism Sciences,The Tourism Sciences Society of Korea,12260533| +Journal of Toxicologic Pathology,The Japanese Society of Toxicologic Pathology,09149198|1881915X +Journal of Toxicology,Hindawi Publishing Corporation,16878191|16878205 +Journal of Toxicology and Environmental Health,Informa UK (Taylor & Francis),00984108| +Journal of Toxicology and Environmental Health Part A,Informa UK (Taylor & Francis),15287394|10872620 +Journal of Toxicology and Environmental Health Part B,Informa UK (Taylor & Francis),10937404|15216950 +Journal of Toxicology and Environmental Health Sciences,Academic Journals,20069820 +Journal of Toxicology and Health,Herbert Publications,20563779 +Journal of Toxicology Clinical Toxicology,Informa UK (Taylor & Francis),07313810| +Journal of Toxicology Cutaneous and Ocular Toxicology,Informa UK (Taylor & Francis),07313829| +Journal of Toxicology Research,Bioinfo Publications,09768769|09768777 +Journal of Toxicology Toxin Reviews,Informa UK (Taylor & Francis),07313837| +Journal of Toxins,Hindawi Publishing Corporation,23145048|23145056 +Journal of Toxins,Avens Publishing Group,23281723 +Journal of Trace Analysis in Food and Drugs,Columbia International Publishing,21629927 +Journal of Trace and Microprobe Techniques,Informa UK (Taylor & Francis),07334680|15322270 +Journal of Trace Element Analysis,Columbia International Publishing,21630038 +Journal of Trace Elements in Medicine and Biology,Elsevier ,0946672X| +Journal of Traditional and Complementary Medicine,Elsevier ,22254110| +Journal of Traditional Chinese Medical Sciences,Elsevier ,20957548| +Journal of Traditional Chinese Medicine,Elsevier ,02546272| +Journal of Traffic and Logistics Engineering,EJournal Publishing,23013680| +Journal of Traffic and Transportation Engineering,David Publishing Company,23282142|23282142 +Journal of Traffic and Transportation Engineering (English Edition),Elsevier ,20957564| +Journal of Training and Development,Nepal Journals Online,2392456X|23924578 +Journal of Trainology,Active Aging Research Center,21865264 +Journal of Transatlantic Studies,Informa UK (Taylor & Francis),14794012|17541018 +Journal of Transcultural Medieval Studies,Walter de Gruyter GmbH,21980357|21980365 +Journal of Transcultural Nursing,SAGE Publications,10436596|15527832 +Journal of Transformative Education,SAGE Publications,15413446|15527840 +Journal of Transformative Entrepreneurship,Centre for Postgraduate Studies,22893075|22894462 +Journal of Transfusion,Hindawi Publishing Corporation,20903073|20903081 +Journal of Translational Internal Medicine,Medknow Publications,22244018| +Journal of Translational Medicine,Springer (Biomed Central Ltd.),14795876|14795876 +Journal of Translational Proteomics Research,Cosmos Scholars Publishing House,24103802 +Journal of Translational Science,Open Access Text,2059268X +Journal of Translational Toxicology,American Scientific Publishers,2332242X| +Journal of Transnational Management,Informa UK (Taylor & Francis),15475778|15475786 +Journal of Transnational Management Development,Informa UK (Taylor & Francis),10686061|15287009 +Journal of Transplant Coordination,North American Transplant Coordinators Organization,09059199| +Journal of Transplantation,Hindawi Publishing Corporation,20900007|20900015 +Journal of Transplantation & Stem Cell Biology,Avens Publishing Group,23749326 +Journal of Transplantation Technologies & Research,OMICS Publishing Group,21610991 +Journal of Transport & Health,Elsevier ,22141405| +Journal of Transport and Land Use,Center for Transportation Studies,19387849 +Journal of Transport and Supply Chain Management,AOSIS,19955235|19955235 +Journal of Transport Geography,Elsevier ,09666923| +Journal of Transport Literature,SciELO,22381031 +Journal of Transport Literature,SciELO,22381031 +Journal of Transportation Engineering,American Society of Civil Engineers,0733947X|19435436 +Journal of Transportation Safety & Security,Informa UK (Taylor & Francis),19439962|19439970 +Journal of Transportation Security,Springer-Verlag,19387741|1938775X +Journal of Transportation Systems Engineering and Information Technology,Elsevier ,15706672| +Journal of Transportation Technologies,"""Scientific Research Publishing, Inc.""",21600473|21600481 +Journal of Trauma & Dissociation,Informa UK (Taylor & Francis),15299732|15299740 +Journal of Trauma & Treatment,OMICS Publishing Group,21671222 +Journal of Trauma and Acute Care Surgery,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,21630755| +Journal of Trauma and Acute Care Surgery,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,00225282| +Journal of Trauma and Injury,The Korean Society of Traumatology,17388767|22871683 +Journal of Trauma Management & Outcomes,Springer (Biomed Central Ltd.),17522897|17522897 +Journal of Trauma Nursing,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10787496| +Journal of Trauma Practice,Informa UK (Taylor & Francis),15362922|15362930 +Journal of Traumatic Stress,Wiley Blackwell (John Wiley & Sons),08949867|15736598 +Journal of Traumatic Stress Disorders & Treatment,OMICS Publishing Group,23248947 +Journal of Travel & Tourism Marketing,Informa UK (Taylor & Francis),10548408|15407306 +Journal of Travel Medicine,Oxford University Press,11951982|17088305 +Journal of Travel Research,SAGE Publications,00472875|00000000 +Journal of Tree Fruit Production,Informa UK (Taylor & Francis),10551387|15408590 +Journal of Tribology,ASME International ,07424787| +Journal of Tropical Diseases,OMICS Publishing Group,2329891X +Journal of Tropical Ecology,Cambridge University Press,02664674|14697831 +Journal of Tropical Medicine,Hindawi Publishing Corporation,16879686|16879694 +Journal of Tropical Microbiology and Biotechnology,African Journals Online ,16074106 +Journal of Tropical Pediatrics,Oxford University Press,01426338|14653664 +Journal of Tropical Psychology,Cambridge University Press,18389902 +Journal of Trust Management,Springer (Biomed Central Ltd.),2196064X|2196064X +Journal of Trust Research,Informa UK (Taylor & Francis),21515581|2151559X +Journal of Tuberculosis Research,"""Scientific Research Publishing, Inc.""",2329843X|23298448 +Journal of Turbomachinery,ASME International ,0889504X| +Journal of Turbulence,Informa UK (Taylor & Francis),14685248 +Journal of Turfgrass Management,Informa UK (Taylor & Francis),1070437X| +Journal of Turgut Ozal Medical Center,ScopeMed International Medical Journal Managment and Indexing System,13001744|13001744 +Journal of Turkish Association of Colorectal Surgeons,"""LookUs Bilisim, Ltd.""",13006835| +Journal of Turkish Research Institute,Journal of Turkish Research Institute,13009052| +Journal of Turkish Science Education,Eurasian Society of Educational Research,13046020 +Journal of Turkish Sleep Medicine,Galenos Yayinevi,21481504| +Journal of Turkish Society of Obstetric and Gynecology,Galenos Yayinevi,1307699X| +Journal of Turkish Studies,Journal of Turkish Studies,13082140| +Journal of Ubiquitous Computing and Intelligence,American Scientific Publishers,15551326|15551334 +Journal of Ubiquitous Systems and Pervasive Networks,International Association for Sharing Knowledge and Sustainability,19237324|19237332 +Journal of Ultrasonography,Medical Communications Sp. z.o.o.,20848404| +Journal of Ultrasound,Springer-Verlag,19713495|18767931 +Journal of Ultrasound in Medicine,American Institute of Ultrasound in Medicine,02784297|15509613 +Journal of Ultrastructure and Molecular Structure Research,Elsevier ,08891605| +Journal of Ultrastructure Research,Elsevier ,00225320| +Journal of Uncertainty Analysis and Applications,Springer (Biomed Central Ltd.),21955468|21955468 +Journal of Uncertainty in Mathematics Science,ISPACS GmbH,21982279 +Journal of Unconventional Oil and Gas Resources,Elsevier ,22133976| +Journal of Universal College of Medical Sciences,Nepal Journals Online,20912846|23508582 +Journal of Universal Surgery,Internet Medical Publishing,22546758 +Journal of University of Science and Technology Beijing Mineral Metallurgy Material,Elsevier ,10058850| +Journal of Unmanned Vehicle Systems,Canadian Science Publishing,22913467| +Journal of UOEH,"""The University of Occupational and Environmental Health, Japan""",0387821X|21872864 +Journal of Urban Affairs,Wiley Blackwell (Blackwell Publishing),07352166|14679906 +Journal of Urban and Environmental Engineering,Journal of Urban and Environmental Engineering,19823932|19823932 +Journal of Urban Cultural Studies,Intellect,20509790|20509804 +Journal of Urban Design,Informa UK (Taylor & Francis),13574809|14699664 +Journal of Urban Ecology,Oxford University Press,20585543 +Journal of Urban Economics,Elsevier ,00941190|10959068 +Journal of Urban Health,Springer-Verlag,10993460|14682869 +Journal of Urban History,SAGE Publications,00961442|15526771 +Journal of Urban Management,Elsevier ,22265856| +Journal of Urban Planning and Development,American Society of Civil Engineers,07339488|19435444 +Journal of Urban Technology,Informa UK (Taylor & Francis),10630732|14661853 +Journal of Urbanism International Research on Placemaking and Urban Sustainability,Informa UK (Taylor & Francis),17549175|17549183 +Journal of Urbanism International Research on Placemaking and Urban Sustainability,Informa UK (Taylor & Francis),17549175| +Journal of Urologic Pathology,Springer-Verlag,10671919 +Journal of Urological Surgery,Galenos Yayinevi,21489580| +Journal of Urology & Nephrology,Avens Publishing Group,23800585 +Journal of US-China Medical Science,David Publishing Company,15486648|19302088 +Journal of US-China Public Administration,David Publishing Company,15486591|19359691 +Journal Of Vacation Marketing,SAGE Publications,13567667|14791870 +Journal of Vaccine & Immunotechnology,Avens Publishing Group,23776668 +Journal of Vaccine Research,"""Sophia Publishing Group, Inc.""",19276486 +Journal of Vaccine Research and Development,Whioce Publishing Pte Ltd.,2382638X|23826398 +Journal of Vaccines,Hindawi Publishing Corporation,20907990|20907990 +Journal of Vaccines & Immunization,Noble Research Publishers,20531273 +Journal of Vaccines & Vaccination,OMICS Publishing Group,21577560|21577560 +Journal of Vacuum Science & Technology A Vacuum Surfaces and Films,American Vacuum Society,07342101|15208559 +Journal of Vacuum Science & Technology B Microelectronics and Nanometer Structures,American Vacuum Society,0734211X| +Journal of Vacuum Science & Technology B Nanotechnology and Microelectronics Materials Processing Measurement and Phenomena,American Vacuum Society,21662746|15208567 +Journal of Vacuum Science and Technology,American Vacuum Society,00225355| +Journal of Valuation,Emerald (MCB UP ),02637480| +Journal of Vascular Access Devices,Elsevier ,10830081| +Journal of Vascular and Interventional Radiology,Elsevier ,10510443| +Journal of Vascular Diagnostics,Dove Medical Press,23243430 +Journal of Vascular Medicine & Surgery,OMICS Publishing Group,23296925 +Journal of Vascular Nursing,Elsevier ,10620303| +Journal of Vascular Research,S. Karger AG,10181172|14230135 +Journal of Vascular Surgery,Elsevier ,07415214| +Journal of Vascular Surgery Cases,Elsevier ,2352667X| +Journal of Vascular Surgery Venous and Lymphatic Disorders,Elsevier ,2213333X| +Journal of Vasyl Stefanyk Precarpathian National University,Vasyl Stefanyk Precarpathian National University,23110155|24132349 +Journal of Vector Ecology,Wiley Blackwell (Blackwell Publishing),10811710|10811710 +Journal of Vegetable Crop Production,Informa UK (Taylor & Francis),10496467|15407357 +Journal of Vegetable Science,Informa UK (Taylor & Francis),15481689|15481697 +Journal of Vegetation Science,Wiley Blackwell (Blackwell Publishing),11009233|16541103 +Journal of Venereology,Hindawi Publishing Corporation,23148268 +Journal of Venomous Animals and Toxins,SciELO,01047930|01047930 +Journal of Venomous Animals and Toxins including Tropical Diseases,Springer (Biomed Central Ltd.),16789199|16789199 +Journal of Verbal Learning and Verbal Behavior,Elsevier ,00225371| +Journal of Verification Validation and Uncertainty Quantification,ASME International ,23772158| +Journal of Vertebrate Paleontology,Informa UK (Taylor & Francis),02724634|19372809 +Journal of Vestibular Research,IOS Press,09574271|09574271 +Journal of Veterinary Advances,ScopeMed International Medical Journal Managment and Indexing System,22517685 +Journal of Veterinary Behavior Clinical Applications and Research,Elsevier ,15587878| +Journal of Veterinary Cardiology,Elsevier ,17602734| +Journal of Veterinary Clinics,The Korean Society of Veterinary Clinics,1598298X| +Journal of Veterinary Diagnostic Investigation,SAGE Publications,10406387|19434936 +Journal of Veterinary Emergency and Critical Care,Wiley Blackwell (Blackwell Publishing),14356935|14356935 +Journal of Veterinary Emergency and Critical Care,Wiley Blackwell (Blackwell Publishing),14793261| +Journal of Veterinary Epidemiology,The Japan Society of Veterinary Epidemiology,13432583|09128913 +Journal of Veterinary Internal Medicine,Wiley Blackwell (Blackwell Publishing),08916640|19391676 +Journal of Veterinary Medical Education,University of Toronto Press Inc,0748321X|19437218 +Journal of Veterinary Medical Science,Japanese Society of Veterinary Science,09167250|13477439 +Journal of Veterinary Medicine,Hindawi Publishing Corporation,23567708|23146966 +Journal of Veterinary Medicine and Animal Health,Academic Journals,21412529 +Journal of Veterinary Medicine Series A,Wiley Blackwell (Blackwell Publishing),0931184X|14390442 +Journal of Veterinary Medicine Series B,Wiley Blackwell (Blackwell Publishing),09311793|14390450 +Journal of Veterinary Pharmacology and Therapeutics,Wiley Blackwell (Blackwell Publishing),01407783|13652885 +Journal of Veterinary Science,The Korean Society of Veterinary Science (KAMJE),1229845X|1976555X +Journal of Veterinary Science & Medical Diagnosis,OMICS Publishing Group,23259590 +Journal of Veterinary Science & Medicine,Avens Publishing Group,23254645 +Journal of Veterinary Science & Technology,OMICS Publishing Group,21577579 +Journal of Veterinary Science and Animal Husbandry,"""Annex Publishers, LLC""",23489790 +Journal of Vibration and Acoustics,ASME International ,07393717| +Journal of Vibration and Control,SAGE Publications,10775463|00000000 +Journal of Vibration and Wave Propagation,Columbia International Publishing,21629854 +Journal of Victorian Culture,Informa UK (Taylor & Francis),13555502|17500133 +Journal of Vietnamese Studies,University of California Press,1559372X|15593738 +Journal of Vinyl and Additive Technology,Wiley Blackwell (John Wiley & Sons),10835601|15480585 +Journal of Vinyl Technology,Wiley Blackwell (John Wiley & Sons),01937197| +Journal of Viral Hepatitis,Wiley Blackwell (Blackwell Publishing),13520504|13652893 +Journal of Virological Methods,Elsevier ,01660934| +Journal of Virology,American Society for Microbiology,0022538X|10985514 +Journal of Virology & Antiviral Research,OMICS Publishing Group,23248955 +Journal of Virology and Microbiology,IBIMA Publishing,23267011 +Journal of Virology Research,Bioinfo Publications,09768785|09768793 +Journal of Virtual Worlds Research,Virtual Worlds Research Consortium,19418477 +Journal of Viruses,Hindawi Publishing Corporation,23567716|2314646X +Journal of Visceral Surgery,Elsevier ,18787886| +Journal of Vision,Association for Research in Vision and Opthalmology,15347362|15347362 +Journal of Visual Art and Design,The Institute for Research and Community Services ITB,23375795|23385480 +Journal of Visual Art Practice,Informa UK (Taylor & Francis),14702029|17589185 +Journal of Visual Communication and Image Representation,Elsevier ,10473203|10959076 +Journal of Visual Communication in Medicine,Informa UK (Taylor & Francis),17453054|17453062 +Journal of Visual Culture,SAGE Publications,14704129|00000000 +Journal of Visual Languages & Computing,Elsevier ,1045926X|10958533 +Journal of Visualization,Springer-Verlag,13438875|18758975 +Journal of Visualized Experiments,MyJoVE Corporation,1940087X +Journal of Visualized Surgery,AME Publishing Company,22212965 +Journal of Vocational Behavior,Elsevier ,00018791|10959084 +Journal of Vocational Education and Training,Informa UK (Taylor & Francis),13636820|17475090 +Journal of Vocational Education Research,Association for Career and Technical Education Research,07393369| +Journal of Vocational Rehabilitation,IOS Press,10522263|10522263 +Journal of Voice,Elsevier ,08921997| +Journal of Volcanology and Geothermal Research,Elsevier ,03770273| +Journal of Volcanology and Seismology,Pleiades Publishing,07420463|18197108 +Journal of Vortex Science and Technology,OMICS Publishing Group,20908350|20908369 +Journal of War and Culture Studies,Maney Publishing,17526272|17526280 +Journal of Waste Conversion Bioproducts and Biotechnology – ISSN 2155-1804,"""Atlas Scienfitic Publishing, LP""",21551804 +Journal of Waste Management,Hindawi Publishing Corporation,23567724|23146052 +Journal of Waste Water Treatment & Analysis,OMICS Publishing Group,21577587 +Journal of Water and Climate Change,IWA Publishing,20402244|24089354 +Journal of Water and Environment Technology,Japan Society on Water Environment,13482165 +JOURNAL OF WATER AND ENVIRONMENTAL ISSUES,Japanese Association of Water Resources and Environment,09138277|18839398 +Journal of Water and Health,IWA Publishing,14778920|19967829 +Journal of Water and Land Development,De Gruyter Open Sp. z o.o. ,14297426|20834535 +Journal of Water Chemistry and Technology,Allerton Press,1063455X|1934936X +Journal of Water Management Modeling,Computational Hydraulics International,22926062 +Journal of Water Process Engineering,Elsevier ,22147144| +Journal of Water Resource and Hydraulic Engineering,The World Academic Publishing,23067705|23067691 +Journal of Water Resource and Protection,"""Scientific Research Publishing, Inc.""",19453094|19453108 +Journal of Water Resources and Ocean Science,Science Publishing Group,23287969| +Journal of Water Resources Planning and Management,American Society of Civil Engineers,07339496|19435452 +Journal of Water Resources Research,Hans Publishers,21666024|21665982 +Journal of Water Reuse and Desalination,IWA Publishing,22201319|24089370 +Journal of Water Sanitation and Hygiene for Development,IWA Publishing,20439083|24089362 +Journal of Water Security,Aleksandras Stulginskis University,23450363 +Journal of Water Supply Research and Technology—AQUA,IWA Publishing,00037214|16053974 +Journal of Waterway Port Coastal and Ocean Engineering,American Society of Civil Engineers,0733950X|19435460 +Journal of Web Librarianship,Informa UK (Taylor & Francis),19322909|19322917 +Journal of Website Promotion,Informa UK (Taylor & Francis),15533611|1553362X +Journal of Weed Science and Technology,The Weed Science Society of Japan ,0372798X|18824757 +Journal of Welding and Joining,The Korean Welding and Joining Society,12256153| +Journal of West African History,Michigan State University Press,23271868|23271868 +Journal of Wetland Archaeology,Maney Publishing,14732971|20516231 +Journal of Wetlands Ecology,Nepal Journals Online,20910363| +Journal of Wetlands Research,Korean Wetlands Society,12296031| +Journal of Whiplash & Related Disorders,Informa UK (Taylor & Francis),15332888|15332896 +Journal of Wide Bandgap Materials,SAGE Publications,1524511X| +Journal of Wilderness Medicine,Elsevier - Wilderness Medical Society,09539859| +Journal of Wildlife Diseases,Wildlife Disease Association,00903558| +Journal of Wildlife Management,Wiley Blackwell (Blackwell Publishing),0022541X|19372817 +Journal of Wind Energy,Hindawi Publishing Corporation,23567732|23146249 +Journal of Wind Engineering,Japan Association for Wind Engineering,13493507|1349340X +Journal of Wind Engineering and Industrial Aerodynamics,Elsevier ,01676105| +Journal of Wine Economics,Cambridge University Press,19314361|1931437X +Journal of Wine Economics,Cambridge University Press,19314361|1931437X +Journal of Wine Research,Informa UK (Taylor & Francis),09571264|14699672 +Journal of Wireless Networking and Communications,Scientific and Academic Publishing,21677328| +Journal of Woman’s Reproductive Health,Open Access Pub,2381862X +Journal of Women & Aging,Informa UK (Taylor & Francis),08952841|15407322 +Journal of Women and Minorities in Science and Engineering,Begell House Inc.,10728325| +Journal of Women Politics & Policy,Informa UK (Taylor & Francis),1554477X|15544788 +Journal of Women s Health,Mary Ann Liebert,15409996|1931843X +Journal of Women s Health & Gender-Based Medicine,Mary Ann Liebert,15246094|15246094 +Journal of Women s Health & Gender-Based Medicine,Mary Ann Liebert,15246094| +Journal of Women s Health Care,OMICS Publishing Group,21670420 +Journal of Women s History,Muse - Johns Hopkins University Press,15272036 +Journal of Women s Imaging,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,1084824X| +Journal of Women s Medicine,Korean Society of Obstetrics and Gynecology (KAMJE),20050321| +Journal of Womenʼs Health Physical Therapy,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15566803| +Journal of Women’s Health Issues & Care,OMICS Publishing Group,23259795 +Journal of Wood Chemistry and Technology,Informa UK (Taylor & Francis),02773813|15322319 +Journal of Wood Science,Springer-Verlag,14350211|16114663 +Journal of Workplace Behavioral Health,Informa UK (Taylor & Francis),15555240|15555259 +Journal of Workplace Learning,Emerald (MCB UP ),13665626|00000000 +Journal of Workplace Rights,CrossRef test user,19384998|19385005 +Journal of World Business,Elsevier ,10909516| +Journal of World Christianity,The Pennsylvania State University Press,23778784 +Journal of World Economic Research,Science Publishing Group,2328773X| +Journal of World History,Muse - Johns Hopkins University Press,15278050 +Journal of World Languages,Informa UK (Taylor & Francis),21698252|21698260 +Journal of World Literature,Brill Academic Publishers,24056472|24056480 +Journal of World Popular Music,Equinox Publishing,20524900|20524919 +Journal of World Prehistory,Springer-Verlag,08927537|15737802 +Journal of World Trade,Springer (Kluwer Academic Publishers),10116702| +Journal of World-Historical Information,"""University Library System, University of Pittsburgh""",21690812 +Journal of World-Systems Research,"""University Library System, University of Pittsburgh""",1076156X +Journal of Wound Care,Mark Allen Group,09690700|20522916 +Journal of Wound Ostomy and Continence Nursing,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10715754| +Journal of Wrist Surgery,Thieme Publishing Group,21633916|21633924 +Journal of Writing in Creative Practice,Intellect,17535190|17535204 +Journal of Writing Research,Gert Rijlaarsdam/SIG Writing,20301006|22943307 +JOURNAL OF WUHAN BOTANICAL RESEARCH,China Science Publishing & Media Ltd.,1000470X| +Journal of Wuhan University of Technology-Mater Sci Ed,Springer-Verlag,10002413|19930437 +Journal of X-Ray Science and Technology,IOS Press,08953996|10959114 +Journal of Xenobiotics,PAGEPress Publications,20394705|20394713 +Journal of Yaşar University,Journal of Yasar University,1305970X| +Journal of Yeast and Fungal Research,Academic Journals,21412413 +Journal of Yoga & Physical Therapy,OMICS Publishing Group,21577595 +Journal of Young Medical Researchers,EMED Publishing,23479418|23479418 +Journal of Young Pharmacists,EManuscript Services,09751483|09751505 +Journal of Youngsan Theology,Youngsan Theological Institute,17381509| +Journal of Youth and Adolescence,Springer-Verlag,00472891|15736601 +Journal of Youth and Theology,Brill Academic Publishers,17410819|24055093 +Journal of Youth Studies,Informa UK (Taylor & Francis),13676261|14699680 +Journal of Zankoy Sulaimani,Journal of Zankoy Sulaimani - Part A,18124100|18124100 +Journal of Zhejiang University SCIENCE A,Zhejiang University Press,10093095|18621775 +Journal of Zhejiang University SCIENCE B,Zhejiang University Press,16731581|18621783 +Journal of Zhejiang University SCIENCE C,Zhejiang University Press,18691951|1869196X +Journal of Zoo and Wildlife Medicine,BioOne (American Association of Zoo Veterinarians),10427260|19372825 +Journal of Zoological Systematics & Evolutionary Research,Wiley Blackwell (Blackwell Publishing),09475745|14390469 +Journal of Zoology,Wiley Blackwell (Blackwell Publishing),09528369|14697998 +Journal of Zosen Kiokai,Japan Society of Naval Architects and Ocean Engineers,18842062 +Journal on Chain and Network Science,Wageningen Academic Publishers,15691829|18750931 +Journal on Computing and Cultural Heritage,Association for Computing Machinery,15564673| +Journal on Data Semantics,Springer-Verlag,18612032|18612040 +Journal on Educational Resources in Computing,Association for Computing Machinery,15314278| +Journal on Efficiency and Responsibility in Education and Science,Czech University of Life Sciences Prague,23362375|18031617 +Journal on Migration and Human Security,Center for Migration Studies,23315024|23302488 +Journal on Multimodal User Interfaces,Springer-Verlag,17837677|17838738 +Journal on Policy and Complex Systems,Policy Studies Organization,23728590 +Journal on Selected Topics in Nano Electronics and Computing,Petrozavodsk State University,23111801 +Journal on the Use of Force and International Law,Informa UK (Taylor & Francis),20531702|20531710 +Journal on Today s Ideas-Tomorrow s Technologies,Chitkara University Publications,23213906|23217146 +Journal Tunisien d ORL et de Chirurgie Cervico-Faciale,African Journals Online ,17377803 +Journal-Cardiovascular Surgery,ScopeMed International Medical Journal Managment and Indexing System,21476535 +Journalism,SAGE Publications,14648849|00000000 +Journalism & Communication Monographs,SAGE Publications,15226379|21614342 +Journalism & Mass Communication Educator,SAGE Publications,10776958|21614326 +Journalism & Mass Communication Quarterly,SAGE Publications,10776990|2161430X +Journalism and Communications,Hans Publishers,23304766|23304774 +Journalism and Mass Communication,David Publishing Company,21606579|21606579 +Journalism Practice,Informa UK (Taylor & Francis),17512786|17512794 +Journalism Studies,Informa UK (Taylor & Francis),1461670X|14699699 +Journées Équations aux dérivées partielles,Cellule MathDoc/CEDRAM,07520360|21189366 +Journeys,Berghahn Books,14652609|17522358 +Joyce Studies Annual,University of Texas Press,10490809|15384241 +JP Journal of Algebra Number Theory and Applications,Pushpa Publishing House,09725555| +JP Journal of Biostatistics,Pushpa Publishing House,09735143| +JP Journal of Fixed Point Theory and Applications,Pushpa Publishing House,09734228| +JP Journal of Geometry and Topology,Pushpa Publishing House,0972415X| +JP Journal of Heat and Mass Transfer,Pushpa Publishing House,09735763| +jpa,American Society of Agronomy,8908524 +JPAIR Institutional Research,Philippine Association of Institutions for Research ,22441824|22441816 +JPAIR Multidisciplinary Research,Philippine Association of Institutions for Research ,20123981|22440445 +JPC - Journal of Planar Chromatography - Modern TLC,Akademiai Kiado Zrt.,09334173|17890993 +JPO Journal of Prosthetics and Orthotics,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10408800| +JPRAS Open,Elsevier ,23525878| +JPSJ News and Comments,Physical Society of Japan,2188076X| +JRSM Cardiovascular Disease,SAGE Publications,20480040|20480040 +JRSM Open,SAGE Publications,20542704|20542704 +JRSM Short Reports,SAGE Publications,20425333|20425333 +JSAE Review,Elsevier ,03894304| +JSIAM Letters,The Japan Society for Industrial and Applied Mathematics,18830609|18830617 +JSLS Journal of the Society of Laparoendoscopic Surgeons,The Society of Laparoendoscopic Surgeons,10868089|19383797 +JSM Mycotoxins,Japanese Association of Mycotoxicology,02851466|18810128 +JSME international journal,The Japan Society of Mechanical Engineers,0913185X| +JSME international journal Ser 3 Vibration control engineering engineering for industry,The Japan Society of Mechanical Engineers,09148825| +JSME international journal Ser C Dynamics control robotics design and manufacturing,The Japan Society of Mechanical Engineers,13408062| +JSME International Journal Series A,The Japan Society of Mechanical Engineers,13447912|13475363 +JSME International Journal Series B,The Japan Society of Mechanical Engineers,13408054|13475371 +JSME International Journal Series C,The Japan Society of Mechanical Engineers,13447653|1347538X +JSTS Journal of Semiconductor Technology and Science,The Institute of Electronics Engineers of Korea,15981657| +JUCS - Journal of Universal Computer Science,Verlag der Technischen Universitat Graz,0948695X|09486968 +Judaica Librarianship,Association of Jewish Libraries,23302976 +Judaïsme Ancien - Ancient Judaism,"""Brepols Publishers, NV""",22949321| +Judicial Review,Informa UK (Taylor & Francis),10854681|17578434 +Jugend Medien Schutz-Report,Nomos Verlag,01705067| +Jugoslovenska medicinska biohemija,National Library of Serbia,03543447| +JuKiP - Ihr Fachmagazin für Gesundheits- und Kinderkrankenpflege,Thieme Publishing Group,14392569|14399164 +Juncture,Wiley Blackwell (Blackwell Publishing),20505868| +Jundishapur Journal of Chronic Disease Care,International Neuroscience Institute,23224207 +Jundishapur Journal of Health Sciences,International Neuroscience Institute,2252021X|22520627 +Jundishapur Journal of Microbiology,Kowsar Medical Institute,20083645|20084161 +Jundishapur Journal of Natural Pharmaceutical Products,International Neuroscience Institute,17357780|22287876 +Jung Journal,Informa UK (Taylor & Francis),19342039|19342047 +Juntendo Medical Journal,The Jutendo Medical Journal,21879737|21882134 +JURA - Juristische Ausbildung,Walter de Gruyter GmbH,01701452|16127021 +Juridica International,University of Tartu Press,14061082|14065509 +Jurídicas CUC,Corporacion Universidad de la Costa - CUC,16923030|23897716 +Jurimetría Revista Chilena de Informática Jurídica,Universidad de Chile,07179154|07179154 +Juris Prudentia,The Russian Law Academy of the Ministry of Justice of the RF,24114898 +Jurisprudence,Informa UK (Taylor & Francis),20403313|20403321 +Jurisprudence,Mykolas Romeris University,20292058|20292058 +JuristenZeitung,Mohr Siebeck,00226882|00000000 +Juristische Blätter,Springer-Verlag,00226912|16137639 +Juristische Rundschau,Walter de Gruyter GmbH,00226920|16127064 +Jurnal Agripet,Agricultural Faculty,14114623|24604534 +Jurnal Akuakultur Indonesia,Jurnal Akuakultur Indonesia,14125269| +Jurnal Akuntansi & Auditing Indonesia,Universitas Islam Indonesia (Islamic University of Indonesia),14102420| +Jurnal Akuntansi dan Keuangan,Petra Christian University,14110288|14110288 +Jurnal Akuntansi dan Keuangan Indonesia,Jurnal Akuntnasi Dan Keuangan Indonesia,18298494|24069701 +Jurnal Akuntansi Multiparadigma,"""Faculty of Economics, University of Brawijaya""",20867603|20895879 +Jurnal Anestesi Perioperatif,Jurnal Anestesi Perioperatif (JAP),23377909|23388463 +Jurnal Antarabangsa Alam dan Tamadun Melayu,Penerbit Universiti Kebangsaan Malaysia (UKM Press),22891706|22894268 +Jurnal Aplikasi Bisnis dan Manajemen,"""Graduate Program of Management and Business, Bogor Agricultural University""",24607819 +Jurnal Aplikasi Teknologi Pangan,Indonesian Food Technologists,20897693| +Jurnal Bahan Alam Terbarukan,"""Department of Drama, Dance and Music, Semarang State Universtiy""",23030623| +Jurnal Bahasa & Sastra,Universitas Pendidikan Indonesia,14120712| +JURNAL CITA HUKUM,E-Journal System Portal of Syarif Hidayatullah State Islamic University,23561440| +Jurnal Dinamika Manajemen,"""Department of Drama, Dance and Music, Semarang State Universtiy""",20860668|23375434 +Jurnal Ekonomi Malaysia,Penerbit Universiti Kebangsaan Malaysia (UKM Press),01271962| +Jurnal Ekonomi MODERNISASI,University of Kanjuruhan Malang,0216373X|25024078 +Jurnal Entomologi Indonesia,Entomological Society of Indonesia/Perhimpunan Entomologi Indonesia,18297722|20890257 +Jurnal Fitopatologi Indonesia,The Indonesian Phytopathological Society,23392479|23392479 +Jurnal Ilmu Dakwah,Sunan Gunung Djati State Islamic University of Bandung,16930843|24075469 +Jurnal Ilmu Lingkungan,Institute of Research and Community Services Diponegoro University (LPPM UNDIP),18298907| +Jurnal Ilmu Pendidikan,State University of Malang (UM),24428655 +Jurnal Ilmu Pertanian Indonesia,"""JIPI, Lembaga Penelitian dan Pengabdian kepada Masyarakat""",08534217|24433462 +Jurnal Ilmu Ternak dan Veteriner,"""Indonesian Center for Animal Research and Devleopment, ICARD""",08537380|2252696X +Jurnal Ilmu Ushuluddin,IAIN Antasari,14125188| +Jurnal Informatika,Petra Christian University,14110105|14110105 +Jurnal Informatika Telekomunikasi dan Elektronika,LPPM ST3 Telkom Purwokerto,20853688|24600997 +Jurnal kedokteran dan kesehatan Indonesia,Universitas Islam Indonesia (Islamic University of Indonesia),20854145| +Jurnal Kedokteran Hewan - Indonesian Journal of Veterinary Sciences,"""Faculty of Veterinary Medicine, Syiah Kuala University (IVMA)""",1978225X|25025600 +Jurnal Kejuruteraan,Penerbit Universiti Kebangsaan Malaysia (UKM Press),01280198|22897526 +Jurnal Kesehatan Masyarakat,"""Department of Drama, Dance and Music, Semarang State Universtiy""",18581196|23553596 +Jurnal Kesehatan Masyarakat (Journal of Public Health),Universitas Ahmad Dahlan ,19780575|19780575 +Jurnal Keteknikan Pertanian,Department of Mechanical and Biosystem Engineering IPB,24070475|23388439 +Jurnal Komunitas Research and Learning in Sociology and Anthropology,"""Department of Drama, Dance and Music, Semarang State Universtiy""",20865465|23375426 +Jurnal Manajemen dan Agribisnis,"""Graduate Program of Management and Business, Bogor Agricultural University""",16935853|24072524 +Jurnal Manajemen dan Kewirausahaan (Journal of Management and Entrepreneurship),Petra Christian University,14111438|14111438 +Jurnal Manajemen Hutan Tropika (Journal of Tropical Forest Management),Department of Forest Managment,20870469|20892063 +Jurnal Manajemen Pemasaran,Petra Christian University,1907235X|1907235X +Jurnal Manajemen Perhotelan,Petra Christian University,02166283|02166283 +Jurnal Manajemen Teknologi,"""School of Business and Management, Institut Teknologui Bandung""",14121700|20897928 +Jurnal Medika Veterinaria,"""Faculty of Veterinary Medicine, Syiah Kuala University (IVMA)""",08531943|08531943 +Jurnal Nasional Teknik Elektro,"""Electrical Engineering Department, Andalas University""",23022949|24077267 +JURNAL NEUTRINO,Maulana Malik Ibrahim State Islamic University,19796374|24605999 +jurnal pendidikan humaniora,State University of Malang (UM),24423890 +Jurnal Pendidikan Islam,Al-Jami'ah Research Centre,23019166|23563877 +Jurnal Pendidikan Malaysia,Penerbit Universiti Kebangsaan Malaysia (UKM Press),21800782| +Jurnal Penelitian Hasil Hutan,"""Research, Development and Innovation Agency, Ministry of Environment and Forestry""",02164329|24428957 +Jurnal Penelitian Kehutanan Wallacea,Balai Penelitian Kehutanan Makassar (Forestry Research Institute of Makassar),2302299X|24077860 +Jurnal Penelitian Komunikasi,BPPKI Bandung - Kementerian Komunikasi Dan Informatika RI,14108291|24600172 +Jurnal Pengajaran Matematika dan Ilmu Pengetahuan Alam,Faculty of Mathematics and Science Education,14120917| +Jurnal Pengembangan Kota,Institute of Research and Community Services Diponegoro University (LPPM UNDIP),23377062| +Jurnal Pengolahan Hasil Perikanan Indonesia,Indonesian Society Fisheries Product Processing,23032111|2354886X +Jurnal Pengurusan,Penerbit Universiti Kebangsaan Malaysia (UKM Press),01272713| +Jurnal Perencanaan Wilayah dan Kota,The Institute for Research and Community Services ITB,08539847|24423866 +JURNAL PROMOSI KESEHATAN INDONESIA,Institute of Research and Community Services Diponegoro University (LPPM UNDIP),19072937| +Jurnal Psikologi Undip,Institute of Research and Community Services Diponegoro University (LPPM UNDIP),16935586|23021098 +Jurnal Rekayasa Elektrika,Jurnal Rekayasa Elektrika (JRE),14124785|2252620X +Jurnal Riset Ekonomi dan manajemen,Indonesian Economist Association,14121824|24431265 +Jurnal RISET Geologi dan Pertambangan,Indonesian Institute of Sciences,01259849|23546638 +Jurnal Sains Kesihatan Malaysia,Penerbit Universiti Kebangsaan Malaysia (UKM Press),16758161|22894535 +Jurnal Siasat Bisnis,Universitas Islam Indonesia (Islamic University of Indonesia),08537666| +Jurnal Sosioteknologi,The Institute for Research and Community Services ITB,18583474|2443258X +Jurnal TANAH TROPIKA (Journal of Tropical Soils),Journal of Tropical Soils,0852257X|20866682 +Jurnal Tataloka,Institute of Research and Community Services Diponegoro University (LPPM UNDIP),08527458|23560266 +Jurnal Teknik Elektro,Petra Christian University,1411870X|1411870X +Jurnal Teknik Industri,Petra Christian University,14112485|20877439 +Jurnal Teknik Mesin,Petra Christian University,14109867|14109867 +Jurnal Teknologi,Penerbit UTM Press,01279696|21803722 +Jurnal Teknologi dan Industri Pangan,"""Department of Food Science and Technology, Bogor Agricultural University""",19797788|2087751X +Jurnal Teknologi dan Industri Pertanian Indonesia,Agricultural Faculty,20854927|24427020 +jurnal veteriner,Jurnal Veteriner,14118327|24775665 +Jurnal Wasian,"""Research, Development and Innovation Agency, Ministry of Environment and Forestry""",23559969|25025198 +Jurnal Wilayah dan Lingkungan,Institute of Research and Community Services Diponegoro University (LPPM UNDIP),23381604|24078751 +Jurnalul de Chirurgie,Jurnalul de Chirurgie Journal of Surgery,15849341|15849341 +JurPC,Recht Feur Deutschland GmbH,16155335| +Jussens Venner,Scandinavian University Press / Universitetsforlaget AS,00226971|15043126 +Justice Quarterly,Informa UK (Taylor & Francis),07418825|17459109 +Justice Research and Policy,Justice Research & Statistics Association,15251071|19428022 +Justice System Journal,Informa UK (Taylor & Francis),0098261X|23277556 +Justicia,Universidad Simon Bolivar,01247441| +Justicia juris,Universidad Autonoma del Caribe,16928571|22161341 +Justitiële verkenningen,Boom Uitgevers Den Haag,01675850| +Justus Liebig s Annalen der Chemie,Wiley Blackwell (John Wiley & Sons),00754617|10990690 +JUTI Jurnal Ilmiah Teknologi Informasi,Lembaga Penelitian dan Pengabdian kepada Masyarakat ITS,14126389|24068535 +Juvenile and Family Court Journal,Wiley Blackwell (Blackwell Publishing),01617109|17556988 +Juvenile Court Judges Journal,Wiley Blackwell (Blackwell Publishing),00227153| +Juvenile Justice,Wiley Blackwell (Blackwell Publishing),00937231| +Juznoslovenski filolog,National Library of Serbia,0350185X|24060763 +K,Ankara University,13017241 +k ta,Petra Christian University,14112639|14112639 +K-Theory,Portico,09203036|15730514 +Ka Ho oilina/The Legacy,Muse - Johns Hopkins University Press,15424243 +Kadın ve İşlevsel Üroloji Bülteni,Galenos Yayinevi,21462291| +Kadmos,Walter de Gruyter GmbH,00227498|16130723 +KAF,Universidad Nacional del Litoral,15565483| +Kafa`ah Journal of Gender Studies,Institut Agama Islam Negeri (IAIN) Imam Bonjol Padang,23560894|23560630 +Kafkas Journal of Medical Sciences,"""LookUs Bilisim, Ltd.""",13074504| +Kafkas Üniversitesi İktisadi ve İdari Bilimler Fakültesi Dergisi,Kafkas University,13094289| +Kafkas Üniversitesi İlahiyat Fakültesi Dergisi,Kafkas University Faculty of Divinity Review,21488177| +Kafkas Universitesi Sosyal Bilimler Enstitüsü Dergisi,Kafkas University,13075500| +Kafkas Universitesi Veteriner Fakultesi Dergisi,Kafkas University,13006045| +KAGAKU KOGAKU RONBUNSHU,The Society of Chemical Engineers Japan,0386216X|13499203 +Kagaku tetsugaku,"""The Philosophy of Science Society, Japan""",02893428|18836461 +KAGAKU TO SEIBUTSU,"""Japan Society for Bioscience, Biotechnology, and Agrochemistry""",0453073X|18836852 +Kahramanmaraş Sütçü İmam Üniversitesi Doğa Bilimleri Dergisi,Journal of Natural Sciences,13091743 +Kahramanmaraş Sütçü İmam Üniversitesi Mühendislik Bilimleri Dergisi,Kahramanmaras Sutcu Imam University Journal of Engineering Sciences,13091751|13091751 +Kakuyūgō kenkyū,Japan Society of Plasma Science and Nuclear Fusion Research,04512375|18849571 +Kalbotyra / Linguistics,Vilnius University,13921517|20298315 +Kalbotyra / Linguistics,Vilnius University,13921517|20298315 +Kaleidoscope History,Kaleidoscope History,20622597|20622597 +Kalemisi Dergisi,Sada Institute,2148046X +Kalfou A Journal of Comparative and Relational Ethnic Studies,Temple University Press,21514712|23720751 +Kamchatka Revista de análisis cultural,Universitat de Valencia,23401869 +Kampo Medicine,Japan Society for Oriental Medicine,02874857|1882756X +Káñina,Universidad de Costa Rica,03780473|22152636 +Kansas Law Review,The University of Kansas,00834025| +Kansas Library Association College and University Libraries Section Proceedings,New Prairie Press,2160942X +Kansas Working Papers in Linguistics,The University of Kansas,10433805| +KANSEI Engineering International,Japan Society of Kansei Engineering,13451928|18845231 +Kansei Engineering International Journal,Japan Society of Kansei Engineering,18840841|21857865 +Kansenshogaku zasshi,The Japanese Association for Infectious Diseases,03875911|1884569X +Kant-Studien,Walter de Gruyter GmbH,00228877|16131134 +Kantian Review,Cambridge University Press,13694154|20442394 +Kantovskij sbornik,Immanuel Kant Baltic Federal University,02076918|23103701 +Kanz Philosophia A Journal for Islamic Philosophy and Mysticism,Sekolah Tinggi Filsafat Islam (STFI) Sadra,24425451|24071056 +Kanzo,The Japan Society of Hepatology,04514203|18813593 +Kapal,Chemical Engineering Diponegoro University,18298370|23019069 +Kappa Delta Pi Record,Informa UK (Taylor & Francis),00228958|21631611 +Karabuk University Journal of Institute of Social Sciences,Karabuk University Journal of Institute of Social Sciences,21477841| +Karadeniz Arastirmalari Merkezi,Karadeniz Arastirmalari Merkezi,13046918| +Karadeniz İncelemeleri Dergisi,Karadeniz Incelemeleri Dergisi,21464642| +Karaelmas Science and Engineering Journal,Zonguldak Karaelmas University - Karaelmas Science and Engineering Journal,21464987|21467277 +Karaite Archives,Adam Mickiewicz University Poznan,23532327| +Karamanoğlu Mehmetbey Üniversitesi Sosyal Ve Ekonomik Araştırmalar Dergisi,Karamanoglu Mehmetbey Universitesi Sosyal ve Ekonomik Arastirmalar Dergisi,13099132|21477833 +Karbala International Journal of Modern Science,Elsevier ,2405609X| +Kardiologia Polska,VM Media Sp zo.o. - VMGroup SK,00229032|18974279 +Kardiologie up2date,Thieme Publishing Group,16116534|18603513 +Kardiologiia,Bionika Media,00229040| +Karger Kompass Dermatologie,S. Karger AG,22965424|2296536X +Karger Kompass Onkologie,S. Karger AG,22965416|22965386 +Karger Kompass Ophthalmologie,S. Karger AG,22970118|22970045 +Karger Kompass Pneumologie,S. Karger AG,22960368|22960317 +Karnataka Anaesthesia Journal,Medknow Publications,23946954| +KARSA Jurnal Sosial dan Budaya Keislaman,Sekolah Tinggi Agama Islam Negeri (STAIN) Pamekasan,24423289|24424285 +Karthago,Peeters Publishers,4533429 +Karthago,Peeters Publishers,4533429 +KAS African Law Study Library - Librairie Africaine d’Etudes Juridiques,Nomos Verlag,23636262|23636262 +Kasetsart Journal of Social Sciences,Elsevier ,24523151| +Kasr El Aini Medical Journal,Medknow Publications,16874625| +Kastamonu University Journal of Forestry Faculty,Kastamonu University Journal of Forestry Faculty,13032399|13032399 +Kataliz v promyshlennosti,Kalvis,18160387|24136476 +Katherine Mansfield Studies,Edinburgh University Press,20414501|2041451X +Kathmandu University Journal of Science Engineering and Technology,Nepal Journals Online,18168752 +Kathmandu University Medical Journal,Nepal Journals Online,18122027|18122078 +Kaygı Uludağ Üniversitesi Fen-Edebiyat Fakültesi Felsefe Dergisi,Kaygi,13034251| +Kazanskiy meditsinskiy zhurnal,Kazan Medical Journal,03684814| +Kazoku syakaigaku kenkyu,Japan Society of Family Sociology,0916328X|18839290 +KCA Journal of Business Management,African Journals Online ,20727992|20712162 +Keats-Shelley Review,Maney Publishing,09524142|20421362 +Keiei Shigaku (Japan Business History Review),Business History Society of Japan,03869113|18838995 +KELAM ARAŞTIRMALARI DERGİSİ,Kelam Arastirmalari Dergisi (Journal of Kalam Studies),13092030 +Kelaniya Journal of Management,Sri Lanka Journals Online ,22791469|24489298 +Keldysh Institute Preprints,Keldysh Institute of Applied Mathematics,20712898|20712901 +Kemija u industriji,Croatian Society of Chemical Engineers/HDKI,00229830|13349090 +Kennedy Institute of Ethics Journal,Muse - Johns Hopkins University Press,10863249 +Kentucky Foreign Romance Quarterly,Informa UK (Taylor & Francis),00230332| +Kentucky Romance Quarterly,Informa UK (Taylor & Francis),03648664| +Kenya Veterinarian,African Journals Online ,2565161 +KEPCO Journal on Electric Power and Energy,Korea Electric Power Corporation,24658111| +Kepes,Universidad de Caldas,17947111|24628115 +Képzés és Gyakorlat neveléstudományi folyóirat,Kepzes es Gyakorlat,1589519X|20644027 +Kernos,OpenEdition,07763824|20347871 +Kerntechnik,Carl Hanser Verlag GMBH & Co KG,09323902|21958580 +Kerry Archaeological Magazine,JSTOR,20091362| +Kerygma und Dogma,"""Vandenhoeck & Ruprecht GmbH & Co, KG""",21968020|21968020 +Kesit Akademi,Kesit Akademi,21499225| +Kesmas Jurnal Kesehatan Masyarakat Nasional,Kesmas: Jurnal Kesehatan Masyarakat Nasional,19077505|24600601 +Kew Bulletin,Springer-Verlag,00755974|1874933X +Key Engineering Materials,Trans Tech Publications,16629795 +Khazanah Jurnal Studi Islam dan Humaniora,IAIN Antasari,24607606|24607606 +Khazar Journal of Humanities and Social Sciences,Khazar University Press,22232621 +Khil a,Peeters Publishers,17812534 +Khoj An International Peer Reviewed Journal of Geography,Diva Enterprises Private Limited,23501359|24556963 +Khon Kaen University Journal (Graduate Studies),Graduate School Khon Kaen University,1906201X| +Khronos,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,24472158 +KI - Künstliche Intelligenz,Springer-Verlag,09331875|16101987 +Kidney,Springer-Verlag,09407936|18655068 +Kidney & Blood Pressure Research,S. Karger AG,14204096|14230143 +Kidney and Blood Pressure Research,S. Karger AG,14204096|14230143 +Kidney Diseases,S. Karger AG,22969381|22969357 +Kidney International,Elsevier ,00852538|15231755 +Kidney International Supplements,Elsevier ,21571724|21571716 +Kidney Research and Clinical Practice,Elsevier ,22119132| +Kidney Research Journal,Science Alert,18193374| +KIEAE Journal,Korea Institute of Ecological Architecture and Environment,2288968X| +Kierkegaard Studies Yearbook,Walter de Gruyter GmbH,14305372|16129792 +KIISE Transactions on Computing Practices,Korean Institute of Information Scientists and Engineers,23836318| +Kikan Chirigaku,The Tohoku Geographical Association,09167889|18841252 +kilikya,Philosophy Documentation Center,21487898| +Kind & Adolescent,Springer-Verlag,01672436|18765998 +Kind & Adolescent Praktijk,Springer-Verlag,15714136|18757065 +Kindesmisshandlung und -vernachlässigung,"""Vandenhoeck & Ruprecht GmbH & Co, KG""",21968004|21968004 +Kindheit und Entwicklung,Hogrefe Publishing Group,09425403|21906246 +Kinematics and Physics of Celestial Bodies,Allerton Press,08845913|19348401 +Kinesiology,Index Copernicus International,17310652|23533986 +Kinesiology Review,Human Kinetics,21630453| +Kinesis,Universidade Federal de Santa Maria,01028308|23165464 +Kinesis,Universidade Federal de Santa Maria,01028308|23165464 +Kinésithérapie la Revue,Elsevier ,17790123| +Kinetic and Related Models,American Institute of Mathematical Sciences,19375093| +Kinetic Resolution of Tertiary Alcohols,Thieme Publishing Group,20500548 +Kinetics and Catalysis,Pleiades Publishing,00231584|16083210 +Kinetoplastid Biology and Disease,Springer (Biomed Central Ltd.),14759292| +King s Law Journal,Informa UK (Taylor & Francis),09615768|17578442 +King Saud University Journal of Dental Sciences,Elsevier ,22108157| +Kinome,De Gruyter Open Sp. z o.o. ,20847661 +Kioo cha Lugha,African Journals Online ,0856552X|0856552X +KIPS Transactions on Computer and Communication Systems,Korea Information Processing Society ,22875891| +KIPS Transactions on Software and Data Engineering,Korea Information Processing Society ,22875905| +Kirchliche Zeitgeschichte,"""Vandenhoeck & Ruprecht GmbH & Co, KG""",2196808X|2196808X +Kirke og Kultur,Scandinavian University Press / Universitetsforlaget AS,0023186X|15043002 +Kiswahili,African Journals Online ,231886 +Kitaibelia,Kitaibelia,12199672|20644507 +KIVA,Informa UK (Taylor & Francis),00231940|20516177 +KJ / Kritische Justiz,Nomos Verlag,00234834| +KKU ENGINEERING JOURNAL,Graduate School Khon Kaen University,01258273|22869433 +kleintier konkret,Thieme Publishing Group,14349132|14393832 +Kleio,Informa UK (Taylor & Francis),00232084| +Klimik Dergisi/Klimik Journal,AVES Publishing Co.,1301143X|13091484 +Klinicka onkologie,"""Ambit Media, a.s.""",0862495X|18025307 +KLINIK PSIKOFARMAKOLOJI BULTENI-BULLETIN OF CLINICAL PSYCHOPHARMACOLOGY,ScopeMed International Medical Journal Managment and Indexing System,10177833|13029657 +Klinische Monatsblätter für Augenheilkunde,Thieme Publishing Group,00232165|14393999 +Klinische Neurophysiologie,Thieme Publishing Group,14340275|14394081 +Klinische Pädiatrie,Thieme Publishing Group,03008630|14393824 +Klinische Wochenschrift,Springer-Verlag,00232173| +Klinisk Sygepleje,Scandinavian University Press / Universitetsforlaget AS,09022767|19032285 +Klio,Oldenbourg Wissenschaftsverlag,00756334|21927669 +Klio - Czasopismo Poświęcone Dziejom Polski i Powszechnym,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,16438191| +kma - Das Gesundheitswirtschaftsmagazin,Thieme Publishing Group,14393514|2197621X +KMUTNB International Journal of Applied Science and Technology,King Mongkut's University of Technology North Bangkok,1906151X| +KnE Energy,Knowledge E,24135453 +KnE Life Sciences,Knowledge E,24130877 +Knee Surgery and Related Research,The Korean Knee Society (KAMJE),22340726|22342451 +Knee Surgery Sports Traumatology Arthroscopy,Springer-Verlag,09422056|14337347 +Know Soil Know Life,Soil Science Society of America, +Knowledge Acquisition,Elsevier ,10428143| +Knowledge and Information Systems,Springer-Verlag,02191377|02193116 +Knowledge and Management of Aquatic Ecosystems,EDP Sciences,19619502 +Knowledge and Process Management,Wiley Blackwell (John Wiley & Sons),10924604|10991441 +Knowledge Management An International Journal,Common Ground Publishing,23277998|23279249 +Knowledge Management for Development Journal,Informa UK (Taylor & Francis),19474199|18716342 +Knowledge Management Research & Practice,Nature Publishing Group - Macmillan Publishers,14778238|14778246 +Knowledge of Research,Chemical Science Transactions,23944234 +Knowledge Technology & Policy,Springer-Verlag,08971986|18746314 +Knowledge-Based Systems,Elsevier ,09507051| +Knygotyra,Vilnius University,02042061|02042061 +Kobunshi,"""Society of Polymer Science, Japan""",04541138|21859825 +Kobunshi Kagaku,"""Society of Polymer Science, Japan""",00232556|18848079 +KOBUNSHI RONBUNSHU,"""Society of Polymer Science, Japan""",03862186|18815685 +Kocatepe Tıp Dergisi,Kocatepe Medical Journal,13024612| +Kocatepe Veterinary Journal,Bilimsel Tip Publishing House,13081594|21476853 +Kodai Mathematical Journal,"""Tokyo Institute of Technology, Department of Mathematics""",03865991| +Kodai Mathematical Seminar Reports,"""Tokyo Institute of Technology, Department of Mathematics""",00232599| +Kodo Keiryogaku (The Japanese Journal of Behaviormetrics),The Behaviormetric Society of Japan,03855481|18804705 +Koedoe - African Protected Area Conservation and Science,AOSIS,00756458|20710771 +Koers - Bulletin for Christian Scholarship,Watu Youth Village,0023270X|23048557 +Kognitionswissenschaft,Springer-Verlag,09387986|14321483 +KOKUSAI KEIZAI,The Japan Society of International Economics,03873943|18844359 +Kolloid Zeitschrift,Springer-Verlag,03686590| +Kolloid-Zeitschrift & Zeitschrift für Polymere,Springer-Verlag,00232904| +Kolloidchemische Beihefte,Springer-Verlag,00718017| +Kölner Schrift zum Wirtschaftsrecht,Verlag Dr. Otto Schmidt KG,18693679|21944199 +Kolposkopia,Blackhorse Publishing,16416565| +Kom casopis za religijske nauke,Centre for Evaluation in Education and Science,23346396| +KOME,KOME Journal,20637330 +Kompendium Biosimilars,Thieme Publishing Group,23670738|23670746 +Komplementäre und Integrative Medizin,Elsevier ,18638678| +KONA Powder and Particle Journal,Hosokawa Powder Technology Foundation,02884534|21875537 +Konštantínove listy/Constantine s Letters,Constantine the Philosopher University in Nitra,13378740 +Konsthistorisk tidskrift/Journal of Art History,Informa UK (Taylor & Francis),00233609|00000000 +Kontakt,Elsevier ,12124117| +Kontext,"""Vandenhoeck & Ruprecht GmbH & Co, KG""",21967997|21967997 +Kontrol Diagnostika,"""Izdatel'skii dom Spektr, LLC""",02017032| +Konuralp Tıp Dergisi,Konuralp Medical Journal,13093878|13093878 +Korea and World Politics,Institute for Far Eastern Studies,12253006| +Korea and World Politics,Institute for Far Eastern Studies,12253006| +Korea Business Review,Korean Academic Society of Business Administration,12264997| +Korea Financial Law Association,Korean Journal of Financial Law,17383706| +KOREA INTERNATIONAL COMMERCIAL REVIEW,Korean Academy of Industrial Commerce,12293393| +Korea Journal of Counseling,Korean Counseling Association,15982068| +Korea open association for early childhood education,Korean Open Association for Early Childhood Education,12268119| +Korea Presbyterian Journal of Theology,Center for Studies of Christian Thoughts and Culure,12291390| +KOREA SCIENCE & ART FORUM,Institute of Science Culture Exhibition and Design,20051409| +Korea Social Policy Review,Korean Association of Social Policy,12260525| +Korea Trade Exhibition Review,The Korea Academic Society of Trade Exhibition Studies,2287173X| +Korea-Australia Rheology Journal,Springer-Verlag,1226119X|20937660 +Korean Academy Welfare Counseling,Korean Academy Welfare Counseling,22876030| +Korean Association for Educational Information and Media,Korean Association for Educational Information and Media,12297291| +Korean Cartographic Association,The Korean Cartographic Association,15986160| +Korean Chemical Engineering Research,The Korean Institute of Chemical Engineers,0304128X| +Korean Circulation Journal,The Korean Society of Cardiology (KAMJE),17385520|17385555 +Korean Comparative Education Society,Korean Comparative Education Society,12293903| +Korean Comparative Government Review,The Korean Association for Comparative Government,1598964X| +Korean Diabetes Journal,Korean Diabetes Association (KAMJE),19769180| +KOREAN EDUCATION,The Association of Korean Education,12266736| +KOREAN ELEMENTARY MORAL EDUCATION SOCIETY,Korean Elementary Moral Education Society,15983110| +Korean Feminist Philosophy,Korean Association of Feminist Philosophers,19750013| +Korean Governmental Accounting Review,Korean Association for Government Accounting,19762313| +Korean Historical Linguistics,The Society of Korean Historical Linguistics,1738477X| +Korean Institute of Interior Design Journal,Korean Institute of Interior Design,12297992| +Korean Insurance Journal,Korean Insurance Academic Society,12298611| +Korean Journal for Food Science of Animal Resources,Korean Society for Food Science of Animal Resources,12258563| +Korean Journal of Acupuncture,Society for Meridian and Acupoint,22873368|22873368 +Korean Journal of Adult Nursing,Korean Society of Adult Nursing,12254886| +Korean Journal of Agricultural and Forest Meteorology,Korean Society of Agricultural and Forest Meteorology,12295671| +Korean Journal of Air-Conditioning and Refrigeration Engineering,The Society of Air-Conditioning and Refrigeration Engineers of Korea,12296422| +Korean Journal of Andrology,Korean Society for Sexual Medicine and Andrology (KAMJE),12291692| +Korean Journal of Anesthesiology,The Korean Society of Anesthesiologists (KAMJE),03025780|20057563 +Korean journal of applied entomology,Korean Society of Applied Entomology,12250171|2287545X +Korean Journal of Applied Linguistics,Applied Linguistics Association of Korea,12253871| +Korean Journal of Applied Statistics,The Korean Statistical Society,1225066X| +Korean Journal of Arts Therapy,The Institute of Korean Arts Therapy,17388805| +Korean Journal of Audiology,The Korean Audiological Society (KAMJE),20929862|20933797 +Korean Journal of Biological Sciences,Informa UK (Taylor & Francis),12265071| +Korean Journal of Bone Metabolism,The Korean Society of Bone Metabolism (KAMJE),1598107X| +Korean Journal of Breeding Science,Korean Society of Breeding Science,02503360|22875174 +Korean Journal of Chemical Engineering,Springer-Verlag,02561115|19757220 +Korean Journal of Child Studies,Korean Association of Child Studies,12261688|2234408X +Korean Journal of Childcare and Education,The Korean Association of Child Care & Education,17389496| +Korean Journal of Clinical Geriatrics,The Korean Academy of Clinical Geriatrics,12296538|23835699 +Korean Journal of Clinical Laboratory Science,The Korean Society for Clinical Laboratory Science,17383544|22881662 +Korean Journal of Clinical Microbiology,The Korean Society of Clinical Microbiology (KAMJE),12290025| +Korean Journal of Clinical Neurophysiology,The Korean Society of Clinical Neurophysiology (KAMJE),12296414|22881026 +Korean Journal of Clinical Oncology,Korean Society of Clinical Oncology,17388082|22884084 +Korean Journal of Cognitive Science,The Korean Society for Cognitive Science,12264067| +Korean Journal of Community Nutrition,The Korean Society of Community Nutrition (KAMJE),12260983|22871624 +Korean Journal of Construction Engineering and Management,Korean Institute of Construction Engineering and Management,20056095| +Korean Journal of Converging Humanities,Korean Association of Converging Humanities,22886222|22887512 +Korean Journal of Critical Care Medicine,The Korean Society of Critical Care Medicine (KAMJE),23834870|23834889 +Korean Journal of Crop Science,The Korean Society of Crop Science,02529777|22878432 +Korean Journal of Culture and Arts Education Studies,The Korean Society for Culture and Arts Education Studies,19756186| +Korean Journal of Culture and Social issues,Psychological Association of Culture and Social Issues,12290661| +Korean Journal of Defense Analysis,Informa UK (Taylor & Francis),10163271| +Korean Journal of Defense Analysis,Informa UK (Taylor & Francis),10163271| +Korean Journal of Defense Analysis,Informa UK (Taylor & Francis),10163271| +Korean Journal of Defense Analysis,Informa UK (Taylor & Francis),10163271|19414641 +Korean Journal of Defense Analysis,Informa UK (Taylor & Francis),10163271| +Korean Journal of Dental Materials,Korean Society for Dental Materials,12251631| +Korean Journal of Early Childhood Education,Korean Society for Early Childhood Education,12269565| +Korean Journal of Early Childhood Special Education,Korean Journal of Early Childhood Special Education,15984303| +Korean Journal of Ecology and Environment,Korean Society of Limnology,22881115|22881123 +Korean Journal of Elementary Education,Elementary Education Research Institute,1976698X| +Korean Journal of Elementary Education,Elementary Education Research Institute,1976698X| +Korean Journal of Elementary Education,Elementary Education Research Institute,1976698X| +Korean Journal of Elementary Education,Elementary Education Research Institute,1976698X| +Korean Journal of English Language and Linguistics,"""Korean Association for the Study of English Language and Linguistics, KASELL""",15981398| +Korean Journal of Environment and Ecology,Korea Society of Environment and Ecology,12293857|2288131X +Korean Journal of Environmental Agriculture,The Korean Society of Environmental Agriculture,12253537| +Korean Journal of Environmental Health Sciences,Korean Society of Environmental Health,17384087| +Korean Journal of Epidemiology,Korean Society of Epidemiology (KAMJE),12253596| +Korean Journal of Family Medicine,The Korean Academy of Family Medicine (KAMJE),20056443|20926715 +Korean Journal of Family Social Work,The Korean Academy of Family Social Work,15986403| +Korean Journal of Family Social Work,The Korean Academy of Family Social Work,15986403| +Korean Journal of Family Welfare,The Korean Family Welfare Association,12294713|22881638 +Korean Journal of Fisheries and Aquatic Sciences,The Korean Society of Fisheries and Aquatic Science,03748111| +Korean Journal of Food and Cookery Science,Korean Society of Food and Cookery Science,22871780| +Korean Journal of Food Preservation,The Korean Society of Food Preservation,17387248|22877428 +Korean Journal of Food Science and Technology,Korean Society of Food Science and Technology,03676293| +Korean Journal of Gastroenterology,The Korean Society of Gastroenterology (KAMJE),15989992|22336869 +Korean Journal of German Studies,The Korean Society for German History,15984184| +Korean Journal of Gynecologic Oncology,Asian Society of Gynecologic Oncology; Korean Society of Gynecologic Oncology and Colposcopy (KAMJE),17386543| +Korean Journal of Health Education and Promotion,Korean Society for Health Education and Promotion,12294128| +Korean Journal of Health Promotion,Korean Society of Health Promotion and Disease Prevention,22342141|20935676 +Korean Journal of Health Psychology,Korean Health Psychological Association,1229070X| +Korean Journal of Hepato-Biliary-Pancreatic Surgery,The Korean Association of Hepato-Biliary-Pancreatic Surgery (KAMJE),17386349|22889213 +Korean Journal of Horticultural Science and Technology,Korean Society of Horticultural Science,12268763| +Korean Journal of Horticultural Science&Technology,"""Docuhut, Co., Ltd.""",24658588 +Korean Journal of Human Ecology,Korean Association of Human Ecology,12260851| +Korean Journal of Japanese Language and Literature,The Japan Language and Literature Association of Korea,12260576| +Korean Journal of Labor Studies,Korean Association of Labor Studies,15984133| +Korean Journal of Legal Medicine,The Korean Society for Legal Medicine (KAMJE),12250589|22872078 +Korean Journal of Linguistics,The Linguistic Society of Korea,12294039| +Korean Journal of Local Government & Administration Studies,The Korea Association for Local Government and Administration Studies,17387779| +Korean Journal of Logistics,Korea Logistics Society,12293539| +Korean Journal of Lomnology,Korean Society of Limnology,19768087|22878181 +Korean Journal of Materials Research,The Materials Research Society of Korea,12250562|22877258 +Korean Journal of Mathematics,The Kangwon-Kyungki Mathematical Society,19768605| +Korean Journal of Medical Education,Korean Society of Medical Education,12258067|20057288 +Korean Journal of Medical History,The Korean Society for the History of Medicine,1225505X|20935609 +Korean Journal of Medical Mycology,Korean Society for Medical Mycology,12264709| +Korean Journal of Medicinal Crop Science,The Korean Society of Medicinal Crop Science,12259306|22880186 +Korean Journal of Medicinal Crop Science,The Korean Society of Medicinal Crop Science,12259306| +Korean Journal of Medicine,Korean Association of Internal Medicine,17389364|22890769 +Korean Journal of Medicine and Law,Korean Association of Medical Law,15989178| +Korean Journal of Metals and Materials,The Korean Institute of Metals and Materials,17388228|22888241 +Korean Journal of Microbiology and Biotechnology,Korean Society for Microbiology and Biotechnology,1598642X|22347305 +Korean Journal of Microscopy,Korean Society of Electron Microscopy,12256773| +Korean Journal of Nature Conservation,Korea Society of Nature Conservation,19766769|22878122 +Korean Journal of Neurotrauma,Korean Neurotraumatology Society (KAMJE),22348999|22882243 +Korean Journal of Nosocomial Infection Control,Korean Society for Nosocomial Infection Control (KAMJE),12262382| +Korean Journal of Obstetrics & Gynecology,Korean Society of Obstetrics and Gynecology (KAMJE),22335188|22335196 +Korean Journal of Obstetrics and Gynecology,Korean Society of Obstetrics and Gynecology (KAMJE),17385628| +Korean Journal of Occupational Health Nursing,Korean Academic Society of Occupational Health Nursing,12259586| +Korean Journal of Occupational Health Nursing,Korean Academic Society of Occupational Health Nursing,22872531| +Korean Journal of Odor Research and Engineering,Korean Society of Odor Research and Engineering,15986616|22876731 +Korean Journal of Ophthalmology,Korean Opthalmological Society (KAMJE),10118942|20929382 +Korean Journal of Optics and Photonics,Korean Journal of Optics and Photonics,12256285| +Korean Journal of Organic Agricultue,Korean Association of Organic Agriculture,12293571|2287819X +Korean Journal of Oriental Physiology & Pathology,Korean Society of Oriental Pathology,17387698| +Korean Journal of Otolaryngology - Head and Neck Surgery,Korean Society of Otorhinolaryngology - Head and Neck Surgery (KAMJE) ,1225035X| +Korean Journal of Otorhinolaryngology - Head and Neck Surgery,Korean Society of Otorhinolaryngology - Head and Neck Surgery (KAMJE) ,20925859|20926529 +KOREAN JOURNAL OF PACKAGING SCIENCE AND TECHNOLOGY,Korea Society of Packaging Science and Technology,12260207| +Korean Journal of Pediatric Gastroenterology and Nutrition,"""The Korean Society of Pediatric Gastroenterology, Hepatology and Nutrition (KAMJE)""",12290114|20935633 +Korean Journal of Pediatrics,Korean Pediatric Society (KAMJE),17381061|20927258 +Korean Journal of Perinatology,Korean Society of Perinatology (KAMJE),12292605|22890432 +Korean Journal of Philosophy,Korea Philosophical Association,12251518| +Korean Journal of Physical Anthropology,Korean Association of Physical Anthropologists (KAMJE),1225150X|2287626X +Korean Journal of Physical Multiple & Health Disabilities,Korean Council of Physical Multiple and Health Disabilities,22883843| +Korean Journal of Physiology and Pharmacology,The Korean Physiological Society and The Korean Society of Pharmacology (KAMJE),12264512|20933827 +Korean Journal of Plant Resources,The Plant Resources Society of Korea,12263591| +Korean Journal of Plant Taxonomy,The Korean Society of Plant Taxonomists,12258318|24661546 +Korean Journal of Play Therapy,The Korean Association for Play Therapy,12290858|23840153 +Korean Journal of Poultry Science,The Korean Society of Poultry Science,12256625| +Korean Journal of Radiology,The Korean Society of Radiology (KAMJE),12296929|20058330 +Korean Journal of Remote Sensing,The Korean Society of Remote Sensing,12256161| +Korean Journal of Schizophrenia Research,Korean Society for Schizophrenia Research (KAMJE),22876995| +Korean Journal of Social Welfare Research,The Center for Social Welfare Research,19750129| +Korean Journal of Social Welfare Studies,Korea Association for Social Welfare Studies,15983854| +Korean Journal of Soil Science and Fertilizer,Korean Society of Soil Science and Fertilizer,03676315| +Korean Journal of Special Education,Korean Society of Special Education,12290823| +Korean Journal of Spine,The Korean Spinal Neurosurgery Society (KAMJE),17382262|20936729 +Korean Journal of Sport Biomechanics,Korean Society of Sport Biomechanics,12262226| +Korean Journal of Sport Psychology,Korean Society of Sport Psychology,1226685X| +Korean Journal of Stress Research,Korean Society of Stress Medicine,1225665X|22341668 +Korean Journal of Stroke,Korean Stroke Society,12294101| +Korean Journal of Systematic Zoology,The Korean Society of Systematic Zoology,1018192X| +Korean Journal of Teacher Education,Center for Education Research,12252042|22885706 +Korean Journal of Urology,The Korean Urological Association (KAMJE),04944747|20056745 +Korean Journal of Vascular and Endovascular Surgery,The Korean Society for Vascular Surgery,22339779| +Korean Journal of Veterinary Research,The Korean Society of Veterinary Science (KJVR),12250198| +Korean Journal of Veterinary Service,The Korean Society of Veterinary Service,12256552| +Korean Journal of Weed Science,The Korean Society of Weed Science,02537648| +Korean Journal of Women Health Nursing,Korean Academy of Women's Health Nursing (KAMJE),12259543|20937695 +korean language education research,Association of Korean Language Education Research,12258571| +Korean Language Research,Korean Language Research Circle,12294500| +Korean Lawyers Association Journal,Korean Lawyers Association,15984729| +Korean Linguistics,John Benjamins Publishing Company,02573784|22129731 +Korean Linguistics,The Association for Korean Linguistics,12269123| +Korean Literary Theory and Criticism,The Association of Korea Literary Theory and Criticism,15983501| +korean management review,Korean Academic Society of Business Administration,12261874| +Korean Management Science Review,The Korean Operations and Management Science Society,12251100| +Korean Marketing Review,Korean Marketing Association,1229456X| +Korean Medical Education Review,Yonsei University College of Medicine,20925603| +Korean Political Science Review,Korean Political Science Association,1229506X| +Korean Public Administration Review,Korean Association for Public Administration,12262536| +Korean Semantics,The Society of Korean Semantics,12267198| +Korean Social Science Journal,Springer-Verlag,12250368|21964424 +Korean Society for Emotion and Sensibility,Korean Society for Emotion and Sensibility,12268593|2383613X +Korean Society for Rehabilitation of Persons with Disabilities,Korean Society for Rehabilitation of Persons with Disabilities,12297577|24658200 +Korean Studies,Muse - Johns Hopkins University Press,15291529 +KOREAN UNIFICATION STUDIES,Yonsei Institute for North Korean Studies,15988554| +Koreanische Zeitschrift fuer Wirtschaftswissenschaften,Korean-German Academy of Economics and Management,12262625| +Koroze a ochrana materialu,De Gruyter Open Sp. z o.o. ,0452599X|18041213 +körper – tanz – bewegung,"""Ernst Reinhardt, GmbH & Co. KG""",21954909| +Kościół i Prawo,Towarzystwo Naukowe KUL,02087928| +Kosin Medical Journal,Kosin University College of Medicine (KAMJE),20059531| +Kosmìčna nauka ì tehnologìâ,Co. Ltd. Ukrinformnauka,15618889|15618889 +Kosuyolu Heart Journal,Bilimsel Tip Publishing House,21492972|21492980 +Kosuyolu Kalp Dergisi,Bilimsel Tip Publishing House,13008706| +Kōtuitui New Zealand Journal of Social Sciences Online,Informa UK (Taylor & Francis),1177083X +Koutou (THE LARYNX JAPAN),The Japan Laryngological Association,09156127|21854696 +Kragujevac Journal of Mathematics,Centre for Evaluation in Education and Science,14509628| +Krakowskie Pismo Kresowe,Ksiegarnia Akademicka Sp. z.o.o.,20819463| +Krankenhaus-Hygiene + Infektionsverhütung,Elsevier ,07203373| +Krankenhaushygiene up2date,Thieme Publishing Group,18625797|18625800 +Krankenhauspsychiatrie,Thieme Publishing Group,0937289X|14393816 +Krasnoyarsk Science,Science and Innovation Center,20707568| +Kreativnaya kardiologiya,LLC Science and Innovations,19973187| +Kredit und Kapital,Duncker & Humblot GmbH,00234591|18655734 +Kriminologijos studijos,Vilnius University,23516097|23516097 +Krisis,Uitgeverij Boom,0168275X| +Kristall und Technik,Wiley Blackwell (John Wiley & Sons),00234753|15214079 +Kristall und Technik,Wiley Blackwell (John Wiley & Sons),00234753|15214079 +Kriterion Revista de Filosofia,SciELO,0100512X|0100512X +Kritika Explorations in Russian and Eurasian History,Muse - Johns Hopkins University Press,15385000 +Kritika Kultura,PhilJOL,1656152X| +Kritika Kultura,Ateneo de Manila University,20946937|20946937 +Kritike An Online Journal of Philosophy,PhilJOL,19087330 +Kritikon Litterarum,Walter de Gruyter GmbH,03409767|18657249 +Kritische Vierteljahresschrift für Gesetzgebung und Rechtswissenschaft,Nomos Verlag,21937869| +Kritisk juss,Scandinavian University Press / Universitetsforlaget AS,08047375|23874546 +Kriz Dergisi,Ankara University,1300980X|1300980X +KronoScope,Brill Academic Publishers,1567715X|15685241 +KSBB Journal,Korean Society for Biotechnology and Bioengineering,12257117| +KSCE Journal of Civil Engineering,Springer-Verlag,12267988|19763808 +KSII Transactions on Internet and Information Systems,Korean Society for Internet Information,19767277|19767277 +Kugyol Studies,The Society for Kugyol Studies,12266019| +KUKJE KYUNGJE YONGU,Korea International Economic Association,12299537| +Kultur ve Iletisim - Culture &Communication,Kultur ve Iletisim - Culture &Communication,21499098| +Kultura,Centre for Evaluation in Education and Science,00235164| +Kultura i Spoleczenstwo,De Gruyter Open Sp. z o.o. ,00235172|2300195X +Kultura i Wartości,Wydawnictwo Uniwersytetu Marii Curie-SkÅ?odowskiej w Lublinie,22997806 +Kultura Popularna,Index Copernicus International,16448340| +KulturPoetik,"""Vandenhoeck & Ruprecht GmbH & Co, KG""",16161203|21967970 +Kulturstudier,Aarhus University Library,19045352 +Kungl Svenska vetenskapsakademiens handlingar,Smithsonian Institution Biodiversity Heritage Library,00235377| +Kunst og kultur,Scandinavian University Press / Universitetsforlaget AS,00235415|15043029 +KUR - Kunst und Recht,Schleuen Verlag,14372355|21995052 +Kuramsal Eğitimbilim,Bilimsel Tip Publishing House,13081659| +Kutafin University Law Review,Kutafin Moscow State Law University,23135395| +Kuwait Chapter of Arabian Journal of Business and Management Review,"""Al Manhal FZ, LLC""",22248358| +KWALON,Boom Uitgevers Den Haag,13851535| +Kwartalnik Językoznawczy,Adam Mickiewicz University Poznan,20815441 +KYAMC Journal,Bangladesh Journals Online,23082860 +Kybernetes,Emerald (MCB UP ),0368492X|00000000 +Kybernetik,Springer-Verlag,00235946| +Kybernetika,Institute of Information Theory and Automation,00235954|1805949X +Kyiv-Mohyla Humanities Journal,National University of Kyiv - Mohyla Academy,23134895 +Kyklos,Wiley Blackwell (Blackwell Publishing),00235962|14676435 +Kyoto Journal of Mathematics,Duke University Press,21543321|21543321 +Kyung Hee Law Journal,"""Institute of Legal Studies, Kyung Hee University""",12292478| +Kyungpook mathematical journal,"""Department of Mathematics, Kyungpook National University""",12256951| +Kyushu Journal of Mathematics,"""Faculty of Mathematics, Kyushu University""",13406116|18832032 +Kyushu Neuropsychiatry,The Kyushu Association of Neuropsychiatry,00236144|21875200 +Kyushu Plant Protection Research,The Association for Plant Protection of Kyushu,03856410|18840035 +KZfSS Kölner Zeitschrift für Soziologie und Sozialpsychologie,Springer-Verlag,00232653|1861891X +L Actualité de l histoire,JSTOR,03988120| +L Actualité économique,Consortium Erudit,0001771X|17103991 +L Aide-Soignante,Elsevier ,11663413| +L Année balzacienne,CAIRN,00846473|19696752 +L Année du Maghreb,OpenEdition,19528108|21099405 +L Année sociologique,CAIRN,00662399|19696760 +L Anthropologie,Elsevier ,00035521| +L antiquité classique,PERSEE Program,07702817| +L Atelier du CRH,OpenEdition,17607914|17607914 +L Autre,CAIRN,16265378|22594566 +L Économie politique,CAIRN,12936146|19650612 +L en-je lacanien,CAIRN,17612861|19516231 +L Encéphale,Elsevier ,00137006| +L Endocrinologo,Springer-Verlag,1590170X|17208351 +L Esprit Créateur,Muse - Johns Hopkins University Press,19310234 +L Europe en Formation,CAIRN,19770251|24109231 +L Évolution Psychiatrique,Elsevier ,00143855| +L Expansion Management Review,CAIRN,12543179|22717749 +L Homme,PERSEE Program,04394216|19538103 +L Homme,Bohlau Verlag,21945071|21945071 +L Homme et la société,PERSEE Program,00184306|21010226 +L Information géographique,CAIRN,00200093|17775876 +L Information Grammaticale,PERSEE Program,02229838|02229838 +L information psychiatrique,CAIRN,00200204|19524056 +L Italia Forestale e Montana,Accademia Italiana di Scienze Forestali,00212776| +L objet,Lavoisier SAS,12621137| +L Observateur de l OCDE,Organisation for Economic Co-Operation and Development ,03043398| +l Orthodontie Française,EDP Sciences,00786608|19543395 +L1–Educational Studies in Language and Literature,Gert Rijlaarsdam/SIG Writing,15676617|15731731 +La Calera,Latin America Journals Online,19987846| +La Cellule,Smithsonian Institution Biodiversity Heritage Library,00088757| +La Chirurgia degli Organi di Movimento,Springer-Verlag,00094749|19732538 +La clinique lacanienne,CAIRN,12886629|17762782 +La Conjoncture,PERSEE Program,11493747| +La corónica A Journal of Medieval Hispanic Languages Literatures and Cultures,Muse - Johns Hopkins University Press,19474261 +La Granja,Salesian Polytechnic University of Ecuador,13903799|13908596 +La Houille Blanche,EDP Sciences,00186368|19585551 +La lettre de l enfance et de l adolescence,CAIRN,1146061X|19516304 +La Lettre de l’OCIM,OpenEdition,09941908|2108646X +La Lettre de médecine physique et de réadaptation,Springer-Verlag,17784298|17784301 +La lettre du Collège de France,OpenEdition,16282329|21099219 +La linguistique,CAIRN,0075966X|21010234 +La Météorologie,INIST-CNRS,00261181| +La Nouvelle revue du travail,OpenEdition,22638989|22638989 +La Palabra,Universidad Pedagogica y Tecnologica de Colombia,01218530|23463864 +La Pediatria Medica e Chirurgica,PAGEPress Publications,03915387|24207748 +La Prensa Medica,OMICS Publishing Group,0032745X +La Presse Médicale,Elsevier ,07554982| +La psychiatrie de l enfant,CAIRN,0079726X|21025320 +La radiologia medica,Springer-Verlag,00338362|18266983 +La Revista de Derecho,Latin America Journals Online,23095296| +La Revue d Homéopathie,Elsevier ,18789730| +La Revue de l Infirmière,Elsevier ,12938505| +La Revue de l Ires,CAIRN,11451378|21043698 +La Revue de Médecine Interne,Elsevier ,02488663| +La Revue de Médecine Légale,Elsevier ,18786529| +La Revue de Santé Scolaire et Universitaire,Elsevier ,18793991| +La Revue des Sciences de Gestion Direction et Gestion,CAIRN,0012320X|17606136 +La Revue Gestion et Organisation,Elsevier ,22144234| +La Revue Gestion et Organisation,Elsevier ,22144234| +La revue internationale de l éducation familiale,CAIRN,12797766|1968388X +La revue lacanienne,CAIRN,19672055|21099553 +La Revue pour l’histoire du CNRS,OpenEdition,12989800|19552408 +La Revue Sage-Femme,Elsevier ,16374088| +La Ricerca Folklorica,JSTOR,03919099| +La Ricerca in Clinica e in Laboratorio,Springer-Verlag,03905748| +La Rivista del Nuovo Cimento,Springer-Verlag,0393697X|18269850 +La Rivista Italiana della Medicina di Laboratorio - Italian Journal of Laboratory Medicine,Springer-Verlag,1825859X|20396821 +Lab Animal,Nature Publishing Group,00937355|15484475 +Lab on a Chip,The Royal Society of Chemistry,14730197|14730189 +Labor e Engenho,Universidade Estadual de Campinas,21768846 +Labor History,Informa UK (Taylor & Francis),0023656X|14699702 +Labor Studies in Working-Class History of the Americas,Duke University Press,15476715|15581454 +Labor Studies Journal,SAGE Publications,0160449X|15389758 +Laboratoire italien,OpenEdition,16279204|21174970 +Laboratório de Psicologia,ISPA - Instituto Universitario,16457927|16466004 +LaboratoriumsMedizin,Walter de Gruyter GmbH,03423026|14390477 +Laboratory Animal Research,Korean Association for Laboratory Animal Science (KAMJE),17386055|22337660 +Laboratory Animals,SAGE Publications,00236772|17581117 +Laboratory Automation & Information Management,Elsevier ,1381141X| +Laboratory Hematology,Carden Jennings Publishing Co.,10802924| +Laboratory Investigation,Nature Publishing Group,00236837|15300307 +Laboratory Medicine,Oxford University Press,00075027|19437730 +Laboratory Medicine Online,Korean Society for Laboratory Medicine (KAMJE),20936338 +Laboratory Phonology,"""Ubiquity Press, Ltd.""",18686346|18686354 +Laboratory Robotics and Automation,Wiley Blackwell (John Wiley & Sons),08957533|10982728 +Laboreal,"""Laboreal, FPCE, Universidade do Porto""",16465237 +LaborHistórico,"""Faculdade de Letras, UFRJ""",23596910 +Labour,Wiley Blackwell (Blackwell Publishing),11217081|14679914 +Labour & Industry a journal of the social and economic relations of work,Informa UK (Taylor & Francis),10301763|23255676 +Labour / Le Travail,JSTOR,07003862| +Labour Economics,Elsevier ,09275371| +Labour History,Australian Society for the Study of Labour History,00236942| +Labour History Review,Liverpool University Press,09615652|00000000 +Labyrinthe,OpenEdition,19506031|19506031 +Laennec,CAIRN,1272520X|2262483X +Lagos Historical Review,African Journals Online ,15965031 +Lagos Journal of Library and Information Science,African Journals Online ,15969487 +Lagos Notes and Records,African Journals Online ,00757640|00757640 +Lähivõrdlusi Lähivertailuja,Estonian Association for Applied Linguistics,17369290|22283854 +Lake and Reservoir Management,Informa UK (Taylor & Francis),07438141|10402381 +Lakes & Reservoirs Research & Management,Wiley Blackwell (Blackwell Publishing),13205331|14401770 +Lan Harremanak Revista de Relaciones Laborales,UPV/EHU Press,15757048|24445819 +Land,MDPI AG,2073445X +Land Contamination & Reclamation,EPP Publications,09670513|00000000 +Land Degradation and Development,Wiley Blackwell (John Wiley & Sons),10853278|1099145X +Land Development Studies,Informa UK (Taylor & Francis),02640821| +Land Economics,University of Wisconsin Press,00237639|15438325 +Land Use Law & Zoning Digest,Informa UK (Taylor & Francis),00947598| +Land Use Policy,Elsevier ,02648377| +Landas Journal of Loyola School of Theology,Ateneo de Manila University,01164856|22445161 +Landform Analysis,Bogucki Wydawnictwo Naukowe,1429799X| +Landscape and Ecological Engineering,Springer-Verlag,18601871|1860188X +Landscape and Planning,Elsevier ,03043924| +Landscape and Urban Planning,Elsevier ,01692046| +Landscape Ecology,Springer-Verlag,09212973|15729761 +Landscape Ecology and Management,Japan Association for Landscape Ecology,18800092|18846718 +Landscape History,Informa UK (Taylor & Francis),01433768|21602506 +Landscape Journal,University of Wisconsin Press,02772426|15532704 +Landscape Online,Landscape Online,18651542| +Landscape Planning,Elsevier ,03043924| +Landscape Research,Informa UK (Taylor & Francis),01426397|14699710 +Landscape Research Japan Online,Japanese Institute of Landscape Architecture,1883261X +Landscapes,Maney Publishing,14662035|20408153 +Landslides,Springer-Verlag,1612510X|16125118 +Landslides,Japan Landslide Society,18843956|02852926 +Langage et société,CAIRN,01814095|21010382 +Langages,CAIRN,0458726X|19589549 +Langenbeck s Archives of Surgery,Springer-Verlag,14352443|14352451 +Langenbecks Archiv für Chirurgie,Springer-Verlag,00238236| +Langenbecks Archiv für Klinische Chirurgie,Springer-Verlag,01744542| +Langmuir,American Chemical Society,07437463|15205827 +Language,Muse - Johns Hopkins University Press,00978507|15350665 +Language & Communication,Elsevier ,02715309| +Language & History,Maney Publishing,17597536|17597544 +Language Acquisition,Informa UK (Taylor & Francis),10489223|15327817 +Language and Cognition,Cambridge University Press,18669808|18669859 +Language and Cognitive Processes,Informa UK (Taylor & Francis),01690965|14640732 +Language and Dialogue,John Benjamins Publishing Company,22104119|22104127 +Language and Education,Informa UK (Taylor & Francis),09500782|17477581 +Language and Intercultural Communication,Informa UK (Taylor & Francis),14708477|1747759X +Language and Linguistics,"""Hankuk University of Foreign Studies, Language Research Institute""",12254967| +Language and Linguistics,SAGE Publications,1606822X|23095067 +Language and Linguistics Compass,Wiley Blackwell (Blackwell Publishing),1749818X|1749818X +Language and Literature,SAGE Publications,09639470|14617293 +Language and Psychoanalysis,Language and Psychoanalysis,2049324X +Language and Sociocultural Theory,Equinox Publishing,20519699|20519702 +Language and Speech,SAGE Publications,00238309|17566053 +Language and Text,Moscow State Universtiy of Psychology and Education (MSUPE),23122757 +Language Arts Journal of Michigan,Grand Valley State University Libraries,2168149X +Language Assessment Quarterly,Informa UK (Taylor & Francis),15434303|15434311 +Language Awareness,Informa UK (Taylor & Francis),09658416|17477565 +Language Cognition and Neuroscience,Informa UK (Taylor & Francis),23273798|23273801 +Language Culture and Curriculum,Informa UK (Taylor & Francis),07908318|17477573 +Language Dynamics and Change,Brill Academic Publishers,22105824|22105832 +Language Education in Asia,IDP Education Cambodia,18387365 +Language in Focus,Walter de Gruyter GmbH,23009764 +Language in Society,Cambridge University Press,00474045|14698013 +Language Interaction and Acquisition / Langage Interaction et Acquisition,John Benjamins Publishing Company,18797865|18797873 +Language Learning,Wiley Blackwell (Blackwell Publishing),00238333|14679922 +Language Learning and Development,Informa UK (Taylor & Francis),15475441|15473341 +Language Learning in Higher Education,Walter de Gruyter GmbH,2191611X|21916128 +Language Learning Journal,Informa UK (Taylor & Francis),09571736| +Language Learning Journal,Informa UK (Taylor & Francis),09571736|17532167 +Language Matters,Informa UK (Taylor & Francis),10228195|17535395 +Language Policy,Springer-Verlag,15684555|15731863 +Language Problems & Language Planning,John Benjamins Publishing Company,02722690|00000000 +Language Resources and Evaluation,Springer-Verlag,1574020X|15740218 +Language Sciences,Elsevier ,03880001| +Language Speech and Hearing Services in Schools,American Speech-Language-Hearing Association,01611461|15589129 +Language Teaching,Cambridge University Press,02614448|14753049 +Language Teaching Research,SAGE Publications,13621688|00000000 +Language Testing,SAGE Publications,02655322|00000000 +Language Testing in Asia,Springer (Biomed Central Ltd.),22290443|22290443 +Language Typology and Universals,Oldenbourg Wissenschaftsverlag,18678319|21967148 +Language Value,Universitat Jaume I,19897103|19897103 +Language Variation and Change,Cambridge University Press,09543945|14698021 +Languages,MDPI AG,2226471X +Languages in Contrast,John Benjamins Publishing Company,13876759|00000000 +Langue française,CAIRN,00238368|19577982 +Lankesteriana,Universidad de Costa Rica,14093871|22152067 +Laocoonte Revista de Estética y Teoría de las Artes,Universitat de Valencia,23868449 +Lapurdum,OpenEdition,12733830|19650655 +Large Marine Ecosystems,Elsevier , +Large-scale Assessments in Education,Springer (Biomed Central Ltd.),21960739|21960739 +Laryngo-Rhino-Otologie,Thieme Publishing Group,09358943|14388685 +Laryngoscope Investigative Otolaryngology,Wiley Blackwell (John Wiley & Sons),23788038| +Laser & Optoelectronics Progress,Shanghai Institute of Optics and Fine Mechanics,10064125| +Laser & Photonics Review,Wiley Blackwell (John Wiley & Sons),18638880|18638899 +Laser and Particle Beams,Cambridge University Press,02630346|1469803X +Laser Chemistry,Hindawi Publishing Corporation,02786273|14763516 +Laser Medicine and Surgery News and Advances,Mary Ann Liebert,07369417| +Laser Physics,IOP Publishing,1054660X|15556611 +Laser Physics Letters,IOP Publishing,16122011|1612202X +Laser Technik Journal,Wiley Blackwell (John Wiley & Sons),16137728|18639119 +LASER THERAPY,International Phototherapy Association,08985901|18847269 +Lasers in Engineering,Informa UK (Taylor & Francis),08981507| +Lasers in Manufacturing and Materials Processing,Springer-Verlag,21967229|21967237 +Lasers in Medical Science,Springer-Verlag,02688921|1435604X +Lasers in Surgery and Medicine,Wiley Blackwell (John Wiley & Sons),01968092|10969101 +Late Antique Archaeology,Brill Academic Publishers,15706893|22134522 +Late Imperial China,Muse - Johns Hopkins University Press,10863257 +Laterality Asymmetries of Body Brain and Cognition,Informa UK (Taylor & Francis),1357650X|14640678 +Latest Word The Bimonthly Newsletter for Medical Transcriptionists The,Elsevier ,1067716X| +Latgale National Economy Research,Rezeknes Augstskola,16915828| +Latin American and Caribbean Ethnic Studies,Informa UK (Taylor & Francis),17442222|17442230 +Latin American Anthropology Review,Wiley Blackwell (Blackwell Publishing),10457577| +Latin American Antiquity,Society for American Archaeology,10456635| +Latin American Business Review,Informa UK (Taylor & Francis),10978526|15286932 +Latin American Economic Review,Springer-Verlag,21983526|2196436X +Latin American J of Management for Sustainable Development,Inderscience Enterprises Ltd.,20520336|20520344 +Latin American Journal of Aquatic Mammals,Sociedad Latinoamericana de Especialistas en Mamiferos Acuaticos,16767497|22361057 +Latin American Journal of Aquatic Research,Pontificia Universidad Catolica de Valparaiso,0718560X|0718560X +Latin American Journal of Content and Language Integrated Learning,Universidad de la Sabana,20116721|23229721 +Latin american journal of economics,Pontificia Universidad Catolica de Chile,07190425|07190433 +Latin American Journal of Solids and Structures,SciELO,16797825|16797825 +Latin American Music Review,University of Texas Press,01630350|15360199 +Latin American Perspectives,SAGE Publications,0094582X|00000000 +Latin American Policy,Wiley Blackwell (Blackwell Publishing),20417365|20417373 +Latin American Politics & Society,Muse - Johns Hopkins University Press,15482456 +Latin American Politics & Society,Muse - Johns Hopkins University Press,15482456 +Latin American Politics and Society,Wiley Blackwell (Blackwell Publishing),1531426X| +Latin American Research Review,Muse - Johns Hopkins University Press,15424278 +Latin American Theatre Review,Muse - Johns Hopkins University Press,21610576 +Latino Studies,Nature Publishing Group - Macmillan Publishers,14763435|14763443 +Latinoamérica Revista de Estudios Latinoamericanos,Elsevier ,16658574| +LATISS Learning and Teaching in the Social Sciences,Intellect,17405866| +Latvian Journal of Chemistry,De Gruyter Open Sp. z o.o. ,08688249|08688249 +Latvian Journal of Physics and Technical Sciences,De Gruyter Open Sp. z o.o. ,08688257|08688257 +Laval théologique et philosophique,Consortium Erudit,00239054|17038804 +Law,Infra-M Academic Publishing House,23083107| +Law & Ethics of Human Rights,Walter de Gruyter GmbH,21946531|19382545 +Law & Literature,Informa UK (Taylor & Francis),1535685X|15412601 +Law & Policy,Wiley Blackwell (Blackwell Publishing),02658240|14679930 +Law & Social Inquiry,Wiley Blackwell (Blackwell Publishing),08976546|17474469 +Law & Society Review,Wiley Blackwell (Blackwell Publishing),00239216|15405893 +Law and Administration in Post-Soviet Europe,De Gruyter Open Sp. z o.o. ,23915544 +Law and Contemporary Problems,JSTOR,00239186| +Law and Critique,Springer-Verlag,09578536|15728617 +Law and Financial Markets Review,Informa UK (Taylor & Francis),17521440|17521459 +Law and History Review,Cambridge University Press,07382480|19399022 +Law and Human Behavior,American Psychological Association,01477307|1573661X +Law and Humanities,Informa UK (Taylor & Francis),17521483|17521491 +Law and Method,Boom Uitgevers Den Haag,23527927| +Law and modern states,Foundation Consulting and Legal Protection of Citizens,23073306|23073306 +Law and Philosophy,Springer-Verlag,01675249|15730522 +Law and Policy Review,Center for Law and Policy,20765614| +Law Culture and the Humanities,SAGE Publications,17438721|17439752 +Law Democracy & Development,African Journals Online ,20774907|20774907 +Law Enforcement Executive Forum,Illinois Law Enforcement Training and Standards Board Executive Institute,15529908 +Law Innovation and Technology,Informa UK (Taylor & Francis),17579961|1757997X +Law of the Sea Bulletin,United Nations Publications,22186018 +Law Probability and Risk,Oxford University Press,14708396|1470840X +Law Review,Vytautas Magnus University,13929232|20294239 +Laws,MDPI AG,2075471X +Lazaroa,Universidad Complutense de Madrid,02109778|19883307 +La_Riba,Universitas Islam Indonesia (Islamic University of Indonesia),19786751| +LBS Journal of Management & Research,Diva Enterprises Private Limited,09728031|09741852 +LBS Management Review,African Journals Online ,11183713 +Le Carnet PSY,CAIRN,17784433|21070954 +Le Coq-héron,CAIRN,03357899|19516290 +Le Débat,CAIRN,02462346|21114587 +Le Divan familial,CAIRN,1292668X|21181942 +Le Fait Missionnaire,Brill Academic Publishers,14202018|22118527 +Le Français aujourd hui,CAIRN,01847732|21070857 +Le Globe Revue genevoise de géographie,PERSEE Program,03983412| +Le journal de l école de Paris du management,CAIRN,12532711|21184585 +Le Journal de la Renaissance,"""Brepols Publishers, NV""",16304586|22959157 +Le Journal de Physique Colloques,EDP Sciences,04491947| +Le Journal des psychologues,CAIRN,0752501X|21183015 +Le Mouvement social,CAIRN,00272671|19618646 +Le Moyen Age,CAIRN,00272841|17821436 +Le Moyen Français,"""Brepols Publishers, NV""",02260174| +Le Muséon,Peeters Publishers,7716494 +Le Naturaliste canadien,Consortium Erudit,00280798|19293208 +Le Pharmacien Hospitalier,Elsevier ,07689179| +Le Pharmacien Hospitalier et Clinicien,Elsevier ,22111042| +Le philosophoire,CAIRN,12837091|19683839 +Le Praticien en Anesthésie Réanimation,Elsevier ,12797960| +Le Radium,EDP Sciences,03703223| +Le sociographe,CAIRN,12976628|21070636 +Le Télémaque,CAIRN,1263588X|21182191 +Le Temps des médias,CAIRN,17642507|21043671 +Le travail humain,CAIRN,00411868|21043663 +Le Zeitûnien Rénovateur,"""Al Manhal FZ, LLC""",23823046| +Leader to Leader,Wiley Blackwell (John Wiley & Sons),10878149|15315355 +Leadership,SAGE Publications,17427150|17427169 +Leadership & Organization Development Journal,Emerald (MCB UP ),01437739| +Leadership and Management,BIBLIO-GLOBUS Publishing House,24101664| +Leadership and Management in Engineering,American Society of Civil Engineers,15326748|19435630 +Leadership and Policy in Schools,Informa UK (Taylor & Francis),15700763|65478452 +Leadership and the Humanities,Edward Elgar Publishing,20508727|20508735 +Leadership in Action,Wiley Blackwell (John Wiley & Sons),10936092|15321088 +Leadership in Health Services,Emerald (MCB UP ),13660756|00000000 +Learned Publishing,Wiley Blackwell (John Wiley & Sons),09531513|17414857 +Learning & Behavior,Springer - Psychonomic Society,15434494|15434508 +Learning & Memory,Cold Spring Harbor Laboratory Press,10720502|15495485 +Learning & Perception,Akademiai Kiado Zrt.,17893186|20609175 +Learning and Individual Differences,Elsevier ,10416080| +Learning and Instruction,Elsevier ,09594752| +Learning and Motivation,Elsevier ,00239690|10959122 +Learning and Teaching,Berghahn Books,17552273|17552281 +Learning and Teaching,James Nicholas Publishers,18322751|22010645 +Learning and Teaching in Higher Education Gulf Perspectives,Zayed University Press,20775504|20775504 +Learning Communities International Journal of Learning in Social Contexts,Northern Institute,22027904|13291440 +Learning Community-An International Journal of Educational and Social Development,Diva Enterprises Private Limited,09763201|2231458X +Learning Culture and Social Interaction,Elsevier ,22106561| +Learning Disabilities A Multidisciplinary Journal,"""Sagamore Publishing, LLC""",23747846 +Learning Disabilities Research and Practice,Wiley Blackwell (Blackwell Publishing),09388982|15405826 +Learning Disability Practice,RCN Publishing,14658712|20478968 +Learning Disability Quarterly,SAGE Publications,07319487| +Learning Environments Research,Springer-Verlag,13871579|15731855 +Learning for Living,Informa UK (Taylor & Francis),00239704| +Learning in Health and Social Care,Wiley Blackwell (Blackwell Publishing),14736853|14736861 +Learning Inquiry,Springer-Verlag,15582973|15582981 +Learning Media & Technology,Informa UK (Taylor & Francis),17439884|17439892 +Learning Research and Practice,Informa UK (Taylor & Francis),23735082|23735090 +Lebanese Medical Journal,"""Al Manhal FZ, LLC""",00239852| +Lebende Sprachen,Walter de Gruyter GmbH,00239909|18680267 +Lebensmittelchemie,Wiley Blackwell (John Wiley & Sons),09371478|15213811 +Lectura y Signo,University of Leon,18858597|24440280 +Lecturas de Economía,Universidad de Antioquia,01202596|23230622 +Lecture Notes on Information Theory,EJournal Publishing,23013788| +Lecture Notes on Photonics and Optoelectronics,Engineering and Technology Publishing,23013753| +Lecture Notes on Software Engineering,EJournal Publishing,23013559|23013559 +Leczenie Ran,Evereth Publishing,17334101|17337607 +Legacy,University of Nebraska Press,07484321|15340643 +Legal and Criminological Psychology,Wiley Blackwell (Blackwell Publishing),13553259|00000000 +Legal Ethics,Informa UK (Taylor & Francis),1460728X|17578450 +Legal History Review,Japan Legal History Association,04412508|18835562 +Legal Information Management,Cambridge University Press,14726696|17412021 +Legal Issues of Economic Integration,Springer (Kluwer Academic Publishers),03770915| +Legal Medicine,Elsevier ,13446223| +Legal Reference Services Quarterly,Informa UK (Taylor & Francis),0270319X|1540949X +Legal Studies,Wiley Blackwell (Blackwell Publishing),02613875|1748121X +Legal Theory,Cambridge University Press,13523252|14698048 +Lege artis - Das Magazin zur ärztlichen Weiterbildung,Thieme Publishing Group,21914192|21914591 +LEGICOM,CAIRN,12449288|22728090 +Legislative Studies Quarterly,Wiley Blackwell (Blackwell Publishing),03629805| +Legisprudence,Informa UK (Taylor & Francis),17521467| +Legume Genomics and Genetics,"""Sophia Publishing Group, Inc.""",19251580 +Legume Research - An International Journal,Agricultural Research Communication Center,02505371|09760571 +Leibniz Society Review,Philosophy Documentation Center,15241556| +Leiden Journal of International Law,Cambridge University Press,09221565|14789698 +Leidfaden,"""Vandenhoeck & Ruprecht GmbH & Co, KG""",21968217|21968217 +Leisure Sciences,Informa UK (Taylor & Francis),01490400|15210588 +Leisure Studies,Informa UK (Taylor & Francis),02614367|14664496 +Leisure/Loisir,Informa UK (Taylor & Francis),14927713|21512221 +Lekovite sirovine,Centre for Evaluation in Education and Science,04556224| +Lengas,OpenEdition,01530313|22715703 +Lenox Avenue A Journal of Interarts Inquiry,JSTOR,10800646| +Leonardo,MIT Press,0024094X|15309282 +Leonardo electronic almanac,Sabanci University Information Center,10714391 +Leonardo Music Journal,MIT Press,09611215|15314812 +Leonardo Supplemental Issue,JSTOR,17487331| +Leprosy Review,GN1 Genesis Network,03057518| +Ler História,OpenEdition,08706182| +Lernen und Lernstörungen,Hogrefe Publishing Group,22350977|22350985 +Les ateliers de l éthique,Consortium Erudit,17189977 +Les Bulletins du GRIF,PERSEE Program,07706138| +Les Cahiers Anne Hébert,Universite de Sherbrooke,14881276|22928235 +Les Cahiers de droit,Consortium Erudit,0007974X|19188218 +Les Cahiers de Framespa,OpenEdition,17604761|17604761 +Les cahiers de l année gérontologique,Springer-Verlag,17605342|17605350 +Les Cahiers de la publicité,PERSEE Program,12687251| +Les Cahiers de la Société québécoise de recherche en musique,Consortium Erudit,14801132|19297394 +Les cahiers de médiologie,CAIRN,17775604| +Les Cahiers des dix,Consortium Erudit,0575089X|1920437X +Les Cahiers du Centre de Recherches Historiques,OpenEdition,09909141|17607906 +Les Cahiers du Centre Georges Canguilhem,CAIRN,19621086|22595309 +Les Cahiers du Gres,Consortium Erudit,14990431|1499044X +Les Cahiers du GRIF,PERSEE Program,07706081| +Les cahiers du numérique,Lavoisier SAS,14693380| +Les Cahiers Dynamiques,CAIRN,11673184|21099545 +Les Cahiers d’EMAM,OpenEdition,1969248X|21026416 +Les Cahiers d’Outre-Me,OpenEdition,03735834|19618603 +Les cahiers internationaux de psychologie sociale,CAIRN,07770707|24064696 +Les cahiers Irice,CAIRN,19672713|21180067 +Les Carnets de l ACoSt,OpenEdition,24318574 +Les Carnets de l ACoSt,OpenEdition,24318574 +Les conférences du Collège de France,OpenEdition,21099278|21099278 +Les cours du CIRM,Cellule MathDoc/CEDRAM,21087164 +Les dossiers des sciences de l’éducation,OpenEdition,12962104|22729968 +Les dossiers du Grihl,OpenEdition,19589247|19589247 +Les études philosophiques,CAIRN,00142166|21010056 +Les Études rhodaniennes,PERSEE Program,11646268| +Les Études Sociales,CAIRN,00142204|24283509 +Les Leçons inaugurales du Collège de France,OpenEdition,21099235 +Les Lettres Romanes,"""Brepols Publishers, NV""",00241415|22958991 +Les Nouveaux Cahiers du Conseil constitutionnel,CAIRN,21122679|19683820 +Les nouvelles de l archéologie,OpenEdition,02427702|24251941 +Les Sciences de l éducation - Pour l Ère nouvelle,CAIRN,07559593|22593764 +Les Temps Modernes,CAIRN,00403075|22729356 +Les Tribunes de la santé,CAIRN,17658888|21052182 +Lethaia,Wiley Blackwell (Blackwell Publishing),00241164|15023931 +Letopis naucnih radova Poljoprivrednog fakulteta,Centre for Evaluation in Education and Science,05468264| +Letras,Universidade Federal de Santa Maria,15193985|21761485 +Letras & Letras,Fundacao de Apoio Universitario,19815239 +Letras Clássicas,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,15164586|23583150 +Letras de Hoje,EDIPUCRS,01013335|19847726 +Letras Verdes Revista Latinoamericana de Estudios Socioambientales,Facultad Latinoamericana de Ciencias Sociales (FLACSO),13906631 +Letrônica,EDIPUCRS,19844301 +Lettera Matematica,Springer-Verlag,22816917|22815937 +Lettere al Nuovo Cimento,Springer-Verlag,0375930X|1827613X +Letters in Applied Microbiology,Wiley Blackwell (Blackwell Publishing),02668254|1472765X +Letters in Biomathematics,Informa UK (Taylor & Francis),23737867 +Letters in Drug Design & Discovery,Bentham Science,15701808|00000000 +Letters in Heat and Mass Transfer,Elsevier ,00944548| +Letters in Mathematical Physics,Springer-Verlag,03779017|15730530 +Letters in Organic Chemistry,Bentham Science,15701786|00000000 +Letters in Peptide Science,Springer-Verlag,09295666|1573496X +Letters in Spatial and Resource Sciences,Springer-Verlag,18644031|1864404X +Letters on Evolutionary Behavioral Science,Human Behavior and Evolution Society of Japan,1884927X +Leukemia,Nature Publishing Group,08876924|14765551 +Leukemia & Lymphoma,Informa UK (Taylor & Francis),10428194|10292403 +Leukemia Research,Elsevier ,01452126|01452126 +Leukemia Research and Treatment,Hindawi Publishing Corporation,20903219|20903227 +Leukemia Research Reports,Elsevier ,22130489| +Leukemia Supplements,Nature Publishing Group,20445210|20445229 +LEUKOS The Journal of the Illuminating Engineering Society of North America,Informa UK (Taylor & Francis),15502724|15502716 +Leuvense Bijdragen - Leuven Contributions in Linguistics and Philology,Peeters Publishers,241482 +Levant,Maney Publishing,00758914|17563801 +Leviathan,Nomos Verlag,03400425| +Leviathan,Muse - Johns Hopkins University Press,15256995|17501849 +Levinas Studies,Philosophy Documentation Center,15547000| +Lewis Acid Activation of the Imine,Thieme Publishing Group,20200153 +Lewis Acid Catalyzed Diels–Alder Cycloadditions,Thieme Publishing Group,20600313 +Lewis Acids,Thieme Publishing Group,20600291 +Lewis Acid–Surfactant Combined Catalysts for Organic Reactions in Water,Thieme Publishing Group,20600003 +Lex Electronica,Consortium Erudit,14801787 +Lex Humana,Coimbra University Press,21750947 +Lex localis - Journal of Local Self Government,Institut Za Lokalno Samoupravo in Javna Narocila Maribor,15815374| +Lex localis - Journal of Local Self-Government,Institut Za Lokalno Samoupravo in Javna Narocila Maribor,1855363X|1855363X +LEX RUSSICA (РУССКИЙ ЗАКОН),Kutafin Moscow State Law University,17295920| +Lexicographica - International Annual for Lexicography / Internationales Jahrbuch für Lexikographie,Walter de Gruyter GmbH,01756206|18659403 +Lexicography,Springer-Verlag,21974292|21974306 +Lexikos,Stellenbosch University - Lexikos,16844904|16844904 +LGBT Health,Mary Ann Liebert,23258292|23258306 +LHI Journal of Land Housing and Urban Affairs,Land and Housing Institute,20938829| +Liame,OpenEdition,2264623X|2264623X +Libellarium journal for the research of writing books and cultural heritage institutions,University of Zadar,18468527|18469213 +Liber Annuus,"""Brepols Publishers, NV""",00818933| +LIBER Quarterly,Uopen Journals,14355205|2213056X +Liberal Arts in Russia,Sotsial no-Gumanitarnoe Znanie Publishing House,23126442 +LIBERTAS MATHEMATICA (new series),American Romanian Academy of Arts and Sciences,02785307|2182567X +Librarian Career Development,Emerald (MCB UP ),09680810|00000000 +Libraries & the Cultural Record,University of Texas Press,19324855|19329555 +Library & Archival Security,Informa UK (Taylor & Francis),01960075|15409511 +Library & Information History,Maney Publishing,17583489|17583497 +Library & Information Science Research,Elsevier ,07408188| +Library Acquisitions Practice & Theory,Elsevier ,03646408| +Library Collections Acquisitions and Technical Services,Elsevier ,14649055| +Library Consortium Management An International Journal,Emerald (MCB UP ),14662760|00000000 +Library Herald,Diva Enterprises Private Limited,00242292|09762469 +Library Hi Tech,Emerald (MCB UP ),07378831|00000000 +Library Hi Tech News,Emerald (MCB UP ),07419058| +Library History,Maney Publishing,00242306|00000000 +Library Management,Emerald (MCB UP ),01435124|00000000 +Library Progress (International),Diva Enterprises Private Limited,09701052|2320317X +Library Resources and Technical Services,American Library Association,00242527|21599610 +Library Review,Emerald (MCB UP ),00242535|00000000 +Library Security Newsletter,Informa UK (Taylor & Francis),00940216| +Library Technology Reports,American Library Association,00242586| +Library Trends,Muse - Johns Hopkins University Press,15590682 +Library Workstation and PC Report,Emerald (MCB UP ),08949158| +Library Workstation Report,Emerald (MCB UP ),10417923| +LIBRE EMPRESA,Universidad Libre Seccional Cali,16572815| +Libres cahiers pour la psychanalyse,CAIRN,16257480|21182760 +Libri,Walter de Gruyter GmbH,00242667|18658423 +LIBRI Kitap Tanitimi Elestiri ve Ceviri Dergisi,"""LIBRI Kitap Tanitimi, Elestiri ve Ceviri Dergisi""",24587826| +Libros de la Corte es,Servicio de Publicaciones de la Universidad Autonoma de Madrid,19896425| +Libyan Journal of Medicine,Co-Action Publishing,19932820|18196357 +Libyan Studies,Cambridge University Press,02637189|20526148 +Liceo Journal of Higher Education Research,Liceo de Cagayan University,20941064|22440437 +Lick Observatory Bulletins,Smithsonian Institution,00759317| +Liebigs Annalen,Wiley Blackwell (John Wiley & Sons),09473440|10990690 +Liebigs Annalen der Chemie,Wiley Blackwell (John Wiley & Sons),01702041|10990690 +Lied und populäre Kultur / Song and Popular Culture,JSTOR,16190548| +Lien social et Politiques,Consortium Erudit,12043206|17039665 +Lietuvos chirurgija,Vilnius University,13920995|16489942 +Lietuvos istorijos studijos,Vilnius University,13920448|13920448 +Life,MDPI AG,20751729 +LIFE International Journal of Health and Life-Sciences,Global Research & Development Services,24545872 +Life of Telford,Thomas Telford Ltd.,72773502 +Life Sciences,Elsevier ,00243205| +Life Sciences in Space Research,Elsevier ,22145524| +Life Sciences Society and Policy,Springer (Biomed Central Ltd.),21957819|21957819 +Life Style,Instituto Adventista de Ensino,22373756|22373756 +Life The Excitement of Biology,Blay Publishers,2325081X|23250828 +Life Writing,Informa UK (Taylor & Francis),14484528|17512964 +Lifelong education the XXI century,Petrozavodsk State University,23087234 +Lifespans and Styles,"""UKOLN, University of Bath""",20571720 +Lifestyles,Springer-Verlag,08823391| +Lifetime Data Analysis,Springer-Verlag,13807870|15729249 +Light Science & Applications,Nature Publishing Group,20477538 +Lighting Research and Technology,SAGE Publications,13657828|14770938 +Lightweight Design,Springer Fachmedien Wiesbaden GmbH,18654819|21928738 +Lignes,CAIRN,09885226|2272818X +Liinc em Revista,IBICT,18083536 +Limes Borderland Studies,Vilnius Gediminas Technical University,20297475|20297483 +Limes Cultural Regionalistics,Vilnius Gediminas Technical University,20290187|20290209 +Limnologica - Ecology and Management of Inland Waters,Elsevier ,00759511| +Limnological Papers,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,1896835X| +Limnological Review,De Gruyter Open Sp. z o.o. ,16425952|23007575 +Limnology,Springer-Verlag,14398621|1439863X +Limnology & Oceanography Fluids & Environment,Duke University Press,21573698 +Limnology & Oceanography Fluids & Environments,Wiley Blackwell (Blackwell Publishing),21573689|21573689 +Limnology and Oceanography,Wiley Blackwell (Blackwell Publishing),00243590|00243590 +Limnology and Oceanography Bulletin,Wiley Blackwell (Blackwell Publishing),1539607X| +Limnology and Oceanography e-Lectures,Wiley Blackwell (John Wiley & Sons),21640254| +Limnology and Oceanography e-Lectures,"""American Society of Limnology and Oceanography, Inc.""",21572933 +Limnology and Oceanography Methods,Wiley Blackwell (Blackwell Publishing),15415856|15415856 +Linear Algebra and its Applications,Elsevier ,00243795| +Linear and Multilinear Algebra,Informa UK (Taylor & Francis),03081087|15635139 +Linear vs piecewise Weibull model for genetic evaluation of sires for longevity in Simmental cattle,Croatian Dairy Journal,18464025 +Lingua,Elsevier ,00243841| +Lingua Frankly,Boston College University Libraries,23336552 +Lingua Humanitatis,International Association for Humanistic Studies in Language,15982130| +LiNGUA Jurnal Ilmu Bahasa dan Sastra,Maulana Malik Ibrahim State Islamic University,16934725|24423823 +Lingua Posnaniensis,De Gruyter Open Sp. z o.o. ,00794740|20836090 +Lingua Sinica,Springer (Biomed Central Ltd.),21976678 +Linguaculture,De Gruyter Open Sp. z o.o. ,20679696|20679696 +Linguae & - Rivista di lingue e culture moderne,Led Edizioni Universitarie,22818952|17248698 +Linguagem em (Dis)curso,SciELO,15187632|19824017 +Linguagem Estudos e Pesquisas,Universidade Federal de Goias,15196240| +Linguagens - Revista de Letras Artes e Comunicação,Fundacao Universidade Regional de Blumenau,19819943 +Lingue Culture Mediazioni - Languages Cultures Mediation (LCM Journal),Led Edizioni Universitarie,22841881|24210293 +Lingue migranti e nuovi paesaggi,Led Edizioni Universitarie,22835628| +Linguistic Approaches to Bilingualism,John Benjamins Publishing Company,18799264|18799272 +Linguistic Discovery,Dartmouth College Library Press,15370852 +Linguistic Evidence in Security Law and Intelligence,"""University Library System, University of Pittsburgh""",23275596 +Linguistic Inquiry,MIT Press,00243892|15309150 +Linguistic Landscape,John Benjamins Publishing Company,22149953|22149961 +Linguistic Research,"""Institute for the Study of Language and Information, Kyung Hee University""",12291374| +Linguistic Research,"""Institute for the Study of Language and Information, Kyung Hee University""",12291374| +Linguistic Typology,Walter de Gruyter GmbH,14300532|1613415X +Linguistic Variation,John Benjamins Publishing Company,22116834|22116842 +Linguistic Variation Yearbook,John Benjamins Publishing Company,15681483|15699900 +Linguistica,University of Ljubljana,00243922|2350420X +Linguistica Copernicana,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,20801068|23917768 +Linguistica Letras e Artes,Universidade Estadual de Ponta Grossa,16768493|1809029X +Linguistica Pragensia,De Gruyter Open Sp. z o.o. ,8628432 +Linguistica Uralica,Estonian Academy Publishers,08684731| +Lingüística y Literatura,Universidad de Antioquia,01205587|24223174 +Linguistics,Walter de Gruyter GmbH,00243949|1613396X +Linguistics and Education,Elsevier ,08985898| +Linguistics and Literature Studies,"""Horizon Research Publishing Co., Ltd.""",2331642X|23316438 +Linguistics and Philosophy,Springer-Verlag,01650157|15730549 +Linguistics and the Human Sciences,Equinox Publishing,17422906|17431662 +Linguistics in the Netherlands,John Benjamins Publishing Company,09297332|00000000 +Linguistics of the Tibeto-Burman Area,John Benjamins Publishing Company,07313500|22145907 +Linguistics Vanguard,Walter de Gruyter GmbH,2199174X +Linguodidactica,University of Bialystok,17316332| +LingVaria,Ksiegarnia Akademicka Sp. z.o.o.,18962122|18962122 +Lingvisticae Investigationes,John Benjamins Publishing Company,03784169|15699927 +Linha D Água,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,01033638|22364242 +Linkscienceplace,LinkSciencePlace,23588411 +Linx,OpenEdition,02468743|21189692 +Lipid / Fett,Wiley Blackwell (John Wiley & Sons),09315985|15214133 +Lipid Insights,"""Libertas Academica, Ltd.""",11786353 +Lipid Technology,Wiley Blackwell (John Wiley & Sons),0956666X|18635377 +Lipidomics Gateway,Nature Publishing Group,20403453|20403453 +Lipids,Springer-Verlag,00244201|15589307 +Lipids in Health and Disease,Springer (Biomed Central Ltd.),1476511X|1476511X +Lippincott s Bone and Joint Newsletter,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15439879| +Lippincott s Case Management,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15297764| +Lippincottʼs Bone and Joint Newsletter,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,19388659| +Lippincottʼs Bone and Joint Newsletter,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,19388659| +Liquid Crystals,Informa UK (Taylor & Francis),02678292|13665855 +Liquid Crystals and their Application,Ivanovo State University,19913966| +Liquid Crystals Reviews,Informa UK (Taylor & Francis),21680396|21680418 +Liquid Crystals Today,Informa UK (Taylor & Francis),1358314X|14645181 +Liquid Fuels Technology,Informa UK (Taylor & Francis),07377266| +Liquid Waste Recovery,Walter de Gruyter GmbH,23536462 +LISP and Symbolic Computation,Springer-Verlag,08924635| +List Forum für Wirtschafts- und Finanzpolitik,Springer-Verlag,09370862|23643943 +LIT Literature Interpretation Theory,Informa UK (Taylor & Francis),10436928|15455866 +Litera,"""NB-Media, Ltd.""",24098698 +Literacy,Wiley Blackwell (Blackwell Publishing),17414350|17414369 +Literacy and Numeracy Studies,"""University of Technology, Sydney""",14410559|14410559 +Literacy Research and Instruction,Informa UK (Taylor & Francis),19388071| +Literacy Research and Instruction,Informa UK (Taylor & Francis),19388071| +Literacy Research and Instruction,Informa UK (Taylor & Francis),19388071| +Literacy Research and Instruction,Informa UK (Taylor & Francis),19388071|19388063 +Literacy Research Theory Method and Practice,SAGE Publications,23813369|23813377 +Literartes,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,23169826 +Literary and Linguistic Computing,Oxford University Press,02681145|14774615 +Literary Imagination,Oxford University Press,15239012|17526566 +Literator,AOSIS,02582279|22198237 +Literatūra,Vilnius University,02580802|16481143 +Literatura e Autoritarismo,Universidade Federal de Santa Maria,1679849X|1679849X +Literatura e Sociedade,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,14132982|22371184 +Literatura Mexicana,Instituto de Investigaciones Filologicas,01882546| +Literatura teoría historia crítica,Universidad Nacional de Colombia,01235931|22565450 +Literatura y lingüística,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,07165811|07165811 +Literature & History,SAGE Publications,03061973|20504594 +Literature and Medicine,Muse - Johns Hopkins University Press,10806571 +Literature and Performance,Informa UK (Taylor & Francis),07340796| +Literature and Religion,The Korean Society for Literature and Religion,12295620|22887652 +Literature and Theology,Oxford University Press,02691205|14774623 +Literature Compass,Wiley Blackwell (Blackwell Publishing),17414113|17414113 +Lithic Technology,Maney Publishing,01977261|20516185 +Lithology and Mineral Resources,Pleiades Publishing,00244902|16083229 +Lithos,Elsevier ,00244937| +Lithosphere,Geological Society of America,19418264|19474253 +Lithuanian Annual Strategic Review,De Gruyter Open Sp. z o.o. ,16488024|2335870X +Lithuanian Journal of Physics,Lithuanian Academy of Sciences,16488504|16488504 +Lithuanian Mathematical Journal,Springer-Verlag,03631672|15738825 +Lithuanian Mathematical Transactions,Springer-Verlag,01488279| +Littera Turca Journal of Turkish Language and Literature,Littera Turca Journal of Turkish Language and Literature,2149892X +Litteraria Copernicana,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,1899315X| +Littérature,CAIRN,00474800|19585926 +Littératures,OpenEdition,05639751|22730311 +Littératures classiques,CAIRN,22608478| +Lituanistica,Lithuanian Academy of Sciences,0235716X|0235716X +Liturgy,Informa UK (Taylor & Francis),0458063X|15573001 +LIVE,MIT Press,23742240 +Liver Cancer,S. Karger AG,22351795|16645553 +Liver International,Wiley Blackwell (Blackwell Publishing),14783223| +Liver International,Wiley Blackwell (Blackwell Publishing),14783223| +Liver International,Wiley Blackwell (Blackwell Publishing),01069543|16000676 +Liver Research - Open Journal,Openventio Publishers,23794038 +Liver Transplantation,Wiley Blackwell (John Wiley & Sons),15276465|15276473 +Liver Transplantation and Surgery,Wiley Blackwell (John Wiley & Sons),10743022| +Liverpool Law Review,Springer-Verlag,0144932X|15728625 +Livestock,Mark Allen Group,1464262X|20443870 +Livestock Production Science,Elsevier ,03016226| +Livestock Science,Elsevier ,18711413| +Living,JSTOR,15381420| +Living Reviews in Computational Astrophysics,Springer-Verlag,23650524 +Living Reviews in Computational Astrophysics,Springer-Verlag,23650524 +Living Reviews in European Governance,Living Reviews,1813856X +Living Reviews in Landscape Research,Living Reviews,18637329 +Living Reviews in Relativity,Springer-Verlag,14338351 +Living Reviews in Solar Physics,Springer-Verlag,16144961 +Livraisons d histoire de l architecture,PERSEE Program,16274970| +Livraisons d histoire de l architecture,PERSEE Program,16274970|19605994 +LMS Journal of Computation and Mathematics,Oxford University Press - London Mathematical Society,14611570|14611570 +LO SCALPELLO-OTODI Educational,Springer-Verlag,03905276|19706812 +Lo Spettatore Internazionale,Informa UK (Taylor & Francis),05848776| +Lobachevskii Journal of Mathematics,Pleiades Publishing,19950802|18189962 +Local and Regional Anesthesia,Dove Medical Press,11787112 +Local Economy,SAGE Publications,02690942|14709325 +Local Environment,Informa UK (Taylor & Francis),13549839|14696711 +Local Government Studies,Informa UK (Taylor & Francis),03003930|17439388 +Localities,Korean Studies Institute,22345663| +Location Science,Elsevier ,09668349| +Lodz Papers in Pragmatics,Walter de Gruyter GmbH,18956106|18984436 +LOG IN,Springer-Verlag,7208642 +Logforum,Wyzsza Szkola Logistyki (Poznan School of Logistics),18952038|1734459X +Loggia Arquitectura & Restauración,Universitat Politecnica de Valencia,1136758X| +Logic and Analysis,Springer-Verlag,18633617|18633625 +Logic and Logical Philosophy,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,14253305|23009802 +Logic Journal of IGPL,Oxford University Press,13670751|13689894 +Logica Universalis,Springer-Verlag,16618297|16618300 +Logical Methods in Computer Science,Logical Methods in Computer Science,18605974|18605974 +Logistics & sustainable transport,Walter de Gruyter GmbH,22324968 +Logistics Information Management,Emerald (MCB UP ),09576053|00000000 +Logistics Journal nicht-referierte Veröffentlichungen,Fraunhofer-Institut fur Materialfluss und Logistik,18605923|18605923 +Logistics Journal Proceedings,Fraunhofer-Institut fur Materialfluss und Logistik,21929084 +Logistics Journal Referierte Veröffentlichungen,Fraunhofer-Institut fur Materialfluss und Logistik,18607977 +Logistics Research,Springer-Verlag,1865035X|18650368 +Logistics World,Emerald (MCB UP ),09532137| +Logopedics Phoniatrics Vocology,Informa UK (Taylor & Francis),14015439|16512022 +logos,Philosophy Documentation Center,10916687| +LOGOS,Brill Academic Publishers,09579656|18784712 +Logos & Episteme,Philosophy Documentation Center,20690533| +Logos A Journal of Catholic Thought and Culture,Muse - Johns Hopkins University Press,1533791X +Logos Anales del Seminario de Metafísica,Universidad Complutense de Madrid,15756866|19883242 +Logos i Ethos,Pontifical Universtiy of John Paul II in Krakow,08678308|23916834 +Logos Revista de Lingüística Filosofía y Literatura,Universidad de la Serena,07193262|07167520 +Logos Universality Mentality Education Novelty Economical and Administrative Sciences,Asociatia LUMEN,22845984| +Logos Universality Mentality Education Novelty Law,Asociatia LUMEN,22845968| +Logos Universality Mentality Education Novelty Philosophy and Humanistic Sciences,Asociatia LUMEN,22845976| +Logos Universality Mentality Education Novelty Political Sciences and European Studies,Asociatia LUMEN,22845992| +Logos Universality Mentality Education Novelty SOCIAL SCIENCES,Asociatia LUMEN,22845747| +Loisir et Société / Society and Leisure,Informa UK (Taylor & Francis),07053436|17050154 +London Business School Review,Wiley Blackwell (Blackwell Publishing),20571607| +London Journal of Canadian Studies,UCL Press,02672200| +London Journal of Primary Care,Informa UK (Taylor & Francis),17571472|17571480 +London Review of Education,Informa UK (Taylor & Francis),14748460|14748479 +London Review of International Law,Oxford University Press,20506325|20506333 +Long Range Planning,Elsevier ,00246301| +Longevity & Healthspan,Springer (Biomed Central Ltd.),20462395| +Longitudinal and Life Course Studies,Society for Longitudinal and Life Course Studies,17579597|17579597 +Loquens,Departmento de Publicaciones del CSIC,23862637 +Loss Grief & Care,Informa UK (Taylor & Francis),87564610|15409619 +Loss Prevention Bulletin,Elsevier ,02609576|00000000 +Louvain Studies,Peeters Publishers,246964 +Lov og Rett,Scandinavian University Press / Universitetsforlaget AS,00246980|15043061 +Lovotics,OMICS Publishing Group,2090987X|20909888 +Low Carbon Economy,"""Scientific Research Publishing, Inc.""",21587000|21587019 +Low Intensity Conflict & Law Enforcement,Informa UK (Taylor & Francis),09662847|17440556 +Low Temperature Physics,American Institute of Physics,1063777X|10906517 +Lowland Technology International,International Association of Lowland Technology,13449656| +Loyola Schools Review,PhilJOL,16566211| +LS International Journal of Life Sciences,Diva Enterprises Private Limited,2319118X|23191198 +LSA Annual Meeting Extended Abstracts,Semantics and Pragmatics,23773367 +Ĺšrodkowoeuropejskie Studia Polityczne,Adam Mickiewicz University Poznan,17317517| +Lua Nova Revista de Cultura e Política,SciELO,01026445|01026445 +Lubelski RocznikPedagogiczny,Wydawnictwo Uniwersytetu Marii Curie-SkÅ?odowskiej w Lublinie,01376136| +Lublin Studies in Modern Languages and Literature,Wydawnictwo Uniwersytetu Marii Curie-SkÅ?odowskiej w Lublinie,01374699|01374699 +Lubricants,MDPI AG,20754442 +Lubrication Science,Wiley Blackwell (John Wiley & Sons),09540075|15576833 +Lucide,Springer-Verlag,22136118|22136126 +Lumen Educare,Instituto Adventista de Ensino,24475432|24475432 +Lumen Selected Proceedings from the Canadian Society for Eighteenth-Century Studies,Consortium Erudit,12093696|19278284 +Lumiar,Universidade Estadual de Ponta Grossa,19814097|23163771 +Luminescence,Wiley Blackwell (John Wiley & Sons),15227235|15227243 +Luna Azul,Universidad de Caldas,19092474 +Lung,Springer-Verlag,03412040|14321750 +Lung Cancer,Elsevier ,01695002| +Lung Cancer International,Hindawi Publishing Corporation,20903197|20903200 +Lung Cancer Management,Future Medicine,17581966|17581974 +Lung Cancer Targets and Therapy,Dove Medical Press,11792728 +Lung India,Medknow Publications,09702113| +Lupus,SAGE Publications,09612033|14770962 +Lupus Science & Medicine,BMJ,20538790 +Luso-Brazilian Review,University of Wisconsin Press,00247413|15489957 +Lusotopie,Brill Academic Publishers,12570273|17683084 +Lutheran Quarterly,Muse - Johns Hopkins University Press,24705616 +LUTS Lower Urinary Tract Symptoms,Wiley Blackwell (Blackwell Publishing),17575664|17575672 +LUX,Claremont Colleges Library,23273895 +Luxury,Informa UK (Taylor & Francis),20511817|20511825 +Luxury Research J,Inderscience Enterprises Ltd.,20413831|2041384X +Lvcentvm,Publicaciones Universidad de Alicante,02132338|19899904 +LVSA Byblad,Informa UK (Taylor & Francis),23051736| +Lwati A Journal of Contemporary Research,African Journals Online ,18132227 +LWT - Food Science and Technology,Elsevier ,00236438| +Lymphatic Research and Biology,Mary Ann Liebert,15396851|00000000 +Lymphoma,Hindawi Publishing Corporation,2090309X|20903103 +Lymphoma and Chronic Lymphocytic Leukemias,"""Libertas Academica, Ltd.""",11792361 +LymphoSign Journal,LymphoSign Journal Limited Partnership,22925937|22925945 +Lyon Pharmaceutique,Elsevier ,00247804| +Læknablaðið,Laeknabladid/The Icelandic Medical Journal,00237213|16704959 +L’Année Biologique,Elsevier ,00035017| +L’Année psychanalytique internationale,CAIRN,16618009|22731598 +L’Année psychologique,Editions NecPlus,00035033|19552580 +L’annuaire du Collège de France,OpenEdition,00695580|21099227 +L’Annuaire théâtral Revue québécoise d’études théâtrales,Consortium Erudit,08270198|19230893 +L’Enseignement Mathématique,European Mathematical Society Publishing House,00138584| +L’Espace Politique,OpenEdition,19585500|19585500 +L’Ordinaire des Amériques,OpenEdition,22730095 +L’Orientation scolaire et professionnelle,OpenEdition,02496739|21043795 +M,Ankara University,13059971 +M I R (Modernization Innovation Reseches),Publishing House Science,20794665|2411796X +M n gement,CAIRN,12864692|12864692 +M U Iktisadi ve Idari Bilimler Dergisi,M.U. Iktisadi ve Idari Bilimler Dergisi,13007262| +M+A Revista Electrónica de Medioambiente,Universidad Complutense de Madrid,18863329 +M300 and PC Report,Emerald (MCB UP ),07437633| +Maandblad voor Ondernemingsrecht,Boom Uitgevers Den Haag,24523135| +Maandblad voor Vermogensrecht,Boom Uitgevers Den Haag,15745767| +Maatwerk,Springer-Verlag,15676587|18766021 +mAbs,Landes Bioscience,19420862|19420870 +Macedonian Journal of Medical Sciences,ID Design 2012/DOOEL Skopje,18575749|18575773 +Macedonian Medical Electronic Journal,ID Design 2012/DOOEL Skopje,18579809 +Macedonian Medical Review,De Gruyter Open Sp. z o.o. ,251097 +Macedonian Veterinary Review,Walter de Gruyter GmbH,14097621|18577415 +Machado de Assis em Linha,SciELO,19836821 +Machine Intelligence and Pattern Recognition,Elsevier , +Machine Learning,Springer-Verlag,08856125|15730565 +Machine Learning and Applications An International Journal,Academy and Industry Research Collaboration Center,23940840 +Machine Translation,Springer-Verlag,09226567|15730573 +Machine Vision and Applications,Springer-Verlag,09328092|14321769 +Machinery and Equipment for Rural Area,"""Science and Education, Ltd.""",20729642| +Machines,MDPI AG,20751702 +Machining Science and Technology,Informa UK (Taylor & Francis),10910344|15322483 +MACRo 2015,Walter de Gruyter GmbH,22470948 +Macroeconomic Dynamics,Cambridge University Press,13651005|14698056 +Macroeconomics and Finance in Emerging Market Economies,Informa UK (Taylor & Francis),17520843| +Macroeconomics and Finance in Emerging Market Economies,Informa UK (Taylor & Francis),17520843|17520851 +Macroheterocycles,Ivanovo State University of Chemistry and Technology,19989539| +Macromolecular Bioscience,Wiley Blackwell (John Wiley & Sons),16165187|16165195 +Macromolecular Chemistry and Physics,Wiley Blackwell (John Wiley & Sons),10221352|15213935 +Macromolecular Materials and Engineering,Wiley Blackwell (John Wiley & Sons),14387492|14392054 +Macromolecular Rapid Communications,Wiley Blackwell (John Wiley & Sons),10221336|15213927 +Macromolecular Reaction Engineering,Wiley Blackwell (John Wiley & Sons),1862832X|18628338 +Macromolecular Research,Springer-Verlag,15985032|20927673 +Macromolecular Symposia,Wiley Blackwell (John Wiley & Sons),10221360|15213900 +Macromolecular Theory and Simulations,Wiley Blackwell (John Wiley & Sons),10221344|15213919 +Macromolecules,American Chemical Society,00249297|15205835 +Macrophage,"""Smart Science and Technology, LLC""",2378136X +Madagascar Conservation & Development,African Journals Online ,16622510 +Maden Tetkik ve Arama Dergisi,Maden Tetkik ve Arama Dergisi,1304334X| +Maderas Ciencia y tecnología,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,0718221X +Madroño,BioOne (California Botanical Society),00249637|19436297 +Madrygal Revista de Estudios Gallegos,Universidad Complutense de Madrid,11389664|19883285 +Mäetagused,Estonian Literary Museum Scholary Press,1406992X|14069938 +Magallania (Punta Arenas),SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7182244 +Magazine of Civil Engineering,St. Petersburg State Polytechnical University,20714726|20710305 +Magazine of Concrete Research,Thomas Telford Ltd.,00249831|1751763X +Maghreb - Machrek,CAIRN,17623162|22716815 +Magic Ritual and Witchcraft,Muse - Johns Hopkins University Press,19405111 +Magis Revista Internacional de Investigación en Educación,Editorial Pontificia Universidad Javeriana,20271174|20271182 +Magister,Elsevier ,02126796| +Magistro,Universidad Santo Tomas,20118643| +Magnetic and Electrical Separation,Hindawi Publishing Corporation,10556915|14772876 +Magnetic Resonance Imaging,Elsevier ,0730725X| +Magnetic Resonance Imaging Clinics of North America,Elsevier ,10649689| +Magnetic Resonance in Chemistry,Wiley Blackwell (John Wiley & Sons),07491581|1097458X +Magnetic Resonance in Medical Sciences,Japanese Society for Magnetic Resonance in Medicine,13473182|18802206 +Magnetic Resonance in Medicine,Wiley Blackwell (John Wiley & Sons),07403194|15222594 +Magnetic Resonance Insights,"""Libertas Academica, Ltd.""",1178623X +Magnetic Resonance Materials in Physics Biology and Medicine,Springer-Verlag,09685243|13528661 +Magnetic Separation News,Hindawi Publishing Corporation,07313632|14772876 +Magnetochemistry,MDPI AG,23127481 +Magnetohydrodynamics,Springer (Kluwer Academic Publishers),0024998X| +Magnificat Cultura i Literatura Medievals,Universitat de Valencia,23868295 +Maguaré,Universidad Nacional de Colombia,01203045|22565752 +Magyar Apróvad Közlemények,Magyar Aprovad Kozlemenyek,1418284X| +Magyar Nyelv,Magyar Nyelv,00250228|15881210 +Magyar Onkológia,Akademiai Kiado Zrt.,00250244|20600399 +Magyar Pedagógia,Magyar Pedagogia,00250260| +Magyar Pszichológiai Szemle,Akademiai Kiado Zrt.,00250279|15882799 +Magyar Radiológia Online,Radiologia.hu Kft.,20639481| +Magyar Sebészet (Hungarian Journal of Surgery),Akademiai Kiado Zrt.,00250295|17894301 +Magyar Terminológia,Akademiai Kiado Zrt.,17899486|20602774 +Magyar Vízivad Közlemények,Magyar Vizivad Kozlemenyek,14161389| +MaHKUscript Journal of Fine Art Research,"""Ubiquity Press, Ltd.""",23970863 +Main Economic Indicators,Organisation for Economic Co-Operation and Development ,04745523|16097319 +Main Economic Indicators,Organisation for Economic Co-Operation and Development ,22194991|22195009 +Main Group Chemistry,IOS Press,10241221|17451167 +Main Group Metal Chemistry,Walter de Gruyter GmbH,07921241|21910219 +Main Science and Technology Indicators,Organisation for Economic Co-Operation and Development ,1011792X|16097327 +Main Science and Technology Indicators,Organisation for Economic Co-Operation and Development ,23042761|2304277X +Maine Naturalist,JSTOR,10633626| +Maize Genomics and Genetics,"""Sophia Publishing Group, Inc.""",19251971 +Majalah Kedokteran Bandung,Majalah Kedokteran Bandung (MKB),23386223 +Majalah Kulit Karet dan Plastik,"""Balai Besar Kulit, Karet dan Plastik (Center for Leather, Rubber and Plastics)""",18296971|24604461 +Majmaah Journal of Health Sciences,"""Al Manhal FZ, LLC""",1658645X| +Major Histocompatibility Complex,Japanese Society for Histocompatibility and Immunogenetics,21869995|21874239 +Makara Journal of Health Research,"""Universitas Indonesia, Directorate of Research and Public Service""",23563664|23563656 +Makara Journal of Science,"""Universitas Indonesia, Directorate of Research and Public Service""",23391995|23560851 +Makara Journal of Technology,"""Universitas Indonesia, Directorate of Research and Public Service""",23552786|23564539 +MAKARA of Health Series,"""Universitas Indonesia, Directorate of Research and Public Service""",16936728| +MAKARA of Science Series,"""Universitas Indonesia, Directorate of Research and Public Service""",16936671| +MAKARA of Social Sciences and Humanities Series,"""Universitas Indonesia, Directorate of Research and Public Service""",16936701| +MAKARA of Technology Series,"""Universitas Indonesia, Directorate of Research and Public Service""",16936698| +Makerere Journal of Higher Education,African Journals Online ,18166822 +Makromolekulare Chemie Macromolecular Symposia,Wiley Blackwell (John Wiley & Sons),02580322| +Malacologia,BioOne (Institute of Malacology),00762997|00762997 +Malala,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,24465240 +Malaria Chemotherapy Control and Elimination,OMICS Publishing Group,2090276X|20902778 +Malaria Journal,Springer (Biomed Central Ltd.),14752875|14752875 +Malaria Reports,PAGEPress Publications,20394373|20394381 +Malaria Research and Treatment,Hindawi Publishing Corporation (Sage-Hindawi Access to Research),20908075|20444362 +Malawi Journal of Science and Technology,African Journals Online ,10197079 +Malawi Medical Journal,African Journals Online ,19957262 +Malay,PhilJOL,01156195| +Malaysian Journal of Medical and Biological Research,Asian Business Consortium,23130008|23130016 +Malaysian Orthopaedic Journal,Malaysian Orthopaedic Association,19852533|19852533 +Malecular Imaging and Radionuclide Therapy,Galenos Yayinevi,21461414| +Malignant tumours,Fond Oncoporgress,22245057| +MALTRATTAMENTO E ABUSO ALL INFANZIA,Franco Angeli,15914267|19725140 +MAMC Journal of Medical Sciences,Medknow Publications,23947438| +Mammal Research,Springer-Verlag,21992401|2199241X +Mammal Review,Wiley Blackwell (Blackwell Publishing),03051838|13652907 +Mammal Study,BioOne (Mammalogical Society of Japan),13434152|13486160 +Mammalia,Walter de Gruyter GmbH,00251461|18641547 +Mammalian Biology - Zeitschrift für Säugetierkunde,Elsevier ,16165047| +Mammalian Genome,Springer-Verlag,09388990|14321777 +Mammalian Species,Oxford University Press,00763519|15451410 +Man,JSTOR,00251496| +Man and Nature,Consortium Erudit,08243298|19278810 +Man and the Economy,Walter de Gruyter GmbH,21969639|21969647 +Man and World,Springer-Verlag,00251534| +Mana,SciELO,01049313|01049313 +Management,De Gruyter Open Sp. z o.o. ,14299321|14299321 +Management,Infra-M Academic Publishing House,23083565| +Management,Scientific and Academic Publishing,21629374| +Management & Avenir,CAIRN,17685958|19696574 +Management & Engineering,"""St. Plum-Blossom Press Pty, Ltd.""",18385745| +Management & Marketing,Walter de Gruyter GmbH,18420206 +Management & Organizational History,Informa UK (Taylor & Francis),17449359|17449367 +Management - Journal for theory and practice of management,Faculty of Organizational Sciences,18200222| +Management Accounting Research,Elsevier ,10445005|10961224 +Management and Business Administration Central Europe,Kozminski University,20843356|2300858X +Management and Economics Research Journal,HATASO Enterprises LLC (Aston Journals),24694339| +Management and Labour Studies,SAGE Publications,0258042X| +Management and Organization Review,Cambridge University Press,17408776|17408784 +Management and Organizational Studies,Sciedu Press,23305495|23305509 +Management and Production Engineering Review,De Gruyter Open Sp. z o.o. ,20808208|20821344 +Management Communication Quarterly,SAGE Publications,08933189|00000000 +MANAGEMENT CONTROL,Franco Angeli,22390391|22394397 +Management Decision,Emerald (MCB UP ),00251747|00000000 +Management Development Review,Emerald (MCB UP ),09622519|00000000 +Management Education An International Journal,Common Ground Publishing,23278005|23279273 +Management Forum,Wroclaw University of Economics,23920025|23920025 +Management in Education,SAGE Publications,08920206|17419883 +Management in Health,SNSPMS Bucharest,14534541|20677561 +Management international,Consortium Erudit,12061697|19189222 +Management International Review,Springer-Verlag,09388249|18618901 +Management Learning,SAGE Publications,13505076|00000000 +Management of Biological Invasions,Regional Euro-Asian Biological Invasions Centre Oy - REABIC,19898649 +Management of Environmental Quality An International Journal,Emerald (MCB UP ),14777835| +Management of Organizations Systematic Research,Vytautas Magnus University,13921142|23358750 +Management of Sustainable Development,De Gruyter Open Sp. z o.o. ,22470220 +Management of the personnel and intellectual resources in Russia,Infra-M Academic Publishing House,23057807| +Management Report for Nonunion Organizations,Wiley Blackwell (John Wiley & Sons),07454880|15308286 +Management Research News,Emerald (MCB UP ),01409174| +Management Research Review,Emerald (MCB UP ),20408269| +Management Research The Journal of the Iberoamerican Academy of Management,Emerald (MCB UP ),15365433| +Management Review,Universidad Politecnica de Guanajuato,2007977X +Management Review Quarterly,Springer-Verlag,21981620|21981639 +Management Science,Institute for Operations Research and the Management Sciences,00251909|15265501 +Management Science and Engineering,Hans Publishers,2167664X|21676658 +Management Science and Financial Engineering,The Korean Operations and Management Science Society,22872043| +Management Science Letters,Growing Science,19239335|19239343 +Management Studies,David Publishing Company,23282185|23282185 +Management Studies and Economic Systems,"""Al Manhal FZ, LLC""",24089583|23135166 +Management Teaching Review,SAGE Publications,23792981 +Management Theory and Studies for Rural Business and Infrastructure Development,Aleksandras Stulginskis University,18226760|23450355 +Management Today,Greit Publications,22309764|22309764 +Managerial and Decision Economics,Wiley Blackwell (John Wiley & Sons),01436570|10991468 +Managerial Auditing Journal,Emerald (MCB UP ),02686902|00000000 +Managerial Economics,AGH University of Science and Technology Press,18981143| +Managerial Finance,Emerald (MCB UP ),03074358| +Managing Leisure,Informa UK (Taylor & Francis),13606719|1466450X +Managing Service Quality,Emerald (MCB UP ),09604529|00000000 +Managing Sport and Leisure,Informa UK (Taylor & Francis),23750472|23750480 +Manchester School,Wiley Blackwell (Blackwell Publishing),14636786|14679957 +Mandenkan,OpenEdition,07525443|2104371X +Mandrágora,Instituto Metodista de Ensino Superior,21760985 +Manganese–Salen-Catalyzed Oxidation,Thieme Publishing Group,20600046 +Mangroves and Salt Marshes,Springer (Kluwer Academic Publishers),13863509| +Mankind,Wiley Blackwell (Blackwell Publishing),00252328| +Manoa,Muse - Johns Hopkins University Press,1527943X +MANTHAN Journal of Commerce and Management,Journal Press India,23474440|23952601 +Manual Therapy,Elsevier ,1356689X| +Manual Therapy Posturology & Rehabilitation Journal,Pro Ciencia Periodicos Cientificos,16775937|22365435 +Manuelle Medizin,Springer-Verlag,00252514|14330466 +manuelletherapie,Thieme Publishing Group,14332671|14392348 +Manufacturing & Service Operations Management,Institute for Operations Research and the Management Sciences,15234614|15265498 +Manufacturing and Industrial Engineering,Technical University of Kosice,13357972|13392972 +Manufacturing Engineer,Institution of Electrical Engineers,09569944|17410509 +Manufacturing Letters,Elsevier ,22138463| +Manufacturing Research and Technology,Elsevier , +Manufacturing Review,EDP Sciences,22654224 +Manufacturing Science and Technology,"""Horizon Research Publishing Co., Ltd.""",23332735|23332697 +Manuscripta,"""Brepols Publishers, NV""",00252603| +manuscripta mathematica,Springer-Verlag,00252611|14321785 +Manuscrito,SciELO,01006045|2317630X +Manuscrits Revista d història moderna,Universitat Autonoma de Barcelona,02132397|20146000 +MAP Kinase,PAGEPress Publications,22354956 +MAPAN,Springer-Verlag,09703950|09749853 +Mapping Sciences & Remote Sensing,Informa UK (Taylor & Francis),07493878| +Marang Journal of Language and Literature,African Journals Online ,18167659 +Marburger Jahrbuch für Kunstwissenschaft,JSTOR,0342121X| +Marcellia,Smithsonian Institution Biodiversity Heritage Library,00252794| +Marché et organisations,CAIRN,19536119|2264525X +Mare Nostrum,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,21774218 +Marges,OpenEdition,17677114|24168742 +Margin The Journal of Applied Economic Research,SAGE Publications,09738010|09738029 +Marine and Coastal Fisheries,American Fisheries Society,19425120|19425120 +Marine and Freshwater Behaviour and Physiology,Informa UK (Taylor & Francis),10236244|10290362 +Marine and Freshwater Research,CSIRO Publishing,13231650| +Marine and Petroleum Geology,Elsevier ,02648172| +Marine Behaviour and Physiology,Informa UK (Taylor & Francis),0091181X| +Marine Biodiversity,Springer-Verlag,18671616|18671624 +Marine Biodiversity Records,Springer (Biomed Central Ltd.),17552672 +Marine Biological Journal,IMBR RAS,24999768|24999776 +Marine Biology,Springer-Verlag,00253162|14321793 +Marine Biology Research,Informa UK (Taylor & Francis),17451000|17451019 +Marine Biotechnology,Springer-Verlag,14362228|14362236 +Marine Chemistry,Elsevier ,03044203| +Marine Drugs,MDPI AG,16603397 +Marine Ecology,Wiley Blackwell (Blackwell Publishing),01739565|14390485 +Marine Ecology Progress Series,Inter-Research Science Center,01718630|16161599 +Marine Engineering,The Japan Institute of Marine Engineering,13461427|18843778 +Marine Engineering Frontiers,"""Science and Engineering Publishing, Co.""",23277653| +Marine Environmental Research,Elsevier ,01411136| +Marine Fisheries Review,NMFS Scientific Publications Office,00901830| +Marine fouling,The Sessile Organisms Society of Japan,03883531|18834698 +Marine Genomics,Elsevier ,18747787| +Marine Geodesy,Informa UK (Taylor & Francis),01490419|1521060X +Marine Geology,Elsevier ,00253227| +Marine Geology & Quaternary Geology,China Science Publishing & Media Ltd.,02561492| +Marine Geophysical Research,Springer-Verlag,00253235|15730581 +Marine Georesources and Geotechnology,Informa UK (Taylor & Francis),1064119X|15210618 +Marine Geotechnology,Informa UK (Taylor & Francis),03608867| +Marine Mammal Science,Wiley Blackwell (Blackwell Publishing),08240469|17487692 +Marine Micropaleontology,Elsevier ,03778398| +Marine Models,Elsevier ,13699350| +Marine Policy,Elsevier ,0308597X| +Marine Pollution Bulletin,Elsevier ,0025326X|0025326X +Marine Resource Economics,The University of Chicago Press,07381360|07381360 +Marine Science,Scientific and Academic Publishing,21632421| +Marine Structures,Elsevier ,09518339| +Marine Systems & Ocean Technology,Springer-Verlag,1679396X|21994749 +Marine Technology Society Journal,Marine Technology Society,00253324| +Maritime Affairs Journal of the National Maritime Foundation of India,Informa UK (Taylor & Francis),09733159|19466609 +Maritime Economics & Logistics,Nature Publishing Group - Macmillan Publishers,14792931|1479294X +Maritime Policy & Management,Informa UK (Taylor & Francis),03088839|14645254 +Maritime Studies,Springer (Biomed Central Ltd.),22129790|22129790 +Maritime Studies and Management,Informa UK (Taylor & Francis),03061957| +MarkenR,Walter de Gruyter GmbH,14369265|23661984 +Market Management,CAIRN,17793572|21114374 +Market Microstructure and Liquidity,World Scientific ,23826266|24248037 +Marketing,Centre for Evaluation in Education and Science,03543471| +Marketing Education Review,Informa UK (Taylor & Francis),10528008|21539987 +Marketing Intelligence & Planning,Emerald (MCB UP ),02634503|00000000 +Marketing Letters,Springer-Verlag,09230645|1573059X +Marketing Review St Gallen,Springer Fachmedien Wiesbaden GmbH,18656544|18625991 +Marketing Science,Institute for Operations Research and the Management Sciences,07322399|1526548X +Marketing Theory,SAGE Publications,14705931|00000000 +Marketing ZFP,C.H. Beck,03441369| +Markt en Mededinging,Boom Uitgevers Den Haag,13876236| +Markup Languages Theory and Practice,MIT Press,10996621|00000000 +Marmara Coğrafya Dergisi,Mamara Cografya Dergisi,13032429|21477825 +Marmara Dental Journal,Marmara Dental Journal,21477280| +Marmara Iletisim Dergisi,Marmara Iletisim Dergisi,13004050| +Marmara Journal of Pure and Applied Sciences / Marmara Fen Bilimleri Dergisi,Marmara University Journal of Science,21465150|21465150 +Marmara Medical Journal,Marmara Medical Journal,13099469|13099469 +MARMARA PHARMACEUTCAL JOURNAL,Marmara Pharmaceutical Journal,13090801| +Marmara Üniversitesi İlahiyat Fakültesi Dergisi,Marmara Universitesi Ilahiyat Fakultesi Dergisi,13024973| +Marriage & Family Review,Informa UK (Taylor & Francis),01494929|15409635 +Marriage and Family Living,JSTOR,08857059| +Mars,Mars Informatics,15481921|15481921 +Marshall Journal of Medicine,Marshall University Libraries,23799536 +Martial Arts Studies,Cardiff University Press,20575696 +Marvels & Tales,Wayne State University Press,15214281|15361802 +Mary Slessor Journal of Medicine,African Journals Online ,1119409X|1119409X +Más dermatología,"""Editorial Glosa, S.L.""",18875181|20137338 +Masaryk University Journal of Law and Technology,Masaryk University Press,18025943|18025951 +Masculinities & Social Change,Hipatia Press,20143605 +MasD Revista Digital de Diseño,Universidad el Bosque,2027095X +Maska,Intellect,13180509|2050957X +Maske und Kothurn,Bohlau Verlag,00254606|23050667 +Mass Communication & Society,Informa UK (Taylor & Francis),15205436|15327825 +Mass Communicator International Journal of Communication Studies,Diva Enterprises Private Limited,09739688|0973967X +Mass Spectrometry,The Mass Spectrometry Society of Japan,2187137X|21865116 +Mass Spectrometry & Purification Techniques,OMICS Publishing Group,24699861 +Mass Spectrometry Letters,Korean Society Mass Spectrometry,2095008X| +Mass Spectrometry Reviews,Wiley Blackwell (John Wiley & Sons),02777037|10982787 +Massachusetts Historical Review,Massachusetts Historical Society,15263894|21551316 +Massekultur & Medier,Aarhus University Library,01073753| +Masyarakat Kebudayaan dan Politik,Universitas Airlangga,20867050| +Matatu,Brill Academic Publishers,09329714|18757421 +MATEC Web of Conferences,EDP Sciences,2261236X +Matematychni Studii,Vasyl Stefanyk Precarpathian National University,10274634| +Matéria (Rio de Janeiro),SciELO,15177076|15177076 +Materia Japan,The Japan Institute of Metals,13402625|18845843 +Materia Medica,Centre for Evaluation in Education and Science,03527786| +Materia Socio Medica,ScopeMed International Medical Journal Managment and Indexing System,15127680| +Materiae Vegetabiles,Springer-Verlag,03692698| +Material Cycles and Waste Management Research,Japan Society of Waste Management Experts,18835864|21874808 +Material Religion The Journal of Objects Art and Belief,Informa UK (Taylor & Francis),17432200|00000000 +Material Science and Applied Chemistry,De Gruyter Open Sp. z o.o. ,14077353|22558713 +Material Science Research India,Oriental Scientific Publishing Company,09733469|23940565 +Material Sciences,Hans Publishers,21607613|21607621 +Materiales de Construcción,Departmento de Publicaciones del CSIC,04652746|19883226 +Materiali e discussioni per l’analisi dei testi classici,JSTOR,03926338| +Materiali in tehnologije,Institute of Metals and Technology,15802949|15803414 +Materials,MDPI AG,19961944 +Materials & Design,Elsevier ,02641275| +Materials & Design (1980-2015),Elsevier ,02613069| +Materials and Corrosion,Wiley Blackwell (John Wiley & Sons),09475117|15214176 +Materials and Corrosion/Werkstoffe und Korrosion,Wiley Blackwell (John Wiley & Sons),09475117|15214176 +Materials and Electronics Engineering,Open Access Science Organization Limited,24101648 +Materials and Manufacturing Processes,Informa UK (Taylor & Francis),10426914|15322475 +Materials and Methods,"""Synatom Research, LLC""",23295139 +Materials and Structures,Springer - RILEM Publishing,13595997|18716873 +Materials at High Temperatures,Maney Publishing,09603409|18786413 +Materials Characterization,Elsevier ,10445803| +Materials Chemistry,Elsevier ,03906035| +Materials Chemistry and Physics,Elsevier ,02540584| +Materials Discovery,Elsevier ,23529245| +Materials Express,American Scientific Publishers,21585849|21585857 +Materials Focus,American Scientific Publishers,2169429X|21694303 +Materials for Renewable and Sustainable Energy,Springer-Verlag,21941459|21941467 +Materials Horizons,The Royal Society of Chemistry,20516347|20516355 +Materials Letters,Elsevier ,0167577X| +Materials Performance and Characterization,ASTM International,21653992| +Materials Research,SciELO,15161439|15161439 +Materials Research Bulletin,Elsevier ,00255408| +Materials Research Express,IOP Publishing,20531591 +Materials Research Innovations,Maney Publishing,14328917|1433075X +Materials Research Letters,Informa UK (Taylor & Francis),21663831 +Materials Science,Publishing House Technologija,13921320|20297289 +Materials Science,Springer-Verlag,1068820X|1573885X +Materials Science and Engineering,Elsevier ,00255416| +Materials Science and Engineering A,Elsevier ,09215093| +Materials Science and Engineering B,Elsevier ,09215107| +Materials Science and Engineering C,Elsevier ,09284931| +Materials Science and Engineering R Reports,Elsevier ,0927796X| +Materials Science and Technology,Maney Publishing,02670836|00000000 +Materials Science Forum,Trans Tech Publications,16629752 +Materials Science Foundations,Trans Tech Publications,22977589 +Materials Science in Semiconductor Processing,Elsevier ,13698001| +Materials Science Monographs,Elsevier , +Materials Science Reports,Elsevier ,09202307| +Materials Science Textile and Clothing Technology,Riga Technical University,16913132|22558888 +Materials Science-Poland,De Gruyter Open Sp. z o.o. ,20831331|2083134X +Materials Sciences and Applications,"""Scientific Research Publishing, Inc.""",2153117X|21531188 +Materials Technology,Informa UK (Taylor & Francis),10667857|17535557 +Materials Testing,Carl Hanser Verlag GMBH & Co KG,00255300|21958572 +Materials Today,Elsevier ,13697021| +Materials Today Communications,Elsevier ,23524928| +Materials Today Proceedings,Elsevier ,22147853| +MATERIALS TRANSACTIONS,The Japan Institute of Metals,13459678|13475320 +Materialwissenschaft und Werkstofftechnik,Wiley Blackwell (John Wiley & Sons),09335137|15214052 +Matériaux & Techniques,EDP Sciences,00326895|17783771 +Matériaux et Constructions,Springer-Verlag,00255432| +Matériaux pour l histoire de notre temps,PERSEE Program,07693206|19524226 +MATERIAŁY BUDOWLANE,"""Wydawnictwo SIGMA-NOT, sp. z.o.o.""",01372971| +Maternal and Child Health Journal,Springer-Verlag,10927875|15736628 +Maternal and Child Nutrition,Wiley Blackwell (Blackwell Publishing),17408695|17408709 +Maternal Health Neonatology and Perinatology,Springer (Biomed Central Ltd.),2054958X|2054958X +Math Horizons,Mathematical Association of America,19476213|19476213 +Mathematica Applicanda,Polish Mathematical Society,17302668|22994009 +Mathematica Slovaca,De Gruyter Open Sp. z o.o. ,01399918|13372211 +Mathematical and Computational Applications,Applied mathematics & Computation Center,1300686X| +Mathematical and Computer Modelling,Elsevier ,08957177| +Mathematical and Computer Modelling of Dynamical Systems,Informa UK (Taylor & Francis),13873954|17445051 +Mathematical Biosciences,Elsevier ,00255564| +Mathematical Biosciences and Engineering,American Institute of Mathematical Sciences,15510018| +Mathematical Cognition,Informa UK (Taylor & Francis),13546791|14640724 +Mathematical Control and Related Fields,American Institute of Mathematical Sciences,21568472| +Mathematical Design & Technical Aesthetics,Academic Publishing House Researcher,23061405|23102179 +Mathematical Economics,Wroclaw University of Economics,17339707|24501131 +Mathematical Economics Letters,Walter de Gruyter GmbH,21954615|21954623 +Mathematical Engineering in Industry,Brill Academic Publishers,0169121X|15685640 +Mathematical Finance,Wiley Blackwell (Blackwell Publishing),09601627|14679965 +Mathematical Geology,Springer-Verlag,08828121|15738868 +Mathematical Geosciences,Springer-Verlag,18748961|18748953 +Mathematical Inequalities & Applications,Element d.o.o.,13314343| +Mathematical journal of Ibaraki University,"""Department of Mathematics, Faculty of Science""",13433636|18834353 +Mathematical Journal of Interdisciplinary Sciences,Chitkara University Publications,22789561|2278957X +Mathematical Logic Quarterly,Wiley Blackwell (John Wiley & Sons),00443050|15213870 +Mathematical Medicine and Biology,Oxford University Press,14778599|14778602 +Mathematical Methods in the Applied Sciences,Wiley Blackwell (John Wiley & Sons),01704214|10991476 +Mathematical Methods of Operations Research,Springer-Verlag,14322994|14325217 +Mathematical Methods of Statistics,Allerton Press,10665307|19348045 +Mathematical Modelling,Elsevier ,02700255| +Mathematical Modelling and Analysis,Vilnius Gediminas Technical University,13926292|16483510 +Mathematical Modelling and Engineering Problems,International Information and Engineering Technology Association,23690739|23690747 +Mathematical Modelling in Civil Engineering,De Gruyter Open Sp. z o.o. ,20666934|20666934 +Mathematical Modelling of Natural Phenomena,EDP Sciences,09735348|17606101 +Mathematical Modelling of Systems,Informa UK (Taylor & Francis),13812424| +Mathematical Models and Computer Simulations,Pleiades Publishing,20700482|20700490 +Mathematical Models and Methods in Applied Sciences,World Scientific ,02182025|02182025 +Mathematical Morphology - Theory and Applications,Walter de Gruyter GmbH,23533390 +Mathematical Notes,Cambridge University Press,17577489| +Mathematical Notes,Pleiades Publishing,00014346|15738876 +Mathematical Physics Analysis and Geometry,Springer-Verlag,13850172|15729656 +Mathematical Population Studies,Informa UK (Taylor & Francis),08898480|1547724X +Mathematical Problems in Engineering,Hindawi Publishing Corporation,1024123X|15635147 +Mathematical Proceedings of the Cambridge Philosophical Society,Cambridge University Press,03050041|14698064 +Mathematical Proceedings of the Royal Irish Academy,Royal Irish Academy,13937197|20090021 +Mathematical Programming,Springer-Verlag,00255610|14364646 +Mathematical Programming Computation,Springer-Verlag,18672949|18672957 +Mathematical Research Letters,"""International Press of Boston, Inc.""",10732780|1945001X +Mathematical Sciences,Springer-Verlag,22517456|22517456 +Mathematical Sciences Letters,Natural Sciences Publishing,20909616|20909624 +Mathematical Social Sciences,Elsevier ,01654896| +Mathematical Structures in Computer Science,Cambridge University Press,09601295|14698072 +Mathematical Systems Theory,Springer-Verlag,00255661| +Mathematical Tables and Other Aids to Computation,JSTOR,08916837| +Mathematical Thinking and Learning,Informa UK (Taylor & Francis),10986065|15327833 +Mathematical Transactions of the Academy of Sciences of the Lithuanian SSR,Springer-Verlag,00941719| +Mathematics,MDPI AG,22277390 +Mathematics and Computers in Simulation,Elsevier ,03784754| +Mathematics and Financial Economics,Springer-Verlag,18629679|18629660 +Mathematics and Mechanics of Complex Systems,Mathematical Sciences Publishers,23253444|23253444 +Mathematics and Mechanics of Solids,SAGE Publications,10812865|00000000 +Mathematics and Statistics,"""Horizon Research Publishing Co., Ltd.""",23322071|23322144 +Mathematics Connection,African Journals Online ,8554706 +Mathematics Education Research Journal,Springer-Verlag,10332170|2211050X +Mathematics Education Trends and Research,ISPACS GmbH,21954372 +Mathematics for Applications,Brno University of Technology,18053610|18053629 +MathematicS In Action,Cellule MathDoc/CEDRAM,21025754 +Mathematics in Computer Science,Springer-Verlag,16618270|16618289 +Mathematics in Education Research and Applications,Slovak University of Agriculture in Nitra,24536881 +Mathematics Magazine,Mathematical Association of America,0025570X|19300980 +Mathematics News Letter,JSTOR,1539557X| +Mathematics of Climate and Weather Forecasting,Walter de Gruyter GmbH,23536438 +Mathematics of Computation,American Mathematical Society,00255718|10886842 +Mathematics of Control Signals and Systems,Springer-Verlag,09324194|1435568X +Mathematics of Operations Research,Institute for Operations Research and the Management Sciences,0364765X|15265471 +Mathematics of the USSR-Izvestiya,Turpion ,00255726| +Mathematics of the USSR-Sbornik,Turpion ,00255734| +Mathematics Teacher,National Council of Teachers of Mathematics,00255769|00255769 +Mathematics Teacher Educator,National Council of Teachers of Mathematics,21679789 +Mathematics Teaching in the Middle School,National Council of Teachers of Mathematics,10720839|10720839 +Mathematika,Oxford University Press - London Mathematical Society,00255793|20417942 +Mathématiques et sciences humaines,OpenEdition,09876936|19506821 +Mathematische Annalen,Springer-Verlag,00255831|14321807 +Mathematische Nachrichten,Wiley Blackwell (John Wiley & Sons),0025584X|15222616 +Mathematische Operationsforschung Statistik,Informa UK (Taylor & Francis),00476277| +Mathematische Operationsforschung und Statistik Series Optimization,Informa UK (Taylor & Francis),03233898| +Mathematische Semesterberichte,Springer-Verlag,0720728X|14321815 +Mathematische Zeitschrift,Springer-Verlag,00255874|14321823 +Matlit Revista do Programa de Doutoramento em Materialidades da Literatura,Coimbra University Press,21828830 +Matraga - Revista do Programa de Pós-Graduação em Letras da UERJ,Universidade do Estado do Rio de Janeiro UERJ,14147165|24466905 +Matrix,Elsevier ,09348832| +Matrix Biology,Elsevier ,0945053X| +Matrizes,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,19822073|19828160 +Matter and Radiation at Extremes,Elsevier ,2468080X| +MATTER International Journal of Science and Technology,Global Research & Development Services,24545880 +Maturitas,Elsevier ,03785122| +Mauerwerk,Wiley Blackwell (John Wiley & Sons),14323427|14371022 +Mavi Atlas,Mavi Atlas,21485232| +Max Planck Yearbook of United Nations Law,Brill Academic Publishers,13894633|00000000 +Max Planck Yearbook of United Nations Law Online,Brill Academic Publishers,18757413|18757413 +Max Weber Studies,Max Weber Studies,14708078|20564074 +Maxillofacial Plastic and Reconstructive Surgery,Springer (Biomed Central Ltd.),22888101|22888586 +Mayéutica,Philosophy Documentation Center,02102900| +Mayo Clinic Proceedings,Elsevier ,00256196|19425546 +mBio,American Society for Microbiology,21507511|21507511 +McGill Journal of Education,Consortium Erudit,00249033|19160666 +McGill Law Journal,Consortium Erudit,00249041|19206356 +McMaster Undergraduate Research Journal,McMaster Undergraduate Research Journal,22924191 +MCN The American Journal of Maternal/Child Nursing,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,0361929X| +McNair Scholars Online Journal,Portland State University Library,23757833 +MD Conference Express,SAGE Publications,15598977|2155756X +Meandros Medical And Dental Journal,Galenos Yayinevi,21499063|21499063 +Measurement,Elsevier ,02632241| +Measurement and Control,SAGE Publications,00202940| +Measurement and Evaluation in Counseling and Development,SAGE Publications,07481756|19476302 +Measurement in Physical Education and Exercise Science,Informa UK (Taylor & Francis),1091367X|15327841 +Measurement Interdisciplinary Research and Perspectives,Informa UK (Taylor & Francis),15366367|15366359 +Measurement Science and Technology,IOP Publishing,09570233|13616501 +Measurement Science Review,De Gruyter Open Sp. z o.o. ,13358871 +Measurement Techniques,Springer-Verlag,05431972|15738906 +Measuring Business Excellence,Emerald (MCB UP ),13683047|00000000 +Meat Science,Elsevier ,03091740| +Mécanique & Industries,EDP Sciences,12962139|17652960 +Meccanica,Springer-Verlag,00256455|15729648 +Mechademia,University of Minnesota Press,19342489|21526648 +Mechanical Circulatory Support,Co-Action Publishing,20006993 +Mechanical Engineering An International Journal,Academy and Industry Research Collaboration Center,23492651 +Mechanical Engineering and Technology,Hans Publishers,21676631|21676623 +Mechanical Engineering Journal,The Japan Society of Mechanical Engineers,21879745 +Mechanical Engineering Letters,The Japan Society of Mechanical Engineers,21895236 +Mechanical Engineering Research,Canadian Center of Science and Education,19270607|19270615 +Mechanical Engineering Reviews,The Japan Society of Mechanical Engineers,21879753 +Mechanical Industry and Engineering Education,Kniga - Service Agency Ltd.,18151051| +Mechanical Sciences,Copernicus GmbH,2191916X +Mechanical Systems and Signal Processing,Elsevier ,08883270|10961216 +Mechanics & Industry,EDP Sciences,22577777|22577750 +Mechanics and Control,AGH University of Science and Technology Press,17348927| +Mechanics and Control,AGH University of Science and Technology Press,20836759| +Mechanics Based Design of Structures and Machines,Informa UK (Taylor & Francis),15397734|15397742 +Mechanics of Advanced Materials and Modern Processes,Springer (Biomed Central Ltd.),21987874|21987874 +Mechanics of Advanced Materials and Structures,Informa UK (Taylor & Francis),15376494|00000000 +Mechanics of Cohesive-Frictional Materials,Wiley Blackwell (John Wiley & Sons),10825010|10991484 +Mechanics of Composite Materials,Springer-Verlag,01915665|15738922 +Mechanics of Composite Materials and Structures,Informa UK (Taylor & Francis),10759417|1234986X +Mechanics of Materials,Elsevier ,01676636| +Mechanics of Solids,Allerton Press,00256544|19347936 +Mechanics of Structures and Machines,Informa UK (Marcel Dekker),08905452|1525612X +Mechanics of Time-Dependent Materials,Springer-Verlag,13852000|15732738 +Mechanics Research Communications,Elsevier ,00936413| +Mechanik,SIMP Redakcja Mechanik - Agencja Wydawnicza SIMP,00256552| +Mechanika,Publishing House Technologija,13921207|20296983 +Mechanism and Machine Theory,Elsevier ,0094114X| +Mechanisms of Ageing and Development,Elsevier ,00476374|00476374 +Mechanisms of Development,Elsevier ,09254773| +Mechatronics,Elsevier ,09574158| +Mechatronics Electrical Power and Vehicular Technology,Indonesian Institute of Sciences,20873379|20886985 +MECOSAN,Franco Angeli,11216921|23848804 +MedChemComm,The Royal Society of Chemistry,20402503|20402511 +Meddelanden af Societas pro Fauna et Flora Fennica,Smithsonian Institution Biodiversity Heritage Library,07886969| +Médecine & Droit,Elsevier ,12467391| +Médecine & Longévité,Elsevier ,18757170| +Médecine Buccale Chirurgie Buccale,EDP Sciences,12732761|21051011 +Médecine de Catastrophe - urgences collectives,Elsevier ,12798479| +Médecine des Maladies Métaboliques,Elsevier ,19572557| +Médecine du Sommeil,Elsevier ,17694493| +Médecine et Chirurgie du Pied,Springer-Verlag,07592280|17652855 +Médecine et Maladies Infectieuses,Elsevier ,0399077X| +Médecine et Nutrition,EDP Sciences,03987604|21105405 +Médecine Nucléaire,Elsevier ,09281258| +Médecine Palliative Soins de Support - Accompagnement - Éthique,Elsevier ,16366522| +médecine/sciences,EDP Sciences,07670974|19585381 +MedEdPORTAL Publications,Association of American Medical Colleges,23748265 +MedEdPublish,Association for Medical Education in Europe (AMEE),23127996 +Medeniyet Medical Journal,Logos Medical Publication,21492042| +Media & Jornalismo,Coimbra University Press,16455681|21835462 +Media and Communication,Cogitatio,21832439 +Media Asia,Informa UK (Taylor & Francis),01296612|23776277 +Media Culture & Society,SAGE Publications,01634437|00000000 +Media History,Informa UK (Taylor & Francis),13688804|14699729 +Media International Australia,SAGE Publications,1329878X|2200467X +MEDIA KESEHATAN MASYARAKAT INDONESIA,Institute of Research and Community Services Diponegoro University (LPPM UNDIP),14124920| +MEDIA KOMUNIKASI TEKNIK SIPIL,Chemical Engineering Diponegoro University,08541809| +Media Peternakan,Media Peternakan,01260472|20874634 +Media Psychology,Informa UK (Taylor & Francis),15213269|1532785X +Media Spectrum,Springer Fachmedien Wiesbaden GmbH,01735993|21928339 +MEDIA STATISTIKA,Institute of Research and Community Services Diponegoro University (LPPM UNDIP),19793693|24770647 +Media Transformations,Vytautas Magnus University,2029865X|20298668 +Media War & Conflict,SAGE Publications,17506352|17506360 +Media Watch,Media Watch,09760911|22498818 +Mediaciones Sociales,Universidad Complutense de Madrid,19890494 +Mediações Revista de Ciências Sociais,Universidade Estadual de Londrina,14140543|21766665 +Mediaeval Studies,"""Brepols Publishers, NV""",00765872| +Mediaevalia,Muse - Johns Hopkins University Press,21618046 +Mediaevistik,"""Peter Lang, International Academic Publishers""",09347453| +MediaMatters,CrossRef test user,17588987 +MEDIANZ Media Studies Journal of Aotearoa New Zealand,University of Otago Library,11730811 +Mediapolis revista de comunicação jornalismo e espaço público,Coimbra University Press,21835918|21836019 +Mediators of Inflammation,Hindawi Publishing Corporation,09629351|14661861 +Medical & Biological Engineering,Springer-Verlag,0025696X| +Medical & Biological Engineering & Computing,Springer-Verlag,01400118|17410444 +Medical & Surgical Urology,OMICS Publishing Group,21689857 +Medical Acupuncture,Mary Ann Liebert,19336586|19336594 +Medical and Biological Sciences,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,1734591X| +Medical and Clinical Chemistry,Ternopil State Medical University,2410681X| +Medical and Health Science Journal,Prague Development Center ,18041884|18045014 +Medical and Pediatric Oncology,Wiley Blackwell (John Wiley & Sons),00981532|1096911X +Medical and Surgical Dermatology,Springer-Verlag,09445196|19342853 +Medical and Veterinary Entomology,Wiley Blackwell (Blackwell Publishing),0269283X|13652915 +Medical Anthropology,Informa UK (Taylor & Francis),01459740|15455882 +Medical Anthropology Newsletter,Wiley Blackwell (Blackwell Publishing),05432499|19376219 +Medical Anthropology Quarterly,Wiley Blackwell (Blackwell Publishing),07455194|15481387 +Medical Archives,ScopeMed International Medical Journal Managment and Indexing System,0350199X| +Medical Care,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,00257079| +Medical Care Research and Review,SAGE Publications,10775587|00000000 +Medical Case Reports,Bioinfo Publications,09768726|09768734 +Medical Case Studies,Academic Journals,21416532 +Medical Clinics of North America,Elsevier ,00257125| +Medical Decision Making,SAGE Publications,0272989X|1552681X +Medical Devices Evidence and Research,Dove Medical Press,11791470 +Medical Diagnosis,Hans Publishers,2164540X|21645418 +Medical Dosimetry,Elsevier ,09583947| +Medical Education,Wiley Blackwell (Blackwell Publishing),03080110|13652923 +Medical Education Development,PAGEPress Publications,20389531|2038954X +Medical Education Online,Co-Action Publishing,10872981|10872981 +Medical Electron Microscopy,Springer-Verlag,09184287|1437773X +Medical Electronics & Biological Engineering,Springer-Verlag,03689271| +Medical Engineering & Physics,Elsevier ,13504533| +Medical Entomology and Zoology,Japan Society of Medical Entomology an Zoology,04247086|21855609 +Medical Epigenetics,S. Karger AG,16645561 +Medical Equipment Insights,"""Libertas Academica, Ltd.""",1178637X +Medical Express,GN1 Genesis Network,23188111| +Medical Gas Research,Springer (Biomed Central Ltd.),20459912|20459912 +Medical History,Cambridge University Press,00257273|20488343 +Medical Humanities,BMJ,1468215X|14734265 +Medical Hypotheses,Elsevier ,03069877| +Medical Image Analysis,Elsevier ,13618415| +Medical Imaging and Radiology,Herbert Publications,20541945 +Medical Immunology,Springer (Biomed Central Ltd.),14769433| +Medical Immunology (Russia),SPb RAACI,15630625|2313741X +Medical Informatics,Informa UK (Taylor & Francis),03077640| +Medical Informatics and Engineering,Ternopil State Medical University,19961960| +Medical Informatics and the Internet in Medicine,Informa UK (Taylor & Francis),14639238| +Medical Instrumentation,Herbert Publications,20526962 +Medical Journal Armed Forces India,Elsevier ,03771237| +Medical Journal of Dr D Y Patil University,Medknow Publications,09752870| +Medical Journal of Indonesia,"""Faculty of Medicine, Universitas Indonesia""",08531773|22528083 +Medical Journal of Islamic World Academy of Sciences,"""Al Manhal FZ, LLC""",10163360| +Medical Journal of Montenegro,Centre for Evaluation in Education and Science,18009964|23369140 +Medical Journal of Shree Birendra Hospital,Nepal Journals Online,20910185|20910193 +Medical Journal of Zambia,African Journals Online ,0047651X|0047651X +Medical Laser Application,Elsevier ,16151615| +Medical Law International,SAGE Publications,09685332|20479441 +Medical Law Review,Oxford University Press,09670742|14643790 +Medical Microbiology and Immunology,Springer-Verlag,03008584|14321831 +Medical Molecular Morphology,Springer-Verlag,18601480|18601499 +Medical Mycology,Oxford University Press,13693786|1460-2709 +Medical Mycology Case Reports,Elsevier ,22117539| +Medical Mycology Journal,The Japanese Society for Medical Mycology,21856486|2186165X +Medical news of the North Caucasus,Stavropol State Medical University,20738137| +Medical Oncology,Springer-Verlag,13570560|1559131X +Medical Oncology and Tumor Pharmacotherapy,Springer-Verlag,07360118| +Medical Photonics,Elsevier ,22138846| +Medical Physics,American Association of Physicists in Medicine,00942405| +Medical Practice and Reviews,Academic Journals,21412596 +Medical Principles and Practice,S. Karger AG,10117571|14230151 +Medical Problems of Performing Artists,"""Science and Medicine, Inc.""",08851158|19382766 +Medical Progress Through Technology,Springer (Kluwer Academic Publishers),00476552| +Medical Reference Services Quarterly,Informa UK (Taylor & Francis),02763869|15409597 +Medical Research Archives,Knowledge Enterprises Journals,23751916|23751924 +Medical Research Journal,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,20906242| +Medical Science and Discovery,Medical Science and Discovery,21486832|21486832 +Medical Science and Technology,International Scientific Literature,23290072 +Medical Science and Technology,International Scientific Literature,18952089|23290072 +Medical Science Case Reports,International Scientific Literature,23733586 +Medical Science Educator,Springer-Verlag,21568650 +Medical Science Hypotheses,International Scientific Literature,23733551 +Medical Science Monitor,International Scientific Literature,12341010|16433750 +Medical Science Monitor Basic Research,International Scientific Literature,23254416 +Medical Science Review,International Scientific Literature,23732490 +Medical Science Review - Hepatologia,Index Copernicus International,17305039| +Medical Sciences,MDPI AG,20763271 +Medical Student Research Journal,Medical Student Research Journal,21593647 +Medical Studies,Termedia Sp. z.o.o.,18991874| +Medical Teacher,Informa UK (Taylor & Francis),0142159X|1466187X +Medical Toxicology,Springer-Verlag,01125966| +Medical Toxicology and Adverse Drug Experience,Springer-Verlag,01135244| +Medical Ultrasonography,SRUMB - Romanian Society for Ultrasonography in Medicine and Biology,18444172|20668643 +Medical Update for Psychiatrists,Elsevier ,10827579| +Medical Veritas The Journal of Medical Truth,Pearblossom Private School,15491404| +Medical virology,Chumakov Institute of Poliomyelitis and Viral Encephalitides,20707746| +Medical Writing,Maney Publishing,20474806|20474814 +Medical Imaging & Interventional Radiology,"""Smart Science and Technology, LLC""",24706116 +Medicare & Medicaid Research Review,"""Office of Research, Development and Information""",21590354 +MEDICC Review,SciELO,15557960| +Medicina,Elsevier ,1010660X| +Medicina (Ribeirao Preto Online),Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,00766046|21767262 +Medicina Clínica,Elsevier ,00257753|15788989 +Medicina Clínica (English Edition),Elsevier ,23870206| +Medicina e Investigación,Elsevier ,22143106| +Medicina General y de Familia,Elsevier ,18895433| +Medicina Intensiva,Elsevier ,02105691| +Medicina Intensiva (English Edition),Elsevier ,21735727| +Medicina Oral Patología Oral y Cirugia Bucal,"""Medicina Oral, S.L.""",16986946 +Medicina Paliativa,Elsevier ,1134248X| +Medicina Reproductiva y Embriología Clínica,Elsevier ,23409320| +Medicina Sportiva,Index Copernicus International,17342260 +Medicina U P B,Universidad Pontificia Bolivariana,01204874|23576308 +Medicina Universitaria,Elsevier ,16655796| +Medicina y Seguridad del Trabajo,Instituto de Salud Carlos III/BNCS/SciELO Espana,0465546X|0465546X +Medicinal & Aromatic Plants,OMICS Publishing Group,21670412 +Medicinal Chemistry,Bentham Science,15734064|00000000 +Medicinal Chemistry,OMICS Publishing Group,21610444 +Medicinal Chemistry Research,Springer-Verlag,10542523|15548120 +Medicinal Chemistry Reviews - Online,Bentham Science,15672034|00000000 +Medicinal Plant Research,"""Sophia Publishing Group, Inc.""",19276508 +Medicinal Plants - International Journal of Phytomedicines and Related Industries,Diva Enterprises Private Limited,09754261|09756892 +Medicinal Research Reviews,Wiley Blackwell (John Wiley & Sons),01986325|10981128 +Medicine,Elsevier ,13573039| +Medicine,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,00257974|15365964 +Medicine & Science in Sports & Exercise,Ovid Technologies (Wolters-Kluwer) - American College of Sports Medicine,01959131| +Medicine - Programa de Formación Médica Continuada Acreditado,Elsevier ,03045412| +Medicine - Programa de Formación Médica Continuada Acreditado,Elsevier ,02113449| +Medicine 2 0,JMIR Publications Inc.,19232195 +Medicine and War,Informa UK (Taylor & Francis),07488009| +Medicine Conflict & Survival,Informa UK (Taylor & Francis),13623699|17439396 +Medicine Health Care and Philosophy,Springer (Kluwer Academic Publishers),13867423|15728633 +Medicine Science and the Law,SAGE Publications,00258024|20421818 +Medicine Science | International Medical Journal,ScopeMed International Medical Journal Managment and Indexing System,21470634| +Medicine Studies,Springer-Verlag,18764533|18764541 +Medicine Today,Bangladesh Journals Online,18101828|24088714 +Medicines,MDPI AG,23056320 +Medicinos teorija ir praktika,Medicinos Mintis,13921312| +Medicinski casopis,Centre for Evaluation in Education and Science,03501221| +Medicinski glasnik Specijalna bolnica za bolesti stitaste zlezde i bolesti metabolizma Zlatibor,Centre for Evaluation in Education and Science,14520923| +Medicinski pregled,National Library of Serbia,00258105|18207383 +Medicinskt Archiv,Wiley Blackwell (Blackwell Publishing),03694879| +Medico-Legal Journal,SAGE Publications,00258172|20421834 +Medico-Legal Journal of Sri Lanka,Sri Lanka Journals Online ,20128231| +Medico-Legal Update,Diva Enterprises Private Limited,0971720X|09741283 +Medicolegal and Bioethics,Dove Medical Press,22302468 +MEDICRIT Revista de Medicina Crítica,MEDICRIT,16908686 +MedieKultur Journal of media and communication research,Aarhus University Library,09009671|19019726 +Medien & Kommunikationswissenschaft,Nomos Verlag,1615634X| +Medieval and Early Modern English Studies,The Medieval and Early Modern English Studies Association of Korea,12290394| +Medieval and Modern Matters,"""Brepols Publishers, NV""",20328192|2295905X +Medieval Archaeology,Maney Publishing,00766097|00000000 +Medieval Encounters,Brill Academic Publishers,13807854|15700674 +Medieval Mystical Theology,Maney Publishing,20465726|20465734 +Medieval Philosophy and Theology,Cambridge University Press,10570608|14754525 +Medieval Sermon Studies,Maney Publishing,13660691|17496276 +Medieval Worlds,Verlag der Osterreichischen Akademie der Wissenschaften,24123196|24123196 +Médiévales,PERSEE Program,07512708|17775892 +Medievalismo,Servicio de Publicaciones de la Universidad e Murcia,11318155|19898312 +Medievalista online,OpenEdition,1646740X +Medifam,Instituto de Salud Carlos III/BNCS/SciELO Espana,11315768 +Medisch-Farmaceutische Mededelingen,Springer-Verlag,01687670|18765971 +Mediscope,Bangladesh Journals Online,23077689| +Meditari Accountancy Research,Emerald (MCB UP ),10222529| +Mediterránea Serie de Estudios Biológicos,Publicaciones Universidad de Alicante,11306203|11306203 +Mediterranean Historical Review,Informa UK (Taylor & Francis),09518967|1743940X +Mediterranean Journal of Chemistry,Mediterranean Journal of Chemistry,20283997 +Mediterranean Journal of Hematology and Infectious Diseases,"""Institute of Hematology, Catholic University""",20353006 +Mediterranean Journal of Humanities,Mediterranean Journal of Humanities,21464812| +Mediterranean Journal of Infection Microbes and Antimicrobials,Bilimsel Tip Publishing House,2147673X| +Mediterranean Journal of Mathematics,Springer-Verlag,16605446|16605454 +Mediterranean Journal of Nutrition and Metabolism,IOS Press,1973798X|19737998 +Mediterranean Journal of Social Sciences,Mediterranean Center of Social and Educational Research,20399340|20392117 +Mediterranean Marine Science,National Documentation Centre,1108393X|17916763 +Mediterranean Politics,Informa UK (Taylor & Francis),13629395|17439418 +Mediterranean Quarterly,Duke University Press,10474552|15271935 +Mediterranean Studies,The Pennsylvania State University Press,1074164X|21614741 +Méditerranée,PERSEE Program,00258296|17608538 +Médium,CAIRN,17713757| +Médium,CAIRN,17713757|22595082 +Medizinische Genetik,Springer-Verlag,09365931|18635490 +Medizinische Klinik,Springer-Verlag,07235003|16156722 +Medizinische Klinik - Intensivmedizin und Notfallmedizin,Springer-Verlag,21936218|21936226 +Medizinrecht,Springer-Verlag,07238886|14338629 +Medjunarodni problemi,National Library of Serbia,00258555|24060690 +Mednet,Springer-Verlag,15687716|18765963 +Medwave,Medwave Estudios Limitada,7176384 +Medycyna Ogólna i Nauki o Zdrowiu,Index Copernicus International,20834543|20844905 +Medycyna Pracy,Nofer Institute of Occupational Medicine,04655893|23531339 +MEGARON / Yıldız Technical University Faculty of Architecture E-Journal,"""LookUs Bilisim, Ltd.""",13096915| +Megatrend revija,Centre for Evaluation in Education and Science,18203159| +MEHATRONIKA AVTOMATIZACIA UPRAVLENIE,New Technologies Publishing House,16846427| +Mélanges d archéologie et d histoire,PERSEE Program,02234874| +Mélanges d histoire sociale,PERSEE Program,12432571| +Mélanges de l Ecole française de Rome Moyen-Age Temps modernes,PERSEE Program,02235110| +Mélanges de la Casa de Velázquez,PERSEE Program,0076230X| +Mélanges de l’École française de Rome - Antiquité,OpenEdition,17242134|17242134 +Mélanges de l’École française de Rome - Italie et Méditerranée modernes et contemporaines,OpenEdition,17242142|17242142 +Mélanges de l’École française de Rome - Moyen Âge,OpenEdition,17242150|17242150 +Mélanges de l’École française de Rome Antiquité,PERSEE Program,02235102|17242134 +Mélanges de l’École française de Rome Italie et Méditerranée,PERSEE Program,11239891|17242142 +Melanoma Management,Future Medicine,20450885|20450893 +Melanoma Research,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,09608931| +Melbourne Studies in Education,Informa UK (Taylor & Francis),00766275| +MELUS Multi-Ethnic Literature of the United States,Oxford University Press,0163755X|19463170 +MEMBRANE,The Membrane Society of Japan,03851036|18846440 +Membrane Biochemistry,Informa UK (Taylor & Francis),0149046X| +Membrane Journal,The Membrane Society of Korea,12260088|22887253 +Membrane Technology,Elsevier ,09582118| +Membrane Water Treatment,Techno-Press,20058624| +Membranes,MDPI AG,20770375 +Memetic Computing,Springer-Verlag,18659284|18659292 +Memini,OpenEdition,14842254|1929221X +Memleket Mevzuat,Ankara University,13059092 +memo - Magazine of European Medical Oncology,Springer-Verlag,18655041|18655076 +Memoir Society of Vertebrate Paleontology,JSTOR,1062161X| +Mémoire(s) identité(s) marginalité(s) dans le monde occidental contemporain,OpenEdition,19516789|19516789 +Mémoires du livre,Consortium Erudit,1920602X +Memoirs and Proceedings of the Chemical Society,The Royal Society of Chemistry,02693127| +Memoirs and proceedings of the Manchester Literary & Philosophical Society,Smithsonian Institution Biodiversity Heritage Library,00763721| +Memoirs of the American Academy in Rome,JSTOR,00656801| +Memoirs of the American Academy in Rome Supplementary Volumes,JSTOR,19400977| +Memoirs of the American Academy of Arts and Sciences,JSTOR,00966134| +Memoirs of the American Entomological Society,Smithsonian Institution Biodiversity Heritage Library,00658170| +Memoirs of the American Mathematical Society,American Mathematical Society,00659266|19476221 +Memoirs of the Carnegie Museum,Smithsonian Institution Biodiversity Heritage Library,08854645| +Memoirs of the Chemical Society of London,The Royal Society of Chemistry,02693119| +Memoirs of the Entomological Society of Canada,Cambridge University Press (Entomological Society of Canada),19203047| +Memoirs of the Faculty of Science Kyushu University Series A Mathematics,"""Faculty of Mathematics, Kyushu University""",03736385|18832172 +Memoirs of the Graduate School of Engineering Kobe University,Terrapub,18840299 +Memoirs of the Graduate Schools of Engineering and System Informatics Kobe University,Terrapub,21855110 +Memoirs of the Museum of Comparative Zoölogy at Harvard College Cambridge Mass,Smithsonian Institution Biodiversity Heritage Library,10678611| +Memoirs of the National Academy of Sciences,Smithsonian Institution Biodiversity Heritage Library,08854637| +Memoirs of the Queensland Museum - Nature,Queensland Museum,00798835|22041478 +Memorandum (Institute of Pacific Relations American Council),University of California Press,15360385| +MEMORIA E RICERCA,Franco Angeli,11270195|1972523X +Memoria y Civilización,Universidad de Navarra,11390107|22546367 +Memoria y Sociedad,Editorial Pontificia Universidad Javeriana,01225197|22486992 +Memorias,Universidad Cooperativa de Colombia - UCC,01244361|23824239 +Memorias,Universidad del Norte,17948886 +Memorias del Instituto de Investigaciones en Ciencias de la Salud,Instituto de Investigaciones en Ciencias de la Salud,18174620|18129528 +Memórias do Instituto Oswaldo Cruz,SciELO,00740276|00740276 +MEMORIAS TÉCNICAS XX CONGRESO NACIONAL DE INGENIERÍA SÍSMICA,Sociedad Mexicana de Ingenieria Sismica A.C.,23958251|0185092X +Memorie della Società Entomologica Italiana,PAGEPress Publications,00378747|22821228 +Memory,Informa UK (Taylor & Francis),09658211|14640686 +Memory & Cognition,Springer - Psychonomic Society,0090502X|15325946 +Memory Studies,SAGE Publications,17506980|17506999 +Men and Masculinities,SAGE Publications,1097184X|00000000 +Men Disability Society,Index Copernicus International,17345537| +Men in Nursing,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15586243| +MENA Journal of Business Case Studies,IBIMA Publishing,23267038 +Mendeleev Communications,Elsevier ,09599436|1364551X +Menopausal Review,Termedia Sp. z.o.o.,16438876| +Menopause International The Integrated Journal of Postreproductive Health,SAGE Publications,13621807|17404568 +Menopause The Journal of The North American Menopause Society,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10723714| +Menoufia Medical Journal,Medknow Publications,11102098| +Mens en maatschappij,Amsterdam University Press,00259454| +Mens Revue d histoire intellectuelle de l Amérique française,Consortium Erudit,14928647|22926747 +Mens Revue d histoire intellectuelle et culturelle,Consortium Erudit,19279280|19279299 +Mens Sana Monographs,Medknow Publications,09731229| +mensch & pferd international,"""Ernst Reinhardt, GmbH & Co. KG""",18676456| +Mental Handicap Research,Wiley Blackwell (Blackwell Publishing),09529608| +Mental Health & Prevention,Elsevier ,22126570| +Mental Health and Learning Disabilities Research and Practice,University of Huddersfield Press,17436885| +Mental Health and Physical Activity,Elsevier ,17552966| +Mental Health and Social Inclusion,Emerald (MCB UP ),20428316|20428308 +Mental Health and Substance Use,Informa UK (Taylor & Francis),17523281|17523273 +Mental Health Clinician,College of Psychiatric and Neurologic Pharmacists,21689709| +Mental Health Practice,RCN Publishing,14658720|2047895X +Mental Health Religion & Culture,Informa UK (Taylor & Francis),13674676|14699737 +Mental Health Review Journal,Emerald (MCB UP ),13619322|20428758 +Mental Health Services Research,Springer-Verlag,15223434|15736636 +Mental Health Weekly,Wiley Blackwell (John Wiley & Sons),10581103|15567583 +Mental Illness,PAGEPress Publications,20367457|20367465 +Mental Retardation,American Association on Intellectual and Developmental Disabilities,00476765| +Mental Retardation and Developmental Disabilities Research Reviews,Wiley Blackwell (John Wiley & Sons),10804013|10982779 +Mentálhigiéné és Pszichoszomatika,Akademiai Kiado Zrt.,14198126| +Mentálhigiéné és Pszichoszomatika,Akademiai Kiado Zrt.,14198126|17863759 +Mentoring,Informa UK (Taylor & Francis),09684654| +Mentoring & Tutoring Partnership in Learning,Informa UK (Taylor & Francis),13611267|14699745 +MERCATI E COMPETITIVITÀ,Franco Angeli,18267386|19724861 +Mercator,Mercator - Revista de Geografia da UFC,19842201 +Mergent s Dividend Achievers,Wiley Blackwell (John Wiley & Sons),15478335|15482839 +Mergent s Handbook of Common Stocks,Wiley Blackwell (John Wiley & Sons),15478343|15482723 +Mergent s Handbook of NASDAQ Stocks,Wiley Blackwell (John Wiley & Sons),15429326|15482847 +Meridiano 47 - Journal of Global Studies,Instituto Brasileiro de Relacoes Internacionais,15181219 +Meridians,Indiana University Press,15366936|15478424 +Meridional Revista Chilena de Estudios Latinoamericanos,Universidad de Chile,07193734|07193734 +MERIP Middle East Report,JSTOR,08880328| +MERIP Reports,JSTOR,00477265| +Merkourios Utrecht Journal of International and European Law,"""Ubiquity Press, Ltd.""",0927460X +Merrill-Palmer Quarterly,Wayne State University Press,0272930X|15350266 +Mershon International Studies Review,JSTOR,10791760| +Mersin Üniversitesi Eğitim Fakültesi Dergisi,Mersin University Journal of the Faculty of Education,13067850 +Mesoporous Biomaterials,De Gruyter Open Sp. z o.o. ,23002271 +Messages Sages and Ages,Walter de Gruyter GmbH,18448836 +Messenger,American Scientific Publishers,2167955X|21679568 +MEST Journal,MESTE NGO,23347171|23347058 +Mesure et évaluation en éducation,Consortium Erudit,08233993|23682000 +Meta Gene,Elsevier ,22145400| +Meta Journal des traducteurs,Consortium Erudit,00260452|14921421 +Metabolic Bone Disease and Related Research,Elsevier ,02218747| +Metabolic Brain Disease,Springer-Verlag,08857490|15737365 +Metabolic Engineering,Elsevier ,10967176|10967184 +Metabolic Engineering Communications,Elsevier ,22140301| +Metabolic Syndrome and Related Disorders,Mary Ann Liebert,15404196|00000000 +Metabolism,Elsevier ,00260495| +Metabolism and Nutrition in Oncology,Thieme Publishing Group,2194735X|2194735X +Metabolites,MDPI AG,22181989 +Metabolomics,Springer-Verlag,15733882|15733890 +Metacognition and Learning,Springer-Verlag,15561623|15561631 +Metagenomics,Ashdin Publishing,20905181|2090519X +Metai ir dienos VGTU,Vilnius Gediminas Technical University,23514590 +Metal Finishing,Elsevier ,00260576| +Metal Music Studies,Intellect,20523998| +Metal Powder Report,Elsevier ,00260657| +Metal Science,Maney Publishing,03063453| +Metal Science and Heat Treatment,Springer-Verlag,00260673|15738973 +Metal Science Journal,Informa UK (Taylor & Francis),00260681| +Metal Working and Material Science,Novosibirsk State Technical University,19946309| +Metal-Based Drugs,Hindawi Publishing Corporation,07930291|16875486 +Metal-Mediated Reformatsky-Type Reactions,Thieme Publishing Group,20600240 +Metallic Materials,"""AEPress, s.r.o.""",0023432X|0023432X +Metallodrugs,De Gruyter Open Sp. z o.o. ,23003618 +METALLOFIZIKA I NOVEISHIE TEKHNOLOGII,Co. Ltd. Ukrinformnauka,10241809|10241809 +Metallography,Elsevier ,00260800| +Metallography Microstructure and Analysis,Springer-Verlag,21929262|21929270 +Metallomics,The Royal Society of Chemistry,17565901|1756591X +Metalloproteinases In Medicine,Dove Medical Press,23242027 +Metallurgical and Materials Engineering,Centre for Evaluation in Education and Science,22178961| +Metallurgical and Materials Transactions A,Springer-Verlag,10735623|15431940 +Metallurgical and Materials Transactions B,Springer-Verlag,10735615|15431916 +Metallurgical and Materials Transactions E,Springer-Verlag,21962936|21962944 +Metallurgical Engineering,Hans Publishers,23731478|23731486 +Metallurgical Research & Technology,EDP Sciences,22713646|22713654 +Metallurgical Reviews,Maney Publishing,00766690| +Metallurgical Transactions,Springer-Verlag,0026086X| +Metallurgical Transactions A,Springer-Verlag,03602133| +Metallurgical Transactions B,Springer-Verlag,03602141| +Metallurgist,Springer-Verlag,00260894|15738892 +Metallurgy and Foundry Engineering,AGH University of Science and Technology Press,12302325| +Metals,MDPI AG,20754701 +Metals and Materials,Springer-Verlag,12259438| +Metals and Materials International,Springer-Verlag,15989623|20054149 +Metals Technology,Maney Publishing,03071693| +Metamaterials,Elsevier ,18731988| +Metamedicine,Springer-Verlag,01662031| +Metaphilosophy,Wiley Blackwell (Blackwell Publishing),00261068|14679973 +Metaphor and Symbol,Informa UK (Taylor & Francis),10926488|15327868 +Metaphor and Symbolic Activity,Informa UK (Taylor & Francis),08857253| +Metaphor and the Social World,John Benjamins Publishing Company,22104070|22104097 +Metaphysica,Walter de Gruyter GmbH,14372053|18746373 +Metascience,Springer-Verlag,08150796|14679981 +Metaverse Creativity,Intellect,20403550|20403569 +Meteoritics,Wiley Blackwell (Blackwell Publishing),00261114| +Meteoritics and Planetary Science,Wiley Blackwell (Blackwell Publishing),10869379|19455100 +Meteorological Applications,Wiley Blackwell (John Wiley & Sons),13504827|14698080 +Meteorological Monographs,American Meteorological Society,00659401|00659401 +Meteorologische Zeitschrift,Schweizerbart,09412948|00000000 +Meteorology and Atmospheric Physics,Springer-Verlag,01777971|14365065 +methaodos revista de ciencias sociales,Methodos.revista de ciencias sociales,23408413|23408413 +Méthexis,Brill Academic Publishers,03270289|24680974 +Methis Studia humaniora Estonica,Estonian Literary Museum Scholary Press,17366852|17366852 +Method & Theory in the Study of Religion,Brill Academic Publishers,09433058|15700682 +Méthod(e)s African Review of Social Sciences Methodology,Informa UK (Taylor & Francis),23754745|23754753 +Methodist DeBakey Cardiovascular Journal,Methodist DeBakey Cardiovascular Journal,19476094| +Methodological Innovations,SAGE Publications,20597991 +Methodological Innovations Online,University of Plymouth,17480612 +Methodology,Hogrefe Publishing Group,16141881|16142241 +Methodology And Computing In Applied Probability,Springer-Verlag,13875841|15737713 +Méthodos,OpenEdition,16260600|17697379 +Methods,Elsevier ,10462023|10959130 +Methods and Applications in Fluorescence,IOP Publishing,20506120 +Methods and Applications of Analysis,"""International Press of Boston, Inc.""",10732772|19450001 +Methods and Findings in Experimental and Clinical Pharmacology,Thomson Reuters (Prous Science),03790355| +Methods in Cell Science,Springer-Verlag,13815741|15730603 +Methods in Ecology and Evolution,Wiley Blackwell (Blackwell Publishing),2041210X|2041210X +Methods in Enzymology,Elsevier , +Methods in Next Generation Sequencing,De Gruyter Open Sp. z o.o. ,20847173 +Methods in Oceanography,Elsevier ,22111220| +Methods of Information in Medicine,Schattauer GmbH (Methods of Information in Medicine),00261270| +MethodsX,Elsevier ,22150161| +Métiers de la Petite Enfance,Elsevier ,1258780X| +Mètis Anthropologie des mondes grecs anciens,PERSEE Program,11052201| +Mètode Popular Science Journal,Universitat de Valencia,11333987|21749191 +Mètode Revista de difusió de la investigació,Universitat de Valencia,21743487|21749221 +Métodos de informacion,Colegio Oficial de Bibliotecarios y Documentalistas de la Comunidad Valenciana,11342838|21731241 +Metrika,Springer-Verlag,00261335|1435926X +Metroeconomica,Wiley Blackwell (Blackwell Publishing),00261386|1467999X +Metrologia,IOP Publishing,00261394|16817575 +Metrology and Measurement Systems,De Gruyter Open Sp. z o.o. ,08608229|08608229 +METRON,Springer-Verlag,00261424|2281695X +Metropolitan Museum Journal,The University of Chicago Press,00778958|21693072 +Metropolitan Museum Studies,JSTOR,15568725| +Metszetek,University of Debrecen/Metszetek,20636415 +METU Journal of the Faculty of Architecture,"""Middle East Technical University, Faculty of Architecture""",02585316| +Mevlana International Journal of Education,Mevlana Internationl Journal of Education,21467951|21467951 +Mexican Law Review,Elsevier ,18700578| +Mexican Studies/Estudios Mexicanos,University of California Press,07429797|15338320 +Meždunarodnoe pravosudie,Institute for Law and Public Policy,22262059| +Mémoires de la Société zoologique de France,Smithsonian Institution Biodiversity Heritage Library,0750747X| +MFS Modern Fiction Studies,Muse - Johns Hopkins University Press,1080658X +MGG Molecular & General Genetics,Springer-Verlag,00268925|14321874 +MGM Journal of Medical Sciences,Jaypee Brothers Medical Publishing,23477946|23477962 +mHealth,AME Publishing Company,23069740 +MHSALUD Revista en Ciencias del Movimiento Humano y Salud,Universidad Nacional de Costa Rica,1659097X +Michael Addition of 1 3-Dioxolan-4-ones to 1-Nitro-2-phenylethenes,Thieme Publishing Group,20500211 +Michael Addition of Formaldehyde -Dialkylhydrazones to β γ-Unsaturated α-Oxo Esters,Thieme Publishing Group,20500351 +Michael Addition with Nitroalkenes and Alkenyl Sulfones,Thieme Publishing Group,20500327 +Michael Additions,Thieme Publishing Group,20500319 +Michael Reactions with β-Keto Esters,Thieme Publishing Group,20500017 +Michigan Academician,"""Michigan Academy of Science, Arts and Letters""",00262005|21678634 +Michigan Journal of Sustainability,University of Michigan Library,23320621 +Michigan Law Review,JSTOR,00262234| +Micro & Nano Letters,Institution of Electrical Engineers,17500443|17500443 +Micro and Nano Systems Letters,Springer (Biomed Central Ltd.),22139621|22139621 +Micro and Nanosystems,Bentham Science,18764029| +Microalgae Biotechnology,Walter de Gruyter GmbH,23003561 +Microarrays,MDPI AG,20763905 +Microbe Magazine,American Society for Microbiology,15587452|15587460 +Microbes and Environments,Japanese Society of Microbial Ecology,13426311|13474405 +Microbes and Health,Bangladesh Journals Online,22260153|23053542 +Microbes and Infection,Elsevier ,12864579| +Microbial & Comparative Genomics,Mary Ann Liebert,10906592|00000000 +Microbial & Comparative Genomics,Mary Ann Liebert,10906592| +Microbial Biotechnology,Wiley Blackwell (Blackwell Publishing),17517907|17517915 +Microbial Cell,Shared Science Publishers OG,23112638 +Microbial Cell Factories,Springer (Biomed Central Ltd.),14752859|14752859 +Microbial Drug Resistance,Mary Ann Liebert,10766294|00000000 +Microbial Ecology,Springer-Verlag,00953628|1432184X +Microbial Ecology in Health & Disease,Co-Action Publishing,16512235 +Microbial Ecology in Health and Disease,Co-Action Publishing,0891060X|1234987X +Microbial Genomics,Microbiology Society,20575858|20575858 +Microbial Informatics and Experimentation,Springer (Biomed Central Ltd.),20425783| +Microbial Pathogenesis,Elsevier ,08824010|10961208 +Microbial Risk Analysis,Elsevier ,23523522| +Microbiologia Medica,PAGEPress Publications,22806423|22806423 +Microbiological Independent Research,"""Doctrina, Ltd.""",25002236 +Microbiological Research,Elsevier ,09445013| +Microbiology,Pleiades Publishing,00262617|16083237 +Microbiology,Microbiology Society,13500872|14652080 +Microbiology and Immunology,Wiley Blackwell (Blackwell Publishing),03855600|13480421 +Microbiology and Molecular Biology Reviews,American Society for Microbiology,10922172|10985557 +Microbiology Australia,CSIRO Publishing,13244272| +Microbiology Discovery,Herbert Publications,20526180 +Microbiology Education,American Society for Microbiology,15428818| +Microbiology Indonesia,Indonesian Society for Microbiology,19783477|20878575 +Microbiology Insights,"""Libertas Academica, Ltd.""",11786361 +Microbiology Journal,Science Alert,21530696| +Microbiology Research,PAGEPress Publications,20367473|20367481 +Microbiology Spectrum,American Society for Microbiology,21650497|21650497 +MicrobiologyOpen,Wiley Blackwell (John Wiley & Sons),20458827| +Microbiome,Springer (Biomed Central Ltd.),20492618|20492618 +Microbiome Science and Medicine,De Gruyter Open Sp. z o.o. ,20847653 +Microchemical Journal,Elsevier ,0026265X|10959149 +Microchimica Acta,Springer-Verlag,00263672|14365073 +Microcirculation,Wiley Blackwell (Blackwell Publishing),10739688|15498719 +Microeconomics and Macroeconomics,Scientific and Academic Publishing,2168457X| +Microelectronic Engineering,Elsevier ,01679317| +Microelectronics and Solid State Electronics,Scientific and Academic Publishing,2324643X| +Microelectronics International,Emerald (MCB UP ),13565362|00000000 +Microelectronics Journal,Elsevier ,00262692| +Microelectronics Reliability,Elsevier ,00262714| +Microfluidics and Nanofluidics,Springer-Verlag,16134982|16134990 +Microform & Digitization Review,Walter de Gruyter GmbH,21900752|2190541X +Microform and Imaging Review,Walter de Gruyter GmbH,09495770|18658458 +Microgravity Science and Technology,Springer-Verlag,09380108|18750494 +Micromachines,MDPI AG,2072666X +Micron,Elsevier ,09684328| +Micron (1969),Elsevier ,00477206| +Micron and Microscopica Acta,Elsevier ,07396260| +Microorganisms,MDPI AG,20762607 +Micropaleontology,GeoScienceWorld,00262803|19372795 +Microporous and Mesoporous Materials,Elsevier ,13871811| +Microporous Materials,Elsevier ,09276513| +Microprocessing and Microprogramming,Elsevier ,01656074| +Microprocessors,Elsevier ,03085953| +Microprocessors and Microsystems,Elsevier ,01419331|01419331 +Micropropagación in vitro de Nothofagus alpina utilizando fitohormonas,Universidad Tecnica Estatal de Quevedo,13904051|13904043 +MicroRNA,Bentham Science,22115366| +microRNA Diagnostics and Therapeutics,De Gruyter Open Sp. z o.o. ,20846843 +microRNAs in Cardiovascular Research,De Gruyter Open Sp. z o.o. ,22996915 +microRNAs in Diabetes and Obesity,De Gruyter Open Sp. z o.o. ,2084719X +Microscale Thermophysical Engineering,Informa UK (Taylor & Francis),10893954|10917640 +Microscopy,Oxford University Press,20505698|20505701 +Microscopy and Microanalysis,Cambridge University Press,14319276|14358115 +Microscopy Microanalysis Microstructures,EDP Sciences,11542799| +Microscopy Research,"""Scientific Research Publishing, Inc.""",23293306|23293314 +Microscopy Research and Technique,Wiley Blackwell (John Wiley & Sons),1059910X|10970029 +Microscopy Today,Cambridge University Press,15519295|21503583 +Microsurgery,Wiley Blackwell (John Wiley & Sons),07381085|10982752 +Microsystem Technologies,Springer-Verlag,09467076|14321858 +Microsystems & Nanoengineering,Nature Publishing Group,20557434 +Microvascular Research,Elsevier ,00262862|10959319 +Microvascular Reviews and Communications,Japanese Society for Microcirculation,18805906 +Microwave and Optical Technology Letters,Wiley Blackwell (John Wiley & Sons),08952477|10982760 +Midas,OpenEdition,21829543 +Midcontinental Journal of Archaeology,Maney Publishing,01461109|23274271 +MIDDLE BLACK SEA JOURNAL OF HEALTH SCIENCE,Middle Black Sea Journal of Health Science,21497796| +Middle East African Journal of Ophthalmology,Medknow Publications,09749233| +Middle East Critique,Informa UK (Taylor & Francis),19436149|19436157 +Middle East Current Psychiatry,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,20905408| +Middle East Development Journal,Informa UK (Taylor & Francis),17938120|17938171 +Middle East Fertility Society Journal,Elsevier ,11105690| +Middle East J of Management,Inderscience Enterprises Ltd.,20503636|20503644 +Middle East Journal of Age and Ageing,Medi + World International,18390102|14498677 +Middle East Journal of Business,Medi + World International,18348777|18348769 +Middle East Journal of Culture and Communication,Brill Academic Publishers,18739857|18739865 +Middle East Journal of Digestive Diseases,International Society for Phytocosmetic Sciences,20085230|20085249 +Middle East Journal of Internal Medicine,Medi + World International,18379052|18379060 +Middle East Journal of Medical Genetics,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,20908571| +Middle East Journal of Nursing,Medi + World International,18348742|18348750 +Middle East Journal of Psychiatry and Alzheimers,Medi + World International,18389619|18389627 +Middle East Journal of Refugee Studies,Egitim Danismanligi ve Arastirmalari Merkezi - EDAM,21494738| +Middle East Journal of Rehabilitation and Health,International Neuroscience Institute,24234451 +Middle East Law and Governance,Brill Academic Publishers,18763367|18763375 +Middle East Policy,Wiley Blackwell (Blackwell Publishing),10611924|14754967 +Middle East Report,JSTOR,08992851| +Middle East Studies Association Bulletin,Cambridge University Press,00263184|23293233 +Middle Eastern Literatures,Informa UK (Taylor & Francis),1475262X|00000000 +Middle Eastern Studies,Informa UK (Taylor & Francis),00263206|17437881 +Middle School Journal,Informa UK (Taylor & Francis),00940771|23276223 +Middle West Review,Muse - Johns Hopkins University Press,23725672 +MIDEO,Peeters Publishers,5751330 +Midland History,Maney Publishing,0047729X|1756381X +Midland Naturalist,JSTOR,02716844| +Midwest Journal of Political Science,JSTOR,00263397| +Midwest Studies in Philosophy,Wiley Blackwell (Blackwell Publishing),03636550|14754975 +Midwifery,Elsevier ,02666138| +Między Oryginałem a Przekładem,Ksiegarnia Akademicka Sp. z.o.o.,16899121|16899121 +Migracijske i etničke teme / Migration and Ethnic Themes,Institut Za Migracije I Narodnosti -Institute for Migration and Ethnic Studies,13332546|18489184 +Migracion,Wiley Blackwell (Blackwell Publishing),10247890| +Migraciones Publicación del Instituto Universitario de Estudios sobre Migraciones,Universidad Pontificia Comillas,11385774|23410833 +Migration,Wiley Blackwell (Blackwell Publishing),05400074| +Migration and Development,Informa UK (Taylor & Francis),21632324|21632332 +Migration Studies,Oxford University Press,20495838|20495846 +Mikrobiyoloji Bulteni,Bilimsel Tip Publishing House,03749096| +Mikrochemie,Springer-Verlag,03690261| +Mikrochemie vereinigt mit Microchimica Acta,Springer-Verlag,03692795| +Mikrochimica Acta,Springer-Verlag,0344838X| +Mikroskopie,Dustri-Verlag Dr. Karl Feistle,21974551| +Mil neuf cent,PERSEE Program,11461225|19606648 +Milan Journal of Mathematics,Springer-Verlag,14249286|14249294 +Milbank Quarterly,Wiley Blackwell (Blackwell Publishing),0887378X|14680009 +Militaergeschichtliche Zeitschrift,Walter de Gruyter GmbH,21966850|21966850 +Militärgeschichtliche Zeitschrift,Oldenbourg Wissenschaftsverlag,00263826| +Military Affairs,JSTOR,00263931| +Military Behavioral Health,Informa UK (Taylor & Francis),21635781|21635803 +Military Medical Research,Springer (Biomed Central Ltd.),20549369|20549369 +Military Medicine,AMSUS,00264075|1930613X +Military Operations Research,Military Operations Research Society,10825983| +Military Psychology,American Psychological Association,08995605|15327876 +Millars Espai i Història,Universitat Jaume I,11329823| +Millenium Jahrbuch / Millenium Yearbook,Walter de Gruyter GmbH,18621139| +Millennial Asia,SAGE Publications,09763996|23217081 +Millennium - Journal of International Studies,SAGE Publications,03058298|14779021 +Milletleraras,Ankara University,05441943|05441943 +Milton and the Romantics,Informa UK (Taylor & Francis),0145529X| +Milton Quarterly,Wiley Blackwell (Blackwell Publishing),00264326|1094348X +Milton Studies,Muse - Johns Hopkins University Press,2330796X +Mime Journal,Claremont Colleges Library,23275650 +Mimesis Journal,OpenEdition,22797203| +Mimesis Journal,OpenEdition,22797203| +Mimos,"""Peter Lang, International Academic Publishers""",00264385| +min - Minimally Invasive Neurosurgery,Thieme Publishing Group,09467211|14392291 +Mind,Oxford University Press,00264423|14602113 +Mind & Language,Wiley Blackwell (Blackwell Publishing),02681064|14680017 +Mind & Society,Springer-Verlag,15937879|18601839 +Mind Brain and Education,Wiley Blackwell (Blackwell Publishing),17512271|1751228X +Mind Culture and Activity,Informa UK (Taylor & Francis),10749039|15327884 +Mindanao Law Journal,PhilJOL,19087969| +MINDAyawan Journal of Culture and Society,PhilJOL,16568397| +Mindfulness,Springer-Verlag,18688527|18688535 +Minds and Machines,Springer-Verlag,09246495|15728641 +Mine Engineering,Hans Publishers,23297301|2329731X +Mine Water and the Environment,Springer-Verlag,10259112|16161068 +Mineral and Electrolyte Metabolism,S. Karger AG,03780392|1423016X +Mineral Economics,Springer-Verlag,21912203|21912211 +Mineral Processing and Extractive Metallurgy,Maney Publishing,03719553|17432855 +Mineral Processing and Extractive Metallurgy Review,Informa UK (Taylor & Francis),08827508|15477401 +Mineral Resources Engineering,World Scientific ,09506098| +Mineralium Deposita,Springer-Verlag,00264598|14321866 +Mineralogia,De Gruyter Open Sp. z o.o. ,00326267|18998526 +Mineralogical Journal,Japan Association of Mineralogical Sciences,05442540|18814174 +Mineralogical Magazine,The Mineralogical Society,0026461X|14718022 +Mineralogy and Petrology,Springer-Verlag,09300708|14381168 +Minerals,MDPI AG,2075163X +Minerals & Metallurgical Processing,"""Society for Mining, Metallurgy & Exploration Inc.""",07479182| +Minerals and Energy - Raw Materials Report,Informa UK (Taylor & Francis),14041049|00000000 +Minerals and the Environment,Springer-Verlag,01427245| +Minerals Engineering,Elsevier ,08926875| +Minerva,Springer-Verlag,00264695|15731871 +Minerva Journal of Women and War,"""McFarland & Company, Inc. """,0736718X|19359209 +Ming Studies,Maney Publishing,0147037X|17597595 +Mini Reviews in Medicinal Chemistry,Bentham Science,13895575|00000000 +Mini-Reviews in Organic Chemistry,Bentham Science,1570193X|00000000 +Minimally Invasive Surgery,Hindawi Publishing Corporation,20901445|20901453 +Minimally Invasive Therapy,Informa UK (Taylor & Francis),0961625X| +Minimally Invasive Therapy & Allied Technologies,Informa UK (Taylor & Francis),13645706|13652931 +Mining and Metallurgy Engineering Bor,Centre for Evaluation in Education and Science,23348836| +Mining Engineering,"""Society for Mining, Metallurgy & Exploration Inc.""",00265187| +Mining Report,Wiley Blackwell (John Wiley & Sons),21956529| +Mining Science and Technology,Elsevier ,01679031| +Mining Science and Technology (China),Elsevier ,16745264| +Mining Technology,Maney Publishing,14749009|17432863 +Mining Technology IMM Transactions section A,Maney Publishing,03717844|17432863 +Minnesota Review,Duke University Press,00265667|21574189 +MINORIGIUSTIZIA,Franco Angeli,11212845|19725221 +Minorités linguistiques et société,Consortium Erudit,19278632 +Minutes of the Proceedings,Thomas Telford Ltd.,17537843 +Minutes of the Proceedings,Thomas Telford Ltd.,17537843 +MIRAJ Moving Image Review & Art Journal,Intellect,20456298|20456301 +Miranda,OpenEdition,21086559 +MIRCEN Journal of Applied Microbiology and Biotechnology,Springer-Verlag,02650762| +MIS Quarterly,JSTOR,02767783| +Miscelánea Medieval Murciana,Servicio de Publicaciones de la Universidad e Murcia,02104903|19894597 +Miscellanea Anthropologica et Sociologica,Index Copernicus International,20842937|23540389 +Miscellanea Geographica,De Gruyter Open Sp. z o.o. ,08676046|20846118 +Miscellanea Historico-Iuridica,University of Bialystok,17329132| +Miscellaneous Methods,Thieme Publishing Group,20100043 +Mise au point,OpenEdition,22619623|22619623 +Mise au point,OpenEdition,22619623|22619623 +Miskolc Mathematical Notes,Mathematical Notes,17872405|17872413 +Missiology An International Review,SAGE Publications,00918296| +Mission Studies,Brill Academic Publishers,01689789|15733831 +Missionalia,Stellenbosch University - Missionalia,02569507|2312878X +Missouri Botanical Garden Annual Report,JSTOR,08933243| +MIST Journal GALAXY (DHAKA),Bangladesh Journals Online,20736444| +Mitigation and Adaptation Strategies for Global Change,Springer-Verlag,13812386|15731596 +Mitochondrial DNA,Informa UK (Taylor & Francis),19401736|19401744 +Mitochondrial DNA Part A,Informa UK (Informa Healthcare),24701394|24701408 +Mitochondrion,Elsevier ,15677249| +Mitologías hoy,Universitat Autonoma de Barcelona,20141130 +Mitteilungen aus dem Brenner-Archiv,Universitaet Innsbruck - Innsbruck University Press,10275649| +Mitteilungen aus dem Museum für Naturkunde in Berlin Zoologisches Museum und Institut für Spezielle Zoologie (Berlin),Wiley Blackwell (John Wiley & Sons),03738493| +Mitteilungen der Deutschen Entomologischen Gesellschaft,Wiley Blackwell (John Wiley & Sons),00120065| +Mitteilungen der Deutschen Mathematiker-Vereinigung,Walter de Gruyter GmbH,09474471|09425977 +Mitteilungen der Internationalen Gesellschaft für Musikwissenschaft / Bulletin de la Société internationale de musicologie,JSTOR,03788903| +Mitteilungen der Österreichischen Geographischen Gesellschaft,Verlag der Osterreichischen Akademie der Wissenschaften,00299138|00299138 +Mitteilungen der Schweizerischen entomologischen Gesellschaft = Bulletin de la Société entomologique suisse,Smithsonian Institution Biodiversity Heritage Library,00367575| +Mitteilungen des Deutschen Germanistenverbandes,"""Vandenhoeck & Ruprecht GmbH & Co, KG - V&R Unipress""",21968756|21968756 +Mitteilungen des Instituts für Österreichische Geschichtsforschung,Bohlau Verlag,00738484|23072903 +Mitteilungen zur christlichen Archäologie,Verlag der Osterreichischen Akademie der Wissenschaften,10256555|18142036 +Mizan Law Review,African Journals Online ,19989881|19989881 +MJA Open,Australasian Medical Publishing Co. Pty. Ltd.,22004262|22004920 +Mljekarstvo,Croatian Dairy Journal,0026704X| +MLN,Muse - Johns Hopkins University Press,00267910|10806598 +MM Science Journal,"""MM Publishing, s.r.o.""",18031269|18050476 +MMW - Fortschritte der Medizin,Springer-Verlag,14383276|16133560 +MMWR Morbidity and Mortality Weekly Report,Centers for Disease Control MMWR Office,01492195|1545861X +MMWR Recommendations and Reports,Centers for Disease Control MMWR Office,10575987|15458601 +MMWR Supplements,Centers for Disease Control MMWR Office,23808950|23808942 +MMWR Surveillance Summaries,Centers for Disease Control MMWR Office,15460738|15458636 +Mnemosyne,Brill Academic Publishers,00267074|1568525X +Mobile DNA,Springer (Biomed Central Ltd.),17598753|17598753 +Mobile Genetic Elements,Landes Bioscience,21592543|2159256X +Mobile Information Systems,Hindawi Publishing Corporation,1574017X|1875905X +Mobile Media & Communication,SAGE Publications,20501579|20501587 +Mobile Networks and Applications,Springer-Verlag,1383469X|15728153 +Mobilities,Informa UK (Taylor & Francis),17450101|1745011X +Mobility in History,Berghahn Books,22960503|20509197 +Mobilization An International Quarterly,Mobilization Journal,1086671X| +Möbius A Journal for Continuing Education Professionals in Health Sciences,Wiley Blackwell (John Wiley & Sons),02723425|1554558X +Moblie Computing,"""Science and Engineering Publishing, Co.""",23257423| +MOCT-MOST Economic Policy in Transitional Economics,Springer (Kluwer Academic Publishers),11207388| +ModaPalavra,Universidade do Estado de Santa Catarina,1982615X +Model Assisted Statistics and Applications,IOS Press,15741699|18759068 +Modèles linguistiques,OpenEdition,02496267|22740511 +Modeling and Analysis of Information Systems,P.G. Demidov Yaroslavl State University,18181015|23135417 +Modeling and Numerical Simulation of Material Science,"""Scientific Research Publishing, Inc.""",21645345|21645353 +Modeling and Simulation,Hans Publishers,23248696|2324870X +Modeling Earth Systems and Environment,Springer-Verlag,23636203|23636211 +Modeling Identification and Control A Norwegian Research Bulletin,Norwegian Society of Automatic Control,03327353|18901328 +Modeling of Artificial Intelligence,Academic Publishing House Researcher,23120355|24137200 +Modeling of systems and processes,Infra-M Academic Publishing House,22190767| +Modelling and Data Analysis,Moscow State Universtiy of Psychology and Education (MSUPE),22193758|23119454 +Modelling and Simulation in Engineering,Hindawi Publishing Corporation,16875591|16875605 +Modelling and Simulation in Materials Science and Engineering,IOP Publishing,09650393|1361651X +Modelling in Science Education and Learning,Universitat Politecnica de Valencia,19883145|19883145 +Modern & Contemporary France,Informa UK (Taylor & Francis),09639489|14699869 +Modern Agricultural Science and Technology,Academic Star Publishing Company,23759402| +Modern Anthropology,Hans Publishers,23310251|23310294 +Modern Applied Science,Canadian Center of Science and Education,19131844|19131852 +Modern Art,JSTOR,21517053| +Modern Asian Studies,Cambridge University Press,0026749X|14698099 +Modern Believing,Liverpool University Press,13531425|2053633X +Modern Chemistry,Science Publishing Group,23291818| +Modern Chemistry & Applications,OMICS Publishing Group,23296798 +Modern Chemotherapy,"""Scientific Research Publishing, Inc.""",2169348X|21693498 +Modern China,SAGE Publications,00977004|15526836 +Modern Chinese History,Informa UK (Taylor & Francis),17535654|17535662 +Modern communication studies,Infra-M Academic Publishing House,23062592| +Modern Drama,University of Toronto Press Inc,00267694|17125286 +Modern Economy,"""Scientific Research Publishing, Inc.""",21527245|21527261 +Modern Electronic Materials,Elsevier ,24521779| +Modern Environmental Science and Engineering,Academic Star Publishing Company,23332581| +Modern Instrumentation,"""Scientific Research Publishing, Inc.""",21659257|21659273 +Modern Intellectual History,Cambridge University Press,14792443|14792451 +Modern Italy,Cambridge University Press,13532944|14699877 +Modern Judaism,Oxford University Press,02761114|10863273 +Modern Language Association of America Proceedings,JSTOR,15393666| +Modern Language Journal,Wiley Blackwell (Blackwell Publishing),00267902|15404781 +Modern Language Notes,JSTOR,01496611| +Modern Language Quarterly,Duke University Press,00267929|15271943 +Modern Language Studies,JSTOR,00477729| +Modern Languages Open,Liverpool University Press,20525397 +Modern Law Review,Wiley Blackwell (Blackwell Publishing),00267961|14682230 +Modern Linguistics,Hans Publishers,23301708|23301716 +Modern Management,Hans Publishers,21607311|2160732X +Modern Management Review,Rzeszow University of Technology,23006366|23530758 +Modern Marketing,Hans Publishers,21607362|21607370 +Modern Mechanical Engineering,"""Scientific Research Publishing, Inc.""",21640165|21640181 +Modern Pathology,Nature Publishing Group,08933952|15300285 +Modern Philology,The University of Chicago Press,00268232|15456951 +Modern Physics,Hans Publishers,21610916|21610924 +Modern Physics Letters A,World Scientific ,02177323|02177323 +Modern Physics Letters B,World Scientific ,02179849|02179849 +Modern Plastic Surgery,"""Scientific Research Publishing, Inc.""",21645213|21645280 +Modern Research in Catalysis,"""Scientific Research Publishing, Inc.""",21684480|21684499 +Modern Research in Inflammation,"""Scientific Research Publishing, Inc.""",21699682|21699690 +Modern Rheumatology,Informa UK (Taylor & Francis),14397595|14397609 +Modern Rheumatology Journal,"""IMA Press, LLC""",19967012|2310158X +Modern Stochastics Theory and Applications,VTeX,23516046|23516054 +Modern Studies in English Language & Literature,Modern Studies in English,17387620| +Modern Theology,Wiley Blackwell (Blackwell Publishing),02667177|14680025 +Modern Türklük Araştırmaları Dergisi /Journal of Modern Turkish Studies,Ankara University,13048015|13048015 +Modernism/modernity,Muse - Johns Hopkins University Press,10806601 +Modernist Cultures,Edinburgh University Press,20411022|17538629 +Modified Elastomers by Hydrogenation of Polymers,Thieme Publishing Group,20600097 +Módulo Arquitectura CUC,Corporacion Universidad de la Costa - CUC,01246542|23897732 +MOJ Anatomy & Physiology,MedCrave Group,2471139X +MOJ Cell Science & Report,MedCrave Group,23746912 +MOJ Clinical & Medical Case Reports,MedCrave Group,2381179X +MOJ Food Processing & Technology,MedCrave Group,2381182X +MOJ Immunology,MedCrave Group,23734442 +MOJ Orthopedics & Rheumatology,MedCrave Group,23746939 +MOJ Proteomics & Bioinformatics,MedCrave Group,23746920 +MOJ Public Health,MedCrave Group,23796383 +MOJ Surgery,MedCrave Group,23796162 +MOJ Toxicology,MedCrave Group,23796294 +Mokslas - Lietuvos ateitis,Vilnius Gediminas Technical University,20292341|20292252 +Mokslas studijos universiteto gyvenimas,Vilnius Gediminas Technical University,13921436 +Mokslo ir technikos raida,Vilnius Gediminas Technical University,20292430|20292449 +Mokuzai Gakkaishi,The Japan Wood Research Society,00214795|18807577 +MOKUZAI HOZON (Wood Protection),Japan Wood Preserving Association,02879255|18840116 +Molbank,MDPI AG,14228599 +Molecular & Cellular Epilepsy,"""Smart Science and Technology, LLC""",23303883|23303891 +Molecular & Cellular Oncology,Landes Bioscience,23723548|23723556 +Molecular & Cellular Proteomics,American Society for Biochemistry and Molecular Biology,15359476|15359484 +Molecular & Cellular Toxicology,Springer-Verlag,1738642X|20928467 +Molecular and Biochemical Parasitology,Elsevier ,01666851| +Molecular and Cellular Biochemistry,Springer-Verlag,03008177|15734919 +Molecular and Cellular Biology,American Society for Microbiology,02707306|10985549 +Molecular and Cellular Endocrinology,Elsevier ,03037207|03037207 +Molecular and Cellular Neuroscience,Elsevier ,10447431|10959327 +Molecular and Cellular Pediatrics,Springer (Biomed Central Ltd.),21947791 +Molecular and Cellular Pediatrics,Springer (Biomed Central Ltd.),21947791|21947791 +Molecular and Cellular Pharmacology,Lumitext Publishing,19381247|19381247 +Molecular and Cellular Probes,Elsevier ,08908508|10961194 +Molecular and Cellular Therapies,Springer (Biomed Central Ltd.),20528426|20528426 +Molecular and Chemical Neuropathology,Springer-Verlag,10447393| +Molecular and Clinical Oncology,Spandidos Publications,20499450|20499469 +Molecular and Translational Cancer Epidemiology,Hindawi Publishing Corporation,16876458|16876466 +Molecular Aspects of Medicine,Elsevier ,00982997| +Molecular Astrophysics,Elsevier ,24056758| +Molecular Autism,Springer (Biomed Central Ltd.),20402392|20402392 +Molecular Based Mathematical Biology,De Gruyter Open Sp. z o.o. ,22993266 +Molecular Biology,OMICS Publishing Group,21689547|21689547 +Molecular Biology,Pleiades Publishing,00268933|16083245 +Molecular Biology and Evolution,Oxford University Press,07374038|15371719 +Molecular Biology and Genetic Engineering,Herbert Publications,20535767 +Molecular Biology International,Hindawi Publishing Corporation,20902182|20902190 +Molecular Biology of the Cell,American Society for Cell Biology,10591524| +Molecular Biology Reports,Springer-Verlag,03014851|15734978 +Molecular BioSystems,The Royal Society of Chemistry,1742206X|17422051 +Molecular Biotechnology,Springer-Verlag,10736085|15590305 +Molecular Brain,Springer (Biomed Central Ltd.),17566606|17566606 +Molecular Brain Research,Elsevier ,0169328X| +Molecular Breeding,Springer-Verlag,13803743|15729788 +Molecular Cancer,Springer (Biomed Central Ltd.),14764598|14764598 +Molecular Cancer Research,American Association for Cancer Research,15417786|15573125 +Molecular Cancer Therapeutics,American Association for Cancer Research,15357163|15388514 +Molecular Carcinogenesis,Wiley Blackwell (John Wiley & Sons),08991987|10982744 +Molecular Case Studies,Cold Spring Harbor Laboratory Press,23732865|23732873 +Molecular Cell,Elsevier ,10972765| +Molecular Cell Biology Research Communications,Elsevier - Academic Press,15224724|15224732 +Molecular Crystals,Informa UK (Taylor & Francis),03691152| +Molecular Crystals and Liquid Crystals,Informa UK (Taylor & Francis),15421406|15635287 +Molecular Crystals and Liquid Crystals Incorporating Nonlinear Optics,Informa UK (Taylor & Francis),10441859| +Molecular Crystals and Liquid Crystals Letters,Informa UK (Taylor & Francis),01406566| +Molecular Crystals and Liquid Crystals Science and Technology Section A Molecular Crystals and Liquid Crystals,Informa UK (Taylor & Francis),1058725X| +Molecular Cytogenetics,Springer (Biomed Central Ltd.),17558166|17558166 +Molecular Diagnosis,Springer-Verlag,10848592| +Molecular Diagnosis & Therapy,Springer-Verlag,11771062|11792000 +Molecular Diversity,Springer-Verlag,13811991|1573501X +Molecular Ecology,Wiley Blackwell (Blackwell Publishing),09621083|1365294X +Molecular Ecology Notes,Wiley Blackwell (Blackwell Publishing),14718278|14718286 +Molecular Ecology Resources,Wiley Blackwell (Blackwell Publishing),1755098X|17550998 +Molecular Endocrinology,The Endocrine Society,08888809|19449917 +Molecular Engineering,Springer-Verlag,09255125|15728951 +Molecular Entomology,"""Sophia Publishing Group, Inc.""",1925198X +Molecular Genetics & Genomic Medicine,Wiley Blackwell (John Wiley & Sons),23249269| +Molecular Genetics and Genomics,Springer-Verlag,16174615|16174623 +Molecular Genetics and Metabolism,Elsevier ,10967192|10967206 +Molecular Genetics and Metabolism Reports,Elsevier ,22144269| +Molecular Genetics Microbiology and Virology,Allerton Press,08914168|1934841X +Molecular Human Reproduction,Oxford University Press,13609947|14602407 +Molecular Imaging,SAGE Publications,15353508|15360121 +Molecular Imaging and Biology,Springer-Verlag,15361632|18602002 +Molecular Immunology,Elsevier ,01615890| +Molecular Imprinting,De Gruyter Open Sp. z o.o. ,20848803 +Molecular Informatics,Wiley Blackwell (John Wiley & Sons),18681743|18681751 +Molecular inhibitors in targeted therapy,Walter de Gruyter GmbH,23003650 +Molecular Interventions,CrossRef test user,15340384| +Molecular Medicine,The Feinstein Institute for Medical Research (North Shore LIJ Research Institute),10761551|15283658 +Molecular Medicine & Therapeutics,OMICS Publishing Group,23248769 +Molecular Medicine Reports,Spandidos Publications,17912997|17913004 +Molecular Medicine Today,Elsevier ,13574310| +Molecular Membrane Biology,Informa UK (Taylor & Francis),09687688|14645203 +Molecular Metabolism,Elsevier ,22128778| +Molecular Microbiology,Wiley Blackwell (Blackwell Publishing),0950382X|13652958 +Molecular Microbiology Research,"""Sophia Publishing Group, Inc.""",19275595 +Molecular Neurobiology,Springer-Verlag,08937648|08937648 +Molecular Neurodegeneration,Springer (Biomed Central Ltd.),17501326|17501326 +Molecular Neuropsychiatry,S. Karger AG,22969209|22969179 +Molecular Neuroscience,VRI Press,23314966 +Molecular Nutrition & Food Research,Wiley Blackwell (John Wiley & Sons),16134125|16134133 +Molecular Oncology,Elsevier ,15747891| +Molecular Oral Microbiology,Wiley Blackwell (Blackwell Publishing),20411006|20411014 +Molecular Pain,SAGE Publications,17448069|17448069 +Molecular Pathogens,"""Sophia Publishing Group, Inc.""",19251998 +Molecular Pathology,BMJ,13668714| +Molecular Pharmaceutics,American Chemical Society,15438384|15438392 +Molecular Pharmacology,American Society for Pharmacology & Experimental Therapeutics,0026895X|15210111 +Molecular Phylogenetics and Evolution,Elsevier ,10557903|10959513 +Molecular Physics,Informa UK (Taylor & Francis),00268976|13623028 +Molecular Plant,Elsevier ,16742052| +Molecular Plant,Elsevier ,17529859|17529867 +Molecular Plant Breeding,"""Sophia Publishing Group, Inc.""",19238266 +Molecular Plant Pathology,Wiley Blackwell (Blackwell Publishing),14646722|13643703 +Molecular Plant-Microbe Interactions,Scientific Societies,08940282|08940282 +Molecular Psychiatry,Nature Publishing Group,13594184|13594184 +Molecular Reproduction and Development,Wiley Blackwell (John Wiley & Sons),1040452X|10982795 +Molecular Science,Japan Society of Molecular Science ,18818404 +Molecular Simulation,Informa UK (Taylor & Francis),08927022|10290435 +Molecular Soil Biology,"""Sophia Publishing Group, Inc.""",19252005 +Molecular Syndromology,S. Karger AG,16618769|16618777 +Molecular Systems Biology,EMBO,17444292|17444292 +Molecular Systems Design & Engineering,The Royal Society of Chemistry,20589689 +Molecular Therapy,Nature Publishing Group,15250016|15250024 +Molecular Therapy — Methods & Clinical Development,Nature Publishing Group,23290501 +Molecular Therapy — Nucleic Acids,Nature Publishing Group,21622531 +Molecular Therapy — Oncolytics,Nature Publishing Group,23727705 +Molecular Urology,Mary Ann Liebert,10915362|00000000 +Molecules,MDPI AG,14203049|14203049 +Molecules and Cells,Korean Society for Molecular and Cellular Biology,10168478|02191032 +Molecules Online,Springer-Verlag,14331373|14331373 +Molecules & Medicinal Chemistry,"""Smart Science and Technology, LLC""",24706124 +Molluscan Research,Informa UK (Taylor & Francis),13235818|14486067 +Molybdenum-Catalyzed Reactions,Thieme Publishing Group,20300247 +Moment Journal,Moment Journal,2148970X +MOMENTO,Universidad Nacional de Colombia,01214470| +Momona Ethiopian Journal of Science,African Journals Online ,2073073X|2073073X +Monaldi Archives for Chest Disease,PAGEPress Publications,11220643|24651028 +Monash Business Review,Monash University,18328490|18334091 +Monatshefte,University of Wisconsin Press,00269271|19342810 +Monatshefte für Chemie - Chemical Monthly,Springer-Verlag,00269247|14344475 +Monatshefte für Mathematik,Springer-Verlag,00269255|14365081 +Monatshefte für Mathematik und Physik,Springer-Verlag,18128076| +Monatsschrift für Deutsches Recht,Verlag Dr. Otto Schmidt KG,03401812|21944202 +Monatsschrift Kinderheilkunde,Springer-Verlag,00269298|14330474 +Monde chinois,CAIRN,17673755|22711929 +Monde(s),CAIRN,22616268|22607927 +Mondes du tourisme,OpenEdition,21095671| +Mondes en développement,CAIRN,03023052|17821444 +Mondhygienisten vademecum,Springer-Verlag,1571053X|18765947 +MONDI MIGRANTI,Franco Angeli,19724888|19724896 +MONDO CONTEMPORANEO,Franco Angeli,18258905|19724853 +Mondo Ortodontico,Elsevier ,03912000| +Mongolian Journal of Agricultural Sciences,Mongolia Journals Online,23106212| +Mongolian Journal of Chemistry,Mongolia Journals Online,22266739|24140082 +Mongolian Journal of International Affairs,Mongolia Journals Online,10233741| +Monist,Oxford University Press,00269662|21533601 +Monitore zoologico italiano,Smithsonian Institution Biodiversity Heritage Library,00269786| +Monoclonal Antibodies in Immunodiagnosis and Immunotherapy,Mary Ann Liebert,21679436| +Monografias - CBPF,Brazilian Center for Physican Research,24471119 +Monograph Series on Nonlinear Science and Complexity,Elsevier , +Monographiae Botanicae,Polish Botanical Society,00770655|23922923 +Monographs of the Society for Research in Child Development,Wiley Blackwell (Blackwell Publishing),0037976X|15405834 +Monographs of the Western North American Naturalist,BioOne (Western North American Naturalist),15450228|19448236 +Monographs on Environment Earth and Planets,Terrapub,21864853 +Monte Carlo Methods and Applications,Walter de Gruyter GmbH,09299629|15693961 +MONTENEGRIN JOURNAL OF ECONOMICS,"""Centre of Sociological Research, NGO""",18005845|18006698 +Monthly Digest of Statistics,Nature Publishing Group - Macmillan Publishers,03086666|20401582 +Monthly Notices of the Royal Astronomical Society,Oxford University Press,00358711|13658711 +Monthly Notices of the Royal Astronomical Society Letters,Oxford University Press,17453925|17453933 +Monthly Review,Monthly Review Foundation,00270520|00270520 +Monthly Statistics of International Trade,Organisation for Economic Co-Operation and Development ,16070623|16097343 +Monthly Statistics of International Trade,Organisation for Economic Co-Operation and Development ,22195033| +Monthly Weather Review,American Meteorological Society,00270644|15200493 +MonTi Monografías de Traducción e Interpretación,Universitat Jaume I,18894178|19899335 +Monumenta Nipponica,Muse - Johns Hopkins University Press,00270741|18801390 +Monumenta Serica,Maney Publishing,02549948|20571690 +Monuments et mémoires de la Fondation Eugène Piot,PERSEE Program,11486023| +MOOCs FORUM,Mary Ann Liebert,23258322|23258330 +Moor Journal of Agricultural Research,African Journals Online ,15954153 +Moral Philosophy and Politics,Walter de Gruyter GmbH,21945616|21945624 +Moravian Geographical Reports,De Gruyter Open Sp. z o.o. ,12108812 +Mordovia University Bulletin,Ogarev Mordovia State University,02362910|23130636 +Morfolia,Universidad Nacional de Colombia,20119860 +Morfoloji Dergisi,Ankara University,13041819 +Mormon Studies Review,Neal A. Maxwell Institute for Religious Scholarship,21568022|21568030 +Moroccan Journal of Pure and Applied Analysis,Springer - Global Science Journals,23518227 +MORPHOLOGICAL NEWSLETTER,"""Science and Education, Ltd.""",18123171| +Morphologie,Elsevier ,12860115| +Morphology,Springer-Verlag,18715621|18715656 +MorphoMuseuM,Association Palaeovertebrata,22740422 +Mortality,Informa UK (Taylor & Francis),13576275|14699885 +Mosaic a journal for the interdisciplinary study of literature,Muse - Johns Hopkins University Press,19255683 +Moscow University Biological Sciences Bulletin,Allerton Press,00963925|1934791X +Moscow University Chemistry Bulletin,Allerton Press,00271314|19350260 +Moscow University Computational Mathematics and Cybernetics,Allerton Press,02786419|19348428 +Moscow University Geology Bulletin,Allerton Press,01458752|19348436 +Moscow University Mathematics Bulletin,Allerton Press,00271322|19348444 +Moscow University Mechanics Bulletin,Allerton Press,00271330|19348452 +Moscow University Physics Bulletin,Allerton Press,00271349|19348460 +Moscow University Soil Science Bulletin,Allerton Press,01476874|19347928 +MOTİF AKADEMİ,Motif Akademi,13084445| +Motifs An International Journal of English Studies,Diva Enterprises Private Limited,24541745|24541753 +Motivation and Emotion,Springer-Verlag,01467239|15736644 +Motivation Science,American Psychological Association,23338113|23338121 +Motivational Interviewing Training Research Implementation Practice,"""University Library System, University of Pittsburgh""",2160584X +Motor Control,Human Kinetics,10871640|15432696 +motorik,"""Ernst Reinhardt, GmbH & Co. KG""",01705792| +Motricidade,"""Desafio Singular, Lda""",1646107X|21822972 +Motricité Cérébrale Réadaptation Neurologie du Développement,Elsevier ,02455919| +Motrivivência,Universidade Federal de Santa Catarina,01034111|21758042 +Motriz Revista de Educação Física,SciELO,19806574|19806574 +Mots,OpenEdition,02436450|19606001 +Mount Sinai Journal of Medicine A Journal of Translational and Personalized Medicine,Wiley Blackwell (John Wiley & Sons),00272507|19317581 +Mountain Research and Development,BioOne (International Mountain Society and United Nations University),02764741|19947151 +Mouseion,Centro Universitario La Salle - UNILASALLE,19817207 +Mouseion Journal of the Classical Association of Canada,Muse - Johns Hopkins University Press,19135416 +Moussons,OpenEdition,22628363|22628363 +Moussons,OpenEdition,22628363|22628363 +Mouvements,CAIRN,12916412|17762995 +Movement & Sport Sciences - Science & Motricité,EDP Sciences,21185735|21185743 +Movement Disorders,Wiley Blackwell (John Wiley & Sons),08853185|15318257 +Movement Disorders Clinical Practice,Wiley Blackwell (John Wiley & Sons),23301619| +Movement Ecology,Springer (Biomed Central Ltd.),20513933| +Movement Ecology,Springer (Biomed Central Ltd.),20513933|20513933 +Movement Health & Exercise,Universiti Malaysia Pahang Publishing,22319409| +MRS Advances,Cambridge University Press (Materials Research Society),20598521 +MRS Bulletin,Cambridge University Press (Materials Research Society),08837694|19381425 +MRS Communications,Cambridge University Press (Materials Research Society),21596859|21596867 +MRS Energy & Sustainability,Cambridge University Press (Materials Research Society),23292229|23292237 +MRS Internet Journal of Nitride Semiconductor Research,Cambridge University Press (Materials Research Society),10925783|10925783 +MRS Proceedings,Cambridge University Press (Materials Research Society),19464274 +MSOR Connections,The Higher Education Academy,14734869|20514220 +mSphere,American Society for Microbiology,23795042 +mSystems,American Society for Microbiology,23795077 +Mtafiti Mwafrika (African Researcher),African Journals Online ,16070011 +MTZ - Motortechnische Zeitschrift,Springer-Verlag,00248525|21928843 +MTZ industrial,Springer Fachmedien Wiesbaden GmbH,21948682|21948690 +MTZ worldwide,Springer-Verlag,21929114 +Muadalah,IAIN Antasari,23546271| +Mucosal Immunology,Nature Publishing Group,19330219|19353456 +Mudanças - Psicologia da Saúde,Instituto Metodista de Ensino Superior,21761019 +MUDRA Journal of Finance and Accounting,Journal Press India,23474467|23952598 +Muitas Vozes,Universidade Estadual de Ponta Grossa,2238717X|22387196 +MUKADDİME,Mukaddime,13096087| +Mukaiyama Aldol Reactions,Thieme Publishing Group,20500203 +Muller Journal of Medical Sciences and Research,Medknow Publications,09759727| +Multiagent and Grid Systems,IOS Press,15741702|18759076 +Multibody System Dynamics,Springer-Verlag,13845640|1573272X +Multicultural Education & Technology Journal,Emerald (MCB UP ),1750497X| +Multicultural Education Review,Korean Association for Multicultural Education,2005615X| +Multicultural Education Studies,Korean Association for Multicultural Education,20054963| +Multicultural Learning and Teaching,Walter de Gruyter GmbH,2194654X|21612412 +Multicultural Perspectives,Informa UK (Taylor & Francis),15210960|15327892 +Multicultural Shakespeare,De Gruyter Open Sp. z o.o. ,23007605 +Multicultural Shakespeare Translation Appropriation and Performance,De Gruyter Open Sp. z o.o. ,20838530| +Multidimensional Systems and Signal Processing,Springer-Verlag,09236082|15730824 +Multidisciplinary Journal for Education Social and Technological Sciences,Universitat Politecnica de Valencia,23412593 +Multidisciplinary Journal of Educational Research,Hipatia Press,20142862 +Multidisciplinary Journal of Gender Studies,Hipatia Press,20143613 +Multidisciplinary Journal of Women Health,CIC Edizioni Internazionali,22813403 +Multidisciplinary Respiratory Medicine,Springer (Biomed Central Ltd.),20496958|20496958 +Multidiscipline Modeling in Materials and Structures,Emerald (MCB UP ),15736105|15736113 +Multiferroic Materials,De Gruyter Open Sp. z o.o. ,22993142 +Multilingua,Walter de Gruyter GmbH,01678507|16133684 +Multilingua,Walter de Gruyter GmbH,01678507|16133684 +Multilingual Education,Springer (Biomed Central Ltd.),21915059|21915059 +Multimedia Manual of Cardio-Thoracic Surgery,Oxford University Press,18139175 +Multimedia Systems,Springer-Verlag,09424962|14321882 +Multimedia Technology,"""Science and Engineering Publishing, Co.""",23271086| +Multimedia Tools and Applications,Springer-Verlag,13807501|15737721 +Multinational Business Review,Emerald (MCB UP ),1525383X| +Multinational Finance Journal,Global Business Publications,10961879| +Multiphase Science and Technology,Begell House Inc.,02761459| +Múltiplas Leituras,Instituto Metodista de Ensino Superior,19828993 +Multiple Sclerosis and Demyelinating Disorders,Springer (Biomed Central Ltd.),20566115 +Multiple Sclerosis and Related Disorders,Elsevier ,22110348| +Multiple Sclerosis Discovery Forum,Multiple Sclerosis Discovery Forum,21659893 +Multiple Sclerosis International,Hindawi Publishing Corporation,20902654|20902662 +Multiple Sclerosis Journal,SAGE Publications,13524585|14770970 +Multiple Sclerosis Journal - Experimental Translational and Clinical,SAGE Publications,20552173 +Multiple-Valued Logic,Informa UK (Taylor & Francis),10236627| +Multiscale and Multiphysics Mechanics,Techno-Press,23837306| +Multiscale Modeling and Simulation,Society for Industrial and Applied Mathematics,15403459|15403467 +Multisensory Research,Brill Academic Publishers,22134794|22134808 +Multitudes,CAIRN,02920107|17775841 +Multivariate Behavioral Research,Informa UK (Taylor & Francis),00273171|15327906 +Mund- Kiefer- und Gesichtschirurgie,Springer-Verlag,14329417|14343940 +Mundo Amazonico,Universidad Nacional de Colombia,21455074|21455082 +Mundos do Trabalho,Universidade Federal de Santa Catarina,19849222|19849222 +Muqarnas,Brill Academic Publishers,07322992|22118993 +Mural Internacional,Universidade do Estado do Rio de Janeiro UERJ,21777314 +Muscle & Nerve,Wiley Blackwell (John Wiley & Sons),0148639X|10974598 +Muscle & Nerve,Wiley Blackwell (John Wiley & Sons),0148639X|10974598 +Muscles Ligaments and Tendons Journal,CIC Edizioni Internazionali,22404554 +Musculoskeletal Biology,Herbert Publications,2054720X +Musculoskeletal Care,Wiley Blackwell (John Wiley & Sons),14782189|15570681 +Musculoskeletal Regeneration,"""Smart Science and Technology, LLC""",23785551 +MUSCULOSKELETAL SURGERY,Springer-Verlag,20355106|20355114 +Muséologies Les cahiers d études supérieures,Consortium Erudit,17185181|19297815 +Museology,Index Copernicus International,04641086|23914815 +Museum Anthropology,Wiley Blackwell (Blackwell Publishing),08928339|15481379 +Museum Anthropology Review,IUScholarWorks,19385145 +Museum History Journal,Maney Publishing,19369816|19369824 +Museum International,Wiley Blackwell (Blackwell Publishing),13500775|14680033 +Museum International (Edition Francaise),Wiley Blackwell (Blackwell Publishing),10202226|17555825 +Museum Management and Curatorship,Informa UK (Taylor & Francis),09647775|18729185 +Museums & Social Issues,Maney Publishing,15596893|20516193 +Music Analysis,Wiley Blackwell (Blackwell Publishing),02625245|14682249 +Music and Culture,Korean Society of World Music,12295930| +Music and Letters,Oxford University Press,00274224|14774631 +Music and Man,Informa UK (Taylor & Francis),03062082| +Music and Medicine,SAGE Publications,19438621|1943863X +Music and Politics,University of Michigan Library,19387687 +Music and the Moving Image,University of Illinois Press,19407610|19407610 +Music Education Research,Informa UK (Taylor & Francis),14613808|14699893 +Music Educators Journal,SAGE Publications,00274321|19450087 +Music Perception An Interdisciplinary Journal,University of California Press,07307829|15338312 +Music Reference Services Quarterly,Informa UK (Taylor & Francis),10588167|15409503 +Music Scholarship / Problemy Muzykal noj Nauki,Ufa State Academy of Arts,19970854| +Music Sound and the Moving Image,Liverpool University Press,17530768|17530776 +Music Supervisors Bulletin,SAGE Publications,15592464| +Music Supervisors Journal,SAGE Publications,15592472| +Music Theory and Analysis (MTA),Leuven University Press,22955917| +Music Theory Spectrum,Oxford University Press,01956167|15338339 +Music Therapy,Oxford University Press,07347367| +Music Therapy Perspectives,Oxford University Press,07346875|20537387 +Música em Perspectiva,Universidade Federal do Parana,19817126| +Musicae Scientiae,SAGE Publications,10298649| +Musical Offerings,Centennial Library,23308206|21673799 +Musicologica Brunensia,Masaryk University Press,12120391|2336436X +Musicological Annual,University of Ljubljana,0580373X|23504242 +Musicology Australia,Informa UK (Taylor & Francis),08145857|1949453X +Musicology Today,De Gruyter Open Sp. z o.o. ,17341663|17341663 +Musik- Tanz und Kunsttherapie,Hogrefe Publishing Group,09336885|21906254 +Musik- Tanz- und Kunsttherapie,Hogrefe Publishing Group,09336885|21906254 +Musiktherapeutische Umschau,"""Vandenhoeck & Ruprecht GmbH & Co, KG""",21968764|21968764 +Musil-Forum,Walter de Gruyter GmbH,10161333| +Muslim World Journal of Human Rights,Walter de Gruyter GmbH,21946558|15544419 +Mustafa Kemal Üniversitesi Tıp Dergisi,The Medical Journal of Mustafa Kemal University,13087185|21493103 +Musurgia,CAIRN,12577537|22711856 +Mutagenesis,Oxford University Press,02678357|14643804 +Mutation Research Letters,Elsevier ,01657992| +Mutation Research/DNA Repair,Elsevier ,09218777| +Mutation Research/DNA Repair Reports,Elsevier ,01678817| +Mutation Research/DNAging,Elsevier ,09218734| +Mutation Research/Environmental Mutagenesis and Related Subjects,Elsevier ,01651161| +Mutation Research/Fundamental and Molecular Mechanisms of Mutagenesis,Elsevier ,00275107| +Mutation Research/Genetic Toxicology,Elsevier ,01651218| +Mutation Research/Genetic Toxicology and Environmental Mutagenesis,Elsevier ,13835718| +Mutation Research/Mutation Research Genomics,Elsevier ,13835726| +Mutation Research/Reviews in Genetic Toxicology,Elsevier ,01651110| +Mutation Research/Reviews in Mutation Research,Elsevier ,13835742| +Müvészettörténeti Értesitö,Akademiai Kiado Zrt.,00275247|15882802 +mUX The Journal of Mobile User Experience,Springer (Biomed Central Ltd.),2196873X|2196873X +Muziki,Informa UK (Taylor & Francis),18125980| +Muziki,Informa UK (Taylor & Francis),18125980|1753593X +Muziki,Informa UK (Taylor & Francis),18125980| +Muziki,Informa UK (Taylor & Francis),18125980| +Muzikologija,National Library of Serbia,14509814|24060976 +MVP Journal of Medical Science,Informatics Publishing Limited,2348263X|23482648 +Mycobacterial Diseases,OMICS Publishing Group,21611068 +Mycobiology,Mycobiology (KAMJE),12298093|20929323 +MYCOBIOTA,Mycobiota,13147129|13147781 +MycoKeys,Pensoft Publishers,13144057|13144049 +Mycologia,Mycological Society of America,00275514|15572536 +Mycological Progress,Springer-Verlag,1617416X|18618952 +Mycological Research,Elsevier ,09537562|14698102 +Mycologist,Elsevier ,0269915X|14640605 +Mycology: An International Journal on Fungal Biology,Informa UK (Taylor & Francis),21501203|21501211 +Mycopathologia,Springer-Verlag,0301486X|15730832 +Mycopathologia et Mycologia Applicata,Springer-Verlag,00275530| +Mycorrhiza,Springer-Verlag,09406360|14321890 +Mycoscience,Elsevier ,13403540|16182545 +Mycoses,Wiley Blackwell (Blackwell Publishing),09337407|14390507 +mycosphere,Mushroom Research Foundation,20777019|20777019 +Mycotaxon,"""Mycotaxon, Ltd.""",00934666|21548889 +Mycotoxin Research,Springer-Verlag,01787888|18671632 +Mymensingh Medical Journal,Bangladesh Journals Online,10224742| +Myth & Symbol,Informa UK (Taylor & Francis),10223827|17535972 +N H S A Research Quarterly,Informa UK (Taylor & Francis),10892583| +N-Heterocyclic Carbene Catalyzed Staudinger Reaction of Ketenes,Thieme Publishing Group,20300018 +Naamkunde,Peeters Publishers,1675257 +Nabokov Studies,Muse - Johns Hopkins University Press,15489965 +NACADA Journal,National Academic Advising Association NACADA,02719517|23303840 +Nachrichten aus Chemie Technik und Laboratorium,Wiley Blackwell (John Wiley & Sons),03415163| +Nachrichten aus Chemie und Technik,Wiley Blackwell (John Wiley & Sons),0027738X|0027738X +Nachrichten aus der Chemie,Wiley Blackwell (John Wiley & Sons),14399598|18680054 +NAEA News,Informa UK (Taylor & Francis),1606395 +NAFO Scientific Council Studies,Northwest Atlantic Fisheries Organization,02506432|16829808 +NAFTA Law and Business Review of the Americas,Springer (Kluwer Academic Publishers),13814605| +Nafta-Gaz,The Oil and Gas Institute - National Research Institute,08678871| +Nagoya Mathematical Journal,Cambridge University Press,00277630| +Naharaim - Zeitschrift für deutsch-jüdische Literatur und Kulturgeschichte,Walter de Gruyter GmbH,18629148|18629156 +Nahrung/Food,Wiley Blackwell (John Wiley & Sons),0027769X|15213803 +nall,Boom Uitgevers Den Haag,22133518| +Names,Informa UK (Taylor & Francis),00277738|17562279 +NAMMCO Scientific Publications,UiT The Arctic University of Norway,15602206|23092491 +Nammyonghak Studies,The Nammyonghak Studies Institute,12268925| +NAN Nü,Brill Academic Publishers,13876805|15685268 +Nang Yan Business Journal,De Gruyter Open Sp. z o.o. ,23074450 +Nankai Business Review International,Emerald (MCB UP ),20408749| +NANO,World Scientific ,17932920|17937094 +Nano Biomedicine and Engineering,OAhost,21505578 +Nano Communication Networks,Elsevier ,18787789| +Nano Communications,American Scientific Publishers,21672733| +Nano Convergence,Springer (Biomed Central Ltd.),21965404|21965404 +Nano Energy,Elsevier ,22112855| +Nano Hybrids,Trans Tech Publications,22349871 +Nano Letters,American Chemical Society,15306984|15306992 +Nano LIFE,World Scientific ,17939844|17939852 +Nano Research,Springer-Verlag,19980124|19980000 +Nano Reviews,Co-Action Publishing,20005121 +Nano Today,Elsevier ,17480132| +Nano-Micro Letters,Springer-Verlag,23116706|21505551 +Nano-Structures & Nano-Objects,Elsevier ,2352507X| +NanoBioImaging,De Gruyter Open Sp. z o.o. ,22993150 +Nanobiomedicine,InTech,18495435 +Nanobiosensors in Disease Diagnosis,Dove Medical Press,22306153 +Nanobiotechnology,Springer-Verlag,15511286|15511286 +Nanocarriers,De Gruyter Open Sp. z o.o. ,22993991 +Nanocell News,Instituto Nanocell,23185880 +Nanocomposites,Maney Publishing,20550324|20550332 +Nanocontainers,De Gruyter Open Sp. z o.o. ,22993959 +Nanoelectromechanical Systems,De Gruyter Open Sp. z o.o. ,22993169 +NanoEthics,Springer-Verlag,18714757|18714765 +Nanofabrication,De Gruyter Open Sp. z o.o. ,2299680X +NanoImpact,Elsevier ,24520748| +Nanomaterials,MDPI AG,20794991 +Nanomaterials and Energy,Thomas Telford Ltd.,20459831|2045984X +Nanomaterials and Nanosciences,Herbert Publications,20530927 +Nanomaterials and Nanotechnology,InTech,18479804|18479804 +Nanomaterials and the Environment,De Gruyter Open Sp. z o.o. ,22991204 +Nanomaterials and Tissue Regeneration,De Gruyter Open Sp. z o.o. ,20847211 +Nanomechanics Science and Technology An International Journal,Begell House Inc.,19475748| +Nanomedicine,Future Medicine,17435889|17486963 +Nanomedicine and Nanobiology,American Scientific Publishers,21679290| +Nanomedicine Nanotechnology Biology and Medicine,Elsevier ,15499634| +Nanopages,Akademiai Kiado Zrt.,17874033|17880718 +Nanophotonics,Walter de Gruyter GmbH,21928606|21928614 +Nanoscale,The Royal Society of Chemistry,20403364|20403372 +Nanoscale and Microscale Thermophysical Engineering,Informa UK (Taylor & Francis),15567265|15567273 +Nanoscale Horizons,The Royal Society of Chemistry,20556756|20556764 +Nanoscale Research Letters,Springer (Biomed Central Ltd.),19317573|1556276X +Nanoscale Systems Mathematical Modeling Theory and Applications,De Gruyter Open Sp. z o.o. ,22993290 +Nanoscience & Nanotechnology-Asia,Bentham Science,22106820| +Nanoscience & Technology Open Access,Symbiosis Group,23748141 +Nanoscience &Nanotechnology-Asia,Bentham Science,22106812| +Nanoscience and Nanoengineering,"""Horizon Research Publishing Co., Ltd.""",23319747|23319755 +Nanoscience and Nanotechnology,Scientific and Academic Publishing,2163257X| +Nanoscience and Nanotechnology Letters,American Scientific Publishers,19414900|19414919 +Nanoscience Methods,Informa UK (Taylor & Francis),21642311 +Nanosistemy fizika himiâ matematika,ITMO University,23057971 +Nanospectroscopy,De Gruyter Open Sp. z o.o. ,23003537 +Nanostructured Materials,Elsevier ,09659773| +Nanosystems Physics Chemistry Mathematics,ITMO University,22208054| +Nanotechnologies in Construction A Scientific Internet-Journal,CNT Nanostroitelstvo,20758545 +Nanotechnologies in Russia,Pleiades Publishing,19950780|19950799 +Nanotechnology,IOP Publishing,09574484|13616528 +Nanotechnology and Nanoscience,Bioinfo Publications,09767630|09767649 +Nanotechnology Development,PAGEPress Publications,20389671|2038968X +Nanotechnology Perceptions,Collegium Basilea,16606795| +Nanotechnology Research and Practice,Academic Publishing House Researcher,23127856|24137227 +Nanotechnology Reviews,Walter de Gruyter GmbH,21919089|21919097 +Nanotechnology Science and Applications,Dove Medical Press,11778903 +Nanothermoelectrics,De Gruyter Open Sp. z o.o. ,23001038 +Nanotoxicology,Informa UK (Taylor & Francis),17435390|17435404 +NanoTrust-Dossiers,Verlag der Osterreichischen Akademie der Wissenschaften,19987293 +Nanotube Therapy,De Gruyter Open Sp. z o.o. ,22991026 +NanoWorld Journal,United Scientific Group,23791101 +NAPA Bulletin,Wiley Blackwell (Blackwell Publishing),15564789|15564797 +Napoleonica La Revue,CAIRN,21000123|21000123 +NARAYANA NURSING JOURNAL,ScopeMed International Medical Journal Managment and Indexing System,22785361| +Narkokontrol,The Publishing Group Jurist,20724160| +Narodna umjetnost,Institute of Ethnology and Folkkore Research,05472504|1848865X +Narrative,Muse - Johns Hopkins University Press,1538974X +Narrative Culture,Wayne State University Press,21690235|21690251 +Narrative Inquiry,John Benjamins Publishing Company,13876740|00000000 +Narrative Inquiry in Bioethics,Muse - Johns Hopkins University Press,21571740 +Naše gospodarstvo/Our economy,Walter de Gruyter GmbH,23858052 +Naše more,University of Dubrovnik,04696255|18486320 +Naše společnost,Institute of Sociology of the Academy of Sciences of the Czech Republic,1214438X| +Nashim A Journal of Jewish Women s Studies & Gender Issues,Indiana University Press,07938934|15655288 +NASKO,University of Washington Libraries,23114487 +Nasledje,Centre for Evaluation in Education and Science,1450605X| +NASN School Nurse,SAGE Publications,1942602X|19426038 +NASPA Journal,Berkeley Electronic Press,15595455|00276014 +NASPA Journal About Women In Higher Education,Informa UK (Taylor & Francis),19407882|19407890 +NASSP Bulletin,SAGE Publications,01926365| +Nastava i vaspitanje,Centre for Evaluation in Education and Science,05473330| +National Academy Notes including the Complete Catalogue of the Spring Exhibition National Academy of Design,JSTOR,21528578| +National Academy Science Letters,Springer-Verlag,0250541X|22501754 +National Civic Review,Wiley Blackwell (John Wiley & Sons),00279013|15427811 +National Committee on American Foreign Policy Newsletter,Informa UK (Taylor & Francis),21600244 +National Council on Religion and Public Education Bulletin,Informa UK (Taylor & Francis),15507386| +National Defence University Scientific Quarterly,Index Copernicus International,08672245|22996753 +National History,Scidea,19950632|19950977 +National Identities,Informa UK (Taylor & Francis),14608944|14699907 +National Institute Economic Review,SAGE Publications,00279501|00000000 +National Journal of Laboratory Medicine,JCDR Research and Publications,22778551| +National Journal of Maxillofacial Surgery,Medknow Publications,09755950| +National Journal of Physiology Pharmacy and Pharmacology,ScopeMed International Medical Journal Managment and Indexing System,23204672|22313206 +National Mathematics Magazine,JSTOR,15395588| +National Municipal Review,Wiley Blackwell (John Wiley & Sons),01903799|19310250 +National Productivity Review,Wiley Blackwell (John Wiley & Sons),02778556|15206734 +National Psychological Journal,Russian Psychological Society,20796617| +National Science Review,Oxford University Press,20955138|2053714X +National Strength & Conditioning Association Journal,Ovid Technologies (Wolters Kluwer) - National Strength & Conditioning,07440049| +National Strength Coaches Association Journal,Ovid Technologies (Wolters Kluwer) - National Strength & Conditioning,0199610X| +National Tax Journal,National Tax Association,00280283| +National Vocational Guidance Bulletin,Wiley Blackwell (John Wiley & Sons),21645825| +Nationalism and Ethnic Politics,Informa UK (Taylor & Francis),13537113|15572986 +Nationalities Papers,Informa UK (Taylor & Francis),00905992|14653923 +Nations and Nationalism,Wiley Blackwell (Blackwell Publishing),13455078|14698129 +Nations and Nationalism,Wiley Blackwell (Blackwell Publishing),13545078| +Nativa,Revista Nativa,23187670 +Native American and Indigenous Studies,University of Minnesota Press,23321261| +Native Plants Journal,University of Wisconsin Press,15228339|15484785 +Native South,Muse - Johns Hopkins University Press,21524025 +Natur und Recht,Springer-Verlag,01721631|14390515 +Natura Croatica,Croatian Natural History Museum,13300520|18487386 +Natura Neotropicalis,Universidad Nacional del Litoral,03292177|23625570 +Natural Areas Journal,BioOne (Natural Areas Journal),08858608|21624399 +Natural Computing,Springer-Verlag,15677818|15729796 +Natural Environment,Sciknow Publications,23318171 +Natural Gas,Wiley Blackwell (John Wiley & Sons),07435665|15206742 +Natural Gas & Electricity,Wiley Blackwell (John Wiley & Sons),15457893|15457907 +Natural Gas Industry B,Elsevier ,23528540| +Natural Hazards,Springer-Verlag,0921030X|15730840 +Natural Hazards and Earth System Science,Copernicus GmbH,16849981 +Natural Hazards and Earth System Sciences Discussions,Copernicus GmbH,21959269 +Natural Hazards and Earth System Sciences Discussions,Copernicus GmbH,21959269 +Natural Hazards Review,American Society of Civil Engineers,15276988|15276996 +Natural History Sciences,PAGEPress Publications,23850442|23850922 +Natural Immunity,S. Karger AG,10188916| +Natural Language & Linguistic Theory,Springer-Verlag,0167806X|15730859 +Natural Language Engineering,Cambridge University Press,13513249|14698110 +Natural Language Semantics,Springer-Verlag,0925854X|1572865X +Natural Product Letters,Informa UK (Taylor & Francis),10575634| +Natural Product Reports,The Royal Society of Chemistry,02650568|14604752 +Natural Product Research,Informa UK (Taylor & Francis),14786419|10292349 +Natural Product Sciences,The Korean Society of Pharmacognosy (KAMJE),12263907|22889027 +Natural Products and Bioprospecting,Springer-Verlag,21922195|21922209 +Natural Products Chemistry & Research,OMICS Publishing Group,23296836|23296836 +Natural Resource Modeling,Wiley Blackwell (Blackwell Publishing),08908575|19397445 +Natural Resources,"""Scientific Research Publishing, Inc.""",2158706X|21587086 +Natural Resources (ISSN 2237-9290),Escola Superior de Sustentabilidade,22379290 +Natural Resources and Conservation,"""Horizon Research Publishing Co., Ltd.""",23316365|23316373 +Natural Resources Forum,Wiley Blackwell (Blackwell Publishing),01650209|14778947 +Natural Resources Forum,Wiley Blackwell (Blackwell Publishing),01650203| +Natural Resources Research,Springer-Verlag,15207439|15738981 +Natural Science,"""Scientific Research Publishing, Inc.""",21504091|21504105 +Natural Science and Discovery,Natural Science and Discovery,21496307 +Natural Sciences Education,American Society of Agronomy,10599053|15391582 +Natural Structural Biology,Nature Publishing Group,10728368| +Natural Toxins,Wiley Blackwell (John Wiley & Sons),10569014|15227189 +Nature,Nature Publishing Group,00280836|14764687 +Nature and Conservation,Escola Superior de Sustentabilidade,23182881 +Nature and Culture,Berghahn Books,15586073|15585468 +Nature and Science of Sleep,Dove Medical Press,11791608 +Nature Biotechnology,Nature Publishing Group,10870156|15461696 +Nature Cell Biology,Nature Publishing Group,14657392|14764679 +Nature Chemical Biology,Nature Publishing Group,15524450|15524469 +Nature Chemistry,Nature Publishing Group,17554330|17554349 +Nature China,Nature Publishing Group,17515793 +Nature Climate Change,Nature Publishing Group,1758678X|17586798 +Nature Clinical Practice Cardiovascular Medicine,Nature Publishing Group,17434297|17434300 +Nature Clinical Practice Endocrinology & Metabolism,Nature Publishing Group,17458366|17458374 +Nature Clinical Practice Gastroenterology & Hepatology,Nature Publishing Group,17434378|17434386 +Nature Clinical Practice Nephrology,Nature Publishing Group,17458331|17458323 +Nature Clinical Practice Neurology,Nature Publishing Group,1745834X|17458358 +Nature Clinical Practice Oncology,Nature Publishing Group,17434254|17434262 +Nature Clinical Practice Rheumatology,Nature Publishing Group,17458382|17458390 +Nature Clinical Practice Urology,Nature Publishing Group,17434270|17434289 +Nature Communications,Nature Publishing Group,20411723 +Nature Conservation,Pensoft Publishers,13146947|13143301 +Nature Digest,Nature Publishing Group,18800556| +Nature Energy,Nature Publishing Group,20587546 +Nature et Ressources,Elsevier ,03042995| +Nature Genetics,Nature Publishing Group,10614036|15461718 +Nature Geoscience,Nature Publishing Group,17520894|17520908 +Nature Immunology,Nature Publishing Group,15292908|15292916 +Nature India,Nature Publishing Group,17553180 +Nature Materials,Nature Publishing Group,14761122|14764660 +Nature Medicine,Nature Publishing Group,10788956|17447933 +Nature Methods,Nature Publishing Group,15487091|15487105 +Nature Microbiology,Nature Publishing Group,20585276 +Nature Middle East,Nature Publishing Group,20426046 +Nature Nanotechnology,Nature Publishing Group,17483387|17483395 +Nature Network Boston,Nature Publishing Group,17447933 +Nature Neuroscience,Nature Publishing Group,10976256|15461726 +Nature New Biology,Nature Publishing Group,00900028| +Nature Photonics,Nature Publishing Group,17494885|17494893 +Nature Physical Science,Nature Publishing Group,03008746| +Nature Physics,Nature Publishing Group,17452473|17452481 +Nature Plants,Nature Publishing Group,2055026X|20550278 +Nature Precedings,Nature Publishing Group,99999999|17560357 +Nature Protocols,Nature Publishing Group,17502799|17542189 +Nature Reports Climate Change,Nature Publishing Group,17539315 +Nature Reports Stem Cells,Nature Publishing Group,17447933 +Nature Reviews Cancer,Nature Publishing Group,14741768|14741768 +Nature Reviews Cardiology,Nature Publishing Group,17595002|17595010 +Nature Reviews Clinical Oncology,Nature Publishing Group,17594774|17594782 +Nature Reviews Disease Primers,Nature Publishing Group,2056676X +Nature Reviews Drug Discovery,Nature Publishing Group,14741776|14741784 +Nature Reviews Endocrinology,Nature Publishing Group,17595029|17595037 +Nature Reviews Gastroenterology & Hepatology,Nature Publishing Group,17595045|17595053 +Nature Reviews Genetics,Nature Publishing Group,14710056|14710064 +Nature Reviews Immunology,Nature Publishing Group,14741741|14741741 +Nature Reviews Materials,Nature Publishing Group,20588437 +Nature Reviews Microbiology,Nature Publishing Group,17401526|17401534 +Nature Reviews Molecular Cell Biology,Nature Publishing Group,14710072|14710080 +Nature Reviews Nephrology,Nature Publishing Group,17595061|1759507X +Nature Reviews Neurology,Nature Publishing Group,17594758|17594766 +Nature Reviews Neuroscience,Nature Publishing Group,14710048|14710048 +Nature Reviews Rheumatology,Nature Publishing Group,17594790|17594804 +Nature Reviews Urology,Nature Publishing Group,17594812|17594820 +Nature Sstructural Biology,Nature Publishing Group,10728368| +Nature Structual Biology,Nature Publishing Group,10728368| +Nature Structural & Molecular Biology,Nature Publishing Group,15459993|15459985 +Nature Structural Biology,Nature Publishing Group,10728368| +Nature Stuctural Biology,Nature Publishing Group,10728368| +NatureJobs,Nature Publishing Group, +Naturen,Scandinavian University Press / Universitetsforlaget AS,00280887|15043118 +Natures Sciences Sociétés,EDP Sciences,12401307|17652979 +Natureza & Conservação,Elsevier ,16790073|16790073 +NAUCHNOE PRIBOROSTROENIE,Institute for Analytical Instrumentation of the Russian Academy of Sciences,08685886|23122951 +Naučnaâ mysl Kavkaza,Southern Federal University,20720181| +Nauka bezbednost policija,Centre for Evaluation in Education and Science,03548872| +Nauka I studia,"""Science and Education, Ltd.""",15616894| +Nauka i Szkolnictwo Wyższe,Adam Mickiewicz University Poznan,12310298| +Nauka Przyroda Technologie,Uniwersytet Przyrodniczy w Poznaniu (Poznan University of Life Sciences),18977820 +Nauka ta innovacii,Co. Ltd. Ukrinformnauka,18152066|18152066 +Nauki o Zarządzaniu,Wroclaw University of Economics,20806000|20806000 +Naunyn-Schmiedeberg s Archives of Pharmacology,Springer-Verlag,00281298|14321912 +Nauplius,SciELO,01046497|23582936 +Nautre Structural Biology,Nature Publishing Group,10728368| +Naval Engineers Journal,Wiley Blackwell (Blackwell Publishing),00281425|15593584 +Naval Research Logistics (NRL),Wiley Blackwell (John Wiley & Sons),0894069X|15206750 +Naval Research Logistics Quarterly,Wiley Blackwell (John Wiley & Sons),00281441|19319193 +Navegações,EDIPUCRS,19828527|19834276 +Navigation,Wiley Blackwell (John Wiley & Sons),00281522|21614296 +Ñawpa Pacha,Informa UK (Taylor & Francis),00776297|20516207 +Nazariyat İslam Felsefe ve Bilim Tarihi Araştırmaları Dergisi (Journal for the History of Islamic Philosophy and Sciences),"""Libronet Bilgi Hizmetleri ve Yazilim San. Tic. Ltd., Sti.""",21488088| +NB Административное право и практика администрирования,"""NB-Media, Ltd.""",23069945 +NB Вопросы права и политики,"""NB-Media, Ltd.""",23059699 +NB Исторические исследования,"""NB-Media, Ltd.""",2306420X +NB Кибернетика и программирование,"""NB-Media, Ltd.""",23064196 +NB Культуры и искусства,"""NB-Media, Ltd.""",23061618 +NB Международное право,"""NB-Media, Ltd.""",23069899 +NB Международные отношения,"""NB-Media, Ltd.""",23064226 +NB Национальная безопасность,"""NB-Media, Ltd.""",23060417 +NB Педагогика и просвещение,"""NB-Media, Ltd.""",23064188 +NB Проблемы общества и политики,"""NB-Media, Ltd.""",23060158|23060158 +NB Психология и психотехника,"""NB-Media, Ltd.""",23060425|23060425 +NB Российское полицейское право,"""NB-Media, Ltd.""",23064218 +NB Филологические исследования,"""NB-Media, Ltd.""",23061596|23061596 +NB Философские исследования,"""NB-Media, Ltd.""",23060174 +NB Финансовое право и управление,"""NB-Media, Ltd.""",23064234 +NB Экономика тренды и управление,"""NB-Media, Ltd.""",23064595 +NBER International Seminar on Macroeconomics,The University of Chicago Press,19328796|21508372 +NBER Macroeconomics Annual,The University of Chicago Press,08893365|15372642 +NBER/Frontiers in Health Policy Research,MIT Press,1096231X|00000000 +NCI Nature Pathway Interaction Database,Nature Publishing Group,17525519 +NDT & E International,Elsevier ,09638695| +NDT International,Elsevier ,03089126| +NDT Plus,Oxford University Press,17530784|17530792 +NDT World,Infra-M Academic Publishing House,16093178| +Near and Middle Eastern Journal of Research in Education,Hamad bin Khalifa University Press (HBKU Press),17031958| +Near Eastern Archaeology,The American Schools of Oriental Research,10942076|15575594 +Near Surface Geophysics,EAGE Publications,18730604 +Necatibey Eğitim Fakültesi Elektronik Fen ve Matematik Eğitimi Dergisi,Necatibey Faculty of Education Electronics Journal of Science and Mathematics Education,13076086|13076086 +NECSUS European Journal of Media Studies,Amsterdam University Press,22151222| +Nederduitse Gereformeerde Teologiese Tydskrif,Stellenbosch University - Nederduitse Gereformeerde Teologiese Tydskrif,00282006|22262385 +Nederlands Archief voor Kerkgeschiedenis,Brill Academic Publishers,00282030| +Nederlands Tijdschrift voor Diabetologie,Springer-Verlag,15672743|18766242 +Nederlands tijdschrift voor Europees recht,Boom Uitgevers Den Haag,13824120| +Nederlands Tijdschrift voor Evidence Based Practice,Springer-Verlag,15722082|18768806 +Nederlands Tijdschrift voor Fiscaal Recht,CrossRef test user,13896423| +Nederlands Tijdschrift voor Tandheelkunde,Netherlands Tijschrift voor Tandheelkunde,00282200| +Nederlands Tijdschrift voor Traumachirurgie,Springer-Verlag,22148736|22148744 +Nederlands Tijdschrift voor Traumatologie,Springer-Verlag,09298622|18765505 +Nederlandse letterkunde,Amsterdam University Press,13845829| +Nederlandse taalkunde,Amsterdam University Press,13845845| +Nefrología,Elsevier ,02116995| +Nefrología (English Edition),Elsevier ,20132514| +Neftegazovaya Geologiya Teoriya I Praktika,All-Russia Petroleum Research Exploration Institute (VNIGRI),20705379 +Negative Pressure Wound Therapy Journal,FRACO Publishing,23920297 +Négociations,CAIRN,17809231|17821452 +Negotiation and Conflict Management Research,Wiley Blackwell (Blackwell Publishing),17504708|17504716 +Negotiation Journal,Wiley Blackwell (Blackwell Publishing),07484526|15719979 +Negro American Literature Forum,JSTOR,00282480| +Nelineinaya Dinamika,Izhevsk Institute of Computer Scienceq,1816448X|18175155 +Nelumbo,Botanical Survey of India,09765069| +Nematoda,Editora Cubo Multimidia,2358436X +Nematologica,Brill Academic Publishers,00282596|18752926 +Nematological Research (Japanese Journal of Nematology),The Japanese Nematological Society,09196765|18823408 +Nematology,Brill Academic Publishers,13885545|15685411 +NeoBiota,Pensoft Publishers,16190033|13142488 +Neodidagmata,Adam Mickiewicz University Poznan,0077653X| +Neodiversity,Universidade Estadual de Feira de Santana,18095348|23582847 +Neohelicon,Springer-Verlag,03244652|15882810 +Neonatal Medicine,The Korean Society of Neonatology (KAMJE),22879412|22879803 +Neonatal Network The Journal of Neonatal Nursing,Springer Publishing Company,07300832|15392880 +Neonatologie Scan,Thieme Publishing Group,21945462|21945470 +Neonatology,S. Karger AG,16617800|16617819 +Neophilologus,Springer-Verlag,00282677|15728668 +Neoplasia,Elsevier ,14765586| +Neoplasma,"""AEPress, s.r.o.""",00282685|13384317 +NeoReviews,American Academy of Pediatrics,15269906|15269906 +Neotropical Biodiversity,Informa UK (Taylor & Francis),23766808 +Neotropical Biology and Conservation,Universidade do Vale do Rio Dos Sinos - UNISINOS,18099939|18099939 +Neotropical Entomology,Springer-Verlag,1519566X|16788052 +Neotropical Ichthyology,SciELO,16796225|16796225 +Neotropical Primates,BioOne (Conservation International),14134705|14134705 +Nepal Agriculture Research Journal,Nepal Journals Online,1029533X| +Nepal Journal of Biotechnology,Nepal Journals Online,20911130|24679313 +Nepal Journal of Dermatology Venereology & Leprology,Nepal Journals Online,20910231|2091167X +Nepal Journal of Epidemiology,Nepal Journals Online,20910800 +Nepal Journal of Medical Sciences,Nepal Journals Online,20911424|20911459 +Nepal Journal of Obstetrics and Gynaecology,Nepal Journals Online,19999623|19998546 +Nepal Journal of Science and Technology,Nepal Journals Online,19941412| +Nepal Orthopaedic Association Journal,Nepal Journals Online,20910177| +Nepal Tourism and Development Review,Nepal Journals Online,20912234| +Nepalese Heart Journal,Nepal Journals Online,20912978|23825464 +Nepalese Journal of Biosciences,Nepal Journals Online,20911343| +Nepalese Journal of Engineering,Nepal Journals Online,1812870X| +Nepalese Journal of ENT Head and Neck Surgery,Nepal Journals Online,20910835|20910843 +Nepalese Journal of Ophthalmology,Nepal Journals Online,20726805|20910320 +Nepalese Journal of Qualitative Research Methods,Nepal Journals Online,20713258| +Nepalese Journal of Radiology,Nepal Journals Online,2091136X|20911378 +Nephro-Urology Monthly,Kowsar Medical Institute,22517006|22517014 +Néphrologie & Thérapeutique,Elsevier ,17697255| +Nephrology,Wiley Blackwell (Blackwell Publishing),13205358|14401797 +Nephrology - Open Journal,Openventio Publishers,23800445 +Nephrology Dialysis Transplantation,Oxford University Press,09310509|14602385 +Nephrology Reviews,"""Wichtig Publishing, SRL""",20358261|2035813X +Nephrology Times,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,19405960| +Nephrology Times,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,19405960| +Nephron,S. Karger AG,00282766|14230186 +Nephron Clinical Practice,S. Karger AG,16602110|16602110 +Nephron Experimental Nephrology,S. Karger AG,16602129|16602129 +Nephron Extra,S. Karger AG,16645529 +Nephron Physiology,S. Karger AG,16602137|16602137 +Nesne Psikoloji Dergisi,Sada Institute,21476489 +Netcom,OpenEdition,09876014|2431210X +Netherlands Heart Journal,Springer-Verlag,15685888|18766250 +Netherlands International Law Review,Springer-Verlag,0165070X|17416191 +Netherlands Journal of Aquatic Ecology,Springer-Verlag,13808427| +Netherlands Journal of Geosciences – Geologie en Mijnbouw,Cambridge University Press,00167746|15739708 +Netherlands Journal of Housing and the Built Environment,Springer-Verlag,13832336| +Netherlands Journal of Legal Philosophy,Boom Uitgevers Den Haag,22130713| +Netherlands Journal of Plant Pathology,Springer-Verlag,00282944| +Netherlands journal of psychology,Springer-Verlag,1872552X|18768768 +Netherlands Journal of Sea Research,Elsevier ,00777579| +Netherlands Journal of Zoology,Brill Academic Publishers,00282960|1568542X +Netherlands Quarterly of Human Rights,Springer (Kluwer Academic Publishers),01693441| +Netherlands Yearbook for History of Art / Nederlands Kunsthistorisch Jaarboek,Brill Academic Publishers,01696726|22145966 +Netherlands Yearbook of International Law,Cambridge University Press,01676768|15740951 +NETNOMICS Economic Research and Electronic Networking,Springer (Kluwer Academic Publishers),13859587|15737071 +Netsu Bussei,Japan Society of Thermophysical Properties,0913946X|1881414X +Network and Communication Technologies,Canadian Center of Science and Education,1927064X|19270658 +Network Computation in Neural Systems,IOP Publishing,0954898X|13616536 +Network Modeling Analysis in Health Informatics and Bioinformatics,Springer-Verlag,21926662|21926670 +Network Protocols and Algorithms,"""Macrothink Institute, Inc.""",19433581 +Network Science,Cambridge University Press,20501242|20501250 +Network Security,Elsevier ,13534858| +netWorker,Association for Computing Machinery,10913556| +Networking Science,Springer-Verlag,20760310|20760329 +Networks,Wiley Blackwell (John Wiley & Sons),00283045|10970037 +Networks and Heterogeneous Media,American Institute of Mathematical Sciences,15561801| +Networks and Spatial Economics,Springer-Verlag,1566113X|15729427 +Neue Kriminalpolitik,Nomos Verlag,09349200| +Neue Politische Literatur,"""Peter Lang, International Academic Publishers""",00283320| +Neue Zeitschrift für Systematische Theologie und Religionsphilosophie,Walter de Gruyter GmbH,00283517|16129520 +Neues Jahrbuch für Geologie und Paläontologie - Abhandlungen,Schweizerbart,00777749|00000000 +Neues Jahrbuch für Mineralogie - Abhandlungen Journal of Mineralogy and Geochemistry,Schweizerbart,00777757| +Neues Jahrbuch für Mineralogie - Monatshefte,Schweizerbart,00283649|00000000 +Neural Computation,MIT Press,08997667|1530888X +Neural Computing and Applications,Springer-Verlag,09410643|14333058 +Neural Development,Springer (Biomed Central Ltd.),17498104|17498104 +Neural Network World,Czech Technical University in Prague - Central Library,12100552|23364335 +Neural Networks,Elsevier ,08936080| +Neural Plasticity,Hindawi Publishing Corporation,20905904|16875443 +Neural Processing Letters,Springer-Verlag,13704621|1573773X +Neural Regeneration Research,Medknow Publications,16735374| +Neural Systems & Circuits,Springer (Biomed Central Ltd.),20421001| +Neuro - Open Journal,Openventio Publishers,23771607 +Neuro-Oncology,Oxford University Press,15228517|15235866 +Neuro-Oncology Practice,Oxford University Press,20542577|20542585 +Neuro-Ophthalmology,Informa UK (Taylor & Francis),01658107|1744506X +Neurobehavioral HIV Medicine,Dove Medical Press,11791497 +Neurobiology,Akademiai Kiado Zrt.,12168068| +Neurobiology of Aging,Elsevier ,01974580| +Neurobiology of Disease,Elsevier ,09699961|1095953X +Neurobiology of Learning and Memory,Elsevier ,10747427|10959564 +Neurobiology of Stress,Elsevier ,23522895| +Neurocase,Informa UK (Taylor & Francis),13554794|14653656 +Neurochemical Journal,Pleiades Publishing,18197124|18197132 +Neurochemical Pathology,Springer-Verlag,0734600X| +Neurochemical Research,Springer-Verlag,03643190|15736903 +Neurochemistry & Neuropharmacology,OMICS Publishing Group,24699780 +Neurochemistry International,Elsevier ,01970186|01970186 +Neurochirurgie,Elsevier ,00283770| +Neurochirurgie Scan,Thieme Publishing Group,21959919|21959927 +Neurocirugía,Elsevier ,11301473|11301473 +Neurocomputing,Elsevier ,09252312| +Neurocritical Care,Springer-Verlag,15416933|15560961 +Neurodegeneration,Elsevier - Academic Press,10558330|15229661 +Neurodegenerative Disease Management,Future Medicine,17582024|17582032 +Neurodegenerative Diseases,S. Karger AG,16602854|16602862 +Neuroembryology,S. Karger AG,14248522|14248530 +Neuroembryology and Aging,S. Karger AG,16613406|16613414 +Neuroendocrinology,S. Karger AG,00283835|14230194 +Neuroenterology,Ashdin Publishing,20907931|2090794X +Neuroepidemiology,S. Karger AG,02515350|14230208 +Neuroepigenetics,Elsevier ,22147845| +Neuroethics,Springer-Verlag,18745490|18745504 +Neuroforum,Springer-Verlag,09470875|23637013 +Neurogastroenterology & Motility,Wiley Blackwell (Blackwell Publishing),13501925|13652982 +Neurogenesis,Landes Bioscience,23262125|23262133 +Neurogenetics,Springer-Verlag,13646745|13646753 +Neurographics,American Society of Neuroradiology,15416593| +NeuroImage,Elsevier ,10538119|10959572 +NeuroImage Clinical,Elsevier ,22131582| +Neuroimaging Clinics of North America,Elsevier ,10525149| +Neuroimmunology and Neuroinflammation,OAE Publishing,23478659|23496142 +NeuroImmunoModulation,S. Karger AG,10217401|14230216 +Neuroinformatics,Springer-Verlag,15392791|15392791 +Neurointervention,Korean Society of Interventional Neuroradiology (KAMJE),19755643|22336273 +Neurología,Elsevier ,02134853| +Neurología (English Edition),Elsevier ,21735808| +Neurología Argentina,Elsevier ,18530028| +Neurología Argentina,Elsevier ,03250938| +Neurologia i Neurochirurgia Polska,Elsevier ,00283843| +Neurologia medico-chirurgica,Japan Neurosurgical Society,04708105|13498029 +Neurologic Clinics,Elsevier ,07338619| +Neurological Bulletin,University of Massachusetts Medical School,19424043 +Neurological Research,Maney Publishing,01616412|17431328 +Neurological Sciences,Springer-Verlag,15901874|15903478 +Neurology,Ovid Technologies (Wolters Kluwer) - American Academy of Neurology,00283878|1526632X +Neurology & Clinical Neurophysiology,MIT Press,15268748|00000000 +Neurology and Clinical Neuroscience,Wiley Blackwell (John Wiley & Sons),20494173| +Neurology and Neuroscience,Internet Medical Publishing,2386687X +Neurology and Therapy,Springer-Verlag,21938253|21936536 +Neurology Clinical Practice,Ovid Technologies (Wolters Kluwer) - American Academy of Neurology,21630402|21630933 +Neurology Genetics,Ovid Technologies (Wolters Kluwer) - American Academy of Neurology,23767839 +Neurology India,Medknow Publications,00283886| +Neurology International,PAGEPress Publications,20358385|20358377 +Neurology Neuroimmunology & Neuroinflammation,Ovid Technologies (Wolters Kluwer) - American Academy of Neurology,23327812 +Neurology neuropsychiatry Psychosomatics,"""IMA Press, LLC""",20742711|23101342 +Neurology Now,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15533271| +Neurology Psychiatry and Brain Research,Elsevier ,09419500| +Neurology Report,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,1085049X| +Neurology Research International,Hindawi Publishing Corporation,20901852|20901860 +Neurology Today,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15337006| +Neuromodulation Technology at the Neural Interface,Wiley Blackwell (Blackwell Publishing),10947159|15251403 +NeuroMolecular Medicine,Springer-Verlag,15351084|15351084 +Neuromuscular Diseases,Publishing House ABV Press,22228721|24130443 +Neuromuscular Disorders,Elsevier ,09608966| +Neuron,Elsevier ,08966273| +Neuron Glia Biology,Cambridge University Press,1740925X|17410533 +Neuropathological Diseases,Begell House Inc.,21602468| +Neuropathology,Wiley Blackwell (Blackwell Publishing),09196544|14401789 +Neuropathology and Applied Neurobiology,Wiley Blackwell (Blackwell Publishing),03051846|13652990 +Neuropediatrics,Thieme Publishing Group,0174304X|14391899 +Neuropeptides,Elsevier ,01434179| +Neuropharmacology,Elsevier ,00283908| +Neurophotonics,SPIE - International Society for Optical Engineering,2329423X| +Neurophysiologie Clinique/Clinical Neurophysiology,Elsevier ,09877053| +Neurophysiology,Springer-Verlag,00902977|15739007 +Neuropraxis,Springer-Verlag,13875817|18765785 +Neuroprotocols,Elsevier ,10586741| +Neuropsychiatric Disease and Treatment,Dove Medical Press,11766328|11766328 +Neuropsychiatric Electrophysiology,Springer (Biomed Central Ltd.),20554788|20554788 +Neuropsychiatrie,Springer-Verlag,09486259|21941327 +Neuropsychiatrie de l Enfance et de l Adolescence,Elsevier ,02229617| +Neuropsychiatry,Future Medicine,17582008| +Neuropsychoanalysis,Informa UK (Taylor & Francis),15294145|20443978 +Neuropsychobiology,S. Karger AG,0302282X|14230224 +Neuropsychologia,Elsevier ,00283932| +Neuropsychological Rehabilitation,Informa UK (Taylor & Francis),09602011|14640694 +Neuropsychological Trends,Led Edizioni Universitarie,1970321X|19703201 +Neuropsychology,American Psychological Association,08944105|19311559 +Neuropsychology Review,Springer-Verlag,10407308|15736660 +Neuropsychopharmacologia Hungarica,Hungarian Association of Psychopharmacologists,14198711| +Neuropsychopharmacology,Nature Publishing Group,0893133X|1740634X +NeuroQuantology,NeuroQuantology Journal,13035150 +Neuroradiologie Scan,Thieme Publishing Group,16169697|16169700 +Neuroradiology,Springer-Verlag,00283940|14321920 +NeuroRegulation,International Society for Neuralfeeback and Research (ISNR),23730587 +neuroreha,Thieme Publishing Group,16116496|16117654 +Neurorehabilitation,IOS Press,10538135|18786448 +Neurorehabilitation and Neural Repair,SAGE Publications,08884390|15526844 +Neuroreport,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,09594965| +NeuroRx,Springer-Verlag,15455343|15455351 +Neuroscience,Elsevier ,03064522| +Neuroscience & Biobehavioral Reviews,Elsevier ,01497634| +Neuroscience & Medicine,"""Scientific Research Publishing, Inc.""",21582912|21582947 +Neuroscience and Behavioral Physiology,Springer-Verlag,00970549|1573899X +Neuroscience and Biomedical Engineering,Bentham Science,22133852| +Neuroscience and Neuroeconomics,Dove Medical Press,22303561 +Neuroscience Bulletin,Springer-Verlag,16737067|19958218 +Neuroscience Discovery,Herbert Publications,20526946 +Neuroscience Gateway,Nature Publishing Group,17509475| +Neuroscience Journal,Hindawi Publishing Corporation,23144262|23144270 +Neuroscience Letters,Elsevier ,03043940| +Neuroscience of Consciousness,Oxford University Press,20572107 +Neuroscience of Decision Making,De Gruyter Open Sp. z o.o. ,22991174 +Neuroscience Research,Elsevier ,01680102| +Neuroscience Research Communications,Wiley Blackwell (John Wiley & Sons),08936609|15206769 +Neuroscience Research Letters,Bioinfo Publications,09768866|09768874 +Neuroscience Research Supplements,Elsevier ,09218696| +Neuroscience Translations,Springer-Verlag,00283959| +Neurosciences,Neurosciences,13196138|16583183 +Neuroscience Communications,"""Smart Science and Technology, LLC""",24704008 +Neurosignals,S. Karger AG,1424862X|14248638 +Neurosonology,The Japan Academy of Neurosonology,0917074X|18843336 +Neurosurgery,Ovid Technologies (Wolters Kluwer) - Neurosurgery,0148396X| +Neurosurgery Clinics of North America,Elsevier ,10423680| +Neurosurgery Quarterly,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10506438| +Neurosurgical FOCUS,Journal of Neurosurgery Publishing Group,10920684|10920684 +Neurosurgical Review,Springer-Verlag,03445607|14372320 +Neurotherapeutics,Springer-Verlag,19337213|18787479 +Neurotoxicity Research,Springer-Verlag,10298428|14763524 +NeuroToxicology,Elsevier ,0161813X| +Neurotoxicology and Teratology,Elsevier ,08920362| +NeuroTransmitter,Springer-Verlag,1436123X|21966397 +Neurotransmitter,"""Smart Science and Technology, LLC""",23752440 +Neurourology and Urodynamics,Wiley Blackwell (John Wiley & Sons),07332467|15206777 +Neurovascular Imaging,Springer (Biomed Central Ltd.),20555792 +Neutron News,Informa UK (Taylor & Francis),10448632|19317352 +Nev,Ankara University,13056697 +Nevada State Undergraduate Research Journal,Associated Students of the University of Nevada's Nevada State Undergraduate Research Journal,23754826 +Nevşehir Bilim ve Teknoloji Dergisi,Nevsehir Bilim ve Teknoloji Dergisi,2148466X|21484651 +New & Renewable Energy,The Korean Society for New and Renewable Energy,17383935| +New Astronomy,Elsevier ,13841076| +New Astronomy Reviews,Elsevier ,13876473| +New Biotechnology,Elsevier ,18716784| +New Blackfriars,Wiley Blackwell (Blackwell Publishing),00284289|17412005 +New Carbon Materials,Elsevier ,18725805| +New Cinemas Journal of Contemporary Film,Intellect,14742756|20400578 +New Comprehensive Biochemistry,Elsevier , +New Criminal Law Review An International and Interdisciplinary Journal,University of California Press,19334192|19334206 +New Directions,The Higher Education Academy,17409888|20513615 +New Directions for Adult and Continuing Education,Wiley Blackwell (John Wiley & Sons),10522891|15360717 +New Directions for Child and Adolescent Development,Wiley Blackwell (John Wiley & Sons),15203247|15348687 +New Directions for Community Colleges,Wiley Blackwell (John Wiley & Sons),01943081|15360733 +New Directions for Evaluation,Wiley Blackwell (John Wiley & Sons),10976736|1534875X +New Directions for Higher Education,Wiley Blackwell (John Wiley & Sons),02710560|15360741 +New Directions for Institutional Research,Wiley Blackwell (John Wiley & Sons),02710579|1536075X +New Directions for Mental Health Services,Wiley Blackwell (John Wiley & Sons),01939416|15584453 +New Directions for Philanthropic Fundraising,Wiley Blackwell (John Wiley & Sons),1072172X|15427846 +New Directions for Program Evaluation,Wiley Blackwell (John Wiley & Sons),01647989|15512371 +New Directions for Student Leadership,Wiley Blackwell (John Wiley & Sons),23733349| +New Directions for Student Services,Wiley Blackwell (John Wiley & Sons),01647970|15360695 +New Directions for Teaching and Learning,Wiley Blackwell (John Wiley & Sons),02710633|15360768 +New Directions for Youth Development,Wiley Blackwell (John Wiley & Sons),15338916|15375781 +New Disease Reports,British Society for Plant Pathology,20440588 +New Economy,Wiley Blackwell (Blackwell Publishing),10703535|14680041 +New Egyptian Journal of Microbiology,African Journals Online ,16871219 +New England Journal of Medicine,New England Journal of Medicine,00284793|15334406 +New England Review,Muse - Johns Hopkins University Press,21619131 +New Forests,Springer-Verlag,01694286|15735095 +New Formations,Lawrence and Wishart,09502378|17410789 +New Generation Computing,Springer-Verlag,02883635|18827055 +New Genetics and Society,Informa UK (Taylor & Francis),14636778|14699915 +New German Critique,Duke University Press,0094033X|15581462 +New Global Development,Informa UK (Taylor & Francis),10809716| +New Global Studies,Walter de Gruyter GmbH,21946566|19400004 +New Hibernia Review,Muse - Johns Hopkins University Press,15345815 +New Horizons in Adult Education and Human Resource Development,Wiley Blackwell (John Wiley & Sons),19394225| +New Horizons in Translational Medicine,Elsevier ,23075023| +New Ideas in Psychology,Elsevier ,0732118X| +New Jersey History,Rutgers University Libraries,21513619 +New Jersey Journal of Communication,Informa UK (Taylor & Francis),10679154| +New Jersey Studies An Interdisciplinary Journal,Rutgers University Libraries,23740647 +New Journal of Botany,Maney Publishing,20423489|20423497 +New Journal of Chemistry,The Royal Society of Chemistry,11440546|13699261 +New Journal of Glass and Ceramics,"""Scientific Research Publishing, Inc.""",21617554|21617562 +New Journal of Physics,IOP Publishing,13672630 +New Journal of Science,Hindawi Publishing Corporation,23567740|20908520 +New Labor Forum,SAGE Publications,10957960|15572978 +New Library World,Emerald (MCB UP ),03074803|00000000 +New Literary History,Muse - Johns Hopkins University Press,00286087|1080661X +New Mathematics and Natural Computation,World Scientific ,17930057|17937027 +New Media & Society,SAGE Publications,14614448|00000000 +New Medicine,Index Copernicus International,14270994|17312507 +New Medieval Literatures,"""Brepols Publishers, NV""",14653737| +New Mexico Anthropologist,The University of Chicago Press,07347030| +New Microbes and New Infections,Elsevier ,20522975| +New Negatives in Plant Science,Elsevier ,23520264| +New Negatives in Plant Science,Elsevier ,23520264| +New Nietzsche Studies,Philosophy Documentation Center,10910239| +New of Science and Education,"""Science and Education, Ltd.""",23122773| +New Perspectives on Turkey,Cambridge University Press,08966346|13053299 +New Perspectives Quarterly,Wiley Blackwell (Blackwell Publishing),08937850|15405842 +New Physics Sae Mulli,Korean Physical Society,03744914|22890041 +New Phytologist,Wiley Blackwell (Blackwell Publishing),0028646X|14698137 +New Political Economy,Informa UK (Taylor & Francis),13563467|14699923 +New Political Science,Informa UK (Taylor & Francis),07393148|14699931 +New Review of Academic Librarianship,Informa UK (Taylor & Francis),13614533|17407834 +New Review of Bioethics,Informa UK (Taylor & Francis),17400287|17407915 +New Review of Children s Literature and Librarianship,Informa UK (Taylor & Francis),13614541|17407885 +New Review of Film and Television Studies,Informa UK (Taylor & Francis),17400309|17407923 +New Review of Hypermedia and Multimedia,Informa UK (Taylor & Francis),13614568|17407842 +New Review of Information and Library Research,Informa UK (Taylor & Francis),1361455X|17407850 +New Review of Information Behaviour Research,Informa UK (Taylor & Francis),14716313|17407877 +New Review of Information Networking,Informa UK (Taylor & Francis),13614576|17407869 +New Review of Libraries and Lifelong Learning,Informa UK (Taylor & Francis),14689944|17407893 +New Scholasticism,Philosophy Documentation Center,00286621| +NEW SOLUTIONS A Journal of Environmental and Occupational Health Policy,SAGE Publications,10482911|15413772 +New Sound,Centre for Evaluation in Education and Science,0354818X| +New South Wales Public Health Bulletin,CSIRO Publishing,10347674| +New Space,Mary Ann Liebert,21680256|21680264 +New Surveys in the Classics,Cambridge University Press,05332451|20528531 +New Technology Work and Employment,Wiley Blackwell (Blackwell Publishing),02681072|1468005X +New Testament Studies,Cambridge University Press,00286885|14698145 +New Theatre Quarterly,Cambridge University Press,0266464X|14740613 +New Trends in Mathematical Science,New Trends in Mathematical Science,21475520| +NEW UNIVERSITY ECONOMICS & LAW,Colloquim,22217347| +NEW UNIVERSITY TECHNICAL SCIENCES,Colloquim,22219552| +NEW UNIVERSITY TOPICAL ISSUES OF HUMANITIES AND SOCIAL SCIENCES,Colloquim,22221484| +New Vico Studies,Philosophy Documentation Center,07339542| +New Voices,"""The Japan Foundation, Sydney""",18335233|2204194X +New Voices,Dartmouth College Library Press,15433323 +New Voices in Japanese Studies,"""The Japan Foundation, Sydney""",22053166 +New Water Policy and Practice,Policy Studies Organization,23806540 +New West Indian Guide / Nieuwe West-Indische Gids,Brill Academic Publishers,13822373|22134360 +New Writing,Informa UK (Taylor & Francis),14790726|19433107 +New York History,JSTOR,0146437X +New Zealand College of Midwives,New Zealand College of Midwives,01147870| +New Zealand Economic Papers,Informa UK (Taylor & Francis),00779954|19434863 +New Zealand Entomologist,Informa UK (Taylor & Francis),00779962|11793430 +New Zealand Geographer,Wiley Blackwell (Blackwell Publishing),00288144|17457939 +New Zealand Journal of Agricultural Research,Informa UK (Taylor & Francis),00288233|11758775 +New Zealand Journal of Botany,Informa UK (Taylor & Francis),0028825X|11758643 +New Zealand Journal of Crop and Horticultural Science,Informa UK (Taylor & Francis),01140671|11758783 +New Zealand Journal of Educational Studies,Springer-Verlag,00288276|21994714 +New Zealand Journal of Experimental Agriculture,Informa UK (Taylor & Francis),03015521| +New Zealand Journal of Forestry Science,Springer (Biomed Central Ltd.),11795395|11795395 +New Zealand Journal of Geography,Wiley Blackwell (Blackwell Publishing),00288292| +New Zealand Journal of Geology and Geophysics,Informa UK (Taylor & Francis),00288306|11758791 +New Zealand Journal of Marine and Freshwater Research,Informa UK (Taylor & Francis),00288330|11758805 +New Zealand Journal of Physiotherapy,Physiotherapy New Zealand,03037193|22304886 +New Zealand Journal of Zoology,Informa UK (Taylor & Francis),03014223|11758821 +New Zealand Veterinary Journal,Informa UK (Taylor & Francis),00480169|11760710 +Newborn and Infant Nursing Reviews,Elsevier ,15273369| +Newman Studies Journal,Philosophy Documentation Center,15479080| +News Bulletin (Institute of Pacific Relations),JSTOR,15302199| +news nature,Nature Publishing Group,17447933 +news nature com,Nature Publishing Group,17447933 +News-Bulletin of Southern Federal University Pedagogical Sciences,Southern Federal University,19951140| +Newsletter (College Art Association of America Visual Resources Committee),The University of Chicago Press,21637695| +Newsletter - an occasional publication of the Institute of public finance,Institute of Public Finance,13334417 +Newsletter an occasional publication of the Institute of public finance,Institute of Public Finance,18484662 +Newsletter European Labor and Working Class History,Cambridge University Press,00978523| +Newsletter of Japan Society for Comparative Endocrinology,Japan Society for Comparative Endocrinology,09139044|13475045 +Newsletter of the Association for Preservation Technology,JSTOR,03800598| +Newsletter of the IRE Professional Group on Audio,Institute of Electrical and Electronics Engineers,21683026|21683018 +Newsletter of the Society for the Advancement of American Philosophy,Philosophy Documentation Center,21552789| +Newsletter on Intellectual Freedom,American Library Association,19454546|19454546 +Newsletter povremeno glasilo Instituta za javne financije,Institute of Public Finance,13334263|13339303 +Newsletters on Stratigraphy,Schweizerbart,00780421|00000000 +Newspaper Research Journal,SAGE Publications,07395329|23764791 +Nexo Revista Científica,Latin America Journals Online,18186742|19959516 +Next Generation Building,Baltzer Science Publishers,22134425|22134433 +Nexus Network Journal,Springer-Verlag,15905896|15224600 +NFS Journal,Elsevier ,23523646| +Nghiên cứu Tôn Giáo,Vietnam Journals Online,18590403| +NHSA Dialog,Informa UK (Taylor & Francis),15240754|19309325 +Niche Journal,AVES Publishing Co.,21467609|21472556 +Nickel-Catalyzed Organozinc-Mediated Alkylative Cyclization,Thieme Publishing Group,20100272 +Nicotine & Tobacco Research,Oxford University Press,14622203|1469994X +Nida Notes,NIDA/RTI International,15357325| +Nieren- und Hochdruckkrankheiten,Dustri-Verlag Dr. Karl Feistle,03005224| +Nierówności społeczne a wzrost gospodarczy,University of Rzeszow,18985084| +Nietzsche Studien,Walter de Gruyter GmbH,03421422|16130790 +Nietzscheforschung,Walter de Gruyter GmbH,21919259|18695604 +Nigeria Agricultural Journal,African Journals Online ,0300368X +Nigeria Journal of Business Administration,African Journals Online ,0794067X +Nigeria Journal of Pure and Applied Physics,African Journals Online ,15960862 +Nigerian Chapter of Arabian Journal of Business and Management Review,"""Al Manhal FZ, LLC""",23158638| +Nigerian Dental Journal,African Journals Online ,1891006 +Nigerian Food Journal,Elsevier ,01897241|01897241 +Nigerian Hospital Practice,African Journals Online ,15977889 +Nigerian Journal of Animal Production,African Journals Online ,3312062 +Nigerian Journal of Basic and Applied Sciences,African Journals Online ,07945698|07945698 +Nigerian Journal of Basic and Clinical Sciences,Medknow Publications,03318540| +Nigerian Journal of Cardiology,Medknow Publications,01897969| +Nigerian Journal of Chemical Research,African Journals Online ,11190221 +Nigerian Journal of Clinical and Counselling Psychology,African Journals Online ,11184035 +Nigerian Journal of Clinical Medicine,African Journals Online ,21411123|21411123 +Nigerian Journal of Clinical Practice,Medknow Publications,11193077| +Nigerian Journal of Experimental and Clinical Biosciences,Medknow Publications,23480149| +Nigerian Journal of Fisheries,African Journals Online ,1597443X +Nigerian Journal of General Practice,Medknow Publications,11184647|11184647 +Nigerian Journal of Genetics,Elsevier ,01899686|01899686 +Nigerian Journal of Guidance and Counselling,African Journals Online ,7940831 +Nigerian Journal of Health and Biomedical Sciences,African Journals Online ,15958272 +Nigerian Journal of Health Sciences,Medknow Publications,15964078| +Nigerian Journal of Horticultural Science,African Journals Online ,11182733 +Nigerian Journal of Medicine,African Journals Online ,11152613 +Nigerian Journal of Natural Products and Medicine,African Journals Online ,11186267 +Nigerian Journal of Nutritional Sciences,African Journals Online ,01890913|01890913 +Nigerian Journal of Ophthalmology,Medknow Publications,01899171|01899171 +Nigerian Journal of Orthopaedics and Trauma,African Journals Online ,15964582 +Nigerian Journal of Paediatrics,African Journals Online ,3024660 +Nigerian Journal of Parasitology,African Journals Online ,11174145 +Nigerian Journal of Pharmaceutical Research,African Journals Online ,1898434 +Nigerian Journal of Physics,African Journals Online ,15950611 +Nigerian Journal of Physiological Sciences,African Journals Online ,0794859X +Nigerian Journal of Plastic Surgery,Medknow Publications,07949316|07949316 +Nigerian Journal of Postgraduate Medicine,African Journals Online ,20068530 +Nigerian Journal of Psychiatry,African Journals Online ,1891774 +Nigerian Journal of Soil and Environmental Research,African Journals Online ,15956121 +Nigerian Journal of Surgery,Medknow Publications,11176806|11176806 +Nigerian Journal of Surgical Research,Medknow Publications,15951103 +Nigerian Journal of Surgical Sciences,Medknow Publications,11165898|11165898 +Nigerian Journal of Technological Development,African Journals Online ,01899546|24372110 +Nigerian Journal of Technological Research,African Journals Online ,07955111| +Nigerian Journal of Technology,African Journals Online ,03318443|24678821 +Nigerian Libraries,African Journals Online ,290122 +Nigerian Medical Journal,Medknow Publications,03001652| +Nigerian Medical Practitioner,African Journals Online ,1890964 +Nigerian Music Review,African Journals Online ,1116428X +Nigerian Postgraduate Medical Journal,Medknow Publications,11171936| +Nigerian Quarterly Journal of Hospital Medicine,African Journals Online ,1892657 +Nigerian Veterinary Journal,African Journals Online ,3313026 +Nihon Bika Gakkai Kaishi (Japanese Journal of Rhinology),Japan Rhinologic Society,09109153|18837077 +Nihon Chikusan Gakkaiho,Japanese Society of Animal Science,1346907X|18808255 +Nihon Gekakei Rengo Gakkaishi (Journal of Japanese College of Surgeons),Japanese College of Surgeons,03857883|18829112 +NIHON HEIKATSUKINGAKKAIZASSI,Japan Society of Smooth Muscle Research,1884507X|18848761 +Nihon Hotetsu Shika Gakkai Zasshi,Japan Prosthodontic Society,03895386|1883177X +Nihon Ika Daigaku Igakkai Zasshi,The Medical Association of Nippon Medical School,13498975|18802877 +Nihon Kessho Gakkaishi,The Crystallographic Society of Japan,03694585|18845576 +Nihon Kikan Shokudoka Gakkai Kaiho,Japan Broncho-esophagological Society,00290645|18806848 +Nihon Kyukyu Igakukai Zasshi,Japanese Association for Acute Medicine,0915924X|18833772 +Nihon Naika Gakkai Zasshi,Japanese Society of Internal Medicine,00215384|18832083 +Nihon Nyugan Kenshin Gakkaishi (Journal of Japan Association of Breast Cancer Screening),Japan Association of Breast Cancer Screening ,09180729|18826873 +Nihon Reoroji Gakkaishi,Society of Rheology Japan,03871533|21864586 +Nihon Rinsho Geka Gakkai Zasshi (Journal of Japan Surgical Association),Japan Surgical Association,13452843|18825133 +Nihon Shishubyo Gakkai Kaishi (Journal of the Japanese Society of Periodontology),The Japanese Society of Periodontology,03850110|1880408X +Nihon Shoni Arerugi Gakkaishi The Japanese Journal of Pediatric Allergy and Clinical Immunology,Japanese Society of Pediatric Allergy and Clinical Immunology,09142649|18822738 +Nihon Shoni Jinzobyo Gakkai Zasshi,The Japanese Society for Pediatric Nephrology,09152245|18813933 +Nihon Toseki Igakkai Zasshi,Japanese Society for Dialysis Therapy,13403451|1883082X +Nihon Yoton Gakkaishi,The Japanese Society of Swine Science,0913882X|1881655X +Nile Journal of Business and Economics,Nigerian Turkish Nile University,24889571 +Nile Journal of English Studies,Nigerian Turkish Nile University,24889539 +Nile Journal of Medical Sciences,Nigerian Turkish Nile University,24889563 +Nin,Brill Academic Publishers,15678474|15707768 +NINE A Journal of Baseball History and Culture,Muse - Johns Hopkins University Press,15341844 +Nineteenth Century Contexts,Informa UK (Taylor & Francis),08905495|14772663 +Nineteenth Century French Studies,Muse - Johns Hopkins University Press,15360172 +Nineteenth Century Theatre and Film,SAGE Publications,17483727|20482906 +Nineteenth-Century Fiction,University of California Press,19491986| +Nineteenth-Century Literature,University of California Press,08919356|10678352 +Nineteenth-Century Music Review,Cambridge University Press,14794098|20448414 +Ningen to kankyo,Japan Association on the Environmental Studies,0286438X|21862540 +Nippon Daicho Komonbyo Gakkai Zasshi,The Japan Society of Coloproctology,00471801|18829619 +Nippon Eiseigaku Zasshi (Japanese Journal of Hygiene),Japanese Society for Hygiene,00215082|18826482 +Nippon Eiyo Shokuryo Gakkaishi,Japanese Society of Nutrition and Food Science,02873516|18832849 +Nippon Gakushiin kiyo,The Japan Academy,03880036| +NIPPON GOMU KYOKAISHI,The Society of Rubber Industry,0029022X|18840442 +Nippon Hojyoken Kagaku Kenkyu,Japanese Society of Service Dog Research,18818978|18823084 +Nippon Ishinkin Gakkai Zasshi,The Japanese Society for Medical Mycology,09164804|18820476 +Nippon Jibiinkoka Gakkai Kaiho,"""Oto-Rhino-Laryngological Society of Japan, Inc.""",00306622|18830854 +NIPPON KAGAKU KAISHI,The Chemical Society of Japan,03694577|21850909 +Nippon kagaku zassi,The Chemical Society of Japan,03695387|21850917 +Nippon Laser Igakkaishi,Japan Society for Laser Surgery and Medicine,02886200|18811639 +Nippon Ronen Igakkai Zasshi Japanese Journal of Geriatrics,The Japan Geriatrics Society,03009173| +Nippon Saikingaku Zasshi,Japanese Society for Bacteriology,00214930|18824110 +Nippon Shokuhin Kagaku Kogaku Kaishi,Japanese Society for Food Science and Technology,1341027X|18816681 +NIPPON SHOKUHIN KOGYO GAKKAISHI,Japanese Society for Food Science and Technology,00290394| +Nippon Sugaku-Buturigakkwaishi,Mathematical Society of Japan,21852715 +NIPPON SUISAN GAKKAISHI,The Japanese Society of Fisheries Science,00215392|1349998X +Nippon Teien Gakkaishi,The Academic Society of Japanese Garden,09194592|21860025 +Nippon Yakubutsugaku Zasshi (Folia Pharmacologica Japonica),The Japanese Pharmacological Society,03694461|2185307X +NIR news,IM Publications,09603360| +Nirmana,Petra Christian University,02150905|02150905 +Nishi Nihon Hifuka,Western Japan Division of JDA,03869784|18804047 +NISO Newsline,National Information Standards Organization,15592774 +NISPAcee Journal of Public Administration and Policy,De Gruyter Open Sp. z o.o. ,13379038|13379038 +Nitric Oxide,Elsevier ,10898603|10898611 +Nitro-Mannich Reaction/Aza-Henry Reaction,Thieme Publishing Group,20500238 +Nitroaldol Reactions,Thieme Publishing Group,20200358 +Niva Povolzhya,Central Collector of Libraries BIBCOM,19986092| +NJ,Informa UK (Taylor & Francis),14452294|2200775X +NJAS - Wageningen Journal of Life Sciences,Elsevier ,15735214| +Nka Journal of Contemporary African Art,Duke University Press,10757163| +NMC Case Report Journal,Japan Neurosurgical Society,21884226 +NMR in Biomedicine,Wiley Blackwell (John Wiley & Sons),09523480|10991492 +NOAA technical report NMFS SSRF,Smithsonian Institution Biodiversity Heritage Library,00944580| +Nóesis Revista de Ciencias Sociales y Humanidades,Noesis - Revista de Ciencias Sociales y Humanidades,01889834|23958669 +Noise & Vibration Worldwide,SAGE Publications,09574565|09574565 +Noise and Health,Medknow Publications,14631741| +Noise Control,Acoustical Society of America ,05495865| +Noise Control Engineering,Institute of Noise Control Engineering,00939978| +Noise Control Engineering Journal,Institute of Noise Control Engineering,07362501| +Noise Mapping,De Gruyter Open Sp. z o.o. ,2084879X +Noise Notes,Multiscience,14754738|00000000 +Nómadas Revista Crítica de Ciencias Sociales y Jurídicas,Universidad Complutense de Madrid,15786730 +Nomadías,Universidad de Chile,07172761|07190905 +Nomadic Peoples,White Horse Press ,08227942|17522366 +Non Plus,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,23163976 +Non-Coding RNA,MDPI AG,2311553X +Non-coding RNAs in Endocrinology,De Gruyter Open Sp. z o.o. ,23004258 +Non-Destructive Testing,Elsevier ,00291021| +Non-ferrous Metals,Ore and Metals Publishing House,20720807| +Non-Genetic Inheritance,De Gruyter Open Sp. z o.o. ,20848846 +Non-State Actors and International Law,Brill Academic Publishers,15677125|15718077 +Nonautonomous and Stochastic Dynamical Systems,De Gruyter Open Sp. z o.o. ,22993258 +Nonautonomous Dynamical Systems,De Gruyter Open Sp. z o.o. ,23530626 +Nondestructive Testing And Evaluation,Informa UK (Taylor & Francis),10589759|14772671 +Nondestructive Testing Communications,Informa UK (Taylor & Francis),02780895| +Nonlinear Analysis and Differential Equations,"""Hikari, Ltd.""",13147587 +Nonlinear Analysis Hybrid Systems,Elsevier ,1751570X| +Nonlinear Analysis Modelling and Control,Vilnius University,13925113| +Nonlinear Analysis Real World Applications,Elsevier ,14681218| +Nonlinear Analysis Theory Methods & Applications,Elsevier ,0362546X| +Nonlinear Biomedical Physics,Springer (Biomed Central Ltd.),17534631| +Nonlinear Differential Equations and Applications NoDEA,Springer-Verlag,10219722|14209004 +Nonlinear Dynamics,Springer-Verlag,0924090X|1573269X +Nonlinear Dynamics Psychology and Life Sciences,Springer (Kluwer Academic Publishers),10900578| +Nonlinear Engineering,Walter de Gruyter GmbH,21928010|21928029 +Nonlinear Optics,Informa UK (Taylor & Francis),10587268| +Nonlinear Oscillations,Springer-Verlag,15360059|15360059 +Nonlinear Processes in Geophysics,Copernicus GmbH,16077946 +Nonlinear Processes in Geophysics Discussions,Copernicus GmbH,21985634 +Nonlinear Theory and Its Applications IEICE,"""Institute of Electronics, Information and Communications Engineers""",21854106 +Nonlinearity,IOP Publishing,09517715|13616544 +Nonlinearity in Biology Toxicology and Medicine,SAGE Publications,15401421|1540143X +Nonprofit and Voluntary Sector Quarterly,SAGE Publications,08997640|15527395 +Nonprofit Business Advisor,Wiley Blackwell (John Wiley & Sons),15315428|19493193 +Nonprofit Communications Report,Wiley Blackwell (John Wiley & Sons),1549778X| +Nonprofit Management and Leadership,Wiley Blackwell (John Wiley & Sons),10486682|15427854 +Nonprofit Policy Forum,Walter de Gruyter GmbH,21946035|21543348 +Nonrenewable Resources,Springer-Verlag,09611444| +Nontraditional Students Report,Wiley Blackwell (John Wiley & Sons),15235416|19437501 +NORA - Nordic Journal of Feminist and Gender Research,Informa UK (Taylor & Francis),08038740|08038740 +Nordic and Baltic Journal of Information and Communications Technologies,River Publishers,1902097X| +Nordic Journal of Botany,Wiley Blackwell (Blackwell Publishing),0107055X|17561051 +Nordic Journal of Digital Literacy,Scandinavian University Press / Universitetsforlaget AS,08096724|1891943X +Nordic Journal of Health Economics,University of Oslo Library,18929729|18929710 +Nordic Journal of Human Rights,Informa UK (Taylor & Francis),18918131|1891814X +Nordic Journal of Information Literacy in Higher Education,University of Bergen Library,18905900 +Nordic Journal of International Law,Brill Academic Publishers,09027351|15718107 +Nordic Journal of Linguistics,Cambridge University Press,03325865|15024717 +Nordic Journal of Literacy Research,Co-Action Publishing Cappelen Damms,24641596| +Nordic Journal of Migration Research,De Gruyter Open Sp. z o.o. ,1799649X|1799649X +Nordic Journal of Music Therapy,Informa UK (Taylor & Francis),08098131|19448260 +Nordic Journal of Nursing Research,SAGE Publications,01074083|20571593 +Nordic Journal of Philosophical Logic,Informa UK (Taylor & Francis),08066205|08066213 +Nordic Journal of Psychiatry,Informa UK (Taylor & Francis),08039488|15024725 +Nordic Journal of Social Research,University of Bergen Library,18922783 +Nordic Journal of Studies in Educational Policy,Co-Action Publishing,20020317 +Nordic Journal of Vocational Education and Training,Linkoping University Electronic Press,2242458X +Nordic Journal of Working Life Studies,Roskilde University Library,22450157| +Nordic Nutrition Recommendations 2012,Nordic Council of Ministers, +Nordic Perspectives on Open Science,UiT The Arctic University of Norway,24641839| +Nordic Psychology,Informa UK (Taylor & Francis),19012276|19040016 +Nordic Pulp and Paper Research Journal,AB Svensk Papperstidning,02832631| +Nordic Social Work Research,Informa UK (Taylor & Francis),2156857X|21568588 +Nordic Studies in Education,Scandinavian University Press / Universitetsforlaget AS,18915914|18915949 +Nordic Studies on Alcohol and Drugs,De Gruyter Open Sp. z o.o. ,14550725|14586126 +Nordic Tax Journal,Walter de Gruyter GmbH,22461809 +Nordic Wittgenstein Review,Walter de Gruyter GmbH,2242248X +Nordicom Review,De Gruyter Open Sp. z o.o. ,20015119 +Nordisk Medicinskt Arkiv Avd 2,Wiley Blackwell (Blackwell Publishing),03653250| +Nordisk politiforskning,Scandinavian University Press / Universitetsforlaget AS,18948693 +Nordisk Psykiatrisk Medlemsblad,Informa UK (Taylor & Francis),09097252| +Nordisk Psykiatrisk Tidsskrift,Informa UK (Taylor & Francis),00291455| +Nordisk Psykologi,Informa UK (Taylor & Francis),00291463| +Nordisk Sygeplejeforskning,Scandinavian University Press / Universitetsforlaget AS,18922678|18922686 +Nordisk tidsskrift for helseforskning,UiT The Arctic University of Norway,15043614|18912982 +Nordisk Tidsskrift for International Ret,Brill Academic Publishers,0029151X|18752934 +Nordisk tidsskrift for pedagogikk og kritikk,Co-Action Publishing Cappelen Damms,23875739|23875739 +Nordisk Østforum,Co-Action Publishing Cappelen Damms,18911773 +Nordlit,UiT The Arctic University of Norway,08091668|15032086 +Nordlyd,UiT The Arctic University of Norway,15038599 +NORMA Nordic Journal For Masculinity Studies,Informa UK (Taylor & Francis),18902138|18902146 +Normas,Universitat de Valencia,21747245 +Nöro Psikiyatri Arşivi,AVES Publishing Co.,13000667|13094866 +Norois,PERSEE Program,0029182X|17608546 +Norsk antropologisk tidsskrift,Scandinavian University Press / Universitetsforlaget AS,08027285|15042898 +Norsk filosofisk tidsskrift,Scandinavian University Press / Universitetsforlaget AS,00291943|15042901 +Norsk Geografisk Tidsskrift - Norwegian Journal of Geography,Informa UK (Taylor & Francis),00291951|15025292 +Norsk Geologisk Tidsskrift,Informa UK (Taylor & Francis),0029196X|00000000 +Norsk Litteratur­vitenskapelig Tidsskrift,Scandinavian University Press / Universitetsforlaget AS,08092044|1504288X +Norsk medietidsskrift,Scandinavian University Press / Universitetsforlaget AS,08048452|08059535 +Norsk museumstidsskrift,Scandinavian University Press / Universitetsforlaget AS,24642525 +Norsk pedagogisk tidsskrift,Scandinavian University Press / Universitetsforlaget AS,00292052|15042987 +Norsk statsvitenskapelig tidsskrift,Scandinavian University Press / Universitetsforlaget AS,08011745|15042936 +Norsk Tidsskrift for Musikkterapi,Informa UK (Taylor & Francis),08039828| +Norteamérica,Elsevier ,18703550| +North American Actuarial Journal,Informa UK (Taylor & Francis),10920277|23250453 +North American Archaeologist,SAGE Publications,01976931|15413543 +North American Dialogue,Wiley Blackwell (Blackwell Publishing),15392546|15564819 +North American Fauna,U.S. Fish and Wildlife Service,00781304|19444575 +North American Fungi,Pacific Northwest Fungi Project,1937786X +North American Journal of Aquaculture,American Fisheries Society,15222055|15488454 +North American Journal of Fisheries Management,American Fisheries Society,02755947|15488675 +North American Journal of Medical Sciences,Medknow Publications,19472714|19472714 +North American Journal of Medicine and Science,American Chinese Medical Exchange Society,21562342| +North American Journal of Sciences,ScopeMed International Medical Journal Managment and Indexing System,21694613 +North American Review of Economics and Finance,Elsevier ,1042752X| +North Carolina Medical Journal,North Carolina Institute of Medicine,00292559|00292559 +North Central Journal of Agricultural Economics,JSTOR,01919016| +North East Third Sector Research Group Annual Digest,Northumbria University Library,20597940 +North Korean Review,"""McFarland & Company, Inc. """,15512789| +North-Holland Mathematical Library,Elsevier , +North-Holland Mathematics Studies,Elsevier , +North-Holland Series in Applied Mathematics and Mechanics,Elsevier , +North-South Canadian Journal of Latin American Studies,Informa UK (Taylor & Francis),03841367| +Northeast African Studies,Michigan State University Press,07409133|15356574 +Northeast Asian Law Journal,The Institute for Northeast Asian Law Chonbuk National University,19765037| +Northeast Brazilian Health Journal (Revista Piauiense de Saúde),Northeast Brazilian Health Journal,22384839 +Northeastern Naturalist,BioOne (Humboldt Field Research Institute),10926194|19385307 +Northern Clinics of Istanbul,Kare Publishing,21484902| +Northern European Journal of Language Technology,Linkoping University Electronic Press,20001533 +Northern History,Maney Publishing,0078172X|17458706 +Northern International Medical College Journal,Bangladesh Journals Online,22210377|24088730 +Northern Journal of Applied Forestry,Society of American Foresters,07426348| +Northern Lights Film and Media Studies Yearbook,Intellect,1601829X|20400586 +Northern Scotland,Edinburgh University Press,03065278|20422717 +Northern University Journal of Law,Bangladesh Journals Online,22182578|24088749 +Northwest Science,BioOne (Northwest Scientific Association),0029344X|0029344X +Northwestern Naturalist,BioOne (Northwestern Naturalist),10511733|19385315 +Norwegian Archaeological Review,Informa UK (Taylor & Francis),00293652|00000000 +Norwegian Journal of Geology,Geological Society of Norway,23875844|23875852 +Norwegian Petroleum Society Special Publications,Elsevier , +Nosotchu,Japan Stroke Society,09120726|18831923 +Nota Lepidopterologica,Pensoft Publishers,03427536|23675365 +Notable Acquisitions (Metropolitan Museum of Art),JSTOR,01926950| +Notandum,Universidade Estadual de Maringa,15165477 +Notarius International,Springer (Kluwer Academic Publishers),13851209| +Notas de física,Brazilian Center for Physican Research,23184957 +Notas de Población,United Nations Publications,16810333 +Notas Económicas,Coimbra University Press,08724733|2183203X +Notas técnicas,Brazilian Center for Physican Research,22367640 +Notes,Muse - Johns Hopkins University Press,00274380|1534150X +Notes and Queries,Oxford University Press,00293970|14716941 +Notes and Records the Royal Society journal of the history of science,The Royal Society,00359149|17430178 +Notes du conseil d’analyse économique,CAIRN,22738525|22702385 +Notfall & Hausarztmedizin (Notfallmedizin),Thieme Publishing Group,16128583|16128605 +Notfall & Hausarztmedizin,Thieme Publishing Group,18650791|18650805 +Notfall + Rettungsmedizin,Springer-Verlag,14346222|14360578 +Notfall Medizin,Thieme Publishing Group,16170482|1439250X +Notfallmedizin up2date,Thieme Publishing Group,16116550|18626955 +Notices of the American Mathematical Society,American Mathematical Society,00029920|10889477 +Notices of the International Congress of Chinese Mathematicians,"""International Press of Boston, Inc.""",23264810|23264845 +Notizblatt des Königl botanischen Gartens und Museums zu Berlin,JSTOR,02581485| +Noto-are,Journal of Pattern Recognition Research,19412681 +Notre Dame Journal of Formal Logic,Duke University Press,00294527| +Nottingham French Studies,Edinburgh University Press,00294586|20477236 +Nottingham Medieval Studies,"""Brepols Publishers, NV""",00782122| +Notulae Botanicae Horti Agrobotanici Cluj-Napoca,AcademicPres (EAP) Publishing House,0255965X|18424309 +Notulae Scientia Biologicae,AcademicPres (EAP) Publishing House,20673205|20673264 +Noûs,Wiley Blackwell (Blackwell Publishing),00294624|14680068 +Nouveaux c hiers de la recherche en éducation,Consortium Erudit,11955732 +Nouvelle Revue d Optique,IOP Publishing,03357368| +Nouvelle Revue d Optique Appliquée,IOP Publishing,00294780| +Nouvelle revue de psychosociologie,CAIRN,19519532|19618697 +Nouvelle revue d’esthétique,CAIRN,19692269|22642595 +Nouvelle revue théologique,CAIRN,00294845|24064726 +Nouvelles archives du Muséum d histoire naturelle,Smithsonian Institution Biodiversity Heritage Library,07667248| +Nouvelles Études Francophones,Muse - Johns Hopkins University Press,21569428 +Nouvelles FondationS,CAIRN,19519745|21010242 +Nouvelles perspectives en sciences sociales,Consortium Erudit,17128307|19187475 +Nouvelles pratiques sociales,Consortium Erudit,08434468|17039312 +Nouvelles Questions Féministes,CAIRN,02484951|22973850 +Nova Biotechnologica et Chimica,De Gruyter Open Sp. z o.o. ,13386905|13386905 +Nova Economia,SciELO,01036351|01036351 +Nova et vetera,Muse - Johns Hopkins University Press,24705861 +Nova Hedwigia,Schweizerbart,00295035|00000000 +Nova Journal of Medical and Biological Sciences,Nova Explore Publications Inc.,2292793X|2292793X +Nova Religio The Journal of Alternative and Emergent Religions,University of California Press,10926690|15418480 +Nova skola,Teachers' Training Faculty,18400922| +NOVAcura,Hogrefe Publishing Group,16629027|22354271 +Novecento org,BraDypUS,22836837 +NOVEL A Forum on Fiction,Duke University Press,00295132|19458509 +Novel Superconducting Materials,De Gruyter Open Sp. z o.o. ,22993193 +Növénytermelés,University of Debrecen/ Debreceni Egyetem - Novenytermeles,05468191|20608543 +Novitates Paleoentomologicae,The University of Kansas,23295880 +Novitates Zoologicae,Smithsonian Institution Biodiversity Heritage Library,09507655| +Novon A Journal for Botanical Nomenclature,BioOne (Missouri Botanical Garden Press),10553177|19456174 +Novos Cadernos NAEA,Nucleo de Altos Estudos Amazonicos,15166481|21797536 +Novos Estudos - CEBRAP,SciELO,01013300|01013300 +Novos Estudos Jurí­dicos,Editora UNIVALI,14132117|21750491 +Novos Olhares,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,15165981|22387714 +Novosibirsk State Pedagogical University Bulletin,Novosibirsk State Pedagogical University,22263365 +Novosti Khirurgii,Vitebsk State Medical University,23050047|23050047 +Novum Testamentum,Brill Academic Publishers,00481009|15685365 +Nowa Medycyna,Index Copernicus International,12335991|17312485 +Nowa Stomatologia,Index Copernicus International,14266911|17312450 +Nowe Media,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,20824351| +NOWELE North-Western European Language Evolution,John Benjamins Publishing Company,01088416|22129715 +Nowoczesne Systemy Zarządzania,Index Copernicus International,18969380| +Nowotwory Journal of Oncology,VM Media Sp zo.o. - VMGroup SK,0029540X|23002115 +NPAKADEMI,ScopeMed International Medical Journal Managment and Indexing System,21475709| +NPG Asia Materials,Nature Publishing Group,18844049|18844049 +NPG Asia Materials,Nature Publishing Group,18844057 +NPG Neurologie - Psychiatrie - Gériatrie,Elsevier ,16274830| +npj Aging and Mechanisms of Disease,Nature Publishing Group,20563973 +npj Biofilms and Microbiomes,Nature Publishing Group,20555008 +npj Breast Cancer,Nature Publishing Group,23744677 +npj Computational Materials,Nature Publishing Group,20573960 +npj Genomic Medicine,Nature Publishing Group,20567944 +npj Microgravity,Nature Publishing Group,23738065 +npj Parkinson s Disease,Nature Publishing Group,23738057 +npj Primary Care Respiratory Medicine,Nature Publishing Group,20551010 +npj Quantum Information,Nature Publishing Group,20566387 +npj Schizophrenia,Nature Publishing Group,2334265X +npj Systems Biology and Applications,Nature Publishing Group,20567189 +NRIAG Journal of Astronomy and Geophysics,Elsevier ,20909977| +NSPI Journal,Wiley Blackwell (John Wiley & Sons),00277002|19320132 +NSPI Newsletter,Wiley Blackwell (John Wiley & Sons),00908118| +NTM Zeitschrift für Geschichte der Wissenschaften Technik und Medizin,Springer-Verlag,00366978|14209144 +NTU Philosophical Review,Philosophy Documentation Center,10158995| +Nuances estudos sobre Educação,Departamento de Educacao FCT/Unesp,14139855|22360441 +Nuclear and Chemical Waste Management,Elsevier ,0191815X| +Nuclear and Particle Physics Proceedings,Elsevier ,24056014| +Nuclear Data Current Sheets Section B,Elsevier ,0090550X| +Nuclear Data Sheets,Elsevier ,00903752|10959904 +Nuclear Data Sheets Section A,Elsevier ,0550306X| +Nuclear Energy and Technology,Elsevier ,24523038| +Nuclear Engineering and Design,Elsevier ,00295493| +Nuclear Engineering and Design Fusion,Elsevier ,0167899X| +Nuclear Engineering and Technology,Elsevier ,17385733|2234358X +Nuclear Fusion,IOP Publishing,00295515|17414326 +Nuclear Future,Thomas Telford Ltd.,01404067| +Nuclear Information,Informa UK (Taylor & Francis),21551359 +Nuclear Instruments,Elsevier ,0369643X| +Nuclear Instruments and Methods,Elsevier ,0029554X| +Nuclear Instruments and Methods in Physics Research,Elsevier ,01675087| +Nuclear Instruments and Methods in Physics Research Section A Accelerators Spectrometers Detectors and Associated Equipment,Elsevier ,01689002| +Nuclear Instruments and Methods in Physics Research Section B Beam Interactions with Materials and Atoms,Elsevier ,0168583X| +Nuclear Law Bulletin,Organisation for Economic Co-Operation and Development ,0304341X|16097378 +Nuclear Materials and Energy,Elsevier ,23521791| +Nuclear Medicine and Biology,Elsevier ,09698051| +Nuclear Medicine and Molecular Imaging,Springer-Verlag,18693474|18693482 +Nuclear Medicine Communications,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,01433636| +Nuclear Medicine Review,VM Media Sp zo.o. - VMGroup SK,15069680|15069680 +Nuclear Physics,Elsevier ,00295582| +Nuclear Physics A,Elsevier ,03759474| +Nuclear Physics B,Elsevier ,05503213|05503213 +Nuclear Physics B - Proceedings Supplements,Elsevier ,09205632|09205632 +Nuclear Physics News,Informa UK (Taylor & Francis),10619127|19317336 +Nuclear Receptor,Springer (Biomed Central Ltd.),14781336| +Nuclear Receptor Research,Agial Publishing House,23145706|23145714 +Nuclear Receptor Signaling,Nuclear Receptor Signaling Atlas,15507629|15507629 +Nuclear Science and Engineering,American Nuclear Society,00295639| +Nuclear Science and Techniques,Elsevier ,10018042| +Nuclear Science and Technology,Hans Publishers,23327111|2332712X +Nuclear Structural Engineering,Elsevier ,03695816| +Nuclear Technology,American Nuclear Society,00295450| +Nuclear Technology and Radiation Protection,National Library of Serbia,14513994|14528185 +Nuclear Track Detection,Elsevier ,0145224X| +Nuclear Tracks,Elsevier ,0191278X| +Nuclear Tracks and Radiation Measurements,Elsevier ,09698078| +Nuclear Tracks and Radiation Measurements (1982),Elsevier ,0735245X| +Nucleic Acid Therapeutics (Formerly Oligonucleotides),Mary Ann Liebert,21593337|21593345 +Nucleic Acids Research,Oxford University Press,03051048|13624962 +Nucleic Acids Symposium Series,Oxford University Press,02613166|17468272 +Nucleophilic Addition to Imines,Thieme Publishing Group,20500130 +Nucleophilic Opening of Three-Membered Rings,Thieme Publishing Group,20600526 +Nucleosides and Nucleotides,Informa UK (Taylor & Francis),07328311| +Nucleosides Nucleotides & Nucleic Acids,Informa UK (Taylor & Francis),15257770|15322335 +Nucleus,Fundacao Educational de Ituverava,16786602|19822278 +Nucleus,Landes Bioscience,19491034|19491042 +Nucleus Animalium,Fundacao Educational de Ituverava,1984879X|21751463 +Nueva Epoca,Universidad Nacional del Litoral,23623306 +Nuevo mundo mundos nuevos,OpenEdition,16260252 +Nuevo mundo mundos nuevos,OpenEdition,16260252 +Nuevo mundo mundos nuevos,OpenEdition,16260252|16260252 +Nuevo Texto Crítico,Muse - Johns Hopkins University Press,19409079 +Nuklearmedizin,Schattauer GmbH (NuklearMedizin/NuclearMedicine),00295566| +Nükleer Tıp Seminerleri,Galenos Yayinevi,21496447| +Nukleonika,De Gruyter Open Sp. z o.o. ,295922 +null,Modern Language Association, +Numen,Brill Academic Publishers,00295973|15685276 +Numeracy,University of South Florida Libraries,19364660 +Numerical Algebra Control and Optimization,American Institute of Mathematical Sciences,21553289| +Numerical Algorithms,Springer-Verlag,10171398|15729265 +Numerical Analysis and Applications,Pleiades Publishing,19954239|19954247 +Numerical Functional Analysis and Optimization,Informa UK (Taylor & Francis),01630563|15322467 +Numerical Heat Transfer,Informa UK (Taylor & Francis),01495720| +Numerical Heat Transfer Part A Applications,Informa UK (Taylor & Francis),10407782|15210634 +Numerical Heat Transfer Part B Fundamentals,Informa UK (Taylor & Francis),10407790|15210626 +Numerical Linear Algebra with Applications,Wiley Blackwell (John Wiley & Sons),10705325|10991506 +Numerical Mathematics Theory Methods and Applications,Global Science Press,10048979|20797338 +Numerical Methods for Partial Differential Equations,Wiley Blackwell (John Wiley & Sons),0749159X|10982426 +Numerische Mathematik,Springer-Verlag,0029599X|09453245 +Nuncius,Brill Academic Publishers,03947394|18253911 +Nuntius Antiquus,Faculdade de Letras da UFMG,21797064|19833636 +Nurse Education in Practice,Elsevier ,14715953| +Nurse Education Today,Elsevier ,02606917| +Nurse Educator,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,03633624| +Nurse Leader,Elsevier ,15414612| +Nurse Prescriber,Cambridge University Press,14671158 +Nurse Prescribing,Mark Allen Group,14799189|20522924 +Nurse Researcher,RCN Publishing,13515578|20478992 +Nurse Researcher,RCN Publishing,13515578|20478992 +Nursery World,Mark Allen Group,00296422| +Nursing,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,03604039| +Nursing (Ed española),Elsevier ,02125382| +Nursing Administration Quarterly,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,03639568| +Nursing and Health,"""Horizon Research Publishing Co., Ltd.""",23322217|23322225 +Nursing and Health Care Perspectives,Allen Press,10942831| +Nursing and Health Sciences,Wiley Blackwell (Blackwell Publishing),14410745|14422018 +Nursing and Midwifery Studies,International Neuroscience Institute,23221488|23221674 +Nursing and Public Health,Wroclaw Medical University,20829876| +Nursing and Residential Care,Mark Allen Group,14659301|20522932 +Nursing Children and Young People,RCN Publishing,20462336|20462344 +Nursing Clinics of North America,Elsevier ,00296465| +Nursing Critical Care,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,1558447X| +Nursing Education Perspectives,National League for Nursing,15365026| +Nursing Ethics,SAGE Publications,09697330|14770989 +Nursing for Women s Health,Elsevier ,17514851|1751486X +Nursing Forum,Wiley Blackwell (Blackwell Publishing),00296473|17446198 +Nursing History Review,Springer Publishing Company,10628061| +Nursing in Critical Care,Wiley Blackwell (Blackwell Publishing),13621017|14785153 +Nursing Inquiry,Wiley Blackwell (Blackwell Publishing),13207881|14401800 +Nursing Leadership,Longwoods Publishing,19296355 +Nursing Made Incredibly Easy!,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15445186| +Nursing Management,RCN Publishing,13545760|20478976 +Nursing Management (Springhouse),Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,07446314| +Nursing Older People,RCN Publishing,14720795|20478941 +Nursing Open,Wiley Blackwell (John Wiley & Sons),20541058| +Nursing Outlook,Elsevier ,00296554| +Nursing Philosophy,Wiley Blackwell (Blackwell Publishing),14667681|1466769X +Nursing Reports,PAGEPress Publications,2039439X|20394403 +Nursing Research,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,00296562| +Nursing Research and Practice,Hindawi Publishing Corporation,20901429|20901437 +Nursing Research and Reviews,Dove Medical Press,2230522X +Nursing Science,Hans Publishers,21685657|21685614 +Nursing Science Quarterly,SAGE Publications,08943184|00000000 +Nursing Standard,RCN Publishing,00296570|20479018 +NursingPlus Open,Elsevier ,23529008| +Nusantara Bioscience,UNS Solo,20873948|20873956 +Nutraceuticals and food,The Korean Society of Food Science and Nutrition,15986195| +Nutrafoods,Springer-Verlag,18278590|22405291 +Nutrient Cycling in Agroecosystems,Springer-Verlag,13851314|15730867 +Nutrients,MDPI AG,20726643 +Nutrire,Springer (Biomed Central Ltd.),15198928|15198928 +Nutrition,Elsevier ,08999007| +Nutrition & Dietetics,Wiley Blackwell (Blackwell Publishing),14466368|17470080 +Nutrition & Food Science,Emerald (MCB UP ),00346659| +Nutrition & Metabolism,Springer (Biomed Central Ltd.),17437075|17437075 +Nutrition and Aging,IOS Press,18797717|18797725 +Nutrition and Cancer,Informa UK (Taylor & Francis),01635581|15327914 +Nutrition and Diabetes,Nature Publishing Group,20444052 +Nutrition and Dietary Supplements,Dove Medical Press,11791489 +Nutrition and Food Technology Open Access ( ISSN 2470-6086 ),"""Sci Forschen, Inc.""",24706086 +Nutrition and Health,SAGE Publications,02601060|2047945X +Nutrition and Metabolic Insights,"""Libertas Academica, Ltd.""",11786388 +Nutrition Bulletin,Wiley Blackwell (Blackwell Publishing),14719827|14673010 +Nutrition Clinique et Métabolisme,Elsevier ,09850562| +Nutrition in Clinical Care,Wiley Blackwell (Blackwell Publishing),10966781|15235408 +Nutrition in Clinical Practice,SAGE Publications,08845336|19412452 +Nutrition Journal,Springer (Biomed Central Ltd.),14752891|14752891 +Nutrition Metabolism and Cardiovascular Diseases,Elsevier ,09394753| +Nutrition Obesity & Metabolic Surgery,Termedia Sp. z.o.o.,23539437| +Nutrition Research,Elsevier ,02715317| +Nutrition Research and Practice,The Korean Nutrition Society and The Korean Society of Community Nutrition (KAMJE),19761457|20056168 +Nutrition Research Reviews,Cambridge University Press,09544224|14752700 +Nutrition Reviews,Oxford University Press,00296643|17534887 +Nutrition Today,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,0029666X| +Nutritional Anthropology,Wiley Blackwell (Blackwell Publishing),15371735|15487172 +Nutritional Neuroscience,Maney Publishing,1028415X|14768305 +Nutritional Science and Food Technology,Herbert Publications,20541848 +Nutritional Therapy & Metabolism,"""Wichtig Publishing, SRL""",18286232| +NWSA Ecolojical Life Sciences,NWSA Academic Journals,13087258 +NWSA Education Sciences,NWSA Academic Journals,13087274 +NWSA Fine Arts,NWSA Academic Journals,13087290 +NWSA Humanities,NWSA Academic Journals,13087320 +NWSA Journal,Indiana University Press,10400656|15271889 +NWSA Medical Sciences,NWSA Academic Journals,13087312 +NWSA Physical Sciences,NWSA Academic Journals,13087304 +NWSA Qualitative Studies,NWSA Academic Journals,1308724X +NWSA Social Sciences,NWSA Academic Journals,13087444 +NWSA Sports Sciences,NWSA Academic Journals,13087266 +NWSA Technological Applied Sciences,NWSA Academic Journals,13087223 +NWSA-Engineering Sciences,NWSA Academic Journals,13087231 +Nytt Norsk Tidsskrift,Scandinavian University Press / Universitetsforlaget AS,0800336X|15043053 +O Eixo e a Roda Revista de Literatura Brasileira,Faculdade de Letras da UFMG,01024809|23589787 +O Mundo da Saúde,Centro Universitario Sao Camilo - Sao Paulo,01047809|19803990 +O Teatro Transcende,Fundacao Universidade Regional de Blumenau,22366644 +OA Alcohol,Open Access Publishing London,20530285 +OA Alternative Medicine,Open Access Publishing London,20527845 +OA Anaesthetics,Open Access Publishing London,20527853 +OA Anatomy,Open Access Publishing London,20527829 +OA Arthritis,Open Access Publishing London,20529554 +OA Autism,Open Access Publishing London,20527810 +OA Biochemistry,Open Access Publishing London,20529651 +OA Bioinformatics,Open Access Publishing London,20541899 +OA Biotechnology,Open Access Publishing London,20520069 +OA Cancer,Open Access Publishing London,20533918 +OA Case Reports,Open Access Publishing London,20520077 +OA Critical Care,Open Access Publishing London,20529309 +OA Dentistry,Open Access Publishing London,20542526 +OA Dermatology,Open Access Publishing London,20545959 +OA Drug Design and Delivery,Open Access Publishing London,20544057 +OA Elderly Medicine,Open Access Publishing London,2054734X +OA Emergency Medicine,Open Access Publishing London,20541902 +OA Epidemiology,Open Access Publishing London,2053079X +OA Evidence-Based Medicine,Open Access Publishing London,20532636 +OA Family Medicine,Open Access Publishing London,20528922 +OA Genetics,Open Access Publishing London,2054197X +OA Immunology,Open Access Publishing London,20529295 +OA Inflammation,Open Access Publishing London,2052787X +OA Medical Hypothesis,Open Access Publishing London,20530781 +OA Minimally Invasive Surgery,Open Access Publishing London,20542666 +OA Molecular and Cell Biology,Open Access Publishing London,20547331 +OA Molecular Oncology,Open Access Publishing London,20529635 +OA Musculoskeletal Medicine,Open Access Publishing London,20529287 +OA Nephrology,Open Access Publishing London,20530293 +OA Neurosciences,Open Access Publishing London,20547358 +OA Orthopaedics,Open Access Publishing London,20529627 +OA Robotic Surgery,Open Access Publishing London,20533225 +OA Sports Medicine,Open Access Publishing London,20532040 +OA Stem Cells,Open Access Publishing London,20547323 +OA Tissue Engineering,Open Access Publishing London,20529643 +OA Women s Health,Open Access Publishing London,20530501 +OAH Magazine of History,Oxford University Press,0882228X| +OALib,"""Scientific Research Publishing, Inc.""",23339705|23339721 +OASIS,Universidad Externado de Colombia,16577558|23462132 +Ob Gyn News,Elsevier ,00297437| +Obere Extremität,Springer-Verlag,18626599|18626602 +Oberwolfach Reports,European Mathematical Society Publishing House,16608933| +Obésité,Springer-Verlag,19515995|19516002 +Obesity,Wiley Blackwell (Blackwell Publishing),19307381|1930739X +Obesity & Control Therapies Open Access,Symbiosis Group,23748354 +Obesity and metabolism,Endocrinology Research Centre,20718713|23065524 +Obesity and Weight Management,Mary Ann Liebert,19486553|19486561 +Obesity Facts,S. Karger AG,16624025|16624033 +Obesity Management,Mary Ann Liebert,15451712|15578569 +Obesity Medicine,Elsevier ,24518476| +Obesity Open Access ( ISSN 2380-5528 ),"""Sci Forschen, Inc.""",23805528 +Obesity Research,Wiley Blackwell (John Wiley & Sons),10717323| +Obesity Research & Clinical Practice,Elsevier ,1871403X| +Obesity Research - Open Journal,Openventio Publishers,23778385 +Obesity Reviews,Wiley Blackwell (Blackwell Publishing),14677881|1467789X +Obesity Science & Practice,Wiley Blackwell (John Wiley & Sons),20552238| +Obesity Surgery,Springer-Verlag,09608923|17080428 +OBETS Revista de Ciencias Sociales,Publicaciones Universidad de Alicante,19891385|19891385 +Obituary Notices of Fellows of the Royal Society,The Royal Society,1479571X| +Object,UCL Press,23969008|23969008 +Obogashchenie Rud,Ore and Metals Publishing House,02023776| +Obrana a strategie (Defence & Strategy),University of Defence,12146463|18027199 +Obras y proyectos,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7182813 +Observatoire de la société britannique,OpenEdition,19573383|17754135 +Observatório - Monografias em Comércio Exterior,"""Instituto Federal de Educacao, Ciencia e Tecnologia do Rio Grande do Norte (IFRN)""",21773939 +Observatório da Jurisdição Constitucional,Instituto Brasiliense de Direito Publico,19824564|19824564 +Observatorio Medioambiental,Universidad Complutense de Madrid,11391987|19883277 +Obstetric Anesthesia Digest,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,0275665X| +Obstetric Medicine The Medicine of Pregnancy,SAGE Publications,1753495X|17534968 +Obstetrical & Gynecological Survey,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,00297828| +Obstetrics & Gynecology An International Journal,IBIMA Publishing,23799447 +Obstetrics & Gynecology International Journal,MedCrave Group,23774304 +Obstetrics & Gynecology Science,Korean Society of Obstetrics and Gynecology (KAMJE),22878572|22878580 +Obstetrics and Gynaecology Forum,African Journals Online ,10279148 +Obstetrics and Gynecology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,00297844| +Obstetrics and Gynecology Clinics of North America,Elsevier ,08898545| +Obstetrics and Gynecology International,Hindawi Publishing Corporation,16879589|16879597 +Obstetrics Gynaecology & Reproductive Medicine,Elsevier ,17517214| +Occasional Paper (Garden History Society),JSTOR,17493390| +Occasional Papers,International Monetary Fund,23043482|23043482 +Occasional Papers,International Monetary Fund,02516365| +Occasional Papers,International Monetary Fund,10201645| +Occasional Papers,International Monetary Fund,10205071| +Occasional papers - San Diego Society of Natural History,Smithsonian Institution Biodiversity Heritage Library,00805939| +Occasional Papers in Sociology and Anthropology,Nepal Journals Online,20910312| +Occasional papers of Bernice P Bishop Museum,Smithsonian Institution Biodiversity Heritage Library,00676160| +Occasional papers of the California Academy of Sciences,Smithsonian Institution Biodiversity Heritage Library,00685461| +Occasional papers of the Museum of Natural History the University of Kansas,Smithsonian Institution Biodiversity Heritage Library,00917958| +Occasional papers of the Museum of Zoology University of Michigan,Smithsonian Institution Biodiversity Heritage Library,00768413| +Occupational and Environmental Medicine,BMJ,13510711|14707926 +Occupational Diseases and Environmental Medicine,"""Scientific Research Publishing, Inc.""",23333561|2333357X +Occupational Ergonomics,IOS Press,13599364|18759092 +Occupational Medicine,Oxford University Press,09627480|14718405 +Occupational Medicine & Health Affairs,OMICS Publishing Group,23296879 +Occupational Therapy In Health Care,Informa UK (Taylor & Francis),07380577|15413098 +Occupational Therapy in Mental Health,Informa UK (Taylor & Francis),0164212X|15413101 +Occupational Therapy International,Wiley Blackwell (John Wiley & Sons),09667903|15570703 +Occupations The Vocational Guidance Journal,Wiley Blackwell (John Wiley & Sons),21645841| +Ocean & Coastal Management,Elsevier ,09645691| +Ocean Acidification,De Gruyter Open Sp. z o.o. ,20847637 +Ocean and Polar Research,Korea Ocean Research and Development Institute,1598141X| +Ocean and Shoreline Management,Elsevier ,09518312| +Ocean Development & International Law,Informa UK (Taylor & Francis),00908320|15210642 +Ocean Dynamics,Springer-Verlag,16167341|16167228 +Ocean Engineering,Elsevier ,00298018| +Ocean Management,Elsevier ,0302184X| +Ocean Modelling,Elsevier ,14635003| +Ocean Science,Copernicus GmbH,18120792 +Ocean Science Discussions,Copernicus GmbH,18120822 +Ocean Science Journal,Springer-Verlag,17385261|20057172 +Ocean Systems Engineering,Techno-Press,20936702| +Ocean Yearbook Online,Brill Academic Publishers,01918575|22116001 +Oceania,Wiley Blackwell (John Wiley & Sons),00298077| +Oceanic Linguistics,Muse - Johns Hopkins University Press,00298115|15279421 +Oceanography,The Oceanography Society,10428275| +Oceanography in Japan,The Oceanographic Society of Japan,09168362|21863105 +Oceanography Open Access,OMICS Publishing Group,23322632|23322632 +Oceanologia,Elsevier ,00783234|23007370 +Oceanologica Acta,Elsevier ,03991784| +Oceanological and Hydrobiological Studies,De Gruyter Open Sp. z o.o. ,1730413X|18973191 +Oceanology,Pleiades Publishing,00014370|15318508 +Oceanus,Smithsonian Institution Biodiversity Heritage Library,15591263| +OCHRONA PRZED KOROZJĄ,"""Wydawnictwo SIGMA-NOT, sp. z.o.o.""",04737733| +Ochrona Srodowiska i Zasobów Naturalnych,De Gruyter Open Sp. z o.o. ,23538589 +Ochrona Srodowiska i Zasobów Naturalnych - Environmental Protection and Natural Resources,De Gruyter Open Sp. z o.o. ,12307831| +OCL,EDP Sciences,22576614|22576614 +OCLC Micro,Emerald (MCB UP ),87565196| +OCLC Systems & Services,Emerald (MCB UP ),1065075X|00000000 +Ocnos Revista de Estudios sobre Lectura,Universidad Castilla la Mancha,1885446X|22549099 +October,MIT Press,01622870|00000000 +Ocular Immunology and Inflammation,Informa UK (Taylor & Francis),09273948|17445078 +Ocular Oncology and Pathology,S. Karger AG,22964681|22964657 +ÖDaF-Mitteilungen,"""Vandenhoeck & Ruprecht GmbH & Co, KG - V&R Unipress""",21969167|21976015 +ODEON,Universidad Externado de Colombia,17941113|23462140 +Odesa National University Herald Biology,Odesa I.I. Mechnikov National University,20771746| +Odesa National University Herald Chemistry,Odesa I.I. Mechnikov National University,23040947| +Odesa National University Herald Sociology and Politics,Odesa I.I. Mechnikov National University,23041439| +Odes’kyi Politechnichnyi Universytet Pratsi,Odessa National Polytechnic University,20762429|22233814 +Odonto,Instituto Metodista de Ensino Superior,21761000 +Odontology,Springer-Verlag,16181247|16181255 +Odovtos - International Journal of Dental Sciences,Universidad de Costa Rica,16591046|22153411 +OECD Economic Studies,Organisation for Economic Co-Operation and Development ,02550822| +OECD Journal Competition Law and Policy,Organisation for Economic Co-Operation and Development ,15607771| +OECD Journal Economic Studies,Organisation for Economic Co-Operation and Development ,19952848|19952856 +OECD Journal Financial Market Trends,Organisation for Economic Co-Operation and Development ,19952864| +OECD Journal General Papers,Organisation for Economic Co-Operation and Development ,19952821| +OECD Journal Journal of Business Cycle Measurement and Analysis,Organisation for Economic Co-Operation and Development ,19952880|19952899 +OECD Journal on Budgeting,Organisation for Economic Co-Operation and Development ,16087143|16812336 +OECD Journal on Development,Organisation for Economic Co-Operation and Development ,18168124| +OECD Observer,Organisation for Economic Co-Operation and Development ,00297054| +OECD Papers,Organisation for Economic Co-Operation and Development ,16091914| +OECD Statistics on International Trade in Services,Organisation for Economic Co-Operation and Development , +Oecologia,Springer-Verlag,00298549|14321939 +Oecologia Australis,Oecologia Australis,21776199 +Oecologia Brasiliensis,Oecologia Australis,19806442|19819366 +OEconomia,OpenEdition,21135207|22698450 +Oeconomia Copernicana,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,20831277| +oemagazine,SPIE - International Society for Optical Engineering,15335496|15335496 +Oesterreichisches Botanisches Wochenblatt,Springer-Verlag,10290729| +Offender Rehabilitation,Informa UK (Taylor & Francis),03643093| +Office Technology and People,Emerald (MCB UP ),01675710| +Official Bulletin of the National Dental Association,American Dental Association,23756446| +Oficina do Historiador,EDIPUCRS,21783748 +OGIRISI a New Journal of African Studies,African Journals Online ,1597474X +Ohio History,Muse - Johns Hopkins University Press,19346042 +Ohm Obradoiro de Historia Moderna,University of Santiago de Compostela,11330481|23400013 +Oikos,Wiley Blackwell (Blackwell Publishing),00301299|16000706 +Oil & Energy Trends Annual Statistical Review,Wiley Blackwell (Blackwell Publishing),09531033| +Oil & Fat Industries,Springer-Verlag,00959502| +Oil & Gas Science and Technology – Revue d’IFP Energies nouvelles,EDP Sciences,12944475|19538189 +Oil & Soap,Springer-Verlag,00959510| +Oil and Chemical Pollution,Elsevier ,02698579| +Oil and Energy Trends,Wiley Blackwell (Blackwell Publishing),09501045|17447992 +Oil and Gas Business,Ufa State Petroleum Technological University,1813503X +Oil and Gas Facilities,Society of Petroleum Engineers,22244514| +Oil and Gaz Business,Ufa State Petroleum Technological University,20730128| +Oil and Petrochemical Pollution,Elsevier ,01437127| +Oil Gas Coal and Electricity,Organisation for Economic Co-Operation and Development ,10259988|1609753X +Oil Shale,Estonian Academy Publishers,0208189X| +OJS på dansk,Aarhus University Library,1904335X +Okajimas Folia Anatomica Japonica,Department of Anatomy Keio University School of Medicine,0030154X|18811736 +Okayama Igakkai Zasshi (Journal of Okayama Medical Association),Okayama Medical Association,00301558|18824528 +Ökologisches Wirtschaften - Fachzeitschrift,Oekom Publishers,14308800| +OLA Quarterly,Pacific University Library,10937374 +OLBI Working Papers,University of Ottawa Library,19232489|19232489 +Old and New Concepts of Physics,De Gruyter Open Sp. z o.o. ,17338026| +Old Testament Essays,Academy of Science of South Africa,10109919|23123621 +Oléagineux Corps gras Lipides,EDP Sciences,12588210|1950697X +Oleoscience,Japan Oil Chemists' Society,13458949|21873461 +Olhar de Professor,Universidade Estadual de Ponta Grossa,15185648|19840187 +Oligonucleotides,Mary Ann Liebert,15454576|00000000 +Olsztyn Economic Journal,De Gruyter Open Sp. z o.o. ,18972721| +OLYMPIADS IN INFORMATICS,Vilnius University,18227732|23358955 +Oman Chapter of Arabian Journal of Business and Management Review,"""Al Manhal FZ, LLC""",22235833| +Oman Journal of Ophthalmology,Medknow Publications,0974620X| +Oman Medical Journal,Oman Medical Journal,1999768X|20705204 +OME Information,Shanghai Institute of Optics and Fine Mechanics,10071180| +Omega,Elsevier ,03050483| +OMEGA--Journal of Death and Dying,SAGE Publications,00302228|15413764 +Omics A Journal of Integrative Biology,Mary Ann Liebert,15362310|15578100 +OMICS Journal of Radiology,OMICS Publishing Group,21677964|21677964 +OMNES,Sookmyung Institute of Multiculturalism Studies,20935498| +On the Horizon,Emerald (MCB UP ),10748121| +"""On-line Journal """"Naukovedenie""""""",Publishing Centre Naukovedenie,22235167 +Onco Reviews,VRI Press,23309113 +Onco Zine - The International Oncology Network,"""InPress Media Group, LLC""",21685339 +Oncobiology and Targets,Medknow Publications,23954469| +Oncocytology journal,"""EDORIUM Journals, Pvt., Ltd.""",23194251| +Oncogene,Nature Publishing Group,09509232|09509232 +Oncogenesis,Nature Publishing Group,21579024 +Oncohematology,Publishing House ABV Press,18188346|24134023 +OncoImmunology,Landes Bioscience,21624011|2162402X +Oncología (Barcelona),Instituto de Salud Carlos III/BNCS/SciELO Espana,3784835 +Oncological Coloproctology,Publishing House ABV Press,22203478|24130583 +ONCOLOGIE,Springer-Verlag,12923818|17652839 +Oncology,S. Karger AG,00302414|14230232 +Oncology & Hematology Review (US),Touch Digital Media LTD.,20523815| +Oncology and Therapy,Springer-Verlag,23661070|23661089 +Oncology Discovery,Herbert Publications,20526199 +Oncology Gastroenterology and Hepatology Reports,Medknow Publications,23483113|22788921 +Oncology Letters,Spandidos Publications,17921074|17921082 +Oncology Nursing Forum,Oncology Nursing Society,15380688|15380688 +Oncology Reports,Spandidos Publications,1021335X|17912431 +Oncology Research and Treatment,S. Karger AG,22965270|22965262 +Oncology Research Featuring Preclinical and Clinical Cancer Therapeutics,Cognizant Communication Corp,09650407|15553906 +Oncology Reviews,PAGEPress Publications,19705557|19705565 +Oncology Times,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,02762234| +Oncology Times UK,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,17428009| +Oncolytic Virotherapy,Dove Medical Press,22531572 +Oncomagazine,Springer-Verlag,19502184|1954345X +OncomiRs,De Gruyter Open Sp. z o.o. ,2084882X +OncoReview,Index Copernicus International,20828691| +Oncoscience,"""Impact Journals, LLC """,23314737 +Oncotarget,"""Impact Journals, LLC """,19492553 +OncoTargets and Therapy,Dove Medical Press,11786930 +Onderneming en Financiering,Boom Uitgevers Den Haag,15701247| +Onderstepoort Journal of Veterinary Research,AOSIS,00302465|22190635 +Onderwijs en gezondheidszorg,Springer-Verlag,09208100|18765793 +Ondokuz Mayis Univ Egitim Fakultesi,Ondokuz Mayis Universitesi Egitim Fakultesi,1300302X| +Ondokuz Mayıs Üniversitesi İlahiyat Fakültesi Dergisi,Ondokuz Mayis University Review of the Faculty of Divinity,13003003|13003003 +One Health,Elsevier ,23527714| +Öneri Dergisi,Sosyal Bilimler Ensititusu Hakemli Dergisi Oneri,13000845|21475377 +Onkologie,S. Karger AG,0378584X|14230240 +Onkopipeline,Springer-Verlag,18665861|1866587X +Online and CD-Rom Review,Emerald (MCB UP ),13532642| +Online Brazilian Journal of Nursing,EScola de Enfermagem Aurora de Afono Costa - UFF,16764285|16764285 +Online Information Review,Emerald (MCB UP ),14684527|00000000 +Online Journal of Analytic Combinatorics,Online Journal of Analytic Combinatorics,19313365|19313365 +OnLine Journal of Biological Sciences,Science Publications,16084217|16084217 +Online Journal of Cultural Competence in Nursing and Healthcare,Department of Nursing University of Michigan-Flint,21602824 +Online Journal of Earth Sciences,Science Alert,19917708| +Online Journal of Health Ethics,Univeristy of Southern Mississippi,15514218 +Online Journal of Otolaryngology,ScopeMed International Medical Journal Managment and Indexing System,22500359| +Online Journal of Public Health Informatics,University of Illinois Libraries,19472579 +Online Journal of Rural Nursing and Health Care,Online Journal of Rural Nursing and Health Care,15393399 +Online Journal of Rural Research & Policy,New Prairie Press,19360487|19360487 +Online Readings in Psychology and Culture,Grand Valley State University Libraries,23070919 +Online Review,Emerald (MCB UP ),0309314X| +Onoma,Peeters Publishers,0078463X +Onomastica,Institute of Polish Language,00784648| +Onomázein Revista de lingüística filología y traducción,Pontificia Universidad Catolica de Chile,7185758 +Ons Geestelijk Erf,Peeters Publishers,7742827 +Ontology of Designing,Samara State Aerospace University,22239537|23131039 +OP-Journal,Thieme Publishing Group,01781715|14392496 +OPAKOWANIE,"""Wydawnictwo SIGMA-NOT, sp. z.o.o.""",00303348| +OPEC Energy Review,Wiley Blackwell (Blackwell Publishing),17530229|17530237 +OPEC Review,Wiley Blackwell (Blackwell Publishing),02770180|14680076 +Open Access Advocate,Boom Uitgevers Den Haag,22151516| +Open Access Animal Physiology,Dove Medical Press,11792779 +Open Access Bioinformatics,Dove Medical Press,11792701 +Open Access Emergency Medicine,Dove Medical Press,11791500 +Open Access Insect Physiology,Dove Medical Press,11792787 +Open Access Journal of Clinical Trials,Dove Medical Press,11791519 +Open Access Journal of Contraception,Dove Medical Press,11791527 +Open Access Journal of Sports Medicine,Dove Medical Press,11791543 +Open Access Journal of Urology,Dove Medical Press,11791551 +Open Access Macedonian Journal of Medical Sciences,ID Design 2012/DOOEL Skopje,18579655 +Open Access Medical Statistics,Dove Medical Press,22303251 +Open Access Rheumatology Research and Reviews,Dove Medical Press,1179156X +Open Access Surgery,Dove Medical Press,11787082 +Open Agriculture,Walter de Gruyter GmbH,23919531 +Open Archaeology,De Gruyter Open Sp. z o.o. ,23006560 +Open Arts Journal,The Open University,20503679|20503679 +Open Biological Sciences Journal,Bentham Science,23526335| +Open Biology,The Royal Society,20462441 +Open Chemistry,Walter de Gruyter GmbH,23915420 +Open Chemistry Journal,Bentham Science,18748422| +Open Computer Science,De Gruyter Open Sp. z o.o. ,22991093 +Open Computer Science Journal,Bentham Science,23526270| +Open Data Journal for Agricultural Research,Wageningen UR Library,23526378|23526378 +Open Economics and Management Journal,Bentham Science,23526300| +Open Economies Review,Springer-Verlag,09237992|1573708X +Open Engineering,Walter de Gruyter GmbH,23915439 +Open Engineering Sciences Journal,Bentham Science,23526289| +Open Environmental Sciences,Bentham Science,18763251| +Open Ethics and Law Journal,Bentham Science,23526327| +Open Forum Infectious Diseases,Oxford University Press,23288957 +Open Geosciences,Walter de Gruyter GmbH,23915447 +Open Geospatial Data Software and Standards,Springer (Biomed Central Ltd.),23637501 +Open Glycoscience,Bentham Science,18753981| +Open Health Data,"""Ubiquity Press, Ltd.""",20547102|20547102 +Open Heart,BMJ,20533624 +Open Heart Failure Journal,Bentham Science,18765351| +Open Journal of Accounting,"""Scientific Research Publishing, Inc.""",21693404|21693412 +Open Journal of Acoustics,"""Scientific Research Publishing, Inc.""",21625786|21625794 +Open Journal of Acoustics and Vibration,Hans Publishers,23280530|23280522 +Open Journal of Advanced Materials Research,Sciknow Publications,23303360 +Open Journal of Air Pollution,"""Scientific Research Publishing, Inc.""",21692653|21692661 +Open Journal of Analytical Chemistry Research,Sciknow Publications,23303395 +Open Journal of Anesthesiology,"""Scientific Research Publishing, Inc.""",21645531|21645558 +Open Journal of Animal Sciences,"""Scientific Research Publishing, Inc.""",21617597|21617627 +Open Journal of Antennas and Propagation,"""Scientific Research Publishing, Inc.""",23298421|23298413 +Open Journal of Apoptosis,"""Scientific Research Publishing, Inc.""",21683832|21683840 +Open Journal of Applied Biosensor,"""Scientific Research Publishing, Inc.""",21685401|21685398 +Open Journal of Applied Sciences,"""Scientific Research Publishing, Inc.""",21653917|21653925 +Open Journal of Archaeometry,PAGEPress Publications,20381948|20381956 +Open Journal of Architectural Design,Sciknow Publications,23339551 +Open Journal of Artificial Intelligence,Sciknow Publications,23318015 +Open Journal of Atmospheric and Climate Change,"""Scientific Online Publishing, Co., Ltd.""",23743794|23743808 +Open Journal of Biochemistry,"""Scientific Online Publishing, Co., Ltd.""",23744936|23744944 +Open Journal of Biomedical Materials Research,Sciknow Publications,23339578 +Open Journal of Biophysics,"""Scientific Research Publishing, Inc.""",21645388|21645396 +Open Journal of Bioresources,"""Ubiquity Press, Ltd.""",20565542|20565542 +Open Journal of Blood Diseases,"""Scientific Research Publishing, Inc.""",21643180|21643199 +Open Journal of Business and Management,"""Scientific Research Publishing, Inc.""",23293284|23293292 +Open Journal of Cardiology,Ross Science Publishers,20759010| +Open Journal of Cardiovascular Surgery,"""Libertas Academica, Ltd.""",11790652 +Open Journal of Cell Biology,"""Scientific Research Publishing, Inc.""",21653895|21653909 +Open Journal of Chemical Engineering and Science,"""Scientific Online Publishing, Co., Ltd.""",23745029|23745037 +Open Journal of Circuits and Systems,Hans Publishers,23270853|23270861 +Open Journal of Civil Engineering,"""Scientific Research Publishing, Inc.""",21643164|21643172 +Open Journal of Clinical Diagnostics,"""Scientific Research Publishing, Inc.""",21625816|21625824 +Open Journal of Communications and Software,"""Scientific Online Publishing, Co., Ltd.""",23745096|2374510X +Open Journal of Composite Materials,"""Scientific Research Publishing, Inc.""",21645612|21645655 +Open Journal of Dentistry and Oral Medicine,"""Horizon Research Publishing Co., Ltd.""",23332751|23332670 +Open Journal of Depression,"""Scientific Research Publishing, Inc.""",21699658|21699674 +Open Journal of Discrete Mathematics,"""Scientific Research Publishing, Inc.""",21617635|21617643 +Open Journal of Earthquake Research,"""Scientific Research Publishing, Inc.""",21699623|21699631 +Open Journal of Ecology,"""Scientific Research Publishing, Inc.""",21621985|21621993 +Open Journal of Education,Sciknow Publications,23284994|23284986 +Open Journal of Emergency Medicine,"""Scientific Research Publishing, Inc.""",23321806|23321814 +Open Journal of Endocrine and Metabolic Diseases,"""Scientific Research Publishing, Inc.""",21657424|21657432 +Open Journal of Energy Efficiency,"""Scientific Research Publishing, Inc.""",21692637|21692645 +Open Journal of Epidemiology,"""Scientific Research Publishing, Inc.""",21657459|21657467 +Open Journal of Finance,"""Scientific Online Publishing, Co., Ltd.""",23799587|23799579 +Open Journal of Fisheries Research,Hans Publishers,23731443|23731451 +Open Journal of Fluid Dynamics,"""Scientific Research Publishing, Inc.""",21653852|21653860 +Open Journal of Forestry,"""Scientific Research Publishing, Inc.""",21630429|21630437 +Open Journal of Functional Material Research,Sciknow Publications,23303344 +Open Journal of Gastroenterology,"""Scientific Research Publishing, Inc.""",21639450|21639469 +Open Journal of Genetics,"""Scientific Research Publishing, Inc.""",21624453|21624461 +Open Journal of Genomics,Ross Science Publishers,20759061| +Open Journal of Geology,"""Scientific Research Publishing, Inc.""",21617570|21617589 +Open Journal of Heat Mass and Momentum Transfer,Sciknow Publications,23317930 +Open Journal of Hematology,Ross Science Publishers,2075907X| +Open Journal of Historical Studies,Hans Publishers,23310332|23310359 +Open Journal of Immunology,"""Scientific Research Publishing, Inc.""",2162450X|21624526 +Open Journal of Implant Dentistry,AOSIS,22264507 +Open Journal of Industrial and Business Management,Sciknow Publications,23724250 +Open Journal of Information Security and Applications,"""Scientific Online Publishing, Co., Ltd.""",23746262|23746289 +Open Journal of Inorganic Chemistry,"""Scientific Research Publishing, Inc.""",21617406|21617414 +Open Journal of Inorganic Non-metallic Materials,"""Scientific Research Publishing, Inc.""",21646791|21646805 +Open Journal of Internal Medicine,"""Scientific Research Publishing, Inc.""",21625972|21625980 +Open Journal of Leadership,"""Scientific Research Publishing, Inc.""",21677743|21677751 +Open Journal of Legal Science,Hans Publishers,23297360|23297379 +Open Journal of Marine Science,"""Scientific Research Publishing, Inc.""",21617384|21617392 +Open Journal of Mathematical Modeling,Sciknow Publications,2328496X|23284978 +Open Journal of Medical Imaging,"""Scientific Research Publishing, Inc.""",21642788|21642796 +Open Journal of Medical Microbiology,"""Scientific Research Publishing, Inc.""",21653372|21653380 +Open Journal of Medical Psychology,"""Scientific Research Publishing, Inc.""",21659370|21659389 +Open Journal of Medicinal Chemistry,"""Scientific Research Publishing, Inc.""",21643121|2164313X +Open Journal of Medicine,Internet Medical Publishing,2174680X +Open Journal of Metal,"""Scientific Research Publishing, Inc.""",21642761|2164277X +Open Journal of Microphysics,"""Scientific Research Publishing, Inc.""",21622450|21622469 +Open Journal of Modelling and Simulation,"""Scientific Research Publishing, Inc.""",23274018|23274026 +Open Journal of Modern Hydrology,"""Scientific Research Publishing, Inc.""",21630461|21630496 +Open Journal of Modern Linguistics,"""Scientific Research Publishing, Inc.""",21642818|21642834 +Open Journal of Modern Neurosurgery,"""Scientific Research Publishing, Inc.""",21630569|21630585 +Open Journal of Modern Physics,"""Scientific Online Publishing, Co., Ltd.""",2372627X|23726288 +Open Journal of Molecular and Integrative Physiology,"""Scientific Research Publishing, Inc.""",21622159|21622167 +Open Journal of Nature Science,Hans Publishers,23301724|23301732 +Open Journal of Nephrology,"""Scientific Research Publishing, Inc.""",21642842|21642869 +Open Journal of Neuroscience,Ross Science Publishers,20759088| +Open Journal of Nursing,"""Scientific Research Publishing, Inc.""",21625336|21625344 +Open Journal of Obstetrics and Gynecology,"""Scientific Research Publishing, Inc.""",21608792|21608806 +Open Journal of Ocean and Coastal Sciences,"""Scientific Online Publishing, Co., Ltd.""",23770007|23770015 +Open Journal of Ophthalmology,"""Scientific Research Publishing, Inc.""",21657408|21657416 +Open Journal of Optimization,"""Scientific Research Publishing, Inc.""",23257105|23257091 +Open Journal of Organ Transplant Surgery,"""Scientific Research Publishing, Inc.""",21639485|21639493 +Open Journal of Organic Polymer Materials,"""Scientific Research Publishing, Inc.""",21645736|21645752 +Open Journal of Orthopedics,"""Scientific Research Publishing, Inc.""",21643008|21643016 +Open Journal of Pathology,"""Scientific Research Publishing, Inc.""",21646775|21646783 +Open Journal of Pediatrics,"""Scientific Research Publishing, Inc.""",21608741|21608776 +Open Journal of Philosophy,"""Scientific Research Publishing, Inc.""",21639434|21639442 +Open Journal of Physical Chemistry,"""Scientific Research Publishing, Inc.""",21621969|21621977 +Open Journal of Political Science,"""Scientific Research Publishing, Inc.""",21640505|21640513 +Open Journal of Polymer Chemistry,"""Scientific Research Publishing, Inc.""",21656681|21656711 +Open Journal of Preventive Medicine,"""Scientific Research Publishing, Inc.""",21622477|21622485 +Open Journal of Psychiatry,"""Scientific Research Publishing, Inc.""",21617325|21617333 +Open Journal of Psychiatry & Allied Sciences,Diva Enterprises Private Limited,23942053|23942061 +Open Journal of Radiology,"""Scientific Research Publishing, Inc.""",21643024|21643032 +Open Journal of Regenerative Medicine,"""Scientific Research Publishing, Inc.""",21692513|21692521 +Open Journal of Remote Sensing and Positioning,"""Scientific Online Publishing, Co., Ltd.""",23746386|23746408 +Open Journal of Renewable Energy and Sustainable Development,"""Scientific Online Publishing, Co., Ltd.""",23745371|23745363 +Open Journal of Respiratory Diseases,"""Scientific Research Publishing, Inc.""",2163940X|21639418 +Open Journal of Rheumatology and Autoimmune Diseases,"""Scientific Research Publishing, Inc.""",21639914|2164005X +Open Journal of Safety Science and Technology,"""Scientific Research Publishing, Inc.""",21625999|21626006 +Open Journal of Social Science Research,Sciknow Publications,23285001|2328501X +Open Journal of Social Sciences,"""Scientific Research Publishing, Inc.""",23275952|23275960 +Open Journal of Soil and Water Conservation,Hans Publishers,23343338|23343435 +Open Journal of Soil Science,"""Scientific Research Publishing, Inc.""",21625360|21625379 +Open Journal of Statistics,"""Scientific Research Publishing, Inc.""",2161718X|21617198 +Open Journal of Stomatology,"""Scientific Research Publishing, Inc.""",21608709|21608717 +Open Journal of Synthesis Theory and Applications,"""Scientific Research Publishing, Inc.""",21681244|21681252 +Open Journal of Therapy and Rehabilitation,"""Scientific Research Publishing, Inc.""",23321822|23321830 +Open Journal of Thoracic Surgery,"""Scientific Research Publishing, Inc.""",21643059|21643067 +Open Journal of Transportation Technologies,Hans Publishers,23263431|2326344X +Open Journal of Urology,"""Scientific Research Publishing, Inc.""",21605440|21605629 +Open Journal of Veterinary Medicine,"""Scientific Research Publishing, Inc.""",21653356|21653364 +Open Journal of Water Pollution and Treatment,"""Scientific Online Publishing, Co., Ltd.""",23746343|23746351 +Open Learning The Journal of Open Distance and e-Learning,Informa UK (Taylor & Francis),02680513|14699958 +Open Library of Humanities,Open Library of Humanities,20566700 +Open Life Sciences,Walter de Gruyter GmbH,23915412 +Open Linguistics,De Gruyter Open Sp. z o.o. ,23009969 +Open Longevity Science,Bentham Science,1876326X| +Open Mathematics,Walter de Gruyter GmbH,23915455 +Open Medicine,Walter de Gruyter GmbH,23915463 +Open Medicine Journal,Bentham Science,18742203| +Open Pharmaceutical Sciences Journal,Bentham Science,18748449| +Open Physics,Walter de Gruyter GmbH,23915471 +Open Physics Journal,Bentham Science,18748430| +Open Praxis,UNED - Universidad Nacional de Educacion a Distancia,2304070X +Open Quaternary,"""Ubiquity Press, Ltd.""",2055298X +Open Reconstructive and Cosmetic Surgery,Bentham Science,18769764| +Open Research Computation,Springer (Biomed Central Ltd.),20425767| +Open Review of Educational Research,Informa UK (Taylor & Francis),23265507 +Open Systems & Information Dynamics,World Scientific ,12301612|15731324 +Open Theology,De Gruyter Open Sp. z o.o. ,23006579 +Open Transactions on Geosciences,"""Scientific Online Publishing, Co., Ltd.""",23726458|23726466 +Open Transactions on Information Processing,"""Scientific Online Publishing, Co., Ltd.""",23743786|23743778 +Open Urban Studies and Demography Journal,Bentham Science,23526319| +Open Veterinary Journal,African Journals Online ,22264485|22186050 +OPERA,Universidad Externado de Colombia,16578651|23462159 +Operational Research,Springer-Verlag,11092858|18661505 +Operational Research Quarterly (1950-1952),JSTOR,1473284X| +Operational Research Quarterly (1970-1977),JSTOR,00303623| +Operations Management Research,Springer-Verlag,19369735|19369743 +Operations Research,Institute for Operations Research and the Management Sciences,0030364X|15265463 +Operations Research and Applications An International Journal,Academy and Industry Research Collaboration Center,23938463 +Operations Research and Fuzziology,Hans Publishers,21631476|21631530 +Operations Research for Health Care,Elsevier ,22116923| +Operations Research Letters,Elsevier ,01676377| +Operations Research Perspectives,Elsevier ,22147160| +Operative Dentistry,Operative Dentistry,03617734|15592863 +Operative Dentistry,Operative Dentistry,03617734|15592863 +Operative Dentistry,Operative Dentistry,03617734|15592863 +Operative Dentistry,Operative Dentistry,03617734|15592863 +Operative Dentistry,Operative Dentistry,03617734|15592863 +Operative Neurosurgery,Ovid Technologies (Wolters Kluwer) - Neurosurgery,23324252| +Operative Orthopädie und Traumatologie,Springer-Verlag,09346694|14390981 +Operative Techniques in Cardiac and Thoracic Surgery,Elsevier ,10855637| +Operative Techniques in General Surgery,Elsevier ,1524153X| +Operative Techniques in Neurosurgery,Elsevier ,1092440X| +Operative Techniques in Oculoplastic Orbital and Reconstructive Surgery,Informa UK (Swets & Zeitlinger Publishers),10962875| +Operative Techniques in Orthopaedics,Elsevier ,10486666| +Operative Techniques in Otolaryngology-Head and Neck Surgery,Elsevier ,10431810| +Operative Techniques in Plastic and Reconstructive Surgery,Elsevier ,10710949| +Operative Techniques in Sports Medicine,Elsevier - WB Saunders,10601872| +Operative Techniques in Thoracic and Cardiovascular Surgery,Elsevier ,15222942| +Operators and Matrices,Element d.o.o.,18463886| +Opflow,American Water Works Association - Opflow,01498029| +Ophelia,Informa UK (Taylor & Francis),00785326| +Ophthalmic and Physiological Optics,Wiley Blackwell (Blackwell Publishing),02755408|14751313 +Ophthalmic Epidemiology,Informa UK (Taylor & Francis),09286586|17445086 +Ophthalmic Genetics,Informa UK (Taylor & Francis),13816810|17445094 +Ophthalmic Paediatrics and Genetics,Informa UK (Taylor & Francis),01676784| +Ophthalmic Plastic and Reconstructive Surgery,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,07409303| +Ophthalmic Research,S. Karger AG,00303747|14230259 +Ophthalmic Surgery Lasers and Imaging,"""SLACK, Inc.""",15428877| +Ophthalmic Surgery Lasers and Imaging Retina,"""SLACK, Inc.""",23258160| +Ophthalmologic vedomosti,ECO-Vector,19987102|24125423 +Ophthalmologica,S. Karger AG,00303755|14230267 +Ophthalmologica Extra,S. Karger AG,22961445 +Ophthalmology,Elsevier ,01616420| +Ophthalmology and Eye Diseases,"""Libertas Academica, Ltd.""",11791721 +Ophthalmology and Therapy,Springer-Verlag,21938245|21936528 +Ophthalmology Clinics of North America,Elsevier ,08961549| +Ophthalmology Research An International Journal,Sciencedomain International,23217227 +Opinião Pública,SciELO,01046276|01046276 +Opportunistic Pathogens,Elsevier ,13862618| +Opportunities for Research in Renaissance Drama,The University of Chicago Press,23784016| +Opportunities for Research in Renaissance Drama (Exclusive of Shakespeare),The University of Chicago Press,23783990| +OPSEARCH,Springer-Verlag,00303887|09750320 +Opsta medicina,Centre for Evaluation in Education and Science,03547132| +Optica,The Optical Society,23342536 +Optica Acta International Journal of Optics,Informa UK (Taylor & Francis),00303909| +Optica Pura y Aplicada,Sociedad Espanola de Optica,21718814|00303917 +Optical and Quantum Electronics,Springer-Verlag,03068919|1572817X +Optical Data Processing and Storage,De Gruyter Open Sp. z o.o. ,20848862 +Optical Engineering,SPIE - International Society for Optical Engineering,00913286|15602303 +Optical Fiber Technology,Elsevier ,10685200|10959912 +Optical Materials,Elsevier ,09253467| +Optical Materials Express,The Optical Society,21593930 +Optical Memory and Neural Networks,Allerton Press,1060992X|19347898 +Optical Nanoscopy,Springer (Biomed Central Ltd.),21922853|21922853 +Optical Networks Magazine,Springer (Kluwer Academic Publishers),13886916| +Optical Review,Springer-Verlag,13406000|13499432 +Optical Switching and Networking,Elsevier ,15734277| +Optical Technique,Shanghai Institute of Optics and Fine Mechanics,10021582| +Opticon1826,"""Ubiquity Press, Ltd.""",20498128|20498128 +Optics,Science Publishing Group,23287780| +Optics & Laser Technology,Elsevier ,00303992| +Optics and Lasers in Engineering,Elsevier ,01438166| +Optics and Photonics Journal,"""Scientific Research Publishing, Inc.""",21608881|2160889X +Optics and Photonics Letters,World Scientific ,17935288|17937140 +Optics and Photonics News,The Optical Society,10476938|15413721 +Optics and Precision Engineering,Shanghai Institute of Optics and Fine Mechanics,1004924X| +Optics and Spectroscopy,Pleiades Publishing,0030400X|15626911 +Optics Communications,Elsevier ,00304018| +Optics Express,The Optical Society,10944087 +Optics Letters,The Optical Society,01469592|15394794 +Optics News,The Optical Society,0098907X| +Optics Technology,Elsevier ,03743926| +Optik & Photonik,Wiley Blackwell (John Wiley & Sons),18631460| +Optik - International Journal for Light and Electron Optics,Elsevier ,00304026| +OPTIMA Newsletter,Fondazione Pro Herbario Mediterraneo,03765016|22256970 +Optimal Control Applications and Methods,Wiley Blackwell (John Wiley & Sons),01432087|10991514 +Optimization,Informa UK (Taylor & Francis),02331934|10294945 +Optimization and Engineering,Springer-Verlag,13894420|15732924 +Optimization Letters,Springer-Verlag,18624472|18624480 +Optimization Methods and Software,Informa UK (Taylor & Francis),10556788|10294937 +Optimum Ekonomi ve Yönetim Bilimleri Dergisi,Optimum Journal of Economics and Management Sciences,21484228|21484228 +Optimum Studia Ekonomiczne,University of Bialystok,15067637| +Option/Bio,Elsevier ,09925945| +Opto-electronics,Springer-Verlag,00304077| +Opto-Electronics Review,De Gruyter Open Sp. z o.o. ,12303402|18963757 +Optoelectronics,Hans Publishers,21645450|21645469 +Optoelectronics Instrumentation and Data Processing,Allerton Press,87566990|19347944 +Optoelectronics Letters,Springer-Verlag,16731905|19935013 +Optofluidics,De Gruyter Open Sp. z o.o. ,22993185 +Optofluidics Microfluidics and Nanofluidics,De Gruyter Open Sp. z o.o. ,23007435 +Optogenetics,De Gruyter Open Sp. z o.o. ,22993967 +Optometry - Journal of the American Optometric Association,Elsevier ,15291839| +Optometry and Vision Science,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10405488| +Optometry Reports,PAGEPress Publications,20394721|2039473X +Opus,OPUS,15177017 +Opuscula Archaeologica,"""Faculty of Humanities and Social Sciences, University of Zagreb""",04730992| +Opuscula Mathematica,AGH University of Science and Technology Press,12329274| +Opuscula Zoologica,Opuscula Zoologica,02375419|20631588 +OR,JSTOR,14732858| +OR Insight,Nature Publishing Group - Macmillan Publishers,09535543|17590477 +OR Nurse,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,19333145| +OR Spectrum,Springer-Verlag,01716468|14366304 +Oracula Revista de Estudos do Cristianismo Primitivo,Instituto Metodista de Ensino Superior,18078222 +Oral & Craniofacial Tissue Engineering,Quintessence Publishing,21583722| +Oral & Implantology,CIC Edizioni Internazionali,20352468 +Oral and Maxillofacial Surgery,Springer-Verlag,18651550|18651569 +Oral and Maxillofacial Surgery Cases,Elsevier ,22145419| +Oral and Maxillofacial Surgery Clinics of North America,Elsevier ,10423699| +Oral Biology and Dentistry,Herbert Publications,20535775 +Oral Diseases,Wiley Blackwell (Blackwell Publishing),1354523X|16010825 +Oral Health and Dental Management,OMICS Publishing Group,22472452 +Oral History Review,Oxford University Press,00940798|15338592 +Oral Medicine & Pathology,The Japanese Society for Oral Pathology,13420984|18821537 +Oral Microbiology and Immunology,Wiley Blackwell (Blackwell Publishing),09020055|1399302X +Oral Oncology,Elsevier ,13688375| +Oral Oncology Extra,Elsevier ,17419409| +Oral Oncology Supplement,Elsevier ,17447895| +Oral Radiology,Springer-Verlag,09116028|16139674 +Oral Science International,Elsevier ,13488643| +Oral Surgery,Wiley Blackwell (Blackwell Publishing),17522471|1752248X +Oral Surgery Oral Medicine Oral Pathology,Elsevier ,00304220| +Oral Surgery Oral Medicine Oral Pathology and Oral Radiology,Elsevier ,22124403| +Oral Surgery Oral Medicine Oral Pathology Oral Radiology and Endodontology,Elsevier - Mosby,10792104| +Oral Surgery Oral Medicine Oral Radiology,"""Science and Education Publishing Co., Ltd.""",23795298| +Oral Tradition,Muse - Johns Hopkins University Press,15424308 +Oralidades,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,19814275|23170301 +Orbis,Elsevier ,00304387| +Orbis,Peeters Publishers,00304379|00304379 +Orbis Litterarum,Wiley Blackwell (Blackwell Publishing),01057510|16000730 +ORBIS SCHOLAE,"""Charles University in Prague, Karolinum Press""",18024637|23363177 +Orbit,Informa UK (Taylor & Francis),01676830|17445108 +Orbit Writing Around Pynchon,Open Library of Humanities,20444095|20472870 +Orbital - The Electronic Journal of Chemistry,Instituto de Quimica - Univ. Federal do Mato Grosso do Sul,19846428 +Order,Springer-Verlag,01678094|15729273 +Ordines Militares Colloquia Torunensia Historica,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,08672008|23917512 +Ordo Economics Journal,Korean Ordo Economics Association,1226654X| +Ore Geology Reviews,Elsevier ,01691368| +Oregon Historical Quarterly,Oregon Historical Society,00304727|00304727 +Oregon Undergraduate Research Journal,Oregon State University,2160617X +OREMA,De Montfort University,20527888 +Organelles Proteomics,De Gruyter Open Sp. z o.o. ,2084722X +Organic & Biomolecular Chemistry,The Royal Society of Chemistry,14770520|14770539 +Organic Agriculture,Springer-Verlag,18794238|18794246 +Organic and Medicinal Chemistry Letters,Springer (Biomed Central Ltd.),21912858|21912858 +Organic Chemistry Current Research,OMICS Publishing Group,21610401 +Organic Chemistry Frontiers,The Royal Society of Chemistry,20524110|20524129 +Organic Chemistry Insights,"""Libertas Academica, Ltd.""",11786396 +Organic Chemistry International,Hindawi Publishing Corporation,2090200X|20902018 +Organic Electronics,Elsevier ,15661199| +Organic farming,Librello,22976485 +Organic Geochemistry,Elsevier ,01466380| +Organic Letters,American Chemical Society,15237060|15237052 +Organic Magnetic Resonance,Wiley Blackwell (John Wiley & Sons),00304921|1097458X +Organic Mass Spectrometry,Wiley Blackwell (John Wiley & Sons),0030493X|10969888 +Organic Photonics and Photovoltaics,De Gruyter Open Sp. z o.o. ,22993177 +Organic Preparations and Procedures,Informa UK (Taylor & Francis),08856672| +Organic Preparations and Procedures International,Informa UK (Taylor & Francis),00304948|19455453 +Organic Process Research & Development,American Chemical Society,10836160|1520586X +Organic Syntheses,Organic Syntheses,00786209|23333553 +Organisational Project Management,"""University of Technology, Sydney""",22036156 +Organisationsberatung Supervision Coaching,Springer-Verlag,1618808X|18622577 +Organised Sound,Cambridge University Press,13557718|14698153 +Organisms Diversity & Evolution,Springer-Verlag,14396092|16181077 +Organizacija,De Gruyter Open Sp. z o.o. ,13185454|15811832 +Organizacija znanja,Institute of Information Science,1580979X|15809803 +Organizações & Sociedade,SciELO,19849230|19849230 +Organization,SAGE Publications,13505084|00000000 +Organization & Environment,SAGE Publications,10860266|15527417 +Organization and Management,De Gruyter Open Sp. z o.o. ,01375466| +Organization Management Journal,Informa UK (Taylor & Francis),15416518 +Organization Science,Institute for Operations Research and the Management Sciences,10477039|15265455 +Organization Studies,SAGE Publications,01708406|17413044 +Organization Technology and Management in Construction An International Journal,"""Faculty of Civil Engineering, University of Zagreb""",18476228|18475450 +Organizational Analysis,Emerald (MCB UP ),15517470| +Organizational Behavior and Human Decision Processes,Elsevier ,07495978|10959920 +Organizational Behavior and Human Performance,Elsevier ,00305073| +Organizational Cultures An International Journal,Common Ground Publishing,23278013|2327932X +Organizational Dynamics,Elsevier ,00902616| +Organizational Psychology Review,SAGE Publications,20413866|20413874 +Organizational Research Methods,SAGE Publications,10944281|15527425 +Organogenesis,Landes Bioscience,15476278|15558592 +Organometallics,American Chemical Society,02767333|15206041 +Organozinc Reagents,Thieme Publishing Group,20100310 +Oriens,Brill Academic Publishers,00786527|18778372 +Orient,The Society for Near Eastern Studies in Japan,04733851|18841392 +Orient Journal of Medicine,African Journals Online ,11150521 +Oriental Insects,Informa UK (Taylor & Francis),00305316|21578745 +Oriental Journal Of Chemistry,Oriental Scientific Publishing Company,0970020X|22315039 +Oriental Pharmacy and Experimental Medicine,Springer-Verlag,15982386|22111069 +Orientalia Christiana Cracoviensia,Pontifical Universtiy of John Paul II in Krakow,20811330| +Orientalia Lovaniensia Periodica,Peeters Publishers,854522 +Orientalistische Literaturzeitung,Oldenbourg Wissenschaftsverlag,00305383|21966877 +Oriente Moderno,Brill Academic Publishers,00305472|22138617 +Origins of Life,Springer-Verlag,03021688| +Origins of Life and Evolution of Biospheres,Springer-Verlag,01696149|15730875 +ORiON,Stellenbosch University - OriON,22240004 +ORL,S. Karger AG,03011569|14230275 +Ormancılık Araştırma Dergisi,Ormancilik Arastirma Dergisi,21490783|21490775 +Ornamental Horticulture,Lepidus Tecnologia,2447536X +Ornis Hungarica,De Gruyter Open Sp. z o.o. ,20619588 +Ornis Norvegica,University of Bergen Library,18929737 +Ornis Scandinavica,JSTOR,00305693| +Ornithological Monographs,BioOne (American Ornithologists Union),00786594|19412282 +ORNITHOLOGICAL SCIENCE,BioOne (Ornithological Society of Japan),13470558| +Orphan Drugs Research and Reviews,Dove Medical Press,22306161 +Orphanet Journal of Rare Diseases,Springer (Biomed Central Ltd.),17501172|17501172 +Orthodontic Journal of Nepal,Nepal Journals Online,20911327|20911335 +Orthodontic Waves,Elsevier ,13440241| +Orthodontics and Craniofacial Research,Wiley Blackwell (Blackwell Publishing),16016335|16016343 +ORTHODONTICS The Art and Practice of Dentofacial Enhancement,Quintessence Publishing,21602999|21603006 +Orthopädie & Rheuma,Springer-Verlag,14350017|21965684 +Orthopädie und Unfallchirurgie - Mitteilungen und Nachrichten,Thieme Publishing Group,21935254|21935262 +Orthopädie und Unfallchirurgie up2date,Thieme Publishing Group,16117859|18611982 +Orthopaedic Journal of Sports Medicine,SAGE Publications,23259671|23259671 +Orthopaedic Knowledge Online Journal,American Academy of Orthopaedic Surgeons,19404093 +Orthopaedic Nursing,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,07446020| +Orthopaedic Surgery,Wiley Blackwell (Blackwell Publishing),17577853|17577861 +Orthopaedics & Traumatology Surgery & Research,Elsevier ,18770568| +Orthopaedics and Trauma,Elsevier ,18771327| +Orthopaedics and Traumatology,Springer-Verlag,09412530|16173538 +ORTHOPAEDICS TRAUMATOLOGY and PROSTHETICS,"""Orthopaedics, Traumatology, and Prosthetics""",00305987| +Orthopedic & Muscular System,OMICS Publishing Group,21610533 +Orthopedic Clinics of North America,Elsevier ,00305898| +Orthopedic Research and Reviews,Dove Medical Press,11791462 +Orthopedic Reviews,PAGEPress Publications,20358237|20358164 +Orthopedic Trauma Directions,Thieme Publishing Group,16128060|16128087 +Orthopedics,"""SLACK, Inc.""",01477447| +Orthopedics & Traumatology,West-Japanese Society of Orthopedics & Traumatology,00371033|13494333 +Orthopedics and Traumatology,Springer-Verlag,09412530|16173838 +Orthopedie Traumatologie,Springer-Verlag,09403264| +Ortodoncia Española,Elsevier ,02101637| +ORTODONCJA POLSKA,Blackhorse Publishing,18954723| +Ortopedia Traumatologia Rehabilitacja,Index Copernicus International,15093492|20844336 +Orvosi Hetilap,Akademiai Kiado Zrt.,00306002|17886120 +Oryx,Cambridge University Press,00306053|13653008 +Osiris,The University of Chicago Press,03697827|19338287 +Oslo Law Review,University of Oslo Library,23873299 +OSMANGAZİ JOURNAL OF MEDICINE,Osmangazi Journal of Medicine,13054953| +Osmanlı Medeniyeti Araştırmaları Dergisi,Osmanli Medeniyeti ve Arastirmalari Dergisi,24589519 +Osmanli Mirasi Arastirmalari Dergisi,Osmanli Mirasi Arastirmalari Dergisi,21485704| +Osong Public Health and Research Perspectives,Elsevier ,22109099| +Osteoarthritis and Cartilage,Elsevier ,10634584|15229653 +Osteologie/Osteology,Hogrefe Publishing Group,10191291| +Osteopathic Family Physician,Elsevier ,1877573X| +Osteopathic Medicine and Primary Care,Springer (Biomed Central Ltd.),17504732| +Osteopathische Medizin,Elsevier ,16159071| +Osteopatía Científica,Elsevier ,18869297| +Osteoporosis and Sarcopenia,Elsevier ,24055255| +Osteoporosis International,Springer-Verlag,0937941X|14332965 +Osteosynthese International,Thieme Publishing Group,09446516|14390868 +Osteosynthesis & Trauma Care,Thieme Publishing Group,1618971X|16189728 +Osteosynthesis and Trauma Care,Thieme Publishing Group,1618971X|16189728 +Österreichische Botanische Zeitschrift,Springer-Verlag,00298948| +Österreichische Musikzeitschrift,Bohlau Verlag,00299316|23072970 +Österreichische Wasser- und Abfallwirtschaft,Springer-Verlag,0945358X|16137566 +Österreichische Zeitschrift für Soziologie,Springer-Verlag,10110070|18622585 +Ostrich - Journal of African Ornithology,Informa UK (National Inquiry Services Center),00306525|1727947X +OT Practice,AOTA Press (OT Practice Magazine),10844902| +OTAM(Ankara,Ankara University,1019469X|1019469X +OTJR Occupation Participation Health,SAGE Publications,15394492|19382383 +Otkrytoe i distantsionnoe obrazovanie,Tomsk State University,16095944| +Oto-Rhino-Laryngologia Nova,S. Karger AG,10148221|14230283 +Otolaryngologia Polska,Index Copernicus International,00306657|23007338 +Otolaryngologic Clinics of North America,Elsevier ,00306665| +otolaryngology,OMICS Publishing Group,2161119X +Otolaryngology - Head and Neck Surgery,SAGE Publications,01945998|10976817 +Otolaryngology - Open Journal,Openventio Publishers,24704059 +Otology & Neurotology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15317129| +Otorhinolaryngology Clinics - An International Journal,Jaypee Brothers Medical Publishing,0975444X|09756957 +Otra Economía,Universidade do Vale do Rio Dos Sinos - UNISINOS,18514715 +Oud Holland - Quarterly for Dutch Art History,Brill Academic Publishers,0030672X|18750176 +Our Dermatology Online,Our Dermatology Online,20819390 +Our Economy Journal of Contemporary Issues in Economics and Business,"""Faculty of Economics and Business, University of Maribor""",05473101| +Our Nature,Nepal Journals Online,19912951| +OUSL Journal,Sri Lanka Journals Online ,18003621| +Outlook on Agriculture,IP Publishing,00307270| +Outlook on Science Policy,Informa UK (Beech Tree Publishing),01650262|14715473 +Outlooks on Pest Management,Research Information Ltd,17431026|17431034 +Outra Travessia,Universidade Federal de Santa Catarina,18075002|21768552 +Outre-mers,PERSEE Program,16310438| +Outre-Terre,CAIRN,16363671|1951624X +Ouyoujuigakuzasshi,Japanese Society of Veterinary Science,1883907X +Ovidius University Annals of Chemistry,Walter de Gruyter GmbH,2286038X +Owl of Minerva,Philosophy Documentation Center,00307580| +Oxford Agrarian Studies,Informa UK (Taylor & Francis),02645491| +Oxford Art Journal,Oxford University Press,01426540|17417287 +Oxford Bulletin of Economics and Statistics,Wiley Blackwell (Blackwell Publishing),03059049|14680084 +Oxford Development Studies,Informa UK (Taylor & Francis),13600818|14699966 +Oxford Economic Papers,Oxford University Press,00307653|14643812 +Oxford German Studies,Maney Publishing,00787191|00000000 +Oxford Journal of Archaeology,Wiley Blackwell (Blackwell Publishing),02625253|14680092 +Oxford Journal of Law and Religion,Oxford University Press,20470770|20470789 +Oxford Journal of Legal Studies,Oxford University Press,01436503|14643820 +Oxford Literary Review,Edinburgh University Press,03051498|17571634 +Oxford Medical Case Reports,Oxford University Press,20538855 +Oxford Review of Economic Policy,Oxford University Press,0266903X|14602121 +Oxford Review of Education,Informa UK (Taylor & Francis),03054985|14653915 +Oxford University Commonwealth Law Journal,Informa UK (Taylor & Francis),14729342|17578469 +Oxidants and Antioxidants in Medical Science,ScopeMed International Medical Journal Managment and Indexing System,21468389| +Oxidation of Metals,Springer-Verlag,0030770X|15734889 +Oxidative Medicine & Cellular Longevity,Hindawi Publishing Corporation,19420900|19420994 +Oxonomics,Wiley Blackwell (Blackwell Publishing),17525195|17525209 +Oxymag,Elsevier ,09901310| +OYE Ogun Journal of Arts,African Journals Online ,7959478 +Oz,New Prairie Press,8887802 +Ozone Science and Engineering,Informa UK (Taylor & Francis),01919512|15476545 +P-Adic Numbers Ultrametric Analysis and Applications,Pleiades Publishing,20700466|20700474 +P2 Pollution Prevention Review,Wiley Blackwell (John Wiley & Sons),10790276|15206815 +På Spissen,Norske Dansekunstnere,08002452| +PACEsetterS,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,14497700| +Pacific Accounting Review,Emerald (MCB UP ),01140582| +Pacific Affairs,Pacific Affairs,0030851X| +Pacific Coast Philology,The Pennsylvania State University Press,00787469| +Pacific Conservation Biology,CSIRO Publishing,10382097| +Pacific Economic Review,Wiley Blackwell (Blackwell Publishing),1361374X|14680106 +Pacific Focus,Wiley Blackwell (Blackwell Publishing),12254657|19765118 +Pacific Historical Review,University of California Press,00308684|15338584 +Pacific Journal of Mathematics,Mathematical Sciences Publishers,00308730|00308730 +Pacific Journal of Mathematics for Industry,Springer (Biomed Central Ltd.),21984115|21984115 +Pacific Journal of Reproductive Health,Pacific Society for Reproductive Health Charitable Trust,24230820|24230820 +Pacific Medical Journal,Central Collector of Libraries BIBCOM,16091175| +Pacific Philosophical Quarterly,Wiley Blackwell (Blackwell Publishing),02790750| +Pacific Philosophical Quarterly,Wiley Blackwell (Blackwell Publishing),00315621|14680114 +Pacific Rim Property Research Journal,Informa UK (Taylor & Francis),14445921|22016716 +Pacific Science,BioOne (Pacific Science),00308870|15346188 +Pacific Science Review,Elsevier ,12295450| +Pacific Science Review A Natural Science and Engineering,Elsevier ,24058823| +Pacific Science Review B Humanities and Social Sciences,Elsevier ,24058831| +Pacific-Basin Finance Journal,Elsevier ,0927538X| +Pacifica Australasian Theological Studies,SAGE Publications,1030570X|18392598 +Pacifica Review Peace Security & Global Change,Informa UK (Taylor & Francis),13239104|14699974 +Pacing and Clinical Electrophysiology,Wiley Blackwell (Blackwell Publishing),01478389|15408159 +Packaging Technology and Science,Wiley Blackwell (John Wiley & Sons),08943214|10991522 +Packaging Transport Storage & Security of Radioactive Material,Informa UK (Taylor & Francis),17465095|17465109 +Paddy and Water Environment,Springer-Verlag,16112490|16112504 +Pädiatrie & Pädologie,Springer-Verlag,00309338|16137558 +pädiatrie hautnah,Springer-Verlag,14371782| +pädiatrie Kinder- und Jugendmedizin hautnah,Springer-Verlag,18672132|21966443 +Pädiatrie up2date,Thieme Publishing Group,16116445|18629393 +Padres y Maestros Publicación de la Facultad de Ciencias Humanas y Sociales,Universidad Pontificia Comillas,02104679|22551042 +PADUA,Hogrefe Publishing Group,18616186|2235218X +Paedagogia Christiana,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,15056872| +Paedagogica Europaea,JSTOR,00787787| +Paedagogica Historica,Informa UK (Taylor & Francis),00309230|1477674X +Paediatria Croatica,Croatian Medical Association,13301403|1846405X +Paediatric and Perinatal Drug Therapy,Informa UK (Librapharm),14630095|00000000 +Paediatric and Perinatal Epidemiology,Wiley Blackwell (Blackwell Publishing),02695022|13653016 +Paediatric Care,RCN Publishing,09629513| +Paediatric Respiratory Reviews,Elsevier ,15260542| +Paediatric Respiratory Reviews,Elsevier ,15260550|15260550 +Paediatrica Indonesiana,Paediatrica Indonesiana - Indonesian Pediatric Society,00309311|23384786 +Paediatrics and Child Health,Elsevier ,17517222| +Paediatrics and Family Medicine,Medical Communications Sp. z.o.o.,23915021| +Paediatrics and Health,Herbert Publications,2052935X +Paediatrics and International Child Health,Maney Publishing,20469047|20469055 +Paediatrics Today,Acta Medica Saliniana,18400914|18402968 +Páginas de Filosofia,Instituto Metodista de Ensino Superior,21757747 +Paidéia (Ribeirão Preto),SciELO,0103863X|0103863X +Paidéia (Ribeirão Preto),SciELO,0103863X +Paidéia (Ribeirão Preto),SciELO,0103863X +Pain,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,03043959|18726623 +Pain and Headache,S. Karger AG,02553910|16622820 +Pain and Relief Reports,Herbert Publications,20573219 +Pain and Therapy,Springer-Verlag,21938237|2193651X +Pain Digest,Springer-Verlag,09389016|18661610 +Pain Forum,Elsevier ,10823174| +Pain Management,Future Medicine,17581869|17581877 +Pain Management Nursing,Elsevier ,15249042| +Pain Medicine,Oxford University Press,15262375|15264637 +Pain Practice,Wiley Blackwell (Blackwell Publishing),15307085|15332500 +PAIN RESEARCH,Japanese Association for the Study of Pain,09158588|21874697 +Pain Research and Management,Hindawi Publishing Corporation,12036765|19181523 +Pain Research and Treatment,Hindawi Publishing Corporation,20901542|20901550 +Pain Reviews,Portico,09681302|14770318 +Pain Studies and Treatment,"""Scientific Research Publishing, Inc.""",23293268|23293276 +Paisagem e Ambiente,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,01046098|23595361 +PAJ A Journal of Performance and Art,MIT Press,1520281X|15379477 +PAJAR - Pan-American Journal of Aging Research,EDIPUCRS,23579641 +Pakistan Forum,JSTOR,03157725| +Pakistan Journal of Biological Sciences,Science Alert,10288880|18125735 +Pakistan Journal of Chemistry,Pakistan Journal of Chemistry,22202625|2222307X +Pakistan Journal of Medical Sciences,Pakistan Journal of Medical Sciences,1681715X +Pakistan Journal of Nematology,Pakistan Society of Nematologists,02557576|23131942 +Pakistan Journal of Nutrition,Science Alert,16805194| +Pakistan Journal of Social Sciences,Science Alert,16838831| +Pakistan Journal of Statistics and Operation Research,Pakistan Journal of Statistics and Operation Research (PJSOR),18162711|22205810 +Palabra Clave - Revista de Comunicación,Universidad de la Sabana,01228285|2027534X +Paladyn Journal of Behavioral Robotics,De Gruyter Open Sp. z o.o. ,20809778|20814836 +Palaeobiodiversity and Palaeoenvironments,Springer-Verlag,18671594|18671608 +Palaeogeography Palaeoclimatology Palaeoecology,Elsevier ,00310182| +Palaeontographica Abteilung A,Schweizerbart,03750442| +Palaeontographica Abteilung B,Schweizerbart,2194900X| +Palaeontolgia Polonica,"""Polska Akademia Nauk Instytut Paleobiologii Institute of Paleobiology, Polish Academy of Sciences)""",00788562| +Palaeontology,Wiley Blackwell (Blackwell Publishing),00310239|14754983 +Palaeovertebrata,Association Palaeovertebrata,00310247|22740333 +Palaeoworld,Elsevier ,1871174X| +PALAESTRA,"""Sagamore Publishing, LLC""",23721391 +Palaios,Society for Sedimentary Geology,08831351| +Paläontologische Zeitschrift,Springer-Verlag,00310220|18676812 +Paléo,PERSEE Program,11453370|21010420 +Paléo Supplément,PERSEE Program,12623075| +PaleoAmerica,Maney Publishing,20555563|20555571 +PaleoAnthropology,Paleoantropology Society,15450031|15450031 +Paleobiology,Cambridge University Press,00948373|19385331 +Paleoceanography,Wiley Blackwell (John Wiley & Sons),08838305| +Paleontological Contributions,The University of Kansas,19460279|19460279 +Paleontological Contributions New Series (1992-2009),The University of Kansas,10468390| +Paleontological Journal,Pleiades Publishing,00310301|15556174 +Paleontological Research,BioOne (Paleontological Society of Japan),13428144|18800068 +Paleontology Journal,Hindawi Publishing Corporation,23144289|23144297 +Paléorient,PERSEE Program,01539345|1957701X +Paléorient,PERSEE Program,01539345| +Palestine Exploration Quarterly,Maney Publishing,00310328|17431301 +Palgrave Communications,Nature Publishing Group - Macmillan Publishers,20551045 +Palimpsestes,OpenEdition,11488158|2109943X +Palimpsesto,Iniciativa Digital Politecnica,20149751| +Palíndromo,Universidade do Estado de Santa Catarina,21752346 +Palladium- and Nickel-Catalyzed Arylation with Aryl Halides,Thieme Publishing Group,20300409 +Pallas,OpenEdition,00310387|22727639 +Palliative & Supportive Care,Cambridge University Press,14789515|14789523 +Palliative Care Research,Japanese Society for Palliative Medicine,18805302 +Palliative Care Research and Treatment,"""Libertas Academica, Ltd.""",11782242 +Palliative Medicine,SAGE Publications,02692163|1477030X +Palliative Medicine & Care Open Access,Symbiosis Group,23748362 +Palliative Medicine and Hospice Care - Open Journal,Openventio Publishers,23778393 +Palliative Medicine and Nursing Open Access,Aperito Online Publishing Private Limited,23788909 +Pallium,Springer-Verlag,13892630|18757049 +Palynology,Informa UK (Taylor & Francis),01916122|15589188 +PAM Review Energy Science & Technology,"""University of Technology, Sydney""",22055231 +PAMM,Wiley Blackwell (John Wiley & Sons),16177061|16177061 +PAMPA,Universidad Nacional del Litoral,16693299|23140208 +Pamphlet Series,International Monetary Fund,16079493 +Pamphlet Series,International Monetary Fund,16079507 +Pamphlet Series,International Monetary Fund,02522985| +Pamphlet Series,International Monetary Fund,02522993| +Pamphlet Series,International Monetary Fund,15645207 +Pamphlet Series,International Monetary Fund,10149872| +Pamphlet Series,International Monetary Fund,05388759| +Pamukkale Journal of Business and Information Management,"""LookUs Bilisim, Ltd.""",21488711| +Pamukkale Journal of Eurasian Socioeconomic Studies,"""LookUs Bilisim, Ltd.""",21488703| +Pamukkale Medical Journal,"""LookUs Bilisim, Ltd.""",13099833|13080865 +Pamukkale Üniversitesi İlahiyat Fakültesi Dergisi,Pamukkale University Journal of Divinity Faculty,21484899 +Pamukkale University Journal of Education,Pamukkale University Journal of Education,13010085| +Pamukkale University Journal of Engineering Sciences,"""LookUs Bilisim, Ltd.""",13007009|21475881 +Pamukkale University Journal of Social Sciences Institute,"""LookUs Bilisim, Ltd.""",13082922|21476985 +Pan African Medical Journal,Pan African Medical Journal,19378688 +Pan American Journal of Medical Thermology,Pan American Journal of Medical Thermology,23584696 +Pan Arab Angiology Journal,International Health Academy,20006535 +Panamerican Journal of Trauma Critical Care & Emergency Surgery,Jaypee Brothers Medical Publishing,22780335 +Pancreas,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,08853177| +Pancreas - Open Journal,Openventio Publishers,2471142X +Pancreatic Disorders and Therapy,OMICS Publishing Group,21657092 +Pancreatology,Elsevier ,14243903|14243911 +Pandaemonium Germanicum,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,19828837 +Pandecta Research Law Journal,"""Department of Drama, Dance and Music, Semarang State Universtiy""",19078919|23375418 +Panoeconomicus,National Library of Serbia,1452595X|22172386 +Panorama,Institucion Universitaria Politecnico Grancolombiano,19097433|2145308X +Panorama of Brazilian Law,Panorama of Brazilian Law,10751343|23181516 +Panta Rei,Servicio de Publicaciones de la Universidad e Murcia,11362464|23868864 +Papéis Avulsos de Zoologia (São Paulo),SciELO,00311049|00311049 +Papel Político,Editorial Pontificia Universidad Javeriana,01224409|21450617 +Papeles,Universidad Nacional del Litoral,18532845| +Papeles de Europa,Universidad Complutense de Madrid,19895917 +Papeles de Geografía,Servicio de Publicaciones de la Universidad e Murcia,02131781|19894627 +Papeles del CEIC,UPV/EHU Press,16956494 +Paper in Linguistics,Informa UK (Taylor & Francis),00311251| +Papers and proceedings of the Royal Society of Tasmania,Smithsonian Institution Biodiversity Heritage Library,00804703| +Papers from the Institute of Archaeology,"""Ubiquity Press, Ltd.""",09659315|20419015 +Papers in Applied Geography,Informa UK (Taylor & Francis),23754931|2375494X +Papers in Canadian Economic Development,University of Waterloo,08331871| +Papers in Meteorology and Geophysics,"""Meteorological Research Institute, Japan Meteorological Agency""",0031126X|18806643 +Papers in Palaeontology,Wiley Blackwell (John Wiley & Sons),20562799| +Papers in Physics,Papers in Physics,18524249 +Papers of the American Society of Church History,Cambridge University Press,10799028| +Papers of the Bibliographical Society University of Virginia,JSTOR,21533857| +Papers of the British School at Rome,Cambridge University Press,00682462|2045239X +Papers of the Regional Science Association,Wiley Blackwell (Blackwell Publishing),10568190|14355957 +Papers on Anthropology,University of Tartu Press,14060140|17367646 +Papers on Global Change IGBP,De Gruyter Open Sp. z o.o. ,1730802X|1730802X +Papers Revista de Sociologia,Universitat Autonoma de Barcelona,02102862|20139004 +Papilio,Smithsonian Institution Biodiversity Heritage Library,01965832| +Papillomavirus Report,Maney Publishing,09574190|00000000 +Papillomavirus Research,Elsevier ,24058521| +Paradigm,SAGE Publications,09718907|23946083 +Paradigma Revista de investigación educativa,Latin America Journals Online,18174221| +PARADIGMI,Franco Angeli,11203404|2035357X +Paradigms,Informa UK (Taylor & Francis),09519750| +Paragrana,Oldenbourg Wissenschaftsverlag,09380116|21966885 +Paragraph,Edinburgh University Press,02648334|17500176 +Parallax,Informa UK (Taylor & Francis),13534645|1460700X +Parallel & Cloud Computing,American V-King Scientific Publishers,23049464|23049456 +Parallel Algorithms and Applications,Informa UK (Taylor & Francis),10637192| +Parallel and Cloud Computing Research,"""Science and Engineering Publishing, Co.""",23293381| +Parallel and Distributed Computing and Networks,ACTA Press,19255543| +Parallel Computing,Elsevier ,01678191| +Parallel Processing Letters,World Scientific ,01296264|1793642X +Paramita Historical Studies Journal,"""Department of Drama, Dance and Music, Semarang State Universtiy""",08540039|24075825 +Paranoá cadernos de arquitetura e urbanismo,Programa de Pos-Graduacao em Arquitetura e Urbanismo - Univ. de Brasilia,16777395|16790944 +Paraplegia,Nature Publishing Group,00311758| +Parasite,EDP Sciences,1252607X|17761042 +Parasite Epidemiology and Control,Elsevier ,24056731| +Parasite Immunology,Wiley Blackwell (Blackwell Publishing),01419838|13653024 +Parasites & Vectors,Springer (Biomed Central Ltd.),17563305|17563305 +Parasitología al día,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7160720 +Parasitología latinoamericana,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7177712 +Parasitologists United Journal,Medknow Publications,16877942| +Parasitology,Cambridge University Press,00311820|14698161 +Parasitology International,Elsevier ,13835769| +Parasitology Open,Cambridge University Press,20557094 +Parasitology Research,Springer-Verlag,09320113|14321955 +Parasitology Today,Elsevier ,01694758| +Parcours anthropologiques,OpenEdition,16347706|22730362 +Pardès,CAIRN,02955652|22711880 +Parenting,Informa UK (Taylor & Francis),15295192|15327922 +Parergon,Muse - Johns Hopkins University Press,18328334 +Parezja Czasopismo Forum Młodych Pedagogów przy Komitecie Nauk Pedagogicznych PAN,University of Bialystok,23537914| +PARIPEX-INDIAN JOURNAL OF RESEARCH,The Global Journals,22501991|22501991 +Parkinson s Disease,Hindawi Publishing Corporation,20908083|20420080 +Parkinsonism & Related Disorders,Elsevier ,13538020| +PARKS,IUCN,0960233X| +Parlement[s] Revue d histoire politique,CAIRN,17686520|17606233 +Parliamentary Affairs,Oxford University Press,00312290|00312290 +Parliamentary History,Wiley Blackwell (Blackwell Publishing),02642824|17500206 +Parliaments Estates and Representation,Informa UK (Taylor & Francis),02606755|1947248X +Parnassus,JSTOR,15436314| +PARS Parallel-Algorithmen -Rechnerstrukturen und -Systemsoftware,Springer-Verlag,01770454|01770454 +PARTECIPAZIONE E CONFLITTO,Franco Angeli,19727623|20356609 +Partial Answers Journal of Literature and the History of Ideas,Muse - Johns Hopkins University Press,19369247 +Participation and Empowerment An International Journal,Emerald (MCB UP ),14634449|00000000 +Participations,CAIRN,20347650|20347669 +Participatory Educational Research,Participatory Educational Research (Per),21486123 +Particle & Particle Systems Characterization,Wiley Blackwell (John Wiley & Sons),09340866|15214117 +Particle and Fibre Toxicology,Springer (Biomed Central Ltd.),17438977|17438977 +Particle Physics Insights,CrossRef test user,1178640X +Particulate Science And Technology,Informa UK (Taylor & Francis),02726351|00000000 +Particuology,Elsevier ,16742001| +Partitúra Irodalomtudományi folyóirat,Constantine the Philosopher University in Nitra,13367307 +Partner Abuse,Springer Publishing Company,19466560| +Partnership The Canadian Journal of Library and Information Practice and Research,University of Guelph,19119593 +Party Politics,SAGE Publications,13540688|14603683 +Pasado y Memoria Revista de Historia Contemporánea,Publicaciones Universidad de Alicante,15793311| +Passagens Revista Internacional de História Política e Cultura Jurídica,Passagens,19842503|19842503 +Passages,Brill Academic Publishers,13884433|15691675 +PASSATO E PRESENTE,Franco Angeli,11200650|19725493 +Passwords,Claremont Colleges Library,2169382X +Past & Present,Oxford University Press,00312746|1477464X +Pastoral Care in Education,Informa UK (Taylor & Francis),02643944|14680122 +Pastoral Psychology,Springer-Verlag,00312789|15736679 +Pastoralism Research Policy and Practice,Springer (Biomed Central Ltd.),20417136|20417136 +Pastoraltheologie,"""Vandenhoeck & Ruprecht GmbH & Co, KG""",07206259|21970831 +Pathobiology,S. Karger AG,10152008|14230291 +Pathobiology of Aging & Age-related Diseases,Co-Action Publishing,20010001 +Pathogenesis,Elsevier ,22146636| +PathoGenetics,Springer (Biomed Central Ltd.),17558417| +Pathogens,MDPI AG,20760817 +Pathogens and Disease,Oxford University Press,2049632X|2049632X +Pathogens and Global Health,Maney Publishing,20477724|20477732 +Pathologia,Zaporozhye State Medical University,23068027|23101237 +Pathologica,Springer-Verlag,00312983| +Pathologie Biologie,Elsevier ,03698114| +Pathology,Elsevier ,00313025|14653931 +Pathology & Oncology Research,Springer-Verlag,12194956|15322807 +Pathology - Research and Practice,Elsevier ,03440338| +Pathology and Immunopathology Research,S. Karger AG,02572761| +Pathology and Laboratory Medicine International,Dove Medical Press,11792698 +Pathology Case Reviews,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10829784| +Pathology Discovery,Herbert Publications,20527896 +Pathology International,Wiley Blackwell (Blackwell Publishing),13205463|14401827 +Pathology Patterns Reviews,American Society for Clinical Pathology,15422305| +Pathology Research International,Hindawi Publishing Corporation,20908091|2042003X +Pathophysiology,Elsevier ,09284680| +Pathophysiology of Cell Injury Journal,BM-Publisher,23785225 +Pathophysiology of Haemostasis and Thrombosis,S. Karger AG,14248832|14248840 +Patient Counselling and Health Education,Elsevier ,01902040| +Patient Education and Counseling,Elsevier ,07383991| +Patient Intelligence,Dove Medical Press,11793198 +Patient Preference and Adherence,Dove Medical Press,1177889X +Patient Related Outcome Measures,Dove Medical Press,1179271X +Patient Safety in Surgery,Springer (Biomed Central Ltd.),17549493|17549493 +Pattern Analysis and Applications,Springer-Verlag,14337541|1433755X +Pattern Recognition,Elsevier ,00313203| +Pattern Recognition and Image Analysis,Pleiades Publishing,10546618|15556212 +Pattern Recognition in Physics,Copernicus GmbH,21959250 +Pattern Recognition Letters,Elsevier ,01678655| +Patterns of Prejudice,Informa UK (Taylor & Francis),0031322X|14617331 +Pauta Geral - Estudos em Jornalismo,Revista Pauta Geral â?? Estudos em Jornalismo,2318857X +Pavlovian Journal of Biological Science,Springer-Verlag,00932213| +PCH Notícias & SHP News,ACTA Editora,16760220| +PCI Journal,Precast/Prestressed Concrete Institute,08879672| +PDA Journal of Pharmaceutical Science and Technology,"""Parenteral Drug Association, Inc.""",10797440| +Peabody Journal of Education,Informa UK (Taylor & Francis),0161956X|15327930 +Peace & Change,Wiley Blackwell (Blackwell Publishing),01490508|14680130 +Peace and Change,Wiley Blackwell (Blackwell Publishing),01490508|14680130 +Peace and Conflict Journal of Peace Psychology,American Psychological Association,10781919|15327949 +Peace Economics Peace Science and Public Policy,Walter de Gruyter GmbH,10792457|15548597 +Peace Review,Informa UK (Taylor & Francis),10402659|14699982 +Peacebuilding,Informa UK (Taylor & Francis),21647259|21647267 +Peake Studies,De Gruyter Open Sp. z o.o. ,10131191|10131191 +Peanut Science,American Peanut Research & Education Society,00953679| +Pearl A Journal of Library and Information Science,Diva Enterprises Private Limited,09737081|09756922 +Pearl A Journal of Library and Information Science,Diva Enterprises Private Limited, +Pecia,"""Brepols Publishers, NV""",17614961| +Pecvnia Revista de la Facultad de Ciencias Económicas y Empresariales Universidad de León,University of Leon,16999495|23404272 +Pedagogia online,University of Debrecen/ Debreceni Egyetem - Pedagogia Online,20629605 +Pedagogia Social Revista Interuniversitaria,Sociedad Iberoamericana de Pedagogia Social,11391723|11391723 +Pedagogická orientace,Masaryk University Press,12114669|18059511 +Pedagogics psychology medical-biological problems of physical training and sports,Kharkov National Pedagogical University,18189172|23087269 +Pédagogie médicale,EDP Sciences,16256484|16274784 +Pedagogies An International Journal,Informa UK (Taylor & Francis),1554480X|15544818 +Pedagogika,Lithuanian University of Educational Sciences,13920340|20290551 +Pedagogika Rodziny,De Gruyter Open Sp. z o.o. ,20828411 +Pedagogisk Forskning,Informa UK (Taylor & Francis),03329291| +Pedagogy Critical Approaches to Teaching Literature Language Composition and Culture,Duke University Press,15314200|15336255 +Pedagogy Culture and Society,Informa UK (Taylor & Francis),14681366|17475104 +Pedagogy in Health Promotion,SAGE Publications,23733799|23733802 +Pediatr (Sankt-Peterburg),ECO-Vector,20797850| +Pediatría,Elsevier ,01204912| +Pediatría (Asunción),Instituto de Investigaciones en Ciencias de la Salud,1683979X|16839803 +Pediatría Atención Primaria,Instituto de Salud Carlos III/BNCS/SciELO Espana,11397632|11397632 +Pediatria i Medycyna Rodzinna,Medical Communications Sp. z.o.o.,17341531| +Pediatria Polska,Elsevier ,00313939| +Pediatric Allergy and Immunology,Wiley Blackwell (Blackwell Publishing),09056157|13993038 +Pediatric Allergy and Respiratory Disease,Korean Academy of Pediatric Allergy and Respiratory Disease (KAMJE),1225679X| +Pediatric Allergy Immunology and Pulmonology,Mary Ann Liebert,2151321X|21513228 +Pediatric and Developmental Pathology,Society for Pediatric Pathology,10935266|16155742 +Pediatric Anesthesia,Wiley Blackwell (Blackwell Publishing),11555645|14609592 +Pediatric Annals,"""SLACK, Inc.""",00904481| +Pediatric Asthma Allergy & Immunology,Mary Ann Liebert,08831874| +Pediatric Asthma Allergy & Immunology,Mary Ann Liebert,08831874| +Pediatric Blood & Cancer,Wiley Blackwell (John Wiley & Sons),15455009|15455017 +Pediatric Cardiology,Springer-Verlag,01720643|14321971 +Pediatric Cardiology and Cardiac Surgery,The Japanese Society of Pediatric Cardiology and Cardiac Surgery,09111794|21872988 +Pediatric Case Reviews,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15329798| +Pediatric Clinics of North America,Elsevier ,00313955| +Pediatric Critical Care Medicine,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15297535| +Pediatric Dental Journal,Elsevier ,09172394| +Pediatric Dermatology,Wiley Blackwell (Blackwell Publishing),07368046|15251470 +Pediatric Diabetes,Wiley Blackwell (Blackwell Publishing),1399543X|13995448 +Pediatric Drugs,Springer-Verlag,11745878|11792019 +Pediatric Emergency Care,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,07495161| +Pediatric Endocrinology,PROQURAT Andrzej Prokurat,17300282|18989373 +Pediatric Endocrinology Diabetes and Metabolism,PROQURAT Andrzej Prokurat,2081237X|20838441 +Pediatric Endosurgery & Innovative Techniques,Mary Ann Liebert,10926410| +Pediatric Exercise Science,Human Kinetics,08998493|15432920 +Pediatric Gastroenterology Hepatology & Nutrition,"""The Korean Society of Pediatric Gastroenterology, Hepatology and Nutrition (KAMJE)""",22348646|22348840 +Pediatric Health,Future Medicine,17455111|1745512X +Pediatric Health Medicine and Therapeutics,Dove Medical Press,11799927 +Pediatric Hematology and Oncology,Informa UK (Taylor & Francis),08880018|15210669 +Pediatric Hematology Oncology Journal,Elsevier ,24681245| +Pediatric Infection and Vaccine,The Korean Society of Pediatric Infectious Diseases,12263923| +Pediatric Infectious Disease,Elsevier ,22128328| +Pediatric Infectious Disease,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,02779730| +Pediatric Nephrology,Springer-Verlag,0931041X|1432198X +Pediatric Neurology,Elsevier ,08878994| +Pediatric Neurology Briefs,Pediatric Neurology Briefs Publishers,10433155|21666482 +Pediatric Neurosurgery,S. Karger AG,10162291|14230305 +Pediatric News,CrossRef test user,0031398X| +Pediatric Obesity,Wiley Blackwell (Blackwell Publishing),20476302| +Pediatric Oncall,Pediatric Oncall,09730966|09730958 +Pediatric Pathology,Informa UK (Taylor & Francis),02770938| +Pediatric Pathology & Laboratory Medicine,Informa UK (Taylor & Francis),10771042| +Pediatric Pathology & Molecular Medicine,Informa UK (Taylor & Francis),15227952| +Pediatric Physical Therapy,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,08985669| +Pediatric Pulmonology,Wiley Blackwell (John Wiley & Sons),87556863|10990496 +Pediatric Radiology,Springer-Verlag,03010449|14321998 +Pediatric Rehabilitation,Informa UK (Taylor & Francis),13638491| +Pediatric Reports,PAGEPress Publications,2036749X|20367503 +Pediatric Research,Nature Publishing Group,00313998|15300447 +Pediatric Review International Journal of Pediatric Research,Academy of Medical and Health Sciences Research,23495499|23493267 +Pediatric Rheumatology,Springer (Biomed Central Ltd.),15460096|15460096 +Pediatric Surgery International,Springer-Verlag,01790358|14379813 +Pediatric Transplantation,Wiley Blackwell (Blackwell Publishing),13973142|13993046 +Pediatric Traumatology Orthopaedics and Reconstructive Surgery,ECO-Vector,23093994|24108731 +Pediatric Urology Case Reports,Pediatric Urology Case Reports,21482969| +PEDIATRICS,American Academy of Pediatrics,00314005|10984275 +Pediatrics & Neonatology,Elsevier ,18759572| +Pediatrics & Therapeutics,OMICS Publishing Group,21610665 +Pediatrics and Neonatal Nursing - Open Journal,Openventio Publishers,23771569 +Pediatrics and Neonatal Nursing Open Access ( ISSN 2470-0983 ),"""Sci Forschen, Inc.""",24700983 +Pediatrics and Related Topics,Informa UK (Taylor & Francis),0030932X| +Pediatrics in Review,American Academy of Pediatrics,01919601|15263347 +Pediatrics International,Wiley Blackwell (Blackwell Publishing),13288067|1442200X +Pediatrics Research International Journal,IBIMA Publishing,23299282 +Pedobiologia,Elsevier ,00314056| +Pedosphere,Elsevier ,10020160| +Peer-to-Peer Networking and Applications,Springer-Verlag,19366442|19366450 +PeerJ,PeerJ,21678359 +PeerJ Computer Science,PeerJ,23765992 +Pegem Eğitim ve Öğretim Dergisi,Pegem Akademi Yayincilik Egitim Danismanlik Hizmetleri,21460655|2148239X +Peking University Law Journal,Informa UK (Taylor & Francis),20517483|20525907 +Pelvi-périnéologie,Springer-Verlag,17783712|17783720 +Península,Elsevier ,18705766| +Pennsylvania History A Journal of Mid-Atlantic Studies,The Pennsylvania State University Press,00314528|21532109 +Pennsylvania Legacies,Historical Society of Pennsylvania,15446360|2169687X +Pennsylvania Libraries Research & Practice,"""University Library System, University of Pittsburgh""",23247878 +Pensamiento Educativo Revista de Investigación Educacional Latinoamericana,Pontificia Universidad Catolica de Chile,07171013|07190409 +Pensamiento Jurídico,Universidad Nacional de Colombia,01221108|23576170 +Pensamiento Psicológico,Editorial Pontificia Universidad Javeriana,16578961| +Pensamiento Revista de investigación e información filosófica,Universidad Pontificia Comillas,00314749|23865822 +Pensamiento y Cultura,Universidad de la Sabana,01230999|20275331 +Pensando Psicología,Universidad Cooperativa de Colombia - UCC,19003099| +Pensar - Revista de Ciências Jurídicas,Fundacao Edson Queiroz,15198464|23172150 +Pensar a Prática,Universidade Federal de Goias,14154676|19806183 +Pensar en Movimiento Revista de Ciencias del Ejercicio y la Salud,Universidad de Costa Rica,14090724|16594436 +Pensar la Publicidad Revista Internacional de Investigaciones Publicitarias,Universidad Complutense de Madrid,18878598|19895143 +Pensares em Revista,Universidade do Estado do Rio de Janeiro UERJ,23172215 +Pensée plurielle,CAIRN,13760963|17821479 +Pensions An International Journal,Nature Publishing Group - Macmillan Publishers,14785315|1750208X +PentecoStudies An Interdisciplinary Journal for Research on the Pentecostal and Charismatic Movements,Equinox Publishing,20413599|18717691 +Penza Psychological Newsletter,Penza Psychological Newsletter,23127392 +PEOPLE International Journal of Social Sciences,Global Research & Development Services,24545899 +People Place and Policy Online,"""CRESR, Sheffield Hallam University""",17538041|17538041 +Peptides,Elsevier ,01969781| +Peptidomics,De Gruyter Open Sp. z o.o. ,20847203 +PER ASPERA AD ASTRA,University Library of Pecs,20646038 +Per Jacobsson Foundation Lectures,International Monetary Fund,02523108| +Per Linguam,Stellenbosch University - Per Linguam,02592312|22240012 +Per Musi,SciELO,15177599|23176377 +Perception,SAGE Publications,03010066|14684233 +Perception & Psychophysics,Springer - Psychonomic Society,00315117|15325962 +Perceptual and Motor Skills,SAGE Publications,00315125|1558688X +Perfect Beat,Equinox Publishing,10382909|18360343 +Perfil de Coyuntura Económica,Universidad de Antioquia,16574214| +Perfiles Educativos,Elsevier ,01852698| +Perfiles Latinoamericanos,"""Facultad Latinoamericana de Ciencias Sociales, Mexico (FLACSO)""",01887653|23094982 +Performance & Instruction,Wiley Blackwell (John Wiley & Sons),02735326|19319177 +Performance & Instruction Journal,Wiley Blackwell (John Wiley & Sons),87500191|19319185 +Performance + Instruction,Wiley Blackwell (John Wiley & Sons),08841985|19320166 +Performance Art Magazine,MIT Press,23742232 +Performance Enhancement & Health,Elsevier ,22112669| +Performance Evaluation,Elsevier ,01665316| +Performance Improvement,Wiley Blackwell (John Wiley & Sons),10908811|19308272 +Performance Improvement Quarterly,Wiley Blackwell (John Wiley & Sons),08985952|19378327 +Performance Measurement and Metrics,Emerald (MCB UP ),14678047|00000000 +Performance Practice Review,Claremont Colleges Library,10441638|21668205 +Performance Research,Informa UK (Taylor & Francis),13528165|14699990 +Performing Arts Journal,JSTOR,07358393| +Performing Arts Review,Informa UK (Taylor & Francis),00315249| +Performing Ethos International Journal of Ethics in Theatre and Performance,Intellect,17571979|17571987 +Performing Islam,Intellect,20431015|20431023 +Perfusion,SAGE Publications,02676591|1477111X +Perichoresis,De Gruyter Open Sp. z o.o. ,22847308|22847308 +Perifèria Revista d investigació i formació en Antropologia,Universitat Autonoma de Barcelona,18858996 +Perinatal Journal,Deomed Publishing,13005251|13053124 +PerinatalMedizin,Springer-Verlag,09367160|14322005 +Perinatología y Reproducción Humana,Elsevier ,01875337| +PERINATOLOGIYA I PEDIATRIYA,"""Group of Companies, Med Expert, LLC""",19925891|24124613 +Periodica Mathematica Hungarica,Springer-Verlag,00315303|15882829 +Periodica Polytechnica Architecture,"""Periodica Polytechnica, Budapest University of Technology and Economics""",0324590X|17893437 +Periodica Polytechnica Chemical Engineering,"""Periodica Polytechnica, Budapest University of Technology and Economics""",03245853|15873765 +Periodica Polytechnica Civil Engineering,"""Periodica Polytechnica, Budapest University of Technology and Economics""",05536626|15873773 +Periodica Polytechnica Electrical Engineering,"""Periodica Polytechnica, Budapest University of Technology and Economics""",0031532X|15873781 +Periodica Polytechnica Electrical Engineering and Computer Science,"""Periodica Polytechnica, Budapest University of Technology and Economics""",20645260|20645279 +Periodica Polytechnica Mechanical Engineering,"""Periodica Polytechnica, Budapest University of Technology and Economics""",03246051|1587379X +Periodica Polytechnica Social and Management Sciences,"""Periodica Polytechnica, Budapest University of Technology and Economics""",14163837|15873803 +Periodica Polytechnica Transportation Engineering,"""Periodica Polytechnica, Budapest University of Technology and Economics""",03037800|15873811 +Periódico Científico do Núcleo de Biociências,Instituto Metodista Izabela Hendrix,22381945 +Periódico Eletrônico Fórum Ambiental da Alta Paulista,ANAP - Associacao Amigos de Natureza de Alta Paulista,19800827 +Periódico Técnico e Científico Cidades Verdes,ANAP - Associacao Amigos de Natureza de Alta Paulista,23178604 +Periodicum Biologorum,Hrvatski Prirodoslovno Drustvo (Croatian Society for Natural Sciences),00315362| +Periodontology 2000,Wiley Blackwell (Blackwell Publishing),09066713|16000757 +Perioperative Care and Operating Room Management,Elsevier ,24056030| +Perioperative Medicine,Springer (Biomed Central Ltd.),20470525|20470525 +Perioperative Medizin,Elsevier ,18752772| +Perioperative Nursing Clinics,Elsevier ,15567931| +Peritia,"""Brepols Publishers, NV""",03321592| +Peritoneal Dialysis International,MultiMed Inc.,08968608|17184304 +Perm National Research Polytechnic University Aerospace Engineering Bulletin,PNRPU Publishing Office,22249982|23046457 +Permafrost and Periglacial Processes,Wiley Blackwell (John Wiley & Sons),10456740|10991530 +Persica,Peeters Publishers,790893 +Person-Centered & Experiential Psychotherapies,Informa UK (Taylor & Francis),14779757|17529182 +Persona y Bioética,Universidad de la Sabana,01233122|20275382 +Persona y Derecho,Universidad de Navarra,02114526|22546243 +Personal and Ubiquitous Computing,Springer-Verlag,16174909|16174917 +Personal Relationships,Wiley Blackwell (Blackwell Publishing),13504126|14756811 +Personal Technologies,Springer-Verlag,09492054|14333066 +Personality and Individual Differences,Elsevier ,01918869| +Personality and Mental Health,Wiley Blackwell (John Wiley & Sons),19328621|1932863X +Personality and Social Psychology Bulletin,SAGE Publications,01461672|15527433 +Personality and Social Psychology Review,SAGE Publications,10888683|15327957 +Personality Disorders Theory Research and Treatment,American Psychological Association,19492715|19492723 +Personalized Medicine,Future Medicine,17410541|1744828X +Personalized Medicine Universe,Elsevier ,21864950| +Personnel Psychology,Wiley Blackwell (Blackwell Publishing),00315826|17446570 +Personnel Review,Emerald (MCB UP ),00483486|00000000 +Persoonia - Molecular Phylogeny and Evolution of Fungi,Naturalis Biodiversity Center,00315850| +Perspecta,JSTOR,00790958| +Perspectiva,Universidade Federal de Santa Catarina,01025473|2175795X +Perspectiva Econômica,Universidade do Vale do Rio Dos Sinos - UNISINOS,1808575X +Perspectiva Educacional,Pontifica Universidad Catolica de Valparaiso,7189729 +Perspectiva geográfica,Universidad Pedagogica y Tecnologica de Colombia,01233769| +Perspectivas em Análise do Comportamento,Associacao Paradigma - Centro de Ciencias e Tecnologia do Comportamento,21773548|21773548 +Perspectivas em Ciência da Informação,SciELO,14139936|14139936 +Perspectivas en Nutrición Humana,Universidad de Antioquia,01244108|2248454X +Perspectivas Médicas,Perspectivas Medicas - Faculty of Medicine,01002929|01002929 +Perspective,Informa UK (Taylor & Francis),00483494| +Perspectives,Informa UK (Taylor & Francis),0907676X|17476623 +Perspectives chinoises,PERSEE Program,10219013|19964609 +Perspectives in Biology and Medicine,Muse - Johns Hopkins University Press,15298795 +Perspectives in Clinical Research,Medknow Publications,22293485| +Perspectives in Drug Discovery and Design,Springer-Verlag,09282866|15739023 +Perspectives in Healthcare Risk Management,Wiley Blackwell (John Wiley & Sons),08991073| +Perspectives in International Librarianship,Hamad bin Khalifa University Press (HBKU Press),22198962| +Perspectives in Medical Virology,Elsevier , +Perspectives in Medicinal Chemistry,"""Libertas Academica, Ltd.""",1177391X +Perspectives in Medicine,Elsevier ,2211968X| +Perspectives in Nursing Science,"""The Research Institute of Nursing Science, Seoul National University (KAMJE)""",22882898|22887687 +Perspectives in Phycology,Schweizerbart,2198011X| +Perspectives in Plant Ecology Evolution and Systematics,Elsevier ,14338319| +Perspectives in Plastic Surgery,Thieme Publishing Group,08923957|1521575X +Perspectives In Psychiatric Care,Wiley Blackwell (Blackwell Publishing),00315990|17446163 +Perspectives in Public Health,SAGE Publications,17579139|17579147 +Perspectives in Science,Elsevier ,22130209| +Perspectives in Vaccinology,Elsevier ,22107622| +Perspectives in Vascular Surgery,Thieme Publishing Group,08948046|15215768 +Perspectives in Vascular Surgery and Endovascular Therapy,SAGE Publications,15310035| +Perspectives in Vernacular Architecture,JSTOR,08879885| +Perspectives interdisciplinaires sur le travail et la santé,OpenEdition,14819384|14819384 +Perspectives médiévales,OpenEdition,22625534|22625534 +Perspectives of Innovations Economics and Business,Prague Development Center ,18040527|18040519 +Perspectives of New Music,Perspectives of New Music,00316016|00316016 +Perspectives of the ASHA Special Interest Groups,American Speech-Language-Hearing Association,23814764| +Perspectives on Administration and Supervision,American Speech-Language-Hearing Association,19407238|19407246 +Perspectives on Audiology,American Speech-Language-Hearing Association,19408587|19408587 +Perspectives on Augmentative and Alternative Communication,American Speech-Language-Hearing Association,19407475|19407483 +Perspectives on Aural Rehabilitation and Its Instrumentation,American Speech-Language-Hearing Association,19407688|19407696 +Perspectives on Communication Disorders and Sciences in Culturally and Linguistically Diverse Populations,American Speech-Language-Hearing Association,1940753X|19407548 +Perspectives on European Politics and Society,Informa UK (Taylor & Francis),15705854|15680258 +Perspectives on Federalism,Walter de Gruyter GmbH,20365438 +Perspectives on Fluency and Fluency Disorders,American Speech-Language-Hearing Association,19407599|19407602 +Perspectives on Gerontology,American Speech-Language-Hearing Association,19407785|19407793 +Perspectives on Global Development and Technology,Brill Academic Publishers,15691500|15691497 +Perspectives on Global Issues in Communication Sciences and Related Disorders,American Speech-Language-Hearing Association,21611572|21611572 +Perspectives on Hearing and Hearing Disorders in Childhood,American Speech-Language-Hearing Association,1940770X|19407718 +Perspectives on Hearing and Hearing Disorders Research and Diagnostics,American Speech-Language-Hearing Association,1940767X|19407661 +Perspectives on Hearing Conservation and Occupational Audiology,American Speech-Language-Hearing Association,19407726|19407734 +Perspectives on Issues in Higher Education,American Speech-Language-Hearing Association,19407521|19407513 +Perspectives on Language Learning and Education,American Speech-Language-Hearing Association,19407742|19407750 +Perspectives on Medical Education,Springer-Verlag,22122761|2212277X +Perspectives on Neurophysiology and Neurogenic Speech and Language Disorders,American Speech-Language-Hearing Association,19407769|19407777 +Perspectives on Political Science,Informa UK (Taylor & Francis),10457097|19305478 +Perspectives on Politics,Cambridge University Press,15375927|15410986 +Perspectives on Psychological Science,SAGE Publications,17456916|17456924 +Perspectives on Public Health Issues Related to Hearing and Balance,American Speech-Language-Hearing Association,21627800|21627800 +Perspectives on School-Based Issues,American Speech-Language-Hearing Association,19407807|19407815 +Perspectives on Science,MIT Press,10636145|15309274 +Perspectives on Sexual and Reproductive Health,Guttmacher Institute,15386341|19312393 +Perspectives on Speech Science and Orofacial Disorders,American Speech-Language-Hearing Association,19407572|19407580 +Perspectives on Swallowing and Swallowing Disorders (Dysphagia),American Speech-Language-Hearing Association,19407556|19407564 +Perspectives on Telepractice,American Speech-Language-Hearing Association,21622353|21622353 +Perspectives on Voice and Voice Disorders,American Speech-Language-Hearing Association,19407505|19407491 +Perspectives Policy and Practice in Higher Education,Informa UK (Taylor & Francis),13603108|14607018 +Perspectives Psy,EDP Sciences,00316032|21184038 +Perspektiven der Philosophie,Philosophy Documentation Center,01711288| +Perspektiven der Wirtschaftspolitik,Walter de Gruyter GmbH,14656493|14682516 +Pertinence,"""Al Manhal FZ, LLC""",22216359| +Pervasive and Mobile Computing,Elsevier ,15741192| +Pesquisa Agropecuária Brasileira,SciELO,0100204X|0100204X +Pesquisa Agropecuária Pernambucana,Instituto Agronomico de Pernambuco,1008501 +Pesquisa Agropecuária Tropical,SciELO,15176398|19834063 +Pesquisa Brasileira em Odontopediatria e Clínica Integrada,Associacao de Apoio a Pesquisa em Saude Bucal,15190501|19834632 +Pesquisa em Educação Ambiental,Departamento de Educacao da Universidade Estadual Paulista â?? UNESP,2177580X +Pesquisa Florestal Brasileira,Embrapa Florestas,19832605|18093647 +Pesquisa Odontológica Brasileira,SciELO,15177491|15177491 +Pesquisa Operacional,SciELO,01017438|01017438 +Pesquisa Veterinária Brasileira,SciELO,0100736X|0100736X +PesquisAtor,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,22387838|22387838 +Pest Management Science,Wiley Blackwell (John Wiley & Sons),1526498X|15264998 +Pesticidas Revista de Ecotoxicologia e Meio Ambiente,Universidade Federal do Parana,01037277|01037277 +Pesticide Biochemistry and Physiology,Elsevier ,00483575|10959939 +Pesticide Outlook,The Royal Society of Chemistry,09561250|14658933 +Pesticide Science,Wiley Blackwell (John Wiley & Sons),0031613X|10969063 +Pesticidi,National Library of Serbia,03529029| +Pesticidi i fitomedicina,National Library of Serbia,18203949|24061026 +PET Clinics,Elsevier ,15568598| +Petroleum,Elsevier ,24056561| +Petroleum Chemistry,Pleiades Publishing,09655441|15556239 +Petroleum Chemistry U S S R,Elsevier ,00316458| +Petroleum Exploration and Development,Elsevier ,18763804| +Petroleum Geology & Experiment,Springer - Global Science Journals,23637625 +Petroleum Geoscience,Geological Society of London,13540793|2041496X +Petroleum Science,Springer-Verlag,16725107|19958226 +Petroleum Science and Technology,Informa UK (Taylor & Francis),10916466|15322459 +Petroleum Technology,Society of Petroleum Engineers,03699013| +Petrology,Pleiades Publishing,08695911|15562085 +pferde spiegel,Thieme Publishing Group,18603203|18680445 +Pflege,Hogrefe Publishing Group,10125302|1664283X +Pflegewissenschaft,hpsmedia,16623029| +Pflügers Archiv - European Journal of Physiology,Springer-Verlag,00316768|14322013 +Pharmaceutica Acta Helvetiae,Elsevier ,00316865| +Pharmaceutica Analytica Acta,OMICS Publishing Group,21532435|21532435 +Pharmaceutical & Diagnostic Innovation,Springer-Verlag,11763469|22306048 +Pharmaceutical Analytical Chemistry Open Access,OMICS Publishing Group,24712698 +Pharmaceutical Biology,Informa UK (Taylor & Francis),13880209|17445116 +Pharmaceutical Bioprocessing,"""Future Science, LTD""",20489145|20489153 +Pharmaceutical Bulletin,Pharmaceutical Society of Japan,03699471|18811345 +Pharmaceutical Care and Research,Publishing House of Pharmaceutical Care and Research,16712838|16712838 +Pharmaceutical Chemistry Journal,Springer-Verlag,0091150X|15739031 +Pharmaceutical Crops,Bentham Science,22102906| +Pharmaceutical Development and Regulation,Springer-Verlag,11759046| +Pharmaceutical Development and Technology,Informa UK (Taylor & Francis),10837450|10979867 +Pharmaceutical Innovation,Springer-Verlag,15371328| +Pharmaceutical Medicine,Springer-Verlag,11782595|11791993 +Pharmaceutical Methods,EManuscript Services,22294708|22294716 +Pharmaceutical Nanotechnology,Bentham Science,22117385| +Pharmaceutical News,Informa UK (Taylor & Francis),1071894X| +Pharmaceutical Patent Analyst,"""Future Science, LTD""",20468954| +Pharmaceutical Programming,Maney Publishing,17570921|1757093X +Pharmaceutical Regulatory Affairs Open Access,OMICS Publishing Group,21677689|21677689 +Pharmaceutical Research,Springer-Verlag,07248741|1573904X +Pharmaceutical Science & Technology Today,Elsevier ,14615347| +Pharmaceutical Sciences,International Society for Phytocosmetic Sciences,23832886 +Pharmaceutical Statistics,Wiley Blackwell (John Wiley & Sons),15391604|15391612 +Pharmaceutical Technology in Hospital Pharmacy,Walter de Gruyter GmbH,23652411|2365242X +Pharmaceuticals,MDPI AG,14248247 +Pharmaceuticals Policy and Law,IOS Press,13892827|2210495X +Pharmaceutics,MDPI AG,19994923 +Pharmaceutisch Weekblad,Springer-Verlag,00316911|1573739X +Pharmaceutisch Weekblad Scientific Edition,Springer-Verlag,01676555| +Pharmaciana,Universitas Ahmad Dahlan ,20884559|24770256 +PharmacoEconomics,Springer-Verlag,11707690|11792027 +PharmacoEconomics & Outcomes News,Springer-Verlag,11735503|11792043 +PharmacoEconomics German Research Articles,Springer-Verlag,16123727|1868677X +PharmacoEconomics Italian Research Articles,Springer-Verlag,15909158|20356137 +PharmacoEconomics Spanish Research Articles,Springer-Verlag,1695405X|19895453 +Pharmacoepidemiology and Drug Safety,Wiley Blackwell (John Wiley & Sons),10538569|10991557 +Pharmacogenetics,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,0960314X| +Pharmacogenetics and Genomics,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,17446872| +Pharmacogenomics,Future Medicine,14622416|17448042 +Pharmacogenomics and Personalized Medicine,Dove Medical Press,11787066 +Pharmacognosy Communications,EManuscript Services,22490159|22490167 +Pharmacognosy Journal,EManuscript Services,09753575|09753575 +Pharmacognosy Magazine,Medknow Publications,09731296| +Pharmacognosy Research,Medknow Publications,09748490| +Pharmacognosy Reviews,Medknow Publications,09737847| +Pharmacologia,Insight Knowledge,20444648| +Pharmacologia Clinica,Springer-Verlag,03699498| +Pharmacological Reports,Elsevier ,17341140| +Pharmacological Research,Elsevier ,10436618|10961186 +Pharmacological Research Communications,Elsevier ,00316989| +Pharmacological Reviews,American Society for Pharmacology & Experimental Therapeutics,00316997|15210081 +Pharmacology,S. Karger AG,00317012|14230313 +Pharmacology & Therapeutics,Elsevier ,01637258| +Pharmacology & Therapeutics Part A Chemotherapy Toxicology and Metabolic Inhibitors,Elsevier ,03625478| +Pharmacology & Therapeutics Part B General and Systematic Pharmacology,Elsevier ,0306039X| +Pharmacology & Therapeutics Part C Clinical Pharmacology and Therapeutics,Elsevier ,03625486| +Pharmacology & Toxicology,Wiley Blackwell (Blackwell Publishing),09019928|16000773 +Pharmacology & Pharmacy,"""Scientific Research Publishing, Inc.""",21579423|21579431 +Pharmacology Biochemistry and Behavior,Elsevier ,00913057| +Pharmacology Research & Perspectives,Wiley Blackwell (John Wiley & Sons),20521707| +Pharmacology Reviews and Communications,Informa UK (Taylor & Francis),10604456| +Pharmacology Toxicology and Biomedical Reports,EManuscript Services,23954736|23954736 +Pharmacopsychiatry,Thieme Publishing Group,01763679|14390795 +PharmacoResources,Springer-Verlag,11728299| +Pharmacotherapy The Journal of Human Pharmacology and Drug Therapy,Wiley Blackwell (John Wiley & Sons),02770008| +Pharmacy,MDPI AG,22264787 +Pharmacy & Pharmacology,Volgograd State Medical University,23079266|24132241 +Pharmacy and Pharmacology Communications,Royal Pharmaceutical Society,14608081| +Pharmacy Education,Informa UK (Taylor & Francis),15602214| +Pharmacy Information,Hans Publishers,2160441X|21604452 +Pharmacy Practice,Centro de Investigaciones y Publicaciones Farmaceuticas (CIPF),1885642X|1885642X +Pharmacy Today,Elsevier ,10420991| +Pharmacy World & Science,Springer-Verlag,09281231| +PharmaDeals Review,PharmaVentures,17567874 +PharmaNutrition,Elsevier ,22134344| +Pharmazie in unserer Zeit,Wiley Blackwell (John Wiley & Sons),00483664|16151003 +Phase Transitions,Informa UK (Taylor & Francis),01411594|10290338 +PHASELIS,PHASELIS,21497826| +Phasis,Faculdade de Letras da UFMG,16783549| +Phenomenology and the Cognitive Sciences,Springer-Verlag,15687759|15728676 +Phi Delta Kappan,SAGE Publications,00317217|19406487 +Philadelphia Museum of Art Bulletin,JSTOR,00317314| +PHILHARMONICA International Music Journal,"""NB-Media, Ltd.""",13394002|2453613X +Philip Roth Studies,Purdue University Press,15473929|19405278 +Philippine Computing Journal,PhilJOL,19081995| +Philippine Information Technology Journal,PhilJOL,20120761| +Philippine Journal of Internal Medicine,PhilJOL,01199641| +Philippine Journal of Otolaryngology Head and Neck Surgery,PhilJOL,19084889|20941501 +Philippine Journal of Systematic Biology,PhilJOL,19086865| +Philippine Political Science Journal,Informa UK (Taylor & Francis),01154451|2165025X +Philippine Population Review,PhilJOL,16558049| +Philippine Scientific Journal,PhilJOL,00317799| +Philippine Sociological Review,PhilJOL,00317810| +Philippine Studies,Ateneo de Manila University,00317837| +Philippine Studies Historical and Ethnographic Viewpoints,Muse - Johns Hopkins University Press,22441093|22441638 +Philips Journal of Research,Elsevier ,01655817| +Philo,Philosophy Documentation Center,10983570| +Philologia,De Gruyter Open Sp. z o.o. ,14515342|18205682 +Philological Sciences Scientific Essays of Higher Education,INOITs ALMAVEST Ltd.,23104287| +Philologus,Oldenbourg Wissenschaftsverlag,00317985|21967008 +Philology & Human,Altai State University,19927940| +Philonsorbonne,OpenEdition,1255183X| +Philonsorbonne,OpenEdition,1255183X|22707336 +Philosophia,Springer-Verlag,00483893|15749274 +Philosophia Africana,Philosophy Documentation Center,15398250| +Philosophia Mathematica,Oxford University Press,00318019|17446406 +Philosophia Naturalis,Vittorio Klostermann GMBH,00318027|14392607 +Philosophia Reformata,Brill Academic Publishers,00318035|23528230 +Philosophia Scientae,OpenEdition,12812463|17754283 +Philosophical Books,Wiley Blackwell (Blackwell Publishing),00318051|14680149 +Philosophical Constructs for the Chiropractic Profession,Elsevier ,22149163| +Philosophical Explorations,Informa UK (Taylor & Francis),13869795|17415918 +Philosophical Inquiry,Philosophy Documentation Center,1105235X| +Philosophical Investigations,Wiley Blackwell (Blackwell Publishing),01900536|14679205 +Philosophical Issues,Wiley Blackwell (Blackwell Publishing),15336077|15336077 +Philosophical Magazine,Informa UK (Taylor & Francis),14786435|14786433 +Philosophical Magazine A,Informa UK (Taylor & Francis),01418610|14606992 +Philosophical Magazine Letters,Informa UK (Taylor & Francis),09500839|13623036 +Philosophical Magazine Part B,Informa UK (Taylor & Francis),13642812|14636417 +Philosophical Magazine Series 1,Informa UK (Taylor & Francis),19415796|1941580X +Philosophical Magazine Series 2,Informa UK (Taylor & Francis),19415850|19415869 +Philosophical Magazine Series 3,Informa UK (Taylor & Francis),19415966|19415974 +Philosophical Papers,Informa UK (Taylor & Francis),05568641|19968523 +Philosophical Papers and Review,Academic Journals,2141663X +Philosophical Perspectives,Wiley Blackwell (Blackwell Publishing),15208583|15208583 +Philosophical Practice,Informa UK (Taylor & Francis),17428173| +Philosophical Problems of Information Technologies and Cyberspace,Pyatigorsk State Linguistic University,23053763 +Philosophical Psychology,Informa UK (Taylor & Francis),09515089|1465394X +Philosophical Review,Duke University Press,00318108|15581470 +Philosophical Studies,Philosophy Documentation Center,05540739| +Philosophical Studies,Springer-Verlag,00318116|15730883 +Philosophical Topics,Philosophy Documentation Center,02762080| +Philosophical Transactions of The Royal Society A Mathematical Physical and Engineering Sciences,The Royal Society,1364503X|14712962 +Philosophical Transactions of The Royal Society B Biological Sciences,The Royal Society,09628436|14712970 +Philosophical Transactions of the Royal Society of London,The Royal Society,02610523| +Philosophical Transactions of the Royal Society of London Series B Containing Papers of a Biological Character (1896-1934),The Royal Society,02643960| +Philosophie,CAIRN,02941805|1968391X +Philosophies,MDPI AG,24099287 +Philosophique,OpenEdition,07512902|22594574 +Philosophiques,Consortium Erudit,03162923|14921391 +Philosophische Rundschau,Mohr Siebeck,00318159| +Philosophischer Literaturanzeiger,Vittorio Klostermann GMBH,00318175|21945845 +Philósophos - Revista de Filosofia,Universidade Federal de Goias,14142236|19822928 +Philosophy,Cambridge University Press,00318191|1469817X +Philosophy & Geography,Informa UK (Taylor & Francis),10903771| +Philosophy & Social Criticism,SAGE Publications,01914537|1461734X +Philosophy & Technology,Springer-Verlag,22105433|22105441 +Philosophy & Public Affairs,Wiley Blackwell (Blackwell Publishing),00483915|10884963 +Philosophy and Foundations of Physics,Elsevier , +Philosophy and Geography,Informa UK (Taylor & Francis),10903771|00000000 +Philosophy and History,Philosophy Documentation Center,0016884X| +Philosophy and Literature,Muse - Johns Hopkins University Press,1086329X +Philosophy and Phenomenological Research,Wiley Blackwell (Blackwell Publishing),00318205|19331592 +Philosophy and Progress,Bangladesh Journals Online,16072278|23056851 +Philosophy and Rhetoric,The Pennsylvania State University Press,00318213|15272079 +Philosophy and Theology,Philosophy Documentation Center,08902461| +Philosophy and Theory in Biology,University of Michigan Library,19490739 +Philosophy Compass,Wiley Blackwell (Blackwell Publishing),17479991|17479991 +Philosophy East and West,Muse - Johns Hopkins University Press,00318221|15291898 +Philosophy Ethics and Humanities in Medicine,Springer (Biomed Central Ltd.),17475341|17475341 +Philosophy in Context,Philosophy Documentation Center,07422733| +Philosophy in Context,Philosophy Documentation Center,07422733| +Philosophy in the Contemporary World,Philosophy Documentation Center,10771999| +Philosophy of Management,Philosophy Documentation Center,17403812| +Philosophy of Music Education Review,Indiana University Press,10635734|15433412 +Philosophy of Photography,Intellect,20403682|20403690 +Philosophy of Science,The University of Chicago Press,00318248|1539767X +Philosophy of the Social Sciences,SAGE Publications,00483931|15527441 +Philosophy Psychiatry & Psychology,Muse - Johns Hopkins University Press,10863303 +Philosophy Psychiatry & Psychology,Muse - Johns Hopkins University Press,10863303 +Philosophy Psychology Pedagogy,Saratov State University,18197671| +Philosophy Research Archives,Philosophy Documentation Center,01640771| +Philosophy Study,David Publishing Company,21595321|21595321 +Philosophy Theology and the Sciences,Mohr Siebeck,21959773|21972834 +Philosophy Today,Philosophy Documentation Center,00318256| +Phlebological Review,Termedia Sp. z.o.o.,12327174|12327174 +Phlebologie,Schattauer GmbH (Phlebologie),0939978X| +Phlebology The Journal of Venous Disease,SAGE Publications,02683555|17581125 +Phoenix,Phoenix,00318299| +Phoînix,Coimbra University Press,14135787| +Phonetica,S. Karger AG,00318388|14230321 +Phonology,Cambridge University Press,09526757|14698188 +Phosphine-Catalyzed Reaction of Alkenes with Electrophile–Nucleophiles,Thieme Publishing Group,20400365 +Phosphine-Catalyzed Reaction of Allenes with Electrophile–Nucleophiles,Thieme Publishing Group,20400381 +Phosphine-Catalyzed [3 + 2] Annulation with γ-Substituted Allenoates,Thieme Publishing Group,20400373 +Phosphorous and Sulfur and the Related Elements,Informa UK (Taylor & Francis),0308664X| +Phosphorus Research Bulletin,Japanese Association of Inorganic Phosphorus Chemistry,09184783|18822363 +Phosphorus Sulfur and Silicon and the Related Elements,Informa UK (Taylor & Francis),10426507|15635325 +Photoacoustics,Elsevier ,22135979| +Photochemical & Photobiological Sciences,The Royal Society of Chemistry,1474905X|14749092 +Photochemistry and Photobiology,Wiley Blackwell (Blackwell Publishing),00318655|00318655 +Photodermatology Photoimmunology & Photomedicine,Wiley Blackwell (Blackwell Publishing),09054383|16000781 +Photodiagnosis and Photodynamic Therapy,Elsevier ,15721000| +Photogrammetria,Elsevier ,00318663| +Photogrammetric Engineering & Remote Sensing,American Society for Photogrammetry and Remote Sensing,00991112| +Photogrammetrie - Fernerkundung - Geoinformation,Schweizerbart,14328364| +Photographies,Informa UK (Taylor & Francis),17540763| +Photographies,Informa UK (Taylor & Francis),17540763|17540771 +Photography and Culture,Informa UK (Taylor & Francis),17514517|17514525 +Photomedicine and Laser Surgery,Mary Ann Liebert,15495418|00000000 +Photonic Network Communications,Springer (Kluwer Academic Publishers),1387974X|15728188 +Photonic Sensors,Springer-Verlag,16749251|21907439 +Photonics,MDPI AG,23046732 +Photonics and Lasers in Medicine,Walter de Gruyter GmbH,21930635|21930643 +Photonics and Nanostructures - Fundamentals and Applications,Elsevier ,15694410| +Photonics and Optoelectronics,DEStech Publications,23041064|23041072 +Photonics Letters of Poland,Photonics Society of Poland,20802242 +Photonics Research,The Optical Society,23279125 +Photoniques,EDP Sciences,16294475|22698418 +Photosynthesis Research,Springer-Verlag,01668595|15735079 +Photosynthetica,Springer-Verlag,03003604|15739058 +Photovoltaics Bulletin,Elsevier ,14738325| +Phronesis,Brill Academic Publishers,00318868|15685284 +Phronesis,Consortium Erudit,19254873 +Phycologia,International Phycological Society,00318884| +Phycological Research,Wiley Blackwell (Blackwell Publishing),13220829|14401835 +Phyllomedusa Journal of Herpetology,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,15191397|23169079 +Phylon (1940-1956),JSTOR,08856818| +Phylon (1960-),JSTOR,00318906| +phys stat sol (a),Wiley Blackwell (John Wiley & Sons),00318965|1521396X +PhysChemComm,The Royal Society of Chemistry,14602733|14602733 +Physica,Elsevier ,00318914| +Physica A Statistical Mechanics and its Applications,Elsevier ,03784371| +Physica B Condensed Matter,Elsevier ,09214526|09214526 +Physica B+C,Elsevier ,03784363| +Physica C Superconductivity,Elsevier ,09214534| +Physica D Nonlinear Phenomena,Elsevier ,01672789| +Physica E Low-dimensional Systems and Nanostructures,Elsevier ,13869477| +Physica Medica,Elsevier ,11201797| +Physica Scripta,IOP Publishing,00318949|14024896 +physica status solidi (a),Wiley Blackwell (John Wiley & Sons),00318965|1521396X +physica status solidi (a),Wiley Blackwell (John Wiley & Sons),18626300| +physica status solidi (b),Wiley Blackwell (John Wiley & Sons),03701972|15213951 +physica status solidi (c),Wiley Blackwell (John Wiley & Sons),18626351|16101642 +physica status solidi (c),Wiley Blackwell (John Wiley & Sons),16101634|16101642 +physica status solidi (RRL) - Rapid Research Letters,Wiley Blackwell (John Wiley & Sons),18626254|18626270 +Physicae,APGF-IFGW/UNICAMP,16799569|16799569 +Physicae Proceedings,APGF-IFGW/UNICAMP,22367535|22367535 +Physical & Occupational Therapy In Geriatrics,Informa UK (Taylor & Francis),02703181|15413152 +Physical & Occupational Therapy In Pediatrics,Informa UK (Taylor & Francis),01942638|15413144 +Physical Acoustics,Elsevier , +Physical Activity Review,Akademia im. Jana Dlugosza w Czestochowie,23005076 +Physical and Numerical Simulation of Geotechnical Engineering,"""St. Plum-Blossom Press Pty, Ltd.""",18383254| +Physical Biology,IOP Publishing,14783967|14783975 +Physical Chemistry,Scientific and Academic Publishing,21677042| +Physical Chemistry Chemical Physics,The Royal Society of Chemistry,14639076|14639084 +Physical Communication,Elsevier ,18744907| +Physical Culture and Sport Studies and Research,De Gruyter Open Sp. z o.o. ,18994849|18994849 +Physical Disabilities Education and Related Services,IUScholarWorks,2372451X +Physical Education and Sport,De Gruyter Open Sp. z o.o. ,00439630|17344956 +Physical Education and Sport Pedagogy,Informa UK (Taylor & Francis),17408989|17425786 +Physical Education of Students,Kharkov National Pedagogical University,20755279|23087250 +Physical Geography,Informa UK (Taylor & Francis),02723646|19300557 +Physical Interpretation of Relativity Theory Proceedings of International Meeting,Bauman Moscow State Technical University,23097604| +Physical Medicine and Rehabilitation Clinics of North America,Elsevier ,10479651| +Physical Mesomechanics,Pleiades Publishing,10299599|19905424 +Physical Oceanography,Springer-Verlag,09285105|09285105 +Physical Review,American Physical Society,0031899X|15366065 +Physical Review & Research International,Sciencedomain International,22311815 +Physical Review (Series I),American Physical Society,15366065 +Physical Review A,American Physical Society,10502947|10941622 +Physical Review Accelerators and Beams,American Physical Society,24699888 +Physical Review Applied,American Physical Society,23317019 +Physical Review B,American Physical Society,10980121|1550235X +Physical Review C,American Physical Society,05562813|1089490X +Physical Review D,American Physical Society,15507998|10894918 +Physical Review E,American Physical Society,15393755|15502376 +Physical Review Letters,American Physical Society,00319007|10797114 +Physical Review Physics Education Research,American Physical Society,24699896 +Physical Review Special Topics - Accelerators and Beams,American Physical Society,10984402 +Physical Review Special Topics - Physics Education Research,American Physical Society,15549178 +Physical Review X,American Physical Society,21603308 +Physical Science International Journal,Sciencedomain International,23480130 +Physical Sciences Reviews,Walter de Gruyter GmbH,2365659X +Physical Separation in Science and Engineering,Hindawi Publishing Corporation,14786478|14786486 +Physical Techniques in the Study of Art Archaeology and Cultural Heritage,Elsevier , +Physical Therapy,American Physical Therapy Association,00319023|15386724 +Physical Therapy and Rehabilitation,Herbert Publications,20552386 +Physical Therapy in Sport,Elsevier ,1466853X| +Physical Therapy Korea,Korean Research Society of Physical Therapy,12258962|2287982X +Physical therapy rehabilitation science,Physical Therapy Rehabilitation Science,22877576|22877584 +Physical Therapy Reviews,Maney Publishing,10833196|00000000 +Physician Assistant Clinics,Elsevier ,24057991| +Physics,American Institute of Physics,01486349| +Physics,American Physical Society,19432879|19432879 +Physics and Chemistry of Glasses European Journal of Glass Science and Technology Part B,Society of Glass Technology,17533562|17506689 +Physics and Chemistry of Liquids,Informa UK (Taylor & Francis),00319104|10290451 +Physics and Chemistry of Minerals,Springer-Verlag,03421791|14322021 +Physics and Chemistry of Stem Cells,De Gruyter Open Sp. z o.o. ,23004622 +Physics and Chemistry of the Earth,Elsevier ,00791946| +Physics and Chemistry of the Earth Part A Solid Earth and Geodesy,Elsevier ,14641895| +Physics and Chemistry of the Earth Part B Hydrology Oceans and Atmosphere,Elsevier ,14641909| +Physics and Chemistry of the Earth Part C Solar Terrestrial & Planetary Science,Elsevier ,14641917| +Physics and Chemistry of the Earth Parts A/B/C,Elsevier ,14747065| +Physics and High Technology,Korean Physical Society,12252336| +Physics and Technical Sciences,Sciknow Publications,23276509|23276517 +Physics Bulletin,IOP Publishing,00319112| +Physics Education,IOP Publishing,00319120|13616552 +Physics Essays,Physics Essays Publication,08361398| +Physics in Medicine and Biology,IOP Publishing,00319155|13616560 +Physics in Perspective,Springer-Verlag,14226944|14226960 +Physics in Technology,IOP Publishing,03054624| +Physics International,Science Publications,19489803| +Physics Letters,Elsevier ,00319163| +Physics Letters A,Elsevier ,03759601| +Physics Letters B,Elsevier ,03702693| +Physics of Atomic Nuclei,Pleiades Publishing,10637788|1562692X +Physics of Condensed Matter,Springer-Verlag,00319236| +Physics of Fluids,American Institute of Physics,10706631|10897666 +Physics of Fluids A Fluid Dynamics,American Institute of Physics,08998213| +Physics of Fluids B Plasma Physics,American Institute of Physics,08998221| +Physics of Life Reviews,Elsevier ,15710645| +Physics of Particles and Nuclei,Pleiades Publishing,10637796|15318559 +Physics of Particles and Nuclei Letters,Pleiades Publishing,15474771|15318567 +Physics of Plasmas,American Institute of Physics,1070664X|10897674 +Physics of the Dark Universe,Elsevier ,22126864| +Physics of The Earth and Planetary Interiors,Elsevier ,00319201|00319201 +Physics of the Solid State,Pleiades Publishing,10637834|10906460 +Physics of Wave Phenomena,Allerton Press,1541308X|1934807X +Physics Procedia,Elsevier ,18753892| +Physics Reports,Elsevier ,03701573| +Physics Research International,Hindawi Publishing Corporation,20902220|20902239 +Physics Today,American Institute of Physics,00319228|19450699 +Physics World,IOP Publishing,09538585|20587058 +Physics-Uspekhi,Uspekhi Fizicheskikh Nauk Journal,10637869|14684780 +Physik in unserer Zeit,Wiley Blackwell (John Wiley & Sons),00319252|15213943 +Physik Journal,Wiley Blackwell (John Wiley & Sons),00319279| +Physikalische Medizin Rehabilitationsmedizin Kurortmedizin,Thieme Publishing Group,09406689|1439085X +Physio-Géo,OpenEdition,1958573X|1958573X +Physiologia Plantarum,Wiley Blackwell (Blackwell Publishing),00319317|13993054 +Physiological and Biochemical Zoology,The University of Chicago Press,15222152|15375293 +Physiological and Molecular Plant Pathology,Elsevier ,08855765|10961178 +Physiological Entomology,Wiley Blackwell (Blackwell Publishing),03076962|13653032 +Physiological Genomics,American Physiological Society,10948341|15312267 +Physiological Measurement,IOP Publishing,09673334|13616579 +Physiological Plant Pathology,Elsevier ,00484059| +Physiological Psychology,Springer - Psychonomic Society,00905046| +Physiological Reports,Wiley Blackwell (Physiological Reports),2051817X|2051817X +Physiological Reviews,American Physiological Society,00319333|15221210 +Physiological Zoology,The University of Chicago Press,0031935X|0031935X +Physiology,American Physiological Society,08861714|1522161X +Physiology,American Physiological Society,15489213|15489221 +Physiology & Behavior,Elsevier ,00319384| +Physiology and Molecular Biology of Plants,Springer-Verlag,09715894|09740430 +Physiology Journal,Hindawi Publishing Corporation,23144300|23144319 +physiopraxis,Thieme Publishing Group,1439023X|18695515 +physioscience,Thieme Publishing Group,18603092|18603351 +Physiotherapy,Elsevier ,00319406| +Physiotherapy,De Gruyter Open Sp. z o.o. ,12308323| +Physiotherapy and Health Activity,Walter de Gruyter GmbH,23922664 +Physiotherapy Canada,University of Toronto Press Inc,03000508|03000508 +Physiotherapy Practice,Informa UK (Taylor & Francis),02666154| +Physiotherapy Practice and Research,IOS Press,22130683|22130691 +Physiotherapy Research International,Wiley Blackwell (John Wiley & Sons),13582267|14712865 +Physiotherapy Theory and Practice,Informa UK (Taylor & Francis),09593985|15325040 +Physis Revista de Saúde Coletiva,SciELO,01037331|01037331 +Phytochemical Analysis,Wiley Blackwell (John Wiley & Sons),09580344|10991565 +Phytochemistry,Elsevier ,00319422| +Phytochemistry Letters,Elsevier ,18743900| +Phytochemistry Reviews,Springer-Verlag,15687767|1572980X +Phytocoenologia,Schweizerbart,0340269X|00000000 +PhytoKeys,Pensoft Publishers,13142011|13142003 +Phytologia,Smithsonian Institution Biodiversity Heritage Library,00319430| +Phytomedicine,Elsevier ,09447113|00000000 +Phytoparasitica,Springer-Verlag,03342123|18767184 +Phytopathogenic Mollicutes,Diva Enterprises Private Limited,22494669|22494669 +Phytopathology,Scientific Societies,0031949X|0031949X +Phytoprotection,Consortium Erudit,00319511|17101603 +Phytotaxa,Magnolia Press,11793155|11793163 +Phytothérapie,Springer-Verlag,16248597|17652847 +Phytotherapy Research,Wiley Blackwell (John Wiley & Sons),0951418X|10991573 +PiD - Psychotherapie im Dialog,Thieme Publishing Group,14387026|1439913X +Piel,Elsevier ,02139251| +Pielęgniarstwo w Anestezjologii i Intensywnej Opiece,Evereth Publishing,23917970|24501204 +Pielęgniarstwo XXI Wieku,Medical University of Lublin,17301912| +Pierre d angle,Philosophy Documentation Center,12870978| +PIERS Online,The Electromagnetics Academy (Piers Enterprises),19317360|19317360 +Pierson Journal of Theology,Pierson Memorial Bible Institute,22880852| +Pigment & Resin Technology,Emerald (MCB UP ),03699420|00000000 +Pigment Cell & Melanoma Research,Wiley Blackwell (Blackwell Publishing),17551471|1755148X +Pigment Cell Research,Wiley Blackwell (Blackwell Publishing),08935785|16000749 +Pigment International,Medknow Publications,23495847| +PIK - Praxis der Informationsverarbeitung und Kommunikation,Walter de Gruyter GmbH,09305157|18658342 +Pilot and Feasibility Studies,Springer (Biomed Central Ltd.),20555784|20555784 +Pirineos,Departmento de Publicaciones del CSIC,03732568|19884281 +Pirotski zbornik,Centre for Evaluation in Education and Science,05541956| +Pitt Political Review,"""University Library System, University of Pittsburgh""",21605807 +Pittsburgh Journal of Environmental and Public Health Law,"""University Library System, University of Pittsburgh""",21647976 +Pittsburgh Journal of Technology Law and Policy,"""University Library System, University of Pittsburgh""",10876995|2164800X +Pittsburgh Papers on the European Union,"""University Library System, University of Pittsburgh""",21646732 +Pittsburgh Tax Review,"""University Library System, University of Pittsburgh""",19321821|19321996 +Pituitary,Springer-Verlag,1386341X|15737403 +Pixel-Bit Revista de Medios y Educación,Editorial Universidad de Sevilla,11338482|21717966 +Place Branding,Nature Publishing Group - Macmillan Publishers,17440696|1744070X +Place Branding and Public Diplomacy,Nature Publishing Group - Macmillan Publishers,17518040|17518059 +Placenta,Elsevier ,01434004| +PLAID People Living with And Inspired by Diabetes,Florida State University College of Medicine,23744669|23744669 +Plains Anthropologist,Maney Publishing,00320447|2052546X +Plainsong and Medieval Music,Cambridge University Press,09611371|14740087 +Planet,Informa UK (Taylor & Francis),14731835|17583608 +Planetary and Space Science,Elsevier ,00320633| +Planetary Science,Springer (Biomed Central Ltd.),21912521|21912521 +Plankton and Benthos Research,The Plankton Society of Japan (The Japanese Association of Benthology),18808247|1882627X +Planlama Dergisi,Ankara University,13037587 +Planned Giving Mentor,Mary Ann Liebert,15462617|19374852 +Planned Giving Today,Mary Ann Liebert,10524770|19374860 +Planning & Environmental Law,Informa UK (Taylor & Francis),15480755| +Planning & Environmental Law,Informa UK (Taylor & Francis),15480755|15568601 +Planning Outlook,Informa UK (Taylor & Francis),00320714| +Planning Perspectives,Informa UK (Taylor & Francis),02665433|14664518 +Planning Practice and Research,Informa UK (Taylor & Francis),02697459|13600583 +Planning Review,Emerald (MCB UP ),0094064X| +Planning Theory,SAGE Publications,14730952|00000000 +Planning Theory & Practice,Informa UK (Taylor & Francis),14649357|1470000X +Plant,Science Publishing Group,23310669| +Plant and Cell Physiology,Oxford University Press,00320781|14719053 +Plant and Soil,Springer-Verlag,0032079X|15735036 +Plant Biology,Wiley Blackwell (Blackwell Publishing),14358603|14388677 +Plant Biosystems - An International Journal Dealing with all Aspects of Plant Biology,Informa UK (Taylor & Francis),11263504|17245575 +Plant Biotechnology,Japanese Society for Plant Cell and Molecular Biology,13424580|13476114 +Plant Biotechnology Journal,Wiley Blackwell (Blackwell Publishing),14677644|14677652 +Plant Biotechnology Reports,Springer-Verlag,18635466|18635474 +Plant Breeding,Wiley Blackwell (Blackwell Publishing),01799541|14390523 +Plant Breeding and Biotechnology,Korean Society of Breeding Science,22879358|22879366 +Plant Breeding and Seed Science,De Gruyter Open Sp. z o.o. ,00183040|2083599X +Plant Cell & Environment,Wiley Blackwell (Blackwell Publishing),01407791|13653040 +Plant Cell Reports,Springer-Verlag,07217714|1432203X +Plant Cell Tissue and Organ Culture (PCTOC),Springer-Verlag,01676857|15735044 +Plant Disease,Scientific Societies,01912917|01912917 +Plant Disease Management Reports,Scientific Societies,08872236|01489038 +Plant Diversity and Evolution,Schweizerbart,18696155| +Plant Diversity and Resources,China Science Publishing & Media Ltd.,20950845| +Plant Ecology,Springer-Verlag,13850237|15735052 +Plant Ecology & Diversity,Informa UK (Taylor & Francis),17550874|17551668 +Plant Ecology & Diversity,Informa UK (Taylor & Francis),17550874| +Plant Ecology and Evolution,Botanical Garden Meise,20323913|20323921 +PLANT FACTORY,"""Japanese Society of Agricultural, Biological and Environmental Engineers and Scientists""",18845312 +Plant Foods for Human Nutrition,Springer-Verlag,09219668|15739104 +Plant Gene,Elsevier ,23524073| +Plant Gene and Trait,"""Sophia Publishing Group, Inc.""",19252013 +Plant Genetic Resources,Cambridge University Press,14792621|1479263X +Plant Genetics Genomics and Biotechnology,"""Atlas Scienfitic Publishing, LP""",23322012 +Plant Growth Regulation,Springer-Verlag,01676903|15735087 +Plant Health Instructor,Scientific Societies,19359411 +Plant Health Progress,Scientific Societies,15351025 +Plant Methods,Springer (Biomed Central Ltd.),17464811|17464811 +Plant Molecular Biology,Springer-Verlag,01674412|15735028 +Plant Molecular Biology Reporter,Springer-Verlag,07359640|15729818 +PLANT MORPHOLOGY,The Japanese Society of Plant Morphology,09189726|18844154 +Plant Pathology,Wiley Blackwell (Blackwell Publishing),00320862|13653059 +Plant Pathology & Quarantine,Mushroom Research Foundation,22292217|22292217 +Plant Pathology Journal,Science Alert,18125387|18125425 +PLANT PHYSIOLOGY,American Society of Plant Biologists,00320889|00320889 +Plant Physiology and Biochemistry,Elsevier ,09819428| +Plant Production Science,Informa UK (Taylor & Francis),1343943X|13491008 +Plant Products Research Journal,African Journals Online ,11192283 +Plant Protection Science,Czech Academy of Agricultural Sciences,12122580|18059341 +Plant Reproduction,Springer-Verlag,21947953|21947961 +Plant Root,Japanese Society for Root Research,18816754 +Plant Science,Elsevier ,01689452| +Plant Science International,Science and Education Centre of North America,23688181|2368819X +Plant Science Journal,China Science Publishing & Media Ltd.,20950837| +Plant Science Letters,Elsevier ,03044211| +Plant Science Today,Horizon E-Publishing Group,23481900 +Plant Sciences Research,Science Alert,1995476X| +Plant Signaling & Behavior,Landes Bioscience,15592316|15592324 +Plant Soil and Environment,Czech Academy of Agricultural Sciences,12141178|18059368 +Plant Species Biology,Wiley Blackwell (Blackwell Publishing),0913557X|14421984 +Plant Systematics and Evolution,Springer-Verlag,03782697|16156110 +Plant Tissue Culture and Biotechnology,Bangladesh Journals Online,18173721|18188745 +Plant tissue culture letters,Japanese Society for Plant Cell and Molecular Biology,02895773|18847706 +Plant/Operations Progress,Wiley Blackwell (John Wiley & Sons),02784513|15494632 +Planta,Springer-Verlag,00320935|14322048 +Planta Daninha,SciELO,01008358|01008358 +Planta Medica,Thieme Publishing Group,00320943|14390221 +Planta Medica Letters,Thieme Publishing Group,2199157X +Plants,MDPI AG,22237747 +Plasma and Fusion Research,Japan Society of Plasma Science and Nuclear Fusion Research,18806821 +Plasma Chemistry and Plasma Processing,Springer-Verlag,02724324|15728986 +Plasma Devices and Operations,Informa UK (Taylor & Francis),10519998|10294929 +Plasma Medicine,Begell House Inc.,19475764| +Plasma Physics,IOP Publishing,00321028| +Plasma Physics and Controlled Fusion,IOP Publishing,07413335|13616587 +Plasma Physics Reports,Pleiades Publishing,1063780X|15626938 +Plasma Processes and Polymers,Wiley Blackwell (John Wiley & Sons),16128850|16128869 +Plasma Science and Technology,IOP Publishing,10090630| +Plasma Sources Science and Technology,IOP Publishing,09630252|13616595 +Plasma Therapy and Transfusion Technology,Elsevier ,02786222| +Plasmas & Ions,Elsevier ,12883255| +Plasmas and Polymers,Springer-Verlag,10840184|15728978 +Plasmid,Elsevier ,0147619X|10959890 +Plasmonics,Springer-Verlag,15571955|15571963 +Plastic & Reconstructive Surgery,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,00321052| +Plastic & Reconstructive Surgery Global Open,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,21697574| +Plastic and Aesthetic Research,OAE Publishing,23479264|23496150 +Plastic and Polymer Technology,"""Science and Engineering Publishing, Co.""",23271108| +Plastic and Reconstructive Surgery Global Open,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,21697574| +Plastic Surgery An International Journal,IBIMA Publishing,23273550 +Plastic Surgery International,Hindawi Publishing Corporation,20901461|2090147X +Plastic Surgical Nursing,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,07415206| +Plasticity and Mechanics of Defects,Walter de Gruyter GmbH,22991166 +Plastics Additives and Compounding,Elsevier ,1464391X| +Plastics Rubber and Composites,Maney Publishing,14658011|00000000 +Platelets,Informa UK (Taylor & Francis),09537104|13691635 +Platinum Metals Review,Johnson Matthey,00321400|14710676 +Plato Journal,Coimbra University Press,20797567|21834105 +Plein droit,CAIRN,09873260|22625135 +Pleine Marge,Peeters Publishers,2961630 +PLEURA,SAGE Publications,23739975 +Plevra Bulteni,AVES Publishing Co.,13089366|13089366 +PLoS Biology,Public Library of Science,15449173|15457885 +PLoS Clinical Trials,Public Library of Science,15555887 +PLoS Computational Biology,Public Library of Science,1553734X|15537358 +PLoS Currents,Public Library of Science,21573999|21573999 +PLoS Genetics,Public Library of Science,15537390|15537404 +PLoS Medicine,Public Library of Science,15491277|15491676 +PLoS Neglected Tropical Diseases,Public Library of Science,19352735 +PLoS ONE,Public Library of Science,19326203 +PLoS Pathogens,Public Library of Science,15537366|15537374 +Ploughshares,Muse - Johns Hopkins University Press,21620903 +Ploutarchos,Coimbra University Press,0258655X| +PLURA - Revista de Estudos de Religião,PLURA - Revista de Estudos de Religiao,21790019 +Plural,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,01046721|21768099 +PM&R,Elsevier ,19341482| +PMC Biophysics,Springer (Biomed Central Ltd.),17575036| +PMC Physics A,Springer (Biomed Central Ltd.),17540410| +PMC Physics B,Springer (Biomed Central Ltd.),17540429| +PMLA,Modern Language Association,00308129| +Pneuma,Brill Academic Publishers,02720965|15700747 +Pneumo News,Springer-Verlag,18655467|21993866 +Pneumologie,Thieme Publishing Group,09348387|14388790 +Pneumonia,Springer (Biomed Central Ltd.),22006133 +Pneumonologia i Alergologia Polska,VM Media Sp zo.o. - VMGroup SK,08677077|22998292 +Pneumonologie,Springer-Verlag,00334073| +PNIPU Bulletin The mechanical engineering materials science,PNRPU Publishing Office,22249877| +PNRPU Construction and Architecture Bulletin,PNRPU Publishing Office,22249826|23052724 +PNRPU Mechanics Bulletin,PNRPU Publishing Office,22249893| +Población y Desarrollo - Argonautas y caminantes,Latin America Journals Online,22217002| +Población y Salud en Mesoamérica,Universidad de Costa Rica,16590201 +Podium Sport Leisure and Tourism Review,University Nove de Julho - Uninove,2316932X|2316932X +PodoPost,Springer-Verlag,09224742|18765823 +PodoSophia,Springer-Verlag,09295380|18765815 +Podzemni radovi,Centre for Evaluation in Education and Science,03542904| +Poe Newsletter,Wiley Blackwell (Blackwell Publishing),00321877| +Poe Studies,Wiley Blackwell (Blackwell Publishing),19474644| +Poe Studies - Old Series,Wiley Blackwell (Blackwell Publishing),00905224| +Poe Studies/Dark Romanticism,Wiley Blackwell (Blackwell Publishing),15431789|17546095 +Poem,Informa UK (Taylor & Francis),20519842|23774673 +Poetics,Elsevier ,0304422X| +Poetics Today,Duke University Press,03335372|15275507 +Poétique,CAIRN,12451274|19683871 +Pogranicze Studia Społeczne,University of Bialystok,12302392| +Poiesis & Praxis,Springer-Verlag,16156609|16156617 +Poíesis Pedagógica,Universidade Federal de Goias,16792319|21784442 +Point of Care The Journal of Near-Patient Testing & Technology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,1533029X| +Polar Biology,Springer-Verlag,07224060|14322056 +Polar Geography,Informa UK (Taylor & Francis),1088937X| +Polar Geography,Informa UK (Taylor & Francis),1088937X|19390513 +Polar Geography,Informa UK (Taylor & Francis),1088937X| +Polar Geography,Informa UK (Taylor & Francis),1088937X| +Polar Geography and Geology,Informa UK (Taylor & Francis),02738457| +Polar Law,Nordic Council of Ministers,23110562 +PoLAR Political and Legal Anthropology Review,Wiley Blackwell (Blackwell Publishing),10816976|1555-2934 +Polar Record,Cambridge University Press,00322474|14753057 +Polar Research,Co-Action Publishing,08000395|17518369 +Polar Science,Elsevier ,18739652| +Polarizability,Thieme Publishing Group,20600011 +Pôle Sud,PERSEE Program,12621676|19606656 +polemica,Universidade do Estado do Rio de Janeiro UERJ,16760727 +Pólemos,Walter de Gruyter GmbH,20355262|20364601 +POLIANTEA,Institucion Universitaria Politecnico Grancolombiano,17943159|21453101 +Poliarchia,Ksiegarnia Akademicka Sp. z.o.o.,23004584|23004584 +Polibits,Centro de Innovacion y Desarrollo Tecnologico en Computo,18709044|23958618 +Polibotánica,Escuela Nacional de Ciencias Biologicas,14052768 +Police Practice and Research,Informa UK (Taylor & Francis),15614263|1477271X +Police Quarterly,SAGE Publications,10986111|00000000 +Police Studies Intnl Review of Police Development,Emerald (MCB UP ),01412949| +Policing,Oxford University Press,17524512|17524520 +Policing & Society,Informa UK (Taylor & Francis),10439463|14772728 +Policing An International Journal of Police Strategies & Management,Emerald (MCB UP ),1363951X| +Policing An International Journal of Police Strategies and Management,Emerald (MCB UP ),1363951X|00000000 +Policy & Internet,Wiley Blackwell (Blackwell Publishing),19442866|19442866 +Policy & Politics,The Policy Press,03055736|14708442 +Policy and Society,Elsevier ,14494035| +Policy Futures in Education,SAGE Publications,14782103|14782103 +Policy Insights from the Behavioral and Brain Sciences,SAGE Publications,23727322|23727330 +Policy Perspectives,Pluto Journals,18121829|18127347 +Policy Perspectives,George Washington University,10857087| +Policy Politics & Nursing Practice,SAGE Publications,15271544|00000000 +Policy Sciences,Springer-Verlag,00322687|15730891 +Policy Studies,Informa UK (Taylor & Francis),01442872|14701006 +Policy Studies Journal,Wiley Blackwell (Blackwell Publishing),0190292X|15410072 +Polígonos Revista de Geografía,University of Leon,11321202|24440272 +Polímeros Ciência e Tecnologia,SciELO,01041428|16785169 +Polimery,Industrial Chemisty Research Institute,00322725|00322725 +POLIS,Universidad Nacional del Litoral,15146464|23623284 +Polis (Santiago),SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7186568 +Polis The Journal for Ancient Greek Political Thought,Brill Academic Publishers,0142257X|20512996 +Polish American Studies,University of Illinois Press,00322806|00322806 +Polish Annals of Medicine,Elsevier ,12308013| +Polish Archives of Internal Medicine,Towarzystwo Internistow Polskich/Polish Society of Internal Medicine,18979483| +Polish Botanical Journal,De Gruyter Open Sp. z o.o. ,16418190|20844352 +Polish Cartographical Review,Walter de Gruyter GmbH,03248321|03248321 +Polish Gynaecology,Ginekologia Polska,00170011|00170011 +Polish Hyperbaric Research,Walter de Gruyter GmbH,17347009|20840535 +Polish Journal of Applied Psychology,Walter de Gruyter GmbH,23540052 +Polish Journal of Cardio-Thoracic Surgery,Termedia Sp. z.o.o.,17315530| +Polish Journal of Chemical Technology,De Gruyter Open Sp. z o.o. ,15098117|18994741 +Polish Journal of Ecology,Museum and Institute of Zoology at the Polish Academy of Sciences,15052249|24501395 +Polish Journal of Entomology,De Gruyter Open Sp. z o.o. ,22999884 +Polish Journal of Entomology / Polskie Pismo Entomologiczne,De Gruyter Open Sp. z o.o. ,00323780|00323780 +Polish Journal of Environmental Studies,HARD Publishing Company,12301485|12301485 +Polish Journal of Food and Nutrition Sciences,De Gruyter Open Sp. z o.o. ,12300322|20836007 +Polish Journal of Medical Physics And Engineering,De Gruyter Open Sp. z o.o. ,14254689 +Polish Journal of Microbiology,Index Copernicus International,17331331| +Polish Journal of Natural Science,De Gruyter Open Sp. z o.o. ,16439953| +Polish Journal of Pathology,Termedia Sp. z.o.o.,12339687| +Polish Journal of Philosophy,Philosophy Documentation Center,18971652| +Polish Journal of Physiotherapy,Index Copernicus International,16420136| +Polish Journal of Public Health,De Gruyter Open Sp. z o.o. ,20834829 +Polish Journal of Radiology,International Scientific Literature,01377183|01377183 +Polish Journal of Soil Science,Wydawnictwo Uniwersytetu Marii Curie-SkÅ?odowskiej w Lublinie,00792985| +Polish Journal of Sport and Tourism,De Gruyter Open Sp. z o.o. ,18991998|20828799 +Polish Journal of Sports Medicine,Index Copernicus International,1232406X| +Polish Journal of Surgery,De Gruyter Open Sp. z o.o. ,0032373X|0032373X +Polish Journal of Veterinary Sciences,De Gruyter Open Sp. z o.o. ,15051773|15051773 +Polish Maritime Research,De Gruyter Open Sp. z o.o. ,12332585|20837429 +Polish Polar Research,De Gruyter Open Sp. z o.o. ,01380338|20818262 +Polish Political Science Review,Walter de Gruyter GmbH,23533773 +Polish Psychological Bulletin,De Gruyter Open Sp. z o.o. ,00792993|16417844 +Polish Theatre Perspectives,TAPAC: Theatre and Performance Across Cultures,20532695 +Polish Yearbook of Environmental Law,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,20848595|23917881 +Politeja,Ksiegarnia Akademicka Sp. z.o.o.,17336716|17336716 +Política & Sociedade,Universidade Federal de Santa Catarina,16774140|21757984 +Política Común,University of Michigan Library,20075227 +Política criminal,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7183399 +Política Económica para el Desarrollo Sostenible,Universidad Nacional de Costa Rica,22154167 +Política y Sociedad,Universidad Complutense de Madrid,11308001|19883129 +Political Analysis,Oxford University Press,10471987|14764989 +Political Behavior,Springer-Verlag,01909320|15736687 +Political Communication,Informa UK (Taylor & Francis),10584609|10917675 +Political Crossroads,James Nicholas Publishers,13235761| +Political Geography,Elsevier ,09626298| +Political Geography Quarterly,Elsevier ,02609827| +Political Insight,SAGE Publications,20419058|20419066 +Political Psychology,Wiley Blackwell (Blackwell Publishing),0162895X|14679221 +Political Research Quarterly,SAGE Publications,10659129|1938274X +Political Science,SAGE Publications,00323187|20410611 +Political Science and Politics,Cambridge University Press,10490965|15375935 +Political Science Quarterly,Wiley Blackwell (John Wiley & Sons),00323195| +Political Science Research and Methods,Cambridge University Press,20498470|20498489 +Political Science Teacher,Cambridge University Press,08960828| +Political Studies,SAGE Publications,00323217|14679248 +Political Studies Review,SAGE Publications,14789299|14789299 +Political Theology,Maney Publishing,1462317X|17431719 +Political Theory,SAGE Publications,00905917|00000000 +Politická ekonomie,University of Economics,00323233|00323233 +Politics,SAGE Publications,02633957|14679256 +Politics & Gender,Cambridge University Press,1743923X|17439248 +Politics & Society,SAGE Publications,00323292|15527514 +Politics & Policy,Wiley Blackwell (Blackwell Publishing),15555623|17471346 +Politics and Ethics Review,Edinburgh University Press,1743453X| +Politics and Gender,Cambridge University Press,1743923X|17439248 +Politics and Governance,Cogitatio,21832463 +Politics and Religion,Cambridge University Press,17550483|17550491 +Politics and the Life Sciences,BioOne (Politics and the Life Sciences),07309384|14715457 +Politics Groups and Identities,Informa UK (Taylor & Francis),21565503|21565511 +Politics in Central Europe,Walter de Gruyter GmbH,18013422 +Politics Philosophy & Economics,SAGE Publications,1470594X|17413060 +Politics Religion & Ideology,Informa UK (Taylor & Francis),21567689|21567697 +Politikon,Informa UK (Taylor & Francis),02589346|14701014 +Politikos mokslų almanachas,Vytautas Magnus University,20290225|23357185 +Politique,Consortium Erudit,0711608X|19186584 +Politique africaine,CAIRN,02447827|22645047 +Politique américaine,CAIRN,17718848|22645306 +Politique et Sociétés,Consortium Erudit,12039438|17038480 +Politique étrangère,CAIRN,0032342X|19588992 +Politique européenne,CAIRN,16236297|21052875 +Politiques et gestion de l enseignement supérieur,Organisation for Economic Co-Operation and Development ,1682346X| +Politiques et management public,Lavoisier SAS,07581726|21194831 +Politische Vierteljahresschrift,Nomos Verlag,00323470|00323470 +Politix,CAIRN,02952319|19538286 +Politologický časopis - Czech Journal of Political Science,Masaryk University Press,12113247|18059503 +Politologija,Vilnius University,13921681|13921681 +Polity,Nature Publishing Group - Macmillan Publishers,00323497|17441684 +Polityka i Społeczeństwo,University of Rzeszow,17329639| +Poljarnyj vestnik,UiT The Arctic University of Norway,15007502|18909671 +Poljoprivreda,Faculty of Agriculture in Osijek,13307142|18488080 +Pollack Periodica,Akademiai Kiado Zrt.,17881994|17883911 +Polonia Sacra,Pontifical Universtiy of John Paul II in Krakow,14285673|23916575 +Polonica,Institute of Polish Language,01379712| +Polonistyka Innowacje,Adam Mickiewicz University Poznan,24506435 +Polski Przegląd Otorynolaryngologiczny,Index Copernicus International,20845308|23008423 +Poly(amino acid)-Catalyzed Epoxidation,Thieme Publishing Group,20100051 +Polycyclic Aromatic Compounds,Informa UK (Taylor & Francis),10406638|15635333 +Polyhedron,Elsevier ,02775387|02775387 +Polymer,Elsevier ,00323861| +Polymer Bulletin,Springer-Verlag,01700839|14362449 +Polymer Chemistry,The Royal Society of Chemistry,17599954|17599962 +Polymer Composites,Wiley Blackwell (John Wiley & Sons),02728397|15480569 +Polymer Contents,Elsevier ,0883153X| +Polymer Degradation and Stability,Elsevier ,01413910| +Polymer Engineering & Science,Wiley Blackwell (John Wiley & Sons),00323888|15482634 +Polymer Engineering and Science,Wiley Blackwell (John Wiley & Sons),00323888|15482634 +Polymer Gels and Networks,Elsevier ,09667822| +Polymer International,Wiley Blackwell (John Wiley & Sons),09598103|10970126 +Polymer Journal,Nature Publishing Group,00323896|13490540 +Polymer Korea,The Polymer Society of Korea,0379153X| +Polymer Mechanics,Springer-Verlag,0032390X| +Polymer News,Informa UK (Taylor & Francis),00323918| +Polymer Photochemistry,Elsevier ,01442880| +Polymer Reaction Engineering,Informa UK (Marcel Dekker),10543414|15322408 +Polymer Reviews,Informa UK (Taylor & Francis),15583724|15583716 +Polymer Science Series A,Pleiades Publishing,0965545X|15556107 +Polymer Science Series B,Pleiades Publishing,15600904|15556123 +Polymer Science Series C,Pleiades Publishing,18112382|1555614X +Polymer Science Series D,Pleiades Publishing,19954212|19954220 +Polymer Science U S S R,Elsevier ,00323950| +Polymer Testing,Elsevier ,01429418| +Polymer-Plastics Technology and Engineering,Informa UK (Taylor & Francis),03602559|15256111 +Polymerization of Vancomycin-Based Oligomers,Thieme Publishing Group,20600194 +Polymers,MDPI AG,20734360 +Polymers for Advanced Technologies,Wiley Blackwell (John Wiley & Sons),10427147|10991581 +Polyphonía/Solta a voz,Universidade Federal de Goias,22360514|22388850 +Pomegranate The International Journal of Pagan Studies,Equinox Publishing,15280268|17431735 +Pomiary Automatyka Robotyka,PIAP - Industrial Research Institute for Automation and Measurements,14279126| +PONS - medicinski casopis,Centre for Evaluation in Education and Science,18202411| +Pontes,International Centre for Trade and Sustainable Development,19969198| +Ponto de Vista revista de educação e processos inclusivos,Universidade Federal de Santa Catarina,15173968|21758050 +Ponto Urbe,OpenEdition,19813341 +Ponts-Ponti Langues littératures civilisations des Pays francophones,Led Edizioni Universitarie,18279767|22817964 +POP,Transcript Verlag,21946981|21980322 +Popular Communication,Informa UK (Taylor & Francis),15405702|15405710 +Popular Culture in Libraries,"""Informa UK (Haworth Press, Inc.,)""",10538747| +Popular Culture Review,Policy Studies Organization,10608125 +Popular Music,Cambridge University Press,02611430|14740095 +Popular Music & Society,Informa UK (Taylor & Francis),03007766|17401712 +Popular Music History,Equinox Publishing,17407133|17431646 +Popular Narrative Media,Portico,17543819|17543827 +Population,CAIRN,00324663|19577966 +Population & Avenir,CAIRN,02235706|19683952 +Population (English Edition),CAIRN,16342941|19589190 +Population and Development Review,Wiley Blackwell (Blackwell Publishing),00987921|17284457 +Population and Environment,Springer-Verlag,01990039|15737810 +Population Council Book Series,Wiley Blackwell (John Wiley & Sons),23264624| +Population Ecology,Springer-Verlag,14383896|1438390X +Population Health Management,Mary Ann Liebert,19427891|19427905 +Population Health Metrics,Springer (Biomed Central Ltd.),14787954|14787954 +Population Horizons,Walter de Gruyter GmbH,17461081 +Population Index,JSTOR,00324701| +Population Research and Policy Review,Springer-Verlag,01675923|15737829 +Population Review,Muse - Johns Hopkins University Press,15490955 +Population Space and Place,Wiley Blackwell (John Wiley & Sons),15448444|15448452 +Population Studies,Informa UK (Taylor & Francis),00324728|14774747 +Population Trends,Nature Publishing Group - Macmillan Publishers,03074463|20401590 +Porcine Health Management,Springer (Biomed Central Ltd.),20555660|20555660 +Porn Studies,Informa UK (Taylor & Francis),23268743|23268751 +Poroi,University of Iowa Libraries,21512957 +Port Acadie Revue interdisciplinaire en études acadiennes,Consortium Erudit,14987651|19167334 +Port Harcourt Medical Journal,Medknow Publications,7953038 +Portal,Croatian Conservation Institute,18479464|18486681 +Portal de la Ciencia,Latin America Journals Online,22233059| +PORTAL Journal of Multidisciplinary International Studies,"""University of Technology, Sydney""",14492490 +portal Libraries and the Academy,Muse - Johns Hopkins University Press,15307131 +Portugaliae Electrochimica Acta,Portuguese Society of Electrochemistry,16471571| +Portugaliae Mathematica,European Mathematical Society Publishing House,00325155| +Portugese Journal of Social Sciences,Intellect,1476413X|17589509 +Portuguese Economic Journal,Springer-Verlag,1617982X|16179838 +Portuguese Journal of Mental Health Nursing,Portuguese Journal of Mental Health Nursing,16472160|16472160 +Portuguese Studies,Modern Humanities Research Association,02675315|22224270 +Portularia,"""Portularia, Revista de Trabajo Social""",15780236|19895399 +Pós Revista do Programa de Pós-Graduação em Arquitetura e Urbanismo da FAUUSP,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,15189554|23172762 +Positioning,"""Scientific Research Publishing, Inc.""",2150850X|21508526 +positions asia critique,Duke University Press,10679847|15278271 +Positivity,Springer-Verlag,13851292|15729281 +Poslovna ekonomija,Centre for Evaluation in Education and Science,18206859| +Post Reproductive Health,SAGE Publications,20533691|20533370 +Post-Communist Economies,Informa UK (Taylor & Francis),14631377|14653958 +Post-Medieval Archaeology,Maney Publishing,00794325|00000000 +Post-Medieval Archaeology,Maney Publishing,00794236|17458137 +Post-Soviet Affairs,Informa UK (Taylor & Francis),1060586X|19382855 +Postcolonial Studies,Informa UK (Taylor & Francis),13688790|14661888 +Postdoc Journal,Postdoc Journal,23289791 +Postępy Higieny i Medycyny Doświadczalnej,Index Copernicus International,17322693 +Postępy Nauk Medycznych,Index Copernicus International,08606196|17312469 +Postępy Osteoartrologii,Blackhorse Publishing,0867339X|16445392 +Postępy Psychiatrii i Neurologii,Elsevier ,12302813| +Postgraduate Medical Journal,BMJ,00325473|14690756 +Postgraduate Medicine,Informa UK (Taylor & Francis),00325481|19419260 +Postgraduate Obstetrics & Gynecology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,01943898| +Postgraduate Perspectives in History,University of Huddersfield Press,20557787 +Postgraduate Radiology,Elsevier - Mosby,02730278| +Postharvest Biology and Technology,Elsevier ,09255214| +Postilla,Smithsonian Institution Biodiversity Heritage Library,00794295| +postmedieval a journal of medieval cultural studies,Nature Publishing Group - Macmillan Publishers,20405960|20405979 +Postmodern Culture,Muse - Johns Hopkins University Press,10531920 +Postmodern Openings,Asociatia LUMEN,20680236|20699387 +Postscripts The Journal of Sacred Texts and Contemporary Worlds,Equinox Publishing,1743887X|17438888 +Potato Research,Springer-Verlag,00143065|18714528 +Potchefstroom Electronic Law Journal/Potchefstroomse Elektroniese Regsblad,African Journals Online ,17273781 +Potential Analysis,Springer-Verlag,09262601|1572929X +Potestas Revista del Grupo Europeo de Investigación histórica Religión poder y monarquía,Universitat Jaume I,18889867| +Potravinarstvo,HACCP Consulting,13380230|13370960 +Poultry Fisheries & Wildlife Sciences,OMICS Publishing Group,2375446X +Poultry Science,Oxford University Press,00325791|15253171 +Pour,CAIRN,02459442|24266507 +Pouvoirs,CAIRN,01520768|21010390 +Pouvoirs dans la Caraïbe Revue du Centre de recherche sur les pouvoirs locaux dans la Caraïbe,OpenEdition,12798657|21175209 +Poverty & Public Policy,Wiley Blackwell (Blackwell Publishing),19442858|19442858 +Powder Diffraction,Cambridge University Press,08857156|19457413 +Powder Metallurgy,Maney Publishing,00325899|00000000 +Powder Metallurgy and Metal Ceramics,Springer-Verlag,10681302|15739066 +Powder Technology,Elsevier ,00325910| +Power and Education,SAGE Publications,17577438|17577438 +Power and Electrical Engineering,Riga Technical University,22560238|22560246 +Power Engineering Journal,Institution of Electrical Engineers,09503366| +Power Technology and Engineering,Springer-Verlag,1570145X|15701468 +Poznan Studies in Contemporary Linguistics,Walter de Gruyter GmbH,01372459|18977499 +Poznańskie Spotkania Językoznawcze,Adam Mickiewicz University Poznan,20829825|24500259 +Poznańskie Studia Polonistyczne Seria Językoznawcza,Adam Mickiewicz University Poznan,12338672| +Poznańskie Studia Polonistyczne Seria Literacka,Adam Mickiewicz University Poznan,12338680|24504947 +Poznańskie Studia Slawistyczne,Adam Mickiewicz University Poznan,20843011|24502731 +Poznańskie Studia Teologiczne,Adam Mickiewicz University Poznan,02093472| +PPAR Research,Hindawi Publishing Corporation,16874757|16874765 +PPmP - Psychotherapie · Psychosomatik · Medizinische Psychologie,Thieme Publishing Group,09372032|14391058 +Prabandhan Indian Journal of Management,"""Associated Management Consultants, PVT, Ltd.""",09752854|09752854 +Prace Naukowe Akademii im Jana Długosza w Częstochowie Edukacja Muzyczna,Akademia im. Jana Dlugosza w Czestochowie,18958079| +Prace Naukowe Akademii im Jana Długosza w Częstochowie Edukacja Plastyczna Fotografia,Akademia im. Jana Dlugosza w Czestochowie,18967736| +Prace Naukowe Akademii im Jana Długosza w Częstochowie Filozofia,Akademia im. Jana Dlugosza w Czestochowie,20802005| +Prace Naukowe Akademii im Jana Długosza w Częstochowie Językoznawstwo,Akademia im. Jana Dlugosza w Czestochowie,23918616| +Prace Naukowe Akademii im Jana Długosza w Częstochowie Kultura Fizyczna,Akademia im. Jana Dlugosza w Czestochowie,18958680| +Prace Naukowe Akademii im Jana Długosza w Częstochowie Pedagogika,Akademia im. Jana Dlugosza w Czestochowie,1734185X| +Prace Naukowe Akademii im Jana Długosza w Częstochowie Res Politicae,Akademia im. Jana Dlugosza w Czestochowie,18974066| +Prace Naukowe Akademii im Jana Długosza w Częstochowie Rocznik Polsko-Ukraiński,Akademia im. Jana Dlugosza w Czestochowie,23918594| +Prace Naukowe Akademii im Jana Długosza w Częstochowie Studia Neofilologiczne,Akademia im. Jana Dlugosza w Czestochowie,18974244| +Prace Naukowe Akademii im Jana Długosza w Częstochowie Technika Informatyka Inżynieria Bezpieczeństwa,Akademia im. Jana Dlugosza w Czestochowie,23005343| +Prace Naukowe Akademii im Jana Długosza w Częstochowie Zeszyty Historyczne,Akademia im. Jana Dlugosza w Czestochowie,18984630| +Prace Naukowe Uniwersytetu Ekonomicznego we Wrocławiu,Wroclaw University of Economics,18993192|18993192 +Prace Wydzialu Nawigacyjnego Akademii Morskiej w Gdyni,Faculty of Navigation,17301114| +Practica Oto-Rhino-Laryngologica,The Society of Practical Otolaryngology,00326313|18844545 +Practica oto-rhino-laryngologica Suppl,The Society of Practical Otolaryngology,09121870|21851557 +Practical Applications,Institutional Investor Journals,23290196|2329020X +Practical Applications,Institutional Investor Journals,23290196|2329020X +Practical Diabetes,Wiley Blackwell (John Wiley & Sons),20472897| +Practical Diabetes International,Wiley Blackwell (John Wiley & Sons),13578170|1528252X +Practical Failure Analysis,Springer-Verlag,15298159|00000000 +Practical Funding for Schools,Mark Allen Group,14706350| +Practical Laboratory Medicine,Elsevier ,23525517| +Practical Metallography,Carl Hanser Verlag GMBH & Co KG,0032678X|21958599 +Practical Neurology,BMJ,14747758|14747766 +Practical Pre-School,Mark Allen Group,1366610X|20524587 +Practical Professional Child Care,Mark Allen Group,17409799| +Practical Radiation Oncology,Elsevier ,18798500| +Practical Theology,Maney Publishing,1756073X|17560748 +Practice,Informa UK (Taylor & Francis),09503153|17424909 +Practice and Theory in Systems of Education,Walter de Gruyter GmbH,17882591 +Practice Development in Health Care,Wiley Blackwell (John Wiley & Sons),14759861|1557105X +Practice Innovations,American Psychological Association,2377889X|23778903 +Practice Nursing,Mark Allen Group,09649271|20522940 +Practice Periodical of Hazardous Toxic and Radioactive Waste Management,American Society of Civil Engineers,1090025X|19448376 +Practice Periodical on Structural Design and Construction,American Society of Civil Engineers,10840680|19435576 +Practicing Anthropology,Society for Applied Anthropology,08884552| +Praehistorische Zeitschrift,Walter de Gruyter GmbH,00794848|16130804 +PRAGATI Journal of Indian Economy,Journal Press India,23474432|2395261X +Pragmatic and Observational Research,Dove Medical Press,11797266 +Pragmatic Case Studies in Psychotherapy,Rutgers University Libraries,15530124 +Pragmática Sociocultural / Sociocultural Pragmatics,Walter de Gruyter GmbH,21948305|21948313 +Pragmatics,John Benjamins Publishing Company,10182101|24064238 +Pragmatics & Cognition,John Benjamins Publishing Company,09290907|15699943 +Pragmatics and Society,John Benjamins Publishing Company,18789714|18789722 +Prague Bulletin of Mathematical Linguistics,De Gruyter Open Sp. z o.o. ,18040462|18040462 +Prague Economic Papers,University of Economics,12100455|12100455 +Prague Journal of English Studies,De Gruyter Open Sp. z o.o. ,23362685 +Prague Medical Report,"""Charles University in Prague, Karolinum Press""",12146994|23362936 +Prairie Schooner,Muse - Johns Hopkins University Press,1542426X +Praktische Huisartsgeneeskunde,Springer-Verlag,24058661|2405867X +Praktische Theologie,Gutersloher Verlaghaus,09463518|21980462 +Praktisk økonomi & finans,Scandinavian University Press / Universitetsforlaget AS,15010074|15042871 +Praktyka Teoretyczna,Adam Mickiewicz University Poznan,20818130| +Pramana,Springer-Verlag,03044289|09737111 +Pranjana The Journal of Management Awareness,Diva Enterprises Private Limited,09719997|09740945 +Pratica Medica & Aspetti Legali,Seed SRL,19734824|22834044 +Pratique Médicale et Chirurgicale de l Animal de Compagnie,Elsevier ,07581882| +Pratique Neurologique - FMC,Elsevier ,18787762| +Pratiques,OpenEdition,03382389|24252042 +Pratiques en nutrition,Elsevier ,17667305| +Pratiques et Organisation des Soins,CAIRN,19529201|19619391 +Pratiques Psychologiques,Elsevier ,12691763| +Prävention und Gesundheitsförderung,Springer-Verlag,18616755|18616763 +Prävention und Rehabilitation,Dustri-Verlag Dr. Karl Feistle,0937552X| +Pravni zapisi,Centre for Evaluation in Education and Science,22172815| +Pravo - teorija i praksa,Centre for Evaluation in Education and Science,03523713| +Prawo Budżetowe Państwa i Samorządu,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,23009853|23537086 +Praxis,Hogrefe Publishing Group,03698394|16618165 +Praxis & Saber,Universidad Pedagogica y Tecnologica de Colombia,22160159| +Praxis der Kinderpsychologie und Kinderpsychiatrie,"""Vandenhoeck & Ruprecht GmbH & Co, KG""",21968225|21968225 +Praxis Educativa,Universidade Estadual de Ponta Grossa,18094031|18094309 +Praxis medica,Centre for Evaluation in Education and Science,03508773| +Praxis of Otorhinolaryngology,Baycinar Tibbi Yayincilik,21474230| +Precambrian Research,Elsevier ,03019268| +Precedente Revista Jurídica,Universidad Icesi,16576535| +Precision Agriculture,Springer-Verlag,13852256|15731618 +Precision Engineering,Elsevier ,01416359| +Precision Medicine,"""Smart Science and Technology, LLC""",23779888 +Prefix,George Washington University,19437919 +Pregnancy Hypertension An International Journal of Women s Cardiovascular Health,Elsevier ,22107789| +Prehospital and Disaster Medicine,Cambridge University Press,1049023X|19451938 +Prehospital Emergency Care,Informa UK (Taylor & Francis),10903127|15450066 +Prenatal Cardiology,Walter de Gruyter GmbH,23538201 +Prenatal Diagnosis,Wiley Blackwell (John Wiley & Sons),01973851|10970223 +Preparation of α-Fluoro Phosphonic Acids,Thieme Publishing Group,20300549 +Preparation of β-Monofluoromethylated Ketones and γ-Monofluoromethylated Alcohols,Thieme Publishing Group,20300581 +Preparative Biochemistry,Informa UK (Taylor & Francis),00327484| +Preparative Biochemistry & Biotechnology,Informa UK (Taylor & Francis),10826068|15322297 +Preschool and Primary Education,National Documentation Centre,22417206 +Prescriber,Wiley Blackwell (John Wiley & Sons),09596682|19312253 +Présence Africaine,CAIRN,00327638|2271197X +Presence Teleoperators & Virtual Environments,MIT Press,10547460|15313263 +Presence Teleoperators & Virtual Environments,MIT Press,10547460|15313263 +Present Environment and Sustainable Development,De Gruyter Open Sp. z o.o. ,22847820 +Present Pasts,"""Ubiquity Press, Ltd.""",17592941|17592941 +Preservation Digital Technology & Culture,Walter de Gruyter GmbH,21952957|21952965 +Presidential Studies Quarterly,Wiley Blackwell (Blackwell Publishing),03604918|00000000 +Press Releases,Institute of Public Finance,18484123 +Pressacademia,Pressacademia,21467943| +Preternature Critical and Historical Studies on the Preternatural,The Pennsylvania State University Press,21612196|21612188 +Pretexts Literary and Cultural Studies,Informa UK (Taylor & Francis),1015549X|14701022 +Preventing Chronic Disease,Centers for Disease Control and Prevention,15451151 +Preventing School Failure Alternative Education for Children and Youth,Informa UK (Taylor & Francis),1045988X|19404387 +Prevention & Research,CIC Edizioni Internazionali,22402594 +Prevention & Treatment,American Psychological Association,15223736 +Prevention and Control,Elsevier ,15732088| +Prevention in Human Services,"""Informa UK (Haworth Press, Inc.,)""",02703114| +Prevention Science,Springer-Verlag,13894986|15736695 +Preventive Cardiology,Wiley Blackwell (Blackwell Publishing),1520037X|17517141 +Preventive Medicine,Elsevier ,00917435|10960260 +Preventive Medicine Reports,Elsevier ,22113355| +Preventive Nutrition and Food Science,The Korean Society of Food Science and Nutrition,22871098| +Preventive Veterinary Medicine,Elsevier ,01675877| +Prevenzione & Assistenza Dentale,Elsevier ,03939960| +Preview,CSIRO Publishing,14432471| +Pricing Strategy and Practice,Emerald (MCB UP ),09684905|00000000 +PRIKLADNAYa DISKRETNAYa MATEMATIKA,Tomsk State University,20710410| +Prikladnaya diskretnaya matematika Prilozhenie,Tomsk State University,2226308X| +PRILOZI,De Gruyter Open Sp. z o.o. ,3501914 +Prilozi za knjizevnost i jezik istoriju i folklor,National Library of Serbia,03506673|24060798 +Primary Care and Community Psychiatry,Informa UK (Librapharm),17468841|1746885X +Primary Care Cardiovascular Journal (PCCJ),Sherborne Gibbs,17565138| +Primary Care Case Reviews,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10968954| +Primary Care Clinics in Office Practice,Elsevier ,00954543| +Primary Care Diabetes,Elsevier ,17519918| +Primary Care Psychiatry,Informa UK (Librapharm),13552570|14734885 +Primary Care Respiratory Journal,Nature Publishing Group,14714418|14751534 +Primary Care Respiratory Journal,Primary Care Respiratory Society UK, +Primary Care Update for OB/GYNS,Elsevier ,1068607X| +Primary Dental Care,The Royal College of Surgeons of England,13557610|17419344 +Primary Dental Journal,The Royal College of Surgeons of England,20501684|20501692 +Primary Education,Infra-M Academic Publishing House,19980728| +Primary Health Care,RCN Publishing,02645033|2047900X +Primary Health Care Open Access,OMICS Publishing Group,21671079 +Primary Health Care Research & Development,Cambridge University Press,14634236|14771128 +Primary Healthcare Open Access,OMICS Publishing Group, +Primary Prevention Insights,"""Libertas Academica, Ltd.""",11791748 +Primary Sensory Neuron,Brill Academic Publishers,09299637|00000000 +Primary Sources & Original Works,"""Informa UK (Haworth Press, Inc.,)""",10428216| +Primary Teacher Update,Mark Allen Group,20478917|20524609 +Primate Biology,Copernicus GmbH,23634715 +Primate Conservation,BioOne (Conservation International),08986207|21624232 +Primate Research,Primate Society of Japan,09124047|18802117 +Primates,Springer-Verlag,00328332|10167365 +Prime,Informa UK (Taylor & Francis),21598908|21598916 +Primeiros Estudos,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,22372423 +Primenjena psihologija,"""Faculty of Philosophy, University of Novi Sad""",18210147|23347287 +Primitive Man,JSTOR,08873925| +PRIMUS,Informa UK (Taylor & Francis),10511970|19354053 +Principaux indicateurs de la science et de la technologie,Organisation for Economic Co-Operation and Development ,23042788|23042796 +Principaux indicateurs économiques,Organisation for Economic Co-Operation and Development ,22195017|22195025 +Principia an international journal of epistemology,Universidade Federal de Santa Catarina,14144247|18081711 +Principles and Methods of Assessing the Walking Environment,Index Copernicus International,1231868X| +Principles of Medical Biology,Elsevier , +Principles of the Ecology,Petrozavodsk State University,23046465 +Prins Cyclization To Access Fluorinated Tetrahydropyrans Tetrahydrothiopyrans and Piperidines,Thieme Publishing Group,20300573 +Prion,Landes Bioscience,19336896|1933690X +PRISMA Economia - Società – Lavoro,Franco Angeli,03939049|20365063 +Prisma Juridico,University Nove de Julho - Uninove,16774760|19839286 +Prismas Direito Políticas Públicas e Mundialização,Centro de Ensino Unificado de Brasilia,18099602|18087477 +Privredna izgradnja,National Library of Serbia,00328979| +Pro Musica Sacra,Pontifical Universtiy of John Paul II in Krakow,20834039|23916729 +Pro-Fil,Masaryk University Press,12129097 +Pró-Fono Revista de Atualização Científica,SciELO,01045687|01045687 +Pro-Posições,SciELO,01037307|01037307 +Pro-Posições,SciELO,1037307 +Pro-Posições,SciELO,1037307 +Pro-Posições,SciELO,01037307|01037307 +Probabilistic Engineering Mechanics,Elsevier ,02668920| +Probability in the Engineering and Informational Sciences,Cambridge University Press,02699648|14698951 +Probability Surveys,Institute of Mathematical Statistics,15495787| +Probability Theory and Related Fields,Springer-Verlag,01788051|14322064 +Probation Journal,SAGE Publications,02645505|00000000 +Probe Microscopy,Informa UK (Taylor & Francis),1355185X| +Probiotics and Antimicrobial Proteins,Springer-Verlag,18671306|18671314 +Problemas del Desarrollo,Elsevier ,03017036| +Problemata,Problemata: International Journal of Philosophy,15169219|22368612 +Problèmes d Amérique latine,CAIRN,07651333|19683898 +Problems in Economics,Informa UK (Taylor & Francis),00329436| +Problems in General Surgery,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,07398328| +Problems of Agricultural Economics,Index Copernicus International,00441600|23923458 +Problems of Biological Medical and Pharmaceutical Chemistry,"""Science and Education, Ltd.""",15609596| +Problems of Economic Transition,Informa UK (Taylor & Francis),10611991|1557931X +Problems of Information Transmission,Pleiades Publishing,00329460|16083253 +Problems of Mechatronics Armament Aviation Safety Engineering,Index Copernicus International,20815891| +Problems of modern science and education,OLIMP,23042338|24134635 +Problems of Particularly Dangerous Infections,Russian Research Anti-Plague Institute Microbe,03701069| +Problems of Post-Communism,Informa UK (Taylor & Francis),10758216|1557783X +Problemy Drobnych Gospodarstw Rolnych / Problems of Small Agricultural Holdings,The University of Agriculture in Krakow,23000902| +Problemy Endokrinologii,Endocrinology Research Centre,03759660|23081430 +PROBLEMY JAKOŚCI,"""Wydawnictwo SIGMA-NOT, sp. z.o.o.""",01378651| +Problemy Zarzadzania,"""University of Warsaw, Faculty of Management""",16449584| +Probus,Walter de Gruyter GmbH,09214771|16134079 +ProCare,Springer-Verlag,09497323|16137574 +Procedia - Social and Behavioral Sciences,Elsevier ,18770428| +Procedia Chemistry,Elsevier ,18766196| +Procedia CIRP,Elsevier ,22128271| +Procedia Computer Science,Elsevier ,18770509| +Procedia Earth and Planetary Science,Elsevier ,18785220| +Procedia Economics and Finance,Elsevier ,22125671| +Procedia Economics and Finance,Elsevier ,22125671| +Procedia Engineering,Elsevier ,18777058| +Procedia Environmental Sciences,Elsevier ,18780296| +Procedia Food Science,Elsevier ,2211601X| +Procedia in Vaccinology,Elsevier ,1877282X| +Procedia IUTAM,Elsevier ,22109838| +Procedia Manufacturing,Elsevier ,23519789| +Procedia Materials Science,Elsevier ,22118128| +Procedia Technology,Elsevier ,22120173| +Proceeding of Japanese Society of Stomatognathic Function,Japanese Society of Stomatognathic Function,09118721|21854963 +Proceeding of the Bulgarian Academy of Sciences,Prof. Marin Drinov Academic Publishing House,13101331| +Proceedings - Mathematical Sciences,Springer-Verlag,02534142|09737685 +Proceedings American Society of Mining and Reclamation,American Society of Mining and Reclamation (ASMR), +Proceedings and Addresses of the American Philosophical Association,JSTOR,0065972X| +Proceedings and transactions of the Royal Society of Canada Délibérations et mémoires de la Société royale du Canada,Smithsonian Institution Biodiversity Heritage Library,03164616| +Proceedings Animal Sciences,Springer-Verlag,02534118| +PROCEEDINGS OF CIVIL ENGINEERING IN THE OCEAN,Japan Society of Civil Engineers,09127348|18848265 +PROCEEDINGS OF COASTAL ENGINEERING JSCE,Japan Society of Civil Engineers,09167897|18848222 +Proceedings of Electrotechnical Institute,Index Copernicus International,00326216| +Proceedings of geosynthetics symposium,Japan Chapter of International Geosynthetics Society,13443496|18843719 +Proceedings of geotextile symposium,Japan Chapter of International Geosynthetics Society,09137882| +Proceedings of Higher Educational Institutions Маchine Building,Bauman Moscow State Technical University,05361044| +PROCEEDINGS OF HYDRAULIC ENGINEERING,Japan Society of Civil Engineers,09167374|18849172 +Proceedings of International Conference on Engineering and Technology Education,Science and Education Research Council - COPEC, +Proceedings of Japan Society of Regional Science,The Japan Section of the Regional Science Association International,02876248| +Proceedings of Peerage of Science,Peerage of Science,23240121| +Proceedings of Peter the Great St Petersburg Polytechnic University,St. Petersburg State Polytechnical University,19933878| +Proceedings of Science Open Reviewed,Proceedings of Science Open Reviewed,2291692X +Proceedings of Singapore Healthcare,SAGE Publications,20101058|20592329 +Proceedings of Southern Federal University Philology,Southern Federal University,19950640|23121343 +Proceedings of the 2nd International Business and System Conference BSC 2013,Riga Technical University,14079291| +Proceedings of the Academy of Natural Sciences of Philadelphia,BioOne (Academy of Natural Sciences of Philadelphia),00973157|19385293 +Proceedings of the Academy of Political Science,JSTOR,00650684| +Proceedings of the Academy of Political Science in the City of New York,JSTOR,15487237| +Proceedings of the American Academy for Jewish Research,JSTOR,00656798| +Proceedings of the American Academy of Arts and Sciences,JSTOR,01999818| +Proceedings of the American Catholic Philosophical Association,Philosophy Documentation Center,00657638| +Proceedings of the American Institute of Electrical Engineers,Institute of Electrical and Electronics Engineers,00972444| +Proceedings of the American Mathematical Society,American Mathematical Society,00029939|10886826 +Proceedings of the American Mathematical Society Series B,American Mathematical Society,23301511 +Proceedings of the American Microscopical Society,JSTOR,10602682| +Proceedings of the American Philosophical Society held at Philadelphia for promoting useful knowledge,Smithsonian Institution Biodiversity Heritage Library,0003049X| +Proceedings of the American Political Science Association,JSTOR,15208605| +Proceedings of the American Society for Information Science and Technology,Wiley Blackwell (John Wiley & Sons),00447870|15508390 +Proceedings of the American Society of Microscopists,JSTOR,10601805| +Proceedings of the American Thoracic Society,American Thoracic Society,15463222|19435665 +Proceedings of the Analytical Division of the Chemical Society,The Royal Society of Chemistry,03061396| +Proceedings of the Annual Congresses of the Grassland Society of Southern Africa,Informa UK (Taylor & Francis),00725560| +Proceedings of the Annual Meeting (American Association of University Teachers of Insurance),JSTOR,15354024| +Proceedings of the Annual Meeting (American Society of International Law),American Society of International Law,02725037| +Proceedings of the annual meeting - World Mariculture Society,Wiley Blackwell (Blackwell Publishing),01640399| +Proceedings of the Annual Meeting American Association of Stratigraphic Palynologists,JSTOR,02701316| +Proceedings of the Annual Meetings on Phonology,Semantics and Pragmatics,23773324 +Proceedings of the annual workshop - World Mariculture Society,Wiley Blackwell (Blackwell Publishing),10435166| +Proceedings of the Aristotelian Society,Oxford University Press,00667374|14679264 +Proceedings of the Aristotelian Society (Hardback),Wiley Blackwell (Blackwell Publishing),00667373|00667372 +Proceedings of the Asia-Pacific Advanced Network,Proceedings of the Asia-Pacific Advanced Network,22273026 +Proceedings of the Association for Information Science and Technology,Wiley Blackwell (John Wiley & Sons),23739231| +Proceedings of the Association of American Physicians,Wiley Blackwell (Blackwell Publishing),1081650X|15251381 +Proceedings of the Biological Society of Washington,BioOne (The Biological Society of Washington),0006324X|19436327 +Proceedings of the Boston Area Colloquium of Ancient Philosophy,Brill Academic Publishers,1059986X|22134417 +Proceedings of the Boston Society of Natural History,Smithsonian Institution Biodiversity Heritage Library,02702444| +Proceedings of the British Institution of Radio Engineers,Institution of Electrical Engineers,20540558 +Proceedings of the British Society of Animal Production (1972),Cambridge University Press,03082296| +Proceedings of the California Academy of Sciences,Smithsonian Institution Biodiversity Heritage Library,0068547X| +Proceedings of the Cambridge Philological Society,Cambridge University Press,00686735| +Proceedings of the Chemical Society,The Royal Society of Chemistry,03688718| +Proceedings of the Chemical Society London,The Royal Society of Chemistry,03698718| +Proceedings of the Chemical Society of London,The Royal Society of Chemistry,02693143| +Proceedings of the Colonial Waterbird Group,JSTOR,15565785| +Proceedings of the Combustion Institute,Elsevier ,15407489| +Proceedings of the Edinburgh Mathematical Society,Cambridge University Press,00130915|14643839 +Proceedings of the Entomological Society of British Columbia,Smithsonian Institution Biodiversity Heritage Library,03169049| +Proceedings of the Entomological Society of London,Wiley Blackwell (Blackwell Publishing),14720949| +Proceedings of the Entomological Society of Washington,BioOne (Entomological Society of Washington),00138797| +Proceedings of the Estonian Academy of Sciences,Estonian Academy Publishers,17366046| +Proceedings of the Geologists Association,Elsevier ,00167878| +Proceedings of the Glasgow Mathematical Association,Cambridge University Press,20406185| +Proceedings of the Hawaiian Entomological Society,Smithsonian Institution Biodiversity Heritage Library,0073134X| +Proceedings of the Human Factors and Ergonomics Society Annual Meeting,SAGE Publications,15419312| +Proceedings of the ICE - Bridge Engineering,Thomas Telford Ltd.,14784637|17517664 +Proceedings of the ICE - Civil Engineering,Thomas Telford Ltd.,0965089X|17517662 +Proceedings of the ICE - Construction Materials,Thomas Telford Ltd.,1747650X|17476518 +Proceedings of the ICE - Energy,Thomas Telford Ltd.,17514223|17514231 +Proceedings of the ICE - Engineering and Computational Mechanics,Thomas Telford Ltd.,17550777|17550785 +Proceedings of the ICE - Engineering History and Heritage,Thomas Telford Ltd.,17579430|17579449 +Proceedings of the ICE - Engineering Sustainability,Thomas Telford Ltd.,14784629|17517680 +Proceedings of the ICE - Forensic Engineering,Thomas Telford Ltd.,20439903|20439911 +Proceedings of the ICE - Geotechnical Engineering,Thomas Telford Ltd.,13532618|17518563 +Proceedings of the ICE - Ground Improvement,Thomas Telford Ltd.,17550750|17550769 +Proceedings of the ICE - Management Procurement and Law,Thomas Telford Ltd.,17514304|17514312 +Proceedings of the ICE - Maritime Engineering,Thomas Telford Ltd.,17417597|17517737 +Proceedings of the ICE - Municipal Engineer,Thomas Telford Ltd.,09650903|17517699 +Proceedings of the ICE - Structures and Buildings,Thomas Telford Ltd.,09650911|17517702 +Proceedings of the ICE - Transport,Thomas Telford Ltd.,0965092X|17517710 +Proceedings of the ICE - Urban Design and Planning,Thomas Telford Ltd.,17550793|17550807 +Proceedings of the ICE - Waste and Resource Management,Thomas Telford Ltd.,17476526|17476534 +Proceedings of the ICE - Water and Maritime Engineering,Thomas Telford Ltd.,14724561|17537800 +Proceedings of the ICE - Water Management,Thomas Telford Ltd.,17417589|17517729 +Proceedings of the IEE - Part B Electronic and Communication Engineering,Institution of Electrical Engineers,20540418 +Proceedings of the IEE - Part B Radio and Electronic Engineering,Institution of Electrical Engineers,20540434 +Proceedings of the IEE - Part I General,Institution of Electrical Engineers,03698920|20540620 +Proceedings of the IEE - Part IA Electric Railway Traction,Institution of Electrical Engineers,20505515|2054071X +Proceedings of the IEE - Part II Power Engineering,Institution of Electrical Engineers,03698939|20540639 +Proceedings of the IEE - Part IIA Insulating Materials,Institution of Electrical Engineers,20505531|20540736 +Proceedings of the IEE - Part III Radio and Communication Engineering,Institution of Electrical Engineers,03698947|20540442 +Proceedings of the IEE - Part IIIA Television,Institution of Electrical Engineers,20505507|20540760 +Proceedings of the IEE - Part IV Institution Monographs,Institution of Electrical Engineers,03698912|20540701 +Proceedings of the IEE Part A Power Engineering,Institution of Electrical Engineers,03698882| +Proceedings of the IEE Part B Electronic and Communication Engineering,Institution of Electrical Engineers,03698890| +Proceedings of the IEE Part C Monographs,Institution of Electrical Engineers,03698904| +Proceedings of the IEEE,Institute of Electrical and Electronics Engineers,00189219|15582256 +Proceedings of the Imperial Academy,Project Euclid,03699846| +Proceedings of the Indian Academy of Sciences - Section A,Springer-Verlag,03700089| +Proceedings of the Indian Academy of Sciences - Section A Part 3 Mathematical sciences,Springer-Verlag,03700097| +Proceedings of the Indian Division of the British Institution of Radio Engineers,Institution of Electrical Engineers,20541554 +Proceedings of the Indian Division of the Institution of Electronic and Radio Engineers,Institution of Electrical Engineers,20541562 +Proceedings of the Indian National Science Academy,Indian National Science Academy,3700046 +Proceedings of the Indiana Academy of Science,Smithsonian Institution Biodiversity Heritage Library,00736767| +Proceedings of the Institute for System Programming of RAS,Institute for System Programming of the Russian Academy of Sciences,20798156|22206426 +Proceedings of the Institute of Chemistry of Great Britain and Ireland,The Royal Society of Chemistry, +Proceedings of the Institute of Radio Engineers,Institute of Electrical and Electronics Engineers,07315996| +Proceedings of the Institution of Automobile Engineers,SAGE Publications,03699838| +Proceedings of the Institution of Civil Engineers,Thomas Telford Ltd.,17537789 +Proceedings of the Institution of Electrical Engineers,Institution of Electrical Engineers,00203270| +Proceedings of the Institution of Electronic and Radio Engineers,Institution of Electrical Engineers,20540566 +Proceedings of the Institution of Mechanical Engineers,SAGE Publications,00203483|00203483 +Proceedings of the Institution of Mechanical Engineers Automobile Division,SAGE Publications,03678822| +Proceedings of the Institution of Mechanical Engineers Conference Proceedings,SAGE Publications,03678849| +Proceedings of the Institution of Mechanical Engineers Part A Journal of Power and Energy,SAGE Publications,09576509|20412967 +Proceedings of the Institution of Mechanical Engineers Part B Journal of Engineering Manufacture,SAGE Publications,09544054|20412975 +Proceedings of the Institution of Mechanical Engineers Part C Journal of Mechanical Engineering Science,SAGE Publications,09544062|20412983 +Proceedings of the Institution of Mechanical Engineers Part D Journal of Automobile Engineering,SAGE Publications,09544070|20412991 +Proceedings of the Institution of Mechanical Engineers Part E Journal of Process Mechanical Engineering,SAGE Publications,09544089|20413009 +Proceedings of the Institution of Mechanical Engineers Part F Journal of Rail and Rapid Transit,SAGE Publications,09544097|20413017 +Proceedings of the Institution of Mechanical Engineers Part G Journal of Aerospace Engineering,SAGE Publications,09544100|20413025 +Proceedings of the Institution of Mechanical Engineers Part H Journal of Engineering in Medicine,SAGE Publications,09544119|20413033 +Proceedings of the Institution of Mechanical Engineers Part I Journal of Systems and Control Engineering,SAGE Publications,09596518|20413041 +Proceedings of the Institution of Mechanical Engineers Part J Journal of Engineering Tribology,SAGE Publications,13506501|2041305X +Proceedings of the Institution of Mechanical Engineers Part K Journal of Multi-body Dynamics,SAGE Publications,14644193|20413068 +Proceedings of the Institution of Mechanical Engineers Part L Journal of Materials Design and Applications,SAGE Publications,14644207|20413076 +Proceedings of the Institution of Mechanical Engineers Part M Journal of Engineering for the Maritime Environment,SAGE Publications,14750902|20413084 +Proceedings of the Institution of Mechanical Engineers Part N Journal of Nanoengineering and Nanosystems,SAGE Publications,17403499|20413092 +Proceedings of the Institution of Mechanical Engineers Part N Journal of Nanoengineering and Nanosystems,SAGE Publications,23977914|23977922 +Proceedings of the Institution of Mechanical Engineers Part O Journal of Risk and Reliability,SAGE Publications,1748006X|17480078 +Proceedings of the Institution of Mechanical Engineers Part P Journal of Sports Engineering and Technology,SAGE Publications,17543371|1754338X +Proceedings of the International Association for Business and Society,Philosophy Documentation Center,21552568| +Proceedings of the International Association of Hydrological Sciences,Copernicus GmbH,2199899X +Proceedings of the International Association of Hydrological Sciences,Copernicus GmbH,2199899X +Proceedings of the International Astronomical Union,Cambridge University Press,17439213|17439221 +Proceedings of the International Society for Magnetic Resonance in Medicine,Wiley Blackwell (John Wiley & Sons),10659889|15573672 +Proceedings of the International Symposium on Human Factors and Ergonomics in Health Care,SAGE Publications,23278579|23278595 +Proceedings of the IRE,Institute of Electrical and Electronics Engineers,00968390| +Proceedings of the ISCIE International Symposium on Stochastic Systems Theory and its Applications,"""The Institute of Systems, Control and Information Engineers""",21884730|21884749 +Proceedings of the Japan Academy,Project Euclid,00214280| +Proceedings of the Japan Academy Series A Mathematical Sciences,Project Euclid,03862194| +Proceedings of the Japan Academy Series B,The Japan Academy,03862208|13492896 +Proceedings of the Japan Society of Civil Engineers,Japan Society of Civil Engineers,03855392|18844936 +Proceedings of The Japanese Association of Animal Models for Human Diseases,Japanese Association for Laboratory Animal Science,09112057|18844189 +PROCEEDINGS OF THE JAPANESE CONFERENCE ON COASTAL ENGINEERING,Japan Society of Civil Engineers,02857308|18848214 +PROCEEDINGS OF THE JAPANESE CONFERENCE ON HYDRAULICS,Japan Society of Civil Engineers,09134131|18849164 +Proceedings of the Japanese Histochemical Association,Japan Society of Histochemistry and Cytochemistry,18839444 +Proceedings of The Japanese Society of Animal Models for Human Diseases,Japanese Association for Laboratory Animal Science,09188991|18844197 +Proceedings of the JFPS International Symposium on Fluid Power,The Japan Fluid Power System Society,21856303 +PROCEEDINGS OF THE JSCE EARTHQUAKE ENGINEERING SYMPOSIUM,Japan Society of Civil Engineers,09134085|18848427 +Proceedings of the Karelian Research Centre of the Russian Academy of Sciences,Karelian Research Centre of the Russian Academy of Sciences,19973217|23124504 +Proceedings of the Latvia University of Agriculture,De Gruyter Open Sp. z o.o. ,22558535| +Proceedings of the Latvia University of Agriculture,De Gruyter Open Sp. z o.o. ,14074427|22558535 +Proceedings of the Latvian Academy of Sciences Section B Natural Exact and Applied Sciences,De Gruyter Open Sp. z o.o. ,1407009X|1407009X +Proceedings of the Linnean Society of London,Wiley Blackwell (Blackwell Publishing),03700461| +Proceedings of the Linnean Society of New South Wales,Smithsonian Institution Biodiversity Heritage Library,0370047X| +Proceedings of the London Mathematical Society,Oxford University Press - London Mathematical Society,00246115|12345678 +Proceedings of the Mongolian Academy of Sciences,Mongolia Journals Online,23122994 +Proceedings of the Musical Association,Informa UK (Taylor & Francis),09588442| +Proceedings of the National Academy of Sciences,Proceedings of the National Academy of Sciences,00278424|10916490 +Proceedings of the National Academy of Sciences India Section A Physical Sciences,Springer-Verlag,03698203|22501762 +Proceedings of the National Academy of Sciences India Section B Biological Sciences,Springer-Verlag,03698211|22501746 +Proceedings of the National Shellfisheries Association,Smithsonian Institution Biodiversity Heritage Library,00775711| +Proceedings of the New England Zoölogical Club,Smithsonian Institution Biodiversity Heritage Library,07498934| +Proceedings of The Nutrition Society,Cambridge University Press,00296651|14752719 +Proceedings of the Philological Society,Wiley Blackwell (Blackwell Publishing),20505914| +Proceedings of the Physical Society,IOP Publishing,03701328| +Proceedings of the Physical Society of London,IOP Publishing,14787814| +Proceedings of the Physical Society Section A,IOP Publishing,03701298| +Proceedings of the Physical Society Section B,IOP Publishing,03701301| +Proceedings of the Prehistoric Society,Cambridge University Press,0079497X|20502729 +Proceedings of the Prehistoric Society of East Anglia,Cambridge University Press,09588418|09588418 +Proceedings of the Rochester Academy of Science,Smithsonian Institution Biodiversity Heritage Library,00964166| +Proceedings of the Royal Anthropological Institute of Great Britain and Ireland,JSTOR,00804169| +Proceedings of the Royal Entomological Society of London,Wiley Blackwell (Blackwell Publishing),14720981| +Proceedings of the Royal Entomological Society of London Series A General Entomology,Wiley Blackwell (Blackwell Publishing),03750418| +Proceedings of the Royal Entomological Society of London Series B Taxonomy,Wiley Blackwell (Blackwell Publishing),03750434| +Proceedings of the Royal Entomological Society of London Series C Journal of Meetings,Wiley Blackwell (Blackwell Publishing),19461496|1946150X +Proceedings of the Royal Geographical Society and Monthly Record of Geography,JSTOR,0266626X| +Proceedings of the Royal Geographical Society of London,JSTOR,1478615X| +Proceedings of the Royal Irish Academy Section C Archaeology Celtic Studies History Linguistics Literature,Royal Irish Academy,00358991|20090048 +Proceedings of the Royal Musical Association,Informa UK (Taylor & Francis),00804452| +Proceedings of The Royal Society A Mathematical Physical and Engineering Sciences,The Royal Society,13645021|14712946 +Proceedings of The Royal Society B Biological Sciences,The Royal Society,09628452|14712954 +Proceedings of the Royal Society of Edinburgh,Cambridge University Press,03701646| +Proceedings of the Royal Society of Edinburgh Section A Mathematical and Physical Sciences,Cambridge University Press,00804541| +Proceedings of the Royal Society of Edinburgh Section A Mathematics,Cambridge University Press,03082105|14737124 +Proceedings of the Royal Society of Edinburgh Section B Biological Sciences,Cambridge University Press,02697270| +Proceedings of the Royal Society of Edinburgh Section B Biology,Cambridge University Press,0080455X| +Proceedings of the Royal Society of Edinburgh Section B Natural Environment,Cambridge University Press,03082113| +Proceedings of the Royal Society of London,The Royal Society,03701662| +Proceedings of the Royal Society of Queensland,Smithsonian Institution Biodiversity Heritage Library,0080469X| +Proceedings of the Royal Society of Victoria,CSIRO Publishing,00359211| +Proceedings of the Russian higher school Academy of sciences,Novosibirsk State Technical University,17272769| +Proceedings of the Saint Petersburg Forestry Research Institute,FBU SPbFRI,20796080| +Proceedings of the San Diego Society of Natural History,Smithsonian Institution Biodiversity Heritage Library,10598707| +Proceedings of the Society for Analytical Chemistry,The Royal Society of Chemistry,00379697| +Proceedings of the Society for Applied Bacteriology,Wiley Blackwell (Blackwell Publishing),03701778| +Proceedings of The Society for Experimental Biology and Medicine,Wiley Blackwell (Blackwell Publishing),00379727|15251373 +Proceedings of the Society of Agricultural Bacteriologists,Wiley Blackwell (Blackwell Publishing),03701786| +Proceedings of the Society of Antiquaries of London,Cambridge University Press,09507973| +Proceedings of the Society of Magnetic Resonance,Wiley Blackwell (John Wiley & Sons),10659889|15573672 +Proceedings of the Society of Magnetic Resonance in Medicine,Wiley Blackwell (John Wiley & Sons),10659889|15573672 +Proceedings of the Steklov Institute of Mathematics,Pleiades Publishing,00815438|15318605 +Proceedings of the Symposium on Combustion,Elsevier ,10622888| +Proceedings of the Symposium on Global Environment,Japan Society of Civil Engineers,18848419 +Proceedings of the United States National Museum,Smithsonian Institution,00963801| +Proceedings of the VLDB Endowment,VLDB Endowment,21508097| +Proceedings of the Washington Academy of Sciences,Smithsonian Institution Biodiversity Heritage Library,03631095| +Proceedings of the Water Environment Federation,Water Environment Federation,19386478| +Proceedings of the Wisconsin Space Conference,Wisconsin Space Grant Consortium,23748877|23748885 +Proceedings of the World Mariculture Society,Wiley Blackwell (Blackwell Publishing),07483260| +Proceedings of the Yorkshire Geological Society,Geological Society of London,00440604|20414811 +Proceedings of the Zoological Society,Springer-Verlag,03735893|09746919 +Proceedings of the Zoological Society of London,Wiley Blackwell (Blackwell Publishing),03702774| +Proceedings of VIAM,FSUE Scientific Research Institute of Aviation Materials,23076046| +Proceedings on Privacy Enhancing Technologies,Walter de Gruyter GmbH,22990984 +PROCEEDINGS SES 2011 Seventh Scientific Conference with International Participation SPACE ECOLOGY SAFETY,Prof. Marin Drinov Academic Publishing House,13133888| +PROCES,Boom Uitgevers Den Haag,01650076| +Process Biochemistry,Elsevier ,00329592| +Process Biochemistry,Elsevier ,13595113| +Process Control and Quality,Brill Academic Publishers,09243089|15685667 +Process Metallurgy,Elsevier , +Process Safety and Environmental Protection,Elsevier ,09575820|09575820 +Process Safety Progress,Wiley Blackwell (John Wiley & Sons),10668527|15475913 +Process Studies,Philosophy Documentation Center,03606503| +Processes,MDPI AG,22279717 +Processing and Application of Ceramics,National Library of Serbia,18206131|24061034 +Prodovolʹstvennaâ politika i bezopasnostʹ,BIBLIO-GLOBUS Publishing House,24128694 +Produção em Foco,Centro Universitario UNISOCIESC,22375163 +Product Management & Development,Editora Cubo Multimidia,16764056|16764056 +Production,SciELO,01036513|01036513 +Production & Manufacturing Research,Informa UK (Taylor & Francis),21693277 +Production and Operations Management,Wiley Blackwell (Blackwell Publishing),10591478|19375956 +Production Engineer,Institution of Electrical Engineers,00329851| +Production Engineering,Springer-Verlag,09446524|18637353 +Production Planning and Control,Informa UK (Taylor & Francis),09537287|13665871 +Productivity Review,Korea Productivity Association,12253553| +Profession,Modern Language Association,07406959|00000000 +Profession-oriented School,Infra-M Academic Publishing House,19980744| +Professional Case Management,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,19328087| +Professional Development in Education,Informa UK (Taylor & Francis),19415257|19415265 +Professional Ethics A Multidisciplinary Journal,Philosophy Documentation Center,10636579| +Professional Psychology,American Psychological Association,00330175| +Professional Psychology Research and Practice,American Psychological Association,07357028|19391323 +Professional School Counseling,American School Counselor Association,10962409|2156759X +Professional School Psychology,American Psychological Association,08863016| +Professionals Center for Business Research,Alkhaer Publications,24099783 +Professions and Professionalism,Oslo and Akershus University College of Applied Sciences,18931049 +PROFILE Issues in Teachers Professional Development,Universidad Nacional de Colombia,16570790|22565760 +Prognostics,Journal of Pattern Recognition Research,21674167 +Program electronic library and information systems,Emerald (MCB UP ),00330337|00330337 +Program in Ethnographic Film (PIEF) Newsletter,Wiley Blackwell (Blackwell Publishing),00308013| +Program systems theory and applications,Infra-M Academic Publishing House,20793316| +Programme Grants for Applied Research,National Institute for Health Research,20504322|20504330 +Programming and Computer Software,Pleiades Publishing,03617688|16083261 +PROGRAMMNAYA INGENERIA,New Technologies Publishing House,22203397| +Progrès en Urologie,Elsevier ,11667087| +Progrès en Urologie - FMC,Elsevier ,1761676X| +Progresos de Obstetricia y Ginecología,Elsevier ,03045013| +Progress in Additive Manufacturing,Springer-Verlag,23639512|23639520 +Progress in Aerospace Sciences,Elsevier ,03760421| +Progress in Agricultural Engineering Sciences,Akademiai Kiado Zrt.,1786335X|17870321 +Progress in Artificial Intelligence,Springer-Verlag,21926352|21926360 +PROGRESS IN BIOCHEMISTRY AND BIOPHYSICS,China Science Publishing & Media Ltd.,10003282| +Progress in Biomaterials,Springer-Verlag,21940517|21940517 +Progress in Biophysics and Molecular Biology,Elsevier ,00796107| +Progress in Biotechnology,Elsevier , +Progress in Cardiovascular Diseases,Elsevier ,00330620| +Progress in Cardiovascular Nursing,Wiley Blackwell (Blackwell Publishing),08897204|17517117 +Progress in Colloid & Polymer Science,Springer-Verlag,0340255X| +Progress in Community Health Partnerships Research Education and Action,Muse - Johns Hopkins University Press,1557055X +Progress in Computational Fluid Dynamics An International Journal,Inderscience Enterprises Ltd.,14684349|17415233 +Progress in Crystal Growth and Characterization,Elsevier ,01463535| +Progress in Crystal Growth and Characterization of Materials,Elsevier ,09608974| +Progress in Development Studies,SAGE Publications,14649934|00000000 +Progress in Earth and Planetary Science,Springer (Biomed Central Ltd.),21974284|21974284 +Progress In Electromagnetics Research,The Electromagnetics Academy (EMW Publishing),15598985 +Progress In Electromagnetics Research B,The Electromagnetics Academy (EMW Publishing),19376472 +Progress In Electromagnetics Research C,The Electromagnetics Academy (EMW Publishing),19378718 +Progress In Electromagnetics Research Letters,The Electromagnetics Academy (EMW Publishing),19376480 +Progress In Electromagnetics Research M,The Electromagnetics Academy (EMW Publishing),19378726 +Progress in Energy and Combustion Science,Elsevier ,03601285| +Progress in Fractional Differentiation and Applications,Natural Sciences Publishing,23569336|23569344 +Progress in Growth Factor Research,Elsevier ,09552235| +Progress in Heterocyclic Chemistry (now under book series),Elsevier , +Progress in Histochemistry and Cytochemistry,Elsevier ,00796336| +Progress in Human Geography,SAGE Publications,03091325|14770288 +Progress in Industrial Ecology An International Journal,Inderscience Enterprises Ltd.,14768917|14788764 +Progress in Industrial Microbiology,Elsevier , +Progress in Informatics,National Institute of Informatics,13498614|13498606 +Progress in Intelligent Computing and Applications,AICIT,22874844|22874852 +Progress in Lipid Research,Elsevier ,01637827| +Progress in Management Sciences,Progressive Science Publications,23115688|23111860 +Progress in Materials Science,Elsevier ,00796425| +Progress in Medical Physics,Korean Society of Medcial Physics (KAMJE),12265829|22889620 +Progress in Medicinal Chemistry,Elsevier ,00796468| +Progress in Metal Physics,Elsevier ,05028205| +Progress in Multiphase Flow Research,The Japanese Society for Multiphase Flow,18815804|18816088 +Progress in Nanotechnology and Nanomaterials,The World Academic Publishing,23060034|23060026 +Progress in Natural Science Materials International,Elsevier ,10020071|17455391 +Progress in Neuro-Psychopharmacology,Elsevier ,03647722| +Progress in Neuro-Psychopharmacology and Biological Psychiatry,Elsevier ,02785846| +Progress in Neurobiology,Elsevier ,03010082| +Progress in Neurology and Psychiatry,Wiley Blackwell (John Wiley & Sons),13677543|1931227X +Progress in Neurotherapeutics and Neuropsychopharmacology,Cambridge University Press,17482321|1748233X +Progress in Nuclear Energy,Elsevier ,01491970| +Progress in Nuclear Magnetic Resonance Spectroscopy,Elsevier ,00796565| +Progress in Nuclear Science and Technology,The Atomic Energy Society of Japan,21854823| +Progress in Nucleic Acid Research and Molecular Biology,Elsevier , +Progress In Oceanography,Elsevier ,00796611| +Progress in Organic Coatings,Elsevier ,00330655| +Progress in Organic Coatings,Elsevier ,03009440| +Progress in Orthodontics,Springer (Biomed Central Ltd.),21961042|21961042 +Progress in Orthodontics,Wiley Blackwell (Blackwell Publishing),13997513|16009975 +Progress in Orthodontics,Elsevier ,17237785| +Progress in Orthopedic Science,ScopeMed International Medical Journal Managment and Indexing System,21468370| +Progress in Palliative Care,Maney Publishing,09699260|00000000 +Progress in Particle and Nuclear Physics,Elsevier ,01466410| +Progress in Pediatric Cardiology,Elsevier ,10589813| +Progress in Photovoltaics Research and Applications,Wiley Blackwell (John Wiley & Sons),10627995|1099159X +Progress in Physical Geography,SAGE Publications,03091333|00000000 +Progress in Planning,Elsevier ,03059006| +Progress in Plant Protection,Institute of Plant Protection - National Research Institute,14274337|20844883 +Progress in Polymer Science,Elsevier ,00796700| +Progress in Quantum Electronics,Elsevier ,00796727| +Progress in Reaction Kinetics and Mechanism,Science Reviews 2000 LTD.,00796743|14686783 +Progress in Retinal and Eye Research,Elsevier ,13509462| +Progress in Retinal Research,Elsevier ,02784327| +Progress in Solid State Chemistry,Elsevier ,00796786| +Progress in Stem Cell,Springer - Global Science Journals,21994633|21994633 +Progress in Structural Engineering and Materials,Wiley Blackwell (John Wiley & Sons),13650556|15282716 +Progress in Superconductivity and Cryogenics,The Korea Institute of Applied Superconductivity and Cryogenics,12293008| +Progress in Surface Science,Elsevier ,00796816| +Progress in the Chemistry of Fats and other Lipids,Elsevier ,00796832| +Progress in Tourism and Hospitality Research,Wiley Blackwell (John Wiley & Sons),10773509|10991603 +Progress in Transplantation,SAGE Publications,15269248|21646708 +Progress of Digestive Endoscopy,"""Japan Gastrointestinal Endoscopy Society, Kanto Chapter""",13489844|21874999 +Progress of Digestive Endoscopy(1972),"""Japan Gastrointestinal Endoscopy Society, Kanto Chapter""",03899403|21890021 +Progress of Theoretical and Experimental Physics,Oxford University Press,20503911 +Progress of Theoretical Physics,Oxford University Press,0033068X|13474081 +Progress of Theoretical Physics Supplement,Oxford University Press,03759687| +Progress on Chemistry and application of Chitin and its Derivatives,Polish Chitin Society,18965644| +Progressive Agriculture,Bangladesh Journals Online,10178139|23102950 +Progressive Agriculture,Diva Enterprises Private Limited,09726152|09764615 +Progressive Horticulture,Diva Enterprises Private Limited,09703020|22495258 +Progressive Science,TranScience Publishing,23732202 +Project Appraisal,Informa UK (Taylor & Francis),02688867| +Project Management Journal,Wiley Blackwell (John Wiley & Sons),87569728|19389507 +PROJECT MANAGER (IL),Franco Angeli,20377363|20377657 +Projectics / Proyéctica / Projectique,CAIRN,20319703|20320043 +Projections,Berghahn Books,19349688|19343698 +Projet,CAIRN,00330884|21086648 +Projetica,Universidade Estadual de Londrina,22362207 +Prolegómenos,Universidad Militar Nueva Granada,0121182X|0121182X +ProMed komplementär,Springer-Verlag,18665756|16137582 +PROMET - Traffic&Transportation,Faculty of Transport and Traffic Sciences,03535320|18484069 +Prometheus,Informa UK (Taylor & Francis),08109028|14701030 +Promotion & Education,SAGE Publications,10253823| +Prooftexts,Indiana University Press,02729601|10863311 +Propellants Explosives Pyrotechnics,Wiley Blackwell (John Wiley & Sons),07213115|15214087 +Property Management,Emerald (MCB UP ),02637472|00000000 +Propósitos y Representaciones,Universidad San Ignacio de Loyola S.A.,23077999|23104635 +Propulsion and Power Research,Elsevier ,2212540X| +Prose Studies,Informa UK (Taylor & Francis),01440357|17439426 +Prose Studies 1800-1900,Informa UK (Taylor & Francis),09544135| +Prosemas,Universidad de Oviedo,23868015|23869461 +Prospectiva,Universidad Autonoma del Caribe,16928261|22161368 +Prospects,Cambridge University Press,03612333|14716399 +Prospects,Springer-Verlag,00331538|15739090 +Prospects in Education,Springer-Verlag,10144560| +Prospero,"""Science and Education, Ltd.""", +Prostaglandines and Medicine,Elsevier ,01614630| +Prostaglandins & Other Lipid Mediators,Elsevier ,10988823| +Prostaglandins & Other Lipid Mediators,Elsevier ,00906980| +Prostaglandins and Medicine,Elsevier ,01614630| +Prostaglandins Leukotrienes and Essential Fatty Acids (PLEFA),Elsevier ,09523278| +Prostaglandins Leukotrienes and Medicine,Elsevier ,02621746| +Prostate Cancer,Hindawi Publishing Corporation,20903111|2090312X +Prostate Cancer and Prostatic Diseases,Nature Publishing Group,13657852|13657852 +Prostate International,Elsevier ,22878882|2287903X +Prosthetics and Orthotics International,SAGE Publications,03093646|17461553 +Prosthodontic Research & Practice,Japan Prosthodontic Society,13477021| +Prosthodontics,Index Copernicus International,00331783| +Protected horticulture and Plant Factory,Korean Society for Bio-Environment Control,22880992|2288100X +Protection of Metals,Pleiades Publishing,00331732|1608327X +Protection of Metals and Physical Chemistry of Surfaces,Pleiades Publishing,20702051|2070206X +Protée,Consortium Erudit,03003523|17082307 +Protein & Cell,Springer-Verlag,1674800X|16748018 +Protein and Peptide Letters,Bentham Science,09298665|00000000 +Protein Engineering,Oxford University Press,1460213X +Protein Engineering Design and Selection,Oxford University Press,17410126|17410134 +Protein Expression and Purification,Elsevier ,10465928|10960279 +Protein Science,Wiley Blackwell (John Wiley & Sons),09618368|1469896X +Protein Structure Initiative Structural Genomics Knowledgebase,Protein Structure Initiative Structural Genomic Knowledgebase Rutgers,17581338 +Proteins Structure Function and Bioinformatics,Wiley Blackwell (John Wiley & Sons),08873585|10970134 +Proteome,Springer-Verlag,14397277|14397285 +Proteome Science,Springer (Biomed Central Ltd.),14775956|14775956 +Proteomes,MDPI AG,22277382 +PROTEOMICS,Wiley Blackwell (John Wiley & Sons),16159853|16159861 +PROTEOMICS - CLINICAL APPLICATIONS,Wiley Blackwell (John Wiley & Sons),18628346|18628354 +Proteomics Insights,"""Libertas Academica, Ltd.""",11786418 +Proteopedia,Proteopedia,23106301 +Protist,Elsevier ,14344610| +Protist Genomics,De Gruyter Open Sp. z o.o. ,2299100X +Protocol Exchange,Nature Publishing Group,20430116 +Protonation of Enolates with Chiral Proton Donors,Thieme Publishing Group,20300387 +PROTOPLASMA,Springer-Verlag,0033183X|16156102 +Provincial China,Informa UK (Taylor & Francis),13267612|14767104 +Proyecciones (Antofagasta),SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,07160917|07160917 +Proyecto Progreso Arquitectura,Editorial Universidad de Sevilla,21716897|21731616 +Prufrock Journal,SAGE Publications,10471855| +Przedsiebiorczosc i Zarzadzanie,De Gruyter Open Sp. z o.o. ,17332486 +Przegląd Badań Edukacyjnych,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,18954308|23921544 +PRZEGLĄD CHIRURGII DZIECIĘCEJ,Blackhorse Publishing,1896477X| +PRZEGLĄD ELEKTROTECHNICZNY,"""Wydawnictwo SIGMA-NOT, sp. z.o.o.""",00332097| +Przegląd Filozoficzny - Nowa Seria,De Gruyter Open Sp. z o.o. ,12301493| +Przeglad Filozoficzny - Nowa Seria,De Gruyter Open Sp. z o.o. ,23002573 +PRZEGLĄD GEODEZYJNY,"""Wydawnictwo SIGMA-NOT, sp. z.o.o.""",00332127| +Przegląd Geograficzny,"""Institute of Geography and Spatial Organization, Polish Academy of Sciences""",00332143| +PRZEGLĄD GINEKOLOGICZNO-POŁOŻNICZY,Blackhorse Publishing,16416565|16416562 +Przegląd Medyczny Uniwersytetu Rzeszowskiego i Narodowego Instytutu Leków w Warszawie,University of Rzeszow,2082369X| +PRZEGLĄD PAPIERNICZY,"""Wydawnictwo SIGMA-NOT, sp. z.o.o.""",00332291| +Przegląd Politologiczny,Adam Mickiewicz University Poznan,14268876| +Przegląd Prawa Ochrony Środowiska,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,20809506| +Przegląd Prawniczy Uniwersytetu im Adama Mickiewicza,Adam Mickiewicz University Poznan,20839782|24500976 +Przegląd Strategiczny,Adam Mickiewicz University Poznan,20846991| +PRZEGLĄD TELEKOMUNIKACYJNY - WIADOMOŚCI TELEKOMUNIKACYJNE,"""Wydawnictwo SIGMA-NOT, sp. z.o.o.""",12303496| +PRZEGLĄD WŁÓKIENNICZY - WŁÓKNO ODZIEŻ SKÓRA,"""Wydawnictwo SIGMA-NOT, sp. z.o.o.""",17318645| +PrzeglÄ…d Prawa Rolnego,Adam Mickiewicz University Poznan,18977626| +PRZEMYSŁ CHEMICZNY,"""Wydawnictwo SIGMA-NOT, sp. z.o.o.""",00332496| +PRZEMYSŁ FERMENTACYJNY I OWOCOWO-WARZYWNY,"""Wydawnictwo SIGMA-NOT, sp. z.o.o.""",01372645| +PRZEMYSŁ SPOŻYWCZY,"""Wydawnictwo SIGMA-NOT, sp. z.o.o.""",0033250X| +Przestrzenie Teorii,Adam Mickiewicz University Poznan,16446763| +PS,JSTOR,00308269| +PSA Proceedings of the Biennial Meeting of the Philosophy of Science Association,The University of Chicago Press,02708647| +PSI Structural Genomics Knowledgebase,Nature Publishing Group,20418442| +Psichologija,Vilnius University,13920359|13920359 +Psico,EDIPUCRS,01035371|19808623 +Psico-USF,SciELO,14138271|14138271 +PSICOANALISI,Franco Angeli,19710364|1972490X +PSICOBIETTIVO,Franco Angeli,03922952|1972487X +Psicodebate,Fundacion Universidad de Palermo,15152251|15152251 +psicogente,Universidad Simon Bolivar,01240137|2027212X +Psicologí a Educativa,Elsevier ,1135755X| +Psicologia,Associacao Portuguesa de Psicologia,08742049|21832471 +Psicologia & Sociedade,SciELO,01027182|01027182 +Psicologia - Teoria e Prática,Revista Psicologia: Teoria e Pratica,15163687|19806906 +Psicologia Argumento,Pontificia Universidade Catolica do Parana - PUCPR,01037013| +Psicologia Ciência e Profissão,SciELO,14149893|19823703 +Psicologia Clínica,SciELO,01035665|01035665 +PSICOLOGIA DELLA SALUTE,Franco Angeli,17210321|19725167 +psicología desde el caribe,Universidad del Norte,0123417X|20117485 +PSICOLOGIA DI COMUNITA,Franco Angeli,18275249|1971842X +Psicologia e Saber Social,Universidade do Estado do Rio de Janeiro UERJ,2238779X +Psicologia em Estudo,Universidade Estadual de Maringa,14137372|14137372 +Psicologia em Pesquisa,Zeppelini Editorial e Comunicacao,19821247| +Psicologia em Revista,Pontificia Universidade Catolica de Minas Gerais,16771168|16789563 +Psicologia Escolar e Educacional,SciELO,14138557|21753539 +Psicologia Reflexão e Crítica,SciELO,01027972|01027972 +Psicologia Saúde & Doença,Sociedad Portuguesa de Psicologia da Saude,21828407 +Psicologia Saúde & Doenças,Sociedad Portuguesa de Psicologia da Saude,16450086 +Psicologia Teoria e Pesquisa,SciELO,01023772|01023772 +Psicologia USP,SciELO,01036564|01036564 +Psicólogo inFormação,Instituto Metodista de Ensino Superior,21760969 +Psicooncología,Universidad Complutense de Madrid,16967240|19888287 +Psicoperspectivas Individuo y Sociedad,Pontificia Universidad Catolica de Valparaiso,07177798|07186924 +PSICOTERAPIA E SCIENZE UMANE,Franco Angeli,03942864|19725043 +PSIENCIA Revista Latinoamericana de Ciencia Psicológica,Association for the Advancement of Psychological Science,22505490|22505504 +Psihologija,National Library of Serbia,00485705|14519283 +Psihološka obzorja / Horizons of Psychology,Drustvo psihologov Slovenije/Slovenian Psychologists' Association,13181874|23505141 +Psikiyatride Guncel Yaklasimlar - Current Approaches in Psychiatry,Current Approaches in Psychiatry,13090658|13090674 +Psiquiatría Biológica,Elsevier ,11345934| +PSN,Springer-Verlag,16398319|19552351 +Psoriasis Targets and Therapy,Dove Medical Press,2230326X +PsycCRITIQUES,American Psychological Association,15540138 +PsycCRITIQUES,American Psychological Association,15530138 +PsyCh Journal,Wiley Blackwell (John Wiley & Sons),20460252| +Psych Pflege Heute,Thieme Publishing Group,09491619|14390213 +PSYCH up2date,Thieme Publishing Group,21948895|21948909 +Psychanalyse,CAIRN,17700078|19516320 +Psyche A Journal of Entomology,Hindawi Publishing Corporation,00332615|16877438 +Psychiatria i Psychologia Kliniczna,Medical Communications Sp. z.o.o.,16446313| +Psychiatria Polska,Komitet Redakcyjno - Wydawniczy Polskiego Towarzystwa Psychiatrycznego,00332674|23915854 +Psychiatric Annals,"""SLACK, Inc.""",00485713| +Psychiatric Bulletin,Royal College of Psychiatrists,20534868|20534876 +Psychiatric Clinics of North America,Elsevier ,0193953X| +Psychiatric Genetics,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,09558829| +Psychiatric News,American Psychiatric Publishing,00332704|15591255 +Psychiatric Quarterly,Springer-Verlag,00332720|15736709 +Psychiatric Rehabilitation Journal,American Psychological Association,1095158X|15593126 +Psychiatric Rehabilitation Skills,Informa UK (Taylor & Francis),10973435| +Psychiatric Services,American Psychiatric Publishing,10752730|15579700 +Psychiatrie et violence,Consortium Erudit,1702501X +Psychiatrie und Psychotherapie,Springer-Verlag,16147189|1864581X +Psychiatrie und Psychotherapie up2date,Thieme Publishing Group,16117867|18637175 +Psychiatrische Praxis,Thieme Publishing Group,03034259|14390876 +Psychiatry,Informa UK (Taylor & Francis),00332747|1943281X +Psychiatry,Elsevier ,14761793| +Psychiatry and Clinical Neurosciences,Wiley Blackwell (Blackwell Publishing),13231316|14401819 +Psychiatry Investigation,Korean Neuropsychiatric Association (KAMJE),17383684|19763026 +Psychiatry Journal,Hindawi Publishing Corporation,23144327|23144335 +Psychiatry Psychology and Law,Informa UK (Taylor & Francis),13218719|19341687 +Psychiatry Research,Elsevier ,01651781| +Psychiatry Research Neuroimaging,Elsevier ,09254927| +Psycho-Oncologie,Springer-Verlag,17783798|1778381X +Psycho-Oncology,Wiley Blackwell (John Wiley & Sons),10579249|10991611 +Psychoanalysis and History,Edinburgh University Press,14608235|1755201X +Psychoanalysis and Psychotherapy,Informa UK (Heldref Publications),10575723 +Psychoanalysis Culture & Society,Nature Publishing Group - Macmillan Publishers,10880763|15433390 +Psychoanalytic Dialogues,Informa UK (Taylor & Francis),10481885|19409222 +Psychoanalytic Inquiry,Informa UK (Taylor & Francis),07351690|19409133 +Psychoanalytic Perspectives,Informa UK (Taylor & Francis),1551806X|21636958 +Psychoanalytic Psychology,American Psychological Association,07369735|19391331 +Psychoanalytic Psychotherapy,Informa UK (Taylor & Francis),02668734|00000000 +Psychoanalytic Review The,Guilford Publications,00332836|00332836 +Psychoanalytic Social Work,Informa UK (Taylor & Francis),15228878|15229033 +Psychoanalytic Studies,Informa UK (Taylor & Francis),14608952|14701049 +Psychobiology,American Psychological Association,00969745| +Psychodynamic Counselling,Informa UK (Taylor & Francis),13533339|14701057 +Psychodynamic Practice,Informa UK (Taylor & Francis),14753634|14753626 +Psychodynamic Psychiatry,Guilford Publications,21622590| +Psychogeriatrics,Wiley Blackwell (Blackwell Publishing),13463500|14798301 +PSYCHOLOGIA,Psychologia Society,00332852|13475916 +Psychologia Ekonomiczna,Uniwersytet Ekonomiczny w Krakowie - Krakow University of Economics,2084137X|23537132 +Psychologia Hungarica Caroliensis,SZVT Research and Development Center,20642504|20643101 +Psychologia Latina,Universidad Complutense de Madrid,21716609 +Psychologica,Led Edizioni Universitarie,24210285| +Psychologica,Coimbra University Press,08714657|16478606 +Psychologica Belgica,"""Ubiquity Press, Ltd.""",00332879|2054670X +Psychological Assessment,American Psychological Association,10403590|1939134X +Psychological Bulletin,American Psychological Association,00332909|19391455 +Psychological Injury and Law,Springer-Verlag,1938971X|19389728 +Psychological Inquiry,Informa UK (Taylor & Francis),1047840X|15327965 +Psychological Medicine,Cambridge University Press,00332917|14698978 +Psychological Medicine Monograph Supplement,Cambridge University Press,02641801| +Psychological Methods,American Psychological Association,1082989X|19391463 +Psychological Perspectives A Semiannual Journal of Jungian Thought,Informa UK (Taylor & Francis),00332925|15563030 +Psychological Reports,SAGE Publications,00332941|1558691X +Psychological Research,Springer-Verlag,03400727|14302772 +Psychological Review,American Psychological Association,0033295X|19391471 +Psychological Science,SAGE Publications,09567976|14679280 +Psychological Science and Education,Moscow State Universtiy of Psychology and Education (MSUPE),18142052|23117273 +Psychological Science and Education psyedu ru,Moscow State Universtiy of Psychology and Education (MSUPE),20745885 +Psychological Science in the Public Interest,SAGE Publications,15291006|15291006 +Psychological Services,American Psychological Association,15411559|1939148X +Psychological Studies,Springer-Verlag,00332968|09749861 +Psychological Thought,Leibniz Institute for Psychology Information,21937281 +Psychological Trauma Theory Research Practice and Policy,American Psychological Association,19429681|1942969X +Psychologie & gezondheid,Springer-Verlag,18731791|18768741 +Psychologie clinique,EDP Sciences,11451882|21184224 +Psychologie clinique et projective,CAIRN,12655449|21184496 +Psychologie du Travail et des Organisations,Elsevier ,14202530| +Psychologie Française,Elsevier ,00332984| +Psychologie in Erziehung und Unterricht,"""Ernst Reinhardt, GmbH & Co. KG""",0342183X| +Psychologische Rundschau,Hogrefe Publishing Group,00333042|21906238 +Psychology,"""Scientific Research Publishing, Inc.""",21527180|21527199 +Psychology & Developing Societies,SAGE Publications,09713336|09730761 +Psychology & Health,Informa UK (Taylor & Francis),14768321|14768321 +Psychology & Neuroscience,American Psychological Association,19843054|19833288 +Psychology and Aging,American Psychological Association,08827974|19391498 +Psychology and Behavioral Sciences,Science Publishing Group,23287837| +Psychology and Cognitive Sciences - Open Journal,Openventio Publishers,2380727X +Psychology and Health,Informa UK (Taylor & Francis),08870446|14768321 +Psychology and Law,Moscow State Universtiy of Psychology and Education (MSUPE),22225196 +Psychology and Marketing,Wiley Blackwell (John Wiley & Sons),07426046|15206793 +Psychology and Psychotherapy Theory Research and Practice,Wiley Blackwell (Blackwell Publishing),14760835|00000000 +Psychology and Sexuality,Informa UK (Taylor & Francis),19419899|19419902 +Psychology and Social Behavior Research,Sciknow Publications,23297719 +Psychology Community & Health,Leibniz Institute for Psychology Information,2182438X +Psychology Crime and Law,Informa UK (Taylor & Francis),1068316X|14772744 +Psychology Evolution & Gender,Informa UK (Taylor & Francis),14616661|14701073 +Psychology Health & Medicine,Informa UK (Taylor & Francis),13548506|14653966 +Psychology in Russia State of Art,Russian Psychological Society,20746857|23072202 +Psychology in Society,Academy of Science of South Africa,23098708 +Psychology in the Schools,Wiley Blackwell (John Wiley & Sons),00333085|15206807 +Psychology Learning & Teaching,SAGE Publications,14757257|14757257 +Psychology Observer,International Scientific Literature,23774681 +Psychology of Addictive Behaviors,American Psychological Association,0893164X|19391501 +Psychology of Aesthetics Creativity and the Arts,American Psychological Association,19313896|1931390X +Psychology of Consciousness Theory Research and Practice,American Psychological Association,23265523|23265531 +Psychology of Language and Communication,De Gruyter Open Sp. z o.o. ,12342238|12342238 +Psychology of Learning and Motivation,Elsevier , +Psychology of Men & Masculinity,American Psychological Association,15249220|1939151X +Psychology of Music,SAGE Publications,03057356|00000000 +Psychology of Popular Media Culture,American Psychological Association,21604134|21604142 +Psychology of Quality of Life,Index Copernicus International,16441796| +Psychology of Religion and Spirituality,American Psychological Association,19411022|19431562 +Psychology of Sexual Orientation and Gender Diversity,American Psychological Association,23290382|23290390 +Psychology of Sport and Exercise,Elsevier ,14690292| +Psychology of Violence,American Psychological Association,21520828|2152081X +Psychology of Well-Being Theory Research and Practice,Springer (Biomed Central Ltd.),22111522|22111522 +Psychology of Women Quarterly,SAGE Publications,03616843|14716402 +Psychology Public Policy and Law,American Psychological Association,10768971|19391528 +Psychology Research,"""St. Plum-Blossom Press Pty, Ltd.""",1838658X| +Psychology Research and Behavior Management,Dove Medical Press,11791578 +Psychometrika,Springer-Verlag,00333123|18600980 +Psychomusicology Music Mind and Brain,American Psychological Association,02753987|21621535 +psychoneuro,Thieme Publishing Group,03407845|14391813 +Psychoneuroendocrinology,Elsevier ,03064530| +Psychonomic Bulletin & Review,Springer - Psychonomic Society,10699384|15315320 +Psychonomic Science,Springer - Psychonomic Society,00333131|21979952 +Psychoonkologia,Blackhorse Publishing,14298538|14298538 +Psychopathology,S. Karger AG,02544962|1423033X +Psychopathology Review,"""Textrum, Ltd.""",20518315 +Psychopharm Review,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,19369255| +Psychopharmacology,Springer-Verlag,00333158|14322072 +Psychophysiology,Wiley Blackwell (Blackwell Publishing),00485772|14698986 +Psychophysiology New,"""Science and Education, Ltd.""",22276157| +Psychopraktijk,Springer-Verlag,18784844|22107754 +Psychopraxis,Springer-Verlag,15666166|1876584X +Psychopraxis,Springer-Verlag,14341883|16137590 +psychopraxis neuropraxis,Springer-Verlag,21979707|21979715 +Psychosis,Informa UK (Taylor & Francis),17522439|17522447 +Psychosocial Intervention,Elsevier ,11320559|11320559 +Psychosocial Rehabilitation Journal,American Psychological Association,01475622| +Psychosomatic Medicine,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,00333174|15347796 +Psychosomatics,Elsevier ,00333182| +Psychosomatik und Konsiliarpsychiatrie,Springer-Verlag,18628818|18628826 +Psychosomatique relationnelle,CAIRN,2272916X +Psychoterapia,Komitet Redakcyjno - Wydawniczy Polskiego Towarzystwa Psychiatrycznego,02394170| +Psychotherapeut,Springer-Verlag,09356185|14322080 +Psychotherapeutische Praxis,Hogrefe Publishing Group,16161041| +Psychotherapie Forum,Springer-Verlag,09431950|16137604 +Psychothérapies,CAIRN,0251737X|22352104 +Psychotherapy,American Psychological Association,19391536|00333204 +Psychotherapy and Politics International,Wiley Blackwell (John Wiley & Sons),14769263|15569195 +Psychotherapy and Psychosomatics,S. Karger AG,00333190|14230348 +Psychotherapy in Private Practice,Informa UK (Taylor & Francis),07317158| +Psychotherapy Research,Informa UK (Taylor & Francis),10503307|14684381 +Psychotraumatologie,Thieme Publishing Group,14398931|14398931 +Psychotropes,CAIRN,12452092|17821487 +Psyecology Revista Bilingüe de Psicología Ambiental - Bilingual Journal of Environmental Psychology,Informa UK (Taylor & Francis),21711976| +Psykhe (Santiago),Pontificia Universidad Catolica de Chile,07170297|07182228 +Psymedica,National and University Library of the Republic of Srpska,22327282| +Pszichológia,Akademiai Kiado Zrt.,02300508|20602782 +Pteridines,Walter de Gruyter GmbH,09334807|21954720 +Public,Intellect,08454450|20486928 +Public & Access Services Quarterly,Informa UK (Taylor & Francis),10564942| +Public Administration,Wiley Blackwell (Blackwell Publishing),00333298|14679299 +Public Administration and Development,Wiley Blackwell (John Wiley & Sons),02712075|1099162X +Public Administration Research,Canadian Center of Science and Education,1927517X|19275188 +Public Administration Review,Wiley Blackwell (Blackwell Publishing),00333352|15406210 +Public Affairs And Governance,Diva Enterprises Private Limited,23212128|23212136 +Public Archaeology,Maney Publishing,14655187|17535530 +Public Art Dialogue,Informa UK (Taylor & Francis),21502552|21502560 +Public Budgeting & Finance,Wiley Blackwell (Blackwell Publishing),02751100|15405850 +Public Choice,Springer-Verlag,00485829|15737101 +Public Culture,Duke University Press,08992363|15278018 +Public Finance Review,SAGE Publications,10911421|00000000 +Public Health,Elsevier ,00333506| +Public Health Action,International Union Against Tuberculosis and Lung Disease,22208372|22208372 +Public Health Ethics,Oxford University Press,17549973|17549981 +Public Health Forum,Walter de Gruyter GmbH,09445587|18764851 +Public Health Frontier,The World Academic Publishing,2227457X|22274561 +Public Health Genomics,S. Karger AG,16624246|16628063 +Public Health Nursing,Wiley Blackwell (Blackwell Publishing),07371209|15251446 +Public Health Nutrition,Cambridge University Press,13689800|14752727 +Public Health Reports,Elsevier ,00333549|14682877 +Public Health Reports (1896-1970),JSTOR,00946214| +Public Health Research,National Institute for Health Research,20504381|2050439X +Public Health Research,Scientific and Academic Publishing,21677263| +Public Health Research & Practice,The Sax Institute,22042091 +Public Health Reviews,Springer (Biomed Central Ltd.),21076952|21076952 +Public History Weekly,Walter de Gruyter GmbH,21976376 +Public Integrity,Informa UK (Taylor & Francis),10999922|15580989 +Public Library Quarterly,Informa UK (Taylor & Francis),01616846|15411540 +Public Management,Informa UK (Taylor & Francis),1461667X|14701065 +Public Management Review,Informa UK (Taylor & Francis),14719037|14719045 +Public Money & Management,Informa UK (Taylor & Francis),09540962|14679302 +Public Opinion Quarterly,Oxford University Press,0033362X|15375331 +Public Organization Review,Springer-Verlag,15667170|15737098 +Public Performance & Management Review,Informa UK (Taylor & Francis),15309576|15579271 +Public Personnel Management,SAGE Publications,00910260|19457421 +Public Policy & Aging Report,Oxford University Press,10553037|20534892 +Public Policy And Administration,Mykolas Romeris University,16482603|20292872 +Public Policy and Administration,SAGE Publications,09520767|17494192 +Public Policy and Administration Review,American Research Institute for Policy Development,23335823|23335831 +Public Policy and Ecnomic Development,Adam Mickiewicz University Poznan,23090863| +Public Policy Research,Wiley Blackwell (Blackwell Publishing),17445396|1744540X +Public Policy Review,Institute of Public Policy and Administration ,17388848| +Public Policy Review,Institute of Public Policy and Administration ,17388848| +Public Productivity & Management Review,JSTOR,10448039| +Public Productivity Review,JSTOR,03616681| +Public Relations Inquiry,SAGE Publications,2046147X|20461488 +Public Relations Research Annual,Informa UK (Taylor & Francis),10421408| +Public Relations Review,Elsevier ,03638111| +Public Services Quarterly,Informa UK (Taylor & Francis),15228959|15229114 +Public Transport,Springer-Verlag,1866749X|16137159 +Public Understanding of Science,SAGE Publications,09636625|13616609 +Public Works Management & Policy,SAGE Publications,1087724X|15527549 +Public-Private Partnership,BIBLIO-GLOBUS Publishing House,24108367| +Publicación Electrónica de la Asociación Paleontológica Argentina,Asociacion Paleontologica Argentina,24690228 +Publicacions Matemàtiques,Universitat Autonoma de Barcelona,02141493| +Publicações Avulsas em Conservação de Ecossistemas,Publicacaoes Avulsas em Conservacao de Ecossistemas,18090109 +Publicatio UEPG - Ciencias Exatas e da Terra Agrarias e Engenharias,Universidade Estadual de Ponta Grossa,16768477|18090281 +Publicatio UEPG Ciencias Biologicas e da Saude,Universidade Estadual de Ponta Grossa,16768485|18090273 +Publicatio UEPG Ciencias Humanas Linguistica Letras e Artes,Universidade Estadual de Ponta Grossa,23163763|23163755 +Publicatio UEPG Ciencias Sociais Aplicadas,Universidade Estadual de Ponta Grossa,22387552|22387560 +Publication of the American Dialect Society,Duke University Press,00028207|21576114 +Publicationes Mathematicae Debrecen,University of Debrecen/ Debreceni Egyetem - Publicationes Mathematicae Debrecen,00333883| +Publications,MDPI AG,23046775 +Publications de l Institut Mathematique,National Library of Serbia,03501302|18207405 +Publications du Centre Européen d Etudes Bourguignonnes,"""Brepols Publishers, NV""",10164286| +Publications mathématiques de Besançon,Cellule MathDoc/CEDRAM,19587236| +Publications mathématiques de l IHÉS,Springer-Verlag,00738301|16181913 +Publications of the American Statistical Association,JSTOR,15225437| +Publications of the Astronomical Society of Australia,Cambridge University Press,13233580|14486083 +Publications of the Astronomical Society of Japan,Oxford University Press,00046264|2053051X +Publications of the Astronomical Society of the Pacific,IOP Publishing,00046280|15383873 +Publications of the English Goethe Society,Maney Publishing,09593683|17496284 +Publications of the Historical Society of Southern California,JSTOR,2162903X| +Publications of The Korean Astronomical Society,The Korean Astronomical Society,12251534| +Publications of the Research Institute for Mathematical Sciences,European Mathematical Society Publishing House,00345318| +Publications of the United States Naval Observatory,Smithsonian Institution,00832448| +Publics et Musées,PERSEE Program,11645385| +Publics et Musées,PERSEE Program,11645385| +Publicuidad,Universidad Pontificia Bolivariana,24221619 +Publikacija Elektrotehnickog fakulteta - serija matematika,National Library of Serbia,03538893| +Publishing Research Quarterly,Springer-Verlag,10538801|19364792 +Publius The Journal of Federalism,Oxford University Press,00485950|17477107 +Publizistik,Springer-Verlag,00334006|18622569 +Pulmonary Circulation,The University of Chicago Press,20458932|20458932 +Pulmonary Medicine,Hindawi Publishing Corporation,20901836|20901844 +Pulmonary Pharmacology,Elsevier ,09520600|15229637 +Pulmonary Pharmacology & Therapeutics,Elsevier ,10945539|15229629 +Pulmonary Research and Respiratory Medicine - Open Journal,Openventio Publishers,23771658 +Pulmonary Therapy,Springer-Verlag,23641754|23641746 +Pulmonology and Respiratory Research,Herbert Publications,20536739 +Pulse,Bangladesh Journals Online,20741855|24088765 +Pulse,S. Karger AG,22358676|22358668 +Pump Industry Analyst,Elsevier ,13596128| +Punctum International Journal of Semiotics,Hellenic Semiotic Society,24592943|24592943 +Punishment & Society,SAGE Publications,14624745|17413095 +Punk & Post Punk,Intellect,20441983|20443706 +PUNTO DE VISTA,Institucion Universitaria Politecnico Grancolombiano,0123580X|20275153 +Purdue Journal of Service-Learning and International Engagement,Purdue University Press,23319135|23319143 +Pure and Applied Biology,Bolan Society for Pure and Applied Biology (BSPAB),23042478 +Pure and Applied Chemical Sciences,"""Hikari, Ltd.""",13147633 +Pure and Applied Chemistry,Walter de Gruyter GmbH,00334545|13653075 +Pure and Applied Geophysics,Springer-Verlag,00334533|14209136 +Pure and Applied Mathematics,Elsevier , +Pure and Applied Mathematics Journal,Science Publishing Group,23269790| +Pure and Applied Mathematics Quarterly,"""International Press of Boston, Inc.""",15588599|15588602 +Pure and Applied Optics Journal of the European Optical Society Part A,IOP Publishing,09639659|13616617 +Pure Mathematical Sciences,"""Hikari, Ltd.""",1314751X|13147560 +Pure Mathematics,Hans Publishers,21607583|21607605 +Pure Mathematics and Applications,Walter de Gruyter GmbH,1788800X +Purinergic Signalling,Springer-Verlag,15739538|15739546 +Pushkin Review,Muse - Johns Hopkins University Press,21650683 +PVRI Review,Medknow Publications,09746013| +Pythagoras,AOSIS,10122346|22237895 +QA Rivista dell Associazione Rossi-Doria,Franco Angeli,19714017|19725248 +Qatar Foundation Annual Research Forum Proceedings,Hamad bin Khalifa University Press (HBKU Press),2220251X|2220251X +Qatar Medical Journal,Hamad bin Khalifa University Press (HBKU Press),22270426|22270426 +QED A Journal in GLBTQ Worldmaking,Michigan State University Press,23271574|23271590 +QianRen Biology,Hans Publishers,23753315|23753323 +QianRen·Energy,Hans Publishers,2375608X|23756098 +QJM,Oxford University Press,14602725|14602393 +QSAR & Combinatorial Science,Wiley Blackwell (John Wiley & Sons),1611020X|16110218 +QScience Connect,Hamad bin Khalifa University Press (HBKU Press),2223506X| +QScience Highlights,Nature Publishing Group,23970243 +QScience Proceedings,Hamad bin Khalifa University Press (HBKU Press),22269649| +Quaderni,PERSEE Program,09871381|21052956 +QUADERNI DI ECONOMIA DEL LAVORO,Franco Angeli,0390105X|19718470 +Quaderni di Erga-Logoi,Led Edizioni Universitarie,22837124| +QUADERNI DI GESTALT,Franco Angeli,11210737|20356994 +QUADERNI DI PSICOTERAPIA COGNITIVA,Franco Angeli,11276347|22816046 +Quaderni Italiani di Psichiatria,Elsevier ,03930645| +Quaderni Urbinati di Cultura Classica,JSTOR,00334987| +Quaderns de Cine,Publicaciones Universidad de Alicante,18884571| +Quaderns de Filologia - Estudis Lingüístics,Universitat de Valencia,1135416X|24441449 +Quaderns de Filologia - Estudis Literaris,Universitat de Valencia,11354178|24441457 +Quaderns de Filosofia,Universitat de Valencia,23413042 +Quaderns de Psicologia,Universitat Autonoma de Barcelona,02113481|20144520 +Quadrature,EDP Sciences,11422785|17604826 +Quaerendo,Brill Academic Publishers,00149527|15700690 +Quaestio,"""Brepols Publishers, NV""",13792547|22959033 +Quaestio Rossica,Ural Federal University,2311911X|2310757X +Quaestiones Disputatae,Philosophy Documentation Center,21505756| +Quaestiones Geographicae,De Gruyter Open Sp. z o.o. ,0137477X|20816383 +Quaestiones Mathematicae,Informa UK (National Inquiry Services Center),16073606|1727933X +Quaker History,Muse - Johns Hopkins University Press,19341504 +Qualitas Plantarum,Springer-Verlag,03773205| +Qualitas Plantarum et Materiae Vegetabiles,Springer-Verlag,00335134| +Qualitas Revista Eletrônica,Universidade Estadual da Paraiba (UEPB),16774280 +Qualitative Communication Research,University of California Press,21619107|21619115 +Qualitative Health Research,SAGE Publications,10497323|00000000 +Qualitative Inquiry,SAGE Publications,10778004|15527565 +Qualitative Market Research An International Journal,Emerald (MCB UP ),13522752|00000000 +Qualitative Psychology,American Psychological Association,23263598|23263601 +Qualitative Research,SAGE Publications,14687941|17413109 +Qualitative Research in Accounting & Management,Emerald (MCB UP ),11766093| +Qualitative Research in Education,Hipatia Press,20146418 +Qualitative Research in Financial Markets,Emerald (MCB UP ),17554179| +Qualitative Research in Organizations and Management An International Journal,Emerald (MCB UP ),17465648| +Qualitative Research in Psychology,Informa UK (Taylor & Francis),14780887|14780895 +Qualitative Research in Sport and Exercise,Informa UK (Taylor & Francis),19398441|1939845X +Qualitative Research in Sport Exercise and Health,Informa UK (Taylor & Francis),2159676X|21596778 +Qualitative Research Journal,Emerald (MCB UP ),14480980| +Qualitative Research Journal,Emerald (MCB UP ),14439883| +Qualitative Research Reports in Communication,Informa UK (Taylor & Francis),17459435|17459443 +Qualitative Social Work,SAGE Publications,14733250|17413117 +Qualitative Sociology,Springer-Verlag,01620436|15737837 +Qualitative Theory of Dynamical Systems,Springer-Verlag,15755460|16623592 +Quality & Quantity,Springer-Verlag,00335177|15737845 +Quality Advancement in Nursing Education - Avancées en formation infirmière,Canadian Association of Schools of Nursing,23686669 +Quality and Reliability Engineering International,Wiley Blackwell (John Wiley & Sons),07488017|10991638 +Quality Assurance and Safety of Crops & Foods,Wageningen Academic Publishers,17578361|1757837X +Quality Assurance Good Practice Regulation and Law,Informa UK (Taylor & Francis),10529411|15210677 +Quality Assurance in Education,Emerald (MCB UP ),09684883|00000000 +Quality Engineering,Informa UK (Taylor & Francis),08982112|15324222 +Quality Improvement in Health Care,Korean Society for Quality in Health Care,12257613| +Quality in Ageing and Older Adults,Emerald (MCB UP ),14717794|20428766 +Quality in Health Care,BMJ,09638172| +Quality in Higher Education,Informa UK (Taylor & Francis),13538322|14701081 +Quality in Primary Care,OMICS Publishing Group,14791072 +Quality Innovation Prosperity,Technical University of Kosice,13351745|1338984X +Quality Management in Health Care,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10638628| +Quality of Life (Banja Luka) - APEIRON,National and University Library of the Republic of Srpska,1986602X|19866038 +Quality of Life Research,Springer-Verlag,09629343|15732649 +Quanta,Quanta,13147374 +Quantitative Biology,Springer-Verlag,20954689|20954697 +Quantitative Economics,The Econometric Society,17597323|17597331 +Quantitative Finance,Informa UK (Taylor & Francis),14697688|14697696 +Quantitative Finance Letters,Informa UK (Taylor & Francis),21649502|21649510 +Quantitative InfraRed Thermography Journal,Informa UK (Taylor & Francis),17686733|21167176 +Quantitative Marketing and Economics,Springer-Verlag,15707156|1573711X +Quantitative Microbiology,Springer (Kluwer Academic Publishers),13883593| +Quantitative Structure-Activity Relationships,Wiley Blackwell (John Wiley & Sons),09318771|15213838 +Quantum and Semiclassical Optics Journal of the European Optical Society Part B,IOP Publishing,13555111|13616625 +Quantum Electronics,Turpion ,10637818|14684799 +Quantum Information Processing,Springer-Verlag,15700755|15731332 +Quantum Information Review,Natural Sciences Publishing,23144521|2314453X +Quantum Matter,American Scientific Publishers,21647615|21647623 +Quantum Measurements and Quantum Metrology,De Gruyter Open Sp. z o.o. ,2299114X +Quantum Optics Journal of the European Optical Society Part B,IOP Publishing,09548998| +Quantum Physics Letters,Natural Sciences Publishing,20908318|20908407 +Quantum Studies Mathematics and Foundations,Springer-Verlag,21965609|21965617 +Quantum Topology,European Mathematical Society Publishing House,1663487X| +Quarterly Bulletin (Archives of American Art),The University of Chicago Press,08846758| +Quarterly Journal of Crude Drug Research,Informa UK (Taylor & Francis),00335525| +Quarterly Journal of Econometrics Research,Pak Publishing Group,24110523 +Quarterly Journal of Engineering Geology and Hydrogeology,Geological Society of London,14709236|20414803 +Quarterly Journal of Experimental Physiology,Wiley Blackwell (Blackwell Publishing),01448757| +Quarterly Journal of Experimental Physiology and Cognate Medical Sciences,Wiley Blackwell (Blackwell Publishing),00335541| +Quarterly Journal of Experimental Psychology,Informa UK (Taylor & Francis),0033555X| +Quarterly Journal of Finance,World Scientific ,20101392|20101406 +Quarterly journal of microscopical science,Smithsonian Institution Biodiversity Heritage Library,03702952| +Quarterly Journal of Political Science,Now Publishers,15540626|15540634 +Quarterly Journal of Speech,Informa UK (Taylor & Francis),00335630|14795779 +Quarterly Journal of Studies on Alcohol,"""Alcohol Research Documentation, Inc.""",00335649|19467214 +Quarterly Journal of the Chemical Society of London,The Royal Society of Chemistry,17436893| +Quarterly Journal of the Geological Society,Geological Society of London,0370291X| +QUARTERLY JOURNAL OF THE JAPAN WELDING SOCIETY,Japan Welding Society,02884771| +Quarterly Journal of the Royal Meteorological Society,Wiley Blackwell (John Wiley & Sons),00359009|1477870X +Quarterly Labour Force Statistics,Organisation for Economic Co-Operation and Development ,02553627|16097602 +Quarterly National Accounts,Organisation for Economic Co-Operation and Development ,02577801|16097629 +Quarterly National Accounts,Organisation for Economic Co-Operation and Development ,22195106| +Quarterly Newsletter (Garden History Society),JSTOR,04351185| +Quarterly of Applied Mathematics,American Mathematical Society,0033569X|15524485 +Quarterly Publication (Historical Society of Southern California),JSTOR,21629331| +Quarterly Publications of the American Statistical Association,JSTOR,15225445| +Quarterly Report of RTRI,Railway Technical Research Institute,00339008|18801765 +Quarterly Review of Film and Video,Informa UK (Taylor & Francis),10509208|15435326 +Quarterly Review of Film Studies,Informa UK (Taylor & Francis),01460013| +Quarterly Reviews Chemical Society,The Royal Society of Chemistry,00092681| +Quarterly Reviews of Biophysics,Cambridge University Press,00335835|14698994 +Quasigroups and Related Systems,"""Science and Education, Ltd.""",15612848| +Quaternaire,PERSEE Program,11422904|19650795 +Quaternary and Environmental Geosciences,Universidade Federal do Parana,21766142 +Quaternary Geochronology,Elsevier ,18711014| +Quaternary International,Elsevier ,10406182| +Quaternary Research,Elsevier ,00335894|10960287 +Quaternary Science Reviews,Elsevier ,02773791| +Quebec Studies,Liverpool University Press,07373759|20521731 +Queen Mary Journal of Intellectual Property,Edward Elgar Publishing,20459807|20459815 +Queensland Review,Cambridge University Press,13218166|20497792 +Queer Studies in Media & Popular Culture,Intellect,20555695| +Querformat,Transcript Verlag,1867447X|21980349 +Quest,Informa UK (Taylor & Francis),00336297|15432750 +Quest A Journal of Undergraduate Research,"""Health Services Library, Creighton University""",23814543| +Quest-The Journal of UGC-HRDC Nainital,Diva Enterprises Private Limited,09745041|22490035 +Questes,OpenEdition,21027188|21099472 +Question(s) de management,CAIRN,22627030|22712127 +QUESTIONE GIUSTIZIA,Franco Angeli,17204518|19725531 +Questions and Answers in Linguistics,Walter de Gruyter GmbH,22998942 +Questions de communication,OpenEdition,16335961|22598901 +Questions Liturgiques/Studies in Liturgy,Peeters Publishers,7745524 +Questions Philosophy for Young People,Philosophy Documentation Center,15414760| +Questions vives recherches en éducation,OpenEdition,16354079|1775433X +Queue,Association for Computing Machinery,15427730| +Queueing Systems,Springer-Verlag,02570130|15729443 +Qui Parle,University of Nebraska Press,10418385|19388020 +Química Nova,GN1 Genesis Network,01004042|01004042 +Química Nova na Escola,GN1 Genesis Network,01048899| +Quinto Sol,Universidad Nacional de La Pampa,18512879 +Quran and Medicine,Kowsar Medical Institute,22516158|22516166 +Qurterly Journal of Political Research in Islamic World,Nova Explore Publications Inc.,23222980 +QUT Law Review,Queensland University of Technology,22050507|22017275 +R and D Management,Wiley Blackwell (Blackwell Publishing),00336807|14679310 +R-Economy,Ural Federal University,24120731| +RA Journal Of Applied Research,Research and Analysis Journals,23946709 +Ra Revista de Arquitectura,Universidad de Navarra,11385596|22546332 +Rabaska Revue d ethnologie de l Amérique française,Consortium Erudit,17037433|19167350 +Rabels Zeitschrift fuer auslaendisches und internationales Privatrecht,Mohr Siebeck,00337250|00000000 +RACAR Revue d art canadienne,Consortium Erudit,03159906|19184778 +Race & Class,SAGE Publications,03063968|00000000 +RACE - Revista de Administração Contabilidade e Economia,Universidade do Oeste de Santa Catarina,16786483|21794936 +Race and Justice,SAGE Publications,21533687| +Race and Social Problems,Springer-Verlag,18671748|18671756 +Race and Society,Elsevier ,10909524| +Race Ethnicity and Education,Informa UK (Taylor & Francis),13613324|1470109X +Race/Ethnicity Multidisciplinary Global Contexts,Indiana University Press,19358644|19358652 +Racionalna terapija,Centre for Evaluation in Education and Science,18210538| +Racjonalia Z punktu widzenia humanistyki,Pontifical Universtiy of John Paul II in Krakow,20839952|23916540 +Radar,University of Huddersfield Press,20494327|20494327 +Radiation and Environmental Biophysics,Springer-Verlag,0301634X|14322099 +Radiation Botany,Elsevier ,00337560| +Radiation Effects,Informa UK (Taylor & Francis),00337579| +Radiation Effects and Defects in Solids,Informa UK (Taylor & Francis),10420150|10294953 +Radiation Measurements,Elsevier ,13504487| +Radiation Medicine,Springer-Verlag,02882043|18625274 +Radiation Medicine Rounds,Demos Medical Publishing,21514208| +Radiation Oncology,Springer (Biomed Central Ltd.),1748717X|1748717X +Radiation Oncology Investigations,Wiley Blackwell (John Wiley & Sons),10657541|15206823 +Radiation Oncology Journal,Korean Society for Therapeutic Radiology and Oncology (KAMJE),22341900|22343156 +Radiation Physics and Chemistry,Elsevier ,0969806X| +Radiation Physics and Chemistry (1977),Elsevier ,01465724| +Radiation Protection and Environment,Medknow Publications,09720464| +Radiation Protection Dosimetry,Oxford University Press,01448420|17423406 +Radiation Research,BioOne (Radiation Research Society),00337587|19385404 +Radiation Research Supplement,JSTOR,04858611| +Radiation Safety Management,Japanese Society of Radiation Safety Management,13471511|18849520 +Radical History Review,Duke University Press,01636545|15341453 +Radical Philosophy Review,Philosophy Documentation Center,13884441| +Radical Philosophy Review of Books,Philosophy Documentation Center,10478302| +Radical Reaction from Halogenated Compounds and Zinc Powder,Thieme Publishing Group,20600178 +Radical Society,Informa UK (Taylor & Francis),14760851|1476086X +Radical-Polar Crossover Reactions,Thieme Publishing Group,20100450 +Radio and Electronic Engineer,Institution of Electrical Engineers,00337722|2054037X +Radio Electronics Computer Science Control,Zaporizhhzhia National Technical University,16073274|2313688X +Radio Journal International Studies in Broadcast & Audio Media,Intellect,14764504|20401388 +Radio Physics and Radio Astronomy,Begell House Inc.,2152274X| +Radio Science,Wiley Blackwell (John Wiley & Sons),00486604| +Radiocarbon,Cambridge University Press,00338222|00338222 +Radiochemistry,Pleiades Publishing,10663622|16083288 +Radiochimica Acta,Oldenbourg Wissenschaftsverlag,21933405|21933405 +Radiochimica Acta,Oldenbourg Wissenschaftsverlag,00338230|21933405 +RadioDoc Review,University of Wollongog Library,22035176 +Radioelectronics and Communications Systems,Allerton Press,07352727|19348061 +Radioelectronics Nanosystems Information Technologies,"""Editorial Board of Journal Radioelectronics, Nanosystems, Information Technology RENSIT""",22183000|24141267 +Radioengineering,Brno University of Technology,12102512| +Radiographics,Radiological Society of North America,02715333|15271323 +Radiography,Elsevier ,10788174| +RADIOISOTOPES,Japan Radioisotope Association,00338303|18844111 +Radiología,Elsevier ,00338338| +Radiología (English Edition),Elsevier ,21735107| +Radiologia Brasileira,SciELO,01003984|16787099 +Radiologic Clinics of North America,Elsevier ,00338389| +Radiological Physics and Technology,Springer-Verlag,18650333|18650341 +Radiologie up2date,Thieme Publishing Group,16160681|16178300 +Radiology,Radiological Society of North America,00338419|15271315 +Radiology and Oncology,De Gruyter Open Sp. z o.o. ,13182099|15813207 +Radiology Case Reports,Elsevier ,19300433|19300433 +Radiology of Infectious Diseases,Elsevier ,23526211| +Radiology Research and Practice,Hindawi Publishing Corporation,20901941|2090195X +Radiophysics and Quantum Electronics,Springer-Verlag,00338443|15739120 +Radiopraxis,Thieme Publishing Group,18661033|18661041 +Radioprotection,EDP Sciences,00338451|1769700X +Radiotherapy and Oncology,Elsevier ,01678140| +Radovi Zavoda za hrvatsku povijest Filozofskog fakulteta Sveučilišta u Zagrebu,"""Faculty of Humanities and Social Sciences, University of Zagreb""",0353295X| +RAE eletrônica,SciELO,16765648|16765648 +RAED Dergisi,Deomed Publishing,13014021|21472548 +Raega - O Espaço Geográfico em Análise,Universidade Federal do Parana,15164136|21772738 +RAIN,JSTOR,03076776| +RAIRO - Operations Research,EDP Sciences,03990559|12903868 +RAIRO - Theoretical Informatics and Applications,EDP Sciences,09883754|1290385X +Raisons politiques,CAIRN,12911941|19506708 +Rajiv Gandhi University of Health Sciences Journal of Pharmaceutical Sciences,EManuscript Services,22492208|22492208 +Rajshahi University Journal of Life & Earth and Agricultural Sciences,Bangladesh Journals Online,23090960|24088781 +Rajshahi University Journal of Science,Bangladesh Journals Online,23091541| +Rajshahi University Journal of Science and Engineering,Bangladesh Journals Online,23090952|24088803 +RAM Revista de Administração Mackenzie,SciELO,16786971 +Rambam Maimonides Medical Journal,Rambam Health Care Campus,20769172 +Ramon Llull Journal of Applied Ethics,Medknow Publications,20138393| +Ramus,Cambridge University Press,0048671X|2202932X +Random Matrices Theory and Application,World Scientific ,20103263|20103271 +Random Operators and Stochastic Equations,Walter de Gruyter GmbH,09266364|1569397X +Random Structures and Algorithms,Wiley Blackwell (John Wiley & Sons),10429832|10982418 +Rangeland Ecology & Management,University of Arizona,15507424|15515028 +Rangelands,University of Arizona,01900528|1551501X +Rangifer,UiT The Arctic University of Norway,18906729 +Rapid Communication in Photoscience,Korean Society of Photoscience,22348182| +Rapid Communications in Mass Spectrometry,Wiley Blackwell (John Wiley & Sons),09514198|10970231 +Rapid Prototyping Journal,Emerald (MCB UP ),13552546|00000000 +Rapport - Société canadienne d histoire de l Église catholique,Consortium Erudit,03186148|19277075 +Rapport sur l École pratique des hautes études Section des sciences historiques et philologiques,PERSEE Program,20249543| +Raptors Conservation,Sibeocenter LLC,18140076|18148654 +Rare Cancers and Therapy,Springer-Verlag,21956014|21956022 +Rare Diseases,Landes Bioscience,2167549X|21675511 +Rare Metal Materials and Engineering,Elsevier ,18755372| +Rare Metals,Springer-Verlag,10010521|18677185 +Rare Tumors,PAGEPress Publications,20363605|20363613 +rast müzikoloji dergisi,Rast Musicology Journal,21477361|21477531 +Rastros Rostros,Universidad Cooperativa de Colombia - UCC,0124406X| +Ratarstvo i povrtarstvo,Centre for Evaluation in Education and Science,18213944| +Ratio,Wiley Blackwell (Blackwell Publishing),00340006|14679329 +Ratio et Oratio,The Korean Society for Thinking and Communication,2005467X| +Ratio Juris,Wiley Blackwell (Blackwell Publishing),09521917|14679337 +Rational Pharmacotherapy in Cardiology,Stolichnaya Izdatelskaya Kompaniyaizdat,18196446|22253653 +Rationality and Society,SAGE Publications,10434631|00000000 +Raumforschung und Raumordnung,Springer-Verlag,00340111|18694179 +Raven A Journal of Vexillology,Philosophy Documentation Center,10710043| +Razavi International Journal of Medicine,International Neuroscience Institute,23456426|23456434 +RBM-News,Elsevier ,02220776| +RBOL- Revista Brasileira de Odontologia Legal,Revista Brasileira de Odontologia Legal, +RBOL- Revista Brasileira de Odontologia Legal,Revista Brasileira de Odontologia Legal,23593466 +RBOL- Revista Brasileira de Odontologia Legal,Revista Brasileira de Odontologia Legal, +RBOL- Revista Brasileira de Odontologia Legal,Revista Brasileira de Odontologia Legal, +RCCS Annual Review,OpenEdition,16473175|16473175 +RCOE,Instituto de Salud Carlos III/BNCS/SciELO Espana,1138123X +RCSB Protein Data Bank,Protein Data Bank,1234432X +RDBCI Revista Digital de Biblioteconomia e Ciência da Informação,Universidade Estadual de Campinas,1678765X +RDST,OpenEdition,21106460|22715649 +RE view Rehabilitation and Education for Blindness and Visual Impairment,Informa UK (Heldref Publications),08991510|19404018 +Reaction Chemistry & Engineering,The Royal Society of Chemistry,20589883 +Reaction Kinetics and Catalysis Letters,Springer-Verlag,01331736|15882837 +Reaction Kinetics Mechanisms and Catalysis,Springer-Verlag,18785190|18785204 +Reaction with Halide Nucleophiles,Thieme Publishing Group,20300484 +Reaction with Nitrogen Nucleophiles,Thieme Publishing Group,20300492 +Reaction with Oxygen Nucleophiles,Thieme Publishing Group,20300476 +Reaction with Palladium/Quinone/Oxygen Reagents,Thieme Publishing Group,20300298 +Reactions,Springer-Verlag,01577271| +Reactions Catalyzed by Other Chiral Amines,Thieme Publishing Group,20400020 +Reactions of 2-(Acyloxy)propenals,Thieme Publishing Group,20400187 +Reactions of Acyl Anion Equivalents,Thieme Publishing Group,20500564 +Reactions of Aryl Aldehydes with 1 3-Diarylprop-2-en-1-ones,Thieme Publishing Group,20200471 +Reactions of Electron-Rich Alkenes,Thieme Publishing Group,20500173 +Reactions Using Ketone Donors,Thieme Publishing Group,20400012 +Reactions Using Stoichiometric Chiral Oxidants,Thieme Publishing Group,20300468 +Reactions Weekly,Springer-Verlag,01149954|11792051 +Reactions with Chiral Zirconium Catalysts,Thieme Publishing Group,20200315 +Reactive and Functional Polymers,Elsevier ,13815148| +Reactive Oxygen Species,American Innovative Medical Sciences and Technologies (AIMSCI) Inc.,23802367 +Reactive Polymers,Elsevier ,09231137| +Reactive Polymers Ion Exchangers Sorbents,Elsevier ,01676989| +Reactivity of DMAP-Type Catalysts,Thieme Publishing Group,20400241 +Reactivity of Solids,Elsevier ,01687336| +Reactome - a curated knowledgebase of biological pathways,Reactome,19341792 +REAd Revista Eletrônica de Administração (Porto Alegre),SciELO,14132311 +Reading,Wiley Blackwell (Blackwell Publishing),00340472| +Reading & Writing,AOSIS,20798245|23081422 +Reading and Writing,Springer-Verlag,09224777|15730905 +Reading and Writing Quarterly,Informa UK (Taylor & Francis),10573569|15210693 +Reading Psychology,Informa UK (Taylor & Francis),02702711|15210685 +Reading Research and Instruction,Informa UK (Taylor & Francis),08860246| +Reading Research Quarterly,Wiley Blackwell (John Wiley & Sons),00340553|19362722 +Reading World,Informa UK (Taylor & Francis),01490117| +REAKTOR,Institute of Research and Community Services Diponegoro University (LPPM UNDIP),08520798|24075973 +Real Estate Economics,Wiley Blackwell (Blackwell Publishing),10808620|15406229 +Real Estate Management and Valuation,De Gruyter Open Sp. z o.o. ,17332478|17332478 +Real-Time Imaging,Elsevier ,10772014|1096116X +Real-Time Systems,Springer-Verlag,09226443|15731383 +Realidad Revista de Ciencias Sociales y Humanidades,Latin America Journals Online,10125515| +Realidad y Reflexión,Latin America Journals Online,19926510| +Réanimation,Springer-Verlag,16240693|19516959 +Réanimation Urgences,Elsevier ,11646756| +REBRAE - Revista Brasileira de Estrategia,Pontificia Universidade Catolica do Parana - PUCPR,19838484| +ReCALL,Cambridge University Press,09583440|09583440 +RECEI - Revista Científica de Estudios sobre Interculturalidad,Hipatia Press,2014900X +Recent Acquisitions,JSTOR,08896585| +Recent Advances in Animal Nutrition,Nottingham University Press,02695642|20463510 +Recent Advances in Biology and Medicine,HATASO Enterprises LLC (Aston Journals),2378654X| +Recent Advances in Cardiovascular Drug Discovery (Formerly Recent Patents on Cardiovascular Drug Discovery),Bentham Science,15748901| +Recent Advances in Communications and Networking Technology,Bentham Science,22150811| +Recent Advances in DNA & Gene Sequences (Formerly Recent Patents on DNA & Gene Sequences),Bentham Science,23520922| +Recent Advances in Electrical & Electronic Engineering (Formerly Recent Patents on Electrical & Electronic Engineering),Bentham Science,23520965| +Recent Innovations in Chemical Engineering (Formerly Recent Patents on Chemical Engineering),Bentham Science,24055204| +Recent Innovations in Mechatronics,University of Debrecen/Recent Innovations in Mechatronics,20649622 +Recent Patents and Topics on Imaging,Bentham Science,24518271| +Recent Patents on Anti-Cancer Drug Discovery,Bentham Science,15748928| +Recent Patents on Anti-Infective Drug Discovery,Bentham Science,1574891X| +Recent Patents on Biomarkers,Bentham Science,22103104| +Recent Patents on Biomarkerse,Bentham Science,22103090| +Recent Patents on Biomedical Engineering,Bentham Science,18747647| +Recent Patents on Biotechnology,Bentham Science,18722083| +Recent Patents on Catalysis,Bentham Science,2211548X| +Recent Patents on Chemical Engineering,Bentham Science,22113347| +Recent Patents on Chemical Engineering,Bentham Science,18744788| +Recent Patents on CNS Drug Discovery,Bentham Science,15748898| +Recent Patents on Computer Science,Bentham Science,22132759| +Recent Patents on Computer Science,Bentham Science,18744796| +Recent Patents on Corrosion Science,Bentham Science,18776108| +Recent Patents on Corrosion Sciencee,Bentham Science,22106839| +Recent Patents on DNA & Gene Sequences,Bentham Science,18722156| +Recent Patents on Drug Delivery & Formulation,Bentham Science,18722113| +Recent Patents on Electrical & Electronic Engineering e,Bentham Science,22131116| +Recent Patents on Electrical Engineering,Bentham Science,18744761| +Recent Patents on Endocrine Metabolic & Immune Drug Discovery,Bentham Science,18722148| +Recent Patents on Engineering,Bentham Science,18722121| +Recent Patents on Food Nutrition & Agriculture,Bentham Science,18761429| +Recent Patents on Food Nutrition & Agriculturee,Bentham Science,22127984| +Recent Patents on Inflammation & Allergy Drug Discovery,Bentham Science,1872213X| +Recent Patents on Materials Science,Bentham Science,18744648| +Recent Patents on Materials Science,Bentham Science,18744656| +Recent Patents on Mechanical Engineering,Bentham Science,1874477X| +Recent Patents on Mechanical Engineering,Bentham Science,22127976| +Recent Patents on Medical Imaging,Bentham Science,18776132| +Recent Patents on Nanomedicine,Bentham Science,18779123| +Recent Patents on Nanotechnology,Bentham Science,18722105| +Recent Patents on Regenerative Medicine,Bentham Science,22102973| +Recent Patents on Regenerative Medicine,Bentham Science,22102965| +Recent Patents on Signal Processing,Bentham Science,18776124| +Recent Patents on Signal Processinge,Bentham Science,22106863| +Recent Patents on Space Technology,Bentham Science,18776116| +Recent Patents on Telecommunicatione,Bentham Science,22117407| +Recent Progress in Hormone Research,The Endocrine Society,00799963| +Recent Progress in Space Technology (Formerly Recent Patents on Space Technology),Bentham Science,22106871| +Recent Research in Science and Technology,Scienceflora Publishers Pvt. Ltd.,20765061 +Reception Texts Readers Audiences History,The Pennsylvania State University Press,21680604|21557888 +Receptors & Clinical Investigation,"""Smart Science and Technology, LLC""",23300558|23300566 +Receptors and Channels,Informa UK (Taylor & Francis),10606823|15435334 +Recerca Revista de pensament i anàlisi,Universitat Jaume I,11306149|22544135 +Recherche & formation,OpenEdition,09881824|19683936 +Recherche en soins infirmiers,CAIRN,02972964|22718362 +Recherche et Applications en Marketing,SAGE Publications,07673701|20512821 +Recherche et Applications en Marketing (English Edition),SAGE Publications,20515707 +Recherche et pratiques pédagogiques en langues de spécialité - Cahiers de l APLIUT,OpenEdition,02489430|21195242 +Recherche Transports Sécurité,Springer-Verlag,07618980|19516614 +Recherches amérindiennes au Québec,Consortium Erudit,03184137|19235151 +Recherches Augustiniennes et Patristiques,"""Brepols Publishers, NV""",04840887| +Recherches de Science Religieuse,CAIRN,00341258|21043884 +Recherches de Théologie et Philosophie Médiévales,Peeters Publishers,13707493 +Recherches de Théologie et Philosophie Médiévales,Peeters Publishers,13707493 +Recherches économiques de Louvain,CAIRN,07704518|17821495 +Recherches en anthropologie au Portugal,PERSEE Program,12403474|19606664 +Recherches en danse,OpenEdition,22752293 +Recherches en psychanalyse,CAIRN,17675448|19650213 +Recherches en Sciences de Gestion,CAIRN,22596372|22712836 +Recherches et prévisions,PERSEE Program,11491590| +Recherches familiales,CAIRN,1763718X|21183252 +Recherches féministes,Consortium Erudit,08384479|17059240 +Recherches linguistiques de Vincennes,OpenEdition,19589239|19589239 +Recherches sémiotiques,Consortium Erudit,02298651|19239920 +Recherches sociographiques,Consortium Erudit,00341282|17056225 +Recherches sociologiques et anthropologiques,OpenEdition,17821592|20337485 +Recherches sur Diderot et sur l Encyclopédie,OpenEdition,07690886|19552416 +Recht der Energiewirtschaft,Walter de Gruyter GmbH,0944128X|23661976 +Recht der Werkelijkheid,Boom Uitgevers Den Haag,13806424| +Recht en Methode in onderzoek en onderwijs,Boom Uitgevers Den Haag,22122508| +Recht in Afrika,Nomos Verlag,23636270|23636270 +Rechtsgeschichte - Legal History,Max Planck Institut fur europaische Rechtsgeschichte,16194993|21959617 +Rechtsidee,Muhammadiyah University of Sidoarjo,23388595|24433497 +Rechtsmedizin,Springer-Verlag,09379819|14345196 +Rechtspsychologie,Nomos Verlag,23651083|23651083 +Rechtstheorie,Duncker & Humblot GmbH,00341398|1865519X +RECIIS,Fundacao Oswaldo Cruz,19816286 +RECIIS,Fundacao Oswaldo Cruz,19816278 +Reciklaza i odrzivi razvoj,Centre for Evaluation in Education and Science,18207480| +Reconceptualizing Educational Research Methodology,Oslo and Akershus University College of Applied Sciences,1892042X +Reconstructive Review,Joint Implant Surgery and Research Foundation,23312262|23312270 +Record of the Art Museum Princeton University,JSTOR,0032843X| +Record of the Museum of Historic Art Princeton University,JSTOR,08990603| +Records & Information Management Report,Informa UK (Taylor & Francis),10969624| +Records Management Journal,Emerald (MCB UP ),09565698| +Records of the Academy,JSTOR,00656844| +Records of the Australian Museum,Australian Museum,22014349 +Records of the Australian Museum,Australian Museum,00671975| +Records of the Australian Museum Supplement,Australian Museum,08127387| +Records of the Indian Museum,Smithsonian Institution Biodiversity Heritage Library,0375099X| +Records of the Western Australian Museum,Western Australian Museum,03123162| +Records of the Western Australian Museum Supplement,Western Australian Museum,0313122X| +Recreational Sports Journal,Human Kinetics,15588661| +Recruiting & Retaining Adult Learners,Wiley Blackwell (John Wiley & Sons),2155644X|21556458 +Recueil des Travaux Chimiques des Pays-Bas,Wiley Blackwell (John Wiley & Sons),01650513| +Recueil des Travaux Chimiques des Pays-Bas et de la Belgique,Wiley Blackwell (John Wiley & Sons),03707539| +Recueil des travaux de l institut de géographie alpine,PERSEE Program,02496178| +Recueil des travaux de l institut de géographie alpine,PERSEE Program,02496178| +Recusant History,Cambridge University Press,00341932|00341932 +Recyclable Catalysis,De Gruyter Open Sp. z o.o. ,20847629 +Recycle,Thieme Publishing Group,20600585 +Recycling,MDPI AG,23134321 +Red Cedar Review,Muse - Johns Hopkins University Press,15546721 +ReD+ER,Universidad Nacional del Litoral,2362566X +Redes,APESC - Associacao Pro-Ensino em Santa Cruz do Sul,14147106|19826745 +Redes Revista hispana para el análisis de redes sociales,Universitat Autonoma de Barcelona,23854626|15790185 +Redescriptions Political Thought Conceptual History and Feminist Theory,Manchester University Press,23080914|23080906 +Redox Biology,Elsevier ,22132317| +Redox Esterification Reactions of Ynals,Thieme Publishing Group,20400322 +Redox Report,Maney Publishing,13510002|00000000 +Reduction of Alkenenitriles,Thieme Publishing Group,20100124 +Reduction of Carbonyl and Imino Groups,Thieme Publishing Group,20600216 +Reduction of Itaconic (Methylenesuccinic) Acids and Derivatives,Thieme Publishing Group,20100116 +Reduction of β-Alkoxy Enamides,Thieme Publishing Group,20100108 +REEC - Revista Eletrônica de Engenharia Civil,Universidade Federal de Goias,21790612 +Referate und Beiträge zur Anatomie und Entwickelungsgeschichte,Springer-Verlag,01775154|14320568 +Reference & User Services Quarterly,American Library Association,10949054|10949054 +Reference Reviews,Emerald (MCB UP ),09504125| +Reference Services Review,Emerald (MCB UP ),00907324|00000000 +Reflections The SoL Journal,MIT Press,15241734|15360148 +Reflective Practice,Informa UK (Taylor & Francis),14623943|14701103 +Refleksi,E-Journal System Portal of Syarif Hidayatullah State Islamic University,02156253| +Refleksje Pismo naukowe studentów i doktorantów WNPiD UAM,Adam Mickiewicz University Poznan,20818270| +Reflets de la physique,EDP Sciences,1953793X|21026777 +Reflets et perspectives de la vie économique,CAIRN,00342971|17821509 +Reflets Revue d’intervention sociale et communautaire,Consortium Erudit,12034576|17128498 +Reflexão e Ação,APESC - Associacao Pro-Ensino em Santa Cruz do Sul,01038842|19829949 +Refocus,Elsevier ,14710846| +Reformation,Maney Publishing,13574175|17520738 +Reformation and Renaissance Review,Maney Publishing,14622459|17431727 +Réforme Humanisme Renaissance,PERSEE Program,17711347|1969654X +Refractories,Springer-Verlag,00343102| +Refractories and Industrial Ceramics,Springer-Verlag,10834877|15739139 +Refugee Survey Quarterly,Oxford University Press,10204067|1471695X +REG,Geological Society of America, +Regards croisés sur l économie,CAIRN,19585039|21193975 +Regards sur l’économie allemande,OpenEdition,11568992|19650787 +RegelMaat,Boom Uitgevers Den Haag,0920055X| +Regeneration,Wiley Blackwell (John Wiley & Sons),20524412| +Regenerative Biomaterials,Oxford University Press,20563418|20563426 +Regenerative Engineering and Translational Medicine,Springer-Verlag,23644133|23644141 +Regenerative Medicine,Future Medicine,17460751|1746076X +Regenerative Medicine Research,Springer (Biomed Central Ltd.),2050490X|2050490X +Regenerative Medicine Research,Springer (Biomed Central Ltd.),2050490X| +Regenerative Therapy,Elsevier ,23523204| +REGEPE - Revista de Empreendedorismo e Gestão de Pequenas Empresas - ISSN 2316-2058,Revista de Empreendedorismo e Gestao de Pequenas Empresas - REGEPE,23162058 +REGIO,Regio,2415959X +REGIO Kisebbség Kultúra Politika Társadalom,Regio,12191701 +REGION,European Regional Science Association,24095370 +Region Direct,De Gruyter Open Sp. z o.o. ,13378473 +Region Regional Studies of Russia Eastern Europe and Central Asia,Muse - Johns Hopkins University Press,21650659 +Regional & Federal Studies,Informa UK (Taylor & Francis),13597566|17439434 +Regional and Urban Economics,Elsevier ,00343331| +Regional Anesthesia and Pain Medicine,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10987339| +Regional Economic Outlook,International Monetary Fund,20715501| +Regional Economic Outlook Asia and Pacific,International Monetary Fund,20714149| +Regional Economic Outlook Asia and Pacific,International Monetary Fund,23043210 +Regional Economic Outlook Europe,International Monetary Fund,20714157| +Regional Economic Outlook Europe,International Monetary Fund,23043199 +Regional Economic Outlook Europe,International Monetary Fund,23043202 +Regional Economic Outlook Middle East and Central Asia,International Monetary Fund,20714122| +Regional Economic Outlook Middle East and Central Asia,International Monetary Fund,23043229 +Regional Economic Outlook Sub-Saharan Africa,International Monetary Fund,20714106| +Regional Economic Outlook Sub-Saharan Africa,International Monetary Fund,20713207| +Regional Economic Outlook Sub-Saharan Africa,International Monetary Fund,23043113 +Regional Economic Outlook Sub-Saharan Africa,International Monetary Fund,23043121 +Regional Economic Outlook Western Hemisphere,International Monetary Fund,2071551X| +Regional Economic Outlook Western Hemisphere,International Monetary Fund,20714165| +Regional Economic Outlook Western Hemisphere,International Monetary Fund,23043164 +Regional Economic Outlook Western Hemisphere,International Monetary Fund,23043156 +Regional Environmental Change,Springer-Verlag,14363798|1436378X +Regional Formation and Development Studies,Klaipeda University Press,20299370|23516542 +Regional Insights,Informa UK (Taylor & Francis),20429843|20429851 +Regional Politics and Policy,Informa UK (Taylor & Francis),0959230X| +Regional Research of Russia,Pleiades Publishing,20799705|20799713 +Regional Science and Urban Economics,Elsevier ,01660462| +Regional Science Policy & Practice,Wiley Blackwell (Blackwell Publishing),17577802|17577802 +Regional Statistics,Hungarian Central Statistical Office,20639538|20648243 +Regional Studies,Informa UK (Taylor & Francis),00343404|13600591 +Regional Studies in Marine Science,Elsevier ,23524855| +Regional Studies Regional Science,Informa UK (Taylor & Francis),21681376|21681376 +Regional Trends,Nature Publishing Group - Macmillan Publishers,02611783|20401655 +Regionalistica,"""Economic Research Institute, FEB RAS""",23130881 +Regions & Cohesion,Berghahn Books,2152906X|21529078 +Regions Magazine,Informa UK (Taylor & Francis),13673882| +Register of the Kentucky Historical Society,Muse - Johns Hopkins University Press,21610355 +Regular and Chaotic Dynamics,Pleiades Publishing,15603547|14684845 +Regulated Rivers Research & Management,Wiley Blackwell (John Wiley & Sons),08869375|10991646 +Regulation & Governance,Wiley Blackwell (Blackwell Publishing),17485983|17485991 +Regulatory Peptides,Elsevier ,01670115| +Regulatory Toxicology and Pharmacology,Elsevier ,02732300|10960295 +Rehabilitación,Elsevier ,00487120| +Rehabilitation Counseling Bulletin,SAGE Publications,00343552|15384853 +Rehabilitation Education,Springer Publishing Company,08897018| +Rehabilitation Medicine,China Science Publishing & Media Ltd.,20960328| +Rehabilitation Nursing,Wiley Blackwell (John Wiley & Sons),02784807| +Rehabilitation Process and Outcome,"""Libertas Academica, Ltd.""",11795727 +Rehabilitation Psychology,American Psychological Association,00905550|19391544 +Rehabilitation Research and Practice,Hindawi Publishing Corporation,20902867|20902875 +Rehabilitation Research Policy and Education,Springer Publishing Company,21686653|21686661 +REICE Revista Electrónica de Investigación en Ciencias Económicas,Latin America Journals Online,2308782X| +REICE Revista Iberoamericana sobre Calidad Eficacia y Cambio en Educación,Servicio de Publicaciones de la Universidad Autonoma de Madrid,16964713| +Reinardus,John Benjamins Publishing Company,09254757|00000000 +Reinforced Plastics,Elsevier ,00343617| +REINWARDTIA,Indonesian Institute of Sciences,0034365X|23378824 +ReiseRechts aktuell,Walter de Gruyter GmbH,09447490|21939535 +Rejuvenation Research,Mary Ann Liebert,15491684|15578577 +Relaciones Internacionales,SciELO,15153371 +Relaciones Internacionales UAM,Servicio de Publicaciones de la Universidad Autonoma de Madrid,16993950| +Relation,Verlag der Osterreichischen Akademie der Wissenschaften,10252339|18136885 +Relations,Led Edizioni Universitarie,22833196|22809643 +Relations industrielles,Consortium Erudit,0034379X|17038138 +Relations internationales,CAIRN,03352013|21052654 +Relationships of pocket gophers of the genus Geomys from the Central and Northern Great Plains / by Lawrence R Heaney and Robert M Timm,Smithsonian Institution Biodiversity Heritage Library,00755028| +RELC Journal,SAGE Publications,00336882|1745526X +Relegere Studies in Religion and Reception,University of Otago Library,11797231 +Relevant endocrinology,LLC Relevant Medicine,24126195|24126195 +Reliability Engineering,Elsevier ,01438174| +Reliability Engineering & System Safety,Elsevier ,09518320| +Reliable Computing,Springer-Verlag,13853139|15731340 +Reliance,CAIRN,17749743|19516282 +RELIEF - REVUE ÉLECTRONIQUE DE LITTÉRATURE FRANÇAISE,Uopen Journals,18735045 +RELIEVE - Revista Electrónica de Investigación y Evaluación Educativa,Universitat de Valencia,11344032| +Religião & Sociedade,SciELO,01008587|01008587 +Religion,Informa UK (Taylor & Francis),0048721X|10961151 +Religion & Education,Informa UK (Taylor & Francis),15507394|19498381 +Religion & Public Education,Informa UK (Taylor & Francis),10567224| +Religion and American Culture A Journal of Interpretation,University of California Press,10521151|15338568 +Religion and Gender,Uopen Journals,18785417 +Religion and Human Rights,Brill Academic Publishers,1871031X|18710328 +Religion and Society Advances in Research,Berghahn Books,21509298|21509301 +Religion and Society in Central and Eastern Europe,International Study of Religion in Eastern and Central Europe Association,15539962 +Religion and the Arts,Brill Academic Publishers,10799265|15685292 +Religion and Theology,Brill Academic Publishers,10230807|15743012 +Religion Brain & Behavior,Informa UK (Taylor & Francis),2153599X|21535981 +Religion Compass,Wiley Blackwell (Blackwell Publishing),17498171|17498171 +Religion in Communist Lands,Informa UK (Taylor & Francis),03075974| +Religion in Education,Informa UK (Taylor & Francis),19417268 +Religion State & Society,Informa UK (Taylor & Francis),09637494|14653974 +Religion Today,Informa UK (Taylor & Francis),02671700| +Religions,MDPI AG,20771444 +Religions A Scholarly Journal,Hamad bin Khalifa University Press (HBKU Press),22187480| +Religions of South Asia,Equinox Publishing,17512689|17512697 +Religious Education,Informa UK (Taylor & Francis),00344087|15473201 +Religious Studies,Cambridge University Press,00344125|1469901X +Religious Studies and Theology,Equinox Publishing,08292922|17475414 +Religious Studies Review,Wiley Blackwell (Blackwell Publishing),0319485X|17480922 +Rem Revista Escola de Minas,SciELO,03704467|03704467 +Reme Revista Mineira de Enfermagem,GN1 Genesis Network,14152762| +Remedial and Special Education,SAGE Publications,07419325|15384756 +Remediation Journal,Wiley Blackwell (John Wiley & Sons),10515658|15206831 +REMHU Revista Interdisciplinar da Mobilidade Humana,SciELO,19808585|22379843 +REMHU Revista Interdisciplinar da Mobilidade Humana,SciELO,19808585| +Remote Sensing,MDPI AG,20724292 +Remote Sensing Applications Society and Environment,Elsevier ,23529385| +Remote Sensing in Ecology and Conservation,Wiley Blackwell (John Wiley & Sons),20563485| +Remote Sensing Letters,Informa UK (Taylor & Francis),2150704X|21507058 +Remote Sensing of Environment,Elsevier ,00344257| +Remote Sensing Reviews,Informa UK (Taylor & Francis),02757257| +Renaissance and Modern Studies,Informa UK (Taylor & Francis),04863720| +Renaissance Drama,The University of Chicago Press,04863739|21643415 +Renaissance Drama (1956-1957),The University of Chicago Press,23784008| +Renaissance Drama a Report on Research Opportunities,The University of Chicago Press,23784024| +Renaissance News,The University of Chicago Press,0277903X| +Renaissance Quarterly,The University of Chicago Press,00344338|19350236 +Renaissance Studies,Wiley Blackwell (Blackwell Publishing),02691213|14774658 +Renal Failure,Informa UK (Taylor & Francis),0886022X|15256049 +Renal Replacement Therapy,Springer (Biomed Central Ltd.),20591381 +Renascence,Philosophy Documentation Center,00344346| +Rendiconti del Circolo Matematico di Palermo (1952 -),Springer-Verlag,0009725X|19734409 +Rendiconti del Seminario Matematico della Università di Padova,European Mathematical Society Publishing House,00418994| +Rendiconti del Seminario Matematico e Fisico di Milano,Springer-Verlag,03707377| +RENDICONTI LINCEI,Springer-Verlag,11206349|17200776 +Rendiconti Lincei - Matematica e Applicazioni,European Mathematical Society Publishing House,11206330| +Rendiconti online della Società Geologica Italiana,Societa Geologica Italiana,20358008|20358008 +Renewable Agriculture and Food Systems,Cambridge University Press,17421705|17421713 +Renewable and Sustainable Energy Reviews,Elsevier ,13640321| +Renewable Bioresources,Herbert Publications,20526237 +Renewable Energy,Elsevier ,09601481| +Renewable Energy Focus,Elsevier ,17550084| +Renewables Wind Water and Solar,Springer (Biomed Central Ltd.),2198994X|2198994X +renshenyubanlu,China Science Publishing & Media Ltd.,10035001| +REOP - Revista Española de Orientación y Psicopedagogía,UNED - Universidad Nacional de Educacion a Distancia,11397853|19897448 +ReOrient,Pluto Journals,20555601|2055561X +Repères,OpenEdition,07557817|22635947 +Repères cahier de danse,CAIRN,21125147|22717811 +Repertorium novarum specierum regni vegetabilis,Wiley Blackwell (John Wiley & Sons),03746577|1522239X +Report of the Annual Meeting,Consortium Erudit,03170594|17129095 +"""Report on the fishes taken by the Bengal fisheries steamer """"Golden Crown """"""",Smithsonian Institution Biodiversity Heritage Library,03749142| +Reports in Electrochemistry,Dove Medical Press,22304096 +Reports in Medical Imaging,Dove Medical Press,11791586 +Reports in Organic Chemistry,Dove Medical Press,22305246 +Reports in Parasitology,Dove Medical Press,22303162 +Reports in Theoretical Chemistry,Dove Medical Press,2230410X +Reports of Patent Design and Trade Mark Cases,Oxford University Press,00801364|17561000 +Reports of Practical Oncology,Elsevier ,14282267| +Reports of Practical Oncology & Radiotherapy,Elsevier ,15071367| +Reports of Radiotherapy and Oncology,International Neuroscience Institute,23453192| +Reports of the National Academy of Sciences of Ukraine,Co. Ltd. Ukrinformnauka,10256415|10256415 +Reports on Economics and Finance,"""Hikari, Ltd.""",23677805 +Reports on Geodesy and Geoinformatics,De Gruyter Open Sp. z o.o. ,23918152 +Reports on Geodesy and Goeinformatics,De Gruyter Open Sp. z o.o. ,08673179| +Reports on Mathematical Physics,Elsevier ,00344877| +Reports on Progress in Physics,IOP Publishing,00344885|13616633 +Representation,Informa UK (Taylor & Francis),00344893|17494001 +Representation Theory of the American Mathematical Society,American Mathematical Society,10884165 +Representations,University of California Press,07346018|1533855X +Reprodução & Climatério,Elsevier ,14132087| +Reproduction,Bioscientifica,00224251|17417899 +Reproduction Abstracts,Bioscientifica,20521472 +Reproduction Fertility and Development,CSIRO Publishing,10313613| +Reproduction in Domestic Animals,Wiley Blackwell (Blackwell Publishing),09366768|14390531 +Reproduction in Domestic Ruminants,Nottingham University Press,2045872X|20465548 +Reproduction Nutrition Development,EDP Sciences,01811916|12979708 +Reproduction Nutrition Development,EDP Sciences,09265287|12979708 +Reproduction Nutrition Développement,EDP Sciences,01811916| +Reproductive & Developmental Biology,Korean Society of Animal Reproduction,17382432|22880151 +Reproductive Biology,Elsevier ,1642431X| +Reproductive Biology and Endocrinology,Springer (Biomed Central Ltd.),14777827|14777827 +Reproductive Biology Insights,"""Libertas Academica, Ltd.""",11786426 +Reproductive Biomedicine & Society Online,Elsevier ,24056618| +Reproductive BioMedicine Online,Elsevier ,14726483| +Reproductive Endocrinology,Publishing Office TRILIST,23094117|24111295 +Reproductive Health,Springer (Biomed Central Ltd.),17424755|17424755 +Reproductive Health Matters,Elsevier ,09688080| +Reproductive Immunology and Biology,Japan Society for Immunology of Reproduction,1881607X|18817211 +Reproductive Medicine and Biology,Springer-Verlag,14455781|14470578 +Reproductive Medicine Review,Cambridge University Press,09622799|14699028 +Reproductive Sciences,SAGE Publications,19337191|19337205 +Reproductive System & Sexual Disorders,OMICS Publishing Group,2161038X +Reproductive Toxicology,Elsevier ,08906238| +Reproduktionsmedizin,Springer-Verlag,14346931|1434808X +Republican China,Maney Publishing,08932344| +Requirements Engineering,Springer-Verlag,09473602|1432010X +Res Cogitans,Pacific University Library,21554838 +ReS Futurae,OpenEdition,22646949|22646949 +Res Historica,Wydawnictwo Uniwersytetu Marii Curie-SkÅ?odowskiej w Lublinie,20826060|24498467 +Res Humanitariae,Klaipeda University Press,18227708| +Res Medica,"""UKOLN, University of Bath""",04823206|20517580 +Res Mobilis,Universidad de Oviedo,22552057 +Res Philosophica,Res Philosophica,21689105| +Res Publica,Springer-Verlag,13564765|15728692 +Res Publica Revista de Historia de las Ideas Políticas,Universidad Complutense de Madrid,15764184|19896115 +Research,"""Synatom Research, LLC""",23341009 +Research & Politics,SAGE Publications,20531680 +Research and Application of Material,Sciknow Publications,23285060|23285079 +Research and Applications in Economics,"""Science and Engineering Publishing, Co.""",23323868| +Research and Development in Medical Education,International Society for Phytocosmetic Sciences,23222719 +Research and Opinion in Anesthesia and Intensive Care,Medknow Publications,23569115| +Research and Policy on Turkey,Informa UK (Taylor & Francis),23760818|23760826 +Research and Practice for Persons with Severe Disabilities,TASH,02749483| +Research and Practice for Persons with Severe Disabilities,SAGE Publications,15407969|21692408 +Research and Practice in Intellectual and Developmental Disabilities,Informa UK (Taylor & Francis),23297018|23297026 +Research and Practice in Technology Enhanced Learning,Springer-Verlag,17932068|17937078 +Research and Reports in Biochemistry,Dove Medical Press,22303154 +Research and Reports in Biodiversity Studies,Dove Medical Press,22302484 +Research and Reports in Biology,Dove Medical Press,11797274 +Research and Reports in Endocrine Disorders,Dove Medical Press,22302271 +Research and Reports in Focused Ultrasound,Dove Medical Press,22532609 +Research and Reports in Forensic Medical Science,Dove Medical Press,22302476 +Research and Reports in Medicinal Chemistry,Dove Medical Press,22305238 +Research and Reports in Neonatology,Dove Medical Press,11799935 +Research and Reports in Nuclear Medicine,Dove Medical Press,2230228X +Research and Reports in Transdermal Drug Delivery,Dove Medical Press,22531580 +Research and Reports in Tropical Medicine,Dove Medical Press,11797282 +Research and Reports in Urology,Dove Medical Press,22532447 +Research and Theory for Nursing Practice,Springer Publishing Company,08897182|00000000 +Research Ethics,SAGE Publications,17470161|20476094 +Research Evaluation,Oxford University Press,09582029|14715449 +Research Ideas and Outcomes,Pensoft Publishers,23677163 +Research in Accounting Regulation,Elsevier ,10520457| +Research in African Literatures,Indiana University Press,00345210|15272044 +Research in Agricultural Engineering,Czech Academy of Agricultural Sciences,12129151|18059376 +Research in Agriculture Livestock and Fisheries,Bangladesh Journals Online,24090603|24099325 +Research in Applied Economics,"""Macrothink Institute, Inc.""",19485433 +Research in Astronomy and Astrophysics,IOP Publishing,16744527| +Research in Autism Spectrum Disorders,Elsevier ,17509467| +Research in Biotechnology,Scienceflora Publishers Pvt. Ltd.,2229791X +Research in Business and Management,"""Macrothink Institute, Inc.""",23308362 +Research in Cardiovascular Medicine,Kowsar Medical Institute,22519572|22519580 +Research in Comparative and International Education,SAGE Publications,17454999|17454999 +Research in Dance Education,Informa UK (Taylor & Francis),14647893|14701111 +Research in Developmental Disabilities,Elsevier ,08914222| +Research in Drama Education The Journal of Applied Theatre and Performance,Informa UK (Taylor & Francis),13569783|1470112X +Research in Economics,Elsevier ,10909443|10909451 +Research in Education,SAGE Publications,00345237|20504608 +Research in Endocrinology,IBIMA Publishing,23317485 +Research in Engineering Design,Springer-Verlag,09349839|14356066 +Research in Experimental Economics,Emerald (MCB UP ),01932306| +Research in Experimental Medicine,Springer-Verlag,03009130|14338580 +Research in Geophysics,PAGEPress Publications,20389655|20389663 +Research in Gerontological Nursing,"""SLACK, Inc.""",19404921| +Research in Health and Nutrition,"""Science and Engineering Publishing, Co.""",2332371X| +Research in Higher Education,Springer-Verlag,03610365|1573188X +Research in Human Development,Informa UK (Taylor & Francis),15427609|15427617 +Research in Immunology,Elsevier ,09232494| +Research in Immunology An International Journal,IBIMA Publishing,23317299|23317299 +Research in International Business and Finance,Elsevier ,02755319| +Research in Language,De Gruyter Open Sp. z o.o. ,17317533|20834616 +Research in Learning Technology,Co-Action Publishing,21567069|21567077 +Research in Mathematical Education,Korea Society of Mathematical Education,12266191| +Research in Mathematics Education,Informa UK (Taylor & Francis),14794802| +Research in Mathematics Education,Informa UK (Taylor & Francis),14794802| +Research in Mathematics Education,Informa UK (Taylor & Francis),14794802| +Research in Mathematics Education,Informa UK (Taylor & Francis),14794802| +Research in Mathematics Education,Informa UK (Taylor & Francis),14794802| +Research in Mathematics Education,Informa UK (Taylor & Francis),14794802|17540178 +Research in Microbiology,Elsevier ,09232508|09232508 +Research in Neurology An International Journal,IBIMA Publishing,23312416 +Research in Neuroscience,Scientific and Academic Publishing,23261226| +Research in Nondestructive Evaluation,Informa UK (Taylor & Francis),09349847|14322110 +Research in Number Theory,Springer-Verlag,23639555 +Research in Nursing & Health,Wiley Blackwell (John Wiley & Sons),01606891|1098240X +Research in Organizational Behavior,Elsevier , +Research in Organizational Behavior,Elsevier ,01913085| +Research in Pedagogy,"""Preschool Teacher Training College, Vrsac, Serbia""",22177337|24062006 +Research in Personnel and Human Resources Management,Emerald (MCB UP ),07427301| +Research in Pharmaceutical Biotechnology,Academic Journals,21412324 +Research in Pharmacy,Scienceflora Publishers Pvt. Ltd.,2231539X +Research in Phenomenology,Brill Academic Publishers,00855553|15691640 +Research in Plant Disease,Korean Society of Plant Pathology,15982262| +Research in Post-Compulsory Education,Informa UK (Taylor & Francis),13596748|17475112 +Research in Psychology and Behavioral Sciences,"""Science and Education Publishing Co., Ltd.""",23334371| +Research in Psychotherapy Psychopathology Process and Outcome,PAGEPress Publications,22398031 +Research in Science & Technological Education,Informa UK (Taylor & Francis),02635143|14701138 +Research in Science Education,Springer-Verlag,0157244X|15731898 +Research in Social and Administrative Pharmacy,Elsevier ,15517411| +Research in Social Stratification and Mobility,Elsevier ,02765624| +Research in Sports Medicine An International Journal,Informa UK (Taylor & Francis),15438627|15438635 +Research in the Mathematical Sciences,Springer (Biomed Central Ltd.),21979847|21979847 +Research in Transportation Business & Management,Elsevier ,22105395| +Research in Transportation Economics,Elsevier ,07398859| +Research in Veterinary Science,Elsevier ,00345288| +Research in Virology,Elsevier ,09232516| +Research in World Economy,Sciedu Press,19233981|1923399X +Research in Zoology,Scientific and Academic Publishing,2325002X| +Research Intelligence,Informa UK (Taylor & Francis),03079023| +Research Involvement and Engagement,Springer (Biomed Central Ltd.),20567529|20567529 +Research Journal for Veterinary Practitioners,Nexus Academic Publishers,23082798 +Research Journal of Agronomy,Science Alert,18159354| +Research Journal of Allergy,Science Alert,18193390| +RESEARCH JOURNAL OF ANIMAL HUSBANDRY AND DAIRY SCIENCE,Hind Agri Horticultural Society,09765646|22316442 +Research Journal of Animal Sciences,Science Alert,19935269| +Research Journal of Applied Sciences,Science Alert,1815932X| +Research Journal of Applied Sciences Engineering and Technology,Maxwell Scientific Publication Corp.,20407459|20407467 +Research Journal of Biological Sciences,Science Alert,18158846| +Research Journal of Botany,Science Alert,18164919| +Research Journal of Business Management,Science Alert,18191932| +Research Journal of Cardiology,Science Alert,18193404| +Research Journal of Computation and Mathematics,Sciknow Publications,2329227X|23292261 +Research Journal of Dairy Sciences,Science Alert,19935277| +Research Journal of Developmental Biology,Herbert Publications,20554796 +Research Journal of Diagnostic Radiography,Sciknow Publications,23299452 +Research Journal of Drug Abuse,Herbert Publications,20573111 +Research Journal of Endocrinology and Metabolism,Herbert Publications,20533640 +Research Journal of Engineering and Technology,Diva Enterprises Private Limited,09762973|2321581X +Research Journal of Environmental and Earth Sciences,Maxwell Scientific Publication Corp.,20410484|20410492 +Research Journal of Environmental Sciences,Science Alert,18193412| +Research Journal of Environmental Toxicology,Science Alert,18193420| +Research Journal of Forestry,Science Alert,18193439| +Research Journal of Humanities and Social Sciences,Diva Enterprises Private Limited,09756795|23215828 +Research Journal of Immunology,Science Alert,19947909| +Research Journal of Infectious Diseases,Herbert Publications,20525958 +Research Journal of Information Technology,Science Alert,18157432| +Research Journal of Mathematics and Statistics,Maxwell Scientific Publication Corp.,20422024|20407505 +Research Journal of Medical Sciences,Science Alert,18159346| +Research Journal of Medicinal Plant,Science Alert,18193455| +Research Journal of Microbiology,Science Alert,18164935| +Research Journal of Mutagenesis,Science Alert,19947917| +Research Journal of Nanoscience and Nanotechnology,Science Alert,19965044| +Research Journal of Obstetrics and Gynecology,Science Alert,19947925| +Research Journal of Parasitology,Science Alert,18164943| +Research Journal of Pharmaceutical Dosage Forms and Technology,Diva Enterprises Private Limited,0975234X|09754377 +Research Journal of Pharmacognosy and Phytochemistry,Diva Enterprises Private Limited,09752331|09754385 +Research Journal of Pharmacology,Science Alert,18159362| +Research Journal of Pharmacology and Pharmacodynamics,Diva Enterprises Private Limited,09754407|23215836 +Research Journal of Pharmacy and Technology,Diva Enterprises Private Limited,09743618|0974360X +Research Journal of Physics,Science Alert,18193463| +Research Journal of Phytochemistry,Science Alert,18193471| +Research Journal of Poultry Sciences,Science Alert,19935285| +Research Journal of Radiology,Science Alert,1819348X| +Research Journal of Science and Technology,Diva Enterprises Private Limited,09754393|23492988 +Research Journal of Seed Science,Science Alert,18193552| +Research Journal of Soil and Water Management,Science Alert,20751095| +Research Journal of Soil Biology,Science Alert,18193498| +Research Journal of Textile and Apparel,Emerald (MCB UP ),15606074| +Research Journal of Topical and Cosmetic Sciences,Diva Enterprises Private Limited,09762981|23215844 +Research Journal of Toxins,Science Alert,18193560| +Research Journal of Veterinary Sciences,Science Alert,18191908| +Research Journal of Women s Health,Herbert Publications,20549865 +Research Letters in Biochemistry,Hindawi Publishing Corporation,16876709|16876717 +Research Letters in Communications,Hindawi Publishing Corporation,16876741|1687675X +Research Letters in Ecology,Hindawi Publishing Corporation,16876768|16876776 +Research Letters in Electronics,Hindawi Publishing Corporation,16876784|16876792 +Research Letters in Inorganic Chemistry,Hindawi Publishing Corporation,16876806|16876814 +Research Letters in Materials Science,Hindawi Publishing Corporation,16876822|16876830 +Research Letters in Nanotechnology,Hindawi Publishing Corporation,16876849|16876857 +Research Letters in Optics,Hindawi Publishing Corporation,16878175|16878183 +Research Letters in Organic Chemistry,Hindawi Publishing Corporation,16876865|16876938 +Research Letters in Physical Chemistry,Hindawi Publishing Corporation,16876873|16876881 +Research Letters in Physics,Hindawi Publishing Corporation,1687689X|16876903 +Research Letters in Signal Processing,Hindawi Publishing Corporation,16876911|1687692X +Research n Practical Medicine Journal,"""QUASAR, LLC""",24092231|24101893 +Research Notes in Information Science,AICIT,22871934|22871942 +Research of Young Scientists in Psychology,Vilnius University,20299958|23514620 +Research on Ageing and Social Policy,Hipatia Press,2014671X +Research on Aging,SAGE Publications,01640275|00000000 +Research on Biomedical Engineering,SciELO,24464740 +Research on Chemical Intermediates,Springer-Verlag,09226168|15685675 +Research on Crops,Diva Enterprises Private Limited,09723226|23487542 +Research on Education and Media,Walter de Gruyter GmbH,20370830 +Research on Engineering Structures and Materials,MIM Research Group,21489807|21494088 +Research on Language and Computation,Springer-Verlag,15707075|15728706 +Research on Language and Social Interaction,Informa UK (Taylor & Francis),08351813|15327973 +Research on Social Work Practice,SAGE Publications,10497315|00000000 +Research Opinions in Animal and Veterinary Sciences,Research Opinions in Animal and Veterinary Sciences,22230343 +Research Papers Faculty of Materials Science and Technology Slovak University of Technology,De Gruyter Open Sp. z o.o. ,13361589|13380532 +Research Papers in Education,Informa UK (Taylor & Francis),02671522|14701146 +Research Policy,Elsevier ,00487333| +Research Quarterly American Alliance for Health Physical Education and Recreation,Informa UK (Taylor & Francis),10671315| +Research Quarterly American Association for Health Physical Education and Recreation,Informa UK (Taylor & Francis),10671188| +Research Quarterly American Physical Education Association,Informa UK (Taylor & Francis),23267402|23267399 +Research Quarterly for Exercise and Sport,Informa UK (Taylor & Francis),02701367|21683824 +Research Reports in Clinical Cardiology,Dove Medical Press,11798475 +Research Result ECONOMIC RESEARCH SERIES,Belgorod National Research University,24091634 +Research Result MEDICINE AND PHARMACY SERIES,Belgorod National Research University,23138955 +Research Result PEDAGOGICS AND PSYCHOLOGY OF EDUCATION SERIES,Belgorod National Research University,23138971 +Research Result SERIES PHYSIOLOGY,Belgorod National Research University,24090298 +Research Result Series «SOCIAL STUDIES AND HUMANITIES»,Belgorod National Research University,2408932X +Research Result SERIES «SOCIOLOGY AND MANAGEMENT»,Belgorod National Research University,24089338 +Research Result SERIES «TECHNOLOGIES OF BUSINESS AND SERVICE»,Belgorod National Research University,24089346 +RESEARCH RESULT Theoretical and applied linguistics series,Belgorod National Research University,23138912 +Research Review of the Institute of African Studies,African Journals Online ,08554412|08554412 +Research Strategies,Elsevier ,07343310| +Research Studies in Music Education,SAGE Publications,1321103X|18345530 +Research Synthesis Methods,Wiley Blackwell (John Wiley & Sons),17592879|17592887 +Research Works of Air Force Institute of Technology,De Gruyter Open Sp. z o.o. ,12343544|12343544 +Research World,Wiley Blackwell (John Wiley & Sons),15673073| +Research-Technology Management,The Industrial Research Institute ,08956308|19300166 +Researcher A Research Journal of Culture and Society,Nepal Journals Online,20912374| +Researcher Social Science Studies,Researcher Social Science Studies,21991553| +Researchers World – Journal of Arts Science & Commerce,ERM Publications,22314172|22294686 +Researches and Applications in Mechanical Engineering,"""Science and Engineering Publishing, Co.""",23271582| +Researches on Population Ecology,Springer-Verlag,00345466|14375613 +Researching and Teaching Chinese as a Foreign Language,Equinox Publishing,20531788|20531796 +Réseaux,CAIRN,07517971|17775809 +Réseaux The French journal of communication,PERSEE Program,09699864| +RESET,OpenEdition,22646221 +Residential Group Care & Treatment,"""Informa UK (Haworth Press, Inc.,)""",07317123| +Residential Treatment for Children & Youth,Informa UK (Taylor & Francis),0886571X|15410358 +Resilience,Informa UK (Taylor & Francis),21693293|21693307 +Resilience A Journal of the Environmental Humanities,University of Nebraska Press,23308117 +Resonance,Springer-Verlag,09718044|0973712X +Resonancias Revista de investigación musical,Pontificia Universidad Catolica de Chile,07173474|07195702 +Resource and Energy Economics,Elsevier ,09287655| +Resource Geology,Wiley Blackwell (Blackwell Publishing),13441698|17513928 +Resource Recovery and Conservation,Elsevier ,03043967| +Resource Sharing & Information Networks,Informa UK (Taylor & Francis),07377797|15411125 +Resource Sharing & Library Networks,"""Informa UK (Haworth Press, Inc.,)""",02703173| +Resource-efficient Technologies,Elsevier ,24056537| +Resources,MDPI AG,20799276 +Resources and Conservation,Elsevier ,01663097| +Resources and Energy,Elsevier ,01650572| +Resources and Environment,Scientific and Academic Publishing,21632618| +Resources and Technology,Petrozavodsk State University,23070048 +Resources Conservation and Recycling,Elsevier ,09213449| +Resources for American Literary Study,"""AMS Press, Inc.""",00487384|15291502 +Resources Policy,Elsevier ,03014207| +Resources Processing,The Resources Processing Society of Japan,13486012|13499262 +Respiration,American Psychological Association, +Respiration,S. Karger AG,00257931|14230356 +Respiration Physiology,Elsevier ,00345687| +Respiratory Care,Daedalus Enterprises,00201324|19433654 +Respiratory Care Clinics,Elsevier ,10785337| +Respiratory Case Reports,"""LookUs Bilisim, Ltd.""",21472475|21472475 +Respiratory Investigation,Elsevier ,22125345| +Respiratory Medicine,Elsevier ,09546111| +Respiratory Medicine Case Reports,Elsevier ,22130071| +Respiratory Medicine CME,Elsevier ,17550017| +Respiratory Medicine COPD Update,Elsevier ,17450454| +Respiratory Medicine Extra,Elsevier ,17449049| +Respiratory Physiology & Neurobiology,Elsevier ,15699048| +Respiratory Research,Springer (Biomed Central Ltd.),14659921|14659921 +Respirology,Wiley Blackwell (Blackwell Publishing),13237799|14401843 +Respirology Case Reports,Wiley Blackwell (John Wiley & Sons),20513380| +Restaurator International Journal for the Preservation of Library and Archival Material,Walter de Gruyter GmbH,00345806|18658431 +Restoration Ecology,Wiley Blackwell (Blackwell Publishing),10612971|1526100X +Restoration of Buildings and Monuments,Walter de Gruyter GmbH,18647251|18647022 +Restoration Studies in English Literary Culture 1660-1700,Muse - Johns Hopkins University Press,1941952X +Restorative Dentistry & Endodontics,The Korean Academy of Conservative Dentistry,22347658|22347666 +Restorative Justice,Informa UK (Taylor & Francis),20504721|2050473X +Restorative Neurology and Neuroscience,IOS Press,09226028|18783627 +Results in Immunology,Elsevier ,22112839| +Results in Mathematics,Springer-Verlag,14226383|14209012 +Results in Pharma Sciences,Elsevier ,22112863| +Results in Physics,Elsevier ,22113797| +Resuscitating Paideia,Centennial Library,23757728 +Resuscitation,Elsevier ,03009572| +Retail and Distribution Management,Emerald (MCB UP ),03072363| +Rethinking History,Informa UK (Taylor & Francis),13642529|14701154 +Rethinking Marxism,Informa UK (Taylor & Francis),08935696|14758059 +Retina,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,0275004X| +Retinal Cases & Brief Reports,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,19351089| +Retos,Salesian Polytechnic University of Ecuador,13906291|13908618 +Retrovirology,Springer (Biomed Central Ltd.),17424690|17424690 +Retrovirology Research and Treatment,"""Libertas Academica, Ltd.""",11781238 +retten!,Thieme Publishing Group,21932387|21932395 +Reumatismo,PAGEPress Publications,00487449|22402683 +Reumatología Clínica,Elsevier ,1699258X| +Reumatología Clínica (English Edition),Elsevier ,21735743| +Reumatologia/Rheumatology,Termedia Sp. z.o.o.,00346233| +REUNIR Revista de Administração Contabilidade e Sustentabilidade,"""Reunir Revista de Administracao, Contabilidade e Sustentabilidade""",22373667 +Reuse/Recycle Newsletter,SAGE Publications,00487457|00000000 +Rev secr Trib perm revis,Tribunal Permanente de Revisao do MERCOSUL,23075163|23047887 +RevCEDOUA,Coimbra University Press,08741093|21822387 +Revele Revista Virtual dos Estudantes de Letras,Faculdade de Letras da UFMG,23174242 +Revemat revista eletrônica de educação matemática,Universidade Federal de Santa Catarina,19811322|19811322 +REVESCO Revista de Estudios Cooperativos,Universidad Complutense de Madrid,11356618|18858031 +Review,Saint Louis Federal Reserve Bank,00149187| +Review & Expositor,SAGE Publications,00346373|20529449 +Review Journal of Autism and Developmental Disorders,Springer-Verlag,21957177|21957185 +Review Journal of Chemistry,Pleiades Publishing,20799780|20799799 +Review Literature and Arts of the Americas,Informa UK (Taylor & Francis),08905762|17430666 +Review of Accounting and Finance,Emerald (MCB UP ),14757702| +Review of Accounting Studies,Springer-Verlag,13806653|15737136 +Review of Administration and Innovation - RAI,"""Faculdade de Economia, Administracao e Contabilidade""",18092039|18092039 +Review of Advances in Physics Theories and Applications,Pak Publishing Group,24123714|24093769 +Review of African Political Economy,Informa UK (Taylor & Francis),03056244|17401720 +Review of Agricultural and Applied Economics,Slovak University of Agriculture in Nitra,13369261 +Review of Agricultural Economics,Oxford University Press,10587195|14679353 +Review of Agricultural Food and Environmental Studies,Springer-Verlag,24256870|24256897 +Review of Applied Physics,DEStech Publications,23271612| +Review of Arts and Humanities,American Research Institute for Policy Development,23342927|23342935 +Review of Asset Pricing Studies,Oxford University Press,20459920|20459939 +Review of Behavioral Economics,Now Publishers,23266198|23266201 +Review of Behavioral Finance,Emerald (MCB UP ),19405979|19405987 +Review of Business Information Systems (RBIS),Clute Institute,1534665X|21579547 +Review of Business Management,FECAP Fundacao Escola de Comercio Alvares,18064892|19830807 +Review of Business Research,International Academy of Business and Economics,15462609|23789670 +Review of Catalysts,Pak Publishing Group,24123706|24106607 +Review of Central and East European Law,Brill Academic Publishers,09259880|15730352 +Review of Cognitive Linguistics,John Benjamins Publishing Company,18779751|1877976X +Review of Communication,Informa UK (Taylor & Francis),15358593 +Review of Computer Engineer Studies,International Information and Engineering Technology Association,23690755|23690763 +Review of Computer Engineering Research,Pak Publishing Group,24124281|24109142 +Review of Contemporary Business Research,American Research Institute for Policy Development,23336412|23336420 +Review of Corporate Finance Studies,Oxford University Press,20469128|20469136 +Review of Derivatives Research,Springer-Verlag,13806645|15737144 +Review of Development Economics,Wiley Blackwell (Blackwell Publishing),13636669|14679361 +Review of Development Finance,Elsevier ,18799337| +Review of Economic and Business Studies,Walter de Gruyter GmbH,20687249 +Review of Economic Design,Springer-Verlag,14344742|14344750 +Review of Economic Dynamics,Elsevier ,10942025| +Review of Economic Perspectives,De Gruyter Open Sp. z o.o. ,12132446|18041663 +Review of Economics and Institutions,"""Dipartimento di Economia, Universita di Perugia (IT)""",20381344|20381379 +Review of Economics and Statistics,MIT Press,00346535|15309142 +Review of Economics of the Household,Springer-Verlag,15695239|15737152 +Review of Ecumenical Studies Sibiu,De Gruyter Open Sp. z o.o. ,20655940 +Review of Education,Wiley Blackwell (John Wiley & Sons),20496613| +Review of Educational Research,American Educational Research Association,00346543|19351046 +Review of Energy Technologies and Policy Research,Pak Publishing Group,24092134|23137983 +Review of Environment and Earth Sciences,Pak Publishing Group,24092150|23138440 +Review of Environment Energy and Economics,Fondazione Eni Enrico Mattei,22797300| +Review of Environmental Economics and Policy,Oxford University Press,17506816|17506824 +Review of European Administrative Law,Paris Legal Publishers,18747981|18747973 +Review of European Community & International Environmental Law,Wiley Blackwell (Blackwell Publishing),09628797|14679388 +Review of European Comparative & International Environmental Law,Wiley Blackwell (John Wiley & Sons),20500386| +Review of European Studies,Canadian Center of Science and Education,19187173|19187181 +Review of Finance,Oxford University Press,15723097|1573692X +Review of Financial Economics,Elsevier ,10583300| +Review of Financial Studies,Oxford University Press,08939454|14657368 +Review of General Psychology,American Psychological Association,10892680|19391552 +Review of Historical Publications Relating to Canada,University of Toronto Press Inc,03818055| +Review of Historical Publications Relating to Canada,University of Toronto Press Inc,03818055| +Review of History and Political Science,American Research Institute for Policy Development,23335718|23335726 +Review of Income and Wealth,Wiley Blackwell (Blackwell Publishing),00346586|14754991 +Review of Industrial Engineering Letters,Pak Publishing Group,24092169|24089427 +Review of Industrial Organization,Springer-Verlag,0889938X|15737160 +Review of Information Engineering and Applications,Pak Publishing Group,24123676|24096539 +Review of International Business and Strategy,Emerald (MCB UP ),20596014| +Review of International Economics,Wiley Blackwell (Blackwell Publishing),09657576|14679396 +Review of International Political Economy,Informa UK (Taylor & Francis),09692290|14664526 +Review of International Studies,Cambridge University Press,02602105|14699044 +Review of Japanese Culture and Society,Muse - Johns Hopkins University Press,23299770 +Review of Journalism and Mass Communication,American Research Institute for Policy Development,23335742|23335734 +Review of Keynesian Economics,Edward Elgar Publishing,20495323|20495331 +Review of Knowledge Economy,Pak Publishing Group,24123668|24099449 +Review of Law & Economics,Walter de Gruyter GmbH,21946000|15555879 +Review of Managerial Science,Springer-Verlag,18636683|18636691 +Review of Market Integration,SAGE Publications,09749292|09754709 +Review of Marketing Science,Walter de Gruyter GmbH,21945985|15465616 +Review of Middle East Economics and Finance,Walter de Gruyter GmbH,14753685|14753696 +Review of Middle East Economics and Finance,Walter de Gruyter GmbH,14753693 +Review of Middle East Studies,Cambridge University Press,21513481|23293225 +Review of Network Economics,Walter de Gruyter GmbH,21945993|14469022 +Review of North Korean Studies,Institute for the Study of North Korean Life,12294616| +Review of North Korean Studies,Institute for the Study of North Korean Life,12294616| +Review of Pacific Basin Financial Markets and Policies,World Scientific ,02190915|02190915 +Review of Palaeobotany and Palynology,Elsevier ,00346667| +Review of Philosophy and Psychology,Springer-Verlag,18785158|18785166 +Review of Plant Studies,Pak Publishing Group,2412365X|24102970 +Review of Polarography,The Polargraphic Society of Japan,00346691|18847692 +Review of Policy Research,Wiley Blackwell (Blackwell Publishing),1541132X|15411338 +Review of Political Economy,Informa UK (Taylor & Francis),09538259|14653982 +Review of Professional Management- A Journal of New Delhi Institute of Management,New Delhi Institute of Management,09728686|24550647 +Review Of Progress,Laxmi Book Publication,23213485 +Review of Public Administration and Management,OMICS Publishing Group,23157844 +Review of Public Personnel Administration,SAGE Publications,0734371X|1552759X +Review of Quantitative Finance and Accounting,Springer-Verlag,0924865X|15737179 +Review of Rabbinic Judaism,Brill Academic Publishers,15684857|15700704 +Review of Radical Political Economics,SAGE Publications,04866134|15528502 +Review of Religion and Chinese Society,Brill Academic Publishers,22143947|22143955 +Review of Religious Research,Springer-Verlag,0034673X|22114866 +Review of Research,Laxmi Book Publication,2249894X|2249894X +Review of Research in Education,American Educational Research Association,0091732X|19351038 +Review of Scientific Instruments,American Institute of Physics,00346748|10897623 +Review of Social Economy,Informa UK (Taylor & Francis),00346764|14701162 +Review of Social Sciences,LAR Center Press,23788569|23788550 +Review of Socialist Law,Brill Academic Publishers,01650300|18752985 +Review of Sociology,Akademiai Kiado Zrt.,14178648|15882845 +Review of Sociology of the Hungarian Sociological Association,Akademiai Kiado Zrt.,14178648| +Review of Southern African Studies,African Journals Online ,10244190 +Review of the Air Force Academy,"""""""Henri Coanda"""" Air Force Academy""",18429238|20694733 +Review of Urban and Regional Development Studies,Wiley Blackwell (Blackwell Publishing),09170553|1467940X +Review of World Economics,Springer-Verlag,16102878|16102886 +Review on Clinical Pharmacology and Medicinal Therapy,ECO-Vector,16834100| +Reviews at LibraryOfMedicine com,"""Library of Medicine, LLC""",23297905| +Reviews in Advanced Sciences and Engineering,American Scientific Publishers,21579121|2157913X +Reviews in Agricultural Science,United Graduate School of Agricultural Science,2187090X +Reviews in American History,Muse - Johns Hopkins University Press,00487511|10806628 +Reviews in Analgesia,Cognizant Communication Corp,1542961X|15553876 +Reviews in Analytical Chemistry,Walter de Gruyter GmbH,07930135|21910189 +Reviews in Anthropology,Informa UK (Taylor & Francis),00938157|15563014 +Reviews in Aquaculture,Wiley Blackwell (Blackwell Publishing),17535123|17535131 +Reviews in Chemical Engineering,Walter de Gruyter GmbH,01678299|21910235 +Reviews in Clinical and Experimental Hematology,Wiley Blackwell (Blackwell Publishing),11270020|14680734 +Reviews in Clinical Gerontology,Cambridge University Press,09592598|14699036 +Reviews in Endocrine and Metabolic Disorders,Springer-Verlag,13899155|15732606 +Reviews in Endocrinology and Metabolism,CIC Edizioni Internazionali,22828362 +Reviews in Environmental Science and Bio/Technology,Springer (Kluwer Academic Publishers),15691705|1572-9826 +Reviews in Fish Biology and Fisheries,Springer-Verlag,09603166|15735184 +Reviews in Fisheries Science,Informa UK (Taylor & Francis),10641262|15476553 +Reviews in Fisheries Science & Aquaculture,Informa UK (Taylor & Francis),23308249|23308257 +Reviews in Gastroenterology Hepatology and Nutrition,CIC Edizioni Internazionali,24209643 +Reviews in Gynaecological and Perinatal Practice,Elsevier ,18712320| +Reviews in Gynaecological Practice,Elsevier ,14717697| +Reviews in Health Care,Seed SRL,20386699|20386702 +Reviews in History,School of Advanced Study,17498155 +Reviews in Inorganic Chemistry,Walter de Gruyter GmbH,01934929|21910227 +Reviews in Mathematical Physics,World Scientific ,0129055X|0129055X +Reviews in Medical Microbiology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,0954139X| +Reviews in Medical Virology,Wiley Blackwell (John Wiley & Sons),10529276|10991654 +Reviews in Mineralogy and Geochemistry,Mineralogical Society of America,15296466| +Reviews in Molecular Biotechnology,Elsevier ,13890352| +Reviews in Nanoscience and Nanotechnology,American Scientific Publishers,21579369|21579385 +REVIEWS IN ONCOLOGY,CIC Edizioni Internazionali,22826378 +Reviews in Physics,Elsevier ,24054283| +Reviews in Religion and Theology,Wiley Blackwell (Blackwell Publishing),13507303|14679418 +Reviews in the Neurosciences,Walter de Gruyter GmbH,03341763|21910200 +Reviews in Theoretical Science,American Scientific Publishers,23271515| +Reviews in Vascular Medicine,Elsevier ,22120211| +Reviews of Accelerator Science and Technology,World Scientific ,17936268|17938058 +Reviews of Adhesion and Adhesives,Scrivener Publishing,21680965|21680973 +Reviews of Chemical Intermediates,Springer-Verlag,01627546| +Reviews of Geophysics,Wiley Blackwell (John Wiley & Sons),87551209|19449208 +Reviews of Human Factors and Ergonomics,SAGE Publications,1557234X| +Reviews of Modern Physics,American Physical Society,00346861|15390756 +Reviews of Physics in Technology,IOP Publishing,00346683| +Reviews of Reproduction,Bioscientifica,13596004| +Reviews of Research in Human Learning and Music,Center for Music Learning,21622213 +Reviews on Environmental Health,Walter de Gruyter GmbH,00487554|21910308 +Reviews on Reactive Species in Chemical Reactions,Springer-Verlag,00487562| +Reviews on Recent Clinical Trials,Bentham Science,15748871| +Revija za socijalnu politiku,Pravni Fakultet Sveucilista u Zagrebu - Law School of the University of Zagreb,13302965|18456014 +Revija za sociologiju,Croatian Sociological Association,0350154X|18467954 +ReVision,ReVision Publishing,02756935|19403038 +Revisitando algumas das atuais perplexidades do conceito normativo de propriedades de investimento,Revista de Contabilidade do Mestrado em Ciencias Contabeis da UERJ,19843291 +Revista ABRA,Universidad Nacional de Costa Rica,14093928|22152997 +Revista Academica Ciências Agrarias e Ambientais,Pontificia Universidade Catolica do Parana - PUCPR,0103989X| +Revista Acadêmica Observatório de Inovação do Turismo,Fundacao Getulio Vargas,19806965 +Revista ACTA Geográfica,Revista ACTA Geografica,19805772|21774307 +Revista Ágora Filosófica,Agora FIlosofica,1982999X +Revista Agro mbiente On-line,Universidade Federal de Roraima,19828470|19821084 +Revista Agrogeoambiental,IFSULDEMINAS (Instituto Federal do Sul de Minas),1984428X|23161817 +Revista Agrotecnologia - Agrotec,Revista Agrotecnologia,21795959 +Revista Alcance,Editora UNIVALI,14132591|1983716X +Revista Alcancead Revista Eletrônica de EAD da UNIRIO,Universidade Federal do Estado do Rio de Janeiro UNIRIO,21791430 +Revista ALCONPAT,Revista ALCONPAT,20076835 +Revista Alicantina de Estudios Ingleses,Publicaciones Universidad de Alicante,02144808|2171861X +Revista Ambiência,GN1 Genesis Network,18080251|21759405 +Revista Andaluza de Medicina del Deporte,Elsevier ,18887546| +Revista Angolana de Sociologia,OpenEdition,16469860|23125195 +Revista Anpoll,ANPOLL,14147564|19827830 +Revista Argentina de Antropología Biológica,Asociacion de Antropologia Biologia Argentina,15147991|15147991 +Revista Argentina de Cardiología,Revista Argentina de Cardiologia,00347000|18503748 +Revista Argentina de Cardiologia,Revista Argentina de Cardiologia,23142278|23142286 +Revista Argentina de Microbiología,Elsevier ,03257541| +Revista Argentina de Radiología,Elsevier ,00487619|18535844 +Revista Ártemis,Revista Artemis,18078214 +Revista Árvore,SciELO,01006762|01006762 +Revista aSEPHallus de Orientação Lacaniana,Revista aSEPHallus de Orientacao Lacaniana,1809709X +Revista aSPAs,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,22383999 +Revista Augustus,Sociedade Unificada de Ensino Augusto Motta -UNISUAM,1415398X|19811896 +Revista Austral de Ciencias Sociales,Sistema de Bibliotecas UACH,07173202|07181795 +Revista Avaliação Psicológica,Instituto Brasileiro de Avaliacao Psicologica (IBAP),16770471|21753431 +Revista Bahiana de Odontologia,Escola Bahiana de Medicine e Saude Publica,22382720| +Revista Baiana de Enfermagem‏,Revista Baiana de Enfermagem,01025430|21788650 +Revista Baiana Saúde Pública,Zeppelini Editorial e Comunicacao,01000233| +Revista Barataria,Asociacion Castellano-Manchega de Sociologia (ACMS),15750825|21723184 +Revista Bio Ciencias,Revista Bio Ciencias,20073380 +Revista Biodiversidad Neotropical,Universidad Tecnologica del Choco Diego Luis Cordoba,20278918|22565426 +Revista Bioethikos,Centro Universitario Sao Camilo - Sao Paulo,19818254|21753393 +Revista Bioética,SciELO,19838042|19838034 +Revista Boletín de Geología,Universidad Industrial de Santander,01200283|21458553 +Revista Brasileira Ciências da Saúde - USCS,USCS Universidade Municipal de Sao Caetano do Sul,23594330 +Revista Brasileira da Educação Profissional e Tecnológica,"""Instituto Federal de Educacao, Ciencia e Tecnologia do Rio Grande do Norte (IFRN)""",19830408|24471801 +Revista Brasileira de Administração Científica,Escola Superior de Sustentabilidade,2179684X +Revista Brasileira de Agricultura Irrigada,INOVAGRI,19827679|19827679 +REVISTA BRASILEIRA DE AGROTECNOLOGIA,Grupo Verde de Agroecologia e Abelhas,23173114 +Revista Brasileira de Aplicações de Vácuo,SBV Sociedade Brasileira de Vacuo,01017659|19834047 +Revista Brasileira de Atividade Física & Saúde,Brazilian Society of Physical Activity and Sport,14133482|23171634 +Revista Brasileira de Biologia,SciELO,00347108|00347108 +Revista Brasileira de Cardiologia Invasiva,Elsevier ,01041843| +Revista Brasileira de Cardiologia Invasiva,Elsevier ,21798397 +Revista Brasileira de Cardiologia Invasiva (English Edition),Elsevier ,22141235| +Revista Brasileira de Casos de Ensino em Administração,Fundacao Getulio Vargas,2179135X|2179135X +Revista Brasileira de Ci?ncias Farmac?uticas,SciELO,15169332| +Revista Brasileira de Ciência Avícola,SciELO,1516635X|1806-9061 +Revista Brasileira de Ciência do Solo,SciELO,01000683|01000683 +Revista Brasileira de Ciência e Movimento,Revista Brasileira de Ciencia e Mobimento,1031716 +Revista Brasileira de Ciência Política,SciELO,01033352|21784884 +Revista Brasileira de Ciência Veterinária,Editora Cubo Multimidia,14130130|19847130 +Revista Brasileira de Ciências Agrárias - Brazilian Journal of Agricultural Sciences,Revista Brasileira de Ciencias Agrarias,19810997 +Revista Brasileira de Ciências da Saúde,Associacao de Apoio a Pesquisa em Saude Bucal,14152177|14152177 +Revista Brasileira de Ciências da Saúde - USCS,USCS Universidade Municipal de Sao Caetano do Sul,1678054X| +Revista Brasileira de Ciências do Envelhecimento Humano,UPF Editora,16797930|23176695 +Revista Brasileira de Ciências do Esporte,Elsevier ,01013289|21793255 +Revista Brasileira de Ciências Farmacêuticas,SciELO,15169332|15169332 +Revista Brasileira de Ciências Sociais,ANPOCS,01026909|01026909 +Revista Brasileira de Cineantropometria e Desempenho Humano,Universidade Federal de Santa Catarina,14158426|19800037 +Revista Brasileira de Cirurgia Plástica,GN1 Genesis Network,19835175| +Revista Brasileira de Cirurgia Plástica (RBCP) – Brazilian Journal of Plastic Sugery,GN1 Genesis Network,21771235| +Revista Brasileira de Coloproctologia,SciELO,01019880|01019880 +Revista Brasileira de Computação Aplicada,UPF Editora,21766649 +Revista Brasileira de Criminalística,Associacao Brasileira de Criminalistica - ABC,22373691|22379223 +Revista Brasileira de Desenvolvimento Regional,Fundacao Universidade Regional de Blumenau,23175443 +Revista Brasileira de Direito,Complexo de Ensino Superior Meridional S.A.,22380604 +Revista Brasileira de Direito Internacional - RBDI,Universidade Federal do Parana,19802587|19802587 +Revista Brasileira de Economia,GN1 Genesis Network,00347140|00347140 +Revista Brasileira de Educação,SciELO,14132478|14132478 +Revista Brasileira de Educação e Saúde,Grupo Verde de Agroecologia e Abelhas,23582391 +Revista Brasileira de Educação Especial,SciELO,14136538|14136538 +Revista Brasileira de Educação Física e Esporte,SciELO,18075509|19814690 +Revista Brasileira de Educação Médica,SciELO,01005502|01005502 +Revista Brasileira de Energias Renováveis,Universidade Federal do Parana,22379711 +Revista Brasileira de Enfermagem,SciELO,00347167|00347167 +Revista Brasileira de Engenharia Agrícola e Ambiental,SciELO,14154366|14154366 +Revista Brasileira de Engenharia Biomédica,SciELO,15173151|15173151 +Revista Brasileira de Engenharia de Biossistemas,Universidade Estadual Paulista - Campus de Tupa,19817061|23596724 +Revista Brasileira de Ensino de Ciência e Tecnologia,Universidade Tecnologica Federal do Parana,1982873X +Revista Brasileira de Ensino de Física,SciELO,01024744|01024744 +Revista Brasileira de Ensino de Física,SciELO,18061117| +Revista Brasileira de Ensino de Física,SciELO,18061117| +Revista Brasileira de Ensino Superior,Complexo de Ensino Superior Meridional S.A.,24473944 +Revista Brasileira de Entomologia,Elsevier ,00855626|00855626 +Revista Brasileira de Epidemiologia,SciELO,1415790X|1415790X +Revista Brasileira de Estudos da Presença,SciELO,22372660 +Revista Brasileira de Estudos de População,SciELO,01023098|01023098 +Revista Brasileira de Estudos Pedagógicos,SciELO,21766681 +Revista Brasileira de Estudos Políticos,Revista Brasileira de Estudos Politicos,00347191|23595736 +Revista Brasileira de Farmacognosia,Elsevier ,0102695X|0102695X +Revista Brasileira de Física Tecnológica Aplicada,Universidade Tecnologica Federal do Parana,23580089 +Revista Brasileira de Fisiologia Vegetal,SciELO,01033131|01033131 +Revista Brasileira de Fruticultura,SciELO,01002945|01002945 +Revista Brasileira de Geociências,Zeppelini Editorial e Comunicacao,03757536|21774382 +Revista Brasileira de Geofísica,SciELO,0102261X|0102261X +Revista Brasileira de Geografia Física,GN1 Genesis Network,19842295| +Revista Brasileira de Geomorfologia,Revista Brasileira de Geomorfologia,15191540|22365664 +Revista Brasileira de Geriatria e Gerontologia,SciELO,18099823|19812256 +Revista Brasileira de Ginecologia e Obstetrícia / RBGO Gynecology and Obstetrics,Thieme Publishing Group,01007203|01007203 +Revista Brasileira de Hematologia e Hemoterapia,Elsevier ,15168484|15168484 +Revista Brasileira de Herbicidas,Revista Brasileira de Herbicidas,22361065 +Revista Brasileira de Higiene e Sanidade Animal,GN1 Genesis Network,19812965| +Revista Brasileira de História,SciELO,01020188|01020188 +Revista Brasileira de História & Ciências Sociais,Lepidus Tecnologia,21753423 +Revista Brasileira de História da Educação,Universidade Estadual de Maringa,15195902|22380094 +Revista Brasileira de História das Religiões,Universidade Estadual de Maringa,19832850 +Revista Brasileira de Horticultura Ornamental,Lepidus Tecnologia,23593237 +Revista Brasileira de Informática na Educação,Comissao Especial de Informatica na Educacao,14145685|14145685 +Revista Brasileira de Inovação Tecnológica em Saúde ISSN 2236-1103,Revista Brasileira de Inovacao Tecnologica em Saude (R-BITS),22361103 +Revista Brasileira de Linguística Aplicada,SciELO,19846398|19846398 +Revista Brasileira de Marketing,University Nove de Julho - Uninove,21775184|21775184 +Revista Brasileira de Mastologia,Zeppelini Editorial e Comunicacao,01048058| +Revista Brasileira de Medicina de Família e Comunidade,Sociedade Brasileira de Medicina de Familia e Comunidade,18095909|21797994 +Revista Brasileira de Medicina do Esporte,SciELO,15178692|15178692 +Revista Brasileira de Meteorologia,SciELO,01027786|01027786 +Revista Brasileira de Milho e Sorgo,Revista Brasileira de Milho e Sorgo,19806477 +Revista Brasileira de Oceanografia,SciELO,14137739| +Revista Brasileira de Oftalmologia,GN1 Genesis Network,00347280|00347280 +Revista Brasileira de Ortopedia,Elsevier ,01023616|01023616 +Revista Brasileira de Ortopedia (English Edition),Elsevier ,22554971| +Revista Brasileira de Otorrinolaringologia,SciELO,00347299|00347299 +Revista Brasileira de Paleontologia,Sociedade Brasileira de Paleontologia,15197530| +Revista Brasileira de Parasitologia Veterinária,SciELO,19842961|19842961 +Revista Brasileira de Pesquisa em Alimentos,Federal University of Technology - Parana,21793174|22366563 +Revista Brasileira de Pesquisa em Turismo,ANPTUR - Associacao Nacional de Pesquisa e Pos Graducao em Turismo,19826125|19826125 +Revista Brasileira de Planejamento e Desenvolvimento,Universidade Tecnologica Federal do Parana,23172363 +Revista Brasileira de Plantas Medicinais,SciELO,15160572|1983084X +Revista Brasileira de Pneumologia Sanitária,Instituto Evandro Chagas,19823258| +Revista Brasileira de Política Internacional,SciELO,00347329|00347329 +Revista Brasileira de Política Internacional,SciELO,00347329|00347329 +Revista Brasileira de Políticas Públicas,Centro de Ensino Unificado de Brasilia,21798338|22361677 +Revista Brasileira de Produtos Agroindustriais,Revista Brasileira de Productos Agroindustriais,15178595 +Revista Brasileira de Psiquiatria,SciELO,15164446|1809452X +Revista Brasileira de Qualidade de Vida,Universidade Tecnologica Federal do Parana,21750858|21750858 +Revista Brasileira de Quiropraxia - Brazilian Journal of Chiropractic,Revista Brasileir de Quiropraxia - Brazilian Journal of Chiropractic,21797676|21797676 +Revista Brasileira de Recursos Hídricos,Associacao Brasileira de Recursos Hidricos - ABRH,23180331 +Revista Brasileira de Reumatologia,Elsevier ,04825004| +Revista Brasileira de Reumatologia (English Edition),Elsevier ,22555021| +Revista Brasileira de Saúde e Produção Animal,SciELO,15199940 +Revista Brasileira de Saúde Materno Infantil,SciELO,15193829|15193829 +Revista Brasileira de Saúde Ocupacional,SciELO,03037657|23176369 +Revista Brasileira de Sementes,SciELO,01013122|01013122 +Revista Brasileira de Sociologia - RBS,Sociedade Brasileira de Sociologia,23178507|23180544 +Revista Brasileira de Tecnologia Agroindustrial,Universidade Tecnologica Federal do Parana,19813686 +Revista Brasileira de Tecnologia Aplicada nas Ciências Agrárias,GN1 Genesis Network,19836325|19847548 +Revista Brasileira de Tecnologias Sociais,Editora UNIVALI,23582200 +Revista Brasileira de Terapia Intensiva,GN1 Genesis Network,0103507X|0103507X +Revista Brasileira de Terapias Cognitivas,GN1 Genesis Network,18085687| +Revista Brasileira de Terapias e Saúde,Omnipax Editora,21779910 +Revista Brasileira de Zoologia,SciELO,01018175|01018175 +Revista Brasileira de Zootecnia,SciELO,18069290 +Revista Brasileira de Zootecnia,SciELO,15163598|15163598 +Revista Brasileira em Promoção da saúde,Fundacao Edson Queiroz,18061222|18061230 +Revista Caatinga,SciELO,19832125 +Revista Cadernos de Clio,Universidade Federal do Parana,22370765| +Revista CAITITU - aproximando pesquisa ecológica e aplicação,Nucelo de Pesquisa em Ecologia e Biodiversidade,2318504X +Revista Capital Científico - Eletrônica,GN1 Genesis Network,21774153| +Revista Catarinense da Ciência Contábil,Revista Catarinense da Ciencia Contabil,22377662 +Revista CEFAC,SciELO,15161846|15161846 +Revista CEFAC,SciELO,15161846 +Revista CEFAC,SciELO,19820216 +Revista CERES,SciELO,0034737X|21773491 +Revista Cereus,Revista Cereus,21757275 +REVISTA CHAPINGO SERIE CIENCIAS FORESTALES Y DEL AMBIENTE,Universidad Autonoma Chapingo,01863231|20074018 +Revista Chapingo Serie Horticultura,Universidad Autonoma Chapingo,1027152X|20074034 +Revista Chapingo Serie Zonas Áridas,Universidad Autonoma Chapingo,2007526X +Revista chilena de anatomía,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7169868 +Revista Chilena de Antropología,Universidad de Chile,07163312|07191472 +Revista chilena de cardiología,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7167105 +Revista chilena de cirugía,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7184026 +Revista chilena de derecho,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7183437 +Revista Chilena de Derecho Informático,Universidad de Chile,7179162 +Revista chilena de derecho privado,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7188072 +Revista Chilena de Derecho y Ciencia Política,Universidad Catolica de Temuco,07189389|07192150 +Revista Chilena de Derecho y Tecnología,Universidad de Chile,7192584 +Revista chilena de enfermedades respiratorias,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7177348 +Revista Chilena de Fonoaudiología,Universidad de Chile,07174659|07174659 +Revista chilena de historia natural,Springer-Verlag,0716078X|07176317 +Revista chilena de infectología,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,07161018|07161018 +Revista chilena de literatura,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7182295 +Revista chilena de neuro-psiquiatría,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7179227 +Revista Chilena de Neuropsicologia,Revista Chilena de Neuropsicologia,7184913 +Revista chilena de nutrición,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7177518 +Revista chilena de obstetricia y ginecología,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7177526 +Revista Chilena de Ortopedia y Traumatología,Elsevier ,07164548| +Revista chilena de pediatría,Elsevier ,03704106|03704106 +Revista chilena de radiología,Elsevier ,7179308 +Revista Chilena de Salud Pública,Universidad de Chile,07173652|07173652 +Revista Chilena de Terapia Ocupacional,Universidad de Chile,7176767 +Revista CIATEC-UPF,UPF Editora,21764565 +Revista Ciência Agronômica,GN1 Genesis Network,18066690|18066690 +Revista Ciência da Madeira - RCM,Revista de Ciencia da Madeira,21776830 +Revista Ciencia Joven,Fundacion Ciencia Joven,07192746|07193246 +Revista Ciencia y Tecnología,Latin America Journals Online,19959613| +Revista Ciências Administrativas,Fundacao Edson Queiroz,14140896|23180722 +Revista Ciencias Estratégicas,Universidad Pontificia Bolivariana,17948347|23900024 +Revista Ciencias Exatas e Naturais,GN1 Genesis Network,15180352|21755620 +Revista Ciencias Marinas y Costeras,Universidad Nacional de Costa Rica,1659455X|1659407X +Revista Ciencias Veterinarias,Universidad Nacional de Costa Rica,02505649|22154507 +Revista Científica ANAP Brasil,ANAP - Associacao Amigos de Natureza de Alta Paulista,19843240 +Revista Científica de Enfermería,Publicaciones Universidad de Alicante,19896409|19896409 +Revista Científica de FAREM-Estelí,Latin America Journals Online,23055790 +Revista Científica de la Sociedad Española de Enfermería Neurológica,Elsevier ,20135246| +Revista Científica de Produção Animal,Revista Cientifica de Producao Animal,21764158 +"""Revista Científica do Centro Universitário de Araras """"Dr Edmundo Ulson""""""",Associacao Educacional de Araras,19824920| +Revista Científica Faesa,Associacao Educacional de Vitoria,18097367|18097367 +Revista científica Pensamiento y Gestión,Universidad del Norte,16576276|2145941X +Revista CIFE Lecturas de Economía Social,Universidad Santo Tomas,01243551|22484914 +Revista Ciudades Estados y Política,Universidad Nacional de Colombia,23898437 +Revista Clínica de Medicina de Familia,Instituto de Salud Carlos III/BNCS/SciELO Espana,1699695X|1699695X +Revista clínica de periodoncia implantología y rehabilitación oral,Elsevier ,07185391|07190107 +Revista Clínica Escuela de Medicina UCR-HSJD,Universidad de Costa Rica,22152741 +Revista Clínica Española,Elsevier ,00142565|15781860 +Revista Clínica Española (English Edition),Elsevier ,22548874| +Revista Colombiana de Anestesiología,Elsevier ,01203347| +Revista Colombiana de Biotecnología,Universidad Nacional de Colombia,01233475|19098758 +Revista Colombiana de Cancerología,Elsevier ,01239015| +Revista Colombiana de Cardiología,Elsevier ,01205633| +Revista Colombiana de Ciencias Hortícolas,Sociedad Colombiana de Ciencias Horticolas,20112173| +Revista Colombiana de Ciencias Pecuarias,Universidad de Antioquia,01200690| +Revista Colombiana de Ciencias Químico Farmacéuticas,Universidad Nacional de Colombia,00347418|19096356 +Revista Colombiana de Educación,Universidad Pedagogica Nacional,01203916|23230134 +Revista Colombiana de Enfermería,Universidad el Bosque,19091621|23462000 +Revista Colombiana de Estadística,Universidad Nacional de Colombia,01201751|23898976 +Revista Colombiana de Matemáticas,Universidad Nacional de Colombia,00347426|23574100 +Revista Colombiana de Obstetricia y Ginecología,Federacion Colombiana de Obstetricia y Ginecologia,00347434|24630225 +Revista Colombiana de Ortopedia y Traumatología,Elsevier ,01208845| +Revista Colombiana de Psicología,Universidad Nacional de Colombia,01215469|23448644 +Revista Colombiana de Psiquiatría,Elsevier ,00347450| +Revista Colombiana de Química,Universidad Nacional de Colombia,01202804|23573791 +Revista Colombiana de Reumatología,Elsevier ,01218123| +Revista Colombiana de Sociología,Universidad Nacional de Colombia,0120159X|22565485 +Revista Complutense de Ciencias Veterinarias,Universidad Complutense de Madrid,19882688 +Revista Complutense de Educación,Universidad Complutense de Madrid,11302496|19882793 +Revista Complutense de Historia de América,Universidad Complutense de Madrid,11328312|1988270X +Revista Contabilidade & Finanças,SciELO,15197077 +Revista Contabilidade & Finanças,SciELO,1808057X|15197077 +Revista Contabilidade e Controladoria,Universidade Federal do Parana,19846266 +Revista Contemporânea de Contabilidade,Universidade Federal de Santa Catarina,18071821|21758069 +Revista Contracampo,Contracampo UFF,14147483|22382577 +Revista Contrapontos,Editora UNIVALI,15198227|19847114 +Revista CPC,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,19804466|19804466 +Revista Criação & Crítica,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,19841124|19841124 +Revista Crioula,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,19817169 +Revista Crítica de Ciências Sociais,OpenEdition,21827435|21827435 +Revista CS,Universidad Icesi,20110324| +Revista Cuadernos del Caribe,Universidad Nacional de Colombia,17947065| +Revista Cubana de Salud Pública,SciELO,08643466|08643466 +Revista CUIDARTE,Universidad de Santander - UDES,22160973|22160973 +Revista da ALESDE,Universidade Federal do Parana,22380000 +Revista da ANPEGE,ANPEGE - Revista,1679768X|1679768X +Revista da Associação Médica Brasileira,SciELO,01044230|18069282 +Revista da Associação Médica Brasileira (English Edition),Elsevier ,22554823| +Revista da Biologia,"""Revista da Biologia, Reitoria da Universidade de Sao Paulo""",19845154|19845154 +Revista da Educação Física/UEM,Universidade Estadual de Maringa,01033948|19833083 +Revista da Escola de Enfermagem da USP,SciELO,00806234|1980220X +Revista da ESMESC,Lepidus Tecnologia,15198731|22365893 +Revista da Faculdade de Administração e Economia,Instituto Metodista de Ensino Superior,21769583 +Revista da Faculdade de Direito,Universidade Federal de Goias,01017187| +Revista da Faculdade de Direito da UFMG,Revista da Faculdade de Direito da UFMG,03042340|19841841 +Revista da Faculdade de Direito da Universidade Federal de Uberlândia,Fundacao de Apoio Universitario,21780498| +Revista da Faculdade de Direito de São Paulo,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,00806250|23188227 +Revista da Faculdade de Direito UFPR,Universidade Federal do Parana,01043315|22367284 +Revista da Faculdade de Direito Universidade de São Paulo,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,03039838|23188235 +Revista da Faculdade de Educação,SciELO,01022555|01022555 +Revista da Faculdade de Medicina Veterinária e Zootecnia da Universidade de São Paulo,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,03037525|23183659 +Revista da Faculdade de Medicina Veterinária Universidade de São Paulo,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,03017273|23185066 +Revista da Faculdade de Odontologia - UPF,UPF Editora,14134012|2318843X +Revista da Faculdade de Odontologia de Lins,Instituto Educacional Piracicabano da Igreja Metodista,22381236 +Revista da Faculdade Mineira de Direito,Pontificia Universidade Catolica de Minas Gerais,18089429|23187999 +Revista da Rede de Enfermagem do Nordeste,Rev Rene - Revista da Rede de Enfermagem do Nordeste,15173852|21756783 +Revista da Sociedade Brasileira de Fonoaudiologia,SciELO,15168034|15168034 +Revista da Sociedade Brasileira de Medicina Tropical,SciELO,00378682|00378682 +Revista da SORBI,Sociedad Rio-Grandeense de Bioetic (SORBI),23189983|23189983 +Revista da Tulha,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,24477117 +Revista da Universidade Vale do Rio Verde,Universidade Vale do Rio Verde,15170276|22365362 +Revista DAE,Editora Cubo Multimidia,01016040|01016040 +Revista de Administração,"""Business Department, School of Economics, Business & Accounting""",00802107|19846142 +Revista de Administração Contabilidade e Economia da Fundace,FUNDACE,21787638 +Revista de Administração Contemporânea,SciELO,14156555|14156555 +Revista de Administração da UFSM,Universidade Federal de Santa Maria,19834659|19834659 +Revista de Administração da Unimep,Instituto Educacional Piracicabano da Igreja Metodista,16795350 +Revista de Administração de Empresas,SciELO,00347590|00347590 +Revista de Administração de Roraima - RARR,Universidade Federal de Roraima,22378057 +Revista de Administração e Negócios da Amazônia,Revista de Administracao e Negocios da Amazonia,21768366 +Revista de Administração IMED,Complexo de Ensino Superior Meridional S.A.,22377956 +Revista de Administração Pública,SciELO,00347612|00347612 +Revista de Administração Sociedade e Inovação,Programa de Pos Graduacao em Administracao da UFF/VR,24478156 +Revista de Administración Pública,Centro de Estudios Politicos y Constitucionales,00347639|19890656 +Revista de análisis económico,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7188870 +Revista de Antropologia,SciELO,00347701|00347701 +Revista de Antropología Social,Universidad Complutense de Madrid,1131558X|19882831 +Revista de Arquitectura,Editorial Universidad Catolica e Colombia,16570308| +Revista de Arquitetura IMED,Complexo de Ensino Superior Meridional S.A.,23181109 +Revista de Artes Marciales Asiáticas,University of Leon,21740747|21740747 +Revista de Bioética y Derecho,Instituto de Salud Carlos III/BNCS/SciELO Espana,18865887 +Revista de Bioética y Derecho,Instituto de Salud Carlos III/BNCS/SciELO Espana,18865887 +Revista de Bioética y Derecho,Instituto de Salud Carlos III/BNCS/SciELO Espana,18865887 +Revista de biología marina y oceanografía,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7181957 +Revista de Biologia Neotropical,Universidade Federal de Goias,18069652|21780579 +Revista de Biología Tropical,Universidad de Costa Rica,00347744|22152075 +Revista de Calidad Asistencial,Elsevier ,1134282X| +Revista de Cancioneros Impresos y Manuscritos,Publicaciones Universidad de Alicante,22547444|22547444 +Revista de Ciência & Tecnologia,Instituto Educacional Piracicabano da Igreja Metodista,22381252 +Revista de ciencia política (Santiago),SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,0718090X +Revista de Ciência Veterinária e Saúde Pública,Universidade Estadual de Maringa,23584610 +Revista de Ciências Agrárias,Editora Cubo Multimidia,21778760 +Revista de Ciências Agrarias - Amazon Journal of Agricultural and Environmental Sciences,Editora Cubo Multimidia,1517591X +Revista de Ciências Agroveterinárias,Universidade do Estado de Santa Catarina,22381171 +Revista de Ciências Ambientais,Centro Universitario La Salle - UNILASALLE,19818858 +Revista de Ciencias Ambientales,Universidad Nacional de Costa Rica,14092158|22153896 +Revista de Ciências da Administração,Universidade Federal de Santa Catarina,15163865|21758077 +REVISTA DE CIÊNCIAS DA EDUCAÇÃO,Revista de Ciencias da Educacao,15187039|23176091 +Revista de Ciencias Económicas,Universidad de Costa Rica,02529521|22153489 +Revista de Ciências Humanas,Universidade Federal de Santa Catarina,01019589|21784582 +Revista de Ciencias Sociales,Universidad de Costa Rica,04825276|22152601 +Revista de Comunicación de la SEECI,Sociedad Espanola de Estudios de la Comunicacion Iberoamericana (SEECI),15763420 +Revista de Contabilidad,Elsevier ,11384891| +Revista de Contabilidade e Organizações,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,19826486|19826486 +Revista de Crítica Literaria Latinoamericana,JSTOR,02528843| +Revista de Cultura e Extensão USP,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,21756805|23169060 +Revista de Cultura Teológica ISSN (impresso) 0104-0529 (eletrônico) 2317-4307,Revista de Cultura Teologica,01040529|23174307 +Revista de Derecho,Latin America Journals Online,19934505| +Revista de derecho (Coquimbo),SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7189753 +Revista de derecho (Valdivia),SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7180950 +Revista de derecho (Valparaíso),SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7186851 +Revista de Derecho Comunicaciones y Nuevas Tecnologías,"""Universidad de los Andes, Facultad de Derecho""",19097786 +Revista de Derecho Comunitario Europeo,Centro de Estudios Politicos y Constitucionales,11384026|19895569 +Revista de Derecho de la UNED (RDUNED),UNED - Universidad Nacional de Educacion a Distancia,18869912|22553436 +Revista de Derecho Escuela de Postgrado,Universidad de Chile,07191731|07191731 +Revista de Derecho Político,UNED - Universidad Nacional de Educacion a Distancia,0211979X|21745625 +Revista de Derecho Privado,Universidad Externado de Colombia,01234366|23462442 +Revista de Derecho Privado,"""Universidad de los Andes, Facultad de Derecho""",19097794 +Revista de Derecho Público,"""Universidad de los Andes, Facultad de Derecho""",19097778 +Revista de Derecho Uninorte,Universidad del Norte,01218697|21459355 +Revista de Dialectología y Tradiciones Populares,Departmento de Publicaciones del CSIC,00347981|19888457 +Revista de Direito Administrativo,Fundacao Getulio Vargas,22385177|00348007 +Revista de Direito Brasileira,University Nove de Julho - Uninove,23581352|23581352 +Revista de Direito da Cidade,Universidade do Estado do Rio de Janeiro UERJ,23177721 +Revista de Direito Econômico e Socioambiental,Pontificia Universidade Catolica do Parana - PUCPR,21798214| +Revista de Direito Internacional,Centro de Ensino Unificado de Brasilia,2236997X|22371036 +Revista de Direito Internacional Econômico e Tributário,Revista de Direito Internacional Economico e Tributario,23188529 +Revista de Direito Sanitário,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,15164179|23169044 +Revista de Direitos e Garantias Fundamentais,Sociedade de Ensino Superior de Vitoria,19807864|21756058 +Revista de Economia,Universidade Federal do Parana,05565782|23169397 +Revista de Economia Contemporânea,SciELO,14159848|14159848 +Revista de Economía del Caribe,Universidad del Norte,20112106|21459363 +Revista de Economía del Rosario,Colegio Mayor de Nuestra Senora del Rosario,01235362|2145454X +Revista de Economia e Administração,INSPER - Instituto de Ensino e Pesquisa,16767608|19845308 +Revista de Economia e Sociologia Rural,SciELO,01032003|01032003 +Revista de Economía Institucional,Universidad Externado de Colombia,01245996|23462450 +Revista de Economia Política,SciELO,01013157|01013157 +Revista de Educação do Cogeime,Instituto Metodista de Servicos Educacionais,1044834 +Revista de Educação e Pesquisa em Contabilidade (REPeC),ABRACICON: Academia Brasileira de Ciencias Contabeis,19818610 +Revista de Educação Popular,Fundacao de Apoio Universitario,16785622|19827660 +Revista de Educación a Distancia (RED),Servicio de Publicaciones de la Universidad e Murcia,15787680 +Revista de educación y desarrollo social,Universidad Militar Nueva Granada,20115318| +Revista de Educomunicação Ambiental,Revista de Educomunicacao Ambiental,19826389 +Revista de Empreendedorismo e Gestão de Micro e Pequenas Empresas,Revista de Empreendedorismo Gestao de MPE,24478407 +Revista de Empreendedorismo Inovação e Tecnologia,Complexo de Ensino Superior Meridional S.A.,23593539 +Revista de Enfermagem da UFSM,Universidade Federal de Santa Maria,21797692|21797692 +Revista de Enfermagem e Atenção à Saúde,Universidade Federal do Triangulo Minero,23171154 +Revista de Enfermagem Referência,Health Sciences Research Unit: Nursing,08740283|21822883 +Revista de Enfermagem UFPE on line,"""Revista de Enfermagem, UFPE Online""",19818963 +Revista de Enfermería y Salud Mental,"""Editorial Glosa, S.L.""",23857021|2385703X +Revista de Engenharia Civil IMED,Complexo de Ensino Superior Meridional S.A.,23586508 +Revista de Ensino de Bioquímica,Sociedade Brasileira de Bioquimica e Biologia Molecular - SBBq,23188790 +Revista de Ensino de Ciências e Engenharia,Revista de Ensino de Ciencias e Engenharia,21792933 +Revista de Ensino de Engenharia,Revista de Ensino de Engenharia,22360158 +Revista de Epidemiologia e Controle de Infecção,APESC - Associacao Pro-Ensino em Santa Cruz do Sul,22383360 +Revista de Escritoras Ibéricas,UNED - Universidad Nacional de Educacion a Distancia,23409029 +Revista de Estudios Andaluces,Editorial Universidad de Sevilla,02128594|23402776 +Revista de Estudios de la Justicia,Universidad de Chile,07180853|07184735 +Revista de Estudios e Investigación en Psicología y Educación,Universidade da Coruna,11381663|23867418 +Revista de Estudios Empresariales Segunda Época,Universidad de Jaen,19889046 +Revista de Estudios en Seguridad Internacional,Grupo de Estudios en Seguridad Internacional (GESI),24446157 +Revista de Estudios Hispánicos,Muse - Johns Hopkins University Press,21649308 +Revista de estudios histórico-jurídicos,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,07165455|07165455 +Revista de Estudios Históricos de la Masonería Latinoamericana y Caribeña,Universidad de Costa Rica,16594223 +Revista de Estudios Internacionales Mediterráneos,Servicio de Publicaciones de la Universidad Autonoma de Madrid,18874460| +Revista de Estudios para el Desarrollo Social de la Comunicación,University of Seville,16962079|22555919 +Revista de Estudios Políticos,Centro de Estudios Politicos y Constitucionales,00487694|19890613 +Revista de Estudios Sociales No 35,Universidad de los Andes,0123885X|19005180 +Revista de Estudos Constitucionais Hermenêutica e Teoria do Direito,Universidade do Vale do Rio Dos Sinos - UNISINOS,21752168 +Revista de Estudos da Comunicação,Pontificia Universidade Catolica do Parana - PUCPR,15189775| +Revista de Estudos da Linguagem,Faculdade de Letras da UFMG,01040588|22372083 +Revista de Estudos de Língua Portuguesa,Faculdade de Letras da UFMG,24470554| +Revista de Estudos e Pesquisas Avançadas do Terceiro Setor,Revista de Estudos e Pesquisas Avancadas do Terceiro Setor,23595299 +Revista de Estudos e Pesquisas sobre as Américas,Revista de Estudos e Pesquisas Sobre as Americas,19841639 +Revista de Estudos Empíricos em Direito,Instituto Rede de Pesquisa Empirica em Direito (REED),23190817|23190817 +Revista de Estudos Sociais,Revista de Estudos Sociais,1519504X|23587024 +Revista de Evaluación de Programas y Políticas Públicas,UNED - Universidad Nacional de Educacion a Distancia,23408464 +Revista de Filología Alemana,Universidad Complutense de Madrid,11330406|19882823 +Revista de Filología Española,Departmento de Publicaciones del CSIC,02109174|19888538 +Revista de Filología Románica,Universidad Complutense de Madrid,0212999X|19882815 +Revista de filosofía,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7184360 +Revista de Filosofía (Madrid),Universidad Complutense de Madrid,00348244|1988284X +Revista de Filosofia Aurora,Pontificia Universidade Catolica do Parana - PUCPR,01044443| +Revista de Gastroenterología de México,Elsevier ,03750906| +Revista de Gastroenterología de México (English Edition),Elsevier ,2255534X| +Revista de geografía Norte Grande,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7183402 +Revista de Gestão,"""Business Department, School of Economics, Business & Accounting""",18092276|21778736 +Revista de Gestão Ambiental e Sustentabilidade,University Nove de Julho - Uninove,23169834|23169834 +Revista de Gestão Costeira Integrada,Associacao Portuguesa dos Recursos Hidricos,16468872|16468872 +Revista de Gestão de Água da América Latina,Associacao Brasileira de Recursos Hidricos - ABRH,23591919 +Revista de Gestão e Avaliação Educacional,Universidade Federal de Santa Maria,21762171|23181338 +Revista de Gestão e Organizações Cooperativas,Universidade Federal de Santa Maria,24467103|23590432 +Revista de Gestão e Projetos,University Nove de Julho - Uninove,22360972|22360972 +Revista de Gestão e Secretariado,Revista de Gestae e Secretariad,21789010|21789010 +Revista de Gestão em Sistemas de Saúde,University Nove de Julho - Uninove,23163712|23163712 +Revista de Gestão Finanças e Contabilidade,"""Revista de Gestao, Financas e Contabilidade""",22385320 +Revista de Gestão Social e Ambiental,"""Faculdade de Economia, Administracao e Contabilidade""",1981982X +Revista de História,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,00348309|23169141 +Revista de Historia Económica / Journal of Iberian and Latin American Economic History,Cambridge University Press,02126109|20413335 +Revista de Historia Moderna Anales de la Universidad de Alicante,Publicaciones Universidad de Alicante,02125862|19899823 +Revista de História Regional,Universidade Estadual de Ponta Grossa,14140055| +Revista de Humanidades,UNED - Universidad Nacional de Educacion a Distancia,11305029|23408995 +Revista de Humanidades y Ciencias Sociales (Santa Cruz de la Sierra),SciELO,18190545 +Revista de Indias,Departmento de Publicaciones del CSIC,00348341|19883188 +Revista de Ingeniería,Revista de Ingenieria,01214993|20110049 +Revista de Ingeniería Matemáticas y Ciencias de la Información,Corporacion Universitaria Republicana,23393270|23573716 +Revista de Investigación Desarrollo e Innovación,Universidad Pedagogica y Tecnologica de Colombia,20278306|23899417 +Revista de Investigación Educativa,Servicio de Publicaciones de la Universidad e Murcia,02124068|19899106 +Revista de Investigaciones Altoandinas - Journal of High Andean Research,Universidad Nacional Del Altiplano Puno Peru ,23068582|23132957 +Revista de Investigaciones Veterinarias del Perú,"""Universidad Nacional Mayor de San Marcos, Vicerectorado de Investigacion""",16823419|16099117 +Revista de Investigações Constitucionais,Universidade Federal do Parana,23595639 +Revista de Italianística,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,22388281 +Revista de la Academia Colombiana de Ciencias Exactas Físicas y Naturales,"""ACCEFYN - Academia Colombiana de Ciencias Exactas, Fisicas y Naturales""",03703908|23824980 +Revista de la Asociación Argentina de Derecho Administrativo,Universidad Nacional del Litoral,24690813 +Revista de la Asociación Argentina de Ortopedia y Traumatología,Asociacion Argentina de Ortopedia y Traumatologia,15151786|18527434 +Revista de la Asociación Española de Neuropsiquiatría,Instituto de Salud Carlos III/BNCS/SciELO Espana,02115735|02115735 +Revista de la CEPAL,United Nations Publications,16820908 +Revista de la ciencia del suelo y nutrición vegetal,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7182791 +Revista de la construcción,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,0718915X +Revista de la Educación Superior,Elsevier ,01852760| +Revista de la Escuela de Medicina Legal,Universidad Complutense de Madrid,18873278|18859577 +Revista de la Facultad de Derecho y Ciencias Políticas,Universidad Pontificia Bolivariana,01203886|23900016 +Revista de la Facultad de Medicina,Universidad Nacional de Colombia,01200011|23573848 +Revista de la Facultad de Medicina Veterinaria y de Zootecnia,Universidad Nacional de Colombia,01202952|23573813 +Revista de la Facultad de Trabajo Social,Universidad Pontificia Bolivariana,01211722|23900059 +Revista de la Real Academia de Ciencias Exactas Físicas y Naturales Serie A Matemáticas,Springer-Verlag,15787303|15791505 +Revista de la Sociedad Española de Enfermería Nefrológica,Instituto de Salud Carlos III/BNCS/SciELO Espana,11391375|11391375 +Revista de la Sociedad Española del Dolor,Inspira Network Group,11348046| +Revista de la Universidad Industrial de Santander Salud,Universidad Industrial de Santander,01210807|21458464 +Revista de Lengua para Fines Específicos 21 1,Universidad de Las Palmas de Gran Canaria,23408561 +Revista de Lenguas Modernas,Universidad de Costa Rica,16591933| +Revista de lenguas y literaturas catalana gallega y vasca,UNED - Universidad Nacional de Educacion a Distancia,11308508| +Revista de Letras,Universidade Tecnologica Federal do Parana,01049992|21795282 +Revista de Lingüística y Lenguas Aplicadas,Universitat Politecnica de Valencia,18862438|18866298 +Revista de Literatura,Departmento de Publicaciones del CSIC,0034849X|19884192 +Revista de Logopedia Foniatría y Audiología,Elsevier ,02144603| +Revista de los Estudiantes de Medicina de la Universidad Industrial de Santander Médicas UIS,Universidad Industrial de Santander,01210319|17945240 +Revista de Matemática Teoría y Aplicaciones,Universidad de Costa Rica,14092433|22153373 +Revista de Medicina,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,00348554|16799836 +Revista de Medicina da UFC,Revista de Medicina da UFC,01001302|24476595 +Revista de Metalurgia,Departmento de Publicaciones del CSIC,00348570|19884222 +Revista de Microbiologia,SciELO,00013714|00013714 +"""Revista de Museología """"Kóot""""""",Latin America Journals Online,23073942| +Revista de Negócios,Fundacao Universidade Regional de Blumenau,14133849|19804431 +Revista de Neuro-Psiquiatria,Universidad Peruana Cayetano Heredia,00348597|16097394 +Revista de Nutrição,SciELO,14155273|14155273 +Revista de Odontologia da UNESP,SciELO,18072577 +Revista de Odontologia da Universidade de São Paulo,SciELO,01030663|01030663 +Revista de Ortopedia y Traumatología,Elsevier ,04825985| +Revista de Osteoporosis y Metabolismo Mineral,Instituto de Salud Carlos III/BNCS/SciELO Espana,1889836X| +Revista de otorrinolaringología y cirugía de cabeza y cuello,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7184816 +Revista de Patología Dual,Sociedad Espanola de Patologia Dual (SEPD),23863110 +Revista de Patología Respiratoria,Elsevier ,15769895| +Revista de Patologia Tropical,Universidade Federal de Goias,03010406|10808178 +Revista de Pesquisa Cuidado é Fundamental Online,Universidade Federal do Estado do Rio de Janeiro UNIRIO,18096107|21755361 +Revista de Psicodidactica / Journal of Psychodidactics,UPV/EHU Press,11361034|11361034 +Revista de Psicología,Universidad de Chile,07190581|07190581 +Revista de Psicología (Trujillo),Universidad Cesar Vallejo,19906757|24110167 +Revista de Psicologia da IMED,Complexo de Ensino Superior Meridional S.A.,21755027 +Revista de Psicología del Trabajo y de las Organizaciones,Elsevier ,15765962|15765962 +Revista de Psicología Social,Informa UK (Taylor & Francis),02134748|15793680 +Revista de Psicolog�a,Sistema de Bibliotecas PUCP,02549247|22233733 +Revista de Psicopatología y Psicología Clínica,UNED - Universidad Nacional de Educacion a Distancia,11365420|22546057 +Revista de Psiquiatria do Rio Grande do Sul,SciELO,01018108|01018108 +Revista de Psiquiatría y Salud Mental,Elsevier ,18889891| +Revista de Psiquiatría y Salud Mental (English Edition),Elsevier ,21735050| +Revista de Radiodifusão,Sociedade Brasileira de Engenharia de Televisao (SET),19814984|22369619 +Revista de Salud Pública,Universidad Nacional de Colombia,01240064|01240064 +Revista de Saúde Coletiva da UEFS,Universidade Estadual de Feira de Santana,16777522| +Revista de Saúde Pública,SciELO,00348910|00348910 +Revista de Senología y Patología Mamaria,Elsevier ,02141582| +Revista de Sociología,Universidad de Chile,0716632X|0716632X +Revista de Sociologia e Política,SciELO,01044478|01044478 +Revista de Sociologia e Política,SciELO,16789873|16789873 +Revista de Tecnología,Universidad el Bosque,16921399| +Revista de Tecnologia da Informação e Comunicação,Revista de Tecnologia da Informacao e Comunicacao,22375112 +Revista de Teledetección,Universitat Politecnica de Valencia,11330953|19888740 +Revista de Teologia e Ciências da Religião da UNICAP,Revista de Teologia e Ciencias da Religiao da UNICAP,2237907X +Revista de Terapia Ocupacional da Universidade de São Paulo,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,14159104|22386149 +Revista de Urbanismo,Universidad de Chile,7175051 +Revista del ISM,Universidad Nacional del Litoral,16667603|23623322 +Revista del Laboratorio Clínico,Elsevier ,18884008| +Revista del Museo de La Plata,Smithsonian Institution Biodiversity Heritage Library,03252264| +Revista del Pie y Tobillo,Elsevier ,16972198| +Revista Dental Press de Ortodontia e Ortopedia Facial,SciELO,14155419|14155419 +Revista Derecho del Estado,Universidad Externado de Colombia,01229893|23462051 +Revista Desassossego,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,21753180|21753180 +Revista Desenredo,UPF Editora,22365400|1808656X +Revista Diálogo Educacional,Pontificia Universidade Catolica do Parana - PUCPR,15183483|1981416X +Revista Diálogos,Revista Dialogos,22361499|22361499 +Revista Diálogos da Extensão,"""Instituto Federal de Educacao, Ciencia e Tecnologia do Rio Grande do Norte (IFRN)""",24477192|24477869 +REVISTA DIÁLOGOS DO DIREITO - ISSN 2316-2112,Cesuca - Centro Ensino Superior de Cachoeirinha,23162112 +Revista Digital de Derecho Administrativo,Universidad Externado de Colombia,21452946 +Revista Digital de Direito Administrativo,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,23190558 +Revista Digital de Investigación en Docencia Universitaria,Universidad Peruana de Ciencias Aplicadas,22232516|22232516 +Revista Digital do LAV,Universidade Federal de Santa Maria,19837348|19837348 +Revista Digital Matemática Educación e Internet,nstituto Tecnologico de Costa Rica,16590643 +Revista Digital Mundo Asia Pacífico,Universidad EAFIT,23448172 +Revista Direito e Política,Editora UNIVALI,19807791 +Revista Direito e Práxis,Universidade do Estado do Rio de Janeiro UERJ,21798966|21798966 +Revista Direito em Ação,Revista Direito e Acao,15189562 +Revista Direito Estado e Sociedade,Programa de Pos Graduacao em Direito da PUC-Rio,15166104| +Revista Direito GV,SciELO,18082432|23176172 +Revista Direitos Culturais,Revista Direitos Culturais,21771499|21771499 +Revista Direitos Emergentes na Sociedade Global,Universidade Federal de Santa Maria,23163054|23163054 +Revista Discernindo,Instituto Metodista de Ensino Superior,23577649 +Revista do Centro de Estudos Portugueses,Faculdade de Letras da UFMG,1676515X|23590076 +Revista do Colégio Brasileiro de Cirurgiões,SciELO,01006991|01006991 +Revista do Curso de Direito,Instituto Metodista de Ensino Superior,21761094 +Revista do Departamento de Psicologia UFF,SciELO,01048023|01048023 +Revista do Direito,APESC - Associacao Pro-Ensino em Santa Cruz do Sul,01049496|19829957 +Revista do Direito Público,Universidade Estadual de Londrina,1980511X +Revista do Hospital das Clínicas,SciELO,00418781|00418781 +REVISTA DO INSTITUTO ADOLFO LUTZ,M&W Comunicacao Integrada Ltda - ME,00739855|19833814 +Revista do Instituto de Estudos Brasileiros,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,00203874|2316901X +Revista do Instituto de Laticínios Cândido Tostes,Lepidus Tecnologia,22386416|22386416 +Revista do Instituto de Medicina Tropical de São Paulo,SciELO,00364665|00364665 +Revista do Instituto Florestal,Editora Cubo Multimidia,01032674|21785031 +Revista do Instituto Geológico,GN1 Genesis Network,0100929X| +Revista do Instituto Histórico e Geográfico do Pará,Revista do Instituto Historico e Geografico do Para,23590831 +Revista do Mestrado em Direito da Universidade Católica de Brasília Escola de Direito,Revista do Mestrado em Direito da Universidade Catolica de Brasilia: Escola de Direito,19808860 +Revista do Museu Paulista,Smithsonian Institution Biodiversity Heritage Library,03039846| +Revista do Tribunal de Contas do Estado de Minas Gerais,Revista do Tribunal de Contas do Estado de Minas Gerais,01021052|24472697 +Revista Dor,GN1 Genesis Network,18060013| +Revista Dynamis,Fundacao Universidade Regional de Blumenau,01040405|19824866 +Revista e-ciência,Revista e-ciencia,23184922|23184922 +Revista E-Tech Tecnologias para Competitividade Industrial - ISSN - 1983-1838,SENAI ISC,19831838 +Revista Ecologia e Nutrição Florestal - ENFLO,Universidade Federal de Santa Maria,2316980X|2316980X +Revista Economia & Gestão,Pontificia Universidade Catolica de Minas Gerais,16788982|19846606 +Revista Economia & Tecnologia,Universidade Federal do Parana,22384715|22381988 +Revista Economia Ensaios,Fundacao de Apoio Universitario,19831994|19831994 +Revista Educação Agrícola Superior,Revista Educacao Agricola Superior - ABEAS,0101756X +Revista Educação Artes e Inclusão,Universidade do Estado de Santa Catarina,19843178 +Revista Educação Especial,Universidade Federal de Santa Maria,1808270X|1984686X +Revista Educación,Universidad de Costa Rica,03797082|22152644 +Revista EducaOnline,Revista EducaOnline,19832664 +REVISTA EIXO,Coordenacao de Publicacoes da Editora do Instituto Federal de Brasilia,22389504|22385630 +Revista Eixos Tech,IFSULDEMINAS (Instituto Federal do Sul de Minas), +Revista Electrónica Complutense de Investigación en Educación Musical - RECIEM,Universidad Complutense de Madrid,16987454 +Revista Electrónica de Estudios Internacionales,Asociacion Espanola de Profesores de Derecho Internacional y Relaciones Internacional,16975197 +Revista Electrónica de Investigación y Docencia (REID),Universidad de Jaen,19892446 +Revista Electrónica Educare,Universidad Nacional de Costa Rica,14094258 +Revista Electrónica Interuniversitaria de Formación del Profesorado,Servicio de Publicaciones de la Universidad e Murcia,15750965 +Revista Eletrônica de Ciência Administrativa,FACECLA,16777387 +Revista Eletrônica de Ciência Política,Universidade Federal do Parana,2236451X +Revista Eletrônica de Direito Processual,Universidade do Estado do Rio de Janeiro UERJ,19827636 +Revista Eletrônica de Educação,Universidade Federal de Sao Carlos Programa de Pos-Graduacao em Educacao,19827199 +Revista Eletrônica de Enfermagem,Universidade Federal de Goias,15181944 +Revista Eletrônica de Enfermagem,Universidade Federal de Goias,15181944| +Revista Eletrônica de Farmácia,Universidade Federal de Goias,18080804 +Revista Eletrônica de Gestão e Tecnologias Ambientais,Revista GESTA,2317563X +Revista Eletrônica de Sistemas de Informação,FACECLA,16773071 +Revista Eletrônica Direito e Sociedade - REDES,Centro Universitario La Salle - UNILASALLE,23188081 +Revista Eletrônica do Alto Vale do Itajaí,Universidade do Estado de Santa Catarina,23164190 +Revista Eletrônica do CEJUR,Universidade Federal do Parana,19818386 +Revista Eletrônica do Curso de Direito da UFSM,Universidade Federal de Santa Maria,19813694|19813694 +Revista Eletrônica em Gestão Educação e Tecnologia Ambiental,Universidade Federal de Santa Maria,22361170|22361170 +Revista Eletronica Gestão & Saúde,Revista Gestao e Saude/NESPROM,19824785 +Revista Eletrônica Gestão e Serviços,Instituto Metodista de Ensino Superior,21777284 +Revista Eletrônica Sapere Aude,Revista Eletronica Sapere Aude,23166266 +Revista em Agronegócio e Meio Ambiente,Centro Universitario de Maringa,19819951|21769168 +Revista Em Extensão,Fundacao de Apoio Universitario,15186369| +Revista Em Pauta,Universidade do Estado do Rio de Janeiro UERJ,14148609|22383786 +Revista Empresa y Humanismo,Universidad de Navarra,22546413 +Revista Encuentros,Universidad Autonoma del Caribe,16925858|2216135X +Revista Enfermagem Contemporânea,Escola Bahiana de Medicine e Saude Publica,23173378| +Revista Enfermagem Digital Cuidado e Promoção da Saúde,GN1 Genesis Network,24465682| +Revista Enfermagem UERJ,Universidade do Estado do Rio de Janeiro UERJ,01043552| +Revista Enfermeria Herediana,Universidad Peruana Cayetano Heredia,19985487|20754000 +Revista Engenharia na Agricultura - REVENG,Revista Engenharia na Agricultura,14143984 +Revista Entrecaminos,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,24479748 +REVISTA ESAICA,Universidad de Santander - UDES,24225126|24224650 +Revista Espaço do Currículo,Associacao de Estudos E Pesquisas Em Politicas E Practicas Curriculares,19831579|19831579 +Revista Espaço Pedagógico,UPF Editora,01047469|22380302 +Revista Española de Anestesiología y Reanimación,Elsevier ,00349356| +Revista Española de Anestesiología y Reanimación (English Edition),Elsevier ,23411929| +Revista Española de Antropología Americana,Universidad Complutense de Madrid,05566533|19882718 +Revista Española de Artroscopia y Cirugía Articular,Elsevier ,23863129| +Revista Española de Cardiología,Elsevier ,03008932|15792242 +Revista Española de Cardiología (English Edition),Elsevier ,18855857| +Revista Española de Cardiología Suplementos,Elsevier ,11313587| +Revista Española de Cirugía Oral y Maxilofacial,Elsevier ,11300558| +Revista Española de Cirugía Oral y Maxilofacial (English Edition),Elsevier ,2386401X| +Revista Española de Cirugía Ortopédica y Traumatología,Elsevier ,18884415| +Revista Española de Cirugía Ortopédica y Traumatología (English Edition),Elsevier ,19888856| +Revista Española de Derecho Constitucional,Centro de Estudios Politicos y Constitucionales,02115743|19890648 +Revista Española de Derecho Internacional,Asociacion Espanola de Profesores de Derecho Internacional y Relaciones Internacional,00349380|23871253 +Revista Española de Discapacidad,SIIS - Centro de Documentacion y Estudios,23405104|23405104 +Revista española de Documentación Científica,Departmento de Publicaciones del CSIC,02100614|19884621 +Revista Española de Educación Comparada,UNED - Universidad Nacional de Educacion a Distancia,11378654|21745382 +Revista Española de Enfermedades Digestivas,Sociedad Espanola de Patologia Digestiva (SEPD),11300108|11300108 +Revista Española de Enfermedades Metabólicas Óseas,Elsevier ,11328460| +Revista Española de Geriatría y Gerontología,Elsevier ,0211139X| +Revista Española de Investigación en Marketing ESIC,Elsevier ,11381442| +Revista Española de Investigaciones Sociológicas,Centro de Investigaciones Sociologicas,02105233|19885903 +Revista Española de Lingüística Aplicada/Spanish Journal of Applied Linguistics,John Benjamins Publishing Company,02132028|22546774 +Revista Española de Medicina Legal,Elsevier ,03774732| +Revista Española de Medicina Nuclear,Elsevier ,02126982|02126982 +Revista Española de Medicina Nuclear (English Edition),Elsevier ,1578200X| +Revista Española de Medicina Nuclear e Imagen Molecular,Elsevier ,2253654X| +Revista Española de Medicina Nuclear e Imagen Molecular (English Edition),Elsevier ,22538089| +Revista Española de Nutrición Comunitaria,Elsevier ,11353074| +Revista Española de Nutrición Humana y Dietética,Fundacion Espanola de Dietistas-Nutricionistas (FEDN),21731292|21745145 +Revista Española de Patología,Elsevier ,16998855| +Revista Española de Salud Pública,Instituto de Salud Carlos III/BNCS/SciELO Espana,11355727| +Revista Española de Sanidad Penitenciaria,Instituto de Salud Carlos III/BNCS/SciELO Espana,15750620|15750620 +Revista española de la opinión pública,JSTOR,00349429| +Revista Estado Gobierno y Gestión Pública,Universidad de Chile,07176759|07176759 +Revista Estima,Zeppelini Editorial e Comunicacao,18063144| +Revista Estomatológica Herediana,Universidad Peruana Cayetano Heredia,10194355|22257616 +Revista Estudiantil Latinoamericana de Ciencias Sociales,"""Facultad Latinoamericana de Ciencias Sociales, Mexico (FLACSO)""",2304179X +Revista Estudios de Políticas Públicas,Universidad de Chile,7196296 +Revista Estudos Culturais,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,24467693 +Revista Estudos do Século XX,Coimbra University Press,16453530|16478622 +Revista Estudos Feministas,SciELO,0104026X|0104026X +Revista Eurolatinoamericana de Derecho Administrativo,Universidad Nacional del Litoral,2362583X +Revista Europea de Dirección y Economía de la Empresa,Elsevier ,10196838| +Revista Evidenciação Contábil & Finanças,Revista Evidenciacao Contabil & Financas,23181001|23181001 +REVISTA EXPERIENCIA DOCENTE,Universidad ECCI,23463236|24628212 +Revista Extraprensa,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,15196895|22363467 +Revista Facultad de Ciencias Básicas,Universidad Militar Nueva Granada,19004699| +Revista Facultad de Ciencias de la Salud UDES,"""Facultad de Ciencias de la Salud, UDES""",24221074 +Revista Facultad de Ciencias Económicas,Universidad Militar Nueva Granada,01216805|19097719 +Revista Facultad de Ingeniería,Universidad Pedagogica y Tecnologica de Colombia,01211129| +Revista Facultad de Ingeniería - Universidad de Tarapacá,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7181337 +Revista Facultad de Ingeniería Universidad de Antioquia,Universidad de Antioquia,01206230| +Revista Facultad de Odontología,Universidad de Antioquia,0121246X|21457670 +Revista Facultad Nacional de Agronomía,Universidad Nacional de Colombia,03042847|22487026 +Revista Facultad Nacional de Salud Pública,Universidad de Antioquia,0120386X|22563334 +Revista FAMECOS,EDIPUCRS,14150549|19803729 +Revista Família Ciclos de Vida e Saúde no Contexto Social,Universidade Federal do Triangulo Minero,23188413|23188413 +Revista Filosofía UIS,Universidad Industrial de Santander,16922484|21458529 +Revista Filosófica de Coimbra,Coimbra University Press,08720851|08720851 +Revista Finanzas y Política Económica,Editorial Universidad Catolica e Colombia,22486046| +Revista Fitos,GN1 Genesis Network,18089569| +Revista Forestal Mesoamericana Kurú,nstituto Tecnologico de Costa Rica,22152504 +Revista Forges,Coimbra University Press,21832722 +Revista FSA,Revista FSA,18066356|23172983 +Revista Fuentes,Editorial Universidad de Sevilla,15757072|21727775 +Revista Fuentes El Reventón Energético,Universidad Industrial de Santander,16576527|21458502 +Revista Fuerzas Armadas y Sociedad,SciELO,7171498 +Revista Galega de Filoloxía,Universidade da Coruna,15762661|24449121 +Revista Gaúcha de Enfermagem,SciELO,19831447|19831447 +Revista General de Información y Documentación,Universidad Complutense de Madrid,11321873|19882858 +Revista Geoamazônia,Revista Geoamazonia,23581778 +Revista Geografar,Universidade Federal do Parana,1981089X +Revista Geografares,Geografares,15182002|21753709 +REVISTA GEOGRÁFICA ACADÊMICA,Universidade Federal de Roraima,16787226 +Revista Geográfica de América Central,Universidad Nacional de Costa Rica,22152563 +Revista Geológica de América Central,Universidad de Costa Rica,02567024|2215261X +Revista geológica de Chile,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7160208 +Revista Geonomos,GEONOMOS,01044486|24466964 +Revista Gestão & Conexões,Revista Gestao & Conexoes - Management and Connections Journal,23175087 +Revista Gestão & Políticas Públicas,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,22371095 +Revista Gestão da Produção Operações e Sistemas,A Fundacao para o Desenvolvimento de Bauru (FunDeB),19842430 +Revista Gestão Industrial,Universidade Tecnologica Federal do Parana,18080448 +Revista Gestão Inovação e Tecnologias,Universidade Federal de Sergipe,22370722 +Revista Gestão Universitária na América Latina - GUAL,Universidade Federal de Santa Catarina,19834535|19834535 +Revista GTLex,Fundacao de Apoio Universitario,24479551 +Revista Hacienda Pública Española,Instituto de Estudios Fiscales,02101173| +Revista Hipertexto,Revista Hipertexto,2236515X +Revista Hispánica Moderna,Muse - Johns Hopkins University Press,19446446 +Revista Hispanoamericana de Hernia,Elsevier ,22552677| +Revista Historia Autónoma,Servicio de Publicaciones de la Universidad Autonoma de Madrid,22548726|22548726 +Revista Historia de la Educación Colombiana,Rudecolombia,01237756| +Revista Historia de la Educación Latinoamericana,Rudecolombia,01227238| +Revista História Debates e Tendências,UPF Editora,15172856|22388885 +Revista História Hoje,Revista Historia Hoje,18063993 +Revista Hospital Universitário Pedro Ernesto,Universidade do Estado do Rio de Janeiro UERJ,16768280|19832567 +Revista Ibero-Americana de Ciências Ambientais,Escola Superior de Sustentabilidade,21796858 +Revista Ibero-Americana de Estratégia,University Nove de Julho - Uninove,21760756|21760756 +Revista Iberoamericana,"""University Library System, University of Pittsburgh""",00349631|21544794 +Revista Iberoamericana de Arritmología,RIA,19899777|19899777 +Revista Iberoamericana de Automática e Informática Industrial RIAI,Elsevier ,16977912|16977920 +Revista Iberoamericana de Bioeconomía y Cambio Climático,Latin America Journals Online,24107980 +Revista Iberoamericana de Cirugía de la Mano,Elsevier ,16988396| +Revista Iberoamericana de Educación Superior,Elsevier ,20072872| +Revista Iberoamericana de Estudios de Ásia Oriental,Center for East Asian Studies,18886566| +Revista Iberoamericana de Evaluación Educativa,Servicio de Publicaciones de la Universidad Autonoma de Madrid,19890397| +Revista Iberoamericana de Fisioterapia y Kinesiología,Elsevier ,11386045| +Revista Iberoamericana de Micología,Elsevier ,11301406| +Revista Iberoamericana de Psicología y Salud,Elsevier ,21712069| +Revista IBRACON de Estruturas e Materiais,SciELO,19834195 +Revista IBRACON de Estruturas e Materiais,SciELO,19834195 +Revista IBRACON de Estruturas e Materiais,SciELO,19834195|19834195 +Revista Icade Revista de las Facultades de Derecho y Ciencias Económicas y Empresariales,Universidad Pontificia Comillas,18897045|23410841 +Revista ICONO14 Revista científica de Comunicación y Tecnologías emergentes,Asociacion Cientifica ICONO14,16978293 +Revista Ingeniería,Universidad de Costa Rica,14092441|22152652 +Revista ingeniería de construcción,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7185073 +Revista Innovar Journal,Universidad Nacional de Colombia,01215051|22486968 +Revista Inovação Projetos e Tecnologias,University Nove de Julho - Uninove,23189851|23189851 +Revista Integración,Universidad Industrial de Santander,0120419X|21458472 +Revista Inter-Ação,Universidade Federal de Goias,01017136|19818416 +Revista Interamericana de Bibliotecología,Universidad de Antioquia,01200976| +Revista Interamericana de Investigación Educación y Pedagogía RIIEP,Universidad Santo Tomas,1657107X| +Revista Interfaces Saúde Humanas e Tecnologia,"""Revista Interfaces: Saude, Humanas e Tecnologia""",2317434X +REVISTA INTERNACIONAL CONSINTER DE DIREITO,CONSINTER,21836396 +Revista Internacional de Acupuntura,Elsevier ,18878369| +Revista Internacional de Andrología,Elsevier ,1698031X| +Revista Internacional de Ciências,Universidade do Estado do Rio de Janeiro UERJ,23167041|23167041 +Revista Internacional de Ciencias Podológicas,Universidad Complutense de Madrid,18877249|19895151 +Revista Internacional de Comunicación y Desarrollo (RICD),University of Santiago de Compostela,23863730 +REVISTA INTERNACIONAL DE EDUCACIÓN MUSICAL,International Society for Music Education,23074841 +Revista Internacional de Educación para la Justicia Social (RIEJS),Servicio de Publicaciones de la Universidad Autonoma de Madrid,22543139|22543139 +Revista Internacional de Folkcomunicação,Revista Internacional de Folkcomunicacao,18074960 +Revista Internacional de Investigación en Ciencias Sociales,Instituto de Investigaciones en Ciencias de la Salud,22264000 +Revista Internacional de la Cruz Roja,Cambridge University Press,0250569X| +Revista Internacional de Lenguas Extranjeras / International Journal of Foreign Languages,Universitat Rovira I Virgili,20148100 +Revista Internacional de Medicina y Ciencias de la Actividad Física y del Deporte,Servicio de Publicaciones de la Universidad Autonoma de Madrid,15770354|15770354 +Revista Internacional de Métodos Numéricos para Cálculo y Diseño en Ingeniería,Elsevier ,02131315| +Revista Internacional de Organizaciones,Universitat Rovira I Virgili,2013570X|18864171 +Revista Internacional de Seguridad Social,Wiley Blackwell (Blackwell Publishing),0250605X|17521734 +Revista Internacional de Sociología,Departmento de Publicaciones del CSIC,00349712|1988429X +Revista Internacional del Trabajo,Wiley Blackwell (Blackwell Publishing),03785548|15649148 +Revista Internacional Interdisciplinar INTERthesis,Universidade Federal de Santa Catarina,18071384|18071384 +Revista Intratextos,Universidade do Estado do Rio de Janeiro UERJ,21766789|21766789 +REVISTA INVESTIGACION BIODIVERSIDAD Y DESARROLLO,Universidad Tecnologica del Choco Diego Luis Cordoba,16573498| +Revista Investigaciones Aplicadas,Universidad Pontificia Bolivariana,20110413 +Revista Investigaciones Turísticas,Publicaciones Universidad de Alicante,21745609| +Revista INVI,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7188358 +Revista Ion Investigación Optimización y Nuevos procesos en Ingeniería,Universidad Industrial de Santander,0120100X|21458480 +Revista Ius et Iustitia Eletrônica,Associacao Educacional de Araras,19835019| +Revista Jovens Pesquisadores,APESC - Associacao Pro-Ensino em Santa Cruz do Sul,2237048X +Revista Jurídica Cesumar - Mestrado,Centro Universitario de Maringa,16776402|21769184 +Revista Jurídica da Presidência,Biblioteca da Presidencia da Republica,22363645 +Revista jurídica de la Universidad de León,University of Leon,11372702| +REVISTA JURÍDICA DO CESUCA - ISSN 2317-9554,Cesuca - Centro Ensino Superior de Cachoeirinha,23179554|23179554 +Revista Jurídica Uniandrade,Revista Juridica Uniandrade,18066771 +Revista Justiça do Direito,UPF Editora,14137038|22383212 +Revista Katálysis,SciELO,14144980|14144980 +Revista La Propiedad Inmaterial,Universidad Externado de Colombia,16571959|23462116 +Revista LABVERDE,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,21792275 +Revista Latino-Americana de Enfermagem,SciELO,01041169|01041169 +Revista Latino-americana de Geografia e Genero,Universidade Estadual de Ponta Grossa,21772886 +Revista Latino-Americana de Inovação e Engenharia de Produção,Universidade Federal do Parana,23174846|23176792 +Revista latinoamericana de bioética,Universidad Militar Nueva Granada,16574702|2462859X +Revista Latinoamericana de Biotecnología Ambiental y Algal,Springer - Global Science Journals,20072570 +Revista Latinoamericana de Ciencias Sociales Niñez y Juventud,Fundacion Cinde,1692715X|20277679 +Revista Latinoamericana de Derecho Social,Elsevier ,18704670| +Revista Latinoamericana de Derechos Humanos,Universidad Nacional de Costa Rica,16594304|22154221 +Revista Latinoamericana de Ingenieria de Software,Universidad Nacional de Lanus,23142642 +Revista Latinoamericana de Investigación en Matemática Educativa,Revista Latinoamericana e Investigacion en Matematica Educativa RELIME,16652436|20076819 +Revista Latinoamericana de Medicina Conductual / Latin American Journal of Behavioral Medicine,Sociedad Mexicana de Medicina Conductual,20070799|20070810 +Revista Latinoamericana de Psicología,Elsevier ,01200534| +Revista Latinoamericana de Psicopatologia Fundamental,SciELO,14154714|14154714 +Revista Lebret,Universidad Santo Tomas,21455996|23575468 +Revista Letra,"""Faculdade de Letras, UFRJ""",18065333| +Revista Letras,Universidade Federal do Parana,01000888|22360999 +Revista Linhas,Universidade do Estado de Santa Catarina,19847238 +Revista Literária do Corpo Discente da Universidade Federal de Minas Gerais,Faculdade de Letras da UFMG,01035878| +Revista Lugares de Educação,Revista Lugares de Educacao,22371451 +Revista MAD,Universidad de Chile,07180527|07180527 +Revista Maracanan,Universidade do Estado do Rio de Janeiro UERJ,1807989X|23590092 +Revista Matemática Complutense,Springer-Verlag,11391138|19882807 +Revista Matemática Iberoamericana,European Mathematical Society Publishing House,02132230| +Revista Med,Universidad Militar Nueva Granada,01215256|19097700 +Revista Médica Clínica Las Condes,Elsevier ,07168640| +Revista Médica da UFPR,Universidade Federal do Parana,2358193X| +Revista médica de Chile,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,00349887|00349887 +Revista Médica de Homeopatía,Elsevier ,18888526| +Revista Médica de la Universidad de Costa Rica,Universidad de Costa Rica,16592441| +Revista Medica de los Postgrados de Medicina,Latin America Journals Online,19926863| +Revista Médica de Minas Gerais,GN1 Genesis Network,22383182| +Revista Médica Del Hospital General De México,Elsevier ,01851063| +Revista Médica del Hospital José Carrasco Arteaga,Revista Medica del Hospital Jose Carrasco Arteaga,13906445| +Revista Medica Herediana,Universidad Peruana Cayetano Heredia,1018130X|1729214X +Revista Médica Internacional sobre el Síndrome de Down,Elsevier ,11382074| +Revista Medicina Veterinaria,Universidad de la Salle,01229354|23898526 +Revista Mediterránea de Comunicación,Publicaciones Universidad de Alicante,1989872X|1989872X +Revista Memória em Rede,Universidade Federal de Pelotas,21774129 +Revista Mexicana de Análisis de la Conducta,Sociedad Mexicana de Analisis de la Conducta,01854534|20070802 +Revista Mexicana de Biodiversidad,Elsevier ,18703453|20078706 +Revista Mexicana de Ciencias Políticas y Sociales,Elsevier ,01851918| +Revista Mexicana de Fitopatología Mexican Journal of Phytopathology,"""Revista Mexicana de Fitopatologia, Mexican journal of Phytopathology""",20078080 +Revista Mexicana de Ingeniería Biomédica,Revista Mexicana de Ingenieria Biomedica,01889532|01889532 +Revista Mexicana de Mastozoologia,Servicios Ecologicos y Cientificos SA de CV,20074484 +Revista Mexicana de Oftalmología,Elsevier ,01874519| +Revista Mexicana de Opinión Pública,Elsevier ,18707300| +Revista Mexicana de Sociología,JSTOR,01882503| +Revista Mexicana de Trastornos Alimentarios,Elsevier ,20071523| +Revista Mexicana de Urología,Elsevier ,20074085| +Revista Monografias Ambientais,Universidade Federal de Santa Maria,22361308|22361308 +Revista Música,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,01035525|22387625 +Revista Música Hodie,Universidade Federal de Goias,16763939|16763939 +Revista musical chilena,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,07162790|07162790 +Revista Nacional de Gerenciamento de Cidades,ANAP - Associacao Amigos de Natureza de Alta Paulista,23188472 +Revista Nacional de Odontología,Universidad Cooperativa de Colombia - UCC,19003080| +Revista Neurociências,Revista Neurociencias,01043579|19844905 +Revista Neuropsicologia Latinoamericana,Revista Neuropsicologia Latinoamericana,20759479 +Revista Nordestina de Ecoturismo,Escola Superior de Sustentabilidade,19838344 +Revista Nuevo Humanismo,Universidad Nacional de Costa Rica,14050234|22154078 +Revista Observatório,Universidade Federal do Tocantins,24474266 +Revista Odonto Ciência,EDIPUCRS,01029460|19806523 +Revista Odontológica Mexicana,Elsevier ,1870199X| +Revista OPSIS,Universidade Federal de Goias,15193276|21775648 +Revista Organizações em Contexto,Instituto Metodista de Ensino Superior,19828756 +Revista ORL,Ediciones Universidad de Salamanca,24447986 +Revista PAGMAR (Online),Editora Cubo Multimidia,24464791 +Revista Pan-Amazônica de Saúde,Instituto Evandro Chagas,21766223 +Revista Panamericana de Salud Pública,SciELO,10204989|10204989 +Revista Paraense de Medicina,Instituto Evandro Chagas,01015907| +Revista Paulista de Pediatria,Elsevier ,01030582|01030582 +Revista Paulista de Pediatria (English Edition),Elsevier ,23593482| +Revista Pensamento Contemporâneo em Administração,Departamento de Empreendedorismo e Gestao da UFF,19822596 +Revista Percurso,Universidade Estadual de Maringa,21773300 +Revista PerCursos,Universidade do Estado de Santa Catarina,19847246 +Revista Perspectiva Empresarial,Fundacion Universitaria Ceipa,23898186|23898194 +Revista Peruana de Biología,"""Universidad Nacional Mayor de San Marcos, Vicerectorado de Investigacion""",15610837|17279933 +Revista Peruana de Medicina Experimental y Salud Pública,Instituto Nacional de Salud,17264634|17264634 +Revista Pesquisa em Fisioterapia,Escola Bahiana de Medicine e Saude Publica,22382704|22382704 +Revista Petra,Instituto Metodista Izabela Hendrix,23595302 +Revista Pistis Praxis,Pontificia Universidade Catolica do Parana - PUCPR,19843755| +Revista Policía y Seguridad Pública,Latin America Journals Online,22255648| +Revista Política,Universidad de Chile,07161077|07161077 +Revista Portuguesa de Cardiologia,Elsevier ,08702551| +Revista Portuguesa de Cardiologia (English Edition),Elsevier ,21742049| +Revista Portuguesa de Ciências do Desporto,Faculdade de Desporto,16450523| +Revista Portuguesa de Endocrinologia Diabetes e Metabolismo,Elsevier ,16463439| +Revista Portuguesa de Estomatología Medicina Dentária e Cirugia Maxilofacial,Elsevier ,16462890| +Revista Portuguesa de Filosofia,Aletheia - Associacao Cientifica e Cultural,08705283|2183461X +Revista Portuguesa de História,Coimbra University Press,08704147|08704147 +Revista Portuguesa de Pedagogia,Coimbra University Press,0870418X|16478614 +Revista Portuguesa de Pneumologia,Elsevier ,08732159| +Revista Portuguesa de Pneumologia (English Edition),Elsevier ,21735115| +Revista Portuguesa de Saúde Pública,Elsevier ,08709025| +Revista Portuguesa do Dano Corporal,Coimbra University Press,16450760|16478630 +Revista Pós Ciências Sociais,Universidade Federal do Maranhao,19834527|22369473 +REVISTA PRAXIS,Universidad Nacional de Costa Rica,1409309X|22153659 +Revista Práxis saberes da extensão,"""Instituto Federal de Educacao, Ciencia e Tecnologia da Paraiba""",23182369| +Revista Principia - Divulgação Científica e Tecnológica do IFPB,"""Instituto Federal de Educacao, Ciencia e Tecnologia da Paraiba""",15170306| +Revista Processos Químicos,Revistas Processos Quimicos,19818521 +Revista Produção Online,Associacao Brasileira de Engenharia de Producao - ABEPRO,16761901 +Revista Productos Naturales,Nozomi Science,19162413 +Revista Psicologia da Educação,GN1 Genesis Network,21753520| +Revista Psicologia Diversidade e Saúde,Escola Bahiana de Medicine e Saude Publica,23173394| +Revista Psicologia Organizações e Trabalho,Sociedade Brasileira de Psicologia Organizacional e do Trabalho,19846657|19846657 +Revista Punto Género,Universidad de Chile,07190417|07190417 +Revista Q,Universidad Pontificia Bolivariana,19092814 +REVISTA QUAESTIO IURIS,Universidade do Estado do Rio de Janeiro UERJ,18078389|15160351 +Revista Qualidade Emergente,Universidade Federal do Parana,21793581 +Revista Raízes e Amidos Tropicais,Raizes e Amidos Tropicais/Tropical Roots and Starches,1808981X|1808981X +Revista Rascunhos - Caminhos da Pesquisa em Artes Cênicas,Fundacao de Apoio Universitario,23583703 +Revista Recursos Hídricos,Associacao Portuguesa dos Recursos Hidricos,08701741|08701741 +Revista Relegens Thréskeia,Universidade Federal do Parana,23173688 +Revista Romana de Medicina de Laborator,De Gruyter Open Sp. z o.o. ,22845623|22845623 +Revista Romaneasca pentru Educatie Multidimensionala,Asociatia LUMEN,20667329|20679270 +Revista Rosa dos Ventos - Turismo e Hospitalidade,Universidade Caixias do Sul,21789061 +Revista Salud Bosque,Universidad el Bosque,22485759| +Revista Scripta Alumni,Revista Scripta Alumni,19846614 +Revista Scripta Uniandrade,Revista Scripta Uniandrade,16795520 +Revista signos,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7180934 +Revista Sobecc,Zeppelini Editorial e Comunicacao,14144425| +Revista sobre la infancia y la adolescencia,Universitat Politecnica de Valencia,21747210 +Revista Sociais e Humanas,Universidade Federal de Santa Maria,01030620|23171758 +Revista Sociedad y Equidad,Universidad de Chile,7189990 +Revista SOLETRAS,Universidade do Estado do Rio de Janeiro UERJ,15197778|23168838 +Revista Solta a Voz,Universidade Federal de Goias,16760468| +Revista Sul-americana de Engenharia Estrutural,UPF Editora,18063985|23162457 +Revista Surco Sur,University of South Florida Libraries,21575223|21575231 +Revista Sustinere,Universidade do Estado do Rio de Janeiro UERJ,23590424 +Revista Tamoios,Universidade do Estado do Rio de Janeiro UERJ,16761995|19804490 +Revista Tecer,Instituto Metodista Izabela Hendrix,19837631 +Revista Tecnologia e Sociedade,Universidade Tecnologica Federal do Parana,19843526|18090044 +Revista Tecnología en Marcha,nstituto Tecnologico de Costa Rica,03793982|22153241 +Revista Tecnológica,Universidade Estadual de Maringa,15178048|24472476 +Revista Tecnura,Universidad Distrital Francisco Jose de Caldas,22487638|0123921X +Revista Temas,Universidad Santo Tomas,16926226|24224073 +Revista Tempo e Argumento,Universidade do Estado de Santa Catarina,21751803 +Revista Tempo Espaço Linguagem (TEL),GN1 Genesis Network,21776644| +Revista Teoria e Evidência Econômica,UPF Editora,01040960|23188448 +Revista Terceiro Incluído,Universidade Federal de Goias,2237079X +Revista Thema,Instituto Federal de Educacao Ciencia e Tecnologia Sul-Rio-Grandense,15176312|21772894 +Revista Thesis Juris,University Nove de Julho - Uninove,23173580|23173580 +Revista Transversos,Universidade do Estado do Rio de Janeiro UERJ,21797528 +Revista Tribuna Internacional,Universidad de Chile,0719210X|0719210X +Revista Turismo em Análise,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,01035541|19844867 +Revista UIS Ingenierías,Universidad Industrial de Santander,16574583|21458456 +Revista UNAH INNOV,Latin America Journals Online,2413502X|24136867 +Revista UNIANDRADE,Revista UNIANDRADE,15195694 +Revista UNISCI,Universidad Complutense de Madrid,23869453 +Revista Univap,UNIVAP Universidade de Vale do Paraiba,15173275|22371753 +Revista Universo Contábil,Revista Universo Contabil,18093337|18093337 +Revista Uruguaya de Ciencia Política,SciELO,7979789 +Revista USP,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,01039989|23169036 +Revista Valenciana estudios de filosofía y letras,University of Guanajuato,20072538|20072538 +Revista Verde de Agroecologia e Desenvolvimento Sustentável,Grupo Verde de Agroecologia e Abelhas,19818203 +Revista Vernáculo,Universidade Federal do Parana,16770196|23174021 +Revista Vértices,Essentia Editora,18092667|18092667 +Revista Vinculos,Universidad Distrital Francisco Jose de Caldas,1794211X|2322939X +Revista Virtual de Química,GN1 Genesis Network,19846835| +Revista Vitae,Universidad de Antioquia,01214004|21452660 +Revista Wímb Lu,Universidad de Costa Rica,16592107 +Revista X,Universidade Federal do Parana,19800614|19800614 +Revistas,Associacao Brasileira de Odontologia Rio de Janeiro (ABORJ),00347272|19843747 +Revolutionary Russia,Informa UK (Taylor & Francis),09546545|17437873 +Revue A T E E Journal,Informa UK (Taylor & Francis),0379606X| +Revue Africaine de Chirurgie et Spécialités,African Journals Online ,19973756|19973756 +Revue archéologique,CAIRN,00350737|21043868 +Revue archéologique de l Oise,PERSEE Program,07525648| +Revue archéologique de l ouest,PERSEE Program,0767709X|17753732 +Revue archéologique de Narbonnaise,PERSEE Program,05577705|21175683 +Revue archéologique de Narbonnaise Supplément,PERSEE Program,01539124| +Revue archéologique de Picardie,PERSEE Program,07525656|07525656 +Revue archéologique de Picardie Numéro spécial,PERSEE Program,12726117| +Revue archéologique du Centre de la France,PERSEE Program,00350753|19516207 +Revue archéologique du nord-est de l Oise,PERSEE Program,0752563X| +Revue belge de Musicologie / Belgisch Tijdschrift voor Muziekwetenschap,JSTOR,07716788| +Revue belge de philologie et d histoire,PERSEE Program,00350818| +Revue Bénédictine,"""Brepols Publishers, NV""",00350893|22959009 +Revue Burkinabè de droit,African Journals Online ,7738439 +Revue Congolaise de Gestion,CAIRN,17290228|24110884 +Revue d anthropologie des connaissances,CAIRN,17605393|17605393 +Revue d Archéométrie,PERSEE Program,03991237| +Revue d assyriologie et d archéologie orientale,CAIRN,03736032|21043817 +Revue d économie du développement,CAIRN,12454060|17821517 +Revue d économie financière,PERSEE Program,09873368|17775744 +Revue d économie financière (English ed ),PERSEE Program,17674603| +Revue d économie politique,CAIRN,03732630|21052883 +Revue d Égyptologie,Peeters Publishers,351849 +Revue d Electroencé phalographie et de Neurophysiologie Clinique,Elsevier ,03704475| +Revue d Épidémiologie et de Santé Publique,Elsevier ,03987620| +Revue d éthique et de théologie morale,CAIRN,12660078|21184518 +Revue d Etudes Augustiniennes et Patristiques,"""Brepols Publishers, NV""",17689260| +Revue d histoire de l Amérique française,Consortium Erudit,00352357|14921383 +Revue d histoire de l Église de France,PERSEE Program,03009505|21099502 +Revue d Histoire de l Eglise de France,"""Brepols Publishers, NV""",00487988| +Revue d histoire de la pharmacie,PERSEE Program,00352349|17753864 +Revue d histoire des colonies,PERSEE Program,03991385| +Revue d histoire des sciences,CAIRN,01514105|19696582 +Revue d histoire des sciences et de leurs applications,PERSEE Program,00487996| +Revue d histoire des sciences et de leurs applications,PERSEE Program,00487996| +Revue d Histoire des Sciences Humaines,CAIRN,1622468X|19631022 +Revue d histoire des textes,"""Brepols Publishers, NV""",03736075| +Revue d histoire du XIXe siècle,OpenEdition,12651354|17775329 +Revue d Histoire Ecclésiastique,"""Brepols Publishers, NV""",00352381| +Revue d histoire littéraire de la France,CAIRN,00352411|21052689 +Revue d Information Scientifique et Technique,African Journals Online ,11110015 +Revue d intelligence artificielle,Lavoisier SAS,0992499X| +Revue d Oncologie Hématologie Pédiatrique,Elsevier ,22134670| +Revue d Orthopédie Dento-Faciale,EDP Sciences,03379736|2110543X +Revue de Bibliothèque et Archives nationales du Québec,Consortium Erudit,19200250|19200269 +Revue de botanique appliquée et d agriculture coloniale,PERSEE Program,03703681| +Revue de Chirurgie Orthopédique et Réparatrice de l Appareil Moteur,Elsevier ,00351040| +Revue de Chirurgie Orthopédique et Traumatologique,Elsevier ,18770517| +Revue de géographie alpine,OpenEdition,00351121|17607426 +Revue de géographie alpine,PERSEE Program,00351121|17607426 +Revue de géographie de Lyon,PERSEE Program,0035113X| +Revue de géographie jointe au Bulletin de la Société de géographie de Lyon et de la région lyonnaise,PERSEE Program,11646284| +Revue de gestion des ressources humaines,CAIRN,1163913X|22712186 +Revue de l Art,PERSEE Program,00351326|1953812X +Revue de l Electricité et de l Electronique,SEE,12656534| +Revue de l enfance et de l adolescence,CAIRN,21016046|24263648 +Revue de l Est,PERSEE Program,00351415| +Revue de l histoire des colonies françaises,PERSEE Program,03991377| +Revue de l Institut Français du Pétrole,EDP Sciences,00202274| +Revue de l Institut International de Statistique / Review of the International Statistical Institute,JSTOR,03731138| +Revue de l Occident musulman et de la Méditerranée,PERSEE Program,00351474| +Revue de l OCDE sur la gestion budgétaire,Organisation for Economic Co-Operation and Development ,16087151| +Revue de l OCDE sur le développement,Organisation for Economic Co-Operation and Development ,19920490| +Revue de l OCDE sur le droit et la politique de la concurrence,Organisation for Economic Co-Operation and Development ,15607798| +Revue de l OFCE,CAIRN,12659576|17775647 +Revue de l OFCE,CAIRN,07516614|17775647 +Revue de l’histoire des religions,PERSEE Program,00351423|21052573 +Revue de l’histoire des religions,OpenEdition,21052573|21052573 +Revue de l’Institut français d’histoire en Allemagne,OpenEdition,21900078|21988943 +Revue de l’organisation responsable,CAIRN,19510187|21053022 +Revue de l’Université de Moncton,Consortium Erudit,03166368|17122139 +Revue de Médecine Interne La,Elsevier , +Revue de médecine périnatale,Springer-Verlag,19650833|19650841 +Revue de Métallurgie,EDP Sciences,00351563|11563141 +Revue de métaphysique et de morale,CAIRN,00351571|21025177 +Revue de Micropaléontologie,Elsevier ,00351598| +Revue de musicologie,JSTOR,00351601| +Revue de neuropsychologie,CAIRN,21016739|21026025 +Revue de philosophie économique,CAIRN,13760971|21184852 +Revue de Physique Appliquée,EDP Sciences,00351687| +Revue de Pneumologie Clinique,Elsevier ,07618417| +Revue de primatologie,OpenEdition,20773757|20773757 +Revue de Psychologie Analytique,CAIRN,22688870|22712151 +Revue de psychothérapie psychanalytique de groupe,CAIRN,02971194|17762863 +Revue de Stomatologie de Chirurgie Maxillo-faciale et de Chirurgie Orale,Elsevier ,22136533| +Revue de Stomatologie et de Chirurgie Maxillo-faciale,Elsevier ,00351768| +Revue de Synthèse,Springer-Verlag,00351776|19552343 +Revue des Bioressources,"""Al Manhal FZ, LLC""",21701806| +Revue des composites et des matériaux avancés,Lavoisier SAS,11697954| +Revue des droits de l’homme,OpenEdition,2264119X +Revue des Études Anciennes,PERSEE Program,00352004| +Revue des Études Arméniennes,Peeters Publishers,802549 +Revue des Études Arméniennes,Peeters Publishers,802549 +Revue des études byzantines,PERSEE Program,07665598| +Revue des Études Grecques,PERSEE Program,00352039| +Revue des Études Juives,Peeters Publishers,4848616 +Revue des Études Juives,Peeters Publishers,4848616 +Revue des études slaves,PERSEE Program,00802557| +Revue des Maladies Respiratoires,Elsevier ,07618425| +Revue des Maladies Respiratoires Actualités,Elsevier ,18771203| +Revue des politiques sociales et familiales,PERSEE Program,21018081| +Revue des sciences de l eau,Consortium Erudit,09927158|17188598 +Revue des sciences de l éducation,Consortium Erudit,0318479X|17050065 +Revue des sciences philosophiques et théologiques,CAIRN,00352209|21184445 +Revue des sciences philosophiques et théologiques,CAIRN,00352209|21184445 +Revue des sciences religieuses,OpenEdition,00352217|22590285 +Revue du MAUSS,CAIRN,12474819|17763053 +Revue du monde musulman et de la Méditerranée,PERSEE Program,09971327|21052271 +Revue du Nord,CAIRN,00352624|22717005 +Revue du Nouvel-Ontario,Consortium Erudit,07081715|19187505 +Revue du Podologue,Elsevier ,17667313| +Revue du Rhumatisme,Elsevier ,11698330| +Revue du Rhumatisme Monographies,Elsevier ,18786227| +Revue d’Alsace,OpenEdition,01810448|22602941 +Revue d’économie industrielle,PERSEE Program,01543229|17730198 +Revue d’économie industrielle,OpenEdition,17730198|17730198 +Revue d’Économie Régionale & Urbaine,CAIRN,01807307|21070865 +Revue d’ethnoécologie,OpenEdition,22672419 +Revue d’études benthamiennes,OpenEdition,17607507|17607507 +Revue d’études comparatives Est-Ouest,Editions NecPlus,03380599|22596100 +Revue d’études en Agriculture et Environnement,Editions NecPlus,19669607| +Revue d’histoire de l’enfance « irrégulière »,OpenEdition,12872431|1777540X +Revue d’histoire des chemins de fer,OpenEdition,09969403|17754224 +Revue d’histoire moderne et contemporaine,CAIRN,00488003|17763045 +Revue d’Orthodontie Clinique,EDP Sciences,21185654| +Revue économique,CAIRN,00352764|19506694 +Revue économique de l OCDE,Organisation for Economic Co-Operation and Development ,02550830| +Revue Européenne de Droit de l Environnement,PERSEE Program,12838446| +Revue européenne de génie civil,Informa UK (Taylor & Francis),17747120| +Revue européenne de mécanique numérique,Lavoisier SAS,17797179| +Revue européenne de migrations internationales,OpenEdition,07650752|17775418 +Revue Européenne de Psychologie Appliquée/European Review of Applied Psychology,Elsevier ,11629088| +Revue européenne des éléments finis,Informa UK (Taylor & Francis),12506559| +Revue européenne des sciences sociales,OpenEdition,00488046|16634446 +Revue Forestière Française,INIST-CNRS,00352829|19516827 +Revue Franç aise d Allergie,Elsevier ,03704688| +Revue Franç aise de Transfusion et Immuno-hé matologie,Elsevier ,03384535| +Revue Fran&c edil aise des Laboratoires,Elsevier ,03389898| +Revue française d administration publique,CAIRN,01527401|19650620 +Revue Française d Allergologie,Elsevier ,18770320| +Revue Française d Allergologie et d Immunologie Clinique,Elsevier ,03357457| +Revue française d économie,PERSEE Program,07690479|17607388 +Revue Française d Etudes Américaines,PERSEE Program,03977870| +Revue française d histoire d outre-mer,PERSEE Program,03009513| +Revue Française d Histoire des Idées Politiques,CAIRN,12667862|21193851 +Revue Française d Histoire des Idées Politiques,CAIRN,12667862|21193851 +Revue Francaise d& apos Allergologie,Elsevier ,00352845| +Revue française de civilisation britannique,OpenEdition,02489015|24294373 +Revue française de droit constitutionnel,CAIRN,11512385|21052867 +Revue française de génie civil,Informa UK (Taylor & Francis),12795119| +Revue Française de Géotechnique,EDP Sciences,01810529| +Revue française de gestion,Lavoisier SAS,03384551| +Revue française de métrologie,EDP Sciences,17721792|17763215 +Revue française de pédagogie,PERSEE Program,05567807|21052913 +Revue française de psychanalyse,CAIRN,00352942|21052964 +Revue française de psychosomatique,CAIRN,11644796|21052603 +Revue française de science politique,CAIRN,00352950|19506686 +Revue française de science politique (English),CAIRN,22637494| +Revue Française de Socio-Économie,CAIRN,19666608|21043833 +Revue Française de Sociologie,PERSEE Program,00352969|19585691 +Revue Française de Transfusion,Elsevier ,00352977| +Revue Française de Transfusion et d Hémobiologie,Elsevier ,11404639| +Revue Francaise de Transfusion et d& apos Hémobiologie,Elsevier ,11404639| +Revue Française des Laboratoires,Elsevier ,03389898| +Revue française des sciences de l’information et de la communication,OpenEdition,22630856|22630856 +Revue Francophone d Orthoptie,Elsevier ,18762204| +Revue francophone de la déficience intellectuelle,Consortium Erudit,08475733|19294603 +Revue Francophone de Psycho-Oncologie,Springer-Verlag,17604133|17652863 +Revue Francophone des Laboratoires,Elsevier ,1773035X| +Revue Francophone Internationale de Recherche Infirmière,Elsevier ,23528028| +Revue générale de droit,Consortium Erudit,00353086|22922512 +Revue Générale de Thermique,Elsevier ,00353159| +Revue Générale des Chemins de Fer,Elsevier ,00353183| +Revue Générale Nucléaire,EDP Sciences,03355004| +Revue Géographique de l Est,PERSEE Program,00353213| +Revue géographique des Pyrénées et du Sud-Ouest,PERSEE Program,00353221| +Revue germanique internationale,OpenEdition,12537837|17753988 +Revue historique,CAIRN,00353264|21043825 +Revue interdisciplinaire d études juridiques,CAIRN,07702310|24064742 +Revue interdisciplinaire des sciences de la santé - Interdisciplinary Journal of Health Sciences,University of Ottawa Library,19207433| +Revue internationale d éducation de Sèvres,OpenEdition,12544590|22614265 +Revue internationale d intelligence économique,Lavoisier SAS,2101647X| +Revue internationale de botanique appliquée et d agriculture tropicale,PERSEE Program,03705412| +Revue internationale de droit comparé,PERSEE Program,00353337|19538111 +Revue internationale de droit économique,CAIRN,10108831|17821525 +Revue internationale de droit pénal,CAIRN,02235404|19516312 +Revue internationale de génie électrique,Lavoisier SAS,1295490X| +Revue internationale de géomatique,Lavoisier SAS,12605875|21167060 +Revue internationale de l économie sociale Recma,Consortium Erudit,16261682|22612599 +Revue Internationale de la Croix-Rouge,Cambridge University Press,00353361| +Revue Internationale de la Croix-Rouge et Bulletin international des Sociétés de la Croix-Rouge,Cambridge University Press,10268812| +Revue Internationale de la Croix-Rouge/International Review of the Red Cross,Cambridge University Press,15607755| +Revue internationale de politique comparée,CAIRN,13700731|17821533 +Revue internationale de politique de développement,OpenEdition,16639375|16639391 +Revue internationale de Psychosociologie,CAIRN,12601705|21052662 +Revue internationale de psychosociologie et de gestion des comportements organisationnels,CAIRN,22628401| +Revue Internationale de Sécurité Sociale,Wiley Blackwell (Blackwell Publishing),03790312|17521718 +Revue internationale de soins palliatifs,CAIRN,16641531|22352155 +Revue Internationale des Sciences Administratives,CAIRN,0303965X| +Revue internationale des sciences sociales,CAIRN,03043037|22224610 +Revue internationale des technologies en pédagogie universitaire,Consortium Erudit,17087570 +Revue internationale du Travail,Wiley Blackwell (Blackwell Publishing),03785599|15649121 +Revue internationale et stratégique,CAIRN,12871672|21043876 +Revue internationale P M E Économie et gestion de la petite et moyenne entreprise,Consortium Erudit,07765436|19189699 +Revue italienne d’études françaises,OpenEdition,22407456 +Revue Judiciaire de l Ouest,PERSEE Program,02439069| +Revue Juridique de l Environnement,PERSEE Program,03970299| +Revue Juridique de l Ouest,PERSEE Program,09901027| +Revue Libanaise de Gestion et d Économie,Elsevier ,19997620| +Revue LISA / LISA e-journal,OpenEdition,17626153 +Revue Mabillon,"""Brepols Publishers, NV""",00353620| +Revue Méd Vét,Ankara University,351555 +Revue multidisciplinaire sur l emploi le syndicalisme et le travail,Consortium Erudit,19189354 +Revue néo-scolastique,PERSEE Program,07765541| +Revue néo-scolastique de philosophie,PERSEE Program,0776555X| +Revue Neurologique,Elsevier ,00353787| +Revue numismatique,PERSEE Program,04848942|19631693 +Revue Paralia,Centre Francais du Littoral,17608716 +Revue philosophique de la France et de l étranger,CAIRN,00353833|2104385X +Revue Philosophique de Louvain,Peeters Publishers,00353841|00353841 +Revue québécoise de linguistique,Consortium Erudit,07100167|17054591 +Revue québécoise de science politique,Consortium Erudit,11899565|19186592 +Revue Quetelet/Quetelet Journal,Centre de Recherche en Demographie et Societes,20349378|20349378 +Revue Romane,John Benjamins Publishing Company,00353906|16000811 +Revue Russe,PERSEE Program,11610557| +Revue Sciences/Lettres,OpenEdition,22716246 +Revue Scientifique et Technique de l OIE,O.I.E (World Organisation for Animal Health),02531933| +Revue suisse de zoologie,Smithsonian Institution Biodiversity Heritage Library,0035418X| +Revue Théologique de Louvain,Peeters Publishers,00802654|00802654 +Revue Vétérinaire Clinique,Elsevier ,22145672| +Revue zoologique africaine,Smithsonian Institution Biodiversity Heritage Library,07710488| +Revus,OpenEdition,15817652|18557112 +RFD- Revista da Faculdade de Direito da UERJ,Universidade do Estado do Rio de Janeiro UERJ,01040367|22363475 +RGO - Revista Gaúcha de Odontologia,SciELO,19818637 +RGO - Revista Gaúcha de Odontologia,SciELO,19818637 +Rheologica Acta,Springer-Verlag,00354511|14351528 +Rhetoric & Public Affairs,Michigan State University Press,10948392|15345238 +Rhetoric Review,Informa UK (Taylor & Francis),07350198|15327981 +Rhetoric Society Newsletter,Informa UK (Taylor & Francis),19356684| +Rhetoric Society Quarterly,Informa UK (Taylor & Francis),02773945|1930322X +Rhetorica A Journal of the History of Rhetoric,University of California Press,07348584|15338541 +Rhetorik,Walter de Gruyter GmbH,07205775|18659160 +rheuma plus,Springer-Verlag,1868260X|21912610 +Rheumatic Disease Clinics of North America,Elsevier ,0889857X| +Rheumatology,Oxford University Press,14620324|14602172 +Rheumatology and Therapy,Springer-Verlag,21986576|21986584 +Rheumatology Current Research,OMICS Publishing Group,21611149 +Rheumatology International,Springer-Verlag,01728172|1437160X +Rheumatology News,Elsevier ,15419800| +Rheumatology News International,Elsevier ,18761143| +Rheumatology Reports,PAGEPress Publications,20367511|2036752X +Rheumatology Science and Practice,"""IMA Press, LLC""",19954484|19954492 +Rhinology Journal,Rhinology,03000729| +Rhizomata,Walter de Gruyter GmbH,21965102|21965110 +Rhodora,BioOne (New England Botanical Club),00354902|19383401 +RIBAGUA - Revista Iberoamericana del Agua,Elsevier ,23863781| +Ribogospodarsʹka nauka Ukraïni,Co. Ltd. Ukrinformnauka,20751508|23129581 +Rice,Springer (Biomed Central Ltd.),19398425|19398433 +Rice Genomics and Genetics,"""Sophia Publishing Group, Inc.""",19252021 +Rice Research Open Access,OMICS Publishing Group,23754338 +Rice Science,Elsevier ,16726308| +RICERCA PSICOANALITICA,Franco Angeli,18274625|20377851 +Ricercare,Universidad EAFIT,23464879|23464747 +Ricerche di Matematica,Springer-Verlag,00355038|18273491 +RICERCHE DI PSICOLOGIA,Franco Angeli,03916081|19725620 +Ricerche Economiche,Elsevier ,00355054|10961143 +RICYDE Revista Internacional de Ciencias del Deporte,Revista Internacional de Ciencias del Deporte,18853137 +RIDPHE_R Revista Iberoamericana do Patrimônio Histórico-Educativo,RIDPHE-R - Revista Iberoamericana do Patrimonio Historico-Educativo,2447746X +RIED Revista Iberoamericana de Educación a Distancia,UNED - Universidad Nacional de Educacion a Distancia,11382783|13903306 +RIET-IJSET International Journal of Science Engineering and Technology,Diva Enterprises Private Limited,23487364|23953381 +Rigakuryoho Kagaku,The Society of Physical Therapy Science,13411667| +Rilce Revista de Filología Hispánica,Universidad de Navarra,02132370| +RIMHE Revue Interdisciplinaire Management Homme(s) & Entreprise,CAIRN,22592490|22605584 +Ring,De Gruyter Open Sp. z o.o. ,00355429|00355429 +Ring Opening of Cyclic Anhydrides,Thieme Publishing Group,20300522 +Ring-Opening Reaction of Oxiranes,Thieme Publishing Group,20100418 +RingClosing Metathesis and Cross Metathesis Using Dendrimers,Thieme Publishing Group,20600208 +Ringing & Migration,Informa UK (Taylor & Francis),03078698|21598355 +Rinsho Shinkeigaku,Societas Neurologica Japonica,0009918X|18820654 +Rinsho yakuri/Japanese Journal of Clinical Pharmacology and Therapeutics,Japanese Society of Clinical Pharmacology and Therapeutics,03881601|18828272 +Riparian Ecology and Conservation,De Gruyter Open Sp. z o.o. ,22991042 +RIPS Revista de Investigaciones Políticas y Sociológicas,University of Santiago de Compostela,1577239X|22555986 +RISALAH KEBIJAKAN PERTANIAN DAN LINGKUNGAN Rumusan Kajian Strategis Bidang Pertanian dan Lingkungan,Strategic Studies and Agriculture Policy,23556226|24770299 +Risco Revista de Pesquisa em Arquitetura e Urbanismo (Online),Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,16793498|19844506 +Risk Analysis,Wiley Blackwell (Blackwell Publishing),02724332|15396924 +Risk and Decision Analysis,IOS Press,15697371|18759173 +Risk Decision and Policy,Informa UK (Taylor & Francis),13575309| +Risk Hazards & Crisis in Public Policy,Wiley Blackwell (Blackwell Publishing),19444079|19444079 +Risk Management,Nature Publishing Group - Macmillan Publishers,14603799|17434637 +Risk Management and Healthcare Policy,Dove Medical Press,11791594 +Risk Management and Insurance Review,Wiley Blackwell (Blackwell Publishing),10981616|15406296 +RISKNEWS,Wiley Blackwell (John Wiley & Sons),16128931|16160045 +Risks,MDPI AG,22279091 +RISORSA UOMO,Franco Angeli,11280689|19725205 +RISTI - Revista Ibérica de Sistemas e Tecnologias de Informação,AISTI,16469895|16469895 +Ritual Secrecy and Civil Society,Policy Studies Organization,23340797 +RIV Rassegna Italiana di Valutazione,Franco Angeli,18260713|19725027 +River Research and Applications,Wiley Blackwell (John Wiley & Sons),15351459|15351467 +River Systems,Schweizerbart,18685749| +River Teeth A Journal of Nonfiction Narrative,Muse - Johns Hopkins University Press,15483339 +Rives méditerranéennes,OpenEdition,21194696|21194696 +Rives méditerranéennes,OpenEdition,21194696|21194696 +Rivista di Criminologia Vittimologia e Sicurezza,Societa Italiana di Vittimologia,1971033X +RIVISTA DI ECONOMIA AGRARIA,Franco Angeli,00356190|22811559 +RIVISTA DI ECONOMIA E STATISTICA DEL TERRITORIO,Franco Angeli,19710380|19725000 +Rivista di Matematica per le Scienze Economiche e Sociali,Springer-Verlag,11271035| +RIVISTA DI PSICOTERAPIA RELAZIONALE,Franco Angeli,18255442|19718454 +Rivista di Scienze del Turismo - Ambiente Cultura Diritto Economia,Led Edizioni Universitarie,20377916|20377908 +RIVISTA DI SESSUOLOGIA CLINICA,Franco Angeli,11234598|19725183 +RIVISTA DI STORIA DELLA FILOSOFIA,Franco Angeli,03932516|19725558 +RIVISTA DI STUDI SULLA SOSTENIBILITA,Franco Angeli,22391959|22397221 +RIVISTA ITALIANA DI DIRITTO DEL TURISMO,Franco Angeli,20399022|20399391 +Rivista Italiana di Ornitologia,PAGEPress Publications,00356875|23850833 +RIVISTA SPERIMENTALE DI FRENIATRIA,Franco Angeli,11296437|19725582 +RIVISTA TRIMESTRALE DI SCIENZA DELL AMMINISTRAZIONE,Franco Angeli,0391190X|19724942 +Rivista Urologia,"""Wichtig Publishing, SRL""",03915603| +Rizoma,APESC - Associacao Pro-Ensino em Santa Cruz do Sul,2318406X +RLA Revista de lingüística teórica y aplicada,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7184883 +RMD Open,BMJ,20565933 +RMLE Online,Informa UK (Taylor & Francis),19404476 +RNA,Cold Spring Harbor Laboratory Press,13558382|14699001 +RNA & DISEASE,"""Smart Science and Technology, LLC""",23752467 +RNA Biology,Landes Bioscience,15476286|15558584 +RNA Nanotechnology,De Gruyter Open Sp. z o.o. ,22996850 +Road Materials and Pavement Design,Informa UK (Taylor & Francis),14680629|21647402 +ROBOMECH Journal,Springer (Biomed Central Ltd.),21974225|21974225 +ROBOT,China Science Publishing & Media Ltd.,10020446| +Robotic Surgery Research and Reviews,Dove Medical Press,23245344 +Robotica,Cambridge University Press,02635747|14698668 +Robotics,MDPI AG,22186581 +Robotics,Elsevier ,01678493| +Robotics and Autonomous Systems,Elsevier ,09218890| +Robotics and Biomimetics,Springer (Biomed Central Ltd.),21973768|21973768 +Robotics and Computer-Integrated Manufacturing,Elsevier ,07365845| +Rock Mechanics and Rock Engineering,Springer-Verlag,07232632|1434453X +Rock Mechanics Felsmechanik Mécanique des Roches,Springer-Verlag,00357448| +Rock Mechanics Felsmechanik Mecanique des Roches,Springer-Verlag,00357448| +Rock Music Studies,Informa UK (Taylor & Francis),19401159|19401167 +Rocks & Minerals,Informa UK (Taylor & Francis),00357529|19401191 +Rocky Mountain Geology,GeoScienceWorld,00107980|15557340 +Rocky Mountain Journal of Mathematics,Rocky Mountain Mathematics Consortium,00357596| +Rocky Mountain Review,Muse - Johns Hopkins University Press,19482833 +Rocky Mountain Review of Language and Literature,JSTOR,03611299| +Rocznik Andragogiczny,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,1429186X|23917571 +Rocznik Historii Prasy Polskiej,De Gruyter Open Sp. z o.o. ,15091074| +Rocznik Integracji Europejskiej,Adam Mickiewicz University Poznan,18996256| +Rocznik Przekładoznawczy,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,18964362|23921552 +Rocznik Teologii Katolickiej,University of Bialystok,16448855| +Roczniki Dziejów Społecznych i Gospodarczych,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,00803634| +Roczniki Ekonomii i Zarządzania,Towarzystwo Naukowe KUL,20811837| +Roczniki Filozoficzne,Towarzystwo Naukowe KUL,00357685| +Roczniki Humanistyczne,Towarzystwo Naukowe KUL,00357707| +Roczniki Kulturoznawcze,Towarzystwo Naukowe KUL,20828578| +Roczniki Nauk Prawnych,Towarzystwo Naukowe KUL,15077896| +Roczniki Nauk Społecznych,Towarzystwo Naukowe KUL,01374176| +Roczniki Pedagogiczne,Towarzystwo Naukowe KUL,2080850X| +Roczniki Psychologiczne,Towarzystwo Naukowe KUL,15077888| +Roczniki Teologiczne,Towarzystwo Naukowe KUL,23537272| +Rodeno revista de geología aragonesa,Iniciativa Digital Politecnica,11315393| +Rodriguésia,SciELO,21757860 +Roeper Review,Informa UK (Taylor & Francis),02783193|1940865X +RöFo - Fortschritte auf dem Gebiet der Röntgenstrahlen und der bildgebenden Verfahren,Thieme Publishing Group,14389029|14389010 +Romance Notes,Muse - Johns Hopkins University Press,21657599 +Romance Philology,"""Brepols Publishers, NV""",00358002|22959017 +Romance Quarterly,Informa UK (Taylor & Francis),08831157|19403216 +Romance Studies,Maney Publishing,02639904|00000000 +Romani Studies,Liverpool University Press,15280748|17572274 +Romanian Journal of Communication and Public Relations,College of Communication and Public Relations,14548100|23445440 +Romanian Journal of Diabetes Nutrition and Metabolic Diseases,De Gruyter Open Sp. z o.o. ,20687532|22846417 +Romanian Journal of English Studies,De Gruyter Open Sp. z o.o. ,15843734|15843734 +Romanian Journal of Experimental Applied Psychology,Romanian Society of Experimental Applied Psychology (RSEAP),22861831 +Romanian Journal Of Internal Medicine,Walter de Gruyter GmbH,12204749 +Romanian Journal of Legal Medicine,Romanian Society of Legal Medicine,12218618|18448585 +Romanian Journal of Rhinology,Walter de Gruyter GmbH,23933356 +Romanian Journal of Transport Infrastructure,Walter de Gruyter GmbH,22862218 +Romanian Neurosurgery,De Gruyter Open Sp. z o.o. ,12208841|12208841 +ROMANIAN REVIEW PRECISION MECHANICS OPTICS & MECHATRONICS,INCDMTM,15845982|15845982 +Romanische Bibliographie,Walter de Gruyter GmbH,18659055 +Romanische Forschungen,Vittorio Klostermann GMBH,00358126|18640737 +Romanistisches Jahrbuch,Walter de Gruyter GmbH,00803898|16130413 +Romanticism,Edinburgh University Press,1354991X|17500192 +Romanticism and Victorianism on the Net,Consortium Erudit,19161441 +Romanticism on the Net,Consortium Erudit,14671255 +Romanticism Past and Present,Informa UK (Taylor & Francis),07336519| +Romantik Journal for the Study of Romanticisms,Aarhus University Library,2245599X|22462945 +Romantisme,CAIRN,00488593|19577958 +RÖMISCHE HISTORISCHE MITTEILUNGEN,Verlag der Osterreichischen Akademie der Wissenschaften,00803790|18155839 +Romológia,University Library of Pecs,2064373X +Ronen biyou,The Japan Geriatrics Society,04854349| +Rontgenpraxis,Elsevier ,00357820| +Root Research,Japanese Society for Root Research,09192182|18807186 +Rorschach Research Exchange,Informa UK (Taylor & Francis),08934037| +Rorschach Research Exchange and Journal of Projective Techniques,Informa UK (Taylor & Francis),10683402| +Rorschachiana Journal of the International Society for the Rorschach,Hogrefe Publishing Group,11925604|2151206X +Rośliny Oleiste - Oilseed Crops,Index Copernicus International,12338273|20845057 +ROTASI,Institute of Research and Community Services Diponegoro University (LPPM UNDIP),1411027X|24069620 +Roteiro,Universidade do Oeste de Santa Catarina,01044311|21776059 +Rotman International Journal of Pension Management,University of Toronto Press Inc,19169833|19169841 +Route Educational and Social Science Journal,Route Educational and Social Science Journal,21485518| +Roux s Archives of Developmental Biology,Springer-Verlag,0930035X| +Royal Australian Planning Institute Journal,Informa UK (Taylor & Francis),00049999| +Royal Institute of Chemistry Reviews,The Royal Society of Chemistry,00358940| +Royal Institute of Philosophy Lecture Series,Cambridge University Press,0957042X| +Royal Institute of Philosophy Lectures,Cambridge University Press,00804436| +Royal Institute of Philosophy Supplement,Cambridge University Press,13582461|17553555 +Royal Musical Association Research Chronicle,Informa UK (Taylor & Francis),14723808|21674027 +Royal Society Open Science,The Royal Society,20545703 +Royal United Services Institution Journal,Informa UK (Taylor & Francis),00359289| +Rozwój Regionalny i Polityka Regionalna,Adam Mickiewicz University Poznan,23531428| +RP3 - Revista de Pesquisa em Políticas Públicas,Revista de Pesquisa em Políticas Publicas,2317921X +RQ,The University of Chicago Press,337072 +rquivo Brasileiro de Educação,Pontificia Universidade Catolica de Minas Gerais,23187344 +RSC Advances,The Royal Society of Chemistry,20462069 +Ruang,Institute of Research and Community Services Diponegoro University (LPPM UNDIP),18583881| +Rubber Chemistry and Technology,"""Rubber Division, ACS""",00359475| +Ruch Filozoficzny,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,00359599| +Ruch Literacki,De Gruyter Open Sp. z o.o. ,00359602|23001968 +Ruch Prawniczy Ekonomiczny i Socjologiczny,Adam Mickiewicz University Poznan,00359629| +Rudarski radovi Bor,Centre for Evaluation in Education and Science,14510162| +Rudarsko-geološko-naftni zbornik,"""Faculty of Mining, Geology and Petroleum Engineering""",03534529| +RUDY I METALE NIEŻELAZNE,"""Wydawnictwo SIGMA-NOT, sp. z.o.o.""",00359696| +Rue Descartes,CAIRN,11440821|21025819 +ruffin_darden,Philosophy Documentation Center,19490240| +Ruhuna Journal of Science,Sri Lanka Journals Online ,1800279X| +Rumores,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,1982677X +Rumpelniki hihihiś,Index Copernicus International,17304296 +Rundbrief des Fachausschusses Management der Anwendungsentwicklung und -wartung (WI-MAW),Springer-Verlag,16105753|16105753 +RUOLO TERAPEUTICO (IL),Franco Angeli,18281974|19725159 +Rural China,Brill Academic Publishers,22136738|22136746 +Rural History,Cambridge University Press,09567933|14740656 +Rural Landscapes Society Environment History,Stockholm University Press,20020104 +Rural Mental Health,American Psychological Association,1935942X|21638969 +Rural Society,Informa UK (Taylor & Francis),10371656|22040536 +Rural Sociology,Wiley Blackwell (Blackwell Publishing),00360112|00000000 +Rural Sustainability Research,Walter de Gruyter GmbH,22560939 +Rural Theology,Maney Publishing,14704994|20421273 +Rursus,OpenEdition,1951669X|1951669X +RUS (São Paulo),Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,23174765 +RUSC Universities and Knowledge Society Journal,Springer-Verlag,1698580X +Rusin,Tomsk State University,18572685| +Russell the Journal of Bertrand Russell Studies,Escarpment Press,00360163|19138032 +Russia-America in the XXI century,"""Science and Education, Ltd.""",20705476| +Russian Aeronautics (Iz VUZ),Allerton Press,10687998|19347901 +Russian Agricultural Economic Review,BIBLIO-GLOBUS Publishing House,24101478| +Russian Agricultural Sciences,Allerton Press,10683674|19348037 +Russian Allergology Journal,"""Science and Education, Ltd.""",18108830| +Russian and East European Studies,Japanese Association for Russian and East European Studies,13486497|18845347 +Russian Chemical Bulletin,Springer-Verlag,10665285|15739171 +Russian Chemical Reviews,Turpion ,0036021X|14684837 +Russian Economic Trends,Wiley Blackwell (Blackwell Publishing),09670793| +Russian Education & Society,Informa UK (Taylor & Francis),10609393|15580423 +Russian Electrical Engineering,Allerton Press,10683712|19348010 +Russian Engineering Research,Allerton Press,1068798X|19348088 +Russian Family Doctor,ECO-Vector,20721668| +Russian Geology and Geophysics,Elsevier ,10687971| +Russian Heart Failure Journal,APO Society of Specialists in Heart Failure,17284651| +Russian Heart Journal,APO Society of Specialists in Heart Failure,17284724| +Russian History,Brill Academic Publishers,0094288X|18763316 +Russian Journal of Agricultural and Socio-Economic Sciences,Russian Journal of Agricultural and Socio-Economic Sciences,22261184 +Russian Journal of Applied Chemistry,Pleiades Publishing,10704272|16083296 +Russian Journal of Biological Invasions,Pleiades Publishing,20751117|20751125 +Russian Journal of Biological Research,Academic Publishing House Researcher,24094536|24137413 +Russian Journal of Bioorganic Chemistry,Pleiades Publishing,10681620|15739163 +Russian Journal of Cardiology,"""Silicea - Poligraf, LLC""",15604071| +Russian Journal of Child Neurology,Publishing House ABV Press,20738803|24129178 +Russian Journal of Children Hematology and Oncology,Publishing House ABV Press,23111267| +Russian Journal of Communication,Informa UK (Taylor & Francis),19409419|19409427 +Russian Journal of Comparative Law,Academic Publishing House Researcher,24117994|24137618 +Russian Journal of Coordination Chemistry,Pleiades Publishing,10703284|16083318 +Russian Journal of Developmental Biology,Pleiades Publishing,10623604|16083326 +Russian Journal of Earth Sciences,Geophysical Center of the Russian Academy of Sciences,16811208|16811208 +Russian Journal of Ecology,Pleiades Publishing,10674136|16083334 +Russian Journal of Economics,Elsevier ,24054739| +Russian Journal of Electrochemistry,Pleiades Publishing,10231935|16083342 +Russian Journal of Entrepreneurship,BIBLIO-GLOBUS Publishing House,19946937|24094420 +Russian Journal of General Chemistry,Pleiades Publishing,10703632|16083350 +Russian Journal of Genetics,Pleiades Publishing,10227954|16083369 +Russian Journal of Genetics Applied Research,Pleiades Publishing,20790597|20790600 +Russian Journal of Horticulture,BIBLIO-GLOBUS Publishing House,24102652 +Russian Journal of Housing Research,BIBLIO-GLOBUS Publishing House,24101621|24129089 +Russian Journal of Infection and Immunity,SPb RAACI,22207619|23137398 +Russian Journal of Innovation Economics,BIBLIO-GLOBUS Publishing House,22220372 +Russian Journal of Inorganic Chemistry,Pleiades Publishing,00360236|15318613 +Russian Journal of Labor Economics,BIBLIO-GLOBUS Publishing House,24101613|24128929 +Russian Journal of Legal Studies,Academic Publishing House Researcher,2409627X|24137448 +Russian Journal of Logistics and Transport Management,Petersburg State Transport University,23137002 +Russian Journal of Management,Infra-M Academic Publishing House,24096024| +Russian Journal of Marine Biology,Pleiades Publishing,10630740|16083377 +Russian Journal of Mathematical Physics,Pleiades Publishing,10619208|15556638 +Russian Journal of Mathematical Research Series A,Academic Publishing House Researcher,24109320| +Russian Journal of Non-Ferrous Metals,Allerton Press,10678212|1934970X +Russian Journal of Nondestructive Testing,Pleiades Publishing,10618309|16083385 +Russian Journal of Numerical Analysis and Mathematical Modelling,Walter de Gruyter GmbH,09276467|15693988 +Russian Journal of Organic Chemistry,Pleiades Publishing,10704280|16083393 +Russian Journal of Pacific Geology,Pleiades Publishing,18197140|18197159 +Russian Journal of Parasitology,Infra-M Academic Publishing House,19988435| +Russian Journal of Physical Chemistry A,Pleiades Publishing,00360244|1531863X +Russian Journal of Physical Chemistry B,Pleiades Publishing,19907931|19907923 +Russian Journal of Plant Physiology,Pleiades Publishing,10214437|16083407 +Russian Journal of Political Studies,Academic Publishing House Researcher,2410910X| +Russian Journal of Project Management,Infra-M Academic Publishing House,23062649| +Russian Journal of Retail Management,BIBLIO-GLOBUS Publishing House,24108596|24130028 +Russian Journal of Sociology,Academic Publishing House Researcher,24109118| +Russian Journal of Transplantology and Artificial Organs,V.I. Shimakov Federal Research Center of Transplantology and Artificial Organs,19951191|24126160 +RUSSIAN JUSTICE,Kniga - Service Agency Ltd.,2072909X| +Russian Law,The Publishing Group Jurist,18119077| +Russian Law Journal,Russian Law Journal,23098678|23123605 +Russian Linguistics,Springer-Verlag,03043487|15728714 +Russian Literature,Elsevier ,03043479| +Russian Mathematical Surveys,Turpion ,00360279|14684829 +Russian Mathematics,Allerton Press,1066369X|1934810X +Russian Metallurgy (Metally),Pleiades Publishing,00360295|15556255 +Russian Meteorology and Hydrology,Allerton Press,10683739|19348096 +Russian Microelectronics,Pleiades Publishing,10637397|16083415 +Russian Open Medical Journal,LLC Science and Innovations,23043415 +Russian Physics Journal,Springer-Verlag,10648887|15739228 +Russian Politics,Brill Academic Publishers,24518913|24518921 +Russian Politics and Law,Informa UK (Taylor & Francis),10611940|15580962 +Russian Social Science Review,Informa UK (Taylor & Francis),10611428|15577848 +Russian Studies in History,Informa UK (Taylor & Francis),10611983|15580881 +Russian Studies in Literature,Informa UK (Taylor & Francis),10611975|19447167 +Russian Studies in Philosophy,Informa UK (Taylor & Francis),10611967|15580431 +Russkaya Starina,Academic Publishing House Researcher,2313402X|24092118 +Russkii Arkhiv,Academic Publishing House Researcher,24089621|2413726X +Ruthenium-Catalyzed Enantioselective Epoxidation,Thieme Publishing Group,20600062 +Ruthenium–Arene Complexes,Thieme Publishing Group,100900 +RW,Nomos Verlag,18688098| +Rwanda Journal,African Journals Online ,23052678| +Rwanda Journal of Health Sciences,African Journals Online ,2226728X| +RYODORAKU,The Japanese Society of Ryodoraku Medicine,09130942|18849245 +S,Ankara University,13092111 +S/N Korean Humanities,S/N Korean Humanities,23840668|23840692 +SA Journal of Human Resource Management,AOSIS,16837584|2071078X +SA Journal of Industrial Psychology,AOSIS,02585200|20710763 +SA Journal of Information Management,AOSIS,20781865|1560683X +SA Orthopaedic Journal,Academy of Science of South Africa,23098309| +SA-CHONG(sa),Institute for the Study of History,12294446| +SAARC Journal of Agriculture,Bangladesh Journals Online,16828348|23128038 +SAARC Journal of Tuberculosis Lung Diseases and HIV/AIDS,Nepal Journals Online,18189741|20910959 +Sabaragamuwa University Journal,Sri Lanka Journals Online ,13913166| +Saber & Educar,Escola Superior de Educacao de Paula Frassinetti,16472144|16472144 +Saber Humano Revista Científica da Faculdade Antonio Meneghetti,Faculdade Antonio Meneguetti,24466298 +Sabornost,Centre for Evaluation in Education and Science,14509148| +Sabouraudia,Oxford University Press,00362174| +Sacris Erudiri,"""Brepols Publishers, NV""",07717776|22959025 +Sacris Erudiri,"""Brepols Publishers, NV""",07717776|22959025 +SAD The Journal of Siberian Studies,Sada Institute,21478104 +Sadhana,Springer-Verlag,02562499|09737677 +SAE International Journal of Aerospace,SAE International,19463855|19463901 +SAE International Journal of Alternative Powertrains,SAE International,21674205| +SAE International Journal of Commercial Vehicles,SAE International,19463928| +SAE International Journal of Engines,SAE International,19463944| +SAE International Journal of Fuels and Lubricants,SAE International,19463960| +SAE International Journal of Materials and Manufacturing,SAE International,19463987| +SAE International Journal of Passenger Cars - Electronic and Electrical Systems,SAE International,19464622| +SAE International Journal of Passenger Cars - Mechanical Systems,SAE International,19464002| +SAE International Journal of Transportation Safety,SAE International,23275634| +Saeculum,Bohlau Verlag,00805319|21944075 +Safer Communities,Emerald (MCB UP ),17578043|20428774 +SAFERE Southern African Feminist Review,African Journals Online ,10249451 +Safety,MDPI AG,2313576X +Safety and Health at Work,Elsevier ,20937911|20937997 +Safety Engineering,"""Faculty of Occupational Safety, University of Nis""",22177124| +Safety in Health,Springer (Biomed Central Ltd.),20565917|20565917 +Safety in Technosphere,Infra-M Academic Publishing House,1998071X| +Safety of Technogenic Environment,De Gruyter Open Sp. z o.o. ,22556923|22558705 +Safety Science,Elsevier ,09257535| +Safundi,Informa UK (Taylor & Francis),17533171|15431304 +Saga - Revista de Estudiantes de Filosofía,Universidad Nacional de Colombia,01248480| +SAGE Open,SAGE Publications,21582440 +SAGE Open Medical Case Reports,SAGE Publications,2050313X +SAGE Open Medicine,SAGE Publications,20503121 +SAGE Open Nursing,SAGE Publications,23779608 +SAGE Race Relations Abstracts,EBSCO Publishing,03079201| +Sağlık Bilimleri ve Meslekleri Dergisi,SAglik Bilimleri ve Meslekleri Dergisi,21487588 +Sağlık ve Hemşirelik Yönetimi Dergisi,Logos Medical Publication,2149018X|2149018X +SAGVNTVM Papeles del Laboratorio de Arqueología de Valencia,Universitat de Valencia,02103729|2174517X +SAHARA-J Journal of Social Aspects of HIV/AIDS,Informa UK (Taylor & Francis),17290376|18134424 +Sahel Medical Journal,Medknow Publications,11188561|11188561 +Sains Malaysiana,Penerbit Universiti Kebangsaan Malaysia (UKM Press),01266039| +Sains Tanah - Journal of Soil Science and Agroclimatology,"""Faculty of Agriculture, Sebelas Maret University (Journal System)""",14123606|23561424 +SAIS Review,Muse - Johns Hopkins University Press,10883142 +SAIS Review of International Affairs,Muse - Johns Hopkins University Press,19454724 +SAJ Cancer Science,"""Scholarena, LLC""",23756683 +SAJ Case Reports,"""Scholarena, LLC""",23757043 +Sakarya Medical Journal,"""LookUs Bilisim, Ltd.""",21462585|2146409X +Sakarya University Journal of Education,Sakarya University Journal of Education,21467455|21467455 +Saksaha A Journal of Manchu Studies,University of Michigan Library,2376581X +Sala Preta,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,15195279|22383867 +SALAM Jurnal Sosial dan Budaya Syar i,E-Journal System Portal of Syarif Hidayatullah State Islamic University,23561459| +Sales Business,Springer Fachmedien Wiesbaden GmbH,16167902|21928320 +Sales Management Review,Springer Fachmedien Wiesbaden GmbH,21963207|21963215 +Saline Systems,Springer (Biomed Central Ltd.),17461448| +Salud Colectiva,Universidad Nacional de Lanus,16692381|18518265 +Salud Mental,Instituto Nacional de Psiquiatria Ramon de la Fuente Muniz,01853325| +Salud Pública de México,Instituto Nacional de Salud Publica,00363634|00363634 +Salud Uninorte,Universidad del Norte,01205552|20117531 +Salud y Tecnología Veterinaria,Universidad Peruana Cayetano Heredia,23123907 +Salus Journal of Health Sciences,GN1 Genesis Network,24477826| +SALUTE E SOCIETÀ,Franco Angeli,17239427|19724845 +Samaru Journal of Information Studies,African Journals Online ,15965414 +Samisk senters skriftserie,UiT The Arctic University of Norway,08046093|18940986 +Sample Preparation,De Gruyter Open Sp. z o.o. ,2299677X +SAMRIDDHI A Journal of Physical Sciences Engineering and Technology,SMS Institute of Technology,22297111| +Samtíð,Samtid,22982396|2298240X +Samuel Beckett Today / Aujourd hui,Brill Academic Publishers,09273131|18757405 +San Francisco Estuary and Watershed Science,San Francisco Estuary and Watershed Science,15462366|15462366 +SANAMED,Centre for Evaluation in Education and Science,1452662X| +Sanat Tasarim Dergisi,Sanat Tasarim Dergisi,13092235| +Sanat ve Tasarım Dergisi,Sanat ve Tasarim Dergisi,13082264|21496595 +SANGYO EISEIGAKU ZASSHI,Japan Society for Occupational Health,13410725|1349533X +Sangyo Igaku,Japan Society for Occupational Health,00471879|18811302 +Sanidad Militar,Instituto de Salud Carlos III/BNCS/SciELO Espana,18878571| +Sankhya,Springer-Verlag,09727671| +Sankhya A,Springer-Verlag,0976836X|09768378 +Sankhya B,Springer-Verlag,09768386|09768394 +Sankofa,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,19836023 +Santalka,Vilnius Gediminas Technical University,1822430X|18224318 +Santalka Filologija Edulokogija,Vilnius Gediminas Technical University,2351714X|23357711 +Santalka filosofija komunikacija,Vilnius Gediminas Technical University,20296320|20296339 +Santé Décision Management,Lavoisier SAS,19608748| +Santé et systémique,Lavoisier SAS,17628792| +Santé mentale au Québec,Consortium Erudit,03836320|17083923 +Santé Publique,CAIRN,09953914| +Santé Société et Solidarité,PERSEE Program,16348176|17753945 +São Paulo em Perspectiva,SciELO,01028839|01028839 +São Paulo Journal of Mathematical Sciences,Springer-Verlag,19826907|23169028 +Sao Paulo Medical Journal,SciELO,15163180|15163180 +SAR and QSAR in Environmental Research,Informa UK (Taylor & Francis),1062936X|1029046X +SARAJEVO JOURNAL OF MATHEMATICS,Academy of Sciences and Arts of Bosnia anad Herzegovina,18400655|22331964 +Sarcoma,Hindawi Publishing Corporation,1357714X|13691643 +Sarhad Journal of Agriculture,Smith and Franklin Academic Publishing Corporation,10164383|22245383 +Sarsia,Informa UK (Taylor & Francis),00364827| +Sartre Studies International,Berghahn Books,13571559|15585476 +SAS Journal,International Journal of Spine Surgery,19359810| +Satellite Oceanography and Meteorology,Whioce Publishing Pte Ltd.,24248959| +SATS,Walter de Gruyter GmbH,16001974|18697577 +SAÜ Fen Bilimleri Enstitüsü Dergisi,Sakarya University Journal of Science,13014048|2147835X +Saúde (Santa Maria),Universidade Federal de Santa Maria,01034499|22365834 +Saúde e Desenvolvimento Humano,Centro Universitario La Salle - UNILASALLE,23178582 +Saúde e Pesquisa,Centro Universitario de Maringa,19831870|21769206 +Saúde e Sociedade,SciELO,01041290|01041290 +Saúde e Sociedade,SciELO,1041290 +Saúde em Debate,GN1 Genesis Network,01031104|23582898 +Saúde em Redes,Associacao Brasileira da Rede Unida,24464813|24464813 +Saúde em Revista,Instituto Educacional Piracicabano da Igreja Metodista,22381244 +Saúde Ética & Justiça,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,1414218X|23172770 +Saudi Endodontic Journal,Medknow Publications,16585984| +Saudi Journal for Health Sciences,Medknow Publications,22780521| +Saudi Journal of Anaesthesia,Medknow Publications,1658354X| +Saudi Journal of Biological Sciences,Elsevier ,1319562X| +Saudi Journal of Gastroenterology,Medknow Publications,13193767| +Saudi Journal of Kidney Diseases and Transplantation,Medknow Publications,13192442| +Saudi Journal of Medicine and Medical Sciences,Medknow Publications,1658631X| +Saudi Journal of Obesity,Medknow Publications,23472618| +Saudi Journal of Ophthalmology,Elsevier ,13194534| +Saudi Journal of Oral Sciences,Medknow Publications,16586816| +Saudi Journal of Sports Medicine,Medknow Publications,13196308| +Saudi Medical Journal,Saudi Medical Journal,03795284|16583175 +Saudi Pharmaceutical Journal,Elsevier ,13190164| +Saudi Surgical Journal,Medknow Publications,23203846| +Sauvegarde de l Enfance,Elsevier ,00365041| +Sauvegarde de lʼEnfance,Elsevier ,00365041| +Savannah Journal of Medical Research and Practice,African Journals Online ,22766839| +Savings and Development,JSTOR,3934551 +Savoir/Agir,CAIRN,19587856|19585535 +Savoirs,CAIRN,17634229|21114390 +Savoirs et clinique,CAIRN,16343298|17762871 +Savremene tehnologije,Centre for Evaluation in Education and Science,22179712| +Sba Controle & Automação Sociedade Brasileira de Automatica,SciELO,01031759|01031759 +Sbornik Mathematics,Turpion ,10645616|14684802 +Scalable Computing Practice and Experience,Scalable Computing: Practice and Experience,18951767 +Scandinavian Actuarial Journal,Informa UK (Taylor & Francis),03461238|00000000 +Scandinavian Audiology,Informa UK (Informa Healthcare),01050397| +Scandinavian Cardiovascular Journal,Informa UK (Taylor & Francis),14017431|16512006 +Scandinavian Economic History Review,Informa UK (Taylor & Francis),03585522|17502837 +Scandinavian Housing and Planning Research,Informa UK (Taylor & Francis),02815737| +Scandinavian International Business Review,Elsevier ,09629262| +Scandinavian Journal of Behaviour Therapy,Informa UK (Taylor & Francis),02845717|00000000 +Scandinavian Journal of Caring Sciences,Wiley Blackwell (Blackwell Publishing),02839318|14716712 +Scandinavian Journal of Clinical and Laboratory Investigation,Informa UK (Taylor & Francis),00365513|15027686 +Scandinavian Journal of Disability Research,Informa UK (Taylor & Francis),15017419|17453011 +Scandinavian Journal of Economics,Wiley Blackwell (Blackwell Publishing),03470520|14679442 +Scandinavian Journal of Educational Research,Informa UK (Taylor & Francis),00313831|14701170 +Scandinavian Journal of Food & Nutrition,Co-Action Publishing,17482976| +Scandinavian Journal of Forensic Science,De Gruyter Open Sp. z o.o. ,15039552|15039552 +Scandinavian Journal of Forest Research,Informa UK (Taylor & Francis),02827581|00000000 +Scandinavian Journal of Gastroenterology,Informa UK (Taylor & Francis),00365521|15027708 +Scandinavian Journal of Haematology,Wiley Blackwell (Blackwell Publishing),0036553X| +Scandinavian Journal of History,Informa UK (Taylor & Francis),03468755|03468755 +Scandinavian Journal of Hospitality and Tourism,Informa UK (Taylor & Francis),15022250|15022269 +Scandinavian Journal of Immunology,Wiley Blackwell (Blackwell Publishing),03009475|13653083 +Scandinavian Journal of Infectious Diseases,Informa UK (Taylor & Francis),00365548|16511980 +Scandinavian Journal of Logopedics and Phoniatrics,Informa UK (Taylor & Francis),08035032| +Scandinavian Journal of Management,Elsevier ,09565221| +Scandinavian Journal of Management Studies,Elsevier ,02817527| +Scandinavian Journal of Medicine and Science in Sports,Wiley Blackwell (Blackwell Publishing),09057188|16000838 +Scandinavian Journal of Metallurgy,Wiley Blackwell (Blackwell Publishing),03710459|16000692 +Scandinavian Journal of Nutrition,Informa UK (Taylor & Francis),11026480|00000000 +Scandinavian Journal of Occupational Therapy,Informa UK (Taylor & Francis),11038128|16512014 +Scandinavian Journal of Optometry and Visual Science,Norwegian Association of Optometry,18910882|18910890 +Scandinavian Journal of Pain,Elsevier ,18778860| +Scandinavian Journal of Plastic and Reconstructive Surgery,Informa UK (Taylor & Francis),00365556| +Scandinavian Journal of Plastic and Reconstructive Surgery and Hand Surgery,Informa UK (Taylor & Francis),02844311|16512073 +Scandinavian Journal of Primary Health Care,Informa UK (Taylor & Francis),02813432|15027724 +Scandinavian Journal of Psychology,Wiley Blackwell (Blackwell Publishing),00365564|14679450 +Scandinavian Journal of Public Health,SAGE Publications,14034948|16511905 +Scandinavian Journal of Rehabilitation Medicine,Informa UK (Taylor & Francis),00365505|00000000 +Scandinavian Journal of Rheumatology,Informa UK (Taylor & Francis),03009742|15027732 +Scandinavian Journal of Social Welfare,Wiley Blackwell (Blackwell Publishing),09072055| +Scandinavian Journal of Statistics,Wiley Blackwell (Blackwell Publishing),03036898|14679469 +Scandinavian Journal of Surgery,SAGE Publications,14574969|17997267 +Scandinavian Journal of the Old Testament,Informa UK (Taylor & Francis),09018328|09018328 +Scandinavian Journal of Thoracic and Cardiovascular Surgery,Informa UK (Taylor & Francis),00365580| +Scandinavian Journal of Trauma Resuscitation and Emergency Medicine,Springer (Biomed Central Ltd.),17577241|17577241 +Scandinavian Journal of Urology,Informa UK (Taylor & Francis),21681805|21681813 +Scandinavian Journal of Urology and Nephrology,Informa UK (Taylor & Francis),00365599|16512065 +Scandinavian Journal of Work Environment & Health,"""Scaninavian Journal of Work, Environment, and Health""",03553140|1795990X +Scandinavian Political Studies,Wiley Blackwell (Blackwell Publishing),00806757|14679477 +Scandinavian Psychologist,Scandinavian Psychologist,18945570 +Scandinavian Studies,University of Illinois Press,00365637|21638195 +Scando Slavica,Informa UK (Taylor & Francis),00806765|1600082X +Scanning,Wiley Blackwell (John Wiley & Sons),01610457|19328745 +Scars Burns & Healing,SAGE Publications,20595131 +Scene,Intellect,20443714|20443722 +Schedae Informaticae,De Gruyter Open Sp. z o.o. ,08600295| +Schizophrenia Bulletin,Oxford University Press,05867614|17451707 +Schizophrenia Research,Elsevier ,09209964| +Schizophrenia Research and Treatment,Hindawi Publishing Corporation,20902085|20902093 +Schizophrenia Research Cognition,Elsevier ,22150013| +Schmalenbach Business Review,Springer-Verlag,14392917|2194072X +Schmalenbachs Zeitschrift für betriebswirtschaftliche Forschung,Springer-Verlag,03412687|23666153 +Schmerzmedizin,Springer-Verlag,21942536|23641010 +Schmollers Jahrbuch,Duncker & Humblot GmbH,1439121X|18655742 +Scholarena Journal of Biotechnology,"""Scholarena, LLC""",23756713 +Scholarena Journal of Pharmacy and Pharmacology,"""Scholarena, LLC""",23752262 +Scholarly Notes of Komsomolsk-na-Amure State Technical University,Komsomolsk-na-Amure State Techical Unversity,20764359|22225218 +Scholarly Research Exchange,Hindawi Publishing Corporation (Syrexe),16878299|16878302 +Scholarpedia,Scholarpedia,19416016|19416016 +Scholars Research Journal,Medknow Publications,22495975| +Scholarship of Teaching and Learning in Psychology,American Psychological Association,23322101|2332211X +SCHOLE,"""Sagamore Publishing, LLC""",21624097 +Scholedge International Journal of Business Policy & Governance ISSN 2394-3351,Scholedge R&D Center,23943351 +Scholedge International Journal of Management & Development ISSN 2394-3378,Scholedge R&D Center,23943378 +Scholedge International Journal of Multidisciplinary & Allied Studies ISSN 2394-336X,Scholedge R&D Center,2394336X +School Effectiveness and School Improvement,Informa UK (Taylor & Francis),09243453|17445124 +School Leadership and Management,Informa UK (Taylor & Francis),13632434|13642626 +School Mental Health,Springer-Verlag,18662625|18662633 +School Organisation,Informa UK (Taylor & Francis),02601362|13600605 +School Psychology International,SAGE Publications,01430343|14617374 +School Psychology Quarterly,American Psychological Association,10453830|19391560 +School Psychology Review,National Association of School Psychologists,02796015| +School Science and Mathematics,Wiley Blackwell (Blackwell Publishing),00366803|19498594 +School Science Journal,The Korean Society for School Science,20937407| +Schools,The University of Chicago Press,15501175|21530327 +Schriftenreihe der Deutschen Gesellschaft für Geowissenschaften,Schweizerbart,18601782| +Schutzian Research,Philosophy Documentation Center,20670621|22481907 +Schweizer Archiv für Tierheilkunde,Gesellschaft Schweizer Tierarztinnen und Tierarzte,00367281|16642848 +Schweizerische Zeitschrift fur Forstwesen,Swiss Forestry Society,00367818|22351469 +Schweizerische Zeitschrift für Ganzheitsmedizin / Swiss Journal of Integrative Medicine,S. Karger AG,10150684|16637607 +Science,American Association for the Advancement of Science (AAAS),00368075|10959203 +Science & Education,Springer-Verlag,09267220|15731901 +Science & Engineering for Roads,"""Science and Education, Ltd.""",19938543| +Science & Global Security,Informa UK (Taylor & Francis),08929882|15477800 +Science & Justice,Elsevier ,13550306| +Science & Motricité,EDP Sciences,13781863|17821541 +Science & Practice Perspectives,NIDA/RTI International,19304307|19304315 +Science & Society,Guilford Publications,00368237| +Science & Spirit,Informa UK (Heldref Publications),10869808| +Science & Sports,Elsevier ,07651597| +Science & Technique,Belarusian National Technical University,22271031|24140392 +Science & Technology Libraries,Informa UK (Taylor & Francis),0194262X|15411109 +Science Activities Classroom Projects and Curriculum Ideas,Informa UK (Taylor & Francis),00368121|19401302 +Science Advances,American Association for the Advancement of Science (AAAS),23752548 +Science Almanac,Consulting Company Ucom,24117609 +Science and Children,National Science Teachers Association,00368148| +Science and Education of the Bauman MSTU,Science and Education of the Bauman MSTU,19940408 +Science and Engineering Ethics,Springer-Verlag,13533452|14715546 +Science and Engineering of Composite Materials,Walter de Gruyter GmbH,07921233|21910359 +Science and Global Security,Informa UK (Taylor & Francis),08929882|15477800 +Science and innovation,Co. Ltd. Ukrinformnauka,24099066|24099066 +Science and Modernity,Consulting Company Ucom,24112127 +Science and Public Policy,Oxford University Press,03023427|14715430 +Science and Technology,Scientific and Academic Publishing,21632669| +Science and Technology for the Built Environment,Informa UK (Taylor & Francis),23744731|2374474X +Science and Technology of Advanced Materials,Informa UK (Taylor & Francis),14686996|18785514 +Science and Technology of Nuclear Installations,Hindawi Publishing Corporation,16876075|16876083 +Science and Technology of Welding & Joining,Maney Publishing,13621718|00000000 +Science and Transport Progress Bulletin of Dnipropetrovsk National University of Railway Transport,Dnipropetrovsk National University of Railway Transport,23073489|23076666 +Science and world,"""Science and Education, Ltd.""",23084804| +Science as Culture,Informa UK (Taylor & Francis),09505431|14701189 +Science Bulletin,Consulting Company Ucom,24111872 +Science Bulletin,Springer-Verlag,20959273|20959281 +Science Bulletin of the Novosibirsk State Technical University,Novosibirsk State Technical University,18141196| +Science China Chemistry,Springer-Verlag,16747291|18691870 +Science China Earth Sciences,Springer-Verlag,16747313|18691897 +Science China Information Sciences,Springer-Verlag,1674733X|18691919 +Science China Information Sciences,Springer-Verlag,1674733X|18691919 +Science China Life Sciences,Springer-Verlag,16747305|18691889 +Science China Materials,Springer-Verlag,20958226|21994501 +Science China Mathematics,Springer-Verlag,16747283|18691862 +Science China Physics Mechanics and Astronomy,Springer-Verlag,16747348|18691927 +Science China Technological Sciences,Springer-Verlag,16747321|18691900 +Science Communication,SAGE Publications,10755470|15528545 +Science Discovery,Science Publishing Group,23310642| +Science Editing,Korean Council of Science Editors,22877835|22887474 +Science Education,Wiley Blackwell (John Wiley & Sons),00368326|1098237X +Science Education Society,Consulting Company Ucom,24112224 +Science Fiction Film and Television,Liverpool University Press,17543770|17543789 +Science Fiction Studies,"""SF-TH, Inc.""",00917729|23276207 +Science Foundation in China,CrossRef test user,10050841| +Science in China Series A Mathematics,Springer-Verlag,10069283|18622763 +Science in China Series B Chemistry,Springer-Verlag,10069291|18622771 +Science in China Series C Life Sciences,Springer-Verlag,10069305|18622798 +Science in China Series D Earth Sciences,Springer-Verlag,10069313|18622801 +Science in China Series F Information Sciences,Springer-Verlag,10092757|18622836 +Science in Context,Cambridge University Press,02698897|14740664 +Science Innovation,Science Publishing Group,23287861| +Science Insights,"""Bonoi Science Advancement and Education, LLC""",23728191|23295856 +Science Insights Education,"""Bonoi Science Advancement and Education, LLC""",23788100 +Science Insights Materials and Chemistry,"""Bonoi Science Advancement and Education, LLC""",23796464 +Science Insights Medicine,"""Bonoi Science Advancement and Education, LLC""",23788097 +Science intensive technologies in mechanical engineering,Infra-M Academic Publishing House,22234608| +Science International,Science International,23051884| +Science Journal of Agricultural Research and Management,Science Journal Publications,22768572 +Science Journal of Analytical Chemistry,Science Publishing Group,23768045| +Science Journal of Applied Mathematics and Statistics,Science Publishing Group,23769491| +Science Journal of Business and Management,Science Publishing Group,23310626| +Science Journal of Chemistry,Science Publishing Group,23300981| +Science Journal of Circuits Systems and Signal Processing,Science Publishing Group,23269065| +Science Journal of Clinical Medicine,Science Publishing Group,23272724| +Science Journal of Education,Science Publishing Group,23290900| +Science Journal of Energy Engineering,Science Publishing Group,2376810X| +Science Journal of Public Health,Science Publishing Group,23287942| +Science Museum Group Journal,The Science Museum,20545770 +Science News,Wiley Blackwell (John Wiley & Sons),00368423|19430930 +Science of Advanced Materials,American Scientific Publishers,19472935|19472943 +Science of Aging Knowledge Environment,American Association for the Advancement of Science (AAAS),15396150 +Science of Computer Programming,Elsevier ,01676423| +Science of Sintering,National Library of Serbia,0350820X|18207413 +Science Park,Laxmi Book Publication,23218045 +Science phyicse,Science in China Press,16747275| +Science Postprint,"""GH, Inc.""",21879834 +Science Proceedings,"""Smart Science and Technology, LLC""",23757795 +Science Progress,Science Reviews 2000 LTD.,00368504| +Science Religion and Culture,Smith and Franklin Academic Publishing Corporation,2055222X|2055222X +Science Research,Science Publishing Group,23290935| +Science Review,"""Science and Education, Ltd.""",18154972| +Science s STKE,American Association for the Advancement of Science (AAAS),15258882 +Science Scope,National Science Teachers Association,08872376| +Science Signaling,American Association for the Advancement of Science (AAAS),19450877|19379145 +Science Technology & Human Values,SAGE Publications,01622439|15528251 +Science Technology & Society,SAGE Publications,09717218|09730796 +Science Technology and Arts Research Journal,African Journals Online ,22267522|23053372 +Science Technology and Development,Science Alert,02546418| +Science technology and education,OLIMP,23128267|24135801 +Science Translational Medicine,American Association for the Advancement of Science (AAAS),19466234|19466242 +Science World Journal,African Journals Online ,15976343 +Science-Business eXchange,Nature Publishing Group,19453477| +ScienceAsia,Science Society of Thailand,15131874| +ScienceOpen Astronomy & Astrophysics,ScienceOpen,21973504 +ScienceOpen Chemistry,ScienceOpen,21973512 +ScienceOpen Life Sciences,ScienceOpen,2197361X +ScienceOpen Material Science,ScienceOpen,21973644 +ScienceOpen Medicine,ScienceOpen,21973660 +ScienceOpen Posters,ScienceOpen,21998442 +ScienceOpen Research,ScienceOpen,21991006 +ScienceOpen Social & Behavioral Sciences,ScienceOpen,21973709 +ScienceRise,Private Company Technology Center,23136286|23138416 +Sciences & Nature,African Journals Online ,18120741 +Sciences de la société,OpenEdition,11681446|22752145 +Sciences des Aliments,Lavoisier SAS,02408813| +Sciences du jeu,OpenEdition,22692657 +Sciences et Technologies de l Automatique,SEE,19543522 +Sciences et Technologies pour le Handicap,Lavoisier SAS,19602081| +Sciences in Cold and Arid Regions,China Science Publishing & Media Ltd.,16743822| +Sciences of Soils,Springer-Verlag,14329492 +Sciences sociales et santé,PERSEE Program,02940337|17775914 +Sciences sociales et sport,CAIRN,19677359|22645748 +Scientia,Universidade do Vale do Rio Dos Sinos - UNISINOS,01041770| +Scientia Africana,African Journals Online ,11181931|11181931 +Scientia Agraria,Universidade Federal do Parana,15191125|19832443 +Scientia Agraria Paranaensis,Revista Scientia Agraria Paranaensis,19831471 +Scientia Agricola,SciELO,01039016|01039016 +Scientia Agriculturae,Progressive Science Publications,23110228|2310953X +Scientia Agriculturae Bohemica,Walter de Gruyter GmbH,12113174|12113174 +Scientia Agropecuaria,Scientia Agropecuaria,20779917|23066741 +Scientia Amazonia,Scientia Amazonia,22381910 +Scientia Canadensis Canadian Journal of the History of Science Technology and Medicine,Consortium Erudit,08292507|19187750 +Scientia Chromatographica,Editora Cubo Multimidia,19844433|19844433 +Scientia cum Industria,Universidade Caixias do Sul,23185279 +Scientia et Fides,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,23007648|23535636 +Scientia Forestalis,Instituto de Pesquisa e Estudos Florestais (IPEF),14139324|23181222 +Scientia Horticulturae,Elsevier ,03044238| +Scientia International Review,Istituto Scientia,22822119 +Scientia Iranica,Elsevier ,10263098| +Scientia Iuris,Universidade Estadual de Londrina,14156490|21788189 +Scientia Marina,Departmento de Publicaciones del CSIC,02148358|18868134 +Scientia Medica,EDIPUCRS,18065562|19806108 +Scientia Militaria South African Journal of Military Studies,Stellenbosch University - Scientia Militaria,10228136|22240020 +Scientia Pharmaceutica,Osterreichische Pharmazeutische Gesellschaft,00368709|22180532 +Scientia Plena,Associacao Sergipana de Ciencia,18082793 +Scientia Prima,Scientia Prima,24467804|23184299 +Scientia Sinica Chimica,Science in China Press,16747224| +Scientia Sinica Informationis,Science in China Press,16747267| +Scientia Sinica Mathematica,Science in China Press,16747216| +Scientia Sinica Physica Mechanica & Astronomica,Science in China Press,16721780| +Scientia Sinica Technologica,Science in China Press,16747259| +Scientia Sinica Vitae,Science in China Press,16747232| +Scientia Traductionis,Universidade Federal de Santa Catarina,19804237|19804237 +Scientiae Studia,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,16783166|23168994 +Scientiam Juris,Escola Superior de Sustentabilidade,23183039 +Scientific American,Nature Publishing Group,00368733| +Scientific American A Matter of Time,Nature Publishing Group,19361513| +Scientific American Mind,Nature Publishing Group,15552284| +Scientific American Sp,Nature Publishing Group,10480943| +Scientific and Technical Information Processing,Allerton Press,01476882|19348118 +Scientific and technical journal of information technologies mechanics and optics,ITMO University,22261494| +Scientific Annals of Computer Science,Scientific Annals of Computer Science,18438121|22482695 +Scientific Annals of Stefan cel Mare University of Suceava Geography Series,Stefan cel Mare University of Suceava,15831469| +Scientific Bulletin,Walter de Gruyter GmbH,12245178 +Scientific Data,Nature Publishing Group,20524463 +Scientific Drilling,Copernicus GmbH,18163459 +Scientific Event Alert Network Bulletin,Smithsonian Institution,07317573| +Scientific Horizons,Institute of Physical Optics,20775679| +Scientific Issues Jan Długosz University in Częstochowa Mathematics,Akademia im. Jana Dlugosza w Czestochowie,18960286| +Scientific Journal of Dentistry,Incessant Nature Science Publishers Pvt Ltd,23947144| +Scientific Journal of Pure and Applied Sciences,Sjournals,23222956 +Scientific Journal of Riga Technical University Computer Sciences,De Gruyter Open Sp. z o.o. ,14077493| +Scientific Journal of Riga Technical University Construction Science,De Gruyter Open Sp. z o.o. ,14077329| +Scientific Journal of Riga Technical University Environmental and Climate Technologies,De Gruyter Open Sp. z o.o. ,16915208| +Scientific Journal of Riga Technical University Power and Electrical Engineering,De Gruyter Open Sp. z o.o. ,14077345| +Scientific Journal of Silesian University of Technology Series Transport,Silesian University of Technology,02093324|24501549 +Scientific Journals of Rzeszów University of Technology Series Economics and Humanities,Rzeszow University of Technology,12343684| +Scientific Journals of Rzeszów University of Technology Series Electrotechnics,Rzeszow University of Technology,02092662|23006358 +Scientific Journals of Rzeszów University of Technology Series Journal of Mathematics and Applications,Rzeszow University of Technology,17336775|23009926 +Scientific Journals of Rzeszów University of Technology Series Management and Marketing,Rzeszow University of Technology,12343706| +Scientific Letters of Rzeszow University of Technology - Mechanics,Rzeszow University of Technology,02092689|23005211 +Scientific Medical Journal,African Journals Online ,11105607 +Scientific Modeling and Simulation SMNS,Springer-Verlag,18748554|18748562 +Scientific Papers of the Bureau of Standards,National Institute of Standards and Technology,00966231| +Scientific Phone Apps and Mobile Devices,Springer (Biomed Central Ltd.),23644958 +Scientific Proceedings Faculty of Mechanical Engineering,De Gruyter Open Sp. z o.o. ,13381954|13385011 +Scientific Programming,Hindawi Publishing Corporation,10589244|1875919X +Scientific Publications of the State University of Novi Pazar Series A Applied Mathematics Informatics and mechanics,Centre for Evaluation in Education and Science,22175539| +Scientific Reports,Nature Publishing Group,20452322 +Scientific Research and Essays,Academic Journals,19922248 +Scientific Research of the Institute of Mathematics and Computer Science,Czestochowa University of Technology,17315417| +Scientific Research of the Institute of Mathematics and Computer Science,Czestochowa University of Technology,17315417| +Scientific Studies of Reading,Informa UK (Taylor & Francis),10888438|1532799X +Scientific Study of Literature,John Benjamins Publishing Company,22104372|22104380 +Scientific Technical Review,Centre for Evaluation in Education and Science,18200206| +Scientific World,Nepal Journals Online,19968949| +Scientifica,Hindawi (Scientifica),2090908X +Scientist and Citizen,Informa UK (Taylor & Francis),21551278 +Scientometrics,Springer-Verlag,01389130|15882861 +SCIENZE REGIONALI,Franco Angeli,17203929|2035603X +ScieXplore International Journal of Research in Science,Vellalar College for Women,23498919|23500999 +Scimetr,Kowsar Medical Institute,22137610|23519681 +Scire Salutis,Escola Superior de Sustentabilidade,22369600 +Scoliosis,Springer (Biomed Central Ltd.),17487161|17487161 +Scoliosis and Spinal Disorders,Springer (Biomed Central Ltd.),23971789 +Scottish Affairs,Edinburgh University Press,09660356|2053888X +Scottish Archaeological Journal,Edinburgh University Press,14715767|17552028 +Scottish Economic & Social History,Edinburgh University Press,02695030| +Scottish Geographical Journal,Informa UK (Taylor & Francis),14702541|1751665X +Scottish Geographical Magazine,Informa UK (Taylor & Francis),00369225| +Scottish Journal of Geology,Geological Society of London,00369276|20414951 +Scottish Journal of Political Economy,Wiley Blackwell (Blackwell Publishing),00369292|14679485 +Scottish Journal of Theology,Cambridge University Press,03369306|14753065 +Scottish Medical Journal,SAGE Publications,00369330|20456441 +Screen,Oxford University Press,00369543|14602474 +Screening,Elsevier ,09256164| +Scrinium,Brill Academic Publishers,18177530|18177565 +SCRIPT-ed,Wiley Blackwell (AHRC Research Centre),17442567|17442567 +Scripta,Pontificia Universidade Catolica de Minas Gerais,15164039|23583428 +Scripta Materialia,Elsevier ,13596462| +Scripta Medica,Medical Society of the Republic of Srpska,03508218|23037954 +Scripta Metallurgica,Elsevier ,00369748| +Scripta Metallurgica et Materialia,Elsevier ,0956716X| +SCRIPTA Revista Internacional de Literatura i Cultura Medieval i Moderna,Universitat de Valencia,23404841 +Scripta Scientifica Medica,Medical University Prof. Dr. Praskev Stoyanov - Varna,05823250|13146408 +Scripta Scientifica Medicinae Dentalis,Medical University Prof. Dr. Praskev Stoyanov - Varna,23677236|23677244 +Scripta Scientifica Pharmaceutica,Medical University Prof. Dr. Praskev Stoyanov - Varna,23676000|23675500 +Scripta Scientifica Salutis Publicae,Medical University Prof. Dr. Praskev Stoyanov - Varna,23677325|23677333 +Scripta Theologica,Universidad de Navarra,00369764|22546227 +Scriptorium,PERSEE Program,00369772| +Scriptura,Petra Christian University,1978385X|1978385X +Scriptura,Stellenbosch University - Scriptura,02541807|2305445X +Scrutiny2,Informa UK (Taylor & Francis),18125441|17535409 +Sculpture Journal,Liverpool University Press,13662724|17569923 +SDMIMD Journal of Management,SDMIMD Journal of Management,09760652|23207906 +SDÜ Fen Bilimleri Enstitüsü Dergisi,SDU Journal of Natural and Applied Sciences,13007688|13086529 +Sealing Technology,Elsevier ,13504789| +Seanchas Ardmhacha Journal of the Armagh Diocesan Historical Society,JSTOR,04880196| +Search,Informa UK (Heldref Publications),19431848|19431856 +SEARCH The Journal of the South East Asia Research Centre for Communication and Humanities,Springer - Global Science Journals,2229872X +SecEd,Mark Allen Group,14797704| +SECI Oncology,South Egypt Cancer Institute,23148500 +Second language Research,SAGE Publications,02676583|14770326 +Secuencia,Instituto de Investigaciones Dr. Jose Maria Luis Mora,01860348|23958464 +Secularism and Nonreligion,"""Ubiquity Press, Ltd.""",20536712|20536712 +Século XXI - Revista de Ciências Sociais,Universidade Federal de Santa Maria,21798095|22366725 +Securitas Vialis,Springer-Verlag,18889697|19891679 +Sécurité globale,CAIRN,19596782|22712194 +Securities Market Journal,African Journals Online ,1899759 +Securitologia,Index Copernicus International,18984509| +Security and Communication Networks,Wiley Blackwell (John Wiley & Sons),19390114|19390122 +Security and Defence,Index Copernicus International,23008741| +Security and Human Rights,Brill Academic Publishers,18747337|18750230 +Security Dialogue,SAGE Publications,09670106|00000000 +Security Index A Russian Journal on International Security,Informa UK (Taylor & Francis),19934270|21517495 +Security Informatics,Springer (Biomed Central Ltd.),21908532|21908532 +Security Journal,Nature Publishing Group - Macmillan Publishers,09551662|09551662 +Security Studies,Informa UK (Taylor & Francis),09636412|15561852 +SED Journal of Art Education,Sada Institute,21478007 +Sedimentary Geology,Elsevier ,00370738| +Sedimentology,Wiley Blackwell (Blackwell Publishing),00370746| +Sedimentology,Wiley Blackwell (Blackwell Publishing),14693496|13653091 +Seed Science and Technology,International Seed Testing Association,02510952|18195717 +Seed Science Research,Cambridge University Press,09602585|14752735 +SEEG,Index Copernicus International,2354029X +Seeing and Perceiving,Brill Academic Publishers,18784755|18784763 +SEER,Nomos Verlag,14352869| +SEEU Review,De Gruyter Open Sp. z o.o. ,18578462 +Sefarad,Departmento de Publicaciones del CSIC,00370894|1988320X +SEG Technical Program Expanded Abstracts,Society of Exploration Geophysicists,10523812| +Seibutsu Butsuri,Biophysical Society of Japan,05824052|13474219 +SEIBUTSU BUTSURI KAGAKU,Japanese Electrophoresis Society,00319082|13499785 +Seikei-Kakou,The Japan Society of Polymer Processing,09154027|18837417 +Seismic Instruments,Allerton Press,07479239|19347871 +Seismic Isolation and Protective Systems,Mathematical Sciences Publishers,21507902 +Seismological Research Letters,Seismological Society,08950695|19382057 +Seizième Siècle,PERSEE Program,17744466|17753856 +Seizure,Elsevier ,10591311| +Sel skokhozyaistvennaya Biologiya,Sel'skokhozyaistvennaya Biologiya Editorial Office (SBEO),01316397|23134836 +SEL Studies in English Literature 1500-1900,Muse - Johns Hopkins University Press,15229270 +SELÇUK ÜNİVERSİTESİ İLETİŞİM FAKÜLTESİ AKADEMİK DERGİSİ,Selcuk Iletisim,13022865|21482942 +Selcuk University Journal of Engineering Science and Technology,"""Selcuk University Journal of Engineering, Science, and Technology""",21479364| +Selecta Mathematica,Springer-Verlag,10221824|14209020 +Selected Annual Reviews of the Analytical Sciences,The Royal Society of Chemistry,03009963| +Selected Decisions,International Monetary Fund,16079450 +Selected Decisions,International Monetary Fund,10874275| +Selected Decisions and Selected Documents of the International Monetary Fund,International Monetary Fund,00941735| +Selected Scientific Papers - Journal of Civil Engineering,De Gruyter Open Sp. z o.o. ,13387278|13387278 +Selection,Akademiai Kiado Zrt.,15851931|1588287X +Selective Cancer Therapeutics,Mary Ann Liebert,10430733| +Selekcija i semenarstvo,Centre for Evaluation in Education and Science,03545881| +Self & Society,Informa UK (Taylor & Francis),03060497|23745355 +Self and Identity,Informa UK (Taylor & Francis),15298868|15298876 +Self-Healing Materials,De Gruyter Open Sp. z o.o. ,22991034 +Self/Nonself,Landes Bioscience,19382030|19382049 +SeMA Journal,Springer-Verlag,15759822|22543902 +Semantic Web,IOS Press,15700844|22104968 +Semantics and Linguistic Theory,Semantics and Pragmatics,21635951 +Semantics and Pragmatics,Semantics and Pragmatics,19378912 +Semat,Scientific Publishing Center,2210173X| +SEMERGEN - Medicina de Familia,Elsevier ,11383593| +Semiconductor Physics Quantum Electronics & Optoelectronics,Co. Ltd. Ukrinformnauka,15608034|16056582 +Semiconductor Science and Technology,IOP Publishing,02681242|13616641 +Semiconductors,Pleiades Publishing,10637826|10906479 +Semigroup Forum,Springer-Verlag,00371912|14322137 +Semina Ciências Agrárias,Universidade Estadual de Londrina,1676546X|16790359 +Semina Ciências Biológicas e da Saúde,Universidade Estadual de Londrina,16765435|16790367 +Semina Ciências Exatas e Tecnológicas,Universidade Estadual de Londrina,16765451|16790375 +Semina Ciências Sociais e Humanas,Universidade Estadual de Londrina,16765443|16790383 +Semina Scientiarum,Pontifical Universtiy of John Paul II in Krakow,16443365|23916850 +Séminaire de théorie spectrale et géométrie,Cellule MathDoc/CEDRAM,16245458|21189242 +Séminaire Laurent Schwartz — EDP et applications,Cellule MathDoc/CEDRAM,22660607 +Seminar A Journal of Germanic Studies,University of Toronto Press Inc,00371939|1911026X +Seminarios de la Fundación Española de Reumatología,Elsevier ,15773566| +Seminars in Anesthesia Perioperative Medicine and Pain,Elsevier ,02770326| +Seminars in Arthritis and Rheumatism,Elsevier ,00490172| +Seminars in Arthroplasty,Elsevier - WB Saunders,10454527| +Seminars in Avian and Exotic Pet Medicine,Elsevier ,1055937X| +Seminars in Breast Disease,Elsevier - WB Saunders,10924450| +Seminars in Cancer Biology,Elsevier ,1044579X|10963650 +Seminars in Cardiothoracic and Vascular Anesthesia,SAGE Publications,10892532| +Seminars in Cardiovascular Medicine,De Gruyter Open Sp. z o.o. ,18227767 +Seminars in Cell and Developmental Biology,Elsevier ,10849521|10963634 +Seminars in Cell Biology,Elsevier ,10434682|1522967X +Seminars in Cerebrovascular Diseases and Stroke,Duke University Press,15289931| +Seminars in Clinical Neuropsychiatry,Elsevier ,10843612| +Seminars in Colon and Rectal Surgery,Elsevier - WB Saunders,10431489| +Seminars in Cutaneous Medicine and Surgery,"""Frontline Medical Communications, Inc.""",10855629| +Seminars in Dermatology,Elsevier ,0278145X| +Seminars in Developmental Biology,Elsevier ,10445781| +Seminars in Diagnostic Pathology,Elsevier - WB Saunders,07402570| +Seminars in Dialysis,Wiley Blackwell (Blackwell Publishing),08940959|1525139X +Seminars in Fetal and Neonatal Medicine,Elsevier ,1744165X| +Seminars in Hearing,Thieme Publishing Group,07340451|10988955 +Seminars in Hematology,Elsevier - WB Saunders,00371963| +Seminars in Immunology,Elsevier ,10445323|10963618 +Seminars in Immunopathology,Springer-Verlag,18632297|18632300 +Seminars In Inflammatory Bowel Disease,"""Decker, Inc.""",14968290 +Seminars in Integrative Medicine,Elsevier ,15431150| +Seminars in Interventional Radiology,Thieme Publishing Group,07399529|10988963 +Seminars in Laparoscopic Surgery,Elsevier - WB Saunders,10715517| +Seminars in Liver Disease,Thieme Publishing Group,02728087|10988971 +Seminars in Musculoskeletal Radiology,Thieme Publishing Group,01897860|1098898X +Seminars in Neonatology,Elsevier ,10842756| +Seminars in Nephrology,Elsevier ,02709295| +Seminars in Neurology,Thieme Publishing Group,02718235|10989021 +Seminars in Neuroscience,Elsevier ,10445765|10981284 +Seminars in Neurosurgery,Thieme Publishing Group,15268012|15264572 +Seminars in Nuclear Medicine,Elsevier - WB Saunders,00012998| +Seminars in Oncology,Elsevier - WB Saunders,00937754| +Seminars in Oncology Nursing,Elsevier ,07492081| +Seminars in Ophthalmology,Informa UK (Taylor & Francis),08820538|17445205 +Seminars in Orthodontics,Elsevier - WB Saunders,10738746| +Seminars in Pain Medicine,Elsevier ,15375897| +Seminars in Pediatric Infectious Diseases,Elsevier - WB Saunders,10451870| +Seminars in Pediatric Neurology,Elsevier ,10719091| +Seminars in Pediatric Surgery,Elsevier - WB Saunders,10558586| +Seminars in Perinatology,Elsevier - WB Saunders,01460005| +Seminars in Plastic Surgery,Thieme Publishing Group,15352188|15360067 +Seminars in Preventive and Alternative Medicine,Elsevier ,15564061| +Seminars in Radiation Oncology,Elsevier ,10534296| +Seminars in Radiologic Technology,Elsevier - WB Saunders,1070535X| +Seminars in Reproductive Medicine,Thieme Publishing Group,15268004|15264564 +Seminars in Respiratory and Critical Care Medicine,Thieme Publishing Group,10693424|10989048 +Seminars in Respiratory Infections,Elsevier - WB Saunders,08820546| +Seminars in Roentgenology,Elsevier ,0037198X| +Seminars in Speech and Language,Thieme Publishing Group,07340478|10989056 +Seminars in Spine Surgery,Elsevier - WB Saunders,10407383| +Seminars in Surgical Oncology,Wiley Blackwell (John Wiley & Sons),87560437|10982388 +Seminars in Thoracic and Cardiovascular Surgery,Elsevier - WB Saunders,10430679| +Seminars in Thoracic and Cardiovascular Surgery Pediatric Cardiac Surgery Annual,Elsevier - WB Saunders,10929126| +Seminars in Thrombosis and Hemostasis,Thieme Publishing Group,00946176|10989064 +Seminars in Ultrasound CT and MRI,Elsevier - WB Saunders,08872171| +Seminars in Urologic Oncology,Elsevier - WB Saunders,10810943| +Seminars in Vascular Medicine,Thieme Publishing Group,15289648|15293505 +Seminars in Vascular Surgery,Elsevier - WB Saunders,08957967| +Seminars in Veterinary Medicine and Surgery Small Animal,Elsevier ,08820511| +Seminars in Virology,Elsevier ,10445773|10981292 +Semioses,Sociedade Unificada de Ensino Augusto Motta -UNISUAM,1981996X +Semiotic Scene,Philosophy Documentation Center,01960865| +Semiotica,Walter de Gruyter GmbH,00371998|16133692 +Semitica et Classica,"""Brepols Publishers, NV""",20315937|22959041 +Sen i Gakkaishi,Society of Fiber Science & Technology Japan,00379875|18842259 +Sen i Kikai Gakkaishi (Journal of the Textile Machinery Society of Japan),The Textile Machinery Society of Japan,03710580|18801994 +Sen-iso Kogyo,Society of Fiber Science & Technology Japan,18842283 +Sen-ito Kogyo,Society of Fiber Science & Technology Japan,18842275 +Senckenbergiana lethaea,Springer-Verlag,00372110| +Senckenbergiana maritima,Springer-Verlag,0080889X| +Senologie - Zeitschrift für Mammadiagnostik und -therapie,Thieme Publishing Group,16116453|1611647X +Sensing and Bio-Sensing Research,Elsevier ,22141804| +Sensing and Imaging,Springer-Verlag,15572064|15572072 +Sensing and Instrumentation for Food Quality and Safety,Springer-Verlag,19327587|19329954 +Sensor Letters,American Scientific Publishers,1546198X|15461971 +Sensor Review,Emerald (MCB UP ),02602288|00000000 +Sensoria A Journal of Mind Brain and Culture,Swinburne University of Technology,22038469 +Sensors,MDPI AG,14248220 +Sensors and Actuators,Elsevier ,02506874| +Sensors and Actuators A Physical,Elsevier ,09244247| +Sensors and Actuators B Chemical,Elsevier ,09254005| +Sensors and Materials,MYU K.K.,09144935| +Sensors Update,Wiley Blackwell (John Wiley & Sons),14322404|16168984 +Sensory Neuron,Brill Academic Publishers,15675157|15685659 +SENTENTIA European Journal of Humanities and Social Sciences,"""NB-Media, Ltd.""",13393057|13393057 +Seoul Law Review,"""Law Research Institute, University of Seoul""",19765169| +Seoul National University the Journal of Humanites,Journal of Humanities,15983021| +Seoul Tax Law Review,Tax Law Association,15984796| +Separation and Purification Methods,Informa UK (Marcel Dekker),03602540|15256022 +Separation and Purification Reviews,Informa UK (Taylor & Francis),15422119|15422127 +Separation and Purification Technology,Elsevier ,13835866| +Separation Science,Informa UK (Taylor & Francis),00372366| +Separation Science and Technology,Informa UK (Taylor & Francis),01496395|15205754 +Separations Technology,Elsevier ,09569618| +Sepsis,Springer (Kluwer Academic Publishers),13850229| +Septentrio Conference Series,UiT The Arctic University of Norway,23873086 +Septentrio Educational,UiT The Arctic University of Norway,24641464 +Septentrio Reports,UiT The Arctic University of Norway,23874597 +Seqüência estudos jurídicos e políticos,Universidade Federal de Santa Catarina,01019562|21777055 +Sequencing,Hindawi Publishing Corporation,20900325|20900333 +Sequential Analysis,Informa UK (Taylor & Francis),07474946|15324176 +Sequential Nazarov–Fluorination with Copper Catalysts,Thieme Publishing Group,20300565 +Ser Educational Acmeology Developmental Psychology,Saratov State University,23049790| +Serbian Astronomical Journal,National Library of Serbia,1450698X|18209289 +Serbian Journal of Dermatology and Venerology,De Gruyter Open Sp. z o.o. ,18210902|18210902 +Serbian Journal of Electrical Engineering,National Library of Serbia,14514869|22177183 +Serbian Journal of Experimental and Clinical Research,Walter de Gruyter GmbH,18208665|2335075X +Serbian Journal of Management,Centre for Evaluation in Education and Science,14524864|22177159 +Serbian Studies Journal of the North American Society for Serbian Studies,Muse - Johns Hopkins University Press,19419511 +Serials Review,Informa UK (Taylor & Francis),00987913|1879095X +Serials The Journal for the Serials Community,UKSG,09530460|14753308 +SERIEs,Springer-Verlag,18694187|18694195 +Series Earth Sciences,Saratov State University,18197663| +Series History International Relations,Saratov State University,18194907| +Series Physics,Saratov State University,18173020| +Series Statistics,Informa UK (Taylor & Francis),03233944| +Serodiagnosis and Immunotherapy in Infectious Disease,Elsevier ,08880786| +Service & Tourism Current Challenges,Infra-M Academic Publishing House,19950411| +Service Business,Springer-Verlag,18628516|18628508 +Service Industries Journal,Informa UK (Taylor & Francis),02642069|17439507 +Service Industries Review,Informa UK (Taylor & Francis),02628546| +Service Oriented Computing and Applications,Springer-Verlag,18632386|18632394 +Service Science,Institute for Operations Research and the Management Sciences,21643962|21643970 +Service Science and Management,Hans Publishers,23247908|23247916 +Service Science and Management Research,"""Science and Engineering Publishing, Co.""",2327168X| +Service social,Consortium Erudit,17081734 +Service social,Consortium Erudit,17081734 +Service social,Consortium Erudit,00372633|17081734 +Services in Russia and abroad,Infra-M Academic Publishing House,1995042X| +Services Marketing Quarterly,Informa UK (Taylor & Francis),15332969|15332977 +Serviço Social & Sociedade,SciELO,01016628|23176318 +Serviço Social em Revista,Universidade Estadual de Londrina,16794842|16794842 +Servis plus,Infra-M Academic Publishing House,19937768| +Sessile Organisms,The Sessile Organisms Society of Japan,13424181|18834701 +Sessions d étude - Société canadienne d histoire de l Église catholique,Consortium Erudit,03186172|19277067 +Sessões do Imaginário,EDIPUCRS,15169294|19803710 +Sestrinska rec,Centre for Evaluation in Education and Science,03548422| +Sestrinski glasnik/Nursing Journal,Croatian Nurses Association,13317563|1848705X +SET EXPO PROCEEDINGS,Sociedade Brasileira de Engenharia de Televisao (SET),24470481|2447049X +SET INTERNATIONAL JOURNAL OF BROADCAST ENGINEERING,Sociedade Brasileira de Engenharia de Televisao (SET),24469246|24469432 +set Research Information for Teachers,"""NZCER Press, New Zealand Council for Educational Research""",01106376|22532145 +SET Yearbook Media & Entertainment,Sociedade Brasileira de Engenharia de Televisao (SET),24473235|24473243 +Set-Valued Analysis,Springer-Verlag,09276947|1572932X +Set-Valued and Variational Analysis,Springer-Verlag,18770533|18770541 +SETTING,Franco Angeli,11243899|19725175 +Settler Colonial Studies,Informa UK (Taylor & Francis),2201473X|18380743 +Settler Colonial Studies,Informa UK (Taylor & Francis),2201473X|18380743 +Seventeenth-Century French Studies,Maney Publishing,02651068|17522692 +Seventeenth-Century French Studies Newsletter,Informa UK (Taylor & Francis),01425080| +Sewanee Review,Muse - Johns Hopkins University Press,1934421X +Sex Education,Informa UK (Taylor & Francis),14681811|00000000 +Sex Roles,Springer-Verlag,03600025|15732762 +Sexologies,Elsevier ,11581360| +Sexual & Relationship Therapy,Informa UK (Taylor & Francis),14681994|14681749 +Sexual & Reproductive Healthcare,Elsevier ,18775756| +Sexual Abuse A Journal of Research and Treatment,SAGE Publications,10790632|1573286X +Sexual Addiction & Compulsivity,Informa UK (Taylor & Francis),10720162|15325318 +Sexual Addiction & Compulsivity The Journal of Treatment and Prevention,Informa UK (Taylor & Francis),10720162| +Sexual and Marital Therapy,Informa UK (Taylor & Francis),02674653| +Sexual Development,S. Karger AG,16615425|16615433 +Sexual Dysfunction,Wiley Blackwell (Blackwell Publishing),13691686|14602679 +Sexual Health,CSIRO Publishing,14485028| +Sexual Medicine,Elsevier ,20501161| +Sexual Medicine Reviews,Elsevier ,20500513|20500521 +Sexual Plant Reproduction,Springer-Verlag,09340882|14322145 +Sexualidad Salud y Sociedad (Rio de Janeiro),SciELO,19846487 +Sexualities,SAGE Publications,13634607|00000000 +Sexualities Evolution & Gender,Informa UK (Taylor & Francis),14792508|14792516 +Sexuality & Culture,Springer-Verlag,10955143|19364822 +Sexuality and Disability,Springer-Verlag,01461044|15736717 +Sexuality and Early Development in Aquatic Organisms,Inter-Research Science Center,21952736|21952744 +Sexuality Reproduction and Menopause,Elsevier ,15462501| +Sexuality Research and Social Policy,Springer-Verlag,18689884|15536610 +Sexualization Media and Society,SAGE Publications,23746238 +Sexually Transmitted Diseases,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,01485717| +Sexually Transmitted Infections,BMJ,13684973|14723263 +Shafa Orthopedic Journal,International Neuroscience Institute,2345296X|23834315 +Shakespeare,Informa UK (Taylor & Francis),17450918|17450926 +Shakespeare Bulletin,Muse - Johns Hopkins University Press,19311427 +Shakespeare in Southern Africa,African Journals Online ,1011582X +Shakespeare Quarterly,Muse - Johns Hopkins University Press,00373222|15383555 +Shakespeare Review,The Shakespeare Association of Korea,12262668| +Shakespeare Review,The Shakespeare Association of Korea,12262668| +Shape Memory and Superelasticity,Springer-Verlag,2199384X|21993858 +"""SHARE """"SHaring - Action - REflection""""""",Petra Christian University,23387866| +Sharif,Springer - Global Science Journals,22520600 +Shashi the Journal of Japanese Business and Company History,"""University Library System, University of Pittsburgh""",21690820 +Shaw,The Pennsylvania State University Press,07415842|15291480 +She Ji The Journal of Design Economics and Innovation,Elsevier ,24058726| +Shigaku = Odontology,Springer-Verlag,00298484| +Shigen-to-Sozai,The Mining and Materials Processing Institute of Japan,09161740|18806244 +Shikshan Anveshika,Diva Enterprises Private Limited,22311386|23487534 +Shinku,Vacuum Society of Japan,05598516|18809413 +SHINKU GIJUTSU,Vacuum Society of Japan,18837182 +SHINKU KOGYO,Vacuum Society of Japan,18837174 +Ship Technology Research,Maney Publishing,09377255|20567111 +Ships and Offshore Structures,Informa UK (Taylor & Francis),17445302|1754212X +Shiraz E-Medical Journal,International Neuroscience Institute,17351391 +Shock,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10732322| +Shock and Vibration,Hindawi Publishing Corporation,10709622|18759203 +Shock Waves,Springer-Verlag,09381287|14322153 +Shofar,Purdue University Press,08828539| +Shofar An Interdisciplinary Journal of Jewish Studies,Muse - Johns Hopkins University Press,15345165 +Shokubutsu Kankyo Kogaku,"""Japanese Society of Agricultural, Biological and Environmental Engineers and Scientists""",18802028|18803563 +Shokubutsu Kojo Gakkaishi,"""Japanese Society of Agricultural, Biological and Environmental Engineers and Scientists""",09186638|18803555 +Shokubutsugaku Zasshi,The Botanical Society of Japan,0006808X|21853835 +Short Fiction in Theory and Practice,Intellect,20430701|2043071X +Short Film Studies,Intellect,20427824|20427832 +Shortness of Breath,CIC Edizioni Internazionali,22816550 +Shoulder & Elbow,SAGE Publications,17585732|17585740 +SHS Web of Conferences,EDP Sciences,22612424 +Si Somos Americanos,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7190948 +SIAM E-Journal on Applied Dynamical Systems,Society for Industrial and Applied Mathematics,11111111| +SIAM Journal on Algebraic and Discrete Methods,Society for Industrial and Applied Mathematics,01965212|2168345X +SIAM Journal on Applied Dynamical Systems,Society for Industrial and Applied Mathematics,15360040|15360040 +SIAM Journal on Applied Mathematics,Society for Industrial and Applied Mathematics,00361399|1095712X +SIAM Journal on Computing,Society for Industrial and Applied Mathematics,00975397|10957111 +SIAM Journal on Control,Society for Industrial and Applied Mathematics,00361402| +SIAM Journal on Control and Optimization,Society for Industrial and Applied Mathematics,03630129|10957138 +SIAM Journal on Discrete Mathematics,Society for Industrial and Applied Mathematics,08954801|10957146 +SIAM Journal on Financial Mathematics,Society for Industrial and Applied Mathematics,1945497X|1945497X +SIAM Journal on Imaging Sciences,Society for Industrial and Applied Mathematics,19364954|19364954 +SIAM Journal on Mathematical Analysis,Society for Industrial and Applied Mathematics,00361410|10957154 +SIAM Journal on Matrix Analysis and Applications,Society for Industrial and Applied Mathematics,08954798|10957162 +SIAM Journal on Numerical Analysis,Society for Industrial and Applied Mathematics,00361429|10957170 +SIAM Journal on Optimization,Society for Industrial and Applied Mathematics,10526234|10957189 +SIAM Journal on Scientific and Statistical Computing,Society for Industrial and Applied Mathematics,01965204|21683417 +SIAM Journal on Scientific Computing,Society for Industrial and Applied Mathematics,10648275|10957197 +SIAM Review,Society for Industrial and Applied Mathematics,00361445|10957200 +SIAM Undergraduate Research Online,Society for Industrial and Applied Mathematics,23277807 +SIAM/ASA Journal on Uncertainty Quantification,Society for Industrial and Applied Mathematics,21662525 +Siberian Advances in Mathematics,Allerton Press,10551344|19348126 +Siberian Journal of Oncology,Tomsk Cancer Research Institute,18144861|23123168 +Siberian Mathematical Journal,Springer-Verlag,00374466|15739260 +Siberian psychological journal,"""Science and Education, Ltd.""",17267080| +Sibirica,Berghahn Books,13617362|14766787 +Sibirskie istoricheskie issledovaniya,Tomsk State University,2312461X| +SICE Journal of Control Measurement and System Integration,The Society of Instrument and Control Engineers,18824889|18849970 +Sicherheit & Frieden,Nomos Verlag,0175274X| +SICOT-J,EDP Sciences,24268887 +SICUREZZA E SCIENZE SOCIALI,Franco Angeli,22838740|22837523 +SID Symposium Digest of Technical Papers,Wiley Blackwell (John Wiley & Sons),0097966X| +SIDA contributions to botany,Smithsonian Institution Biodiversity Heritage Library,00361488| +Siddhant- A Journal of Decision Making,Diva Enterprises Private Limited,22310649|22310657 +Sierra Leone Journal of Biomedical Research,African Journals Online ,20766270|20766270 +SIG Bulletin,Informa UK (Taylor & Francis),07478046| +Siglo Cero Revista Española sobre Discapacidad Intelectual,Ediciones Universidad de Salamanca,02101696|02101696 +Sign Language & Linguistics,John Benjamins Publishing Company,13879316|1569996X +Sign Language Studies,Muse - Johns Hopkins University Press,15336263 +Sign Systems Studies,University of Tartu Press,14064243|17367409 +Signa Revista de la Asociación Española de Semiótica,UNED - Universidad Nacional de Educacion a Distancia,11333634|22549307 +Signal & Image Processing An International Journal,Academy and Industry Research Collaboration Center,22293922|0976710X +Signal Image and Video Processing,Springer-Verlag,18631703|18631711 +Signal Processing,Elsevier ,01651684| +Signal Processing Image Communication,Elsevier ,09235965| +Signal Processing Research,"""Science and Engineering Publishing, Co.""",2327171X| +Signal Transduction,Wiley Blackwell (John Wiley & Sons),16154053|16154061 +Signal Transduction and Targeted Therapy,Nature Publishing Group,20593635 +Signal Transduction Insights,"""Libertas Academica, Ltd.""",11786434 +Significação Revista de Cultura Audiovisual,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,15164330|23167114 +Significance,Wiley Blackwell (Blackwell Publishing),17409705|17409713 +SIGNIFIKAN Jurnal Ilmu Ekonomi,E-Journal System Portal of Syarif Hidayatullah State Islamic University,20872046|24769223 +Signo,APESC - Associacao Pro-Ensino em Santa Cruz do Sul,01011812|19822014 +Signo y Pensamiento,Editorial Pontificia Universidad Javeriana,01204823|20272731 +SIGNOS - Investigación en sistemas de gestión,Universidad Santo Tomas,21451389| +Signos do Consumo,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,19845057|19845057 +Signótica,Universidade Federal de Goias,01037250|23163690 +Signs,The University of Chicago Press,00979740|15456943 +Signs and Society,The University of Chicago Press,23264489|23264497 +Signum Estudos da Linguagem,Universidade Estadual de Londrina,15163083|22374876 +SIGSPATIAL Special,Association for Computing Machinery,19467729 +Siirt Universitesi Sosyal Bilimler Enstitüsü Dergisi,Siirt Universitesi Sosyal Bilimler Enstitusu Dergisi,21478406| +Sikh Formations,Informa UK (Taylor & Francis),17448727|17448735 +Silence,Springer (Biomed Central Ltd.),1758907X| +Silicon,Springer-Verlag,1876990X|18769918 +Silicon Atom Included in the Reaction Partner,Thieme Publishing Group,20400438 +Silicon Chemistry,Springer-Verlag,15690660|15728994 +Silva Fennica,Finnish Society of Forest Science,00375330|22424075 +Silva Iaponicarum,Adam Mickiewicz University Poznan,17344328| +SIMILE Studies In Media & Information Literacy Education,University of Toronto Press Inc,14966603 +Simiolus Netherlands Quarterly for the History of Art,JSTOR,00375411| +SIMULATION,SAGE Publications,00375497|17413133 +Simulation & Gaming,SAGE Publications,10468781|00000000 +Simulation in Healthcare The Journal of the Society for Simulation in Healthcare,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15592332| +Simulation Modelling Practice and Theory,Elsevier ,1569190X| +Simulation Practice and Theory,Elsevier ,09284869| +Sinergia e Innovación,Universidad Peruana de Ciencias Aplicadas,23066431 +SINET Ethiopian Journal of Science,African Journals Online ,3792897 +Singapore Dental Journal,Elsevier ,03775291| +Singapore Journal of Chemical Biology,Science Alert,20100094| +Singapore Journal of Education,Informa UK (Taylor & Francis),01294776| +Singapore Journal of Scientific Research,Science Alert,2010006X| +Singapore Journal of Tropical Geography,Wiley Blackwell (Blackwell Publishing),01297619|14679493 +Singapore Medical Journal,Singapore Medical Journal,00375675| +Singaporean Journal of Business Economics and Management Studies,"""Al Manhal FZ, LLC""",23013621| +Singaporean Journal of Business Economics and Management Studies,"""Al Manhal FZ, LLC""",23013621| +Singidunum Journal of Applied Sciences,Centre for Evaluation in Education and Science,22178090| +Single Cell Biology,OMICS Publishing Group,21689431 +Single Molecules,Wiley Blackwell (John Wiley & Sons),14385163|14385171 +Sinir Sistemi Cerrahisi Dergisi,Logos Medical Publication,13064126| +Sino-US English Teaching,David Publishing Company,15398072|19359675 +Síntesis Tecnológica,Sistema de Bibliotecas UACH,0718025X| +Sinteze,Centre for Evaluation in Education and Science,2217902X| +Sinusitis,MDPI AG,2309107X +Sirena poesia arte y critica,Muse - Johns Hopkins University Press,15547655 +SiSli Etfal Hastanesi Tip Bulteni / The Medical Bulletin of Sisli Hospital,Yerkure Tanitim ve Yayincilik Hizmetleri,13027123|13085123 +Sistema Penal & Violência,EDIPUCRS,21776784 +Sistemas & Gestão,Laikos Servicos Ltda,19805160 +Sistemas y Telemática,Universidad Icesi,16925238| +Sistematicheskie zametki po materialam Gerbariya im P N Krylova Tomskogo gosudarstvennogo universiteta,Tomsk State University,20764103| +Sites a journal of social anthropology and cultural studies,University of Otago Library,01125990|11790237 +SITES The Journal of Contemporary French Studies,Informa UK (Taylor & Francis),10260218| +SITIENTIBUS série Ciências Biológicas,Universidade Estadual de Feira de Santana,15196097|22384103 +Sitzungsberichte der Gesellschaft Naturforschender Freunde zu Berlin,Smithsonian Institution Biodiversity Heritage Library,00375942| +Sitzungsberichte und Anzeiger,Verlag der Osterreichischen Akademie der Wissenschaften,17280540 +Sitzungsberichte und Anzeiger Abteilung II Mathematische Physikalische und Technische Wissenschaften,Verlag der Osterreichischen Akademie der Wissenschaften,17280540 +Sitzungsberichte und Anzeiger der mathematisch-naturwissenschaftlichen Klasse,Verlag der Osterreichischen Akademie der Wissenschaften,0723791X|17280540 +Sivil Toplum,Ankara University,13039377 +Siwo Revista de Teología,Universidad Nacional de Costa Rica,2215227X|22152482 +Sixteenth Century Essays and Studies,JSTOR,0080987X| +Sixteenth Century Journal,JSTOR,03610160| +Sjuttonhundratal,UiT The Arctic University of Norway,16524772|20019866 +Skandinavisches Archiv Für Physiologie,Wiley Blackwell (Blackwell Publishing),0370839X| +Skatterett,Scandinavian University Press / Universitetsforlaget AS,03332810|1504310X +Skeletal Muscle,Springer (Biomed Central Ltd.),20445040|20445040 +Skeletal Radiology,Springer-Verlag,03642348|14322161 +Skin & Allergy News,Elsevier ,00376337| +Skin Appendage Disorders,S. Karger AG,22969195|22969160 +Skin Cancer,The Japanese Skin Cancer Society,09153535|18843549 +Skin Pharmacology and Physiology,S. Karger AG,16605527|16605535 +Skin Pharmacology and Physiology,S. Karger AG,14222868|14222906 +Skin Research and Technology,Wiley Blackwell (Blackwell Publishing),0909752X|16000846 +SKINmed Dermatology for the Clinician,Wiley Blackwell (Blackwell Publishing),15409740|17517125 +Skipr,Springer-Verlag,18768695|22118772 +Skola biznisa,Centre for Evaluation in Education and Science,14516551| +Skull Base,Thieme Publishing Group,10521453|15320065 +Skull Base,Thieme Publishing Group,15315010|15320065 +Skull Base Reports,Thieme Publishing Group,21576971|2157698X +Śląski Przegląd Statystyczny,Wroclaw University of Economics,16446739|16446739 +Slavery and Abolition,Informa UK (Taylor & Francis),0144039X|17439523 +Slavia Centralis,The University of Kansas,18556302| +Slavia Meridionalis,Institute of Slavic Studies of the Polish Academy of Sciences,12336173|23922400 +Slavic & East European Information Resources,Informa UK (Taylor & Francis),15228886|15229041 +Slavic Review,"""Association for Slavic, East European, and Eurasian Studies""",00376779|00376779 +Slavica bruxellensia,OpenEdition,20317654|20346395 +Slavonic and East European Review American Series,JSTOR,15350940| +Slavonic Pedagogical Studies Journal,Slovenska Vzdelavacia a Obstaravacia s.r.o.,13398660|13399055 +Slavonic Year-Book American Series,JSTOR,15350959| +Slavonica,Maney Publishing,13617427|00000000 +SLEEP,Associated Professional Sleep Societies,01618105|15509109 +Sleep and Biological Rhythms,Springer-Verlag,14469235|14798425 +Sleep And Breathing,Springer-Verlag,15209512|15221709 +Sleep and Hypnosis - International Journal,Yerkure Tanitim ve Yayincilik Hizmetleri,13021192|24589101 +Sleep Disorders,Hindawi Publishing Corporation,20903545|20903553 +Sleep Health,Elsevier ,23527218| +Sleep Medicine,Elsevier ,13899457| +Sleep Medicine and Psychophysiology,Korean Academy of Sleep Medicine,12257354| +Sleep Medicine Clinics,Elsevier ,1556407X| +Sleep Medicine Research,Korean Society of Sleep Medicine,20939175|22338853 +Sleep Medicine Reviews,Elsevier ,10870792| +Sleep Science,Elsevier ,19840063| +SLIS Connecting,Univeristy of Southern Mississippi,23302917 +Slovak Journal of Civil Engineering,De Gruyter Open Sp. z o.o. ,13383973|12103896 +Slovak Journal of Political Sciences,De Gruyter Open Sp. z o.o. ,13359096 +Slovak Raptor Journal,De Gruyter Open Sp. z o.o. ,13373463|13387227 +Slovak Speach,De Gruyter Open Sp. z o.o. ,00376981| +Slovene Linguistic Studies,The University of Kansas,14082616| +Slovene Studies Journal,University of Washington Libraries,01931075| +Slovenian Journal of Public Health,De Gruyter Open Sp. z o.o. ,03510026|18542476 +Slovenian Nursing Review,Nurses and Midvwives Association of Slovenia,13182951|23504595 +Slovo,UCL Press,9546839 +SM,Springer-Verlag, +SMAD Revista Eletrônica Saúde Mental Álcool e Drogas (Edição em Português),Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,18066976|18066976 +SMAI Journal of Computational Mathematics,Cellule MathDoc/CEDRAM,24268399 +Small,Wiley Blackwell (John Wiley & Sons),16136810|16136829 +Small Axe A Caribbean Journal of Criticism,Duke University Press,07990537|15346714 +Small Business and Enterprise Development,Wiley Blackwell (John Wiley & Sons),09681000|10991662 +Small Business Economics,Springer-Verlag,0921898X|15730913 +Small Enterprise Development,Practical Action Publishing,09571329|09571329 +Small Enterprise Research,Informa UK (Taylor & Francis),13215906| +Small Fruits Review,Informa UK (Taylor & Francis),15228851|15229017 +Small Group Research,SAGE Publications,10464964|15528278 +Small GTPases,Landes Bioscience,21541248|21541256 +Small Ruminant Research,Elsevier ,09214488| +Small Wars and Insurgencies,Informa UK (Taylor & Francis),09592318|17439558 +Small-scale Forestry,Springer-Verlag,18737617|18737854 +Smart and Sustainable Built Environment,Emerald (MCB UP ),20466099| +Smart Grid,Hans Publishers,21618763|21618771 +Smart Grid and Renewable Energy,"""Scientific Research Publishing, Inc.""",2151481X|21514844 +Smart Homecare Technology and TeleHealth,Dove Medical Press,22531564 +SMART Journal of Business Management Studies,Diva Enterprises Private Limited,09731598|23212012 +Smart Learning Environments,Springer (Biomed Central Ltd.),21967091|21967091 +Smart Libraries Newsletter,American Library Association,15418820|15418820 +Smart Materials and Structures,IOP Publishing,09641726|1361665X +Smart Materials Bulletin,Elsevier ,14713918| +Smart Materials Research,Hindawi Publishing Corporation,20903561|2090357X +Smart Structures and Systems,Techno-Press,17381584| +SMCC Higher Education Research Journal,Saint Michael College of Caraga,24494402|24676322 +Smile Dental Journal,"""Al Manhal FZ, LLC""",2072473X|20724748 +Smith College Studies in Social Work,Informa UK (Taylor & Francis),00377317|00377317 +Smithsonian Contributions to Anthropology,Smithsonian Institution,00810223|19436661 +Smithsonian Contributions to Astrophysics,Smithsonian Institution,00810231| +Smithsonian Contributions to Botany,Smithsonian Institution,0081024X|19382812 +Smithsonian Contributions to History and Technology,Smithsonian Institution,19486006|19486006 +Smithsonian Contributions to Museum Conservation,Smithsonian Institution,19492359|19492367 +Smithsonian Contributions to Paleobiology,Smithsonian Institution,00810266|19436688 +Smithsonian Contributions to the Earth Sciences,Smithsonian Institution,00810274| +Smithsonian Contributions to the Marine Sciences,Smithsonian Institution,01960768|1943667X +Smithsonian Contributions to Zoology,Smithsonian Institution,00810282|19436696 +Smithsonian Herpetological Information Service,Smithsonian Institution,23317515| +Smithsonian miscellaneous collections,Smithsonian Institution Biodiversity Heritage Library,00968749| +Smithsonian Studies in Air and Space,Smithsonian Institution,01977245| +Smithsonian Studies in American Art,The University of Chicago Press,08904901| +Smithsonian Studies in History and Technology,Smithsonian Institution,00810258| +SMPTE Journal,Society of Motion Picture and Television Engineers,00361682| +SMPTE Journal 1955,Society of Motion Picture and Television Engineers,08980438| +SMPTE Motion Imaging Journal,Society of Motion Picture and Television Engineers,15450279|21602492 +SNE Simulation Notes Europe,ARGESIM Arbeitsgemeinschaft Simulation News,23059974|23060271 +Snippets,Led Edizioni Universitarie,15901807 +Soccer and Society,Informa UK (Taylor & Francis),14660970|17439590 +Social & Cultural Geography,Informa UK (Taylor & Francis),14649365|14701197 +Social & Legal Studies,SAGE Publications,09646639|14617390 +Social Analysis,Berghahn Books,0155977X|15585727 +Social and cultural space of Russia and abroad society education language,Russian State Vocational Pedagogical University,23123281| +SOCIAL AND ECONOMIC PHENOMENA AND PROCESSES,Tambov State University - G.R. Derzhavin,18198813| +Social and Education History,Hipatia Press,20143567 +Social and Environmental Accountability Journal,Informa UK (Taylor & Francis),0969160X|21562245 +Social and Natural Sciences Journal,Central Bohemia University,18044158|18049710 +Social and Personality Psychology Compass,Wiley Blackwell (Blackwell Publishing),17519004|17519004 +Social Anthropology,Wiley Blackwell (Blackwell Publishing),09640282|14698676 +Social Aspects of Population Health,Federal Research Institute for Health Organization and Informatics,20715021 +Social Behavior and Personality An International Journal,Scientific Journal Publishers,03012212| +Social Biology,Informa UK (Taylor & Francis),0037766X| +Social Business,Westburn Publishers,20444087|20449860 +Social Care and Neurodisability,Emerald (MCB UP ),20420919|2042874X +Social Change,SAGE Publications,00490857|09763538 +Social Change Review,De Gruyter Open Sp. z o.o. ,20688016 +Social Choice and Welfare,Springer-Verlag,01761714|1432217X +Social Cognition,Guilford Publications,0278016X| +Social Cognitive and Affective Neuroscience,Oxford University Press,17495016|17495024 +Social Cohesion and Development,National Documentation Centre,17909368| +Social Communication,Walter de Gruyter GmbH,22995382 +Social Compass,SAGE Publications,00377686|00000000 +Social Currents,SAGE Publications,23294965|23294973 +Social Development,Wiley Blackwell (Blackwell Publishing),0961205X|14679507 +Social Dynamics,Informa UK (Taylor & Francis),02533952|19407874 +Social Enterprise Journal,Emerald (MCB UP ),17508614| +Social Enterprise Journal,Emerald (MCB UP ),17508614| +Social Epistemology,Informa UK (Taylor & Francis),02691728|14645297 +Social Forces,Oxford University Press,00377732|15347605 +Social Geography,Copernicus GmbH,17294312 +Social Geography Discussions,Copernicus GmbH,18161502 +Social History,Informa UK (Taylor & Francis),03071022|14701200 +Social History of Medicine,Oxford University Press,0951631X|14774666 +Social Identities,Informa UK (Taylor & Francis),13504630|13630296 +Social Imaginaries,Philosophy Documentation Center,23932503| +Social Inclusion,Cogitatio,21832803 +Social Indicators Research,Springer-Verlag,03038300|15730921 +Social Influence,Informa UK (Taylor & Francis),15534510|15534529 +Social Inquiry into Well-Being,Mykolas Romeris University,23516682 +Social Issues and Policy Review,Wiley Blackwell (Blackwell Publishing),17512395|17512409 +Social Justice Research,Springer-Verlag,08857466|15736725 +Social Marketing Quarterly,SAGE Publications,15245004|15394093 +Social Media + Society,SAGE Publications,20563051 +Social Movement Studies,Informa UK (Taylor & Francis),14742837|00000000 +Social Network Analysis and Mining,Springer-Verlag,18695450|18695469 +Social Networking,"""Scientific Research Publishing, Inc.""",21693285|21693323 +Social Networks,Elsevier ,03788733| +Social Neuroscience,Informa UK (Taylor & Francis),17470919|17470927 +Social Philosophy and Policy,Cambridge University Press,02650525|14716437 +Social Philosophy Today,Philosophy Documentation Center,15434044| +Social Policy and Administration,Wiley Blackwell (Blackwell Publishing),01445596|14679515 +Social Policy and Society,Cambridge University Press,14747464|14753073 +Social Politics International Studies in Gender State & Society,Oxford University Press,10724745|14682893 +Social Problems,Oxford University Press,00377791|15338533 +Social Psychiatry,Springer-Verlag,00377813| +Social Psychiatry and Psychiatric Epidemiology,Springer-Verlag,09337954|14339285 +Social Psychological and Personality Science,SAGE Publications,19485506|19485514 +Social Psychology,Hogrefe Publishing Group,18649335|18649335 +Social Psychology,JSTOR,0147829X| +Social Psychology and Society,Moscow State Universtiy of Psychology and Education (MSUPE),22211527|23117052 +Social Psychology of Education,Springer-Verlag,13812890|15731928 +Social Psychology Quarterly,SAGE Publications,01902725|19398999 +Social Responsibility Journal,Emerald (MCB UP ),17471117| +Social Science & Medicine,Elsevier ,02779536| +Social Science & Medicine (1967),Elsevier ,00377856| +Social Science & Medicine Medical Psychology and Medical Sociology,Elsevier ,01607979| +Social Science & Medicine Part A Medical Sociology,Elsevier ,02717123| +Social Science & Medicine Part B Medical Anthropology,Elsevier ,01607987| +Social Science & Medicine Part C Medical Economics,Elsevier ,01607995| +Social Science & Medicine Part D Medical Geography,Elsevier ,01608002| +Social Science & Medicine Part E Medical Psychology,Elsevier ,02715384| +Social Science & Medicine Part F Medical and Social Ethics,Elsevier ,02715392| +Social Science Computer Review,SAGE Publications,08944393|00000000 +Social Science History,Cambridge University Press,01455532|15278034 +Social Science Information,SAGE Publications,05390184|00000000 +Social Science Information Studies,Elsevier ,01436236| +Social Science Japan Journal,Oxford University Press,13691465|14682680 +Social Science Quarterly,Wiley Blackwell (Blackwell Publishing),00384941|15406237 +Social Science Research,Elsevier ,0049089X|10960317 +Social Science Research Review,The Social Science Research Institute,12254096| +Social Science Today,Science and Education Centre of North America,23687169|23687177 +Social Sciences,MDPI AG,20760760 +Social Sciences,Science Publishing Group,23269863| +Social Sciences,Publishing House Technologija,13920758| +Social Sciences and Missions,Brill Academic Publishers,18748937|18748945 +Social Sciences Directory,Social Sciences Directory Limited,20496869| +Social Sciences in China,Informa UK (Taylor & Francis),02529203|19405952 +Social Scientist,JSTOR,09700293| +Social Semiotics,Informa UK (Taylor & Francis),10350330|14701219 +Social Service Review,The University of Chicago Press,00377961|15375404 +Social Studies of Science,SAGE Publications,03063127|00000000 +Social Technologies,Mykolas Romeris University,20297564 +Social Text,Duke University Press,01642472|15271951 +Social Theory & Health,Nature Publishing Group - Macmillan Publishers,14778211|1477822X +Social Theory and Practice,Philosophy Documentation Center,0037802X| +Social Thought,Informa UK (Taylor & Francis),0099183X|15286878 +Social Thought and Research,The University of Kansas,10945830|10945830 +Social Transformations Journal of the Global South,Ateneo de Manila University,2244517X|22445188 +Social Trends,Nature Publishing Group - Macmillan Publishers,03067742|20401620 +Social Welfare Policy,Korean Association of Social Welfare Policy,15987663| +Social Work,Mykolas Romeris University,20292775|20292775 +Social Work,Oxford University Press,00378046|15456846 +Social Work and Social Sciences Review,Whiting & Birch Ltd,09535225|17466105 +Social Work Education,Informa UK (Taylor & Francis),02615479|14701227 +Social Work Experience and Methods,Vytautas Magnus University,20299826|20295812 +Social Work in Health Care,Informa UK (Taylor & Francis),00981389|1541034X +Social Work in Mental Health,Informa UK (Taylor & Francis),15332985|15332993 +Social Work in Public Health,Informa UK (Taylor & Francis),19371918|1937190X +Social Work Research,Oxford University Press,10705309|15456838 +Social Work Research and Abstracts,Oxford University Press,01480847| +Social Work With Groups,Informa UK (Taylor & Francis),01609513|15409481 +Social Work/Maatskaplike Werk,Stellenbosch University - Social Work/Maatskaplike Werk,00378054|23127198 +Socialinė teorija empirija politika ir praktika,Vilnius University,16482425|23450266 +Socialinis ugdymas,Lithuanian University of Educational Sciences,13929569|23516011 +Socialism and Democracy,Informa UK (Taylor & Francis),08854300|17452635 +Socialist Lawyer,Pluto Journals,09543635| +Socialist Studies/Études Socialistes,University of Alberta - Journal of Socialist Studies,19182821 +Sociální pedagogika / Social Education,Tomas Bata University in Zlin,18058825 +Social’naya politika i sociologiya,Russian State Social University,20713665| +Sociedad (Buenos Aires),SciELO,3277712 +Sociedad (Buenos Aires),SciELO,3277712 +Sociedade & Natureza,SciELO,19824513|19824513 +Sociedade e Cultura,Universidade Federal de Goias,14158566|19808194 +Sociedade e Estado,SciELO,01026992|01026992 +SOCIETÀ DEGLI INDIVIDUI (LA),Franco Angeli,15907031|19725752 +SOCIETÀ E STORIA,Franco Angeli,03916987|19725515 +Societal Studies,Mykolas Romeris University,20292236|20292244 +Société droit et religion,CAIRN,21106657|22729054 +Sociétés,CAIRN,07653697|1782155X +Sociétés & Représentations,CAIRN,12622966|2104404X +Sociétés contemporaines,CAIRN,11501944|19506899 +Societies,MDPI AG,20754698 +Societies Without Borders,Brill Academic Publishers,18718868|18721915 +Society,Springer-Verlag,01472011|19364725 +Society & Natural Resources,Informa UK (Taylor & Francis),08941920|15210723 +Society and Animals,Brill Academic Publishers,10631119|15685306 +Society and Business Review,Emerald (MCB UP ),17465680| +Society and Culture in South Asia,SAGE Publications,23938617|23949872 +Society and Economy,Akademiai Kiado Zrt.,15889726|1588970X +Society and Mental Health,SAGE Publications,21568693|21568731 +Society and Theory,Korean Society for Social Theory,15986500| +Society for the Study of Chinese Religions Bulletin,Informa UK (Taylor & Francis),02713446| +Society for Visual Anthropology Newsletter,Wiley Blackwell (Blackwell Publishing),10467688|15487458 +Society for Visual Anthropology Review,Wiley Blackwell (Blackwell Publishing),10536779| +Society Health & Vulnerability,Co-Action Publishing,20021518 +Society in Transition,Informa UK (Taylor & Francis),10289852| +SOCIETY INTEGRATION EDUCATION Proceedings of the International Scientific Conference,Rezeknes Augstskola,16915887|22560629 +Society of Petroleum Engineers Journal,Society of Petroleum Engineers,01977520| +Socio,OpenEdition,22663134|24252158 +Socio hu,Socio.hu,20630468 +Socio-Economic Planning Sciences,Elsevier ,00380121| +Socio-Economic Review,Oxford University Press,14751461|1475147X +Socio-humanitarian research and technology,Infra-M Academic Publishing House,23061731| +Socioaffective Neuroscience & Psychology,Co-Action Publishing,20009011 +Sociobiology,Universidade Estadual de Feira de Santana,03616525| +Socioeconomica,The Scientific Society Akroasis,23349670|22177558 +Sociolinguistic Studies,Equinox Publishing,17508649|17508657 +Sociolinguistica - International Yearbook of European Sociolinguistics / Internationales Jahrbuch für europäische Soziolinguistik,Walter de Gruyter GmbH,09331883|1865939X +SOCIOLOGIA DEL DIRITTO,Franco Angeli,03900851|19725760 +SOCIOLOGIA DEL LAVORO,Franco Angeli,03925048|1972554X +SOCIOLOGIA DELLA COMUNICAZIONE,Franco Angeli,11211733|19724926 +SOCIOLOGIA E POLITICHE SOCIALI,Franco Angeli,15912027|19725116 +SOCIOLOGIA E RICERCA SOCIALE,Franco Angeli,11211148|19718446 +Sociologia Internationalis,Duncker & Humblot GmbH,00380164|18655580 +Sociologia Problemas e Práticas,Centro de Investigacao e Estudos de Sociologica,08736529|21827907 +Sociologia Ruralis,Wiley Blackwell (Blackwell Publishing),00380199|14679523 +SOCIOLOGIA URBANA E RURALE,Franco Angeli,03924939|19718403 +Sociologias,SciELO,15174522|15174522 +Sociological Analysis,JSTOR,00380210| +Sociological Focus,Informa UK (Taylor & Francis),00380237|21621128 +Sociological Forum,Wiley Blackwell (Blackwell Publishing),08848971|15737861 +Sociological Inquiry,Wiley Blackwell (Blackwell Publishing),00380245|1475682X +Sociological Journal,Institute of Sociology of Russian Academy of Sciences,15622495|16841581 +Sociological Methodology,SAGE Publications,00811750|14679531 +Sociological Methods & Research,SAGE Publications,00491241|15528294 +Sociological Perspectives,SAGE Publications,07311214|15338673 +Sociological Practice,Springer (Kluwer Academic Publishers),15223442| +Sociological Quarterly,Wiley Blackwell (Blackwell Publishing),00380253|15338525 +Sociological Research,Informa UK (Taylor & Francis),10610154|23285184 +Sociological Research Online,Sociological Research Online,13607804 +Sociological Review,Wiley Blackwell (Blackwell Publishing),00380261|1467954X +Sociological Science,Society for Sociological Science,23306696 +Sociological Spectrum,Informa UK (Taylor & Francis),02732173|15210707 +Sociological Theory,SAGE Publications,07352751|14679558 +Sociologie,CAIRN,21088845|21086915 +Sociologie,Uitgeverij Boom,15743314| +Sociologie de l Art,CAIRN,07791674|22645209 +Sociologie du Travail,Elsevier ,00380296| +Sociologie et sociétés,Consortium Erudit,0038030X|14921375 +SociologieS,OpenEdition,19922655 +Sociologies pratiques,CAIRN,12959278|21043787 +Sociologija,National Library of Serbia,00380318|24060712 +Sociologija i prostor,Institute for Social Research Zagreb,18465226|18490387 +Sociologija Mintis ir veiksmas,Vilnius University,13923358|23358890 +Sociologus,Duncker & Humblot GmbH,00380377|18655106 +Sociology,SAGE Publications,00380385|00000000 +Sociology and Anthropology,"""Horizon Research Publishing Co., Ltd.""",23316179|23316187 +Sociology and Criminology-Open Access,OMICS Publishing Group,23754435 +Sociology Compass,Wiley Blackwell (Blackwell Publishing),17519020|17519020 +Sociology Mind,"""Scientific Research Publishing, Inc.""",2160083X|21600848 +Sociology of Development,University of California Press,2374538X +Sociology of Education,SAGE Publications,00380407|19398573 +Sociology of Health & Illness,Wiley Blackwell (Blackwell Publishing),01419889|14679566 +Sociology of Islam,Brill Academic Publishers,2213140X|22131418 +Sociology of Race and Ethnicity,SAGE Publications,23326492|23326506 +Sociology of Religion,Oxford University Press,10694404|17598818 +Sociology of Sport Journal,Human Kinetics,07411235| +Sociology Politology,Saratov State University,18189601| +Sociology Study,David Publishing Company,21595526|21595534 +Sociometry,JSTOR,00380431| +SOCIOTECHNICA,Sociotechnology Research Network - Shakai Gijutsu Kenkyuukai,13490184|18824609 +Socius Sociological Research for a Dynamic World,SAGE Publications,23780231 +Socjolingwistyka,Institute of Polish Language,02086808| +Soft,"""Scientific Research Publishing, Inc.""",23270799|23270802 +Soft Computing,Springer-Verlag,14327643|14337479 +Soft Materials,Informa UK (Taylor & Francis),1539445X|15394468 +Soft Matter,The Royal Society of Chemistry,1744683X|17446848 +Soft Nanoscience Letters,"""Scientific Research Publishing, Inc.""",21600600|21600740 +Soft Power,SoftPower,23898232| +Soft Robotics,Mary Ann Liebert,21695172|21695180 +Software & Microsystems,Institution of Electrical Engineers,02613182| +Software & Systems Modeling,Springer-Verlag,16191366|16191374 +Software - Concepts & Tools,Springer-Verlag,09458115|14322188 +Software Engineering,ACTA Press,19257902| +Software Engineering (Science Publishing Group),Science Publishing Group,23768029| +Software Engineering and Applications,Hans Publishers,23252286|23252278 +Software Engineering Journal,Institution of Electrical Engineers,02686961| +Software Focus,Wiley Blackwell (John Wiley & Sons),15297942|15297950 +Software Networking,River Publishers,24459739| +Software Practice and Experience,Wiley Blackwell (John Wiley & Sons),00380644|1097024X +Software Process Improvement and Practice,Wiley Blackwell (John Wiley & Sons),10774866|10991670 +Software Quality Journal,Springer-Verlag,09639314|15731367 +Software Testing Verification and Reliability,Wiley Blackwell (John Wiley & Sons),09600833|10991689 +Softwaretechnik-Trends,Springer-Verlag,7208928 +SoftwareX,Elsevier ,23527110| +Sogang Journal of Philosophy,Sogang Journal of Philosophy,17388104| +Sohag Journal of Mathematics,Natural Sciences Publishing,23752874|23752890 +SOIL,Copernicus GmbH,2199398X +Soil and Sediment Contamination An International Journal,Informa UK (Taylor & Francis),15320383|15497887 +Soil and Tillage Research,Elsevier ,01671987| +Soil and Water Research,Czech Academy of Agricultural Sciences,18015395|18059384 +Soil Annual Science,De Gruyter Open Sp. z o.o. ,00803642| +Soil Biology and Biochemistry,Elsevier ,00380717| +SOIL Discussions,Copernicus GmbH,21993998 +Soil Dynamics and Earthquake Engineering,Elsevier ,02677261| +Soil Horizons,Soil Science Society of America,21632812 +Soil Mechanics and Foundation Engineering,Springer-Verlag,00380741|15739279 +Soil Research,CSIRO Publishing,1838675X| +Soil Science,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,0038075X| +Soil Science & Plant Nutrition,Informa UK (Taylor & Francis),00380768|17470765 +Soil Science Annual,De Gruyter Open Sp. z o.o. ,23004975 +Soil Science Society of America Journal,Soil Science Society of America,03615995|14350661 +Soil Technology,Elsevier ,09333630| +Soil Use and Management,Wiley Blackwell (Blackwell Publishing),02660032|14752743 +SOILS AND FOUNDATIONS,Elsevier ,00380806|18811418 +Soins,Elsevier ,00380814| +Soins Aides-Soignantes,Elsevier ,17709857| +Soins Cadres,Elsevier ,01832980| +Soins Gérontologie,Elsevier ,12686034| +Soins Pé diatrie/ Pué riculture,Elsevier , +Soins Pédiatrie/Puériculture,Elsevier ,12594792| +Soins Psychiatrie,Elsevier ,02416972| +SOJ Anesthesiology & Pain Management,Symbiosis Group,2374684X +SOJ Biochemistry,Symbiosis Group,23764589 +SOJ Chromatographic Science,Symbiosis Group,24713627 +SOJ Gynecology Obstetrics and Women s Health,Symbiosis Group,23812915 +SOJ Immunology,Symbiosis Group,23720948|23720948 +SOJ Materials Science & Engineering,Symbiosis Group,23720964 +SOJ Microbiology & Infectious Diseases,Symbiosis Group,23720956 +SOJ Neurology,Symbiosis Group,23746858 +SOJ Nursing & Health Care,Symbiosis Group,24716529 +SOJ Pharmacy & Pharmaceutical Sciences,Symbiosis Group,23746866 +SOJ Psychology,Symbiosis Group,23746874 +SOJ Surgery ,Symbiosis Group,23764570 +SOJ Veterinary Sciences,Symbiosis Group,23812907 +Sojourn Journal of Social Issues in Southeast Asia,Muse - Johns Hopkins University Press,17932858 +Sokoto Journal of Veterinary Sciences,African Journals Online ,1595093X|1595093X +SOLA,Meteorological Society of Japan,13496476 +Solar & Wind Technology,Elsevier ,0741983X| +Solar Cells,Elsevier ,03796787| +Solar Energy,Elsevier ,0038092X| +Solar Energy Materials,Elsevier ,01651633| +Solar Energy Materials and Solar Cells,Elsevier ,09270248| +Solar Physics,Springer-Verlag,00380938|1573093X +Solar Revista de Filosofía Iberoamericana,"""SOLAR, Revista de Filosofia Iberoamericana""",18162924| +Solar System Research,Pleiades Publishing,00380946|16083423 +Solar-Terrestrial Physics,Infra-M Academic Publishing House,01353748| +Soldagem & Inspeção,SciELO,01049224|01049224 +Soldering & Surface Mount Technology,Emerald (MCB UP ),09540911|00000000 +Soldering and Surface Mount Technology,Emerald (MCB UP ),09540911|00000000 +SOLGAN,Wiley Blackwell (Blackwell Publishing),15475298| +Solid Earth,Copernicus GmbH,18699529 +Solid Earth Discussions,Copernicus GmbH,18699537 +Solid Earth Sciences,Elsevier ,2451912X| +Solid Fuel Chemistry,Allerton Press,03615219|19348029 +Solid State Communications,Elsevier ,00381098| +Solid State Ionics,Elsevier ,01672738| +Solid State Nuclear Magnetic Resonance,Elsevier ,09262040| +Solid State Phenomena,Trans Tech Publications,16629779 +Solid State Sciences,Elsevier ,12932558| +Solid-State Electronics,Elsevier ,00381101| +Solids and Structures,"""Science and Engineering Publishing, Co.""",23271736| +Solunum,AVES Publishing Co.,13024922|21473676 +Solvent Effects,Thieme Publishing Group,20100442 +Solvent Extraction and Ion Exchange,Informa UK (Taylor & Francis),07366299|15322262 +Solvent Extraction Research and Development Japan,Japan Association of Solvent Extraction,13417215|21884765 +Somatechnics,Edinburgh University Press,20440138|20440146 +Somatic Cell and Molecular Genetics,Springer-Verlag,07407750| +Somatic Cell Genetics,Springer-Verlag,00980366|15729931 +Somatosensory & Motor Research,Informa UK (Taylor & Francis),08990220|13691651 +Somatosensory Research,Informa UK (Taylor & Francis),07367244| +Sommerfeltia,De Gruyter Open Sp. z o.o. ,08006865|20840098 +Somnologie - Schlafforschung und Schlafmedizin,Springer-Verlag,14329123|1439054X +Sonography,Wiley Blackwell (John Wiley & Sons),22028323| +Soonchunhyang Medical Science,Soonchunhyang Medical Research Institute,22334289|22334297 +SOP Transactions on Analytical Chemistry,"""Scientific Online Publishing, Co., Ltd.""",23746300|23746319 +SOP Transactions on Applied Chemistry,"""Scientific Online Publishing, Co., Ltd.""",23738650|23738669 +SOP Transactions on Applied Mathematics,"""Scientific Online Publishing, Co., Ltd.""",23738472|23738480 +SOP Transactions on Applied Physics,"""Scientific Online Publishing, Co., Ltd.""",23726229|23726237 +SOP Transactions on Economic Research,"""Scientific Online Publishing, Co., Ltd.""",23723246|23723254 +SOP Transactions on Marketing Research,"""Scientific Online Publishing, Co., Ltd.""",23745134|23745142 +SOP Transactions on Nano-technology,"""Scientific Online Publishing, Co., Ltd.""",23745185|23745193 +SOP Transactions on Physical Chemistry,"""Scientific Online Publishing, Co., Ltd.""",23726156|23726164 +SOP Transactions on Psychology,"""Scientific Online Publishing, Co., Ltd.""",23738634|23738642 +SOP Transactions on Signal Processing,"""Scientific Online Publishing, Co., Ltd.""",23770538|23770546 +SOP Transactions on Statistics and Analysis,"""Scientific Online Publishing, Co., Ltd.""",2373843X|23738448 +SOP Transactions on Theoretical Physics,"""Scientific Online Publishing, Co., Ltd.""",23722487|23722495 +SOP Transactions on Wireless Communications,"""Scientific Online Publishing, Co., Ltd.""",23738618|23738626 +Sophía,Salesian Polytechnic University of Ecuador,13903861|13908626 +Sophia,Springer-Verlag,00381527|1873930X +Sophia An African Journal of Philosophy,African Journals Online ,1119443X +SOSIO DIDAKTIKA Social Science Education Journal,E-Journal System Portal of Syarif Hidayatullah State Islamic University,23561386|24429430 +Sosiologisk tidsskrift,Scandinavian University Press / Universitetsforlaget AS,08040486|15042928 +Sosyal Bilimler Dergisi,Sosyal Bilimler Dergisi,1308738X| +Sosyoekonomi,Sosyoekonomi,13055577| +Sosyoloji Araştırmaları Dergisi,Sosyoloji Arastirmalari Dergisi,21489947| +Sosyoloji Dergisi,Turkish Journal of Sociology,13042998|21489165 +SOTER Journal of Religious Science,Vytautas Magnus University,13927450|23358785 +Sotsiologicheskoe Obozrenie / Russian Sociological Review,"""National Research University, Higher School of Economics (HSE)""",1728192X| +Souls,Informa UK (Taylor & Francis),10999949|15483843 +Sound Its Uses and Control,Acoustical Society of America ,05841666| +Sound Studies,Informa UK (Taylor & Francis),20551940|20551959 +Soundings,Lawrence and Wishart,13626620|17410797 +Soundings An Interdisciplinary Journal,The Pennsylvania State University Press,00381861|21616302 +Source Code for Biology and Medicine,Springer (Biomed Central Ltd.),17510473|17510473 +Source Notes in the History of Art,The University of Chicago Press,07374453|2328207X +South African Actuarial Journal,African Journals Online ,16802179 +South African Computer Journal,South African Institute of Computer Scientists and Information Technologists,10157999|23137835 +South African Crime Quarterly,African Journals Online ,19913877| +South African Family Practice,Informa UK (Taylor & Francis),20786190|20786204 +South African Forestry Journal,Informa UK (Taylor & Francis),00382167| +South African Gastroenterology Review,African Journals Online ,18121659 +South African Geographical Journal,Informa UK (Taylor & Francis),03736245|21512418 +South African Historical Journal,Informa UK (Taylor & Francis),02582473|17261686 +South African Journal for Research in Sport Physical Education and Recreation,African Journals Online ,3799069 +South African Journal of Accounting Research,Informa UK (Taylor & Francis),10291954|23763981 +South African Journal of African Languages,Informa UK (Taylor & Francis),02572117|23051159 +South African Journal of Agricultural Extension,Academy of Science of South Africa,24133221 +South African Journal of Animal Science,African Journals Online ,03751589|22214062 +South African Journal of Bioethics and Law,Health and Medical Publishing Group,19997639 +South African Journal of Botany,Elsevier ,02546299| +South African Journal of Chemistry,Academy of Science of South Africa,03794350|03794350 +South African Journal of Child Health,Health and Medical Publishing Group,19943032|19997671 +South African Journal of Childhood Education,AOSIS,22237674|22237682 +South African Journal of Communication Disorders,AOSIS,03798046|22254765 +South African Journal of Cultural History,African Journals Online ,10113053 +South African Journal of Economic and Management Sciences,Academy of Science of South Africa,10158812|22223436 +South African Journal of Economic History,Informa UK (Taylor & Francis),10113436|21590850 +South African Journal of Economics,Wiley Blackwell (Blackwell Publishing),00382280|18136982 +South African Journal of Education,Education Association of South Africa,20763433|02560100 +South African Journal of Geology,GeoScienceWorld,10120750| +South African Journal of Geomatics,African Journals Online ,22258531 +South African Journal of Higher Education,African Journals Online ,10113487 +South African Journal of International Affairs,Informa UK (Taylor & Francis),10220461|19380275 +South African Journal of Libraries and Information Science,Stellenbosch University - South African Journal of Library and Information Science,02568861|23048263 +South African Journal of Linguistics,Informa UK (Taylor & Francis),10118063| +South African Journal of Marine Science,Informa UK (National Inquiry Services Center),02577615| +South African Journal of Obstetrics and Gynaecology,Health and Medical Publishing Group,00382329|23058862 +South African Journal of Occupational Therapy,Academy of Science of South Africa,00382337|23103833 +South African Journal of Philosophy,Informa UK (Taylor & Francis),02580136|02580136 +South African Journal of Physiotherapy,AOSIS,03796175|24108219 +South African Journal of Plant and Soil,Informa UK (Taylor & Francis),02571862|2167034X +South African Journal of Psychiatry,AOSIS,16089685|20786786 +South African Journal of Psychology,SAGE Publications,00812463| +South African Journal of Radiology,AOSIS,1027202X|20786778 +South African Journal of Science,Academy of Science of South Africa,00382353|19967489 +South African Journal of Sociology,Informa UK (Taylor & Francis),02580144| +South African Journal of Sports Medicine,Health and Medical Publishing Group,10155163|2078516X +South African Journal of Surgery,Health and Medical Publishing Group,00382361|20785151 +South African Journal of Wildlife Research,BioOne (Southern African Wildlife Management Association),03794369|03794369 +South African Journal of Zoology,Informa UK (Taylor & Francis),02541858| +South African Medical Journal,Health and Medical Publishing Group,02569574|20785135 +South African Music Studies,African Journals Online ,0258509X +South African Respiratory Journal,Health and Medical Publishing Group,23040017| +South African Review of Sociology,Informa UK (Taylor & Francis),21528586| +South African Review of Sociology,Informa UK (Taylor & Francis),21528586|20721978 +South African Theatre Journal,Informa UK (Taylor & Francis),10137548|21637660 +South American Journal of Herpetology,BioOne (Brazilian Herpetological Society),18089798|19372418 +South Asia Economic Journal,SAGE Publications,13915614|0973077X +South Asia Journal of South Asian Studies,Informa UK (Taylor & Francis),00856401|14790270 +South Asia Research,SAGE Publications,02627280|00000000 +South Asian Diaspora,Informa UK (Taylor & Francis),19438192|19438184 +South Asian History and Culture,Informa UK (Taylor & Francis),19472498|19472501 +South Asian Journal of Business and Management Cases,SAGE Publications,22779779|23210303 +South Asian Journal of Cancer,Medknow Publications,2278330X| +South Asian Journal of Global Business Research,Emerald (MCB UP ),20454457| +South Asian Journal of Human Resources Management,SAGE Publications,23220937|23495790 +South Asian Journal of Life Sciences,Nexus Academic Publishers,23110589 +South Asian Journal of Macroeconomics and Public Finance,SAGE Publications,22779787|23210273 +South Asian Popular Culture,Informa UK (Taylor & Francis),14746689|14746697 +South Asian Studies,Informa UK (Taylor & Francis),02666030|21532699 +South Asian Survey,SAGE Publications,09715231|09730788 +South Atlantic Bulletin,JSTOR,00382868| +South Atlantic Quarterly,Duke University Press,00382876|15278026 +South Atlantic Review,JSTOR,0277335X| +South Australian naturalist,Smithsonian Institution Biodiversity Heritage Library,00382965| +South Australian ornithologist,Smithsonian Institution Biodiversity Heritage Library,00382973| +South Central Review,Muse - Johns Hopkins University Press,07436831|15493377 +South East Asia Journal of Public Health,Bangladesh Journals Online,22209476|2313531X +South East Asia Research,IP Publishing,0967828X| +South East European Journal of Architecture and Design,ID Design 2012/DOOEL Skopje,18579353 +South East European Journal of Cardiology,ID Design 2012/DOOEL Skopje,18579361 +South East European Journal of Economics and Business,De Gruyter Open Sp. z o.o. ,1840118X|22331999 +South East European Journal of Human Genetics,ID Design 2012/DOOEL Skopje,1857937X +South East European Journal of Immunology,ID Design 2012/DOOEL Skopje,18579388 +South East European University Review,De Gruyter Open Sp. z o.o. ,14097001| +South European Journal of Orthodontics and Dentofacial Research,South European Journal of Othodontics and Dentofacial Research,18493858 +South European Society & Politics,Informa UK (Taylor & Francis),13608746|17439612 +South of Russia ecology development,Institute of Applied Ecology,19921098|24130958 +South Pacific Journal of Teacher Education,Informa UK (Taylor & Francis),03112136| +South-east European forestry,Hrvatski Sumarski Institut (Croatian Forest Research),18476481|18490891 +South-to-North Water Diversion and Water Science & Technology,China Science Publishing & Media Ltd.,16721683| +Southeast Asia History and Culture,Japan Society for Southeast Asian Studies,18837557 +Southeast Asian Affairs,Institute of Southeast Asian Studies,03775437| +Southeast Asian Bulletin of Mathematics,Springer-Verlag,01292021|0219175X +Southeast Asian Economies,Institute of Southeast Asian Studies,23395095| +Southeast Asian Journal of Social Science,Brill Academic Publishers,03088243| +Southeastern Archaeology,Maney Publishing,0734578X|21684723 +Southeastern Europe,Brill Academic Publishers,00944467|18763332 +Southeastern Geographer,Muse - Johns Hopkins University Press,15496929 +Southeastern Naturalist,BioOne (Humboldt Field Research Institute),15287092|19385412 +Southeastern Political Review,Wiley Blackwell (Blackwell Publishing),07302177| +Southern Africa Journal of Education Science and Technology,African Journals Online ,18193692 +Southern African Journal of Anaesthesia and Analgesia,Informa UK (Taylor & Francis),22201181|22201173 +Southern African Journal of Applied Language Studies,Informa UK (Taylor & Francis),10189203| +Southern African Journal of Aquatic Sciences,Informa UK (Taylor & Francis),10183469| +Southern African Journal of Child and Adolescent Mental Health,Informa UK (Taylor & Francis),16826108| +Southern African Journal of Critical Care,Health and Medical Publishing Group,15628264|2078676X +Southern African Journal of Gynaecological Oncology,Informa UK (Taylor & Francis),20742835|2220105X +Southern African Journal of HIV Medicine,AOSIS,16089693|20786751 +Southern African Journal of Infectious Diseases,Informa UK (Taylor & Francis),23120053|23131810 +Southern African Linguistics and Applied Language Studies,Informa UK (National Inquiry Services Center),16073614|17279461 +Southern California Quarterly,University of California Press,00383929|00383929 +Southern Communication Journal,Informa UK (Taylor & Francis),1041794X|19303203 +Southern Cultures,Muse - Johns Hopkins University Press,15341488 +Southern Economic Journal,Wiley Blackwell (Blackwell Publishing),00384038| +Southern Forests a Journal of Forest Science,Informa UK (National Inquiry Services Center),20702620|20702639 +Southern Hemisphere Forestry Journal,Informa UK (Taylor & Francis),1991931X|19919328 +Southern Journal of Agricultural Economics,Cambridge University Press,00813052|00813052 +Southern Journal of Applied Forestry,Society of American Foresters,01484419| +Southern Med Review,Southern Med Review,11742704|11742704 +Southern Medical Journal,Southern Medical Association,00384348| +Southern Speech Communication Journal,Informa UK (Taylor & Francis),03618269| +Southwest Journal of Pulmonary and Critical Care,Southwest Journal of Pulmonary and Critical Care,21606773|21606773 +Southwest Philosophy Review,Philosophy Documentation Center,08972346| +Southwestern Entomologist,BioOne (Society of Southwestern Entomologists),01471724|01471724 +Southwestern Historical Quarterly,Muse - Johns Hopkins University Press,15589560 +Southwestern Journal of Anthropology,The University of Chicago Press,00384801| +Southwestern Journal of Philosophy,Philosophy Documentation Center,0038481X| +Soviet Anthropology and Archeology,Informa UK (Taylor & Francis),0038528X| +Soviet Anthropology and Archeology,Informa UK (Taylor & Francis),0038528X| +Soviet Applied Mechanics,Springer-Verlag,00385298| +Soviet Atomic Energy,Springer-Verlag,0038531X| +Soviet Geography,Informa UK (Taylor & Francis),00385417| +Soviet Jewish Affairs,Informa UK (Taylor & Francis),0038545X| +Soviet Journal of Physical Oceanography,Springer-Verlag,09205047| +Soviet Journal of Quantum Electronics,Turpion ,00491748| +Soviet Materials Science,Springer-Verlag,00385565| +Soviet Mining Science,Springer-Verlag,00385581| +Soviet Physics Journal,Springer-Verlag,00385697| +Soviet Physics Uspekhi,Turpion ,00385670| +Soviet Powder Metallurgy and Metal Ceramics,Springer-Verlag,00385735| +Soviet Radiophysics,Springer-Verlag,00971545| +Soviet Studies,Informa UK (Taylor & Francis),00385859| +SOVREMENNAYA PEDIATRIYA,"""Group of Companies, Med Expert, LLC""",19925913|24124508 +Sovremennye issledovaniya sotsialnykh problem,Science and Innovation Center,20771770|22187405 +Sovremennye tehnologii v medicine,Journal Sovremennye Tehnologii v Medicine,20764243| +Sowiniec,Ksiegarnia Akademicka Sp. z.o.o.,14251965|14251965 +Sozial Extra,Springer-Verlag,0931279X|18638953 +Sozial- und Präventivmedizin,Springer-Verlag,03038408|1420911X +Soziale Passagen,Springer-Verlag,18670180|18670199 +Soziale Probleme,Springer-Verlag,0939608X|23643951 +Soziale Systeme,Walter de Gruyter GmbH,0948423X|23660473 +Soziale Welt,Nomos Verlag,00386073| +Sozialer Fortschritt,Duncker & Humblot GmbH,0038609X|18655386 +Sozialer Fortschritt,Duncker & Humblot GmbH,0038609X|18655386 +Sozialer Sinn,Walter de Gruyter GmbH,14399326|23660228 +Sozialwirtschaft,Nomos Verlag,16130707| +Soziologie,Springer-Verlag,0340918X|18622550 +Soziologische Revue,Oldenbourg Wissenschaftsverlag,03434109|21967024 +Spa Business Monthly,Mary Ann Liebert,15245942|00000000 +Space and Culture,SAGE Publications,12063312|00000000 +Space and Culture India,ACCB Publishing,20528396 +Space and Polity,Informa UK (Taylor & Francis),13562576|14701235 +Space Debris,Springer (Kluwer Academic Publishers),13883828| +Space Policy,Elsevier ,02659646| +Space Research Journal,Science Alert,18193382| +Space Research Today,Elsevier ,17529298| +Space Resolver,Jornal de Pediatra/FSBP,99999997| +Space Resolver 15,Jornal de Pediatra/FSBP,99999998| +Space Resolver 16,Jornal de Pediatra/FSBP,99999999| +Space Science Reviews,Springer-Verlag,00386308|15729672 +Space Technology,Elsevier ,08929270|08929270 +SPACE TECHNOLOGY JAPAN THE JAPAN SOCIETY FOR AERONAUTICAL AND SPACE SCIENCES,Japan Society for Aeronautical and Space Sciences,13473832 +Space Weather,Wiley Blackwell (John Wiley & Sons),15427390|15427390 +Space Weather Quarterly,Wiley Blackwell (John Wiley & Sons),15394964| +Spaces and Flows An International Journal of Urban and Extraurban Studies,Common Ground Publishing,21548676|21548684 +SPAL Revista de Prehistoria y Arqueología de la Universidad de Sevilla,Editorial Universidad de Sevilla,11334525|22553924 +Spanish Economic Review,Springer-Verlag,14355469|14355477 +Spanish in Context,John Benjamins Publishing Company,15710718|15710726 +Spanish Journal of Agricultural Research,Instituto Nacional de Investigacion y Tecnologia Agraria y Alimentaria,1695971X|21719292 +Spanish Journal of Finance and Accounting / Revista Española de Financiación y Contabilidad,Informa UK (Taylor & Francis),02102412|23320753 +Spanish Journal of Marketing - ESIC,Elsevier ,24449695| +Spanish Journal of Rural Development,Spanish Journal of Rural Development,21711216|21722277 +Spanish Yearbook of International Law,Asociacion Espanola de Profesores de Derecho Internacional y Relaciones Internacional,23864435 +Spanish Yearbook of International Law Online,Brill Academic Publishers,09280634|22116125 +SPATE Journal of Student Personnel Association for Teacher Education,Wiley Blackwell (John Wiley & Sons),00361836| +Spatial and Spatio-temporal Epidemiology,Elsevier ,18775845| +Spatial Cognition and Computation,Informa UK (Taylor & Francis),13875868|15427633 +Spatial Demography,Springer-Verlag,23642289|21647070 +Spatial Economic Analysis,Informa UK (Taylor & Francis),17421772|17421780 +Spatial Economics,"""Economic Research Institute, FEB RAS""",18159834| +Spatial Information Research,Springer-Verlag,23663286|23663294 +Spatial Statistics,Elsevier ,22116753| +Spatial Vision,Brill Academic Publishers,01691015|15685683 +Spatium,National Library of Serbia,1450569X|22178066 +Spatula DD - Peer Reviewed Journal on Complementary Medicine and Drug Discovery,ScopeMed International Medical Journal Managment and Indexing System,13099914| +SPE Advanced Technology Series,Society of Petroleum Engineers,10760148| +SPE Computer Applications,Society of Petroleum Engineers,10649778| +SPE Drilling & Completion,Society of Petroleum Engineers,10646671| +SPE Drilling Engineering,Society of Petroleum Engineers,08859744| +SPE Economics & Management,Society of Petroleum Engineers,21501173| +SPE Formation Evaluation,Society of Petroleum Engineers,0885923X| +SPE Journal,Society of Petroleum Engineers,1086055X| +SPE Production & Facilities,Society of Petroleum Engineers,1064668X| +SPE Production & Operations,Society of Petroleum Engineers,19301855| +SPE Production & Operations,Society of Petroleum Engineers,19301863| +SPE Production Engineering,Society of Petroleum Engineers,08859221| +SPE Projects Facilities & Construction,Society of Petroleum Engineers,19422431| +SPE Reservoir Engineering,Society of Petroleum Engineers,08859248| +SPE Reservoir Evaluation & Engineering,Society of Petroleum Engineers,10946470| +Special Care in Dentistry,Wiley Blackwell (Blackwell Publishing),02751879|17544505 +Special Collections,"""Informa UK (Haworth Press, Inc.,)""",02703157| +Special Discussions of the Faraday Society,The Royal Society of Chemistry,03709302| +Special Education Research,The Special Education Research Institute,15987043| +Special Events Galore,Wiley Blackwell (John Wiley & Sons),15381625| +Special Matrices,De Gruyter Open Sp. z o.o. ,23007451 +Special Operations Journal,Informa UK (Taylor & Francis),23296151|23722657 +Special School,Index Copernicus International,0137818X| +Special Services in the Schools,Informa UK (Taylor & Francis),07399820| +Special Techniques withWater,Thieme Publishing Group,20620519 +Special Topics & Reviews in Porous Media An International Journal,Begell House Inc.,21514798| +Species Diversity,Japanese Society of Systematic Zoology,13421670|13421670 +Specijalna edukacija i rehabilitacija,Centre for Evaluation in Education and Science,14527367| +Spectral Analysis Review,"""Scientific Research Publishing, Inc.""",23312092|23312106 +Spectrochimica Acta,Elsevier ,03711951| +Spectrochimica Acta Part A Molecular and Biomolecular Spectroscopy,Elsevier ,13861425| +Spectrochimica Acta Part A Molecular Spectroscopy,Elsevier ,05848539| +Spectrochimica Acta Part B Atomic Spectroscopy,Elsevier ,05848547| +Spectroscopy An International Journal,Hindawi Publishing Corporation,07124813|1875922X +Spectroscopy Letters,Informa UK (Taylor & Francis),00387010|15322289 +Spectrum A Journal on Black Men,Indiana University Press,21623244|21623252 +Speculations in Science and Technology,Springer (Kluwer Academic Publishers),01557785| +Speculum,The University of Chicago Press,00387134|20408072 +Speech Communication,Elsevier ,01676393| +Speech Language and Hearing,Maney Publishing,2050571X|20505728 +Speech Monographs,Informa UK (Taylor & Francis),00387169| +Spei Domus,Universidad Cooperativa de Colombia - UCC,17947928| +Spektrum der Augenheilkunde,Springer-Verlag,09304282|16137523 +Spenser Studies A Renaissance Poetry Annual,"""AMS Press, Inc.""",01959468|21678529 +Spermatogenesis,Landes Bioscience,21565554|21565562 +SPERMOVA,Asociacion Peruana de Reproduccion Animal,22239375|23084928 +SPIE Newsroom,SPIE - International Society for Optical Engineering,18182259 +SPIE Professional,SPIE - International Society for Optical Engineering,19944403 +SPIE Reviews,SPIE - International Society for Optical Engineering,19463251| +Spiegel der Letteren,Peeters Publishers,387479 +SPIEL,"""Peter Lang, International Academic Publishers""",07227833| +SPIIRAS Proceedings,SPIIRAS,20789181|20789599 +Spill Science & Technology Bulletin,Elsevier ,13532561| +SPIN,World Scientific ,20103247|20103255 +Spinal Cord,Nature Publishing Group,13624393|13624393 +Spinal Cord Series and Cases,Nature Publishing Group,20586124 +Spinal Surgery,Japanese Society of Spinal Surgery,09146024|18809359 +Spine,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,03622436| +Spine Deformity,Elsevier ,2212134X| +Spirale,CAIRN,12784699|19516274 +Spiritual Care,Walter de Gruyter GmbH,21933804|23658185 +Spirituality and Health International,Wiley Blackwell (John Wiley & Sons),17431867|15570665 +Spirituality in Clinical Practice,American Psychological Association,23264500|23264519 +Spiritus A Journal of Christian Spirituality,Muse - Johns Hopkins University Press,15353117 +Spolia zeylanica,Smithsonian Institution Biodiversity Heritage Library,00813745| +Spontaneous Generations A Journal for the History and Philosophy of Science,Spontaneous Generations,19130465 +Spor Bilimleri Dergisi Hacettepe Üniversitesi,Hacettepe Journal of Sport Sciences,13003119| +Spor ve Performans Araştırmaları Dergisi,Journal of Sports and Performance Researches,13095110|13098543 +Sport Business and Management An International Journal,Emerald (MCB UP ),2042678X| +Sport Education and Society,Informa UK (Taylor & Francis),13573322|14701243 +Sport Ethics and Philosophy,Informa UK (Taylor & Francis),17511321|1751133X +Sport Exercise and Performance Psychology,American Psychological Association,21573905|21573913 +Sport History Review,Human Kinetics,10871659| +Sport in History,Informa UK (Taylor & Francis),17460263|17460271 +Sport in Society,Informa UK (Taylor & Francis),17430437|17430445 +Sport Management Education Journal,Human Kinetics,19386974| +Sport Management Review,Elsevier ,14413523| +Sport Science Review,De Gruyter Open Sp. z o.o. ,20668732|20697244 +Sport Sciences for Health,Springer-Verlag,18247490|18251234 +Sport und Gesellschaft,Walter de Gruyter GmbH,16103181|23660465 +Sport- und Präventivmedizin,Springer-Verlag,18671977|18671985 +Sport-Orthopädie - Sport-Traumatologie - Sports Orthopaedics and Traumatology,Elsevier ,0949328X| +sportlogia,Faculty of Physical Education and Sport,19866089|19866119 +Sporto mokslas / Sport Science,Lithuanian University of Educational Sciences,13921401|24243949 +Sportphysio,Thieme Publishing Group,21965951|2196596X +Sports,MDPI AG,20754663 +Sports & Exercise Research,"""Airiti Press, Inc.""",15633470| +Sports and Exercise Medicine - Open Journal,Openventio Publishers,23796375 +Sports Biomechanics,Informa UK (Taylor & Francis),14763141|17526116 +Sports Coaching Review,Informa UK (Taylor & Francis),21640629|21640637 +Sports Engineering,Springer-Verlag,13697072|14602687 +Sports Health A Multidisciplinary Approach,SAGE Publications,19417381|19410921 +Sports Medicine,Springer-Verlag,01121642|11792035 +Sports Medicine - Open,Springer-Verlag,21991170|21989761 +Sports Medicine and Arthroscopy Review,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10628592| +Sports Medicine Arthroscopy Rehabilitation Therapy & Technology,Springer (Biomed Central Ltd.),17582555| +Sports Medicine Training and Rehabilitation,Informa UK (Taylor & Francis),10578315| +Sports Technology,Wiley Blackwell (John Wiley & Sons),19346182|19346190 +Sportverletzung · Sportschaden,Thieme Publishing Group,09320555|14391236 +Sportwissenschaft,Springer-Verlag,03422380|18681069 +Społeczeństwo i Ekonomia,Wroclaw University of Economics,23538937|23538937 +Sprache & Kognition,Hogrefe Publishing Group,02534533| +Sprache und Kognition - Zeitschrift für Sprach- & Kognitionspsycholgie und ihre Grenzgebiete,Hogrefe Publishing Group, +Sprache · Stimme · Gehör,Thieme Publishing Group,03420477|14391260 +Sprachkunst Beiträge zur Literaturwissenschaft,Verlag der Osterreichischen Akademie der Wissenschaften,00388483|17276993 +Sprachtypologie und Universalienforschung,Oldenbourg Wissenschaftsverlag,09422919| +Spravochnik Inzhenernyi zhurnal,"""Izdatel'skii dom Spektr, LLC""",0203347X| +Sprawy Narodowościowe,Institute of Slavic Studies of the Polish Academy of Sciences,12301698|23922427 +Springer Healthcare News,Springer-Verlag,21930961 +Springer Science Reviews,Springer-Verlag,22137793|22137793 +Springer Seminars in Immunopathology,Springer-Verlag,03444325|14322196 +SpringerPlus,Springer (Biomed Central Ltd.),21931801|21931801 +SQUALEN Bulletin of Marine and Fisheries Postharvest and Biotechnology,Research and Development Agency for Marine Affairs and Fisheries,20895690|24069272 +Sravnitel noe konstitucionnoe obozrenie,Institute for Law and Public Policy,18127126| +SRELS Journal of Information Management,Sarada Ranganathan Endowment for Library Science,09722467|09762477 +Sri Lanka Journal of Advanced Social Studies,Sri Lanka Journals Online ,20129149| +Sri Lanka Journal of Aquatic Sciences,Sri Lanka Journals Online ,13912038|24247057 +Sri Lanka Journal of Bio-Medical Informatics,Sri Lanka Journals Online ,20126077| +Sri Lanka Journal of Child Health,Sri Lanka Journals Online ,13915452|2386110X +Sri Lanka Journal of Critical Care,Sri Lanka Journals Online ,20125836| +Sri Lanka Journal of Development Administration,Sri Lanka Journals Online ,13918214| +Sri Lanka Journal of Diabetes Endocrinology and Metabolism,Sri Lanka Journals Online ,2012998X| +Sri Lanka Journal of Forensic Medicine Science & Law,Sri Lanka Journals Online ,20127081|24656089 +Sri Lanka Journal of Humanities,Sri Lanka Journals Online ,0378486X| +Sri Lanka Journal of Obstetrics and Gynaecology,Sri Lanka Journals Online ,13917536|22791655 +Sri Lanka Journal of Psychiatry,Sri Lanka Journals Online ,20126883| +Sri Lanka Journal of Radiology,Sri Lanka Journals Online ,24246336 +Sri Lanka Journal of Sexual Health and HIV Medicine,Sri Lanka Journals Online ,24780693 +Sri Lanka Journal of Social Sciences,Sri Lanka Journals Online ,02589710| +Sri Lanka Journal of Surgery,Sri Lanka Journals Online ,1391491X|22792201 +Sri Lanka Journal of Urology,Sri Lanka Journals Online ,13916343| +Sri Lanka Journal of Venereology,Sri Lanka Journals Online ,18002323|22793445 +Sri Lankan Journal of Agricultural Economics,Sri Lanka Journals Online ,13917358| +Sri Lankan Journal of Anaesthesiology,Sri Lanka Journals Online ,13918834|22791965 +Sri Lankan Journal of Applied Statistics,Sri Lanka Journals Online ,13914987| +Sri Lankan Journal of Human Resource Management,Sri Lanka Journals Online ,18003036| +Sri Lankan Journal of Infectious Diseases,Sri Lanka Journals Online ,20128169| +Sri Lankan Journal of Librarianship and Information Management,Sri Lanka Journals Online ,18003044| +Sri Lankan Journal of Medical Administration,Sri Lanka Journals Online ,13912909| +Sri Lankan Journal of Physics,Sri Lanka Journals Online ,13915800|24781193 +SRM Journal of Research in Dental Sciences,Medknow Publications,0976433X| +Srpska pravna misao,"""Faculty of Law, Banja Luka University""",18400493|22330410 +Srpski arhiv za celokupno lekarstvo,National Library of Serbia,03708179|24060895 +SRX Agriculture,Hindawi Publishing Corporation (Syrexe),20901038 +SRX Biology,Hindawi Publishing Corporation (Syrexe),20901046 +SRX Chemistry,Hindawi Publishing Corporation (Syrexe),20901054 +SRX Computer Science,Hindawi Publishing Corporation (Syrexe),20901062 +SRX Dentistry,Hindawi Publishing Corporation (Syrexe),20901070 +SRX Ecology,Hindawi Publishing Corporation (Syrexe),20901089 +SRX Engineering,Hindawi Publishing Corporation (Syrexe),20901097 +SRX Geosciences,Hindawi Publishing Corporation (Syrexe),20901100 +SRX Materials Science,Hindawi Publishing Corporation (Syrexe),20901119 +SRX Mathematics,Hindawi Publishing Corporation (Syrexe),20901127 +SRX Medicine,Hindawi Publishing Corporation (Syrexe),20901135 +SRX Neuroscience,Hindawi Publishing Corporation (Syrexe),20901143 +SRX Pharmacology,Hindawi Publishing Corporation (Syrexe),20901151 +SRX Physics,Hindawi Publishing Corporation (Syrexe),2090116X +SRX Veterinary Science,Hindawi Publishing Corporation (Syrexe),20901178 +SSM - Population Health,Elsevier ,23528273| +SSRN Electronic Journal,Social Science Electronic Publishing,15565068 +St Petersburg Mathematical Journal,American Mathematical Society,10610022|15477371 +St Petersburg Polytechnical University Journal Physics and Mathematics,Elsevier ,24057223| +St Petersburg State Polytechnical University Journal,St. Petersburg State Polytechnical University,19942354|19942354 +St Petersburg State Polytechnical University Journal Computer Science Telecommunications and Control Systems,St. Petersburg State Polytechnical University,23049766|23049766 +St Petersburg State Polytechnical University Journal Economics,St. Petersburg State Polytechnical University,23049774|23049774 +St Petersburg State Polytechnical University Journal Humanities and Social Sciences,St. Petersburg State Polytechnical University,23049758|23049758 +St Petersburg State Polytechnical University Journal Physics and Mathematics,St. Petersburg State Polytechnical University,23049782|23049782 +St Tikhon s University Review,St. Tikhon's Orthodox University,1991640X|1991640X +St Tikhons University Review,St. Tikhon's Orthodox University,19916434|19916434 +St Tikhons University Review Series III Philology,St. Tikhon's Orthodox University,19916485|19916485 +St Tikhons University Review Series IV Pedagogy Psychology,St. Tikhon's Orthodox University,19916493|19916493 +St Tikhons University Review Series V Christian Art,St. Tikhon's Orthodox University,22205098|22205098 +StAB,Boom Uitgevers Den Haag,1573806X| +Stability International Journal of Security and Development,"""Ubiquity Press, Ltd.""",21652627|21652627 +Staff Discussion Notes,International Monetary Fund,2221030X| +Staff Studies,Sri Lanka Journals Online ,13913743| +Stahlbau,Wiley Blackwell (John Wiley & Sons),00389145|14371049 +Stain Technology,Informa UK (Taylor & Francis),00389153| +Stamford Journal of English,Bangladesh Journals Online,18189512| +Stamford Journal of Microbiology,Bangladesh Journals Online,20745346|24088846 +Stamford Journal of Pharmaceutical Sciences,Bangladesh Journals Online,19997108| +Standard of living of the population of regions of Russia,Infra-M Academic Publishing House,19999836| +Standards and Monitoring in Education,Infra-M Academic Publishing House,19981740| +Standards in Genomic Sciences,Springer (Biomed Central Ltd.),19443277|19443277 +StandardView,Association for Computing Machinery,10679936| +Standartnye obrazсy - Reference materials,Ural Research Institute of Metrology (UNIIM),20771177| +Standby,Springer-Verlag,0922310X|18765572 +Standort,Springer-Verlag,01743635|1432220X +Stanford Law Review,JSTOR,00389765| +Stanislavski Studies,Informa UK (Taylor & Francis),20567790|20544170 +Stanovnistvo,National Library of Serbia,0038982X|22173986 +Staps,CAIRN,0247106X|17821568 +STAR Science & Technology of Archaeological Research,Maney Publishing,20548923 +Starch - Stärke,Wiley Blackwell (John Wiley & Sons),00389056|1521379X +Starinar,National Library of Serbia,03500241|24060739 +Starting from Diketones,Thieme Publishing Group,20400004 +Stat,Wiley Blackwell (John Wiley & Sons),20491573| +State and Local Government Review,SAGE Publications,0160323X|19433409 +State Crime Journal,Pluto Journals,20466056|20466064 +State of California Labor,University of California Press,15319037|15419045 +State Politics & Policy Quarterly,SAGE Publications,15324400|19461607 +Statistica Neerlandica,Wiley Blackwell (Blackwell Publishing),00390402|14679574 +Statistica Sinica,"""Institute of Statistical Science, Academia Sinica""",10170405|10170405 +Statistical Analysis and Data Mining The ASA Data Science Journal,Wiley Blackwell (John Wiley & Sons),19321864|19321872 +Statistical Applications in Genetics and Molecular Biology,Walter de Gruyter GmbH,21946302|15446115 +Statistical Communications in Infectious Diseases,Walter de Gruyter GmbH,21946310|19484690 +Statistical Inference for Stochastic Processes,Springer-Verlag,13870874|15729311 +Statistical Journal of the IAOS,IOS Press,18747655|18759254 +Statistical Methodology,Elsevier ,15723127| +Statistical Methods & Applications,Springer-Verlag,16182510|1613981X +Statistical Methods in Medical Research,SAGE Publications,09622802|14770334 +Statistical Modelling,SAGE Publications,1471082X|14770342 +Statistical Papers,Springer-Verlag,09325026|16139798 +Statistical Science,Institute of Mathematical Statistics,08834237| +Statistics,Informa UK (Taylor & Francis),02331888|10294910 +Statistics & Decisions,Oldenbourg Wissenschaftsverlag,07212631| +Statistics & Probability Letters,Elsevier ,01677152| +Statistics & Risk Modeling,Oldenbourg Wissenschaftsverlag,21931402|21967040 +Statistics and Applications,Hans Publishers,23252251|2325226X +Statistics and Computing,Springer-Verlag,09603174|15731375 +Statistics and Its Interface,"""International Press of Boston, Inc.""",19387989|19387997 +Statistics and Public Policy,Informa UK (Taylor & Francis),2330443X +Statistics in Biopharmaceutical Research,Informa UK (American Statistical Association),19466315|19466315 +Statistics in Biosciences,Springer-Verlag,18671764|18671772 +Statistics in Medicine,Wiley Blackwell (John Wiley & Sons),02776715|10970258 +Statistics in Volcanology,University of South Florida Libraries,2163338X +Statistics Optimization & Information Computing,International Academic Press,2311004X|23105070 +Statistics Politics and Policy,Walter de Gruyter GmbH,21946299|21517509 +Statistics Research Letters,"""Science and Engineering Publishing, Co.""",23257059| +Statistics Surveys,Institute of Mathematical Statistics,19357516| +Statistiques de l OCDE sur les échanges internationaux de services,Organisation for Economic Co-Operation and Development , +Statistiques du commerce international par produit,Organisation for Economic Co-Operation and Development ,22195084| +Statistiques et études financières,PERSEE Program,03384217| +Statistiques mensuelles du commerce international,Organisation for Economic Co-Operation and Development ,22195327| +Statistische Hefte,Springer-Verlag,00390631| +Statisztikai Szemle,Statisztikai Szemle,00390690| +Statute Law Review,Oxford University Press,01443593|14643863 +Statutes and Decisions,Informa UK (Taylor & Francis),10610014|15580903 +Statyba,Informa UK (Taylor & Francis),13921525| +Statybinės konstrukcijos ir technologijos,Vilnius Gediminas Technical University,20292317|20292325 +Stavební obzor - Civil Engineering Journal,Czech Technical University in Prague - Central Library,18052576 +STEAM,Claremont Colleges Library,23272074 +Steciana,Bogucki Wydawnictwo Naukowe,1689653X| +Steel and Composite Structures,Techno-Press,12299367| +Steel Construction,Wiley Blackwell (John Wiley & Sons),18670520|18670539 +Steel in Translation,Allerton Press,09670912|19350988 +steel research international,Wiley Blackwell (John Wiley & Sons),16113683|1869344X +Steglich and Related Rearrangements,Thieme Publishing Group,20400268 +Steinbeck Review,The Pennsylvania State University Press,17546087 +Steinbeck Review,The Pennsylvania State University Press,1546007X|19386214 +Steinbeck Studies,Muse - Johns Hopkins University Press,15516903 +Stellenbosch Papers in Linguistics,Stellenbosch University - SPIL,10273417|22239936 +Stellenbosch Papers in Linguistics Plus,Stellenbosch University - SPILPlus,1726541X|22243380 +Stem Cell and Translational Investigation,"""Smart Science and Technology, LLC""",23772557 +Stem Cell Biology and Research,Herbert Publications,2054717X +Stem Cell Discovery,"""Scientific Research Publishing, Inc.""",21616760|21616787 +Stem Cell Epigenetics,"""Smart Science and Technology, LLC""",23783095 +Stem Cell Fundamentals and Practice,ScopeMed International Medical Journal Managment and Indexing System,21478074| +Stem Cell Investigation,AME Publishing Company,23069759 +Stem Cell Reports,Elsevier ,22136711| +Stem Cell Research,Elsevier ,18735061| +Stem Cell Research & Therapy,Springer (Biomed Central Ltd.),17576512|17576512 +Stem Cell Reviews and Reports,Springer-Verlag,15508943|15586804 +Stem Cell Studies,PAGEPress Publications,20389558|20389566 +Stem Cells,Wiley Blackwell (John Wiley & Sons),10665099|15494918 +Stem Cells and Cloning Advances and Applications,Dove Medical Press,11786957 +Stem Cells and Development,Mary Ann Liebert,15473287|00000000 +Stem Cells in Oral Medicine,De Gruyter Open Sp. z o.o. ,20847238 +Stem Cells International,Hindawi Publishing Corporation (Sage-Hindawi Access to Research),1687966X|16879678 +Stem Cells International,Hindawi Publishing Corporation (Sage-Hindawi Access to Research),16879678 +Stem Cells Translational Medicine,Alphamed Press,21576564|21576580 +STEM Journal,Society for Teaching English through Media,15981002| +StemBook,StemBook,19403429 +Stephan Mueller Special Publication Series,Copernicus GmbH,18684564 +Stereoselective Reactions on Chiral or Racemic Substrates,Thieme Publishing Group,20200072 +Stereotactic and Functional Neurosurgery,S. Karger AG,10116125|14230372 +Steroids,Elsevier ,0039128X| +Stewart Postharvest Review,Stewart Postharvest Solutions,17459656|17459656 +STI - Science Technology and Industry Review,Organisation for Economic Co-Operation and Development ,10105247| +Stigma and Health,American Psychological Association,23766972|23766964 +Stigma Research and Action,VU E-Publishing,22105174 +Stimulus,Springer-Verlag,09290591|18765599 +Stochastic Analysis and Applications,Informa UK (Taylor & Francis),07362994|15329356 +Stochastic Environmental Research and Risk Assessment,Springer-Verlag,14363240|14363259 +Stochastic Hydrology and Hydraulics,Springer-Verlag,09311955|1435151X +Stochastic Models,Informa UK (Taylor & Francis),15326349|15324214 +Stochastic Partial Differential Equations Analysis and Computations,Springer-Verlag,21940401|2194041X +Stochastic Processes and their Applications,Elsevier ,03044149| +Stochastic Systems,Institute of Mathematical Statistics,19465238|19465238 +Stochastics,Informa UK (Taylor & Francis),00909491| +Stochastics An International Journal of Probability and Stochastic Processes,Informa UK (Taylor & Francis),17442508|17442516 +Stochastics and Dynamics,World Scientific ,02194937|17936799 +Stochastics and Stochastics Reports,Informa UK (Taylor & Francis),10451129| +Stoichiometric Asymmetric Hydroboration,Thieme Publishing Group,20100175 +Stomatologie,Springer-Verlag,09463151|16137698 +Stomatologija,"""Science and Education, Ltd.""",00391735| +Stomatoloski glasnik Srbije,National Library of Serbia,00391743|14523701 +Stomatoloski informator,Centre for Evaluation in Education and Science,14513439| +STORIA E PROBLEMI CONTEMPORANEI,Franco Angeli,11204206| +STORIA IN LOMBARDIA,Franco Angeli,18282008|19725035 +STORIA URBANA,Franco Angeli,03912248|19725523 +Storicamente,BraDypUS,1825411X +Storytelling A Critical Journal of Popular Narrative,Informa UK (Heldref Publications),15360555| +Storytelling Self Society,Wayne State University Press,15505340|19320280 +StoryWorlds A Journal of Narrative Studies,University of Nebraska Press,19462204|21567204 +Strabismus,Informa UK (Taylor & Francis),09273972|17445132 +Strafverteidiger,Walter de Gruyter GmbH,07201605|23662166 +Strahlentherapie und Onkologie,Springer-Verlag,01797158|1439099X +Strain,Wiley Blackwell (Blackwell Publishing),00392103|14751305 +Strategic Analysis,Informa UK (Taylor & Francis),09700161|17540054 +Strategic Behavior and the Environment,Now Publishers,19440138 +Strategic Change,Wiley Blackwell (John Wiley & Sons),10861718|10991697 +Strategic Comments,Informa UK (Taylor & Francis),13567888 +Strategic Design Research Journal,Universidade do Vale do Rio Dos Sinos - UNISINOS,19842988 +Strategic Direction,Emerald (MCB UP ),02580543|00000000 +Strategic Enrollment Management Quarterly,Wiley Blackwell (John Wiley & Sons),23254750| +Strategic Entrepreneurship Journal,Wiley Blackwell (John Wiley & Sons),19324391|1932443X +Strategic HR Review,Emerald (MCB UP ),14754398| +Strategic Management Journal,Wiley Blackwell (John Wiley & Sons),01432095|10970266 +Strategic Management Quarterly,American Research Institute for Policy Development,23724951|2372496X +Strategic Management Review,Business Expert Press,21683956|19304560 +Strategic Organization,SAGE Publications,14761270|00000000 +Strategic Outsourcing An International Journal,Emerald (MCB UP ),17538297| +Strategic Planning for Energy and the Environment,Informa UK (Taylor & Francis),10485236|15460126 +Strategic Survey,Informa UK (Taylor & Francis),04597230|14764997 +Strategie und Sicherheit,Bohlau Verlag,22277668|23044845 +Strategies,Informa UK (Taylor & Francis),08924562|21683778 +Strategies in Trauma and Limb Reconstruction,Springer-Verlag,18288936|18288928 +Strategies Journal of Theory Culture & Politics,Informa UK (Taylor & Francis),10402136|14701251 +Strategy & Leadership,Emerald (MCB UP ),10878572| +Strategy and Leadership,Emerald (MCB UP ),10878572|00000000 +Strategy Science,Institute for Operations Research and the Management Sciences,23332050|23332077 +Stratigraphy and Geological Correlation,Pleiades Publishing,08695938|15556263 +Středoevropské politické studie Central European Political Studies Review,Masaryk University Press,12127817 +Stredoevropsky vestnik pro vedu a vyzkum,"""Science and Education, Ltd.""",23363630| +Strenae,OpenEdition,21099081|21099081 +Strength and Conditioning,Ovid Technologies (Wolters Kluwer) - National Strength & Conditioning,10736840| +Strength and Conditioning Journal,Ovid Technologies (Wolters Kluwer) - National Strength & Conditioning,15241602| +STRENGTH AND CONDITIONING JOURNAL,Ovid Technologies (Wolters Kluwer) - National Strength & Conditioning,10736840|15334295 +Strength Fracture and Complexity,IOS Press,15672069|18759262 +Strength of Materials,Springer-Verlag,00392316|15739325 +Strengthening Health Systems,Health and Medical Publishing Group,23129360|24088870 +Stress,Informa UK (Taylor & Francis),10253890|16078888 +Stress and Health,Wiley Blackwell (John Wiley & Sons),15323005|15322998 +Stress Medicine,Wiley Blackwell (John Wiley & Sons),07488386|10991700 +Stress Science Research,Public Health Research Foundation,13419986|18845525 +Stress Trauma and Crisis An International Journal,Informa UK (Taylor & Francis),15434613| +Strojnícky casopis – Journal of Mechanical Engineering,Walter de Gruyter GmbH,24505471 +Strojniški vestnik – Journal of Mechanical Engineering,Faculty of Mechanical Engineering,00392480|00392480 +Stroke,Ovid Technologies Wolters Kluwer -American Heart Association,00392499|15244628 +Stroke Research and Treatment,Hindawi Publishing Corporation,20908105|20420056 +Stroke Research and Treatment,Hindawi Publishing Corporation (Sage-Hindawi Access to Research),20420056 +Structural and Multidisciplinary Optimization,Springer-Verlag,1615147X|16151488 +Structural Biology,Hindawi Publishing Corporation,23144343|23144351 +Structural Change and Economic Dynamics,Elsevier ,0954349X| +Structural Chemistry,Springer-Verlag,10400400|15729001 +Structural Concrete,Wiley Blackwell (John Wiley & Sons),14644177|17517648 +Structural Control and Health Monitoring,Wiley Blackwell (John Wiley & Sons),15452255|15452263 +Structural Dynamics,American Institute of Physics,23297778|23297778 +STRUCTURAL ENGINEERING / EARTHQUAKE ENGINEERING,Japan Society of Civil Engineers,02898063|18823424 +STRUCTURAL ENGINEERING AND MECHANICS,Techno-Press,12254568| +Structural Engineering International,International Association for Bridge and Structural Engineering,10168664|16830350 +Structural Equation Modeling A Multidisciplinary Journal,Informa UK (Taylor & Francis),10705511|15328007 +Structural Health Monitoring,SAGE Publications,14759217|00000000 +Structural Monitoring and Maintenance,Techno-Press,22886605| +Structural Optimization,Springer-Verlag,09344373| +Structural Safety,Elsevier ,01674730| +Structural Survey,Emerald (MCB UP ),0263080X|00000000 +Structure,Elsevier ,09692126|18784186 +Structure and Infrastructure Engineering,Informa UK (Taylor & Francis),15732479|17448980 +Structures,Elsevier ,23520124| +Studenckie Zeszyty Naukowe,Wydawnictwo Uniwersytetu Marii Curie-SkÅ?odowskiej w Lublinie,15068285|24498262 +Student Affairs Today,Wiley Blackwell (John Wiley & Sons),10985166|19437552 +Student Aid News,Wiley Blackwell (John Wiley & Sons),01942212|1943751X +Student Engagement and Experience Journal,Sheffield Hallam University,20479476 +Student Success,Queensland University of Technology,22050795 +Students Quarterly Journal,Institution of Electrical Engineers,00392871| +STUDI ECONOMICI,Franco Angeli,00392928|19724918 +Studi Francesi,OpenEdition,00392944| +Studi Francesi,OpenEdition,00392944| +Studi Internazionali di Filosofia,Philosophy Documentation Center,00392979| +STUDI JUNGHIANI,Franco Angeli,18285147|19718411 +STUDI ORGANIZZATIVI,Franco Angeli,03918769|19724969 +Studia Anglica Posnaniensia,De Gruyter Open Sp. z o.o. ,00816272|00816272 +Studia Azjatystyczne,Adam Mickiewicz University Poznan,24495433| +Studia Białorutenistyczne,Wydawnictwo Uniwersytetu Marii Curie-SkÅ?odowskiej w Lublinie,18980457| +Studia botanica hungarica,Studia Botanica Hungarica,03017001| +Studia Casuistica,SZVT Research and Development Center,20638396 +Studia commercialia Bratislavensia,De Gruyter Open Sp. z o.o. ,13377493|13377493 +Studia Demograficzne,De Gruyter Open Sp. z o.o. ,00393134| +Studia Edukacyjne,Adam Mickiewicz University Poznan,12336688| +Studia Ethnologica Croatica,"""Faculty of Humanities and Social Sciences, University of Zagreb""",13303627|18489532 +Studia Europaea Gnesnensia,Adam Mickiewicz University Poznan,20825951| +Studia Geomorphologica Carpatho-Balcanica,De Gruyter Open Sp. z o.o. ,816434 +Studia Geophysica et Geodaetica,Springer-Verlag,00393169|15731626 +Studia Geotechnica et Mechanica,De Gruyter Open Sp. z o.o. ,01376365|01376365 +Studia Germanica Posnaniensia,Adam Mickiewicz University Poznan,01372467| +Studia Historiae Oeconomicae,De Gruyter Open Sp. z o.o. ,00816485|00816485 +Studia Historica Historia Medieval,Ediciones Universidad de Salamanca,02132060| +Studia Historica Historia Moderna,Ediciones Universidad de Salamanca,02132079|23863889 +Studia Humana,De Gruyter Open Sp. z o.o. ,22990518 +Studia Humanistyczne AGH,AGH University of Science and Technology Press,20843364| +Studia Humanitatis,Petrozavodsk State University,23113049|23113049 +Studia i Materiały Wydziału Zarządzania UW,"""University of Warsaw, Faculty of Management""",17339758| +Studia Iberystyczne,Ksiegarnia Akademicka Sp. z.o.o.,20828594| +Studia Iranica,Peeters Publishers,2215004 +Studia Islamica,Brill Academic Publishers,05855292|19585705 +STUDIA ISLAMIKA,E-Journal System Portal of Syarif Hidayatullah State Islamic University,02150492|23556145 +Studia Iuridica Agraria,University of Bialystok,16420438| +Studia Iuridica Lublinensia,Wydawnictwo Uniwersytetu Marii Curie-SkÅ?odowskiej w Lublinie,17316375|24498289 +Studia Iuridica Toruniensia,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,16895258|23917873 +Studia Linguistica,Wiley Blackwell (Blackwell Publishing),00393193|14679582 +Studia Linguistica Universitatis Iagellonicae Cracoviensis,De Gruyter Open Sp. z o.o. ,18971059|20834624 +Studia Litteraria et Historica,Institute of Slavic Studies of the Polish Academy of Sciences,22997571 +Studia Logica,Springer-Verlag,00393215|15728730 +Studia Mathematica,"""Institute of Mathematics, Polish Academy of Sciences""",00393223|17306337 +Studia Metrica et Poetica,University of Tartu Press,23466901|2346691X +Studia Mundi - Economica,Studia Mundi - Economica,24159395| +Studia Musicologica,Akademiai Kiado Zrt.,00393266|17892422 +Studia Musicologica Norvegica,Scandinavian University Press / Universitetsforlaget AS,03325024|15042960 +Studia Neoaristotelica,Philosophy Documentation Center,12148407| +Studia Neophilologica,Informa UK (Taylor & Francis),00393274|00000000 +Studia Norwidiana,Towarzystwo Naukowe KUL,08600562| +Studia Obszarów Wiejskich,"""Institute of Geography and Spatial Organization, Polish Academy of Sciences""",16424689| +Studia Oeconomica Posnaniensia,Poznan University of Economics,23005254| +Studia Orientalia Christiana,"""Brepols Publishers, NV""",05855403| +Studia paedagogica,Masaryk University Press,18037437|18037437 +Studia Paedagogica Ignatiana,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,22994890| +Studia Phaenomenologica,Philosophy Documentation Center,15825647|20690061 +Studia Philosophica Estonica,University of Tartu Press,2228110X|17365899 +Studia Podlaskie,University of Bialystok,08671370| +Studia Poliana,Universidad de Navarra,11396660| +Studia Polonijne,Towarzystwo Naukowe KUL,01375210| +Studia Psychologiczne,De Gruyter Open Sp. z o.o. ,0081685X| +Studia Quaternaria,De Gruyter Open Sp. z o.o. ,16415558|23000384 +Studia Romanica Posnaniensia,Adam Mickiewicz University Poznan,01372475|20844158 +Studia Rosenthaliana,Peeters Publishers,17817838 +Studia Rossica Posnaniensia,Adam Mickiewicz University Poznan,00816884| +Studia Scientiarum Mathematicarum Hungarica,Akademiai Kiado Zrt.,00816906|15882896 +Studia Slavica,Akademiai Kiado Zrt.,00393363|1588290X +Studia Slavica Savariensia,Studia Slavica Savariensia,12160016| +Studia Socialia Cracoviensia,Pontifical Universtiy of John Paul II in Krakow,20806604|23916710 +Studia Teologii Dogmatycznej,University of Bialystok,24497452| +Studia Theologica - Nordic Journal of Theology,Informa UK (Taylor & Francis),0039338X|15027791 +Studia Ukrainica Posnaniensia,Adam Mickiewicz University Poznan,23004754| +Studia Universitatis Babes-Bolyai Geologia,University of South Florida Libraries,12210803|19378602 +Studia Universitatis Babes-Bolyai Sociologia,Walter de Gruyter GmbH,20660464 +Studia Universitatis „Vasile Goldis” Arad – Economics Series,Walter de Gruyter GmbH,15842339 +Studia Wschodniosłowiańskie,University of Bialystok,1642557X| +Studia z Dziejów Rosji i Europy Środkowo-Wschodniej,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,12305057|23536403 +Studia z Etyki i Edukacji Globalnej,Index Copernicus International,13211331| +Studia z Filologii Polskiej i Słowiańskiej,Institute of Slavic Studies of the Polish Academy of Sciences,00817090|23922435 +Studia z Geografii Politycznej i Historycznej,Uniwersytet Lodzki (University of Lodz),23000562| +Studia z Historii Filozofii,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,20831978|2391775X +Studia z Historii Społeczno-Gospodarczej XIX i XX Wieku,Uniwersytet Lodzki (University of Lodz),20808313| +Studien zu Hegels Philosophie,Japanische Hegel-Gesellschaft,13423703|18845649 +Studier i Pædagogisk Filosofi,Aarhus University Library,22449140 +Studier i Pædagogisk Filosofi Monografiserie,Aarhus University Library,22468587 +Studies About Languages,Publishing House Technologija,16482824|20297203 +Studies and Research,"""Al Manhal FZ, LLC""",11129751| +Studies for the Learning Society,De Gruyter Open Sp. z o.o. ,17367085|17367107 +Studies in 20th & 21st Century Literature,New Prairie Press,23344415 +Studies in Agricultural Economics,Research Institute of Agricultural Economics,14182106|20630476 +Studies in American Fiction,Muse - Johns Hopkins University Press,2158415X +Studies in American Humor,The Pennsylvania State University Press,0095280X|23339934 +Studies in American Indian Literatures,University of Nebraska Press,07303238|15489590 +Studies in American Jewish Literature (1981-),The Pennsylvania State University Press,02719274|19485077 +Studies in American Naturalism,Muse - Johns Hopkins University Press,19446519 +Studies in American Political Development,Cambridge University Press,0898588X|14698692 +Studies in Ancient Art and Civilization,Ksiegarnia Akademicka Sp. z.o.o.,00834300| +Studies in Applied Mathematics,Wiley Blackwell (Blackwell Publishing),00222526|14679590 +Studies in Art Education,JSTOR,00393541| +Studies in Arts and Humanities,SAHkartell,2009826X|20097298 +Studies in Asian Social Science,Sciedu Press,23302143|23302151 +Studies In Australasian Cinema,Informa UK (Taylor & Francis),17503175|17503183 +Studies in Bibliography,Muse - Johns Hopkins University Press,15533891 +Studies in Business and Economics,Walter de Gruyter GmbH,23445416 +Studies in Central & East Asian Religions,Brill Academic Publishers,09042431|15700712 +Studies in Chinese Linguistics,Walter de Gruyter GmbH,10171274 +Studies in Chinese Religions,Informa UK (Taylor & Francis),23729988|23729996 +Studies in Christian Ethics,SAGE Publications,09539468|17455235 +Studies in Christian-Jewish Relations,Boston College University Libraries,19303777 +Studies in Church History,Cambridge University Press,04242084| +Studies in Church History Subsidia,Cambridge University Press,01430459| +Studies in Comics,Intellect,20403232|20403240 +Studies in Communication Sciences,Elsevier ,14244896| +Studies in Communication | Media,Nomos Verlag,21924007| +Studies in Comparative Communism,Elsevier ,00393592| +Studies in Comparative International Development,Springer-Verlag,00393606|19366167 +Studies in Conflict and Terrorism,Informa UK (Taylor & Francis),1057610X|15210731 +Studies in Conservation,Maney Publishing,00393630|20470584 +Studies in Continuing Education,Informa UK (Taylor & Francis),0158037X|1470126X +Studies in Cultures Organizations and Societies,Informa UK (Taylor & Francis),10245286| +Studies in Documentary Film,Informa UK (Taylor & Francis),17503280|17503299 +Studies in East European Thought,Springer-Verlag,09259392|15730948 +Studies in Eastern European Cinema,Informa UK (Taylor & Francis),2040350X|20403518 +Studies in Economics and Finance,Emerald (MCB UP ),10867376| +Studies In Educational Evaluation,Elsevier ,0191491X| +Studies in Eighteenth Century Culture,Muse - Johns Hopkins University Press,19386133 +Studies in Engineering and Technology,Redfame Publishing,23302038|23302046 +Studies in English Literature 1500-1900,JSTOR,00393657| +Studies in Environmental Science,Elsevier , +Studies in Ethics Law and Technology,Walter de Gruyter GmbH,21946280|19416008 +Studies in Ethnicity and Nationalism,Wiley Blackwell (Blackwell Publishing),14738481|17549469 +Studies in European Cinema,Informa UK (Taylor & Francis),17411548|17411548 +Studies in Family Planning,Wiley Blackwell (Blackwell Publishing),00393665|17284465 +Studies in Foreign Language Education,Institute for Foreign Language Education,12254975| +Studies in French Cinema,Informa UK (Taylor & Francis),14715880|17589517 +Studies in Gender and Development in Africa,African Journals Online ,8559449 +Studies in Gender and Sexuality,Informa UK (Taylor & Francis),15240657| +Studies in Gender and Sexuality,Informa UK (Taylor & Francis),15240657|19409206 +Studies in Gender and Sexuality,Informa UK (Taylor & Francis),15240657| +Studies in Gender and Sexuality,Informa UK (Taylor & Francis),15240657| +Studies in Gender and Sexuality,Informa UK (Taylor & Francis),15240657| +Studies in Generative Grammar,Korean Generative Grammar Circle,12256048| +Studies in Higher Education,Informa UK (Taylor & Francis),03075079|1470174X +Studies in Hispanic and Lusophone Linguistics,Walter de Gruyter GmbH,19390238|21993386 +Studies in Hispanic Cinemas,Intellect,14780488|20400608 +Studies in History,SAGE Publications,02576430|0973080X +Studies in History and Philosophy of Science Part A,Elsevier ,00393681| +Studies in History and Philosophy of Science Part B Studies in History and Philosophy of Modern Physics,Elsevier ,13552198| +Studies in History and Philosophy of Science Part C Studies in History and Philosophy of Biological and Biomedical Sciences,Elsevier ,13698486| +Studies in Humanities and Social Sciences,Honam Institute of Humanities and Social Sciences,15984230| +Studies in Indian Politics,SAGE Publications,23210230|23217472 +Studies in Inorganic Chemistry,Elsevier , +Studies in Interface Science,Elsevier , +Studies in Interreligious Dialogue,Peeters Publishers,9262326 +Studies in Language,John Benjamins Publishing Company,03784177|15699978 +Studies in Latin American Popular Culture,University of Texas Press,07309139|21572941 +Studies in Linguistics,The Joongwon Linguistic Society of Korea,19758251| +Studies in Logic Grammar and Rhetoric,De Gruyter Open Sp. z o.o. ,0860150X|0860150X +Studies in Media and Communication,Redfame Publishing,23258071|2325808X +Studies in Microeconomics,SAGE Publications,23210222| +Studies in Modern Grammar,Society of Modern Grammar,12263206| +Studies in Musical Theatre,Intellect,17503159|17503167 +Studies in Mycology,Elsevier ,01660616|18729797 +Studies in Newspaper and Periodical History,Informa UK (Taylor & Francis),10750673| +Studies in Nonlinear Dynamics & Econometrics,Walter de Gruyter GmbH,10811826|15583708 +Studies in Nonlinear Dynamics and Econometrics,Walter de Gruyter GmbH,10811826|15583708 +Studies in Orthophonia and Neuropsyehology,"""Al Manhal FZ, LLC""",23530340| +Studies in People s History,SAGE Publications,23484489|23497718 +Studies in Philology,Muse - Johns Hopkins University Press,15430383 +Studies in Philosophy and Education,Springer-Verlag,00393746|1573191X +Studies in Philosophy East-West,Korea Society for Philosophy East-West,12251968| +Studies in Phonetics Phonology and Morphology,The Phonology-Morphology Circle of Korea,12268690| +Studies in Physical and Theoretical Chemistry,Elsevier , +Studies in Practical Philosophy,Philosophy Documentation Center,13890506| +Studies in Regional Science,The Japan Section of the Regional Science Association International,02876256|18806465 +Studies in Religion/Sciences Religieuses,SAGE Publications,00084298|20420587 +Studies in Romanticism,JSTOR,00393762| +Studies in Russian and Soviet Cinema,Informa UK (Taylor & Francis),14503132|17503140 +Studies in Science Education,Informa UK (Taylor & Francis),03057267| +Studies in Science Education,Informa UK (Taylor & Francis),03057267| +Studies in Science Education,Informa UK (Taylor & Francis),03057267| +Studies in Science Education,Informa UK (Taylor & Francis),03057267|19408412 +Studies in Second Language Acquisition,Cambridge University Press,02722631|14701545 +Studies in Second Language Learning and Teaching,Adam Mickiewicz University Poznan,20835205|20841965 +Studies in South Asian Film & Media,Intellect,17564921|1756493X +Studies in Soviet Thought,Springer-Verlag,00393797| +Studies in Spanish & Latin-American Cinemas,Intellect,20504837|20504845 +Studies in Spirituality,Peeters Publishers,9266453 +Studies in Synthetic Chemistry,Hans Publishers,23327944|23327960 +Studies in the Age of Chaucer,Muse - Johns Hopkins University Press,19490755 +Studies in the Anthropology of Visual Communication,Wiley Blackwell (Blackwell Publishing),01926918| +Studies in the Bible and Antiquity,Neal A. Maxwell Institute for Religious Scholarship,21517800|21683166 +Studies in the Decorative Arts,The University of Chicago Press,10698825| +Studies in the Fantastic,Muse - Johns Hopkins University Press,24703486 +Studies in the History of Gardens & Designed Landscapes,Informa UK (Taylor & Francis),14601176| +Studies in the History of Gardens & Designed Landscapes,Informa UK (Taylor & Francis),14601176|19432186 +Studies in the Literary Imagination,Muse - Johns Hopkins University Press,21652678 +Studies in the Maternal,Open Library of Humanities,17590434 +Studies in the Novel,Muse - Johns Hopkins University Press,19341512 +Studies in the Renaissance,The University of Chicago Press,00818658| +Studies in Theatre and Performance,Informa UK (Taylor & Francis),14682761|20400616 +Studies in Travel Writing,Informa UK (Taylor & Francis),13645145|17557550 +Studies in Visual Communication,Wiley Blackwell (Blackwell Publishing),02766558| +Studies in World Christianity,Edinburgh University Press,13549901|17500230 +Studies in Zionism,Informa UK (Taylor & Francis),03341771| +Studies of Changing Societies,De Gruyter Open Sp. z o.o. ,22252215 +Studies of the Ottomon Domain,Studies of the Ottomon Domain,21475210| +Studies on History Education,Studies on History Education,17387639| +Studies on Korean Youth,National Youth Policy Institute,12256366| +Studies on Neotropical Fauna,Informa UK (Taylor & Francis),03752410| +Studies on Neotropical Fauna and Environment,Informa UK (Taylor & Francis),01650521|17445140 +Studies on Russian Economic Development,Pleiades Publishing,10757007|15318664 +Studium,Uopen Journals,18769055|22127283 +STUDMED,Springer-Verlag,09426965| +Study and Scrutiny Research on Young Adult Literature,University of Oklahoma Libraries,23765275 +Study of Civil Engineering and Architecture,DEStech Publications,23265906 +Study of Polarography,The Polargraphic Society of Japan,18847684 +Studying Teacher Education,Informa UK (Taylor & Francis),17425964|17425972 +Style,The Pennsylvania State University Press,00394238|00394238 +Sub- and Supercritical Water,Thieme Publishing Group,20600534 +Sub-Saharan African Journal of Medicine,Medknow Publications,23845147| +Subjectivity,Nature Publishing Group - Macmillan Publishers,17556341|1755635X +SubStance,University of Wisconsin Press,00492426|15272095 +Substance Abuse,Informa UK (Taylor & Francis),08897077|15470164 +Substance Abuse and Rehabilitation,Dove Medical Press,11798467 +Substance Abuse Research and Treatment,"""Libertas Academica, Ltd.""",11782218 +Substance Abuse Treatment Prevention and Policy,Springer (Biomed Central Ltd.),1747597X|1747597X +Substance Use & Misuse,Informa UK (Taylor & Francis),10826084|15322491 +Substitution of Allylic Alcohols,Thieme Publishing Group,20600356 +Substitution of Cyclic Allylic Systems,Thieme Publishing Group,20600364 +Subsurface Sensing Technologies and Applications,Springer-Verlag,15660184|15739317 +Subterranean Biology,Pensoft Publishers,17681448|13142615 +Suburban Sustainability,University of South Florida Libraries,21640866 +Successful Fundraising,Wiley Blackwell (John Wiley & Sons),10709061| +SUCHT - Zeitschrift für Wissenschaft und Praxis / Journal of Addiction Research and Practice,Hogrefe Publishing Group,09395911|16642856 +Suchttherapie,Thieme Publishing Group,14399903|1439989X +Sud Sciences et Technologies,African Journals Online ,7965419 +Sud-Ouest Européen Revue géographique des Pyrénées et du Sud-Ouest,PERSEE Program,12764930|22730257 +Sud/Nord,CAIRN,12652067|1776288X +Sudan Journal of Medical Sciences,African Journals Online ,18585051 +Sudan Medical Journal,"""Al Manhal FZ, LLC""",04914481| +Sudan Medical Monitor,Medknow Publications,18585000| +Sudanese Journal of Dermatology,African Journals Online ,18153941 +Sudanese Journal of Ophthalmology,Medknow Publications,1858540X| +Sugar Tech,Springer-Verlag,09721525|09740740 +Suicide and Life-Threatening Behavior,Wiley Blackwell (Blackwell Publishing),03630234| +Suicidologi,University of Oslo Library,15016994| +Suid-Afrikaanse Tydskrif vir Natuurwetenskap en Tegnologie,AOSIS,02543486|22224173 +Suiei Suichu Undo Kagaku,Japanese Society of Sciences in Swimming and Water Exercise,18806937|18807097 +SUISUI Hydrological Research Letters,Japan Society of Hydrology and Water Resources,18816967 +Suizo,Japan Pancreas Society,09130071|18812805 +Sulfur Letters,Informa UK (Taylor & Francis),02786117| +Sulfur Reports,Informa UK (Taylor & Francis),01961772|10290508 +Sultan Qaboos University Medical Journal,Sultan Qaboos University Medical Journal,20750528|20750528 +Suma de Negocios,Elsevier ,2215910X| +Suma Psicológica,Elsevier ,01214381|21459797 +Summa Phytopathologica,SciELO,01005405|01005405 +Summary Proceedings,International Monetary Fund,00747025| +Summary Proceedings,International Monetary Fund,16079469 +Summer Academe,University of Manitoba Libraries,10918515 +SungKyunKwan Law Review,"""Institute of Legal Studies, Sungkyunkwan University""",1229943X| +Sunsari Technical College Journal,Nepal Journals Online,20912102| +Supercomputing Frontiers and Innovations,Federal State Funded Educational Institution of Higher Professional Education,23138734 +Superconductor Science and Technology,IOP Publishing,09532048|13616668 +Superlattices and Microstructures,Elsevier ,07496036|10963677 +Supervisie en coaching,Springer-Verlag,15720306|18765521 +Supervisors Quarterly,Informa UK (Taylor & Francis),00395897| +Supplément aux Annales de Normandie,PERSEE Program,22614559| +Supplément critique au Bulletin de l Association Guillaume Budé,PERSEE Program,11625740| +Supplement to the Journal of the Royal Statistical Society,JSTOR,14666162| +Suppléments à la Revue archéologique du centre de la France,PERSEE Program,11597151| +Supply Chain Forum an International Journal,KEDGE,16258312|16246039 +Supply Chain Management An International Journal,Emerald (MCB UP ),13598546| +Support for Learning,Wiley Blackwell (Blackwell Publishing),02682141|14679604 +Supportive Cancer Therapy,Elsevier ,15432912| +Supportive Cancer Therapy,Elsevier ,15432912| +Supportive Care in Cancer,Springer-Verlag,09414355|14337339 +Supramolecular Catalysis,De Gruyter Open Sp. z o.o. ,20847246 +Supramolecular Chemistry,Informa UK (Taylor & Francis),10610278|10290478 +Supramolecular Science,Elsevier ,09685677| +Supreme Court Economic Review,The University of Chicago Press,07369921|21566208 +Sur - Revista Internacional de Direitos Humanos,SciELO,18066445|18066445 +Sur - Revista Internacional de Direitos Humanos,SciELO,18066445 +Surdurulebilir ve Engelsiz Bilim Egitimi,Surdurulebilir ve Engelsiz Bilim Egitimi,21496080| +Surface and Coatings Technology,Elsevier ,02578972|02578972 +Surface and Interface Analysis,Wiley Blackwell (John Wiley & Sons),01422421|10969918 +Surface Coatings International,Springer-Verlag,13560751| +Surface Coatings International Part B Coatings Transactions,Springer-Verlag,14764865| +Surface Engineering,Maney Publishing,02670844|00000000 +Surface Engineering and Applied Electrochemistry,Allerton Press,10683755|19348002 +Surface Innovations,Thomas Telford Ltd.,20506252|20506260 +Surface Review and Letters,World Scientific ,0218625X|17936667 +Surface Science,Elsevier ,00396028|00396028 +Surface Science Letters,Elsevier ,01672584| +Surface Science Reports,Elsevier ,01675729| +Surface Science Spectra,American Vacuum Society,10555269|15208575 +Surface Technology,Elsevier ,03764583| +Surface Topography Metrology and Properties,IOP Publishing,2051672X +Surgery,Elsevier ,00396060| +Surgery (Oxford),Elsevier ,02639319| +Surgery Current Research,OMICS Publishing Group,21611076 +Surgery for Cerebral Stroke,The Japanese Society on Surgery for Cerebral Stroke,09145508|18804683 +Surgery for Obesity and Related Diseases,Elsevier ,15507289| +Surgery Journal,Science Alert,18163211| +Surgery Research and Practice,Hindawi Publishing Corporation,23567759|23566124 +Surgery Today,Springer-Verlag,09411291|14362813 +Surgical & Cosmetic Dermatology,GN1 Genesis Network,19848773| +Surgical and Radiologic Anatomy,Springer-Verlag,09301038|12798517 +Surgical Case Reports,Springer (Biomed Central Ltd.),21987793|21987793 +Surgical Clinics of North America,Elsevier ,00396109| +Surgical Endoscopy,Springer-Verlag,09302794|14322218 +Surgical Infections,Mary Ann Liebert,10962964|00000000 +Surgical Infections Case Reports,Mary Ann Liebert,24694037|24694037 +Surgical Innovation,SAGE Publications,15533506|15533514 +Surgical Laparoscopy Endoscopy & Percutaneous Techniques,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10517200| +Surgical Laparoscopy Endoscopy & Percutaneous Techniques,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15304515| +Surgical Metabolism and Nutrition,The Korean Society of Surgical Metabolism and Nutrition,22335765|24658383 +Surgical Neurology,Elsevier ,00903019| +Surgical Neurology International,Medknow Publications,21527806| +Surgical Oncology,Elsevier ,09607404| +Surgical Oncology Clinics of North America,Elsevier ,10553207| +Surgical Pathology Clinics,Elsevier ,18759181| +Surgical Practice,Wiley Blackwell (Blackwell Publishing),17441625|17441633 +Surgical Research - Open Journal,Openventio Publishers,23778407 +Surgical Research Updates,Synergy Publishers,23119888 +Surgical Science,"""Scientific Research Publishing, Inc.""",21579407|21579415 +Surgical Techniques Development,PAGEPress Publications,20389574|20389582 +Surname DNA Journal,Surname DNA Journal,23343206 +Survey in Fisheries Sciences,Greenwave Publishing of Canada,23687487 +Survey of Anesthesiology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,00396206| +Survey of Ophthalmology,Elsevier ,00396257| +Survey Research,The Korean Association for Survey Research,12299219| +Survey Review,Maney Publishing,00396265|17522706 +Surveyjournalen,Linnaeus University,20019327 +Surveyor,Informa UK (Taylor & Francis),18324460| +Surveys and Perspectives Integrating Environment and Society,Copernicus GmbH,19933819 +Surveys in Differential Geometry,"""International Press of Boston, Inc.""",10529233|21644713 +Surveys in Geophysics,Springer-Verlag,01693298|15730956 +Surveys In High Energy Physics,Informa UK (Taylor & Francis),01422413|14772892 +Surveys in Operations Research and Management Science,Elsevier ,18767354| +Survival,Informa UK (Taylor & Francis),00396338|14682699 +Sustainability,MDPI AG,20711050 +Sustainability Accounting Management and Policy Journal,Emerald (MCB UP ),20408021| +Sustainability of Water Quality and Ecology,Elsevier ,22126139| +Sustainability Science,Springer-Verlag,18624065|18624057 +Sustainability The Journal of Record,Mary Ann Liebert,19370695|19370709 +Sustainable Agriculture Research,Canadian Center of Science and Education,1927050X|19270518 +Sustainable Chemical Processes,Springer (Biomed Central Ltd.),20437129|20437129 +Sustainable Chemistry and Pharmacy,Elsevier ,23525541| +Sustainable Cities and Society,Elsevier ,22106707| +Sustainable Computing Informatics and Systems,Elsevier ,22105379| +Sustainable Development,Wiley Blackwell (John Wiley & Sons),09680802|10991719 +Sustainable Development,Hans Publishers,21607540|21607559 +Sustainable Energy,Hans Publishers,21649219|21649065 +Sustainable Energy Grids and Networks,Elsevier ,23524677| +Sustainable Energy Technologies and Assessments,Elsevier ,22131388| +Sustainable Materials and Technologies,Elsevier ,22149937| +Sustainable Multilingualism,Vytautas Magnus University,23352019|23352027 +Sustainable Production and Consumption,Elsevier ,23525509| +Sustainable Technologies Systems & Policies,Hamad bin Khalifa University Press (HBKU Press),22202765| +Sustainable Water Resources Management,Springer-Verlag,23635037|23635045 +Sustentabilidade em Debate,Editora de Livros IABS,21777675|21799067 +Sveikatos mokslai,Association of Lithuaninan Serials,13926373| +Swarm and Evolutionary Computation,Elsevier ,22106502| +Swarm Intelligence,Springer-Verlag,19353812|19353820 +Swiss Journal of Geosciences,Springer-Verlag,16618726|16618734 +Swiss Journal of Hydrology,Springer-Verlag,00367842| +Swiss Journal of Palaeontology,Springer-Verlag,16642376|16642384 +Swiss Journal of Psychology,Hogrefe Publishing Group,14210185|16620879 +Swiss Medical Informatics,"""EMH Swiss Medical Publishers, Ltd.""",16600436|22960406 +Swiss Medical Informatics,"""EMH Swiss Medical Publishers, Ltd.""",16600436|22960406 +Swiss Medical Weekly,"""EMH Swiss Medical Publishers, Ltd.""",14247860|14243997 +Swiss Political Science Review,Wiley Blackwell (John Wiley & Sons),14247755|16626370 +Swiss Surgery,Hogrefe Publishing Group,10239332| +SWorld journal,"""Science and Education, Ltd.""",22276920| +SWorld journal,"""Science and Education, Ltd.""",22276920| +Syakaisyugi Keizai Kennkyukai Kaiho,Japan Association for Comparative Economic Studies,18839770 +Sykepleien,Norwegian Nurses Organisation,08067511| +Sykepleien Forskning,Norwegian Nurses Organisation,18902936| +Sykepleien Nett,Norwegian Nurses Organisation,18912710| +Syllecta Classica,Muse - Johns Hopkins University Press,21605157 +Symbiosis,Springer-Verlag,03345114|18787665 +Symbolae Arctoae,Informa UK (Taylor & Francis),03329534| +Symbolae Osloenses,Informa UK (Taylor & Francis),00397679|00000000 +Symbolae Philologorum Posnaniensium Graecae et Latinae,Adam Mickiewicz University Poznan,03027384| +Symbolic Interaction,Wiley Blackwell (John Wiley & Sons),01956086|15338665 +Symmetry,MDPI AG,20738994 +Symmetry Integrability and Geometry Methods and Applications,SIGMA ,18150659 +Symphonya Emerging Issues in Management,Universita degli Studi di Milano-Bicocca Symphonya Emerging Issues in Management,15930319 +symplokē,University of Nebraska Press,10690697|15340627 +Symposia of the Faraday Society,The Royal Society of Chemistry,04300696| +Symposion,Philosophy Documentation Center,1584174X| +Symposium,Philosophy Documentation Center,14802333| +Symposium (International) on Combustion,Elsevier ,00820784| +Symposium A Quarterly Journal in Modern Literatures,Informa UK (Taylor & Francis),00397709|19310676 +Symposium on Combustion and Flame and Explosion Phenomena,Elsevier ,10622896| +Symposium Student Journal of Science and Math,"""Robert E. Kennedy Library, Cal Poly""",24712477 +Synapse,Wiley Blackwell (John Wiley & Sons),08874476|10982396 +Synchrotron Radiation News,Informa UK (Taylor & Francis),08940886|19317344 +Synergy,Elsevier ,22137130| +Synesis,Coimbra University Press,19846754 +Synfacts,Thieme Publishing Group,18611958|1861194X +Synlett,Thieme Publishing Group,09365214|14372096 +Syntax,Wiley Blackwell (Blackwell Publishing),13680005|14679612 +Syntaxe et sémantique,CAIRN,16236742|22712852 +Synthese,Springer-Verlag,00397857|15730964 +SynthesHis,Springer-Verlag,18765548|18765548 +Synthesiology,The Editorial Committee of Synthesiology,18826229|18827365 +Synthesiology English edition,The Editorial Committee of Synthesiology,18830978|18832318 +Synthesis,Thieme Publishing Group,00397881|1437210X +Synthesis and Reactivity in Inorganic and Metal-Organic Chemistry,Informa UK (Marcel Dekker),00945714|15322440 +Synthesis and Reactivity in Inorganic Metal-Organic and Nano-Metal Chemistry,Informa UK (Marcel Dekker),15533174|15322440 +Synthesis by Rearrangement,Thieme Publishing Group,20300271 +Synthesis Lectures on Algorithms and Software in Engineering,Morgan & Claypool,19381727|19381735 +Synthesis Lectures on Antennas,Morgan & Claypool,19326076|19326084 +Synthesis Lectures on Artificial Intelligence and Machine Learning,Morgan & Claypool,19394608|19394616 +Synthesis Lectures on Assistive Rehabilitative and Health-Preserving Technologies,Morgan & Claypool,21627258|21627266 +Synthesis Lectures on Biomedical Engineering,Morgan & Claypool,19300328|19300336 +Synthesis Lectures on Chemical Engineering and Biochemical Engineering,Morgan & Claypool,23276738|23276746 +Synthesis Lectures on Communication Networks,Morgan & Claypool,19354185|19354193 +Synthesis Lectures on Communications,Morgan & Claypool,19321244|19321708 +Synthesis Lectures on Computational Electromagnetics,Morgan & Claypool,19321252|19321716 +Synthesis Lectures on Computer Architecture,Morgan & Claypool,19353235|19353243 +Synthesis Lectures on Computer Graphics and Animation,Morgan & Claypool,19338996|19339003 +Synthesis Lectures on Computer Science,Morgan & Claypool,19321228|19321686 +Synthesis Lectures on Computer Vision,Morgan & Claypool,21531056|21531064 +Synthesis Lectures on Controls and Mechatronics,Morgan & Claypool,19390564|19390572 +Synthesis Lectures on Data Management,Morgan & Claypool,21535418|21535426 +Synthesis Lectures on Data Mining and Knowledge Discovery,Morgan & Claypool,21510067|21510075 +Synthesis Lectures on Digital Circuits and Systems,Morgan & Claypool,19323166|19323174 +Synthesis Lectures on Distributed Computing Theory,Morgan & Claypool,21551626|21551634 +Synthesis Lectures on Electrical Engineering,Morgan & Claypool,1559811X|15598128 +Synthesis Lectures on Emerging Engineering Technologies,Morgan & Claypool,23811412|23811439 +Synthesis Lectures on Emerging Trends in Librarianship,Morgan & Claypool,23728833|23728868 +Synthesis Lectures on Energy and the Environment Technology Science and Society,Morgan & Claypool,1940851X|19424361 +Synthesis Lectures on Engineering,Morgan & Claypool,1559811X|15598128 +Synthesis Lectures on Engineers Technology and Society,Morgan & Claypool,19333633|19333641 +Synthesis Lectures on Global Engineering,Morgan & Claypool,21607664|21607672 +Synthesis Lectures on Human Language Technologies,Morgan & Claypool,19474040|19474059 +Synthesis Lectures on Human-Centered Informatics,Morgan & Claypool,19467680|19467699 +Synthesis Lectures on Image Video and Multimedia Processing,Morgan & Claypool,15598136|15598144 +Synthesis Lectures on Information Concepts Retrieval and Services,Morgan & Claypool,1947945X|19479468 +Synthesis Lectures on Information Security Privacy and Trust,Morgan & Claypool,19459742|19459750 +Synthesis Lectures on Materials Engineering,Morgan & Claypool,19495439|19495447 +Synthesis Lectures on Mathematics and Statistics,Morgan & Claypool,19381743|19381751 +Synthesis Lectures on Mobile and Pervasive Computing,Morgan & Claypool,19339011|1933902X +Synthesis Lectures on Nuclear Technology and Society,Morgan & Claypool,21510873|21510881 +Synthesis Lectures on Power Electronics,Morgan & Claypool,19319525|19319533 +Synthesis Lectures on Professionalism and Career Advancement for Scientists and Engineers,Morgan & Claypool,23295058|23295066 +Synthesis Lectures on Quantum Computing,Morgan & Claypool,19459726|19459734 +Synthesis Lectures on RF/Microwaves,Morgan & Claypool,21500924|21500932 +Synthesis Lectures on Signal Processing,Morgan & Claypool,19321236|19321694 +Synthesis Lectures on Software Engineering,Morgan & Claypool,23283319|23283327 +Synthesis Lectures on Solid State Materials and Devices,Morgan & Claypool,19321260|19321724 +Synthesis Lectures on Speech and Audio Processing,Morgan & Claypool,1932121X|19321678 +Synthesis Lectures on Synthetic Biology,Morgan & Claypool,21510008|21510016 +Synthesis Lectures on Technology Management and Entrepreneurship,Morgan & Claypool,1933978X|19339798 +Synthesis Lectures on the Semantic Web Theory and Technology,Morgan & Claypool,21604711|2160472X +Synthesis Lectures on Theoretical Computer Science,Morgan & Claypool,23769718|23769726 +Synthesis Lectures on Tissue Engineering,Morgan & Claypool,19440316|19440308 +Synthesis Lectures on Visual Computing,Morgan & Claypool,24694215|24694223 +Synthesis Lectures on Visual Computing,Morgan & Claypool,24694215|24694223 +Synthesis Lectures on Visualization,Morgan & Claypool,2159516X|21595178 +Synthesis of 1 3 4-Trihydroxylated Ketones,Thieme Publishing Group,20600283 +Synthesis of a GABA Inhibitor,Thieme Publishing Group,20600607 +Synthesis of Chiral Phosphonates and Phosphine Oxides,Thieme Publishing Group,20500025 +Synthesis of Chiral α-Keto Esters,Thieme Publishing Group,20500033 +Synthesis of Nitrogen Heterocycles by Activation of sp C—H Bonds,Thieme Publishing Group,20300336 +Synthesis of Nitrogen Heterocycles by Benzylic C—H Bond Insertion,Thieme Publishing Group,20300344 +Synthesis of Thiiranes from Oxiranes in the Presence of β-Cyclodextrin in Water,Thieme Publishing Group,20600569 +Synthesis of γ-Lactones,Thieme Publishing Group,20400306 +Synthetic and Systems Biotechnology,Elsevier ,2405805X| +Synthetic Communications,Informa UK (Taylor & Francis),00397911|15322432 +Synthetic Metals,Elsevier ,03796779| +Syria,PERSEE Program,00397946| +System,Elsevier ,0346251X| +System Dynamics Review,Wiley Blackwell (John Wiley & Sons),08837066|10991727 +System Familie,Springer-Verlag,09333053|14322226 +Systematic and Acarology Acarology Special Publications,Systematic and Applied Acarology Society,14610183| +Systematic and Applied Acarology,Systematic and Applied Acarology Society,13621971| +Systematic and Applied Microbiology,Elsevier ,07232020|00000000 +Systematic Biology,Oxford University Press,10635157|1076836X +Systematic Botany,American Society of Plant Taxonomists,03636445|15482324 +Systematic Botany Monographs,JSTOR,07378211| +Systematic Entomology,Wiley Blackwell (Blackwell Publishing),03076970|13653113 +Systematic Parasitology,Springer-Verlag,01655752|15735192 +Systematic Reviews,Springer (Biomed Central Ltd.),20464053|20464053 +Systematic Reviews in Pharmacy,EManuscript Services,09758453|09758453 +Systematic Zoology,Oxford University Press,00397989| +Systematics and Biodiversity,Informa UK (Taylor & Francis),14772000|14780933 +Systematics and Geography of Plants,JSTOR,13747886| +Systèmes d information & management,CAIRN,12604984|22717188 +Systèmes de pensée en Afrique noire,OpenEdition,02947080|22681558 +Systemic Practice and Action Research,Springer-Verlag,1094429X|15739295 +Systems,MDPI AG,20798954 +Systems & Control Letters,Elsevier ,01676911| +Systems Analysis Modelling Simulation,Informa UK (Taylor & Francis),02329298| +Systems and Computers in Japan,Wiley Blackwell (John Wiley & Sons),08821666|1520684X +Systems and Means of Informatics,Federal Investigation Centre for Information and Control,08696527| +Systems and Synthetic Biology,Springer-Verlag,18725325|18725333 +Systems Biology,Institution of Electrical Engineers,17412471|1741248X +Systems Biology in Reproductive Medicine,Informa UK (Taylor & Francis),19396368|19396376 +Systems Biomedicine,Landes Bioscience,21628130|21628149 +Systems Engineering,Wiley Blackwell (John Wiley & Sons),10981241|15206858 +Systems Engineering - Theory & Practice,Elsevier ,18748651| +Systems Engineering Procedia,Elsevier ,22113819| +Systems Pharmacology,De Gruyter Open Sp. z o.o. ,20848854 +Systems Practice,Springer-Verlag,08949859| +Systems Research,Wiley Blackwell (John Wiley & Sons),07317239|10991735 +Systems Research and Behavioral Science,Wiley Blackwell (John Wiley & Sons),10927026|10991743 +Systems Research Forum,World Scientific ,17939666|17939674 +Systems Science & Control Engineering,Informa UK (Taylor & Francis),21642583 +Sztuka Edycji,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,20847963|23917903 +Sztuka i Kultura,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,23005335| +Søkelys på arbeidslivet,Scandinavian University Press / Universitetsforlaget AS,15048004|15047989 +T inkazos,SciELO,19907451 +T inkazos,SciELO,19907451 +T oung Pao,Brill Academic Publishers,00825433|15685322 +TÁ rsadalom É s GazdasÁ g,Akademiai Kiado Zrt.,15889734|1589021X +Ta dib,State Islamic University of Raden Fatah Palembang,14106973|24432512 +Taal en tongval,Amsterdam University Press,00398691| +Taalfasette,Informa UK (Taylor & Francis),04966740| +Tactful Management Research Journal,Laxmi Book Publication,23197943 +TAF Preventive Medicine Bulletin,ScopeMed International Medical Journal Managment and Indexing System,1303734X| +Taiikugaku kenkyu (Japan Journal of Physical Education Health and Sport Sciences),"""Japan Society of Physical Education, Health and Sport Sciences""",04846710|18817718 +Taiwan Journal of Ophthalmology,Elsevier ,22115056| +Taiwan Veterinary Journal,World Scientific ,16826485|23825588 +Taiwanese Journal of Mathematics,The Mathematical Society of the Republic of China,10275487|22246851 +Taiwanese Journal of Obstetrics and Gynecology,Elsevier ,10284559| +TAJ Journal of Teachers Association,Bangladesh Journals Online,10198555| +Talanta,Elsevier ,00399140| +Tambov University Reports Series Natural and Technical Sciences,Tambov State University - G.R. Derzhavin,18100198|18100198 +Tambov University Review Series Humanities,Tambov State University - G.R. Derzhavin,18100201|18100201 +Tamkang Journal of Mathematics,Tamkang Journal of Mathematics,00492930|20739826 +TandartsPraktijk,Springer-Verlag,01671685|18756808 +Tang Studies,Maney Publishing,07375034|17597633 +TANG [HUMANITAS MEDICINE],Association of Genuine Traditional Korean Medicine,22338985 +Tangence,Consortium Erudit,11894563|17100305 +TANSO,The Carbon Society of Japan,03715345|18845495 +Tanta Dental Journal,Elsevier ,16878574| +Tanta Medical Journal,Medknow Publications,11101415| +Tantak,UPV/EHU Press,02149753| +Tanzania Dental Journal,African Journals Online ,8560625 +Tanzania Journal of Development Studies,African Journals Online ,08569622|08569622 +Tanzania Journal of Health Research,African Journals Online ,18216404|08566496 +Tanzania Journal of Science,African Journals Online ,8561761 +Tanzania Medical Journal,African Journals Online ,8560714 +Tanzania Veterinary Journal,African Journals Online ,8561451 +Tanzil Jurnal Studi Al-Qur an,Sekolah Tinggi Filsafat Islam (STFI) Sadra,2460917X| +Tạp chí Hóa Học,Vietnam Journals Online, +Tạp chí Khoa học và Công nghệ Biển,"""Publishing House for Science and Technology Vietnam, Vietnam Academy of Science and Technology""",18593097|18593097 +Tạp chí Khoa học Xã hội Việt Nam,Vietnam Journals Online, +Tạp chí Nghiên cứu Lịch sử,Vietnam Journals Online,08667497|08667497 +Tạp chí phát triển Khoa học và Công nghệ,Vietnam Journals Online,18590128|18590128 +Tạp chí Quản Lý Kinh tế,Vietnam Journals Online,1859039X|1859039X +TAP CHI SINH HOC,"""Publishing House for Science and Technology Vietnam, Vietnam Academy of Science and Technology""",08667160|08667160 +Tạp chí Thông tin và Tư liệu,Vietnam Journals Online,18592929| +Táplálkozásmarketing,University of Debrecen/Taplalkozasmarketing,20648839| +TAPROBANICA The Journal of Asian Biodiversity,Sri Lanka Journals Online ,1800427X|1800427X +TARBIYA Journal of Education in Muslim Society,E-Journal System Portal of Syarif Hidayatullah State Islamic University,23561416|24429848 +Tarbiya Revista de Investigación e Innovación Educativa,Servicio de Publicaciones de la Universidad Autonoma de Madrid,11326239| +Target,John Benjamins Publishing Company,09241884|15699986 +Targeted Oncology,Springer-Verlag,17762596|1776260X +Targeted Protein Database,Current Biodata,17524024 +TARGETS,Elsevier ,14773627| +Tarım Bilimleri Dergisi,Ankara University Faculty of Agriculture,13007580|21489297 +Tarnowskie Studia Teologiczne,Pontifical Universtiy of John Paul II in Krakow,02394472|23916826 +Társadalom és Gazdaság,Akademiai Kiado Zrt.,15889734|1589021X +Társadalomkutatás,Akademiai Kiado Zrt.,02312522|15882918 +Tasavvuf Dergisi,Ankara University,13023543 +TASHWIR,IAIN Antasari,23389702| +TASMEEM,Hamad bin Khalifa University Press (HBKU Press),22219048| +Tatra Mountains Mathematical Publications,De Gruyter Open Sp. z o.o. ,12103195|12103195 +Tax Policy and the Economy,The University of Chicago Press,08928649|15372650 +Taxes and the taxation,"""Science and Education, Ltd.""",23119381| +Taxon,International Association for Plant Taxonomy,00400262| +Taylor s Business Review (TBR),Springer - Global Science Journals,22320172 +Tạp chí Thư Viện Việt Nam,Vietnam Journals Online,18591450|18591450 +TBEIAN for Qur anic Studies,"""Al Manhal FZ, LLC""",16583515| +Tbilisi Mathematical Journal,De Gruyter Open Sp. z o.o. ,15120139 +TCRT Express,"""Adenine Press, Inc.""",23260912 +TDR (1967-1968),JSTOR,02734354| +TDR Newsletter,WHO Press, +TDR Newsletter,WHO Press,10285911| +TDR/The Drama Review,MIT Press,10542043|15314715 +Teacher Development,Informa UK (Taylor & Francis),13664530|17475120 +Teacher Education and Special Education The Journal of the Teacher Education Division of the Council for Exceptional Children,SAGE Publications,08884064|19444931 +Teacher Education Research,Research Institute for Science Education,20051484| +Teachers and Curriculum,University of Waikato,23820349 +Teachers and Teaching,Informa UK (Taylor & Francis),13540602|14701278 +Teachers College Record,CrossRef test user,01614681|14679620 +Teaching & Learning Inquiry The ISSOTL Journal,International Society for the Scholarship of Teaching and Learning,21674779|21674787 +Teaching and Learning in Medicine,Informa UK (Taylor & Francis),10401334|15328015 +Teaching and Learning in Nursing,Elsevier ,15573087| +Teaching and Teacher Education,Elsevier ,0742051X| +Teaching Anthropology Society for Anthropology in Community Colleges Notes,Wiley Blackwell (Blackwell Publishing),15371751|19414161 +Teaching Artist Journal,Informa UK (Taylor & Francis),15411796|1541180X +Teaching Business Ethics,Springer (Kluwer Academic Publishers),13826891| +Teaching Children Mathematics,National Council of Teachers of Mathematics,10735836|10735836 +Teaching Education,Informa UK (Taylor & Francis),10476210|14701286 +Teaching Ethics,Philosophy Documentation Center,15444031| +Teaching Exceptional Children,SAGE Publications,00400599| +Teaching in Higher Education,Informa UK (Taylor & Francis),13562517|14701294 +Teaching in Lifelong Learning a journal to inform and improve practice,University of Huddersfield Press,20400993|20494181 +Teaching Mathematics and Computer Science,University of Debrecen/ Debreceni Egyetem - Teaching Mathematics and Computer Science,15897389| +Teaching Mathematics and its Applications,Oxford University Press,02683679|14716976 +Teaching of Psychology,SAGE Publications,00986283|15328023 +Teaching Philosophy,Philosophy Documentation Center,01455788| +Teaching Political Science,Informa UK (Taylor & Francis),00922013| +Teaching Public Administration,SAGE Publications,01447394|20478720 +Teaching Sociology,SAGE Publications,0092055X|1939862X +Teaching Statistics,Wiley Blackwell (Blackwell Publishing),0141982X|14679639 +Teaching Theology & Religion,Wiley Blackwell (Blackwell Publishing),13684868|14679647 +Team in Practice,The Royal College of Surgeons of England,17419379|17419352 +team konkret,Thieme Publishing Group,18693202|18693210 +Team Performance Management,Emerald (MCB UP ),13527592|00000000 +team spiegel,Thieme Publishing Group,18681948|1868193X +TEC Empresarial,nstituto Tecnologico de Costa Rica,16592395| +TECCIENCIA,Universidad ECCI,19093667|24223670 +TECHART Journal of Arts and Imaging Science,"""The Graduate School of Advanced Imaging Science, Multimedia and Film at Chung-Ang University""",22889248| +Techné Research in Philosophy and Technology,Philosophy Documentation Center,10918264| +Technical Communication Quarterly,Informa UK (Taylor & Francis),10572252|15427625 +Technical Notes and Manuals,International Monetary Fund,20758669| +Technical Physics,Pleiades Publishing,10637842|10906525 +Technical Physics Letters,Pleiades Publishing,10637850|10906533 +Technical Quarterly,Scientific Societies,07439407|07439407 +Technical Report Series 930,WHO Press,05123054| +Technical Report Series 931,WHO Press,05123054| +Technical Report Series 932,WHO Press,05123054| +Technical Report Series 933,WHO Press,05123054| +Technical Report Series 934,WHO Press,05123054| +Technical Report Series 935,WHO Press,05123054| +Technical Report Series 936,WHO Press,05123054| +Technical Report Series 937,WHO Press,05123054| +Technical Report Series 938,WHO Press,05123054| +Technical Reports of the Australian Museum,Australian Museum,10318062| +Technical Reports of the Australian Museum online,Australian Museum,18354211 +Technical Sciences,De Gruyter Open Sp. z o.o. ,15054675| +Technical Services Quarterly,Informa UK (Taylor & Francis),07317131|15553337 +Technical Tips Online,Elsevier ,13662120| +Technikgeschichte,Nomos Verlag,0040117X|0040117X +Techniques & culture,OpenEdition,1952420X|1952420X +Techniques and Instrumentation in Analytical Chemistry,Elsevier , +Techniques et sciences informatiques,Lavoisier SAS,07524072| +Techniques in Coloproctology,Springer-Verlag,11236337|1128045X +Techniques in Foot & Ankle Surgery,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15360644| +Techniques in Gastrointestinal Endoscopy,Elsevier ,10962883| +Techniques in Hand and Upper Extremity Surgery,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10893393| +Techniques in Knee Surgery,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15360636| +Techniques in Neurosurgery,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10772855| +Techniques in Ophthalmology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15421929| +Techniques in Orthopaedics,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,08859698| +Techniques in Regional Anesthesia and Pain Management,Elsevier - WB Saunders,1084208X| +Techniques in Shoulder & Elbow Surgery,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15239896| +Techniques in the Behavioral and Neural Sciences,Elsevier , +Techniques in Vascular and Interventional Radiology,Elsevier ,10892516| +Techniques Sciences Méthodes,EDP Sciences,02997258|24170097 +Technoetic Arts,Intellect,1477965X|17589533 +TechnoLearn An International Journal of Educational Technology,Diva Enterprises Private Limited,22314105|22495223 +Technological and Economic Development of Economy,Vilnius Gediminas Technical University,20294913|20294921 +Technological Engineering,De Gruyter Open Sp. z o.o. ,13365967 +Technological Forecasting,Elsevier ,00993964| +Technological Forecasting and Social Change,Elsevier ,00401625| +Technologies,MDPI AG,22277080 +Technologies Avancées,African Journals Online ,11110902 +Technologies of Computer Control,Riga Technical University,22560343|22560351 +Technologies of Living Systems,"""Science and Education, Ltd.""",20700997| +TECHNOLOGY,World Scientific ,23395478|23457740 +Technology & Innovation,Cognizant Communication Corp,19498241|1949825X +Technology Analysis and Strategic Management,Informa UK (Taylor & Francis),09537325|14653990 +Technology and Culture,Muse - Johns Hopkins University Press,0040165X|10973729 +Technology and Disability,IOS Press,10554181|10554181 +Technology and Economics of Smart Grids and Sustainable Energy,Springer-Verlag,21994706 +Technology and Health Care,IOS Press,09287329|18787401 +Technology and Investment,"""Scientific Research Publishing, Inc.""",21504059|21504067 +Technology and Society,Institute of Electrical and Electronics Engineers,01943359| +Technology audit and production reserves,Private Company Technology Center,22263780|23128372 +Technology for Education and Learning,ACTA Press,19167008| +Technology in Cancer Research & Treatment,SAGE Publications,15330346|15330338 +Technology in Society,Elsevier ,0160791X| +Technology Innovation and Education,Springer (Biomed Central Ltd.),21979855 +Technology Knowledge and Learning,Springer-Verlag,22111662|22111670 +Technology Law and Insurance ,Informa UK (Taylor & Francis),13599372|14684500 +Technology Operation Management,Springer-Verlag,09748091|22492364 +Technology Pedagogy and Education,Informa UK (Taylor & Francis),1475939X|17475139 +Technology Transfer and Entrepreneurship,Bentham Science,22138099| +Technometrics,Informa UK (American Statistical Association),00401706|15372723 +Technovation,Elsevier ,01664972| +TechTrends,Springer-Verlag,87563894|15597075 +Tecno-Lógica,APESC - Associacao Pro-Ensino em Santa Cruz do Sul,14156229|19826753 +Tecnologia e Ambiente,Fundacao Educacional de Criciuma- FUCRI,14138131|23589426 +Tecnologia em Metalurgia e Materiais,Editora Cubo Multimidia,19827709 +Tecnologia em Metalurgia Materiais e Mineração,Editora Cubo Multimidia,21761515|21761515 +Tectonics,Wiley Blackwell (John Wiley & Sons),02787407| +Tectonophysics,Elsevier ,00401951| +TED EĞİTİM VE BİLİM,Turkish Education Association,13001337| +TEFLIN Journal - A publication on the teaching and learning of English,Teflin Journal,0215773X|23562641 +Tehnicki vjesnik - Technical Gazette,Mechanical Engineering Faculty in Slavonski Brod,13303651|18486339 +Tehnika,Centre for Evaluation in Education and Science,00402176| +Tehnologija mesa,Centre for Evaluation in Education and Science,04949846| +Teia Revista Literária dos Estudantes de Letras,Faculdade de Letras da UFMG,24470570| +Teikoku Gakushiin kiji,The Japan Academy,03879984| +TEION KOGAKU (Journal of Cryogenics and Superconductivity Society of Japan),Cryogenic Association of Japan,03892441|18800408 +Teisė,Vilnius University,13921274|13921274 +Teka Komisji Politologii i Stosunków Międzynarodowych,Wydawnictwo Uniwersytetu Marii Curie-SkÅ?odowskiej w Lublinie,18968279| +Tékhne,Elsevier ,16459911| +Teknik,Institute of Research and Community Services Diponegoro University (LPPM UNDIP),08521697|24609919 +Teknokultura,Universidad Complutense de Madrid,15492230 +Tekst Kniga Knigoizdanie,Tomsk State University,23062061| +Tekstil ve Mühendis,UCTEA Chamber of Textile Engineers,13007599| +Tekstilec,Faculty of Natural Sciences and Engineering. Department of Textiles,03513386|23503696 +Tekstura Rocznik Filologiczno-Kulturoznawczy,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,20827008| +Teksty Drugie,Instytut Badan Literackich PAN/The Institute of Literary Research PAS,08670633| +Tel Aviv,Maney Publishing,03344355|20404786 +Telecommunication Systems,Springer-Verlag,10184864|15729451 +Telecommunications and Radio Engineering,Begell House Inc.,00402508| +Telecommunications Journal of Australia,Swinburne University of Technology,00402486|18354270 +Telecommunications Policy,Elsevier ,03085961| +Telematics and Informatics,Elsevier ,07365853| +Telemedicine and e-Health,Mary Ann Liebert,15305627|15563669 +Telemedicine Journal,Mary Ann Liebert,10783024|10783024 +Telemedicine Journal and e-Health,Mary Ann Liebert,15305627|00000000 +Télescope Revue d’analyse comparée en administration publique,Consortium Erudit,12033294|19293348 +Tělesná kultura,Palacky University Olomouc,12116521|18038360 +Television & New Media,SAGE Publications,15274764|00000000 +Telfor Journal,Centre for Evaluation in Education and Science,18213251| +TELKOMNIKA (Telecommunication Computing Electronics and Control),Universitas Ahmad Dahlan ,16936930|23029293 +TELKOMNIKA Indonesian Journal of Electrical Engineering,Institute of Advanced Engineering and Science,23024046|2087278X +Telluronium Ylides,Thieme Publishing Group,20200137 +Tellus A,Co-Action Publishing,02806495|16000870 +Tellus B,Co-Action Publishing,02806509|16000889 +Telomere and Telomerase,"""Smart Science and Technology, LLC""",23781378 +Telopea,Royal Botanica Gardens and Domain Trust,03129764|22004025 +Télos,University of Santiago de Compostela,11320877|2255596X +Telos,Telos Press,00906514|1940459X +TEMA (São Carlos),Brazilian Society for Computational and Applied Mathematics,16771966|21798451 +Temas Atuais em Biologia,Editora Cubo Multimidia,23588616 +Temas de Nuestra América Revista de Estudios Latinoaméricanos,Universidad Nacional de Costa Rica,02592339| +Temas em Psicologia,Associacao Brasileira de Psicologia,1413389X|21753652 +Temida,National Library of Serbia,14506637|24060941 +Témoigner Entre histoire et mémoire,OpenEdition,0772652X| +Temperature,Landes Bioscience,23328940|23328959 +Tempo,SciELO,14137704|1980542X +Tempo,Cambridge University Press,00402982|14742286 +Tempo Social,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,01032070|01032070 +Tempus Actas de Saúde Coletiva,Nucleo de Estudos em Saude Publica,19828829|19828829 +Tendencias pedagógicas,Servicio de Publicaciones de la Universidad Autonoma de Madrid,19898614|18886744 +Tenri Medical Bulletin,"""Tenri Foundation, Tenri Institute of Medical Research""",13441817|21872244 +Tenside Surfactants Detergents,Carl Hanser Verlag GMBH & Co KG,09323414|21958564 +Tenso,Muse - Johns Hopkins University Press,19440146 +Teocomunicação,EDIPUCRS,0103314X|19806736 +TEOLITERARIA - Revista de Literaturas e Teologias ISSN 2236-993,Pontifica Universidade Catolica de Sao Paulo,22369937 +Teologia i Człowiek,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,17315638|23917598 +Teologia i Moralność,Adam Mickiewicz University Poznan,18982964|24504602 +Teologia Praktyczna,Adam Mickiewicz University Poznan,16426738| +Teologia Prática,Instituto Metodista Izabela Hendrix,16796098 +Teología y vida,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,00493449|00493449 +Teologisk Tidsskrift,Scandinavian University Press / Universitetsforlaget AS,18930263|18930271 +Teoretičeskaâ fizika astrofizika i kosmologiâ,Centre for Theoretical Physics and Astrophysics,19913907 +Teoria & Sociedade,SciELO,15184471 +Teoría de la Educación Revista Interuniversitaria,Ediciones Universidad de Salamanca,11303743|23865660 +Teoria e Pesquisa,Editora Cubo Multimidia,1040103 +Teoría y Praxis,Latin America Journals Online,1994733X| +Teoriya i praktika arkheologicheskikh issledovaniy,Altai State University,23072539| +Téoros Revue de recherche en tourisme,Consortium Erudit,07128657|19232705 +Teosofi Jurnal Tasawuf dan Pemikiran Islam,"""State Islamic University (UIN) of Sunan, Ampel""",20887957|2442871X +Tér és Társadalom,Ter es Tarsadalom Journal,02377683|20629923 +TERAPIA FAMILIARE,Franco Angeli,03912868|19725442 +Terapia psicológica,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7184808 +Teratogenesis Carcinogenesis and Mutagenesis,Wiley Blackwell (John Wiley & Sons),02703211|15206866 +Teratology,Wiley Blackwell (John Wiley & Sons),00403709|10969926 +Teratology Studies,PAGEPress Publications,20394411|2039442X +Teresa,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,15179737|24478997 +Természetföldrajzi Közlemények,Termeszetfoldrajzi Kozlemenyek Journal,20634153 +Terminal,OpenEdition,09975551|24294578 +Terminology,John Benjamins Publishing Company,09299971|00000000 +Termotehnika,Centre for Evaluation in Education and Science,0350218X| +Terr Plural,Universidade Estadual de Ponta Grossa,19816537|1982095X +Terra Brasilis,OpenEdition,23167793|23167793 +Terra Economicus,Southern Federal University,20736606|24104531 +Terra endins,Iniciativa Digital Politecnica,20135106| +Terra Incognita,Peeters Publishers,17831199 +Terra Nova,Wiley Blackwell (Blackwell Publishing),09544879|13653121 +Terrae Incognitae,Maney Publishing,00822884|20408706 +Terrain,OpenEdition,07605668|17775450 +Terrains/Théories,OpenEdition,24279188 +Terrestrial Arthropod Reviews,Brill Academic Publishers,18749828|18749836 +Terrestrial Atmospheric and Oceanic Sciences,Chinese Geoscience Union,10170839| +Territoire en mouvement,OpenEdition,19544863|19505698 +TERRITORIO,Franco Angeli,18258689|22396330 +Territorio Sociedad y Poder,Universidad de Oviedo,18861121|23411163 +Territorios,Colegio Mayor de Nuestra Senora del Rosario,01238418|22157484 +Territorium Revista Portuguesa de riscos prevenção e segurança,Coimbra University Press,16477723|16477723 +Territory Politics Governance,Informa UK (Taylor & Francis),21622671|2162268X +Terrorism,Informa UK (Taylor & Francis),01490389| +Terrorism and Counter-Terrorism Studies,The International Centre for Counter-Terrorism (ICCT),24680664 +Terrorism and Counter-Terrorism Studies,The International Centre for Counter-Terrorism (ICCT),24680656 +Terrorism and Political Violence,Informa UK (Taylor & Francis),09546553|15561836 +Tertiary Education and Management,Informa UK (Taylor & Francis),13583883|15731936 +Területi Statisztika,Hungarian Central Statistical Office,00187828|20648251 +Tes-,Ankara University,13014714 +TESOL Journal,Wiley Blackwell (John Wiley & Sons),19493533| +TESOL Journal,Wiley Blackwell (John Wiley & Sons),10567941| +TESOL Quarterly,Wiley Blackwell (John Wiley & Sons),00398322|15457249 +Tesserae,Informa UK (Taylor & Francis),13507494| +Test,Springer-Verlag,11330686|18638260 +Test Delete Tribology and Interface Engineering Series,Elsevier , +test deposit journal rename,CrossRef test user, +Test deposit system,CrossRef test user,15583449| +Test deposits,CrossRef test prefix,11111111| +Test new title create interface,CrossRef test user,1929968 +test PARKS,CrossRef test user, +Test Publication,CrossRef test user,12378593| +Test s Publication,CrossRef test prefix,12345678| +Test special character title Academica Ciências Agrarias,CrossRef test user,10898123| +test test test,CrossRef test user, +test title create feature,CrossRef test user,18676510| +Test title issn problem,CrossRef test user,15454517| +Test Title Search,CrossRef test user, +test0819,Odessa National Academy of Food Technologies, +Test1234,Index Copernicus International,1230817X +Test123456,Index Copernicus International,1230820X +testaugust,CrossRef test user,00484911| +TESTFÓRUM,Masaryk University Press,18059147 +Testing LATIN SMALL LETTER O SLASH Ø,CrossRef test user,01923749| +Testing new deposit code,CrossRef test user,00377333|00377333 +testing title create feature,CrossRef test user,15340295| +Testing using DS environment,CrossRef test user,1092177X| +TestowaPG,Index Copernicus International,2091747 +Testowy IndexCopernicus,Index Copernicus International,1003515X +Test_Michael Jackson Costumes,CrossRef test user,00215996| +Test´s Publication,CrossRef test prefix,12345678| +Tethys Journal of Weather and Climate of the Western Mediterranean,"""Tethys, Journal of Weather & Climate of the Western Mediterranean""",16971523|11393394 +Tetrahedron,Elsevier ,00404020| +Tetrahedron Asymmetry,Elsevier ,09574166|09574166 +Tetrahedron Computer Methodology,Elsevier ,08985529| +Tetrahedron Letters,Elsevier ,00404039|00404039 +Tetrahedron Organic Chemistry Series,Elsevier , +Tetsu-to-Hagane,The Iron and Steel Institute of Japan,00211575|18832954 +Texas Heart Institute Journal,Texas Heart Institute Journal,07302347| +Texas Orthopaedic Journal,Sulcus Publishing,23802987| +Texas Studies in Literature & Language,University of Texas Press,00404691|15347303 +Text & Talk - An Interdisciplinary Journal of Language Discourse Communication Studies,Walter de Gruyter GmbH,18607330|18607349 +Text - Interdisciplinary Journal for the Study of Discourse,Walter de Gruyter GmbH,01654888|16134117 +Text and Performance Quarterly,Informa UK (Taylor & Francis),10462937|14795760 +Text and Talk,Walter de Gruyter GmbH,18607330|18607349 +Text Matters,De Gruyter Open Sp. z o.o. ,20832931|2084574X +TEXTILE,Informa UK (Taylor & Francis),14759756|17518350 +Textile Coloration and Finishing,The Korean Society of Dyers and Finishers,12290033| +Textile History,Maney Publishing,00404969|00000000 +Textile Institute Journal Proceedings and Abstracts,Informa UK (Taylor & Francis),03684504| +Textile Progress,Informa UK (Taylor & Francis),00405167|17542278 +Textile Research Journal,SAGE Publications,00405175|17467748 +Textile Science and Engineering,The Korean Fiber Society,12251089| +Textiles and Clothing Sustainability,Springer (Biomed Central Ltd.),21979936|21979936 +Textiles and Light Industrial Science and Technology,DEStech Publications,2304943X|23049421 +Texto & Contexto - Enfermagem,SciELO,01040707|01040707 +Texto Digital,Universidade Federal de Santa Catarina,18079288|18079288 +Texto Livre Linguagem e Tecnologia,Faculdade de Letras da UFMG,19833652 +Textos & Contextos (Porto Alegre),EDIPUCRS,16779509 +Textos de Economia,Universidade Federal de Santa Catarina,01036017|21758085 +Textos e Debates,Universidade Federal de Roraima,14139987|23171448 +Textos en Proceso,EDICE Programme,2001967X +Textos Escolhidos de Cultura e Arte Populares,Universidade do Estado do Rio de Janeiro UERJ,19803281|19819935 +Textual Cultures,IUScholarWorks,15592936|19337418 +Textual Practice,Informa UK (Taylor & Francis),0950236X|14701308 +Texturas,Universidad Nacional del Litoral,16668367|23625848 +Texture,Hindawi Publishing Corporation,03716554| +Texture of Crystalline Solids,Hindawi Publishing Corporation,03097951| +Texture Stress and Microstructure,Hindawi Publishing Corporation,16875397|16875400 +Textures and Microstructures,Hindawi Publishing Corporation,07303300|10294961 +Textyles,OpenEdition,07760116|22952667 +Textyles,OpenEdition,07760116| +Thalamus & Related Systems,Cambridge University Press,14729288|17448107 +Thalamus & Related Systems,Elsevier ,14729288| +Thalassas An International Journal of Marine Sciences,Springer-Verlag,02125919|23661674 +Thalassemia Reports,PAGEPress Publications,20394357|20394365 +The AAG Review of Books,Informa UK (Taylor & Francis),2325548X +The AAPS Journal,American Association of Pharmaceutical Scientists,15507416 +The Aboriginal Child at School,Cambridge University Press,03105822| +The Academy of Management Annals,Informa UK (Taylor & Francis),19416520|19416067 +The Academy of Management Journal,The Academy of Management,00014273|19480989 +The Academy of Management Review,The Academy of Management,03637425|19303807 +The Accounting Review,American Accounting Association,00014826|15587967 +The Acquisitions Librarian,"""Informa UK (Haworth Press, Inc.,)""",08963576|1544435X +The actual problems in dentistry,SE Liubov Syvorova,20777566|24129461 +The Acupuncture,Korean Acupuncture and Moxibustion Medicine Society,12291137|22877797 +The Adelphi Papers,Informa UK (Taylor & Francis),0567932X|14785145 +The ADHD Report,Guilford Publications,10658025| +The Advanced Science Journal,Scireps Corporation,2219746X|22197478 +The Aeronautical Journal,Cambridge University Press,00019240|20596464 +The African Book Publishing Record,Walter de Gruyter GmbH,03060322|18658717 +The Aging Male,Informa UK (Taylor & Francis),13685538|14730790 +The agricultural gazette of New South Wales,Smithsonian Institution Biodiversity Heritage Library,00021474| +The Agriculturists,Bangladesh Journals Online,17295211|23047321 +The Aldine,JSTOR,21514186| +The Alkaloids Chemistry and Biology,Elsevier , +The AMA Journal of Ethic,American Medical Association,23766980 +The American Archivist,Society of American Archivists,03609081| +The American Art Review,JSTOR,21518890| +The American Biology Teacher,University of California Press,00027685|19384211 +The American Cartographer,Informa UK (Taylor & Francis),00941689| +The American Catholic Sociological Review,JSTOR,0362515X| +The American Economic Review,American Economic Association,00028282|19447981 +The American Economist,SAGE Publications,05694345|23281235 +The American Heart Hospital Journal,"""Medical Media Communications LTD, T/A Radcliffe Cardiology""",15419215|17517168 +The American Historical Review,Oxford University Press,00028762|19375239 +The American Indian Quarterly,University of Nebraska Press,0095182X|15341828 +The American Journal of Archaeology and of the History of the Fine Arts,JSTOR,15405079| +The American Journal of Bioethics,Informa UK (Taylor & Francis),15265161|15360075 +The American Journal of Cancer,American Association for Cancer Research,00997374|00997374 +The American Journal of Cardiology,Elsevier ,00029149|00029149 +The American Journal of Chinese Medicine,World Scientific ,0192415X|17936853 +The American Journal of Comparative Law,American Journal of Comparative Law,0002919X| +The American Journal of Digestive Diseases,Springer-Verlag,00029211| +The American Journal of Drug and Alcohol Abuse,Informa UK (Taylor & Francis),00952990|10979891 +The American Journal of Emergency Medicine,Elsevier ,07356757| +The American Journal of Esthetic Dentistry,Quintessence Publishing,21622833|21622841 +The American Journal of Gastroenterology,Nature Publishing Group,00029270|15720241 +The American Journal of Gastroenterology Supplements,Nature Publishing Group,19489498|19489501 +The American Journal of Geriatric Cardiology,Wiley Blackwell (Blackwell Publishing),10767460|1751715X +The American Journal of Geriatric Pharmacotherapy,Elsevier ,15435946| +The American Journal of Human Genetics,Elsevier ,00029297|15376605 +The American Journal of International Law,American Society of International Law,00029300|21617953 +The American Journal of Jurisprudence,Oxford University Press,00658995|20496494 +The American Journal of Legal History,Oxford University Press,00029319|2161797X +The American Journal of Medicine,Elsevier ,00029343| +The American Journal of Medicine Supplements,Elsevier ,15482766| +The American Journal of Philology,JSTOR,00029475| +The American Journal of Police Science,JSTOR,15476154| +The American Journal of Psychoanalysis,Nature Publishing Group - Macmillan Publishers,00029548|15736741 +The American Journal of Psychology,University of Illinois Press,00029556|19398298 +The American Journal of Science and Medical Research,Global Science Publishing Group,23776196 +The American Journal of Semiotics,Philosophy Documentation Center,02777126| +The American Journal of Semitic Languages and Literatures,The University of Chicago Press,10620516| +The American Journal of Sports Medicine,SAGE Publications,03635465|00000000 +The American Journal of Surgery,Elsevier ,00029610| +The American Journal of the Medical Sciences,Elsevier ,00029629| +The American Journal of Theology,The University of Chicago Press,15503283| +The American Law Register (1852-1891),JSTOR,15583813| +The American Law Register (1898-1907),JSTOR,15583562| +The American Law Register and Review,JSTOR,15583538| +The American Midland Naturalist,BioOne (University of Notre Dame),00030031|19384238 +The American Naturalist,The University of Chicago Press,00030147|15375323 +The American Review of Canadian Studies,Informa UK (Taylor & Francis),02722011|19439954 +The American Review of Public Administration,SAGE Publications,02750740|00000000 +The American Sociologist,Springer-Verlag,00031232|19364784 +The American Statistician,Informa UK (American Statistical Association),00031305|15372731 +The Americas A Quarterly Review of Latin American History,Cambridge University Press,00031615|15336247 +The Analysis of Verbal Behavior,Springer-Verlag,08899401|21968926 +The Analyst,The Royal Society of Chemistry,00032654|13645528 +The Analyst,JSTOR,07417918| +The Anatolian Journal of Cardiology,Kare Publishing,21492263|21492271 +The Anatomical Record,Wiley Blackwell (John Wiley & Sons),0003276X|10970185 +The Anatomical Record,Wiley Blackwell (John Wiley & Sons),19328486|19328494 +The Anatomical Record Part A Discoveries in Molecular Cellular and Evolutionary Biology,Wiley Blackwell (John Wiley & Sons),15524884|15524892 +The Anatomical Record Part B The New Anatomist,Wiley Blackwell (John Wiley & Sons),15524906|15524914 +The Angle Orthodontist,The Angle Orthodontist,00033219|19457103 +The Annals of Applied Probability,Institute of Mathematical Statistics,10505164| +The Annals of Applied Statistics,Institute of Mathematical Statistics,19326157| +The Annals of Family Medicine,Annals of Family Medicine,15441709|15441717 +The Annals of Japan Association for Urban Sociology,Japan Association for Urban Sociology,13414585|18844839 +The Annals of Mathematical Statistics,Institute of Mathematical Statistics,00034851| +The Annals of Pharmacotherapy,SAGE Publications,10600280|15426270 +The Annals of physiological anthropology,Japan Society of Physiological Anthropology,02878429| +The Annals of Probability,Institute of Mathematical Statistics,00911798| +The Annals of Regional Science,Springer-Verlag,05701864|14320592 +The Annals of Statistics,Institute of Mathematical Statistics,00905364| +The Annals of the American Academy of Political and Social Science,SAGE Publications,00027162|15523349 +The Annals of Thoracic Surgery,Elsevier ,00034975| +The Annual of Animal Psychology,The Japanese Society for Animal Psychology,00035130|18836283 +The Annual of Rabbinic Judaism,Brill Academic Publishers,13880365| +The Annual of the American School of Oriental Research in Jerusalem,JSTOR,19332505| +The Annual of the American Schools of Oriental Research,JSTOR,00660035| +The Annual of the British School at Athens,Cambridge University Press,00682454|20452403 +The Annual Report of Educational Psychology in Japan,The Japanese Association of Educational Psychology,04529650|21863091 +The Annual Review of Pharmacology and Toxicology,Annual Reviews,03621642|15454304 +The Annual review of sociology,Kantoh Sociological Society,09194363|18840086 +The Annuals of Japanese Political Science Association,Japanese Political Science Association,05494192|18843921 +The Anthropocene Review,SAGE Publications,20530196|2053020X +The Anti-Union,JSTOR,20091672| +The Antidote,Emerald (MCB UP ),13638483|00000000 +The Antioch Review,The Antioch Review,00035769|00035769 +The Antiquaries Journal,Cambridge University Press,00035815|17585309 +The Antitrust Bulletin,SAGE Publications,0003603X|19307969 +The ANZIAM Journal,Cambridge University Press,14461811|14468735 +The Application of Clinical Genetics,Dove Medical Press,1178704X +The Arab Journal For Quality Assurance In Higher Education,"""University of Science and Technology, Yemen""",23085347|23085355 +The Arab Journal of Psychiatry,"""Al Manhal FZ, LLC""",10168923| +The Arabian Journal of Accounting,Scientific Publishing Center,22101454| +The Arabidopsis Book,BioOne- American Society of Plant Biologists (Arabidopsis),15438120|15438120 +The Archives of Automotive Engineering/ Archiwum Motoryzacji,Index Copernicus International,1234754X| +The Arkansas Historical Quarterly,JSTOR,00041823| +The Art Book,Wiley Blackwell (Blackwell Publishing),13686267|14678357 +The Art Bulletin,Informa UK (Taylor & Francis),00043079|15596478 +The Art Critic,JSTOR,2150315X| +The Art Journal (1875-1887),JSTOR,2152243X| +The Art News,JSTOR,21503192| +The Art Review,JSTOR,21503184| +The Art Union,JSTOR,19480709| +The Art World,JSTOR,21512752| +The Arthur Miller Journal,The Pennsylvania State University Press,15588831|15588831 +The Artist An Illustrated Monthly Record of Arts Crafts and Industries (American Edition),JSTOR,21514879| +The Arts in Psychotherapy,Elsevier ,01974556| +The Asia Journal of Applied Microbiology,Pak Publishing Group,24092177|23138157 +The Asia Pacific Heart Journal,Elsevier ,13280163| +The Asia Pacific Journal of Anthropology,Informa UK (Taylor & Francis),14442213|17409314 +The Asia Pacific Journal of Thoracic & Cardiovascular Surgery,Elsevier ,13242881| +The Asia-Pacific Education Researcher,Springer-Verlag,01195646|22437908 +THE ASIAN JOURNAL OF ANIMAL SCIENCE,Hind Agri Horticultural Society,09734791|09768963 +THE ASIAN JOURNAL OF HORTICULTURE,Hind Agri Horticultural Society,09734767|0976724X +The Asian Journal of Shipping and Logistics,Elsevier ,20925212| +The Asian Journal of Technology Management (AJTM),"""School of Business and Management, Institut Teknologui Bandung""",19786956|2089791X +The Asian review of World Histories,The Asian Association of World Historians,2287965X| +The Association of Korea Counseling Psychology Education Welfare,The Association of Korea Counseling Psychology Education Welfare,23838736| +The Astronomical Journal,American Astronomical Society,00046256|15383881 +The Astronomy and Astrophysics Review,Springer-Verlag,09354956|14320754 +The Astrophysical Journal,American Astronomical Society,20418205|20418213 +The Astrophysical Journal,American Astronomical Society,0004637X|15384357 +The Astrophysical Journal Supplement Series,American Astronomical Society,00670049|15384365 +The ATA Journal of Legal Tax Research,American Accounting Association,1543866X| +The Athenian Agora,JSTOR,15588610| +The Auk,BioOne (American Ornithologists Union),00048038|19384254 +The AustralAsian Journal of Cardiac and Thoracic Surgery,Elsevier ,10372091| +The Australasian Journal of Optometry,Wiley Blackwell (Blackwell Publishing),0817881X| +The Australian and New Zealand Journal of Organisational Psychology,Cambridge University Press (Australian Academic Press),18357601|18357601 +The Australian Educational and Developmental Psychologist,Cambridge University Press,08165122|18392504 +The Australian Educational Researcher,Springer-Verlag,03116999|22105328 +The Australian Journal of Anthropology,Wiley Blackwell (Blackwell Publishing),10358811|18359310 +The Australian Journal of Chinese Affairs,JSTOR,01567365| +The Australian Journal of Hospital Pharmacy,Wiley Blackwell (John Wiley & Sons),03106810| +The Australian Journal of Indigenous Education,Cambridge University Press,13260111|20497784 +The Australian Journal of Midwifery,Elsevier ,14454386| +The Australian Journal of Optometry,Wiley Blackwell (Blackwell Publishing),00450642| +The Australian Library Journal,Informa UK (Taylor & Francis),00049670|22014276 +The Australian Quarterly,JSTOR,00050091| +The B E Journal of Economic Analysis & Policy,Walter de Gruyter GmbH,21946108|19351682 +The B E Journal of Macroeconomics,Walter de Gruyter GmbH,21946116|19351690 +The B E Journal of Theoretical Economics,Walter de Gruyter GmbH,21946124|19351704 +The Back Letter,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,08947376| +The Baffler,CrossRef test user,10599789|2164926X +The Baltic International Yearbook of Cognition Logic and Communication,New Prairie Press,19443676 +The Baltic Journal of Road and Bridge Engineering,Vilnius Gediminas Technical University,1822427X|18224288 +The Behavior Analyst,Springer-Verlag,07386729|21968918 +The Behavior Analyst Today,American Psychological Association,15394352 +The Belfast Magazine and Literary Journal,JSTOR,1757045X| +The Belfast Monthly Magazine,JSTOR,17581605| +The Bell Journal of Economics,JSTOR,0361915X| +The Bell Journal of Economics and Management Science,JSTOR,00058556| +The Bible and Critical Theory,Monash University,18323391|18323391 +The Bible Translator,SAGE Publications,20516770|20516789 +The Bible Translator,SAGE Publications,02600935| +The Biblical Archaeologist,JSTOR,00060895| +The Biblical World,The University of Chicago Press,01903578| +The Birds of North America Online,Cornell Lab of Ornithology,10615466 +The Black Perspective in Music,JSTOR,00907790| +The Black Scholar,Informa UK (Taylor & Francis),00064246|21625387 +The Bone & Joint Journal,British Editorial Society of Bone and Joint Surgery,20494394| +The Botanical Review,Springer-Verlag,00068101|18749372 +The Bottom Line Managing Library Finances,Emerald (MCB UP ),0888045X|00000000 +The Botulinum J,Inderscience Enterprises Ltd.,17547318|17547326 +The Brain & Neural Networks,Japanese Neural Network Society,1340766X|18830455 +The Brain Sciences Journal,The Brain Sciences Foundation,21646333|2164635X +The Brandywine Review of Faith & International Affairs,Informa UK (Taylor & Francis),15435725| +The Brazilian Journal of Infectious Diseases,Elsevier ,14138670| +The BRC Academy Journal of Business,Cambria Press,21528721|2152873X +The BRC Academy Journal of Education,Cambria Press,21528756|21528780 +The Breast,Elsevier ,09609776| +The Breast Journal,Wiley Blackwell (Blackwell Publishing),1075122X|15244741 +The British Accounting Review,Elsevier ,08908389|10958347 +The British Journal for the History of Science,Cambridge University Press,00070874|1474001X +The British Journal for the Philosophy of Science,Oxford University Press,00070882|14643537 +The British Journal of Aesthetics,Oxford University Press,00070904|14682842 +The British Journal of Animal Behaviour,Elsevier ,09505601| +The British Journal of Chiropractic,Elsevier ,14662108| +The British Journal of Development Disabilities,Maney Publishing,09697950| +The British Journal of Diabetes,"""ABCD Diabetes Care, LTD.""",14746514|17534305 +The British Journal of Forensic Practice,Emerald (MCB UP ),14636646|20428340 +The British Journal of Mental Subnormality,Maney Publishing,0374633X| +The British Journal of Psychiatry,Royal College of Psychiatrists,00071250| +The British Museum Quarterly,JSTOR,0007151X| +The Brookings Review,JSTOR,07451253| +The Brown University Child & Adolescent Psychopharmacology Update,Wiley Blackwell (John Wiley & Sons),15278395|15567567 +The Brown University Child and Adolescent Behavior Letter,Wiley Blackwell (John Wiley & Sons),08982562|15567575 +The Brown University Child and Adolescent Behavior Letter,Wiley Blackwell (John Wiley & Sons),10581073| +The Brown University Digest of Addiction Theory and Application,Wiley Blackwell (John Wiley & Sons),10406328|15567559 +The Brown University Geriatric Psychopharmacology Update,Wiley Blackwell (John Wiley & Sons),15292584|15567540 +The Brown University Psychopharmacology Update,Wiley Blackwell (John Wiley & Sons),16085308|15567532 +The Brown University Psychopharmacology Update,Wiley Blackwell (John Wiley & Sons),10685308| +The Bryologist,BioOne (American Bryological and Lichenological Society),00072745|19384378 +The Bulletin of Contemporary Clinical Medicine,Contemporary Clinical Medicine,20710240|2079553X +The Bulletin of Hispanic Studies,Liverpool University Press,14753839|14783398 +The Bulletin of Legal Medicine,The Bulletin of Legal Medicine,1300865X| +The Bulletin of Mathematical Biophysics,Springer-Verlag,00074985| +The Bulletin of Society for Mathematical Services and Standards,SciPress Ltd.,22778020 +The Bulletin of Society for Mathematical Services and Standards,SciPress Ltd.,22778020 +The Bulletin of Society for Mathematical Services and Standards,SciPress Ltd.,22778020 +The Bulletin of the College Art Association,JSTOR,08950571| +The Bulletin of the College Art Association of America,JSTOR,02728192| +The Bulletin of the Ecological Society of America,Wiley Blackwell (John Wiley & Sons),23276096| +The Bulletin of the Japanese Bird Banding Association,The Japanese Bird Banding Association,09144307|21872481 +The Bulletin of the Midwest Modern Language Association,JSTOR,00263419| +The Bulletin of the Museum of Modern Art,JSTOR,19386761| +The Bulletin of the Rocky Mountain Modern Language Association,JSTOR,00357626| +The Bulletin of Tokyo Dental College,Tokyo Dental College,00408891| +The Bulletin of zoological nomenclature,Smithsonian Institution Biodiversity Heritage Library,00075167| +The Business History Review,Cambridge University Press,00076805|2044768X +The Business School Journal,Informa UK (Taylor & Francis),23722800 +The Byron Journal,Liverpool University Press,03017257|17570263 +The California School Psychologist,Springer-Verlag,10873414| +The Cambridge Classical Journal,Cambridge University Press,17502705|2047993X +The Cambridge Journal of Postcolonial Literary Inquiry,Cambridge University Press,20522614|20522622 +The Cambridge Law Journal,Cambridge University Press,00081973|14692139 +The Cambridge Quarterly,Oxford University Press,0008199X|14716836 +The Cambro-Briton,JSTOR,17579953| +The Canadian Entomologist,Cambridge University Press (Entomological Society of Canada),0008347X|19183240 +The Canadian Journal for the Scholarship of Teaching and Learning,"""University of Western Ontario, Western Libraries""",19182902|19182902 +The Canadian Journal of Chemical Engineering,Wiley Blackwell (John Wiley & Sons),00084034|1939019X +The Canadian Journal of Economics and Political Science,JSTOR,03154890| +The Canadian Journal of Hospital Pharmacy,Canadian Society of Hospital Pharmacists,00084123|19202903 +The Canadian Journal of Human Sexuality,University of Toronto Press Inc,11884517|22917063 +The Canadian Journal of Irish Studies,JSTOR,07031459| +The Canadian Journal of Linguistics / La revue canadienne de linguistique,Muse - Johns Hopkins University Press,17101115 +The Canadian Journal of Program Evaluation,University of Toronto Press Inc,14967308| +The Canadian Journal of Psychiatry,SAGE Publications,07067437|14970015 +The Canadian Journal of Sociology,Muse - Johns Hopkins University Press,17101123 +The Canadian Mineralogist,Mineralogical Association of Canada,00084476|14991276 +The Canadian Psychologist,American Psychological Association,00084832| +The Cancer Journal,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15289117| +The Cardiology,Science Alert,18118194| +The Career Development Quarterly,Wiley Blackwell (John Wiley & Sons),08894019| +The Caregiver Journal,Informa UK (Taylor & Francis),1077842X| +The Carl Beck Papers in Russian and East European Studies,"""University Library System, University of Pittsburgh""",2163839X +The Carleton Drama Review,JSTOR,01613936| +The Carlyle Letters Online,Duke University Press,15320928| +The Cartographic Journal,Maney Publishing,00087041|00000000 +The CASE International Journal of Educational Advancement,Nature Publishing Group - Macmillan Publishers,14673657|1740214X +The CASE Journal,Emerald (MCB UP ),15449106| +The Case Manager,Elsevier ,10619259| +The Catalyst A Multidisciplinary Review of Undergraduate Scholarship at The University of Southern Mississippi,Univeristy of Southern Mississippi,24710776 +The Catholic Counselor and Readings,Wiley Blackwell (John Wiley & Sons),21645086| +The Catholic Historical Review,Muse - Johns Hopkins University Press,15340708 +The Catholic Layman,JSTOR,07915640| +The Catholic Philosophy,The Korean Association of Catholic Philosophers,12292915| +The Caucasus and Globalization Journal Social Political and Economic Studies,"""Science and Education, Ltd.""",18197353| +The Cedarville Review,Centennial Library,23722835|2372286X +The Celtic Review,JSTOR,17556066| +The Cerebellum,Springer-Verlag,14734222|14734230 +The Charleston Advisor,The Charleston Co.,15254011|15254003 +The Chaucer Review,The Pennsylvania State University Press,00092002|15284204 +The Chemical Educator,Springer-Verlag,14304171 +The Chemical Engineering Journal,Elsevier ,03009467| +The Chemical Engineering Journal and the Biochemical Engineering Journal,Elsevier ,09230467| +The chemical machinerey,The Society of Chemical Engineers Japan,03684784| +The Chemical Physics of Solid Surfaces,Elsevier , +The Chemical Record,Wiley Blackwell (John Wiley & Sons),15278999|15280691 +The Chemist’s Section of the Cotton Oil Press,Springer-Verlag,00959774| +The Chesterton Review,Philosophy Documentation Center,03170500| +The Chesterton Review em Português,Philosophy Documentation Center,21628548| +The Chesterton Review en Español,Philosophy Documentation Center,2162853X| +The Chesterton Review en Français,Philosophy Documentation Center,21628602| +The Chesterton Review in Italiano,Philosophy Documentation Center,21623554| +The China Journal,The University of Chicago Press,13249347|18358535 +The China Nonprofit Review,Brill Academic Publishers,18765092|18765149 +The China Quarterly,Cambridge University Press,00094439|14682648 +The Chinese Historical Review,Maney Publishing,1547402X|20487827 +The Chinese Journal of Comparative Law,Oxford University Press,20504802|20504810 +The Chinese Journal of Global Governance,Brill Academic Publishers,23525193|23525207 +The Chinese Journal of International Politics,Oxford University Press,17508916|17508924 +The Chinese Journal of Physiology,Chinese Physiological Society,03044920| +The Chinese-German Journal of Clinical Oncology,Springer-Verlag,16101979|16139089 +The Clarion- International Multidisciplinary Journal,Diva Enterprises Private Limited,22771697|2277937X +The Classical Journal,"""Classical Association of the Middle West and South, Inc.""",00098353|00098353 +The Classical Literature and Education,The Society of Korean Classical Literature Education,15987108| +The Classical Quarterly,Cambridge University Press,00098388|14716844 +The Classical Review,Cambridge University Press,0009840X|14643561 +The Classical Weekly,JSTOR,1940641X| +The Classical World,JSTOR,00098418| +The Clearing House A Journal of Educational Strategies Issues and Ideas,Informa UK (Taylor & Francis),00098655|1939912X +The Cleft Palate-Craniofacial Journal,American Cleft Palate Association,10556656|15451569 +The Clinical Investigator,Springer-Verlag,09410198| +The Clinical Journal of Pathology,Wiley Blackwell (John Wiley & Sons),20548818| +The Clinical Neuropsychologist,Informa UK (Taylor & Francis),13854046|17444144 +The Clinical Respiratory Journal,Wiley Blackwell (Blackwell Publishing),17526981|1752699X +The Clinical Supervisor,Informa UK (Taylor & Francis),07325223|1545231X +The Clinical Teacher,Wiley Blackwell (Blackwell Publishing),17434971|1743498X +The Clinician,Publishing House ABV Press,18188338|24128775 +The CLR James Journal,Philosophy Documentation Center,21674256| +The CLR James Journal,Philosophy Documentation Center,21674256| +The Cognitive Behaviour Therapist,Cambridge University Press,1754470X +The Coleopterists Bulletin,BioOne (Coleopterists Society),0010065X|19384394 +The Collector and Art Critic,JSTOR,19480202| +The College Music Symposium,The College Music Society,23302011 +The Columbia Journal of World Business,Elsevier ,00225428| +The Comics Grid Journal of Comics Scholarship,Open Library of Humanities,20480792|20480792 +The Communication Review,Informa UK (Taylor & Francis),10714421|15477487 +The Communications in Information Science and Management Engineering,The World Academic Publishing,22221859|22247785 +The Comparatist,Muse - Johns Hopkins University Press,15590887 +The Computer Bulletin,Oxford University Press,00104531|1464357X +The Computer Games Journal,Springer-Verlag,2052773X +The Computer Journal,Oxford University Press,00104620|14602067 +The Condor,BioOne (Cooper Ornithological Society),00105422|19385129 +The Connoisseur,JSTOR,21511276| +The Conservator,Informa UK (Taylor & Francis),01400096| +The Consultant Pharmacist,American Society of Consultant Pharmacists,08885109| +The Contemporary Pacific,Muse - Johns Hopkins University Press,15279464 +The Coordinator,JSTOR,15408256| +The Cormac McCarthy Journal,The Pennsylvania State University Press,23333073|23333065 +The Counseling Psychologist,SAGE Publications,00110000|00000000 +The Course of Study,The University of Chicago Press,15455890| +The Court Historian,Maney Publishing,14629712|20563450 +The Crayon,JSTOR,21503176| +The Crop Journal,Elsevier ,22145141| +The Cryosphere,Copernicus GmbH,19940424 +The Cryosphere Discussions,Copernicus GmbH,19940440 +The CSAS Bulletin,Wiley Blackwell (Blackwell Publishing),05770963|15487431 +The Curriculum Journal,Informa UK (Taylor & Francis),09585176|14693704 +THE DAEGU HISTORICAL REVIEW,Daegu Historical Association,12259039| +The Decorator and Furnisher,JSTOR,21506256| +The Dental Journal of Nihon University,Nihon University School of Dentistry,18842976 +The Department Chair,Wiley Blackwell (John Wiley & Sons),10493255|19364393 +The Depositional Record,Wiley Blackwell (John Wiley & Sons),20554877| +The Design Journal,Informa UK (Taylor & Francis),14606925|17563062 +The Developing Economies,Wiley Blackwell (Blackwell Publishing),00121533|17461049 +The Diabetes Educator,SAGE Publications,01457217|15546063 +THE DONG BANG HAK CHI,Institute of Korean Studies,12266728| +The Dostoevsky Journal,Brill Academic Publishers,15355314|23752122 +The Dovenschmidt Quarterly,Boom Uitgevers Den Haag,22119981| +The Drama Review TDR,JSTOR,00125962| +The Dublin Journal of Medical and Chemical Science,Springer-Verlag,03321029| +The Dublin Penny Journal,JSTOR,20091338| +The Dublin Quarterly Journal of Medical Science,Springer-Verlag,07902328| +The Duke Orthopaedic Journal,Jaypee Brothers Medical Publishing,22315055|22315136 +The e-Business Studies,Global E-Business Association,12299936| +The e-Journal of East and Central Asian Religions,"""UKOLN, University of Bath""",20531079 +The Eagle Feather,University of North Texas Libraries,23324066 +The East African Agricultural Journal,Informa UK (Taylor & Francis),03670074| +The East Asian Ancient Studies,The Association of East Asian Ancient Studies,12298298| +The East Asian Journal of Business Management,Korea Distribution Science Association,22343040|22343059 +The Economic and Labour Relations Review,SAGE Publications,10353046|18382673 +The Economic History Review,Wiley Blackwell (Blackwell Publishing),00130117|14680289 +The Economic Journal,Wiley Blackwell (Blackwell Publishing),00130133|14680297 +The Economics and Finance Letters,Pak Publishing Group,23126310|2312430X +The Economics of Peace and Security Journal,Economists for Peace and Security,1749852X +The Economists Voice,Walter de Gruyter GmbH,21946167|15533832 +The Ecumenical Review,Wiley Blackwell (Blackwell Publishing),00130796|17586623 +The Edgar Allan Poe Review,The Pennsylvania State University Press,21500428|21662932 +The EDI Law Review,Springer (Kluwer Academic Publishers),09292233| +The Education and science journal,Russian State Vocational Pedagogical University,19945639|23105828 +The Educational Forum,Informa UK (Taylor & Francis),00131725|19388098 +The Educational Forum,Informa UK (Taylor & Francis),00131725| +The Egyptian Heart Journal,Elsevier ,11102608| +The Egyptian Journal of Aquatic Research,Elsevier ,16874285| +The Egyptian Journal of Cardiothoracic Anesthesia,Medknow Publications,16879090| +The Egyptian Journal of Community Medicine,"""Al Manhal FZ, LLC""",11101865| +The Egyptian Journal of Critical Care Medicine,Elsevier ,20907303| +The Egyptian Journal of Forensic Sciences and Applied Toxicology,"""Al Manhal FZ, LLC""",16870875| +The Egyptian Journal of Haematology,Medknow Publications,11101067| +The Egyptian Journal of Histology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,11100559| +The Egyptian Journal of Hospital Medicine,"""Al Manhal FZ, LLC""",16872002|20907125 +The Egyptian Journal of Internal Medicine,Medknow Publications,11107782| +The Egyptian Journal of Medical Microbiology,"""Al Manhal FZ, LLC""",11102179| +The Egyptian Journal of Medical Microbiology,"""Al Manhal FZ, LLC""",11102179| +The Egyptian Journal of Neurology Psychiatry and Neurosurgery,Medknow Publications,11101083| +The Egyptian Journal of Otolaryngology,Medknow Publications,10125574| +The Egyptian Journal of Radiology and Nuclear Medicine,Elsevier ,0378603X| +The Egyptian Journal of Remote Sensing and Space Science,Elsevier ,11109823| +The Egyptian Journal of Surgery,Medknow Publications,11101121|11101121 +The Egyptian Orthopaedic Journal,Medknow Publications,11101148| +The Egyptian Rheumatologist,Elsevier ,11101164| +The Eighteenth Century,Muse - Johns Hopkins University Press,19350201 +The Electricity Journal,Elsevier ,10406190| +The Electronic Library,Emerald (MCB UP ),02640473|00000000 +The Elementary School Journal,The University of Chicago Press,00135984|15548279 +The Elementary School Teacher,The University of Chicago Press,15455858| +The Elementary School Teacher and Course of Study,The University of Chicago Press,15455904| +The EMBO Journal,EMBO,02614189|14602075 +The Emily Dickinson Journal,Muse - Johns Hopkins University Press,1096858X +The Encyclopedia of Biodiversity,Elsevier - Academic Press, +The Encyclopedia of Genetics,Elsevier - Academic Press, +The Encyclopedia of Separation Science,Elsevier - Academic Press, +The Encyclopedia of Vibration,Elsevier - Academic Press, +The Endocrinologist,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10512144| +The Energy Journal,International Association for Energy Economics,01956574| +The Engineering Economist,Informa UK (Taylor & Francis),0013791X|15472701 +The English Historical Review,Oxford University Press,00138266|14774534 +The English Journal,JSTOR,00138274| +The Entomologist,Smithsonian Institution Biodiversity Heritage Library,00138878| +The Entomologist s monthly magazine,Smithsonian Institution Biodiversity Heritage Library,00138908| +The entomologist s record and journal of variation,Smithsonian Institution Biodiversity Heritage Library,00138916| +The Environmental Communication Yearbook,Informa UK (Taylor & Francis),15567400|15567362 +The Environmentalist,Springer-Verlag,02511088|15732991 +The EPMA Journal,Springer-Verlag,18785077|18785085 +The Ergonomics Open Journal,Bentham Science,18759343| +The Eschenmoser–Claisen Rearrangement,Thieme Publishing Group,20300220 +The ESP Journal,Elsevier ,02722380| +The Eugene O Neill Review,The Pennsylvania State University Press,10409483|21614318 +The EuroCALL Review,Universitat Politecnica de Valencia,16952618|16952618 +The European Journal of Applied Economics,Centre for Evaluation in Education and Science,24062588| +The European Journal of Cognitive Psychology,Informa UK (Taylor & Francis),09541446|14640635 +The European Journal of Contraception & Reproductive Health Care,Informa UK (Taylor & Francis),13625187|14730782 +The European Journal of Counselling Psychology,Leibniz Institute for Psychology Information,21957614 +The European Journal of Cultural Policy,Informa UK (Taylor & Francis),10746897| +The European Journal of Endocrine Medicine,Healthcare Bulletin,20424922| +The European Journal of Health Economics,Springer-Verlag,16187598|16187601 +The European Journal of Orthodontics,Oxford University Press,01415387|14602210 +The European Journal of Psychiatry,Instituto de Salud Carlos III/BNCS/SciELO Espana,02136163|02136163 +The European journal of psychiatry (edición en español),Instituto de Salud Carlos III/BNCS/SciELO Espana,1579699X +The European Journal of Psychology Applied to Legal Context,Elsevier ,18891861|19894007 +The European Journal of Public Health,Oxford University Press,11011262|1464360X +The European Journal of Respiratory Medicine,Healthcare Bulletin,20425007| +The European Journal of Social & Behavioural Sciences,Cognitive-crcs,23012218 +The European Journal of Surgery,Informa UK (Taylor & Francis),11024151|17419271 +The European Legacy,Informa UK (Taylor & Francis),10848770|14701316 +The European Physical Journal A,Springer-Verlag,14346001|1434601X +The European Physical Journal Applied Physics,EDP Sciences,12860042|12860050 +The European Physical Journal B,Springer-Verlag,14346028|14346036 +The European Physical Journal C,Springer-Verlag,14346044|14346052 +The European Physical Journal D,Springer-Verlag,14346060|14346079 +The European Physical Journal E,Springer-Verlag,12928941|1292895X +The European Physical Journal H,Springer-Verlag,21026459|21026467 +The European Physical Journal Plus,Springer-Verlag,21905444 +The European Physical Journal Special Topics,Springer-Verlag,19516355|19516401 +The European Procedia Social and Behavioural Sciences,Cognitive-crcs, +The European Research Journal,The European Research Journal,21493189 +The Ewha Medical Journal,Ewha Womans University School of Medicine (KAMJE),22343180|22342591 +The Exceptional Child,Informa UK (Taylor & Francis),01566555| +The Explicator,Informa UK (Taylor & Francis),00144940|1939926X +The Expository Times,SAGE Publications,00145246|17455308 +The Extractive Industries and Society,Elsevier ,2214790X| +The F Scott Fitzgerald Review,The Pennsylvania State University Press,15433951|17556333 +The Family Coordinator,JSTOR,00147214| +The Family Journal,SAGE Publications,10664807|15523950 +The Family Life Coordinator,JSTOR,08860394| +The Far Eastern Quarterly,JSTOR,03636917| +The FASEB Journal,Federation of American Society for Experimental Biology,08926638|15306860 +The Federal Reserve Bank of Kansas City Research Working Papers,Federal Reserve Bank of Kansas City,19365330| +The Federalist Debate,Walter de Gruyter GmbH,15918483 +The Fibreculture Journal,The Fibreculture Journal,14491443| +The Florida Buggist,JSTOR,19304013| +The Foot,Elsevier ,09582592| +The Foot and Ankle Online Journal,The Foot and Ankle Online Journal ,19416806 +The Forestry Chronicle,Canadian Institute of Forestry,00157546|14999315 +The Forum,Walter de Gruyter GmbH,21946183|15408884 +The Foundation Review,Grand Valley State University Libraries,19445660|19445679 +The Foundation Years,Elsevier ,17441889| +The Four Peaks Review,University of Washington Libraries,21638209 +The French Review Special Issue,JSTOR,02713349| +The Future of Children,Muse - Johns Hopkins University Press,10548289|15501558 +The Galpin Society Journal,JSTOR,00720127| +The Garden History Society Newsletter,JSTOR,17493382| +The Geneva Papers on Risk and Insurance Issues and Practice,Nature Publishing Group - Macmillan Publishers,10185895|14680440 +The Geneva Papers on Risk and Insurance Theory,Nature Publishing Group,09264957| +The Geneva Reports,GSE Research Limited,16623738| +The Geneva Risk and Insurance Review,Nature Publishing Group - Macmillan Publishers,1554964X|15549658 +The Geography Teacher,Informa UK (Taylor & Francis),19338341|17526884 +The Geologist,Cambridge University Press,13594656| +The German Quarterly,Wiley Blackwell (Blackwell Publishing),00168831|17561183 +The Germanic Review Literature Culture Theory,Informa UK (Taylor & Francis),00168890|19306962 +The Gerontologist,Oxford University Press,00169013|17585341 +The Gleaner,National Documentation Centre,04251660|2241164X +The Global Atmosphere and Ocean System,Informa UK (Taylor & Francis),10236732|14772779 +The Global Electrical Engineers,Avanti Publishers,24100412 +The Global Environmental Engineers,Avanti Publishers,24103624 +The Global Library of Women s Medicine,"""Sapiens Publishing, LTD""",17562228 +The Global South,Indiana University Press,19328648|19328656 +The Global Studies Journal,Common Ground Publishing,18354432| +The Good Society,The Pennsylvania State University Press,10890017|15389731 +The Great Basin naturalist,Smithsonian Institution Biodiversity Heritage Library,00173614| +The Great Lakes Review,JSTOR,03601846| +The Grove - Working Papers on English Studies,Universidad de Jaen,1137005X|23865431 +The Hague Journal of Diplomacy,Brill Academic Publishers,18711901|1871191X +THE HALLYM JOURNAL OF JAPANESE STUDIES,"""Institute of Japanese Studies, Hallym University""",17385334| +The Hand,SAGE Publications,0072968X| +The Hardy Review,Maney Publishing,19348908|19348916 +The Harvard International Journal of Press/Politics,SAGE Publications,1081180X|1531328X +The Harvard Review of Philosophy,Philosophy Documentation Center,10626239| +The Hastings Center Report,Wiley Blackwell (John Wiley & Sons),00930334| +The Hastings Center Studies,JSTOR,00933252| +The Health Care Manager,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,15255794| +The Hearing Journal,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,07457472| +The Heart Surgery Forum,Carden Jennings Publishing Co.,10983511|15226662 +The Hebrew Student,The University of Chicago Press,01905953| +The Hematology Journal,Nature Publishing Group,14664860|14664860 +The Hemingway Review,Muse - Johns Hopkins University Press,15484815 +The Henry James Review,Muse - Johns Hopkins University Press,10806555 +The Heythrop Journal,Wiley Blackwell (Blackwell Publishing),00181196|14682265 +The High School Journal,Muse - Johns Hopkins University Press,15345157 +The Histochemical Journal,Springer-Verlag,00182214|15736865 +The Historic Environment Policy & Practice,Maney Publishing,17567505|17567513 +The Historical Association for Soong-Sil,The Soong Sil Association for Historical Studies,20059701| +The Historical Journal,Cambridge University Press,0018246X|14695103 +The Historical Review/La Revue Historique,National Documentation Centre,17903572|17917603 +The Historical Society of Southern California Quarterly,JSTOR,21629366| +The History of Korean Education,Korean Society for History of Education,12251461| +The History of Korean Education,Korean Society for History of Education,12251461| +The History of Land Transport,Academic Publishing House Researcher,24122041| +The History of the Family,Informa UK (Taylor & Francis),1081602X|18735398 +The History Teacher,JSTOR,00182745| +The Holocene,SAGE Publications,09596836|14770911 +The Hong Kong Journal of Social Work,World Scientific ,02192462|24247731 +The Hopkins Review,Muse - Johns Hopkins University Press,19399774 +The Horticulture Journal,The Japanese Society for Horticultural Science,21890102|21890110 +The Hospice Journal,"""Informa UK (Haworth Press, Inc.,)""",0742969X| +The Hospitalist,Wiley Blackwell (John Wiley & Sons),1553085X| +The Howard Journal of Crime and Justice,Wiley Blackwell (Blackwell Publishing),20591098| +The Howard Journal of Criminal Justice,Wiley Blackwell (Blackwell Publishing),02655527|14682311 +The Hudson Review,JSTOR,0018702X| +The HUGO Journal,Springer-Verlag,18776558|18776566 +The Humanist Educator,Wiley Blackwell (John Wiley & Sons),03629783| +The Humanistic Psychologist,American Psychological Association,08873267|15473333 +The Huntington Library Bulletin,JSTOR,19350708| +The IDS Bulletin,Wiley Blackwell (Blackwell Publishing),03085872| +The IES Journal Part A Civil & Structural Engineering,Informa UK (Taylor & Francis),19373260|19373279 +The Illustrated Magazine of Art,JSTOR,21505837| +The Illustrated Wood Worker,JSTOR,21511284| +The Imaging Science Journal,Maney Publishing,13682199|1743131X +The IMF and the World Bank How Do They Differ?,International Monetary Fund,02523027| +The Incorporated Statistician,JSTOR,14669404| +The Indian Journal of Medical Research,Medknow Publications,09715916| +The Indian Journal of Neurotrauma,Thieme Publishing Group,09730508|22133739 +The Indian Journal of Pediatrics,Springer-Verlag,00195456|09737693 +The Indonesian Accounting Review,STIE Perbanas Surabaya,20863802|2302822X +The Indonesian Biomedical Journal,Secretariat of The Indonesian Biomedical Journal,20853297|23559179 +The Indonesian Journal of Business Administration,"""School of Business and Management, Institut Teknologui Bandung""",22523464|22529284 +The Indonesian Journal of Planning and Development,Institute of Research and Community Services Diponegoro University (LPPM UNDIP),20879733|2442983X +The Influence of Drugstore Environment on Perceived OverallAtmosphere Emotion and Revisiting Intentions,Korea Distribution Association,12269263|23839694 +The Information Society,Informa UK (Taylor & Francis),01972243|10876537 +The Initiation,Nepal Journals Online,20910088| +The Innes Review,Edinburgh University Press,0020157X|17455219 +The Institute for Korean Culture,Institute of Korean Cultural Studies Yeungnam University,12298697| +The Institute for Legal Studies,The Institute for Legal Studies,1225228X| +The Institute of Image Information and Televistion Engineers,The Institute of Image Information and Television Engineers,18849636 +The interdisciplinary journal of Discontinuity Nonlinearity and Complexity,L&H Scientific Publishing LLC,21646376|21646414 +The International Arabic Journal of Antimicrobial Agents,Internet Medical Publishing,21749094 +The International Economy,The Japan Society of International Economics,21866074|18844367 +The International Executive,Wiley Blackwell (John Wiley & Sons),00206652|1522709X +The International Food and Agribusiness Management Review,Elsevier ,10967508| +The International Forestry Review,Commonwealth Forestry Association,14655489| +The International History Review,Informa UK (Taylor & Francis),07075332|19496540 +The International Information & Library Review,Informa UK (Taylor & Francis),10572317|10959297 +The International Journal for Academic Development,Informa UK (Taylor & Francis),1360144X|14701324 +The International Journal of Accounting,Elsevier ,00207063| +The International Journal of Acoustics and Vibration,International Institute of Acoustics and Vibration (IIAV),24151408 +The International Journal of Adult Community and Professional Learning,Common Ground Publishing,23286318|23286318 +The International Journal of Advanced Culture Technology,The International Promotion Agency of Culture Technology,22887202| +The International Journal of Advanced Manufacturing Technology,Springer-Verlag,02683768|14333015 +The International Journal of African Historical Studies,JSTOR,03617882| +The International Journal of Aging and Human Development,SAGE Publications,00914150|15413535 +The International Journal of Aging and Society,Common Ground Publishing,21601909|21601917 +The International Journal of Alcohol and Drug Research,International Journal of Alcohol and Drug Research,19257066 +The International Journal of Ambient Systems and Applications,Academy and Industry Research Collaboration Center,23216344|23209259 +The International Journal of Applied Economics and Finance,Science Alert,19910886| +The International Journal of Applied Radiation and Isotopes,Elsevier ,0020708X| +The International Journal of Architectonic Spatial and Environmental Design,Common Ground Publishing,23251662| +The International Journal of Artificial Organs,"""Wichtig Publishing, SRL""",03913988| +The International Journal of Arts Education,Common Ground Publishing,23269944| +The International Journal of Arts Theory and History,Common Ground Publishing,23269952|23271779 +The International Journal of Assessment and Evaluation,Common Ground Publishing,23277920|23278692 +The International Journal of Bank Marketing,Emerald (MCB UP ),02652323|00000000 +The International Journal of Biochemistry & Cell Biology,Elsevier ,13572725| +The International Journal of Biodiversity Science and Management,Informa UK (Taylor & Francis),17451590| +The International Journal of Biological Markers,"""Wichtig Publishing, SRL""",03936155| +The International Journal of Biostatistics,Walter de Gruyter GmbH,2194573X|15574679 +The International Journal of Biotechnology,Pak Publishing Group,23069864|23066148 +The International Journal of Cardiovascular Imaging,Springer-Verlag,15695794|15730743 +The International Journal Of Cell Cloning,Wiley Blackwell (John Wiley & Sons),07371454|15494918 +The International Journal of Children s Rights,Brill Academic Publishers,09275568|15718182 +The International Journal of Chinese Character Studies,World Association of Chinese Character Studies,23843152| +The International Journal of Civic Political and Community Studies,Common Ground Publishing,23270047|23272155 +The International Journal of Climate Change Impacts and Responses,Common Ground Publishing,18357156| +The International Journal of Communication and Linguistic Studies,Common Ground Publishing,23277882|23278617 +The International Journal of Community Diversity,Common Ground Publishing,23270004|23272147 +The International Journal of Conflict Engagement and Resolution,Boom Uitgevers Den Haag,22119965| +The International Journal of Critical Cultural Studies,Common Ground Publishing,23270055|23272376 +The International Journal of Design Education,Common Ground Publishing,2325128X|23251298 +The International Journal of Design in Society,Common Ground Publishing,23251328|23251360 +The International Journal of Design Management and Professional Practice,Common Ground Publishing,2325162X|23251638 +The International Journal of Designed Objects,Common Ground Publishing,23251379|23251395 +The International Journal of Developmental Biology,UPV/EHU Press,02146282| +The International Journal of Diasporic Chinese Studies,World Scientific ,17937248|17939631 +The International Journal of Digital Accounting Research,The International Journal of Digital Accounting Research,15778517|15778517 +The International Journal of Diverse Identities,Common Ground Publishing,23277866|23278560 +The International Journal of Diversity in Education,Common Ground Publishing,23270020|23272163 +The International Journal of Diversity in Organizations Communities and Nations Annual Review,Common Ground Publishing,14479532|14479583 +The International Journal of E-Learning and Educational Technologies in the Digital Media,The Society of Digital Information and Wireless Communications (SDIWC),24100439| +The International Journal of Early Childhood Learning,Common Ground Publishing,23277939|23277939 +The International Journal of Educational Management,Emerald (MCB UP ),0951354X|00000000 +The International Journal of Educational Organization and Leadership,Common Ground Publishing,23291656|23291591 +The International Journal of Entrepreneurship and Innovation,IP Publishing,14657503| +The International Journal of Environmental and Science Education,Eurasian Society of Educational Research,13063065 +The International Journal of Environmental Cultural Economic and Social Sustainability Annual Review,Common Ground Publishing,18322077| +The International Journal of Environmental Protection,The World Academic Publishing,22266437|22247777 +The International Journal of Environmental Sustainability,Common Ground Publishing,23251077|23251085 +THE INTERNATIONAL JOURNAL OF ESTHETIC DENTISTRY,Editora Napoleao Ltda ME,24476730 +The International Journal of Ethics,The University of Chicago Press,1526422X| +The International Journal of Excellence in Islamic Banking and Finance,"""Al Manhal FZ, LLC""",22208291|22208291 +The International Journal of Forensic Computer Science,ABEAT - Associacao Brasileira de Especialistas em Alta Tecnologia,18099807|19807333 +The International Journal of Health Planning and Management,Wiley Blackwell (John Wiley & Sons),07496753|10991751 +The International Journal of Health Wellness and Society,Common Ground Publishing,21568960|21569053 +The International Journal of Human Resource Management,Informa UK (Taylor & Francis),09585192|14664399 +The International Journal of Human Rights,Informa UK (Taylor & Francis),13642987|1744053X +The International Journal of Humanities Education,Common Ground Publishing,23270063|23272457 +The International Journal of Interdisciplinary Civic and Political Studies,Common Ground Publishing,23270071|23270071 +The International Journal of Interdisciplinary Cultural Studies,Common Ground Publishing,2327008X|23272554 +The International Journal of Interdisciplinary Educational Studies,Common Ground Publishing,2327011X|23272570 +The International Journal of Interdisciplinary Environmental Studies,Common Ground Publishing,23291621|23291559 +The International Journal of Interdisciplinary Global Studies,Common Ground Publishing,2324755X|23247568 +The International Journal of Interdisciplinary Organizational Studies,Common Ground Publishing,23247649|23247657 +The International Journal of Interdisciplinary Social and Community Studies,Common Ground Publishing,23247576|23247584 +The International Journal of Interdisciplinary Social Sciences Annual Review,Common Ground Publishing,18331882| +The International Journal of Interdisciplinary Studies in Communication,Common Ground Publishing,23247320|23247517 +The International Journal of Knowledge Culture and Change Management Annual Review,Common Ground Publishing,14479524|14479575 +The International Journal of Leadership in Public Services,Emerald (MCB UP ),17479886|20428642 +The International Journal of Learner Diversity and Identities,Common Ground Publishing,23270128|23270128 +The International Journal of Learning Annual Review,Common Ground Publishing,14479494|14479540 +The International Journal of Learning in Higher Education,Common Ground Publishing,23277955|23278749 +The International Journal of Life Cycle Assessment,Springer-Verlag,09483349|16147502 +The International Journal of Literacies,Common Ground Publishing,23270136|2327266X +The International Journal of Literary Humanities,Common Ground Publishing,23277912|23278676 +The International Journal of Logistics Management,Emerald (MCB UP ),09574093| +The International Journal of Lower Extremity Wounds,SAGE Publications,15347346|00000000 +The International Journal of Management Education,Elsevier ,14728117| +THE INTERNATIONAL JOURNAL OF MANAGEMENT SCIENCE AND BUSINESS ADMINISTRATION,Inovatus Usluge Ltd.,18495419|18495664 +The International Journal of Marine and Coastal Law,Brill Academic Publishers,09273522|15718085 +The International Journal of Maritime Engineering,Royal Institution of Naval Architects,14798751| +The International journal of Multimedia & Its Applications,Academy and Industry Research Collaboration Center,09755934|09755578 +The International Journal of Multiphysics,Multiphysics,17509548| +The International Journal of Nautical Archaeology,Wiley Blackwell (Blackwell Publishing),10572414|10959270 +The International Journal of Neuropsychopharmacology,Oxford University Press,14611457|14695111 +The International Journal of New Media Technology and the Arts,Common Ground Publishing,23269987|23271787 +The International Journal of Ocean and Climate Systems,SAGE Publications,17593131| +The International Journal of Oral & Maxillofacial Implants,Quintessence Publishing,08822786|19424434 +The International Journal of Oral and Maxillofacial Implants,Editora Napoleao Ltda ME,24476706 +The International Journal of Organizational Analysis,Emerald (MCB UP ),10553185| +The International Journal of Organizational Diversity,Common Ground Publishing,23286261|23286229 +The International Journal of Pedagogy and Curriculum,Common Ground Publishing,23277963|23279133 +The International Journal of Periodontics & Restorative Dentistry,Quintessence Publishing,01987569|19453388 +The International Journal of Person Centered Medicine,University of Buckingham Press,20437730|20437749 +The International Journal of Plant Reproductive Biology,Society of Plant Reproductive Biologists,09754296|22497390 +The International Journal of Press/Politics,SAGE Publications,19401612|10401620 +The International Journal of Prosthodontics,Quintessence Publishing,08932174| +The International Journal of Psychiatry in Medicine,SAGE Publications,00912174|15413527 +The International Journal of Psychoanalysis,Wiley Blackwell (Blackwell Publishing),00207578|17458315 +The International Journal of Regional and Local Studies,Informa UK (Taylor & Francis),17500478| +The International Journal of Religion and Spirituality in Society,Common Ground Publishing,21548633|21548641 +The International Journal of Robotics Research,SAGE Publications,02783649|17413176 +The International Journal of Science and Society,Common Ground Publishing,18366236|18366244 +The International Journal of Science Mathematics and Technology Learning,Common Ground Publishing,23277971|2327915X +The International Journal of Screendance,The Ohio State University Libraries,21546878 +The International Journal of Small Craft Technology,Royal Institution of Naval Architects,17400694| +The International Journal of Social Political and Community Agendas in the Arts,Common Ground Publishing,23269960|23272104 +The International Journal of Social Sciences and Humanities Invention,Research and Analysis Journals,23492031 +The International Journal of Spine Surgery,International Journal of Spine Surgery,22114599|22114599 +The International Journal of Sport and Society Annual Review,Common Ground Publishing,21527857| +The International Journal of Sustainability Education,Common Ground Publishing,23251212|23251220 +The International Journal of Sustainability in Economic Social and Cultural Context,Common Ground Publishing,23251115|2325114X +The International Journal of Sustainability Policy and Practice,Common Ground Publishing,23251166|23251182 +The International Journal of Sustainable Development and World Ecology,Informa UK (Taylor & Francis),13504509|17452627 +The International Journal of Sustainable Lighting,Korea Society of Lighting and Visual Environment,23837594| +The International Journal of Technologies in Learning,Common Ground Publishing,23270144|23272686 +The International Journal of Technology Knowledge and Society Annual Review,Common Ground Publishing,18323669| +The International Journal of the Arts in Society Annual Review,Common Ground Publishing,18331866| +The International Journal of the Book,Common Ground Publishing,14479516| +The International Journal of the Constructed Environment,Common Ground Publishing,21548587|21548595 +The International Journal of the First Year in Higher Education,Queensland University of Technology,18382959 +The International Journal of the History of Sport,Informa UK (Taylor & Francis),09523367|17439035 +The International Journal of the Humanities Annual Review,Common Ground Publishing,14479508|14479559 +The International Journal of the Image,Common Ground Publishing,21548560|21548579 +The International Journal of the Inclusive Museum,Common Ground Publishing,18352014|18352022 +The International Journal of Translation and Interpreting Research,University of Western Sydney SOHACA,18369324 +The International Journal of Tuberculosis and Lung Disease,International Union Against Tuberculosis and Lung Disease,10273719|18157920 +The International Journal of Visual Design,Common Ground Publishing,23251581|2325159X +The International Journal on Media Management,Informa UK (Taylor & Francis),14241277|14241250 +The International Quarterly of Community Health Education,SAGE Publications,0272684X|15413519 +The International Review of Research in Open and Distributed Learning,Athabasca University Press,14923831 +The International Review of Retail Distribution and Consumer Research,Informa UK (Taylor & Francis),09593969|14664402 +The International Spectator,Informa UK (Taylor & Francis),03932729|17519721 +The International Sports Law Journal,Springer-Verlag,15677559|22135154 +The International Technology Management Review,Atlantis Press,22137149|18355269 +The International Tinnitus Journal,GN1 Genesis Network,09465448| +The International Trade Journal,Informa UK (Taylor & Francis),08853908|15210545 +The Internet and Higher Education,Elsevier ,10967516| +The Internet Journal of Academic Physician Assistants,"""Internet Scientific Publishers, LLC""",10924078 +The Internet Journal of Advanced Nursing Practice,"""Internet Scientific Publishers, LLC""",15236064|15236064 +The Internet Journal of Aeromedical Transportation,"""Internet Scientific Publishers, LLC""",21557373|21557373 +The Internet Journal of Aesthetic and Antiaging Medicine,"""Internet Scientific Publishers, LLC""",21560544 +The Internet Journal of Alternative Medicine,"""Internet Scientific Publishers, LLC""",15402584|15402584 +The Internet Journal of Anesthesiology,"""Internet Scientific Publishers, LLC""",1092406X|1092406X +The Internet Journal of Asthma Allergy and Immunology,"""Internet Scientific Publishers, LLC""",15320642 +The Internet Journal of Bioengineering,"""Internet Scientific Publishers, LLC""",19378246 +The Internet Journal of Biological Anthropology,"""Internet Scientific Publishers, LLC""",19394594 +The Internet Journal of Cardiology,"""Internet Scientific Publishers, LLC""",1528834X +The Internet Journal of Cardiovascular Research,"""Internet Scientific Publishers, LLC""",15402592 +The Internet Journal of Chiropractic,"""Internet Scientific Publishers, LLC""",21556717 +The Internet Journal of Dental Science,"""Internet Scientific Publishers, LLC""",19378238|19378238 +The Internet Journal of Dermatology,"""Internet Scientific Publishers, LLC""",15313018 +The Internet Journal of Disaster Medicine,"""Internet Scientific Publishers, LLC""",21560374 +The Internet Journal of Emergency and Intensive Care Medicine,"""Internet Scientific Publishers, LLC""",10924051 +The Internet Journal of Emergency Medicine,"""Internet Scientific Publishers, LLC""",19359551|19359551 +The Internet Journal of Endocrinology,"""Internet Scientific Publishers, LLC""",15402606|15402606 +The Internet Journal of Endovascular Medicine,"""Internet Scientific Publishers, LLC""",1937822X +The Internet Journal of Epidemiology,"""Internet Scientific Publishers, LLC""",15402614|15402614 +The Internet Journal of Family Practice,"""Internet Scientific Publishers, LLC""",15288358 +The Internet Journal of Forensic Science,"""Internet Scientific Publishers, LLC""",15402622 +The Internet Journal of Gastroenterology,"""Internet Scientific Publishers, LLC""",15288323 +The Internet Journal of Genomics and Proteomics,"""Internet Scientific Publishers, LLC""",15402630|15402630 +The Internet Journal of Geriatrics and Gerontology,"""Internet Scientific Publishers, LLC""",19378211 +The Internet Journal of Gynecology and Obstetrics,"""Internet Scientific Publishers, LLC""",15288439|15288439 +The Internet Journal of Hand Surgery,"""Internet Scientific Publishers, LLC""",19378203 +The Internet Journal of Head and Neck Surgery,"""Internet Scientific Publishers, LLC""",1937819X|1937819X +The Internet Journal of Health,"""Internet Scientific Publishers, LLC""",15288315|15288315 +The Internet Journal of Healthcare Administration,"""Internet Scientific Publishers, LLC""",15312933 +The Internet Journal of Hematology,"""Internet Scientific Publishers, LLC""",15402649|15402649 +The Internet Journal of Herbal and Plant Medicine,"""Internet Scientific Publishers, LLC""",21580413 +The Internet Journal of Infectious Diseases,"""Internet Scientific Publishers, LLC""",15288366|15288366 +The Internet Journal of Internal Medicine,"""Internet Scientific Publishers, LLC""",15288382|15288382 +The Internet Journal of Interventional Medicine,"""Internet Scientific Publishers, LLC""",2156549X +The Internet Journal of Laboratory Medicine,"""Internet Scientific Publishers, LLC""",19378181 +The Internet Journal of Laserneedle Medicine,"""Internet Scientific Publishers, LLC""",19378173 +The Internet Journal of Law Healthcare and Ethics,"""Internet Scientific Publishers, LLC""",15288250|15288250 +The Internet Journal of Medical Education,"""Internet Scientific Publishers, LLC""",21556725 +The Internet Journal of Medical Informatics,"""Internet Scientific Publishers, LLC""",19378300 +The Internet Journal of Medical Simulation,"""Internet Scientific Publishers, LLC""",15402657|15402657 +The Internet Journal of Medical Student Research,"""Internet Scientific Publishers, LLC""",23314133| +The Internet Journal of Medical Technology,"""Internet Scientific Publishers, LLC""",15594610 +The Internet Journal of Mental Health,"""Internet Scientific Publishers, LLC""",15312941 +The Internet Journal of Microbiology,"""Internet Scientific Publishers, LLC""",19378289|19378289 +The Internet Journal of Minimally Invasive Spinal Technology,"""Internet Scientific Publishers, LLC""",19378254|19378254 +The Internet Journal of Nanotechnology,"""Internet Scientific Publishers, LLC""",19378262 +The Internet Journal of Nephrology,"""Internet Scientific Publishers, LLC""",15402665 +The Internet Journal of Neurology,"""Internet Scientific Publishers, LLC""",1531295X +The Internet Journal of Neuromonitoring,"""Internet Scientific Publishers, LLC""",1531300X +The Internet Journal of Neurosurgery,"""Internet Scientific Publishers, LLC""",15288285|15288285 +The Internet Journal of Nuclear Medicine,"""Internet Scientific Publishers, LLC""",15394638 +The Internet Journal of Nutrition and Wellness,"""Internet Scientific Publishers, LLC""",19378297|19378297 +The Internet Journal of Occupational Health,"""Internet Scientific Publishers, LLC""",21557330 +The Internet Journal of Oncology,"""Internet Scientific Publishers, LLC""",15288331 +The Internet Journal of Ophthalmology and Visual Science,"""Internet Scientific Publishers, LLC""",15288269|15288269 +The Internet Journal of Orthopedic Surgery,"""Internet Scientific Publishers, LLC""",15312968|15312968 +The Internet Journal of Otorhinolaryngology,"""Internet Scientific Publishers, LLC""",15288420 +The Internet Journal of Pain Symptom Control and Palliative Care,"""Internet Scientific Publishers, LLC""",15288277|15288277 +The Internet Journal of Parasitic Diseases,"""Internet Scientific Publishers, LLC""",15594629 +The Internet Journal of Pathology,"""Internet Scientific Publishers, LLC""",15288307|15288307 +The Internet Journal of Pediatrics and Neonatology,"""Internet Scientific Publishers, LLC""",15288374 +The Internet Journal of Perfusionists,"""Internet Scientific Publishers, LLC""",15313026 +The Internet Journal of Pharmacology,"""Internet Scientific Publishers, LLC""",15312976|15312976 +The Internet Journal of Physiology and Pathophysiology,"""Internet Scientific Publishers, LLC""",21658463| +The Internet Journal of Plastic Surgery,"""Internet Scientific Publishers, LLC""",15288293 +The Internet Journal of Preventive Medicine,"""Internet Scientific Publishers, LLC""",21580405 +The Internet Journal of Psychiatry,"""Internet Scientific Publishers, LLC""",21557349 +The Internet Journal of Public Health,"""Internet Scientific Publishers, LLC""",21556733|21556733 +The Internet Journal of Pulmonary Medicine,"""Internet Scientific Publishers, LLC""",15312984 +The Internet Journal of Radiology,"""Internet Scientific Publishers, LLC""",15288404 +The Internet Journal of Rehabilitation,"""Internet Scientific Publishers, LLC""",21556741 +The Internet Journal of Rescue and Disaster Medicine,"""Internet Scientific Publishers, LLC""",15312992 +The Internet Journal of Rheumatology,"""Internet Scientific Publishers, LLC""",15288412 +The Internet Journal of Rheumatology,"""Internet Scientific Publishers, LLC""",15288412 +The Internet Journal of Sexual Medicine,"""Internet Scientific Publishers, LLC""",21566224 +The Internet Journal of Spine Surgery,"""Internet Scientific Publishers, LLC""",19378270|19378270 +The Internet Journal of Surgery,"""Internet Scientific Publishers, LLC""",15288242|15288242 +The Internet Journal of Third World Medicine,"""Internet Scientific Publishers, LLC""",15394646 +The Internet Journal of Thoracic and Cardiovascular Surgery,"""Internet Scientific Publishers, LLC""",15240274 +The Internet Journal of Toxicology,"""Internet Scientific Publishers, LLC""",15593916 +The Internet Journal of Tropical Medicine,"""Internet Scientific Publishers, LLC""",15402681 +The Internet Journal of Urology,"""Internet Scientific Publishers, LLC""",15288390|15288390 +The Internet Journal of Veterinary Medicine,"""Internet Scientific Publishers, LLC""",19378165 +The Internet Journal of World Health and Societal Politics,"""Internet Scientific Publishers, LLC""",1540269X|1540269X +The Interpreter and Translator Trainer,Informa UK (Taylor & Francis),1750399X|17570417 +The Irish Church Quarterly,JSTOR,20091664| +The Irish Journal of Management,Walter de Gruyter GmbH,1649248X +The Irish Journal of Psychology,Informa UK (Taylor & Francis),03033910|21580812 +The Irish Penny Journal,JSTOR,20090935| +The Irish Review (1986-),JSTOR,07907850| +The Irish Review (Dublin),JSTOR,20090978| +The Islamic Quarterly,Ankara University,211842 +The ISME Journal,Nature Publishing Group,17517362|17517370 +The Italian Journal of Neurological Sciences,Springer-Verlag,03920461|11265442 +The Italian Yearbook of International Law Online,Brill Academic Publishers,03915107|22116133 +The Italianist,Maney Publishing,02614340|00000000 +The J of Korean Alcohol Science,Korean Society of Alcohol Science,15982297| +The Japan Journal of Logopedics and Phoniatrics,The Japan Society of Logopedics and Phoniatrics,00302813|18843646 +The Japanese Accounting Review,Research Institute for Economics and Business Administration - Kobe University,21854785|21854793 +The Japanese Association of The Revegetaion Technology,The Japanese Society of Revegetation Technology,03865223|18843662 +The Japanese Journal for Medical Virtual Reality,Japanese Society for Medical Virtual Reality,13479342|21872201 +The Japanese journal of animal reproduction,Japanese Society of Animal Reproduction,04530551| +The Japanese Journal of Cognitive Psychology,The Japanese Society for Cognitive Psychology,13487264|21850321 +The Japanese Journal of Educational Psychology,The Japanese Association of Educational Psychology,00215015|21863075 +The Japanese Journal of Ergonomics,Japan Ergonomics Society,05494974|18842844 +THE JAPANESE JOURNAL OF EXPERIMENTAL SOCIAL PSYCHOLOGY,Japanese Group Dynamics Association,03877973|13486276 +The Japanese Journal of Gastroenterological Surgery,The Japanese Journal of Gastroenterological Surgery,03869768|13489372 +The Japanese Journal of Genetics,The Genetics Society of Japan,0021504X|18805787 +The Japanese Journal of Health Psychology,Japanese Association of Health Pyschology,09173323|21875529 +The Japanese Journal of Human Genetics,Springer-Verlag,00215074|09168478 +The Japanese Journal of Jaw Deformities,Japanese Society of Jaw Deformities,09167048|18845045 +The Japanese Journal of Nutrition and Dietetics,The Japanese Society of Nutrition and Dietetics,00215147|18837921 +The Japanese Journal of Personality,Japan Society of Personality Psychology,13488406|13496174 +The Japanese Journal of Pharmacology,The Japanese Pharmacological Society,00215198|13473506 +The Japanese Journal of Phlebology,Japanese Society of Phlebology,09157395|21865523 +The Japanese Journal of Physiology,The Physiological Society of Japan,0021521X|18811396 +The Japanese journal of proctology,The Japan Society of Coloproctology,18838669 +The Japanese journal of psychology,The Japanese Psychological Association,00215236|18841082 +The Japanese Journal of Real Estate Sciences,Japan Association for Real Estate Sciences,09113576|21859531 +The Japanese Journal of Rehabilitation Medicine,The Japanese Association of Rehabilitation Medicine,0034351X|1880778X +The Japanese Journal of Rehabilitation Medicine,The Japanese Association of Rehabilitation Medicine,18813526|18818560 +THE JAPANESE JOURNAL OF RESEARCH ON EMOTIONS,Japan Society for Research on Emotions,18828817|18828949 +The Japanese Journal of Rural Economics,The Agricultural Economics Society of Japan,2187946X|21895880 +The Japanese Journal of Ryodoraku Autonomic Nervous System,The Japanese Society of Ryodoraku Medicine,05575729|18849237 +The Japanese Journal of Ryodoraku Medicine,The Japanese Society of Ryodoraku Medicine,09130977|18847595 +The Japanese Journal of Sarcoidosis and Other Granulomatous Disorders,Japan Society of Sarcoidosis and other Granulomatous Disorders,18831273|18846114 +The Japanese Journal of Special Education,The Japanese Association of Special Education,03873374|21865132 +The Japanese Journal of Surgery,Springer-Verlag,00471909| +The Japanese Journal of SURGICAL METABOLISM and NUTRITION,Japanese Society for Surgical Metabolism and Nutrition,03895564|21875154 +The Japanese Journal of Thoracic and Cardiovascular Surgery,Springer-Verlag,13444964|18632092 +The Japanese Journal of Urology,Japanese Urological Association,00215287|18847110 +The Japanese Journal of Veterinary Anesthesiology,Japanese Society of Veterinary Anesthesia and Surgery,02852209|21852987 +The Japanese Journal of Veterinary Dermatology,Japanese Society of Veterinary Dermatology,13476416|18812236 +The Japanese Journal of Veterinary Science,Japanese Society of Veterinary Science,00215295|18811442 +The Japanese Language Association Of Korea,The Japanese Language Association of Korea,12297275| +The Japanese Medical Journal,"""Editorial Committee of Japanese Journal of Infectious Diseases, National Institute of Infectious Diseases""",1884281X +The Japanese Modern Association of Korea,The Japanese Modern Association of Korea,12299456| +The Japanese Modern Association of Korea,The Japanese Modern Association of Korea,12299456| +The Japanese Political Economy,Informa UK (Taylor & Francis),2329194X|23291958 +The JBI Database of Systematic Reviews and Implementation Reports,Joanna Briggs Institute,22024433 +The Jewish Quarterly Review,JSTOR,00216682| +The Jordanian Journal for Library and Information Science,"""Al Manhal FZ, LLC""",23080981| +The Joural of the Korea Entertainment Industry Association,Korea Entertainment Industry Association,19766211| +"""The Journal """"Agriculture and Forestry""""""",Journal Agriculture and Forestry,05545579|18009492 +The Journal for Nurse Practitioners,Elsevier ,15554155| +The Journal for Specialists in Group Work,Informa UK (Taylor & Francis),01933922|15496295 +The Journal for Transdiciplinary Research in Southern Africa,AOSIS,18174434| +The Journal of Abnormal and Social Psychology,American Psychological Association,0096851X| +The Journal of Abnormal Psychology,American Psychological Association,01452339| +The Journal of Abnormal Psychology and Social Psychology,American Psychological Association,01452347| +The Journal of Academic Librarianship,Elsevier ,00991333| +The Journal of Academic Social Science Studies,Journal of Academic Social Science Studies,21472971| +the Journal of Academic Social Sciences,The Journal of Academic Social Sciences,21482489| +The Journal of Adhesion,Informa UK (Taylor & Francis),00218464|15455823 +The Journal of Adult Protection,Emerald (MCB UP ),14668203|20428669 +The Journal of Advanced Navigation Technology,The Korea Navigation Institute,12269026| +The Journal of Advanced Prosthodontics,The Korean Academy of Prosthodontics (KAMJE),20057806|20057814 +The Journal of Advances in Parasitology,Nexus Academic Publishers,23114096 +The Journal of Aesthetic Education,Muse - Johns Hopkins University Press,15437809 +The Journal of Aesthetics & Science of Art,Korean Society of Aesthetics and Science of Art,12290246| +The Journal of Aesthetics and Art Criticism,JSTOR,00218529| +The Journal of African American History,Association for the Study of African American Life and History,15481867|21535086 +The Journal of African History,Cambridge University Press,00218537|14695138 +The Journal of Agricultural Education and Extension,Informa UK (Taylor & Francis),1389224X|17508622 +The Journal of Agricultural Science,Cambridge University Press,00218596|14695146 +The Journal of Agricultural Science,Cambridge University Press,00218596|14695146 +The Journal of Allergy and Clinical Immunology In Practice,Elsevier ,22132198| +The Journal of Alternative and Complementary Medicine,Mary Ann Liebert,10755535|00000000 +The Journal of Alternative Investments,Institutional Investor Journals,15203255|21688435 +The Journal of American Culture,Wiley Blackwell (Blackwell Publishing),15427331|1542734X +The Journal of American History,Oxford University Press,00218723|19452314 +The Journal of Animal Genetics,Japanese Society of Animal Breeding and Genetics,13459961|18843883 +The Journal of Anthropological Society of Nippon,Anthropological Society of Nippon,00035505|1884765X +The Journal of Anthropology of Education,The Korean Society for the Study of Anthropology of Education,12293911| +The Journal of Antibiotics,Nature Publishing Group,00218820|18811469 +The Journal of Applied Behavioral Science,SAGE Publications,00218863|00000000 +The Journal of Applied Management and Entrepreneurship,GSE Research Limited,10771158|23263709 +The Journal of Applied Packaging Research,Wallace Center,23334304 +The Journal of Applied Pharmacology,The Korean Society of Applied Pharmacology,12256110| +The Journal of Applied Poultry Research,Oxford University Press,10566171|15370437 +The Journal of Architecture,Informa UK (Taylor & Francis),13602365|14664410 +The Journal of Art and Culture Studies,East-West Art and Culture Studies Association,22878289| +The Journal of Art Theory & Practice,The Korean Society of Art Theories,17381789| +The Journal of Arthroplasty,Elsevier ,08835403| +The Journal of Arts Management Law and Society,Informa UK (Taylor & Francis),10632921|19307799 +The Journal of Asia-Pacific Studies,Institute of Global Affairs,12258539| +The Journal of Asian Gnathology,The Academy of Clinical Dentistry,18848168 +THE JOURNAL OF ASIAN PHILOSOPHY IN KOREA,The Society for Asian Philosophy in Korea: SPK,15986780| +THE JOURNAL OF ASIAN PHILOSOPHY IN KOREA,The Society for Asian Philosophy in Korea: SPK,15986780| +The Journal of Asian Studies,Cambridge University Press,00219118|17520401 +The Journal of AsiaTEFL,The Journal of Asia TEFL,17383102| +The Journal of Association of Chest Physicians,Medknow Publications,23208775| +The Journal of Atomic and Molecular Sciences,Global Science Press,20751303| +The Journal of Auto-Nomic Nervous System,The Japan Society of Acupuncture and Moxibustion,03870952|21859442 +The Journal of Aviation/Aerospace Education and Research,Embry-Riddle Aeronautical University/Hunt Library,10651136|2329258X +The Journal of Ayn Rand Studies,The Pennsylvania State University Press,15261018|21697132 +The Journal of Basic & Applied Zoology,Elsevier ,20909896| +The Journal of Behavior Analysis of Offender and Victim Treatment and Prevention,American Psychological Association,21558655 +The Journal of Behavioral Health Services & Research,Springer-Verlag,10943412|15563308 +The Journal of Biochemistry Molecular Biology and Biophysics,Informa UK (Taylor & Francis),10258140| +The Journal of Bioethics,Springer-Verlag,02789523| +The Journal of Bioscience and Medicine,The Journal of Bioscience and Medicine,21612625 +The Journal of Blacks in Higher Education,JSTOR,10773711| +The Journal of Bone and Joint Surgery (American),Journal of Bone and Joint Surgery,00219355|15351386 +The Journal of Breast Health,AVES Publishing Co.,13060953|13060953 +The Journal of Business,The University of Chicago Press,00219398|15375374 +The Journal of Business Education,Informa UK (Taylor & Francis),00219444| +The Journal of Campus Behavioral Intervention,"""The NCHERM Group, LLC""",23801107| +The Journal of Campus Title IX Compliance and Best Practices,"""The NCHERM Group, LLC""",24711802| +The Journal of Cancer Research,American Association for Cancer Research,997013 +The Journal of Cardiovascular Nursing,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,08894655| +The Journal of Cell Biology,The Rockefeller University Press,00219525|15408140 +The Journal of Chemical Physics,American Institute of Physics,00219606|10897690 +The Journal of Chemical Thermodynamics,Elsevier ,00219614|10963626 +The Journal of China Studies,Institute of Chinese Study Pusan National University,19755902| +The Journal of China Universities of Posts and Telecommunications,Elsevier ,10058885| +The Journal of Chinese Characters,Center for the Study of Chinese Characters in Korea,20936133| +The Journal of Chinese Cultural Studies,The Society for Chinese Cultural Research,15988503| +The Journal of Chinese Cultural Studies,The Society for Chinese Cultural Research,15988503| +The Journal of Chinese Sociology,Springer (Biomed Central Ltd.),21982635|21982635 +The Journal of Classical Studies,The Korean Association for the Western Ancient History and Culture,12294837| +The Journal of Clinical and Scientific Research,Sri Venkateswara Institute of Medical Sciences,22775706|22778357 +The Journal of Clinical Dentistry,The Academy of Clinical Dentistry,13468111|18848230 +The Journal of Clinical Monitoring,Springer (Kluwer Academic Publishers),07481977| +The Journal of Clinical Pharmacology,Wiley Blackwell (John Wiley & Sons),00912700| +The Journal of Clinical Pharmacology and New Drugs,Wiley Blackwell (John Wiley & Sons),00219754| +The Journal of Clinical Pharmacology and The Journal of New Drugs,Wiley Blackwell (John Wiley & Sons),00959863| +The Journal of Clinical Psychiatry,"""Physicians Postgraduate Press, Inc.""",01606689|15552101 +The Journal of Commonwealth & Comparative Politics,Informa UK (Taylor & Francis),03063631| +The Journal of Commonwealth Literature,SAGE Publications,00219894|00000000 +The Journal of Communist Studies and Transition Politics,Informa UK (Taylor & Francis),13523279|17439116 +The Journal of Community and Supportive Oncology,"""Frontline Medical Communications, Inc.""",23307749|23307757 +The Journal of Comparative Asian Development,Informa UK (Taylor & Francis),15339114|21505403 +The Journal of Comparative Germanic Linguistics,Springer (Kluwer Academic Publishers),13834924|15728552 +The Journal of Comparative Neurology,Wiley Blackwell (John Wiley & Sons),00219967|10969861 +The Journal of Computational Multiphase Flows,SAGE Publications,1757482X| +The Journal of Contemporary Dental Practice,Jaypee Brothers Medical Publishing,15263711|15263711 +The Journal of Contemporary European Studies,The Korean Society of Contemporary European Studies,1226895X| +The Journal of Continuing Education in Nursing,"""SLACK, Inc.""",00220124| +The Journal of Continuing Higher Education,Informa UK (Taylor & Francis),07377363|19484801 +The Journal of Cost Analysis,Informa UK (Taylor & Francis),08823871| +The Journal of Cost Analysis & Management,Informa UK (Taylor & Francis),15411656| +The Journal of Creative Behavior,Wiley Blackwell (John Wiley & Sons),00220175| +The Journal of Criminal Law and Criminology (1973-),JSTOR,00914169| +The Journal of Criminal Law Criminology and Police Science,JSTOR,00220205| +The Journal of Critical Analysis,Philosophy Documentation Center,00220213| +The Journal of Critical Care Medicine,Walter de Gruyter GmbH,23931817 +The Journal of Cultural Policy,Korea Culture and Tourism Institute,17381258| +The Journal of Curriculum Studies,The Korean Society for Curriculum Studies,12293202| +The Journal of Decorative and Propaganda Arts,JSTOR,08887314| +The Journal of Defense Modeling and Simulation Applications Methodology Technology,SAGE Publications,15485129|1557380X +The Journal of Deliberative Mechanisms in Science,Hipatia Press,20143672 +The Journal of Dentists,Savvy Science Publisher,23118695 +The Journal of Derivatives,Institutional Investor Journals,10741240|21688524 +The Journal of Dermatologic Surgery and Oncology,Wiley Blackwell (Blackwell Publishing),01480812| +The Journal of Dermatology,Wiley Blackwell (Blackwell Publishing),03852407|13468138 +The Journal of Developing Areas,Muse - Johns Hopkins University Press,15482278 +The Journal of Development Studies,Informa UK (Taylor & Francis),00220388|17439140 +The Journal of Difference Equations and Applications,Informa UK (Taylor & Francis),10236198|15635120 +The Journal of Early Adolescence,SAGE Publications,02724316|15525449 +The Journal of Ecclesiastical History,Cambridge University Press,00220469|14697637 +The Journal of Economic Asymmetries,Elsevier ,17034949| +The Journal of Economic Education,Informa UK (Taylor & Francis),00220485|21524068 +The Journal of Economic History,Cambridge University Press,00220507|14716372 +The Journal of Economic Inequality,Springer-Verlag,15691721|15738701 +The Journal of Economic Perspectives,American Economic Association,08953309|00000000 +The Journal of Economics Studies and Research,IBIMA Publishing,21659966 +The Journal of Educational Idea,Korean Educational Idea Association,17381851| +The Journal of Educational Principles,The Korean Society for the Study of Educational Principles,15981940 +The Journal of Educational Research,Informa UK (Taylor & Francis),00220671|19400675 +The Journal of Educational Sociology,The Japan Society for Educational Sociology,03873145|21850186 +The journal of Educational Studies,"""Educational Research Institute, College of Education, Ewha Womans University""",12298484| +The Journal of Egyptian Archaeology,JSTOR,03075133| +The Journal of Engineering,Institution of Electrical Engineers,20513305 +The Journal of Engineering and Fundamentals,The Journal of Engineering and Fundamentals,21490325 +The Journal of Engineering Entrepreneurship,St. Louis University,21596948|21596956 +The Journal of Engineering Geology,The Korea Society of Engineering Gelology,12265268| +The Journal of English and Germanic Philology,University of Illinois Press,03636941|1945662X +The Journal of English Cultural Studies,Institute for English Cultural Studies,20055862| +The Journal of English Cultural Studies,Institute for English Cultural Studies,20055862| +The Journal of English Language and Literature,English Language and Literature Association of Korea,10162283| +The Journal of Environment & Development,SAGE Publications,10704965|00000000 +The Journal of Environmental Education,Informa UK (Taylor & Francis),00958964|19401892 +The Journal of Ethics,Springer-Verlag,13824554|15728609 +The Journal of Europe - Middle East Social Science Studies,The Journal of Europe-Middle East Social Sciences Studies,21496439|21496439 +The Journal of Exercise Nutrition and Biochemistry,Korean Society for Exercise Nutrition,22336834|22336842 +The Journal of Experimental Education,Informa UK (Taylor & Francis),00220973|19400683 +The Journal of Experimental Zoology,Wiley Blackwell (John Wiley & Sons),0022104X|1097010X +The Journal of Fandom Studies,Intellect,20466692|20466706 +The Journal of Finance,Wiley Blackwell (Blackwell Publishing),00221082|15406261 +The Journal of Finance and Data Science,Elsevier ,24059188| +The Journal of Financial Research,Wiley Blackwell (Blackwell Publishing),02702592|14756803 +The Journal of Fisheries Business Administration,The Korean Society of Fisheries Business Administration,12251011|22881727 +The Journal of Fixed Income,Institutional Investor Journals,10598596|21688648 +The Journal of Foot & Ankle Surgery,Elsevier - WB Saunders,10672516| +The Journal of Foraminiferal Research,GeoScienceWorld,00961191| +The Journal of Foreign Studies,Foreign Studies Institute,22884599| +The Journal of Garden History,Informa UK (Taylor & Francis),01445170| +The Journal of Gemmology,GEM-A,00221252| +The Journal of Gene Medicine,Wiley Blackwell (John Wiley & Sons),1099498X|15212254 +The Journal of General and Applied Microbiology,The Microbiology Research Foundation,00221260|13498037 +The Journal of General Education,The Pennsylvania State University Press,00213667|15272060 +The Journal of General Physiology,The Rockefeller University Press,00221295|15407748 +The Journal of General Psychology,Informa UK (Taylor & Francis),00221309|19400888 +The Journal of Genes Microbes and Immunity,ISPACS GmbH,2197635X +The Journal of Genetic Psychology,Informa UK (Taylor & Francis),00221325|19400896 +The Journal of Geology,The University of Chicago Press,00221376|15375269 +The Journal of Geometric Mechanics,American Institute of Mathematical Sciences,19414889| +The Journal of Gojiseon & Dangun Studies,Gojoseon and Dangun Studies Association,1229893X| +The Journal of Haemophilia Practice,Haemnet,20553390 +The Journal Of Hand Surgery,Elsevier ,03635023| +The Journal of Hand Surgery (Asian-Pacific Volume),World Scientific ,24248355|24248363 +The Journal of Hand Surgery British & European Volume,SAGE Publications,02667681| +The Journal of Headache and Pain,Springer-Verlag,11292369|11292377 +The Journal of Health and Physical Education,Informa UK (Taylor & Francis),23267240 +The Journal of Heart and Lung Transplantation,Elsevier ,10532498| +The Journal of Hellenic Studies,Cambridge University Press,00754269|20414099 +The Journal of High Technology Management Research,Elsevier ,10478310| +The Journal of Higher Education,Muse - Johns Hopkins University Press,00221546|15384640 +The Journal of Hindu Studies,Oxford University Press,17564255|17564263 +The Journal of Horticultural Science and Biotechnology,Informa UK (Taylor & Francis),14620316|23804084 +The Journal of Hospitality Financial Management,Informa UK (Taylor & Francis),10913211|21522790 +The Journal of Human Justice,Springer-Verlag,08472971| +The Journal of Human Resources,University of Wisconsin Press,0022166X|15488004 +The Journal of Humanistic Counseling,Wiley Blackwell (John Wiley & Sons),21590311| +The Journal of Humanistic Counseling Education and Development,Wiley Blackwell (John Wiley & Sons),19310293| +The Journal of Humanistic Education and Development,Wiley Blackwell (John Wiley & Sons),07356846| +The Journal of Immunology,The American Association of Immunologists,00221767|15506606 +The Journal of Imperial & Commonwealth History,Informa UK (Taylor & Francis),03086534|17439329 +The Journal of Index Investing,Institutional Investor Journals,21547238|2374135X +The Journal of Indian Orthodontic Society,Medknow Publications,03015742|09749098 +The Journal of Indian Prosthodontic Society,Medknow Publications,09724052|19984057 +The Journal of Individual Psychology,Muse - Johns Hopkins University Press,23320583 +The Journal of Infection in Developing Countries,Journal of Infection in Developing Countries,19722680|19722680 +The Journal of Infectious Diseases,Oxford University Press,00221899|15376613 +The Journal of Information and Systems in Education,Japanese Society for Information and Systems in Education,1348236X|21863679 +The Journal of Information Systems,The Korean Association of Information Systems,12298476| +The Journal of Insurance,JSTOR,10473483| +The Journal of Interdisciplinary History,MIT Press,00221953|15309169 +The Journal of International Advanced Otology,AVES Publishing Co.,13087649|21483817 +The Journal of International Educational Sciences,The Journal of International Education Sciences,21490848| +The Journal of International Relations,The East Asian Association of International Studies,20920075| +The Journal of International Relations,JSTOR,01488937| +The Journal of International Trade & Commerce,Korea International Trade Research Institute,17388112| +The Journal of Internationalization and Localization,John Benjamins Publishing Company,20326904|20326912 +The Journal of Internet Banking and Commerce,OMICS Publishing Group,12045357 +The Journal of Investing,Institutional Investor Journals,10680896|21688613 +The Journal of Island and Coastal Archaeology,Informa UK (Taylor & Francis),15564894|15561828 +THE JOURNAL OF ISLAND STUDIES,The Japan Society of Island Studies,18847013|18847838 +The Journal of Israeli History,Informa UK (Taylor & Francis),13531042|17440548 +The Journal of Japan Gnathology,The Academy of Clinical Dentistry,18848184 +The Journal of Japan Institute for Interconnecting and Packaging Electronic Circuits,Japan Institute of Electronics Packaging,13410571|18841201 +The Journal of Japan Institute of Navigation,Japan Institute of Navigation,03887405|21873275 +THE JOURNAL OF JAPAN SOCIETY FOR CLINICAL ANESTHESIA,Japan Society for Clinical Anesthesia,02854945|13499149 +The Journal of Japanese College of Angiology,Japan College of Angiology,03871126|18808840 +The Journal of Japanese Society of Limb Salvage and Podiatric Medicine,Japanee Society of Limb Salvage and Podiatric Medicine,1883857X|21871957 +The Journal of Japanese Society of Lumbar Spine Disorders,The Japanese Society of Lumbar Spine Disorders,13459074|18821863 +The Journal of Japanese Society of Stomatognathic Function,Japanese Society of Stomatognathic Function,13409085|1883986X +The Journal of Japanese Studies,Muse - Johns Hopkins University Press,15494721 +The Journal of Japanese Studies,Institute of Japanese Studies Dankook University,1598737X|24658448 +The Journal of Kansai Medical University,The Medical Society of Kansai Medical University,00228400|21853851 +The Journal of Kartal Training and Research Hospital,"""LookUs Bilisim, Ltd.""",1302485X| +The Journal of King Mongkut s University of Technology North Bangkok,King Mongkut's University of Technology North Bangkok,0857684X| +The Journal of Korea Assosiation for Disability and Oral Health,Korean Association for Disability and Health,17388813| +The Journal of Korea Institute of Information Electronics and Communication Technology,The Korean Institute of Information & Electronic Communication Technology,2005081X| +The Journal of Korea Real Estate Analysists Association,Korea Real Estate Analysts Association,12294403| +The Journal of Korea Robotics Society,The Korea Robotics Society,19756291|22873961 +The Journal of Korean Academic Society of Nursing Education,The Korean Academic Society of Nursing Education,12259578| +The Journal of Korean Academy of Conservative Dentistry,The Korean Academy of Conservative Dentistry,12250864|20938179 +The Journal of Korean Academy of Prosthodontics,The Korean Academy of Prosthodontics (KAMJE),03012875|20053789 +The Journal of Korean Association for Particle and Aerosol Research,Korean Association for Particle and Aerosol Research,17388716|22878130 +The Journal Of Korean Association of Maxillofacial Plastic and Reconstructive Surgeons,Korean Association of Maxillofacial Plastic and Reconstructive Surgeons,12254207| +The Journal of Korean Classics,Institute for the Translation of Korean Classics,17384648| +The Journal of Korean Dance,The Society of Korean Dances Studies,19758502| +The Journal of Korean Diabetes Association,Korean Diabetes Association (KAMJE),10156461| +The Journal of Korean drama and theatre,The Learned Society of Korean Drama and Theatre,12257729| +The Journal of Korean Institute of Communications and Information Sciences,Korea Information and Communications Society,12264717| +The Journal of Korean Institute of Educational Facilities,Korean Institute of Educational Facilities,12277258| +The Journal of Korean Institute of Educational Facilities,Korean Institute of Educational Facilities,12277258| +The Journal of Korean Institute of Electromagnetic Engineering and Science,Korean Institute of Electromagnetic Engineering and Science,12263133| +The Journal of Korean Institute of Information Technology,Korean Institute of Information Technology,15988619| +The Journal of Korean Knee Society,The Korean Knee Society (KAMJE),12251623| +The Journal of Korean Language and Literature Education,The Society of Korean Language and Literature Education,12253014| +The Journal of Korean Medical History,Korean Society of Medical History,12296147| +The Journal of Korean Medicine Ophthalmology and Otolaryngology and Dermatology,The Korean Oriental Medical Opthalmology and Otolaryngology and Dermatology Society,17386640| +The Journal of Korean Nietzsche-Society,Koreanische Nietzsche Gesellschaft,15989364| +The Journal of Korean Oriental Pediatrics,The Association of Korean Oriental Pediatrics,12268038| +The Journal of Korean Physical Therapy,The Korean Society of Physical Therapy,12290475|2287156X +The Journal of Korean Society of Community Based Occupational Therapy,Korean Society of Community-Based Occupational Therapy Association,22340866| +The Journal of Korean Society of Menopause,The Korean Society of Menopause (KAMJE),12268704| +The Journal of Korean Society of Occupational Therapy,Korean Society of Occupational Therapy,12260134|22887164 +The Journal of Land & Public Utility Economics,JSTOR,15489000| +The Journal of Language & Literature,The Society of Chung-Ang Language and Literature,12296406| +The Journal of Laryngology & Otology,Cambridge University Press,00222151|17485460 +The Journal of Laryngology and Rhinology,Cambridge University Press,17551455| +The Journal of Laryngology Rhinology and Otology,Cambridge University Press,17551463| +The Journal of Latin American and Caribbean Anthropology,Wiley Blackwell (Blackwell Publishing),19354932|19354940 +The Journal of Latin American Studies,Institute of Latin American Studies,12297046| +The Journal of Law and Economics,The University of Chicago Press,00222186|15375285 +The Journal of Law Medicine & Ethics,Wiley Blackwell (Blackwell Publishing),10731105|1748720X +The Journal of Law of Education,The Korea Society for Educational Law,1226301X| +The Journal of Legal Analysis,Oxford University Press,19465319|19465319 +The Journal of Legal History,Informa UK (Taylor & Francis),01440365|17440564 +The Journal of Legal Pluralism and Unofficial Law,Informa UK (Taylor & Francis),07329113|23059931 +The Journal of Legal Studies,The University of Chicago Press,00472530|15375366 +The Journal of Leukocyte Biology,Society for Leukocyte Biology,19383673 +The Journal of Lipid Research,"""American Society for Biochemistry and Molecular Biology, Journal of Lipid Research""",00222275|15397262 +The Journal of Literature and Science,Journal of Literature and Science,1754646X|1754646X +The Journal of Localitology,Korean Studies Institute,20059221| +The Journal of Logic and Algebraic Programming,Elsevier ,15678326| +The Journal of Logic Programming,Elsevier ,07431066| +The Journal of Management Development,Emerald (MCB UP ),02621711|00000000 +The Journal of Marketing Theory and Practice,Informa UK (Taylor & Francis),10696679|19447175 +The Journal of Maternal-Fetal & Neonatal Medicine,Informa UK (Taylor & Francis),14767058|14764954 +The Journal of Maternal-Fetal Medicine,Wiley Blackwell (John Wiley & Sons),10570802|15206661 +The Journal of Mathematical Behavior,Elsevier ,07323123| +The Journal of Mathematical Neuroscience,Springer (Biomed Central Ltd.),21908567|21908567 +The Journal of Media Innovations,University of Oslo Library,18945562 +The Journal of Medical Humanities and Bioethics,Springer-Verlag,08826498| +The Journal of Medical Investigation,University of Tokushima Faculty of Medicine ,13431420|13496867 +The Journal of Medical Sciences,Jaypee Brothers Medical Publishing,2321354X| +The Journal of Medieval Latin,"""Brepols Publishers, NV""",07789750| +The Journal of Medieval Latin,"""Brepols Publishers, NV""",07789750| +The Journal of Medieval Religious Cultures,The Pennsylvania State University Press,19476566|21539650 +The Journal of Membrane Biology,Springer-Verlag,00222631|14321424 +The Journal of Men s Health & Gender,Mary Ann Liebert,15718913| +The Journal of Men s Studies,SAGE Publications,10608265|19330251 +The Journal of Mental Health Administration,Springer-Verlag,00928623| +The Journal of Mental Health Policy and Economics,Wiley Blackwell (John Wiley & Sons),10914358|1099176X +The Journal of Mental Health Training Education and Practice,Emerald (MCB UP ),17556228|20428707 +The Journal of Mental Subnormality,Maney Publishing,00222666| +The Journal of Microbiology,Springer-Verlag,12258873|19763794 +The Journal of Migration & Society,Sookmyung Institute of Multiculturalism Studies,20052553| +The Journal of Military History,Muse - Johns Hopkins University Press,08993718|15437795 +The Journal of Modern African Studies,Cambridge University Press,0022278X|14697777 +The Journal of Modern British and American Language and Literature,The Association of Modern British and American Language and Literature,12293814| +The Journal of Modern Craft,Informa UK (Taylor & Francis),17496772|17496780 +The Journal of Modern History,The University of Chicago Press,00222801|15375358 +The Journal of Modern Periodical Studies,The Pennsylvania State University Press,19476574|21529272 +The Journal of Moral Education,The Korean Society for the Study of Moral Education,1229375X| +The Journal of Muamalat and Islamic Finance Research,"""Al Manhal FZ, LLC""",1823075X| +The Journal of Mycology,JSTOR,10520368| +The Journal of National Accreditation Board for Hospitals & Healthcare Providers,Medknow Publications,23486139| +The Journal of Negro Education,Journal of Negro Education,00222984|21676437 +The Journal of Negro History,JSTOR,00222992| +The Journal of Nervous and Mental Disease,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,00223018| +The Journal of Neurobehavioral Sciences,ScopeMed International Medical Journal Managment and Indexing System,21484325 +The Journal of Neurological and Neurosurgical Nursing,University of Humanities and Economics in Wloclawek,20848021|22990321 +The Journal of New Drugs,Wiley Blackwell (John Wiley & Sons),00960284| +The Journal of Nietzsche Studies,The Pennsylvania State University Press,09688005|15384594 +The Journal of Nihon University School of Dentistry,Nihon University School of Dentistry,00290432|18842984 +The Journal of North African Studies,Informa UK (Taylor & Francis),13629387|17439345 +The Journal of Northeast Asia Research,The Institute for Northeast Asia Research,20054432| +The journal of nutrition health & aging,Springer-Verlag,12797707|17604788 +The Journal of Nutritional Biochemistry,Elsevier ,09552863| +The Journal of Object Technology,AITO - Association Internationale pour les Technologies Objets,16601769 +The Journal of Obstetrics and Gynecology of India,Springer-Verlag,09719202|09756434 +The Journal of OncoPathology,Optimal Clinical Ltd.,20525931| +The Journal of Organic Chemistry,American Chemical Society,00223263|15206904 +The Journal of Oriental Obstetrics and Gynecology,The Society of Korean Medicine Obstetrics and Gynecology,12294292| +The Journal of Otolaryngology,"""Decker, Inc.""",3816605 +The Journal of Pacific History,Informa UK (Taylor & Francis),00223344|14699605 +The Journal of Pathology,Wiley Blackwell (John Wiley & Sons),00223417|10969896 +The Journal of Pathology and Bacteriology,Wiley Blackwell (John Wiley & Sons),03683494|15552039 +The Journal of Pathology Clinical Research,Wiley Blackwell (John Wiley & Sons),20564538| +The Journal of Peace Studies,The Korean Association of Peace Studies,17382580| +The Journal of Peasant Studies,Informa UK (Taylor & Francis),03066150|17439361 +The Journal of Pediatric Pharmacology and Therapeutics,Pediatric Pharmacy Advocay Group,15516776| +The Journal of Pediatric Research,Galenos Yayinevi,21479445| +The Journal of Pediatrics,Elsevier ,00223476| +The Journal of Perinatal & Neonatal Nursing,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,08932190| +The Journal of Perinatal & Neonatal Nursing,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,08932190| +The Journal of Perinatal Education,Springer Publishing Company,10581243| +The Journal of Philosophy,Philosophy Documentation Center,0022362X| +The Journal of Philosophy Psychology and Scientific Methods,JSTOR,01609335| +The Journal of Philosophy Science & Law,Philosophy Documentation Center,15498549| +The Journal of Physical Chemistry,American Chemical Society,00223654|15415740 +The Journal of Physical Chemistry A,American Chemical Society,10895639|15205215 +The Journal of Physical Chemistry B,American Chemical Society,15206106|15205207 +The Journal of Physical Chemistry C,American Chemical Society,19327447|19327455 +The Journal of Physical Chemistry Letters,American Chemical Society,19487185|19487185 +The Journal of Physical Fitness and Sports Medicine,The Japanese Society of Physical Fitness and Sports Medicine,21868131|21868123 +The Journal of Physician Assistant Education,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,19419430| +The Journal of Physiological Sciences,Springer-Verlag,18806546|18806562 +The Journal of Physiology,Wiley Blackwell (Blackwell Publishing),00223751|14697793 +The Journal of Policy Reform,Informa UK (Taylor & Francis),13841289|14772736 +The Journal of Politics,The University of Chicago Press,00223816|14682508 +The Journal of Popular Culture,Wiley Blackwell (Blackwell Publishing),00220384|15405931 +The Journal of Popular Culture,Wiley Blackwell (Blackwell Publishing),00223840| +The Journal of Popular Television,Intellect,20469861|2046987X +The Journal of Portfolio Management,Institutional Investor Journals,00954918|21688656 +The Journal of Positive Psychology,Informa UK (Taylor & Francis),17439760|17439779 +The Journal of Poultry Science,Japan Poultry Science Association,13467395|13490486 +The Journal of Practice Teaching and Learning,Whiting & Birch Ltd,17595150| +The Journal of Practice Teaching in Health and Social Work,Whiting & Birch Ltd,14606690|17466113 +The Journal of Pre-College Philosophy,Philosophy Documentation Center,01629662| +The Journal of Prevention,Springer-Verlag,0613514X| +The Journal of Primary Prevention,Springer-Verlag,0278095X|15736547 +The Journal of Private Equity,Institutional Investor Journals,10965572|21688508 +The Journal of Problem Solving,Purdue University (bepress),19326246 +The Journal of Problem Solving,Purdue University (bepress),19326246 +The Journal of Protozoology,Wiley Blackwell (Blackwell Publishing),00223921| +The Journal of Psychiatry & Law,SAGE Publications,00931853|21631794 +The Journal of Psychodrama Sociometry and Group Psychotherapy,American Society of Group Psychotherapy and Pyschodrama - ASGPP,07311273| +The Journal of Psychology,Informa UK (Taylor & Francis),00223980|19401019 +The Journal of Psychology and Financial Markets,Informa UK (Taylor & Francis),15208834|15327760 +The Journal of Race Development,JSTOR,10683380| +The Journal of Race Ethnicity and Politics,Cambridge University Press,20566085 +The Journal of Real Estate Finance and Economics,Springer-Verlag,08955638|1573045X +The Journal of Rehabilitation Research and Development,Journal of Rehabilitation Research & Development,07487711|19381352 +The Journal of Religion,The University of Chicago Press,00224189|15496538 +The Journal of Retirement,Institutional Investor Journals,23266899|23266902 +The Journal of Rheumatology,The Journal of Rheumatology,0315162X|14992752 +The Journal of Risk Finance,Emerald (MCB UP ),15265943| +The Journal of Roman Studies,Cambridge University Press,00754358|1753528X +The Journal of Romance Studies,Berghahn Books,14733536|17522331 +The Journal of Rotterdam Islamic and Social Sciences,De Gruyter Open Sp. z o.o. ,18776671 +The Journal of Rural Health,Wiley Blackwell (Blackwell Publishing),0890765X|17480361 +The Journal of School Nursing,SAGE Publications,10598405|15468364 +The Journal of Secondary Gifted Education,"""Sage Publications (Prufrock Press, Inc.)""",10774610| +The Journal of Seoul studies,University of Seoul Institute of Seoul Studies,1225746X| +The Journal of Sex Research,Informa UK (Taylor & Francis),00224499|15598519 +The Journal of Slavic Military Studies,Informa UK (Taylor & Francis),13518046|15563006 +The Journal of Smoking Cessation,Cambridge University Press,18342612|18342612 +The Journal of Social Psychology,Informa UK (Taylor & Francis),00224545|19401183 +The Journal of Social Sciences,The Journal of Social Sciences,21490821| +THE JOURNAL OF SOCIAL SCIENCES,Research Institute for Social Science Keimyung University,15986489| +The Journal of Social Studies Research,Elsevier ,0885985X| +The Journal of Social Welfare & Family Law,Informa UK (Taylor & Francis),01418033|14699621 +The Journal of Society for e-Business Studies,Society fo e-Business Studies,12263931| +The Journal of Socio-Economics,Elsevier ,10535357| +The Journal of Solid Waste Technology and Management,Journal of Solid Waste Technology and Management,10881697| +The Journal of South Asian Federation of Menopause Societies,Jaypee Brothers Medical Publishing,2319846X|23199830 +The Journal of Southern History,JSTOR,00224642| +The Journal of Soviet Military Studies,Informa UK (Taylor & Francis),0954254X| +The Journal of Special Children Education,The Korean Association for Children with Special Needs,12298301| +The Journal of Special Education,SAGE Publications,00224669|15384764 +The Journal of Speculative Philosophy,The Pennsylvania State University Press,0891625X|15279383 +The Journal of Speech and Language Pathology – Applied Behavior Analysis,American Psychological Association,19324731 +The Journal of Spinal Surgery,Jaypee Brothers Medical Publishing,09752625|23486031 +The Journal of Sports and Entertainment Law,Korean Association of Sports and Entertainment Law,1598527X| +The Journal of Steroid Biochemistry and Molecular Biology,Elsevier ,09600760| +The Journal of Strain Analysis for Engineering Design,SAGE Publications,03093247|20413130 +The Journal of Strategic Information Systems,Elsevier ,09638687| +The Journal of Strength and Conditioning Research,Ovid Technologies (Wolters Kluwer) - National Strength & Conditioning,10648011|15334287 +The Journal of Structured Finance,Institutional Investor Journals,10823220|23741325 +The Journal of Studies in Language,The Modern Linguistic Society of Korea,12254770| +The Journal of Studies in Language,The Modern Linguistic Society of Korea,12254770| +The Journal of Study on Language and Culture of Korea and China,Korean Society of Study on Chinese Language and Culture,17380502| +The Journal of Supercomputing,Springer-Verlag,09208542|15730484 +The Journal of Supercritical Fluids,Elsevier ,08968446| +The Journal of Supportive Oncology,"""Frontline Medical Communications, Inc.""",15446794| +The Journal of Surgery,Elsevier ,17416280| +The journal of Sustainable Design and Educational Environment Research,Korean Institute of Educational Environment,15983765| +The Journal of Sustainable Mobility,GSE Research Limited,20532350| +The Journal of Sustainable Product Design,Springer-Verlag,13676679|15731588 +The Journal of Technology Transfer,Springer-Verlag,08929912|15737047 +The Journal of Tepecik Education and Research Hospital,Logos Medical Publication,13057073| +The Journal Of Test & Deposits,CrossRef test user,01988220|01988220 +The Journal of the Academy of Management,The Academy of Management,15353990| +The Journal of the Acoustical Society of America,Acoustical Society of America ,00014966| +THE JOURNAL OF THE ACOUSTICAL SOCIETY OF JAPAN (E),Acoustical Society of Japan,03882861|21853509 +The Journal of the Acoustical Society of Korea,The Acoustical Society of Korea,12254428|22873775 +The Journal of the American Association of Gynecologic Laparoscopists,Elsevier ,10743804| +The Journal of the American Board of Family Medicine,American Board of Family Medicine,15572625|15587118 +The Journal of the American College of Certified Wound Specialists,Elsevier ,18764983| +The Journal of the American Dental Association,Elsevier ,00028177| +The Journal of the American Dental Association (1922),American Dental Association,10486364| +The Journal of the American Dental Association and The Dental Cosmos,American Dental Association,03758451| +The Journal of the American Military History Foundation,JSTOR,15208621| +The Journal of the American Military Institute,JSTOR,15208613| +The Journal of the American Osteopathic Association,American Osteopathic Association,00986151|19451997 +The Journal of the American Pharmaceutical Association (1912),Elsevier ,0898140X| +The Journal of the American Society of Architectural Historians,JSTOR,15449890| +The Journal of the Anthropological Institute of Great Britain and Ireland,JSTOR,09595295| +The journal of the Anthropological Society of Tokyo,Anthropological Society of Nippon,18847641 +The Journal of The Asian federation of Obstetrics and Gynaecology,Wiley Blackwell (Blackwell Publishing),03770532| +The Journal of the Association of Teachers of Japanese,JSTOR,08859884| +The Journal of the Astronautical Sciences,Springer-Verlag,00219142|21950571 +The Journal of the Australian Mathematical Society Series B Applied Mathematics,Cambridge University Press,03342700| +The Journal of the British Association of Psychotherapists,Wiley Blackwell (John Wiley & Sons),09540350|15569160 +The Journal of the British Menopause Society,The Royal Society of Medicine,13621807|17404568 +The Journal of the Civil War Era,Muse - Johns Hopkins University Press,21599807 +The journal of the convergence on culture technology,The International Promotion Agency of Culture Technology,23840358| +The Journal of the Economics of Ageing,Elsevier ,2212828X| +The Journal of the Ethnological Society of London (1869-1870),JSTOR,13680374| +The Journal of the Faculty of Economics and Political Science,"""Al Manhal FZ, LLC""",23569166| +The Journal of the Geological Society of Japan,The Geological Society of Japan,00167630|13499963 +The Journal of the Gilded Age and Progressive Era,Cambridge University Press,15377814|19433557 +The Journal of the Gilded Age and Progressive Era,Cambridge University Press,15377814|19433557 +The Journal of the Herpetological Association of Africa,Informa UK (Taylor & Francis),04416651|21593957 +The Journal of the History of Childhood and Youth,Muse - Johns Hopkins University Press,19413599 +The Journal of the Humanities for Unification,The Institute of Humanities Research In Konkuk University,22889841| +The Journal of the Institute of Electrical Engineers of Japan,Institute Electrical Engineers Japan,13405551|18814190 +The Journal of The Institute of Image Information and Television Engineers,The Institute of Image Information and Television Engineers,13426907|18816908 +The Journal of The Institute of Internet Broadcasting and Communication,"""The Institute of Webcasting, Internet and Telecommunication""",22890238|22890246 +The Journal of the Institute of Television Engineers of Japan,The Institute of Image Information and Television Engineers,03866831|18849644 +The Journal of the Iowa Academy of Science,Iowa Academy of Science,08968381| +The Journal of the Japan Society of Aeronautical Engineering,Japan Society for Aeronautical and Space Sciences,18835422 +The Journal of the Japanese Association for Chest Surgery,Japanese Association for Chest Surgery,09190945|18814158 +THE JOURNAL OF THE JAPANESE ASSOCIATION OF GROUNDWATER HYDROLOGY,Japanese Association of Groundwater Hyrdology,00290602|21865515 +THE JOURNAL OF THE JAPANESE ASSOCIATION OF GROUNDWATER HYDROLOGY,Japanese Association of Groundwater Hyrdology,00290602|21865515 +The Journal of the Japanese Association of Mineralogists Petrologists and Economic Geologists,Japan Association of Mineralogical Sciences,00214825|18830765 +The Journal of the Japanese Landscape Architectural Society,Japanese Institute of Landscape Architecture,21853045 +The journal of the Japanese Practical Surgeon Society,Japan Surgical Association,03869776| +The Journal of the Japanese Society of Clinical Cytology,The Japanese Society of Clinical Cytology,03871193|18827233 +The journal of the Japanese Society of Lymphoreticular Tissue research,Japanese Society for Lymphoreticular Tissue Research,13429248|1883681X +The Journal of the Korea Contents Association,The Korea Contents Association,15984877| +The Journal of the Korea institute of electronic communication sciences,The Korean Institute of Electronic Communication Sciences,19758170| +The Journal of The Korea Institute of Intelligent Transport Systems,The Korea Institute of Intelligent Transport Systems,17380774| +THE JOURNAL OF THE KOREAN ACADEMY OF PEDTATRIC DENTISTRY,Korean Academy of Pediatric Dentistry,12268496|22883819 +The Journal of the Korean Academy of Periodontology,Korean Academy of Periodontology (KAMJE),02503352|20930747 +The Journal of The Korean Association of Geographic and Environmental Education,The Journal of the Korean Association of Geographic and Environmental Education,1226511X| +The Journal of the Korean Bone and Joint Tumor Society,Korean Bone and Joint Tumor Society (KAMJE),12264962|22339841 +The Journal of the Korean Hip Society,The Korean Hip Society (KAMJE),12269409| +The Journal of the Korean Institute of Information and Communication Engineering,The Korean Institute of Information and Communication Sciences,22344772| +The Journal of the Korean Orthopaedic Association,The Korean Orthopaedic Association (KAMJE),12262102|20058918 +The Journal of the Korean Rheumatism Association,The Korean Rheumatism Association (KAMJE),12268070| +The Journal of the Korean Society for Therapeutic Radiology and Oncology,Korean Society for Therapeutic Radiology and Oncology (KAMJE),12298719| +The Journal of the Korean Society for Transplantation,The Korean Society for Transplantation (KAMJE),15981711| +The Journal of the Kyushu Dental Society,The Kyushu Dental Society,03686833|18808719 +The Journal of the Marine Acoustics Society of Japan,Marine Acoustics Society of Japan,09165835|18816819 +The Journal of the Middle East and Africa,Informa UK (Taylor & Francis),21520844|21520852 +The Journal of the Midwest Modern Language Association,JSTOR,07425562| +The Journal of the National Dental Association,American Dental Association,00971901| +The Journal of the Petrological Society of Korea,Petrological Society of Korea,12262471| +The Journal of the Quekett Microscopical Club,Smithsonian Institution Biodiversity Heritage Library,03683915| +The journal of the research of chinese novels,The Society for the Research of Chinese Novels,12259624| +The Journal of the Royal Anthropological Institute of Great Britain and Ireland,JSTOR,03073114| +The Journal of the Royal College of Physicians of Edinburgh,Royal College of Physicians of Edinburgh,14782715|14782715 +The Journal of the Royal Society for the Promotion of Health,SAGE Publications,14664240| +The Journal of the Rutgers University Libraries,Rutgers University Libraries,360473 +The Journal of the Society for Art and Science,Society for Art and Science,13472267 +The Journal of the Society of Chemical Industry Japan,The Chemical Society of Japan,00232734|21850860 +The Journal of the Society of Cinematologists,JSTOR,15500349| +THE JOURNAL OF THE SOCIETY OF FORESTRY,The Japanese Forest Society,21858187 +The Journal of the Southern Appalachian Botanical Club,JSTOR,19368909| +THE JOURNAL OF THE STOMATOLOGICAL SOCIETY JAPAN,"""The Stomatological Society, Japan""",03009149|18845185 +The Journal of the Torrey Botanical Society,BioOne (Torrey Botanical Society),10955674|19400616 +The Journal of the World Universities Forum,Common Ground Publishing,18352030| +The Journal of Theological Studies,Oxford University Press,00225185|14774607 +The Journal of Toxicological Sciences,Japanese Society of Toxicology,03881350|18803989 +The Journal of Trace Elements in Experimental Medicine,Wiley Blackwell (John Wiley & Sons),0896548X|1520670X +The Journal of Trading,Institutional Investor Journals,15593967|21688427 +The Journal of Translation Studies,The Korean Association of Translation Studies,1229795X| +The Journal of Transport History,SAGE Publications,00225266|17593999 +The Journal of Turk-Islam World Social Studies,The Journal of Turk-Islam World Social Studies,2149083X| +The Journal of Urology,Elsevier ,00225347| +The Journal of Value Inquiry,Springer-Verlag,00225363|15730492 +The Journal of Vascular Access,"""Wichtig Publishing, SRL""",11297298| +The Journal of Visualization and Computer Animation,Wiley Blackwell (John Wiley & Sons),10498907|10991778 +THE JOURNAL OF VITAMINOLOGY,The Vitamin Society of Japan,00225398| +The Journal of VLSI Signal Processing Systems for Signal Image and Video Technology,Springer-Verlag,09225773|1573109X +The Journal of Wealth Management,Institutional Investor Journals,15204154|23741368 +The Journal of Web Science,Now Publishers,23324031 +The Journal of Western History,Journal of Western History,17387027| +The Journal of Wildlife Management,Wiley Blackwell (John Wiley & Sons),0022541X| +The Journal of World Energy Law & Business,Oxford University Press,17549957|17549965 +The Journal of World Intellectual Property,Wiley Blackwell (Blackwell Publishing),14222213|17471796 +The Journal of World Investment & Trade,Brill Academic Publishers,16607112|22119000 +The Journal of Zoo Animal Medicine,JSTOR,00934526| +The Journal-Newsletter of the Association of Teachers of Japanese,JSTOR,00045810| +The Journals of Gerontology Series A Biological Sciences and Medical Sciences,Oxford University Press,10795006|1758535X +The Journals of Gerontology Series B Psychological Sciences and Social Sciences,Oxford University Press,10795014|17585368 +The Jungang Journal of English Language and Literature,The Jungang English Language and Literature Association of Korea,15983293| +The Jurist Studies in Church Law and Ministry,Muse - Johns Hopkins University Press,23266236 +The Justice Professional,Informa UK (Taylor & Francis),08884315|14772787 +The Kansas University quarterly,Smithsonian Institution Biodiversity Heritage Library,08854068| +The Kaohsiung Journal of Medical Sciences,Elsevier ,1607551X| +The Kaohsiung Journal of Medical Sciences,Elsevier ,02575655| +The Keio Journal of Medicine,The Keio Journal of Medicine,00229717|18801293 +The KIPS Transactions PartA,Korea Information Processing Society ,15982831| +The KIPS Transactions PartB,Korea Information Processing Society ,1598284X| +The KIPS Transactions PartC,Korea Information Processing Society ,15982858| +The KIPS Transactions PartD,Korea Information Processing Society ,15982866| +The Kitakanto Medical Journal,Kitakanto Medical Society,13432826|18811191 +The Knee,Elsevier ,09680160| +The Knight Errant,JSTOR,21503168| +The Knowledge Engineering Review,Cambridge University Press,02698889|14698005 +The Knowledge Management Society of Korea,The Knowledge Management Society of Korea,12299553| +The Korea Association of Yeolin Education,The Korea Association of Yeolin Education,12298379| +The Korea Journal of Herbology,The Korea Association of Herbology,12291765| +The Korea Spatial Planning Review,Korea Research Institute for Human Settlements,12298638| +The Korea-Japan Historical Review,The Korea-Japan Historical Society,12293687| +The Korean Academic Association of Business Administration,Korean Academic Association of Business Administration,12262234|24658839 +The Korean Academy of Scientific Criminal Investigation,The Korean Academy of Scientific Criminal Investigation,19762712|24659401 +The Korean Association of Space and Environment Research,The Korean Association of Space and Environment Research,12256706| +The Korean Governance Review,The Korean Association for Governance,17381274| +The Korean Historical Review,Korean Historical Association,12251615| +The Korean History Education Review,The Korean History Education Society ,12250570| +The Korean Journal of Advertising,Korea Advertising Society,22871063| +The Korean Journal of Advertising and Public Relations,Korean Association for Advertising and Public Relations,17382475| +The Korean Journal of Blood Transfusion,The Korean Society of Blood Transfusion,12269336|23836881 +The Korean Journal of Clinical Psychology,Korean Clinical Psychology Association,12290335| +The Korean Journal of Community Living Science,The Korean Society of Community Living Science,12298565| +The Korean Journal of Community Living Science,The Korean Society of Community Living Science,12298565| +The Korean Journal of Critical Care Medicine,The Korean Society of Critical Care Medicine (KAMJE),12294802|22343261 +The Korean Journal of Cytopathology,Korean Society for Cytopathology (KAMJE),10170391| +The Korean Journal of Dance Studies,Korean Society for Dance Studies,1226900X| +The Korean Journal of Ecology,The Ecological Society of Korean,12250317| +The Korean Journal of Educational Psychology,Korean Educational Psychology Association,12254290| +The Korean Journal of Emergency Medical Services,The Korean Society of Emergency Medical Services,17381606| +The Korean Journal of Food And Nutrition,The Korean Society of Food and Nutrition,12254339|22874992 +The Korean Journal of Health Service Management,Korea Society of Health Service Management,20935986|22880666 +The Korean Journal of Helicobacter and Upper Gastrointestinal Research,Korean College of Helicobacter and Upper Gastrointestinal Research (KAMJE),17383331| +The Korean Journal of Hematology,Korean Society of Hematology; Korean Society of Blood and Marrow Transplantation; Korean Society of Pediatric Hematology-Oncology; Korean Society on Thrombosis and Hemostasis (KAMJE),17387949|20929129 +The Korean Journal of Hepatology,The Korean Association for the Study of the Liver ,1738222X|20938047 +The Korean Journal of Hispanic Studies,Institute of Hispanic Studies,20924984| +The Korean Journal of Hospice and Palliative Care,Korean Society for Hospice and Palliative Care,12291285|22876189 +The Korean Journal of Human Resource Development Quarterly,The Korean Society for Human Resource Development,12295086| +The Korean Journal of Human Resource Development Quarterly,The Korean Society for Human Resource Development,12295086| +The Korean Journal of Internal Medicine,Korean Association of Internal Medicine,12263303|20056648 +The Korean Journal of International and Comparative Law,Brill Academic Publishers,22134476|22134484 +The Korean Journal of International Studies,Korean Association of International Studies,2233470X| +The Korean Journal of Japanology,Korea Association of Japanology,12251453| +The Korean Journal of Laboratory Medicine,Korean Society for Laboratory Medicine (KAMJE),15986535| +The Korean Journal of Malacology,The Malacological Society of Korea,12253480| +The Korean Journal of Microbiology,The Microbiological Society of Korea,04402413| +The Korean Journal of Mycology,The Korean Society of Mycology,0253651X|23835249 +The Korean Journal of Nutrition,The Korean Nutrition Society (KAMJE),03676463|20057121 +The Korean Journal of Obesity,Korean Society for the Study of Obesity,12264407|22347631 +The Korean Journal of Oral and Maxillofacial Pathology,Korean Academy of Oral and Maxillofacial Pathology,12251577|23840900 +The Korean Journal of Orthodontics,Korean Association of Orthodontists (KAMJE),12255610|2005372X +The Korean Journal of Pain,Korean Pain Society (KAMJE),12262579|20930569 +The Korean Journal of Pancreas and Biliary Tract,Korean Pancreatobiliary Association,19763573|22880941 +The Korean Journal of Parasitology,Korean Society for Parasitology,00234001|17380006 +The Korean Journal of Pathology,The Korean Society of Pathologists and The Korean Society for Cytopathology,17381843|20928920 +The Korean Journal of Pesticide Science,The Korean Society of Pesticide Science,12266183| +The Korean Journal of Philosophy of Education,The Korean Philosophy of Education Society,15981568| +The Korean Journal of Public Health,Institute of Health and Environment,12256315| +The Korean Journal of Rehabilitation Nursing,Korean Academic Society of Rehabilitation Nursing,1229294X| +The Korean Journal of School Psychology,Korean School Pyschology Association,1738463X| +The Korean Journal of Securities Law,Korean Securities Law Association,15980448| +The Korean Journal of Slavic Studies,Institute of Russian Studies,12250406| +The Korean Journal of Sports Medicine,The Korean Society of Sports Medicine (KAMJE),12263729|22886028 +The Korean Journal of Systematic Zoology,The Korean Society of Systematic Zoology,22337687| +The Korean Journal of the Human Development,The Korean Association of Human Development,12264474|12264474 +The Korean Journal of The Korean Journal of Endocrine Surgery,Korean Association of Thyroid and Endocrine Surgeons,15981703|22876782 +The Korean Journal of Thoracic and Cardiovascular Surgery,Korean Society for Thoracic and Cardiovascular Surgery,03012859|20936516 +The Korean Journal of Urogenital Tract Infection and Inflammation,Korean Association of Urogentital Tract Infection and Imflammation (KAMJE),19757425|2288016X +The Korean Journal of Woman Psychology,The Korean Society for Woman Psychology,12290726| +The Korean Language and Literature,The Society of Korean Langage and Literature,04510097| +The Korean Language in America,The Pennsylvania State University Press,23320346|23320346 +The Korean Literature and Arts,Institute of Korean Literature and Arts,19768400| +The Korean Logistics Research Association,Korea Logistics Research Association,15980111| +The Korean Poetics Studies,The Korean Poetics Studies Association,12291943| +The Korean Society for Child Education,The Korea Society for Child Education (KSCE),12262722| +The Korean Society of Costume,The Korea Society of Costume,12296880| +The KSFM Journal of Fluid Machinery,Korean Society for Fluid machinery,22879706| +The Kurume Medical Journal,The Kurume Medical Journal,00235679|18812090 +The Lancet,Elsevier ,01406736|1474547X +The Lancet Diabetes & Endocrinology,Elsevier ,22138587| +The Lancet Global Health,Elsevier ,2214109X| +The Lancet Haematology,Elsevier ,23523026| +The Lancet HIV,Elsevier ,23523018| +The Lancet Infectious Diseases,Elsevier ,14733099| +The Lancet Neurology,Elsevier ,14744422| +The Lancet Oncology,Elsevier ,14702045| +The Lancet Psychiatry,Elsevier ,22150366| +The Lancet Respiratory Medicine,Elsevier ,22132600| +The Laryngoscope,Wiley Blackwell (John Wiley & Sons),0023852X|15314995 +The Latin Americanist,Wiley Blackwell (Blackwell Publishing),15572021|1557203X +The Law and Development Review,Walter de Gruyter GmbH,21946523|19433867 +The Law and Practice of International Courts and Tribunals,Brill Academic Publishers,15691853|15718034 +The Law Teacher,Informa UK (Taylor & Francis),03069400|19430353 +The Leadership Quarterly,Elsevier ,10489843| +The Leading Edge,Society of Exploration Geophysicists,1070485X|19383789 +The Learning Organization,Emerald (MCB UP ),09696474| +The Legal Studies Institute of Chosun University,The Legal Studies Institute of Chosun University,17381363| +The Leo Baeck Institute Yearbook,Oxford University Press,00758744|1758437X +The Library,Oxford University Press,00242160|17448581 +The Library Quarterly,The University of Chicago Press,00242519|1549652X +The Libyan Dentail Journal,International Health Academy,20011822 +The Libyan Journal of Pharmacy and Clinical Pharmacology,International Health Academy,20013450 +The Libyan Journal of Surgery,International Health Academy,20014430 +The Lichenologist,Cambridge University Press,00242829|10961135 +The Linacre Quarterly,Maney Publishing,00243639|20508549 +The Linguistic Review,Walter de Gruyter GmbH,01676318|16133676 +The Lion and the Unicorn,Muse - Johns Hopkins University Press,10806563 +The London Edinburgh and Dublin Philosophical Magazine and Journal of Science,Informa UK (Taylor & Francis),19415982|19415990 +The London Journal,Maney Publishing,03058034|17496322 +the London Student Journal of Medicine,The London Student Journal of Medicine,17591228|17591236 +The Lonergan Review,Philosophy Documentation Center,19484747| +The Lonergan Review,Philosophy Documentation Center,19484755| +The Major Gifts Report,Wiley Blackwell (John Wiley & Sons),15497712| +The Mariner s Mirror,Informa UK (Taylor & Francis),00253359|2049680X +The Mark Twain Annual,The Pennsylvania State University Press,15530981|17562597 +The Marketing Review,Westburn Publishers,1469347X|00000000 +The Mathematica Journal,Wolfram Research,10475974|10971610 +The Mathematical Education,Korea Society of Mathematical Education,12251380| +The Mathematical Gazette,JSTOR,00255572| +The Mathematical Intelligencer,Springer-Verlag,03436993|18667414 +The Mediaeval Journal,"""Brepols Publishers, NV""",20335385| +The Medical Journal of Australia,Australasian Medical Publishing Co. Pty. Ltd.,0025729X|13265377 +The Medical Journal of Goztepe Training and Research Hospital,Logos Medical Publication,1300526X| +The Medical Journal of Okmeydani Training and Research Hospital,Logos Medical Publication,13020382| +The Medieval History Journal,SAGE Publications,09719458|09730753 +The Medieval Low Countries,"""Brepols Publishers, NV""",22953493| +The Membership Management Report,Wiley Blackwell (John Wiley & Sons),19322739| +The Mental Lexicon,John Benjamins Publishing Company,18711340|18711375 +The Metropolitan Museum of Art Bulletin,JSTOR,00261521| +The Michigan Historical Review,Michigan Historical Review,08901686| +The Michigan Mathematical Journal,Michigan Mathematical Journal,00262285| +The Micropaleontologist,JSTOR,10500960| +The Microscopic Journal and Structural Record,Wiley Blackwell (Blackwell Publishing),20479751| +The Middle East Journal,The Middle East Journal,00263141|19403461 +The Milbank Memorial Fund Quarterly,JSTOR,00263745| +The Milbank Memorial Fund Quarterly Bulletin,JSTOR,02765187| +The Milbank Memorial Fund Quarterly Health and Society,JSTOR,01601997| +The Military Balance,Informa UK (Taylor & Francis),04597222|14799022 +The Mississippi Valley Historical Review,JSTOR,0161391X| +The Missouri Review,Muse - Johns Hopkins University Press,15489930 +The Misulsahakbo(Reviews on the Art History),Korean Society of Art History,15981258| +The Modern Churchman,Liverpool University Press,00267597| +The Modern English Society,The Modern English Society,15980782| +The Modern Language Review,Modern Humanities Research Association,00267937|22224319 +The Modern Schoolman,Philosophy Documentation Center,21640726| +The monitoring of public opinion economic&social changes,Russian Publik Opinion Research Center,22195467 +The Monthly Illustrator,JSTOR,21514348| +The Monthly Microscopical Journal,Wiley Blackwell (Blackwell Publishing),20471491| +The Moon,Springer-Verlag,00270903| +The Moon and the Planets,Springer-Verlag,01650807| +The Moving Image The Journal of the Association of Moving Image Archivists,University of Minnesota Press,15323978|15424235 +The Murrelet,JSTOR,00273716| +The Musical Quarterly,Oxford University Press,00274631|17418399 +The Musical Times,JSTOR,00274666| +The Musical Times and Singing Class Circular,JSTOR,09588434| +The Muslim World,Wiley Blackwell (Blackwell Publishing),00274909|14781913 +The National Catholic Bioethics Quarterly,Philosophy Documentation Center,15325490| +The National Catholic Bioethics Quarterly,Philosophy Documentation Center,15325490| +The National Catholic Guidance Conference Journal,Wiley Blackwell (John Wiley & Sons),21645124| +The National Magazine,JSTOR,20091656| +The National Teaching & Learning Forum,Wiley Blackwell (John Wiley & Sons),10572880| +The Natural Products Journal,Bentham Science,22103155| +The Natural Products Journal,Bentham Science,22103163| +The Nautilus,Smithsonian Institution Biodiversity Heritage Library,00281344| +The Netherlands Journal of Housing and Environmental Research,Springer-Verlag,09201580| +The Netherlands Journal of Medicine,Elsevier ,03002977|03002977 +The Neurodiagnostic Journal,Informa UK (Taylor & Francis),21646821|23758627 +The Neurohospitalist,SAGE Publications,19418744|19418752 +The Neurological Journal,Izdatelstvo Meditsina,15609545|24130699 +The Neurologist,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10747931| +The Neuropsychotherapist,"""Dahlitz Media Pty, Ltd.""",22019529 +The Neuroradiology Journal,SAGE Publications,19714009|23851996 +The Neuroscientist,SAGE Publications,10738584|10894098 +The New Bioethics,Maney Publishing,20502877|20502885 +The New Educator,Informa UK (Taylor & Francis),1547688X|15499243 +The New England Journal of Medicine and Surgery and the Collateral Branches of Science,New England Journal of Medicine,21633061|2163307X +The New England Quarterly,MIT Press,00284866|19372213 +The New Geography,The Geographic Education Society of Japan,05598362|18847072 +The New Path,JSTOR,21502609| +The New Scientist,Elsevier ,02624079| +The New Soundtrack,Edinburgh University Press,20428855|20428863 +The New Yearbook for Phenomenology and Phenomenological Philosophy,Maney Publishing,15337472|21570752 +The New York Latin Leaflet,JSTOR,21517576| +The New-England Medical Review and Journal,New England Journal of Medicine,21632928|21632952 +The News Bulletin of the Rocky Mountain Modern Language Association,JSTOR,15517438| +The Nonprofit Counsel,Wiley Blackwell (John Wiley & Sons),07423497|15316785 +The Nonproliferation Review,Informa UK (Taylor & Francis),10736700|17461766 +The North American Journal of Economics and Finance,Elsevier ,10629408| +The Nucleus,Springer-Verlag,0029568X|09767975 +The Nurse Practitioner,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,03611817| +The Obstetrician & Gynaecologist,Wiley Blackwell (Blackwell Publishing),14672561|17444667 +The Ocular Surface,Elsevier ,15420124| +The Official Journal of the Korean Academy of Kinesiology,Korean Academy of Kinesiology,20926308| +The Official Journal of the Polish Neuropsychological Society,Index Copernicus International,17307503| +The Official Journal of the Polish Neuropsychological Society,Index Copernicus International,17307503| +The Ohio journal of science,Smithsonian Institution Biodiversity Heritage Library,00300950| +The Old and New Testament Student,The University of Chicago Press,01905937| +The Old Testament Student,The University of Chicago Press,01905945| +The Oncologist,Alphamed Press,10837159|1549490X +THE ONJI COLLECTION OF WORKS,Society of Onji Studies,15981444| +The Open Access Journal of Science and Technology,Agial Publishing House,23145234 +The Open Acoustics Journal,Bentham Science,18748376| +The Open Addiction Journal,Bentham Science,18749410| +The Open Aerospace Engineering Journal,Bentham Science,18741460| +The Open Aging Journal,Bentham Science,18743692| +The Open Agriculture Journal,Bentham Science,18743315| +The Open AIDS Journal,Bentham Science,18746136| +The Open Allergy Journal,Bentham Science,18748384|18748384 +The Open Analytical Chemistry Journal,Bentham Science,18740650| +The Open Anatomy Journal,Bentham Science,18776094| +The Open Andrology Journal,Bentham Science,1876827X| +The Open Anesthesiology Journal,Bentham Science,18743218| +The Open Anthropology Journal,Bentham Science,18749127| +The Open Antimicrobial Agents Journal,Bentham Science,18765181| +The Open Applied Informatics Journal,Bentham Science,18741363| +The Open Applied Linguistics Journal,Bentham Science,18749135| +The Open Applied Mathematics Journal,Bentham Science,18741142| +The Open Applied Physics Journal,Bentham Science,18741835| +The Open Area Studies Journal,Bentham Science,18749143| +The Open Arthritis Journal,Bentham Science,18765394| +The Open Artificial Intelligence Journal,Bentham Science,18740618| +The Open Astronomy Journal,Bentham Science,18743811| +The Open Atherosclerosis & Thrombosis Journal,Bentham Science,18765068| +The Open Atmospheric Science Journal,Bentham Science,18742823| +The Open Autoimmunity Journal,Bentham Science,18768946| +The Open Automation and Control Systems Journal,Bentham Science,18744443| +The Open Behavioral Science Journal,Bentham Science,18742300| +The Open Bioactive Compounds Journal,Bentham Science,18748473| +The Open Biochemistry Journal,Bentham Science,1874091X| +The Open Bioinformatics Journal,Bentham Science,18750362| +The Open Biology Journal,Bentham Science,18741967| +The Open Biomarkers Journal,Bentham Science,18753183| +The Open Biomaterials Journal,Bentham Science,18765025| +The Open Biomedical Engineering Journal,Bentham Science,18741207| +The Open Biotechnology Journal,Bentham Science,18740707| +The Open Bone Journal,Bentham Science,18765254| +The Open Book Series,Mathematical Sciences Publishers,23299061|2329907X +The Open Breast Cancer Journal,Bentham Science,18768172| +The Open Business Journal,Bentham Science,18749151| +The Open Cancer Immunology Journal,Bentham Science,18764010| +The Open Cancer Journal,Bentham Science,18740790| +The Open Cardiovascular and Thoracic Surgery Journal,Bentham Science,18765335| +The Open Cardiovascular Imaging Journal,Bentham Science,18765386| +The Open Cardiovascular Medicine Journal,Bentham Science,18741924| +The Open Catalysis Journal,Bentham Science,1876214X| +The Open Cell Development & Biology Journal,Bentham Science,18740855| +The Open Cell Signaling Journal,Bentham Science,18763901| +The Open Ceramic Science Journal,Bentham Science,18763952| +The Open Chemical and Biomedical Methods Journal,Bentham Science,18750389| +The Open Chemical Engineering Journal,Bentham Science,18741231| +The Open Chemical Physics Journal,Bentham Science,18744125| +The Open Circulation & Vascular Journal,Bentham Science,18773826| +The Open Civil Engineering Journal,Bentham Science,18741495| +The Open Clinical Cancer Journal,Bentham Science,18741894| +The Open Clinical Chemistry Journal,Bentham Science,18742416| +The Open Clinical Trials Journal,Bentham Science,18768210| +The Open Colloid Science Journal,Bentham Science,18765300| +The Open Colorectal Cancer Journal,Bentham Science,18768202| +The Open Communication Journal,Bentham Science,1874916X| +The Open Complementary Medicine Journal,Bentham Science,1876391X| +The Open Condensed Matter Physics Journal,Bentham Science,1874186X| +The Open Conference Proceedings Journal,Bentham Science,22102892| +The Open Conservation Biology Journal,Bentham Science,18748392| +The Open Construction and Building Technology Journal,Bentham Science,18748368| +The Open Corrosion Journal,Bentham Science,18765033| +The Open Criminology Journal,Bentham Science,18749178| +The Open Critical Care Medicine Journal,Bentham Science,18748287| +The Open Crystallography Journal,Bentham Science,18748465| +The Open Cybernetics & Systemics Journal,Bentham Science,1874110X| +The Open Demography Journal,Bentham Science,18749186| +The Open Dentistry Journal,Bentham Science,18742106| +The Open Dermatology Journal,Bentham Science,18743722| +The Open Diabetes Journal,Bentham Science,18765246| +The Open Drug Delivery Journal,Bentham Science,18741266| +The Open Drug Discovery Journal,Bentham Science,18773818| +The Open Drug Metabolism Journal,Bentham Science,18740731| +The Open Drug Resistance Journal,Bentham Science,18765211| +The Open Drug Safety Journal,Bentham Science,18768180| +The Open Ecology Journal,Bentham Science,18742130| +The Open Economics Journal,Bentham Science,18749194| +The Open Education Journal,Bentham Science,18749208| +The Open Electrical & Electronic Engineering Journal,Bentham Science,18741290| +The Open Electrochemistry Journal,Bentham Science,1876505X| +The Open Emergency Medicine Journal,Bentham Science,18765424| +The Open Endocrinology Journal,Bentham Science,18742165| +The Open Energy & Fuels Journal,Bentham Science,18742483| +The Open Entomology Journal,Bentham Science,18744079| +The Open Environmental & Biological Monitoring Journal,Bentham Science,18750400| +The Open Environmental Engineering Journal,Bentham Science,18748295| +The Open Environmental Journal,Bentham Science,18742335| +The Open Environmental Pollution & Toxicology Journal,Bentham Science,18763979| +The Open Enzyme Inhibition Journal,Bentham Science,18749402| +The Open Epidemiology Journal,Bentham Science,18742971| +The Open Ethics Journal,Bentham Science,18747612| +The Open Evolution Journal,Bentham Science,18744044| +The Open Family Studies Journal,Bentham Science,18749224| +The Open Fish Science Journal,Bentham Science,1874401X| +The Open Food Science Journal,Bentham Science,18742564| +The Open Forensic Science Journal,Bentham Science,18744028| +The Open Forest Science Journal,Bentham Science,18743986| +The Open Fuel Cells Journal,Bentham Science,18759327| +The Open Fuels & Energy Science Journal,Bentham Science,1876973X| +The Open Gastroenterology Journal,Bentham Science,18742599| +The Open Gene Therapy Journal,Bentham Science,18750370| +The Open General & Internal Medicine Journal,Bentham Science,18740766| +The Open Genomics Journal,Bentham Science,1875693X| +The Open Geography Journal,Bentham Science,18749232| +The Open Geology Journal,Bentham Science,18742629| +The Open Geriatric Medicine Journal,Bentham Science,18748279| +The Open Health Services and Policy Journal,Bentham Science,18749240| +The Open Hematology Journal,Bentham Science,18742769| +The Open Hepatology Journal,Bentham Science,18765173| +The Open Horticulture Journal,Bentham Science,18748406| +The Open Hydrology Journal,Bentham Science,18743781| +The Open Hypertension Journal,Bentham Science,18765262| +The Open Immunology Journal,Bentham Science,18742262| +The Open Industrial & Manufacturing Engineering Journal,Bentham Science,18741525| +The Open Infectious Diseases Journal,Bentham Science,18742793| +The Open Inflammation Journal,Bentham Science,18750419| +The Open Information Science Journal,Bentham Science,1874947X| +The Open Information Systems Journal,Bentham Science,18741339| +The Open Inorganic Chemistry Journal,Bentham Science,18740987| +The Open Journal of Occupational Therapy,WMU Department of Occupational Therapy,21686408 +The Open Law Journal,Bentham Science,1874950X| +The Open Leukemia Journal,Bentham Science,18768164| +The Open Lung Cancer Journal,Bentham Science,18768199| +The Open Macromolecules Journal,Bentham Science,18743439| +The Open Magnetic Resonance Journal,Bentham Science,18747698| +The Open Management Journal,Bentham Science,18749488| +The Open Marine Biology Journal,Bentham Science,18744508| +The Open Materials Science Journal,Bentham Science,1874088X| +The Open Mathematics Journal,Bentham Science,18741177| +The Open Mechanical Engineering Journal,Bentham Science,1874155X| +The Open Mechanics Journal,Bentham Science,18741584| +The Open Medical Devices Journal,Bentham Science,18751814| +The Open Medical Education Journal,Bentham Science,1876519X| +The Open Medical Imaging Journal,Bentham Science,18743471| +The Open Medical Informatics Journal,Bentham Science,18744311| +The Open Medicinal Chemistry Journal,Bentham Science,18741045| +The Open Microbiology Journal,Bentham Science,18742858| +The Open Mineral Processing Journal,Bentham Science,18748414| +The Open Mineralogy Journal,Bentham Science,18744567| +The Open Mycology Journal,Bentham Science,18744370| +The Open Nanomedicine Journal,Bentham Science,18759335| +The Open Nanoscience Journal,Bentham Science,18741401| +The Open Natural Products Journal,Bentham Science,18748481| +The Open Neuroendocrinology Journal,Bentham Science,18765289| +The Open Neuroimaging Journal,Bentham Science,18744400| +The Open Neurology Journal,Bentham Science,1874205X| +The Open Neuropsychopharmacology Journal,Bentham Science,18765238| +The Open Neuroscience Journal,Bentham Science,18740820| +The Open Neurosurgery Journal,Bentham Science,18765297| +The Open Nitric Oxide Journal,Bentham Science,18750427| +The Open Nuclear & Particle Physics Journal,Bentham Science,1874415X| +The Open Nuclear Medicine Journal,Bentham Science,1876388X| +The Open Numerical Methods Journal,Bentham Science,18763898| +The Open Nursing Journal,Bentham Science,18744346| +The Open Nutraceuticals Journal,Bentham Science,18763960| +The Open Nutrition Journal,Bentham Science,18742882| +The Open Obesity Journal,Bentham Science,18768237| +The Open Occupational Health & Safety Journal,Bentham Science,18762166| +The Open Ocean Engineering Journal,Bentham Science,1874835X| +The Open Oceanography Journal,Bentham Science,18742521| +The Open Operational Research Journal,Bentham Science,18742432| +The Open Ophthalmology Journal,Bentham Science,18743641| +The Open Optics Journal,Bentham Science,18743285| +The Open Organic Chemistry Journal,Bentham Science,18740952| +The Open Ornithology Journal,Bentham Science,18744532| +The Open Orthopaedics Journal,Bentham Science,18743250| +The Open Otorhinolaryngology Journal,Bentham Science,18744281| +The Open Pacing Electrophysiology & Therapy Journal,Bentham Science,1876536X| +The Open Pain Journal,Bentham Science,18763863| +The Open Paleontology Journal,Bentham Science,18744257| +The Open Parasitology Journal,Bentham Science,18744214| +The Open Pathology Journal,Bentham Science,18743757| +The Open Pediatric Medicine Journal,Bentham Science,18743099| +The Open Petroleum Engineering Journal,Bentham Science,18748341| +The Open Pharmacoeconomics & Health Economics Journal,Bentham Science,18768245| +The Open Pharmacology Journal,Bentham Science,18741436| +The Open Physical Chemistry Journal,Bentham Science,18740677| +The Open Physiology Journal,Bentham Science,18743609| +The Open Plant Science Journal,Bentham Science,18742947| +The Open Plasma Physics Journal,Bentham Science,18765343| +The Open Political Science Journal,Bentham Science,18749496| +The Open Process Chemistry Journal,Bentham Science,18751806| +The Open Prostate Cancer Journal,Bentham Science,18768229| +The Open Proteomics Journal,Bentham Science,18750397| +The Open Psychiatry Journal,Bentham Science,18743544| +The Open Psychology Journal,Bentham Science,18743501| +The Open Public Health Journal,Bentham Science,18749445| +The Open Rehabilitation Journal,Bentham Science,18749437| +The Open Remote Sensing Journal,Bentham Science,18754139| +The Open Renewable Energy Journal,Bentham Science,18763871| +The Open Reproductive Science Journal,Bentham Science,18742556| +The Open Respiratory Medicine Journal,Bentham Science,18743064| +The Open Rheumatology Journal,Bentham Science,18743129| +The Open Signal Processing Journal,Bentham Science,18768253| +The Open Sleep Journal,Bentham Science,18746209| +The Open Social Science Journal,Bentham Science,18749453| +The Open Sociology Journal,Bentham Science,18749461| +The Open Software Engineering Journal,Bentham Science,1874107X| +The Open Spectroscopy Journal,Bentham Science,18743838| +The Open Spine Journal,Bentham Science,18765327| +The Open Sports Medicine Journal,Bentham Science,18743870| +The Open Sports Sciences Journal,Bentham Science,1875399X| +The Open Statistics & Probability Journal,Bentham Science,18765270| +The Open Stem Cell Journal,Bentham Science,18768938| +The Open Structural Biology Journal,Bentham Science,18741991| +The Open Superconductors Journal,Bentham Science,18765378| +The Open Surface Science Journal,Bentham Science,18765319| +The Open Surgery Journal,Bentham Science,18743005| +The Open Surgical Oncology Journal,Bentham Science,18765041| +The Open Systems Biology Journal,Bentham Science,18763928| +The Open Textile Journal,Bentham Science,18765203| +The Open Thermodynamics Journal,Bentham Science,1874396X| +The Open Tissue Engineering and Regenerative Medicine Journal,Bentham Science,18750435| +The Open Toxicology Journal,Bentham Science,18743404| +The Open Toxinology Journal,Bentham Science,18754147| +The Open Translational Medicine Journal,Bentham Science,18763995| +The Open Transplantation Journal,Bentham Science,18744184| +The Open Transport Phenomena Journal,Bentham Science,18777295| +The Open Transportation Journal,Bentham Science,18744478| +The Open Tropical Medicine Journal,Bentham Science,18743153| +The Open Urban Studies Journal,Bentham Science,18749429| +The Open Urology & Nephrology Journal,Bentham Science,1874303X| +The Open Vaccine Journal,Bentham Science,18750354| +The Open Veterinary Science Journal,Bentham Science,18743188| +The Open Virology Journal,Bentham Science,18743579| +The Open Virtual Reality Journal,Bentham Science,1875323X| +The Open Waste Management Journal,Bentham Science,18764002| +The Open Women s Health Journal,Bentham Science,18742912| +The Open Zoology Journal,Bentham Science,18743366| +The Opera Quarterly,Oxford University Press,07360053|14762870 +The Oriental Studies,"""Academy of Asian Studies, Dankook University""",12293199| +The Ottawa naturalist,Smithsonian Institution Biodiversity Heritage Library,03164411| +The Pacific Review,Informa UK (Taylor & Francis),09512748|14701332 +The Pacific Sociological Review,JSTOR,00308919| +The Pain Clinic,Maney Publishing,01691112|15685691 +The Pakistan Journal of Agricultural Sciences,Pakistan Journal of Agricultural Sciences,05529034|20760906 +The Palestine Yearbook of International Law Online,Brill Academic Publishers,13861972|22116141 +The Pan-Pacific Entomologist,BioOne (Pacific Coast Entomological Society),00310603|00310603 +The Paper Conservator,Informa UK (Taylor & Francis),03094227| +The Papers of the Bibliographical Society of America,The University of Chicago Press,0006128X|0006128X +The Patient Patient-Centered Outcomes Research,Springer-Verlag,11781661|11781661 +The Paton Welding Journal,Co. Ltd. Ukrinformnauka,0957798X|0957798X +The Pedagogical Seminary,Informa UK (Taylor & Francis),08919402| +The Pedagogical Seminary and Journal of Genetic Psychology,Informa UK (Taylor & Francis),08856559| +The Pediatric Infectious Disease Journal,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,08913668|15320987 +The Pennsylvania Magazine of History and Biography,Historical Society of Pennsylvania,00314587|21698546 +The Permanente Journal,The Permanente Press,15525767|15525775 +The Person and the Challenges The Journal of Theology Education Canon Law and Social Studies Inspired by Pope John Paul II,Pontifical Universtiy of John Paul II in Krakow,20838018|23916559 +The Personnel and Guidance Journal,Wiley Blackwell (John Wiley & Sons),00315737| +The Pharmaceutical Journal,Royal Pharmaceutical Society,20536186| +The Pharmacogenomics Journal,Nature Publishing Group,1470269X|14731150 +The Philadelphia Museum Bulletin,JSTOR,0899059X| +The Philippine journal of science,Smithsonian Institution Biodiversity Heritage Library,00317683| +The Philippine Scientist,PhilJOL,00791466| +The Philosophers Magazine,Philosophy Documentation Center,1354814X| +The Philosophical Forum,Wiley Blackwell (Blackwell Publishing),0031806X|14679191 +The Philosophical Quarterly,Oxford University Press,00318094|14679213 +The Photogrammetric Journal of Finland,The Finnish Society of Photogrammetry and Remote Sensing,17992486 +The Photogrammetric Record,Wiley Blackwell (Blackwell Publishing),0031868X|14779730 +The Phylon Quarterly,JSTOR,08856826| +The Physical Educator,"""Sagamore Publishing, LLC""",318981 +The Physician and Sportsmedicine,Informa UK (Taylor & Francis),00913847|23263660 +The Physics of Metals and Metallography,Pleiades Publishing,0031918X|15556190 +The Physics Teacher,American Association of Physics Teachers,0031921X| +The Pigments Paints and Printing Inks,Japan Society of Colour Material,21865159 +The Plant Cell,American Society of Plant Biologists,10404651|1532298X +The Plant Genome,The Plant Genome,19403372 +The Plant Health Instructor,Scientific Societies,19359411|19359411 +The Plant Journal,Wiley Blackwell (Blackwell Publishing),09607412|1365313X +The Plant Pathology Journal,Korean Society of Plant Pathology,15982254| +The Pluralist,University of Illinois Press,19307365|19446489 +The Pointer,Informa UK (Taylor & Francis),05544246| +The Polar Journal,Informa UK (Taylor & Francis),2154896X|21548978 +The Police Journal,SAGE Publications,0032258X|17405599 +The Polish Journal of Aesthetics,Index Copernicus International,16431243| +The Polish Journal of Aviation Medicine and Psychology,Military Institute of Aviation Medicine,23002743|23532270 +The Polish Review,University of Illinois Press,00322970|00322970 +The Political Quarterly,Wiley Blackwell (Blackwell Publishing),00323179|1467923X +The Poster,Intellect,20403704|20403712 +The Primary Care Companion For CNS Disorders,"""Physicians Postgraduate Press, Inc.""",21557780 +The Primary Care Companion to The Journal of Clinical Psychiatry,"""Physicians Postgraduate Press, Inc.""",15235998|1555211X +The Primary Source,Univeristy of Southern Mississippi,19418434 +The Princeton Seminary Bulletin,Princeton Theological Seminary Library,00328413|19378386 +The Prison Journal,SAGE Publications,00328855|15527522 +The Proceedings of the Circle of Television Engineers,The Institute of Image Information and Television Engineers,18849598 +The Proceedings of the Institute of Television Engineers,The Institute of Image Information and Television Engineers,1884961X +The Proceedings of the Iowa Academy of Science,Smithsonian Institution Biodiversity Heritage Library,00852236| +The Professional Animal Scientist,Elsevier ,10807446|1525318X +The Professional Counselor,National Board for Certified Counselors,21643989|21643989 +The Professional Geographer,Informa UK (Taylor & Francis),00330124|14679272 +The Professional Medical Journal,Friends Science Publishers,10248919|20717733 +The Progressive Fish-Culturist,American Fisheries Society,00330779|15488640 +The Prostate,Wiley Blackwell (John Wiley & Sons),02704137|10970045 +The Prostate Journal,Wiley Blackwell (Blackwell Publishing),10955100|15251411 +The Protein Journal,Springer-Verlag,15723887|15734943 +The Psychiatrist,Royal College of Psychiatrists,17583209| +The Psychoanalytic Quarterly,Wiley Blackwell (John Wiley & Sons),00332828| +The Psychoanalytic Review,Guilford Publications,00332836| +The Psychological Monographs,American Psychological Association,00969753| +The Psychological Record,Springer-Verlag,00332933|21633452 +The Psychologist-Manager Journal,American Psychological Association,10887156|15503461 +The Psychotherapy Patient,"""Informa UK (Haworth Press, Inc.,)""",07386176|15409627 +The Public Historian,University of California Press,02723433|15338576 +The Pure and Applied Mathematics,Korea Society of Mathematical Education,12260657| +The Quality Assurance Journal,Wiley Blackwell (John Wiley & Sons),10878378|10991786 +The Quality of Higher Education,Vytautas Magnus University,18221645|23450258 +The Quarterly Historical Society of Southern California,JSTOR,21629358| +The Quarterly Journal of Austrian Economics,Springer-Verlag,10983708|19364806 +The Quarterly Journal of Economics,Oxford University Press,00335533|15314650 +The Quarterly Journal of Experimental Psychology,Informa UK (Taylor & Francis),17470218|17470226 +The Quarterly Journal of Experimental Psychology Section A,Informa UK (Taylor & Francis),02724987|14640740 +The Quarterly Journal of Experimental Psychology Section B,Informa UK (Taylor & Francis),02724995|14641321 +The Quarterly Journal of Mathematics,Oxford University Press,00335606|14643847 +The Quarterly Journal of Mechanics and Applied Mathematics,Oxford University Press,00335614|14643855 +The Quarterly of Film Radio and Television,University of California Press,15490068| +The Quarterly Review of Biology,The University of Chicago Press,00335770|15397718 +The Quarterly Review of Economics and Finance,Elsevier ,10629769| +The Quaternary Research (Daiyonki-Kenkyu),Japan Association for Quaternary Resarch,04182642|18818129 +The Radical Teacher,"""University Library System, University of Pittsburgh""",01914847|19410832 +The Radiologist,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,10691286| +The Ramanujan Journal,Springer-Verlag,13824090|15729303 +The RAND Journal of Economics,Wiley Blackwell (Blackwell Publishing),07416261|17562171 +The Rangeland Journal,CSIRO Publishing,10369872| +The Reading Teacher,Wiley Blackwell (John Wiley & Sons),00340561| +The Reference Librarian,Informa UK (Taylor & Francis),02763877|15411117 +The Research Journal of the Costume Culture,The Korean Culture Association,12260401|23836334 +The Research of the Korean Classic,The Research of the Korean Classic,12263850| +The researches of the aquatic biological resources of Kamchatka and of the north-west part of the Pacific Ocean,Kamchatka Research Institute of Fisheries and Oceanography,20728212| +The Review of Austrian Economics,Springer-Verlag,08893047|15737128 +The Review of Black Political Economy,Springer-Verlag,00346446|19364814 +The Review of Black Political Economy,Springer-Verlag,00346446|19364814 +The Review of Diabetic Studies,Society for Biomedical Diabetes Research,16136071|16140575 +The Review of Economic Studies,Oxford University Press,00346527|1467937X +The Review of Economics and Statistics,MIT Press,00346535|15309142 +The Review of Education,Informa UK (Taylor & Francis),00985597| +The Review of Education Pedagogy & Cultural Studies,Informa UK (Taylor & Francis),10714413|15563022 +The Review of English Studies,Oxford University Press,00346551|14716968 +The Review of Faith & International Affairs,Informa UK (Taylor & Francis),15570274|19317743 +The Review of High Pressure Science and Technology,The Japan Society of High Pressure Science and Technology,0917639X|13481940 +The Review of Higher Education,Muse - Johns Hopkins University Press,10907009 +The Review of International Affairs,Informa UK (Taylor & Francis),14753553| +The Review of International Organizations,Springer-Verlag,15597431|1559744X +The Review of Isabu and East Sea,The Korean Isabu Society,20932030| +The Review of Laser Engineering,The Laser Society of Japan,03870200|13496603 +The Review of Politics,Cambridge University Press,00346705|17486858 +The Review of Socionetwork Strategies,Springer-Verlag,18673236 +The Review of Symbolic Logic,Cambridge University Press,17550203|17550211 +The Rheumatologist,Wiley Blackwell (John Wiley & Sons),19313268| +The Rhodes Cook Letter,Walter de Gruyter GmbH,15584291 +The Ring,Walter de Gruyter GmbH,20833520 +The Role of Monthly Economic Statistical Bulletins,International Monetary Fund,19347456| +The Round Table,Informa UK (Taylor & Francis),00358533|14654008 +The RUSI Journal,Informa UK (Taylor & Francis),03071847|17440378 +The Russian Academic journal,SRI Institute of Political and Mediametric Studies IPMS,22219544|22219544 +The Russian Review,Wiley Blackwell (Blackwell Publishing),00360341|14679434 +The Ryodoraku,The Japanese Society of Ryodoraku Medicine,02861631|18849253 +The Saint s International Dental Journal,Medknow Publications,24543160| +The San Francisco Jung Institute Library Journal,University of California Press,02706210| +The Saudi Dental Journal,Elsevier ,10139052| +The Saudi Journal for Dental Research,Elsevier ,23520035| +The Scandinavian Psychoanalytic Review,Informa UK (Taylor & Francis),01062301|16000803 +The School Review,The University of Chicago Press,00366773| +The Science News-Letter,JSTOR,00964018| +The Science of Nature,Springer-Verlag,00281042|14321904 +The Science of The Total Environment,Elsevier ,00489697| +The Science Teacher,National Science Teachers Association,00368555| +The Sciences,Wiley Blackwell (John Wiley & Sons),0036861X| +"""The scientific journal """"Proceedings of universities Volga region""","""Science and Education, Ltd.""",20723059| +The Scientific Journal Arab Academy in Denmark,"""Al Manhal FZ, LLC""",19028458| +The Scientific World JOURNAL,Hindawi (The Scientific World),23566140|1537744X +The Scottish Historical Review,Edinburgh University Press,17500222|17500222 +The Scottish Journal of Performance,Royal Conservatoire of Scotland,20541953|20541961 +The Scriblerian and the Kit-Cats,Muse - Johns Hopkins University Press,21650624 +The Sea,The Korean Society of Oceanography,12262978| +The Sedimentary Record,Society for Sedimentary Geology,15438740| +The Senses and Society,Informa UK (Taylor & Francis),17458927|17458935 +The Serials Librarian,Informa UK (Taylor & Francis),0361526X|15411095 +The Seventeenth Century,Informa UK (Taylor & Francis),0268117X|20504616 +The Shock and Vibration Digest,SAGE Publications,05831024| +The Showa University Journal of Medical Sciences,The Showa University Society,09156380|21850968 +The Siberian Pedagogical Journal,"""Science and Education, Ltd.""",18134718| +The Singapore Economic Review,World Scientific ,02175908|17936837 +The Sixties,Informa UK (Taylor & Francis),17541328| +The Sixties,Informa UK (Taylor & Francis),17541328| +The Sixties,Informa UK (Taylor & Francis),17541328| +The Sixties,Informa UK (Taylor & Francis),17541328| +The Sixties,Informa UK (Taylor & Francis),17541328|17541336 +The Slavic and East European Journal,JSTOR,00376752| +The Slavonic and East European Review,Modern Humanities Research Association,00376795|22224327 +The Slow Learning Child,Informa UK (Taylor & Francis),0037704X| +The Smart Computing Review,The Korea Academia - Industrial Cooperation Society,22344624|22344624 +The Social Policy Journal,Informa UK (Taylor & Francis),15332942|15332950 +The Social Science Journal,Elsevier ,03623319| +The Social Sciences,Science Alert,18185800| +The Social Studies,Informa UK (Taylor & Francis),00377996|2152405X +The Society for Korean Language & Literary Research,The Society for Korean Language and Literary Research,12291617| +The Society of History Education,The Society of History Education,12250775| +The Society Of Korean Language And Literature,Society of Korean Language and Literature,12267341| +The Society of Korean Literary Therapy,The Society of Korean Literary Therapy,17383854| +The Sociolinguistic Journal of Korea,The Sociolinguistic Society of Korea,12264822| +The Soil,JSTOR,21511268| +The Sophie Journal,Escarpment Press,23680652 +The Soundtrack,Intellect,17514193|17514207 +The South African Archaeological Bulletin,JSTOR,00381969| +The South African Journal of Industrial Engineering,Stellenbosch University - South African Journal of Industrial Engineering,1012277X|22247890 +The South African Orthopaedic Journal (SAOJ),Academy of Science of South Africa,1681150X| +The South Central Bulletin,JSTOR,0038321X| +The South Pacific Journal of Natural and Applied Sciences,CSIRO Publishing,1838837X| +The South Pacific Journal of Natural Science,CSIRO Publishing,10139877| +The Southern African Forestry Journal,Informa UK (National Inquiry Services Center),10295925| +The Southern African Journal of Entrepreneurship and Small Business Management,AOSIS,10153977|20713185 +The Southern Journal of Philosophy,Wiley Blackwell (Blackwell Publishing),00384283|20416962 +The Southern Literary Journal,Muse - Johns Hopkins University Press,15341461 +The Southern Speech Journal,Informa UK (Taylor & Francis),00384585| +The Southwest Respiratory and Critical Care Chronicles,The Southwest Respiratory and Critical Care Chronicles - SWRCCC,23259205 +The Southwestern Naturalist,BioOne (Southwestern Association of Naturalists),00384909|19436262 +The Soviet and Post-Soviet Review,Brill Academic Publishers,10751262|18763324 +The Spanish Journal of Psychology,Cambridge University Press,11387416|19882904 +The Spanish Review of Financial Economics,Elsevier ,21731268| +The Speech Teacher,Informa UK (Taylor & Francis),00387177| +The Spine Journal,Elsevier ,15299430| +The Sport Journal,United States Sports Academy,15439518| +The Sport Psychologist,Human Kinetics,08884781|15432793 +The Sports Historian,Informa UK (Taylor & Francis),13515462| +The Statistician,JSTOR,00390526| +The Structural Design of Tall and Special Buildings,Wiley Blackwell (John Wiley & Sons),15417794|15417808 +The Structural Design of Tall Buildings,Wiley Blackwell (John Wiley & Sons),10628002|10991794 +The Studies of Korean Literature,The Studies of Korean Literature,12297429| +THE STUDY OF THE EASTERN CLASSIC,The Study of the Eastern Classic,12267910| +The Successful Registrar,Wiley Blackwell (John Wiley & Sons),15347710|19437560 +The Supreme Court Review,The University of Chicago Press,00819557|21582459 +The Surgeon,Elsevier ,1479666X| +The Surgery Journal,Thieme Publishing Group,23785128|23785136 +The Swedish Journal of Economics,JSTOR,00397318| +The Synergist,American Industrial Hygiene Association,10667660| +The Teacher Educator,Informa UK (Taylor & Francis),08878730|19388101 +The THA magazine Helice,"""Science and Education, Ltd.""",22814515| +The Theory and Practice of Legislation,Informa UK (Taylor & Francis),20508840|20508859 +The Third Pole Journal of Geography Education,Nepal Journals Online,23924322| +The Thoracic and Cardiovascular Surgeon,Thieme Publishing Group,01716425|14391902 +The Thoracic and Cardiovascular Surgeon Reports,Thieme Publishing Group,21947635|21947643 +The Tocqueville Review/La revue Tocqueville,Muse - Johns Hopkins University Press,19186649 +The Tohoku Journal of Experimental Medicine,Tohoku University Medical Press,00408727|13493329 +The Tohoku Journal Veterinary Clinics,Japanese Society of Veterinary Clinics,09167579|18834590 +The Tourist Review,Emerald (MCB UP ),02513102| +The TQM Journal,Emerald (MCB UP ),0954478X| +The TQM Journal,Emerald (MCB UP ),17542731| +The Transactions of The Korean Institute of Electrical Engineers,The Korean Institute of Electrical Engineers,19758359| +The Transactions of the Korean Institute of Electrical Engineers P,The Korean Institute of Electrical Engineers,1229800X| +The Transactions of the Korean Institute of Power Electronics,The Korean Institute of Power Electrics,12292214| +The Transactions of the Zoological Society of London,Wiley Blackwell (Blackwell Publishing),00845620| +The Translator,Informa UK (Taylor & Francis),13556509|17570409 +The Tulane Drama Review,JSTOR,0886800X| +The Turkish Journal of Ear Nose and Throat,Baycinar Tibbi Yayincilik,13007475|13007475 +The Turkish Journal of Gastroenterology,AVES Publishing Co.,13004948|21485607 +The Turkish Online Journal of Design Art and Communication,"""Turkish Online Journal of Design, Art and Communication""",21465193 +The Turkish Online Journal of Educational Technology,Ankara University,13036521 +The Two-Year College Mathematics Journal,JSTOR,00494925| +The Ukrainian Biochemical Journal,Co. Ltd. Ukrinformnauka,24094943| +The Ultrasound Review of Obstetrics and Gynecology,Informa UK (Taylor & Francis),17438950|17438950 +THE ULUTAS MEDICAL JOURNAL,ScopeMed International Medical Journal Managment and Indexing System,21490430| +The Undecidable Unconscious A Journal of Deconstruction and Psychoanalysis,Muse - Johns Hopkins University Press,23284048 +The Unfamiliar,"""UKOLN, University of Bath""",2050778X +The University of Chicago Law Review,JSTOR,00419494| +The University of Kansas science bulletin,Smithsonian Institution Biodiversity Heritage Library,00228850| +The Urban Review,Springer-Verlag,00420972|15731960 +The Velvet Light Trap,University of Texas Press,01491830|15424251 +The Veterinary Journal,Elsevier ,10900233| +The Veterinary Nurse,Mark Allen Group,20440065| +The Veterinary Nurse,Mark Allen Group,20440065|20522959 +The Victorian naturalist,Smithsonian Institution Biodiversity Heritage Library,00425184| +The Virginia Law Register,JSTOR,15471357| +The Visual Computer,Springer-Verlag,01782789|14322315 +The VLDB Journal,Springer-Verlag,10668888|0949877X +The VLDB Journal,Springer-Verlag,10668888|0949877X +The Vocational Aspect of Education,Informa UK (Taylor & Francis),03057879| +The Vocational Guidance Magazine,Wiley Blackwell (John Wiley & Sons),21645833| +The Volta Review,Alexander Graham Bell Association for the Deaf and Hard of Hearing,00428639| +The Volunteer Management Report,Wiley Blackwell (John Wiley & Sons),10913777| +The Washington Quarterly,Informa UK (Taylor & Francis),0163660X|15309177 +The Way Ahead,Society of Petroleum Engineers,22244522| +The Welsh History Review / Cylchgrawn Hanes Cymru,University of Wales Press/Gwasg Prifysgol Cymru,00432431|0083792X +The Welsh Journal of Education / Cylchgrawn Addysg Cymru,University of Wales Press/Gwasg Prifysgol Cymru,17429234|0957297X +The Western Historical Quarterly,Oxford University Press,00433810|19398603 +The Western Political Quarterly,JSTOR,00434078| +The Wildlife Professional,Wiley Blackwell (The Wildlife Society),19332866| +The William and Mary Quarterly,The William and Mary Quarterly,00435597|19337698 +The Wilson Bulletin,BioOne (Wilson Ornithological Society),00435643| +The Wilson Journal of Ornithology,BioOne (Wilson Ornithological Society),15594491|19385447 +The Wilson Quarterly (1976-),JSTOR,3633276 +The Winnower,"""The Winnower, LLC""",2373146X| +The Women s Oncology Review,Informa UK (Taylor & Francis),14733404|14733412 +The Women s Review of Books,JSTOR,07381433| +The Workshop,JSTOR,2151142X| +The World Bank Economic Review,Oxford University Press,02586770|1564698X +The World Bank Research Observer,Oxford University Press,02573032|15646971 +The World Journal of Biological Psychiatry,Informa UK (Taylor & Francis),15622975|18141412 +The World Journal of Men s Health,Korean Society for Sexual Medicine and Andrology (KAMJE),22874208|22874690 +The World Society of Taekwondo Culture,The World Society of Taekwondo Culture,2233453X| +The Yale Journal of Criticism,Muse - Johns Hopkins University Press,10806636 +The Yale Law Journal,JSTOR,00440094| +The Yale Review,Wiley Blackwell (Blackwell Publishing),00440124|14679736 +The Year s Work in Critical and Cultural Theory,Oxford University Press,10774254|1471681X +The Year s Work in English Studies,Oxford University Press,00844144|14716801 +The Year s Work in Modern Language Studies,Modern Humanities Research Association,00844152|22224297 +The Yearbook of Comparative Literature,Muse - Johns Hopkins University Press,19472978 +The Yearbook of English Studies,Modern Humanities Research Association,03062473|22224289 +The Yearbook of Langland Studies,"""Brepols Publishers, NV""",08902917| +The Yearbook of Polar Law Online,Brill Academic Publishers,18768814|22116427 +The Yearbook of South Asian Languages and Linguistics,Walter de Gruyter GmbH,09719539|16134109 +The Yearbook of the Estonian Mother Tongue Society,Estonian Academy Publishers,02063735| +The Yeats Journal of Korea,The Yeats Society of Korea,12264946|22885412 +Theater,Duke University Press,01610775|1527196X +Theatralia,Masaryk University Press,1803845X|23364548 +Theatre & Performance Design,Informa UK (Taylor & Francis),23322551|23322578 +Theatre History Studies,Muse - Johns Hopkins University Press,21669953 +Theatre Journal,Muse - Johns Hopkins University Press,01922882|1086332X +Theatre Research International,Cambridge University Press,03078833|14740672 +Theatre Survey,Cambridge University Press,00405574|14754533 +Theatre Symposium,Muse - Johns Hopkins University Press,21669937 +Theatre Topics,Muse - Johns Hopkins University Press,10863346 +Thélème Revista Complutense de Estudios Franceses,Universidad Complutense de Madrid,11399368|19898193 +Thémata Revista de Filosofía,Editorial Universidad de Sevilla,02128365|2253900X +Theologica Xaveriana,Editorial Pontificia Universidad Javeriana,01203649|2011219X +Theological Forum,Theological Forum,12265314| +Theological Forum,Theological Forum,12265314| +Theological Research The Journal of Systematic Theology,Pontifical Universtiy of John Paul II in Krakow,23003588|23537078 +Theological Studies,SAGE Publications,00405639|21691304 +THEOLOGICAL STUDIES IN JAPAN,The Japan Society of Christian Studies,02854848|21856044 +Théologiques,Consortium Erudit,11887109|14921413 +Theologische Rundschau,Mohr Siebeck,00405698| +Theology,SAGE Publications,0040571X|20442696 +Theology and Philosophy,Theology and Philosophy,12298972| +Theology and praxis,The Korean Society for Practical Theology,12297917| +Theology and Science,Informa UK (Taylor & Francis),14746700|14746719 +Theology and Sexuality,Maney Publishing,13558358|17455170 +Theology and Society,Academy for 21st Century Christian Society and Culture,12295213| +Theology of Mission,The Korea Society of Mission Studies,17383447| +Theology Today,SAGE Publications,00405736|20442556 +Théorèmes,OpenEdition,16640136|16640136 +Theoretica Chimica Acta,Springer-Verlag,00405744| +Theoretical & Applied Science,International Academy of Theoretical and Applied Sciences,23084944|24090085 +Theoretical & Philosophical Psychology,American Psychological Association,10688455| +Theoretical and Applied Climatology,Springer-Verlag,0177798X|14344483 +Theoretical and Applied Fracture Mechanics,Elsevier ,01678442| +Theoretical and Applied Genetics,Springer-Verlag,00405752|14322242 +Theoretical and Applied Informatics,"""Institute of Theoretical and Applied Informatics, Polish Academy of Sciences""",18965334|2300889X +Theoretical and Applied Mechanics,National Library of Serbia,14505584|24060925 +Theoretical and Applied Mechanics Letters,Elsevier ,20950349|20950349 +Theoretical and Computational Chemistry,Elsevier , +Theoretical and Computational Fluid Dynamics,Springer-Verlag,09354964|14322250 +Theoretical and Experimental Chemistry,Springer-Verlag,00405760|1573935X +Theoretical and Experimental Plant Physiology,Springer-Verlag,21970025 +Theoretical and Mathematical Physics,Springer-Verlag,00405779|15739333 +Theoretical and Practical Research in Economic Fields,De Gruyter Open Sp. z o.o. ,20687710| +Theoretical Biology and Medical Modelling,Springer (Biomed Central Ltd.),17424682|17424682 +Theoretical Chemistry Accounts,Springer-Verlag,1432881X|14322234 +Theoretical Computer Science,Elsevier ,03043975| +Theoretical Criminology,SAGE Publications,13624806|14617439 +Theoretical Ecology,Springer-Verlag,18741738|18741746 +Theoretical Economics,The Econometric Society,19336837|15557561 +Theoretical Economics Letters,"""Scientific Research Publishing, Inc.""",21622078|21622086 +Theoretical Foundations of Chemical Engineering,Pleiades Publishing,00405795|16083431 +Theoretical Inquiries in Law,Walter de Gruyter GmbH,15651509|15653404 +Theoretical Issues in Ergonomics Science,Informa UK (Taylor & Francis),1463922X|1464536X +Theoretical Linguistics,Walter de Gruyter GmbH,03014428|16134060 +Theoretical Medicine,Springer-Verlag,01679902| +Theoretical Medicine & Bioethics,Springer (Kluwer Academic Publishers),13867415|15731200 +Theoretical Physics Astrophysics & Cosmology,Centre for Theoretical Physics and Astrophysics,18199135|19913915 +Theoretical Population Biology,Elsevier ,00405809|10960325 +Theoria,Wiley Blackwell (Blackwell Publishing),17552567|00405825 +Theoria,Berghahn Books,00405817|15585816 +THEORIA An International Journal for Theory History and Foundations of Science,UPV/EHU Press,04954548|2171679X +Theoria Beograd,National Library of Serbia,03512274|2406081X +Theoria et Historia Scientiarum,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,08674159| +Theory & Event,Muse - Johns Hopkins University Press,1092311X +Theory & Psychology,SAGE Publications,09593543|14617447 +Theory & Research in Social Education,Informa UK (Taylor & Francis),00933104|21631654 +Theory & Event,Muse - Johns Hopkins University Press,1092311X +Theory and Applications of GIS,Geographic Information Systems Association of Japan,13405381|21855633 +Theory and Decision,Springer-Verlag,00405833|15737187 +Theory and Practice in Language Studies,Academy Publication,17992591| +Theory and Practice of Logic Programming,Cambridge University Press,14710684|14753081 +Theory and Practice of Object Systems,Wiley Blackwell (John Wiley & Sons),10743227|10969942 +THEORY AND PRACTICE OF SOCIAL DEVELOPMENT,"""Science and Education, Ltd.""",18154964| +Theory and Research in Education,SAGE Publications,14778785|00000000 +Theory and Society,Springer-Verlag,03042421|15737853 +Theory Culture & Society,SAGE Publications,02632764|00000000 +Theory in Action,Theory in Action,19370229|19370237 +Theory in Biosciences,Springer-Verlag,14317613|16117530 +Theory Into Practice,Informa UK (Taylor & Francis),00405841|15430421 +Theory Methodology Practice,"""Theory, Methodology, Practice""",15893413|24159883 +Theory of Computing,Theory of Computing Exchange,15572862 +Theory of Computing Systems,Springer-Verlag,14324350|14330490 +Theory of Probability and Its Applications,Society for Industrial and Applied Mathematics,0040585X|10957219 +Theory of Probability and Mathematical Statistics,American Mathematical Society,00949000|15477363 +Theranostics,Ivyspring International Publisher,18387640| +Therapeutic Advances in Cardiovascular Disease,SAGE Publications,17539447|17539455 +Therapeutic Advances in Chronic Disease,SAGE Publications,20406223|20406231 +Therapeutic Advances in Drug Safety,SAGE Publications,20420986|20420994 +Therapeutic Advances in Endocrinology and Metabolism,SAGE Publications,20420188|20420196 +Therapeutic Advances in Gastroenterology,SAGE Publications,1756283X|17562848 +Therapeutic Advances in Hematology,SAGE Publications,20406207|20406215 +Therapeutic Advances in Infectious Disease,SAGE Publications,20499361|2049937X +Therapeutic Advances in Medical Oncology,SAGE Publications,17588340|17588359 +Therapeutic Advances in Musculoskeletal Diseases,SAGE Publications,1759720X|17597218 +Therapeutic Advances in Neurological Disorders,SAGE Publications,17562856|17562864 +Therapeutic Advances in Psychopharmacology,SAGE Publications,20451253|20451261 +Therapeutic Advances in Respiratory Disease,SAGE Publications,17534658|17534666 +Therapeutic Advances in Urology,SAGE Publications,17562872|17562880 +Therapeutic Advances in Vaccines,SAGE Publications,20510136|20510144 +Therapeutic Apheresis,Wiley Blackwell (Blackwell Publishing),10916660|15260968 +Therapeutic Apheresis and Dialysis,Wiley Blackwell (Blackwell Publishing),17449987|17449979 +Therapeutic Communities The International Journal of Therapeutic Communities,Emerald (MCB UP ),09641866| +Therapeutic Delivery,"""Future Science, LTD""",20415990|20416008 +Therapeutic Drug Monitoring,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,01634356| +Therapeutic Hypothermia and Temperature Management,Mary Ann Liebert,21537658|21537933 +Therapeutic Innovation & Regulatory Science,SAGE Publications,21684790|21684804 +Therapeutic Recreation Journal,"""Sagamore Publishing, LLC""",21596433 +Therapeutic Targets for Neurological Diseases,"""Smart Science and Technology, LLC""",23760478 +Therapeutics and Clinical Risk Management,Dove Medical Press,11766336|1178203X +Therapeutische Umschau,Hogrefe Publishing Group,00405930|16642864 +Thérapie,Elsevier ,00405957|19585578 +Thérapie Familiale,CAIRN,02504952|22352112 +Therapy,Future Medicine,14750708|1744831X +Theriogenology,Elsevier ,0093691X| +Theriogenology Insight - An International Journal of Reproduction in all Animals,Diva Enterprises Private Limited,22496610|22773371 +Thermal Engineering,Pleiades Publishing,00406015|15556301 +Thermal Medicine,Japanese Society for Thermal Medicine,09112529|18819516 +Thermal Science,National Library of Serbia,03549836|23347163 +Thermochimica Acta,Elsevier ,00406031| +Thermophysics and Aeromechanics,Pleiades Publishing,08698643|15318699 +Therya,Asociacion Mexicana de Mastozoologia A.C.,20073364 +TheScientificWorld,Hindawi (The Scientific World),15322246 +Theses on Korean Literature,The Korean Literature Association,12269913| +Thesis Eleven,SAGE Publications,07255136|00000000 +Thieme Case Report,Thieme Publishing Group,16117875|21997004 +Thieme Drug Report,Thieme Publishing Group,21996997 +Thieme Praxis Report,Thieme Publishing Group,16117891|21996989 +Thin Films,Elsevier , +Thin Solid Films,Elsevier ,00406090|00406090 +Thin-Walled Structures,Elsevier ,02638231| +Think,Cambridge University Press,14771756|17551196 +Think Pieces A Journal of the Arts Humanities and Social Sciences,UCL Press,2058492X|2058492X +Thinking & Reasoning,Informa UK (Taylor & Francis),13546783|14640708 +Thinking Skills and Creativity,Elsevier ,18711871| +Thinking The Journal of Philosophy for Children,Philosophy Documentation Center,01903330| +Third Text,Informa UK (Taylor & Francis),09528822|00000000 +Third World Planning Review,Liverpool University Press,01427849| +Third World Quarterly,Informa UK (Taylor & Francis),01436597|13602241 +Thông tin Khoa Hoc Xã Hội,Vietnam Journals Online,08668647| +Thoracic Cancer,Wiley Blackwell (Blackwell Publishing),17597706|17597714 +Thoracic Surgery Clinics,Elsevier ,15474127| +Thorax,BMJ,00406376|14683296 +Thought,Philosophy Documentation Center,00406457| +Thought A Journal of Philosophy,Wiley Blackwell (John Wiley & Sons),21612234| +Thought and Practice,African Journals Online ,0251043X|20767714 +Thrita,Kowsar Medical Institute,23520612|23520620 +Thrita Journal of Medical Sciences,Kowsar Medical Institute,22518312|22519688 +Thrombosis,Hindawi Publishing Corporation,20901488|20901496 +Thrombosis and Haemostasis,Schattauer GmbH,03406245| +Thrombosis Journal,Springer (Biomed Central Ltd.),14779560|14779560 +Thrombosis Research,Elsevier ,00493848| +Thunderbird International Business Review,Wiley Blackwell (John Wiley & Sons),10964762|15206874 +Thymos Journal of Boyhood Studies,"""Men's Studies Press, LLC""",19319045|18724329 +Thymus,Springer (Kluwer Academic Publishers),01656090| +Thyroid,Mary Ann Liebert,10507256|15579077 +Thyroid Research,Springer (Biomed Central Ltd.),17566614|17566614 +Thyroid Research and Practice,Medknow Publications,09730354| +Tic & société,OpenEdition,19619510 +Tic & société,OpenEdition,19619510 +tic revista d innovació educativa,Universitat de Valencia,19893477 +ticket 1113 International Journal of Numerical Methods for Heat & Fluid Flow,Emerald (MCB UP ), +Ticks and Tick-borne Diseases,Elsevier ,1877959X| +Tidsskrift for Den norske legeforening,Norwegian Medical Association,00292001| +Tidsskrift for eiendomsrett,Scandinavian University Press / Universitetsforlaget AS,15043495|08099529 +Tidsskrift for erstatningsrett forsikringsrett og velferdsrett,Scandinavian University Press / Universitetsforlaget AS,15036782|08099545 +Tidsskrift for familierett arverett og barnevernrettslige spørsmål,Scandinavian University Press / Universitetsforlaget AS,15032965|08099553 +Tidsskrift for forretningsjus,Scandinavian University Press / Universitetsforlaget AS,08054355|08099510 +Tidsskrift for kjønnsforskning,Scandinavian University Press / Universitetsforlaget AS,08096341|18911781 +Tidsskrift for Nordisk Barnehageforskning,Oslo and Akershus University College of Applied Sciences,18909167 +Tidsskrift for omsorgsforskning,Scandinavian University Press / Universitetsforlaget AS,23875976|23875984 +Tidsskrift for samfunnsforskning,Scandinavian University Press / Universitetsforlaget AS,0040716X|1504291X +Tidsskrift for Sprogforskning,Aarhus University Library,16035925|19028504 +Tidsskrift for strafferett,Scandinavian University Press / Universitetsforlaget AS,1502685X|08099537 +Tidsskrift for Universiteternes Efter- og Videreuddannelse (UNEV),Aarhus University Library,16035518 +Tidsskrift for velferdsforskning,Scandinavian University Press / Universitetsforlaget AS,08092052|24643076 +Tidsskriftet Arkiv,Oslo and Akershus University College of Applied Sciences,18918107 +Tidsskriftet Norges barnevern,Scandinavian University Press / Universitetsforlaget AS,08001014|18911838 +Tiempos de América,Universitat Jaume I,11381310| +Tierarzthelfer/in konkret,Thieme Publishing Group,16148754|18653987 +Tierärztliche Praxis Ausgabe G Großtiere / Nutztiere,Schattauer GmbH (Tierarztl Prax Ausg G Grosstiere Nutztiere),14341220| +Tierärztliche Praxis Ausgabe K Kleintiere / Heimtiere,Schattauer GmbH (Tierarztl Prax Ausg K Kleintiere Heimtiere),14341239| +Tiers-Monde,CAIRN,00407356|19631359 +TIIKM Journal of Education,"""The International Institute of Knowledge Management, Pvt, Ltd.""",24489336 +TIIKM Journal of film media and communication,"""The International Institute of Knowledge Management, Pvt, Ltd.""",24489328 +Tijdschrift Civiele Rechtspleging,Boom Uitgevers Den Haag,09298649| +Tijdschrift der Vereeniging voor Noord-Nederlands Muziekgeschiedenis,JSTOR,09213260| +Tijdschrift Erfrecht,Boom Uitgevers Den Haag,18741681| +Tijdschrift over Cultuur & Criminaliteit,Boom Uitgevers Den Haag,22119507| +Tijdschrift van de Koninklijke Vereniging voor Nederlandse Muziekgeschiedenis,JSTOR,13837079| +Tijdschrift van de Vereniging voor Nederlandse Muziekgeschiedenis,JSTOR,00423874| +Tijdschrift voor Arbeidsvraagstukken,Boom Uitgevers Den Haag,01692216| +Tijdschrift voor bedrijfs- en verzekeringsgeneeskunde,Springer-Verlag,0929600X|18765858 +Tijdschrift voor Bijzonder Strafrecht & Handhaving,Boom Uitgevers Den Haag,22956700| +Tijdschrift voor Communicatiewetenschappen,Uitgeverij Boom,13846930| +Tijdschrift voor Criminologie,Boom Uitgevers Den Haag,0165182X| +Tijdschrift voor Economische en Sociale Geografie,Wiley Blackwell (Blackwell Publishing),0040747X|14679663 +Tijdschrift voor Entomologie,Brill Academic Publishers,00407496|22119434 +Tijdschrift voor Filosofie,Peeters Publishers,1370575X +Tijdschrift voor Genderstudies,Amsterdam University Press,13883186| +Tijdschrift voor Geneeskunde,Peeters Publishers,0371683X +Tijdschrift voor Gerontologie en Geriatrie,Springer-Verlag,01679228|18756832 +Tijdschrift voor Geschiedenis,Amsterdam University Press,00407518| +Tijdschrift voor Gezondheidsrecht,Springer-Verlag,01650874|18756794 +Tijdschrift voor gezondheidswetenschappen,Springer-Verlag,13887491|18768776 +Tijdschrift voor Herstelrecht,Boom Uitgevers Den Haag,1568654X| +Tijdschrift voor Hoger Onderwijs,Boom Uitgevers Den Haag,01681095| +Tijdschrift voor kindergeneeskunde,Springer-Verlag,03767442|18756840 +Tijdschrift voor mediation en conflictmanagement,Boom Uitgevers Den Haag,13863878| +Tijdschrift voor Medisch Onderwijs,Springer-Verlag,13896555|18765157 +Tijdschrift voor Neuropsychiatrie en Gedragsneurologie,Springer-Verlag,22142398|22142401 +Tijdschrift voor Omgevingsrecht,Boom Uitgevers Den Haag,15685012| +Tijdschrift voor ouderengeneeskunde,Springer-Verlag,18794637|18794637 +Tijdschrift voor praktijkondersteuning,Springer-Verlag,18724078|18765416 +Tijdschrift voor Psychotherapie,Springer-Verlag,01651188|18765637 +Tijdschrift voor Rechtsgeschiedenis / Revue d Histoire du Droit / The Legal History Review,Brill Academic Publishers,00407585|15718190 +Tijdschrift voor Religie Recht en Beleid,Boom Uitgevers Den Haag,18797784| +Tijdschrift voor taalbeheersing,Amsterdam University Press,15739775| +Tijdschrift voor Tijdschriftstudies,Uopen Journals,13865870|22148965 +Tijdschrift voor Toezicht,Boom Uitgevers Den Haag,18798705| +Tijdschrift voor Urologie,Springer-Verlag,22113037|22114718 +Tijdschrift voor Veiligheid,Boom Uitgevers Den Haag,18727948| +Tijdschrift voor Vergoeding Personenschade,Boom Uitgevers Den Haag,13882066| +Tijdschrift voor VerpleeghuisGeneeskunde,Springer-Verlag,13861514|18756875 +Tikkun,Duke University Press,08879982|21640041 +Tilburg Law Review,Brill Academic Publishers,22110046|22112596 +Tiltai,Klaipeda University Press,13923137|23516569 +Time & Society,SAGE Publications,0961463X|00000000 +Time and Mind,Informa UK (Taylor & Francis),1751696X|17516978 +Timely Interventions A Translational Journal of Public Policy Debate,"""University Library System, University of Pittsburgh""",21605777 +Timing & Time Perception,Brill Academic Publishers,2213445X|22134468 +Timing & Time Perception Reviews,Brill Academic Publishers,24054550|24054496 +Timisoara Journal of Economics and Business,De Gruyter Open Sp. z o.o. ,22860991 +Timisoara Physical Education and Rehabilitation Journal,De Gruyter Open Sp. z o.o. ,20650574|20650574 +Timocki medicinski glasnik,Centre for Evaluation in Education and Science,03502899| +TIMS Acta,Centre for Evaluation in Education and Science,14529467| +TIP,Elsevier ,1405888X| +Tıp Araştırmaları Dergisi,The Journal of Medical Investigations,13043900| +TIPA Travaux interdisciplinaires sur la parole et le langage,OpenEdition,22647082|22647082 +TIPMED,ScopeMed International Medical Journal Managment and Indexing System,13019740| +Tire Science and Technology,The Tire Society,00908657|19455852 +Tissue and Cell,Elsevier ,00408166| +Tissue Antigens,Wiley Blackwell (Blackwell Publishing),00012815|13990039 +Tissue Barriers,Landes Bioscience,21688362|21688370 +Tissue Culture Association Manual,Springer-Verlag,03610268| +Tissue Engineering,Mary Ann Liebert,10763279|10763279 +Tissue Engineering and Regenerative Medicine,Springer-Verlag,17382696|22125469 +Tissue Engineering Part A,Mary Ann Liebert,19373341|1937335X +Tissue Engineering Part B Reviews,Mary Ann Liebert,19373368|19373376 +Tissue Engineering Part C Methods,Mary Ann Liebert,19373384|19373392 +Title in english,Association of Forensic Medical Experts,24118729|24094161 +Title IX Today,"""The NCHERM Group, LLC""",23778725| +Titolo 11,mEDRA,9992138 +título da revista,Coimbra University Press,16452259| +Tiyatro Ara,Ankara University,13001523|13001523 +Tizard Learning Disability Review,Emerald (MCB UP ),13595474|20428782 +Tlalocan,Instituto de Investigaciones Filologicas,01850989| +tm - Technisches Messen,Oldenbourg Wissenschaftsverlag,01718096|21967113 +TMPM Tschermaks Mineralogische und Petrographische Mitteilungen,Springer-Verlag,00413763| +To Improve the Academy,Wiley Blackwell (John Wiley & Sons),23344822| +Tobacco Control,BMJ,09644563|14683318 +Tobacco Induced Diseases,Springer (Biomed Central Ltd.),16179625|16179625 +Tobacco Prevention & Cessation,EU European Publishing,24593087 +Tobacco Regulatory Science,Tobacco Regulatory Science Group,23339748| +Tobacco Science,Tobacco Science,00824623| +Tobacco Use Insights,"""Libertas Academica, Ltd.""",1179173X +Tochki nad yo,Content Press and Scientific Publishing,22252258| +Todas as Letras Revista de Língua e Literatura,Todas as Letras: Revista de Lingua e Literatura,19806914 +Today s Speech,Informa UK (Taylor & Francis),00408573| +Toegepaste Taalwetenschap in Artikelen,John Benjamins Publishing Company,01697420|22134883 +TOHOKU JOURNAL OF RURAL ECONOMICS,The Agricultural Economic Society of Tohoku,02857537| +Tohoku Mathematical Journal,"""Mathematical Institute, Tohoku University""",00408735| +Tohoku Mathematical Publications,"""Mathematical Institute, Tohoku University""",13439499|1880876X +Tokyo Journal of Mathematics,Tokyo Journal of Mathematics,03873870| +Tokyo Kagaku Kaishi,The Chemical Society of Japan,03718409|18811116 +Tolkien Studies,Muse - Johns Hopkins University Press,15473163 +Tomography,"""Grapho, LLC""",23791381|2379139X +Tomsk State University Journal of History,"""Science and Education, Ltd.""",19988613| +Top,Springer-Verlag,11345764|18638279 +Topics in Catalysis,Springer-Verlag,10225528|15729028 +Topics in Clinical Nutrition,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,08835691| +Topics in Cognitive Science,Wiley Blackwell (Blackwell Publishing),17568757|17568765 +Topics in Companion Animal Medicine,Elsevier - WB Saunders,19389736| +Topics in Current Chemistry,Springer-Verlag,23650869|23648961 +Topics in Early Childhood Special Education,SAGE Publications,02711214|15384845 +Topics in Economic Analysis & Policy,Walter de Gruyter GmbH,15380653 +Topics in Geriatric Rehabilitation,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,08827524| +Topics in Inorganic and General Chemistry,Elsevier , +Topics in Language Disorders,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,02718294| +Topics in Linguistics,De Gruyter Open Sp. z o.o. ,13377590|13377590 +Topics in Macroeconomics,Walter de Gruyter GmbH,15345998 +Topics in Magnetic Resonance Imaging,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,08993459| +Topics in Obstetrics & Gynecology,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,23800216| +Topics in Pain Management,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,08825645| +Topics in Spinal Cord Injury Rehabilitation,"""Thomas Land Publishers, Inc.""",10820744| +Topics in Stroke Rehabilitation,Maney Publishing,10749357|19455119 +Topics in Theoretical Economics,Walter de Gruyter GmbH,1534598X +Topique,CAIRN,00409375|19650604 +Toplum ve Hekim,Ankara University,13004387 +Topoi,PERSEE Program,11619473| +Topoi,Springer-Verlag,01677411|15728749 +Topoi (Rio de Janeiro),SciELO,2237101X +Topoi Revista de História,SciELO,15183319 +Topologica,21st Century COE Program (Toplogical Science and Technology),18816886 +Topological Algebra and its Applications,De Gruyter Open Sp. z o.o. ,22993231 +Topological and Supramolecular Polymer Science,Columbia International Publishing,2376774X +Topological Methods in Nonlinear Analysis,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,12303429| +Topological Quantum Matter,De Gruyter Open Sp. z o.o. ,2299324X +Topology,Elsevier ,00409383| +Topology and its Applications,Elsevier ,01668641| +Toraks Cerrahisi Bulteni,AVES Publishing Co.,21463050|21463050 +Toronto Journal of Theology,University of Toronto Press Inc,08269831|19186371 +Toruńskie Studia Bibliologiczne,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,20801807| +Toruńskie Studia Międzynarodowe,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,16898168| +Toruńskie Studia Polsko-Włoskie,Uniwersytet Mikolaja Kopernika/Nicolaus Copernicus University,20831986|23917865 +TOS forum,IM Publications,20539681| +Total Quality Management,Informa UK (Taylor & Francis),09544127|13600613 +Total Quality Management & Business Excellence,Informa UK (Taylor & Francis),14783363|14783371 +Total Quality Science,The Japanese Society for Quality Control,21893195 +Totalitarian Movements & Political Religions,Informa UK (Taylor & Francis),14690764|17439647 +Totalitarianism and Democracy,"""Vandenhoeck & Ruprecht GmbH & Co, KG""",21968276|21968276 +Toukeibu Gan,Japan Society for Head and Neck Cancer,13495747|18818382 +Tourism & Management Studies,"""School of Management, Hospitality and Tourism, University of the Algarve""",21828458|21828466 +Tourism Analysis,Cognizant Communication Corp,10835423|19433999 +Tourism and hospitality management,"""University of Rijeka, Faculty of Tourism and Hospitality Management""",13307533| +Tourism and Hospitality Planning & Development,Informa UK (Taylor & Francis),1479053X|14790548 +Tourism and Hospitality Research,SAGE Publications,14673584|17429692 +Tourism Culture & Communication,Cognizant Communication Corp,1098304X|19434146 +Tourism Economics,IP Publishing,13548166| +Tourism Education Studies and Practice,Academic Publishing House Researcher,23120037|24092436 +Tourism Geographies,Informa UK (Taylor & Francis),14616688|14701340 +Tourism in Marine Environments,Cognizant Communication Corp,1544273X| +Tourism Management,Elsevier ,02615177| +Tourism Management Perspectives,Elsevier ,22119736| +Tourism Planning & Development,Informa UK (Taylor & Francis),21568316|21568324 +Tourism Recreation Research,Informa UK (Taylor & Francis),02508281|23200308 +Tourism Recreation Research,Informa UK (Taylor & Francis),02508281|23200308 +Tourism Review,Emerald (MCB UP ),16605373| +Tourism Review International,Cognizant Communication Corp,15442721|19434421 +Tourist Studies,SAGE Publications,14687976|00000000 +Town Planning and Architecture,Vilnius Gediminas Technical University,13921630|16483537 +Town Planning Review,Liverpool University Press,00410020|1478341X +Toxic Substance Mechanisms,Informa UK (Taylor & Francis),10769188| +Toxicity Assessment,Wiley Blackwell (John Wiley & Sons),08848181|10982256 +Toxicologic Pathology,SAGE Publications,01926233|15331601 +Toxicological & Environmental Chemistry Reviews,Informa UK (Taylor & Francis),00929867| +Toxicological and Environmental Chemistry,Informa UK (Taylor & Francis),02772248|10290486 +Toxicological Research,The Korean Society of Toxicology,19768257|22342753 +Toxicological Reviews,Springer-Verlag,11762551| +Toxicological Sciences,Oxford University Press,10966080|10960929 +Toxicologie Analytique et Clinique,Elsevier ,23520078| +Toxicology,Elsevier ,0300483X| +Toxicology and Applied Pharmacology,Elsevier ,0041008X|10960333 +Toxicology and Environmental Health Sciences,Springer-Verlag,20059752|22337784 +Toxicology and Industrial Health,SAGE Publications,07482337|14770393 +Toxicology in Vitro,Elsevier ,08872333| +Toxicology International,Medknow Publications,09716580| +Toxicology Letters,Elsevier ,03784274| +Toxicology Mechanisms and Methods,Informa UK (Taylor & Francis),15376516|15376524 +Toxicology Methods,Informa UK (Taylor & Francis),10517235|10917667 +Toxicology Reports,Elsevier ,22147500| +Toxicology Research,The Royal Society of Chemistry,2045452X|20454538 +Toxicon,Elsevier ,00410101|00410101 +Toxics,MDPI AG,23056304 +Toxin Reviews,Informa UK (Taylor & Francis),15569543|15569551 +Toxins,MDPI AG,20726651|20726651 +Trabajo Social,Universidad Nacional de Colombia,01234986|22565493 +Trabajo Social Hoy,Professional Association of Social Workers of Madrid,11340991|23402539 +Trabajos de Estadistica,Springer-Verlag,02138190| +Trabajos de Estadistica y de Investigacion Operativa,Springer-Verlag,00410241| +Trabajos de Investigacion Operativa,Springer-Verlag,02138204| +Trabajos de Prehistoria,Departmento de Publicaciones del CSIC,00825638|19883218 +Trabalho Educação e Saúde,SciELO,19817746 +Trabalhos em Linguística Aplicada,SciELO,01031813|01031813 +TrAC Trends in Analytical Chemistry,Elsevier ,01659936|01659936 +Trace Elements and Electrolytes,Dustri-Verlag Dr. Karl Feistle,09462104| +Trace Elements in Medicine (Moscow),RUSTEM (Russian Society for Trace Elements in Medicine),16079957|24136174 +Tracés,OpenEdition,17630061|19631812 +Tradicija ir dabartis,Klaipeda University Press,20293208| +Traditio,Muse - Johns Hopkins University Press,21665508 +Tradition and Discovery The Polanyi Society Periodical,Philosophy Documentation Center,10571027| +Traditional & Kampo Medicine,Wiley Blackwell (John Wiley & Sons),20534515| +Traditional Chinese Medicine,Hans Publishers,21666067|21666059 +Traditiones,Scientific Research Centre ZRC-SAZU,03520447|18556396 +Tradterm,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,0104639X|23179511 +Traduire,OpenEdition,0395773X|22729992 +Traffic,Wiley Blackwell (Blackwell Publishing),13989219|16000854 +Traffic Injury Prevention,Informa UK (Taylor & Francis),15389588|1538957X +Training & Development Journal,Diva Enterprises Private Limited,22310681|2231069X +Training and Education in Professional Psychology,American Psychological Association,19313918|19313926 +Training for Quality,Emerald (MCB UP ),09684875|00000000 +Training Strategies for Tomorrow,Emerald (MCB UP ),13697234| +Trait - d Union,Elsevier ,09809090| +Traitement du signal,Lavoisier SAS,07650019| +Trakia Journal of Science,Trakia University,13121723|13133551 +Trames Journal of the Humanities and Social Sciences,Estonian Academy Publishers,14060922| +TRaNS Trans -Regional and -National Studies of Southeast Asia,Cambridge University Press,2051364X|20513658 +TRANS-,OpenEdition,17783887|17783887 +Trans-pasando Fronteras,Universidad Icesi,22487212|23229152 +Trans/Form/Ação,SciELO,01013173|01013173 +Transaction of Scientific Papers of the Novosibirsk State Technical University,Novosibirsk State Technical University,23076879| +Transaction of the Visualization Society of Japan,The Visualization Society of Japan,13465260 +Transactional Analysis Journal,SAGE Publications,03621537| +Transactions,The Higher Education Academy,17450322 +Transactions (Institute of British Geographers),JSTOR,14784009| +Transactions American Geophysical Union,American Geophysical Union,00028606| +Transactions and Papers (Institute of British Geographers),JSTOR,14784017| +Transactions and Proceedings of the American Philological Association,JSTOR,00659711| +Transactions and Proceedings of the Modern Language Association of America,JSTOR,15393682| +Transactions in GIS,Wiley Blackwell (Blackwell Publishing),13611682|14679671 +Transactions of A Razmadze Mathematical Institute,Elsevier ,23468092| +Transactions of Japan Society of Kansei Engineering,Japan Society of Kansei Engineering,18840833|18845258 +Transactions of Japan Society of Spring Engineers,Japan Society of Spring Engineers,03856917|13481479 +Transactions of Korean Society of Automotive Engineers,The Korean Society of Automotive Engineers,12256382| +Transactions of Materials Processing,The Korean Society for Technology of Plasticity,1225696X| +Transactions of Nonferrous Metals Society of China,Elsevier ,10036326| +Transactions of the Academy of Science of St Louis,Smithsonian Institution Biodiversity Heritage Library,00963852| +Transactions of the Actuarial Society of Edinburgh,Cambridge University Press,20460562| +Transactions of the AIME,Society of Petroleum Engineers,00811696| +Transactions of the American Electrochemical Society,The Electrochemical Society,00964786| +Transactions of the American Entomological Society,BioOne (American Entomological Society),00028320| +Transactions of the American Entomological Society (1867-1877),JSTOR,08861145| +Transactions of the American Entomological Society and Proceedings of the Entomological Section of the Academy of Natural Sciences,JSTOR,1945516X| +Transactions of the American Fisheries Society,Informa UK (Taylor & Francis),00028487|15488659 +Transactions of the American Institute of Electrical Engineers,Institute of Electrical and Electronics Engineers,00963860| +Transactions of the American Institute of Electrical Engineers Part I Communication and Electronics,Institute of Electrical and Electronics Engineers,00972452| +Transactions of the American Institute of Electrical Engineers Part II Applications and Industry,Institute of Electrical and Electronics Engineers,00972185| +Transactions of the American Institute of Electrical Engineers Part III Power Apparatus and Systems,Institute of Electrical and Electronics Engineers,00972460| +Transactions of the American Mathematical Society,American Mathematical Society,00029947|10886850 +Transactions of the American Mathematical Society Series B,American Mathematical Society,23300000 +Transactions of the American Microscopical Society,JSTOR,00030023| +Transactions of the American Philological Association,Muse - Johns Hopkins University Press,15330699 +Transactions of the American Philological Association (1869-1896),JSTOR,02714442| +Transactions of the American Philological Association (1974-),JSTOR,03605949| +Transactions of the American Philosophical Society,JSTOR,00659746| +Transactions of the Annual Meetings of the Kansas Academy of Science,JSTOR,19330545| +Transactions of the Anthropological Society of London,JSTOR,1356014X| +Transactions of the ASABE,American Society of Agricultural and Biological Engineers,21510032|21510040 +Transactions of the ASAE,American Society of Agricultural and Biological Engineers,00012351|21510059 +Transactions of the Atomic Energy Society of Japan,Atomic Energy Society of Japan,13472879|21862931 +Transactions of the Botanical Society of Edinburgh,Informa UK (Taylor & Francis),03746607| +Transactions of the British Bryological Society,Maney Publishing,00681385| +Transactions of the British Mycological Society,Elsevier ,00071536| +Transactions of the Canadian Institute,Smithsonian Institution Biodiversity Heritage Library,0384823X| +Transactions of the Charles S Peirce Society,Indiana University Press,00091774|15589587 +Transactions of the Connecticut Academy of Arts and Sciences,Smithsonian Institution Biodiversity Heritage Library,00698989| +Transactions of the Edinburgh Geological Society,Geological Society of London,03716260|20529414 +Transactions of The Electrochemical Society,The Electrochemical Society,00964743| +Transactions of the Ethnological Society of London,JSTOR,13680366| +Transactions of the Faculty of Actuaries,Cambridge University Press,00713686| +Transactions of the Faraday Society,The Royal Society of Chemistry,00147672| +Transactions of the Geological Society of Glasgow,Geological Society of London,03717224|20529422 +Transactions of the Geological Society of London,Geological Society of London,20425295 +Transactions of the I R E Professional Group on Electronic Computers,Institute of Electrical and Electronics Engineers,21681740|21681759 +Transactions of the IMF,Informa UK (Taylor & Francis),00202967|00000000 +Transactions of the Indian Ceramic Society,Informa UK (Taylor & Francis),0371750X|21655456 +Transactions of the Indian Institute of Metals,Springer-Verlag,09722815|09751645 +Transactions of the Institute of Aviation,Index Copernicus International,05096669|23005408 +Transactions of the Institute of British Geographers,Wiley Blackwell (Blackwell Publishing),00202754|14755661 +Transactions of the Institute of Measurement and Control,SAGE Publications,01423312|14770369 +Transactions of the Institute of Radio Engineers Professional Group on Nuclear Science,Institute of Electrical and Electronics Engineers,02776278| +Transactions of the Institute of Systems Control and Information Engineers,"""The Institute of Systems, Control and Information Engineers""",13425668|2185811X +Transactions of the IRE Professional Group on Aeronautical and Navigational Electronics,Institute of Electrical and Electronics Engineers,21680167|21680175 +Transactions of the IRE Professional Group on Airborne Electronics,Institute of Electrical and Electronics Engineers,21680213|21680221 +Transactions of the IRE Professional Group on Antennas and Propagation,Institute of Electrical and Electronics Engineers,21680639|21680647 +Transactions of the IRE Professional Group on Audio,Institute of Electrical and Electronics Engineers,21682968 +Transactions of the IRE Professional Group on Broadcast and Television Receivers,Institute of Electrical and Electronics Engineers,21681619|21681627 +Transactions of the IRE Professional Group on Circuit Theory,Institute of Electrical and Electronics Engineers,01976389| +Transactions of the IRE Professional Group on Communications Systems,Institute of Electrical and Electronics Engineers,02776243| +Transactions of the IRE Professional Group on Component Parts,Institute of Electrical and Electronics Engineers,21681686|21681694 +Transactions of the IRE Professional Group on Electron Devices,Institute of Electrical and Electronics Engineers,01976370| +Transactions of the IRE Professional Group on Engineering Management,Institute of Electrical and Electronics Engineers,02761165| +Transactions of the IRE Professional Group on Industrial Electronics,Institute of Electrical and Electronics Engineers,02731959| +Transactions of the IRE Professional Group on Information Theory,Institute of Electrical and Electronics Engineers,21682690|21682704 +Transactions of the IRE Professional Group on Instrumentation,Institute of Electrical and Electronics Engineers,21681880|21681899 +Transactions of the IRE Professional Group on Medical Electronics,Institute of Electrical and Electronics Engineers,2168071X|21680728 +Transactions of the IRE Professional Group on Microwave Theory and Techniques,Institute of Electrical and Electronics Engineers,02761173| +Transactions of the IRE Professional Group on Quality Control,Institute of Electrical and Electronics Engineers,21682755|21682763 +Transactions of the IRE Professional Group on Radio Telemetry and Remote Control,Institute of Electrical and Electronics Engineers,21680329|21680337 +Transactions of the IRE Professional Group on Reliability and Quality Control,Institute of Electrical and Electronics Engineers,21682771|21682798 +Transactions of the IRE Professional Group on Ultrasonic Engineering,Institute of Electrical and Electronics Engineers,0277626X| +Transactions of the Iron and Steel Institute of Japan,The Iron and Steel Institute of Japan,00211583|18811183 +TRANSACTIONS OF THE JAPAN FLUID POWER SYSTEM SOCIETY,The Japan Fluid Power System Society,18803121|13497022 +Transactions of The Japan Institute of Electronics Packaging,Japan Institute of Electronics Packaging,18833365|18848028 +Transactions of the Japan Institute of Metals,The Japan Institute of Metals,00214434| +TRANSACTIONS OF THE JAPAN SOCIETY FOR AERONAUTICAL AND SPACE SCIENCES,Japan Society for Aeronautical and Space Sciences,05493811|21894205 +TRANSACTIONS OF THE JAPAN SOCIETY FOR AERONAUTICAL AND SPACE SCIENCES AEROSPACE TECHNOLOGY JAPAN,Japan Society for Aeronautical and Space Sciences,18840485 +TRANSACTIONS OF THE JAPAN SOCIETY FOR AERONAUTICAL AND SPACE SCIENCES SPACE TECHNOLOGY JAPAN,Japan Society for Aeronautical and Space Sciences,13473840 +Transactions of the Japan Society of Civil Engineers,Japan Society of Civil Engineers,00471798|18844944 +Transactions of the Japan Society of Mechanical Engineers,The Japan Society of Mechanical Engineers,00290270|21859485 +TRANSACTIONS OF THE JAPAN SOCIETY OF MECHANICAL ENGINEERS Series A,The Japan Society of Mechanical Engineers,03875008|18848338 +TRANSACTIONS OF THE JAPAN SOCIETY OF MECHANICAL ENGINEERS Series B,The Japan Society of Mechanical Engineers,03875016|18848346 +TRANSACTIONS OF THE JAPAN SOCIETY OF MECHANICAL ENGINEERS Series C,The Japan Society of Mechanical Engineers,03875024|18848354 +Transactions of the Japanese Society for Artificial Intelligence,The Japanese Society for Artificial Intelligence,13460714|13468030 +Transactions of the JSME (in Japanese),The Japan Society of Mechanical Engineers,21879761 +Transactions of the Kansas Academy of Science,BioOne (Kansas Academy of Science),00228443|19385420 +Transactions of the Kansas Academy of Science (1872-1880),JSTOR,19330537| +Transactions of the Kansas Academy of Science (1903-),JSTOR, +Transactions of the Korea Society of Geothermal Energy Engineers,Korea Society of Geothermal Energy Engineers,17386985| +Transactions of the Korean hydrogen and new energy society,The Korean Hydrogen and New Energy Society,17387264| +Transactions of the Korean Society for Noise and Vibration Engineering,The Korean Society for Noise and Vibration Engineering,15982785| +Transactions of the Korean Society of Mechanical Engineers A,The Korean Society of Mechanical Engineers,12264873| +Transactions of the Korean Society of Mechanical Engineers B,The Korean Society of Mechanical Engineers,12264881| +Transactions of the KSME C Industrial Technology and Innovation,The Korean Society of Mechanical Engineers,22883991 +Transactions of the Linnean Society of London,Wiley Blackwell (Blackwell Publishing),19459432|19459335 +Transactions of the Linnean Society of London 2nd Series Botany,Wiley Blackwell (Blackwell Publishing),19459459|19459351 +Transactions of the Linnean Society of London 2nd Series Zoology,Wiley Blackwell (Blackwell Publishing),19459440|19459343 +Transactions of the Linnean Society of London 3rd Series,Wiley Blackwell (Blackwell Publishing),19459467|1945936X +Transactions of the London Mathematical Society,Oxford University Press - London Mathematical Society,20524986 +Transactions of the Magnetics Society of Japan,The Magnetics Society of Japan,13467948|18846726 +Transactions of the Materials Research Society of Japan,The Materials Research Society of Japan,13823469|21881650 +Transactions of the Meeting of the American Surgical Association,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,00660833| +Transactions of The Microscopical Society & Journal,Wiley Blackwell (Blackwell Publishing),09627375| +Transactions of the Microscopical Society of London,Wiley Blackwell (Blackwell Publishing),20471483| +Transactions of the Modern Language Association of America,JSTOR,15393674| +Transactions of the Moscow Mathematical Society,American Mathematical Society,00771554|1547738X +Transactions of the New York Academy of Sciences,Wiley Blackwell (Blackwell Publishing),00287113| +Transactions of the Newcomen Society,Maney Publishing,03720187|17503523 +Transactions of the Operations Research Society of Japan,The Operations Research Society of Japan,13498940|21888280 +Transactions of the Optical Society,IOP Publishing,14754878| +Transactions of the Philological Society,Wiley Blackwell (Blackwell Publishing),00791636|1467968X +Transactions of the Royal Academy of Medicine in Ireland,Springer-Verlag,07902352| +Transactions of the Royal Asiatic Society of Great Britain and Ireland,Cambridge University Press,09504737| +Transactions of the Royal Entomological Society of London,Wiley Blackwell (Blackwell Publishing),00358894| +Transactions of the Royal Historical Society,Cambridge University Press,00804401|14740648 +Transactions of the Royal Society of Edinburgh,Cambridge University Press,00804568| +Transactions of the Royal Society of Edinburgh Earth Sciences,Cambridge University Press,02635933|14737116 +Transactions of the Royal Society of South Africa,Informa UK (Taylor & Francis),0035919X|21540098 +Transactions of the Royal Society of South Africa,Informa UK (Taylor & Francis),0035919X| +Transactions of the Royal Society of South Australia,Informa UK (Taylor & Francis),03721426|22040293 +Transactions of the Royal Society of Tropical Medicine and Hygiene,Oxford University Press,00359203|18783503 +Transactions of the San Diego Society of Natural History,Smithsonian Institution Biodiversity Heritage Library,00805947| +Transactions of the Society of CAD/CAM Engineers,Society of CAD/CAM Engineers,12260606| +Transactions of the Society of Information Storage Systems,The Society of Information Storage Systems,17386845| +Transactions of the Society of Instrument and Control Engineers,The Society of Instrument and Control Engineers,04534654|18838189 +Transactions of the Society of Mechanical Engineers,The Japan Society of Mechanical Engineers,21851123 +Transactions of the Society of Motion Picture Engineers,Society of Motion Picture and Television Engineers,00966460| +Transactions of the Society of Rheology,Society of Rheology,00380032| +Transactions of the South African Philosophical Society,Informa UK (Taylor & Francis),21560382 +Transactions of the VŠB - Technical University of Ostrava Civil Engineering Series,De Gruyter Open Sp. z o.o. ,12131962|18044824 +TRANSACTIONS of the VŠB – Technical University of Ostrava Safety Engineering Series,De Gruyter Open Sp. z o.o. ,18011764|18053238 +Transactions of the Zimbabwe Scientific Association,African Journals Online ,2542765 +Transactions of Tianjin University,Springer-Verlag,10064982|19958196 +Transactions on Electrical and Electronic Materials,The Korean Institute of Electrical and Electronic Material Engineers,12297607| +Transactions on Emerging Telecommunications Technologies,Wiley Blackwell (John Wiley & Sons),21613915| +Transactions on Machine Learning and Artificial Intelligence,Scholar Publishing,20547390 +Transactions on Maritime Science,Faculty of Maritime Studies Split,18483305|18483313 +Transactions on Networks and Communications,Scholar Publishing,20547420 +Transactions on Transport Sciences,De Gruyter Open Sp. z o.o. ,1802971X|18029876 +Transboundary and Emerging Diseases,Wiley Blackwell (Blackwell Publishing),18651674|18651682 +Transcription,Landes Bioscience,21541264|21541272 +Transcriptomics Open Access,OMICS Publishing Group,23298936 +Transcultural Psychiatry,SAGE Publications,13634615|00000000 +Transcultural Studies,Brill Academic Publishers,19306253|23751606 +Transfer European Review of Labour and Research,SAGE Publications,10242589|19967284 +Transfer Hydrogenation,Thieme Publishing Group,20500289 +Transfers,Berghahn Books,20454813|20454821 +Transformation An International Journal of Holistic Mission Studies,SAGE Publications,02653788| +Transformation Critical Perspectives on Southern Africa,Muse - Johns Hopkins University Press,17261368 +Transformation Groups,Springer-Verlag,10834362|1531586X +Transformations The Journal of Inclusive Scholarship and Pedagogy,The Pennsylvania State University Press,10525017| +Transformative Works and Cultures,Transformative Works and Cultures,19412258| +Transforming Anthropology,Wiley Blackwell (Blackwell Publishing),10510559|15487466 +Transforming Government People Process and Policy,Emerald (MCB UP ),17506166| +Transfusion,Wiley Blackwell (Blackwell Publishing),00411132|15372995 +Transfusion Alternatives in Transfusion Medicine,Wiley Blackwell (Blackwell Publishing),12959022|1778428X +Transfusion and Apheresis Science,Elsevier ,14730502| +Transfusion Clinique et Biologique,Elsevier ,12467820| +Transfusion Medicine,Wiley Blackwell (Blackwell Publishing),09587578|13653148 +Transfusion Medicine and Hemotherapy,S. Karger AG,16603796|16603818 +Transfusion Medicine Reviews,Elsevier ,08877963| +Transfusion Science,Elsevier ,09553886| +Transfusionsmedizin - Immunhämatologie Hämotherapie Immungenetik Zelltherapie,Thieme Publishing Group,21918805|21918813 +Transgender Health,Mary Ann Liebert,2380193X|2380193X +Transgenic Research,Springer-Verlag,09628819|15739368 +Transinformação,SciELO,01033786|23180889 +Transition,Indiana University Press,00411191|15278042 +Transition Metal Chemistry,Springer-Verlag,03404285|1572901X +Transition Studies Review,Springer-Verlag,16144007|16144015 +Transitional justice review,"""University of Western Ontario, Western Libraries""",19291973 +Translating the Americas,University of Michigan Library,2331687X +Translation,Landes Bioscience,2169074X|21690731 +Translation and Interpreting Studies,John Benjamins Publishing Company,19322798|18762700 +Translation and Literature,Edinburgh University Press,09681361|17500214 +Translation and Translanguaging in Multilingual Contexts,John Benjamins Publishing Company,23521805|23521813 +Translation Review,Informa UK (Taylor & Francis),07374836|21640564 +Translation Spaces,John Benjamins Publishing Company,22113711|2211372X +Translation Studies,Informa UK (Taylor & Francis),14781700| +Translation Studies,Informa UK (Taylor & Francis),14781700|17512921 +Translational and Clinical Pharmacology,Korean Society for Clinical Pharmacology and Therapeutics (KAMJE),22890882|23835427 +Translational Andrology and Urology,AME Publishing Company,22234683|22234691 +Translational Behavioral Medicine,Springer-Verlag,18696716|16139860 +Translational Biomedicine,Internet Medical Publishing,21720479|21720479 +Translational Clinical Biology,VRI Press,23302135 +Translational Developmental Psychiatry,Co-Action Publishing,20017022 +Translational Epigenomics,SAGE Publications,23344865| +Translational Gastroenterology and Hepatology,AME Publishing Company,24151289 +Translational Issues in Psychological Science,American Psychological Association,23322136|23322179 +Translational Materials Research,IOP Publishing,20531613 +Translational Medicine,OMICS Publishing Group,21611025 +Translational Neurodegeneration,Springer (Biomed Central Ltd.),20479158|20479158 +Translational Neuroscience,De Gruyter Open Sp. z o.o. ,20813856|20816936 +Translational Oncogenomics,"""Libertas Academica, Ltd.""",11772727 +Translational Oncology,Elsevier ,19365233| +Translational Proteomics,Elsevier ,22129634| +Translational Proteomics,Elsevier ,22129626| +Translational Psychiatry,Nature Publishing Group,21583188 +Translational Research,Elsevier ,19315244| +Translational Research in Anatomy,Elsevier ,2214854X| +Translational Respiratory Medicine,Springer (Biomed Central Ltd.),22130802|22130802 +Translational Respiratory Medicine,Springer (Biomed Central Ltd.),22130802| +Translational Stroke Research,Springer-Verlag,18684483|1868601X +Translational Vision Science & Technology,Association for Research in Vision and Opthalmology,21642591|21642591 +Translationes,De Gruyter Open Sp. z o.o. ,20672705 +Translocal Chinese East Asian Perspectives,Brill Academic Publishers,24522007|24522015 +Transmission and Distribution Engineering and Technology,Hans Publishers,23251565|23251573 +Transnational Cinemas,Informa UK (Taylor & Francis),20403526|20403534 +Transnational Corporation Review,Informa UK (Taylor & Francis),19186444|19252099 +Transnational Corporations,United Nations Publications,2076099X +Transnational Environmental Law,Cambridge University Press,20471025|20471033 +Transnational Legal Theory,Informa UK (Taylor & Francis),20414005|20414013 +Transnational Social Review,Informa UK (Taylor & Francis),21931674|2196145X +TransNav the International Journal on Marine Navigation and Safety of Sea Transportation,Faculty of Navigation,20836473|20836481 +Transplant Immunology,Elsevier ,09663274| +Transplant Infectious Disease,Wiley Blackwell (Blackwell Publishing),13982273|13993062 +Transplant International,Wiley Blackwell (Blackwell Publishing),09340874|14322277 +Transplant Research and Risk Management,Dove Medical Press,11791616 +Transplantation Direct,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,23738731| +Transplantation Journal,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,00411337| +Transplantation Proceedings,Elsevier ,00411345|00411345 +Transplantation Research,Springer (Biomed Central Ltd.),20471440|20471440 +Transplantation Reviews,Elsevier ,0955470X| +Transplantation Technology,Herbert Publications,20536623 +Transport,Vilnius Gediminas Technical University,16484142|16483480 +Transport and Aerospace Engineering,De Gruyter Open Sp. z o.o. ,2255968X +Transport and Telecommunication Journal,De Gruyter Open Sp. z o.o. ,14076160|14076179 +Transport in Porous Media,Springer-Verlag,01693913|15731634 +Transport Logistics,Brill Academic Publishers,09299645|15685705 +Transport of the Urals,Ural State University of Railway Transport (USURT),18159400|18159400 +Transport Policy,Elsevier ,0967070X| +Transport Problems,Silesian University of Technology,18960596|2300861X +Transport Reviews,Informa UK (Taylor & Francis),01441647|14645327 +Transport Theory and Statistical Physics,Informa UK (Taylor & Francis),00411450|15322424 +Transportation,Springer-Verlag,00494488|15729435 +Transportation Geotechnics,Elsevier ,22143912| +Transportation Human Factors,Informa UK (Taylor & Francis),10939741|10939741 +Transportation in Developing Economies,Springer-Verlag,21999287|21999295 +Transportation Infrastructure Geotechnology,Springer-Verlag,21967202|21967210 +Transportation Journal,The Pennsylvania State University Press,00411612|2157328X +Transportation Letters,Maney Publishing,19427867|19427875 +Transportation Planning and Technology,Informa UK (Taylor & Francis),03081060|10290354 +Transportation Research,Elsevier ,00411647| +Transportation Research Part A General,Elsevier ,01912607| +Transportation Research Part A Policy and Practice,Elsevier ,09658564| +Transportation Research Part B Methodological,Elsevier ,01912615| +Transportation Research Part C Emerging Technologies,Elsevier ,0968090X| +Transportation Research Part D Transport and Environment,Elsevier ,13619209| +Transportation Research Part E Logistics and Transportation Review,Elsevier ,13665545| +Transportation Research Part F Traffic Psychology and Behaviour,Elsevier ,13698478| +Transportation Research Procedia,Elsevier ,23521465| +Transportation Research Record Journal of the Transportation Research Board,Transportation Research Board,03611981| +Transportation Science,Institute for Operations Research and the Management Sciences,00411655|15265447 +TRANSPORTES,Lepidus Tecnologia,22371346 +Transportmetrica,Informa UK (Taylor & Francis),18128602|19440987 +Transportmetrica A Transport Science,Informa UK (Taylor & Francis),23249935|23249943 +Transportmetrica B Transport Dynamics,Informa UK (Taylor & Francis),21680566|21680582 +Transportrecht,Walter de Gruyter GmbH,0174559X|23662174 +Transposition,OpenEdition,21106134 +Transtext(e)s Transcultures 跨文本跨文化,OpenEdition,17712084|21052549 +transversal,Walter de Gruyter GmbH,1607629X|23917385 +Transversalités,CAIRN,12869449|22593799 +Transylvanian Review of Systematical and Ecological Research,De Gruyter Open Sp. z o.o. ,18417051|23443219 +Trashumante Revista Americana de Historia Social,Universidad de Antioquia,23229381| +Trastornos Adictivos,Elsevier ,15750973| +Trauma,SAGE Publications,14604086|14770350 +Trauma Case Reports,Elsevier ,23526440| +Trauma Monthly,Kowsar Medical Institute,22517464|22517472 +Trauma Quarterly,Brill Academic Publishers,07436637|15685713 +Trauma und Berufskrankheit,Springer-Verlag,14366274|14366282 +Trauma Violence & Abuse,SAGE Publications,15248380|15528324 +Traumatology An International Journal,American Psychological Association,15347656|10859373 +Travail et emploi,OpenEdition,1775416X|1775416X +Travail genre et sociétés,CAIRN,12946303|21052174 +Travailler,CAIRN,16205340|21025150 +Travaux de linguistique,CAIRN,00826049|17821576 +Travaux du Muséum National d’Histoire Naturelle “Grigore Antipa”,De Gruyter Open Sp. z o.o. ,12232254|12232254 +Travel Behaviour and Society,Elsevier ,2214367X| +Travel Medicine and Infectious Disease,Elsevier ,14778939| +Travesia,Informa UK (Taylor & Francis),09658343| +Travessia,Universidade Federal de Santa Catarina,1019570 +Treatise Online,The University of Kansas,21534012 +Treatments in Endocrinology,Springer-Verlag,11756349| +Treatments in Respiratory Medicine,Springer-Verlag,11763450| +Treballs d Arqueologia,Universitat Autonoma de Barcelona,11349263|23396490 +Tree Genetics & Genomes,Springer-Verlag,16142942|16142950 +Tree Genetics and Molecular Breeding,"""Sophia Publishing Group, Inc.""",19275781 +Tree Physiology,Oxford University Press,0829318X|17584469 +Tree-Ring Research,BioOne (Tree-Ring Society),15361098|21624585 +TreeDimensional,Centro Cientifico Conhecer,24479829 +Trees,Springer-Verlag,09311890|14322285 +Tréma,OpenEdition,1167315X|21070997 +Trendovi u poslovanju,Centre for Evaluation in Education and Science,2334816X| +Trends in Agricultural Economics,Science Alert,19947933| +Trends in Amplification,SAGE Publications,10847138|19405588 +Trends in Anaesthesia and Critical Care,Elsevier ,22108440| +Trends in Applied Sciences Research,Science Alert,18193579|18193579 +Trends in Bacteriology,Herbert Publications,20574711 +Trends in Biochemical Sciences,Elsevier ,09680004| +Trends in Bioinformatics,Science Alert,19947941| +Trends in Biotechnology,Elsevier ,01677799| +Trends in Cancer,Elsevier ,24058033| +Trends in Cancer,Elsevier ,24058033| +Trends in Cardiovascular Medicine,Elsevier ,10501738| +Trends in Cell Biology,Elsevier ,09628924| +Trends in Classics,Walter de Gruyter GmbH,18667473|18667481 +Trends in Cognitive Sciences,Elsevier ,13646613| +Trends in Communication,Informa UK (Taylor & Francis),13838857|15427439 +Trends in Ecology & Evolution,Elsevier ,01695347| +Trends in Endocrinology and Metabolism,Elsevier ,10432760| +Trends in Environmental Analytical Chemistry,Elsevier ,22141588| +Trends in Evolutionary Biology,PAGEPress Publications,20362641|2036265X +Trends in Food Science & Technology,Elsevier ,09242244| +Trends in Genetics,Elsevier ,01689525| +Trends in Glycoscience and Glycotechnology,Forum: Carbohydrates Coming of Age,09157352|18832113 +Trends in Hearing,SAGE Publications,23312165|23312165 +Trends in History,"""Informa UK (Haworth Press, Inc.,)""",0270790X| +Trends in Horticultural Research,Science Alert,19960735| +Trends in Immunology,Elsevier ,14714906| +Trends in Medical Research,Science Alert,18193587| +Trends in Microbiology,Elsevier ,0966842X| +Trends in Molecular Medicine,Elsevier ,14714914| +Trends in Molecular Sciences,Science Alert,19945469| +Trends in Neuroscience and Education,Elsevier ,22119493| +Trends in Neurosciences,Elsevier ,01662236| +Trends in Nursing,Stellenbosch University - Trends in Nursing,23138467 +Trends in Organized Crime,Springer-Verlag,10844791|19364830 +Trends in Parasitology,Elsevier ,14714922| +Trends in Pharmacological Sciences,Elsevier ,01656147| +Trends in Plant Science,Elsevier ,13601385| +Trends in Psychiatry and Psychotherapy,SciELO,22376089|22380019 +Trends in Renewable Energy,Future Energy Service and Publishing,23762136|23762144 +TRENDS IN THE SCIENCES,Japan Science Support Foundation,13423363|18847080 +Trends in Urology & Men s Health,Wiley Blackwell (John Wiley & Sons),20443730| +Trends in Urology Gynaecology & Sexual Health,Wiley Blackwell (John Wiley & Sons),13625306|19312288 +Trends in Vector Research and Parasitology,Herbert Publications,20549881 +Trials,Springer (Biomed Central Ltd.),17456215|17456215 +Trials in Vaccinology,Elsevier ,18794378| +Tribhuvan University Journal,Nepal Journals Online, +Tribology,Elsevier ,00412678| +Tribology - Materials Surfaces & Interfaces,Informa UK (Taylor & Francis),17515831|1751584X +Tribology International,Elsevier ,0301679X| +Tribology Letters,Springer-Verlag,10238883|15732711 +Tribology Online,Japanese Society of Tribologists,18812198 +Tribology Transactions,Informa UK (Taylor & Francis),10402004|1547397X +Tribotest,Wiley Blackwell (John Wiley & Sons),13544063|1557685X +Trimonthly Report Ohio Herpetological Society,JSTOR,1557122X| +Triple Helix,Springer (Biomed Central Ltd.),21971927 +Triticeae Genomics and Genetics,"""Sophia Publishing Group, Inc.""",1925203X +Trivium Estudos Interdisciplinares,Universidade Veiga de Almeida,21764891| +Troianalexandrina,"""Brepols Publishers, NV""",15775003| +Trollopian,University of California Press,15264211| +Tropical Agricultural Research,Sri Lanka Journals Online ,10161422| +Tropical Agricultural Research and Extension,Sri Lanka Journals Online ,13913646| +Tropical Animal Health and Production,Springer-Verlag,00494747|15737438 +Tropical Diseases Travel Medicine and Vaccines,Springer (Biomed Central Ltd.),20550936 +Tropical Doctor,SAGE Publications,00494755|17581133 +Tropical Freshwater Biology,African Journals Online ,7950101 +Tropical gastrology,EMED Publishing,0250636X| +Tropical Grasslands - Forrajes Tropicales,Tropical Grasslands - Forrajes Tropicales,23463775 +Tropical Journal of Animal Science,African Journals Online ,11194308 +Tropical Journal of Health Sciences,African Journals Online ,11174153 +Tropical Journal of Medical Research,Medknow Publications,11190388|11190388 +Tropical Journal of Obstetrics and Gynaecology,African Journals Online ,1895117 +Tropical Journal of Pharmaceutical Research,African Journals Online ,15965996|15969827 +Tropical Medicine & International Health,Wiley Blackwell (Blackwell Publishing),13602276|13653156 +Tropical Medicine & Surgery,OMICS Publishing Group,23299088 +Tropical Medicine and Health,Japanese Society of Tropical Medicine,13488945|13494147 +Tropical Oceanography,Tropical Oceanography,16793013| +Tropical Parasitology,Medknow Publications,00000205| +Tropical Pest Management,Informa UK (Taylor & Francis),01436147| +Tropical Plant Biology,Springer-Verlag,19359756|19359764 +Tropical Plant Pathology,Springer-Verlag,19825676 +Tropical Science,Wiley Blackwell (John Wiley & Sons),00413291|15569179 +Tropical Technology Journal,Springer - Global Science Journals,21998698 +Tropical Veterinarian,African Journals Online ,7944845 +Tropical Zoology,Informa UK (Taylor & Francis),03946975|19709528 +Tropics,The Japan Society of Tropical Ecology,0917415X|18825729 +Tropos,UCL Press,20572212 +Trusts & Trustees,Oxford University Press,13631780|17522110 +TsAGI Science Journal,Begell House Inc.,19482590| +Tschermaks Mineralogische und Petrographische Mittheilungen,Springer-Verlag,03691497| +Tsinghua Science & Technology,Institute of Electrical and Electronics Engineers,10070214|10070214 +TSQ Transgender Studies Quarterly,Duke University Press,23289252|23289260 +Tsukuba Journal of Mathematics,"""Institute of Mathematics, University of Tsukuba""",03874982| +Tsvetnye Metally,Ore and Metals Publishing House,03722929| +TSW Development & Embryology,Hindawi (The Scientific World),17494958 +TSW Holistic Health & Medicine,Hindawi (The Scientific World),1749494X +TSW Urology,Hindawi (The Scientific World),17478049 +TTR traduction terminologie rédaction,Consortium Erudit,08358443|17082188 +Tubercle,Elsevier ,00413879| +Tubercle and Lung Disease,Elsevier ,09628479| +Tuberculin Skin Test in Children,Logos Medical Publication,13029940|13088491 +Tuberculosis,Elsevier ,14729792| +Tuberculosis and Respiratory Diseases,The Korean Academy of Tuberculosis and Respiratory Diseases (KAMJE),03780066|20056184 +Tuberculosis Research and Treatment,Hindawi Publishing Corporation,2090150X|20901518 +Tuberkuloz ve Toraks,Bilimsel Tip Publishing House,04941373| +Tulane Studies in Philosophy,Philosophy Documentation Center,00826766| +Tulane studies in zoology,Smithsonian Institution Biodiversity Heritage Library,00826782| +Tulane studies in zoology and botany,Smithsonian Institution Biodiversity Heritage Library,00909246| +Tulsa Studies in Women s Literature,JSTOR,07327730| +TULSSAA Journal,Nepal Journals Online, +Tumor Biology,Springer-Verlag,10104283|14230380 +Tumor Microenvironment and Therapy,De Gruyter Open Sp. z o.o. ,22991123 +TumorDiagnostik & Therapie,Thieme Publishing Group,0722219X|14391279 +Tumori Journal,"""Wichtig Publishing, SRL""",03008916| +Tumultes,CAIRN,1243549X|21182892 +Tuning Journal for Higher Education,University of Deusto,23408170|23863137 +Tunnel and Underground Space,Korean Society for Rock Mechanics,12251275| +Tunnelling and Underground Space Technology,Elsevier ,08867798| +TURAN-SAM(TURAN Stratejik Araştırmalar Merkezi),Turan-Sam ,13088041|13094033 +Turcica,Peeters Publishers,826847 +Turczaninowia,Altai State University,15607259|15607267 +Turismo - Visão e Ação,Editora UNIVALI,14156393|19837151 +Turismo e Sociedade,Universidade Federal do Parana,19835442 +Turismo y Sociedad,Universidad Externado de Colombia,01207555|2346206X +Turisticko poslovanje,Centre for Evaluation in Education and Science,03543099| +TÜRK COĞRAFYA DERGİSİ,Turkish Geographical Review,13025856|13089773 +Türk Fizyoterapi ve Rehabilitasyon Dergisi/Turkish Journal of Physiotherapy and Rehabilitation,Springer - Global Science Journals,21480109 +Turk Kardiyoloji Dernegi Arsivi-Archives of the Turkish Society of Cardiology,Turkish Society of Cardiology,10165169|13084488 +Türk Kütüphaneciliği,Ankara University,13000039| +Türk Mikrobiyoloji Cemiyeti Dergisi,Logos Medical Publication,02582171| +Türk Nöroloi Dergisi,Galenos Yayinevi,1301062X| +Türk Nöroloji Dergisi,Galenos Yayinevi,13092545| +Türk Oftalmoloji Dergisi,Galenos Yayinevi,13000659| +Türk Ortopedi ve Travmatoloji Birliği Derneği,TOTBID Turk Ortopedi ve Travmatoloji Birligi Dernegi,13036343|13036343 +Türk Osteoporoz Dergisi,Galenos Yayinevi,21463816| +Turk Otolarengoloji Arsivi/Turkish Archives of Otolaryngology,AVES Publishing Co.,03044793|13036289 +Türk Pediatri Arşivi,AVES Publishing Co.,13060015|13086278 +Türk Radyoloji Dergisi/Turkish Journal of Radiology,AVES Publishing Co.,21499918 +Türk Radyoloji Seminerleri,AVES Publishing Co.,21481202|21481210 +Türk Tarih Eğitimi Dergisi,Turkish History Education Journal,21474516 +Türk Üroloji Dergisi/Turkish Journal of Urology,AVES Publishing Co.,13005804|13084631 +Türk Üroloji Seminerleri/Turkish Urology Seminars,AVES Publishing Co.,13096516|13097199 +Türk Yoğun Bakım Derneği Dergisi,Galenos Yayinevi,21466416| +TURKDERM,Galenos Yayinevi,1019214X| +Turkish Association of Pediatric Surgeons,Logos Medical Publication,13055194| +Turkish Bulletin of Hygiene and Experimental Biology,"""LookUs Bilisim, Ltd.""",03779777|13082523 +Turkish Historical Review,Brill Academic Publishers,18775454|18775462 +TURKISH JOURNAL OF AGRICULTURE AND FORESTRY,Scientific and Technological Research Council of Turkey,1300011X|13036173 +Turkish Journal of Analysis and Number Theory,"""Science and Education Publishing Co., Ltd.""",23331100| +Turkish Journal of Anesthesia and Reanimation,AVES Publishing Co.,13040871|1305614X +Turkish Journal of Biochemistry,Walter de Gruyter GmbH,02504685|1303829X +Turkish Journal of Bioethics,"""LookUs Bilisim, Ltd.""",21485917| +TURKISH JOURNAL OF BIOLOGY,Scientific and Technological Research Council of Turkey,13000152|13036092 +TURKISH JOURNAL OF BOTANY,Scientific and Technological Research Council of Turkey,1300008X|13036106 +Turkish Journal of Cerebrovascular Diseases,"""LookUs Bilisim, Ltd.""",21469113|21469113 +TURKISH JOURNAL OF CHEMISTRY,Scientific and Technological Research Council of Turkey,13000527|13036130 +Turkish Journal of Clinics and Laboratory,Turkish Journal of Clinics and Laboratory,13097237|21498296 +Turkish Journal of Computer and Mathematics Education (TURCOMAT),Turkish Journal of Computer and Mathematics Education,13094653| +Turkish Journal of Dermatology / Türk Dermatoloji Dergisi,Galenos Yayinevi,13077635|13085255 +TURKISH JOURNAL OF EARTH SCIENCES,Scientific and Technological Research Council of Turkey,13000985|1303619X +Turkish Journal of Education,Turkish Journal of Education,21472858|21472858 +TURKISH JOURNAL OF ELECTRICAL ENGINEERING & COMPUTER SCIENCES,Scientific and Technological Research Council of Turkey,13000632|13036203 +Turkish Journal of Emergency Medicine,Elsevier ,13047361| +Turkish Journal of Endocrinology and Metabolism,Galenos Yayinevi,13012193| +TURKISH JOURNAL OF ENGINEERING AND ENVIRONMENTAL SCIENCES,Scientific and Technological Research Council of Turkey,13000160|13036157 +Turkish Journal of Entomology,Turkish Journal of Entomology,10106960| +Turkish Journal of Family Medicine & Primary Care,ScopeMed International Medical Journal Managment and Indexing System,13072048 +Turkish Journal Of Field Crops,Turkish Journal of Field Crops,13011111| +Turkish Journal of Fisheries and Aquatic Sciences,Turkish Journal of Fisheries and Aquatic Sciences,13032712| +Turkish Journal of Forensic Medicine,"""LookUs Bilisim, Ltd.""",10185275| +Turkish Journal of Forestry | Türkiye Ormancılık Dergisi,Turkish Journal of Forestry,21492174|21493898 +Turkish Journal of Hematology,Galenos Yayinevi,13007777|13085263 +Turkish Journal of Immunology,Baycinar Tibbi Yayincilik,21478325|21478325 +TURKISH JOURNAL OF ISLAMIC ECONOMICS,Turkish Journal of Islamic Economists,21479054|21483809 +TURKISH JOURNAL OF MATHEMATICS,Scientific and Technological Research Council of Turkey,13000098|13036149 +TURKISH JOURNAL OF MEDICAL SCIENCES,Scientific and Technological Research Council of Turkey,13000144|13036165 +Turkish Journal of Oncology,"""LookUs Bilisim, Ltd.""",13007467| +Turkish Journal of Orthodontics,Turkish Journal of Orthodontics,13003550| +Turkish Journal of Parasitology,AVES Publishing Co.,13006320|21463077 +Turkish Journal of Pathology,Federation of Turkish Pathology Societies,10185615|13095730 +Turkish Journal of Pediatric Disease,Turkish Journal of Pediatric Disease,13074490|21483566 +Turkish Journal of Pediatric Emergency and Intensive Care Medicine,"""LookUs Bilisim, Ltd.""",21462399|21487332 +Turkish Journal of Pharmaceutical Sciences,"""LookUs Bilisim, Ltd.""",1304530X| +TURKISH JOURNAL OF PHYSICS,Scientific and Technological Research Council of Turkey,13000101|13036122 +Turkish Journal of Psychiatry,Turkish Association of Nervous and Mental Health,13002163| +Turkish Journal of Rheumatology,Baycinar Tibbi Yayincilik,13090291|13090283 +Turkish Journal of Sport and Exercise,Turkish Journal of Sport and Exercise,21475652|21475652 +Turkish Journal of Surgery,AVES Publishing Co.,13000705|13088521 +Turkish Journal of Thoracic and Cardiovascular Surgery,Baycinar Tibbi Yayincilik,13015680|13015680 +Turkish Journal of Trauma and Emergency Surgery,"""LookUs Bilisim, Ltd.""",1306696X|13077945 +TURKISH JOURNAL OF VETERINARY AND ANIMAL SCIENCES,Scientific and Technological Research Council of Turkey,13000128|13036181 +TURKISH JOURNAL OF ZOOLOGY,Scientific and Technological Research Council of Turkey,13000179|13036114 +Turkish Nephrology Dialysis Transplantation,Turkish Nephrology Dialysis Transplantation,13007718| +Turkish Neurosurgery,Turkish Neurological Society,10195149| +Turkish Online Journal of Distance Education,Turkish Online Journal of Distance Education,13026488| +Turkish Online Journal of Qualitative Inquiry,Tukish Online Journal of Qualitative Inquiry,13096591 +Turkish Studies,Informa UK (Taylor & Francis),14683849|17439663 +Turkish Thoracic Journal/Türk Toraks Dergisi,Bilimsel Tip Publishing House,13027808|13085387 +Türkiyat Mecmuası,Turkiyat Mecmuasi,00857432| +Türkiye Aile Hekimliği Dergisi,Turkish Family Physicians Association,13036637|1308531X +Türkiye Entomoloji Bülteni,Turkish Bulleting of Entomology,2146975X| +Türkiye Fiziksel Tıp ve Rehabilitasyon Dergisi,Baycinar Tibbi Yayincilik,13020234|13086316 +Türkiye Halk Sağlığı Dergisi,Turkish Journal of Public Health,13041096|13041088 +Turkiye Klinikleri Archives of Lung,Ortadogu Reklam Tanitim Yayincilik Turizm Egitim Insaat Sanayi ve Ticaret A.S.,13090119|21468958 +Turkiye Klinikleri Cardiovascular Sciences,Ortadogu Reklam Tanitim Yayincilik Turizm Egitim Insaat Sanayi ve Ticaret A.S.,13067656|21469032 +Turkiye Klinikleri Journal of Anesthesiology Reanimation,Ortadogu Reklam Tanitim Yayincilik Turizm Egitim Insaat Sanayi ve Ticaret A.S.,13040499|2146894X +Turkiye Klinikleri Journal of Biostatistics,Ortadogu Reklam Tanitim Yayincilik Turizm Egitim Insaat Sanayi ve Ticaret A.S.,13087894|21468877 +Turkiye Klinikleri Journal of Case Reports,Ortadogu Reklam Tanitim Yayincilik Turizm Egitim Insaat Sanayi ve Ticaret A.S.,13000284|21479291 +Turkiye Klinikleri Journal of Dental Sciences,Ortadogu Reklam Tanitim Yayincilik Turizm Egitim Insaat Sanayi ve Ticaret A.S.,13007734|21468966 +Turkiye Klinikleri Journal of Dental Sciences Cases,Ortadogu Reklam Tanitim Yayincilik Turizm Egitim Insaat Sanayi ve Ticaret A.S.,21493375 +Turkiye Klinikleri Journal of Dermatology,Ortadogu Reklam Tanitim Yayincilik Turizm Egitim Insaat Sanayi ve Ticaret A.S.,13000330|21469016 +Turkiye Klinikleri Journal of Endocrinology,Ortadogu Reklam Tanitim Yayincilik Turizm Egitim Insaat Sanayi ve Ticaret A.S.,13040529|21468923 +Turkiye Klinikleri Journal of Forensic Medicine,Ortadogu Reklam Tanitim Yayincilik Turizm Egitim Insaat Sanayi ve Ticaret A.S.,13045040|21468931 +Turkiye Klinikleri Journal of Gastroenterohepatology,Ortadogu Reklam Tanitim Yayincilik Turizm Egitim Insaat Sanayi ve Ticaret A.S.,13000322|21468974 +Turkiye Klinikleri Journal of Gynecology and Obstetrics,Ortadogu Reklam Tanitim Yayincilik Turizm Egitim Insaat Sanayi ve Ticaret A.S.,13000306|21469024 +Turkiye Klinikleri Journal of Medical Ethics-Law and History,Ortadogu Reklam Tanitim Yayincilik Turizm Egitim Insaat Sanayi ve Ticaret A.S.,13034332|21468982 +Turkiye Klinikleri Journal of Medical Sciences,Ortadogu Reklam Tanitim Yayincilik Turizm Egitim Insaat Sanayi ve Ticaret A.S.,13000292|21469040 +Turkiye Klinikleri Journal of Neurology,Ortadogu Reklam Tanitim Yayincilik Turizm Egitim Insaat Sanayi ve Ticaret A.S.,13040537|21468907 +Turkiye Klinikleri Journal of Nursing,Ortadogu Reklam Tanitim Yayincilik Turizm Egitim Insaat Sanayi ve Ticaret A.S.,1308092X|21468893 +Turkiye Klinikleri Journal of Ophthalmology,Ortadogu Reklam Tanitim Yayincilik Turizm Egitim Insaat Sanayi ve Ticaret A.S.,13000365|21469008 +Turkiye Klinikleri Journal of Pediatrics,Ortadogu Reklam Tanitim Yayincilik Turizm Egitim Insaat Sanayi ve Ticaret A.S.,13000381|21468990 +Turkiye Klinikleri Journal of Pharmacy Sciences,Ortadogu Reklam Tanitim Yayincilik Turizm Egitim Insaat Sanayi ve Ticaret A.S.,2146944X|21469660 +Turkiye Klinikleri Journal of Sports Sciences,Ortadogu Reklam Tanitim Yayincilik Turizm Egitim Insaat Sanayi ve Ticaret A.S.,13080938|21468885 +Turkiye Klinikleri Journal of Urology,Ortadogu Reklam Tanitim Yayincilik Turizm Egitim Insaat Sanayi ve Ticaret A.S.,1309632X|21468869 +Turkiye Klinikleri Journal of Veterinary Sciences,Ortadogu Reklam Tanitim Yayincilik Turizm Egitim Insaat Sanayi ve Ticaret A.S.,13096907|21468850 +Türkiye Tarımsal Araştırmalar Dergisi,Turkish Journal of Agricultural Research (TUTAD),21482306| +Türklük Bilimi Araştırmaları,Journal of Turkology Research,13007874| +Türkoloji Dergisi,Ankara University,02552981|02552981 +Turtle and Tortoise Newsletter,BioOne (Chelonian Conservation and Biology Journal),15263096|19434189 +TurtleLog Online Newsletter of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group,Chelonian Research Foundation,19477635|19477635 +Turyzm,De Gruyter Open Sp. z o.o. ,08675856|20806922 +TV/Series,OpenEdition,22660909 +TVN,Boom Uitgevers Den Haag,18711391| +Twentieth Century British History,Oxford University Press,09552359|14774674 +Twentieth Century Literature,Duke University Press,0041462X|23258101 +twentieth century music,Cambridge University Press,14785722|14785730 +Twentieth-Century China,Maney Publishing,15215385|19405065 +twentieth-century music,Cambridge University Press,14785722|14785730 +Twenty-First Century Society,Informa UK (Taylor & Francis),17450144|17450152 +Twin Research,Cambridge University Press,13690523|00000000 +Twin Research and Human Genetics,Cambridge University Press,18324274|00000000 +Two new species of marsupial frogs (Anura Hylidae Gastrotheca) from the Cordillera Oriental in central Peru / by William E Duellman [et al ],Smithsonian Institution Biodiversity Heritage Library,10940782| +Txt Leituras Transdisciplinares de Telas e Textos,Faculdade de Letras da UFMG,18098150 +TYCHE - Contributions to Ancient History Papyrology and Epigraphy,Verlag Holzhausen GmbH,10109161|24095540 +Tydskrif vir Geesteswetenskappe,Academy of Science of South Africa,00414751|22247912 +Tydskrif vir letterkunde,African Journals Online ,0041476X +Tytuł czasopisma,Index Copernicus International,22295100|10090460 +Tzu Chi Medical Journal,Elsevier ,10163190| +U S -Japan Women s Journal,Muse - Johns Hopkins University Press,23305029 +U S Catholic Historian,Muse - Johns Hopkins University Press,19478224 +Ubiquitous Learning An International Journal,Common Ground Publishing,18359795| +Ubiquity,Association for Computing Machinery,15302180 +Ubiquity The Journal of Pervasive Media,Intellect,20456271|2045628X +Uchenye Zapiski RGSU,Russian State Social University,20715323| +Uchenye zapiski universiteta imeni P F Lesgafta,"""Lesgaft National State University of Physical Education, Sport and Health, St. Petersburg """,19944683| +UD y la GEOMÁTICA,Universidad Distrital Francisco Jose de Caldas,20114990|23448407 +Ufimskii Matematicheskii Zhurnal,Institute of Mathematics USC RAS,20741863|23040122 +Uganda Journal,African Journals Online ,0041574X +Uganda Journal of Agricultural Sciences,African Journals Online ,10260919|24106909 +Ugdymo psichologija,Lithuanian University of Educational Sciences,1392639X|23516585 +Ugol,"""Ugol Journal Edition, LLC""",00415790|24128333 +UGOLOVNAYa YuSTITsIYa,Tomsk State University,23088451| +UIC Research Journal,University of the Immaculate Conception,16560604|22446532 +Uirusu,The Japanese Association for Virology,00426857|18843433 +UJAH Unizik Journal of Arts and Humanities,African Journals Online ,15951413 +UK Journal of Pharmaceutical Biosciences,UK Journal of Pharmaceutical and Biosciences,23479442|23479442 +Ukrainian Botanical Journal,Co. Ltd. Ukrinformnauka,03724123|03724123 +Ukrainian geographical journal,Co. Ltd. Ukrinformnauka,15614980| +Ukrainian Journal of Physical Optics,Institute of Physical Optics,16091833|18162002 +Ukrainian Journal of Physics,Co. Ltd. Ukrinformnauka,20710186|20710194 +Ukrainian Mathematical Journal,Springer-Verlag,00415995|15739376 +Ulakbilge Dergisi,Sada Institute,21480451 +Ulcers,Hindawi Publishing Corporation,20901526|20901534 +Ultima década,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7182236 +Ultramicroscopy,Elsevier ,03043991| +Ultraschall in der Medizin - European Journal of Ultrasound,Thieme Publishing Group,01724614|14388782 +Ultrasonic Imaging,SAGE Publications,01617346|10960910 +Ultrasonics,Elsevier ,0041624X| +Ultrasonics Sonochemistry,Elsevier ,13504177| +ULTRASONOGRAPHY,Korean Society of Ultrasound in Medicine,22885919|22885943 +Ultrasound,Publishing House Technologija,13922114| +Ultrasound,SAGE Publications,1742271X|17431344 +Ultrasound Clinics,Elsevier ,1556858X| +Ultrasound in Medicine & Biology,Elsevier ,03015629| +Ultrasound in Obstetrics and Gynecology,Wiley Blackwell (John Wiley & Sons),09607692|14690705 +Ultrasound International Open,Thieme Publishing Group,21997152 +Ultrasound Quarterly,Ovid Technologies (Wolters Kluwer) - Lippincott Williams & Wilkins,08948771| +Ultrastructural Pathology,Informa UK (Taylor & Francis),01913123|15210758 +Uludağ Üniversitesi Eğitim Fakültesi Dergisi,Uludag Universitesi Egitim Fakultesi Dergisi,13013416| +Uludağ University Journal of The Faculty of Engineering,Uludag University Journal of the Faculty of Engineering,21484147|21484155 +ULUL ALBAB Jurnal Studi Islam,Maulana Malik Ibrahim State Islamic University,18584349|24425249 +ULUMUNA,Institut Agama Islam Negeri (IAIN) Mataram,14113457|23557648 +Uluslararası Ekonomi ve Yenilik Dergisi,International Journal of Economics and Innovation,21496838 +Uluslararası İktisadi ve İdari İncelemeler Dergisi,International Journal of Economics and Administrative Studies,13079832|13079859 +Uluslararası Sosyal ve Eğitim Bilimleri Dergisi,Uluslararasi Sosyal ve Egitim Bilimleri Dergisi,21488673 +Umě ní / Art,De Gruyter Open Sp. z o.o. , +UMK Procedia,Elsevier ,22140115| +Umní / Art,De Gruyter Open Sp. z o.o. ,00495123| +Umraniye Tip Dergisi / Medical Journal of Umraniye,Yerkure Tanitim ve Yayincilik Hizmetleri,13083414|13083430 +Umsatzsteuer-Rundschau,Verlag Dr. Otto Schmidt KG,03418669|21944180 +Umweltwissenschaften und Schadstoff-Forschung,Springer (Biomed Central Ltd.),09343504|18655084 +UN Chronicle,United Nations Publications,15643913 +UN Global Compact Reports,GSE Research Limited,20565720| +Unani Research,EManuscript Services,22312544 +Uncertain Supply Chain Management,Growing Science,22916822|22916830 +Undergraduate Journal of Mathematical Modeling One + Two,University of South Florida Libraries,23263652 +Understanding Statistics,Informa UK (Taylor & Francis),1534844X|15328031 +Understanding the Platform Requirements of Emerging Enterprise Solutions,Intel Corp,1535864X +Underwater Technology The International Journal of the Society for Underwater,Society for Underwater Technology,17560543|17560551 +Unfallchirurgie,Springer-Verlag,03402649| +Uniciencia,Universidad Nacional de Costa Rica,22153470 +Uniform Law Review - Revue de droit uniforme,Oxford University Press,11243694|20509065 +UniÍtalo em Pesquisa,Centro Universitario Italo Brasileiro,22369074 +Uniletras,Universidade Estadual de Ponta Grossa,01018698|19833431 +Uniped,Co-Action Publishing,15004538 +UNISCI Discussion Papers,Universidad Complutense de Madrid,16962206 +UNISWA Journal of Agriculture,African Journals Online ,10210873 +UNISWA Research Journal of Agriculture Science and Technology,African Journals Online ,10299645 +United European Gastroenterology Journal,SAGE Publications,20506406|20506414 +United Kingdom Balance of Payments The Pink Book,Nature Publishing Group - Macmillan Publishers,09507558|20401981 +United Kingdom Economic Accounts,Nature Publishing Group - Macmillan Publishers,13504401|20401604 +United Kingdom National Accounts The Blue Book,Nature Publishing Group - Macmillan Publishers,02678691|20401612 +Universal Access in the Information Society,Springer-Verlag,16155289|16155297 +Universal Human Rights,JSTOR,01632647| +Universal Journal of Accounting and Finance,"""Horizon Research Publishing Co., Ltd.""",23319712|23319720 +Universal Journal of Agricultural Research,"""Horizon Research Publishing Co., Ltd.""",23322268|23322284 +Universal Journal of Applied Mathematics,"""Horizon Research Publishing Co., Ltd.""",23316446|23316470 +Universal Journal of Applied Science,"""Horizon Research Publishing Co., Ltd.""",23319674|23319690 +Universal Journal of Chemistry,"""Horizon Research Publishing Co., Ltd.""",23323019|23323027 +Universal Journal of Communications and Network,"""Horizon Research Publishing Co., Ltd.""",23316748|23316756 +Universal Journal of Control and Automation,"""Horizon Research Publishing Co., Ltd.""",23316489|23316500 +Universal Journal of Educational Research,"""Horizon Research Publishing Co., Ltd.""",23323205|23323213 +Universal Journal of Electrical and Electronic Engineering,"""Horizon Research Publishing Co., Ltd.""",23323280|23323299 +Universal Journal of Engineering Science,"""Horizon Research Publishing Co., Ltd.""",23316624|23316632 +Universal Journal of Food and Nutrition Science,"""Horizon Research Publishing Co., Ltd.""",23332727|23333294 +Universal Journal of Geoscience,"""Horizon Research Publishing Co., Ltd.""",23319593|23319615 +Universal Journal of Industrial and Business Management,"""Horizon Research Publishing Co., Ltd.""",23323310|23323329 +Universal Journal of Management,"""Horizon Research Publishing Co., Ltd.""",2331950X|23319577 +Universal Journal of Materials Science,"""Horizon Research Publishing Co., Ltd.""",23316691|23316705 +Universal Journal of Mathematics and Mathematical Sciences,Pushpa Publishing House,22771417| +Universal Journal of Mechanical Engineering,"""Horizon Research Publishing Co., Ltd.""",23323353|23323361 +Universal Journal of Medical Science,"""Horizon Research Publishing Co., Ltd.""",23316675|23316683 +Universal Journal of Physics and Application,"""Horizon Research Publishing Co., Ltd.""",23316535|23316543 +Universal Journal of Plant Science,"""Horizon Research Publishing Co., Ltd.""",2332337X|23323450 +Universal Journal of Psychology,"""Horizon Research Publishing Co., Ltd.""",23323477|23323485 +Universal Journal of Public Health,"""Horizon Research Publishing Co., Ltd.""",23318880|23318945 +Universal Organic Chemistry,Herbert Publications,20537670 +Universal Research Journal of Dentistry,Medknow Publications,22499725| +Universe,MDPI AG,22181997 +Universidad & Empresa,Colegio Mayor de Nuestra Senora del Rosario,01244639|21454558 +Universidad y Ciencia,Latin America Journals Online,20748655| +Universitas,Salesian Polytechnic University of Ecuador,13903837|13908634 +Universitas (León) Revista Científica de la UNAN León,Latin America Journals Online,2071257X|23116072 +Universitas Arquitetura e Comunicação Social,Centro de Ensino Unificado de Brasilia,21757461|2179488X +Universitas Ciências da Saúde,Centro de Ensino Unificado de Brasilia,16785398|19819730 +Universitas Gestão e TI,Centro de Ensino Unificado de Brasilia,21798311|2179832X +Universitas Humanas,Centro de Ensino Unificado de Brasilia,19849419|21757488 +Universitas Humanística,Editorial Pontificia Universidad Javeriana,01204807|20112734 +Universitas Jus,Centro de Ensino Unificado de Brasilia,15199045|19828268 +Universitas Odontologica,Editorial Pontificia Universidad Javeriana,01204319|20273444 +Universitas Philosophica,Editorial Pontificia Universidad Javeriana,01205323|23462426 +Universitas Psychologica,Editorial Pontificia Universidad Javeriana,16579267|20112777 +Universitas Relações Internacionais,Centro de Ensino Unificado de Brasilia,18072135|19820720 +Universitas Scientiarum,Editorial Pontificia Universidad Javeriana,01227483|20271352 +Universities for Tourism and Service Association Bulletin,Infra-M Academic Publishing House,19995644| +University Heart Journal,Bangladesh Journals Online,19989261|1998927X +University Journal of Business,The University of Chicago Press,15256979| +University Journal of Zoology Rajshahi University,Bangladesh Journals Online,10236104| +UNIVERSITY NEWS NORTH-CAUCASIAN REGION NATURAL SCIENCES SERIES,Southern Federal University,03213005| +UNIVERSITY NEWS NORTH-CAUCASIAN REGION SOCIAL SCIENCES SERIES,Southern Federal University,03213056| +University News North-Caucasian Region Technical Sciences Series,South Russian State Polytechnic University (NPI),03212653| +University of Bohol Multidisciplinary Research Journal,Liceo de Cagayan University,23507853| +University of California publications in entomology,Smithsonian Institution Biodiversity Heritage Library,00686417| +University of Dar es Salaam Library Journal,African Journals Online ,8561818 +University of Kansas publications Museum of Natural History,Smithsonian Institution Biodiversity Heritage Library,00755036| +University of Mauritius Research Journal,African Journals Online ,16940342 +University of Ottawa Journal of Medicine,University of Ottawa Library,2292650X|22926518 +University of Pennsylvania Law Review,JSTOR,00419907| +University of Pennsylvania Law Review and American Law Register,JSTOR,07499833| +University of Pittsburgh Law Review,"""University Library System, University of Pittsburgh""",00419915|19428405 +University of Sharjah Journal for Humanities and Social Sciences,"""Al Manhal FZ, LLC""",19962339| +University of Toronto Law Journal,University of Toronto Press Inc,00420220|17101174 +University of Toronto Medical Journal,University of Toronto Medical Journal,08332207|19135440 +University of Toronto Quarterly,University of Toronto Press Inc,00420247|17125278 +University of Twente Students Journal of Biometrics and Computer Vision,University Library/University of Twente,24519642 +Universum (Talca),SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7182376 +Unmanned Systems,World Scientific ,23013850|23013869 +unsere jugend,"""Ernst Reinhardt, GmbH & Co. KG""",03425258| +Update Applications of Research in Music Education,SAGE Publications,87551233|19450109 +Update Dental College Journal,Bangladesh Journals Online,22268715|23073160 +Update on Cancer Therapeutics,Elsevier ,1872115X| +Updates in Surgery,Springer-Verlag,2038131X|20383312 +Upravlenie Megapolisom,Content Press and Scientific Publishing,20732724| +Upsala Journal of Medical Sciences,Informa UK (Taylor & Francis),03009734|20001967 +Ural mathematical journal,Ural Federal University,24143952 +Urban Affairs Review,SAGE Publications,10780874|15528332 +Urban and Regional Planning Review,The City Planning Institute of Japan,21873399 +Urban Climate,Elsevier ,22120955| +URBAN DESIGN International,Nature Publishing Group - Macmillan Publishers,13575317|13575317 +Urban Ecology,Elsevier ,03044009| +Urban Ecosystems,Springer-Verlag,10838155|15731642 +Urban Education,SAGE Publications,00420859|00000000 +Urban Forestry & Urban Greening,Elsevier ,16188667| +Urban Forum,Springer-Verlag,10153802|18746330 +Urban Geography,Informa UK (Taylor & Francis),02723638|19382847 +Urban History,Cambridge University Press,09639268|14698706 +Urban History Review,Consortium Erudit,07030428|19185138 +Urban Island Studies,Island Dynamics,24456004 +Urban Planning,Cogitatio,21837635 +Urban Planning and Design Research,"""Science and Engineering Publishing, Co.""",23281626| +Urban Planning and Transport Research,Informa UK (Taylor & Francis),21650020 +Urban Policy and Research,Informa UK (Taylor & Francis),08111146|14767244 +Urban Rail Transit,Springer-Verlag,21996687|21996679 +Urban Research & Practice,Informa UK (Taylor & Francis),17535069|17535077 +Urban Research & Practice,Informa UK (Taylor & Francis),17535069| +Urban Studies,SAGE Publications,00420980|1360063X +Urban Studies Research,Hindawi Publishing Corporation,20904185|20904193 +Urban Systems,Elsevier ,01478001| +Urban Transportation & Construction,Universe Scientific Publishing Pte. Ltd.,22512578|24248452 +Urban Water,Elsevier ,14620758| +Urban Water Journal,Informa UK (Taylor & Francis),1573062X|17449006 +Urbani izziv,Urban Planning Institute of the Republic of Slovenia,03536483|18558399 +Urbanization and Land Use,Hans Publishers,23327901|2332791X +URBE - Revista Brasileira de Gestão Urbana,SciELO,21753369|21753369 +Urdimento,Universidade do Estado de Santa Catarina,14145731 +Uremia Investigation,Informa UK (Taylor & Francis),07401353| +Urgences,Consortium Erudit,02269554|19273924 +Urgences Médicales,Elsevier ,09232524| +Urimal,The Korean Linguistic Association,12267139| +Urimalgeul The Korean Language and Literature,Urimalgeulhakhoe,12299200| +Uro-News,Springer-Verlag,14329026|21965676 +Urogenital Tract Infection,Korean Association of Urogentital Tract Infection and Imflammation (KAMJE),24658243|24658510 +Urogynaecologia,PAGEPress Publications,11213086|20388314 +Urolithiasis,Springer-Verlag,21947228|21947236 +Urología Colombiana,Elsevier ,0120789X| +Urologia Internationalis,S. Karger AG,00421138|14230399 +Urologic Clinics of North America,Elsevier ,00940143| +Urologic Oncology Seminars and Original Investigations,Elsevier ,10781439| +Urologic Radiology,Springer-Verlag,01711091| +Urological Research,Springer-Verlag,03005623|14340879 +Urological Science,Elsevier ,18795226| +Urologicheskie vedomosti,ECO-Vector,22259074| +Urologie Scan,Thieme Publishing Group,21989109|21989117 +Urology,Elsevier ,00904295| +Urology & Nephrology Open Access Journal,MedCrave Group,23783176 +Urology and Nephrology,Springer-Verlag,00421162| +Urology Annals,Medknow Publications,09747796| +Urology Case Reports,Elsevier ,22144420| +Urology Practice,Elsevier ,23520779| +UroOncology,Informa UK (Taylor & Francis),15610950| +Üroonkoloji Bülteni,Galenos Yayinevi,21472270| +UroToday International Journal,Digital Science Press,19445784 +UroToday International Journal,Digital Science Press,19394810 +Ursus,BioOne (Ursus),15376176|19385439 +URVIO - Revista Latinoamericana de Estudios de Seguridad,Facultad Latinoamericana de Ciencias Sociales (FLACSO),13904299 +US Endocrinology,Touch Digital Media LTD.,17583918| +US Neurology,Touch Digital Media LTD.,17584000| +US Ophthalmic Review,Touch Digital Media LTD.,17561752| +US Respiratory & Pulmonary Diseases,Touch Digital Media LTD.,20584903| +US-China Education Review A,David Publishing Company,2161623X|2161623X +US-China Education Review B,David Publishing Company,21616248|21616248 +US-China Foreign Language,David Publishing Company,1539-8080| +US-China Law Review,David Publishing Company,15486605|19302061 +Usak University Journal of Material Sciences,Usak University Journal of Material Sciences,21472785| +Use of Hydrolases,Thieme Publishing Group,20100337 +User Modeling and User-Adapted Interaction,Springer-Verlag,09241868|15731391 +USGS professional paper,US Geological Survey,10449612 +Using A Chiral Bifunctional 1 1′-Bi-2-naphthol-Derived Aryldiphenylphosphine Catalyst,Thieme Publishing Group,20400357 +Using a Chiral ′-Dioxide for Three-Component Strecker Reactions,Thieme Publishing Group,20200293 +Using a Thiourea–Schiff Base Catalyst,Thieme Publishing Group,20200307 +Using a Titanium–Salan Complex,Thieme Publishing Group,20100035 +Using an Aluminum–Salen Catalyst,Thieme Publishing Group,20200269 +Using an Amino Acid Salt,Thieme Publishing Group,20200285 +Using Bifunctional Phosphine–Thiourea Catalysts,Thieme Publishing Group,20400349 +Using Boronic Acid Esters of Chiral 3-(2-Hydroxyphenyl)binaphthols,Thieme Publishing Group,20300050 +Using Chiral Imines with Allylzinc Reagents,Thieme Publishing Group,20200218 +Using Chiral Oxaziridines and Oxaziridinium Salts,Thieme Publishing Group,20300662 +Using Hydrogen and a Noble Metal Catalyst,Thieme Publishing Group,20600550 +Using Ligands with Chirality Based on Atropisomerism,Thieme Publishing Group,20100132 +Using Metal Catalysis,Thieme Publishing Group,20100353 +Using Organocatalysis,Thieme Publishing Group,20100345 +Using Pseudoephedrine Auxiliaries,Thieme Publishing Group,20300395 +Using Ruthenium Catalysts,Thieme Publishing Group,20200080 +Using Stabilized Enolates,Thieme Publishing Group,20300514 +Using Titanium(IV) Isopropoxide/1 1′-Bi-2-naphthol or Diols,Thieme Publishing Group,20300654 +Using Zirconium(IV) Tetrakis(dodecyl sulfate),Thieme Publishing Group,20600437 +Uspehi Fiziki Metallov,Co. Ltd. Ukrinformnauka,16081021|16081021 +Uspekhi Fizicheskih Nauk,Uspekhi Fizicheskikh Nauk Journal,00421294|19966652 +USSR Computational Mathematics and Mathematical Physics,Elsevier ,00415553| +Usus Antiquior,Maney Publishing,17578949|20410999 +Uterus & Ovary,"""Smart Science and Technology, LLC""",23808497 +Utilitas,Cambridge University Press,09538208|17416183 +Utilities Law Review,Wiley Blackwell (John Wiley & Sons),09602356|10991808 +Utilities Policy,Elsevier ,09571787| +Utopian Studies,The Pennsylvania State University Press,1045991X|21549648 +Utrecht Journal of International and European Law,"""Ubiquity Press, Ltd.""",20535341|20535341 +Utrecht Law Review,Uopen Journals,1871515X +uu,Federal State Funded Educational Institution of Higher Professional Education,19919786|19919786 +uwf UmweltWirtschaftsForum,Springer-Verlag,09433481|14322293 +Uyuşmazlık Mahkemesi Dergisi,Uyusmazlik Mahkemesi Dergisi,21478376| +V Mire Nauchnykh Otkrytii,Science and Innovation Center,20720831|23079428 +V!RUS Journal,Programa de Pos Graduacao em Arquitetura e Urbanismo,2175974X +Vacarme,CAIRN,12532479|2107092X +Vaccina-94,"""Science and Education, Ltd.""",08994056| +Vaccine,Elsevier ,0264410X|0264410X +Vaccine Development and Therapy,Dove Medical Press,22302298 +Vaccines,MDPI AG,2076393X +Vacunas,Elsevier ,15769887| +Vacuum,Elsevier ,0042207X| +Vacuum Magazine,The Korean Vacuum Society,2288971X| +Vadose Zone Journal,Soil Science Society of America,15391663 +VADZONE,American Society of Agronomy, +Vakuum in Forschung und Praxis,Wiley Blackwell (John Wiley & Sons),0947076X|15222454 +Valuation Studies,Linkoping University Electronic Press,20015992 +Value in Health,Elsevier ,10983015|15244733 +Value in Health Regional Issues,Elsevier ,22121099| +Values- Based Management,Diva Enterprises Private Limited,22497900|22497919 +Vanderbilt e-Journal of Luso-Hispanic Studies,Vanderbilt University Library,15475743 +Vanderbilt Undergraduate Research Journal,Vanderbilt University Library,1555788X +Varia Historia,SciELO,01048775|01048775 +Variations,"""Peter Lang, International Academic Publishers""",14247631| +Variations,OpenEdition,19683960 +VASA,Hogrefe Publishing Group,03011526|16642872 +Vascular,SAGE Publications,17085381|1708539X +Vascular and Endovascular Surgery,SAGE Publications,15385744|19389116 +Vascular Cell,Springer (Biomed Central Ltd.),2045824X|2045824X +Vascular Disease Prevention,Bentham Science,15672700|00000000 +Vascular Health and Risk Management,Dove Medical Press,11766344|11782048 +Vascular Medicine,SAGE Publications,1358863X|14770377 +Vascular Pharmacology,Elsevier ,15371891| +Vascular Specialist International,The Korean Society for Vascular Surgery,22887970|22887989 +Vascularized Composite Allotransplantation,Landes Bioscience,23723505|23723513 +Vavilov Journal of Genetics and Breeding,"""Institute of Cytology and Genetics, SB RAS""",1814554X|18145558 +Vector-Borne and Zoonotic Diseases,Mary Ann Liebert,15303667|00000000 +Vedic Research International Bioinformatics and Proteomics,VRI Press,23300272 +Vedic Research International Biological Medicinal Chemistry,VRI Press,23307250 +Vedic Research International Cell Signaling,VRI Press,23300302 +Vedic Research International Phytomedicine,VRI Press,23300280 +Veftímaritið Stjórnmál og stjórnsýsla,Institute of Public Administration and Politics - Icelandic Review of Politics and Administration,16706803|1670679X +VEGETABLE CROPS OF RUSSIA,FSBSI All-Russian Scientfic Research Institute of Vegetable Breeding and Seed Production,20729146|20729146 +Vegetable Crops Research Bulletin,De Gruyter Open Sp. z o.o. ,15069427|18987761 +Vegetatio,Springer-Verlag,00423106| +Vegetation History and Archaeobotany,Springer-Verlag,09396314|16176278 +Vegetos- An International Journal of Plant Research,Diva Enterprises Private Limited,09704078|22294473 +Vehicle Engineering,"""Science and Engineering Publishing, Co.""",23281669| +Vehicle System Dynamics,Informa UK (Taylor & Francis),00423114|17445159 +Vehicular Communications,Elsevier ,22142096| +Veins and Lymphatics,PAGEPress Publications,22797483 +Vektor nauki Tol yattinskogo gosudarstvennogo universiteta,Togliatti State University,20735073| +Vektor nauki Tol yattinskogo gosudarstvennogo universiteta Seriya Ekonomika i upravlenie,Togliatti State University,22215689| +Vektor nauki Tol yattinskogo gosudarstvennogo universiteta Seriya Pedagogika i psihologiya,Togliatti State University,22215662| +Veleia,UPV/EHU Press,02132095| +Vennootschap & Onderneming,Boom Uitgevers Den Haag,09259643| +VENTUNESIMO SECOLO,Franco Angeli,15943755|1971159X +Venture Capital,Informa UK (Taylor & Francis),13691066|14645343 +Veras,ISE Vera Cruz,22365729|22365729 +Verba Anuario Galego de Filoloxía,University of Santiago de Compostela,0210377X|21744017 +Verba Hispanica,University of Ljubljana,03539660|23504250 +Verbum,Akademiai Kiado Zrt.,1585079X|15884309 +Verbum et Ecclesia,AOSIS,16099982|20747705 +Verdauungskrankheiten,Dustri-Verlag Dr. Karl Feistle,0174738X| +Veredas do Direito Direito Ambiental e Desenvolvimento Sustentável,Editora Dom Helder,18063845|21798699 +Vereinte Nationen,Nomos Verlag,0042384X| +Verfassung in Recht und Übersee,Nomos Verlag,05067286| +Vergaberecht,Walter de Gruyter GmbH,16171063|23662247 +Verge Studies in Global Asias,University of Minnesota Press,23735058|23735066 +Verhaltenstherapie,S. Karger AG,10166262|14230402 +Verhandlungen der Deutschen Gesellschaft für Gynäkologie,Springer-Verlag,00039128| +Verhandlungen der Kaiserlich-Königlichen Zoologisch-Botanischen Gesellschaft in Wien,Smithsonian Institution Biodiversity Heritage Library,00845647| +Verhandlungen der Naturforschenden Gesellschaft in Basel,Smithsonian Institution Biodiversity Heritage Library,00776122| +Veritas,SciELO Comision Nacional de Investigacion Cientifica Y Tecnologica,7189273 +Veritas (Porto Alegre),EDIPUCRS,00423955|19846746 +Verkündigung und Forschung,Gutersloher Verlaghaus,03422410|21980454 +Vermont Journal of Environmental Law,JSTOR,19364253 +Vernacular Architecture,Maney Publishing,03055477|17496292 +Veröffentlichungen der Arbeitsgemeinschaft Donauforschung,Schweizerbart,03420698| +Versicherungsmagazin,Springer Fachmedien Wiesbaden GmbH,16161963|21928622 +Verslas teorija ir praktika,Vilnius Gediminas Technical University,16480627|18224202 +Verslaving,Springer-Verlag,15741842|18757073 +Verslo ir teisės aktualijos / Current Issues of Business and Law,Association of Lithuaninan Serials,18229530| +Verso e Reverso,Universidade do Vale do Rio Dos Sinos - UNISINOS,18066925 +Vertebrate Anatomy Morphology Palaeontology,VAMP Journal,22921389 +Vertigo,CAIRN,09851402|24283568 +VertigO,OpenEdition,14928442|14928442 +Verwaltung & Management,Nomos Verlag,09479856| +Verwaltungsarchiv,Walter de Gruyter GmbH,00424501|23661992 +Vestnik IGEU,Ivanovo State Power University (ISPU) ,20722672| +Vestnik Immanuel Kant Baltic Federal University,Immanuel Kant Baltic Federal University,22232095| +Vestnik IrGSCHA,Kniga - Service Agency Ltd.,19993765| +Vestnik komp iuternykh i informatsionnykh tekhnologii,"""Izdatel'skii dom Spektr, LLC""",18107206| +Vestnik MGSU,"""Science and Education, Ltd.""",23046600| +Vestnik of Don State Technical University,Infra-M Academic Publishing House,19925980| +Vestnik of Experimental and Clinical Surgery,VSMU N.N. Burdenko,2070478X|2409143X +Vestnik of Institute of Geology of Komi Science Center of Ural Branch RAS,IG Komi SC UB RAS,22211381| +Vestnik of Kazan state agrarin university,Infra-M Academic Publishing House,20730462| +Vestnik of Northern (Arctic) Federal Unisersity,Kniga - Service Agency Ltd.,22276564| +"""Vestnik of Northern (Arctic) Federal Unisersity Series """"Natural Science""""""",Kniga - Service Agency Ltd.,22276572| +"""Vestnik of Northern (Arctic) Federal University named after M V Lomonosov Series """"Medical and Biological Sciences""""""",Kniga - Service Agency Ltd.,23083174| +Vestnik of Nosov Magnitogorsk State Technical University,Nosov Magnitogorsk State Technical University,19952732|24129003 +Vestnik of the Omsk Law Academy,Omsk Law Academy,23061340|24108812 +VESTNIK of the Samara State Aerospace University,Samara State Aerospace University,19986629|24127329 +Vestnik of Ulyanovsk state agricultural academy,HPE Ulyanovsk SAA Stolypin,18164501| +Vestnik OrelGAU,Central Collector of Libraries BIBCOM,19903618|22234802 +Vestnik Otdelenia nauk o Zemle RAN,Geophysical Center of the Russian Academy of Sciences,18196586 +Vestnik policii,Academic Publishing House Researcher,24093610|24140880 +Vestnik Saint Petersburg University,"""Science and Education, Ltd.""",18119905| +Vestnik Saint Petersburg University,"""Science and Education, Ltd.""",18119905| +Vestnik SGASU Town Planning and Architecture,Samara State University of Architecture and Civil Engineering,23040491| +Vestnik St Petersburg University Mathematics,Allerton Press,10634541|19347855 +Vestnik Tambovskogo gosudarstvennogo tehnicheskogo universiteta,Tambov State Technical University,01365835| +Vestnik Tomskogo gosudarstvennogo universiteta,Tomsk State University,15617793| +Vestnik Tomskogo gosudarstvennogo universiteta Biologiya,Tomsk State University,19988591| +Vestnik Tomskogo gosudarstvennogo universiteta Ekonomika,Tomsk State University,19988648| +Vestnik Tomskogo gosudarstvennogo universiteta Filologiya,Tomsk State University,19986645| +Vestnik Tomskogo gosudarstvennogo universiteta Filosofiya Sotsiologiya Politologiya,Tomsk State University,1998863X| +Vestnik Tomskogo gosudarstvennogo universiteta Kul turologiya i iskusstvovedenie,Tomsk State University,22220836| +Vestnik Tomskogo gosudarstvennogo universiteta Matematika i mekhanika,Tomsk State University,19988621| +Vestnik Tomskogo gosudarstvennogo universiteta Pravo,Tomsk State University,22253513| +Vestnik Tomskogo gosudarstvennogo universiteta Upravlenie vychislitel naya tekhnika i informatika,Tomsk State University,19988605| +Vestnik Volgogradskogo gosudarstvennogo universiteta Serija 1 Mathematica Physica,Volgograd State University,22228896|24091782 +Vestnik Volgogradskogo gosudarstvennogo universiteta Serija 10 Innovatcionnaia deiatel’nost’,Volgograd State University,23057815|24092398 +Vestnik Volgogradskogo Gosudarstvennogo Universiteta Serija 11 Estestvennye nauki,Volgograd State University,23064153| +Vestnik Volgogradskogo gosudarstvennogo universiteta Serija 2 Jazykoznanije,Volgograd State University,19989911| +Vestnik Volgogradskogo gosudarstvennogo universiteta Serija 3 Ekonomika Ekologija,Volgograd State University,1998992X|24089478 +Vestnik Volgogradskogo gosudarstvennogo universiteta Serija 4 Istorija Regionovedenie Mezhdunarodnye otnoshenija,Volgograd State University,19989938|23128704 +Vestnik Volgogradskogo gosudarstvennogo universiteta Serija 7 Filosofiya Sociologiya i socialnye tehnologii,Volgograd State University,24092126 +Vestnik Zoologii,De Gruyter Open Sp. z o.o. ,00845604|20732333 +Vestnik Тomskogo gosudarstvennogo universiteta Khimiya,Tomsk State University,24135542| +Vet Med Czech,Ankara University, +veterinär spiegel,Thieme Publishing Group,09408711|18680437 +Veterinária Notícias,Fundacao de Apoio Universitario,19830777|19830777 +Veterinaria y Zootecnia,Universidad de Caldas,20115415 +Veterinarian,"""Science and Education, Ltd.""",1998698X| +Veterinární Medicína,Czech Academy of Agricultural Sciences,03758427|18059392 +Veterinarski glasnik,National Library of Serbia,03502457|24060771 +Veterinary Anaesthesia and Analgesia,Wiley Blackwell (Blackwell Publishing),14672987|14672995 +Veterinary and Comparative Oncology,Wiley Blackwell (Blackwell Publishing),14765810|14765829 +Veterinary and Comparative Orthopaedics and Traumatology,Schattauer GmbH (Veterinary and Comparative Orthopaedics and Traumatology),09320814| +Veterinary Clinical Pathology,Wiley Blackwell (Blackwell Publishing),02756382|1939165X +Veterinary Clinics of North America,Elsevier ,00910279| +Veterinary Clinics of North America,Elsevier ,00910279| +Veterinary Clinics of North America,Elsevier ,00910279| +Veterinary Clinics of North America,Elsevier ,00910279| +Veterinary Clinics of North America Equine Practice,Elsevier ,07490739| +Veterinary Clinics of North America Exotic Animal Practice,Elsevier ,10949194| +Veterinary Clinics of North America Food Animal Practice,Elsevier ,07490720| +Veterinary Clinics of North America Small Animal Practice,Elsevier ,01955616| +Veterinary Dermatology,Wiley Blackwell (Blackwell Publishing),09594493|13653164 +Veterinary Evidence,RCVS Knowledge,23969776 +Veterinary Focus,Thieme Publishing Group,9654593 +Veterinary Immunology and Immunopathology,Elsevier ,01652427| +Veterinary Medicine and Animal Sciences,Herbert Publications,20543425 +Veterinary Medicine and Science,Wiley Blackwell (John Wiley & Sons),20531095| +Veterinary Medicine International,Hindawi Publishing Corporation (Sage-Hindawi Access to Research),20908113|20420048 +Veterinary Medicine Research and Reports,Dove Medical Press,22302034 +Veterinary Microbiology,Elsevier ,03781135| +Veterinary Nursing Journal,Informa UK (Taylor & Francis),17415349|20450648 +Veterinary Ophthalmology,Wiley Blackwell (Blackwell Publishing),14635216|14635224 +Veterinary Parasitology,Elsevier ,03044017| +Veterinary Parasitology Regional Studies and Reports,Elsevier ,24059390| +Veterinary Pathology,SAGE Publications,03009858|15442217 +Veterinary Quarterly,Informa UK (Taylor & Francis),01652176|18755941 +Veterinary Radiology,Wiley Blackwell (Blackwell Publishing),01963627| +Veterinary Radiology & Ultrasound,Wiley Blackwell (Blackwell Publishing),10588183|17408261 +Veterinary Record,BMJ,00424900|20427670 +Veterinary Record Case Reports,BMJ,20526121 +Veterinary Record Open,BMJ,20526113 +Veterinary Research,Springer (Biomed Central Ltd.),09284249|12979716 +Veterinary Research Communications,Springer-Verlag,01657380|15737446 +VETERINARY SCIENCE AND STATISTICAL METHODS,The Japan Society of Veterinary Epidemiology,18845606 +Veterinary Science Communications,Springer-Verlag,03784312| +Veterinary Science Development,PAGEPress Publications,20389698|20389701 +Veterinary Science Research,Bioinfo Publications,0976996X|09769978 +VETERINARY SCIENCE RESEARCH JOURNAL,Hind Agri Horticultural Society,09761284|2230942X +Veterinary Sciences,MDPI AG,23067381 +Veterinary Sciences Research and Reviews,Smith and Franklin Academic Publishing Corporation,23973463| +Veterinary Surgery,Wiley Blackwell (Blackwell Publishing),01613499|1532950X +Veterinary World,Veterinary World,09728988|22310916 +Vetus Testamentum,Brill Academic Publishers,00424935|15685330 +Via Atlântica,Universidade de Sao Paulo Sistema Integrado de Bibliotecas - SIBiUSP,15165159|23178086 +Via Inveniendi Et Iudicandi,Universidad Santo Tomas,19090528|19090528 +Via medici,Thieme Publishing Group,09492488|14391414 +Viator,"""Brepols Publishers, NV""",00835897| +Viator (English and Multilingual Edition),"""Brepols Publishers, NV""",20336993| +Vibrant Virtual Brazilian Anthropology,SciELO,18094341 +Vibrational Spectroscopy,Elsevier ,09242031| +Victims & Offenders,Informa UK (Taylor & Francis),15564886|15564991 +Victoria University Law and Justice Journal,Victoria University,22027912|22032908 +Victorian Literature and Culture,Cambridge University Press,10601503|14701553 +Victorian Periodicals Review,Muse - Johns Hopkins University Press,1712526X +Victorian Poetry,Muse - Johns Hopkins University Press,15307190 +Victorian Review,Muse - Johns Hopkins University Press,19233280 +Victorian Studies,Indiana University Press,00425222|15272052 +Victoriographies,Edinburgh University Press,20442416|20442424 +Video Journal and Encyclopedia of GI Endoscopy,Elsevier ,22120971| +VideoEndocrinology,Mary Ann Liebert,23299738| +Videosurgery and Other Miniinvasive Techniques,Termedia Sp. z.o.o.,18954588| +VIDHIGYA The Journal of Legal Awareness,Diva Enterprises Private Limited,09733825|09744533 +Vie & sciences de l entreprise,CAIRN,22625321|22625372 +Vie & sciences économiques,CAIRN,0336142X|21183325 +Vie sociale,CAIRN,00425605|2271717X +Vienna Yearbook of Population Research,Verlag der Osterreichischen Akademie der Wissenschaften,17284414|17285303 +Vierteljahresschrift für Heilpädagogik und ihre Nachbargebiete,"""Ernst Reinhardt, GmbH & Co. KG""",00179655| +Vierteljahrshefte für Zeitgeschichte,Oldenbourg Wissenschaftsverlag,00425702|21967121 +Vierteljahrshefte zur Wirtschaftsforschung,Duncker & Humblot GmbH,03401707|18611559 +Vietnam Journal of Chemistry,"""Publishing House for Science and Technology Vietnam, Vietnam Academy of Science and Technology""",08667144|08667144 +Vietnam Journal of Computer Science,Springer-Verlag,21968888|21968896 +Vietnam Journal of Mathematics,Springer-Verlag,2305221X|23052228 +Vietnam Journal of Mechanics,"""Publishing House for Science and Technology Vietnam, Vietnam Academy of Science and Technology""",08667136|08667136 +Vietnam Journal of Science,Vietnam Education Foundation Fellows and Scholars Association,23748664 +Vigilância Sanitária em Debate,Fundacao Oswaldo Cruz,2317269X +Vigiliae Christianae,Brill Academic Publishers,00426032|15700720 +Vikalpa,SAGE Publications,02560909|23953799 +Viking and Medieval Scandinavia,"""Brepols Publishers, NV""",17827183| +Vilniaus universiteto bibliotekos metraštis 2015,Vilnius University,18223699|24244368 +VINE,Emerald (MCB UP ),03055728|14741032 +Vingnanam Journal of Science,Sri Lanka Journals Online ,20129939| +Vingtième Siècle Revue d histoire,CAIRN,02941759|19506678 +Vinylation of Enolates via Chiral Auxiliary Control,Thieme Publishing Group,20300417 +Violence Against Women,SAGE Publications,10778012|15528448 +Violence and Gender,Mary Ann Liebert,23267836|23267852 +Violence and Victims,Springer Publishing Company,08866708|00000000 +Viral Hepatit Dergisi,Galenos Yayinevi,13079441| +Viral Immunology,Mary Ann Liebert,08828245|00000000 +Virchows Archiv,Springer-Verlag,09456317|14322307 +Virchows Archiv A Pathological Anatomy and Histology,Springer-Verlag,03401227| +Virchows Archiv A Pathological Anatomy and Histopathology,Springer-Verlag,01747398| +Virchows Archiv Abteilung A Pathologische Anatomie,Springer-Verlag,00426423| +Virchows Archiv B Cell Pathology,Springer-Verlag,03406075| +Virchows Archiv B Cell Pathology Including Molecular Pathology,Springer-Verlag,00426431| +Virchows Archiv für Pathologische Anatomie und Physiologie und für Klinische Medizin,Springer-Verlag,03760081| +Virginia Law Review,JSTOR,00426601| +Virologica Sinica,Springer-Verlag,16740769|1995820X +Virology,Elsevier ,00426822|10960341 +Virology & Mycology,OMICS Publishing Group,21610517 +Virology Discovery,Herbert Publications,20526202 +Virology Journal,Springer (Biomed Central Ltd.),1743422X|1743422X +Virology Reports,Elsevier ,22146695| +Virology Research and Treatment,"""Libertas Academica, Ltd.""",1178122X +Virtual and Physical Prototyping,Informa UK (Taylor & Francis),17452759|17452767 +Virtual Archaeology Review,Universitat Politecnica de Valencia,19899947 +Virtual Biology,Institute of Systems Biology,23068140 +Virtual Mentor,American Medical Association,19377010 +Virtual Reality,Springer-Verlag,13594338|14349957 +Virulence,Landes Bioscience,21505594|21505608 +VIRUS,The Japanese Association for Virology,18843425 +Virus Adaptation and Treatment,Dove Medical Press,11791624 +Virus Evolution,Oxford University Press,20571577 +Virus Genes,Springer-Verlag,09208569|1572994X +Virus Research,Elsevier ,01681702| +VIRUS Reviews & Research,Sociedade Brasileira de Virologia,15192563|23579323 +VirusDisease,Springer-Verlag,23473584|23473517 +Viruses,MDPI AG,19994915 +Visão Acadêmica,Universidade Federal do Parana,15185192|15188361 +Visceral Medicine,S. Karger AG,22974725|2297475X +Visegrad Journal on Bioeconomy and Sustainable Development,De Gruyter Open Sp. z o.o. ,13388339|13393367 +VISION Journal of Indian Taxation,Journal Press India,23474475|23952571 +Vision Letters,University of Waterloo,23696753 +Vision Pan-America The Pan-American Journal of Ophthalmology,Pan-American Association of Ophthalmology,22194665|22194673 +Vision Research,Elsevier ,00426989|00426989 +Vision The Journal of Business Perspective,SAGE Publications,09722629|22495304 +Visitor Studies,Informa UK (Taylor & Francis),10645578|19347715 +Visnik Nacional noi akademii nauk Ukrai ni,Co. Ltd. Ukrinformnauka,10273239|10273239 +Vistas in Astronomy,Elsevier ,00836656| +Visual Anthropology,Informa UK (Taylor & Francis),08949468|15455920 +Visual Anthropology Review,Wiley Blackwell (Blackwell Publishing),10357147|15487458 +Visual Arts Research,University of Illinois Press,07360770|21518009 +Visual Cognition,Informa UK (Taylor & Francis),13506285|14640716 +Visual Communication,SAGE Publications,14703572|17413214 +Visual Communication Quarterly,Informa UK (Taylor & Francis),15551393|15551407 +Visual Culture in Britain,Informa UK (Taylor & Francis),14714787|19418361 +Visual Geosciences,Springer-Verlag,16102924|16102924 +Visual Geosciences formerly Electronic Geosciences,Springer-Verlag,16102924 +Visual Impairment Research,Informa UK (Taylor & Francis),1388235X|17445167 +Visual Inquiry,Intellect,20455879| +Visual Journal of Emergency Medicine,Elsevier ,24054690| +Visual Neuroscience,Cambridge University Press,09525238|14698714 +Visual Resources,Informa UK (Taylor & Francis),01973762| +Visual Resources,Informa UK (Taylor & Francis),01973762| +Visual Resources,Informa UK (Taylor & Francis),01973762| +Visual Resources,Informa UK (Taylor & Francis),01973762|14772809 +Visual Resources,Informa UK (Taylor & Francis),01973762| +Visual Sociology,Informa UK (Taylor & Francis),10671684| +Visual Studies,Informa UK (Taylor & Francis),1472586X|00000000 +Visualidades,Universidade Federal de Goias,16796748|23176784 +Visualization Image Processing and Computation in Biomedicine,Begell House Inc.,21623465|21623511 +Visualization in Engineering,Springer (Biomed Central Ltd.),22137459|22137459 +Visualization of Mechanical Processes,Begell House Inc.,2152209X|2152209X +Visuomenės sveikata,Association of Lithuaninan Serials,2335867X| +Viszeralchirurgie,Thieme Publishing Group,14353067|14391643 +Viszeralmedizin,S. Karger AG,16626664|16626672 +Vita Latina,PERSEE Program,00427306| +Vita Latina,Peeters Publishers,17815231 +Vital,Nature Publishing Group,17417503|14717511 +Vitamins & Hormones,Elsevier , +Vitamins & Minerals,OMICS Publishing Group,23761318 +Vitamins & Trace Elements,OMICS Publishing Group,21670390 +VITRUVIO - International Journal of Architectural Technology and Sustainability,Universitat Politecnica de Valencia,24449091 +Vivarium,Brill Academic Publishers,00427543|15685349 +Vivat Academia,Forum Internacional de Comunicacion y Relaciones Publicas - FORUM XXI,15752844 +Vladikavkaz Medico-Biological Bulletin,Infra-M Academic Publishing House,18107230| +VLC arquitectura Research Journal,Universitat Politecnica de Valencia,23413050|23412747 +VLSI Design,Hindawi Publishing Corporation,1065514X|15635171 +Vniversitas,Editorial Pontificia Universidad Javeriana,00419060|20111711 +Vocabulary Learning and Instruction,Vocabulary Learning and Instruction,21872767|21872759 +Vocation Sage-femme,Elsevier ,16340760| +Vocational Education,Hans Publishers,21604398|21604401 +Vocational Guidance Quarterly,Wiley Blackwell (John Wiley & Sons),00427764| +Vocational Training Research And Realities,Walter de Gruyter GmbH,20298447 +Vocations and Learning,Springer-Verlag,1874785X|18747868 +Voces y Silencios Revista Latinoamericana de Educación,Universidad de los Andes - Centro de Investigacion y Formacion en Educacion (CIFE),22158421 +Voennyi Sbornik,Academic Publishing House Researcher,23096322|24091707 +Voice and Speech Review,Informa UK (Taylor & Francis),23268263|23268271 +Voice of History,Nepal Journals Online, +Voice of the Publisher,"""Scientific Research Publishing, Inc.""",23807571|23807598 +Voices,Wiley Blackwell (Blackwell Publishing),15382680|15487423 +Voices A World Forum for Music Therapy,University of Bergen Library,15041611 +Voix et Images,Consortium Erudit,03189201|1705933X +Voix et images du pays,Consortium Erudit,0318921X|19185499 +Vojenské rozhledy,University of Defence,12103292|23362995 +Vojno delo,Centre for Evaluation in Education and Science,00428426| +Vojnosanitetski pregled,National Library of Serbia,00428450|24060720 +Vojnotehnicki glasnik,Centre for Evaluation in Education and Science,00428469| +Vol 1 No 1,Jurnal Riset dan Aplikasi: Akuntansi dan Manajemen,24433381|24431419 +Volume !,OpenEdition,16345495|1950568X +Voluntaristics Review,Brill Academic Publishers,24054925|24054933 +Voluntary Sector Review,The Policy Press,20408056|20408064 +VOLUNTAS International Journal of Voluntary and Nonprofit Organizations,Springer-Verlag,09578765|15737888 +Voprosy detskoj dietologii,Dynasty Publishing House,17275784| +Voprosy dietologii,Dynasty Publishing House,22245448|24149004 +Voprosy filosofii i psikhologii,Academic Publishing House Researcher,24093602|24140856 +Voprosy ginekologii akušerstva i perinatologii,Dynasty Publishing House,17261678|24149152 +Voprosy Kognitivnoy Lingvistiki,Russian Cognitive Linguistics Association,18123228| +Voprosy leksikografii,Tomsk State University,22274200| +Voprosy Obrazovaniya/ Educational Studies Moscow,"""National Research University, Higher School of Economics (HSE)""",18149545|18149545 +Voprosy praktičeskoj pediatrii,Dynasty Publishing House,18177646| +Voprosy sovremennoj nauki i praktiki Universitet imeni V I Vernedskogo,Tambov State Technical University,19909047| +Voprosy Virusologii,"""Science and Education, Ltd.""",05074088| +Voronezh Scientific-Technical Bulletin,Infra-M Academic Publishing House,23118873| +Vox Sanguinis,Wiley Blackwell (Blackwell Publishing),00429007|14230410 +VPT Magazin,Thieme Publishing Group,23642904|23645490 +Vraiment durable,CAIRN,22602895|22728481 +VST - Vie sociale et traitements,CAIRN,03968669|17762898 +Vulcan,Brill Academic Publishers,2213459X|22134603 +Vulnerable Children and Youth Studies,Informa UK (Taylor & Francis),17450128|17450136 +Vulnerable Groups & Inclusion,Co-Action Publishing,20008023 +Vulture News,African Journals Online ,16067479 +W waves,The Japanese Society of Strategies for Cancer Research and Therapy,18810241| +Wacana Journal of the Humanities of Indonesia,"""Wacana, Journal of the Humanities of Indonesia""",14112272|24076899 +Wader Study,International Wader Study Group,20588410| +Waikato Journal of Education,University of Waikato,23820373 +Wallace Stevens Journal,Muse - Johns Hopkins University Press,21600570 +Walt Whitman Quarterly Review,University of Iowa Libraries,21533695 +Wani,Latin America Journals Online,1813369X| +War & Society,Maney Publishing,07292473|20424345 +War in History,SAGE Publications,09683445|00000000 +Wärme- und Stoffübertragung,Springer-Verlag,00429929| +Wasafiri,Informa UK (Taylor & Francis),02690055|17471508 +Wasser und Abfall,Springer Fachmedien Wiesbaden GmbH,14369095|21928754 +WASSERWIRTSCHAFT,Springer Fachmedien Wiesbaden GmbH,00430978|21928762 +Waste and Biomass Valorization,Springer-Verlag,18772641|1877265X +Waste Management,Elsevier ,0956053X| +Waste Management & Research,SAGE Publications,0734242X|10963669 +Waste Management Research,Japan Society of Waste Management Experts,09170855|18838960 +Waste Technology,Chemical Engineering Diponegoro University,23386207 +Water,MDPI AG,20734441 +Water Air & Soil Pollution,Springer-Verlag,00496979|15732932 +Water Air and Soil Pollution Focus,Springer (Kluwer Academic Publishers),15677230|15732940 +Water and Environment Journal,Wiley Blackwell (Blackwell Publishing),17476585|17476593 +Water Economics and Policy,World Scientific ,2382624X|23826258 +Water Environment Research,Water Environment Federation,10614303|15547531 +Water History,Springer-Verlag,18777236|18777244 +Water Intelligence Online,IWA Publishing,14761777|14761777 +Water International,Informa UK (Taylor & Francis),02508060| +Water International,Informa UK (Taylor & Francis),02508060|19411707 +WATER journal,Water Journal,21558434 +Water Law,Wiley Blackwell (John Wiley & Sons),09599754|10991816 +Water Nepal,Nepal Journals Online,10270345| +Water Policy,IWA Publishing,13667017|19969759 +Water pollution and treatment,Hans Publishers,23328010|23328029 +Water Practice,Water Environment Federation,19331770| +Water Practice & Technology,IWA Publishing,1751231X|1751231X +Water Quality and Ecosystems Modeling,Springer (Kluwer Academic Publishers),1388266X| +Water Quality Exposure and Health,Springer-Verlag,18761658|18761666 +Water Quality Professional,Elsevier ,1092051X| +Water Quality Research Journal of Canada,IWA Publishing,12013080|24089443 +Water Research,Elsevier ,00431354| +Water Resources,Pleiades Publishing,00978078|1608344X +Water Resources and Economics,Elsevier ,22124284| +Water Resources and Industry,Elsevier ,22123717| +Water Resources and Irrigation Management,Water Resources and Irrigation Management,23166886 +Water Resources and Rural Development,Elsevier ,22126082| +Water Resources Management,Springer-Verlag,09204741|15731650 +Water Resources Research,Wiley Blackwell (John Wiley & Sons),00431397| +Water SA,African Journals Online ,3784738 +Water Science,Elsevier ,11104929| +Water Science & Technology,IWA Publishing,02731223|19969732 +Water Science & Technology Water Supply,IWA Publishing,16069749|16070798 +Water Science and Engineering,Elsevier ,16742370| +Waterbirds,BioOne (Waterbird Society),15244695|19385390 +Waterlines,Practical Action Publishing,02628104|02628104 +Waterloo Historical Review,University of Waterloo,19164181|2369615X +Wave Motion,Elsevier ,01652125| +Waves in Random and Complex Media,Informa UK (Taylor & Francis),17455030|17455049 +Waves in Random Media,Informa UK (Taylor & Francis),09597174|13616676 +Waves Wavelets and Fractals,Walter de Gruyter GmbH,24495557 +Wayamba Journal of Management,Sri Lanka Journals Online ,20126182| +Wear,Elsevier ,00431648| +Weather,Wiley Blackwell (John Wiley & Sons),00431656|14778696 +Weather and Climate Extremes,Elsevier ,22120947| +Weather and Forecasting,American Meteorological Society,08828156|15200434 +Weather Climate and Society,American Meteorological Society,19488327|19488335 +Weatherwise,Informa UK (Taylor & Francis),00431672|19401310 +Weave Journal of Library User Experience,University of Michigan Library,23333316 +Web Ecology,Copernicus GmbH,13991183 +Web Ecology,Copernicus GmbH,13991183 +Web Ecology,Copernicus GmbH,13991183 +Web Intelligence,IOS Press,24056456|24056464 +Web Semantics Science Services and Agents on the World Wide Web,Elsevier ,15708268| +Webbia,Informa UK (Taylor & Francis),00837792|21694060 +webmedcentral,Webmed Limited,20461690|20461690 +webmedcentralplus,Webmed Limited,20510799 +Weed & Turfgrass Science,The Korean Society of Weed Science,22877924| +Weed Biology and Management,Wiley Blackwell (Blackwell Publishing),14446162|14456664 +Weed Research,Wiley Blackwell (Blackwell Publishing),00431737|13653180 +Weed Science,BioOne (Weed Science Society of America),00431745|15502759 +Weed Technology,BioOne (Weed Science Society of America),0890037X|15502740 +Weeds,JSTOR,0096719X| +Wege zum Menschen,"""Vandenhoeck & Ruprecht GmbH & Co, KG""",21968284|21968284 +Welding in the World,Springer-Verlag,00432288|18786669 +Welding International,Informa UK (Taylor & Francis),09507116|17542138 +WELFARE E ERGONOMIA,Franco Angeli,24213691| +Weltwirtschaftliches Archiv,Springer-Verlag,00432636| +Wentia,Wiley Blackwell (Blackwell Publishing),05114780| +Werkstoffe und Korrosion,Wiley Blackwell (John Wiley & Sons),09475117|15214176 +Werkwinkel,De Gruyter Open Sp. z o.o. ,18963307 +Wesley and Methodist Studies,The Pennsylvania State University Press,22911723|22911731 +West 86th,The University of Chicago Press,21535531|21535558 +West African Journal of Applied Ecology,African Journals Online ,8554307 +West African Journal of Medicine,African Journals Online ,0189160X +West African Journal of Medicine,African Journals Online ,0189160X +West African Journal of Pharmacology and Drug Research,African Journals Online ,0303691X +West African Journal of Radiology,Medknow Publications,11153474|11153474 +West European Politics,Informa UK (Taylor & Francis),01402382|17439655 +West Indian Medical Journal,West Indian Medical Journal,07993889|07993889 +West Indian Medical Journal,West Indian Medical Journal,00433144|00433144 +West Virginia History A Journal of Regional Studies,Muse - Johns Hopkins University Press,19405057 +Western American Literature,Muse - Johns Hopkins University Press,19487142 +Western European Education,Informa UK (Taylor & Francis),00433675| +Western Folklore,JSTOR,0043373X| +Western Indian Ocean Journal of Marine Science,African Journals Online ,0856860X|0856860X +Western Journal of Applied Forestry,Society of American Foresters,08856095| +Western Journal of Communication,Informa UK (Taylor & Francis),10570314|17451027 +Western Journal of Emergency Medicine,Western Journal of Emergency Medicine,1936900X|19369018 +Western Journal of Medicine,BMJ,00930415| +Western Journal of Nursing Research,SAGE Publications,01939459|15528456 +Western Journal of Speech Communication,Informa UK (Taylor & Francis),01936700| +Western North American Naturalist,BioOne (Western North American Naturalist),15270904|19448341 +Western Pacific Surveillance and Response,"""World Health Organization, Western Pacific Regional Office""",20947313|20947313 +Western Speech,Informa UK (Taylor & Francis),00434205| +Western Speech Communication,Informa UK (Taylor & Francis),01472216| +Western Undergraduate Research Journal Health and Natural Sciences,"""University of Western Ontario, Western Libraries""",1923757X +Westminster Papers in Culture and Communication,University of Westminster Press,17446716 +Westminster Studies in Education,Informa UK (Taylor & Francis),01406728|14701359 +Wetenschappelijk Tijdschrift voor Ergotherapie,Boom Uitgevers Den Haag,18763227| +Wetland Science and Practice,BioOne (Society of Wetland Scientists),07329393| +Wetlands,Springer-Verlag,02775212|19436246 +Wetlands Ecology and Management,Springer-Verlag,09234861|15729834 +Whitehall Papers,Informa UK (Taylor & Francis),02681307|17545382 +Whiteness and Education,Informa UK (Taylor & Francis),23793406|23793414 +WHO South-East Asia Journal of Public Health,Medknow Publications,22243151| +WIADOMOŚCI ELEKTROTECHNICZNE,"""Wydawnictwo SIGMA-NOT, sp. z.o.o.""",00435112| +Wiadomości Matematyczne,Polish Mathematical Society,20805519| +Wicazo Sa Review,University of Minnesota Press,07496427|15337901 +Wide Angle,Muse - Johns Hopkins University Press,10863354 +Widening Participation and Lifelong Learning,The Open University,14666529| +Wiener entomologische Zeitung,Smithsonian Institution Biodiversity Heritage Library,15620891| +Wiener Jahrbuch für Kunstgeschichte,Bohlau Verlag,00839981|23072962 +Wiener klinische Wochenschrift,Springer-Verlag,00435325|16137671 +Wiener klinische Wochenschrift Education,Springer-Verlag,18633579|18633765 +Wiener klinisches Magazin,Springer-Verlag,14346869|16137817 +Wiener Medizinische Wochenschrift,Springer-Verlag,00435341|1563258X +Wiener Slavistisches Jahrbuch,Verlag der Osterreichischen Akademie der Wissenschaften,00840041|00840041 +Wiener Studien,Verlag der Osterreichischen Akademie der Wissenschaften,0084005X|18133924 +WIENER TIERÄRZTLICHE MONATSSCHRIFT,Austrian Veterinary Society,0043535X| +Wiener Zeitschrift für die Kunde Südasiens,Verlag der Osterreichischen Akademie der Wissenschaften,00800084|17283124 +Wijsgerig Perspectief,Uitgeverij Boom,00435414| +Wikiversity Journal of Medicine,Wikiversity Journal of Medicine,20018762 +Wilderness and Environmental Medicine,Elsevier ,10806032| +Wildlife Biology,BioOne (Wildlife Biology),09096396|1903220X +Wildlife Biology in Practice,SPVS - Sociedade Portuguesa de Vida Selvagem,16461509|16462742 +Wildlife Monographs,Wiley Blackwell (John Wiley & Sons),00840173|19385455 +Wildlife Research,CSIRO Publishing,10353712| +Wildlife Society Bulletin,Wiley Blackwell (John Wiley & Sons),00917648|19385463 +Wiley Interdisciplinary Reviews - RNA,Wiley Blackwell (John Wiley & Sons),17577004|17577012 +Wiley Interdisciplinary Reviews Climate Change,Wiley Blackwell (John Wiley & Sons),17577780|17577799 +Wiley Interdisciplinary Reviews Cognitive Science,Wiley Blackwell (John Wiley & Sons),19395078|19395086 +Wiley Interdisciplinary Reviews Computational Molecular Science,Wiley Blackwell (John Wiley & Sons),17590876| +Wiley Interdisciplinary Reviews Computational Statistics,Wiley Blackwell (John Wiley & Sons),19395108|19390068 +Wiley Interdisciplinary Reviews Data Mining and Knowledge Discovery,Wiley Blackwell (John Wiley & Sons),19424787| +Wiley Interdisciplinary Reviews Developmental Biology,Wiley Blackwell (Blackwell Publishing),17597684|17597692 +Wiley Interdisciplinary Reviews Energy and Environment,Wiley Blackwell (John Wiley & Sons),20418396| +Wiley Interdisciplinary Reviews Membrane Transport and Signalling,Wiley Blackwell (John Wiley & Sons),2190460X| +Wiley Interdisciplinary Reviews Nanomedicine and Nanobiotechnology,Wiley Blackwell (John Wiley & Sons),19395116|19390041 +Wiley Interdisciplinary Reviews Systems Biology and Medicine,Wiley Blackwell (John Wiley & Sons),19395094|1939005X +Wiley Interdisciplinary Reviews Water,Wiley Blackwell (John Wiley & Sons),20491948| +Wilhelm Roux Archiv für Entwicklungsmechanik der Organismen,Springer-Verlag,00435546| +Wilhelm Roux s Archives of Developmental Biology,Springer-Verlag,03400794| +Willdenowia - Annals of the Botanic Garden and Botanical Museum Berlin-Dahlem,Botanic Garden & Botanical Museum Berlin-Dahlem BGBM,05119618|18686397 +William Carlos Williams Review,Muse - Johns Hopkins University Press,19350244 +Wilmott,Wiley Blackwell (John Wiley & Sons),15406962|15418286 +Wilmott Journal,Wiley Blackwell (John Wiley & Sons),17596351|1759636X +Wind and Structures,Techno-Press,12266116| +Wind Energy,Wiley Blackwell (John Wiley & Sons),10954244|10991824 +Wind Energy Science,Copernicus GmbH,23667451 +Wind Energy Science Discussions,Copernicus GmbH,2366-7621 +Wind Engineering,SAGE Publications,0309524X|00000000 +Wind Engineers JAWE,Japan Association for Wind Engineering,09121935|18838413 +Wine Economics and Policy,Elsevier ,22129774| +Wine Studies,PAGEPress Publications,20394438|20394446 +Winter Braids Lecture Notes,Cellule MathDoc/CEDRAM,24260312 +Winterthur Portfolio,The University of Chicago Press,00840416|15456927 +Wireless Communications and Mobile Computing,Wiley Blackwell (John Wiley & Sons),15308669|15308677 +Wireless Engineering and Technology,"""Scientific Research Publishing, Inc.""",21522294|21522308 +Wireless Networks,Springer-Verlag,10220038|15728196 +Wireless Personal Communications,Springer-Verlag,09296212|1572834X +Wireless Power Transfer,Cambridge University Press,20528418 +Wireless Sensor Network,"""Scientific Research Publishing, Inc.""",19453078|19453086 +Wiring Installations and Supplies,Institution of Electrical Engineers,03088650| +Wirtschaftsdienst,Springer-Verlag,00436275|1613978X +WIRTSCHAFTSINFORMATIK,Springer-Verlag,09376429|18618936 +Wirtschaftsinformatik & Management,Springer Fachmedien Wiesbaden GmbH,18675905|18675913 +Wirtschaftsrechtliche Blätter,Springer-Verlag,09303855|18643434 +Wisconsin Studies in Contemporary Literature,JSTOR,01464949| +wissen kompakt,Springer-Verlag,18632637|21903816 +Wissenschaftsrecht,Mohr Siebeck,09480218| +WiSt - Wirtschaftswissenschaftliches Studium,C.H. Beck,03401650| +With Trialkylborane–Water Complexes,Thieme Publishing Group,20600496 +WMU Journal of Maritime Affairs,Springer-Verlag,1651436X|16541642 +Wohnrechtliche Blätter,Springer-Verlag,09332766|16137647 +Woman - Psychosomatic Gynaecology and Obstetrics,Elsevier ,2213560X| +Woman s Art Journal,JSTOR,02707993| +Women & Criminal Justice,Informa UK (Taylor & Francis),08974454|15410323 +Women & Health,Informa UK (Taylor & Francis),03630242|15410331 +Women & History,"""Informa UK (Haworth Press, Inc.,)""",02763885| +Women & Performance a journal of feminist theory,Informa UK (Taylor & Francis),0740770X|17485819 +Women & Politics,Informa UK (Taylor & Francis),01957732|15409473 +Women & Therapy,Informa UK (Taylor & Francis),02703149|15410315 +Women a Cultural Review,Informa UK (Taylor & Francis),09574042|14701367 +Women and Birth,Elsevier ,18715192| +Women and Music A Journal of Gender and Culture,Muse - Johns Hopkins University Press,15530612 +Women Gender and Families of Color,University of Illinois Press,23260939|23260947 +Women in French Studies,Muse - Johns Hopkins University Press,21665486 +Women in German Yearbook,University of Nebraska Press,10587446|1940512X +Women in Higher Education,Wiley Blackwell (John Wiley & Sons),10608303| +Women in Management Review,Emerald (MCB UP ),09649425|00000000 +Women in Sport and Physical Activity Journal,Human Kinetics,10636161| +Women Reproductive System Tumors,Publishing House ABV Press,19944098|19998627 +Women s Health,Future Medicine,17455057|17455065 +Women s Health - Open Journal,Openventio Publishers,23803940 +Women s Health Bulletin,International Neuroscience Institute,23455136|23829990 +Women s Health Issues,Elsevier ,10493867| +Women s Health Medicine,Elsevier - Medicine Publishing Company,17441870| +Women s History Review,Informa UK (Taylor & Francis),09612025|1747583X +Women s Midlife Health,Springer (Biomed Central Ltd.),20542690 +Women s Reproductive Health,Informa UK (Taylor & Francis),23293691|23293713 +Women s Studies,Informa UK (Taylor & Francis),00497878|15477045 +Women s Studies in Communication,Informa UK (Taylor & Francis),07491409|2152999X +Women s Studies International Forum,Elsevier ,02775395| +Women s Studies International Quarterly,Elsevier ,01480685| +Women s Studies Review,"""Korean Women's Institute, Ewha Womans University""",15987698| +Women s Writing,Informa UK (Taylor & Francis),09699082|17475848 +Women Studies Abstracts,Springer-Verlag,00497835| +Womens Health International,Elyns Group LLC,24693138 +Wood Material Science and Engineering,Informa UK (Taylor & Francis),17480272|17480280 +Wood Science = Faipar,"""ERFARET, Ldt.""",00146897|20649231 +Wood Science and Technology,Springer-Verlag,00437719|14325225 +WORD,Informa UK (Taylor & Francis),00437956|23735112 +Word & Image,Informa UK (Taylor & Francis),02666286|19432178 +Word of Mouth,SAGE Publications,10483950| +WORD Structure,Edinburgh University Press,17501245|17552036 +Work,IOS Press,10519815|10519815 +Work & Stress,Informa UK (Taylor & Francis),02678373|14645335 +Work Aging and Retirement,Oxford University Press,20544642|20544650 +Work and Occupations,SAGE Publications,07308884|00000000 +Work Employment & Society,SAGE Publications,09500170|14698722 +Work Organisation Labour & Globalisation,Pluto Journals,1745641X|17456428 +Work Study,Emerald (MCB UP ),00438022|00000000 +working office,Springer Fachmedien Wiesbaden GmbH,1438471X|21928649 +Working Papers em Lingüística,Universidade Federal de Santa Catarina,14151464|19848420 +Working with Older People,Emerald (MCB UP ),13663666|20428790 +WorkingUSA,Wiley Blackwell (Blackwell Publishing),10897011|17434580 +Workplace Health & Safety,SAGE Publications,21650799|21650969 +Workrooms Journal,Fundacion Universidad de Oviedo,23862483 +World Academics Journal of Engineering Sciences,"""WorldAcademics, BOSON Academic Publications""",2348635X +World Academics Journal of Management,"""WorldAcademics, BOSON Academic Publications""",2321905X +World Affairs,CrossRef test user,00438200|19401582 +World Allergy Organization Journal,Springer (Biomed Central Ltd.),19394551|19394551 +World Applied Sciences Journal,International Digital Organization for Scientific Information,18184952| +World Archaeology,Informa UK (Taylor & Francis),00438243|14701375 +World Art,Informa UK (Taylor & Francis),21500894|21500908 +World Banking Abstracts,Wiley Blackwell (Blackwell Publishing),02659484|14679698 +World Chinese Journal of Digestology,Baishideng Publishing Group Co (World Chinese Journal of Digestology),22192859| +World Class Design to Manufacture,Emerald (MCB UP ),13523074|00000000 +World Competition,Springer (Kluwer Academic Publishers),10114548| +World Construction,Universe Scientific Publishing Pte. Ltd.,22513329|23154586 +World Development,Elsevier ,0305750X| +World Digital Libraries - An international journal,The Energy and Resources Institute,0974567X|09757597 +World Economic and Financial Surveys,International Monetary Fund,16079477 +World Economic and Financial Surveys,International Monetary Fund,10205101| +World Economic and Financial Surveys,International Monetary Fund,1020511X| +World Economic and Financial Surveys,International Monetary Fund,10205128| +World Economic and Financial Surveys,International Monetary Fund,02587440| +World Economic Outlook,International Monetary Fund,19998058| +World Economic Outlook,International Monetary Fund,02566877| +World Economic Outlook,International Monetary Fund,15645215 +World Economic Outlook,International Monetary Fund,1020508X| +World Economic Research,Hans Publishers,21676607|21676615 +World Economy,Wiley Blackwell (Blackwell Publishing),03785920|14679701 +World Englishes,Wiley Blackwell (Blackwell Publishing),08832919|1467971X +World Environment,Scientific and Academic Publishing,21631573| +World Family Medicine Journal/Middle East Journal of Family Medicine,Medi + World International,18390188|18390196 +World Federation of Occupational Therapists Bulletin,Maney Publishing,14473828|20566077 +World Food Policy,Policy Studies Organization,23728639 +World Future Review,SAGE Publications,19467567|21692793 +World Futures,Informa UK (Taylor & Francis),02604027|15561844 +World Health & Population,Longwoods Publishing,19296541 +World Journal for Pediatric and Congenital Heart Surgery,SAGE Publications,21501351|2150136X +World Journal of Acupuncture - Moxibustion,Elsevier ,10035257| +World Journal of Agricultural Research,"""Science and Education Publishing Co., Ltd.""",23330643| +World Journal of AIDS,"""Scientific Research Publishing, Inc.""",21608814|21608822 +World Journal of Analytical Chemistry,"""Science and Education Publishing Co., Ltd.""",23331178| +World Journal of Anesthesiology,Baishideng Publishing Group Co (World Journal of Anesthesiology),22186182| +World Journal of Biological Chemistry,Baishideng Publishing Group Co (World Journal of Chemistry),19498454| +World Journal of Business and Management,"""Macrothink Institute, Inc.""",23774622 +World Journal of Cancer Research,American Scientific Publishers,21656304| +World Journal of Cancer Research,Hans Publishers,21649049|21649057 +World Journal of Cardiology,Baishideng Publishing Group Co (World Journal of Cardiology),19498462| +World Journal of Cardiovascular Diseases,"""Scientific Research Publishing, Inc.""",21645329|21645337 +World Journal of Cardiovascular Surgery,"""Scientific Research Publishing, Inc.""",21643202|21643210 +World Journal of Chemical Education,"""Science and Education Publishing Co., Ltd.""",23751665| +World Journal of Clinical Cases,Baishideng Publishing Group Co (World Journal of Clinical Cases),23078960| +World Journal of Clinical Infectious Diseases,Baishideng Publishing Group Co (World Journal of Clinical Infectious Diseases),22203176| +World Journal of Clinical Oncology,Baishideng Publishing Group Co (World Journal of Clinical Oncology),22184333| +World Journal of Clinical Pediatrics,Baishideng Publishing Group Co (World Journal of Clinical Pediatrics),22192808| +World Journal of Clinical Urology,Baishideng Publishing Group Co (World Journal of Clinical Urology),22192816| +World Journal of Computer Application and Technology,"""Horizon Research Publishing Co., Ltd.""",23314982|23314990 +World Journal of Condensed Matter Physics,"""Scientific Research Publishing, Inc.""",21606919|21606927 +World Journal of Critical Care Medicine,Baishideng Publishing Group Co (World Journal of Critical Care Medicine),22203141| +World Journal of Dentistry,Jaypee Brothers Medical Publishing,09766006|09766014 +World Journal of Dermatology,Baishideng Publishing Group Co (World Journal of Dermatology),22186190| +World Journal of Diabetes,Baishideng Publishing Group Co (World Journal of Diabetes),19489358| +World Journal of Education,Sciedu Press,19250746|19250754 +World Journal of Emergency Medicine,World Journal of Emergency Medicine,19208642| +World Journal of Emergency Surgery,Springer (Biomed Central Ltd.),17497922|17497922 +World Journal of Endocrine Surgery,Jaypee Brothers Medical Publishing,09755039|09757902 +World Journal of Engineering,Multiscience,17085284| +World Journal of Engineering and Technology,"""Scientific Research Publishing, Inc.""",23314222|23314249 +World Journal of English Language,Sciedu Press,19250703|19250711 +World Journal of Entrepreneurship Management and Sustainable Development,Emerald (MCB UP ),20425961| +World Journal of Environmental Engineering,"""Science and Education Publishing Co., Ltd.""",23723076| +World Journal of Environmental Research,Sciencepark Research Organization and Counseling,23012641 +World Journal of Experimental Medicine,Baishideng Publishing Group Co (World Journal of Experimental Medicine),2220315X| +World Journal of Forestry,Hans Publishers,21692432|21692440 +World Journal of Gastroenterology,Baishideng Publishing Group Co ,10079327| +World Journal of Gastrointestinal Endoscopy,Baishideng Publishing Group Co (World Journal of Gastrointestinal Endoscopy),19485190| +World Journal of Gastrointestinal Oncology,Baishideng Publishing Group Co (World Journal of Gastrointestinal Oncology),19485204| +World Journal of Gastrointestinal Pathophysiology,Baishideng Publishing Group Co,21505330| +World Journal of Gastrointestinal Pharmacology and Therapeutics,Baishideng Publishing Group Co,21505349| +World Journal of Gastrointestinal Surgery,Baishideng Publishing Group Co (World Journal of Gastrointestinal Surgery),19489366| +World Journal of Hematology,Baishideng Publishing Group Co (World Journal of Hematology),22186204| +World Journal of Hepatology,Baishideng Publishing Group Co (World Journal of Hepatology),19485182| +World Journal of Hypertension,Baishideng Publishing Group Co (World Journal of Hypertension),22203168| +World Journal of Immunology,Baishideng Publishing Group Co (World Journal of Immunology),22192824| +World Journal of Laparoscopic Surgery with DVD,Jaypee Brothers Medical Publishing,09745092|09751955 +World Journal of Mechanics,"""Scientific Research Publishing, Inc.""",2160049X|21600503 +World Journal of Medical Genetics,Baishideng Publishing Group Co (World Journal of Medical Genetics),22203184| +World Journal of Meta-Analysis,World Journal of Meta-Analysis,23083840| +World Journal of Methodology,Baishideng Publishing Group Co (World Journal of Methodology),22220682| +World Journal of Microbiology and Biotechnology,Springer-Verlag,09593993|15730972 +World Journal of Nano Science and Engineering,"""Scientific Research Publishing, Inc.""",21614954|21614962 +World Journal of Nephrology,Baishideng Publishing Group Co (World Journal of Nephrology),22206124| +World Journal of Nephrology and Urology,"""Elmer Press, Inc.""",19271239|19271247 +World Journal of Neurology,Baishideng Publishing Group Co (World Journal of Neurology),22186212| +World Journal of Neuroscience,"""Scientific Research Publishing, Inc.""",21622000|21622019 +World Journal of Nuclear Medicine,Medknow Publications,14501147| +World Journal of Nuclear Science and Technology,"""Scientific Research Publishing, Inc.""",21616795|21616809 +World Journal of Obstetrics and Gynecology,Baishideng Publishing Group Co (World Journal of Obstetrics and Gynecology),22186220| +World Journal of Oncology,"""Elmer Press, Inc.""",19204531|1920454X +World Journal of Ophthalmology,Baishideng Publishing Group Co (World Journal of Opthalmology),22186239| +World Journal of Orthopedics,Baishideng Publishing Group Co (World Journal of Orthopedics),22185836| +World Journal of Otorhinolaryngology,Baishideng Publishing Group Co (World Journal of Otorhinolaryngology),22186247| +World Journal of Otorhinolaryngology-Head and Neck Surgery,Elsevier ,20958811| +World Journal of Pediatrics,Springer-Verlag,17088569|18670687 +World Journal of Pharmacology,Baishideng Publishing Group Co (World Journal of Pharmacology),22203192| +World Journal of Psychiatry,Baishideng Publishing Group Co (World Journal of Psychiatry),22203206| +World Journal of Radiology,Baishideng Publishing Group Co (World Journal of Radiology),19498470| +World Journal of Respirology,Baishideng Publishing Group Co (World Journal of Respirology),22186255| +World Journal of Retina and Vitreous,Jaypee Brothers Medical Publishing,22490477|22490485 +World Journal of Rheumatology,Baishideng Publishing Group Co (World Journal of Rheumatology),22203214| +World Journal of Science Technology and Sustainable Development,Emerald (MCB UP ),20425945| +World Journal of Social Science,Sciedu Press,23299347|23299355 +World Journal of Stem Cells,Baishideng Publishing Group Co (World Journal of Stem Cells),19480210| +World Journal of Stomatology,Baishideng Publishing Group Co (World Journal of Stomatology),22186263| +World Journal of Surgery,Springer-Verlag,03642313|14322323 +World Journal of Surgical Oncology,Springer (Biomed Central Ltd.),14777819|14777819 +World Journal of Surgical Procedures,Baishideng Publishing Group Co (World Journal of Surgical Procedures),22192832| +World Journal of Traditional Chinese Medicine,World Journal of Traditional Chinese Medicine,23118571| +World Journal of Translational Medicine,Baishideng Publishing Group Co (World Journal of Translational Medicine),22206132| +World Journal of Transplantation,Baishideng Publishing Group Co (World Journal of Transplantation),22203230| +World Journal of Urology,Springer-Verlag,07244983|14338726 +World Journal of Vaccines,"""Scientific Research Publishing, Inc.""",21605815|21605823 +World Journal of VAT/GST Law,Informa UK (Taylor & Francis),20488432|20488440 +World Journal of Veterinary Science,Synergy Publishers,23100796|23100796 +World Journal of Virology,Baishideng Publishing Group Co (World Journal of Virology),22203249| +World Journal on Educational Technology,Sciencepark Research Organization and Counseling,13091506|13090348 +World Leisure & Recreation,Informa UK (Taylor & Francis),10261133| +World Leisure Journal,Informa UK (Taylor & Francis),04419057|16078055 +World Literature Studies,Hans Publishers,23305258|23305266 +World Literature Today,World Literature Today,01963570|19458134 +World Literature Written in English,Informa UK (Taylor & Francis),00931705| +World Medical & Health Policy,Wiley Blackwell (Blackwell Publishing),19484682|19484682 +World Mycotoxin Journal,Wageningen Academic Publishers,18750710|18750796 +World Neurosurgery,Elsevier ,18788750| +World of Work Report,Wiley Blackwell (John Wiley & Sons),20499280| +World Oil Trade,Wiley Blackwell (John Wiley & Sons),09501029| +World Patent Information,Elsevier ,01722190| +World Policy Journal,Duke University Press,07402775|19360924 +World Political Science,Walter de Gruyter GmbH,23634774|23634782 +World Political Science Review,Walter de Gruyter GmbH,21946248|19356226 +World Politics,Cambridge University Press,00438871|10863338 +World Psychiatry,Wiley Blackwell (John Wiley & Sons),17238617|20515545 +World Pumps,Elsevier ,02621762| +World Rabbit Science,Universitat Politecnica de Valencia,12575011|19898886 +World Research Journal of Ad Hoc and Ubiquitous Computing,Bioinfo Publications,23203382|23205660 +World Research Journal of Agricultural & Biosystems Engineering,Bioinfo Publications,23193913|23193921 +World Research Journal of Agricultural Biotechnology,Bioinfo Publications,22789847|22789855 +World Research Journal of Agronomy,Bioinfo Publications,23203404|23205644 +World Research Journal of Anatomy,Bioinfo Publications,23214430| +World Research Journal of Antimicrobial Agents,Bioinfo Publications,23203390|23205652 +World Research Journal of Applied Medicinal Chemistry,Bioinfo Publications,22309314|22309322 +World Research Journal of Applied Physics,Bioinfo Publications,09767673|09767681 +World Research Journal of Biochemistry,Bioinfo Publications,22790810|22790829 +World Research Journal of Biologically-Inspired Computing,Bioinfo Publications,22788492|22788506 +World Research Journal of Biomaterials,Bioinfo Publications,22787046|22787054 +World Research Journal of Cardiology,Bioinfo Publications,23214422| +World Research Journal of Civil Engineering,Bioinfo Publications,22775986|22775994 +World Research Journal of Computer Architecture,Bioinfo Publications,22788514|22788522 +World Research Journal of Computer-Aided Drug Design,Bioinfo Publications,23205687|23205695 +World Research Journal of Engineering and Technology,Bioinfo Publications,22788530|22788549 +World Research Journal of Entrepreneurship and Business,Bioinfo Publications,23205709|23205717 +World Research Journal of Financial Economics and Stochastics,Bioinfo Publications,2277601X|23205725 +World Research Journal of Geoinformatics,Bioinfo Publications,22787003|22787011 +World Research Journal of Human-Computer Interaction,Bioinfo Publications,22788476|22788484 +World Research Journal of Library and Information Science,Bioinfo Publications,2278702X|22787038 +World Research Journal of Medicinal & Aromatic Plants,Bioinfo Publications,22789863|22789871 +World Research Journal of Nephrology,Bioinfo Publications,23214414| +World Research Journal of Organic Chemistry,Bioinfo Publications,23203374|23205679 +World Research Journal of Pattern Recognition,Bioinfo Publications,22788557|22788565 +World Research Journal of Peptide and Protein,Bioinfo Publications,22784586|22784608 +World Research Journal of Telecommunications Systems,Bioinfo Publications,22788573|22788581 +World Research Journal of Transactions on Algorithms,Bioinfo Publications,2278845X|22788468 +World Review of Entrepreneurship Management and Sustainable Development,Inderscience Enterprises Ltd.,17460573|17460581 +World Review of Intermodal Transportation Research,Inderscience Enterprises Ltd.,17494729|17494737 +World Review of Political Economy,Pluto Journals,2042891X|20428928 +World Review of Science Technology and Sustainable Development,Inderscience Enterprises Ltd.,17412242|17412234 +World s Poultry Science Journal,Cambridge University Press,00439339|17434777 +World Science and Technology,Elsevier ,18763553| +World Scientific Research,Asian Educational Journal Publishing Group,24116661 +World Stroke Academy,Wiley Blackwell (John Wiley & Sons),2051333X| +World Studies in Education,James Nicholas Publishers,1441340X| +World Technopolis Review,World Technopolis Association,22344594| +World Trade and Arbitration Materials,Springer (Kluwer Academic Publishers),10226583| +World Trade Review,Cambridge University Press,14747456|14753138 +World Transport Policy and Practice,Emerald (MCB UP ),13527614|00000000 +World Wide Web,Springer-Verlag,1386145X|15731413 +Worldviews Global Religions Culture and Ecology,Brill Academic Publishers,13635247|15685357 +Worldviews on Evidence-Based Nursing,Wiley Blackwell (Blackwell Publishing),1545102X|17416787 +Worldviews on Evidence-based Nursing presents the archives of Online Journal of Knowledge Synthesis for Nursing,Wiley Blackwell (Blackwell Publishing),10727639|10727639 +Worldwide Hospitality and Tourism Themes,Emerald (MCB UP ),17554217| +Worm,Landes Bioscience,21624046|21624054 +WormBook,WormBook,15518507|15518507 +Wound Medicine,Elsevier ,22139095| +Wound Repair and Regeneration,Wiley Blackwell (Blackwell Publishing),10671927|1524475X +Wounds and wound infections The prof B M Kostyuchenok journal,Publishing House ABV Press,24089613| +WPOM - Working Papers on Operations Management,Universitat Politecnica de Valencia,19899068 +Writing & Pedagogy,Equinox Publishing,17565839|17565847 +Writing Systems Research,Informa UK (Taylor & Francis),17586801|1758681X +Written Communication,SAGE Publications,07410883|00000000 +Written Language & Literacy,John Benjamins Publishing Company,13876732|15706001 +Wroclaw Review of Law Administration & Economics,De Gruyter Open Sp. z o.o. ,20841264 +Wschód Europy Studia humanistyczno-społeczne,Wydawnictwo Uniwersytetu Marii Curie-SkÅ?odowskiej w Lublinie,24504866| +Wspolczesne Zarzadzanie Kwartalnik srodowisk naukowych i liderów biznesu,Index Copernicus International,16435494| +Współczesna Onkologia,Termedia Sp. z.o.o.,14282526| +WSQ Women s Studies Quarterly,Muse - Johns Hopkins University Press,19341520 +Wuhan University Journal of Natural Sciences,Springer-Verlag,10071202|19934998 +Wydawnictwo Naukowe,Wyzsza Szkola Handlu I Uslug,16429613| +X-Acoustics Imaging and Sensing,De Gruyter Open Sp. z o.o. ,23530634 +X-Ray Optics and Instrumentation,Hindawi Publishing Corporation,16877632|16877640 +X-Ray Spectrometry,Wiley Blackwell (John Wiley & Sons),00498246|10974539 +X-ray Structure Analysis Online,Japan Society for Analytical Chemistry,18833578 +X-RAYS,The Crystallographic Society of Japan,18845568 +Xaragall revista de ciències de la Catalunya central,Iniciativa Digital Politecnica,20134479| +Xenobiotica,Informa UK (Taylor & Francis),00498254|13665928 +Xenotransplantation,Wiley Blackwell (Blackwell Publishing),0908665X|13993089 +XLinguae,Slovenska Vzdelavacia a Obstaravacia s.r.o.,13378384|13378384 +XRDS Crossroads The ACM Magazine for Students,Association for Computing Machinery,15284972| +XVII-XVIII Revue de la société d études anglo-américaines des XVIIe et XVIIIe siècles,PERSEE Program,02913798|2117590X +XX Die Zeitschrift für Frauen in der Medizin,Thieme Publishing Group,2193584X|21935858 +xxxx,CrossRef test user, +Yakhak Hoeji,The Pharmaceutical Society of Korea,03779556|23839457 +YAKUGAKU ZASSHI,Pharmaceutical Society of Japan,00316903|13475231 +Yale French Studies,JSTOR,00440078| +Yale Journal of Music & Religion,Yale Univeristy Libraru,2377231X +Yalova Üniversitesi Sosyal Bilimler Dergisi,Yalova Journal of Social Sciences,21461333| +Yamaguchi Medical Journal,Yamaguchi University Medical Association,05131731|18804462 +YANG-MING STUDIES,The Korea Society of Yang-Ming Studies,12295957| +Yazyk i kul tura,Tomsk State University,19996195| +YBL Journal of Built Environment,De Gruyter Open Sp. z o.o. ,2063997X|20642520 +Yearbook for European Jewish Literature Studies,Walter de Gruyter GmbH,21966249|21966257 +Yearbook for Traditional Music,The International Council for Traditional Music,07401558| +Yearbook of Anesthesiology and Pain Management,Elsevier ,10735437| +Yearbook of Anthropology,The University of Chicago Press,15244555| +Yearbook of Cardiology,Elsevier ,01454145| +Yearbook of Critical Care Medicine,Elsevier ,07343299| +Yearbook of Dentistry,Elsevier ,00843717| +Yearbook of Dermatology and Dermatologic Surgery,Elsevier ,00933619| +Yearbook of Diagnostic Radiology,Elsevier ,00981672| +Yearbook of Emergency Medicine,Elsevier ,02717964| +Yearbook of Endocrinology,Elsevier ,00843741| +Yearbook of European Law,Oxford University Press,02633264|20450044 +Yearbook of Gastroenterology,Elsevier ,07395930| +Yearbook of Hand and Upper Limb Surgery,Elsevier ,15517977| +Yearbook of International Environmental Law,Oxford University Press,09651721|20450052 +Yearbook of International Humanitarian Law,Cambridge University Press,13891359|1574096X +Yearbook of Islamic and Middle Eastern Law Online,Brill Academic Publishers,13842935|22112987 +Yearbook of Medicine,Elsevier ,00843873| +Yearbook of Neonatal and Perinatal Medicine,Elsevier ,87565005| +Yearbook of Neurology and Neurosurgery,Elsevier ,05135117| +Yearbook of Obstetrics Gynecology and Women s Health,Elsevier ,1090798X| +Yearbook of Oncology,Elsevier ,10401741| +Yearbook of Ophthalmology,Elsevier ,0084392X| +Yearbook of Orthopedics,Elsevier ,02761092| +Yearbook of Otolaryngology-Head and Neck Surgery,Elsevier ,1041892X| +Yearbook of Pathology and Laboratory Medicine,Elsevier ,10779108| +Yearbook of Pediatrics,Elsevier ,00843954| +Yearbook of Plastic and Aesthetic Surgery,Elsevier ,15351513| +Yearbook of Psychiatry and Applied Mental Health,Elsevier ,00843970| +Yearbook of Pulmonary Disease,Elsevier ,87563452| +Yearbook of Sports Medicine,Elsevier ,01620908| +Yearbook of Surgery,Elsevier ,00903671| +Yearbook of the Association of Pacific Coast Geographers,Muse - Johns Hopkins University Press,15513211 +Yearbook of the German Cognitive Linguistics Association,Walter de Gruyter GmbH,21972788|21972796 +Yearbook of the International Folk Music Council,JSTOR,03166082| +Yearbook of the National Society for the Study of Education,Wiley Blackwell (Blackwell Publishing),00775762|17447984 +Yearbook of Urology,Elsevier ,00844071| +Yearbook of Vascular Surgery,Elsevier ,07494041| +Yeast,Wiley Blackwell (Blackwell Publishing),0749503X|10970061 +Yeditepe Medical Journal,Makale Sistemi/Geomes,1307279X| +Yemeni Journal For Medical Sciences,"""University of Science and Technology, Yemen""",22279601|2227961X +Yemeni Journal of Agriculture and Veterinary Sciences,"""Al Manhal FZ, LLC""",23117788| +Yeni Symposium,ScopeMed International Medical Journal Managment and Indexing System,13008773| +Yeol-sang Journal of Classical Studies,Yeol-song Society of Classical Studies,17382734| +Yerbilimleri/Hacettepe Üniversitesi Yerbilimleri Uygulama ve Araştırma Merkezi Dergisi,Yerbilimleri,13012894| +Yesterday and Today,Academy of Science of South Africa,22230386| +Yeungnam University Journal of Medicine,Yeungnam University College of Medicine (KAMJE),12257737|22348042 +Yod,OpenEdition,03389316|22610200 +Yoga Mimamsa,Medknow Publications,00440507| +Yönetim ve Ekonomi Celal Bayar Üniversitesi İktisadi ve İdari Bilimler Fakültesi Dergisi,Yonetim ve Ekonomi,13020064| +Yonsei Medical Journal,Yonsei University College of Medicine (KAMJE),05135796|19762437 +Yonsei Music Research,Yonsei Music Research Institute,15986659| +Yorkshire Archaeological Journal,Maney Publishing,00844276|20450664 +Young,SAGE Publications,11033088|1741-3222 +Young Consumers Insight and Ideas for Responsible Marketers,Emerald (MCB UP ),17473616| +Young Exceptional Children,SAGE Publications,10962506| +Young Scientists Journal,Medknow Publications,09746102| +Youth & Society,SAGE Publications,0044118X|00000000 +Youth Justice,SAGE Publications,14732254|17476283 +Youth Theatre Journal,Informa UK (Taylor & Francis),08929092|19484798 +Youth Violence and Juvenile Justice,SAGE Publications,15412040|00000000 +Yugoslav journal of operations research,National Library of Serbia,03540243|1820743X +Yuksekogretim Dergisi,Deomed Publishing,2146796X|21467978 +Yunus Araştırma Bülteni,Yunus Arastirma Bulteni,13034456|21491828 +Yupana,Universidad Nacional del Litoral,16687035|23625562 +Zagazig Journal of Occupational Health and Safety,African Journals Online ,16878671|16878671 +Zagreb International Review of Economics and Business,Walter de Gruyter GmbH,18491162 +Zagreber Germanistische Beiträge,"""Faculty of Humanities and Social Sciences, University of Zagreb""",13300946| +Zahedan Journal of Research in Medical Sciences,International Neuroscience Institute,20087977|22286403 +Zahnmedizin up2date,Thieme Publishing Group,18650457|18650465 +Zairyo-to-Kankyo,Japan Society of Corrosion Engineering,09170480|18819664 +Zambezia The Journal of Humanities of the University of Zimbabwe,African Journals Online ,3790622 +ZAMM ‐ Journal of Applied Mathematics and Mechanics / Zeitschrift für Angewandte Mathematik und Mechanik,Wiley Blackwell (John Wiley & Sons),00442267|15214001 +Zanco Journal of Medical Sciences,Hawler Medical University,19955588|19955596 +Zaporozhye Medical Journal,Zaporozhye State Medical University,23064145|23101210 +Zarządzanie Publiczne,Uniwersytet Ekonomiczny w Krakowie - Krakow University of Economics,18983529| +Zastita bilja,Centre for Evaluation in Education and Science,03727866| +Zastita materijala,Centre for Evaluation in Education and Science,03519465| +Zavarivanje i zavarene konstrukcije,Centre for Evaluation in Education and Science,03547965| +Zbornik Akademije umetnosti,Centre for Evaluation in Education and Science,23348666| +Zbornik Instituta za pedagoska istrazivanja,National Library of Serbia,05796431|18209270 +Zbornik Matice srpske za drustvene nauke,National Library of Serbia,03525732|24060836 +Zbornik Matice srpske za prirodne nauke,National Library of Serbia,03524906|24060828 +Zbornik radova - Geografski fakultet Univerziteta u Beogradu,Centre for Evaluation in Education and Science,14507552| +Zbornik radova Ekonomskog fakulteta u Rijeci časopis za ekonomsku teoriju i praksu / Proceedings of Rijeka Faculty of Economics Journal of Economics and Business,"""University of Rijeka, Faculty of Economics""",13318004|18467520 +Zbornik radova Elektrotehnicki institut Nikola Tesla,Centre for Evaluation in Education and Science,03508528| +Zbornik radova Filozofskog fakulteta u Pristini,Centre for Evaluation in Education and Science,03502694| +Zbornik radova Filozofskog fakulteta u Pri�tini,Centre for Evaluation in Education and Science,03547795| +Zbornik radova Građevinskog fakulteta,Gradevinski Fakultet Subotica/Faculty of Civil Engineering Subotica,03526852|23349573 +Zbornik radova Pravnog fakulteta Nis,Centre for Evaluation in Education and Science,03508501| +Zbornik radova Pravnog fakulteta Novi Sad,Centre for Evaluation in Education and Science,05502179| +Zbornik radova Uciteljskog fakulteta Prizren-Leposavic,Centre for Evaluation in Education and Science,14529343| +Zbornik radova Vizantoloskog instituta,National Library of Serbia,05849888|24060917 +ZBORNIK ZA JEZIKE I KNJIŽEVNOSTI FILOZOFSKOG FAKULTETA U NOVOM SADU,"""Faculty of Philosophy, University of Novi Sad""",22177221|22178546 +ZDM,Springer-Verlag,18639690|18639704 +Zdrowie Publiczne,Medical University of Lublin,00442011| +Zebrafish,Mary Ann Liebert,15458547|15578542 +Zeitschrift der Deutschen Geologischen Gesellschaft,Smithsonian Institution Biodiversity Heritage Library,00120189| +Zeitschrift der Deutschen Gesellschaft für Geowissenschaften,Schweizerbart,18601804| +Zeitschrift der Japanischen Mikrobiologische Gesellschaft,Japanese Society for Bacteriology,1883695X +Zeitschrift der Koreanisch-Deutschen Gesellschaft fuer Sozialwissenschaften,Koreanisch-Deutsche Gesellschaft fuer Sozlaiwssenschaften,1229537X| +Zeitschrift der Savigny-Stiftung für Rechtsgeschichte Germanistische Abteilung,Bohlau Verlag,03234045|23044861 +Zeitschrift der Savigny-Stiftung für Rechtsgeschichte Kanonistische Abteilung,Bohlau Verlag,03234142|23044896 +Zeitschrift der Savigny-Stiftung für Rechtsgeschichte Romanistische Abteilung,Bohlau Verlag,03234096|23044934 +Zeitschrift f?r Weltgeschichte,"""Peter Lang, International Academic Publishers""",16152581| +Zeitschrift fuer evangelisches Kirchenrecht,Mohr Siebeck,00442690| +Zeitschrift fuer Geistiges Eigentum / Intellectual Property Journal,Mohr Siebeck,1867237X|18672523 +Zeitschrift fuer Theologie und Kirche,Mohr Siebeck,00443549|00000000 +Zeitschrift für Ägyptische Sprache und Altertumskunde,Oldenbourg Wissenschaftsverlag,0044216X|2196713X +Zeitschrift für allgemeine Mikrobiologie,Wiley Blackwell (John Wiley & Sons),00442208|15214028 +Zeitschrift für Allgemeine Wissenschaftstheorie,Springer-Verlag,00442216| +Zeitschrift für Analysis und ihre Anwendungen,European Mathematical Society Publishing House,02322064| +Zeitschrift für Analytische Chemie,Springer-Verlag,03727920| +Zeitschrift für Anatomie und Entwicklungsgeschichte,Springer-Verlag,00442232| +Zeitschrift für Angewandte Entomologie,Wiley Blackwell (Blackwell Publishing),00442240| +Zeitschrift für Angewandte Linguistik,Walter de Gruyter GmbH,14339889|21900191 +Zeitschrift für angewandte Mathematik und Physik,Springer-Verlag,00442275|14209039 +Zeitschrift für angewandte Mathematik und Physik,Springer-Verlag,00442275|14209039 +Zeitschrift für Anglistik und Amerikanistik,Walter de Gruyter GmbH,00442305|21964726 +Zeitschrift für anorganische Chemie,Wiley Blackwell (John Wiley & Sons),03727874|15213749 +Zeitschrift für anorganische und allgemeine Chemie,Wiley Blackwell (John Wiley & Sons),00442313|15213749 +Zeitschrift für anorganische und allgemeine Chemie,Wiley Blackwell (John Wiley & Sons),00442313|15213749 +Zeitschrift für Antikes Christentum / Journal of Ancient Christianity,Walter de Gruyter GmbH,09499571|1612961X +Zeitschrift für Arbeits- und Organisationspsychologie A&O,Hogrefe Publishing Group,09324089|21906270 +Zeitschrift für Arbeitswissenschaft,Springer-Verlag,03402444|23664681 +Zeitschrift für Assyriologie und vorderasiatische Archäologie,Walter de Gruyter GmbH,00845299|16131150 +Zeitschrift für Außen- und Sicherheitspolitik,Springer-Verlag,18662188|18662196 +Zeitschrift für Bankrecht und Bankwirtschaft,RWS Verlag GmbH,09362800|21991715 +Zeitschrift für Bevölkerungswissenschaft,Springer-Verlag,03402398|18668852 +Zeitschrift für Bibliothekswesen und Bibliographie,Vittorio Klostermann GMBH,00442380|18642950 +Zeitschrift für Bildungsforschung,Springer-Verlag,21906890|21906904 +Zeitschrift für celtische Philologie,Walter de Gruyter GmbH,00845302|1865889X +Zeitschrift für Chemie,Wiley Blackwell (John Wiley & Sons),00442402| +Zeitschrift für Chemie und Industrie der Kolloide,Springer-Verlag,0372820X| +Zeitschrift für das gesamte Genossenschaftswesen,Walter de Gruyter GmbH,00442429|00442429 +Zeitschrift für das gesamte Insolvenzrecht,Walter de Gruyter GmbH,16158032|2366200X +Zeitschrift für Didaktik der Naturwissenschaften,Springer-Verlag,09491147|2197988X +Zeitschrift für Didaktik der Rechtswissenschaft,Nomos Verlag,21967261| +Zeitschrift für die Alttestamentliche Wissenschaft,Walter de Gruyter GmbH,00442526|16130103 +Zeitschrift für Die Gesamte Experimentelle Medizin,Springer-Verlag,00442534| +Zeitschrift für die gesamte experimentelle Medizin einschließlich experimentelle Chirurgie,Springer-Verlag, +Zeitschrift für Die Gesamte Experimentelle Medizin einschließlich experimenteller Chirurgie,Springer-Verlag, +Zeitschrift für die gesamte Neurologie und Psychiatrie,Springer-Verlag,03034194| +Zeitschrift für die gesamte Strafrechtswissenschaft,Walter de Gruyter GmbH,00845310|1612703X +Zeitschrift für die gesamte Versicherungswissenschaft,Springer-Verlag,00442585|18659748 +Zeitschrift für die neutestamentliche Wissenschaft,Walter de Gruyter GmbH,00442615|1613009X +Zeitschrift für Differentielle und Diagnostische Psychologie,Hogrefe Publishing Group,01701789|22351485 +Zeitschrift für Energiewirtschaft,Springer-Verlag,03435377|18662765 +Zeitschrift für Entwicklungspsychologie und Pädagogische Psychologie,Hogrefe Publishing Group,00498637|21906262 +Zeitschrift für Epileptologie,Springer-Verlag,16176782|16100646 +Zeitschrift für Ernährungswissenschaft,Springer-Verlag,0044264X| +Zeitschrift für Erziehungswissenschaft,Springer-Verlag,1434663X|18625215 +Zeitschrift für Europäisches Unternehmens- und Verbraucherrecht,Springer-Verlag,21913412|21913420 +Zeitschrift für europarechtliche Studien,Nomos Verlag,1435439X| +Zeitschrift für Evangelische Ethik,Gutersloher Verlaghaus,00442674|2197912X +Zeitschrift für Evidenz Fortbildung und Qualität im Gesundheitswesen,Elsevier ,18659217| +Zeitschrift für Experimentelle Pathologie und Therapie,Springer-Verlag,03728552| +Zeitschrift für Experimentelle Psychologie,Hogrefe Publishing Group,09493964| +Zeitschrift für Friedens- und Konfliktforschung,Nomos Verlag,21921741| +Zeitschrift für Ganzheitliche Tiermedizin,Thieme Publishing Group,09397868|14391422 +Zeitschrift für Gastroenterologie,Thieme Publishing Group,00442771|14397803 +Zeitschrift für Geburtshilfe und Neonatologie,Thieme Publishing Group,09482393|14391651 +Zeitschrift für Gemeinschaftsprivatrecht,Walter de Gruyter GmbH,16129229|21939519 +Zeitschrift für Geomorphologie,Schweizerbart,03728854|00000000 +Zeitschrift für Geomorphologie Supplementary Issues,Schweizerbart,18641687|00000000 +Zeitschrift für Germanistik,"""Peter Lang, International Academic Publishers""",03237982| +Zeitschrift für Germanistische Linguistik,Walter de Gruyter GmbH,03013294|16130626 +Zeitschrift für Gerontologie und Geriatrie,Springer-Verlag,09486704|14351269 +Zeitschrift für Gerontopsychologie & -psychiatrie,Hogrefe Publishing Group,10116877|16642899 +Zeitschrift für Geschichtsdidaktik,"""Vandenhoeck & Ruprecht GmbH & Co, KG""",16105982|21968292 +Zeitschrift für Gesundheitspsychologie,Hogrefe Publishing Group,09438149|21906289 +Zeitschrift für Herz- Thorax- und Gefäßchirurgie,Springer-Verlag,09309225|14351277 +Zeitschrift für Historische Forschung,Duncker & Humblot GmbH,03400174|18655599 +Zeitschrift für Hochschulrecht Hochschulmanagement und Hochschulpolitik zfhr,Springer-Verlag,16177126|16137655 +Zeitschrift für Hydrologie,Springer-Verlag,10118497| +Zeitschrift für Hygiene und Infektionskrankheiten,Springer-Verlag,03401782| +Zeitschrift für Immobilienökonomie,Springer Fachmedien Wiesbaden GmbH,16114051|21988021 +Zeitschrift für Individualpsychologie,"""Vandenhoeck & Ruprecht GmbH & Co, KG""",21968330|21968330 +Zeitschrift für Induktive Abstammungs- und Vererbungslehre,Springer-Verlag,0372901X| +Zeitschrift für interkulturelle Germanistik,Transcript Verlag,18693660|21980330 +Zeitschrift für Jagdwissenschaft,Springer-Verlag,00442887| +Zeitschrift für Jagdwissenschaft,Springer-Verlag,00442887| +Zeitschrift für junge Religionswissenschaft,OpenEdition,18625886 +Zeitschrift für Kardiologie,Springer-Verlag,03005860|14351285 +Zeitschrift für Kinder- und Jugendpsychiatrie und Psychotherapie,Hogrefe Publishing Group,14224917|16642880 +Zeitschrift für Kinderheilkunde,Springer-Verlag,00442917| +Zeitschrift für Klassische Homöopathie,Thieme Publishing Group,09350853|14394308 +Zeitschrift für Klinische Psychologie,Hogrefe Publishing Group,00845345| +Zeitschrift für Klinische Psychologie und Psychotherapie,Hogrefe Publishing Group,16163443|21906297 +Zeitschrift für Komplementärmedizin,Thieme Publishing Group,18676081|18676103 +Zeitschrift für Konfliktmanagement,Verlag Dr. Otto Schmidt KG,14392127|21944210 +Zeitschrift für Krebsforschung,Springer-Verlag,03011585| +Zeitschrift für Krebsforschung und Klinische Onkologie,Springer-Verlag,00845353| +Zeitschrift für Kristallographie,Oldenbourg Wissenschaftsverlag,00442968|00442968 +Zeitschrift für Kristallographie - Crystalline Materials,Oldenbourg Wissenschaftsverlag,21944946|21967105 +Zeitschrift für Kristallographie - New Crystal Structures,Oldenbourg Wissenschaftsverlag,14337266|21974578 +Zeitschrift für Kristallographie Mineralogie und Petrographie,Springer-Verlag,03734218| +Zeitschrift für Kristallographie Supplements,Oldenbourg Wissenschaftsverlag,0930486X| +Zeitschrift für kritische Sozialtheorie und Philosophie,Walter de Gruyter GmbH,21945632|21945640 +Zeitschrift für Kultur- und Kollektivwissenschaft,Transcript Verlag,23636300|23636319 +Zeitschrift für Kulturmanagement,Transcript Verlag,23635525|23635533 +Zeitschrift für Kulturwissenschaften,Transcript Verlag,21979103|21979111 +Zeitschrift für Kunstgeschichte,JSTOR,00442992| +Zeitschrift für Lebensmittel-Untersuchung und -Forschung,Springer-Verlag,14314630| +Zeitschrift für Literaturwissenschaft und Linguistik,Springer-Verlag,00498653|2365953X +Zeitschrift für Management,Springer-Verlag,18614264|18659012 +Zeitschrift für Medienpsychologie,Hogrefe Publishing Group,16176383| +Zeitschrift für Medienwissenschaft,CrossRef test prefix,18691722| +Zeitschrift für Medizinische Mikrobiologie und Immunologie,Springer-Verlag,00443077| +Zeitschrift für Medizinische Physik,Elsevier ,09393889| +Zeitschrift für Metallkunde,Carl Hanser Verlag GMBH & Co KG,00443093| +Zeitschrift für Miet- und Raumrecht,Walter de Gruyter GmbH,03407497|23662069 +Zeitschrift für Morphologie der Tiere,Springer-Verlag,00443131| +Zeitschrift für Morphologie und Ökologie der Tiere,Springer-Verlag,03729389| +Zeitschrift für Nationalökonomie,Springer-Verlag,00443158| +Zeitschrift für Naturforschung A,Walter de Gruyter GmbH,09320784|18657109 +Zeitschrift für Naturforschung B,Walter de Gruyter GmbH,09320776|18657117 +Zeitschrift für Naturforschung C,Walter de Gruyter GmbH,09395075|18657125 +Zeitschrift für Neuropsychologie,Hogrefe Publishing Group,1016264X|16642902 +Zeitschrift für öffentliche und gemeinwirtschaftliche Unternehmen,Nomos Verlag,03449777| +Zeitschrift für öffentliches Recht,Springer-Verlag,09484396|16137663 +Zeitschrift für Orthomolekulare Medizin,Thieme Publishing Group,16115562|18642470 +Zeitschrift für Orthopädie und ihre Grenzgebiete,Thieme Publishing Group,00443220|1438941X +Zeitschrift für Orthopädie und Unfallchirurgie,Thieme Publishing Group,18646697|18646743 +Zeitschrift für Pädagogische Psychologie,Hogrefe Publishing Group,10100652|16642910 +Zeitschrift für Palliativmedizin,Thieme Publishing Group,16152921|1615293X +Zeitschrift für Parasitenkunde Parasitology Research,Springer-Verlag,00443255| +Zeitschrift für Parlamentsfragen,Nomos Verlag,03401758| +Zeitschrift für Personalpsychologie,Hogrefe Publishing Group,16176391| +Zeitschrift für Pflanzenernährung Düngung Bodenkunde,Wiley Blackwell (John Wiley & Sons),03729702|15222624 +Zeitschrift für Pflanzenernährung Düngung Bodenkunde A Wissenschaftlicher Teil,Wiley Blackwell (John Wiley & Sons),03729702|15222624 +Zeitschrift für Pflanzenernährung und Bodenkunde,Wiley Blackwell (John Wiley & Sons),00443263|15222624 +Zeitschrift für Pflanzenernährung und Düngung A Wissenschaftlicher Teil,Wiley Blackwell (John Wiley & Sons),0372851X|15222624 +Zeitschrift für Pflanzenernährung und Düngung B Wirtschaftlich-praktischer Teil,Wiley Blackwell (John Wiley & Sons),0372851X|15222624 +Zeitschrift für Pflanzenphysiologie,Elsevier ,0044328X| +Zeitschrift für philosophische Forschung,Vittorio Klostermann GMBH,00443301|14392615 +Zeitschrift für Physik,Springer-Verlag,00443328| +Zeitschrift für Physik A Atomic Nuclei,Springer-Verlag,09301151| +Zeitschrift für Physik A Atomic Nuclei,Springer-Verlag,09301151| +Zeitschrift für Physik A Atoms and Nuclei,Springer-Verlag,03402193| +Zeitschrift für Physik A Hadrons and Nuclei,Springer-Verlag,09397922|14315831 +Zeitschrift für Physik A Hadrons and Nuclei,Springer-Verlag,09397922|14315831 +Zeitschrift für Physik B Condensed Matter,Springer-Verlag,07223277|1431584X +Zeitschrift für Physik B Condensed Matter and Quanta,Springer-Verlag,0340224X| +Zeitschrift für Physik C,Springer-Verlag,01709739| +Zeitschrift für Physik C Particles and Fields,Springer-Verlag,01709739|14315858 +Zeitschrift für Physik C Particles and Fields,Springer-Verlag,01709739| +Zeitschrift für Physik D,Springer-Verlag,01787683| +Zeitschrift für Physik D Atoms Molecules and Clusters,Springer-Verlag,01787683|14315866 +Zeitschrift für Physikalische Chemie,Oldenbourg Wissenschaftsverlag,09429352|21967156 +Zeitschrift für Physikalische Chemie/International journal of research in physical chemistry and chemical physics,Oldenbourg Wissenschaftsverlag,00443336| +Zeitschrift für Phytotherapie,Thieme Publishing Group,0722348X|14389584 +Zeitschrift für Planung & Unternehmenssteuerung,Springer-Verlag,16138392|16139267 +Zeitschrift für Politik,Nomos Verlag,00443360|00443360 +Zeitschrift für Politikberatung,Nomos Verlag,18654789| +Zeitschrift für Politikwissenschaft,Nomos Verlag,14306387| +Zeitschrift für Präventivmedizin - Revue de Médecine Préventive,Springer-Verlag,00443379| +Zeitschrift für Psychiatrie Psychologie und Psychotherapie,Hogrefe Publishing Group,16614747|16642929 +Zeitschrift für psychoanalytische Theorie und Praxis,Quotus Publishing,01693395| +Zeitschrift für Psychodrama und Soziometrie,Springer-Verlag,16195507|18622526 +Zeitschrift für Psychologie,Hogrefe Publishing Group,21908370|21512604 +Zeitschrift für Psychologie / Journal of Psychology,Hogrefe Publishing Group,00443409| +Zeitschrift für Psychosomatische Medizin und Psychotherapie,"""Vandenhoeck & Ruprecht GmbH & Co, KG""",21968349|21968349 +Zeitschrift für Rechtsmedizin,Springer-Verlag,00443433| +Zeitschrift für Rechtssoziologie,Walter de Gruyter GmbH,01740202|23660392 +Zeitschrift für Religions- und Geistesgeschichte,Brill Academic Publishers,00443441|15700739 +Zeitschrift für Religionswissenschaft,Walter de Gruyter GmbH,09438610|2194508X +Zeitschrift für Rezensionen zur germanistischen Sprachwissenschaft,Walter de Gruyter GmbH,18671691|18671705 +Zeitschrift für Rheumatologie,Springer-Verlag,03401855|14351250 +Zeitschrift für romanische Philologie (ZrP),Walter de Gruyter GmbH,00498661|18659063 +Zeitschrift für Sexualforschung,Thieme Publishing Group,09328114|14389460 +Zeitschrift für Slawistik,Oldenbourg Wissenschaftsverlag,00443506|21967016 +Zeitschrift für Sozialpsychologie,Hogrefe Publishing Group,00443514|22351477 +Zeitschrift für Sozialreform,Walter de Gruyter GmbH,05142776|23660295 +Zeitschrift für Sportpsychologie,Hogrefe Publishing Group,16125010|21906300 +Zeitschrift für Sprachwissenschaft,Walter de Gruyter GmbH,07219067|16133706 +Zeitschrift für Staats- und Europawissenschaften,Nomos Verlag,16107780|16127013 +Zeitschrift für Tierernährung und Futtermittelkunde,Wiley Blackwell (Blackwell Publishing),03730069| +Zeitschrift für Tierphysiologie Tierernährung und Futtermittelkunde,Wiley Blackwell (Blackwell Publishing),00443565| +Zeitschrift für Tierpsychologie,Wiley Blackwell (Blackwell Publishing),00443573| +Zeitschrift für Tierzüchtung und Züchtungsbiologie,Wiley Blackwell (Blackwell Publishing),00443581| +Zeitschrift für Tierzüchtung und Züchtungsbiologie einschließlich Tierernährung,Wiley Blackwell (Blackwell Publishing),01799770| +Zeitschrift für Tourismuswissenschaft,Walter de Gruyter GmbH,18679501|23660406 +Zeitschrift für Unternehmens- und Gesellschaftsrecht,Walter de Gruyter GmbH,03402479|16127048 +Zeitschrift für Unternehmensgeschichte,C.H. Beck,03422852| +Zeitschrift für Untersuchung der Lebensmittel,Springer-Verlag,03730174| +Zeitschrift für Untersuchung der Nahrungs- und Genußmittel,Springer-Verlag,03729419| +Zeitschrift für Vererbungslehre,Springer-Verlag,03728609| +Zeitschrift für Vergleichende Physiologie,Springer-Verlag,0044362X| +Zeitschrift für Vergleichende Politikwissenschaft,Springer-Verlag,18652646|18652654 +Zeitschrift für Wahrscheinlichkeitstheorie und Verwandte Gebiete,Springer-Verlag,00443719| +Zeitschrift für Wahrscheinlichkeitstheorie und Verwandte Gebiete,Springer-Verlag,00443719| +Zeitschrift für Weiterbildungsforschung - Report,Springer-Verlag,23640014|23640022 +Zeitschrift für Wettbewerbsrecht,RWS Verlag GmbH,16111982|21991723 +Zeitschrift für Wirtschaftsgeographie,Walter de Gruyter GmbH,23657693 +Zeitschrift für Zellforschung und Mikroskopische Anatomie,Springer-Verlag,00443794| +Zeitschrift für Zivilprozess,Walter de Gruyter GmbH,03423468|23662077 +Zeitschrift für Züchtung Reihe B Tierzüchtung und Züchtungsbiologie einschließlich Tierernährung,Wiley Blackwell (Blackwell Publishing),01799789| +Zeitschrift füur Physik B Condensed Matter,Springer-Verlag,0340224X| +Zeitschrift f\ ur Jagdwissenschaft,Springer-Verlag,00442887| +Zeitschrift Kunststofftechnik,Carl Hanser Verlag GMBH & Co KG,18642217| +Zemdirbyste-Agriculture,Lithuanian Research Centre for Agriculture and Forestry,13923196| +Žemės ūkio mokslai,Lithuanian Academy of Sciences,13920200|13920200 +Zen Nihon Shinkyu Gakkai zasshi (Journal of the Japan Society of Acupuncture and Moxibustion),The Japan Society of Acupuncture and Moxibustion,02859955|1882661X +Zentralblatt für Arbeitsmedizin Arbeitsschutz und Ergonomie,Springer-Verlag,09442502|21980713 +Zentralblatt für Bakteriologie,Elsevier ,09348840| +Zentralblatt für Bakteriologie 1 Abt Originale A Medizinische Mikrobiologie Infektionskrankheiten und Parasitologie,Elsevier ,01725599| +Zentralblatt für Bakteriologie Mikrobiologie und Hygiene I Abt Originale C Allgemeine angewandte und ökologische Mikrobiologie,Elsevier ,07219571| +Zentralblatt für Bakteriologie Mikrobiologie und Hygiene Series A Medical Microbiology Infectious Diseases Virology Parasitology,Elsevier ,01766724| +Zentralblatt für Bakteriologie Parasitenkunde Infektionskrankheiten und Hygiene Zweite Naturwissenschaftliche Abteilung Allgemeine Landwirtschaftliche und Technische Mikrobiologie,Elsevier ,00444057| +Zentralblatt für Bakteriologie Parasitenkunde Infektionskrankheiten und Hygiene Zweite Naturwissenschaftliche Abteilung Mikrobiologie der Landwirtschaft der Technologie und des Umweltschutzes,Elsevier ,03236056| +Zentralblatt für Chirurgie - Zeitschrift für Allgemeine Viszeral- Thorax- und Gefäßchirurgie,Thieme Publishing Group,0044409X|14389592 +Zentralblatt für Didaktik der Mathematik,Springer-Verlag,1615679X| +Zentralblatt für Geologie und Paläontologie Teil I,Schweizerbart,03405109| +Zentralblatt für Gynäkologie,Thieme Publishing Group,00444197|14389762 +Zentralblatt für Kinderchirurgie,Thieme Publishing Group,09409599|14389770 +Zentralblatt für Mikrobiologie,Elsevier ,02324393| +Zentralblatt für Mikrobiologie,Elsevier ,02324393| +Zentralblatt für Neurochirurgie,Thieme Publishing Group,00444251|14389746 +Zentralblatt für Veterinärmedizin,Wiley Blackwell (Blackwell Publishing),00444294| +Zentralblatt für Veterinärmedizin Reihe A,Wiley Blackwell (Blackwell Publishing),01770543| +Zentralblatt für Veterinärmedizin Reihe B,Wiley Blackwell (Blackwell Publishing),09312021| +Zeolites,Elsevier ,01442449| +Zephyrvs,Ediciones Universidad de Salamanca,05147336| +ZERBITZUAN,SIIS - Centro de Documentacion y Estudios,11347147| +Zero-a-Seis,Universidade Federal de Santa Catarina,19804512|19804512 +Zeszyty Cyrylo-Metodiańskie,Wydawnictwo Uniwersytetu Marii Curie-SkÅ?odowskiej w Lublinie,24498297 +Zeszyty Naukowe Akademii Marynarki Wojennej,Index Copernicus International,0860889X| +Zeszyty Naukowe Centrum Badań im Edyty Stein,Adam Mickiewicz University Poznan,18952984| +Zeszyty Naukowe Instytutu Administracji Akademii im Jana Długosza w Częstochowie Gubernaculum et Administratio,Akademia im. Jana Dlugosza w Czestochowie,17302889| +Zeszyty naukowe Politechniki Rzeszowskiej Nr 283 z 59,Rzeszow University of Technology,02092646| +Zeszyty Naukowe Uniwersytetu Ekonomicznego w Krakowie,Uniwersytet Ekonomiczny w Krakowie - Krakow University of Economics,18986447| +Zeszyty Naukowe Uniwersytetu Szczecińskiego Finanse Rynki Finansowe Ubezpieczenia,University of Szczecin,17332842|23004460 +Zeszyty Naukowe WCO Letters in Oncology Science,Elsevier ,17340489| +Zeszyty Naukowe WSHE Nauki Humanistyczne i Spoleczne,Ankara University,15077403 +Zeszyty Naukowe Wyższej Szkoły Humanitas Zarządzanie,Index Copernicus International,18998658| +Zeszyty Teoretyczne Rachunkowości,Index Copernicus International,16414381| +Zeynep Kamil Tıp Bülteni,Medical Bulletin of Zeynep Kamil,13007971|21484864 +ZFA - Zeitschrift für Allgemeinmedizin,Thieme Publishing Group,14336251|14399229 +ZfKE – Zeitschrift für KMU und Entrepreneurship,Duncker & Humblot GmbH,18604633|18655114 +Zhurnal akusherstva i zhenskikh bolezneĭ,ECO-Vector,16840461|16839366 +Zhurnal grazhdanskogo i ugolovnogo prava,Academic Publishing House Researcher,24094528|24137340 +Zhurnal Ministerstva narodnogo prosveshcheniya,Academic Publishing House Researcher,24093378|24137294 +ZIB,Nomos Verlag,09467165| +Zimbabwe Journal of Educational Research,African Journals Online ,10133445 +Zimbabwe Journal of Technological Sciences,African Journals Online ,20798997|20798997 +Zimbabwe Science News,African Journals Online ,10161503 +Zimbabwe Veterinary Journal,African Journals Online ,10161511 +Zinc Reagents for Stereoselective Reactions,Thieme Publishing Group,20100396 +Zinc supplementation improves heme biosynthesis in rats exposed to lead,Universa Medicina,19073062|24072230 +Zisin (Journal of the Seismological Society of Japan 2nd ser ),Seismological Society of Japan,00371114|18839029 +Živaâ psihologiâ,BIBLIO-GLOBUS Publishing House,24136522| +Žmogus ir žodis,Lithuanian University of Educational Sciences,13928600|18227805 +Znanie Ponimanie Umenie,Moscow University for the Humanities,19989873|22189238 +Zograf,National Library of Serbia,03501361|24060755 +Zona Próxima,Universidad del Norte,16572416|21459444 +Zoning Digest,Informa UK (Taylor & Francis),00845566| +Zoo Biology,Wiley Blackwell (John Wiley & Sons),07333188|10982361 +ZooKeys,Pensoft Publishers,13132989|13132970 +Zoologia (Curitiba),SciELO,19844670|19844689 +Zoologica Africana,Informa UK (Taylor & Francis),00445096| +Zoologica Poloniae,De Gruyter Open Sp. z o.o. ,0044510X|20836112 +Zoologica Scripta,Wiley Blackwell (Blackwell Publishing),03003256|14636409 +Zoological Bulletin,JSTOR,08981051| +Zoological Journal of the Linnean Society,Wiley Blackwell (Blackwell Publishing),00244082|10963642 +Zoological Letters,Springer (Biomed Central Ltd.),2056306X|2056306X +Zoological Research,China Science Publishing & Media Ltd.,02545853| +ZOOLOGICAL SCIENCE,BioOne (Zoological Society of Japan),02890003| +Zoological Studies,Springer (Biomed Central Ltd.),1810522X|1810522X +Zoologische Jahrbücher,Smithsonian Institution Biodiversity Heritage Library,03237087| +Zoologische Jahrbücher Abteilung für Anatomie und Ontogenie der Tiere,Smithsonian Institution Biodiversity Heritage Library,00445177| +Zoologischer Anzeiger - A Journal of Comparative Zoology,Elsevier ,00445231| +Zoologist (The),African Journals Online ,1596972X +Zoology,Elsevier ,09442006| +Zoology and Ecology,Informa UK (Taylor & Francis),21658005|21658013 +Zoology in the Middle East,Informa UK (Taylor & Francis),09397140|23262680 +Zoomorphologie,Springer-Verlag,03406725| +Zoomorphology,Springer-Verlag,0720213X|1432234X +Zoonoses and Public Health,Wiley Blackwell (Blackwell Publishing),18631959|18632378 +Zoos Print Journal,Wildlife Information Liaison Development Society,09732535|09732551 +Zoosymposia,Magnolia Press,11789905|11789913 +Zoosystema,"""BioOne (Museum National d'Histoire Naturelle, Paris, France)""",12809551|16389387 +Zoosystematics and Evolution,Pensoft Publishers,14351935|18600743 +Zootaxa,Magnolia Press,11755326|11755334 +Zorg en Financiering,Springer-Verlag,1569948X|18765122 +Zosen Kiokai Nenpo,Japan Society of Naval Architects and Ocean Engineers,18842046 +Zpravodaj Československého sdružení uživatelů TeXu,CSTUG,12116661|12138185 +Zurnal matematiceskoj fiziki analiza geometrii,Co. Ltd. Ukrinformnauka,18129471|18175805 +Zutot Perspectives on Jewish Culture,Brill Academic Publishers,15717283|18750214 +ZWR - Das Deutsche Zahnärzteblatt,Thieme Publishing Group,0044166X|14399148 +Zygon®,Wiley Blackwell (Blackwell Publishing),05912385|14679744 +Zygote,Cambridge University Press,09671994|14698730 +Zywnosc Nauka Technologia Jakosc/Food Science Technology Quality,Polskie Towarzystwo Technologow Zywnosci Wydawnictwo Naukowe PTTZ,14256959| +[2 + 2 + 1] Carbocyclization of Enynes with Carbon Monoxide,Thieme Publishing Group,20300069 +[3 + 2] Annulation Using Chiral 1 2-Bis[2 5-diphenylphospholan-1-yl]ethane,Thieme Publishing Group,20400403 +[5 + 2]-Cycloaddition Reactions,Thieme Publishing Group,20300042 +[sic] - a journal of literature culture and literary translation,University of Zadar,18477755 +«Aviation Materials and Technologies»,FSUE Scientific Research Institute of Aviation Materials,20719140| +«Архитектон известия вузов»,"""Eurasian Scientific and Industrial Chamber, Ltd.""",19904126 +«Современная высшая школа инновационный аспект»,Russian-British Institute of Managment,20719620|20719620 +ʻUlūm Islāmiyyah Journal,"""Al Manhal FZ, LLC""",16755936| +α α-Dicyanoalkene-Based Nucleophiles,Thieme Publishing Group,20400144 +α-Bromination of Carbonyl Compounds,Thieme Publishing Group,20400101 +α-Chlorination of Aldehydes,Thieme Publishing Group,20400128 +α-Chlorination of Carbonyl Compounds,Thieme Publishing Group,20400098 +α-Heterofunctionalization,Thieme Publishing Group,20400195 +α-Oxidation Reactions Using Dibenzoyl Peroxide,Thieme Publishing Group,20300441 +β-Isocupreidine as a Bifunctional Catalyst,Thieme Publishing Group,20500122 +Δελτίον Χριστιανικής Αρχαιολογικής Εταιρείας,National Documentation Centre,11055758|22412190 +Διάλογοι! Θεωρία και πράξη στις επιστήμες αγωγής και εκπαίδευσης,National Documentation Centre,24593737 +Επιθεώρηση Κοινωνικών Ερευνών,National Documentation Centre,00139696|22418512 +Επιστήμη και Κοινωνία Επιθεώρηση Πολιτικής και Ηθικής Θεωρίας,National Documentation Centre,11083697| +Επιστημονική Επετηρίδα Παιδαγωγικού Τμήματος Νηπιαγωγών Πανεπιστημίου Ιωαννίνων,National Documentation Centre,11084634|2241200X +Έρευνα στην Εκπαίδευση,National Documentation Centre,22417303 +Μακεδονικά,National Documentation Centre,0076289X|22412018 +Μνήμων,National Documentation Centre,11053917|22417524 +Μουσείο Μπενάκη,National Documentation Centre,11094109|24079502 +Σύγκριση,National Documentation Centre,11051361|22411941 +Τεκμήρια,National Documentation Centre,1106661X|17917573 +Το Βήμα του Ασκληπιού,Library of Technological Educational Institute of Athens,22416005 +Інфекційні хвороби,Ternopil State Medical University,16812727|24149969 +Інформаційно-керуючі системи на залізничному транспорті,Ukrainian State University of Railway Transport,16814886|24133833 +Авиационная промышленность,"""Science and Education, Ltd.""",0869530X| +Автоматизація технологічних і бізнес-процесів,Odessa National Academy of Food Technologies,23123125|2312931X +Автоматизация процессов управления,"""Science and Education, Ltd.""",19912927| +АГРАРНОЕ И ЗЕМЕЛЬНОЕ ПРАВО,"""Science and Education, Ltd.""",18151329| +Агрознање,National and University Library of the Republic of Srpska,15126412| +Агрохимический вестник,"""Science and Education, Ltd.""",02352516| +Административное и муниципальное право,"""NB-Media, Ltd.""",19992807| +Актуальні питання педіатрії акушерства та гінекології,Ternopil State Medical University,24114944|2415301X +Актуальные вопросы публичного права,"""Science and Education, Ltd.""",22258299| +Актуальные проблемы гуманитарных и естественных наук,"""Science and Education, Ltd.""",20730071| +Актуальные проблемы российского права,Kutafin Moscow State Law University,19941471| +Акустический журнал,Akademizdatcenter Nauka,03207919| +Альманах мировой науки,"""AR-Consult, LLC""",24128597| +АНАЛИ ПОСЛОВНЕ ЕКОНОМИЈЕ,National and University Library of the Republic of Srpska,18403298| +Аналитика и контроль,Ural Federal University,20731450|20731450 +Астрономический вестник,Akademizdatcenter Nauka,0320930X| +Астрономический журнал,Akademizdatcenter Nauka,00046299| +БЕЗБЈЕДНОСТ ПОЛИЦИЈА ГРАЂАНИ,National and University Library of the Republic of Srpska,18400698| +Бизнес в законе,"""Science and Education, Ltd.""",1816921X| +Биологические мембраны Журнал мембранной и клеточной биологии,Akademizdatcenter Nauka,02334755| +Биология внутренних вод,Akademizdatcenter Nauka,03209652| +Биомедицинска истраживања,National and University Library of the Republic of Srpska,19868529| +Биоорганическая химия,Akademizdatcenter Nauka,01323423| +БИОТЕХНОЛОГИЯ,"""Science and Education, Ltd.""",02342758| +Биоэтика,"""Science and Education, Ltd.""",20701586| +Бюллетень Восточно-Сибирского научного центра Сибирского отделения Российской Академии медицинских наук,"""Science and Education, Ltd.""",18110649| +Вісник Дніпропетровського університету Біологія екологія,Oles Honchar Dnipropetrovsk National University,23100842|2312301X +Вісник Дніпропетровського університету Біологія медицина,Oles Honchar Dnipropetrovsk National University,23104155|23127295 +Вісник Дніпропетровського університету Геологія географія,Oles Honchar Dnipropetrovsk National University,23132159|24099864 +Вісник дніпропетровського університету Педагогіка і психологія,Oles Honchar Dnipropetrovsk National University,23128860| +Вісник Дніпропетровського університету Серія Моделювання,Oles Honchar Dnipropetrovsk National University,23124547| +Вісник Дніпропетровського університету Серія Хімія,Oles Honchar Dnipropetrovsk National University,2306871X|23134984 +Вісник економіки транспорту і промисловості,Ukrainian State University of Railway Transport,20754892|24133914 +Вісник соціальної гігієни та організації охорони здоров я України,Ternopil State Medical University,16812786|24149470 +Вісник фармації,"""Science and Education, Ltd.""",15627241| +Вектор науки ТГУ,"""Science and Education, Ltd.""",22207457| +Вестник Адыгейского государственного университета,"""Science and Education, Ltd.""",20741065| +Вестник АПК Ставрополья,"""Science and Education, Ltd.""",22229345| +ВЕСТНИК Брянского государственного университета,"""Science and Education, Ltd.""",20722087| +ВЕСТНИК ВОЛГОГРАДСКОГО ГОСУДАРСТВЕННОГО АРХИТЕКТУРНО-СТРОИТЕЛЬНОГО УНИВЕРСИТЕТА,"""Science and Education, Ltd.""",18154360| +Вестник Волгоградского государственного университета,"""Science and Education, Ltd.""",19989946| +Вестник гражданских инженеров,"""Science and Education, Ltd.""",19995571| +Вестник ДВО РАН,"""Science and Education, Ltd.""",08697698| +Вестник защиты растений,"""Science and Education, Ltd.""",17271320| +Вестник Института дружбы народов Кавказа «Теория экономики и управления народным хозяйством»,"""Science and Education, Ltd.""",20713819| +Вестник Костромского государственного университета им Н А Некрасова,"""Science and Education, Ltd.""",20731426| +Вестник Московского государственного областного университета,"""Science and Education, Ltd.""",20728514| +ВЕСТНИК МОСКОВСКОГО УНИВЕРСИТЕТА МВД РОССИИ,"""Science and Education, Ltd.""",20730454| +ВЕСТНИК МЭИ,"""Science and Education, Ltd.""",19936982| +Вестник Науки Сибири,"""Science and Education, Ltd.""",22260064| +Вестник НИЯУ МИФИ,Pleiades Publishing,2304487X| +Вестник Онкологического Научного Центра,"""Science and Education, Ltd.""",08698910| +Вестник Пермского национального исследовательского политехнического университета Геология Нефтегазовое и горное дело,PNRPU Publishing Office,22249923| +Вестник Пермского университета Геология,Perm State University (PSU),19943601|23134798 +Вестник Пермского университета Юридические науки,Perm State University (PSU),19954190| +Вестник Российской академии медицинских наук,Paediatrician Publishers LLC,08696047|24143545 +Вестник Российской академии наук,Akademizdatcenter Nauka,08695873| +Вестник Самарского государственного технического университета Серия Физико-математические науки,Samara State Technical University,19918615|23107081 +Вестник Самарского государственного университета,"""Science and Education, Ltd.""",18105378| +Вестник Санкт-Петербургского государственного университета культуры и искусств,"""Science and Education, Ltd.""",22203044| +Вестник Санкт-Петербургского университета,"""Science and Education, Ltd.""",19950047| +Вестник Северо-Кавказского федерального университета,"""Science and Education, Ltd.""",2307907X| +Вестник спортивной науки,"""Science and Education, Ltd.""",19980833| +Вестник Тверского государственного университета,"""Science and Education, Ltd.""",19950144| +Вестник ТОГУ,"""Science and Education, Ltd.""",19963440| +Вестник Томского государственного педагогического университета,"""Science and Education, Ltd.""",1609624X| +Вестник челябинского государственного университета,"""Science and Education, Ltd.""",19942796| +ВИЧ-ИНФЕКЦИЯ И ИММУНОСУПРЕССИИ,"""Science and Education, Ltd.""",20779828| +Власть закона,"""Science and Education, Ltd.""",20790295| +Водные ресурсы,Akademizdatcenter Nauka,03210596| +Военно-медицинский журнал,"""Science and Education, Ltd.""",00269050| +Военно-промышленный курьер,"""Science and Education, Ltd.""",17293928| +Вопросы безопасности,"""NB-Media, Ltd.""",24097543 +Вопросы ихтиологии,Akademizdatcenter Nauka,00428752| +Вопросы культурологии,"""Science and Education, Ltd.""",20739702| +Вопросы ономастики,Ural Federal University,19942400|19942451 +Вопросы современной педиатрии,Paediatrician Publishers LLC,16825527|16825535 +ВОПРОСЫ ТЕОРИИ И ПРАКТИКИ ЖУРНАЛИСТИКИ,Baikal State University,23086203|23086211 +Вопросы школьной и университетской медицины и здоровья,"""Science and Education, Ltd.""",23053895| +Вопросы экономики и права,"""Science and Education, Ltd.""",20725574| +Вулканология и сейсмология,Akademizdatcenter Nauka,02030306| +Высокомолекулярные соединения,Akademizdatcenter Nauka,05075475| +Высокомолекулярные соединения А,Akademizdatcenter Nauka,23081120| +Высокомолекулярные соединения Б,Akademizdatcenter Nauka,23081139| +Высокомолекулярные соединения С,Akademizdatcenter Nauka,23081147| +Высшее образование в России,"""Science and Education, Ltd.""",08693617| +Генетика,Akademizdatcenter Nauka,00166758| +Геология и геофизика,Publishing House SB RAS,00167886| +Геология рудных месторождений,Akademizdatcenter Nauka,00167770| +Геомагнетизм и аэрономия,Akademizdatcenter Nauka,00167940| +Геотектоника,Akademizdatcenter Nauka,0016853X| +Геохимия,Akademizdatcenter Nauka,00167525| +Глобальный научный потенциал,"""Science and Education, Ltd.""",19979355| +Годишњак факултета правних наука - АПЕИРОН,National and University Library of the Republic of Srpska,22329668|22329684 +Горная промышленность,"""Science and Education, Ltd.""",16099192| +Государственное управление Электронный вестник,"""Science and Education, Ltd.""",20701381| +Государство и право,"""Science and Education, Ltd.""",01320769| +Градостроительство,"""Science and Education, Ltd.""",22188770| +Гуманитарные исследования в Восточной Сибири и на Дальнем Востоке,"""Science and Education, Ltd.""",19972857| +Гуманитарные науки в Сибири,Publishing House SB RAS,08698651| +Дискретная математика,Steklov Mathematical Institute,02340860|23053143 +Дифференциальные уравнения,Pleiades Publishing,03740641| +Доклады Адыгской (Черкесской) Международной академии наук,"""Science and Education, Ltd.""",17269946| +Доклады Академии наук,Akademizdatcenter Nauka,08695652| +Економіка харчової промисловості,Odessa National Academy of Food Technologies,2312847X +Жилищное строительство,"""Science and Education, Ltd.""",00444472| +Жилищное строительство,"""Science and Education, Ltd.""",00444472| +Журнал аналитической химии,Akademizdatcenter Nauka,00444502| +Журнал высшей нервной деятельности им  И  В  Павлова,Akademizdatcenter Nauka,00444677| +Журнал Высшей школы экономики,"""Science and Education, Ltd.""",18138918| +Журнал вычислительной математики и математической физики,Akademizdatcenter Nauka,00444669| +Журнал неорганической химии,Akademizdatcenter Nauka,0044457X| +Журнал структурной химии,Publishing House SB RAS,01367463| +Журнал ФӘ Н-НАУКА,"""Science and Education, Ltd.""",22241744| +Журнал физической химии,Akademizdatcenter Nauka,00444537| +Журнал Экспериментальной и Теоретической Физики,Akademizdatcenter Nauka,00444510| +Защита и карантин растений,"""Science and Education, Ltd.""",10268634| +Зборник радова Економског факултета у Источном Сарајеву,National and University Library of the Republic of Srpska,18403557|19866690 +Зборник радова Филозофског факултета у Приштини,Centre for Evaluation in Education and Science,03543293|22178082 +Здобутки клінічної і експериментальної медицини,Ternopil State Medical University,18112471|24158836 +Зернові продукти і комбікорми,Odessa National Academy of Food Technologies,2313478X| +Зоологический журнал,Akademizdatcenter Nauka,00445134| +Известия высших учебных заведений Радиоэлектроника,Kyiv Politechnic Institute,00213470|23076011 +ИЗВЕСТИЯ ВЫСШИХ УЧЕБНЫХ ЗАВЕДЕНИЙ ТЕХНОЛОГИЯ ТЕКСТИЛЬНОЙ ПРОМЫШЛЕННОСТИ,"""Science and Education, Ltd.""",00213497| +Известия высших учебных заведений Электромеханика,South Russian State Polytechnic University (NPI),01363360| +Известия Иркутской государственной экономической академии,Baikal State University,19933541| +Известия Иркутской государственной экономической академии (Байкальский государственный университет экономики и права),Baikal State University,20720904 +Известия Национальной академии наук Беларуси,"""Science and Education, Ltd.""",18146023| +Известия Оренбургского государственного аграрного университета,"""Science and Education, Ltd.""",20730853| +Известия Российской академии наук Серия биологическая,Akademizdatcenter Nauka,00023329| +Известия Российской академии наук Серия математическая,Steklov Mathematical Institute,03732436| +Известия Российской академии наук Серия физическая,Akademizdatcenter Nauka,03676765| +Известия Российской академии наук Теория и системы управления,Akademizdatcenter Nauka,00023388| +Известия Российской академии наук Физика атмосферы и океана,Akademizdatcenter Nauka,00023515| +Известия тульского государственного университета,"""Science and Education, Ltd.""",23058404| +Известия Юго-Западного государственного университета,"""Science and Education, Ltd.""",22231560| +ИЗВЕСТИЯ ЮГО-ЗАПАДНОГО ГОСУДАРСТВЕННОГО УНИВЕРСИТЕТА СЕРИЯ ТЕХНИКА И ТЕХНОЛОГИИ,"""Science and Education, Ltd.""",22231528| +Изготовление МЭМС-структур чувствительных элементов датчиков концентрации газа с применением органических щелочей,"""Science and Education, Ltd.""",19927185| +Инновации и инвестиции,"""Science and Education, Ltd.""",2307180X| +Иностранные языки в школе,"""Science and Education, Ltd.""",01306073| +ИНФОРМАЦИОННЫЕ СИСТЕМЫ И ТЕХНОЛОГИИ,"""Science and Education, Ltd.""",20728964| +Информационный бюллетень ВПРС МОББ,"""Science and Education, Ltd.""",02073099| +Исследования Земли из космоса,Akademizdatcenter Nauka,02059614| +ИСТОРИКО-ЭКОНОМИЧЕСКИЕ ИССЛЕДОВАНИЯ,Baikal State University,23082488| +Исторические философские политические и юридические науки культурология и искусствоведение Вопросы теории и практики,"""Science and Education, Ltd.""",1997292X| +Исторический журнал научные исследования,"""NB-Media, Ltd.""",22221972| +ИСТРАЖИВАЊА,"""Faculty of Philosophy, University of Novi Sad""",03502112|03502112 +Кавказ & Глобализация Журнал социально-политических и экономических исследований,"""Science and Education, Ltd.""",18177190| +Кавказские научные записки,"""Science and Education, Ltd.""",20796749| +Казанская наука,"""Science and Education, Ltd.""",20789955| +Кинетика и катализ,Akademizdatcenter Nauka,04538811| +Коллоидный журнал,Akademizdatcenter Nauka,00232912| +Комбикорма,"""Science and Education, Ltd.""",02352605| +КОМПЕТЕНТНОСТЬ,"""Science and Education, Ltd.""",19938780| +Конструкции из композиционных материалов,"""Science and Education, Ltd.""",20732562| +Конфликтология / nota bene,"""NB-Media, Ltd.""",24098965| +Концепт,"""Science and Education, Ltd.""",2304120X| +Координационная химия,Akademizdatcenter Nauka,0132344X| +Космические исследования,Akademizdatcenter Nauka,00234206| +Криминологический Журнал Байкальского государственного университета экономики и права,Baikal State University,19967756|20718721 +Кристаллография,Akademizdatcenter Nauka,00234761| +Культура и искусство,"""NB-Media, Ltd.""",22221956| +Лекционные курсы НОЦ,Steklov Mathematical Institute,22268782|22268804 +Литология и полезные ископаемые,Akademizdatcenter Nauka,0024497X| +Математическая биология и биоинформатика,Institute of Mathematical Problems of Biology of RAS (IMPB RAS),19946538|19946538 +Математические заметки,Steklov Mathematical Institute,0025567X|23052880 +Математический сборник,Steklov Mathematical Institute,03688666|23052783 +Медико-биологические и социально-психологические проблемы безопасности в чрезвычайных ситуациях,"""Science and Education, Ltd.""",19954441| +Медико-биологические проблемы жизнедеятельности,"""Science and Education, Ltd.""",20742088| +Медицина труда и промышленная экология,"""Science and Education, Ltd.""",10269428| +Медицинский альманах,"""Science and Education, Ltd.""",19977689| +Медицинское право,"""Science and Education, Ltd.""",18131239| +Медична освіта,Ternopil State Medical University,16812751|24145998 +Медична хімія,Ternopil State Medical University,16812557| +Медсестринство,Ternopil State Medical University,24111597| +Международное право и международные организации / International Law and International Organizations,"""NB-Media, Ltd.""",22266305| +МЕЖДУНАРОДНОЕ ПУБЛИЧНОЕ И ЧАСТНОЕ ПРАВО,"""Science and Education, Ltd.""",18123910| +Международные отношения,"""NB-Media, Ltd.""",2305560X| +Международный бухгалтерский учет,"""Science and Education, Ltd.""",20735081| +"""Международный журнал """"Программные продукты и системы""""""","""Research Institute Centerprogamsystem, JSC""",0236235X|23112735 +Международный журнал прикладных и фундаментальных исследований,"""Science and Education, Ltd.""",19963955| +Международный журнал экспериментального образования,"""Science and Education, Ltd.""",19963947| +Международный научно-исследовательский журнал,"""Science and Education, Ltd.""",23039868| +Международный сельскохозяйственный журнал,"""Science and Education, Ltd.""",02357801| +Мембраны и Мембранные технологии,Pleiades Publishing,22181172| +Месечен хидрометеорологичен бюлетин,Prof. Marin Drinov Academic Publishing House,1314894X| +Методология и история психологии,"""Science and Education, Ltd.""",18192653| +Механика композиционных материалов и конструкций,"""Science and Education, Ltd.""",10296670| +Микробиология,Akademizdatcenter Nauka,00263656| +Микроэлектроника,Akademizdatcenter Nauka,05441269| +Минеральные ресурсы России,"""Science and Education, Ltd.""",08693188| +Мировая политика,"""NB-Media, Ltd.""",24098671 +Молекулярная биология,Akademizdatcenter Nauka,00268984| +Музыка и время,"""Science and Education, Ltd.""",20729960| +Налоги и налогообложение,"""NB-Media, Ltd.""",18128688| +Нанотехн и охрана здоровья,"""Science and Education, Ltd.""",20764804| +Наука и инновации,"""Science and Education, Ltd.""",18189857| +Наука и спорт современные тенденции,"""Science and Education, Ltd.""",23088826| +Наука и технологии,"""Science and Education, Ltd.""",16845811| +Науковий вiсник Херсонского державного унiверситету,"""Science and Education, Ltd.""",23078049| +Научная периодика проблемы и решения,BIBLIO-GLOBUS Publishing House,22187766|24094714 +Научная перспектива,"""Science and Education, Ltd.""",22191437| +Научные ведомости Белгородского государственного университета,"""Science and Education, Ltd.""",20754728| +Научные труды Вольного экономического общества России,"""Science and Education, Ltd.""",20722060| +Научные труды Московского гуманитарного университета,Moscow University for the Humanities,23075937| +Научный журнал Национального исследовательского университета информационных технологий механики и оптики,"""Science and Education, Ltd.""",23101172| +Научный журнал Российского НИИ проблем мелиорации,"""Science and Education, Ltd.""",22221816| +Национальная безопасность / nota bene,"""NB-Media, Ltd.""",20738560| +Национальные интересы приоритеты и безопасность,"""Science and Education, Ltd.""",20732872| +НАЦИОНАЛЬНЫЙ ЖУРНАЛ ГЛАУКОМА,"""Science and Education, Ltd.""",20784104| +Начальная школа плюс До и После,"""Science and Education, Ltd.""",20719515| +Неизвестный Достоевский,Petrozavodsk State University,24095788|24095788 +Нейрохимия,Akademizdatcenter Nauka,10278133| +Неорганические материалы,Akademizdatcenter Nauka,0002337X| +Нефтехимия,Akademizdatcenter Nauka,00282421| +Нефть Газ Право,"""Science and Education, Ltd.""",2073879X| +Нотариус,"""Science and Education, Ltd.""",18131204| +Обзорный журнал по химии,Pleiades Publishing,22181148| +Общественное здоровье и здравоохранение,"""Science and Education, Ltd.""",18120555| +Общество и экономика,"""Science and Education, Ltd.""",02073676| +Океанология,Akademizdatcenter Nauka,00301574| +Онкопедиатрия,Paediatrician Publishers LLC,23119977| +Онтогенез,Akademizdatcenter Nauka,04751450| +Оптика атмосферы и океана,Publishing House SB RAS,08695695| +Оптика и спектроскопия,Akademizdatcenter Nauka,00304034| +Офтальмохирургия,"""Science and Education, Ltd.""",0042465X| +Палеонтологический журнал,Akademizdatcenter Nauka,0031031X| +Педагогика,"""Science and Education, Ltd.""",0869561X| +Педагогика и просвещение,"""NB-Media, Ltd.""",2306434X| +ПЕДАГОГИЧЕСКИЙ ЖУРНАЛ БАШКОРТОСТАНА,"""Science and Education, Ltd.""",18173292| +Педиатрическая фармакология,Paediatrician Publishers LLC,17275776| +ПЕДИАТРИЯ,"""Science and Education, Ltd.""",0031403X| +Петрология,Akademizdatcenter Nauka,08695903| +Письма в астрономический журнал Астрономия и космическая астрофизика,Akademizdatcenter Nauka,03200108| +Письма в Эмиссия Оффлайн,"""Science and Education, Ltd.""",19978588| +Поверхность Рентгеновские синхротронные и нейтронные исследования,Akademizdatcenter Nauka,02073528| +ПОЖАРОВЗРЫВОБЕЗОПАСНОСТЬ,Pozhnauka Publishing House,08697493| +Полис Политические исследования,NPP Polis (Political Studies),10269487|16840070 +Политика и Общество,"""NB-Media, Ltd.""",18128696| +Политическая лингвистика,"""Science and Education, Ltd.""",19992629| +Полицейская деятельность,"""NB-Media, Ltd.""",22221964| +Полицейская и следственная деятельность,"""NB-Media, Ltd.""",24097810 +Почвоведение,Akademizdatcenter Nauka,0032180X| +ПРАВО И ГОСУДАРСТВО ТЕОРИЯ И ПРАКТИКА,"""Science and Education, Ltd.""",18151337| +Право и Образование,"""Science and Education, Ltd.""",1563020X| +Право и политика,"""NB-Media, Ltd.""",18119018| +Право и практика,"""Science and Education, Ltd.""",24112275| +Предпринимательство,"""Science and Education, Ltd.""",08697051| +ПРЕДСТАВИТЕЛЬНАЯ ВЛАСТЬ - XXI ВЕК ЗАКОНОДАТЕЛЬСТВО КОММЕНТАРИИ ПРОБЛЕМЫ,"""Science and Education, Ltd.""",20739532| +Приборы и техника эксперимента,Akademizdatcenter Nauka,00328162| +Приволжский научный вестник,"""Science and Education, Ltd.""",22240179| +Приволжский научный журнал,"""Science and Education, Ltd.""",19952511| +Приднепровский научный вестник,"""Science and Education, Ltd.""",15616940| +Прикладная биохимия и микробиология,Akademizdatcenter Nauka,05551099| +Прикладная механика и техническая физика,Publishing House SB RAS,08695032| +Пробелы в Российском законодательстве,"""Science and Education, Ltd.""",20723164| +ПРОБЛЕМЫ БЕЗОПАСНОСТИ ПОЛЕТОВ,"""Science and Education, Ltd.""",02355000| +ПРОБЛЕМЫ ИСТОРИЧЕСКОЙ ПОЭТИКИ,Petrozavodsk State University,10269479|10269479 +Программные системы и вычислительные методы,"""NB-Media, Ltd.""",23056061| +Профессиональное образование в современном мире,Publishing House SB RAS,22241841| +Профилактическая и клиническая медицина,"""Science and Education, Ltd.""",20749120| +Психолог,"""NB-Media, Ltd.""",24098701 +Психология в Экономике и Управлении,Baikal State University,22257845|24090832 +Психология и Психотехника,"""NB-Media, Ltd.""",20708955| +Радиационная биология Радиоэкология,Akademizdatcenter Nauka,08698031| +Радиотехника и электроника,Akademizdatcenter Nauka,00338494| +Регион Экономика и Социология,Publishing House SB RAS,08685169| +Региональная экономика теория и практика,"""Science and Education, Ltd.""",20731477| +Регионология,"""Science and Education, Ltd.""",01315706| +Российская оториноларингология,"""Science and Education, Ltd.""",18104800| +Российский Биотерапевтический Журнал,"""Science and Education, Ltd.""",17269784| +Российский журнал биомеханики,PNRPU Publishing Office,24096601| +Российский научный журнал,"""Science and Education, Ltd.""",19954417| +Российский педиатрический журнал,"""Science and Education, Ltd.""",15609561| +Российский стоматологический журнал,"""Science and Education, Ltd.""",17282802| +Россия и АТР,"""Science and Education, Ltd.""",10268804| +Русский Журнал «ВИЧ СПИД и родственные проблемы»,"""Science and Education, Ltd.""",1815154X| +Сварог,National and University Library of the Republic of Srpska,19868588| +Семейное и жилищное право,"""Science and Education, Ltd.""",1999477X| +Сибирский журнал вычислительной математики,Publishing House SB RAS,15607526| +Сибирский лесной журнал,Publishing House SB RAS,23111410| +Сибирский медицинский журнал,"""Science and Education, Ltd.""",20738552| +Сибирский филологический журнал,"""Science and Education, Ltd.""",18137083| +Сибирский экологический журнал,Publishing House SB RAS,08698619| +Системное управление,"""Science and Education, Ltd.""",20769156| +Слобожанський науково-спортивний вісник,Kharkiv State Academy of Physical Culture,19910177|1999818X +Современная наука Естественные и технические науки,"""Science and Education, Ltd.""",22232966| +Современная научная мысль,"""Science and Education, Ltd.""",2308264X| +Современная экономика проблемы и решения,Voronezh State University,20789017| +Современное машиностроение,"""Science and Education, Ltd.""",22230807| +Современное образование,"""NB-Media, Ltd.""",24098736 +Современное право,"""Science and Education, Ltd.""",19916027| +Современные научные исследования и инновации,"""Science and Education, Ltd.""",22234888| +Современные проблемы математики,Steklov Mathematical Institute,22265929|22265937 +Современные проблемы науки и образования (Modern Problems of Science and Education),"""Eurasian Scientific and Industrial Chamber, Ltd.""",18176321|20707428 +Современный научный вестник,"""Science and Education, Ltd.""",15616886| +Социодинамика,"""NB-Media, Ltd.""",24097144 +Социология города,"""Science and Education, Ltd.""",19943520| +Социология медицины,"""Science and Education, Ltd.""",17282810| +Социолошки дискурс,National and University Library of the Republic of Srpska,2232867X| +Союз криминалистов и криминологов,"""NB-Media, Ltd.""",23108681| +Спорт экономика право управление,"""Science and Education, Ltd.""",20702175| +Спортивный психолог,"""Science and Education, Ltd.""",20740182| +Спортске науке и здравље - АПЕИРОН,National and University Library of the Republic of Srpska,22328211|2232822X +Стоматология для всех,"""Science and Education, Ltd.""",1999172X| +Стратиграфия,Akademizdatcenter Nauka,0869592X| +Теорія та методика фізичного виховання,LLC OVS,19937989|19937997 +Теоретическая и математическая физика,Steklov Mathematical Institute,05646162|23053135 +Теоретическая и прикладная экономика,"""NB-Media, Ltd.""",24098647 +Теоретические основы химической технологии,Akademizdatcenter Nauka,00403571| +Теория вероятностей и ее применения,Steklov Mathematical Institute,0040361X|23053151 +Теория и практика физической культуры,"""Science and Education, Ltd.""",00403601| +Теплофизика высоких температур,Akademizdatcenter Nauka,00403644| +Теплоэнергетика,Pleiades Publishing,00403636| +Технические газы,Institute of Low Temperature Energy Technology,16820355| +Технология и конструирование в электронной аппаратуре,"""Private Enterprise, Politehperiodika""",22255818|23099992 +Токсикологический вестник,"""Science and Education, Ltd.""",08697922| +Тонкие химические технологии,"""Science and Education, Ltd.""",24106593| +ТОРГОВОЕ ДЕЛО ТОРГОВОЕ ПРАВО,"""Science and Education, Ltd.""",22203680| +Травматология и ортопедия России,"""Science and Education, Ltd.""",23112905| +ТРАНСПОРТ НАУКА ТЕХНИКА УПРАВЛЕНИЕ,"""Science and Education, Ltd.""",02361914| +Тренды и управление,"""NB-Media, Ltd.""",23079118| +Труды Института системного анализа РАН,"""Science and Education, Ltd.""",20790279| +Труды Математического института им Стеклова,Pleiades Publishing,03719685| +ТРУДЫ МЕЖДУНАРОДНОГО ГЕОМЕТРИЧЕСКОГО ЦЕНТРА,Odessa National Academy of Food Technologies,20729812| +Управление экономическими системами,"""Science and Education, Ltd.""",19994516| +Управленческие науки,"""Science and Education, Ltd.""",2304022X| +Уральский медицинский журнал,"""Science and Education, Ltd.""",20715943| +Уральский научный вестник,"""Science and Education, Ltd.""",15616908| +Уральский филологический вестник,"""Science and Education, Ltd.""",23067462| +Урбанистика,"""NB-Media, Ltd.""",23108673 +Урбанистика и рынок недвижимости,"""NB-Media, Ltd.""",23130539| +Успехи математических наук,Steklov Mathematical Institute,00421316|23052872 +Успехи современного естествознания,"""Science and Education, Ltd.""",16817494| +Ученые записки Казанской государственной академии ветеринарной медицины им Н Э Баумана,"""Science and Education, Ltd.""",04515838| +Ученые записки Российской академии музыки имени Гнесиных,"""NB-Media, Ltd.""",22279997| +Фізика і хімія твердого тіла,Vasyl Stefanyk Precarpathian National University,17294428|23098589 +Фарматека,"""Science and Education, Ltd.""",20734034| +Фармацевтичний часопис,Ternopil State Medical University,23120967| +Физика горения и взрыва,Publishing House SB RAS,04306228| +Физика земли,Akademizdatcenter Nauka,00023337| +Физика металлов и металловедение,Akademizdatcenter Nauka,00153230| +Физика плазмы,Akademizdatcenter Nauka,03672921| +Физикохимия поверхности и защита материалов,Akademizdatcenter Nauka,00441856| +Физиология растений,Akademizdatcenter Nauka,00153303| +Физиология человека,Akademizdatcenter Nauka,01311646| +Физическая культура воспитание образование тренировка,"""Science and Education, Ltd.""",18174779| +Филолог – часопис за језик књижевност и културу,National and University Library of the Republic of Srpska,19865864|22331158 +Филологические исследования,Petrozavodsk State University, +Филологические исследования,Petrozavodsk State University, +Филология научные исследования,"""NB-Media, Ltd.""",23056177| +Философия и культура,"""NB-Media, Ltd.""",19992793| +Философия науки,Publishing House SB RAS,15607488| +Философия образования,Publishing House SB RAS,18110916| +Философская мысль,"""NB-Media, Ltd.""",24098728 +Финансовое право и управление,"""NB-Media, Ltd.""",23100508| +Финансовые исследования,"""Science and Education, Ltd.""",19910525| +Финансы,"""Science and Education, Ltd.""",0869446X| +Финансы и управление,"""NB-Media, Ltd.""",24097802 +Фундаментальные исследования (Fundamental Research),"""Eurasian Scientific and Industrial Chamber, Ltd.""",18127339| +Фундаментальные проблемы современного материаловедения,"""Science and Education, Ltd.""",18111416| +Функциональный анализ и его приложения,Steklov Mathematical Institute,03741990|23052899 +Харчова наука та технологія,Odessa National Academy of Food Technologies,20738684| +Химическая физика,Akademizdatcenter Nauka,0207401X| +Химия в интересах устойчивого развития,Publishing House SB RAS,08698538| +Химия высоких энергий,Akademizdatcenter Nauka,00231193| +Химия и Жизнь,"""Science and Education, Ltd.""",01305972| +Химия твердого топлива,Akademizdatcenter Nauka,00231177| +Холодильна техніка та технологія,Odessa National Academy of Food Technologies,04538307| +Человек и культура,"""NB-Media, Ltd.""",24098744 +Черные дыры в российском законодательстве,"""Science and Education, Ltd.""",02364964| +Шпитальна хірургія Журнал імені Л Я Ковальчука,Ternopil State Medical University,16812778|24144533 +Экология,Akademizdatcenter Nauka,03670597| +Экономика и предпринимательство,"""Science and Education, Ltd.""",19992300| +Экономика и социум,"""Science and Education, Ltd.""",22251545| +Экономика сельского хозяйства России,"""Science and Education, Ltd.""",20700288| +Экономист,"""Science and Education, Ltd.""",08694672| +Экономическая наука современной России,"""Science and Education, Ltd.""",16091442| +ЭКОНОМИЧЕСКИЕ И ГУМАНИТАРНЫЕ ИССЛЕДОВАНИЯ РЕГИОНОВ,"""Science and Education, Ltd.""",20791968| +Экономические и социальные перемены факты тенденции прогноз / Economic and social changes facts trends forecast,Institute of Socio-Economic Development of Territories of RAS,23070331|23129824 +Экономический вестник Ростовского государственного университета «TERRA ECONOMICUS»,"""Science and Education, Ltd.""",17264618| +Электронный журнал UNIVERSUM,"""Science and Education, Ltd.""",23114282| +Электрохимия,Akademizdatcenter Nauka,04248570| +Энергосбережение и водоподготовка,"""Science and Education, Ltd.""",19924658| +Юридические исследования,"""NB-Media, Ltd.""",24097136 +Ядерная физика,Akademizdatcenter Nauka,00440027| +Ядерная физика и инжиниринг,Pleiades Publishing,20795629| +آفاق اقتصادية,"""Al Manhal FZ, LLC""",1024266X| +أسطور للدراسات التاريخية,"""Al Manhal FZ, LLC""",24100870| +الأثر,"""Al Manhal FZ, LLC""",11123672| +الأحداث القانونية التونسية,"""Al Manhal FZ, LLC""",03307212| +الإبانة,"""Al Manhal FZ, LLC""",23359935| +الإشعاع في اللسانيات و الترجمة,"""Al Manhal FZ, LLC""",23925086| +الاتجاهات الحديثة في المكتبات و المعلومات,"""Al Manhal FZ, LLC""",11108126| +الاستهلال,"""Al Manhal FZ, LLC""",2028652X| +الاستواء,"""Al Manhal FZ, LLC""",23569808| +الترتيل,"""Al Manhal FZ, LLC""",2336016X| +التمويل الإسلامي,"""Al Manhal FZ, LLC""",23569700| +الخطاب,"""Al Manhal FZ, LLC""",11127082| +الدراسات الإسلامية,"""Al Manhal FZ, LLC""",0002399X| +الدليل,"""Al Manhal FZ, LLC""",23359439| +الزيتوني المجدد,"""Al Manhal FZ, LLC""",23822899| +السياسة الدولية,"""Al Manhal FZ, LLC""",11108207| +الصفوة,"""Al Manhal FZ, LLC""",23360178| +العبقري مجلة الثقافة الإسلامية و الإنسانية,"""Al Manhal FZ, LLC""",22320431| +العربية مجلة مجمع اللغة العربية الفلسطيني,"""Al Manhal FZ, LLC""",24131989| +الغنية,"""Al Manhal FZ, LLC""",23359609| +الفكر الشرطي,"""Al Manhal FZ, LLC""",16815297|22187073 +القانون و السياسة,"""Al Manhal FZ, LLC""",22332812| +المجلة الأكاديمية للإعجاز العلمي في القرآن والسنة,"""Academic Journal, Al-Azhar University""",23569824| +المجلة الدولية لعلوم المكتبات و المعلومات,"""Al Manhal FZ, LLC""",23568003| +المجلة العربية لجودة التعليم,"""Al Manhal FZ, LLC""",2313495X| +المجلة العربية لعلم الاجتماع,"""Al Manhal FZ, LLC""",20907591| +المجلة العربية للدراسات الأمنية و التدريب,"""Al Manhal FZ, LLC""",13191241| +المجلة العربية للعلوم الإجتماعية,"""Al Manhal FZ, LLC""",11105224| +المجلة الفلسطينية للتعليم المفتوح,"""Al Manhal FZ, LLC""",20745656| +المجمع,"""Al Manhal FZ, LLC""",20773587| +المحاماة,"""Al Manhal FZ, LLC""",03304175| +المشكاة للعلوم الإنسانية و الاجتماعية,"""Al Manhal FZ, LLC""",23110538| +المعيار,"""Al Manhal FZ, LLC""",23039604| +المنارة للدراسات القانونية و الإدارية,"""Al Manhal FZ, LLC""",2028876X| +الميزان للدراسات الإسلامية و القانونية,"""Al Manhal FZ, LLC""",2311097X| +النهضة,"""Al Manhal FZ, LLC""",16873122| +النور للدراسات الحضارية و الفكرية,"""Al Manhal FZ, LLC""",13094424| +تبين للدراسات الفكرية و الثقافية,"""Al Manhal FZ, LLC""",23052465| +جامعة,"""Al Manhal FZ, LLC""",15658090| +جسور,"""Al Manhal FZ, LLC""",23148489| +جيوبوليتيكا,"""Al Manhal FZ, LLC""",24110213| +حوليات التراث,"""Al Manhal FZ, LLC""",11125020| +حوليات العلوم و التكنولوجيا,"""Al Manhal FZ, LLC""",21700672| +دراسات أدبية,"""Al Manhal FZ, LLC""",2170046X| +دراسات اجتماعية,"""Al Manhal FZ, LLC""",21700478| +دراسات اقتصادية إسلامية,"""Al Manhal FZ, LLC""",13191608| +دراسات باحث,"""Al Manhal FZ, LLC""",23095776| +دراسات تاريخية,"""Al Manhal FZ, LLC""",23529741| +دراسات قانونية,"""Al Manhal FZ, LLC""",11128003| +دراسات نفسية,"""Al Manhal FZ, LLC""",23530324| +دراسات نفسية و تربوية,"""Al Manhal FZ, LLC""",11129263| +دفاتر السياسة و القانون,"""Al Manhal FZ, LLC""",11129808| +دفاعات,"""Al Manhal FZ, LLC""",24110205| +رؤى اقتصادية,"""Al Manhal FZ, LLC""",22530088| +رسالة التربية و علم النفس,"""Al Manhal FZ, LLC""",10214011| +رماح للبحوث و الدراسات,"""Al Manhal FZ, LLC""",23925418| +سياسات عربية,"""Al Manhal FZ, LLC""",23071583| +شؤون الأوسط,"""Al Manhal FZ, LLC""",10189408| +عالم التربية,"""Al Manhal FZ, LLC""",11104406| +عمران للعلوم الإجتماعية و الإنسانية,"""Al Manhal FZ, LLC""",23052473| +قوت القلوب,"""Al Manhal FZ, LLC""",23359595| +مجلة أبعاد اقتصادية,"""Al Manhal FZ, LLC""",11128062| +مجلة أبعاد اقتصادية,"""Al Manhal FZ, LLC""",11128062| +مجلة أماراباك,"""Al Manhal FZ, LLC""",21613621| +مجلة إدارة و بحوث الفتاوى,"""Al Manhal FZ, LLC""",22321047| +مجلة الأندلس للعلوم الإنسانية و الاجتماعية,"""Al Manhal FZ, LLC""",24101818| +مجلة الإبصار,"""Al Manhal FZ, LLC""",20288913| +مجلة الباحث,"""Al Manhal FZ, LLC""",11123613| +مجلة التراث,"""Al Manhal FZ, LLC""",22530339| +مجلة التربية و التقدم,"""Al Manhal FZ, LLC""",23131063| +مجلة الجامعة الخليجية قسم العلوم الإدارية و المالية,"""Al Manhal FZ, LLC""",19859562| +مجلة الجمعية الفقهية السعودية,"""Al Manhal FZ, LLC""",16582969| +مجلة الجوف للعلوم الاجتماعية,"""Al Manhal FZ, LLC""",16586697| +مجلة الحق,"""Al Manhal FZ, LLC""",20702590| +مجلة الحكمة للدراسات الأدبية و اللغوية,"""Al Manhal FZ, LLC""",23530464| +مجلة الحكمة للدراسات الإسلامية,"""Al Manhal FZ, LLC""",2353043X| +مجلة الحكمة للدراسات الإعلامية و الاتصالية,"""Al Manhal FZ, LLC""",23530502| +مجلة الحكمة للدراسات الاجتماعية,"""Al Manhal FZ, LLC""",23530529| +مجلة الحكمة للدراسات الاستراتيجية,"""Al Manhal FZ, LLC""",23530510| +مجلة الحكمة للدراسات الاقتصادية,"""Al Manhal FZ, LLC""",23530480| +مجلة الحكمة للدراسات البيئية و الجغرافية,"""Al Manhal FZ, LLC""",23530448| +مجلة الحكمة للدراسات التاريخية,"""Al Manhal FZ, LLC""",23530472| +مجلة الحكمة للدراسات التربوية و النفسية,"""Al Manhal FZ, LLC""",23530456| +مجلة الدراسات الاجتماعية,"""Al Manhal FZ, LLC""",23125268| +مجلة الدراسات التاريخية و الاجتماعية,"""Al Manhal FZ, LLC""",24123501| +مجلة الدراسات التربوية و الإنسانية,"""Al Manhal FZ, LLC""",20907885| +مجلة الدراسات العقدية,"""Al Manhal FZ, LLC""",1658516X| +مجلة الديمقراطية,"""Al Manhal FZ, LLC""",23569093| +مجلة السلوك البيئي,"""Al Manhal FZ, LLC""",23566183| +مجلة الشريعة و القانون,"""Al Manhal FZ, LLC""",16081013|1813095X +مجلة العلوم الإدارية و الاقتصادية,"""Al Manhal FZ, LLC""",1658404X| +مجلة العلوم الإنسانية و الاجتماعية,"""Al Manhal FZ, LLC""",21701121| +مجلة العلوم الاجتماعية,"""Al Manhal FZ, LLC""",11126752| +مجلة العلوم التربوية,"""Al Manhal FZ, LLC""",16587030| +مجلة العلوم التربوية و النفسية,"""Al Manhal FZ, LLC""",16586484| +مجلة العلوم الزراعية و البيطرية,"""Al Manhal FZ, LLC""",16584015| +مجلة العلوم الشرعية,"""Al Manhal FZ, LLC""",16584201| +مجلة العلوم العربية و الإنسانية,"""Al Manhal FZ, LLC""",16584058| +مجلة الفقه و القانون,"""Al Manhal FZ, LLC""",23360615| +مجلة القانون و المجتمع,"""Al Manhal FZ, LLC""",23351462| +مجلة اللغة,"""Al Manhal FZ, LLC""",23944862| +مجلة المدونة,"""Al Manhal FZ, LLC""",23491884| +مجلة المركز العربي للبحوث و الدراسات في علوم المكتبات و المعلومات,"""Al Manhal FZ, LLC""",24108324| +مجلة الممارسات اللغوية,"""Al Manhal FZ, LLC""",21700583| +مجلة الندوة للدراسات القانونية,"""Al Manhal FZ, LLC""",23925175|23925175 +مجلة بحوث و دراسات قانونية,"""Al Manhal FZ, LLC""",03304582| +مجلة جامعة الأقصى سلسلة العلوم الإنسانية,"""Al Manhal FZ, LLC""",20703147| +مجلة جامعة الشارقة للعلوم الشرعية و القانونية,"""Al Manhal FZ, LLC""",19962320| +مجلة جامعة القدس المفتوحة للأبحاث و الدراسات,"""Al Manhal FZ, LLC""",20745648| +مجلة جامعة القدس المفتوحة للأبحاث و الدراسات الإدارية و الاقتصادية,"""Al Manhal FZ, LLC""",24103349| +مجلة جامعة القدس المفتوحة للأبحاث و الدراسات التربوية و النفسية,"""Al Manhal FZ, LLC""",23074655| +مجلة جامعة طيبة للعلوم التربوية,"""Al Manhal FZ, LLC""",16583663| +مجلة جامعة فلسطين للأبحاث و الدراسات,"""Al Manhal FZ, LLC""",2410874X| +مجلة جيل الدراسات الأدبية و الفكرية,"""Al Manhal FZ, LLC""",2311519X| +مجلة جيل الدراسات السياسية و العلاقات الدولية,"""Al Manhal FZ, LLC""",24103926| +مجلة جيل العلوم الإنسانية و الإجتماعية,"""Al Manhal FZ, LLC""",23115181| +مجلة جيل حقوق الإنسان,"""Al Manhal FZ, LLC""",23113650| +مجلة دراسات شرق أوسطية,"""Al Manhal FZ, LLC""",18118208| +مجلة شؤون إجتماعية,"""Al Manhal FZ, LLC""",1025059X| +مجلة علوم الإنسان و المجتمع,"""Al Manhal FZ, LLC""",22530347| +مجلة علوم التربية,"""Al Manhal FZ, LLC""",11130075| +مجلة قضاء,"""Al Manhal FZ, LLC""",16586735| +مجلة كلية الشريعة و الدراسات الإسلامية,"""Al Manhal FZ, LLC""",23055545| +هرمس,"""Al Manhal FZ, LLC""",20908555| +วารสารวิศวกรรมศาสตร์,"""Faculty of Engineering, Chulalongkorn University""",19063636| +临床转化神经科学,Translational Neuroscience and Clinics,20960441| +人格学报,"""Sophia Publishing Group, Inc.""",19297300 +全球生物技术评论,"""Sophia Publishing Group, Inc.""",19276699 +分子植物育种,"""Sophia Publishing Group, Inc.""",19238258 +医学检验检疫杂志,"""Sophia Publishing Group, Inc.""",19294913 +医学遗传学与疾病研究,"""Sophia Publishing Group, Inc.""",19294921 +国际中西医结合杂志,New Century Science Press. LLC,23086025|23754710 +国际临床报告,New Century Science Press. LLC,23723858 +国际传统医学杂志,New Century Science Press. LLC,23085665|23754567 +国际公共卫生杂志,New Century Science Press. LLC,23725923 +国际内分泌与代谢研究,New Century Science Press. LLC,23748125 +国际医院管理杂志,New Century Science Press. LLC,23093609|23754060 +国际外科护理,New Century Science Press. LLC,2372594X +国际学术期刊研究,"""Sophia Publishing Group, Inc.""",19297289 +国际心理学研究杂志,New Century Science Press. LLC,2330913X|23342021 +国际心脑血管病杂志,New Century Science Press. LLC,23093374|23754095 +国际护理教育杂志,New Century Science Press. LLC,23728302| +国际护理研究,New Century Science Press. LLC,23092963|23754664 +国际老年护理学,New Century Science Press. LLC,2309303X|23754079 +国际药学研究,New Century Science Press. LLC,23728299 +国际高级护理实践,New Century Science Press. LLC,23758422|23758430 +地理科学进展,Progress in Geography,10076301| +基因组学与医学生物学,"""Sophia Publishing Group, Inc.""",19294697 +基因组学与应用生物学,"""Sophia Publishing Group, Inc.""",1674568X +基因组学与生物技术,"""Sophia Publishing Group, Inc.""",19294689 +实验材料和方法,"""Synatom Research, LLC""",23295147 +心理学研究,"""Sophia Publishing Group, Inc.""",19297297 +文化与社会心理学,"""Sophia Publishing Group, Inc.""",19294670 +新世纪教育杂志,New Century Science Press. LLC,23309121|23309121 +昆虫分子生物学研究,"""Sophia Publishing Group, Inc.""",19295375 +植物药与药理学杂志,"""Sophia Publishing Group, Inc.""",19295367 +欧洲生物技术研究进展,"""Sophia Publishing Group, Inc.""",19276680 +水生生物研究,"""Sophia Publishing Group, Inc.""",19295529 +汉唐研究,"""Sophia Publishing Group, Inc.""",19296010 +海洋生物学学报,"""Sophia Publishing Group, Inc.""",19295537 +産業応用工学会論文誌,Institute of Industrial Applications Engineers,2189373X|21875146 +癌症与分子诊断研究,"""Sophia Publishing Group, Inc.""",1929493X +神戸大学大学院工学研究科・システム情報学研究科紀要,Terrapub,21855102 +神戸大学大学院工学研究科紀要,Terrapub,18840302 +编辑与出版研究,"""Sophia Publishing Group, Inc.""",19297270 +美洲农业研究前沿,"""Sophia Publishing Group, Inc.""",19276672 +计算分子生物学,"""Sophia Publishing Group, Inc.""",19294417 +豆科基因组学与遗传学,"""Sophia Publishing Group, Inc.""",19251599 +资源科学,Resources Science,10077588| +강원법학,Kangwon National University Institute of Comparative Legal Studies,12294578| +고전문학연구,Korean Classical Literature Association,12251445| +교육연구,Sung Shin Women's University Educational Reseaerch Institute,15987094| +문화와 사회,Korea Assocation for Cultural Sociology,19757239| +문화와 사회,Korea Assocation for Cultural Sociology,19757239| +민족문화연구,Research Institute of Korean Studies,12297925| +법학논고,Law Research Institute of KNU,17385903| +법학논총,Legal Research Institute Kookmin University,12259969| +사회과학연구,"""Institute of Social Science, Sogang University""",15980596| +사회과학연구논총,Ewha Journal of Social Sciences,19758987| +이화음악논집,Ewha Music Research Institute,12297690| +전자무역연구,E-Trade Review,17389607| +정부학연구,Institute of Governmental Studies,12294241| +중소연구,Asia-Pacific Research Center,10123563| +지중해지역연구,Institute for Mediterranean Studies,12297542| +철학사상,Institute for Philosophy,12267007| +한국고전여성문학연구,Society of Korean Classical Woman Literature,12299316| +한국문화연구,Research Institute of Korean Culture,15984176| +한국학논집,Academia Koreana,17388902| diff --git a/datastructures-io/build.gradle b/datastructures-io/build.gradle new file mode 100644 index 0000000..e69de29 diff --git a/datastructures-io/src/jmh/java/org/xbib/datastructures/io/jmh/StreamTest.java b/datastructures-io/src/jmh/java/org/xbib/datastructures/io/jmh/StreamTest.java new file mode 100644 index 0000000..43aabcf --- /dev/null +++ b/datastructures-io/src/jmh/java/org/xbib/datastructures/io/jmh/StreamTest.java @@ -0,0 +1,80 @@ +package org.xbib.datastructures.io.jmh; + +import org.openjdk.jmh.annotations.Benchmark; +import org.openjdk.jmh.annotations.BenchmarkMode; +import org.openjdk.jmh.annotations.Fork; +import org.openjdk.jmh.annotations.Measurement; +import org.openjdk.jmh.annotations.Mode; +import org.openjdk.jmh.annotations.Scope; +import org.openjdk.jmh.annotations.State; +import org.openjdk.jmh.annotations.Warmup; +import org.xbib.datastructures.io.BufferedSeparatorInputStream; +import org.xbib.datastructures.io.FilteredSeparatorInputStream; +import java.io.InputStream; +import java.nio.charset.StandardCharsets; + +@State(Scope.Benchmark) +@BenchmarkMode(Mode.Throughput) +@Warmup(iterations = 5) +@Fork(1) +@Measurement(iterations = 5) +public class StreamTest { + + private static final String NAME = "/periouni.mrc"; + + @Benchmark + public long parse64() { + InputStream in = getClass().getResourceAsStream(NAME); + BufferedSeparatorInputStream bufferedSeparatorInputStream = + new BufferedSeparatorInputStream(in, 64, 1024, StandardCharsets.ISO_8859_1); + return bufferedSeparatorInputStream.stream().count(); + } + + @Benchmark + public long parse1024() { + InputStream in = getClass().getResourceAsStream(NAME); + BufferedSeparatorInputStream bufferedSeparatorInputStream = + new BufferedSeparatorInputStream(in, 1024, 1024, StandardCharsets.ISO_8859_1); + return bufferedSeparatorInputStream.stream().count(); + } + + @Benchmark + public long parse4096() { + InputStream in = getClass().getResourceAsStream(NAME); + BufferedSeparatorInputStream bufferedSeparatorInputStream = + new BufferedSeparatorInputStream(in, 4096, 4096, StandardCharsets.ISO_8859_1); + return bufferedSeparatorInputStream.stream().count(); + } + + @Benchmark + public long parse8192() { + InputStream in = getClass().getResourceAsStream(NAME); + BufferedSeparatorInputStream bufferedSeparatorInputStream = + new BufferedSeparatorInputStream(in, 8192, 1024, StandardCharsets.ISO_8859_1); + return bufferedSeparatorInputStream.stream().count(); + } + + @Benchmark + public long parse65536() { + InputStream in = getClass().getResourceAsStream(NAME); + BufferedSeparatorInputStream bufferedSeparatorInputStream = + new BufferedSeparatorInputStream(in, 65536, 1024, StandardCharsets.ISO_8859_1); + return bufferedSeparatorInputStream.stream().count(); + } + + @Benchmark + public long parse1MB() { + InputStream in = getClass().getResourceAsStream(NAME); + BufferedSeparatorInputStream bufferedSeparatorInputStream = + new BufferedSeparatorInputStream(in, 1024 * 1024, 1024, StandardCharsets.ISO_8859_1); + return bufferedSeparatorInputStream.stream().count(); + } + + @Benchmark + public long parseFiltered() { + InputStream in = getClass().getResourceAsStream(NAME); + FilteredSeparatorInputStream filteredSeparatorInputStream = + new FilteredSeparatorInputStream(in, 1024, StandardCharsets.ISO_8859_1); + return filteredSeparatorInputStream.stream().count(); + } +} diff --git a/datastructures-io/src/jmh/java/org/xbib/datastructures/io/jmh/StringTest.java b/datastructures-io/src/jmh/java/org/xbib/datastructures/io/jmh/StringTest.java new file mode 100644 index 0000000..27d124b --- /dev/null +++ b/datastructures-io/src/jmh/java/org/xbib/datastructures/io/jmh/StringTest.java @@ -0,0 +1,95 @@ +package org.xbib.datastructures.io.jmh; + +import org.openjdk.jmh.annotations.Benchmark; +import org.openjdk.jmh.annotations.BenchmarkMode; +import org.openjdk.jmh.annotations.Fork; +import org.openjdk.jmh.annotations.Measurement; +import org.openjdk.jmh.annotations.Mode; +import org.openjdk.jmh.annotations.Scope; +import org.openjdk.jmh.annotations.State; +import org.openjdk.jmh.annotations.Warmup; +import org.xbib.datastructures.io.BufferedSeparatorInputStream; +import org.xbib.datastructures.io.FilteredSeparatorInputStream; +import java.io.InputStream; +import java.nio.charset.StandardCharsets; +import java.util.concurrent.atomic.AtomicLong; + +@State(Scope.Benchmark) +@BenchmarkMode(Mode.Throughput) +@Warmup(iterations = 5) +@Fork(1) +@Measurement(iterations = 5) +public class StringTest { + + private static final String NAME = "/periouni.mrc"; + + @Benchmark + public long parse64() { + InputStream in = getClass().getResourceAsStream(NAME); + BufferedSeparatorInputStream bufferedSeparatorInputStream = + new BufferedSeparatorInputStream(in, 64, 1024, StandardCharsets.ISO_8859_1); + AtomicLong l = new AtomicLong(); + bufferedSeparatorInputStream.stream().forEach(information -> l.addAndGet(bufferedSeparatorInputStream.informationString().length())); + return l.get(); + } + + @Benchmark + public long parse1024() { + InputStream in = getClass().getResourceAsStream(NAME); + BufferedSeparatorInputStream bufferedSeparatorInputStream = + new BufferedSeparatorInputStream(in, 1024, 1024, StandardCharsets.ISO_8859_1); + AtomicLong l = new AtomicLong(); + bufferedSeparatorInputStream.stream().forEach(information -> l.addAndGet(bufferedSeparatorInputStream.informationString().length())); + return l.get(); + } + + @Benchmark + public long parse4096() { + InputStream in = getClass().getResourceAsStream(NAME); + BufferedSeparatorInputStream bufferedSeparatorInputStream = + new BufferedSeparatorInputStream(in, 4096, 1024, StandardCharsets.ISO_8859_1); + AtomicLong l = new AtomicLong(); + bufferedSeparatorInputStream.stream().forEach(information -> l.addAndGet(bufferedSeparatorInputStream.informationString().length())); + return l.get(); + } + + @Benchmark + public long parse8192() { + InputStream in = getClass().getResourceAsStream(NAME); + BufferedSeparatorInputStream bufferedSeparatorInputStream = + new BufferedSeparatorInputStream(in, 8192, 1024, StandardCharsets.ISO_8859_1); + AtomicLong l = new AtomicLong(); + bufferedSeparatorInputStream.stream().forEach(information -> l.addAndGet(bufferedSeparatorInputStream.informationString().length())); + return l.get(); + } + + @Benchmark + public long parse65536() { + InputStream in = getClass().getResourceAsStream(NAME); + BufferedSeparatorInputStream bufferedSeparatorInputStream = + new BufferedSeparatorInputStream(in, 65536, 1024, StandardCharsets.ISO_8859_1); + AtomicLong l = new AtomicLong(); + bufferedSeparatorInputStream.stream().forEach(information -> l.addAndGet(bufferedSeparatorInputStream.informationString().length())); + return l.get(); + } + + @Benchmark + public long parse1MB() { + InputStream in = getClass().getResourceAsStream(NAME); + BufferedSeparatorInputStream bufferedSeparatorInputStream = + new BufferedSeparatorInputStream(in, 1024 * 1024, 1024, StandardCharsets.ISO_8859_1); + AtomicLong l = new AtomicLong(); + bufferedSeparatorInputStream.stream().forEach(information -> l.addAndGet(bufferedSeparatorInputStream.informationString().length())); + return l.get(); + } + + @Benchmark + public long parseFiltered() { + InputStream in = getClass().getResourceAsStream(NAME); + FilteredSeparatorInputStream filteredSeparatorInputStream = + new FilteredSeparatorInputStream(in, 1024, StandardCharsets.ISO_8859_1); + AtomicLong l = new AtomicLong(); + filteredSeparatorInputStream.stream().forEach(information -> l.addAndGet(filteredSeparatorInputStream.informationString().length())); + return l.get(); + } +} diff --git a/datastructures-io/src/jmh/resources/periouni.mrc b/datastructures-io/src/jmh/resources/periouni.mrc new file mode 100644 index 0000000..dcfed83 --- /dev/null +++ b/datastructures-io/src/jmh/resources/periouni.mrc @@ -0,0 +1 @@ +00856nls 2200253 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200017500124210003500299230002400334326001100358606004900369710004300418801001300461856008800474955000500562992002300567992001200590000124676420130722161531.0 a a20019999k fre 01 ba0 aeng aUS ar aak z  adr 10aCombined statement of receipts, outlays, and balances of the United States governmentb[Ressource électronique]fDepartment of the Treasury, Financial management Service aWashington, D;C;cUSGPOd2001- aRevue électronique aAnnuel aFinances publiquesyEtats-UnisxPériodiques02aEtats-UnisbDepartment of the Treasury 0aFRbFNSP4 uhttp://fms.treas.gov/annualreport/index.htmlzAccès au texte intégral depuis 20011 r aGEO RC2 Etats-Unis aDEW 33600976nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210004300185326002300228326002800251517003800279607004700317710005700364856003400421856007100455955006600526972000900592991001800601992003100619992001200650040085864000001921020130319051019.01 a0955-2359 aFNSP152225 a0000019210 a19901203a19909999 ba0 aeng aGB aaha 10a20 century British history aOxfordcOxford University Pressd1990- aTrimestrielb1999- a3 nos par anb1990-199810aTwentieth century British history aGrande-Bretagnez20e sièclexPériodiques02aInstitute of Contemporary British Historyc(Londres)4 uhttp://www3.oup.co.uk/tweceb/ zContenu : sommaires et résumés depuis le vol. 7, n°1, avr. 19961 bvol. 1 no. 1 (1990) -....cParisdMagasins/AnnexeeP 8° 5683 aZCAD aexempb201111 aGEO RA4.02 Grande-Bretagne aDEW 94100951nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210006000183326001500243440004100258517003400299606004500333710004300378856004600421856006000467955007600527972000900603992002500612992001200637040214699000014428820130319051020.01 a1251-8107 aFNSP570084 a0000144288 a19941214b19949999 ba0 afre aFR aaga 10a4 pages (Noisy-le-Grand) aNoisy-le-GrandcCentre d'études de l'emploid1994-2004 aBimestriel 1tConnaissance de l'emploi,x1767-335610aQuatre pages (Noisy-le-Grand) aMarché du travailyFrancexPériodiques02aCentre d'études de l'emploic(France)4 uhttp://www.cee-recherche.fr/fr/c_pub7.htm zContenu : texte intégral depuis le n°31, janvier 19991 bno. 1 (jan-1994) -no. 61 (jan-2004)cParisdMagasins/AnnexeeP 4° 6418 aZGRA aGEO RA4.06 France 01 aDEW 33101058nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000023001552100024001783260012002025170020002145170046002345300024002806060036003047120051003408560170003919550073005619570065006349720009006999920022007089920014007300000082280000008228020130514135418.01 a1241-1515 aFNSP366210 a0000082280 a19900101a19929999 ba0 afre aFR aaea 13aLe 4 pages (Paris) aPariscSESSId1992- aMensuel13aLe quatre pages13aLe 4 pages des statistiques industrielles14ales 4 pages (Paris) aIndustrieyFrancexPériodiques02aFrancebService des statistiques industrielles4 uhttp://www.dgcis.redressement-productif.gouv.fr/files/files/archive/www.industrie.gouv.fr/p3e/4pages/so_4pages_tout.htmlzAccès libre au texte intégral depuis 20081 bno. 5 (jun-1992) -no. 163 (2002)cParisdMagasins/AnnexeeP 4° 61781 bno. 69-86 (1996/1998 )cParisdMagasins/AnnexeeP Index 0804 aZGRA aGEO RA4.06 France aDEW 338.400963cas0 2200337 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083035001500098100004100113101000800154102000700162105001800169110001600187200002000203210003400223326001700257532002100274606002900295801003000324801001800354802000700372856007000379856007400449955006500523992001200588992002500600039249972000118096720130319051021.01 a0151-2439 a013855638 accn0151-2439 asib0632581 a0001180967 a19850426a19769999 0frey0103 ba0 afre aFR ay  abu 14aLes 4 vérités aPariscLes 4 véritésd1976- aHebdomadaire10aQuatre vérités aActualitéxPériodiques 3aFRbAbesc20100121gAFNOR 3aFRbSFgAFNOR a074 uhttp://www.les4verites.com/les4verites/lesnumeros/4verites336.htm zContient : sommaires et sélection d'articles depuis le no. 176, 19981 bno. 718 (nov-2009) -....cParisdMagasins/AnnexeeP 4° 7266 aDEW 050 aGEO RA6.06 France 0101140nas 2200301 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200006300148207004600211210005000257300013600307326001700443530002900460606003600489801001300525856009100538856010800629955008000737972000900817992001200826078992079000060256220130910161651.01 a1660-7880 a b20032008 fre 01 ba0 afre aCH a 0  ar aaj z 0 10aA contrarioerevue interdisciplinaire de sciences sociales 1aVol. 1, no. 1 (2003)-vol. 5, no. 2 (2008) aLausanne‎cEditions Antipodes‎d2003-2008 aA dater de 2009, la revue imprimée cesse de paraître et fait place à une revue numérique consultable via le site www.cairn.info a2 nos par an aA contrario‎bLausanne aSciences socialesxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue.php?ID_REVUE=ACO zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (2003)-vol. 5 no. 2 (2008)cParisdMagasins/AnnexeeP 8° 6739 aZPAY aDEW 00101305nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200001500163210002900178326001600207606003900223606003700262606004000299606004000339606003800379606004100417801001300458856002900471856007900500856006800579856006200647955005800709972000900767992001600776992002000792992005600812992003900868153073918000037409620140108103300.01 a2166-4072 a0000374096 a a20009999k fre ba0 amul aRU a 0  ar aah z 0 10aAb imperio aKazancAb imperiod2000- aTrimestriel aNationalismeyRussiexPériodiques aNationalismeyURSSxPériodiques aNationalismeyEx-URSSxPériodiques aNationalitésxRussiexPériodiques aNationalitésxURSSxPériodiques aNationalitésxEx-URSSxPériodiques 0aFRbFNSP4 uhttp://www.abimperio.net zContenu : sommaires en anglais, russe et allemand depuis le n°1, mai 20004 uhttps://acces-distant.sciences-po.fr/fork?http://abimperio.net/ zContient les sommaires et résumés depuis le no. 1, 20001 bno.1 (2000) -....cParisdMagasins/AnnexeeP 8° 6546 aZPAY aDEW 305-306 aGEO RA7.01 URSS aGEO RA7.02 Etats successeurs de l'Union soviétique aGEO RA7.21 Russie (depuis 1991-92)01237nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210003800191326001600229517000800245606003900253712003900292856009000331856010800421856012800529856010800657955009100765991001800856992003300874992001600907039511855000008717120130319051025.01 a0363-7425 aFNSP385928 a0000087171 a19900101a19769999 ba0 aeng aUS aaha 14aThe Academy of management review aAdacAcademy of Managementd1976- aTrimestriel10aAMR aGestion d'entreprisexPériodiques02aAcademy of Managementc(Ada, Ohio)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03637425.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=AMX&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 16 no. 4 (oct-1991) -vol. 19 no. 4 (oct-1994)cParisdMagasins/AnnexeeP 8° 5929 aexempb201210 aGEO RS Sans aspect régional aDEW 650-65801342nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000026001552100066001813260016002474210068002636060032003316060044003637120036004078010021004438300057004648560090005218560108006118560129007198560108008489720009009569920023009659920016009880000050707000005070720130319051027.01 a0001-4826 aFNSP247493 a0000050707 a19900101a19269999 ba0 aeng aUS aaha 14aThe Accounting review aSarasota, Fla., etc.cAmerican Accounting Association.d1926- aTrimestriel 1aCommittee reports - American Accounting Association (0587-2863) aComptabilitéxPériodiques aComptabilitéyEtats-UnisxPériodiques02aAmerican Accounting Association 3aFRbCCN0001-4826 avol. 27 no. 4 (oct-1952) -vol. 82 no. 5 (oct-2007) ;4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00014826.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?authtype=ip,uid&profile=ehost&defaultdb=buh4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aZPAY aGEO RC2 Etats-Unis aDEW 650-65801165nas 2200313 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101110001600108200009900124210004200223210004300265326001600308517002100324530002800345606004600373606003600419710005100455801002100506856019800527955005900725972000900784991001800793992002400811992001600835038657619000000632820131008133937.01 a0001-6810 a19900101a19659999 ba0 adut aNL aahu 10aActa politicaeinternational journal of political sciencefDutch Political Science Association aMeppelcJ. A. Boom en Zoond1965-2002 aBasingstokecPalgrave Macmilland2003- aTrimestriel10aAP Acta politica00aActa politicab(Meppel) aScience politiqueyPays-BasxPériodiques aScience politiquexPériodiques02aNederlandse Kring voor Wetenschap der Politiek 3aFRbCCN0001-68104 uhttps://acces-distant.sciences-po.fr/fork?http://www.palgrave-journals.com/ap/index.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1965) -....cParisdMagasins/AnnexeeP 8° 2251 aZSAB aexempb200910 aGEO RA4.03 Pays-Bas aDEW 320-32101416nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154207002600175210003800201210003200239210002400271326001600295530003300311606002900344710004200373801002100415856012800436856010800564856010800672856010800780955006600888957004900954972000901003991001801012992001201030038657856000000630020130319051027.01 a0001-6993 aFNSP110022 a0000006300 a19900101a19559999 ba0 aeng aNO aahu 10aActa sociologica 1avol. 1, no. 1 (1955)- aCopenhagencMunksgaardd1955-1976 aDivers éditeursd1977-2002 aLondoncSaged2003- aTrimestriel 0aActa sociologicabTrykt utg. aSociologiexPériodiques02aScandinavian Sociological Association 3aFRbCCN0001-69934 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=ACT&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1955) -....cParisdMagasins/AnnexeeP 8° 19421 b(1955) -(1995): dans le vol. 38 no. 2 (1995) aZSAB aexempb201001 aDEW 30101202nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200010500163210006500268326001700333530003100350606002900381606003800410710007600448801001300524856006000537856007000597955013800667972000900805991001800814992001200832992002000844039136795000050513420130319051027.01 a0186-6028 a0000505134 a a19889999k fre ba0 aspa aMX a 0  ar aai z 0 10aActa sociologicafUniversidad nacional autonoma de Mexico. Facultad de ciencias politicas y sociales aMéxicocFacultad de ciencias políticas y socialesd[19..]- a3 nos par an10aActa sociológicabMéxico aSociologiexPériodiques aSociologieyMexiquexPériodiques02aUniversidad nacional autónoma de MéxicobCoordinación de sociología 0aFRbFNSP40uhttp://www.journals.unam.mx/index.php/ras/issue/archive zContenu : accès aux sommaires et résumés depuis le n°39, 20091 bno. 14 (1995) ; no. 25 (1999) -no. 26/27 (1999) ; no. 30 (2000) ; no. 32 (2001) -no. 41/42 (2004)cParisdMagasins/AnnexeeP 8° 6670 aZSAB aexempb201212 aDEW 301 aGEO RD1 Mexique01189nls 2200349 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000068001642100085002323000043003173260011003603360056003713370040004276060044004676070062005117100051005738010013006248560053006378560074006909550005007649920025007699920033007949920012008270000776607000077660720130319051027.01 a1630-7356 a0000776607 a a20009999k fre 01 ba0 afre aFR az aak z  adr 10aActes de l'histoire de l'immigrationb[Ressource électronique] aPariscEcole Normale Supérieure, Equipe Réseaux, Savoirs, & Territoiresd1999- aTexte intégral depuis le Vol. 0, 2000 aAnnuel aDonnées textuelles uniquement accessibles en ligne aFichiers HTML et version imprimable aEmigration et immigrationxPériodiques aFrancexEmigration et immigrationxHistoirexPériodiques02aEquipe Réseaux, savoirs, territoiresc(Paris) 0aFRbFNSP4 uhttp://barthes.ens.fr/clio/revues/AHI/index.html zContenu : texte intégral consultable en ligne depuis le Vol. 0, 20001 r aGEO RA4.06 France 01 aGEO RS Sans aspect régional aDEW 32500950nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000048001552100025002033000032002283260012002605300048002726010025003207120011003458560089003568560058004459550064005039570079005679920014006460000151929000015192920130319051027.0 a0251-9860 aFNSP593294 a0000151929 a19900101a19469999 f ba0 afre aFR aaka 10aActes de la Conférence générale - UNESCO aPariscUnescod1946- aPublication en 5 fascicules abiennal00aActes de la Conférence générale - UNESCO02aUnescoxPériodiques02aUnesco4 uhttp://portal.unesco.org/fr/ev.php-URL_ID=39841&URL_DO=DO_TOPIC&URL_SECTION=201.html zContenu : texte intégral du dernier rapport en ligne1 b1re Session (1946) -...cParisdMagasins/AnnexeeCOL4°10951 rIndex to the resolutions of the General Conference 1946/1989

 aDEW 341.201359nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004700154210005900201326001600260421003800276606003600314606002900350676000800379801002100387856012200408856010800530856002500638856006100663955006600724955006300790955006900853972000900922992003300931992001200964992000900976039525821000000341720131219154359.01 a0335-5322 aFNSP102884 a0000003417 a19900101a19759999 ba0 afre aFR aahu 10aActes de la recherche en sciences sociales aPariscEd. de la Maison des sciences de l'hommed1975- aTrimestriel 1aLiber (Ed. française)x1144-5858 aSciences socialesxPériodiques aSociologiexPériodiques a301 3aFRbCCN0335-53224 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-actes-de-la-recherche-en-sciences-sociales.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr zAccès libre au texte intégral des années 1975 à 20031 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3011 bno. 1 (jan-1975) -....cParisdMagasins/AnnexeeP 4° 36131 bL'année en courscParisdBibliothèque de rechercheeP 4° 3613 aZCAD aGEO RS Sans aspect régional aDEW 301 aPBUL01441nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200010300154210003400257300004400291326001100335440007700346606004600423607003500469710009100504711006100595856025900656955007300915955007200988991001801060992002501078992001201103039239306000000693120130319051027.0 a0071-8440 aFNSP111275 a0000006931 a19900423b19502002 ba0 afre aFR aaka 10aActes du ...Congrès national des sociétés savantes. Section d'histoire moderne et contemporaine aPariscEd. du CTHSd1950-2002 aPour la suite voir au titre particulier aAnnuel 1tActes des congrés nationaux des sociétés historiques et scientifiques aHistoirexRechercheyFrancexPériodiques aFrancexHistoirexPériodiques02aCongrès national des sociétés savantesbSection d'histoire moderne et contemporaine02aFrancebComité des travaux historiques et scientifiques4 uhttp://gallica.bnf.fr/Search?lang=FR&ArianeWireIndex=index&q=Actes+du+Congr%C3%A8s+national+des+soci%C3%A9t%C3%A9s+savantes&n=15&p=1&pageNumber=579zAccès libre au texte intégral. Texte intégral numérisé en libre accès des actes 77-80, 83-85, 87-941 bvol. 105 (1980) -vol. 116 (1991)cParisdMagasins/AnnexeeP 8° 54291 bvol. 75 (1950) -vol. 104 (1979)cParisdMagasins/AnnexeeCOL8°2095 aexempb201111 aGEO RA4.06 France 01 aDEW 94401039nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210002500175326001800200517008900218606004900307606005300356710010500409830006100514856007700575955007600652972000900728992001200737039802566000013209220130522145055.01 a0981-5597 aFNSP537021 a0000132092 a19940707a19869999 ba0 afre aFR aaia 10aActes du GERPISA aEvrycGERPISAd1986- a3 n°s par an10aActes du Groupe d'études permanent sur l'industrie et les salariés de l'automobile aAutomobile, Travailleurs de l'xPériodiques aAutomobilesxIndustrie et commercexPériodiques02aGroupe d'études et de recherches permanent sur l'industrie et les salariés de l'automobilef(Evry) aDésherbé , 1993-->2004 : décision et fait en mai 20134 uhttp://gerpisa.org/node/662zAccès libre au texte intégral depuis 19921 bno. 8 (nov-1993) -no. 37 (sep-2004)cParisdMagasins/AnnexeeP 4° 6364 aZGRA aDEW 33801181nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210007000180326001500250517002100265606003900286606003200325710005600357856007500413856005700488955006600545957021000611972000900821992002500830992001200855039288579000014726020130319051028.01 a0181-2874 aFNSP579553 a0000147260 a19950120a19789999 ba0 afre aFR aaga 10aAction juridique CFDT aPariscConfédération française démocratique du travaild1978- aBimestriel10aAction juridique aDroit socialyFrancexPériodiques aDroityFrancexPériodiques02aConfédération française démocratique du travail4 uhttp://www.cfdt.fr/cfdt_a_z/connaitre/publication/action_juridique.htm zContenu : accès au sommaire du dernier numéro paru1 bno 4 (jul/aou-1978) -....cParisdMagasins/AnnexeeP 4° 46371 bno. 69 (1988) -no. 99 (1993): suppl. au no. 99 (mar-1993) ; (1988) -(1997): suppl. au no. 129 (mar-1998) ; no. 115 (1995) -no. 158 (2002): suppl. au no. 158 (jan-2003)cParisdMagasins/AnnexeeP Index 0697 aZCAD aGEO RA4.06 France 01 aDEW 34001255nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210004700177326001800224606006900242606005900311607009900370710003900469856003900508856016300547955007100710957008800781972000900869991001800878992001900896992001400915038658178000008603120140110120345.01 a0001-7469 aFNSP381777 a0000086031 a19900101a19339999 ba0 afre aCA aafa 12aL'Action nationale aMontréalcLigue d'action nationaled1933- a10 nos par an aPolitique linguistiqueyCanadayQuébec (province)xPériodiques aNationalismeyCanadayQuébec (province)xPériodiques aQuébec (Canada ; province)xHistoirexAutonomie et mouvements indépendantistesxPériodiques02aLigue d'action nationale (Québec)4 uhttp://www.action-nationale.qc.ca/ zContenu : Sommaires, index et texte intégral depuis le volume 90, n°1, janvier 2000 (vol. 89, 1999 pour les débats) (sauf une partie des derniers numéros)1 bvol. 82 no. 1 (jan-1992) -....cParisdMagasins/AnnexeeP 8° 59221 b(1917) -(1994)cParisdMagasins/Annexezse trouve dans le vol. 84 no. 10 (dec-1994) aZCAD aexempb201308 aGEO RC1 Canada aDEW 320.501073nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005300154210006000207326001600267430006800283440004000351606005600391606005700447710008200504856003800586856003600624955008300660992001600743992001200759040179419000005773420130319051029.01 a1019-9187 aFNSP268051 a0000057734 a19900101b19921998 f ba0 afre aCH aaha 10aActivité bancaire et financière internationale aBâlecBanque des règlements internationauxd1992-1998 aTrimestriel 1aEvolution de l'activité bancaire et financière internationale 1tRapport trimestriel BRI,x1683-0180 aBanques internationalesxStatistiquesxPériodiques aFinances internationalesxStatistiquesxPériodiques02aBanque des règlements internationauxbDépartement monétaire et économique4 uhttp://www.bis.org/publ/index.htm zAccès libre au texte intégral1 b1er tri. (fev-1992) -3ème tri. (aou-1998)cParisdMagasins/AnnexeeP 4° 5339 aDEW 310-319 aDEW 33200845nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006200154210002600216326001100242530005900253606004500312710004200357856006700399955007900466992002200545992001200567039408558000006061820130319051029.01 a0248-661X aFNSP277632 a0000060618 a19900101b19800001 ba0 afre aFR aaka 10aActivité scientifique du Centre de sociologie urbaine... aPariscCSUd1980-0001 aAnnuel10aActivité scientifique du Centre de sociologie urbaine aSociologie urbaineyFrancexPériodiques02aCentre de sociologie urbainec(Paris)4 uhttp://www.csu.cnrs.fr/zAccés au dernier rapport d'activité1 b(1987/1991) ; (1995/1997) -(2001/2004)cParisdMagasins/AnnexeeP 8° 5801 aGEO RA4.06 France aDEW 30701140cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200003100174210006500205326001600270430007400286440003500360530003100395531001800426710004700444801003000491802000700521856009000528856010800618955006800726991002000794037980491000109569120130319051029.0 a0398-8120 accn0398-8120 a0001095691 a19860904b19531960k y0frey0103 ba0 afre aFR a 0  aah 0 12aL'Actualité de l'histoire aCourbevoiecInstitut français d'histoire socialed1953-1960 aTrimestriel 1tBulletin annuel de l'Institut français d'histoire socialex0398-8147 1tLe Mouvement socialx0027-267102aL'Actualité de l'histoire 0aActual. hist.02aInstitut français d'histoire sociale4070 3aFRbAbesc20060505gAFNOR a074 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03988120.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 4 (1953) -no. 32 (1960)cParisdMagasins/AnnexeeP 8° 1233 aPériobTP02 P801047nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000420015420700480019621000470024432600150029160600520030671000270035880100210038585600670040685600520047395500870052595700740061297200090068699200220069599200160071703958416X000000635920130419103501.01 a0397-331X aFNSP110121 a0000006359 a19900101b19722010 ba0 afre aFR aagu 10aActualité de la formation permanente 1aN° 1, mai 1972-n° 226/227, mai/août 2010 aParis la DéfensecCentre Inffod1972-2010 aBimestriel aFormation professionnelleyFrancexPériodiques02aCentre Inffoc(France) 3aFRbCCN0397-331X4 uhttp://www.centre-inffo.fr/Actualite-de-la-Formation,2109.html zContenu : accès aux thèmes depuis numéro 1941 bno. 1 (mai-1972) -no. 226/227 (mai/août-2010)cParisdMagasins/AnnexeeP 4° 32741 b(1972) -(1989) ; (1972) -(2000)cParisdMagasins/AnnexeeP Index 0524 aZPAY aGEO RA4.06 France aDEW 370-37900858nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210004700183326001200230430005400242440002700296606002700323606003600350856003600386856004300422955008000465972000900545992001400554045075115000027214620130319051029.01 a1291-4746 aFNSP939865 a0000272146 a19990507b19992003 ba0 afre aFR aafa 10aActualité des religions aPariscMalesherbes-Publicationsd1999-2003 aMensuel 1aL'Actualité religieuse (Paris, 1995),x1265-6240 1tLe Monde des religions aReligionxPériodiques aEglise catholiquexPériodiques uhttp://www.lavie.presse.fr/MDR/ zcontenu : sommaire du dernier numéro.1 bno. 1 (jan-1999) -no. 49 (mai/jun-2003)cParisdMagasins/AnnexeeP 4° 4827 aZPAY aDEW 20-2901242nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210002700181326001600208606003700224607004800261607005000309710004700359711005400406801002100460856004900481856008000530856003600610856003600646955013500682972000900817992002100826992001900847992001400866038658267000001094020130319051030.01 a0001-771X aFNSP121078 a0000010940 a19900101a19259999 ba0 afre aCA aaha 10aActualité économique aMontréalcSCSEd1925- aTrimestriel aEconomie politiquexPériodiques aCanadaxPolitique économiquexPériodiques aCanadaxConditions économiquesxPériodiques02aSociéte canadienne de science économique02aEcole des hautes études commerciales (Montréal) 3aFRbCCN0001-771X4 uhttp://canarie.hec.ca/iea/actueco/actgen.htm zContenu : sommaires ; résumés ; depuis le volume 71, numéro 2, juin 19954 uhttp://www.erudit.org/revue/ae/ zAccès libre au texte intégral1 bvol. 56 no.1 (1980) -vol. 70 no. 3 (1994) ; vol. 73 no. 1/2/3 (1997) -vol. 85 no. 4 (dec-2009)cParisdMagasins/AnnexeeP 8° 0141 aZPAY aGEO RQ Universel aGEO RC1 Canada aDEW 338.900986nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001341350018001502000169001682100062003372300024003993000081004233260016005046060038005207120059005588010013006178560038006309550040006680000307140000030714020130319051030.0 a0000307140 a a19989999k fre ba0 afre aFR a 0  az aau z 0  adz 10aActualité et droit internationalb[Ressource électronique]erevue d'analyse juridique de l'actualité internationalefRéseau Internet pour le droit international aS.l.cRéseau Internet pour le droit internationald1998- aDonnées textuelles aAccès au 18/04/2000 World Wide Web. URL : http://www.ridi.org/adi/home.html aIrrégulier aDroit internationalxPériodiques02aRéseau Internet pour le droit internationalc(France) 0aFRbFNSP4 uhttp://www.ridi.org/adi/home.html1 rConsultable uniquement sur Internet01396nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004700139210002500186210005800211326002400269326002300293430004400316488006200360517000900422606003200431606006100463676000800524801002100532830003300553856006700586856010800653955006600761955006000827955005000887972000900937991001800946992002200964992001200986039219208000000377020130903151604.01 a0001-7728 aFNSP103942 a19900101a19559999 ba0 afre aFR aacu 10aActualité juridique.iDroit administratif aPariscDallozd2001- aPariscEd. du Moniteur des travaux publicsd1955-2000 aHebdomadaireb2002- aMensuelb1955-2002 1aActualité juridique.Travauxx1145-7376 1aActualité juridique. Propriété immobilièrex0001-773610aAJDA aDroit administratifyFrance aDroit administratifyFrancexJurisprudencexPériodiques a342 3aFRbCCN0001-7728 a1956 -1999 conservé au 13 U4 uhttps://acces-distant.sciences-po.fr/fork?http://bu.dalloz.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 3e étageeDEW 3421 bvol. 13 no. 1 (1957) -....cParisdMagasinseP 4° 15491 b(1945) -(1989)cParisdMagasinseP Mic 16 (1) aZCAD aexempb201002 aGEO RA4.06 France aDEW 34201014nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004700154210004700201210002500248326001500273517000900288606004400297676000800341856006700349856010800416955006700524955006300591972000900654992002500663992001200688040489434000019085220130319051030.01 a1272-9116 aFNSP705546 a0000190852 a19900101a19969999 ba0 afre aFR aa a 00aActualité juridique.iFonctions publiques aPariscPublications du Moniteurd1996-2000 aPariscDallozd2000- aBimestriel10aAJFP aFonction publiqueyFrancexPériodiques a3424 uhttps://acces-distant.sciences-po.fr/fork?http://www.dalloz.fr zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 3421 bno. 1 (mai-1996) -....cParisdMagasins/AnnexeeP 4° 6606 aZPAY aGEO RA4.06 France 01 aDEW 34201134nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001600139207001700155210005700172210006100229210003500290326001500325452003900340530001600379606002700395676000800422856009100430856010800521955006700629955005900696972000900755991001800764992001400782001294997000000640620130918173727.01 a0994-4524 aFNSP110179 a19900406a19879999 ba0 afre aFR aaja 10aActuel Marx 1ano. 1(1987)- aParis‎cPresses universitaires de France‎d2001- aÉvry‎cPresses universitaires de France‎d1988-2000 aParis‎cL'Harmattan‎d1987 aSemestriel 1tActuel Marx (En ligne),x1969-6728 aActuel Marx aMarxismexPériodiques a3204 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-actuel-marx.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 1 (1987) -....cParisdMagasins/AnnexeeP 8° 5009 aZCAD aexempb201106 aDEW 320.501434nas 2200361 i 450 001001000000002001100010005001700021011001400038035001300052035001500065100004100080101000800121102000700129110001600136200001900152207003100171210011200202326001600314530003200330606003500362607004100397676000800438710010600446801002100552856007500573856004200648955006700690955010300757957016500860972000901025992002201034992001601056039348547000000236120130319051031.01 a0223-5439 aFNSP8466 a0000002361 a19900101a19629999 ba0 afre aFR aaha 10aAdministration 1avol. 16 no. 45 (mar-1962)- aPariscAssociation du corps préfectoral et des administrateurs civils du Ministère de l'intérieurd1962- aTrimestriel 0aAdministrationbParis. 1962 aPréfetsyFrancexPériodiques aFrancexAdministrationxPériodiques a35102aAssociation du corps préfectoral et des hauts fonctionnaires du Ministère de l'intérieurc(France) 3aFRbCCN0223-54394 uhttp://www.ladocfrancaise.gouv.fr/cgi-bin/multitel/CATALDOC/accueil_df zContenu : sommaire des 3 derniers n°1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3511 bvol. 16 no. 46 (aou-1962) -....cParisdMagasins/AnnexeeP 4° 1979wmanquants no 148 et 149, 19901 bno. 45 (1962) -no. 60 (1967) ; no. 61 (1967) -no. 74 (1971) ; no. 75 (1972) -no. 86 (1974) ; no. 87 (1975) -no. 109 (1980)cParisdMagasins/AnnexeeP Index 0470 aZCAD aGEO RA4.06 France aDEW 350-35401149nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210003800183326002200221326002700243430005300270517003100323606004200354801002100396856007000417856010800487955015200595972000900747991001800756992003300774992001600807038899736000000636420130319051031.01 a0095-3997 aFNSP110127 a0000006364 a19900101a19749999 ba0 aeng aUS aagu 10aAdministration & society aNewbury Park, Calif.cSaged1974- aBimestrielb1998- aTrimestrielb1974-1997 1aJournal of comparative administrationx0021-993210aAdministration and society aAdministration publiquexPériodiques 3aFRbCCN0095-39974 uhttps://acces-distant.sciences-po.fr/fork?http://aas.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 6 no. 1 (mai-1974) -vol. 34 no. 6 (jan-2003) ; vol. 39 no. 1 (2007) -....cParisdMagasins/AnnexeeP 8° 2675wManquant : vol. 34, no. 4, 2002 aZSAB aexempb201105 aGEO RS Sans aspect régional aDEW 350-35401672nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210010000191326001600291517000800307606002600315606003900341710005600380801002100436856012800457856010800585856009000693856010800783856012800891856010801019955006601127957001701193972000901210991001801219992003301237992001601270038658445000000640820130319051032.01 a0001-8392 aFNSP110181 a0000006408 a19900101a19569999 ba0 aeng aUS aaha 10aAdministrative science quarterly aaIthaca, N.Y.cGraduate School of Business and Public Administration, Cornell Universityd1956- aTrimestriel10aASQ aGestionxPériodiques aGestion d'entreprisexPériodiques02aSamuel Curtis Johnson Graduate School of Management 3aFRbCCN0001-83924 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=ASQ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00018392.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=ASQ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1956) -....cParisdMagasins/AnnexeeP 8° 15291 eP Index 0456 aZSAB aexempb201102 aGEO RS Sans aspect régional aDEW 650-65801150cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200005100180210004300231326001600274430005600290606004200346606002500388676000800413710004700421801003000468801002300498802000700521856006100528856003600589955006600625955006400691972000900755992001200764089908287000098491220130319051032.01 a1771-7450 aissn17717450 a0000984912 a20050906a19989999 a0frey0103 ba0 afre aFR a 0  ar aahu 0uu 10aADSPeactualité et dossier en santé publique aPariscDocumentation françaised1998- aTrimestriel 1tActualité et dossier en santé publiquex1243-275X aSanté publiqueyFrancexPériodiques aSantéxPériodiques a36001aFrancebHaut comité de la santé publique 3aFRbAbesc20060313gAFNOR 3aFRbISSNc20050901 a074 uhttp://hcsp.ensp.fr/hcspi/explore.cgi/accueil?ae=accueil zAccès libre au texte intégral1 bLes 3 dernières annéescParisd27, Salle 4e étageeDEW 3601 bno. 50 (mar-2005) -....cParisdMagasins/AnnexeeP 4° 7113 aZPAY aDEW 36000941nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116200003000123210003600153326001100189452005300200530003000253606004400283606003600327801002100363856013700384955007000521972000900591991001800600992002100618992001200639002928612000005859720130725094619.01 a0065-2830 aFNSP271240 a19900101a19709999 ba0 aeng aUS10aAdvances in librarianship aNew YorkcAcademic Pressd1970- aAnnuel 1tAdvances in librarianship (Online)‎x2162-793200aAdvances in librarianship aSciences de l'informationxPériodiques aBibliothèconomiexPériodiques 3aFRbCCN0065-28304 uhttp://www.emeraldinsight.com/products/books/series.htm?id=0065-2830zAccés libre à la table des matières depuis le vol. 16, 19921 bvol. 1 (1970) -vol. 34 (2011)cParisdMagasins/AnnexeeP 8° 3252 aZPAY aexempb200911 aGEO RQ Universel aDEW 02001116cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200008300162210006500245440004400310454003200354530002600386607006000412676000800472712004900480801003000529802000700559856014600566955007000712991002000782037461842000108412620130319051033.0 a0381-4882 accn0381-4882 a0001084126 a19870330b19481971 0frey0103 ba0 afre aCA ar aaf 10aAffaires extérieureseun mensuelfpar le ministère des Affaires extérieures aOttawa, OntcMinistère des affaires extérieuresd1948-1971 1tPerspectives internationalesx0381-4890 1tExternal affairsx0381-486600aAffaires extérieures aCanadaxRelations extérieuresz1945-....xPériodiques a97102aCanadabMinistère des affaires extérieures 3aFRbAbesc20020116gAFNOR a044 uhttp://dfait-aeci.canadiana.ca/zAccès libre au texte intégral. Périodique numérisé par le ministère canadien des Affaires extérieures1 bvol. 1 (1948) -vol. 23 (1971)cParisdMagasins/AnnexeeP 8° 0214 aPériobTP01 P800806nas 2200277 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000034001552100026001893260016002156060044002318010021002758560064002968560044003609550085004049720009004899910018004989920012005160000006457000000645720130319051033.01 a0390-1181 aFNSP110418 a0000006457 a19900101a19739999 ba0 aita aIT aaha 10aAffari sociali internazionali aMilanocAngelid1973- aTrimestriel aRelations internationalesxPériodiques 3aFRbCCN0390-11814 uhttp://www.francoangeli.it/riviste/sommario.asp?IDRivista=1 zContenu : sommaires depuis no. 1 (1990)1 bvol. 1 no. 1 (mar-1973) -vol. 34 no.4 (2006)cParisdMagasins/AnnexeeP 8° 3458 aZCAD aexempb200911 aDEW 30100841nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001100154210002400165326001600189517001800205607002600223710002800249856003500277856004700312955005500359955005500414972000900469991001800478992001900496992001200515038658844000000646120131126174407.01 a0001-9747 aFNSP110431 a0000006461 a19900101a19469999 ba0 amul aIT aaha 10aAfrica aRomacAfricad1946- aTrimestriel10aAfrica (Roma) aAfriquexPériodiques02aIstituto italo-africano4 uhttp://www.isiao.it/storia.php zContenu : accès au site Web de l'éditeur1 b(1965) -(2010)cParisdMagasins/AnnexeeP 8° 21491 b(1951) -(1964)cParisdMagasins/AnnexeeP 4° 0920 aZGRA aexempb201105 aGEO RE Afrique aDEW 96001114nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005900154210004900213210005500262326001600317517001100333530002700344607003200371710003600403801002100439856007500460856006300535955006700598972000900665991002000674991001800694992003600712992001600748038658828000000645920140108154945.01 a0001-9720 aFNSP110420 a0000006459 a19900101a19289999 ba0 aeng aGB aahu 10aAfricaejournal of the international African institute aCambridgecCambridge University Pressd2011- aManchestercManchester University Pressd1928-2010 aTrimestriel10aAfrica00aAfricab(London. 1928) aAfrique noirexPériodiques02aInstitut africain international 3aFRbCCN0001-97204 uhttp://www.eup.ed.ac.uk/journals/content.aspx?pageId=2&journalId=11659 zContenu : sommaires des n°s depuis le vol. 67, n°1, 19971 bvol. 15 no. 1 (1945) -....cParisdMagasins/AnnexeeP 8° 1371 aZCAD aPériobTP03 P8 aexempb201102 aGEO RF Afrique au sud du Sahara aDEW 966-96901120nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210002700177300003200204326001600236517003000252606004500282607004500327607004900372676000800421710008500429801002100514856002900535856005400564955008000618972000900698991001800707992001900725992001400744039806693000000652720130319051034.01 a0850-3907 aFNSP110610 a0000006527 a19900101a19769999 ba0 amul aSN aaha 10aAfrica development aDakarcCODESRIAd1976- aArrive avec 2 ans de retard aTrimestriel10aAfrique et développement aDéveloppement économiquexPériodiques aAfriquexPolitique socialexPériodiques aAfriquexPolitique économiquexPériodiques a96002aConseil pour le développement de la recherche économique et sociale en Afrique 3aFRbCCN0378-30064 uhttp://www.codesria.org/ zContenu : sommaires depuis le vol. 23, no 1, 19981 bvol. 1 no. 1 (mai-1976) -no. 1/2 (2010)cParisdMagasins/AnnexeeP 8° 3895 aZCAD aexempb201001 aGEO RE Afrique aDEW 338.900974nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000340015421000400018832600110022843000520023960700650029167600100035671000700036685601230043695500550055997200090061499200190062399200140064299200160065604018126X000019178520130716100359.01 a1020-2927 aFNSP707788 a0000191785 a19900101a19929999 ba0 aeng aUS aaka 10aAfrica development indicators aWashington, D.C.cWorld Bankd1992- aAnnuel 1aAfrican economic and financial data (1020-2919) aAfriquexConditions économiquesxStatistiquesxPériodiques a338.902aBanque internationale pour la reconstruction et le développement4 uhttp://data.worldbank.org/data-catalog/africa-development-indicatorszAccès au texte intégral du rapport depuis 20061 b(1996) -(2011)cParisdMagasins/AnnexeeP 4° 6617 aZPAY aGEO RE Afrique aDEW 330.9 aDEW 310-31900828nls 2200265 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200007300124210000500197230002400202326001100226607006500237710007000302801001300372856012300385955000500508992001900513992001400532992001600546000124666120130716100128.0 a a20069999k fre 01 ba0 aeng aUS ar aak z  adr 10aAfrica development indicatorse{Ressource électronique]fWorld Bank a aRevue électronique aAnnuel aAfriquexConditions économiquesxStatistiquesxPériodiques02aBanque internationale pour la reconstruction et le développement 0aFRbFNSP4 uhttp://data.worldbank.org/data-catalog/africa-development-indicatorszAccès au texte intégral du rapport depuis 20061 r aGEO RE Afrique aDEW 330.9 aDEW 310-31901391nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001700154210005000171326001600221607002600237607005300263801002100316856012800337856010800465856012800573856010800701955009100809955009500900972000900995991001801004992001901022992001201041038658917000000724120131126174232.01 a0001-9887 aFNSP111967 a0000007241 a19900101a19549999 ba0 aeng aUS aaha 10aAfrica today aDenver, Colo.cAfrica Today Associatesd1954- aTrimestriel aAfriquexPériodiques aAfriquexPolitique et gouvernementxPériodiques 3aFRbCCN0001-98874 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=ATD&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=poh&jid=ATD&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 17 no. 1 (jan-1970) -.vol. 58 no 2 (jan-2011)cParisdMagasins/AnnexeeP 8° 27511 bvol. 15 no. 1 (fev/mar-1968) -vol. 16 no. 6 (dec-1969)cParisdMagasins/AnnexeeP 4° 2550 aZCAD aexempb201105 aGEO RE Afrique aDEW 96001536nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004300154210004400197326001600241430005200257530002800309607002600337676000800363710003100371801002100402856004200423856012000465856009000585856010800675856008000783856010800863955006600971955007301037972000901110992001901119992001201138038658933000000737320130319051035.01 a0001-9909 aFNSP112319 a0000007373 a19900101a19019999 ba0 aeng aGB aahu 10aAfrican AffairsfRoyal African Society aaLondoncOxford University Pressd1945- aTrimestriel 1tJournal of the Royal African Societyx0368-401610aAfrican AffairsbLondon aAfriquexPériodiques a96002aRoyal African Society (GB) 3aFRbCCN0001-99094 uhttp://www.oup.co.uk/afrafj/contents/ zContenu : sommaires ; résumés ; recherche par sujets avec Excite ; depuis le volume 95, numéro 378, janvier 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00019909.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://afraf.oxfordjournals.org/? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9601 bvol. 46 no. 185 (oct-1947) -....cParisdMagasins/AnnexeeP 8° 0012 aZSAB aGEO RE Afrique aDEW 96001094nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000260015420700220018021000300020232600160023260100480024860600290029660700330032571000340035880100210039285601010041385600710051495501020058597200090068799100180069699200300071499200120074403615766X000000750020130319051035.01 a0001-9976 aFNSP112648 a0000007500 a19900101a19609999 ba0 aeng aGB aaha 14aThe African communist 1ano. 1 (oct-1959)- aLondoncInkululekod1959- aTrimestriel02aSouth African Communist PartyxPériodiques aActualitéxPériodiques aAfrique du SudxPériodiques02aSouth African Communist Party 3aFRbCCN0000/69984 uhttp://www.sacp.org.za/index.php?option=com_content&task=category§ionid=20&id=102&Itemid=1234 zContenu : accès libre au texte intégral des articles depuis 19591 bno. 7 (sep-1961)-no. 166/167 (2004)cParisdMagasins/AnnexeeP 8° 2001wManquant : no. 162, 2003 aZGRA aexempb201103 aGEO RF3.19 Afrique du Sud aDEW 05001109cas0 2200325 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123110001600141200002300157207002300180210003100203326002300234326002900257326002600286517006500312607003200377801003000409856010900439856010800548955007000656972000900726992003600735992001200771081417284000094058020130319051035.01 a1472-5843 a0000940580 a20041102a20039999k y0frey0103 ba0 aeng aGB a 0  aaia 0 10aAfrican identities 0aVol.1, n°1(2003)- aAbingdoncRoutledged2003- aTrimestrielb2008- a3 n°s par anb2007-2007 aSemestrielb2003-200610aAfrican identitiesea journal of economics culture & society aAfrique noirexPériodiques 3aFRbAbesc20050124gAFNOR4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713611520db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (avr-2003) -....cParisdMagasins/AnnexeeP 8° 6873 aZSAB aGEO RF Afrique au sud du Sahara aDEW 96001050nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012310600060014111000160014720000190016321000620018232600150024443000390025953000400029860700260033860700490036460700490041371000460046280100130050885600900052195500920061197200090070399200120071205547358X000048037320130319051035.01 a1548-4505 a0000480373 a b20002004k fre ba0 aeng aUS a 0  ar aaj z 0 10aAfrican issues aNew Brunswick, NJcAfrican Studies Associationd2000-2004 aSemestriel 1tIssue (Waltham, Mass.),x0047-160710aAfrican issuesbNew Brunswick, N.J. aAfriquexPériodiques aAfriquexRelationsyEtats-UnisxPériodiques aEtats-UnisxRelationsyAfriquexPériodiques02aAfrican Studies Associationc(Etats-Unis) 0aFRbFNSP uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/15484505.html1 bvol. 29 no. 1/2 (2001) -vol. 32 no. 1/2 (2003/2004)cParisdMagasins/AnnexeeP 4° 3114 aZPAY aDEW 96001176cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200002100180207004800201210006300249326001800312606004800330607003600378607005000414801003000464801002300494802000700517856010900524856007500633955006600708972000900774992001200783992001900795131689290000117922720130319051035.01 a1939-2206 aissn19392206 a0001179227 a20090223a20089999k y0frey0103 ba0 aeng aUS ay 0  ar aaja 0uu 10aAfrican security 0aBegan with vol. 1, issue 1 (Jan./June 2008) aPhiladelphia, PAcRoutledge, Taylor & Francis Groupd2008- a3 n°s par an aSécurité nationaleyAfriquexPériodiques aAfriquexDéfensexPériodiques aAfriquexRelations extérieuresxPériodiques 3aFRbAbesc20090308gAFNOR 3aFRbISSNc20090225 a014 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t901392701db=all zContient sommaires et résumés des n°s depuis le vol. 1 no. 1 (2008)1 bvol. 1 no. 1 (2008) -....cParisdMagasins/AnnexeeP 8° 7108 aZSAB aDEW 327 aGEO RE Afrique01362nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210005600189326002200245430004500267606004700312801002100359856012800380856010800508856010900616856010800725955006700833955008600900972000900986992002900995992001201024038659239000000737920130319051035.01 a0002-0184 aFNSP112326 a0000007379 a19900101a19429999 ba0 aeng aAF aaia 10aAfrican studies (Johannesburg) aJohannesburgcWitwatersrand University Pressd1942- aTrois n°s par an 1aBantu studies (0256-1751) < P 8° 2156 > aEthnologieyAfrique australexPériodiques 3aFRbCCN0002-01844 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=35L&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713405746db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 40 no. 1 (1981) -....cParisdMagasins/AnnexeeP 4° 46341 bvol. 1 no. 1 (mar-1942) -vol. 39 no. 2 (1980)cParisdMagasins/AnnexeeP 8° 2156 aZCAD aGEO RF3 Afrique australe aDEW 30101290nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210002900181326001800210430002900228530002700257607002600284712004600310801002100356856012800377856010800505856009000613856010800703955007100811972000900882991001800891992001900909992001200928038659247000000641020130319051035.01 a0002-0206 aFNSP110183 a0000006410 a19900101a19709999 ba0 aeng aUS aaia 10aAfrican studies review aAtlanta, Ga.cASAd1970- a3 n°s par an 1aAfrican studies bulletin00aAfrican studies review aAfriquexPériodiques02aAfrican Studies Associationc(Etats-Unis) 3aFRbCCN0002-02064 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=poh&jid=ASR&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00020206.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 13 no. 1 (avr-1970) -....cParisdMagasins/AnnexeeP 8° 2258 aZCAD aexempb200908 aGEO RE Afrique aDEW 96001062nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000200013921000240015930000320018332600180021551700190023353000310025260700510028360700530033471000420038780100210042985601390045095500590058997200090064899100180065799100180067599200190069399200120071203865928X000000722420130725165248.01 a0002-0397 aFNSP111928 a19900101a19669999 ba0 amul aDE aaia 10aAfrika Spectrum aHamburgcIAKd1966- aArrive avec un an de retard a3 n°s par an10aAfrikaspectrum10aAfrikaspectrum‎bHamburg aAfriquexConditions économiquesxPériodiques aAfriquexPolitique et gouvernementxPériodiques02aInstitut für Afrika-Kunde (Hambourg) 3aFRbCCN0002-03974 uhttp://hup.sub.uni-hamburg.de/giga/afsp/zAccès libre au texte intégral des articles en anglais depuis le volume 44, numéro 1, 20091 bno. 1 (1972) -....cParisdMagasins/AnnexeeP 8° 3309 aZSAB aexempb200911 aexempb201005 aGEO RE Afrique aDEW 96001090cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118105001800125110001600143200004500159207002300204210003000227326001500257517002400272530003200296607003600328801003000364801002300394801003000417802000700447856009200454856010800546955006700654992001900721992001200740074597043000094103720130522165446.01 a1764-1977 aissn17641977 a20031023a20039999k y0frey0103 ba0 afre aFR ay  aaju uu010aAfrique & histoireerevue internationale 0aN.1 (2003, sept.)- aPariscEd. Verdierd2003- aSemestriel10aAfrique et histoire10aAfrique & histoireb(Paris) aAfriquexHistoirexPériodiques 3aFRbAbesc20080227gAFNOR 3aFRbISSNc20030523 3aFRbAbesc20060227gAFNOR a074 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue.php?ID_REVUE=AFHI zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (2003) -no. 6 (2006)cParisdMagasins/AnnexeeP 8° 6874 aGEO RE Afrique aDEW 96000826cas0 2200313 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012311000160014120000170015721000250017432600120019943000460021153000250025760700230028260700260030580100300033185600320036195500630039397200090045699200190046599200160048499200120050009500940X000092610020130319051036.01 a1779-0042 a0000926100 a20060113a20059999m y0frey0103 ba0 afre aFR a 0  aafa 0 10aAfrique Asie aPariscAFRIAMd2005- aMensuel 1tLe Nouvel Afrique Asie (Paris)x1141-994610aAfrique Asieb(2005) aAsiexPériodiques aAfriquexPériodiques 3aFRbAbesc20060118gAFNOR4 uhttp://www.afrique-asie.fr/1 bno. 1 (dec-2005) -....cParisdMagasins/AnnexeeP 4° 3144 aZCAD aGEO RE Afrique aGEO RH Asie aDEW 96001394nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009300154210004700247210010000294210005000394326001600444607002600460676000800486710008000494801002100574856010100595856010800696955006600804955006200870957007200932972000901004992001901013992001201032039219224000000349520130319051036.01 a0002-0478 aFNSP102978 a0000003495 a19900101a19629999 ba0 afre aFR aahu 10aAfrique contemporainefCentre d'études et de documentation sur l'Afrique et l'Outre-mer aPariscDocumentation françaised1962-2002 aPariscAgence française de DéveloppementaPariscDiff. La Documentation françaised2003-2004 aLouvain-la-NeuvecDe Boeck Universitéd2005- aTrimestriel aAfriquexPériodiques a96002aCentre d'études et de documentation sur l'Afrique et l'Outre-merc(France) 3aFRbCCN0002-04784 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-afrique-contemporaine.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9601 bno 1 (avr-1962) -....cParisdMagasins/AnnexeeP 4° 19821 bno. 173 (1995)-no. 186 (1998)cParisdMagasins/AnnexeeP Index 0816 aZCAD aGEO RE Afrique aDEW 96001387nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200009700163207001000260210002900270225003000299326001100329411004200340607007100382607007500453607007700528676000800605710008000613801001300693856002600706856005200732955006100784955007200845972000900917991001800926992002900944992001600973069923124000065374820130319051036.01 a1636-208X a0000653748 a a19979999 fre 01 ba0 afre aFR a 0  ar aak z 0 12aL'Afrique des grands lacseannuairefCentre d'étude de la région des grands lacs d'Afrique 1a1997- aParis:cHarmattand1997-21aL'Afrique des grands lacs aAnnuel 0aL'Afrique des grands lacs,x1285-3356 aGrands lacs africains (région)xConditions socialesxPériodiques aGrands lacs africains (région)xConditions économiquesxPériodiques aGrands lacs africains (région)xPolitique et gouvernementxPériodiques a96002aCentre d'étude de la région des Grands Lacs d'Afriquec(Anvers, Belgique) 0aFRbFNSP4 uhttp://www.gralac.org zContenu : sommaires depuis l'annuaire 1996-19971 bLa dernière annéecParisd30, Salle 2e étageeDEW 9601 b(1996/1997) ; (2002/2003) -....cParisdMagasins/AnnexeeP 8° 6769 aZPAY aexempb201212 aGEO RF2 Afrique centrale aDEW 966-96901103nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210004900177326002500226326002400251606003600275801002100311856004200332856006000374856010100434856010800535955007000643972000900713991001800722992002100740992001600761039085546000000728120130319051038.01 a0144-686X aFNSP112076 a0000007281 a19900101a19819999 ba0 aeng aGB aafa 10aAgeing and society aCambridgecCambridge University Pressd1981- a8 n°s par anb2008- aBimestriel1981-2007 aPersonnes âgéesxPériodiques 3aFRbCCN0144-686X4 uhttp://uk.cambridge.org/journals/aso/ zContenu : sommaires depuis le vol. 15, n°3, sept. 19954 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101500 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1981) -....cParisdMagasins/AnnexeeP 8° 4503 aZPAY aexempb200911 aGEO RQ Universel aDEW 305-30601445cas0 2200457 450 001001000000002001100010005001700021011001400038035001700052035002100069035001500090100004100105101000800146102000700154105001800161106000600179110001600185200003900201207002900240210005500269210003300324210003000357326001700387410003200404606003000436676000800466712004000474712003900514801003000553801002300583801003000606801003000636801002300666802000700689856004500696856005600741955014600797972000900943992001400952992002100966114719926000111719620130319051038.01 a1950-330X aissn1950330X a(OCoLC)122381255 a0001117196 a20070524b20052011k y0frey50 ba0 afre aFR ay 0  ar aaia 0uu010aAgenda de la pensée contemporaine 0a[No 1] (printemps 2005)- aPariscPresses universitaires de Franced2005-2006 aPariscFlammariond2006-2009 aPariscHermannd2010-2011 a3 nos par an 1tLibelles (Paris)x1767-2163 aPhilosophiexPériodiques a10002aCentre Roland Barthesc(Paris)434002aCentre Marcel Granetc(Paris)4340 3aFRbAbesc20090116gAFNOR 3aFRbISSNc20080909 3aFRbAbesc20081203gAFNOR 3aFRbAbesc20071026gAFNOR 3aFRbISSNc20070501 a074 uhttp://agenda.ipc.univ-paris-diderot.fr/ zContenu: sommaires des n°s depuis le no. 1 de 20051 bno. 1 (pri-2005) ; no. 7 (pri-2007) ; no. 9 (hiv-2007/2008) -no. 15 (2009) ; no. 19 (2010) -no. 20 (2011)cParisdMagasins/AnnexeeP 8° 7073 aZPAY aDEW 10-14 aGEO RQ Universel01038nas 2200325 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200006600148210004200214326002300256530002300279606002900302676000800331710003600339801001300375856004500388856010500433955006700538955006400605972000900669991001800678992001600696048760420000046648720130902155551.01 a1296-9915 a a19999999k fre ba0 afre aFR a 0  ar aah z 0 10aAgirerevue générale de stratégiefSociété de stratégie aPariscSociété de stratégied1999- a3 ou 4 n°s par an00aAgir (Paris, 1999) aStratégiexPériodiques a35502aSociété de stratégie (Paris) 0aFRbFNSP4 uhttp://www.societe-de-strategie.asso.fr/ zContenu : sommaires de la revue à partir du n°4, résumés et quelques articles en texte intégral1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3551 bno. 1 (sept-1999) -....cParisdMagasins/AnnexeeP 8° 6628 aZCAD aexempb201212 aDEW 355-35901039cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200004500197210002800242326001500270530002300285606004400308606002600352606002700378801003000405801002300435802000700458856003400465856009400499955006300593972000900656992001200665039933393000073086020130319051039.01 a1157-6790 accn1157-6790 aissn11576790 a0000730860 a19910221a19909999 0fre 0103 ba0 afre aFR a 0  ar aaj 0 10aAgoneehistoire, politique et sociologie aMarseillecAgoned1990- aSemestriel10aAgoneb(Marseille) aRelations internationalesxPériodiques aCulturexPériodiques aHistoirexPériodiques 3aFRbAbesc20040630gAFNOR 3aFRbISSNc20030523 a074 uhttp://revueagone.revues.org/ zContenu : texte intégral via revues.org depuis 2003 à l'exception des derniers numéros1 bno. 31/32 (2004) -....cParisdMagasins/AnnexeeP 8° 6790 aZPAY aDEW 00101238nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210004800181326001600229517001000245606003500255676000800290710007600298856005300374856005800427856010200485856010800587955006600695955005900761972000900820991001800829992002500847992001600872040463567000021810920130319051039.01 a1268-5666 aFNSP784536 a0000218109 a19900101a19959999 ba0 afre aFR aaha 10aAgora débats/jeunesse aPariscHarmattand1995-aPariscINJEPd1995 aTrimestriel10aAgora aJeunesseyFrancexPériodiques a30502aInstitut national de la jeunesse et de l'éducation populairec(France)4 uhttp://www.injep.fr/-Agora-debats-jeunesse-.html zContenu : sommaires et résumés depuis le numéro 114 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-agora-debats-jeunesses.htm?4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3051 bno. 1 (1995) -....cParisdMagasins/AnnexeeP 8° 6336 aZPAY aexempb201210 aGEO RA4.06 France 01 aDEW 305-30601293nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000037001552100084001923260011002764300112002874400066003996060037004656060051005026060041005537120077005948560086006718560037007579550056007949550055008509720009009059920025009149920016009390000121759000012175920130319051039.02 a0170-2785 aFNSP501697 a0000121759 a19940321b19712002 ba0 ager aDE aaka 10aAgrarbericht der Bundesregierung aBonncBundesministerium für Ernährung, Landwirstschaft und Forstend1971-2002 aAnnuel 1aBericht der Bundesregierung uber die Lage der Landwirtschaft und Massnahmen der Bundesregierung (0170-2866) 1tErnährungs-und agrar politischer Bericht der Bundesregierung aPêchesyAllemagnexPériodiques aPolitique forestièreyAllemagnexPériodiques aAgricultureyAllemagnexPériodiques02aAllemagnebBundesministerium für Ernährung, Landwirtschaft und Forsten4 uhttp://www3.verbraucherministerium.de/index-00020338684910229F2F6521C0A8D816.html zAccès libre au texte intégral.1 b(1971) -(1979)cParisdMagasins/AnnexeeCOL.F°02971 b(1980) -(2001)cParisdMagasins/AnnexeeP 4° 5710 aZGRA aGEO RA5.01 Allemagne aDEW 338.1-301152nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008900154210003500243326001100278437004500289530004600334606005600380710004200436856006600478856002500544955010800569955005500677972000900732991001800741992002300759992001600782992001600798038883538000013511920130319051040.01 a0082-9714 aFNSP543329 a0000135119 a19940905a19369999 ba0 aeng aUS aaka 10aAgricultural statisticscThe Department$cFor sale by the Supt. of Docs., U.S. G.P.O aWashington, D.C.cUSGPOd1936- aAnnuel 1aYearbook of agriculture (1926)x0084-3628 0aAgricultural statisticsbWashington, D.C. aAgricultureyEtats-UnisxStatistiquesxPériodiques01aEtats-UnisbDepartment of Agriculture4 uhttp://www.nass.usda.gov/Publications/Ag_Statistics/index.asp4 zEn ligne depuis 19941 b(1942) ; (1945 ) -(1950) ; (1952) ; (1954) -(1956) ; (1968) -(1979)cParisdMagasins/AnnexeeCOL8°01881 b(1980) -(1994)cParisdMagasins/AnnexeeP 8° 5257 aZPAY aexempb201109 aGEO RC2 Etats-Unis aDEW 338.1-3 aDEW 310-31901044nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006500139210002400204225003300228326001600261430002200277606003800299606005200337712009500389856010600484955005600590972000900646991001800655992002500673992001600698992001600714074054570000025887220131114103233.01 a1763-7023 aFNSP901484 a19981102a19969999 ba0 afre aFR aaya 12aL'Agriculture, la forêt et les industries agro-alimentaires aPariscSCEESd1996-21aCollection Graph agri France aIrrégulier 1aGraph agri France aAgricultureyFrancexPériodiques aAgricultureyFrancexStatistiquesxPériodiques02aFrancebMinistère de l'agriculturebService central des enquêtes et études statistiques4 uhttp://agreste.agriculture.gouv.fr/publications/graphagri/article/graphagri-france-2012zAccès aux s1 b(1996 ) -(2011)cParisdMagasins/AnnexeeP 8° 6437 aZPAY aexempb201301 aGEO RA4.06 France 01 aDEW 338.1-3 aDEW 310-31900847nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000042001502100025001922300024002173260012002415170033002536060041002868010013003278560067003408560108004079550005005159920025005209920012005450001007442000100744220130319051041.0 a0001007442 a a20019999k fre 01 ba0 afre aFR ar aaf z  adr 10aAJ familleb[Ressource électronique] aPariscDallozd2001- aRevue électronique aMensuel10aActualité juridique Famille aFamillexDroityFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.dalloz.fr zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 34600843nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000041001502100025001912300024002163260012002405170032002526060039002848010013003238560067003368560108004039550005005119920025005169920012005410001007443000100744320130319051041.0 a0001007443 a a20039999k fre 01 ba0 afre aFR ar aaf z  adr 10aAJ Pénalb[Ressource électronique] aPariscDallozd2003- aRevue électronique aMensuel10aActualité juridique Pénal aDroit pénalyFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.dalloz.fr zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 34501226cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200001500180207003000195210008100225326001500306430002300321517001300344606003400357606003800391710007500429801003000504801002300534802000700557856004900564856009000613955009000703972000900793992002200802992001600824146925637000120154620130319051043.01 a2110-4867 aissn21104867 a0001201546 a20100928a20109999k y0frey50 ba0 afre aFR ay  ar aagu uu 10aAlim' agri 1aN° 1543 (mar/avr-2010) - aPariscMinistère de l'alimentation, de l'agriculture et de la pêched2010- aBimestriel 1tBimagrix2110-485910aAlimagri aPêchesyFrancexPériodiques aAgricultureyFrancexPériodiques02aFrancebMinistère de l'alimentation, de l'agriculture et de la pêche 3aFRbAbesc20101104gAFNOR 3aFRbISSNc20101104 a074 uhttp://agriculture.gouv.fr/alim-agri-bimagri zContenu: sommaire des n°s depuis le no 1539 (jul/aou-2009) de Bimagri (ancien titre)1 bno. 1543 (mar/avr-2010) - no. 1544 (mai/jun-2010)cParisdMagasins/AnnexeeP 4° 2370 aZPAY aGEO RA4.06 France aDEW 338.1-301661nas 2200433 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200013300154207002200287210002300309300013700332326002500469326002200494430006800516517002900584530003600613607005600649607002800705676000800733710007600741801002100817856004900838856003500887955006600922955006200988957008201050972000901132991001801141992002501159992003101184992001201215039219321000000349120130319051043.01 a0002-5712 aFNSP102974 a0000003491 a19900101a19669999 ba0 afre aFR aahu 10aAllemagne d'aujourd'huiepolitique, économie, société, culturefAssociation pour la connaissance de l'Allemagne d'aujourd'hui 1an.s. no 1 (1966)- aPariscACAAd1966- aAvant la réunification (1990) le titre était : "Allemagnes d'aujourd'hui : revue française d'information sur les deux Allemagnes" aBimestriel 1966-1979 aTrimestriel 1980- 1tAllemagne d'aujourd'hui, Réalités allemandes,xISSN 0223-336310aAllemagnes d'aujourd'hui10aAllemagne d'aujourd'huib(1966) aAllemagne (République démocratique)xPériodiques aAllemagnexPériodiques a94002aAssociation pour la connaissance de l'Allemagne d'aujourd'huic(France) 3aFRbCCN0002-57124 uhttp://allemagne-aujourdhui.septentrion.com/ zIndex et résumés depuis 19991 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 bno 1 (jan-1966) -....cParisdMagasins/AnnexeeP 8° 12041 b1967-1968 ; 1968-1969cParisdMagasins/AnnexeeP Index 0222zTable analytique aZCAD aexempb201102 aGEO RA5.01 Allemagne aGEO RA5.03 Allemagne (RDA) aDEW 94300979nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000041001552100026001963260016002224300050002386060046002887120042003348560058003768560036004349550067004709550064005379720009006019910018006109920025006289920012006530000095134000009513420130319051044.01 a0175-9191 aFNSP415897 a0000095134 a19900101a19769999 ba0 ager aDE aaka 10aAllensbacher Jahrbuch der Demoskopie aMünchencSaurd1976- aIrrégulier 1aJahrbuch der öffentlichen Meinungx0075-2347 aOpinion publiqueyAllemagnexPériodiques02aInstitut für Demoskopie (Allensbach)4 uhttp://www.ifd-allensbach.de/Seiten/jahrb_inhalt.html zContenu : Sommaires depuis 19981 b(1978/1983) -no. 11 (2002)cParisdMagasins/AnnexeeP 8° 55071 b(1974/1976)-(1976/1977)cParisdMagasins/AnnexeeCOL8°3013 aZPAY aexempb201109 aGEO RA5.01 Allemagne aDEW 30300888cas0 2200265 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200007500148210001800223440003700241530002400278712004500302801003000347856014300377955007200520991001900592991001100611037462415000107904820130319051044.0 accn0115/110X a0001079048 a19830101b18891914 0frey0103 zz0 afre aFR ar aak 10aAlmanach de la paixfPublié par l'Association de la paix par le droit aParisc[s.n.] 1tAlmanach de la paix par le droit00aAlmanach de la paix02aAssociation de la paix par le droit4340 3aFRbAbesc20070402gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb32687258w/date.r=.langFRzAccès libre au texte intégral. Années 1912 et 1913 numérisée sur Gallica1 b(1889) -(1904) ; (1909) -(1917)cParisdMagasins/AnnexeeCOL8°3953 aPériobTP03 8 anumer000807nas 2200253 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002200163210003800185430004600223606004800269801001300317856014500330955004500475991003300520038718219000119470420130506130352.01 a1241-0799 a0001194704 a a18721919 fre 01 ba0 afre aFR a 0  ar aa z 0 10aAlmanach national aPariscBerger-Levraultd1872-1919 1tAlmanach impérial (1853), ISSN 1241-0780 aAlmanachs français‎z20e siècle2rameau 0aFRbFNSP4 uhttp://gallica.bnf.fr/ark:/12148/cb34454123j/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1872-1900)1 b1913cParisdMagasins/AnnexeeCOL8°0085 anumer0 (complément gallica)01169nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200001900163210002800182306024300210423005200453430003600505440004800541606005100589702004300640801001300683856013700696955004600833038704226000119470320130319051044.01 a1169-047X a0001194703 a a17009999 fre 01 ba0 afre aFR a 0  ar aa z 0 10aAlmanach royal aPariscHouryd1700-1792 aNouvelles adresses bibliographiques : Paris : chez la Veuve d'Houry, 1726-1745 ; Paris : chez la Veuve d'Houry et Le Breton, 1746-1750 ; Paris : Le Breton, 1751-1779 ; Paris : Laurent-Charles d'Houry, 1780-1786 ; Paris : Debure, 1786-1791 1aAlmanach royal (Éd. abrégée), ISSN 1958-6434 1tAlmanac (Paris), ISSN 1169-0461 1tAlmanach national de France, ISSN 1169-0488 aAlmanachs français‎z18e siècle‎2rameau 1aHourybLaurent d'f(1644-1725)‎4650 0aFRbFNSP4 uhttp://gallica.bnf.fr/ark:/12148/cb34454105m/date.r=.langFRzAccès libre au texte intégral. Texte intégral numérisé sur Gallica1 b1789cParisdMagasins/AnnexeeRCOL8°008501017cas0 2200337 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164110001600171200002700187210004100214326001200255606003900267606004500306607004600351801003000397801002300427802000700450856004200457856005400499955010700553972000900660992001000669039934276000106420620131105185105.01 a1157-8661 a070873305 accn1157-8661 aissn11578661 a0001064206 a19910411a19919999m y0frey0103 ba0 afre aFR aaf 10aAlternative libertaire aPariscAlternative libertaired1991- aMensuel aMouvement libertairexPériodiques aMouvements sociauxyFrancexPériodiques aFrancexConditions socialesxPériodiques 3aFRbAbesc20050324gAFNOR 3aFRbISSNc20030203 a074 uhttp://www.alternativelibertaire.org/ zContenu : sommaires et texte integral depuis 20031 bno. 125 ( jan-2004) -no. 168 (dec-2007) ; no. 178 (nov-2008) -....cParisdMagasins/AnnexeeP 4° 7171 aZPAY a320.501455nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004300139207003100182210003500213326001600248452004100264517003400305517002900339530003000368606003600398607007500434710003100509711006200540711007000602801002100672856023300693955007000926972000900996991001801005992004201023992001601065067270379000000750220140114170543.01 a0304-3754 aFNSP112658 a19900101a19759999 ba0 aeng aNL aaha 10aAlternativeseglobal, local, political 1aVol. 1, no. 1 (Mar. 1975)- aBoulder, Colo.cRiennerd1990- aTrimestriel 1ttAlternatives (Online)‎x2163-315010aAlternatives (Boulder, Colo.)10aAlternatives (Guildford)10aAlternativesb(Amsterdam) aScience politiquexPériodiques aPays en voie de developpementxPolitique et gouvernementxPériodiques02aWorld Order Models Project02aCentre for the Study of Developing Societiesc(New Delhi)02aInternational Peace Research Institute Meigakuc(Yokohama, Japon) 3aFRbCCN0304-37544 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=poh&jid=FXD&site=ehost-livezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1975) -....cParisdMagasins/AnnexeeP 8° 4017 aZSAB aexempb200301 aGEO RO Pays en voie de développement aDEW 320-32101638nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200010200154210004400256326001900300326002600319421006700345434003900412530004100451606005200492606003700544801002100581856019200602856010800794856010700902856010801009955006901117955006701186972000901253992001401262039397629000000751220130319051045.01 a0247-3739 aFNSP112673 a0000007512 a19900101a19809999 ba0 afre aFR aaga 10aAlternatives économiquesejournal d'information critique sur l'actualité économique et sociale aDijoncAlternatives économiquesd1980- aMensuelb1986- aBimestrielb1980-1985 1tAlternatives économiques. Hors-sérieb(Quétigny)x1252-4999 1aL'Economie en questionsx0221-130010aAlternatives économiquesbQuétigny aHistoire économiquez20e sièclexPériodiques aEconomie politiquexPériodiques 3aFRbCCN0247-37394 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/magazine-alternatives-economiques.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 47371 bno. 3 (mar/avr-1981) -....cParisdMagasins/AnnexeeP 4° 4737 aZPAY aDEW 330.901006nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154207002200198210004800220326001600268422005900284430005200343606005200395606003700447676001000484856004400494955006900538955006200607972000900669992001400678040226360000000952520130319051045.01 a1252-4999 aFNSP116887 a0000009525 a19900615a19889999 ba0 afre aFR aaha 00aAlternatives économiques.iHors-série 1a(1982, février)- aQuétignycAlternatives économiquesd1982- aTrimestriel 1tAlternatives économiquesb(Quétigny)xISSN 0247-3739 1aAlter éco l'Economie en questions. Hors série aHistoire économiquez20e sièclexPériodiques aEconomie politiquexPériodiques a330.94 uhttp://www.alternatives-economiques.fr/1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 330.91 bno 6 (avr-1988) -....cParisdMagasins/AnnexeeP 4° 5240 aZPAY aDEW 330.901563nls 2200325 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000057001502100129002072150048003362300038003843260011004223300311004333370039007445300042007836060048008257120039008737120066009128010013009788300008009918560225009999450013012240000580240000058024020130319051045.0 a0000580240 a a19979999 ba0 afre aFR az azka  avo 10aAlternatives économiquesb[Ressource électronique] aMontpelliercCentre régional de documentation pédagogique du Languedoc-RoussillonaDijoncAlternatives économiquesd1997- a1 disque optique numérique (CD-ROM)d12 cm aDonnées textuelles et graphiques aAnnuel aLe Cédérom rassemble les articles parus dans Alternatives économiques de janvier 1993 à août 2006, les numéros hors-série (41) et la revue trimestrielle L'Economie Politique de janvier 1999 à septembre 2006. Il contient aussi des graphiques, schémas et tableaux et un dictionnaire de définitions. aConfiguration requise : PC Pentium10aAlternatives économiques (Cédérom) aHistoire économiquez1990-2008xCédéroms02aAlternatives économiquesc(Paris)02aCentre régional de documentation pédagogiquec(Montpellier) 0aFRbFNSP amfo4 uhttp://ebiblio.sciences-po.fr/index.php?search=ok&selCategorie=-Default-&selTheme=-Default-&selTypeRess=2&catval=-Default-&themeval=-Default-&typeval=2zAccessible en réseau 27/30 rue St-Guillaume par la e-bibliothèque bCDR.010101397nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003300163210004700196326002200243326002300265326002600288421005800314606003200372606004400404606005700448676000800505801001300513856004800526856006700574856011100641856010800752955006700860955006300927972000900990992001200999061112216000044826620130319051045.01 a1634-6386 a0000448266 a a20029999k fre ba0 afre aFR a 0  ar aah z 0 10aAlternatives internationales aPariscAlternatives internationalesd2002- aTrimestrielb2006 aMensuelb2004-2005 aBimestrielb2002-2004 1tAlternatives internationales. Hors série,x1763-5357 aGéopolitiquexPériodiques aRelations internationalesxPériodiques aRelations économiques internationalesxPériodiques a327 0aFRbFNSP4 uhttp://www.alternatives-internationales.fr/ zContenu : sommaires et résumés depuis le no. 1, janvier 20054 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/magazine-alternatives-internationales.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bno. 1 (mar-2002) -....cParisdMagasins/AnnexeeP 4° 6910 aZPAY aDEW 32700965nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000310015421000530018532600160023860600310025460600310028560600480031680100210036485600470038585600990043295500590053197200090059099100180059999200220061799200120063903934861X000000751120130319051045.01 a0223-5498 aFNSP112672 a0000007511 a19900101a19739999 ba0 afre aFR aaha 10aAlternatives non violentes aSaint-EtiennecAlternatives non violentesd1973- aTrimestriel aDésarmementxPériodiques aNon-violencexPériodiques aMouvements pacifistesyFrancexPériodiques 3aFRbCCN0223-54984 uhttp://www.irnc.org/ANV/Archives/index.htm zContenu : Bibliographie intégrale des articles publiés dans la revue depuis 1973 (numéro 1)1 bno. 2 (1973) -....cParisdMagasins/AnnexeeP 8° 3527 aZCAD aexempb200911 aGEO RA4.06 France aDEW 30301051nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210006900175326001600244606003700260606004500297676001000342710003800352856004800390856006900438955006900507955006600576972000900642991001800651992004200669992001400711040209261000013565520130319051045.01 a1026-2253 aFNSP544581 a0000135655 a19940912a19949999 ba0 afre aFR aaha 10aAlternatives Sud aPariscHarmattanaLouvain-la-NeuvecCentre tricontinentald1994- aTrimestriel aEconomie politiquexPériodiques aDéveloppement économiquexPériodiques a338.902aCentre tricontinentalc(Belgique)4 uhttp://www.cetri.be/Exploreur4/Numeros.html zContenu : sommaires et résumés depuis le volume 1, no. 1, 19941 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 338.91 bvol. 1 no. 1 (1994) -....cParisdMagasins/AnnexeeP 8° 6059 aZPAY aexempb201203 aGEO RO Pays en voie de développement aDEW 338.900939nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002300139210002500162326001800187452004700205530002300252607006200275712009300337856007700430955007500507972000900582991001800591992002800609992001200637036306126000007199720131220131016.01 a1130-2887 aFNSP329768 a19900101a19899999 ba0 aspa aES aaia 10aAmerica latina hoy aMadridcSEPLAd1989- a3 n°s par an 1tAmérica Latina hoy (Internet),x2340-439600aAmerica latina hoy aAmérique latinexPolitique et gouvernementxPériodiques02aUniversidad complutense de MadridbSeminario de estudios políticos sobre Latinoamérica4 uhttp://campus.usal.es/revistas_trabajo/zAccès libre au texte intégral1 bno. 2 (nov-1991) -no 49 (aou-2008)cParisdMagasins/AnnexeeP 4° 6138 aZGRA aexempb201312 aGEO RD Amérique latine aDEW 98001510nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210003200182210006700214210006400281210003500345210003200380326001600412606003200428710004100460801002100501856009000522856010800612856010300720856010800823955007100931955009501002972000901097991001801106992001201124038661454000000804920130319051048.01 a0002-7294 aFNSP113863 a0000008049 a19900101a18889999 ba0 aeng aUS aaha 10aAmerican anthropologist aDivers éditeursd1888-1919 aMenasha, Wis.cAmerican Anthropological Associationd1920-2003 aBerkeley, Calif.cUniversity of California Pressd2004-2007 aMalden, Mass.cBlackwelld2008 aHoboken, N.J.cWileyd2008- aTrimestriel aAnthropologiexPériodiques02aAmerican Anthropological Association 3aFRbCCN0002-72944 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00027294.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=711456 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 97 no. 1 (mar-1995) -....cParisdMagasins/AnnexeeP 4° 64641 bvol. 50 no. 1 (jan/mar-1948) -vol. 96 no. 4 (dec-1994)cParisdMagasins/AnnexeeP 8° 0077 aZPAY aexempb201101 aDEW 30101523nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154207003100183210005900214326002500273326003900298606004900337606003700386676000800423710003400431801002100465856019500486856021600681955006700897955010200964972000901066991001801075992002301093992002101116992001201137013301578000000349720130708100708.01 a0002-8282 aFNSP102990 a0000003497 a19900101a19119999 ba0 aeng aUS aagu 10aAmerican economic review 1avol. 1, no. 1 (mar-1911) - aNashville, Tenn.cAmerican Economic Associationd1911- a7 fois par anb2011- aPériodicités diversesb1911-2010 aEconomie politiqueyEtats-UnisxPériodiques aEconomie politiquexPériodiques a33002aAmerican Economic Association 3aFRbCCN0002-8282 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00028282.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/direct.asp?db=bth&jid=AER&scope=sitezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3301 bvol. 1 no. 1 (mar-1911) -....cParisdMagasins/AnnexeeP 8° 0129wManquant : vol. 89, no 3, 1999 aZPAY aexempb201105 aGEO RC2 Etats-Unis aGEO RQ Universel aDEW 33001142nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154207002200181210005000203326001500253530005000268606003700318606004900355710002600404801002100430856012800451856010800579955009000687972000900777991001800786992001200804039654966000000816620130319051049.01 a0569-4345 aFNSP114217 a0000008166 a19900101a19609999 ba0 aeng aUS aaja 14aThe American Economist 1aVol.4 (1960,May)- aTuscaloosa, AlacOmicron Delta Epsilond1960- aSemestriel14aThe American Economistb(New York, N.Y. 1960) aEconomie politiquexPériodiques aEconomie politiqueyEtats-UnisxPériodiques02aOmicron Delta Epsilon 3aFRbCCN0569-43454 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=AEC&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 14 no. 2 (oct-1970) -vol. 52 no.2 (aut-2008)cParisdMagasins/AnnexeeP 8° 2913 aZPAY aexempb201004 aDEW 33001236nls 2200337 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000112001642100065002762300005003413000058003463260016004043360056004203370071004766060040005477100046005878010013006338560090006468560108007369550005008449920033008499920016008820000801859000080185920130319051049.01 a0002-8312 a0000801859 a a19649999k fre 01 ba0 aeng aUS az aah z  adr 10aAmerican educational research journalb[Ressource électronique]fAmerican Educational Research Association aWashingtoncAmerican Educational Research Associationd1964- a aTexte intégral depuis le vol. 1, n° 1, January 1964 aTrimestriel aDonnées textuelles accessibles uniquement en ligne aTéléchargement de fichiers TIFF, PDF (recommandé) ou PostScript aEducationyEtats-UnisxPériodiques02aAmerican Educational Research Association 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00028312.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RS Sans aspect régional aDEW 370-37900988nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000052001502100066002023000098002683260016003663360058003823370066004404520038005067120034005448010013005788560090005919550005006819920012006860000528344000052834420130319051049.0 a0000528344 a a19749999k fre 01 ba0 aeng aUS az aah z  adr 10aAmerican ethnologistb[Ressource électronique] aWashington, D.C.cAmerican Anthropological Associationd1974- aAccès au texte intégral (réservé aux sites de Sciences-Po) jusqu'aux 7 dernières années aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou télédéchargement 1tAmerican ethnologistx(0094-0496)02aAmerican Ethnological Society 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00940496.html1 r aDEW 30101636cas0 2200421 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200003800174207003200212210003900244303006000283326001500343430005000358530004700408606004400455607005300499710006400552801003000616801002300646801003000669802000700699856010300706856006700809856010900876856010800985955007101093972000901164992001201173992002901185090868269000107577220130319051049.01 a1080-3920 aissn10803920 a0001075772 a20050923a19949999k y1frey0103 ba0 aeng aUS ay 0  aaga 0uu 10aAmerican foreign policy interests 0aVol. 16, no. 1 (Feb. 1994)- aNew York, NYcThe Committeed1994- aNotice réd. d'après le N. 1, vol. 27 (février 2005)- aBimestriel 1tAmerican foreign policy newsletterx0738-316910aAmerican foreign policy interestsb(Print) aRelations internationalesxPériodiques aEtats-UnisxRelations extérieuresxPériodiques02aNational Committee on American Foreign Policyc(Etats-Unis) 3aFRbAbesc20081202gAFNOR 3aFRbISSNc20051021 3aFRbAbesc20051205gAFNOR a014 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713768419 zContenu : sommaires et résumés depuis le vol. 23, n°1, 20014 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713768419db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 28 no. 1 (fev-2006) -....cParisdMagasins/AnnexeeP 4° 7183 aZSAB aDEW 327 aGEO RC Amérique du Nord01290nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006800154210005500222326001800277606002700295607003900322710003600361801002100397856003200418856004500450856009000495856010800585955006500693955009100758957001700849972000900866991001800875992002300893992001200916038662248000005198420130319051049.01 a0002-8762 aFNSP250714 a0000051984 a19900101a18959999 ba0 aeng aUS aaza 14aThe American historical reviewfAmerican Historical Association aWashingtoncAmerican Historical Associationd1895- a5 n°s par an aHistoirexPériodiques aEtats-UnisxHistoirexPériodiques02aAmerican Historical Association 3aFRbCCN0002-87624 uhttp://www.indiana.edu/ahr/ zContenu : sommaires depuis février 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00028762.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 54 (oct-1948) -....cParisdMagasins/AnnexeeP 8° 00691 bvol. 17 no. 2 (jan-1912) -vol. 26 no. 1 (oct-1920)cParisdMagasins/AnnexeeP 4° 03151 eP Index 0111 aZPAY aexempb201011 aGEO RC2 Etats-Unis aDEW 90901079nas0 22003493 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200002600174207003300200210005000233326001500283452003100298606003700329606004400366607004900410801003000459801002300489802000700512856007000519856004900589955007000638972000900708992001200717103612920000098781420140115124148.01 a1556-5777 aissn15565777 a0000987814 a20060616a20059999 y0frey0103 ba0 aeng aUS a 0  aagb 0yy 14aThe American interest 0aVol. 1, no. 1 (autumn 2005)- aWashington, DCcAmerican Interest LLCdc2005- aBimestriel 0tAmerican interest (online) aVie intellectuellexPériodiques aRelations internationalesxPériodiques aEtats-UnisxVie intellectuellexPériodiques 3aFRbAbesc20060616gAFNOR 3aFRbISSNc20060601 a014 uhttp://www.the-american-interest.com/ai2/article.cfm?Id=170&MId=5 zContient : sommaires et résumés d'articles1 bvol. 1 no. 1 (aut-2005) -....cParisdMagasins/AnnexeeP 4° 7114 aZPAY aDEW 00101583nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009400154207002800248210007000276326001700346430004100363606004200404606003000446606004900476710004800525801002100573856012800594856010800722856009000830856010800920955008301028972000901111991001701120992002301137992002101160992001601181013301705000000818120130319051049.01 a0002-9092 aFNSP114235 a0000008181 a19900101a19689999 ba0 aeng aUS aaga 10aAmerican journal of agricultural economicsf[American Agricultural Economics Association] 1aVol. 50, no. 1 (1968) - aMenasha, Wis.cAmerican Agricultural Economics Associationd1968- a5 nos par an 1aJournal of farm economicsx1071-1031 aAgricultureyEtats-UnisxPériodiques aAgriculturexPériodiques aPolitique agricoleyEtats-UnisxPériodiques02aAmerican Agricultural Economics Association 3aFRbCCN0002-90924 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=AJA&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00029092.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 50 no. 1 (1968) -vol. 89 no. 5 (2007)cParisdMagasins/AnnexeeP 8° 0944 aZPAY aexemp$201101 aGEO RC2 Etats-Unis aGEO RQ Universel aDEW 338.1-301543nls 2200385 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000108001642070035002722100075003072300005003823000065003873260016004523360056004683370071005246060033005956060036006287100040006648010013007048560090007178560108008078560077009158560115009929550005011079920033011129920012011450000802734000080273420130319051049.01 a0002-919X a0000802734 a a19529999k fre 01 ba0 aeng aUS az aah z  adr 14aThe American journal of comparative lawb[Ressource électronique]fAmerican Society of Comparative Law 1aN°1/2 ( Winter/Spring, 1952)- aBerkeleycAmerican Association for the Comparative Study of lawd1952- a aTexte intégral depuis le vol. 1, n°1/2, Winter/Spring 1952 aTrimestriel aDonnées textuelles accessibles uniquement en ligne aTéléchargement de fichiers TIFF, PDF (recommandé) ou PostScript aDroit comparéxPériodiques aDroityEtats-UnisxPériodiques02aAmerican Society of Comparative Law 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0002919x.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.comparativelaw.org/ zContenu : recherche par auteur, titre, volume, année... sur les index cumulatifs des vol. 1 à 52 (1952-2004)1 r aGEO RS Sans aspect régional aDEW 34001524nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005200154207002600206210006900232210003600301300005000337326001700387517000900404606004100413606004900454801002100503856009000524856010800614856012800722856010800850955010600958972000901064991001801073992002301091992001201114992001201126038662477000000818720130319051049.01 a0002-9246 aFNSP114241 a0000008187 a19900101a19419999 ba0 aeng aUS aaha 14aThe American journal of economics and sociology 1aVol. 1, no. 1 (1941)- aNew YorkcAmerican Journal of Economics and Sociologyd1941-1999 aMalden, Mass.cBlackwelld2000- aUn numéro à thème par an à partir de 1997 a5 nos par an10aAJES aSociologieyEtats-UnisxPériodiques aEconomie politiqueyEtats-UnisxPériodiques 3aFRbCCN0002-92464 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00029246.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=AES&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 8 no. 1 (oct-1948) -....cParisdMagasins/AnnexeeP 8° 0376zManquant: vol. 16 no. 1 (oct-1956) aZSAB aexempb201101 aGEO RC2 Etats-Unis aDEW 301 aDEW 33001396nls 2200373 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000084001642070035002482100041002832300005003243000059003293260016003883360056004043370071004606060028005317100051005598010013006108560090006238560108007138560042008218560105008639550005009689920033009739920016010060000802804000080280420130319051049.01 a0195-6744 a0000802804 a a19799999k fre 01 ba0 aeng aUS az aah z  adr 10aAmerican journal of educationb[Ressource électronique]fUniversity of Chicago 1aVol. 88, N°1 (November 1979)- aChicagocUniversity of Chicago Press a aTexte intégral depuis le vol. 88, n°1, November 1979 aTrimestriel aDonnées textuelles accessibles uniquement en ligne aTéléchargement de fichiers TIFF, PDF (recommandé) ou PostScript aEducationxPériodiques02aUniversity of ChicagobDepartment of Education 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01956744.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.journals.uchicago.edu/AJE/ zContenu : sommaires à partir du vol. 104, n° 1, November 1995 jusqu'au vol. 109, n°4, August 20011 r aGEO RS Sans aspect régional aDEW 370-37901252nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004200154210003400196326001600230421007500246606003800321606005000359710004200409801002100451856003500472856007500507856009000582856010800672955009000780972000900870992002300879992001200902038662574000000841220130417183536.01 a0002-9300 aFNSP114672 a0000008412 a19900101a19079999 ba0 aeng aUS aaha 10aAmerican journal of international law aWashington, D.C.cASILd1907- aTrimestriel 1aAmerican journal of international law. Supplement : official documents aDroit internationalxPériodiques aDroit internationalyEtats-UnisxPériodiques02aAmerican Society of International Law 3aFRbCCN0002-93004 uhttp://www.asil.org/Abtajo.htm zContenu : sommaires et résumés depuis le vol. 91, n°1, janvier 19974 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00029300.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1907) -....cParisdMagasins/AnnexeeP 4° 0012wManquant: no. 3 (1989) aZSAB aGEO RC2 Etats-Unis aDEW 34101440nls 2200361 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000109001642070040002732100107003133000057004203260015004773360056004923370071005484440056006196060031006756060048007067100059007548010013008138560090008268560108009169550005010249920033010299920016010620000796022000079602220130319051049.01 a1547-6154 a0000796022 a a19301932k fre 01 ba0 aeng aUS az aag z  adr 14aThe American journal of police scienceb[Ressource électronique]fScientific Crime Detection Laboratory 1aVol. 1, n°1, (January 1930) - 1932 aChicagocPrinted for the Scientific Crime Detection Laboratory by Northwestern University Pressd1930- aTexte intégral depuis le vol. 1, n°1, January 1930 aBimestriel aDonnées textuelles accessibles uniquement en ligne aTéléchargement de fichiers TIFF, PDF (recommandé) ou PostScript 1tJournal of Criminal Law and Criminology (1931-1951) aCriminologiexPériodiques aPolicexRechercheyEtats-UnisxPériodiques02aScientific Crime Detection Laboratoryc(Chicago, III.) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/15476154.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RS Sans aspect régional aDEW 364-36501581nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004200154210006000196210005500256210006000311210003600371326001600407430005700423517000900480606003600489606004800525710005600573801002100629856005300650856005000703856009000753856010800843955006700951955008701018972000901105991001801114992002301132992001601155038895846000000842620130319051049.01 a0092-5853 aFNSP114689 a0000008426 a19900101a19739999 ba0 aeng aUS aaha 10aAmerican journal of political science aDetroit, Mich.cWayne State University Pressd1973-1977 aAustin, Tex.cUniversity of Texas Pressd1978-1994 aMadison, Wis.cUniversity of Wisconsin Pressd1995-2002 aMalden, Mass.cBlackwelld2003- aTrimestriel 1aMidwest journal of political sciencexISSN 0026-339710aAJPS aScience politiquexPériodiques aScience politiqueyEtats-UnisxPériodiques02aMidwest Political Science Associationc(Etats-Unis) 3aFRbCCN0092-58534 uhttp://psweb.sbs.ohio-state.edu/ajps/content.htm zContenu : sommaires ; résumés ; depuis 19954 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00925853.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 44 no. 1 (2000) -....cParisdMagasins/AnnexeeP 4° 68521 bvol. 17 no. 1 (fev-1973) -vol. 43 no. 4 (1999)cParisdMagasins/AnnexeeP 8° 1632 aZPAY aexempb201102 aGEO RC2 Etats-Unis aDEW 320-32101305nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154207002900188210005400217326001500271517000800286606004100294606002900335710002600364801002100390856012800411856010800539856009000647856010800737955007100845972000900916991001800925992001200943038662914000000844120131025111831.01 a0002-9602 aFNSP114706 a0000008441 a19900101a18959999 ba0 aeng aUS aaga 10aAmerican journal of sociology 1avol. 1 no. 1 (jul-1895)- aChicago, Ill.cUniversity of Chicago Pressd1895- aBimestriel10aAJS aSociologieyEtats-UnisxPériodiques aSociologiexPériodiques02aUniversity of Chicago 3aFRbCCN0002-96024 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=AJS&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00029602.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 32 no. 4 (jan-1927) -....cParisdMagasins/AnnexeeP 8° 0062 aZPAY aexempb201106 aDEW 30101873nas 2200433 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000820015421000740023621000480031032600160035860600360037460600480041060700560045867600080051471000430052280100210056585600900058685601080067685601010078485601080088595500670099395500690106095500730112995500830120295500670128597200090135299100180136199200230137999200210140299200160142301330173X000000321720131219154757.01 a0003-0554 aFNSP102551 a0000003217 a19900101a19069999 ba0 aeng aUS aahu 14aThe American political science reviewfAmerican Political Science Association aWashington, D.C.cAmerican Political Science Association,$d1906-2001 aNew YorkcCambridge University Pressd2002- aTrimestriel aScience politiquexPériodiques aScience politiqueyEtats-UnisxPériodiques aEtats-UnisxPolitique et gouvernementxPériodiques a32002aAmerican Political Science Association 3aFRbCCN0003-05544 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00030554.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=108860 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bL'année en courscParisdBibliothèque de rechercheeP 4° 63131 bvol. 1 no. 1 (1906) -vol. 15 no. 1 (1920)cParisdAnnexeeP 4° 06931 bvol. 15 no. 2 (1920) -vol. 85 no. 4 (1991)cParisdMagasins/AnnexeeP 8° 00381 bvol. 86 no. 1 (1992) -....cParisdMagasins/AnnexeeP 4° 6313 aZCAD aexempb201011 aGEO RC2 Etats-Unis aGEO RQ Universel aDEW 320-32101100nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003100163207003300194210003500227326001500262430004400277606005300321607005600374801001300430856010800443856010800551955007100659972000900730992002300739992001200762058363688000062204320130319051050.01 a1532-673X a0000622043 a a20019999 fre 01 ba0 aeng aUS a 0  ar aag z 0 10aAmerican politics research 1aVol.29, n°1 (January 2001)- aThousand Oaks, CAcSaged2001- aBimestriel 1tAmerican politics quarterly,x0044-7803 aSociologie électoraleyEtats-UnisxPériodiques aEtats-UnisxPolitique et gouvernementxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 29 no. 1 (jan-2001) -....cParisdMagasins/AnnexeeP 8° 3204 aZSAB aGEO RC2 Etats-Unis aDEW 97300803nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002600139210003900165326002200204326003900226607005600265856006600321955006400387972000900451991001800460992002300478992001200501992001200513040270955000018384720140115164633.01 a1049-7285 aFNSP682843 a19900101a19909999 ba0 aeng aUS aafa 14aThe American prospect aCambridge, MacNew prospectd1990- aBimestrielb2013- apériodicités diversesb1990-2011 aEtats-UnisxPolitique et gouvernementxPériodiques4 uhttp://prospect.org/magazinezAccès libre au texte intégral1 bno. 21 (pri-1995) -....cParisdMagasins/AnnexeeP 4° 6589 aZCAD aexempb201401 aGEO RC2 Etats-Unis aDEW 973 aDEW 32401322nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210008200198326001600280430003200296607002500328710005800353801002100411856004100432856007100473856010900544955007000653957011700723957007200840972000900912991002000921992001900941992001200960039333043000000848220130319051051.01 a0272-2011 aFNSP114750 a0000008482 a19900101a19739999 ba0 aeng aUS aahu 14aThe American review of Canadian studies aaBellingham, WAcAssociation for Canadian Studies in the United Statesd1973- aTrimestriel 1aACSUS newsletterx0193-6093 aCanadaxPériodiques02aAssociation for Canadian Studies in the United States 3aFRbCCN0272-20114 uhttp://www.acsus.org//pubs/index.htm zContenu : sommaires depuis le volume 24, numéro 1, printemps 19944 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t906519462db=all1 bvol. 9 no. 2 (aut-1979) -....cParisdMagasins/AnnexeeP 8° 43581 bvol. 19 (1989) -vol. 27 (1997)cParisdMagasins/Annexe :zse trouve dans le vol. 27 no. 4 (hiv-1997) de la revue1 bvol. 1 (1971) -vol. 18 (1988)cParisdMagasins/AnnexeeP Index 0641 aZCAD aexempb20102010 aGEO RC1 Canada aDEW 97101381nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004500154210006800199326002200267326002700289430005600316517000900372607004500381801002100426856007000447856010800517856010800625856010800733955012400841972000900965991001800974992002300992992001601015039336875000000849120130319051051.01 a0275-0740 aFNSP114769 a0000008491 a19900101a19819999 ba0 aeng aUS aagu 10aAmerican review of public administration aSt. Louis, Mo.cAmerican review of public administrationd1981- aBimestrielb2009- aTrimestrielb1981-2008 1aMidwest review of public administration,x0026-346X10aARPA aEtats-UnisxAdministrationxPériodiques 3aFRbCCN0275-07404 uhttps://acces-distant.sciences-po.fr/fork?http://arp.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 15 no. 1 (pri-1981) -vol. 33 no. 1 (mar-2003) ; vol. 37 no. 1 (mar-2007) -….cParisdMagasins/AnnexeeP 8° 2683 aZSAB aexempb201105 aGEO RC2 Etats-Unis aDEW 350-35400862nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210004400179326001600223606004800239801002100287856003900308856011700347955007600464972000900540992002300549992001200572038663643000000854020130319051051.01 a0003-0937 aFNSP114940 a0000008540 a19900101a19329999 ba0 aeng aUS aaha 14aThe American scholar aWashington, D.C.cPhi Beta Kappad1932- aTrimestriel aSciences socialesyEtats-UnisxPériodiques 3aFRbCCN0003-09374 uhttp://www.theamericanscholar.org/ zContenu : accès aux sommaires depuis 2004 et accès à une sélection d'articles en texte intégral depuis 20061 bvol. 28 no. 1 (hiv-1958/1959) -....cParisdMagasins/AnnexeeP 8° 1708 aZPAY aGEO RC2 Etats-Unis aDEW 30001463nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210006300187326001500250517000800265606002900273710003800302801002100340856012800361856010800489856009000597856010800687856010100795856010800896955007001004972000901074991001801083992001201101038663783000000854520130319051051.01 a0003-1224 aFNSP114945 a0000008545 a19900101a19369999 ba0 aeng aUS aaga 10aAmerican sociological review aWashington, D.C.cAmerican Sociological Associationd1936- aBimestriel10aASR aSociologiexPériodiques02aAmerican Sociological Association 3aFRbCCN0003-12244 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=ASC&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00031224.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=111197 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (fev-1936) -....cParisdMagasins/AnnexeeP 8° 0063 aZPAY aexempb201011 aDEW 30101471nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210006700183210007100250210003000321326001600351606004100367606002900408801002100437830011800458856012800576856010800704955008100812955007300893955011100966972000901077992002301086992001201109038663791000000854820130319051051.01 a0003-1232 aFNSP114957 a0000008548 a19900101a19659999 ba0 aeng aUS aahu 14aThe American sociologist aWashington, D.C.cAmerican Sociological Associationd1965-1982 aNew Brunswick, N.J.cTransaction Periodicals Consortiumd1987-2006 aNew YorkcSpringerd2007- aTrimestriel aSociologieyEtats-UnisxPériodiques aSociologiexPériodiques 3aFRbCCN0003-1232 ales années 1971/1982 sont indexées dans Cumulative index of sociology journals

désherbé en 20084 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=ACN&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1965) -vol. 6 no. 4 (1971)cParisdMagasins/AnnexeeP 4° 28651 bvol. 7 no. 1 (1972) -vol. 7 no. 10 (1972)cParisdAnnexeeP F° 03551 bvol. 8 no. 1 (1973) -vol. 37 no. 2 (2006) ; vol. 41 no. 1 (2010) -....cParisdMagasins/AnnexeeP 4° 2865 aZPAY aGEO RC2 Etats-Unis aDEW 30101012nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000057001502100056002072300005002633000098002683260016003663360058003823370066004404520043005067120037005498010013005868560090005999550005006899920016006940000532965000053296520130319051051.0 a0000532965 a a19479999k fre 01 ba0 aeng aUS az aah z  adr 14aThe American Statisticianb[Ressource électronique] aWashingtoncAmerican Statistical Associationd1947- a aAccès au texte intégral (réservé aux sites de Sciences-Po) jusqu'aux 5 dernières années aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou télédéchargement 1tThe American Statisticianx(0003-1305)02aAmerican Statistical Association 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00031305.html1 r aDEW 310-31901242cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157110001600175200009800191210005000289326001600339430005300355434004600408530003300454607002900487607003900516712006300555801003000618801003000648801002300678802000700701856003300708955007100741972000900812992002300821992001200844038752727000095513920130319051051.01 a0026-3079 accn0026-3079 aissn00263079 a0000955139 a19740301a19719999k y1frey0103 ba0 aeng aUS a 0  aaha 0uu 10aAmerican studiesfsponsored by University of KansasfMid-America American Studies Association aLawrence, Kan.cUniversity of Kansasd[1971]- aTrimestriel 1tMidcontinent American studies journalx0544-0335 1tAmerican studies internationalx0883-105X10aAmerican studiesb(Lawrence) aEtats-UnisxPériodiques aEtats-UnisxHistoirexPériodiques02aMid-America American Studies Associationc(Lawrence, Kan.) 3aFRbAbesc20051124gAFNOR 3aFRbAbesc20051124gAFNOR 3aFRbISSNc20051021 a014 uhttp://www2.ku.edu/amerstud/1 avol. 46 no. 1 (mar-2005) -....cParisdMagasins/AnnexeeP 8° 5964 aZPAY aGEO RC2 Etats-Unis aDEW 97300977nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000170013921000270015632600170018353000280020060700410022871000680026980100210033785601210035895501430047997200090062299100180063199200220064999200160067103882227X000005198120130705130530.01 a0044-8141 aFNSP250709 a19900101a19639999 ba0 aita aIT aaia 10aAmministrare aBolognacMulinod1963- a3 nos par an 0aAmministrareb(Bologna) aItaliexAdministrationxPériodiques02aIstituto per la scienza dell'amministrazione pubblicac(Italie) 3aFRbCCN0044-81414 uhttp://www.mulino.it/edizioni/riviste/scheda_rivista.php?issn=0044-8141zAccès libre au sommaire du dernier numéro1 bno. 1 (jun-1963) -no. 40 (dec-1972) ; no. 1 (jan-1975) -no 3/4 (jul/dec-1979) ; no. 1 (avr-1986) -....cParisdMagasins/AnnexeeP 8° 2052 aZCAD aexempb200908 aGEO RA6.03 Italie aDEW 350-35401284cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052100004100069101001300110102000700123105001800130106000600148110001600154200007300170207001700243210005000260300003400310326001100344452006300355510005700418530004300475531003300518606004700551711004800598801003000646801002300676802000700699856007300706955005200779972000900831992001600840992004200856104797444000124763320131128135044.0 a1845-6707 aissn18456707 a20050922a20059999k y0frey50 ba0 ascraeng aHR ay 0  ar aakahh 0uu 10aAnali Hrvatskog politološkog društvafHrvatsko politolosko drustvo 0aGod.1(2004)- aZagrebcHrvatsko politološko društvod2005- aTexte en croate et en anglais aAnnuel 1tAnali Hrvatskog politološkog društva (Online)x1847-529910aAnnals of the Croatian Political Science Association00aAnali Hrvatskog politološkog društva 0aAnali Hrvat. politol. druš. aSociologie politiquexPériodiques2rameau02aHrvatsko politolosko drustvoc(Zagreb)4070 3aFRbAbesc20130903gAFNOR 3aFRbISSNc20100412 a304 uhttp://hrcak.srce.hr/analihpdzAccès au texte intégral depuis 20041 b(2011)-....cParisdMagasins/AnnexeeP 8° 7213 aZSAB aDEW 320-321 aGEO RA8.23 Croatie (depuis 1991-1992)01278nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008900154210005000243326001600293607002700309710004700336801002100383856006100404856005500465856012800520856010800648955006600756957008300822972000900905992002400914992001400938038664348000005197620140107173557.01 a0003-2573 aFNSP250700 a0000051976 a19900101a19639999 ba0 apor aPT aaha 10aAnálise socialeRevista do Instituto de Ciências Sociais da Universidade de Lisboa aLisboacInstituto de ciências sociaisd1963- aTrimestriel aPortugalxPériodiques02aInstituto de ciências sociaisc(Lisbonne) 3aFRbCCN0003-25734 uhttp://www.ics.ul.pt/publicacoes/analisesocial/index.htm zContenu : sommaires depuis le volume 1, n°1, 19634 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=KZ9&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1963) -....cParisdMagasins/AnnexeeP 8° 15331 b(1963) -(1999)zcet index se trouve dans le vol. 34, no. 150, 1999 de la revue aZSAB aGEO RA6.01 Portugal aDEW 946.900952nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000067001502100041002172300024002583260012002826060044002946060046003387100080003848010013004648560080004778560055005579550005006129920012006179920021006290001166220000116622020130319051053.0 a0001166220 a a20029999k fre 01 ba0 aspa aES ar aaf z  adr 10aAnálisis del Real Instituto Elcanob[Ressource électronique] aMadridcReal Instituto Elcanod2002- aRevue électronique amensuel aRelations internationalesxPériodiques aCoopération internationalexPériodiques02aReal instituto Elcano de estudios internacionales y estratégicosc(Madrid) 0aFRbFNSP4 uhttp://www.realinstitutoelcano.org/wps/portal/rielcano/Pub_AnalisisRIElcano zContenu : texte intégral des articles depuis 20021 r aDEW 327 aGEO RQ Universel01271nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000085001552100026002403260018002665300032002846060046003166060054003626060036004167120077004528560087005298560069006169550072006859570099007579720009008569920024008659920028008899920016009170000009577000000957720130319051053.01 a0121-4705 aFNSP117004 a0000009577 a19900615a19879999 ba0 aspa aCO aaia 10aAnalisis politicofInstituto de estudios políticos y relaciones internacionales aBogotácIEPRId1987- a3 n°s par an10aAnalisis politicob(Bogota) aScience politiqueyColombiexPériodiques aScience politiqueyAmérique latinexPériodiques aScience politiquexPériodiques02aInstituto de estudios políticos y relaciones internacionalesc(Bogotá)4 uhttp://www.scielo.org.co/scielo.php?script=sci_serial&pid=0121-4705&lng=pt&nrm=iso zContenu : accès libre au texte intégral depuis 2005 via Scielo1 bno. 1 (1987) -no. 42 (jan-2001)cParisdMagasins/AnnexeeP 4° 56851 bno. 1 (1987) -no. 8 (1989) ; no. 1 (1987) -no. 25 (1995)cParisdMagasins/AnnexeeP Index 0646 aZSAB aGEO RD4.16 Colombie aGEO RD Amérique latine aDEW 320-32101414nas 2200325 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200022600148210002300374326001100397430005000408452006200458530004000520606004400560606005200604710006500656801001300721856021700734955005500951972000901006992005701015992001601072048884553000065374120131220162405.01 a1607-1328 a a19989999 fre 01 ba0 afre aFR a 0  ar aak z 0 10aAnalyse des politiques d'éducationfOrganisation de coopération et de développement économiques, Centre pour la recherche et l'innovation dans l'enseignementCentre pour la recherche et l'innovation dans l'enseignement aPariscOCDEd1998- aAnnuel 1tAnalyse des politiques éducativesx1560-4810 1tAnalyse des politiques d'éducation (En ligne)x1999-152500aAnalyse des politiques d'éducation aEducationyPays de l'OCDExPériodiques aEducation et EtatyPays de l'OCDExPériodiques02aCentre pour la recherche et l'innovation dans l'enseignement 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://lysander.sourceocde.org/vl=392424/cl=26/nw=1/rpsv/home.htmzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(2001) -(2003)cParisdMagasins/AnnexeeP 4° 7042 aZPAY aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 370-37901466cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200015100180210002100331215001000352422006300362517007200425530006200497801003000559830000900589856020900598856020900807955009801016991001501114991001101129036869694000112548420130319051053.0 a2021-0515 accn0123/5982 a0001125484 a19830101b184018 m c0frey0103 ba0 afre aFR ay 0  ar aakazz 0zz 10aAnalyse des voeux des Conseils généraux de départementesur divers objets d'administration et d'utilité publique, soit locale, soit générale aPariscP. Dupont d23 cm 1tBulletin officiel du Ministère de l'intérieurx0151-078910aAnalyse des voeux émis par les Conseils généraux de département00aAnalyse des voeux des Conseils généraux de département 3aFRbAbesc20071207gAFNOR asdy04 uhttp://books.google.fr/books?id=29tCAAAAcAAJ&dq=%22Analyse%20des%20voeux%22&hl=fr&pg=PR1#v=onepage&q=%22Analyse%20des%20voeux%22&f=falsezAccès libre au texte intégral. 1841 numérisé sur Google Livres4 uhttp://books.google.fr/books?id=isTK1ZdFbOcC&dq=%22Analyse%20des%20voeux%22&hl=fr&pg=PR1#v=onepage&q=%22Analyse%20des%20voeux%22&f=falsezAccès libre au texte intégral. 1845 numérisé sur Google Livres1 b(1868) ; (1871) -(1874) ; (1878) -(1879) ; (1882) -(1890)cParisdMagasins/AnnexeeCOL8°0616 aPériobTZ anumer001017nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200010500139207002300244210009800267326001700365530003900382607005000421710010800471801002100579856002300600955005900623972000900682992002200691992001400713039659372000000852420130930151157.01 a0755-3471 aFNSP114881 a19900101a19829999 ba0 afre aFR aaia 10aAnalyses et documents économiquesfCentre confédéral d'études économiques et sociales de la CGT 1ano. 1 (juin-1982)- aCentre confédéral d'études économiques de la Confédération générale du travaild1982- a3 nos par an10aAnalyses et documents économiques aFrancexConditions économiquesxPériodiques02aConfédération générale du travailc(France)bCentre confédéral d'études économiques et sociales 3aFRbCCN0755-34714 uhttp://www.cgt.fr/1 bno. 1 (1982) -....cParisdMagasins/AnnexeeP 4° 4788 aZPAY aGEO RA4.06 France aDEW 330.901404cas0 2200397 450 001001000000002001100010005001700021011001400038035002000052035001700072100004100089101000800130102000700138105001800145106000600163110001600169200004800185207002600233210004200259300009200301326001100393452006900404512000900473530004800482606004500530606004500575606004600620710007600666801001300742802000700755856012600762955008100888972000900969992001200978992001600990076862186000069140820130828104257.01 a1529-7489 a(OCoLC)43877218 aissn15297489 a20000630a20019999k y0frey50 ba0 aeng aUS ay 0  ar azka 0uu 10aAnalyses of social issues and public policy 0aVol. 1, no. 1 (2001)- aMalden, Mass.cBlackwell Publ.d2001- a2012, dernière édition papier, voir ensuite uniquement en version en ligne via Wiley. aAnnuel 1tAnalyses of social issues and public policy (Online),x1530-241510aASAP00aAnalyses of social issues and public policy aPolitique publiquexPériodiques2rameau aProblèmes sociauxxPériodiques2rameau aPsychologie socialexPériodiques2rameau02aSociety for the Psychological Study of Social Issuesc(Etats-Unis)4070 0aFRbFNSP a014 uhttp://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1530-2415zAccès libre au texte intégral à partir du vol. 1, 20011 bvol. 2 no. 1 (2002) -vol.12 no. 6 (2012)cParisdMagasins/annexeeP 8° 6776 aZGRA aDEW 300 aDEW 320-32101056nas0 2200337 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109106000600127110001600133200004600149210002400195301005100219301004300270326001500313530002100328606003600349606003600385607002600421710005600447801003000503856004700533856003600580955007000616992002000686992001200706121408159000113057920130319051056.0 a0001130579 a20080212a20049999k y0frey0103 ba0 aspa aMX ay  ar aaju 10aAndamioseRevista de investigacion social aMexicocUCAMd2004- a1870-0063 : ISSN mentionné sur la publication aDemande de numérotation ISSN en cours aSemestriel10aAndamios$eMexico aSciences socialesxPériodiques aSciences humainesxPériodiques aMexiquexPériodiques02aColegio de humanidades y ciencas socialesc(Mexico) 3aFRbAbesc20080212gAFNOR4 uhttp://www.uacm.edu.mx/andamios/index.html zAccès libre au texte intégral1 bvol. 1 no. 1 (aut-2004) -....cParisdMagasins/AnnexeeP 8° 6999 aGEO RD1 Mexique aDEW 30001658nas 2200445 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005100154207004100205210002800246210009200274326002300366326002600389430004900415517004200464517001600506517001600522530001900538606002700557676000800584710005900592801002100651856002600672856006500698856008700763856010800850955006600958955006601024957009201090972000901182992001201191992000901203039569667000000368420130523093946.01 a0395-2649 aFNSP103640 a0000003684 a19900101a19469999 ba0 afre aFR aagu 10aAnnaleseéconomies, sociétés, civilisations 1a1ère année, no 1 (jan-mars 1946) - aPariscColind1946-1997 aaPariscÉd. de l'École des hautes études en sciences socialescdiff. A. Colind1998- aTrimestrielb2011- aBimestrielb1998-2010 1aAnnales d'histoire sociale (1945)x1243-258X10aAnnales : histoire, sciences sociales10aAnnales HSS10aAnnales ESC 0aAnnalesbParis aHistoirexPériodiques a90902aEcole des hautes études en sciences socialesc(Paris) 3aFRbCCN0395-26494 uhttp://www.persee.fr/ zAccès libre au texte intégral via Persée de 1945 à 2002.4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-annales.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9091 bvol. 1 no. 1 (1946) -....cParisdMagasins/AnnexeeP 8° 00931 b(1929) -(1948) ; (1949) -(1968)cParisdMagasins/AnnexeeP Index 0037zTable analytique aZPAY aDEW 909 aPBUL01652cas0 2200409 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102106000600109110001600115200009800131207003200229210002800261301005500289302004000344303004800384304003700432305005800469305008100527326002900608447005500637447003600692451005500728517004800783530002700831700002400858702002800882710002600910801003000936856014100966955008201107991002001189991003301209069186375000109511120131015172755.0 a0001095111 a20021218b19001949m y0frey0103 ba0 afre aFR ar acay 14aLes Annales ColonialesfOrgane de la France coloniale modernefMarcel Ruedel, L.-G. Thébault 0aVol.1(1900)-vol.49(5 sept.) aParisc[s.n]d1900-1949 aDemande de numérotation issn en cours par le CR03 aLa périodicité varie fréquemment aNotice réd. d'après le n°du 8 août 1918 aLe sous-titre varie fréquemment aEd en alternance à Paris, puis Casablanca puis Paris aIl semble qu'il y ait eu interruption du 8 juin 1940 au 31 sept. 1948 inclus aQuotid. puis irrégulier 1tClimatsohebdomadaire de la Communauté française 1tClimats. Les Annales coloniales 1tLes Annales coloniales, revue mensuelle illustrée10aAnnales de l'Empire, les Annales coloniales04aLes Annales Coloniales 1aRuedelbMarcel4651 1aThébaultbL. - G.465102aFrance coloniale4070 3aFRbAbesc20060111gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb32693410p/date.r=.langFRzAccès libre au texte intégral. Années 1903-1939 numérisées sur Gallica1 bvol. 5 no. 1 (1904) -vol. 6 no. 24 (1905)cParisdMagasins/AnnexeeP 8° 0921 aPériobTP02 P8 anumer0 (complément Gallica)01236nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004200154210002400196326001600220436003400236436005300270606003800323606003100361710009600392711007800488801002100566856002900587856003600616955006300652957007000715972000900785991001800794992002200812992001600834992001200850039791289000000380020130319051056.01 a0769-489X aFNSP104035 a0000003800 a19900101a19869999 ba0 afre aFR aahu 10aAnnales d'économie et de statistique aPariscINSEEd1986- aTrimestriel 1aAnnales de l'INSEEx0019-0209 1tCahiers du Séminaire d'économétriex0071-8343 aStatistiqueyFrancexPériodiques aEconométriexPériodiques02aAssociation pour le développement de la recherche en économie et en statistiquec(France)02aInstitut national de la statistique et des études économiquesc(France) 3aFRbCCN0769-489X4 uhttp://annales.ensae.fr/ zAccès libre au texte intégral1 bno. 1 (jan-1986) -....cParisdMagasins/AnnexeeP 8° 49391 bno. 1 (1986) -no. 36 (1994)cParisdMagasins/AnnexeeP Index 0741 aZGRA aexempb201003 aGEO RA4.06 France aDEW 310-319 aDEW 33001455nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003900139210003000178210003900208326002500247326002500272430006200297452006200359530004900421606003900470606004200509710005100551801002100602856011300623856010800736955005300844955005500897957005700952972000901009991001801018992002101036992001201057039237818000006993320130828173224.01 a0066-2062 aFNSP322745 a19900101a19669999 ba0 afre aFR aaku 10aAnnales de démographie historique aParis‎cBelin‎d2000- aPariscdivers éditeursd1966-2000 aSemestriel‎b1998- aAnnuel‎b1965-1997 1aEtudes et chronique de démographie historiquex1147-1832 1tAnnales de démographie historique (En ligne),x1776-277410aAnnales de démographie historique‎bParis aPopulationxHistoirexPériodiques aDémographie historiquexPériodiques02aSociété de démographie historiquec(France) 3aFRbCCN0066-20624 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-annales-de-demographie-historique.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1980) -....cParisdMagasins/AnnexeeP 8° 55711 b(1965) -(1979)cParisdMagasins/AnnexeeCOL8°41121 b(1964) -(1982)cParisdMagasins/AnnexeeP Index 0637 aZPAY aexempb201111 aGEO RQ Universel aDEW 30401048cas0 2200361 450 00100100000000200110001000500170002101100140003803500140005203500170006603500150008310000410009810100080013910200070014710500180015411000160017220000250018820700180021321000810023132600110031251700250032351700280034860600240037660600380040080100300043880100230046880200070049185600370049885600610053595500570059699200120065399200210066511272955X000118578120130319051056.0 a1955-0855 a120402335 aissn19550855 a0001185781 a20070221a20079999u y0frey0103 ba0 afre aFR ay  aaku uu 14aLes Annales de droit 0aNo 1 (2007) - aMont-Saint-AignancPublications des universités de Rouen et du Havred2007- aAnnuel10aADDMont-Saint-Aignan10aADD (Mont-Saint-Aignan) aDroitxPériodiques aDroit internationalxPériodiques 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20081014 a074 uhttp://www.lesannalesdedroit.fr/4 zContenu : sommaires et résumés du dernier numéro paru1 bno 1 (2007) -...cParisdMagasins/AnnexeeP 8° 7127 aDEW 340 aGEO RQ Universel01134nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200002700138210002400165326001500189606003000204676000800234710003900242801002100281856010700302856010100409955006600510955006300576957014200639972000900781991001800790992001200808039219461000000377220130319051056.01 a0003-4010 aFNSP103944 a0000003772 a19900101a18919999 ba0 afre aFR10aAnnales de géographie aPariscColind1891- aBimestriel aGéographiexPériodiques a91002aSociété de géographiec(France) 3aFRbCCN0003-40104 uhttp://www.persee.fr/zAccès libre au texte intégral. Périodique numérisé sur Persée (1892-1936)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-annales-de-geographie.htm?1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9101 bno. 1 (oct-1891) -....cParisdMagasins/AnnexeeP 8° 00801 b(1891) -(1931) ; (1932) -(1951) ; (1952) -(1961) ; (1962) -(1971) ; (1972) -(1981) ; (1982) -(1991)cParisdMagasins/AnnexeeP Index 0130 aZPAY aexempb201011 aDEW 91001189nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001391100016001452000053001612100028002143260015002424400061002575300053003186060044003716060036004157120049004518560145005009550069006459570039007149910072007539920022008259920016008470000140649000014064920130319051056.01 a1144-1496 aFNSP560115 a0000140649 a19941108b18861898 ba0 afre aFR ar aaga 10aAnnales de l'Ecole libre des sciences politiques aPariscAlcand1886-1898 aBimestriel 1aAnnales des sciences politiques, (1144-1488)

00aAnnales de l'Ecole libre des sciences politiques aScience politiqueyFrancexPériodiques aScience politiquexPériodiques02aEcole libre des sciences politiquesc(Paris)4 uhttp://gallica.bnf.fr/ark:/12148/cb34422234c/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1886-1898)1 bvol. 1 (1886) -vol.13 (1898)cParisdMagasins/AnnexeeP 8° 03771 bindex (1886/1895) relié avec 1895 anumer0 (gallica mélange le mode image seul et le mode texte/image) aGEO RA4.06 France aDEW 320-32101152nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000061001552100029002163260016002454300065002615170047003265170033003736060032004068010021004388560070004598560074005298560075006039550091006789570057007699920012008260000008538000000853820130319051056.01 a0379-3699 aFNSP114930 a0000008538 a19900101a19749999 ba0 afre aBE aaha 10aAnnales de l'économie publique, sociale et coopérative aOxfordcBlackwelld1974- aTrimestriel 1aAnnales de l'économie collective (0003-407X) < P 8° 0621 >10aAnnals of public and cooperative economics10aAnnalen der Gemeinwirtschaft aCoopérativesxPériodiques 3aFRbCCN0379-36994 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=13704788 zContenu : sommaires ; résumés ;depuis le volume 67, numéro 1, 1996 zContenu : sommaires ; résumés ; depuis le volume 67, numéro 1, 19961 bvol. 62 no. 1 (jan/mar-1974) -vol. 66 no. 1 (1995)cParisdMagasins/AnnexeeP 8° 06211 b(1925) -(1970)cParisdMagasins/AnnexeeP Index 0185 aDEW 33401022cas0 2200301 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200004700162210004500209530004700254531002800301606003600329710005300365711004500418801003000463802000700493856014500500955005500645991002000700037931709000109457620130319051056.0 a0373-0816 accn0373-0816 a0001094576 a19960829b18761970 0frey0103 ba0 afre aFR ar aau 10aAnnales de l'Institut national agronomique aParisaNancycBerger-Levraultd1876-197000aAnnales de l'Institut national agronomique 0aAnn. Inst. natl. agron. aAgronomiexPériodiques2rameau02aInstitut national agronomique Paris-Grignon407002aFrancebMinistère de l'agriculture4070 3aFRbAbesc20040813gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb32693668j/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1876-1936)1 b(1953) -(1970)cParisdMagasins/AnnexeeP 8° 0788 aPériobTP02 P800988cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001500069035001400084035001500098100004100113101000800154102000700162106000600169110001600175200007000191210002500261326001600286530007000302531002700372801003000399801001800429802000700447856014500454955005500599991002000654013301888000109528420130319051056.0 a1146-7266 accn1146-7266 asib0035307 aEvry32602 a0001095284 a19990310a18559999k y0frey0103 ba0 afre aFR ar aaha 10aAnnales de la propriété industrielle, artistique et littéraire aParisc[s.n.]d1855- aTrimestriel00aAnnales de la propriété industrielle, artistique et littéraire 0aAnn. propr. ind. litt. 3aFRbAbesc20050920gAFNOR 3aFRbSFgAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb34423003s/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1855-1932)1 b(1940) -(1948)cParisdMagasins/AnnexeeP 8° 1044 aPériobTP02 P801006nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004000154210004200194326002200236326002900258326002700287606003900314710002400353801002100377856004700398856003800445955007400483957007000557972000900627992003300636992001100669039285367000000854120140106180032.01 a0180-930X aFNSP114941 a0000008541 a19900101a19789999 ba0 amul aFR aaju 14aLes Annales de la recherche urbaine aMontrougecCentrale des revuesd1978- aSemestrielb2005- a3 n°s par anb2000-2004 aTrimestrielb1978-1999 aUrbanismexRechercheyPériodiques02aFrancebPlan urbain 3aFRbCCN0180-930X4 uhttp://www.annalesdelarechercheurbaine.fr/ zContenu : sommaire du dernier n°1 bno. 13 (1980) -no. 107 (dec-2010)cParisdMagasins/AnnexeeP 8° 45091 bno. 1 (1979) -no. 88 (2000)cParisdMagasins/AnnexeeP Index 0695 aZPAY aGEO RS Sans aspect régional aDEW 7100978nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210003900198326001600237517004400253606003900297676000800336801002100344856003100365856009600396955006600492955005900558972000900617992002200626992001600648039474658000000863920130319051056.01 a0295-4397 aFNSP115259 a0000008639 a19900101a19859999 ba0 afre aFR aaha 00aAnnales des mineseGérer et comprendre aPariscGérer et comprendred1985- aTrimestriel10aGérer et comprendre. Annales des mines aGestion d'entreprisexPériodiques a650 3aFRbCCN7003/39274 uhttp://www.annales.org/gc/ zContenu : sommaires et résumés depuis 1997 ; texte intégral des articles de 1998 à 20051 bLes 3 dernières annéescParisd27, Salle 4e étageeDEW 6501 bno. 1 (1985) -....cParisdMagasins/AnnexeeP 4° 5108 aZPAY aGEO RA4.06 France aDEW 650-65801819cas0 2200313 450 00100100000000200110001000500170002101100140003803500170005203500170006903500150008610000410010110100080014210200070015010600060015711000160016320002110017921000560039043002240044644002280067053002110089853101280110980100300123780100230126780200070129085601330129795500550143099100200148503751430X000109457320130319051056.0 a0153-6494 accn0153-6494 aissn01536494 a0001094573 a19890411b18491896uuuy0frey0103 ba0 afre aFR ar aauu uu 10aAnnales des ponts et chaussées. Mémoires et documents relatifs à l'art des constructions et au service de l'ingénieur. Lois, arrêtés et autres actes concernant l'administration des ponts et chaussées aPariscCarilian-Goeury et Victor Dalmontd1849-1896 1tAnnales des ponts et chaussées. Mémoires et documents relatifs à l'art des constructions et au service de l'ingénieur. Lois, ordonnances et autres actes concernant l'administration des ponts et chausséesx0153-6443 1tAnnales des ponts et chaussées. 2e partie. Lois, décrets, arrêtés et autres actes concernant l'administration et le personnel des ponts et chaussées et documents administratifs concernant les pays étrangersx0153-639710aAnnales des ponts et chaussées. Mémoires et documents relatifs à l'art des constructions et au service de l'ingénieur. Lois, arrêtés et autres actes concernant l'administration des ponts et chaussées 0aAnn. ponts chaussées. Mém. doc. relat. art constr. serv. ing. Lois, arrêtés autres actes concern. adm. ponts chaussées 3aFRbAbesc20070416gAFNOR 3aFRbISSNc20051021 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34348188q/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 b(1883) -(1893)cParisdMagasins/AnnexeeP 8° 0760 aPériobTP02 P801213nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001391100016001452000036001612100028001973260015002254300081002404400070003215300036003916060044004276060036004717120049005078560145005569550071007019910077007729920022008499920016008710000140652000014065220130319051056.01 a1144-1488 aFNSP560121 a0000140652 a19941108b18991910 ba0 afre aFR ar aaga 10aAnnales des sciences politiques aPariscAlcand1899-1910 abimestriel 1aAnnales de l'Ecole libre des sciences politiques, (1144-1496) < P 8° 0377 > 1aRevue des sciences politiques (Paris), (1144-147X) < P 8 °0377 >00aAnnales des sciences politiques aScience politiqueyFrancexPériodiques aScience politiquexPériodiques02aEcole libre des sciences politiquesc(Paris)4 uhttp://gallica.bnf.fr/ark:/12148/cb34422232p/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1899-1910)1 bvol. 14 (1899) -vol. 25 (1910)cParisdMagasins/AnnexeeP 8° 0377 anumer0 (sur gallica, mélange de mode image seul et de mode texte/image) aGEO RA4.06 France aDEW 320-32100967nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210005700186326001500243606004500258710008400303856006900387856006100456955007200517972000900589991001800598992004900616992001200665040337618000019199120130319051056.01 a1259-5098 aFNSP708470 a0000191991 a19900101b19952004 ba0 afre aFR aaja 10aAnnales du monde anglophone aInstitut de recherche du monde anglophoned1995-2004 aSemestriel aCivilisation anglo-saxonnexPériodiques02aInstitut de recherche du monde anglophonec(Aix-en-Provence, Bouches-du-Rhône)4 uhttp://www.harmattan.fr/index.asp?navig=catalogue&obj=revue&no=54 zContenu : accès aux sommaires depuis le n°3, juin 19961 bno. 1 (avr-1995) -no. 18 (2003)cParisdMagasins/AnnexeeP 8° 6245 aZPAY aexempb201301 aGEO RP Autres groupes de pays ou de régions aDEW 30000787cas0 2200241 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200003500148210002400183530003500207801003000242856014500272955005500417991001900472991005400491039115453000108113920131014142410.0 accn7124/3798 a0001081139 a19921214b18391848 0frey0103 zz0 afre aFR ar aak 10aAnnales du Parlement français aPariscFirmin Didot00aAnnales du Parlement français 3aFRbAbesc20070410gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb326944505/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1843-1849)1 b(1839) -(1848)cParisdMagasins/AnnexeeCOL4°0736 aPériobTP01 4 anumer0 (complément gallica soit les 4 1ers vols)01498nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005200154210003100206210006000237326001600297421007800313607005000391710005200441801002100493856004200514856014100556856012600697856010800823955006100931957011000992972000901102992002501111992001201136001012487000005195420130319051056.01 a0003-4436 aFNSP250670 a0000051954 a19900101a19249999 ba0 afre aFR aaha 10aAnnales historiques de la Révolution Francaise aPariscArmand Colind2008- aPariscSociété des études robespierristesd1924-2007 aTrimestriel 1aAnnales historiques compiègnoises modernes et contemporaines (0182-5461) aFrancez1789-1799 (Révolution)xPériodiques02aSociété des études robespierristesc(France) 3aFRbCCN0003-44364 uhttp://www.revues.org/ahrf/index.html zContenu : sommaires depuis le n°274, oct./déc. 1998, résumés à partir de 1998 et texte intégral des articles parus de 1999 à 20064 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-annales-historiques-de-la-revolution-francaise.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 91 (jan/fev-1939) -....cParisdMagasinseP 8° 04121 b(1923-1940) ; (1946-1962) ; (1963-1972) ; (1973-1987) ; (1988-1999)cParisdMagasins/AnnexeeP Index 0024 aZPAY aGEO RA4.06 France 01 aDEW 94400985nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210005900198326001500257510004000272510004300312606003100355710004500386801002100431856006800452856003000520955007800550972000900628991001800637992001600655039219623000005199420130319051056.01 a0003-4452 aFNSP250726 a0000051994 a19900101a19629999 ba0 afre aFR aaja 10aAnnales internationales de criminologie aPariscSociété internationale de criminologied1962- aSemestriel10aInternational annals of criminology10aAnales internacionales de criminologia aCriminologiexPériodiques02aSociété internationale de criminologie 3aFRbCCN0003-44524 uhttp://www.isc-sic.org/web/index.php/fr/annales-internationales zAcès libre aux sommaires1 b(jan/jun-1963) ; (jan/jun-1966) -....cParisdMagasins/AnnexeeP 8° 2324 aZPAY aexempb200904 aDEW 364-36501251cas0 2200385 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164105001800171106000600189110001600195200006000211210002900271305005500300326003200355421005200387421003500439444003500474512002400509512002100533530004300554801003000597801002300627802000700650856014500657955004800802991001500850038556030000113169920130319051056.0 a1149-4034 a07061962X accn1149-4034 aissn11494034 a0001131699 a19901204b18831939k y0frey0103 ba0 afre aFR ay  ar aae 14aLes Annales politiques et littéraireserevue populaire aParisc[s.n.]d1883-1939 aEst supplement de Conférencia avant de l'absorber aBimensuel puis hebdomadaire 1tJournal de l'Université des Annalesx1766-358X 1tConferencia (Paris)x1766-3598 1tConferencia (Paris)x1766-359814aLes Annales (Paris)14aLes AnnalesParis04aLes Annales politiques et littéraires 3aFRbAbesc20080206gAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34429261z/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1883-1928)1 b(1911)cParisdMagasins/Annexee12°009.560 aPériobTZ01010nas 2200301 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200004700160210003100207326001100238430005700249606003700306607004500343710003900388856005700427856011400484955007600598992002200674992001200696002942488000013311520130319051057.01 a0393-3954 aFNSP539110 a0000133115 a19940727a19769999 ba0 aeng aIT ar aaka 10aAnnalifFondazione Giangiacomo Feltrinelli aMilanocFeltrinellid1976- aAnnuel 1aAnnali - Istituto Giangiacomo Feltrinellix0544-1374 aVie intellectuellexPériodiques aItaliexVie intellectuellexPériodiques02aFondazione Giangiacomo Feltrinelli4 uhttp://www.fondazionefeltrinelli.it/feltrinelli-cms/4 zDétail des titres et tables des matières (Pubblicazioni --> Annali - cliquer sur le titre de chaque volume)1 bvol. 16 (1974/1975) -vol. 32 (1996)cParisdMagasins/AnnexeeCOL4°2135 aGEO RA6.03 Italie aDEW 00101374cas0 2200373 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164106000600171110001600177200004500193210004300238300024800281440005900529606002500588606003300613710003900646801003000685801002300715802000700738856005700745856007400802955007100876991002200947992000900969992002200978037553372000109153620130319051057.01 a0544-1374 a059225254 accn0544-1374 aissn05441374 a0001091536 a19860620b19581974k y1frey0103 ba0 amul aIT ar aaku uu 10aAnnalifIstituto Giangiacomo Feltrinelli aMilanocFeltrinelli Editored1958-1974 aÀ partir de la 23ème année (1983/84) publiée en 1985, chaque livraison porte aussi sur un thème. - Texte en italien, français et anglais (quelques articles en allemand) de 1976 à 1985 puis en italien ou anglais ou français par la suite 1tAnnali - Fondazione Giangiacomo Feltrinellix0393-3954 aSocialismexHistoire aSocialismeyItaliexHistoire02aFondazione Giangiacomo Feltrinelli 3aFRbAbesc20070521gAFNOR 3aFRbISSNc20011008 a0d4 uhttp://www.fondazionefeltrinelli.it/feltrinelli-cms/4 zDétail des titres et tables des matières (Pubblicazioni --> Annali)1 bvol. 1 (1958) - vol. 15 (1973)cParisdMagasins/AnnexeeCOL4°2135 aPériobTP02 Col4 aP320 aGEO RA6.03 Italie01670nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200007100138210003800209326001500247606003600262606003600298710007300334801002100407856007000428856010800498856009000606856010800696856010800804856010800912955007101020957015901091972000901250992002101259992001601280992001201296013589121000000380820130319051057.01 a0002-7162 aFNSP104044 a0000003808 a19900101a18909999 ba0 aeng aUS14aThe Annals of the American Academy of Political and Social Science aNewbury Park, Calif.cSaged1890- aBimestriel aSciences socialesxPériodiques aScience politiquexPériodiques02aAmerican Academy of Political and Social Science (Philadelphie, Pa.) 3aFRbCCN0002-71624 uhttps://acces-distant.sciences-po.fr/fork?http://ann.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00027162.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 10 no. 2 (sep-1897) -....cParisdMagasins/AnnexeeP 8° 00401 b(1890) -(1916) ; (1931) -(1935) ; (1956) -(1960) ; (1961) -(1966) ; (1966) -(1970) ; (1971) -(1975) ; (1981) -(1985)cParisdMagasins/AnnexeeP Index 0011 aZSAB aGEO RQ Universel aDEW 320-321 aDEW 30001242nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005400139210002700193326001600220606004200236710004000278801002100318830005900339856009000398856010800488856010900596856010800705955007100813972000900884992002100893992001400914038670518000000865420131217115022.01 a0004-5608 aFNSP115324 a19900101a19119999 ba0 aeng aUS aaha 10aAnnals of the Association of American Geographers aWashingtoncAAGd1911- aTrimestriel aGéographie économiquexPériodiques02aAssociation of American Geographers 3aFRbCCN0004-5608 a1947-->1953 et 1962-->1984 : collection donnée au CTL4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00045608.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t788352614db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 75 no. 1 (mar-1985) -....cParisdMagasins/AnnexeeP 4° 0840 aZSAB aGEO RQ Universel aDEW 330.900921cas0 2200277 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200009100148210003600239215002000275702003800295702002300333801003000356830000900386856014500395955005500540991001500595991003300610038985640000107165720130319051057.0 accn7002/3689 a0001071657 a19860917b18991903k y0frey0103 ba0 afre aFR ar aak 12aL'année colonialefpubliée sous la direction de MM. Ch. Mourey,..., Louis Brunel,... aPariscC. Tallandierd1899-1903 din-8 puis in-12 1aMoureybCharlesf(1872-19..)4340 1aBrunelbLouis4340 3aFRbAbesc20050816gAFNOR asdy04 uhttp://gallica.bnf.fr/ark:/12148/cb32694963w/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1899-1902)1 b(1899) -(1903)cParisdMagasins/AnnexeeCOL8°0751 aPériobTZ anumer0 (complément gallica)01242cas0 2200349 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164105001800171106000600189110001600195200018600211210004100397215001000438530003600448531002800484700004700512801003000559801002300589801001300612802000700625856017300632955005100805991003600856038743345000117815920130319051057.0 a1245-5342 a070628491 accn1245-5342 aissn12455342 a0001178159 a19930506b18631880k y0frey0103 ba0 afre aFR ay 0  ar aaku 0uu 12aL'Année géographiqueerevue annuelle des voyages de terre et de mer ainsi que des explorations... et publications diverses relatives aux sciences géographiques et ethnographiques aPariscLibrairie Hachetted1863-1880 d18 cm12aL'Année géographiqueb(Paris) 0aAnnée géogr.b(Paris) 1aVivien de Saint-MartinbLouisf(1802-1897) 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20030203 0aFRbFNSP a074 uhttp://gallica.bnf.fr/ark:/12148/cb326950044/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (sauf années 1868, 1871, 1876 et 1877)1 b(1862) -(1878)cParisdMagasins/AnnexeeG.0026 anumer0 (complément de gallica)01913cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200011100197210003100308326001100339517002400350530011100374607006300485607006300548676000800611801003000619801002300649801001300672802000700685856019200692856019000884856019001074856019001264945001101454955005001465039210790000111981520130319051057.0 a2015-8181 accn9023/6106 aissn20158181 a0001119815 a19830101b18601862m y0frey0103 ba0 afre aFR ay  ar aaku uu 12aL'Année historique ou revue annuelle des questions et des événements politiques en France, en Europe... aPariscHachetted1860-1862 aAnnuel12aL'Année historique02aL'Année historique ou revue annuelle des questions et des événements politiques en France, en Europe... aFrancexPolitique et gouvernementz1852-1870xPériodiques aEuropexPolitique et gouvernementz1848-1871xPériodiques a944 3aFRbAbesc20071019gAFNOR 3aFRbISSNc20070606 0aFRbFNSP a004 uhttp://books.google.fr/books?id=e2gMAAAAYAAJ&dq=editions%3AitgLpK7x3OIC&hl=fr&pg=PP9#v=onepage&q&f=falsezAccès libre au texte intégral. 1ere année (1860) numérisée sur Google Livres4 uhttp://books.google.fr/books?id=PmgMAAAAYAAJ&dq=editions%3AitgLpK7x3OIC&hl=fr&pg=PP9#v=onepage&q&f=falsezAccès libre au texte intégral. 2e année (1861) numérisée sur Google Livres4 uhttp://books.google.fr/books?id=TmUEAAAAQAAJ&dq=editions%3AitgLpK7x3OIC&hl=fr&pg=PP9#v=onepage&q&f=falsezAccès libre au texte intégral. 3e année (1862) numérisée sur Google Livres4 uhttp://books.google.fr/books?id=-ZTKHNucFNoC&dq=editions%3AitgLpK7x3OIC&hl=fr&pg=PP7#v=onepage&q&f=falsezAccès libre au texte intégral. 4e année (1863) numérisée sur Google Livres bT.16171 b(1861)-(1862)cParisdMagasins/AnnexeeT.161701061nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001391100016001452000023001612070028001842100035002124400046002475300029002936070076003226070049003988560145004479550100005929910033006929920022007259920012007470000002914000000291420130319051057.0 a0066-2356 aFNSP101772 a0000002914 a19891213b18751905 ba0 afre aFR ar aaka 12aL'année politique 1apublié de 1875 à 1906 aCharpentier : Parisd1875-1905 1aL'année politique (1944)xISSN 1149-346112aL'année politiqueb1875 aFrancexPolitique et gouvernementz1870-1914xChronologiexPériodiques aFrancez1870-1914xChronologiexPériodiques4 uhttp://gallica.bnf.fr/ark:/12148/cb34349554r/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1877-1905)1 bvol.1 (1874) -vol.17 (1890) ; vol.19 (1892) -vol.32 (1905)cPariddMagasins/AnnexeeCOL12°0011 anumer0 (complément gallica) aGEO RA4.06 France aDEW 94401056nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000028001552100063001833000090002463260011003365170027003476070025003746070052003997100057004518560051005089550085005599550053006449720009006979920022007069920014007280000104795000010479520130319051057.01 a0066-2372 aFNSP446344 a0000104795 a19900101a19669999 ba0 amul aCH aaka 10aAnnée politique suisse aBerncForschungszentrum für schweizerische Politikd1966- aLa première année a été publiée dans "Annuaire suisse de science politique" 1966 aAnnuel10aSchweizerische Politik aSuissexPériodiques aSuissexPolitique et gouvernementxPériodiques02aForschungszentrum für schweizerische Politik (Bern)4 uhttp://www.anneepolitique.ch/fr/aps-online.php1 b2e année (1966) ; (1970-1975) ; (1977-1984)cParisdMagasins/AnnexeeCOL8°45961 b(1985) -....cParisdMagasins/AnnexeeP 8° 6690 aZGRA aGEO RA5.14 Suisse aDEW 949.400962nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200002500160210002800185210005500213326001600268606003000284801002100314856010700335856009100442955008900533972000900622991001800631992001100649039219666000005141220130319051057.01 a0003-5033 aFNSP249444 a0000051412 a19900101a18949999 ba0 afre aFR ar aaha 10aAnnée psychologique aVineuilcNecPlusd2009- aPariscPresses universitaires de Franced1894-2008 aTrimestriel aPsychologiexPériodiques 3aFRbCCN0003-50334 uhttp://www.persee.fr/zAccès libre au texte intégral. Périodique numérisé sur Persée (1894-2005)4 uhttp://www.armand-colin.com/revues_info.php?idr=26zSommaires et résumés depuis 20061 bvol. 2 (1895) -vol. 8 (1901) ; (1942/1943) -....cParisdMagasins/AnnexeeP 8° 2307 aZPAY aexempb200908 aDEW 1501273nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210005100181300004500232326001800277436014000295530003200435606002900467676000800496801002100504856010000525856010800625955006600733955005300799972000900852991001700861992003300878992001200911039237915000000579520130319051057.01 a0066-2399 aFNSP109076 a0000005795 a19900101a19499999 ba0 afre aFR aaju 12aL' Année sociologique aPariscPresses universitaires de Franced1949- aSemestriel (1995-). - Annuel (1949-1994) a2 n°s par an 1aAnnales sociologiques, Série A, Série B, Série C, Série D, Série E. Toutes les séries sont conservés sous la cote < P 8° 2306 > 2aL'Année sociologiqueb1949 aSociologiexPériodiques a301 3aFRbCCN0066-23994 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-l-annee-sociologique.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3011 b(1949) -....cParisdMagasins/AnnexeeP 8° 2306 aZPAY aexemp$200904 aGEO RS Sans aspect régional aDEW 30100874nas 2200253 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001392000033001452100031001783000036002093260011002456060029002568300038002858560135003239550150004589920012006080000188852000018885220130319051057.01 a0245-9051 aFNSP699016 a0000188852 a19900101b18981927 0 afre aFR ar12aL'année sociologique (1896) aPariscF. Alcand1898-1927 aN'a pas paru entre 1912 et 1923 aAnnuel aSociologiexPériodiques aSudoc à jour (12 juin 2007 ; dm)4 uhttp://gallica.bnf.fr/ark:/12148/cb34404872n/datezAccès libre au texte intégral. Périodique numérisé sur Gallica (1896-1925)1 bvol. 1 (1898) -vol. 12 (1913) = (1896/97) -(1909/12) ; NS vol. 1 (1925) -vol. 2 (1927) = (1923/24) -(1924/25)cParisdMagasins/AnnexeeP 8° 2306 aDEW 30101041nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200004600160210002500206326001400231510005100245517005000296517000900346601005000355606003800405710003600443856004000479955006000519955005300579972000900632991001700641992002100658992001200679039239810000000591820130319051057.01 a0073-8182 aFNSP109426 a0000005918 a19900329a18779999 ba0 amul aFR ar aala 10aAnnuairefInstitut de droit international aPariscPedoned1877- aBisannuel10aYearbook of the Institute of International Law10aAnnuaire de l'Institut de droit international10aAIDI02aInstitut de droit internationalxPériodiques aDroit internationalxPériodiques02aInstitut de droit international4 uhttp://www.pedone.info/idi/idi.html1 b(1877) -(1979)cParisdMagasins/AnnexeeCOL 12° 0004 A1 b(1980) -....cParisdMagasins/AnnexeeP 8° 5368 aZPAY aexemp$201109 aGEO RQ Universel aDEW 34101398cas0 2200397 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164105001800171106000600189110001600195200006200211207001500273210002700288320008600315326001100401436005300412436006400465517005300529530006200582531003100644710004300675801003000718801002300748802000700771856013300778955007200911991001700983039598772000107610320130319051057.0 a0399-1350 a070854092 accn0399-1350 aissn03991350 a0001076103 a19900423a18639999k y0frey0103 ba0 afre aFR a 0  ar aaku 0uu110aAnnuaire-bulletin de la Société de l'histoire de France 0aT.1(1863)- aPariscRenouardd1863- aTable générale des matières :30e année(1863)-50e année(1884) ; (1885)-(1910) aAnnuel |tAnnuaire historique pour l'année ...x0399-1342 |tBulletin de la Société de l'histoire de Francex0399-133410aBulletin de la Société de l'histoire de France00aAnnuaire-bulletin de la Société de l'histoire de France 0aAnnu.-bull. Soc. hist. Fr.02aSociété de l'histoire de France4070 3aFRbAbesc20070131gAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34381800j/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 b(1864) -(1875) ; (1929) -(1944)cParisdMagasins/AnnexeeCOL8°1783 aPériobTP0200913nas0 22002891 450 001001000000002001100010005001700021035002500038035002000063035001500083100004100098101000800139102000700147106000600154110001600160200003700176210001900213215000800232300005500240711003400295801003000329801002900359856013600388955004700524991001900571991003300590113688539000107908220130319051057.0 aFRBNF326963150000002 aPR002806670001J a0001079082 a20070402b18871892 y0frey0103 ba afre aFR ar aau y 10aAnnuaire de la Bourse du travail aParisc[s.n.?] d8° aPorte en tête : Ville de Paris. Bourse du travail02aBourse du travailcParis4070 3aFRbAbesc20070402gAFNOR 0aFRbBNFc19970701gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/bpt6k56860349.image.langFRzAccès libre au texte intégral. Ed. 1887-1888 numérisée sur Gallica1 b(1892)cParisdMagasins/AnnexeeCOL8°3351 aPériobTP03 8 anumer0 (complément gallica)01238cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200011400197207001000311210001800321215002000339326001100359430005500370530007700425606003600502606004200538702006500580801003000645856014200675955005600817991001500873036672831000112054020130319051057.0 a2019-8086 accn0100/0594 zccn0115/2238 a0001120540 a19830101c1843 m y0frey0103 ba0 afre aFR ay 0  ar azk h 0 10aAnnuaire de la noblesse de France et des maisons souveraines de l'Europefpublié par M. Borel D'Hauterive... 1a1843- aParisc[s.n.] cPlanchesd18 cm aAnnuel 1tAnnuaire de la paierie et de la noblesse de France00aAnnuaire de la noblesse de France et des maisons souveraines de l'Europe aAnnuairesxPériodiques2rameau aNoblesseyFrancez20e siècle2rameau 1aBorel d'HauterivebAndré-François-Josephf(1812-1896)4651 3aFRbAbesc20071112gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb326964979/date.r=.langFRzAccès libre au texte intégral. Annuaire numérisé sur Gallica (1843-1937)1 b(1937) -(1938)cParisdMagasins/AnnexeeCOL12°0115 aPériobTZ01343cas0 2200373 450 00100100000000200110001000500170002101100140003803500170005203500180006903500170008703500200010403500150012410000410013910100080018010200070018810500180019510600060021311000160021920000740023520700330030921000290034232600110037143000700038244000630045260600330051567600080054880100300055680100180058680100230060480200070062785601440063495501910077803872913X000121373720130319051057.01 a1243-2393 accn1243-2393 afrBN015032228 aissn12432393 a(OCoLC)72852093 a0001213737 a19930325b19071964u y0frey50 ba0 afre aFR ay  ar azku uu 10aAnnuaire de la presse française et étrangère et du monde politique 0avol. 25(1907)-vol. 78 (1964) aParisc[s.n.]d1907-1964 aAnnuel 1tAnnuaire de la presse française et du monde politiquex1243-2385 1tAnnuaire de la presse française et étrangèrex1243-2407 aPressexPériodiques2rameau a070 3aFRbAbesc20110303gAFNOR 3aFRbBNgAFNOR 3aFRbISSNc20110131 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34458514n/date.r=.langFRzAccès libre au texte intégral. Années 1908 et 1909 numérisées sur Gallica1 b(1907) ; (1910) ; (1913) - (1914) ; (1920) ; (1922) ; (1926) ; (1928) ; (1931) ; (1937) - (1939) ; (1942) - (1943) ; (1946) - (1955) ; (1957) - (1964)cParisdMagasins/AnnexeeCOL8°005001273cas0 2200397 450 001001000000002001100010005001700021011001400038035001400052035001400066035001700080035001500097035001700112035001500129100004100144101000800185102000700193106000600200110001600206200004100222210003900263300002000302326001100322421005100333434005100384440006600435710004000501711003900541801003000580801001800610801002300628802000700651856014500658955005500803991001700858013304518000107504020130319051057.0 a1245-5350 a038743361 a07089731X accn1245-5350 asib0035678 aissn12455350 a0001075040 a19990310b18721956k y1frey0103 ba0 afre aFR ar azku uu 10aAnnuaire de législation étrangère aPariscCotillon et filsd1872-1956 aTable 1870-1900 aAnnuel 1tAnnuaire de législation françaisex1245-5369 1tAnnuaire de législation françaisex1245-5369 1tAnnuaire de législation française et étrangèrex0066-265802aSociété de législation comparée02aCentre français de droit comparé 3aFRbAbesc20060106gAFNOR 3aFRbSFgAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/cb344593010/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1872-1937)1 b(1871) -(1936)cParisdMagasins/AnnexeeCOL8°0181 aPériobTP0101107cas0 2200337 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164106000600171110001600177200004000193210003400233326001100267422005200278444005200330712004000382801003000422801002300452802000700475856014500482955005500627991001700682991007000699038743388000107510020130319051057.0 a1245-5369 a070897328 accn1245-5369 aissn12455369 a0001075100 a19930430b18821934k y1frey0103 ba0 afre aFR ar aaku uu 10aAnnuaire de législation française aPariscA. Cotillond1882-1934 aAnnuel 1tAnnuaire de législation étrangèrex1245-5350 1tAnnuaire de législation étrangèrex1245-535002aSociété de législation comparée 3aFRbAbesc20070314gAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/cb344592998/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1882-1934)1 b(1880) -(1933)cParisdMagasins/AnnexeeCOL8°0182 aPériobTP01 anumer0 (en complément de gallica : 1900, 1909, 1916, 1924, 1930)01003cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200004300197210003800240440006000278530004300338531002600381801003000407801001300437802000700450856014500457955004700602991004000649044692412000112005420130319051057.0 a1606-1179 accn1606-1179 accn7207/714X a0001120054 a20000406b18981901k a0frey0103 ba0 afre aMG ay  ar aak 10aAnnuaire de Madagascar et dépendances aTananarivecImprimerie officielle 1tGuide annuaire de Madagascar et dépendancesx1606-593X00aAnnuaire de Madagascar et dépendances 0aAnnu. Madag. dépend. 3aFRbAbesc20050727gAFNOR 0aFRbFNSP a004 uhttp://archive.org/stream/annuairedemadag00unkngoog#page/n6/mode/2upzAccès libre au texte intégral. 1899 numérisée sur Internet Archive1 b(1898)cParisdMagasins/Annexee8°004.993 anumer0 (guide-annuaire sur gallica)01014cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200006800179210004400247326001100291423004400302530002900346606006000375801003000435801002300465802000700488856013300495955005500628991001700683038752573000107609820130319051057.0 a1245-9666 accn1245-9666 aissn12459666 a0001076098 a19950413b18511868uuuy0frey0103 ba0 afre aFR ar azku uu 10aAnnuaire des deux mondesehistoire générale des divers états aPariscRevue des deux mondesd1850-1868 aAnnuel 1tRevue des deux mondes (1829)x0035-196200aAnnuaire des deux mondes aPolitique et culturez19e sièclexPériodiques2rameau 3aFRbAbesc20070212gAFNOR 3aFRbISSNc20060706 a074 uhttp://gallica.bnf.fr/ark:/12148/cb32697009b/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 b(1850) -(1867)cParisdMagasins/AnnexeeCOL8°1801 aPériobTP0200995nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005000139210008100189326001100270530005000281606003600331606006700367710007000434856003200504856005600536955004700592992002500639992001600664992002500680040265137000020042920131023142718.01 a1254-6003 aFNSP731642 a19900101b19931997 ba0 afre aFR aaka 10aAnnuaire des diplômes d'études approfondies aPariscMinistère de l'enseignement supérieur et de la recherched1993-1997 aAnnuel10aAnnuaire des diplômes d'études approfondies aDiplômesyFrancexPériodiques aUniversitésyFrancexEtudes des 2e et 3e cyclesxPériodiques02aFrancebDirection générale de la recherche et de la technologie4 uhttp://www.dr.education.fr/ zContenu : recherche géographique et par discipline1 b(1995)cParisdMagasins/AnnexeeP 4° 6636 aGEO RA4.06 France 01 aDEW 370-379 aGEO RA4.06 France 0101363nas 2200373 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001391100016001452000035001612100037001963260011002335120043002445120017002875300036003046010037003406060036003776060050004137100023004638560140004868560145006269550057007719550059008289550055008879720009009429920022009519920016009730000117186000011718620130715144745.01 a0069-5580 aFNSP486837 a0000117186 a19900101a19019999 ba0 afre aFR ar aaka 10aAnnuaire du Collège de France aPariscCollège de Franced1901- aAnnuel10aCours et travaux du Collège de France10aRésumés...00aAnnuaire du Collège de France]02aCollège de FrancexPériodiques aRechercheyFrancexPériodiques aEnseignement supérieuryFrancexPériodiques02aCollège de France4 uhttp://www.college-de-france.fr/default/EN/all/pub_tra/index.htmzAccès libre au texte intégral des éditions 2007/2008 et 2008/2009.4 uhttp://gallica.bnf.fr/ark:/12148/cb34349602s/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1911-1913)1 b(1980/1981)-....cParisdMagasins/AnnexeeP 8° 54801 b(1960)-(1979/1980)cParisdMagasins/AnnexeeCOL8°27511 b(1936)-(1959)cParisdMagasins/AnnexeeCOL12°0013 aZGRA aGEO RA4.06 France aDEW 370-37900942nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000062001502100042002122300024002543260011002786010037002896060036003266060050003627100023004128010013004358560069004488560068005179550005005859920022005909920016006120001191166000119116620130319051057.0 a0001191166 a a20059999k fre 01 ba0 afre aFR ar aak z  adr 10aAnnuaire du Collège de Franceb[Ressource électronique] aPariscCollège de Franced2005/2006- aRevue électronique aAnnuel02aCollège de FrancexPériodiques aRechercheyFrancexPériodiques aEnseignement supérieuryFrancexPériodiques02aCollège de France 0aFRbFNSP4 uhttp://www.college-de-france.fr/default/EN/all/pub_tra/index.htm4 zContenu : texte intégral des Cours et travaux depuis 2005/20061 r aGEO RA4.06 France aDEW 370-37901129cas0 2200301 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200007500148207001800223210006800241303003700309326001100346512005000357530007500407607004300482712006200525801003000587856015200617955004700769991001100816039144763000089697020130319051057.0 accn7132/0644 a0000896970 a19940902b19041922 0frey0103 ba0 afre aFR ar aak 10aAnnuaire du Gouvernement général de l'Afrique occidentale française 0a(1904)-(1922) aSaint-LouisaPariscImpr. du GouvernementcE. Larosed1904-1922 aCommence en 1904 ; cesse en 1922 aAnnuel10aAnnuaire du Gouvernement général de l'A.O.F00aAnnuaire du Gouvernement général de l'Afrique occidentale française aFrancexColoniesxPériodiques2rameau02aAfrique occidentale françaisebGouverneur général4340 3aFRbAbesc20040413gAFNOR4 uhttp://archive.org/stream/annuairedugouve00afrigoog#page/n8/mode/2upzAccès libre au texte intégral. Année 1906 numérisée sur Internet Archive1 b(1912)cParisdMagasins/AnnexeeCOL8°0683 anumer001188cas0 2200361 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147105001800154106000600172110001600178200006200194210006100256430007200317517005500389601005400444606005100498710004000549801003000589801002300619802000700642856005500649856003100704955005400735992002500789992001200814118773011000116480620130319051057.0 a1950-9405 a108455769 aissn19509405 a0001164806 a20071026a20069999uuuy0frey0103 ba0 afre aFR ay  ar azku uu 12aL' Annuaire du MEDEFfMouvement des entreprises de France aPariscÉd. et services techniques professionnelsd2006- 1tAnnuaire officiel - Mouvement des entreprises de France,x0999-983313aL' Annuaire du Mouvement des entreprises de France02aMouvement des entreprises de FrancexPériodiques aEmployeursxAssociationsyFrancexPériodiques02aMouvement des entreprises de France 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20081014 a074 uhttp://www.medef.com/medef-corporate/publications/ zAccès libre aux sommaires1 b(2006)-(2007)cParisdMagasins/AnnexeeP 4° 5533 aGEO RA4.06 France 06 aDEW 33101087nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005200163210003500215210004600250326001100296606004400307676000800351710008000359801001300439856013900452955006700591955006000658972000900718992001200727992002200739059714883000031957820131022145712.01 a1377-1280 a0000319578 a a20009999k fre ba0 afre aBE a 0  ar aak z 0 10aAnnuaire français de relations internationales aBruxellescBruylantd2000-2003 aPariscLa Documentation françaised2004- aAnnuel aRelations internationalesxPériodiques a32702aCentre Thucydide-Analyse et recherche en relations internationalesc(Paris) 0aFRbFNSP4 uhttp://www.diplomatie.gouv.fr/fr/actions-france_830/etudes-recherches_3119/annuaire-francais-relations-internationales_3123/index.html1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 1 (2000) -....cParisdMagasins/AnnexeeP 8° 6526 aZPAY aDEW 327 aGEO RA4.06 France01463nas0 2200385 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109110001600127200015900143207001200302210004200314300006800356301004300424326001100467517001000478606005400488606005100542607005900593676000800652710009500660801003000755856005100785856006000836955006700896955005200963972000901015992001601024992001601040992002101056165245972000123667020130319051057.0 a0001236670 a20121107b20122012k y frey50 ba0 afre aFR ay 0  aak hh 0zz 10aAnnuaire marocain de la stratégie et des relations internationalesfCentre Marocain Interdisciplinaire d'Etudes Stratégiques et Internationales (CMIESI) 0a(2012)- aPariscL'HarmattanaFescCMIESId2012 aPublication en 2 vols. Autres éditions en Arabe et en Anglais. aDemande de numérotation ISSN en cours aAnnuel10aAMSRI aStratégie politiqueyMarocxPériodiques2rameau aScience politiqueyMarocxPériodiques2rameau aMarocxRelations internationalesxPériodiques2rameau a32702aCentre Marocain Interdisciplinaire d'Etudes Stratégiques et Internationales (CMIESI)4070 3aFRbAbesc20121107gAFNOR4 uhttp://www.cmiesi.ma/acmiesi/fr/amsri_2012.php4 zContenu : introduction et table des matières en ligne.1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 b(2012)-....cParisdMagasins/AnnexeeP 8° 7189 aZPAY aDEW 961-965 aDEW 310-319 aGEO RG1.11 MAROC01321cas0 2200361 450 00100100000000200110001000500170002103500150003810000410005310100080009410200070010210500180010910600060012711000160013320000450014920700100019421000890020430000620029330100560035532600110041143000850042260600440050760600440055167600120059571000220060771100460062980100300067585601090070595500650081497200090087999200570088899200140094509164979X000090597620130524142832.0 a0000905976 a20051012a20059999k z0frey0103 ba0 afre aZZ a 0  ar aak hh 0 10aAnnuaire officiel de l'Union européenne 0a2005- aLuxembourgcOffice des publications officielles des Communautés européennesd2005- aParaît en trois langues : français, allemand et anglais aDemande de numérotation ISSN en cours par le CR 12 aAnnuel 1tAnnuaire interinstitutionnel. Qui fait quoi dans l'Union européenne?x1680-3728 aInstitutions européennesxRépertoires aInstitutions européennesxPériodiques a327.06502aUnion européenne02aUnion européennebCommission européenne 3aFRbAbesc20051104gAFNOR4 uhttp://europa.eu/whoiswho/public/index.cfm?lang=frzAccés libre au texte intégral de l'année en cours1 bLes 2 dernières annéescParisdMagasins/AnnexeeP 4° 6495 aZPAY aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 341.201328nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200015000160210009400310326001100404430005600415440005600471530003800527607006400565676000800629710008400637856014200721955008900863992002200952992001200974992001600986037481681000000322320130319051057.0 a0150-8822 aFNSP102561 a0000003223 a19900102b19011952 ba0 afre aFR ar aaka 10aAnnuaire statistiquefMinistère du commerce, de l'industrie, des postes et télégraphes, Office du travail, Statistique générale de la France aPariscMinistère du commerce, de l'industrie, des postes et des télégraphesd1901-1952 aAnnuel 1aAnnuaire statistique de la France (1878)x0150-8830 1aAnnuaire statistique de la France (1953)x0066-365400aAnnuaire statistiquebParis. 1901 aFrancexConditions économiquesxStatistiquesxPériodiques a31402aFrancebMinistère du commerce, de l'industrie, des postes et des télégraphes4 uhttp://gallica.bnf.fr/ark:/12148/cb34350395t/date.r=.langFRzAccès libre au texte intégral. Annuaire numérisé sur Gallica (1900-1935)1 b(1901) -(1946) ; (1948) -(1949) ; (1951) -(1952)cParisdMagasins/AnnexeeCOL4°0003 aGEO RA4.06 France aDEW 944 aDEW 310-31901357nas 2200349 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000540013921000280019332600110022148800920023251700980032451700310042253000550045360600730050860600730058171000760065483000530073085600950078395500480087897200090092699100180093599200220095399200160097599200160099103984997X000009146320131009144953.01 a0989-0025 aFNSP403739 a19900101b19842002 ba0 afre aFR aaka 10aAnnuaire statistiquefMutualité sociale agricole aPariscCCMSAd1984-2002 aAnnuel 1aStatistiques - Caisses centrales de mutualité sociale agricole. Résultats d' ensemble10aAnnuaire statistique - Caisses centrales de Mutualité sociale agricole. Résultats nationaux10aAnnuaire statistique - MSA10aAnnuaire statistique - Mutualité sociale agricole aAgriculteursxSanté et hygièneyFrancexStatistiquesxPériodiques aSécurité socialexAgriculteursyFrancexStatistiquesxPériodiques02aUnion des caisses centrales de la mutualité sociale agricolec(France) a1984-2001 : collection envoyée au CTles en 20134 uhttp://www.msa.fr/lfr/etudes-statistiques/annuaireszAccés au texte intégral depuis 20091 b(1984) -(2001)cParisdMagasinseP 4° 5329 aZGRA aexempb201306 aGEO RA4.06 France aDEW 360-363 aDEW 310-31901474cas0 2200433 450 001001000000002001100010005001700021011001400038035001700052035001700069035001700086035001500103100004100118101000800159102000700167110001600174200006600190210004300256300003600299326001100335510006000346510004800406517005500454606006900509606004800578676000800626710004400634801003000678801003000708801002300738802000700761856005000768856005300818955006800871955005800939972000900997992001601006992001801022040217736000025246520131108115725.01 a1027-5746 accn1027-5746 zccn7138/2399 aissn10275746 a0000252465 a19970108a19949999 0fre 0103 ba0 afre aZZ aak 00aAnnuaire statistiquefObservatoire européen de l'audiovisuel aStrasbourgcConseil de l'Europed1998- aManquent édtions 2008 et 2009. aAnnuel10aStatistical yearbook - European Audiovisual Observatory10aYearbook - European Audiovisual Observatory10aAnnuaire - Observatoire européen de l'audiovisuel aIndustrie cinématographiqueyEuropexStatistiquesxPériodiques aMédiasyEuropexStatistiquesxPériodiques a07002aObservatoire européen de l'audiovisuel 3aFRbAbesc20040524gAFNOR 3aFRbAbesc20040524gAFNOR 3aFRbISSNc20030523 a004 uhttp://www.obs.coe.int/oea_publ/index.html.fr zAccès libre au sommaire du dernier numéro paru1 bLa dernière annéecParisd27, Salle Rez-de chausséeeDEW 0701 b(1994/1995) -....cParisdMagasins/AnnexeeP 4° 6436 aZPAY aDEW 310-319 aGEO RA Europe01278nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200004000160210005300200326001100253440006900264530004600333607004100379710005100420801002100471856026800492955012300760991001500883992002400898992001600922992001400938036597376000007002420130319051057.0 a0066-3646 aFNSP322908 a0000070024 a19900101b18701910 ba0 afre aBE ar aaku 10aAnnuaire statistique de la Belgique aBruxellescMinistère de l'intérieurd1870-1910 aAnnuel 1aAnnuaire statistique de la Belgique et du Congo Belgex0770-222100aAnnuaire statistique de la Belgiqueb1870 aBelgiquexStatistiquesxPériodiques02aBelgiquebMinistère des affaires économiques 3aFRbCCN0066-36464 uhttp://books.google.fr/books?id=xZlIAAAAYAAJ&dq=%22Annuaire%20statistique%20de%20la%20Belgique%22&hl=fr&pg=PR4#v=onepage&q=%22Annuaire%20statistique%20de%20la%20Belgique%22&f=falsezAccès libre au texte intégral. 1ere année (1870) numérisée sur Google Livres1 b(1871) -(1873) ; (1875) -(1878) ; (1880) -(1898) ; (1900) -(1904) ; (1906) -(1910)cParisdMagasins/AnnexeeCOL4°0007 anumer0 (?) aGEO RA4.04 Belgique aDEW 310-319 aDEW 949.301033cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200006700174210002400241225002800265607004100293710003800334801003000372801003000402802000700432856009000439856004800529955005200577972000900629992002500638992001600663992001600679045103518000094650820130319051057.01 a1295-957X accn1295-957X a0000946508 a20000407a19989999m a0frey0103 ba0 afre aFR a 0  aak 0 10aAnnuaire statistique de la DéfensefMinistère de la défense aPariscDICODd1998-00aAnalyses et réferences aFrancexForces arméesxPériodiques02aFrancebMinistère de la défense 3aFRbAbesc20051221gAFNOR 3aFRbAbesc20051221gAFNOR a074 uhttp://213.139.102.176/sga/decouverte/statistiques/annuaire_statistique_de_la_defense zContient les sommaires des n°s depuis 20051 b(2005) -...cParisdMagasins/AnnexeeP 4° 7098 aZGRA aGEO RA4.06 France 01 aDEW 310-319 aDEW 350-35402094nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200003800160210006500198326001100263430005100274440005000325607006400375607003900439710005500478856012600533856012600659856012600785856012600911856012601037856012601163856013101289856012601420955005501546991003301601992002201634992001201656992001601668037481703000000322620130319051057.0 a0150-8830 aFNSP102567 a0000003226 a19900102b18781899 ba0 afre aFR ar aaka 10aAnnuaire statistique de la France aPariscMinistère de l'agriculture et du commerced1878-1899 aAnnuel 1tStatistique de la France. Statistique annuelle 1aAnnuaire statistique (Paris, 1901)x0150-8822 aFrancexConditions économiquesxStatistiquesxPériodiques aFrancexStatistiquesxPériodiques02aFrancebMinistère de l'agriculture et du commerce4 uhttp://gallica.bnf.fr/ark:/12148/bpt6k5505170r.imagezAccès libre au texte intégral. Vol. (1878) numérisé sur Gallica4 uhttp://gallica.bnf.fr/ark:/12148/bpt6k5500662c.imagezAccès libre au texte intégral. Vol. (1880) numérisé sur Gallica4 uhttp://gallica.bnf.fr/ark:/12148/bpt6k5505253k.imagezAccès libre au texte intégral. Vol. (1881) numérisé sur Gallica4 uhttp://gallica.bnf.fr/ark:/12148/bpt6k5505415k.imagezAccès libre au texte intégral. Vol. (1884) numérisé sur Gallica4 uhttp://gallica.bnf.fr/ark:/12148/bpt6k55029836.imagezAccès libre au texte intégral. Vol. (1890) numérisé sur Gallica4 uhttp://gallica.bnf.fr/ark:/12148/bpt6k55042464.imagezAccès libre au texte intégral. Vol. (1891) numérisé sur Gallica4 uhttp://gallica.bnf.fr/ark:/12148/bpt6k5503236f.imagezAccès libre au texte intégral. Vol. (1892-1894) numérisé sur Gallica4 uhttp://gallica.bnf.fr/ark:/12148/bpt6k5509059m.imagezAccès libre au texte intégral. Vol. (1899) numérisé sur Gallica1 b(1878) -(1899)cParisdMagasins/AnnexeeCOL4°0003 anumer0 (complément gallica) aGEO RA4.06 France aDEW 944 aDEW 310-31901461nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200014700160210007700307210008700384300012300471326001100594430005000605607006400655607003900719710007800758856008900836955005500925955007200980972000901052992002201061992001201083992001601095045233047000000322020130319051057.01 a0066-3654 aFNSP102554 a0000003220 a19900102b19532007 ba0 afre aFR ar aaka 10aAnnuaire statistique de la FrancefInstitut national de la statistique et des études économiques pour la métropole et la France d'Outre-mer aPariscImprimerie nationalecPresses universitaires de Franced1953-2007 aaPariscInstitut national de la statistique et des études économiquesd1966-2007 aA partir de l'édition de 2008, l'ensemble des informations sera uniquement disponible sur le site internet de l'Insee aAnnuel 1aAnnuaire statistique (Paris, 1901)x0150-8822 aFrancexConditions économiquesxStatistiquesxPériodiques aFrancexStatistiquesxPériodiques02aInstitut national de la statistique et des études économiquesc(France)4 uhttp://www.insee.fr/fr/publications-et-services/sommaire.asp?codesage=ASF08&nivgeo=01 b(1980) -(2007)cParisdMagasins/AnnexeeP 4° 54411 b(1953) -(1959) ; (1961) -(1979)cParisdMagasins/AnnexeeCOL4°0003 aZPAY aGEO RA4.06 France aDEW 944 aDEW 310-31901025nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321050018001392000039001572070025001962100046002213260011002674300115002786060051003937100037004448010013004818560103004949550055005979720009006529920022006619920012006839920016006950000072556000007255620130412120927.01 a0291-848X aFNSP333059 a0000072556 a19900101a1981 fre 0 afre aFR a z b 10aAnnuaire statistique de la justice 1a1978 publié en 1981 aPariscLa Documentation françaised1981- aAnnuel 1aCompte général de l'Administration de la justice criminelle et de la justice civile et commercialx0291-8528 aStatistiques judiciairesyFrancexPériodiques aFrancebMinistère de la justice 0aFRbFNSP4 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtmlzAccés au texte intégral depuis 20061 b(1978) -(2007)cParisdMagasins/AnnexeeP 4° 4584 aZPAY aGEO RA4.06 France aDEW 347 aDEW 310-31901063nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000039001552100030001943260011002246070043002356760008002787100094002868560090003809550062004709550099005329550053006319720009006849920026006939920014007199920016007330000080485000008048520130319051057.01 a0076-1575 aFNSP358366 a0000080485 a19900101a19559999 ba0 afre aLU aaka 10aAnnuaire statistique du Luxembourg aLuxembourgcSTATECd1955- aAnnuel aLuxembourgxStatistiquesxPériodiques a31402aLuxembourgc(Grand-duché)bService central de la statistique et des études économiques4 uhttp://www.statistiques.public.lu/fr/publications/series/annuaire-stat-lux/index.html1 bLa dernière annéecParisd27, Salle 1er étageeDEW 3141 b(1955) ; (1960) ; (1965) ; (1968) -(1973) ; (1975) -(1979)cParisdMagasins/AnnexeeCOL.F.02331 b(1980) -....cParisdMagasins/annexeeP 4° 5705 aZGRA aGEO RA4.05 Luxembourg aDEW 949.3 aDEW 310-31900932nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003900163210003000202326001100232606003800243606002900281607004100310710005500351801001300406856006000419856002200479955005500501972000900556992002500565992001600590073877069000048221820130319051058.01 a1638-3931 a0000482218 a b20022007k fre ba0 afre aFR a 0  ar aak z 0 10aAnnuaire stratégique et militaire aPariscO.Jacobd2002-2007 aAnnuel aPolitique militairexPériodiques aStratégiexPériodiques aFrancexForces arméesxPériodiques aFondation pour la recherche stratégiquec(France) 0aFRbFNSP4 uhttp://www.frstrategie.org/barreFRS/publications/fonds/ zsommaire en ligne1 b(2002) -(2007)cParisdMagasins/AnnexeeP 8° 6642 aZCAD aGEO RA4.06 France 01 aDEW 355-35901297nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116106000600123110001600129200003400145210002400179326001100203430004400214452006500258530004200323607004800365710004800413856022300461955007300684955011600757972000900873991001800882992003100900992001200931992001600943038855259000008257820140103111228.01 a0072-5730 aFNSP368370 a19900101a19489999 ba0 aeng aGB ar aaka 10aAnnual abstract of statistics aLondoncHMSOd1948- aAnnuel 1aStatistical abstract for United Kingdom 1tAnnual abstract of statistics (London. Online)‎x2040-163910aAnnual abstract of statisticsbLondon aGrande-BretagnexStatistiquesxPériodiques01aGrande-BretagnebCentral Statistical Office4 uhttp://www.ons.gov.uk/ons/search/index.html?newquery=annual+abstract+of+statistics&newoffset=0&pageSize=50&content-type=Book&sortBy=none&sortDirection=none&applyFilters=truezAccès libre au texte intégral depuis 20021 bvol. 116 (1980) -vol. 138 (2002)cParisdMagasins/AnnexeeP 4° 55261 bvol. 84 (1935-1946) ; vol. 88 (1938-1950) ; vol. 91 (1954) -vol. 115 (1979)cParisdMagasins/AnnexeeCOL4°0244 aZPAY aexempb201312 aGEO RA4.02 Grande-Bretagne aDEW 941 aDEW 310-31900921nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000074001552100050002293260011002794300075002906070040003657100040004058560048004459550070004939720009005639920027005729920016005999920016006150000157217000015721720130319051058.01 a1013-6061 aFNSP609977 a0000157217 a19900101a19859999 ba0 aeng aMU aaka 10aAnnual digest of statistics - Central Statistical Office (Port-Louis) aPort LouiscCentral Statistical Officed1985- aAnnuel 1aBi-annual digest of statistics - Central Statistical Officex0025-6056 aMauricexStatistiquesxPériodiques aMauricebCentral Statistical Office4 uhttp://www.gov.mu/portal/goc/cso/list_1.htm1 bvol. 30 (1985)- vol.51 (2006)cParisdMagasins/AnnexeeP 4° 3930 aZGRA aGEO RF4.03 Ile Maurice aDEW 966-969 aDEW 310-31901049nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000055001552100048002103260011002585300055002696010045003246060043003696070058004127120031004708010021005018560033005228560036005559550055005919720009006469920030006559920014006859920012006990000124814000012481420131114135905.01 a0081-2528 aFNSP511346 a0000124814 a19900101a19219999 ba0 aeng aZA aaku 10aAnnual economic reportfSouth African Reserve Bank aPretoriacSouth African Reserve Bankd1921- aAnnuel00aAnnual economic report. South African Reserve Bank02aSouth African Reserve BankxPériodiques aFinancesyAfrique du SudxPériodiques aAfrique du SudxConditions économiquesxPériodiques02aSouth African Reserve Bank 3aFRbCCN0081-25284 uhttp://www.reservebank.co.za zAccès libre au texte intégral1 b(2002) -(2006)cParisdMagasins/AnnexeeP 4° 6998 aZGRA aGEO RF3.19 Afrique du Sud aDEW 330.9 aDEW 33200953nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000111001502100047002613260011003086010045003196060043003646070058004077100031004658010013004968560033005098560036005429550005005789920030005839920014006139920012006270001125224000112522420130319051058.0 a0001125224 a a19969999k fre 01 ba0 aeng aZA ar aak z  adr 10aAnnual economic report. South African Reserve Bankb[Ressource électronique] /fSouth African Reserve Bank aPretoriacSouth African Reserve Bankd1996 aAnnuel02aSouth African Reserve BankxPériodiques aFinancesyAfrique du SudxPériodiques aAfrique du SudxConditions économiquesxPériodiques02aSouth African Reserve Bank 0aFRbFNSP4 uhttp://www.reservebank.co.za zAccès libre au texte intégral1 r aGEO RF3.19 Afrique du Sud aDEW 330.9 aDEW 33201308nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011620000250012321000460014832600110019443701130020545201450031853000460046360600560050960600580056560600520062371000500067580100210072585600890074695500570083597200090089299100180090199200230091999200160094299200120095803970369X000007003320140108104947.01 a0740-3909 aFNSP322923 a19900101a19829999 ba0 aeng aUS10aAnnual energy review aaWashington, D.C‎cThe Office‎d1982- aAnnuel 1aAnnual report to Congress - United States Department of Energy, Energy Information Administrationx0161-5807 1tAnnual energy review (Energy Information Administration, Office of Energy Markets and End Use, U.S. Dept. of Energy. Online), ISSN 2157-7684 aAnnual energy review‎bWashington, D.C. aRessources énergétiquesyEtats-UnisxPériodiques aRessources énergétiquesxStatistiquesxPériodiques aEnergiexConsommationyEtats-UnisxPériodiques02aEtats-UnisbEnergy Information Administration 3aFRbCCN0740-39094 uhttp://www.eia.doe.gov/emeu/aer/overview.htmlzAccés au texte intégral depuis 19951 b(1983) -(2007)cParisdMagasins/Annexes:eP 4° 6376 aZPAY aexempb201401 aGEO RC2 Etats-Unis aDEW 310-319 aDEW 33301400cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118105001800125106000600143110001600149200003400165210003400199430010700233452004600340517003300386517004200419517004800461530004300509601003500552606003500587607005000622711006100672801003000733801002300763802000700786856010500793955005500898991001800953992001200971992001900983118098594000124537520131217154955.01 a1914-5691 aissn19145691 a20071003a19949999uuuy0frey50 ba0 amul aCA ay  ar azku uu 10aAnnual reportfBank of Canada aOttawacBank of Canadad1994- 1tAnnual report of the Governor to the Minister of Finance and statement of accounts (Print),x0067-3587 1tAnnual report (Bank of Canada)x1487-045210aBank of Canada annual report10aRapport annuel de la Banque du Canada10aRapport annuel (Banque du Canada. Imprimé)10aAnnual reportb(Bank of Canada. Print)02aBanque du CanadaxPériodiques aFinancesyCanadaxPériodiques aCanadaxConditions économiquesxPériodiques02aBanque des règlements internationauxxPériodiques4070 3aFRbAbesc20080516gAFNOR 3aFRbISSNc20080429 a044 uhttp://www.banqueducanada.ca/fr/annuel/index.htmlzAccès libre au texte intégral à partir de 19961 b(1994) -(1995)cParisdMagasins/AnnexeeP 4° 5791 aexempb201312 aDEW 332 aGEO RC1 Canada01119nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004400139210004300183326001100226452009000237530004200327601004000369606003400409607004900443710002600492856007500518955005500593955005500648972000900703991001800712991001800730992002100748992001200769039657787000007178320140108162705.01 a0577-0653 aFNSP328536 a19900101a19689999 ba0 aeng aMT aaka 10aAnnual report‎fCentral Bank of Malta aVallettacCentral Bank of Maltad1968- aAnnuel 1tAnnual report and statement of accounts (Central Bank of Malta. Online)‎x1811-126210aAnnual report - Central Bank of Malta02aCentral Bank of MaltaxPériodiques aFinancesyMaltexPériodiques aMaltexConditions économiquesxPériodiques02aCentral Bank of Malta 4uhttp://www.centralbankmalta.orgzAccés au texte intégral depuis 19981 b(1993) -(2005)cParisdMagasins/AnnexeeP 4° 63541 b(1975) -(1992)cParisdMagasins/AnnexeeP 8° 3792 aZGRA aexempb201203 aexempb201401 aGEO RA6.04 Malte aDEW 33201030nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003500139210003700174300004700211326001100258430004200269530003600311601003200347606003700379712001800416856009700434955005500531955005500586972000900641991001800650992002400668992001200692036642150000021767420130529140243.01 a1239-9345 aFNSP783201 a19900101a19979999 ba0 aeng aFI aaka 10aAnnual reportfBank of Finland aHelsinkicBank of Finlandd1997- aEn version électronique à partir de 2006 aAnnuel 1aYearbook - Bank of Finlandx0081-946800aAnnual report - Bank of Finland02aSuomen PankkixPériodiques aFinancesyFinlandexPériodiques02aSuomen Pankki4 uhttp://www.bof.fi/en/julkaisut/index.htmzzAccès libre au texte intégral à partir de 19971 b(1999) -(2005)cParisdMagasins/AnnexeeP 4° 68541 b(1996) -(1998)cParisdMagasins/AnnexeeP 8° 5353 aZGRA aexempb201302 aGEO RA3.01 Finlande aDEW 33200843nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000080001502100037002302300024002673260011002916010032003026060037003347100018003718010013003898560045004028560053004479550005005009920024005059920012005290001134966000113496620130319051058.0 a0001134966 a a19979999k fre 01 ba0 aeng aFI ar aak z  adr 10aAnnual report - Bank of Finlandb[Ressource électronique]fBank of Finland aHelsinkicBank of Finlandd1997- aRevue électronique aAnnuel02aSuomen PankkixPériodiques aFinancesyFinlandexPériodiques02aSuomen Pankki 0aFRbFNSP4 uhttp://www.bof.fi/en/julkaisut/index.htm zContenu : texte intégral du rapport depuis 19971 r aGEO RA3.01 Finlande aDEW 33200946nas 2200289 i 450 002001100000005001700011011001400028035001500042100004100057101000800098102000700106110001600113200003300129210003200162300004700194326001100241601003200252606003400284607004900318710001800367856013300385955007800518972000900596991001800605992002100623992001200644000010758420131213125128.01 a0855-0972 aFNSP455785 a19900101a00019999 ba0 aeng aGH aaka 10aAnnual reportfBank of Ghana aAccracBank of Ghanad0001- aEn version électronique à partir de 2003 aAnnuel02aBank of GhanaxPériodiques aFinancesyGhanaxPériodiques aGhanaxConditions économiquesxPériodiques02aBank of Ghana4 uhttp://www.bog.gov.gh/index.php?option=com_content&view=article&id=113&Itemid=172zAccès texte intégral du rapport depuis 20041 b(1981/1982) ; (1986) ; (1992) -(2002)cParisdMagasins/AnnexeeP 4° 5406 aZGRA aexempb201312 aGEO RF1.15 Ghana aDEW 33201044nas 2200313 i 450 002001100000005001700011035001500028100004100043101000800084102000700092110001600099200003400115210003400149300004700183326001100230430006000241601003300301606003500334607005000369710002500419830005200444856010300496955005600599972000900655991001800664992002200682992001200704992001400716000025049420140117162654.0 aFNSP875837 a19900101a19969999 ba0 aeng aGR aaka 10aAnnual reportfBank of Greece aAthenscBank of Greeced1996- aEn version électronique à partir de 2006 aAnnuel 1aReport of Governor... for the year ... - Bank of Greece02aBank of GreecexPériodiques aFinancesyGrècexPériodiques aGrècexConditions économiquesxPériodiques02aTrapeza tès Ellados aC'est bien la banque centrale du pays (Martine)4 uhttp://www.bankofgreece.gr/en/publications/report.htmzAccès libre au texte intégral depuis 19981 b(1995) -(2005);cParisdMagasins/AnnexeeP 4° 6767 aZGRA aexempb201401 aGEO RA6.05 Grèce aDEW 332 aDEW 330.900943nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000078001502100034002282300024002623260011002866010033002976060035003306070050003657100025004158010013004408560058004538560053005119550005005649920022005699920012005919920014006030001131333000113133320130319051058.0 a0001131333 a a19989999k fre 01 ba0 aeng aGR ar aak z  adr 10aAnnual report - Bank of Greeceb[Ressource électronique]fBank of Greece aAthenscBank of Greeced1998- aRevue électronique aAnnuel02aBank of GreecexPériodiques aFinancesyGrècexPériodiques aGrècexConditions économiquesxPériodiques02aTrapeza tès Ellados 0aFRbFNSP4 uhttp://www.bankofgreece.gr/en/publications/report.htm zContenu : texte intégral du rapport depuis 19981 r aGEO RA6.05 Grèce aDEW 332 aDEW 330.901335nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210003700188300005000225300007500275300006900350326001100419601003300430606003600463607005100499710001900550856006500569856004800634955007200682955005500754955006400809972000900873991001800882992002300900992001200923992001400935038842416000006179320130319051058.01 a0067-365X aFNSP282320 a0000061793 a19900101a19559999 ba0 aeng aIL aaka 10aAnnual reportfBank of Israel aJerusalemcBank of Israeld1955- aA partir de 2001, publication en 6 fascicules aL'année 2004 se trouve uniquement sur le site (pas de version papier) a2006 dernière éd. papier voir ensuite en version électronique aAnnuel02aBank of IsraelxPériodiques aFinancesyIsraëlxPériodiques aIsraëlxConditions économiquesxPériodiques02aBank of Israel4 uhttp://www.bankisrael.gov.il/publeng/publeslf.php?misg_id=124 zContenu : texte intégral à partir de 19971 b(1996) -(1999) ; (2001) -(2006)cParisdMagasins/AnnexeeP 4° 67211 b(1980) -(1995)cParisdMagasins/AnnexeeP 8° 53341 b(1962) ; (1965) -(1979)cParisdMagasins/AnnexeeCOL8°0399 aZGRA aexempb201109 aGEO RG2.15 Israël aDEW 332 aDEW 330.900945nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000078001502100037002282300024002653260011002896010033003006060036003336070051003697100019004208010013004398560065004528560048005179550005005659920023005709920012005939920014006050001113928000111392820130319051058.0 a0001113928 a a19979999k fre 01 ba0 aeng aIL ar aak z  adr 10aAnnual report - Bank of Israelb[Ressource électronique]fBank of Israel aJerusalemcBank of Israeld1997- aRevue électronique aAnnuel02aBank of IsraelxPériodiques aFinancesyIsraëlxPériodiques aIsraëlxConditions économiquesxPériodiques02aBank of Israel 0aFRbFNSP4 uhttp://www.bankisrael.gov.il/publeng/publeslf.php?misg_id=12 zContenu : texte intégral à partir de 19971 r aGEO RG2.15 Israël aDEW 332 aDEW 330.900957nas 2200289 i 450 002001100000005001700011035001500028100004100043101000800084102000700092110001600099200003700115210004100152300004700193326001100240601003600251606003600287607005100323710002200374856009300396955005500489955005500544972000900599991001800608992002700626992001400653000005038320131021131214.0 aFNSP246967 a19900101a19689999 ba0 aeng aMU aaka 10aAnnual reportfBank of Mauritius aPort LouiscBank of Mauritiusd1968- aEn version électronique à partir de 2006 aAnnuel02aBank of MauritiusxPériodiques aFinancesyMauricexPériodiques aMauricexConditions économiquesxPériodiques02aBank of Mauritius uhttps://www.bom.mu/?id=40498&Archive=YzAccès libre au texte intégral depuis 1998/19991 b(1992) -(2005)cParisdMagasins/AnnexeeP 4° 63711 b(1986) -(1991)cParisdMagasins/AnnexeeP 8° 5170 aZGRA aexempb201010 aGEO RF4.03 Ile Maurice aDEW 330.900948nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000085001502100046002352300024002813260011003056010036003166060036003526070051003887100022004398010013004618560026004748560058005009550005005589910018005639920027005819920014006080001133459000113345920140106115744.0 a0001133459 a a19989999k fre 01 ba0 aeng aMU ar aak z  adr 10aAnnual report - Bank of Mauritiusb[Ressource électronique] /fBank of Mauritius aPort LouiscBank of Mauritiusd1998/1999- aRevue électronique aAnnuel01aBank of MauritiusxPériodiques aFinancesyMauricexPériodiques aMauricexConditions économiquesxPériodiques02aBank of Mauritius 0aFRbFNSP4 uhttp://bom.intnet.mu/ zContenu : texte intégral du rapport depuis 1998/19991 r aexempb201401 aGEO RF4.03 Ile Maurice aDEW 330.901083nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006800139210005200207326001100259530006900270601005500339606005100394710004100445856005700486856005400543955005500597955005500652972000900707991001800716992002300734992001200757039142221000005037620130527171449.01 a0190-6313 aFNSP246957 a19900101a19139999 ba0 aeng aUS aaka 10aAnnual reportfBoard of Governors of the Federal Reserve System aWashington, D.C.cFederal Reserve Systemd1913- aAnnuel00aAnnual report - Board of Governors of the Federal Reserve System02aFederal Reserve Systemc(Etats-Unis)xPériodiques aPolitique monétaireyEtats-UnisxPériodiques02aFederal Reserve Systemc(Etats-Unis)4 uhttp://www.federalreserve.gov/boarddocs/RptCongress/ zAccès libre au texte intégral à partir de 19941 b(1980) -(1993)cParisdMagasins/AnnexeeP 8° 52231 b(1975) -(1979)cParisdMagasins/AnnexeeCOL8°0010 aZGRA aexempb201304 aGEO RC2 Etats-Unis aDEW 33201220nas 2200325 i 450 002001100000005001700011100004100028101000800069102000700077105001800084106000600102110001600108200005100124210003600175326001100211437008600222517006500308606005100373606005400424606004000478607006600518710004800584801001300632830004500645856010000690955005600790972000900846992001600855992002300871000068028020140108101059.0 a a20029999 a fre 01 ba0 aeng aUS a 0  ar aak z 0 10aAnnual reportfBureau of Industry and Security aLanham, MdcBernan Pressd2002- aAnnuel 1tExport Administration annual report...and...Report on foreign policy export contr10aBureau of Industry and Security annual report fiscal year... aSécurité nationaleyEtats-UnisxPériodiques aExportationsxContrôleyEtats-UnisxPériodiques aIndustrieyEtats-UnisxPériodiques aEtats-UnisxRelations économiques extérieuresxPériodiques01aEtats-UnisbBureau of Industry and Security 0aFRbFNSP aNotice à désactiver car coll. à jeter4 uhttp://www.bis.doc.gov/news/indexnewsarchives.htmlzAccès libre au texte intégral depuis 19961 b(2002) -(2006);cParisdMagasins/AnnexeeP 4° 6145 aZPAY aDEW 380-382 aGEO RC2 Etats-Unis00882nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004400139210004800183326001100231530004500242601004300287606003600330710002900366856008000395955005500475972000900530991001800539992002300557992001200580039384012000001132820140108163928.01 a0304-6796 aFNSP124463 a19900803a19729999 ba0 aeng aZW aaka 10aAnnual reportfCentral Bank of Barbados aBridgetowncCentral Bank of Barbadosd1972- aAnnuel10aAnnual report - Central Bank of Barbados02aCentral Bank of BarbadosxPériodiques aFinancesyBarbadexPériodiques02aCentral Bank of Barbados4 uhttp://www.centralbank.org.bb/zAccés libre au texte intégral depuis 20011 b(1988) -(2000)cParisdMagasins/AnnexeeP 4° 5933 aZGRA aexempb201312 aGEO RD3.12 Barbade aDEW 33200875nls 2200289 i 450 002001100000005001700011035001500028100004100043101000800084102000700092106000600099110001600105135001800121200009700139210004800236230002400284326001100308601004300319606003600362710002900398801001300427856003500440856007000475955000500545992002300550992001200573000111186520131122133114.0 a0001111865 a a20019999k fre 01 ba0 aeng aZW ar aak z  adr 10aAnnual report - Central Bank of Barbadosb[Ressource electronique]fCentral Bank of Barbados aBridgetowncCentral Bank of Barbadosd2001- aRevue électronique aAnnuel02aCentral Bank of BarbadosxPériodiques aFinancesyBarbadexPériodiques02aCentral Bank of Barbados 0aFRbFNSP4 uhttp://www.centralbank.org.bb/ zContenu : texte intégral du dernier rapport en ligne depuis 20011 r aGEO RD3.12 Barbade aDEW 33201032nas 2200313 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101110001600108200004100124210004400165326001100209451005400220530004300274601004100317606003400358607004900392710002700441856011700468955005900585972000900644991001800653992002100671992001200692992001400704039678970000009320720140106123710.01 a0716-2901 a19900101a19269999 ba0 aeng aCL aaka 10aAnnual reportfCentral Bank of Chile aSantiagocBanco central de Chiled1926- aAnnuel 1aMemoria anual - Banco central de Chilex0716-244810aAnnual report - Banco Central de Chile02aBanco central de ChilexPériodiques aFinancesyChilixPériodiques aChilixConditions économiquesxPériodiques02aBanco central de Chile4 uhttp://www.bcentral.cl/eng/publications/norms/bcch05.htmzAccès libre au texte intégral du rapport depuis 19981 b(1986) -(1997)cParisdMagasins/AnnexeeP 4° 5641 bis aZGRA aexempb201312 aGEO RD4.14 Chili aDEW 332 aDEW 330.900891nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000069001502100044002192300024002633260011002876010041002986060034003396070049003737100027004228010013004498560106004629920021005689920012005890001135755000113575520130405111414.0 a0001135755 a a19989999k fre 01 ba0 aeng aCL ar aak z  adr 10aAnnual report - Central Bank of Chileb[Ressource électronique] aSantiagocBanco central de Chiled1998- aRevue électronique aAnnuel02aBanco central de ChilexPériodiques aFinancesyChilixPériodiques aChilixConditions économiquesxPériodiques02aBanco central de Chile 0aFRbFNSP4 uhttp://www.bcentral.cl/eng/publications/norms/bcch05.htmzAccès libre au texte intégral depuis 1998 aGEO RD4.14 Chili aDEW 33201070nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000041001552100041001963000047002373260011002846010040002956060035003356070050003707100035004208560051004558560053005069550055005599550055006149720009006699910018006789920022006969920014007180000046449000004644920130319051058.01 a1017-9674 aFNSP236950 a0000046449 a19900101a19619999 ba0 aeng aCN aaka 10aAnnual reportfCentral Bank of China aTaipeicCentral Bank of Chinad1961- aEn version électronique à partir de 2003 aAnnuel02aCentral Bank of ChinaxPériodiques aFinancesyTaiwanxPériodiques aTaiwanxConditions économiquesxPériodiques02aCentral Bank of China (Taiwan)4 uhttp://www.cbc.gov.tw/EngHome/publications.asp4 zContenu : texte intégral du rapport depuis 19991 b(1984) -(1996)cParisdMagasins/AnnexeeP 8° 48711 b(1997) -(2002)cParisdMagasins/AnnexeeP 4° 6868 aZGRA aexempb201002 aGEO RI3.02 Taiwan aDEW 330.900950nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000092001502100041002422300024002833260011003076010040003186060035003586070050003937100035004438010013004788560051004918560053005429550005005959920022006009920014006220001135273000113527320130319051058.0 a0001135273 a a19999999k fre 01 ba0 aeng aCN ar aak z  adr 10aAnnual report - Central Bank of Chinab[Ressource électronique]fCentral Bank of China aTaipeicCentral Bank of Chinad1999- aRevue électronique aAnnuel02aCentral Bank of ChinaxPériodiques aFinancesyTaiwanxPériodiques aTaiwanxConditions économiquesxPériodiques02aCentral Bank of China (Taiwan) 0aFRbFNSP4 uhttp://www.cbc.gov.tw/EngHome/publications.asp zContenu : texte intégral du rapport depuis 19991 r aGEO RI3.02 Taiwan aDEW 330.900975nas 2200313 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000043001412100043001843000047002273260011002746010041002856060035003266070050003617120027004118560058004388560053004969550055005499720009006049920022006139920014006359920012006490000068703000006870320130319051058.0 aFNSP317217 a0000068703 a19900101a19649999 ba0 aeng aCY aaka 10aAnnual report - Central Bank of Cyprus aNicosiacCentral Bank of Cyprusd1964- aEn version électronique à partir de 2004 aAnnuel02aCentral Bank of CyprusxPériodiques aFinancesyChyprexPériodiques aChyprexConditions économiquesxPériodiques02aCentral Bank of Cyprus4 uhttp://www.centralbank.gov.cy/nqcontent.cfm?a_id=25924 zContenu : texte intégral du rapport depuis 20011 b(1967) -(2003)cParisdMagasins/AnnexeeP 4° 3731 aZGRA aGEO RA6.07 Chypre aDEW 330.9 aDEW 33200978nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000094001502100043002442300024002873260011003116010041003226060035003636070050003987100027004488010013004758560058004888560053005469550005005999920022006049920012006269920014006380001135047000113504720130319051058.0 a0001135047 a a20019999k fre 01 ba0 aeng aCY ar aak z  adr 10aAnnual report - Central Bank of Cyprusb[Ressource électronique]fCentral Bank of Cyprus aNicosiacCentral Bank of Cyprusd2001- aRevue électronique aAnnuel02aCentral Bank of CyprusxPériodiques aFinancesyChyprexPériodiques aChyprexConditions économiquesxPériodiques02aCentral Bank of Cyprus 0aFRbFNSP4 uhttp://www.centralbank.gov.cy/nqcontent.cfm?a_id=2592 zContenu : texte intégral du rapport depuis 20011 r aGEO RA6.07 Chypre aDEW 332 aDEW 330.901111nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210004200195300004700237326001100284430008900295530004200384601004100426606003500467607005000502710002600552856004300578955006500621972000900686991001800695992002200713992001400735992001200749039301915000016015020130319051058.01 a0258-8706 aFNSP617402 a0000160150 a19900101a00019999 ba0 aeng aEG aaka 10aAnnual reportfCentral Bank of Egypt aCairocCentral Bank of Egyptdd1976- aEn version électronique à partir de 2005 aAnnuel 1aReport of the Board of directors for the year... - Central Bank of Egypt (1012-5604)00aAnnual report - Central Bank of Egypt02aNational Bank of EgyptxPériodiques aFinancesyEgyptexPériodiques aEgyptexConditions économiquesxPériodiques02aCentral Bank of Egypt4 uhttp://www.cbe.org.eg/Publications.htm1 b(1993/1994) -(2003/2004)cParisdMagasins/AnnexeeP 8° 6134 aZGRA aexempb201211 aGEO RG1.16 Egypte aDEW 330.9 aDEW 33200968nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000093001502100045002432300024002883260011003126010041003236060035003646070050003997100026004498010013004758560043004888560058005319550005005899920022005949920014006169920012006300001133702000113370220130319051058.0 a0001133702 a a20029999k fre 01 ba0 aeng aEG ar aak z  adr 10aAnnual report - Central Bank of Egyptb[Ressource électronique] /fCentral Bank of Egypt aCairocCentral Bank of Egyptd2002/2003- aRevue électronique aAnnuel02aNational Bank of EgyptxPériodiques aFinancesyEgyptexPériodiques aEgyptexConditions économiquesxPériodiques02aCentral Bank of Egypt 0aFRbFNSP4 uhttp://www.cbe.org.eg/Publications.htm zContenu : texte intégral du rapport depuis 2002/20031 r aGEO RG1.16 Egypte aDEW 330.9 aDEW 33200975nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000096001502100043002462300024002893260011003136010042003246060036003666070051004027100028004538010013004818560048004948560053005429550005005959920023006009920012006239920014006350001134320000113432020130319051058.0 a0001134320 a a19999999k fre 01 ba0 aeng aIE ar aak z  adr 10aAnnual report - Central Bank of Irelandb[Ressource électronique]fCentral Bank of Ireland aDublincCentral Bank of Irelandd1999- aRevue électronique aAnnuel02aCentral Bank of IrelandxPériodiques aFinancesyIrlandexPériodiques aIrlandexConditions économiquesxPériodiques02aCentral Bank of Ireland 0aFRbFNSP4 uhttp://www.centralbank.ie/publications.html zContenu : texte intégral du rapport depuis 19991 r aGEO RA4.01 Irlande aDEW 332 aDEW 330.901031nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004200139210004100181326001100222530004300233601004100276606003700317607005200354712002700406856006800433955007200501955005500573972000900628991001800637992002400655992001200679992001400691038846004000005038120140110153614.01 a0069-1550 aFNSP246965 a19900101a00019999 ba0 aeng aJO aaka 10aAnnual reportfCentral Bank of Jordan aAmmancCentral Bank of Jordand1964- aAnnuel10aAnnual report - Central Bank of Jordan02aCentral Bank of JordanxPériodiques aFinancesyJordaniexPériodiques aJordaniexConditions économiquesxPériodiques02aCentral Bank of Jordan4 uhttp://www.cbj.gov.jo/zAccès libre au dernier rapport publié1 b(1982) -(1989) ; (1993) -(1998)cParisdMagasins/AnnexeeP 8° 51351 b(1999) -(2003)cParisdMagasins/AnnexeeP 4° 6877 aZGRA aexempb201011 aGEO RG2.12 Jordanie aDEW 332 aDEW 330.900946nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000094001502100041002442300024002853260011003096010041003206060037003616070052003987100027004508010013004778560027004908560048005179550005005659920024005709920012005949920014006060001134611000113461120130319051058.0 a0001134611 a a20049999k fre 01 ba0 aeng aJO ar aak z  adr 10aAnnual report - Central Bank of Jordanb[Ressource électronique]fCentral Bank of Jordan aAmmancCentral Bank of Jordand2004- aRevue électronique aAnnuel02aCentral Bank of JordanxPériodiques aFinancesyJordaniexPériodiques aJordaniexConditions économiquesxPériodiques02aCentral Bank of Jordan 0aFRbFNSP4 uhttp://www.cbj.gov.jo/ zContenu : texte du dernier rapport en ligne1 r aGEO RG2.12 Jordanie aDEW 332 aDEW 330.900960nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000096001502100043002462300024002893260011003136010042003246060036003666070051004027100028004538010013004818560059004948560053005539550005006069920023006119920012006340001137477000113747720130319051058.0 a0001137477 a a20039999k fre 01 ba0 aeng aLS ar aak z  adr 10aAnnual report - Central Bank of Lesothob[Ressource électronique]fCentral Bank of Lesotho aMaserucCentral Bank of Lesothod2003- aRevue électronique aAnnuel02aCentral Bank of LesothoxPériodiques aFinancesyLesothoxPériodiques aLesothoxConditions économiquesxPériodiques02aCentral Bank of Lesotho 0aFRbFNSP4 uhttp://www.centralbank.org.ls/publications/default.htm zContenu : texte intégral du rapport depuis 20031 r aGEO RF3.13 Lesotho aDEW 33200926nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000092001502100043002422300024002853260011003096010040003206060034003606070049003947100026004438010013004698560036004828560056005189550005005749920021005799920012006000001133374000113337420130319051058.0 a0001133374 a a19989999k fre 01 ba0 aeng aMT ar aak z  adr 10aAnnual report - Central Bank of Maltab[Ressource électronique]fCentral Bank of Malta aVallettacCentral Bank of Maltad1998- aRevue électronique aAnnuel02aCentral Bank of MaltaxPériodiques aFinancesyMaltexPériodiques aMaltexConditions économiquesxPériodiques02aCentral Bank of Malta 0aFRbFNSP4 uhttp://www.centralbankmalta.org zContenu : texte intégral du rapport depuis de 19981 r aGEO RA6.04 Malte aDEW 33200928nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000100001502100046002502300024002963260011003206060038003316070064003697100030004338010013004638560055004768560053005319550005005849920025005899920012006140001173897000117389720130319051058.0 a0001173897 a a20059999k fre 01 ba0 aeng aLK ar aak z  adr 10aAnnual report - Central Bank of Sri Lankab[Ressource électronique]fCentral Bank of Sri Lanka aColombocCentral Bank of Sri Lankad2005- aRevue électronique aAnnuel aFinancesySri LankaxPériodiques aSri LankaxConditions économiquesz1948-....xPériodiques02aCentral Bank of Sri Lanka 0aFRbFNSP4 uhttp://www.cbsl.gov.lk/info/10_publication/p_1.htm4 zContenu : texte intégral du rapport depuis 20051 r aGEO RI1.16 Sri Lanka aDEW 33201011nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000112001502100051002622300024003133260011003376010050003486060040003986070055004387100036004938010013005298560058005428560053006009550005006539920027006589920012006850001137494000113749420130319051058.0 a0001137494 a a19999999k fre 01 ba0 aeng aPH ar aak z  adr 10aAnnual report - Central Bank of the Philippinesb[Ressource électronique]fCentral Bank of the Philippines aManilacCentral Bank of the Philippinesd1999- aRevue électronique aAnnuel02aCentral Bank of the PhilippinesxPériodiques aFinancesyPhilippinesxPériodiques aPhilippinesxConditions économiquesxPériodiques02aCentral Bank of the Philippines 0aFRbFNSP4 uhttp://www.bsp.gov.ph/publications/regular_annual.asp zContenu : Texte intégral du rapport depuis 19921 r aGEO RI2.14 Philippines aDEW 33201122nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005800139210005800197326001100255430006600266601005700332606003600389607005100425710004300476856008600519955005500605955005500660972000900715991001900724991001800743992002300761992001200784040147649000005522820140103144911.01 a1013-6193 aFNSP258980 a19900101a19699999 ba0 aeng aTR aaka 10aAnnual reportfCentral Bank of the Republic of Turkey aAnkaracCentral Bank of the Republic of Turkeyd1969- aAnnuel 1aRapport annuel - Banque centrale de la République de Turquie02aCentral Bank of the Republic of TurkeyxPériodiques aFinancesyTurquiexPériodiques aTurquiexConditions économiquesxPériodiques02aCentral Bank of the Republic of Turkey4 uhttp://www.tcmb.gov.tr/yeni/eng/index.htmlzAccès au texte intégral depuis 19961 b(1980) -(1995)cParisdMagasins/AnnexeeP 4° 55831 b(1962) -(1979)cParisdMagasins/AnnexeeCOL4°0487 aZGRA aPériobTP01 4 aexempb201312 aGEO RA6.06 Turquie aDEW 33201012nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000126001502100058002762300024003343260011003586010057003696060036004266070051004627100043005138010013005568560037005698560052006069550005006589920023006639920012006860001114519000111451920130319051058.0 a0001114519 a a19969999k fre 01 ba0 aeng aTR ar aak z  adr 10aAnnual report - Central Bank of the Republic of Turkeyb[Ressource électronique]fCentral Bank of the Republic of Turkey aAnkaracCentral Bank of the Republic of Turkeyd1996- aRevue électronique aAnnuel02aCentral Bank of the Republic of TurkeyxPériodiques aFinancesyTurquiexPériodiques aTurquiexConditions économiquesxPériodiques02aCentral Bank of the Republic of Turkey 0aFRbFNSP4 uhttp://www.tcmb.gov.tr/yeni/eng/ zContenu : accès au texte intégral depuis 19961 r aGEO RA6.06 Turquie aDEW 33201097nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000540013921000570019332600110025045200980026151700580035953000860041760600490050371000480055285601050060095500600070597200090076599200190077499200140079305798171X000010126420131218141427.01 a0382-1161 aFNSP435844 a19900101a19779999 ba0 amul aCA aaka 10aAnnual reportfCommissioner of Official Languages aOttawacApprovisionnements et services Canadad1977- aAnnuel 1ttAnnual report - Canada. Office of the Commissioner of Official Languages (Online)x1495-996810aRapport annuel - Commissariat aux langues officielles10aAnnual report - Canada. Office of the Commissioner of Official Languagesb(Print) aPolitique linguistiqueyCanadaxPériodiques02aCanadabCommissaire aux langues officielles4 uhttp://www.ocol-clo.gc.ca/html/reports_rapports_e.php#ARzAccés au texte intégral depuis 1999/20001 b(1991) -(2006/2007)cParisdMagasins/AnnexeeP 4° 6288 aZGRA aGEO RC1 Canada aDEW 42-4901169nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004100139210002600180326001100206452006200217530004400279601003700323610004800360710002300408856012300431955005500554955006900609955009900678972000900777991001800786992002400804992001500828039118940000009068020140103114556.01 a0169-0922 aFNSP399632 a19900101a18649999 ba0 aeng aNL aaka 10aAnnual reportfDe Nederlandsche Bank aAmsterdamcDNBd1864- aAnnuel 1tAnnual report (De Nederlandsche Bank. Online),x1573-978310aAnnual report‎bDe Nederlandsche Bank02aNederlandsche BankxPériodiques0 a* BanquesxRapportsyPays-BasxPériodiques02aNederlandsche Bank4 uhttp://www.dnb.nl/en/publications/dnb-publications/annual-report/index.jspzAccè libre au texte intégral depuis 19981 b(1980) -(1997)cParisdMagasins/AnnexeeP 4° 55391 b(1919) -(1939) ; (1944/1945)cParisdMagasins/AnnexeeCOL8°05121 b(1877) -(1894) ; (1941/1942) -(1943/1944) ; (1946) -(1979)cParisdMagasins/AnnexeeCOL4°0308 aZGRA aexempb201312 aGEO RA4.03 Pays-Bas aDEW 332.0600965nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010013000951020007001081060006001151100016001211350018001372000093001552100026002482300024002743260011002986010037003096060037003466070052003837100023004358010013004588560074004718560062005459550005006079920024006129920015006360001173821000117382120130319051058.0 a0001173821 a a19989999k fre 01 ba0 adutaeng aNL ar aak z  adr 10aAnnual report - De Nederlandsche Bankb[Ressource électronique] /fDe Nederlandsche Bank aAmsterdamcDNBd1998- aRevue électronique aAnnuel02aNederlandsche BankxPériodiques aFinancesyPays-BasxPériodiques aPays-BasxConditions économiquesxPériodiques02aNederlandsche Bank 0aFRbFNSP4 uhttp://www.dnb.nl/en/news-and-publications/dnb-publications/index.jsp4 zContenu : texte intégral du rapport en ligne depuis 19981 r aGEO RA4.03 Pays-Bas aDEW 332.0601113nas 2200349 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000040001552100050001953000047002453260011002924510073003036010038003766060038004146060050004526070053005027120024005558560029005798560036006089550059006449720009007039920025007129920014007379920012007510000128062000012806220130319051058.01 a0949-1090 aFNSP522342 a0000128062 a19940530a00019999 ba0 aeng aDE aaka 10aAnnual report - Deutsche Bundesbank aFrankfurt am MaincDeutsche Bundesbankd0001- aEn version électronique à partir de 2007 aAnnuel 1aGeschäsftbericht der Deutschen Bundesbank (0070-394X) < P 4°5471 >02aDeutsche BundesbankxPériodiques aFinancesyAllemagnexPériodiques aPolitique monétaireyAllemagnexPériodiques aAllemagnexConditions économiquesxPériodiques02aDeutsche Bundesbank4 uhttp://www.bundesbank.de zAccès libre au texte intégral1 b(1999) -(2006)cParisdMagasins/AnnexeeP 4° 5471 bis aZGRA aGEO RA5.01 Allemagne aDEW 330.9 aDEW 33201118nls 2200349 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000088001502100050002382300024002883260011003124510047003236010038003706060038004086060050004466070053004967100024005498010013005738560073005868560053006599550005007129920025007179920014007429920012007560001130232000113023220130319051058.0 a0001130232 a a19969999k fre 01 ba0 aeng aDE ar aak z  adr 10aAnnual report - Deutsche Bundesbankb[Ressource électronique]fDeutsche Bundesbank aFrankfurt am MaincDeutsche Bundesbankd1996- aRevue électronique aAnnuel 1tGeschäsftbericht der Deutschen Bundesbank02aDeutsche BundesbankxPériodiques aFinancesyAllemagnexPériodiques aPolitique monétaireyAllemagnexPériodiques aAllemagnexConditions économiquesxPériodiques02aDeutsche Bundesbank 0aFRbFNSP4 uhttp://www.bundesbank.de/volkswirtschaft/vo_geschaeftsbericht.en.php zContenu : texte intégral du rapport depuis 19961 r aGEO RA5.01 Allemagne aDEW 330.9 aDEW 33200881nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004800154210006000202300004000262326001100302530004800313606004000361712004400401856004400445955005400489972000900543992002300552992001600575160192463000007105720130319051058.01 a0145-7284 aFNSP325750 a0000071057 a19900101a19762006 ba0 aeng aUS aaka 10aAnnual report - Federal Election Commission aWashinton, D.C.cFederal Election Commissiond1976-2006 a2005 disponible uniquement en ligne aAnnuel00aAnnual report - Federal Election Commission aElectionsyEtats-UnisxPériodiques02aEtats-UnisbFederal Election Commission4 uhttp://www.fec.gov/pages/anreport.shtml1 b(1975)-(2006)cParisdMagasins/AnnexeeP 4° 4050 aZPAY aGEO RC2 Etats-Unis aDEW 324.6-900889nas 2200265 i 450 002001100000005001700011035001500028100004100043101000800084102000700092110001600099200005300115210002200168326001100190430005400201601006100255606004500316710004700361856009800408955005500506972000900561991001800570992002100588992001400609000013441720131017153541.0 aFNSP541708 a19940818a00019999 ba0 aeng aJP aaka 10aAnnual reportfInstitute of Developing Economies aTokyocIDEd0001- aAnnuel 1aOrganization - Insitute of Asian Economic Affairs02aInstitute of Developing Economiesc(Japon)xPériodiques aAide économique japonaisexPériodiques02aInstitute of Developing Economiesc(Japon)4 uhttp://www.ide.go.jp/English/Info/Profile/Nenpo/zAccés libre au texte intégral depuis 20031 b(1985) -(2002)cParisdMagasins/AnnexeeP 8° 6492 aZGRA aexempb201310 aGEO RI3.22 Japon aDEW 338.900984nas 2200277 i 450 002001100000005001700011035001500028100004100043101000800084102000700092110001600099200005100115210002600166300005200192326001100244606003800255606005000293710003600343830006300379856012100442955007900563972000900642991001800651992002500669992001200694000004788020131009152033.0 aFNSP241523 a19900101a00019999 ba0 aeng aSG aaka 10aAnnual reportfMonetary Authority of Singapore aSingaporecMASd0001- aEn version électronique à partir de 2000/2001 aAnnuel aFinancesySingapourxPériodiques aPolitique monétaireySingapourxPériodiques02aMonetary Authority of Singapore a1981/1982-1996/1997 : collection envoyée au CTles en 2013 uhttp://www.mas.gov.sg/About-MAS/Reporting/Annual-Reports.aspxzContenu : texte intégral du rapport depuis 1997/19981 b(1981/1982) ; (1983/1984) -(1996/1997)cParisdMagasins/AnnexeeP 4° 5332 aZGRA aexempb201307 aGEO RI2.15 Singapour aDEW 33200962nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000112001502100026002622300024002883260011003126060038003236060050003617100036004118010013004478560070004608560058005309550005005889910018005939920025006119920012006360001173896000117389620130627111322.0 a0001173896 a a19979999k fre 01 ba0 aeng aSG ar aak z  adr 10aAnnual report - Monetary Authority of Singaporeb[Ressource électronique]fMonetary Authority of Singapore aSingaporecMASd1997- aRevue électronique aAnnuel aFinancesySingapourxPériodiques aPolitique monétaireySingapourxPériodiques02aMonetary Authority of Singapore 0aFRbFNSP4 uhttp://www.mas.gov.sg/about_us/annual_reports/annual_reports.html4 zContenu : texte intégral du rapport depuis 1997/19981 r aexempb201306 aGEO RI2.15 Singapour aDEW 33200914nas 2200265 i 450 002001100000005001700011035001500028100004100043101000800084102000700092110001600099200004400115210004500159300004600204326001100250601004200261606004600303712002800349856011900377955005500496955005400551972000900605992002200614992001200636000007829220140110141147.0 aFNSP352844 a19900101a00019999 ba0 aeng aGR aaka 10aAnnual report - National Bank of Greece aAthènescNational Bank of Greeced0001- aA partir de 2006 en version électronique aAnnuel02aNational Bank of GreecexPériodiques a* BanquesxRapportsyGrècexPériodiques02aNational Bank of Greece4 uhttp://www.bankofgreece.gr/Pages/en/Publications/GovReport.aspx?Filter_By=8zContenu : texte intégral depuis 19981 b(1980) -(2005)cParisdMagasins/AnnexeeP 4° 56421 b(1953)-(1979)cParisdMagasins/AnnexeeCOL4°0895 aZGRA aGEO RA6.05 Grèce aDEW 33201113nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000440013921000460018332600110022945200590024053000450029960100380034460600360038260700510041871000290046983000500049885600960054895500550064497200090069999100180070899200230072699200120074999200140076104480623X000004788220131009155201.01 a1216-6197 aFNSP241532 a19900101a00019999 ba0 aeng aHU aaka 10aAnnual reportfNational Bank of Hungary aBudapestcNational Bank of Hungaryd0001- aAnnuel 1tNational Bank of Hungary annual report, ISSN 1585-4604 0aAnnual report - National Bank of Hungary02aMagyar Nemzeti BankxPériodiques aFinancesyHongriexPériodiques aHongriexConditions économiquesxPériodiques02aNational Bank of Hungary a1983-1999 : collection envoyée au CTles 20134 uhttp://english.mnb.hu/Kiadvanyok/mnben_evesjelzAccès libre au texte intégral depuis 20001 b(1983) -(1999)cParisdMagasins/AnnexeeP 4° 5334 aZGRA aexempb201307 aGEO RA8.12 Hongrie aDEW 332 aDEW 330.900989nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000098001502100046002482300024002943260011003186010038003296060036003676070051004037100029004548010013004838560060004968560053005569550005006099920023006149920012006379920014006490001132896000113289620130319051058.0 a0001132896 a a20009999k fre 01 ba0 aeng aHU ar aak z  adr 10aAnnual report - National Bank of Hungaryb[Ressource électronique]fNational Bank of Hungary aBudapestcNational Bank of Hungaryd2000- aRevue électronique aAnnuel02aMagyar Nemzeti BankxPériodiques aFinancesyHongriexPériodiques aHongriexConditions économiquesxPériodiques02aNational Bank of Hungary 0aFRbFNSP4 uhttp://english.mnb.hu/engine.aspx?page=mnben_kiadvanyok zContenu : texte intégral du rapport depuis 20001 r aGEO RA8.12 Hongrie aDEW 332 aDEW 330.900990cas0 2200301 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118110001600125200004300141210004300184300004700227430007400274601003900348610004700387710002500434801003000459801003000489802000700519856007200526955005500598992001200653992002300665044879563000020491720131018155514.01 a1427-0285 accn1427-0285 a20000407a19959999 0frey0103 ba0 aeng aPL aak 10aAnnual ReportfNational Bank of Poland aWarsawcNational Bank of Polandd1995- aEn version électronique à partir de 2005 1tInformation Bulletin - Narodowy Bank Polski (Yearly. 1991)x1230-6282 aNarodowy Bank PolskixPériodiques a* BanquesxRapportsyPolognexPériodiques02aNarodowy Bank Polski 3aFRbAbesc20040927gAFNOR 3aFRbAbesc20040927gAFNOR a574 uhttp://www.nbp.pl/zContenu : accès au texte intégral depuis 19971 b(1999) -(2004)cParisdMagasins/AnnexeeP 4° 6023 aDEW 332 aGEO RA5.11 Pologne00918nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000096001502100043002462300024002893260011003136010039003246060036003636070051003997100025004508010013004758560023004888560053005119550005005649920023005699920012005920001133711000113371120130319051058.0 a0001133711 a a19979999k fre 01 ba0 aeng aPL ar aak z  adr 10aAnnual Report - National Bank of Polandb[Ressource électronique]fNational Bank of Poland aWarsawcNational Bank of Polandd1997- aRevue électronique aAnnuel02aNarodowy Bank PolskixPériodiques aFinancesyPolognexPériodiques aPolognexConditions économiquesxPériodiques02aNarodowy Bank Polski 0aFRbFNSP4 uhttp://www.nbp.pl/ zContenu : texte intégral du rapport depuis 19971 r aGEO RA5.11 Pologne aDEW 33200772nas 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000031001502100029001813260011002104880035002216010030002566060049002867120016003358010013003518560026003649550035003909720009004259920012004349920024004460000316493000031649320130319051058.0 a0000316493 a a199?9999k fre ba0 aeng aNO a 0  ar aak z 0 10aAnnual reportfNorsk Hydro aOslocNorsk Hydroc199?- aAnnuel 11aRapport annuel - Norsk Hydro02aNorsk HydroxPériodiques aSociétésxRapportsyNorvègexPériodiques02aNorsk Hydro 0aFRbFNSP uhttp://www.hydro.com/1 r1997---> < Coll. 4°1643 bis > aZGRA aDEW 333 aGEO RA3.03 Norvège00935nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000109001502100023002592300024002823260011003066010048003176060047003656060037004127100034004498010013004838560042004968560042005389550005005809920024005859920012006090001133494000113349420130319051058.0 a0001133494 a a19989999k fre 01 ba0 aeng aAT ar aak z  adr 10aAnnual report - Oesterreichische Nationalbankb[Ressource électronique] /fOesterreichische Nationalbank aViennacONBd1998- aRevue électronique aAnnuel02aÖsterreichische NationalbankxPériodiques aMarché monétaireyAutricheyPériodiques aFinancesyAutrichexPériodiques02aÖsterreichische Nationalbank 0aFRbFNSP4 uhttp://www.oenb.at/english/engl_p.htm zContenu : texte intégral depuis 19981 r aGEO RA5.13 Autriche aDEW 33200952nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210002400179326001100203430004700214601006500261606005300326710005100379856005700430856003600487955005300523972000900576992002700585992001200612992001400624039289753000004749420130319051058.01 a0257-1617 aFNSP240705 a0000047494 a19900101a19799999 f ba0 aeng aAT aaka 10aAnnual report - OPEC aViennacOPECd1979- aAnnuel 1aAnnual review and record - OPECx0474-631702aOrganisation des pays exportateurs de pétrolexPériodiques aPétrole‎xIndustrie et commercexPériodiques02aOrganisation des pays exportateurs de pétrole4 uhttp://www.opec.org/opec_web/en/publications/337.htm4 zAccès libre au texte intégral1 b(1977) -....cParisdMagasins/AnnexeeP 4° 4096 aZGRA aGEO RO3 Pays de l'OPEP aDEW 333 aDEW 341.200980nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004300154210004500197326001100242517005000253530004400303601004200347606003900389607003500428712002800463856004300491955005500534972000900589991001800598992002200616992001600638039286878000006163820130319051058.01 a0256-9396 aFNSP281998 a0000061638 a19900101a19809999 ba0 aeng aPA aaka 10aAnnual reportfPanama Canal Commission aPanamacPanama Canal Commissiond[19..]- aAnnuel10aAnnual report of the Panama Canal Commisssion10aAnnual report - Panama Canal Commission02aPanama Canal CommissionxPériodiques aTransports maritimesxPériodiques aPanama, Canal dexPériodiques02aPanama Canal Commission uhttp://www.pancanal.com/eng/index.html1 b(1980) -(1999)cParisdMagasins/AnnexeeP 8° 5252 aZGRA aexempb201109 aGEO RD2.07 Panama aDEW 383-38901151nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000048001552100051002033000047002543260011003014300091003125300048004036010046004516060046004977120032005438010021005758560056005968560053006529550054007059720009007599920033007689920012008010000069908000006990820130319051058.01 a0110-7070 aFNSP322696 a0000069908 a19900101a19789999 ba0 aeng aNZ aaku 10aAnnual report - Reserve Bank of New Zealand aWellingtoncReserve Bank of New Zealandd1978- aEn version électronique à partir de 2007 aAnnuel 1aAnnual report of the directors and statement of accounts - Reserve Bank of New Zealand00aAnnual report - Reserve Bank of New Zealand02aReserve bank of New ZealandxPériodiques aFinancesyNouvelle-ZélandexPériodiques02aReserve Bank of New Zealand 3aFRbCCN0110-70704 uhttp://www.rbnz.govt.nz/about/Whatwedo/0094054.html4 zContenu : texte intégral du rapport depuis 19971 b(1983)-(2007)cParisdMagasins/AnnexeeP 4° 5292 aZGRA aGEO RJ3.02 Nouvelle-Zélande aDEW 33200938nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000104001502100051002542300024003053260011003296010046003406060046003867100032004328010013004648560056004778560053005339550005005869920033005919920012006240001137569000113756920130319051058.0 a0001137569 a a19979999k fre 01 ba0 aeng aNZ ar aak z  adr 10aAnnual report - Reserve Bank of New Zealandb[Ressource électronique]fReserve Bank of New Zealand aWellingtoncReserve Bank of New Zealandd1997- aRevue électronique aAnnuel02aReserve bank of New ZealandxPériodiques aFinancesyNouvelle-ZélandexPériodiques02aReserve Bank of New Zealand 0aFRbFNSP4 uhttp://www.rbnz.govt.nz/about/Whatwedo/0094054.html zContenu : texte intégral du rapport depuis 19971 r aGEO RJ3.02 Nouvelle-Zélande aDEW 33201127nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000400015421000400019430000470023432600110028151000440029253000430033660600360037960700510041571000230046685601360048995500470062595500550067297200090072799100180073699200230075499200120077703965012X000004788720130918095943.01 a0559-2712 aFNSP241537 a0000047887 a19900101a19619999 ba0 aeng aIS aaka 10aAnnual reportfSeđlabanki Íslands aReykjavikcSedlabanki Islandd1961- aEn version électronique à partir de 2006 aAnnuel10aAnnual report - Central Bank of Iceland10aAnnual report‎bSeðlabanki Íslands aFinancesyIslandexPériodiques aIslandexConditions économiquesxPériodiques02aSedlabanki Islands uhttp://www.cb.is/publications-news-and-speeches/publications/annual-report/zContenu : texte intégral du rapport à partir de 19971 b(2005)cParisdMagasins/AnnexeeP 4° 71551 b(1982) -(2004)cParisdMagasins/AnnexeeP 8° 5124 aZGRA aexempb201011 aGEO RA3.05 Islande aDEW 33200993nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000091001502100040002412300024002813260011003055100044003166060036003606070051003967100023004478010013004708560103004838560053005869550005006399920023006449920012006670001133377000113337720130319051058.0 a0001133377 a a19979999k fre 01 ba0 aeng aIS ar aak z  adr 10aAnnual report - Seđlabanki Íslandsb[Ressource électronique] /fSeđlabanki Íslands aReykjavikcSedlabanki Islandd1997- aRevue électronique aAnnuel10aAnnual report - Central Bank of Iceland aFinancesyIslandexPériodiques aIslandexConditions économiquesxPériodiques02aSedlabanki Islands 0aFRbFNSP4 uhttp://www.sedlabanki.is/interpro/sedlabanki/sedlabanki.nsf/pages/F59CDB8A90532154002568E00041BE8E zContenu : texte intégral du rapport depuis 19971 r aGEO RA3.05 Islande aDEW 33200954nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000092001502100044002422300024002863260011003106010041003216060037003626070052003997100027004518010013004788560050004918560058005419550005005999920024006049920012006280001174110000117411020130319051058.0 a0001174110 a a19999999k fre 01 ba0 aeng aPK ar aak z  adr 10aAnnual report - State bank of Pakistan[Ressource électronique]fState bank of Pakistan aaKarachicState Bank of Pakistand1999- aRevue électronique aAnnuel02aState Bank of PakistanxPériodiques aFinancesyPakistanxPériodiques aPakistanxConditions économiquesxPériodiques02aState Bank of Pakistan 0aFRbFNSP4 uhttp://www.sbp.org.pk/publications/index2.asp4 zContenu : texte intégral du rapport depuis 1999/20001 r aGEO RG4.03 Pakistan aDEW 33201153nas 2200349 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000038001552100040001933000047002333260011002804300047002915300038003386010036003766100046004127120022004588560061004808560052005419550054005939550053006479550057007009720009007579920022007669920015007880000123888000012388820130410091224.01 a0347-5042 aFNSP509443 a0000123888 a19940413a19719999 ba0 aeng aSE aaka 10aAnnual report - Sveriges Riksbank aStockholmcSveriges Riksbankd1971- aEn version électronique à partir de 2006 aAnnuel 1aArsbok - Sveriges riksbank 00aAnnual report - Sveriges Riksbank02aSveriges RiksbankxPériodiques0 a* BanquesxRapportsySuèdexPériodiques02aSveriges Riksbank4 uhttp://www.riksbank.com/templates/YearList.aspx?id=106334 zContenu : accès au texte intégral depuis 19971 b(1971)-(1979)cParisdMagasins/AnnexeeCOL8°05081 b1980)-(1993)cParisdMagasins/AnnexeeP 8° 53511 b(b(1994) -(2005)cParisdMagasins/AnnexeeP 4° 6456 aZGRA aGEO RA3.02 Suède aDEW 332.0600884nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000085001502100040002352300024002753260011002996010036003106060046003467100022003928010013004148560061004278560052004889550005005409920022005459920015005670001133364000113336420130319051058.0 a0001133364 a a19979999k fre 01 ba0 aeng aSE ar aak z  adr 10aAnnual report - Sveriges Riksbankb[Ressource électronique] /sfSveriges Riksbank aStockholmcSveriges Riksbankd1997- aRevue électronique aAnnuel02aSveriges RiksbankxPériodiques0 a* BanquesxRapportsySuèdexPériodiques02aSveriges Riksbank 0aFRbFNSP4 uhttp://www.riksbank.com/templates/YearList.aspx?id=106334 zContenu : accès au texte intégral depuis 19971 r aGEO RA3.02 Suède aDEW 332.0601030nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000065001552100033002203260011002534300087002645300065003516060057004167120047004738560054005209550052005749550054006269720009006809920023006899920016007120000071067000007106720130319051058.01 a0147-5568 aFNSP325772 a0000071067 a19900101a19759999 ba0 aeng aUS aaka 10aAnnual report - United States International Trade Commission aWashington, D.C.cITCd1975- aAnnuel 1aAnnual report of the United States Tariff Commission (0083-3428) < Coll. 8°0279 >00aAnnual report - United States International Trade Commission aCommerce extérieurxDroityEtats-UnisxPériodiques01aEtats-UnisbInternational Trade Commission uhttp://www.usitc.gov/press_room/annual_report.htm1 b(1980) -…cParisdMagasins/AnnexeeP 4° 57661 b(1976)-(1979)cParisdMagasins/AnnexeeCOL8°0279 aZGRA aGEO RC2 Etats-Unis aDEW 380-38200900nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000075001502100032002252300024002573260011002816010032002926060034003246070049003587100018004078010013004258560027004388560053004659550005005189910018005239920021005419920012005620001173832000117383220131118142313.0 a0001173832 a a19969999k fre 01 ba0 aeng aGH ar aak z  adr 10aAnnual report -Bank of Ghanab[Ressource électronique]fBank of Ghana aAccracBank of Ghanad1996- aRevue électronique aAnnuel02aBank of GhanaxPériodiques aFinancesyGhanaxPériodiques aGhanaxConditions économiquesxPériodiques02aBank of Ghana 0aFRbFNSP4 uhttp://www.bog.gov.gh/4 zContenu : texte intégral du rapport depuis 20041 r aexempb201311 aGEO RF1.15 Ghana aDEW 33200968nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000092001502100035002422300024002773260011003016010034003126060044003466070059003907100020004498010013004698560071004828560053005539550005006069920031006119920012006420001134321000113432120130319051058.0 a0001134321 a a20009999k fre 01 ba0 aeng aGB ar aak z  adr 10aAnnual report and account - Bank of Englandb[Ressource électronique]fBank of England aLondoncBank of Englandd2000- aRevue électronique aAnnuel02aBank of EnglandxPériodiques aFinancesyGrande-BretagnexPériodiques aGrande-BretagnexConditions économiquesxPériodiques02aBank of England 0aFRbFNSP4 uhttp://www.bankofengland.co.uk/publications/annualreport/index.htm zContenu : texte intégral du rapport depuis 20001 r aGEO RA4.02 Grande-Bretagne aDEW 33201029nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006600154210002300220326001100243437003500254530007200289601002200361606005600383606004300439710000800482856009900490955006500589991001800654992003100672992001200703040090981000025860420130328113041.01 a0958-6083 aFNSP900079 a0000258604 a19981028a19869999 ba0 aeng aGB aaka 10aAnnual report and accounts / British Broadcasting Corporation aLondoncBBCd1986- aAnnuel 1tBBC handbook (1986)x2048-005910aAnnual report and accounts - British Broadcasting Corporationb198702aBBCxPériodiques aSociétésxRapportsyGrande-BretagnexPériodiques aMédiasyGrande-BretagnexPériodiques02aBBC4 uhttp://www.bbc.co.uk/search/?q=annual%20reportzAccès au texte intégral de l'année en cours1 b(1986/1987) -(1998/1999)cParisdMagasins/AnnexeeP 4° 5930 aexempb201303 aGEO RA4.02 Grande-Bretagne aDEW 07001056nas 2200301 i 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102110001600109200006600125210004500191300004700236326001100283601003900294606004100333607005600374710002500430856009900455955005500554955007800609972000900687991001800696992002800714992001200742037450204000006209320130620161948.0 aFNSP283947 a19900101a19659999 ba0 aeng aSL aaka 10aAnnual report and statement of accountsfBank of Sierra Leone aFreetowncBank of Sierra Leoned1965-... aEn version électronique à partir de 2006 aAnnuel02aBank of Sierra LeonexPériodiques aFinancesySierra LeonexPériodiques aSierra LeonexConditions économiquesxPériodiques02aBank of Sierra Leone4 uhttp://www.bsl.gov.sl/articles_publications.htmlzContenu : texte intégral du dernier rapport1 b(1999) -(2005)cParisdMagasins/AnnexeeP 4° 68701 b(1981) - (1988) ; (1993) -(1997/1998)cParisdMagasins/AnnexeeP 8° 4742 aZGRA aexempb201106 aGEO RF1.25 Sierra Leone aDEW 33200958nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000116001502100042002662300024003083260011003326010039003436060041003826070056004237100025004798010013005048560050005178560049005679920028006169920012006440001110313000111031320130319051058.0 a0001110313 a a20069999k fre 01 ba0 aeng aSL ar aak z  ad 10aAnnual report and statement of accounts - Bank of Sierra Leoneb[Ressource électronique]fBank of Sierra Leone aFreetowncBank of Sierra Leoned2006- aRevue électronique aAnnuel02aBank of Sierra LeonexPériodiques aFinancesySierra LeonexPériodiques aSierra LeonexConditions économiquesxPériodiques02aBank of Sierra Leone 0aFRbFNSP4 uhttp://www.bankofsierraleone-centralbank.org/ zContenu : texte intégral du dernier rapport aGEO RF1.25 Sierra Leone aDEW 33200911nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000104001502100034002542300024002883260011003126010033003236060035003566070050003917100019004418010013004608560023004738560053004969920022005499920014005719920012005850001170794000117079420130319051058.0 a0001170794 a a20049999k fre 01 ba0 aeng aZM ar aak z  adr 10aAnnual report and statement of accounts - Bank of Zambiab[Ressource électronique]fBank of Zambia aLusakacBank of Zambiad2004- aRevue électronique aAnnuel02aBank of ZambiaxPériodiques aFinancesyZambiexPériodiques aZambiexConditions économiquesxPériodiques02aBank of Zambie 0aFRbFNSP4 uhttp://www.boz.zm/ zContenu : texte intégral du rapport depuis 2004 aGEO RF3.17 Zambie aDEW 330.9 aDEW 33200986nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000122001502100042002722300024003143260011003386010042003496060036003916070051004277100028004788010013005068560058005198560053005779550005006309920023006359920014006580001137562000113756220130319051058.0 a0001137562 a a19999999k fre 01 ba0 aeng aNG ar aak z  adr 10aAnnual report and statement of accounts - Central Bank of Nigeriab[Ressource électronique]fCentral Bank of Nigeria aLagoscCentral Bank of Nigeriad1999- aRevue électronique aAnnuel02aCentral Bank of NigeriaxPériodiques aFinancesyNigeriaxPériodiques aNigeriaxConditions économiquesxPériodiques02aCentral Bank of Nigeria 0aFRbFNSP4 uhttp://www.cenbank.org/documents/cbnannualreports.asp zContenu : texte intégral du rapport depuis 19991 r aGEO RF1.23 Nigeria aDEW 330.901092nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005600139210005000195326001100245430006000256517005100316606005800367710005200425856012900477955005500606955005500661972000900716991001800725992003100743992001600774039325733000005037320140108153337.01 a0269-3100 aFNSP246945 a19900101a19789999 ba0 aeng aGB aaka 10aAnnual report of the Commission for Racial Equality aLondoncCommission for Racial Equalityd1978- aAnnuel 1tReport of the Commission for Racial Equalityx0142-087910aAnnual report - Commission for Racial Equality aDiscrimination racialeyGrande-BretagnexPériodiques02aGrande-BretagnebCommission for Racial Equality uhttp://www.equalityhumanrights.com/about-us/corporate-reporting/annual-reports/zAccés libre au texte intégral depuis 20061 b(1982) -(2007)cParisdMagasins/AnnexeeP 4° 60671 b(1977) -(1981)cParisdMagasins/AnnexeeP 8° 4128 aZPAY aexempb201401 aGEO RA4.02 Grande-Bretagne aDEW 305-30601188nas 2200289 i 450 002001100000005001700011011001400028035001500042100004100057101000800098102000700106106000600113110001600119200010300135210005700238326001100295430011600306451012900422601005900551710003500610856009800645955005600743955005500799972000900854992002100863992001400884000007167020140116115927.01 a0250-7498 aFNSP328291 a19900101a19789999 f ba0 aeng aUS ar aaka 10aAnnual report of the Executive Board for the financial year ended ...fInternational Monetary Fund aWashington, D.C.cInternational Monetary Fundd1978- aAnnuel 1aAnnual report of the Executive Directors for the fiscal year ended ... - International Monetary Fundx0085-2171 1aRapport annuel du Conseil d'administration pour l'exercice financier clos le ... - Fonds monétaire internationalx0250-750102aFonds monétaire internationalxFinancesxPériodiques02aFonds monétaire international uhttp://www.imf.org/external/pubs/ft/ar/index.htmzAccés libre au texte intégral depuis 19961 b(1985) -(2009);cParisdMagasins/AnnexeeP 4° 69601 b(1978) -(1984)cParisdMagasins/AnnexeeCOL4°2421 aZGRA aGEO RQ Universel aDEW 341.201175nas 2200313 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000112001412100046002533000047002993260011003464300110003576010044004676060038005116070064005497100030006138560055006438560053006989550055007519910018008069920025008249920012008490000071065000007106520130319051059.0 aFNSP325766 a0000071065 a19900101a19859999 ba0 aeng aLK aaka 10aAnnual report of the Monetary board to the Hon. Minister of Finance and PlanningfCentral Bank of Sri Lanka aColombocCentral Bank of Sri Lankad1985- aEn version électronique à partir de 2005 aAnnuel 1aAnnual report of the Monetary board to the Hon. Minister of Finance and planning - Central Bank of Ceylon02aCentral Bank of Sri LankaxPériodiques aFinancesySri LankaxPériodiques aSri LankaxConditions économiquesz1948-....xPériodiques02aCentral Bank of Sri Lanka4 uhttp://www.cbsl.gov.lk/info/10_publication/p_1.htm4 zContenu : texte intégral du rapport depuis 20051 b(1985) -(1989)cParisdMagasins/AnnexeeP 8° 5137 aexempb201011 aGEO RI1.16 Sri Lanka aDEW 33200932nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005600154210003500210326001100245606005400256710004700310856006500357856003600422955005500458955005500513972000900568991001800577992002300595992001200618038883945000008889120130319051059.01 a0083-2200 aFNSP391774 a0000088891 a19900101a19369999 ba0 aeng aUS aaka 10aAnnual report of the National Labor Relations Board aWashington, D.C.cUSGPOd1936- aAnnuel aRelations industriellesyEtats-UnisxPériodiques aEtats-UnisbNational Labor Relations Board4 uhttp://www.nlrb.gov/publications/reports/annual_reports.aspx4 zAccès libre au texte intégral1 b(1953) -(1977)cParisdMagasins/AnnexeeCOL8°18151 b(1980) -(2005)cParisdMagasins/AnnexeeP 8° 5266 aZPAY aexempb201110 aGEO RC2 Etats-Unis aDEW 33101023nas 2200289 i 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102110001600109200006000125210003900185326001100224440008300235601006500318606004400383710005100427856009100478955004700569955005500616972000900671991001800680992002300698992001200721036166871000007113920131120115843.0 aFNSP326314 a19900101b19342004 ba0 aeng aUS aaka 10aAnnual report of the Securities and Exchange Commission aWashington, D.C.cUSGPOd1934-2004 aAnnuel 1tPerformance and accountability reportfU.S. Securities and Exchange Commission02aEtats-UnisbSecurities and Exchange CommissionxPériodiques aBoursexDroityEtats-UnisxPériodiques02aEtats-UnisbSecurities and Exchange Commission4 uhttp://www.sec.gov/about/secreports.shtmlzaccés libre au texte intégral depuis 20011 b(2003)cParisdMagasins/AnnexeeP 4° 70971 b(1985) -(2002)cParisdMagasins/AnnexeeP 8° 5539 aZPAY aexempb201109 aGEO RC2 Etats-Unis aDEW 33201012nas 2200301 i 450 002001100000005001700011100004100028101000800069102000700077105001800084106000600102110001600108200005600124210003700180326001100217430002900228517006100257606004400318607004900362712001900411801001300430856015100443955006000594972000900654992002100663992001400684992001200698000047227720131125152456.0 a b20012008k a fre ba0 aeng aJP a 0  ar aak z 0 10aAnnual report on Japan's economy and public finance aTokyocCabinet Officed2001-2008 aAnnuel 1tEconomic survey of Japan10aAnnual report on the japanese economy and public finance aFinances publiquesyJaponxPériodiques aJaponxConditions économiquesxPériodiques02aJaponbCabinet 0aFRbFNSP4 uhttp://nsearch.cao.go.jp/cao/search.x?q=annual+report+on+japan%27s+economy+and+public+finance&mode_ja_cao=ja_cao&page=1&ie=UTF-8&tmpl=en&x=29&y=201 b(2000/2001) -(2007)cParisdMagasins/AnnexeeP 8° 6638 aZPAY aGEO RI3.22 Japon aDEW 330.9 aDEW 33200962nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000076001502100032002262300024002583260011002826010032002936060034003256060046003596070049004057100018004548010013004728560060004858560053005459550005005989920021006039920012006240001114503000111450320130319051059.0 a0001114503 a a19999999k fre 01 ba0 aeng aJP ar aak z  adr 10aAnnual review - Bank of Japanb[Ressource électronique]fBank of Japan aTokyocBank of Japand1999- aRevue électronique aAnnuel02aBank of JapanxPériodiques aFinancesyJaponxPériodiques aPolitique monétaireyJaponxPériodiques aJaponxConditions économiquesxPériodiques02aBank of Japan 0aFRbFNSP4 uhttp://www.boj.or.jp/en/type/release/teiki/ar/index.htm zContenu : texte intégral du rapport depuis 19991 r aGEO RI3.22 Japon aDEW 33201133nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006400139210006400203300004700267326001100314530006500325601003900390606003300429607004800462710002500510830005600535856007100591955006000662972000900722991001800731992002000749992001200769992001400781037374354000006175320131218120606.01 a1560-4764 aFNSP282245 a19900101a00019999 ba0 aeng aIR aaka 10aAnnual reviewfCentral Bank of the Islamic Republic of Iran aTehrancCentral Bank of the Islamic Republic of Irand0001- aEn version électronique à partir de 2000 aAnnuel10aAnnual review - Central Bank of the Islamic Republic of Iran02aCentral Bank of IranxPériodiques aFinancesyIranxPériodiques aIranxConditions économiquesxPériodiques02aCentral Bank of Iran a1990/1991-2005 collection envoyée au CTLES en 20134 uhttp://www.cbi.ir/default_en.aspxzAccés libre au texte intégral1 b(1990/1991) -(2005)cParisdMagasins/AnnexeeP 4° 6457 aZGRA aexempb201306 aGEO RG4.02 Iran aDEW 332 aDEW 330.900994nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000137001502100064002872300024003513260011003756010039003866060033004256070048004587100025005068010013005318560038005448560067005829550005006499920012006549920014006660001131193000113119320130319051059.0 a0001131193 a a20009999k fre 01 ba0 aeng aIR ar aak z  adr 10aAnnual review - Central Bank of the Islamic Republic of Iranb[Ressource electronique]fCentral Bank of the Islamic Republic of Iran aTehrancCentral Bank of the Islamic Republic of Irand2000- aRevue électronique aAnnuel02aCentral Bank of IranxPériodiques aFinancesyIranxPériodiques aIranxConditions économiquesxPériodiques02aCentral Bank of Iran 0aFRbFNSP4 uhttp://www.cbi.ir/default_en.aspx4 zContenu : texte intégral du rapport depuis l'édition 2000/011 r aDEW 332 aDEW 330.901304nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210004900188326001100237430004700248530004100295606003200336801002100368856012800389856010800517856009000625856010800715955005200823955005200875972000900927991001800936992001200954036635359000000595920130319051059.0 a0084-6570 aFNSP109470 a0000005959 a19900101a19729999 ba0 aeng aUS aaku 10aAnnual review of anthropology aPalo Alto, CalifcAnnual Reviews Inc.d1972- aAnnuel 1aBiennial review of anthropologyx0067-8503 0aAnnual review of anthropologybPrint aAnthropologiexPériodiques 3aFRbCCN0084-65704 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=AOA&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00846570.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1972-1979)cParisdMagasins/AnnexeeCOL8°31261 b(1980)-....cParisdMagasins/AnnexeeP 8° 5486 aZPAY aexempb201109 aDEW 30101277nas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200008900180207001000269210005000279532002800329606005200357606005300409606004400462676000800506710005200514801003000566801002300596802000700619856006600626856005100692955006200743955005300805992002100858992001200879113969449000110316420130319051059.01 a1932-5819 aissn19325819 a0001103164 a20070419a20069999k y0frey0103 ba0 aeng aUS ay 0  ar azka 0uu 10aAnnual review of global peace operations /fCenter on International Cooperation (CIC) 0a2006- aBoulder, COcLynne Rienner Publishersdc2006-10aGlobal peace operations aMaintien de la paixxStatistiquesxPériodiques aGestion des conflitsxStatistiquesxPériodiques aSécurité internationalexPériodiques a32702aCenter on International Cooperationc(New York) 3aFRbAbesc20070419gAFNOR 3aFRbISSNc20070419 a014 uhttp://www.cic.nyu.edu/internationalsecurity/globalpeace.html zContenu : sommaire du dernier rapport en ligne1 bLa dernière annéecParisd30, Salle 1er étageeDEW 3271 b(2006) -....cParisdMagasins/AnnexeeP 4° 7200 aGEO RQ Universel aDEW 32700929nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005600154207003200210210003800242326001100280517001000291606004400301712004500345801002100390856003800411856003700449955005400486957005400540972000900594992001200603032914091000000603920130611162344.01 a0066-4200 aFNSP109568 a0000006039 a19900101a19669999 ba0 aeng aUS aaku 10aAnnual review of information science and technology 1aVol.1 (1966)-vol. 45 (2011) aWashington, D.C.cASISd1966-2011 aannuel10aARIST aSciences de l'informationxPériodiques02aAmerican Society for Information Science 3aFRbCCN0066-42004 uhttp://www.interscience.wiley.com zAccès libre au texte intégral.1 b(2007)-(2011)cParisdMagasins/annexeeP 8° 64871 b(1966/1975)cParisdMagasins/AnnexeeP Index 0645 aZPAY aDEW 02001001nas0 2200313 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109110001600127200004400143207001900187210004200206301004200248301004000290326001100330452005500341606003600396606002400432801003000456856010000486955005900586972000900645992002100654992001200675095324062000096266220131202173412.0 a0000962662 a20060126a20059999 y0undy0103 ba0 aeng aUS a 0  azka 0yy 00aAnnual review of law and social science 0aVol. 1 (2005)- aPalo Alto, CAcAnnual Reviewsdc2005- aDemande de numerotation ISSN en cours aISSN sur la publication : 1550-3585 aAnnuel 0tAnnual review of law and social sciencex1550-3631 aSciences socialesxPériodiques aDroitxPériodiques 3aFRbAbesc20060126gAFNOR4 uhttp://www.annualreviews.org/catalog/2005/ls01.aspzAccès aux sommaires depuiq le vol. 1, 20051 bvol. 1 (2005)-....cParisdMagasins/AnnexeeP 8° 6882 aZSAB aGEO RQ Universel aDEW 30000940nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154207002400193210004900217326001100266530006600277606003600343856009400379856009400473955007000567972000900637992001600646060335432000024920420130319051059.01 a1094-2939 aFNSP872759 a0000249204 a19900101a19989999 ba0 aeng aUS aaka 10aAnnual review of political science 1aVol. 1 no. 1(1998)- aPalo Alto, CalifcAnnual Reviews Inc.d1998- aAnnuel00aAnnual review of political scienceb(Palo Alto, Calif. Print) aScience politiquexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://arjournals.annualreviews.org/loi/polisci zContenu : sommaires ; résumés ; index auteurs et mots-clés ; depuis le numéro 1, 19981 bno. 1 (1998) -....cParisdBibliothèque de rechercheeP 8° 6464 aZPAY aDEW 320-32101129nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210004900185326001100234606002900245801002100274856012800295856010800423856009000531856010800621955005900729972000900788991001800797992001200815039504158000000602920131025113515.01 a0360-0572 aFNSP109556 a0000006029 a19900101a19759999 ba0 aeng aUS aaku 10aAnnual review of sociology aPalo Alto, CalifcAnnual Reviews Inc.d1975- aAnnuel aSociologiexPériodiques 3aFRbCCN0360-05724 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=ASO&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03600572.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1975) -....cParisdMagasins/AnnexeeP 8° 3748 aZPAY aexempb201103 aDEW 30101168nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200010000139210002400239326001100263517003900274530010100313601006500414606006700479710005100546856010300597955005500700955007400755972000900829992001600838992001200854044717989000007856920140117102223.01 a0475-0608 aFNSP353557 a19900101a00019999 f ba0 aeng aAT aaka 10aAnnual statistical bulletinfOrganization of the Petroleum Exporting Countries. Statistics Unit aViennacOPECd0001- aAnnuel10aAnnual statistical bulletin - OPEC00aAnnual statistical bulletin - Organization of the Petroleum Exporting Countries. Statistics Unit02aOrganisation des pays exportateurs de pétrolexPériodiques aPétrole‎xIndustrie et commercexStatistiquesxPériodiques02aOrganisation des pays exportateurs de pétrole uhttp://www.opec.org/opec_web/en/publications/202.htm/zAccés libre au texte intégral depuis 19991 b(2002) -(2008)cParisdMagasins/AnnexeeP 4° 70161 b(1967) -(1969) ; (1971) -(2000)cParisdMagasins/AnnexeeCOL 4° 3316 aZPAY aDEW 310-319 aDEW 33301111nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000560013921000480019532600110024353000570025460600500031160700740036160700650043571000290050080100210052985600920055095500550064297200090069799100180070699200230072499200220074799200160076903927991X000001132620131213125015.01 a0255-8440 aFNSP124461 a19900101a19729999 ba0 aeng aZW aaku 10aAnnual statistical digestfCentral Bank of Barbados aBridgetowncCentral Bank of Barbadosd1972- aAnnuel10aAnnual statistical digest - Central Bank of Barbados aFinancesyBarbadexStatistiquesxPériodiques aRégion caraïbexConditions économiquesxStatistiquesxPériodiques aBarbadexConditions économiquesxStatistiquesxPériodiques02aCentral Bank of Barbados 3aFRbCCN0255-84404 uhttp://www.centralbank.org.bb/zAccè libre texte intégral du dernier rapport en ligne1 b(1988) -(2006)cParisdMagasins/AnnexeeP 4° 5394 aZGRA aexempb201312 aGEO RD3.12 Barbade aGEO RD3 Caraïbes aDEW 310-31901059nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000110001502100048002602300024003083260011003326060050003436070065003936070074004587100029005328010013005618560035005748560058006099550005006679920023006729920022006959920016007170001131327000113132720130319051059.0 a0001131327 a a20069999k fre 01 ba0 aeng aZW ar aak z  adr 10aAnnual statistical digest - Central Bank of Barbadosb[Ressource électronique]fCentral Bank of Barbados aBridgetowncCentral Bank of Barbadosd2006- aRevue électronique aAnnuel aFinancesyBarbadexStatistiquesxPériodiques aBarbadexConditions économiquesxStatistiquesxPériodiques aRégion caraïbexConditions économiquesxStatistiquesxPériodiques02aCentral Bank of Barbados 0aFRbFNSP4 uhttp://www.centralbank.org.bb/ zContenu : texte intégral du dernier rapport en ligne1 r aGEO RD3.12 Barbade aGEO RD3 Caraïbes aDEW 310-31900970nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210002700188326001600215422006900231606003600300710003900336801002100375856004200396856004600438955005200484955006700536991001800603992002300621992001200644038839725000000864420130319051059.01 a0066-4413 aFNSP115271 a0000008644 a19900101a19429999 ba0 aeng aUS aaha 10aAnnual survey of American law aNew YorkcNYUSLd1942- aTrimestriel 1aNew York University law review (1950) (0028-7881) < P 8° 2482 > aDroityEtats-UnisxPériodiques02aNew York UniversitybSchool of Law 3aFRbCCN0066-44134 uhttp://www.nyu.edu/pubs/annualsurvey/ zContenu : sommaires, numéros 2 et 3,19961 b(1961-1967)cParisdMagasins/AnnexeeCOL8°46311 bno. 1 (1982) -no. 4 (1996)cParisdMagasins/AnnexeeP 8° 4637 aexempb201106 aGEO RC2 Etats-Unis aDEW 34901206nas 2200349 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000033001552100049001883260011002375300033002486070039002816760008003207120047003288010021003758560025003969550055004219550053004769550203005299550065007329720009007979920022008069920012008289920016008400000070385000007038520131023105243.01 a0066-4545 aFNSP323624 a0000070385 a19900101a18789999 ba0 aita aIT aaku 10aAnnuario statistico italiano aRomacIstituto centrale di statisticad1878- aannuel00aAnnuario statistico italiano aItaliexStatistiquesxPériodiques a31402aIstituto nazionale di statisticac(Italie) 3aFRbCCN0066-45454 uhttp://www.istat.it/1 bLa dernière annéecParisd27, 1er EtageeDEW 3141 b(1980) -....cParisdMagasins/AnnexeeP 4° 54931 b(1886) -(1890) ; (1892) ; (1895) ; (1897) ; (1904) -(1907) ; (1911) ; (1915) ; (1928) ; (1930) -(1939) ; (1942) ; (1944) -(1951) ; (1953) -(1970) ; (1972) -(1979)cParisdMagasins/AnnexeeCOL4°01661 b(1878) ; (1881) ; (1884)cParisdMagasins/AnnexeeCOL8°0234 aZGRA aGEO RA6.03 Italie aDEW 945 aDEW 310-31900916nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004900163210005900212326001800271606003700289606003200326710008800358801001300446856005100459856003300510955007400543972000900617073879681000051970420130319051059.01 a1638-8437 a0000519704 a b20022003k fre ba0 afre aFR a 0  ar aai z 0 10aAnthropoliserevue d'anticipation culturelle aPariscEditions des Archives contemporainesd2002-2003 a3 n°s par an aVie intellectuellexPériodiques aAnthropologiexPériodiques02aLaboratoire d'anthropologie des institutions et des organisations socialesc(Paris) 0aFRbFNSP uhttp://www.laios.msh-paris.fr/anthropolis.html zsommaires à partir du n° 11 bvol. 1 no. 1 (2002) -no. 2 (2003)cParisdMagasins/AnnexeeP 4° 6961 aZPAY01183nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000032001552100048001873260022002356060029002576060032002867100071003188010021003898560046004108560093004568560036005498560036005859550093006219570092007149720009008069910018008159920012008330000008646000000864620130319051059.01 a0702-8997 aFNSP115278 a0000008646 a19900101a19779999 ba0 afre aCA aaia 10aAnthropologie et sociétés aQuébeccAnthropologie et sociétésd1977- aTrois fois par an aSociologiexPériodiques aAnthropologiexPériodiques02aUniversité Lavalc(Québec, Canada)bDépartement d'anthropologie 3aFRbCCN0702-89974 uhttp://www.fss.ulaval.ca/ant/revuant.html zContenu : sommaires ; index par auteurs et thèmes ; depuis 1979 ; résumés depuis 19904 uhttp://www.erudit.org/revue/as/ zAccès libre au texte intégral1 bvol. 1 no. 2 et 3 (1977) ; vol. 3 no. 1 (1979) -....cParisdMagasins/AnnexeeP 8° 46801 b(1977) -(1979) ; (1977) -(1987) ; (1977) - (1997)cParisdMagasins/AnnexeeP Index 0388 aZPAY aexempb201003 aDEW 30101337nls 2200337 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000104001642100114002683000056003823260016004383360056004543370071005106060067005816060045006487100041006938010013007348560090007478560108008379550005009459920033009509920016009830000800495000080049520130319051100.01 a0161-7761 a0000800495 a a19769999k fre 01 ba0 aeng aUS az aah z  adr 10aAnthropology & education quarterlyb[Ressource électronique]fAmerican Anthropological Association aWashingtoncCouncil on Anthropology and EducationaArlington, VAcAmerican Anthropological Associationd1976- aTexte intégral depuis le Vol. 7, n°3, August 1976 aTrimestriel aDonnées textuelles accessibles uniquement en ligne aTéléchargement de fichiers TIFF, PDF (recommandé) ou PostScript aAnthropologiexEtude et enseignementyEtats-UnisxPériodiques aSociologie de l'éducationxPériodiques02aAmerican Anthropological Association 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01617761.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RS Sans aspect régional aDEW 370-37901281nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000050001502100051002003000005002513260014002563360024002703370063002944300073003574520034004306060032004648010013004968560090005098560108005998560128007078560108008359920012009430000462576000046257620130319051100.0 a0000462576 a a19859999k fre 01 ba0 aeng aGB az aae z  adr 10aAnthropology todayb[Ressource électronique] aLondoncRoyal Anthropological Instituted1985- a aBimensuel aRevue électronique aFichiers images et PDF en consultation ou téléchargement 1tRAIN. Royal Anthropological Institute news [Ressource électronique] 1tAnthropology todayx0268-540X aAnthropologiexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0268540X.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=AOY&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aDEW 30100869cas0 2200301 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200001200156207002300168210004600191326001600237606004400253801003000297801002300327802000700350856005100357856006300408955007100471972000900542992001600551076263835000073089620130319051100.01 a1761-9610 aissn17619610 a0000730896 a20030523b20032004 0fre 0103 ba0 afre aFR aah 10aAnticor 1aN°1 (avril 2003)- aLatresnecEd. Le Bord de l'eaud2003-2004 aTrimestriel aIdées politiquesyFrancexPériodiques 3aFRbAbesc20040204gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.c6r.org/article.php3?id_article=4784 zContenu : accès aux sommaires du n°1, 2003 au n°3, 20041 bno. 1 (avr-2003) -no. 3 (2004)cParisdMagasins/AnnexeeP 8° 6791 aZCAD aDEW 320-32101026nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210004800177326001600225606003700241856012800278856010800406955009000514957010500604972000900709991001800718992001200736038665832000000931020130319051101.01 a0003-603X aFNSP116501 a0000009310 a19900101a19559999 ba0 aeng aUS aaha 10aAntitrust bulletin aNew YorkcFederal Legal Publicationsd1955- aTrimestriel aConcurrencexDroitxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=ATT&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 14 no. 1 (pri-1969) -vol. 54 no.4 (hiv-2009)cParisdMagasins/AnnexeeP 8° 26861 bvol. 1 (1955) -vol. 20 (1975) ; vol. 21 (1976) -vol. 30 (1985)cParisdMagasins/AnnexeeP Index 0603 aZPAY aexempb201105 aDEW 34301114cas0 2200349 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164110001600171200005400187210007500241430006200316606004400378710005100422801003000473801003000503801002300533802000700556856005800563856004600621955005500667972000900722992002100731992001200752037418300000090496720130319051101.01 a1139-5222 a05868798X accn7202/576X aissn11395222 a0000904967 a19980825a19929999 0fre 0103 ba0 aspa aES azk 10aAnuario CIPfCentro de Investigación para la Paz aBarcelonacIbariaaMadridcCentro de Investigación para la Pazd1992- 1tAnuario - Centro de Investigación para la Pazx1575-0108 aRelations internationalesxPériodiques02aCentro de investigación para la pazc(Madrid) 3aFRbAbesc20040912gAFNOR 3aFRbAbesc20040912gAFNOR 3aFRbISSNc20010829 a0u4 uhttp://www.fuhem.es/libreria/coleccion.aspx?c=40&a=244 zContenu : sommaires depuis le n° de 19971 b(2003)-(2004)cParis,bMagasins/AnnexeeP 8° 6843 aZPAY aGEO RQ Universel aDEW 32701092nas 2200325 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000023001412100068001643260012002324300061002446060035003056060042003406060054003827120062004368560040004988560062005389550074006009720009006749910018006839920025007019920028007269920012007540000269661000026966120130319051101.0 aFNSP932858 a0000269661 a19990406a19989999 ba0 aspa aVE aala 10aAnuario de derecho aMérida, VenezuelacCentro de investigaciones jurídicasd1998- aBiennal 1aAnuario de la Facultad de ciencias juridicas y politicas aDroityVenezuelaxPériodiques aDroityAmérique latinexPériodiques aScience politiqueyAmérique latinexPériodiques02aCentro de investigaciones jurídicas (Mérida, Venezuela)4 uhttp://saber.ula.ve/anuarioderecho/ zContenu : accès au texte intégral depuis le n°23, 20011 bno. 20 (1997/1998) -no. 24 (2002)cParisdMagasins/AnnexeeP 8° 2926 aZECH aexempb200904 aGEO RD4.20 Venezuela aGEO RD Amérique latine aDEW 34900926nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005400154210006400208326001100272606004900283710003000332711002600362856006300388856004500451955006700496972000900563991001700572992002300589992001200612036306584000001832820130319051101.01 a1130-4243 aFNSP150048 a0000018328 a19901123a19899999 ba0 aspa aES aaka 10aAnuario de derecho constitucional y parlamentario aMurciacAsamblea Regional, Servicio de Publicacionesd1989- aAnnuel aDroit constitutionnelyEspagnexPériodiques02aMurcie. Asamblea regional02aUniversidad de Murcia4 uhttp://www.um.es/dp-fundamentos/constitucional/anuario.php zContenu : sommaires depuis le n°1, 19891 bno. 1 (1989) -no 15 (2003)cParisdMagasins/AnnexeeP 8° 5680 aZGRA aexemp$201110 aGEO RA6.02 Espagne aDEW 34201242nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005600139210003700195326001100232430005500243517006100298607004900359607004900408710008300457856019900540955010200739972000900841992002800850992002200878992001200900992001600912040150208000009033720131217120131.01 a1014-0697 aFNSP397980 a19900101a19859999 f ba0 aspa aCL aaka 10aAnuario estadístico de América latina y el Caribe aSantiago de ChilecCEPALCd1985- aAnnuel 1aAnuario estadístico de América latinax0251-944510aStatistical yearbook for Latin America and the Caribbean aRégion caraïbexStatistiquesxPériodiques aAmérique latinexStatistiquesxPériodiques02aNations UniesbCommission économique pour l'Amérique latine et les Caraïbes40uhttp://www.eclac.org/cgi-bin/getProd.asp?xml=/deype/agrupadores_xml/aes250.xml&xsl=/agrupadores_xml/agrupa_listado.xslzAccés au texte intégral en espagnol et en anglais depuis l'édition 19971 b(1985) ; (1990) -(1998) ; (2001) -(2002) ; (2004) -(2006)cParisdMagasins/AnnexeeP 4° 1712 bis aZPAY aGEO RD Amérique latine aGEO RD3 Caraïbes aDEW 980 aDEW 310-31901167nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116200003600123210005400159326001100213452005900224530004300283607004000326676000800366710005000374801002100424856008700445955008100532955015000613972000900763991001800772992002300790992001200813992001600825038840162000007039220131220155244.01 a0066-5177 aFNSP323637 a19900101a18599999 ba0 aspa aES10aAnuario estadístico de España aMadridcInstituto nacional de estadísticad1859- aAnnuel 1tAnuario estadístico de España (Internet),x2255-039910aAnuario estadísticobEdición extensa aEspagnexStatistiquesxPériodiques a31402aInstituto nacional de estadísticac(Espagne) 3aFRbCCN0066-51774 uhttp://www.ine.es/inebaseweb/25687.dozAccès libre au texte intégral depuis 18581 b(1980) -(1988) ; (1995) ; (1999) -(2004)cParisdMagasins/AnnexeeP 4° 54611 b(1916) ; (1918) -(1920) ; (1925) -(1928) ; (1946) -(1948) ; (1956) ; (1959) -(1965) ; (1968) ; (1972) -(1979)cParisdMagasins/AnnexeeCOL4°0059 aZPAY aexempb201312 aGEO RA6.02 Espagne aDEW 946 aDEW 310-31901238cas0 2200373 450 00100100000000200110001000500170002101100140003803500140005203500170006603500170008303500150010010000410011510100080015610200070016410500180017111000160018920000540020521000580025932600110031742300610032853000500038960600400043971000500047980100300052980100230055980200070058285600550058985600370064495500550068195500910073699100200082799100170084703919325X000110685720130319051101.0 a0210-7120 a068783388 accn0210-7120 aissn02107120 a0001106857 a19800312b19411988 b0frey0103 ba0 aspa aES ay  azk 10aAnuario estadístico de España.iEdición manual aMadridcInstituto Nacional de Estadísticad1941-1988 aAnnuel 1tAnuario estadístico de España (Ed. extensa)x0066-517710aAnuario estadístico de Españab(Ed. manual) aEspagnexStatistiquesxPériodiques02aInstituto nacional de estadísticac(Espagne) 3aFRbAbesc20070319gAFNOR 3aFRbISSNc20020530 a0u4 uhttp://www.ine.es/prodyser/pubweb/anuarios_mnu.htm zAccès libre au texte intégral.1 b(1980) -(1987)cParisdMagasins/AnnexeeP 8° 52021 b(1950) -(1955) ; (1957) ; (1960) ; (1971) -(1979)cParisdMagasins/AnnexeeCOL12°0028 aPériobTP07 P8 aexemp$20111101092cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200005400156210004800210531003400258606005800292606004300350710005000393801003000443801003000473802000700503856004800510856008900558955007000647972000900717992002800726992001200754036357448000083007120130319051101.01 a1138-4824 accn1138-4824 a0000830071 a19980721a19979999 0frey0103 ba0 aspa aES azk 10aAnuario iberoamericano de justicia constitucional aMadridcCentro de Estudios Constitucionales 0aAnu. iberoam. justicia const. aDroit constitutionnelyAmérique latinexPériodiques aCours constitutionnellesxPériodiques02aCentro de estudios constitucionalesc(Madrid) 3aFRbAbesc20040926gAFNOR 3aFRbAbesc20040926gAFNOR a0U4 uhttp://revistas.cepc.es/revistas.aspx?IDR=8 zSommaires depuis le n°1, 1997 et texte intégral sauf pour les 4 dernières années1 avol. 6 (2002) -vol. 11 (2007)cParisdMagasins/AnnexeeP 8° 6828 aZCAD aGEO RD Amérique latine aDEW 34201018nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000032001552100028001873260011002156060042002266060044002686070050003127120078003628560079004408560068005199550052005879720009006399920021006489920023006699920012006920000038447000003844720130319051101.01 a1133-2743 aFNSP212925 a0000038447 a19900101a19909999 ba0 aspa aES aaka 10aAnuario internacional CIDOB aBarcelonacCIDOBd1990- aAnnuel aGéographie économiquexPériodiques aRelations internationalesxPériodiques aEspagnexRelations extérieuresxPériodiques02aCentre d'informació i documentació internacionalsc(Barcelone, Espagne)4 uhttp://www.cidob.org/es/publicaciones/anuarios/anuario_internacional_cidob zContenu : accès au texte intégral depuis 1998 (édition 1999)1 b(1989)-....cParisdMagasins/AnnexeeP 4° 6026 aZSAB aGEO RQ Universel aGEO RA6.02 Espagne aDEW 32701540nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200010500139210009300244326001600337436008800353436009000441440007900531530010500610601006800715601005300783710005200836856016800888955006001056972000901116991001801125992005701143992001401200040153460000014276220131112110656.01 a1015-034X aFNSP565653 a19941129b19861991 f ba0 afre aLU aaka 10aAperçu des travaux de la Cour de justice des Communautés européennes ... et audiences solennelles aLuxembourgcOffice des publications officielles des Communautés européennesd1986-1991 aIrrégulier 1aAperçu des travaux de la Cour de justice des Communautés européennes,x1013-4018 1tAudiences solennelles de la Cour de justice des Communautés europeénnes,x1013-4026 1tRapport annuel (Cour de justice des Communautés européennes),x1680-833900aAperçu des travaux de la Cour de justice des Communautés européennes ... et audiences solennelles02aUnion européennebTribunal de première instancexPériodiques02aUnion européennebCour de justicexPériodiques02aCommunautés européennesbCour de justice4070 uhttp://bookshop.europa.eu/fr/search/Filter?SearchParameter=%26%40QueryTerm%3Drapport%2Bannuel%2Bde%2Bla%2Bcour%2Bde%2Bjustice%26Languages%3Dfr_FR&SelectedLanguage=1 b(1986/1987) -(1990)cParisdMagasins/AnnexeeP 8° 4396 aZGRA aexempb201304 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 341.201129cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200002200180210003600202326001000238421004900248423004000297452004200337530003100379531002500410801003000435802000700465856010900472856010800581955008200689991002000771038666170000110424020130319051102.0 a0003-6846 accn0003-6846 a0001104240 a19770419a19699999k y0frey0103 ba0 aeng aGB ay 0  ar aaf 0 10aApplied economics aLondoncChapman and Halld1969- aMens. |tApplied economics letters (Print)x1350-4851 1tApplied financial economics (Print) 1tApplied economics (Online)x1466-428310aApplied economicsb(Print) 0aAppl. econ.b(Print) 3aFRbAbesc20051202gAFNOR a024 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713684000db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1969) -vol. 16 no. 6 (1984)cParisdMagasins/AnnexeeP 8° 2698 aPériobTP04 P800848nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003200163210003900195326001600234421005500250430003400305606004200339801001300381856002700394856003500421955006700456972000900523992001400532074148540000055443320130705112708.01 a1611-6607 a0000554433 a a20039999k fre ba0 aeng aDE a 0  ar aah z 0 10aApplied economics quarterly aBerlincDuncker und Humblotd2003- aTrimestriel 1tApplied economics quarterly supplement,x1612-2127 1tKonjunkturpolitik,x0023-3498 aConjoncture économiquexPériodiques 0aFRbFNSP4 uhttp://aeq.diw.de/aeq/ zContenu: sommaires depuis 20001 bvol. 49 no. 1 (2003) -....cParisdMagasins/AnnexeeP 8° 1882 aZPAY aDEW 330.900961nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000050001502100045002003000098002453260017003433360058003603370063004184520036004816060030005178010013005478560090005609550005006509920016006550000487130000048713020130319051102.0 a0000487130 a a19529999k fre 01 ba0 aeng aGB az aai z  adr 10aApplied statisticsb[Ressource électronique] aLondoncRoyal Statistical Societyd1952- aAccès au texte intégral (réservé aux sites de Sciences Po) jusqu'aux 4 dernières années a3 n° par an aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tApplied statisticsx(0035-9254) aStatistiquexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00359254.html1 r aDEW 310-31901191cas0 2200337 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123110001600141200007200157210006300229326001100292606005300303607005500356607005100411710005500462711006100517801003000578801001300608856009700621856003600718955005200754972000900806992002600815992001200841099523752000061684920130319051104.01 a1992-7622 a0000616849 a20060424a20029999k y0engy0103 ba0 aeng aUS a 0  aakaih 0 10aArab human development reportfUnited Nations Development Programme aNew York, NYcUNDP, Regional Bureau for Arab Statesd2002- aAnnuel aDéveloppement humainyPays arabesxPériodiques aPays arabesxConditions économiquesxPériodiques aPays arabesxConditions socialesxPériodiques02aProgramme des Nations Unies pour le développement02aFonds arabe pour le développement économique et social 3aFRbAbesc20060425gAFNOR 0aFRbFNSP4 uhttp://hdr.undp.org/xmlsearch/reportSearch?y=*&c=r%3AArab+States&t=*&lang=en&k=&orderby=year zAccès libre au texte intégral1 b(2002) -...cParisdMagasins/AnnexeeP 4° 7037 aZPAY aGEO RG.11 Pays arabes aDEW 95601153cas0 2200361 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109106000600127110001600133200006400149207001700213210004000230301004300270326001100313607005500324607003000379607005700409710002500466801003000491801003000521801003000551856005600581856006000637955004500697972000900742992002600751992001400777116291974000110431420130319051104.0 a0001104314 a20070712a20039999k y0frey0103 ba0 aeng aGB ay 0  ar aaka 0 14aThe Arab world competitiveness reportfWorld economic Forum 0a(2002-2003)- aNew YorkcPalgrave MacMilland2003- aDemande de numérotation ISSN en cours aAnnuel aPays arabesxConditions économiquesxPériodiques aPays arabesxPériodiques aPays arabesxpolitique et gouvernementxPériodiques02aWorld Economic Forum 3aFRbAbesc20070716gAFNOR 3aFRbAbesc20070713gAFNOR 3aFRbAbesc20070712gAFNOR4 uhttp://www.weforum.org/en/initiatives/gcp/index.htm zContenu : sommaires et résumés depuis l'édition 20031 b2005cParisdMagasins/annexeeP 4° 7188 aZPAY aGEO RG.11 Pays arabes aDEW 338.900840nls 2200289 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000054001642100054002182300024002723260011002966060033003076060036003408010013003768560074003898560042004639920033005059920012005380001026567000102656720130319051105.01 a1778-0772 a0001026567 a a20049999k fre 01 ba0 afre aFR ar aak z  adr 10aArabenerevue du GREPHb[Ressource électronique] aLyoncInstitut d'études politiques, GREPHd2004- aRevue électronique aAnnuel aEpistémologiexPériodiques aScience politiquexPériodiques 0aFRbFNSP4 uhttp://greph.univ-lyon2.fr/index.php?page=Araben-les-cahiers-du-GREPH zContenu : texte intégral depuis 2004 aGEO RS Sans aspect régional aDEW 32000848nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001200154210002600166326001200192607003000204607003400234856002800268856010900296955006300405972000900468992004300477992002600520992001200546039810739000001125620130319051105.01 a0983-1509 aFNSP124153 a0000011256 a19900730a19879999 ba0 afre aFR aafa 10aArabies aPariscArabiesd1987- aMensuel aPays arabesxPériodiques aAfrique du NordxPériodiques4 uhttp://www.arabies.com/ zContenu : sommaire et sélection d'articles du dernier numéro, un article par numéro depuis avr. 2003.1 bno. 1 (jan-1987) -....cParisdMagasins/AnnexeeP 4° 5179 aZCAD aGEO RG Afrique du Nord et Moyen-Orient aGEO RG.11 Pays arabes aDEW 95600916nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004800154210002400202326001200226530001900238606003200257606002400289710004000313801002100353856010300374955006400477972000900541992002200550992001400572992001600586039609359000000633420130319051105.01 a0518-2840 aFNSP110067 a0000006334 a19900101a19579999 ba0 afre aFR aafa 12aL'Archeerevue du Fonds social juif unifié aPariscArched1957- aMensuel12aL'ArchebParis aJuifsyFrancexPériodiques aJuifsxPériodiques02aFonds social juif unifiéc(France) 3aFRbCCN0518-28404 uhttp://www.arche-mag.info/zContenu : sommaire du dernier numéro, accès aux articles par thèmes1 bno. 28 (avr-1959) -....cParisdMagasins/AnnexeeP 4° 1682 aZCAD aGEO RA4.06 France aDEW 20-29 aDEW 305-30601155nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008100154210008600235326001900321421003700340430003400377434005400411530002400465606004400489801002100533856003500554856009100589955010300680972000900783992001200792992002500804039786056000000898720130319051105.01 a0769-0975 aFNSP115916 a0000008987 a19900101a19869999 ba0 afre aFR aafa 00aArchimagele magazine des nouvelles technologies en documention et archivage aPariscGIE Editions des nouvelles techniques en documentation et archivaged1986- a10 n°s par an 1aArchimag. Hors sériex1242-1367 1aArchibald magazinex0769-4547 1aLeMagazine de l'imagerie électroniquex0987-153510aArchimagbVincennes aSciences de l'informationxPériodiques 3aFRbCCN7014/72484 uhttp://www.archimag.presse.fr/ zContenu : sommaires depuis le numéro 90, janvier 1996 ; index thématique depuis 19981 bConservation limitée aux 2 dernières annéescParisdFonds professionnel (4e étage)eP 4° 5258 aZPAY aDEW 020 aGEO RA4.06 France 0101013nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154210002700190326001600217517003600233606004200269801003000311802000700341830012600348856004400474856003600518955006700554972000900621991002000630992002500650992001200675038667029000000930120130319051106.01 a0003-8911 aFNSP116470 a0000009301 a19900101a18869999 ba0 ager aDE aaha 10aArchiv des öffentlichen Rechts aTübingencMohrd1886- aTrimestriel10aArchiv für öffentliches Recht aDroit publicyAllemagnexPériodiques 3aFRbAbesc20040702gAFNOR a06 aVol.1, no.1, 1885 ---> vol.22, no.3/4, 1907; 1948/1949 (lac.), vol.78, no. 1, 1952 --->vol. 109, no 4, 1984 donné au CTL4 uhttp://www.mohr.de/jrnl/aoer/inhalt.htm zContenu : Sommaires depuis 20011 bvol. 110 no. 1 (1985) -...cParisdMagasins/AnnexeeP 8° 0557 aZCAD aPériobTP01 P8 aGEO RA5.01 Allemagne aDEW 34200910nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210002700183326001600210606003800226801002100264856010200285856003600387955006900423957007400492972000900566992003300575992001200608038667017000000930320130319051106.01 a0003-892X aFNSP116485 a0000009303 a19900101a19489999 ba0 ager aDE aahu 10aArchiv des Völkerrechts aTübingencMohrd1948- aTrimestriel aDroit internationalxPériodiques 3aFRbCCN0003-892X4 uhttp://www.mohr.de/zeitschriften/rechtswissenschaft/archiv-des-voelkerrechts-avr/zeitschrift.html zContenu : sommaires depuis 20001 bvol. 23 no. 1/2 (1985) -....cParisdMagasins/AnnexeeP 8° 00291 b(1948) -(1949) ; (1962) -(1963)cParisdMagasins/AnnexeeP Index 0129 aZCAD aGEO RS Sans aspect régional aDEW 34101210nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210003500188300004300223326001100266530003300277606005800310607002800368710002900396801002100425856012600446955009800572955005500670957007100725972000900796991001800805992002500823992001200848038840472000001000620130725151917.01 a0066-6505 aFNSP117783 a0000010006 a19900101a19619999 ba0 ager aDE aaku 10aArchiv für Sozial geschichte aBonncNeue Gesellschaftd1961- aVol.34, 1994 - vol.37, 1997 épuisés. aAnnuel00aArchiv für Sozialgeschichte aSciences socialesxRechercheyAllemagnexPériodiques aAllemagnexPériodiques02aFriedrich-Ebert-Stiftung 3aFRbCCN0066-65054 uhttp://library.fes.de/afs-online/index.htmlzAccès au texte intégral en ligne depuis 1961 avec un embargo de trois ans.1 b(1980) -....cParisdMagasins/AnnexeeP 8° 5535wManque no. 34, 1994 à 37, 1997 : épuisés1 b(1962) -(1979)cParisdMagasins/AnnexeeCOL8°33961 bVerzeichnis : (1961) -(1980)cParisdMagasins/AnnexeeP Index 0651 aZPAY aexempb201109 aGEO RA5.01 Allemagne aDEW 30001057nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210003400182210004500216300005600261326001600317606003000333856010300363856010800466955006700574957007300641972000900714991001800723992001400741039219720000000998720140109161626.01 a0003-9632 aFNSP117754 a0000009987 a19900620a19239999 ba0 afre aFR aaha 10aArchives de philosophie aaPariscBeauchesned1923-2001 aPariscAssociation Centre Sèvresd2002- aSuspendu entre le vol. 18, 1952 et le vol. 19, 1955 aTrimestriel aPhilosophiexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-archives-de-philosophie.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 41 no. 1 (1978) -....cParisdMagasins/AnnexeeP 8° 40361 bvol. 19 (1956) -vol. 54 (1991)cParisdMagasins/AnnexeeP Index 0688 aZPAY aexempb201103 aDEW 10-1400973nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210002800191210002500219326001100244606003700255676000800292801002100300856004200321856005000363955006300413955006100476955007200537972000900609991001700618992001200635001012770000000603120130319051106.01 a0066-6564 aFNSP109558 a0000006031 a19900101a19529999 ba0 afre aFR aaku 10aArchives de philosophie du droit aPariscSireyd1952-1999 aPariscDallozd2000- aAnnuel aDroitxPhilosophiexPériodiques a340 3aFRbCCN0066-65644 uhttp://www.philosophie-droit.asso.fr/ zAccès aux sommaires et résumés depuis 19911 bLes 3 dernières annéescParisd30, 3ème étageeDEW 3401 bvol. 25 (1980) -....cParisdMagasins/AnnexeeP 8° 51931 bvol. 1 (1952) -vol. 24 (1979)cParisdMagasins/AnnexeeCOL 4° 0211 aZPAY aexemp$201106 aDEW 34001045nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210002500191326001100216606003900227606004700266710005800313801002100371856011200392856010800504955005800612972000900670991001800679992002200697992001200719013307320000000603420140110122110.01 a0242-5637 aFNSP109561 a0000006034 a19900101a19759999 ba0 afre aFR aaku 10aArchives de politique criminelle aPariscPedoned1975- aAnnuel aDroit pénalyFrancexPériodiques aPolitique criminelleyFrancexPériodiques02aCentre de recherches de politique criminellec(Paris) 3aFRbCCN0242-56374 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-archives-de-politique-criminelle.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno.1 (1975) -....cParisdMagasins/AnnexeeP 8° 3849 aZPAY aexempb201001 aGEO RA4.06 France aDEW 34001627nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004800154210002300202300004900225326001600274430005700290606002700347606003600374710005900410711005900469801002100528856002600549856007500575856002800650856013600678856012300814856010800937955007201045957007101117972000901188991001801197992001401215039526550000000944520140109162703.01 a0335-5985 aFNSP116753 a0000009445 a19900101a19739999 ba0 amul aFR aahu 10aArchives de sciences sociales des religions aPariscCNRSd1973- aChange de numérotation en cours de parution aTrimestriel 1aArchives de sociologie des religionsxISSN 0003-9659 aReligionxPériodiques aSciences socialesxPériodiques02aEcole des hautes études en sciences socialesc(Paris)02aCentre national de la recherche scientifiquec(France) 3aFRbCCN0335-59854 uhttp://www.persee.fr/ zContenu : Accès libre au texte intégral des numéros de 1956 à 19994 uhttp://assr.revues.org/ zContenu : texte intégral depuis 2000, sommaires et résumés pour les numéros les plus récents ; index auteurs et par mots-clés4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-archives-de-sciences-sociales-des-religions.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 18 no. 35 (jan-1973) -....cParisdMagasins/AnnexeeP 8° 14711 bno. 53 (1982) -no. 64 (1987)cParisdMagasins/AnnexeeP Index 0211 aZCAD aexempb201202 aDEW 20-2900882cas0 2200241 450 00100100000000200110001000500170002103500170003803500150005510000410007010100080011110200070011910600060012611000160013220001140014821000370026251700640029953000270036380100300039085601450042095500550056599100200062003746650X000109457220130319051106.0 accn0117/5998 a0001094572 a19830101b18611914 0frey0103 zz0 afre aFR ar aau 10aArchives diplomatiqueserecueil mensuel de diplomatie, d'histoire et de droit internationalfdir. Louis Jacob aPariscH. Championc[puis] Amyot10aArchives diplomatiqueserecueil de diplomatie et d'histoire00aArchives diplomatiques 3aFRbAbesc20070531gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb32701365h/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1861-1913)1 b(1861) -(1914)cParisdMagasins/AnnexeeP 8° 0832 aPériobTP02 P801412nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200011300154207002500267210002700292210004700319326002500366326002600391510004100417510003400458606002900492801002100521856004200542856006100584856010300645856010800748955006600856957007700922972000900999991001801008992001201026039219763000000982520131025114632.01 a0003-9756 aFNSP117337 a0000009825 a19900101a19609999 ba0 amul aFR aaia 10aArchives européennes de sociologied= European journal of sociologyd= Europäisches Archiv für Soziologie 1aVol. 1, no.1 (1960)- aPariscPlond1960-1976 aaLondoncCambridge University Pressd1977- a3 n°s par anb2001- aSemestrielb1960-200010aEuropäisches Archiv für Soziologie10aEuropean journal of sociology aSociologiexPériodiques 3aFRbCCN0003-97564 uhttp://uk.cambridge.org/journals/eur/ zContenu : sommaire, depuis le volume 37, numéro 1, 19914 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=1092624 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1960) -....cParisdMagasins/AnnexeeP 8° 18891 b1960-1999zTable générale : se trouve à la fin du vol.40, no. 2, 1999 aZPAY aexempb201010 aDEW 30101345cas0 2200361 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002000139210006700159210003300226210003700259305011900296326002200415517005800437606004200495710004600537801003000583801003000613801002300643802000700666856009500673856010800768955007100876972000900947992001500956992001200971039219771000105573420130319051106.01 a0003-9837 a0001055734 a19890110a19659999k y0frey0103 ba0 afre aFR aaja uu 10aArchives juives aPariscCommission française des archives juivesd1965-[1993?] aPariscLiana Levid1994-1997 aPariscLes Belles Lettresd1998- aPubliée de 1965 à 1991 sous forme d'un bulletin ; a été rénovée dans sa présentation et son contenu en 1994 aSemestrielb1994-10aArchives juiveserevue d'histoire des Juifs de France aJuifsyFrancexHistoirexPériodiques02aCommission française des archives juives 3aFRbAbesc20060719gAFNOR 3aFRbAbesc20060719gAFNOR 3aFRbISSNc20050729 a074 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-archives-juives.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 39 no. 1 (jan-2006) -....cParisdMagasins/AnnexeeP 8° 6930 aZPAY aGEO RA4.06 aDEW 90901163cas0 2200289 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200009300148210003500241215003100276530009300307607003800400676000800438712007600446801003000522856028000552945001400832955000900846991001800855039125629000081968820130319051107.0 accn7128/7078 a0000819688 a19930326b18XX18XX 0frey0103 zz0 afre aFR ar aak 10aArchives statistiques du Ministère des travaux publics, de l'agriculture et du commerce aPariscImprimerie royaled1837 a1 vol. (XVI-306 p.)d35 cm00aArchives statistiques du Ministère des travaux publics, de l'agriculture et du commerce aFrancexStatistiquesz19e siècle a33001aFrancebMinistère des travaux publics, de l'agriculture et du commerce 3aFRbAbesc20020116gAFNOR4 uhttp://books.google.fr/books?id=G8lMAAAAcAAJ&dq=%22Archives%20statistiques%20du%20Minist%C3%A8re%20des%20travaux%20publics%2C%20de%20l'agriculture%20et%20du%20commerce%22&hl=fr&pg=PR5#v=onepage&q&f=falsezAccès libre au texte intégral. Document numérisé sur Google Livres bRFOL.04531 r1837 aSAFIGbTA006C01029nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002600139210004900165326002300214530002600237606004400263607003500307710002700342856005200369856007500421955006800496955006000564972000900624991001800633992002800651992001200679992001200691059715502000020801920140108155917.01 a0328-3151 aFNSP754604 a19900101a19959999 ba0 aspa aAR aaha 10aArchivos del presente aBuenos AirescFundación Foro del surd1995- aTrimestrielb1995-10aArchivos del presente aRelations internationalesxPériodiques aAmérique latinexPériodiques02aFundacion Foro del sur4 uhttp://www.forosur.com.ar/pag_publicaciones.htm zContient : sommaires et résumés depuis le no.1, 1995 au no. 41, 20061 bno. 1 (1995) -no. 38 (2005)cParisdMagasins/AnnexeeP 8° 63001 bno. 39 (2006) -....cParisdMagasins/AnnexeeP 4° 7147 aZPAY aexempb201309 aGEO RD Amérique latine aDEW 980 aDEW 32701074nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171100016001242000057001402100033001973260015002305300028002456060040002736070028003136760008003418010021003498560098003709550069004689550078005379570069006159720009006849910018006939920025007119920012007360000009827000000982720140110114519.01 a0004-1157 aFNSP117339 a19900101a19599999 ba0 ager aDE aaga 14aDas ArgumenteBerliner Hefte für Politik und Kultur aHamburgcDas Argumentd1959- aBimestriel01aDas Argument‎bBerlin aSociologieyAllemagnexPériodiques aAllemagnexPériodiques a301 3aFRbCCN0004-11574 uhttp://www.argument.de/wissen_index_inhalt.htmlzContenu : Sommaires depuis le n°249 en 20031 bLes 3 dernières annéescParisd27, Salle 5ème étageeDEW 3011 b14 ème an. no 11/12 (dec-1972) -....cParisdMagasins/AnnexeeP 8° 31761 bno 22 (1962) -no 86 (1974)cParisdMagasins/AnnexeeP Index 0244 aZCAD aexempb200905 aGEO RA5.01 Allemagne aDEW 94301672nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002900139210005300168326001600221452005200237517002700289530002900316606003900345606003300384606006000417676000800477710007100485801002100556856017500577856021300752856023200965955007001197972000901267991001801276992001601294038899639000000994120140110154959.01 a0095-327X aFNSP117607 a19900101a19749999 ba0 aeng aUS aaha 10aArmed forces and society aCabin John, M.DcArmed forces and societyd1974- aTrimestriel 1tArmed forces and society (Online)‎x1556-084810aArmed forces & society00aArmed forces and society aSociologie militairexPériodiques aForces arméesxPériodiques aRelations pouvoir civil-pouvoir militairexPériodiques a35502aInter-University Seminar on Armed Forces and Societyc(Etats-Unis) 3aFRbCCN0095-327X4 uhttps://acces-distant.sciences-po.fr/fork?http://afs.sagepub.com/zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=availablezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=AFS&site=ehost-livezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (nov-1974) -....cParisdMagasins/AnnexeeP 8° 4044 aZSAB aexempb200301 aDEW 355-35901428nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210003200182300005100214326001800265440004100283601006300324607005900387607005700446710008300503801002100586856012800607856010800735955009000843957006400933972000900997991001801006992002801024992001401052039207501000000974420130826124730.01 a0217-4472 aFNSP117219 a0000009744 a19900101b19842012 ba0 aeng aSG aaia 10aAsean economic bulletin aSingaporecISEASd1984-2012 aASEAN = Association of Southeast Asian Nations a3 n°s par an 1tJournal of Southeast Asian economies02aAssociation des nations de l'Asie du Sud-EstxPériodiques aAsie du Sud-EstxConditions économiquesxPériodiques aAsie du Sud-EstxPolitique économiquexPériodiques02aInstitute of Southeast Asian Studies. ASEAN Economic Research Unit (Singapour) 3aFRbCCN0217-44724 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=AEB&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jul-1984) -vol. 29 no. 3 (dec-2012)cParisdMagasins/AnnexeeP 8° 48561 bvol. 1/10 (1984/1994)cParisdMagasins/AnnexeeP Index 0735 aZPAY aexempb201011 aGEO RI2 Asie du Sud-Est aDEW 330.901176nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210002700193326002300220326002800243326002600271606004500297606003900342710007300381856010300454856010800557955007000665972000900735991001800744992003900762992002100801992001600822039207528000007036620130319051111.01 a0217-4561 aFNSP323598 a0000070366 a19900101a19839999 ba0 aeng aSG aaha 10aAsia Pacific journal of management aLondoncLongmand1983- aTrimestrielb2001- a3 n° par anb1999-2000 aSemestrielb1983-1998 aGestion d'entrepriseyAsiexPériodiques aGestion d'entreprisexPériodiques02aNational University of SingaporebFaculty of Business Administration4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=1065894 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 9 no. 1 (avr-1992) -....cParisdMagasins/AnnexeeP 8° 5863 aZPAY aexempb201112 aGEO RI Asie (sans Asie de l'Ouest) aGEO RQ Universel aDEW 650-65801129nas 2200337 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200002400148210002800172326001500200530003300215607002300248607003800271676000800309710005600317801001300373856021400386955006600600955007000666972000900736991001800745992001200763992001600775036732508000040201020130926162616.01 a1343-9006 a a20009999k fre ba0 aeng aJP a 0  ar aaj z 0 10aAsia-Pacific review aAbingdoncCarfaxd1994- aSemestriel00aAsia-Pacific reviewb(Tokyo) aAsiexPériodiques aPacifique (région)xPériodiques a67602aInstitute for International Policy Studiesc(Japon) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713405589db=allzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9901 bvol. 6 no. 1 (mai-1999) -....cParisdMagasins/AnnexeeP 8° 6577 aZSAB aexempb201309 aDEW 950 aGEO RH Asie01263nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210002900181326001800210430003400228530003600262607003800298710006300336856007400399856007400473856012800547856010800675955006400783972000900847991001800856992003500874992001600909036748897000020040120130319051112.01 a1360-7456 aFNSP731595 a0000200401 a19900101a19969999 ba0 aeng aNZ aaia 10aAsia Pacific viewpoint aOxfordcBlackwelld1996- a3 n°s par an 1aPacific viewpoint,x0030-8978 0aAsia Pacific viewpointb(Print) aPacifique (région)xPériodiques02aVictoria University of WellingtonbDepartment of Geography4 uhttp://www.blackwellpublishers.co.uk/journal.asp?ref=1360-7456&site=1 zContenu : sommaires et résumés depuis le Vol. 38, n°1, August 19974 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=D80&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 37 no. 1 (avr-1996) -....cParisdMagasinseP 8° 1938 aZSAB aexempb201002 aGEO RJ Océanie, Pacifique Sud aDEW 990-99601193cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200007300180207002300253210006600276326001500342606004200357607005000399607002300449710005200472801003000524801002300554802000700577856008600584856007000670955006300740992001600803992001200819113634552000113075220130319051112.01 a1559-0968 aissn15590968 a0001130752 a20070329a20069999k y0frey0103 ba0 aeng aUS ay 0  ar aaja 0uu 10aAsia policyfNational Bureau of Asian Research (Seattle, Washington) 0aNo. 1 (Jan. 2006)- aSeattleaWashingtoncNational Bureau of Asian Researchd2006- aSemestriel aScience politiqueyAsiexPériodiques aAsiexPolitique et gouvernementxPériodiques aAsiexPériodiques02aNational Bureau of Asian Researchc(Etats-Unis) 3aFRbAbesc20080212gAFNOR 3aFRbISSNc20070329 a014 uhttps://acces-distant.sciences-po.fr/fork?http://asiapolicy.nbr.org/archives.html zContenu : accés au texte intégral depuis le n° 1, Janvier 20061 bno. 1 (jan-2006) -....cParisdMagasins/AnnexeeP 8° 7007 aGEO RH Asie aDEW 95001263nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005500154210005000209210006100259210003800320326001600358430004400374530003400418607005000452607002300502710005800525801002100583856002800604856014400632955007000776972000900846991001800855992001600873992001200889038896001000000944420140108121114.01 a0092-7678 aFNSP116752 a0000009444 a19900101a19739999 ba0 aeng aUS aaha 10aAsian affairsfAmerican-Asian Educational Exchange aWashington, D.C.cHeldref Publicationsd1979- aNew YorkcAmerican-Asian Educational Exchanged1974-1979 aNew YorkcCrane Russakd1973-1974 aTrimestriel 1aSoutheast Asian perspectivesx0042-577X 0aAsian affairsbNew York, N.Y. aAsiexPolitique et gouvernementxPériodiques aAsiexPériodiques02aHelen Dwight Reid Educational Foundation (Washington) 3aFRbCCN0092-76784 uhttp://www.heldref.org/ zInformations sur la revue et recherche possible par mot-clé, auteur, titre. L'accès au texte intégral depuis 1994 est un service payant.1 bvol. 1 no. 1 (sep-1973) -....cParisdMagasins/AnnexeeP 8° 3342 aZSAB aexempb201302 aGEO RH Asie aDEW 95001129nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004700154210002400201326001700225430005900242530002600301607002300327710004100350801002100391856010900412856010800521856003700629955007000666972000900736991001800745992001600763992001200779039397750000000995420140108120458.01 a0306-8374 aFNSP117626 a0000009954 a19900101a19709999 ba0 aeng aGB aaia 10aAsian affairsfRoyal central Asian society aLondoncRSAAd1970- a3 nos par an 1aJournal of the Royal Central Asian Society,x0035-8789 0aAsian affairsbLondon aAsiexPériodiques02aRoyal Society for Asian Affairs (GB) 3aFRbCCN0306-83744 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713686128db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.cdrb.org/archives.php1 bvol. 1 no. 1 (fev-1970) -....cParisdMagasins/AnnexeeP 8° 1110 aZSAB aexempb201302 aGEO RH Asie aDEW 95001045nas 2200301 i 450 002001100000005001700011011001400028035001500042100004100057101000800098102000700106110001600113200004100129210004200170326001100212517004300223601005300266607004800319710003900367856012100406955005500527955005500582955005500637972000900692992001600701992001400717992001200731000006165320130717095030.01 a0116-1164 aFNSP282044 a19900101a19689999 ba0 aeng aPH aaka 10aAsian Development Bank annual report aManilacAsian Development Bankd1968- aAnnuel10aAnnual report - Asian Development Bank02aBanque asiatique de développementxPériodiques aAsiexConditions économiquesxPériodiques02aBanque asiatique de développement4 uhttp://www.adb.org/Documents/Reports/Annual_Report/default.asp#contentszAccès libre au texte intégral depuis 19681 b(1999) -(2004)cParisdMagasins/AnnexeeP 4° 70021 b(1985) -(1998)cParisdMagasins/AnnexeeP 8° 66711 b(1970) -(1984)cParisdMagasins/AnnexeeCOL4°3372 aZGRA aGEO RH Asie aDEW 330.9 aDEW 33200904nas 2200265 i 450 002001100000005001700011011001400028035001500042100004100057101000800098102000700106110001600113200003000129210004200159300007500201326001100276530003000287607004800317712003900365856010800404955008700512972000900599992001600608992001400624000000855920130530100555.01 a0117-0481 aFNSP115024 a19900605a19899999 f ba0 aeng aPH aaka 10aAsian development outlook aManilacAsian Development Bankd1989- a2012, dernière édition papier, voir ensuite en version électronique aAnnuel00aAsian development outlook aAsiexConditions économiquesxPériodiques02aBanque asiatique de développement4 uhttp://www.adb.org/publications/series/asian-development-outlookzAccès au texte intégral depuis 19971 b(1989)-(2009) ; (2012)cParisdMagasins/AnnexeeP 4° 5916wManquants : 2010, 2011 aZPAY aGEO RH Asie aDEW 338.900811nls 2200265 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200009300124210004200217230002400259326001100283607004800294710003900342801001300381830000800394856010800402955000500510992001600515992001400531000124490120130530102754.0 a a19979999k fre 01 ba0 aeng aPH ar aak z  adr 10aAsian development outlookb[Ressource électronique]fBanque asiatique de développement aManilacAsian Development Bankd1997- aRevue électronique aAnnuel aAsiexConditions économiquesxPériodiques02aBanque asiatique de développement 0aFRbFNSP acdj4 uhttp://www.adb.org/publications/series/asian-development-outlookzAccès au texte intégral depuis 19971 r aGEO RH Asie aDEW 338.901402nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210002900181326001600210517005100226530003400277607005900311607005800370710003600428856012800464856010800592856010100700856010800801955009000909972000900999992004201008992001401050058481583000019201520131127152532.01 a1351-3958 aFNSP708514 a0000192015 a19900101a19879999 ba0 aeng aHK aaha 10aAsian economic journal aOxfordcBlackwelld1987- aTrimestriel10aJournal of the East Asian Economic Association 0aAsian economic journalbPrint aAsie du Sud-EstxConditions économiquesxPériodiques aAsie orientalexConditions économiquesxPériodiques02aEast Asian Economic Association4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=BM4&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101070 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 8 no. 3 (nov-1994) -vol. 26 no. 4 (dec-2012)cParisdMagasins/AnnexeeP 8° 6246 aZPAY aGEO RI3 Asie orientale, Asie centrale aDEW 330.901269nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002000163210006000183326002000243326002600263606003400289801001300323856020300336856010800539856010900647856010800756955007000864972000900934992001200943048883476000038796820130319051112.01 a1463-1369 a0000387968 a a20009999k fre ba0 aeng aGB a 0  ar aai z 0 10aAsian ethnicity aBasingstokecCarfax Publishing, Taylor & Francisd2000- a3 n°/anb2003- aSemestrielb2000-2002 aMinoritesyAsiexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://web.ebscohost.com/ehost/detail?vid=1&hid=14&sid=481f1f1b-5b56-4f63-9361-de40bb0a0fea%40sessionmgr12&bdata=JnNpdGU9ZWhvc3QtbGl2ZQ%3d%3d#db=sih&jid=B85 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713402859db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-2000) -....cParisdMagasins/AnnexeeP 8° 6565 aZSAB aDEW 95001103nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210004300193326001500236530003900251606004200290607005000332712007000382856010900452856010800561955008100669991001900750992001600769992001600785039208109000011337520130319051112.01 a0218-5377 aFNSP477053 a0000113375 a19900101a19939999 ba0 aeng aSG aaja 10aAsian journal of political science aSingaporecTimes Academic Pressd1993- aSemestriel00aAsian journal of political science aScience politiqueyAsiexPériodiques aAsiexPolitique et gouvernementxPériodiques02aNational University of SingaporebDepartment of Political Science4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t741771145db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1993) -vol. 7 no. 1 (1999)cParisdMagasins/AnnexeeP 8° 5999 aexempb2012/11 aGEO RH Asie aDEW 320-32101048nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007800154210007300232326002200305326002800327326002600355607003300381710004700414856005300461856007200514955006700586972000900653991001800662992004200680992001200722039302180000017532520140108121545.01 a0258-9184 aFNSP658982 a0000175325 a19900101a19779999 ba0 aeng aKR aaja 10aAsian perspectivefInstitute for Far Eastern Studies, Kyungnam University aSeoulcInstitute for Far Eastern Studies, Kyungnam Universityd1977- aTrimestrielb1999 a3 nos par anb1997-1998 aSemestrielb1977-1996 aAsie orientalexPériodiques02aInstitute for Far Eastern Studies (Séoul)4 uhttp://www.asianperspective.org/past-issues.html zContenu : articles en texte intégral depuis le vol. 27, no 1, 20031 bvol. 18 no. 2 (1994) -....cParisdMagasins/AnnexeeP 8° 6200 aZSAB aexempb201211 aGEO RI3 Asie orientale, Asie centrale aDEW 95001335cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200002800180207005700208210004300265300008500308326001600393517003000409517000800439606004200447607005000489607002300539801003000562801002300592802000700615856010400622856010800726955008700834992001600921992001200937136978444000117930120130319051112.01 a1943-0779 aissn19430779 a0001179301 a20091001a20092011k y0frey0103 ba0 aeng aUS ay 0  ar aaha 0uu 10aAsian politics & policy 0aVol. 1, no. 1 (Jan./Mar. 2009)-vol.3 no.4 (oct-2011) aBoston, MAcWiley-Blackwelld2009-2011 aDernière édition papier 2011 ; à partir de 2012, version en ligne uniquement. aTrimestriel10aAsian politics and policy10aAPP aScience politiqueyAsiexPériodiques aAsiexPolitique et gouvernementxPériodiques aAsiexPériodiques 3aFRbAbesc20091117gAFNOR 3aFRbISSNc20091105 a014 uhttps://acces-distant.sciences-po.fr/fork?http://www3.interscience.wiley.com/journal/122351904/home zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-2009) -vol.3 no.4 (oct-2011)cParisdMagasins/AnnexeeP 8° 7109 aGEO RH Asie aDEW 95000876nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000180015421000450017232600150021760700230023271000400025580100210029585600570031685600800037395500960045397200090054999200160055899200120057403939087X000000999820130319051112.01 a0304-8675 aFNSP117769 a0000009998 a19900101a19739999 ba0 aeng aHK aaga 10aAsian profile aHong KongcAsian Research Serviced1973- aBimestriel aAsiexPériodiques02aAsian Research Servicec(Hong Kong) 3aFRbCCN0304-86754 uhttp://www.asianresearchservice.com/Asianprofile.htm zContenu : sommaires depuis le n° 1, 1973, jusqu' aux articles à paraître1 bvol. 1 no. 1 (aug-1973) ; vol. 5 no. 1 (fev-1977) -....cParisdMagasins/AnnexeeP 4° 4094 aZPAY aGEO RH Asie aDEW 95000977nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001900139210003300158326001100191530001900202607003300221710005500254856010900309856010800418955007800526972000900604991001800613992001600631992001600647992001200663040021459000002398520130911120708.01 a0911-3843 aFNSP163771 a19910205b19792000 ba0 aeng aGB aaka 10aAsian security aLondoncBrassey'sd1979-2000 aAnnuel00aAsian security aAsiexDéfensexPériodiques02aResearch Institute for Peace and Securityc(Tokyo)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713727944db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1979)-(2000)cParisdMagasins/AnnexeeP 8° 4400wManquants : 1986, 1987 aZCAD aexempb201106 aGEO RH Asie aDEW 355-359 aDEW 32701281nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210002400179326002300203326002900226430006800255607002300323710004300346856010300389856010800492856010900600856010800709955007100817972000900888991001800897992001600915992001200931040248232000001327920130319051112.01 a1035-7823 aFNSP134189 a0000013279 a19900919a19909999 ba0 aeng aAU aaha 10aAsian studies review aSydneycASAAd1990- aTrimestrielb1998- a3 n°s par anb1990-1997 1aReview - Asian Studies Association of AustraliaxISSN 0314-7533 aAsiexPériodiques02aAsian Studies Association of Australia4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=109895 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713613499db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 13 no. 3 (avr-1990) -....cParisdMagasins/AnnexeeP 8° 4831 aZCAD aexempb201010 aGEO RH Asie aDEW 95001495nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001700154210006000171326002200231326002300253430003400276607002300310676000800333801002100341856010300362856010800465856009000573856010800663856006100771856009000832955006600922955006600988972000901054991001801063992001601081992001201097038670151000000321420130319051112.01 a0004-4687 aFNSP102548 a0000003214 a19900101a19619999 ba0 aeng aUS aagu 10aAsian survey aBerkeley, Calif.cUniversity of California Pressd1961- aBimestrielb1999- aMensuelb1961-1998 1aFar Eastern surveyx0362-8949 aAsiexPériodiques a950 3aFRbCCN0004-46874 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=106438 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00044687.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po zPour Far Eastern survey , via JSTOR, voir URL ci-dessous uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03628949.html1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9501 bvol. 1 no. 1 (1961) -....cParisdMagasins/AnnexeeP 8° 1932 aZCAD aexempb201009 aGEO RH Asie aDEW 95001306nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000048001552100046002033260011002494300091002605170083003516060051004347120056004857120055005418560182005968560085007789550054008639720009009179920022009269920016009489920016009640000107936000010793620130319051112.01 a0758-6523 aFNSP456756 a0000107936 a19900101a19819999 ba0 afre aFR aaka 10aAspects de la criminalité en France en ... aPariscLa Documentation françaised1981- aAnnuel 1aLa criminalité en France d'après les statistiques de la police judiciairex0766-563610aAspects de la criminalité et de la délinquance constatées en France en..... aStatistiques criminellesyFrancexPériodiques02aFrancebDirection générale de la police nationale02aFrancebDirection centrale de la police judiciaire4 uhttp://larecherche.service-public.fr/df/oxide?criteriaContent=aspects+de+la+criminalite+en+france&page=resultsdfA&action=launchsearch&DynRubrique=&DynCorpus=&DynDomain=DFgeneral4 zAccés au texte intégral via le site de la Documentation française depuis 20041 b(1982)-(2002)cParisdMagasins/AnnexeeP 4° 3446 aZPAY aGEO RA4.06 France aDEW 310-319 aDEW 364-36501372cas0 2200373 450 00100100000000200110001000500170002101100140003803500140005203500170006603500170008303500150010010000410011510100080015610200070016410600060017111000160017720000290019321001840022232600120040643500710041844000430048951200460053251700470057853000380062571000590066380100300072280100230075280200070077585601260078295500550090899100200096399100150098303855433X000109531120130319051114.0 a1149-2708 a070619514 accn1149-2708 aissn11492708 a0001095311 a19900417b18761908uuuy0frey0103 ba0 afre aFR ar aafu uu 12aL'Association catholique aPariscSecrétariat général de l'Oeuvre des cercles catholiques d'ouvriersd1876-1908aParisc[s.n.]d1891-1897aPariscX. Rondelet et Cied1898-1901aPariscE. Vitted1901-1908 aMensuel |tBulletin de l'Oeuvre des cercles catholiques d'ouvriersx1149-2740 1tLe Mouvement social (Reims)x1149-271610aRevue des questions sociales & ouvrières10aRevue des questions sociales et ouvrières12aL'Association catholiqueb(Paris)02aOeuvre des cercles catholiques d'ouvrierscFrance4070 3aFRbAbesc20070416gAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/bpt6k1153963zAccès libre au texte intégral. Juillet-déc. 1890 numérisé sur Gallica1 b(1891) -(1908)cParisdMagasins/AnnexeeP 8° 0980 aPériobTP02 P8 anumer0 (?)01050nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003300139210008000172326001100252530003300263606005000296710005600346801002100402830005200423856012200475955005500597972000900652991001800661992002500679992001600704992001600720039840034000007040020131217095844.01 a0986-1580 aFNSP323648 a19900101b19832009 ba0 afre aFR abku 12aL'Assurance française en... aParis‎cFédération française des sociétés d'assurances‎d1983-2009 aAnnuel02aL'Assurance française en... aAssuranceyFrancexStatistiquesxPériodiques02aFédération française des sociétés d'assurances 3aFRbCCN0986-1580 a1983-1998: collection envoyée au CTles en 20134 uhttp://www.ffsa.fr/sites/jcms/fp_8800/le-rapport-annuel-ffsazAccès au texte intégral du rapport annuel depuis 19951 b(1983) -(1998)cParisdMagasins/AnnexeeP 4° 5333 aZGRA aexempb201306 aGEO RA4.06 France 01 aDEW 360-363 aDEW 310-31901095cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200001800180207003300198210003500231326001800266452003800284606003700322801003000359801002300389802000700412856010900419856010800528955007000636972000900706992001200715992001800727105727326000108115320130319051114.01 a1477-7622 aissn14777622 a0001081153 a20040405a20039999k y0frey0103 ba0 aeng aGB a 0  ar aaia 0uu 10aAstropolitics 0aVol. 1, no. 1 (summer 2003)- aLondoncFrank Cass & Cod2003- a3 n°s par an 1tAstropolitics (Online)x1557-2943 aPolitique spatialexPériodiques 3aFRbAbesc20060719gAFNOR 3aFRbISSNc20060706 a024 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713634457db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 4 no. 1 (mar-2006) -....cParisdMagasins/AnnexeeP 8° 6959 aZSAB aDEW 327 aGEO RR Espace01053nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210004700179326001200226430005500238530002700293856003200320856008600352856010300438856010800541955009300649972000900742992001200751060380152000011011920130319051115.01 a1072-7825 aFNSP464786 a0000110119 a19900101a19939999 ba0 aeng aUS aafa 04aThe Atlantic monthly aBoston, Mass.cAtlantic Monthly Co.d1993- aMensuel 1aThe Atlantic (Boston, Mass. 1981),xISSN 0276-907710aAtlantic monthlyb19934 uhttp://www.TheAtlantic.com/ zContenu : texte intégral depuis 1995 ; édition différente de l'édition papier4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=7113354 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 272 no. 5 (nov-1993) -vol. 302 no. 5 (dec-2008)cParisdMagasins/AnnexeeP 4° 1662 aZPAY aDEW 00100690nas 2200385 i 450 002001100000005001700011011000500028100004100033101000500074102000500079106000600084110001600090135001800106200003200124207000500156210000500161230000500166300000500171326000500176330000500181336000500186337000500191600000500196601000500201606000500206607000500211676000500216710000500221712000500226801001300231830000500244856004500249955000500294992000500299000124536720130613162810.0 a a a 9999k fre 01 ba0 a a ar aa z  ad 10aAtlas of global development 1a a a a a a a a a a a a a a a 0aFRbFNSP a4 uhttp://data.worldbank.org/products/atlas1 r a01347cas0 2200385 450 00100100000000200110001000500170002103500150003810000410005310100080009410200070010210500180010910600060012711000160013320001380014921000280028730100430031532600110035843000320036960600430040160600430044460600380048760600590052567600100058471000700059480100300066480100150069480100150070985601220072495500550084697200090090199200210091099200140093199200160094511572981X000110619620130619101641.0 a0001106196 a20070627a20079999 f0frey0103 ba0 aeng aUS ay  ar aak 00aAtlas of global developmentea visual guide to the world's greatest challengesfInternational Bank for Reconstruction and Development aGlasgowcCollinsd2007- aDemande de numérotation ISSN en cours aAnnuel 1tWorld Bank atlasx0085-8293 aPopulationxStatistiquesxPériodiques aIndicateurs économiquesxPériodiques aIndicateurs sociauxxPériodiques aDéveloppement économiquexStatistiquesxPériodiques a338.902aBanque internationale pour la reconstruction et le développement 3aFRbAbesc20070719gAFNOR 0bCGQgAACR2 2bNICgAACR24 uhttp://issuu.com/world.bank.publications/docs/9780821385838zdernière édition accessible en texte intégral gratuit1 b(2007) -(2009)cParisdMagasins/AnnexeeP 4° 4027 aZPAY aGEO RQ Universel aDEW 338.9 aDEW 310-31901098nls 2200301 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200016500124210002800289230002400317326001100341606004300352606004300395606003800438606005900476710007000535801001300605856012200618955000500740992002100745992001400766992001600780000124561120130619135626.0 a a20079999k fre 01 ba0 aeng aUS ar aak z  adr 10aAtlas of global developmentb[Ressource électronique]ea visual guide to the world's greatest challengesfInternational Bank for Reconstruction and Development aGlasgowcCollinsd2007- aRevue électronique aAnnuel aPopulationxStatistiquesxPériodiques aIndicateurs économiquesxPériodiques aIndicateurs sociauxxPériodiques aDéveloppement économiquexStatistiquesxPériodiques02aBanque internationale pour la reconstruction et le développement 0aFRbFNSP4 uhttp://issuu.com/world.bank.publications/docs/9780821385838zdernière édition accessible en texte intégral gratuit1 r aGEO RQ Universel aDEW 338.9 aDEW 310-31900718nls 2200241 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200008600124210002500210230002400235326001100259606004000270710005100310801001300361856007800374992001200452992001200464000124181320130517122615.0 a a19959999k fre 01 ba0 aeng aUS ar aak z  adr 10aAttacks on the pressb[Ressource électronique]fCommittee to Protect Journalists aNew YorkcCPJd1995- aRevue électronique aAnnuel aLiberté de la pressexPériodiques02aCommittee to Protect Journalistsc(Etats-Unis) 0aFRbFNSP4 uhttp://cpj.org/attacks/2013/zAccès libre au texte intégral depuis 1995 aDEW 323 aDEW 07001230cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200014800180207002700328210004300355326001600398601005800414606004200472606002900514710003600543801003000579801002300609802000700632856005200639856007100691955006700762992002500829992001400854137224540000117760820130319051116.01 a2101-6135 aissn21016135 a0001177608 a20091015a20099999k y0frey0103 ba0 afre aFR ay  ar aauu uu 10aAu clair de la lutteebulletin de la Tendance CLAIRE du NPA pour le Communisme, la Lutte Auto-organisée, Internationaliste et RévolutionnairE 0aN°1 (mars/avril 2009) a[Paris]cTendance CLAIRE du NPAd2009- aTrimestriel02aNouveau parti anticapitalistec(France)xPériodiques aExtrême gaucheyFrancexPériodiques aActualitéxPériodiques02aTendance CLAIRE du NPA (France) 3aFRbAbesc20091105gAFNOR 3aFRbISSNc20091105 a074 uhttp://tendanceclaire.npa.free.fr/bulletins.php zContenu : accès au texte intégral depuis le no. 1 (mar/avr-2009)1 bno. 1 (mar/avr-2009) -....cParisdMagasins/AnnexeeP 4° 7259 aGEO RA4.06 France 01 aDEW 320.501099cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118105001800125106000600143110001600149200010000165207002400265210003200289517001200321530002700333606003700360676000800397801003000405801002300435802000700458856010600465955007100571955006500642972000900707992002100716992001200737170643948000125188120131128145456.0 a2267-0750 aissn22670750 a20130715a20139999k y0frey50 ba0 afre aFR ay 0  ar aafazz 0uu 10aAu faiteune enquête, un entretien, des enjeuxf[directeur de la publication Xavier Delacroix] 0aN° 001 (mai 2013)- a[Paris]cBW Conseilsd2013-10aAu fait10aAu faitb(Paris. 2013) aActualitéxPériodiques2rameau a001 3aFRbAbesc20131127gAFNOR 3aFRbISSNc20130719 a074 uhttp://www.au-fait.fr/les-numeros/zAccès aux sommaires et aux extraits des numéros depuis le no. 11 bL'année en cours ; Paris, 27, Salle Rez-de-chaussée : P 4° 73381 bno. 1 (mai 2013) -.... ; Paris, Magasins/Annexe : P 4° 7338 aZPAY aGEO RQ Universel aDEW 05001248nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003500139210005600174300006400230326001700294422002900311606004400340607005500384710005600439801002100495856004800516856005200564955009200616955006900708957005700777972000900834991001800843992002500861992001200886039621766000001110420140107173831.01 a0479-611X aFNSP122836 a19900101a19519999 ba0 ager aDE aaca 10aAus Politik und Zeitgeschichte aBonncBundeszentrale für Politische Bildungd1951- aLe kardex donne le détail des volumes reliés par semestre aHebdomadaire 1aDas Parlamentx0031-2258 aRelations internationalesxPériodiques aAllemagnexPolitique et gouvernementxPériodiques02aBundeszentrale für politische Bildungc(Allemagne) 3aFRbCCN0479-611X4 uhttp://www.bpb.de/publikationen/BKRM30.html zContenu : accès au texte intégral depuis 20001 bno. 1 (jan-1963) -no. 4 (1965) ; no. 3 (1972) -....cParisdMagasins/AnnexeeP 8° 19791 bno. 47 (nov-1953) - no. 52 (dec-1962)cParisdAnnexeeP F° 01641 b(1953) -(1992)cParisdMagasins/AnnexeeP Index 0745 aZSAB aexempb201105 aGEO RA5.01 Allemagne aDEW 94301023nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210002900175326001600204606005700220710008600277801002100363856012500384856010000509955007000609972000900679992003300688992001200721038671603000001105220130319051117.01 a0004-8216 aFNSP122151 a0000011052 a19900101a19469999 ba0 amul aCH aaha 10aAussenwirtschaft aGrüschcRüeggerd1946- aTrimestriel aRelations économiques internationalesxPériodiques02aSchweizerisches Institut für Aussenwirtschafts-, Struktur- und Regionalforschung 3aFRbCCN0004-82164 uhttp://www.siaw.unisg.ch/org/siaw/web.nsf/c2d5250e0954edd3c12568e40027f306/479b573ee825c1adc1256a310023726c?OpenDocument zContenu : sommaires depuis 1994 ; résumés en anglais et en allemand depuis le numéro 4, 19961 bvol. 5 no. 1 (mar-1950) -....cParisdMagasins/AnnexeeP 8° 0955 aZPAY aGEO RS Sans aspect régional aDEW 33700984nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210002600188326001500214430003400229607003800263710002800301856010900329856010800438955009000546991001700636992002500653992001600678040245691000001108920130319051117.01 a1031-461X aFNSP122508 a0000011089 a19900724a19889999 ba0 aeng aAU aaja 10aAustralian historical studies aParkvillecAHSd1988- aSemestriel 1aHistorical studiesx0018-2559 aAustraliexHistoirexPériodiques02aUniversity of Melbourne4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t786314679db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 23 no. 90 (avr-1988) -vol. 29 no. 110 (1998)cParisdMagasins/AnnexeeP 8° 1201 aexemp$201102 aGEO RJ3.01 Australie aDEW 990-99601118nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000069001502100051002193000102002703260015003723360058003873370063004454400044005084520055005526070024006077120042006318010013006738560044006869550005007309920045007359920012007800000463643000046364320130319051117.0 a0000463643 a b19791995k fre 01 ba0 aeng aAU az aaj z  adr 10aAustralian journal of Chinese affairsb[Ressource électronique] aCanberracContemporary China Centred1979-1995 aAccès au texte intégral (réservé aux sites de Sciences Po) du n°1, 1979 jusqu'au n°33, 1995 aSemestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tChina journal [Ressource électronique] 1tAustralian journal of Chinese affairsx(0156-7365) aChinexPériodiques02aContemporary China Centrec(Canberra) 0aFRbFNSP4 uhttp.//jstor.org/journals/01567365.html1 r aGEO RI3.03 Chine (République populaire) aDEW 95101491nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004800154210002600202326002500228326002700253326002900280430003500309606004400344607005200388710005000440856006600490856006700556856002800623856004700651856010900698856010800807955007100915957007300986972000901059992002501068992001201093040248224000001557020130319051117.01 a1035-7718 aFNSP142363 a0000015570 a19901023a19909999 ba0 aeng aAU aaha 10aAustralian journal of international affairs aCanberracAIIAd1990- a5 n°s par anb2010- aTrimestrielb2004-2009 a3 n°s par anb1990-2003 1aAustralian outlook,x0004-9913 aRelations internationalesxPériodiques aAustraliexRelations extérieuresxPériodiques02aAustralian Institute of International Affairs4 uhttp://www.journals.tandf.co.uk/journals/carfax/10357718.html zContenu : sommaires depuis le volume 50, numéro 1, avril 19964 uhttp://www.aiia.asn.au/ zContenu : résumés d'articles depuis 20014 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713404203db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 44 no. 1 (avr-1990) -....cParisdMagasins/AnnexeeP 4° 48401 bvol. 27 (1973) -vol. 50 (1996)cParisdMagasins/AnnexeeP Index 0829 aZSAB aGEO RJ3.01 Australie aDEW 32701408nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210002600198326002300224326002800247430003300275606003600308606004700344607005500391710004700446856005700493856005400550856010900604856010800713955007100821957007400892972000900966991001800975992002500993992001601018040248488000002240220130319051117.01 a1036-1146 aFNSP160130 a0000022402 a19910118a19909999 ba0 aeng aAU aaha 10aAustralian journal of political science aCanberracAPSAd1990- aTrimestrielb2005- a3 nos par anb1990-2004 1aPolitics (Sydney)x0032-3268 aScience politiquexPériodiques aScience politiqueyAustraliexPériodiques aAustraliexPolitique et gouvernementxPériodiques02aAustralasian Political Studies Association4 uhttp://www.tandf.co.uk/journals/carfax/10361146.html zContenu : sommaires depuis le vol. 1, no. 1, 19664 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713404457db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 25 no. 2 (nov-1990) -....cParisdMagasins/AnnexeeP 8° 23331 b(1966) -(1978) ; (1966) -(1991)cParisdMagasins/AnnexeeP Index 0143 aZSAB aexempb201009 aGEO RJ3.01 Australie aDEW 320-32100825nas 2200277 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000200015420700640017421000390023832600170027760600290029460700260032385600400034995501150038999200190050499200120052399200120053504024864X000021967320130319051118.01 a1253-6911 aFNSP789825 a0000219673 a19900101b19972002 ba0 afre aFR aa a 02aL'Autre Afrique 1ano. 1 (1997)-n.104 (2000)ano. 1 (juil. 2001)-no. 25 (2002) aPariscContinental newsd1997-2002 aHebdomadaire aActualitéxPériodiques aAfriquexPériodiques4 uhttp://www.autre-afrique.presse.fr/1 bno. 1 (mai-1997) -no. 104( janv-2000) ; no. 1 (jul-2001)- no. 11/12 (2002)cParisdMagasins/AnnexeeP 4° 6696 aGEO RE Afrique aDEW 050 aDEW 96001274nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004500139210002900184210003500213210006600248326001600314430005300330530003200383606003200415607004900447676000800496710002100504856019300525955006600718955005900784972000900843991001800852992004200870992001200912040528170000026572420130828155804.01 a1278-3986 aFNSP921386 a19990205a19979999 ba0 afre aFR aaha 10aAutrepartecahiers des sciences humaines aBondycORSTOMd1997-2004 aPariscArmand Colind2004-2008 aPariscPresses de Sciences Poa[Montpellier]cIRD éd.d2009- aTrimestriel 1aCahiers des sciences humaines (Paris)x0768-982910aAutrepartbLa Tour d'Aigues aAnthropologiexPériodiques aPays en voie de développementxPériodiques a30102aORSTOMc(France)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-autrepart.htmzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3011 bno. 1 (1997) -....cParisdMagasins/AnnexeeP 8° 6458 aZPAY aexempb201307 aGEO RO Pays en voie de développement aDEW 30101072nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210004200178326001600220601006400236607005200300710005000352856003100402955006700433955007900500955007700579955007600656992002200732992001600754039615383000005603220130319051119.01 a0750-0467 aFNSP262287 a0000056032 a19900101a19699999 ba0 afre aFR aafa 10aAvant-garde (Paris) aBagnoletcEd. de l'Avant garded1969- aTrimestriel02aMouvement de la jeunesse communistec(France)xPériodiques aFrancexPolitique et gouvernementxPériodiques02aMouvement de la jeunesse communistec(France)4 uhttp://www.lavantgarde.org1 bno. 1 (avr/jun-2009) -....cParisdMagasins/AnnexeeP F° 05601 bno. 129 (fev-2007) -no. 137 (nov-2007)cParisdMagasins/AnnexeeP 4° 72101 bno. 40 (nov-1974) -no. 108 (dec-2004)cParisdMagasinsAnnexeeP F° 03761 bno. 1 (dec-1969) -no. 39 (aou-1973)cParisdMagasins/AnnexeeP 4° 2848 aGEO RA4.06 France aDEW 944.08300719nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000041001502100028001912300024002193360013002436060046002568010013003028560030003158560051003459550005003969920028004019920012004290001182451000118245120130319051120.0 a0001182451 a a20099999k fre 01 ba0 afre aFR ar aau z  adr 10aAverroèsb[Ressource électronique] aPariscAverroèsd2009- aRevue électronique aSite Web aGéopolitiqueyMoyen-OrientxPériodiques 0aFRbFNSP4 uhttp://revueaverroes.com/ zContenu : texte intégral depuis le n°1, 20091 r aGEO RG1 Afrique du Nord aDEW 95601076nas0 2200361 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118105001800125106000600143110001600149200001900165207004000184210003800224326001700262452002900279517002600308530001900334606004600353606002900399801003000428801002300458802000700481856004900488856006400537955007600601992001200677992002500689139212507000117966620130903164210.01 a2104-7979 aissn21047979 a20091214b20092011 0frey0103 ba1 afre aFR ay  ar aac 10aBakchich hebdo 1ano. 1 (sept-2009)-no. 52 (jan-2011) aPariscGroupe Bakchichd2009-2011 aHebdomadaire 1tBakchich.infox2100-082410aBakchich hebdomadaire10aBakchich hebdo aSatire politique françaisexPériodiques aActualitéxPériodiques 3aFRbAbesc20091214gAFNOR 3aFRbISSNc20080601 a074 uhttp://www.bakchich.info/-Hebdos,00020-.html zContenu : sommaires des numéros depuis le no. 1 (sep-2009)1 bno. 1 (sep-2009) -no. 51 (dec-2010)cParisdMagasins/AnnexeeP F° 0558 aDEW 050 aGEO RA4.06 France 0101437nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004200154210003500196300033100231326001100562430008500573517006600658606004800724710006700772711003300839801002100872856006500893856006200958955005301020992002201073992001601095001019384000000348920140107134711.01 a0292-6733 aFNSP102969 a0000003489 a19900101a1982 ba0 afre aFR aaku 13aLa Balance des paiements de la France aPariscBanque de Franced1982- a1985-1991 : publié en 2 vol. : Rapport annuel ; annexes. Depuis 1996, comporte 3 vol. : Rapport annuel ; annexes ; dossier : "Les grands traits de la balance des paiements et de la position extérieure" (1996-1997) , "Vue d'ensemble" (1998-). - Paraît également dans : "Statistiques et études financières", ISSN 0015-9654 aAnnuel 1aBalance des paiements de l'année ... entre la France et l'extérieurx0071-889010aBalance des paiements et la position extérieure de la France aBalance des paiementsyFrancexPériodiques02aBanque de FrancebDirection générale des services étrangers02aFrancebDirection du Trésor 3aFRbCCN0292-67334 uhttp://www.banque-france.fr/fr/publications/catalogue/2c.htm4 zContenu : texte intégral du rapport de l'année en cours1 b(1981) -....cParisdMagasins/AnnexeeP 4° 5564 aGEO RA4.06 France aDEW 380-38201399nas0 22003251 450 001001000000002001100010005001700021020002000038035001500058100004100073101000800114102000700122105001800129110001600147200014300163210003400306215002400340301005000364311007900414430007100493440004500564500008500609606005600694712005300750801003000803801001400833856012800847955008100975991001701056113292236000107526320130319051121.0 aUSbsn 88028613 a0001075263 a20070315b19 19 a0engy0103 ba0 aeng aUS a 0  azuu 0yy 14aThe Balance of international payments of the United Statesfprepared in the Office of Business Economics, International Economics Division aWashingtoncU.S. G.P.O.d1950 a1 vol.cill.d23 cm aDemande de numérotation ISSN en cours (FNSP) aContinues : International transactions of the United States during the war 1tInternational transactions of the United States during the war ... 1tBalance of payments of the United States1|aBalance of international payments of the United States (Washington, D.C. : 1948) aBalance of paymentsyUnited StatesxPeriodicals2lc01aUnited StatesbOffice of Business Economics4340 3aFRbAbesc20070315gAFNOR 0bLCgAACR24 uhttp://catalog.hathitrust.org/Record/001719421zAccès libre au texte intégral. Texte intégral numérisé en libre accès1 b(1933) -(1935) ; (1946) -(1948) ; (1950)cParisdMagasins/AnnexeeCOL8°0205 aPériobTP0101021nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000170015420700420017121000490021321000710026232600150033360600390034860700260038760700340041385600360044785600580048395500900054197200090063199100180064099200230065899200140068104053877X000022552420130319051121.01 a1279-7952 aFNSP805707 a0000225524 a19900101b19972005 ba0 afre aFR aaja 10aBalkanologie 1aVol. 1 no 1 (1997)-vol. 9 no 2 (2005) aPoigny-la-ForêtcHomo Balkanicusd1997-1999 aPariscAssociation française d'études sur les Balkansd2000-2005 aSemestriel aIdentité collectivexPériodiques aBalkansxPériodiques aEurope de l'EstxPériodiques4 uhttp://balkanologie.revues.org/ zContenu : sommaires depuis le numéro 1, juillet 19971 bVol. 1 no 1 (juil-1997) -vol. 9 no 1/2 (dec-2005)cParisdMagasins/AnnexeeP 8° 6353 aZPAY aexempb201207 aGEO RA8.01 Balkans aDEW 949.600904nls 2200313 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000044001642100067002082300024002753260015002996060039003146070026003536070034003798010013004138560036004268560086004629550005005489920023005539920014005760001167114000116711420130319051121.0 a1965-0582 a0001167114 a a19979999k fre 01 ba0 afre aFR ar aaj z  adr 10aBalkanologieb[Ressource électronique] aPariscAssociation française d'études sur les Balkansd1997- aRevue électronique asemestriel aIdentité collectivexPériodiques aBalkansxPériodiques aEurope de l'EstxPériodiques 0aFRbFNSP4 uhttp://balkanologie.revues.org/ zContenu : texte intégral d'une sélection de numéros via revues.org depuis 19971 r aGEO RA8.01 Balkans aDEW 949.601130cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200003400156210003500190326001500225410006200240430006900302606004400371607003000415710002800445801003000473801002300503802000700526856007200533856005800605955006900663972000900732992002700741992001200768083125485000096803620130319051122.01 a1736-1834 aissn17361834 a0000968036 a20041123a20049999u y1frey0103 ba0 aeng aEE aaju uu 10aBaltic HorizonsfEuroülikool aTallinncEuroUniversityd2004- aSemestriel 1tEuroUniversity series. International relationsx1406-4812 1tThe Monthly survey of Baltic and post-Soviet politicsx1406-6165 aRelations internationalesxPériodiques aPays baltesxPériodiques02aEuroülikoolc(Tallinn) 3aFRbAbesc20060113gAFNOR 3aFRbISSNc20041123 a424 uhttp://www.euroakadeemia.ee/et/raamatupood/ajakiri-baltic-horizons/ zContenu : accès aux sommaires depuis le n°100, 20041 bno. 1 = 100 (may-2004) -....cParisdMagasins/AnnexeeP 8° 6887 aZPAY aGEO RA7.11 Pays baltes aDEW 94701034nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000146001502100036002962300024003323260011003565170038003676010035004056060035004406070050004757100021005258010013005468560054005598560059006139550005006729920019006779920012006960001132899000113289920130319051122.0 a0001132899 a a19969999k fre 01 ba0 amul aCA ar aak z  adr 10aBank of Canada. Annual report of the Governor to the Minister of Finance and statement of accountsb[Ressource électronique]fBank of Canada aOttawacBanque du Canadad1996- aRevue électronique aAnnuel10aRapport annuel - Banque du Canada02aBanque du CanadaxPériodiques aFinancesyCanadaxPériodiques aCanadaxConditions économiquesxPériodiques02aBanque du Canada 0aFRbFNSP4 uhttp://www.banqueducanada.ca/fr/annuel/index.html zContenu : texte intégral du rapport à partir de 19961 r aGEO RC1 Canada aDEW 33200948nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000034001642100035001983000047002333260011002804300053002916010034003447100020003788010013003988560116004119550055005279720009005829920012005919920031006030000329259000032925920130417104714.01 a1467-016X a0000329259 a a19999999k fre ba0 aeng aGB a 0  ar aak z 0 10aBank of England annual report aLondoncBank of Englandd1999- aA partir de 2008, en version électronique aAnnuel 1tReport and accounts - Bank of Englandx0308-527902aBank of EnglandxPériodiques02aBank of England 0aFRbFNSP4 uhttp://www.bankofengland.co.uk/publications/annualreport/index.htmzAccès libre au texte intégral depuis 20001 b(1999) -(2007)cParisdMagasins/AnnexeeP 4° 5538 aZGRA aDEW 332 aGEO RA4.02 Grande-Bretagne01224nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210003500193300006000228326001600288606005300304606005400357710002000411801002100431830012700452830004200579830003000621856004800651856003600699955008700735972000900822992003100831992001200862038674033000001125520130528110409.01 a0005-5166 aFNSP124152 a0000011255 a19900101a19609999 ba0 aeng aGB aahu 10aBank of England quarterly bulletin aLondoncBank of Englandd1960- aConsultable gratuitement en texte intégral depuis 1998 aTrimestriel aMarché financieryGrande-BretagnexPériodiques aMarché monétaireyGrande-BretagnexPériodiques02aBank of England 3aFRbCCN0005-5166 aVol. 5, no. 1, 1965--->vol. 13, no. 4, 1973 < P 8°2318 > et vol.14, no. 1, 1974--> vol.24, 1984 collection donnée au CTL a1985-2004 : coll. jetée car en ligne aCollection jetée en 20134 uhttp://www.bankofengland.co.uk/qb/index.htm zAccès libre au texte intégral1 bvol. 40 no. 4 (2000) -vol. 44 no. 4 (hiv-2004)cParisdMagasins/AnnexeeP 4° 3447 aZPAY aGEO RA4.02 Grande-Bretagne aDEW 33200873nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001100154210006300165326001200228421002400240530001900264606002600283801002100309856003000330856007200360955009700432972000900529992002100538992001200559038674130000000340120130319051122.01 a0005-5395 aFNSP102866 a0000003401 a19900101a19269999 ba0 aeng aGB aafu 10aBanker aLondoncFinancial Times Business Publishing Limitedd1926- aMensuel01tEurofilex0951-0796 0aBankerbLondon aBanquesxPériodiques 3aFRbCCN0005-53954 uhttp://www.thebanker.com/ zContenu : sélection d'articles en texte intégral depuis mai 1999.1 bvol. 123 no. 563 (jan-1973) -vol. 158 no. 994 (dec-2008)cParisdMagasins/AnnexeeP 4° 3179 aZPAY aGEO RQ Universel aDEW 33201004nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009300154210006400247210002600311326001500337530002900352606004100381710005000422801002100472856003500493856005600528955006800584972000900652991001800661992001100679039238628000001135720130319051123.01 a0067-3951 aFNSP124549 a0000011357 a19900101a19719999 ba0 afre aFR aaju 13aLa Banque des motserevue de terminologie françaisefConseil international de la langue aPariscConseil international de la langue françaised1982- aPariscPUFd1971-1981 aSemestriel10aBanque des motsb(Paris) aTerminologie (science)xPériodiques02aConseil international de la langue française 3aFRbCCN0103/72264 uhttp://www.cilf.org/bm.fr.html4 zContenu : accès aux sommaires depuis le numéro 601 bno. 1 (1971) -no. 78 (2008)cParisdMagasins/AnnexeeP 8° 2979 aZPAY aexempb201106 aDEW 4101181nas 2200361 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000150015421000440016932600150021353000280022860600370025660600440029360700450033767600080038271000710039085600500046185600460051195500730055795500690063095500590069997200090075899100180076799200220078599200120080703997913X000007428720131219155051.01 a1164-7590 aFNSP338995 a0000074287 a19900101a19929999 ba0 afre aFR aaia 13aLe Banquet aPariscCERAPd1992-aPariscPlumed1992 aSemestriel13aLe BanquetbParis. 1992 aVie intellectuellexPériodiques aIdées politiquesyFrancexPériodiques aFrancexVie intellectuellexPériodiques a00102aCentre d'étude et de réflexion pour l'action politiquec(France)4 uhttp://www.revue-lebanquet.com/rubrique5.html zContenu : sommaires depuis le no. 1, 19921 bLes 3 dernières annéescParisd27, Salle Rez-de-chausséeeDEW 0011 bL'année en courscParisdBibliothèque de rechercheeP 8° 58831 bno. 1 (1992) -....cParisdMagasins/AnnexeeP 8° 5883 aZCAD aexempb201112 aGEO RA4.06 France aDEW 00100947cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200004000156207001700196210006600213326001400279530003400293606003600327710006000363801003000423801002300453802000700476856002400483856003400507955005900541972000900600992001200609077553241000098447620130319051125.01 a1696-0947 aissn16960947 a0000984476 a20030523a20039999 0fre 0103 ba0 aeng aES aal 10aBCN political science debatesfICPS 0aN°1 (2003)- aBarcelonacInstitut de Ciències Polítiques i Socialsd2003- aBisannuel00aBCN political science debates aScience politiquexPériodiques02aInstitut de ciències politiques i socialsc(Barcelone) 3aFRbAbesc20050216gAFNOR 3aFRbISSNc20030523 a0u4 uhttp://www.icps.es/ zContient le sommaire des n°s1 bno. 1 (2003) -....cParisdMagasins/AnnexeeP 8° 6897 aZSAB aDEW 32000997nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210004000183326002600223326002300249430003200272606003700304607005500341710008100396856003500477856003600512955005900548972000900607991001800616992002500634992001200659039951669000011173720130319051127.01 a0863-4564 aFNSP471766 a0000111737 a19900101a19919999 ba0 ager aDE aaga 10aBerliner Debatte Initial aBerlincInter abo Betreuungsd1991- aBimestrielb1991-2008 aTrimestrielb2009- 1aInitial (Berlin)x086362707 aProblèmes sociauxxPériodiques aAllemagnexPolitique et gouvernementxPériodiques02aGesellschaft für Sozialwissenschaftliche Forschung und Publizistik (Berlin)4 uhttp://www.berlinerdebatte.de/ zContenu : sommaires depuis 19901 bno. 1 (1991) -....cParisdMagasins/AnnexeeP 8° 2161 aZPAY aexempb201210 aGEO RA5.01 Allemagne aDEW 94300890nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000370015421000350019132600160022660600400024285601180028285600340040085600360043495500660047097200090053699100180054599200250056399200120058803995126X000007029120131025120230.01 a0863-1808 aFNSP323457 a0000070291 a19900101a19919999 ba0 ager aDE aaha 00aBerliner Journal für Soziologie aBerlincAkademie-Verlagd1991- aTrimestriel aSociologieyAllemagnexPériodiques4 uhttp://www.vsjournals.de/index.php?do=viewmag&site=bjs&lng=de&area=soz&id=28&sid=f83a39389dded8f5d79b8741d1f048fa uhttp://www2.hu-berlin.de/bjs/4 zContenu : Sommaires depuis 19911 bvol. 1 no. 2 (1991) -....cParisdMagasins/AnnexeeP 8° 5862 aZPAY aexempb201112 aGEO RA5.01 Allemagne aDEW 30101277nas 2200241 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181060006001251100016001312000031001472100052001783000050002303260017002804400071002977120038003688560556004069550073009620000009489000000948920130319051129.0 aFNSP116797 a0000009489 a19900615b18111989 ba0 afre aFR ar aa a 10aBibliographie de la France aPariscEd. du Cercle de la librairied1811-1989 aLes suppl. sont conservés sous la même cote aHebdomadaire 1aBibliographie nationale française. Livres (1142-3250)

02aBibliothèque nationalec(France)4 uhttp://gallica.bnf.fr/Search?idArk=&n=15&p=1&lang=FR&adva=1&adv=1&reset=&urlReferer=%2Fadvancedsearch%3Flang%3DFR&enreg=&tri=&submit1=Lancer+la+recherche&catsel1=f_title&cat1=Bibliographie+de+la+France&ope2=MUST&catsel2=f_creator&cat2=&ope3=MUST&catsel3=f_tdm&cat3=&date=daTo&daFr=&daTo=&t_typedoc=periodiques&sel_provenance_Part=toutPartenaires&sel_provenance_Edist=toutSNE&sel_source=toutSources&dateMiseEnLigne=indexDateFrom&firstIndexationDateDebut=&firstIndexationDateFin=&tri=zAccès libre au texte intégral. Périodique numérisé sur Gallica1 b(1909) -no. 51/52 (20 déc-1989)cParisdMagasins/AnnexeeP 8° 030800849nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000067001502100063002172300024002803260016003045100032003206010056003528010013004088560051004218560061004729920026005339920012005590000984343000098434320130319051129.0 a0000984343 a a19999999k fre 01 ba0 afre aTZ ar aah z  adr 10aBibliographie trimestrielle du TPIRb[Ressource électronique] aArusha:cInternational Criminal Tribunal for Rwandad1999- aRevue électronique aTrimestriel10aICTR quarterly bibliography02aTribunal international pour le RwandaxPériodiques 0aFRbFNSP4 uhttp://69.94.11.53/FRENCH/library/biblioFR.htm zContenu : texte intégral depuis le numéro 1, juin 1999 aGEO RM1 Nations Unies aDEW 34100921nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000300015421000720018432600160025660600430027260700450031580100210036085600620038185600610044395500880050497200090059299100180060199200120061903867680X000001130520140113115413.01 a0006-1654 aFNSP124293 a0000011305 a19900101b19642008 ba0 aita aIT aahu 10aBiblioteca della libertà aTorinocCentro di ricerca e documentazione Luigi Einaudid1964-2008 aTrimestriel aLibéralisme économiquexPériodiques aItaliexVie intellectuellexPériodiques 3aFRbCCN0006-16544 uhttp://www.centroeinaudi.it/biblioteca-della-liberta.html zaccès au texte intégral des articles à partir de 20091 bvol. 4 no. 6 (jan-1967) -no. 193 (oct/dec-2008)cParisdMagasins/AnnexeeP 8° 2498 aZSAB aexempb200904 aDEW 00101827cas0 2200481 450 001001000000002001100010005001700021011001400038035001400052035001400066035001700080035001500097100004100112101000800153102000700161105001800168106000600186110001600192200007600208207001800284210006100302321002300363326001500386421008600401430008400487517008000571517002600651517009300677530003400770606005400804606006400858712005200922801003000974801002301004801001301027802000701040856005001047856010201097955010301199972000901302992002201311992001201333060119365000045392020130319051129.01 a1632-9201 a073572012 a073871869 aissn16329201 a0000453920 a20020319a20029999m y0frey0103 ba0 afre aFR ay 0  ar aag 0 10aBIBLIOthèque(s)erevue de l'Association des bibliothécaires français 1ano. 1 (2002)- aPariscAssociation des bibliothécaires françaisd2002- aSommaires en ligne aBimestriel |tLe Journal - Association des bibliothécaires français, Groupe Centrex1761-9718 1tBulletin d'informations - Association des bibliothécaires françaisx0004-536510aABF Bibliothèque(s)erevue de l'Association des bibliothécaires français10aBibliothèque (Paris)10aBibliothèque(s)erevue de l'Association des bibliothécaires de France et non français10aBibliothèquesb(Paris. 2002) aBibliothèquesz21e sièclexPériodiques2rameau aBibliothécairesyFrancez21e sièclexPériodiques2rameau02aAssociation des bibliothécaires français4340 3aFRbAbesc20091216gAFNOR 3aFRbISSNc20030523 0aFRbFNSP a0740uhttp://www.abf.asso.fr/publications/bulletin/ zContenu : sommaires des numéros disponibles depuis 1992, et quelques articles en texte intégral1 bConservation limitée aux 2 dernières annéescParisdFonds professionnel (4e étage)eP 4° 4467 aZPAY aGEO RA4.06 France aDEW 02001091nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000063001502100059002133000104002723260031003763360058004073370063004654400060005284520049005886060032006378010013006698560090006829550005007729920012007770000462467000046246720130319051130.0 a0000462467 a b19591971k fre 01 ba0 aeng aUS az aal z  adr 10aBiennial review of anthropologyb[Ressource électronique] aStanford, Calif.cStanford University Pressd1959-1971 aAccès au texte intégral (réservé aux sites de Sciences Po) du vol. 1, 1959 jusqu'au vol.7, 1971 aBisannuel (tous les 2 ans) aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tAnnual review of anthropology [Ressource électronique] 1tBiennial review of anthropologyx(0067-8503) aAnthropologiexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00678503.html1 r aDEW 30100984nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001800154210007800172326001600250517007200266606004600338606004400384710006400428856002600492856005800518955006700576972000900643991001800652992001200670040133923000017105920130319051130.01 a1010-9536 aFNSP647318 a0000171059 a19900101a19809999 ba0 aeng aBD aaha 10aBIISS journal aDhakacBangladesh Institute of International and Strategic Studiesd1980- aTrimestriel10aBangladesh Institute of International and Strategic Studies journal aCoopération en Asie du SudxPériodiques aRelations internationalesxPériodiques02aBangladesh Institute of International and Strategic Studies4 uhttp://www.biiss.org/ zContenu : sommaires, résumés depuis le vol. 1, 19991 bvol. 15 no. 1 (1994) -....cParisdMagasins/AnnexeeP 8° 6184 aZSAB aexempb201212 aDEW 32700943nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000420015420700250019621000460022132600110026760600390027871000510031783000530036885600820042195500730050397200090057699100180058599200220060399200160062504040210X000010322720130319051130.01 a1263-0314 aFNSP442925 a0000103227 a19900101a19859999 ba0 afre aFR aaka 13aLe Bilan de la vie associative en ... 1a1982 publié en 1985 aPariscLa Documentation françaised1985- aAnnuel aAssociationsyFrancexPériodiques aFrancebConseil national de la vie associative aSudoc à jour (04/02/2008, dm) + 23/03/2009 (mt)4 uhttp://www.ladocumentationfrancaise.fr/rapports-publics/034000022/index.shtml1 b(1985)-(2004/2007)=(1982)-(2007)cParisdMagasins/AnnexeeP 8° 4772 aZPAY aexempb201106 aGEO RA4.06 France aDEW 366-36701201nas0 2200337 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123110001600141200007200157207005200229210006600281326001500347430006600362440002500428606003400453606003800487710005600525801003000581856007200611856004800683955008500731972000900816992002200825992001600847124636896000110266820130319051131.01 a2110-4859 a0001102668 a20070702b20052010k a0frey0103 ba0 afre aFR ay  aaga 10aBimagriele magazine du Ministère de l'agriculture et de la pêche 0aN° 1517 (nov/dec-2005)- n°1542 (jan/fev-2010) aPariscMinistère de l'agriculture et de la pêched2005-2010 aBimestriel 1tBulletin d'information-Ministère de l'agriculturex0152-3295 1tAlim'agrix2110-4867 aPêchesyFrancexPériodiques aAgricultureyFrancexPériodiques01aFrancebMinistère de l'agriculture et de la pêche 3aFRbAbesc20070702gAFNOR4 uhttp://agriculture.gouv.fr/sections/mediatheque/periodiques/bimagri zContenu : sommaires depuis le n°1511, 20051 bno. 1518 (jan-2006) -no. 1542 (jan/fev-2010)cParisdMagasins/AnnexeeP 4° 2370 aZPAY aGEO RA4.06 France aDEW 338.1-301342cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118110001600125200002500141210005300166430007900219452004500298530003400343532006400377601005600441606004300497676000800540710004200548801003000590801002300620801003000643802000700673856007400680955010700754955001500861992006600876992001200942992001400954060686499000115514820140108152743.0 a1683-0121 aissn16830121 a20020308a19989999 0fre 0103 ba0 aeng aZZ aah 10aBIS quarterly review aBaslecBank for International Settlementsd1998- 1tInternational banking and financial market developments (Print)x1012-9979 1tBIS quarterly review (Online)x1683-013X10aBIS quarterly reviewb(Print)10aBank for International Settlements quarterly review (Print)02aBanque des règlements internationauxxPériodiques aFinances internationalesxPériodiques a33202aBanque des règlements internationaux 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20020308 3aFRbAbesc20080131gAFNOR a004 uhttp://www.bis.org/publ/about_qr.htmzAccès libre au texte intégral1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 332zLa Bibliothèque ne conserve que 3 ans1 bP 4° 7232 aGEO RM3 Autres organisations gouvernementales internationales aDEW 332 aDEW 341.201102nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005400139210003400193326001200227530005400239606004400293607005500337676000800392801002100400856012100421955006600542955009200608972000900700991001800709992002500727992001200752992001200764038678357000001131520131024152326.01 a0006-4416 aFNSP124352 a19900101a00019999 ba0 ager aDE aafa 10aBlätter für deutsche und internationale Politik aKölncPahl-Rugensteind0001- aMensuel00aBlätter für deutsche und internationale Politik aRelations internationalesxPériodiques aAllemagnexPolitique et gouvernementxPériodiques a940 3aFRbCCN0006-44164 uhttp://www.blaetter.dezContenu : sommaires ; résumés ; certains articles en texte intégral ; depuis juillet 19971 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 bno. 8 (1970) -....cParisdMagasins/AnnexeeP 8° 2866wManquants : no 1, 3, 4, 6, 1985 aZCAD aexempb201105 aGEO RA5.01 Allemagne aDEW 327 aDEW 94301045cas0 2200337 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001700100100004100117101000800158102000700166105001800173106000600191110001600197200005600213210003400269530002700303607006300330700003700393801003000430801002300460802000700483856013000490955005500620991002000675992001200695038291134000110402720130903173710.01 a0983-3471 a070582033 accn0983-3471 zccn7018/8092 aissn09833471 a19980709b19011902 0fre 0103 ba0 afre aFR ay  ar aac 13aLe Blocegazette hebdomadairefpar M. G. Clemenceau aPariscAlcan-Lévyd1901-190213aLe Blocb(Paris. 1901) aFrancexPolitique et gouvernementz1870-1914xPériodiques 1aClemenceaubGeorgesf(1841-1929) 3aFRbAbesc20030429gAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/bpt6k37310dzAccès libre au texte intégral. Périodique numérisé sur Gallica (1901-1902)1 b(1901) -(1902)cParisdMagasins/AnnexeeP 8° 2408 aPériobTP04 P8 aDEW 32400931nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004800139210004400187326001100231530004900242606003700291607005200328710003000380856009000410955007300500991001800573992002400591992001200615992001400627039266257000006472320130417154420.01 a0254-2102 aFNSP297182 a19900101a19789999 ba0 aspa aEC aaka 10aBoletín-anuariofBanco central del Ecuador aQuitocBanco central del Ecuadord1978- aAnnuel00aBoletín anuario - Banco central del Ecuador aFinancesyEquateurxPériodiques aEquateurxConditions économiquesxPériodiques02aBanco central del Ecuador4 uhttp://www.bce.fin.ec/frame.php?CNT=ARB0000006zAccès au texte intégral depuis 20071 bno. 1 (1978) -no. 12 (1989/1990)cParisdMagasins/AnnexeeP 8° 4131 aexempb201303 aGEO RD4.15 Equateur aDEW 332 aDEW 330.901142nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210005100191326001800242606003900260606004600299606003700345710005500382711007000437801002100507856005800528856005400586955010200640972000900742991001800751992002300769992001200792038678780000001131920130912115515.01 a0006-6249 aFNSP124376 a0000011319 a19900101a19469999 ba0 aspa aES aaia 10aBoletín de estudios económicos aBilbaocUniversidad Comercial de Deustod1946- a3 n°s par an aHistoire économiquexPériodiques aEconomie politiqueyEspagnexPériodiques aEconomie politiquexPériodiques02aAsociación de licenciados en ciencias económicas02aUniversidad de Deustoc(Bilbao)bFacultad de ciencias económicas 3aFRbCCN0006-62494 uhttp://dialnet.unirioja.es/servlet/revista?codigo=207 zContenu : sommaire depuis le vol. 35, no. 1, 19801 bno. 16 (jan-1949) -....cParisdMagasins/AnnexeeP 8° 1323wManquant : no 124, 1985 et 158, 1996 aZPAY aexempb201212 aGEO RA6.02 Espagne aDEW 33001096nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004900154210004600203326002300249326002300272530005600295607005000351710003300401801002100434856010300455856010300558955007600661972000900737992002200746992001400768036256374000001139420130319051134.01 a1121-7820 aFNSP124799 a0000011394 a19900101a19449999 ba0 aita aIT aafu 10aBollettino della Societa geografica italiana aRomacSocietà geografica italianad1944- aMensuelb1985-1992 aTrimestrielb1993- 0aBollettino della Società geografica italianab1944 aItaliexConditions économiquesxPériodiques02aSocietà geografica italiana 3aFRbCCN0037-87554 uhttp://www.societageografica.it/index.php?option=com_content&view=article&id=46&catid=46&Itemid=31 zContenu : texte intégral accessible gratuitement en ligne de 2000 à 2002 ; sommaires depuis 19651 bSérie 11 vol. 2 no. 1 (1985) -....cParisdMagasins/AnnexeeP 8° 0287 aZGRA aGEO RA6.03 Italie aDEW 330.901129nas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200004800180210002400228326001200252421003400264530001900298606002600317606005300343801003000396801002300426801001300449802000700462856003700469856006200506955006900568955007100637992003300708992001400741131445316000116274120130319051134.01 a1967-7375 aissn19677375 a0001162741 a20090226a20089999 0frey0103 ba0 afre aFR ay  ar aaf 10aBooksel'actualité par les livres du monde aPariscBooksd2008- aMensuel 1tBooks. Hors-sériex2105-798210aBooksb(Paris) aCulturexPériodiques aLittératurexHistoire et critiquexPériodiques 3aFRbAbesc20090226gAFNOR 3aFRbISSNc20080601 0aFRbFNSP a074 uhttp://www.booksmag.fr/magazine/ zContient les sommaires depuis le no 1 (dec-2008/jan-2009)1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 72431 bno 1 (dec-2008/jan-2009) -....cParisdMagasins/AnnexeeP 4° 7243 aGEO RS Sans aspect régional aDEW 80-8901036nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004200163210002200205326001100227430005900238530005000297606005800347606004400405712003000449801001300479856007500492856003900567955005500606972000900661992001600670992001200686064143376000055048420130319051135.01 a1475-858X a0000550484 a a20019999k fre ba0 aeng aGB a 0  ar aak z 0 10aBP statistical review of world energy aLondoncBP, 2001- aAnnuel 1tBP Amoco statistical review of world energyx1467-569210aBP statistical review of world energyb(2001) aRessources énergétiquesxStatistiquesxPériodiques aIndustries énergétiquesxPériodiques02aBritish Petroleum Company 0aFRbFNSP uhttp://www.bp.com/sectionbodycopy.do?categoryId=7500&contentId=7068481 ztexte intégral du dernier rapport1 b(2000) -(2002)cParisdMagasins/AnnexeeP 4° 4739 aZGRA aDEW 310-319 aDEW 33301583cas0 2200445 450 001001000000002001100010005001700021020002000038035001600058035001500074035001500089100004100104101000800145102000700153105001800160106000600178110001600184200009400200207001400294210004000308215001400348301003500362311011600397326001100513423007100524430003800595440003700633606004100670676000800711710005600719801003000775801002000805801002100825801001500846801001500861801003000876856015100906955006501057991001501122119338025000112073820130319051137.0 aUSbsn 88036036 aocm01772820 zocm7049616 a0001120738 a20071119b18291886m y0frey0103 ba0 aeng aGB ay 0  ar azka 0yy 14aThe British almanac of the Society for the Diffusion of Useful Knowledge for the year ... 0a1829-1886 aLondoncCharles Knightd[1829-1886] av.d19 cm aDemande d'ISSN en cours (FNSP) aIssues for 1829-1886 bound with: Companion to the almanac, or, Year-book of general information for <1829-1886> aAnnuel 1tCompanion to the almanac, or, Year-book of general information for 1tBritish almanac, for the year ... 1tBritish almanac for the year ... aAlmanachs britanniquesxPériodiques a05002aSociety for the Diffusion of Useful Knowledgec(GB) 3aFRbAbesc20071120gAFNOR 1aUSbOCLCgAACR2 2aFRbAUROCgAFNOR 0bMULgAACR2 2bNYGgAACR2 3aFRbAbesc20071119gAFNOR4 uhttp://www.archive.org/stream/britishalmanac00goog#page/n8/mode/2upzAccès libre au texte intégral. Année 1850 numérisée sur Internet Archive1 b(1844) -(1859) ; (1874)cParisdMagasins/AnnexeeCOL12°0170 aPériobTZ01311nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210002800195326001100223430005400234440006400288517003200352606005900384606005300443606005300496607007500549676000800624710005600632856005600688856004900744955007000793972000900863991001800872992003100890992001600921036827983000024685820130319051138.01 a1368-9886 aFNSP866535 a0000246858 a19900101b19972004 ba0 aeng aGB aaka 10aBritish elections and parties review aLondoncCassd1997-2004 aAnnuel 1aBritish elections and parties yearbookx0986-2481 1tJournal of elections, public opinion and partiesx1745-728910aBritish elections & parties aElectionsyGrande-BretagnexStatistiquesxPériodiques aPartis politiquesyGrande-BretagnexPériodiques aPartis politiquesyGrande-BretagnexRépertoires aGrande-BretagnexPolitique et gouvernementxStatistiquesxPériodiques a32002aPolitical Studies Association of the United Kingdom4 uhttp://www.tandf.co.uk/journals/titles/17457289.asp zContenu : sommaires depuis le volume 5, 19961 bvol. 7 (1997) -vol. 14 (2004)cParisdMagasins/AnnexeeP 8° 5934 aZSAB aexempb201202 aGEO RA4.02 Grande-Bretagne aDEW 324.2-501154nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004300154210005300197326001100250440004500261606005300306606005900359606005300418607007500471710005600546856004300602856004900645955006900694991001800763992003100781992001600812037936182000008185820130319051138.0 a0968-2481 aFNSP364085 a0000081858 a19900101b19921996 ba0 aeng aGB aaka 10aBritish elections and parties yearbook aHemel HempsteadcHarvester Wheatsheafd1992-1996 aAnnuel 1aBritish elections and partiesx1368-9886 aPartis politiquesyGrande-BretagnexRépertoires aElectionsyGrande-BretagnexStatistiquesxPériodiques aPartis politiquesyGrande-BretagnexPériodiques aGrande-BretagnexPolitique et gouvernementxStatistiquesxPériodiques02aPolitical Studies Association of the United Kingdom4 uhttp://www.frankcass.com/jnls/bepr.htm zContenu : sommaires depuis le volume 5, 19961 bvol. 2 (1992) -vol. 6 (1996)cParisdMagasins/AnnexeeP 8° 5934 aexempb201202 aGEO RA4.02 Grande-Bretagne aDEW 324.2-501305nls 2200361 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000070001642070034002342100035002682300005003033000058003083260016003663360056003823370071004386060028005098010013005378560090005508560108006408560072007488560069008209550005008899920033008949920016009270000802814000080281420130319051138.01 a0007-1005 a0000802814 a a19529999k fre 01 ba0 aeng aGB az aah z  adr 10aBritish journal of educational studiesb[Ressource électronique] 1aVol. 1, n°1 (November 1952)- aOxfordcBasil Blackwell & Mott a aTexte intégral depuis le vol. 1, n°1, November 1952 aTrimestriel aDonnées textuelles accessibles uniquement en ligne aTéléchargement de fichiers TIFF, PDF (recommandé) ou PostScript aEducationxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00071005.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.blackwellpublishing.com/journal.asp?ref=0007-1005&site=1 zContenu : sommaires en ligne depuis le vol. 45, n°1, March 19971 r aGEO RS Sans aspect régional aDEW 370-37901539nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210005000198210002900248326002300277326002800300517000900328606004200337606005900379801002100438856012800459856010800587856010100695856010800796955008600904957007200990972000901062991001801071992002101089992003101110992001201141038680521000001148420131127152911.01 a0007-1080 aFNSP125182 a0000011484 a19900101a19639999 ba0 aeng aGB aaha 10aBritish journal of industrial relations aLondoncLondon School of Economicsd1963-1984 aOxfordcBlackwelld1985- aTrimestrielb1991- a3 nos par anb1963-199010aBJIR aRelations industriellesxPériodiques aRelations industriellesyGrande-BretagnexPériodiques 3aFRbCCN0007-10804 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=BJI&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100816 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 4 no 1 (1966) -vol. 50 no. 4 (déc-2012)cParisdMagasins/AnnexeeP 8° 23441 bvol. 1 (1963) -vol. 19 (1981)cParisdMagasins/AnnexeeP Index 0385 aZPAY aexempb200904 aGEO RQ Universel aGEO RA4.02 Grande-Bretagne aDEW 33101430nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210002800200326002300228326002800251326002600279607003100305710004700336856005700383856006500440856010300505856010800608856010900716856010800825955007100933972000901004991001801013992002501031992001201056036740438000026954520130805121047.01 a1353-0194 aFNSP932598 a0000269545 a19990402a19919999 ba0 aeng aGB aaja 10aBritish journal of Middle Eastern studies aAbingdoncCarfaxd1991- aTrimestrielb2013- a3 nos par anb2006-2012 aSemestrielb1991-2005 aMoyen-OrientxPériodiques02aBritish Society for Middle Eastern Studies4 uhttp://www.tandf.co.uk/journals/carfax/13530194.html zContenu : sommaires, depuis le volume 23, numéro 1,mai 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/13530194.html?&cookieSet=1 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713407085db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 25 no. 1 (mai-1998) -....cParisdMagasins/AnnexeeP 8° 6471 aZSAB aexempb201212 aGEO RG2 Moyen-Orient aDEW 95601548nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210004600195326001600241606003600257606005300293676000800346801002100354856004200375856005400417856010500471856010800576856009000684856010800774955006700882955006900949955007001018972000901088991001801097992003101115992001601146002930021000001148020131219155224.01 a0007-1234 aFNSP125178 a0000011480 a19900101a19719999 ba0 aeng aGB aaha 10aBritish journal of political science aLondoncCambridge University Pressd1971- aTrimestriel aScience politiquexPériodiques aScience politiqueyGrande-BretagnexPériodiques a320 3aFRbCCN0007-12344 uhttp://uk.cambridge.org/journals/jps/ zContenu : sommaires depuis le vol. 28, n°1, 19984 uhttps://acces-distant.sciences-po.fr/fork?http://www-fr.ebsco.com/online/direct.asp?JournalID=102048 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00071234.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bL'année en courscParisdBibliothèque de rechercheeP 8° 28731 bvol. 1 no. 1 (jan-1971) -....cParisdMagasins/AnnexeeP 8° 2873 aZCAD aexempb201105 aGEO RA4.02 Grande-Bretagne aDEW 320-32101654nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200009100163207003100254210002900285326002300314326002800337517006000365606005300425607006100478710005600539801001300595856010100608856010800709856012800817856010800945955009001053955006901143972000901212992001601221992003101237044837887000039443520140110091527.01 a1369-1481 a0000394435 a a19999999k fre ba0 aeng aGB a 0  ar aai z 0 10aBritish journal of politics & international relationsf[Political Studies Association] 1aVol. 1, no. 1 (Apr. 1999)- aOxfordcBlackwelld1999- aTrimestrielb2003- a3 nos par anb1999-200210aBritish journal of politics and international relations aScience politiqueyGrande-BretagnexPériodiques aGrande-BretagnexPolitique et gouvernementxPériodiques02aPolitical Studies Association of the United Kingdom 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=102570 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=BML&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 2 no. 1 (avr-2000) -vol. 14 no. 4 (nov-2012)cParisdMagasins/AnnexeeP 8° 65691 bL'année en courscParisdBibliothèque de rechercheeP 8° 6569 aZCAD aDEW 320-321 aGEO RA4.02 Grande-Bretagne01470nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210002900187326001600216606002900232606004600261710005300307801002100360856012800381856010800509856009000617856010800707856004600815856007400861955007000935972000901005991001801014992003101032992002101063992001201084038680777000001148320131025120004.01 a0007-1315 aFNSP125181 a0000011483 a19900101a19509999 ba0 aeng aGB aaha 10aBritish journal of sociology aLondoncRoutledged1950- aTrimestriel aSociologiexPériodiques aSociologieyGrande-BretagnexPériodiques02aLondon School of Economics and Political Science 3aFRbCCN0007-13154 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=BJS&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00071315.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.blackwell-synergy.com/loi/bjos zContenu : sommaires et résumés depuis le volume 50, numéro 1, 19991 bvol. 1 no. 1 (mar-1950) -....cParisdMagasins/AnnexeeP 8° 0851 aZSAB aexempb201101 aGEO RA4.02 Grande-Bretagne aGEO RQ Universel aDEW 30101502nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000046001642100039002103260018002496060045002678010013003128560203003258560108005288560103006368560108007398560109008478560108009569550091010649720009011559920012011640000598689000059868920130319051138.01 a0142-5692 a0000598689 a a19809999 fre 01 ba0 aeng aGB a 0  ar aag z 0 10aBritish journal of sociology of education aAbingdoncCarfax Publishingd1980- a5 n°s par an aSociologie de l'éducationxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://web.ebscohost.com/ehost/detail?vid=1&hid=14&sid=b1d8d918-ce7e-4340-ab0c-dffa2c28af75%40sessionmgr14&bdata=JnNpdGU9ZWhvc3QtbGl2ZQ%3d%3d#db=sih&jid=BRT zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=102205 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713409002db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 24 no. 1 (fev-2003) -vol. 28 no. 6 (nov-2007)cParisdMagasins/AnnexeeP 8° 6737 aZPAY aDEW 30101458nas0 2200409 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200002100180207003100201210004300232326001800275606005300293607006100346676000800407801003000415801002300445802000700468856010700475856007600582856010300658856010800761955006600869955000500935955007000940972000901010992001701019992001201036109988353000104325820130716151803.01 a1746-918X aissn1746918X a0001043258 a20061013a20069999k y0frey0103 ba0 aeng aGB a 0  ar aaia 0uu 10aBritish politics 0aVol. 1, no. 1 (Apr. 2006)- aBasingstokecPalgrave Macmilland2006- a3 n°s par an aScience politiqueyGrande-BretagnexPériodiques aGrande-BretagnexPolitique et gouvernementxPériodiques a940 3aFRbAbesc20061013gAFNOR 3aFRbISSNc20061013 a024 uhttps://acces-distant.sciences-po.fr/fork?http://www.palgrave-journals.com/bp/journal/v2/n1/index.html zContenu : résumés et texte intégral depuis le vol.1, n°1,april 20064 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=1147424 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 a1 bvol. 1 no. 1 (avr-2006) -....cParisdMagasins/AnnexeeP 8° 6922 aZCAD aGEO RA4 . 02 aDEW 94100843nls 2200277 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101106000600108110001600114135001800130200008600148210004300234230002800277326001100305606003800316710005100354801001300405856010900418955000500527992002100532992001200553153476184000124148320131120153015.01 a2044-9437 a a19769999k fre 01 ba0 aeng aGB ar aak z  adr 10aBritish yearbook of international lawb[Ressource électronique]fOxford journals aOxfordcOxford University Pressd1976- aRessource électronique aAnnuel aDroit internationalxPériodiques02aRoyal Institute of International Affairsc(GB) 0aFRbFNSP4 uhttp://bybil.oxfordjournals.org/content/by/yearzAccès au texte intégral à partir de l'éditiion 19761 r aGEO RQ Universel aDEW 34101265nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200004200138210005100180326001500231441006900246606003700315710004000352801002100392856012800413856010800541856009000649856010800739955006500847972000900912991001800921992001200939038681048000000353520140106112033.01 a0007-2303 aFNSP103122 a0000003535 a19900101a19709999 ba0 aeng aUS10aBrookings papers on economic activity aWashington, D.C.cBrookings Institutiond1970- aSemestriel 1aBrookings papers on economic activity. Microeconomicsx1057-8641 aEconomie politiquexPériodiques02aBrookings Institutionc(Etats-Unis) 3aFRbCCN0007-23034 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=BPE&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00072303.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 2 (1970) -(aut-2011)cParisdMagasins/AnnexeeP 8° 2936 aZPAY aexempb201106 aDEW 33001135nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005900154210005500213326001100268437005300279606005200332606004900384712004000433856004200473856009000515856010800605955005600713991001700769992002300786992001200809040283356000010328020130319051138.01 a1057-8641 aFNSP443025 a0000103280 a19900101b19891998 ba0 aeng aUS aaja 10aBrookings papers on economic activity.iMicroeconomics aWashington, D.C.cBrookings Institutiond1989-1998 aAnnuel 1aBrookings papers on economic activityx0007-2303 aHistoire économiquez20e sièclexPériodiques aEconomie politiqueyEtats-UnisxPériodiques02aBrookings Institutionc(Etats-Unis)4 uhttp://www.brook.edu/pub/Journals.htm4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/10578641.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1989) - (1998)cParisdMagasins/AnnexeeP 8° 5971 aexemp$201111 aGEO RC2 Etats-Unis aDEW 33801378cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200011900180207003200299210005900331326001500390430005200405517001800457606004400475710008100519801003000600801002300630802000700653856012800660856010800788955009900896972000900995992001201004094071047000093119620130319051138.01 a1080-0786 aissn10800786 a0000931196 a19940922a19949999k y1fre 0103 ba0 aeng aUS a 0  ar aaja 0uu 14aThe Brown journal of world affairsfpublished in collaboration with the Watson Institute for International Studies 0aVol. 1, n°2 (Spring 1994)- aProvidence, RIcBrown Journal of World Affairsdc1994- aSemestriel 1tThe Brown journal of foreign affairsx1072-679910aWorld affairs aRelations internationalesxPériodiques02aThomas J. Watson Jr. Institute for International Studiesc(Providence, R.I.) 3aFRbAbesc20051209gAFNOR 3aFRbISSNc20051021 a014 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=JI8&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 10 no. 1 (ete/aut-2003) -vol. 11 no. 2 (hiv/pri-2005)cParisdMagasins/AnnexeeP 8° 6865 aZSAB aDEW 32701046nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101001300108102000700121105001800128110001600146200013900162207003400301210003600335326001600371430005000387606003700437710007200474801001300546856005300559856004700612955006400659972000900723992001200732073381527000060561820130319051139.01 a1379-9932 a0000605618 a a20029999 fre 01 ba0 afreaeng aBE a 0  aah z 0 10aBrussels economic reviewd= Cahiers économiques de BruxellesfDépartement d'économie appliquée de l'Université libre de Bruxelles 1aVol. 45, n° 3 (Autumn 2002)- aBruxellescEd. du DULBEAd2002- aTrimestriel 1tCahiers économiques de Bruxelles,x0008-0195 aEconomie politiquexPériodiques02aUniversité libre de BruxellesbDépartement d'économie appliquée 0aFRbFNSP4 uhttp://homepages.vub.ac.be/mcincera/BER/BER.html zContenu : accès aux sommaires depuis 19971 bvol. 45 no. 3 (aut-2002) -....cParisdMagasinseP 8° 2008 aZPAY aDEW 33001396nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004300139207002600182210003500208300008600243326001100329452005500340530004300395606003700438607006500475710004800540856020200588955006400790955014200854972000900996991001801005992002301023992001201046039106810000000834420131210171345.01 a0163-2000 aFNSP114492 a19900530a19369999 ba0 aeng aUS aaka 10aBudget of the United States Government 1a1935 publié en 1936- aWashington, D.C.cUSGPOd1936- aPublication en 2 volumes. - Vol. 1 s'intitule : Fiscal year, le vol. 2 : Appendix aAnnuel 1tBudget of the United States Government (Dept. ed.)00aBudget of the United States Government aBudgetyEtats-UnisxPériodiques aEtats-UnisxCrédits budgétaires et dépensesxPériodiques02aEtats-UnisbOffice of Management and Budget4 uhttp://search.whitehouse.gov/search?affiliate=wh&form_id=usasearch_box&m=false&page=1&query=fiscal+year+budget&submit.x=28&submit.y=13zAccès au texte intégral des 3 dernières éditions en ligne1 bno 1(1980) -no 2 (2011)cParisdMagasins/AnnexeeP 4° 55471 b(1935) -(1936) ; (1938) ; (1945) ; (1951) ; (1954) -(1955) ; (1966) -(1967) ; (1969) ; (1975) -(1979)cParisdMagasins/AnnexeeCOL4°0323 aZCAD aexempb201312 aGEO RC2 Etats-Unis aDEW 33601024nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000046001552100086002013260011002876060062002987100125003608560100004858560036005859550054006219720009006759920022006849920016007069920012007220000172337000017233720130319051139.0 a1152-5029 aFNSP651390 a0000172337 a19900101b00012007 ba0 afre aFR aaka 10aBudgets primitifs des départements en... aPariscService des statistiques, des études et des techniques localesd0001-2007 aAnnuel aBudgetyFrancexDépartementsxStatistiquesxPériodiques02aFrancebDirection générale des collectivités localesbService des statistiques, des études et des techniques locales4 uhttp://www.dgcl.interieur.gouv.fr/publications/collections/Collections/col_stat_fin_local_2.htm4 zAccès libre au texte intégral1 b(1994)-(2007)cParisdMagasins/AnnexeeP 4° 6559 aZGRA aGEO RA4.06 France aDEW 310-319 aDEW 33601079nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000041001552100086001963260011002825300044002936060057003377100125003948560100005198560036006199550063006559720009007189920022007279920012007499920016007610000172333000017233320130319051139.0 a1155-5629 aFNSP651383 a0000172333 a19900101b00012006 ba0 afre aFR aaka 10aBudgets primitifs des régions en... aPariscService des statistiques, des études et des techniques localesd0001-2006 aAnnuel00aBudgets primitifs des régions (France) aBudgetyFrancexRégionsxStatistiquesxPériodiques aFrancebDirection générale des collectivités localesbService des statistiques, des études et des techniques locales4 uhttp://www.dgcl.interieur.gouv.fr/publications/collections/Collections/col_stat_fin_local_2.htm4 zAccès libre au texte intégral1 b(1991) ; (1993)-(2006)cParisdMagasins/AnnexeeP 4° 6560 aZGRA aGEO RA4.06 France aDEW 336 aDEW 310-31901348nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200010700139210006400246300003200310326001600342430003300358510006000391530005300451601003900504606003300543607004800576710002500624830004200649830005800691856010000749955007800849972000900927991001800936992002000954992001200974039284271000006075320130930130424.01 a0256-5323 aFNSP278398 a19900101a19829999 ba0 aeng aIR aaha 10aBulletinfBank Markasi Islamic Republic of Iran‎f= the Central Bank of the Islamic Republic of Iran aTehrancCentral Bank of the Islamic Republic of Irand1981- aArrive avec 2 ans de retard aTrimestriel 1aBulletin - Bank Markazi Iran10aBulletin - Central Bank of the Islamic Republic of Iran10aBulletin - Bank Markasi Islamic Republic of Iran02aCentral Bank of IranxPériodiques aFinancesyIranxPériodiques aIranxConditions économiquesxPériodiques02aCentral Bank of Iran a1962--1984 donné au CTL en juin 2002 a1984/1985-2000 : collection envoyée au Ctles en 20134 uhttp://www.cbi.ir/SimpleList/Bulletin_en.aspxzAccès libre au texte intégral depuis 2001/20021 bno 113/114 (1985) -no. 177/178 (2000)cParisdMagasins/AnnexeeP 4° 2260 aZGRA aexempb201305 aGEO RG4.02 Iran aDEW 33201770cas0 2200469 450 001001000000002001100010005001700021011001400038035001400052035002000066035001700086035001700103035001500120100004100135101000800176102000700184105001800191106000600209110001600215200005500231207003100286210006300317300016700380326001100547432010100558440007700659517003100736530005600767531004100823532006300864606004500927606003900972710005901011801001301070802000701083856006301090856003701153955006801190972000901258992001201267992002101279050921711000031746320130517153557.0 a1624-6519 a057926697 a(OCoLC)48845001 accn7209/4818 aissn16246519 a0000317463 a20000614b20002009u y0frey50 ba0 afre aFR ay  ar aauu uu 00aBulletinfCentre d'histoire sociale du XXe siècle 0aN ° 23(2000)-N° 32(2009) aPariscCentre d'histoire sociale du XXe siècled2000-2009 aCesse de paraître au format papier avec le n° 32 de 2009. Les n° suivants sont accessibles directement sur le site Internet du Centre d'histoire du XXe siècle aAnnuel 0tBulletin du Centre de recherches d'histoire des mouvements sociaux et du syndicalismex0220-2018 1tBulletin (Centre d'histoire sociale du XXe siècle. En ligne)x2262-854110aBulletin - CHS XXe siècle10aBulletin - Centre d'histoire sociale du XXe siècle 0aBull. - Cent. hist. soc. XXe siècle10aBulletin - Centre d'histoire sociale du vingtième siècle aMouvements sociauxxPériodiques2rameau aSyndicalismexPériodiques2rameau02aCentre d'histoire sociale du XXe sièclec(Paris)4070 0aFRbFNSP a074 uhttp://histoire-sociale.univ-paris1.fr/spip.php?article4004 zAccès libre au texte intégral.1 bno.23 (2000) -no. 32 (2009)cParisdMagasins/AnnexeeP 8° 6056 aZGRA aDEW 303 aGEO RQ Universel00976nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000540015421000780020832600160028651700100030251700520031260600320036460600440039671000530044085600660049385600360055995500580059597200090065399200120066204031250X000024526920130319051140.01 a1071-9652 aFNSP862660 a0000245269 a19900101a19929999 ba0 aeng aUS aaya 10aBulletin - Cold War International History Project aWashington, D.C.cWoodrow Wilson International Center for Scholarsd1992- aIrrégulier10aCWIHP10aCold War International History Project Bulletin aGuerre froidexPériodiques aRelations internationalesxPériodiques02aWoodrow Wilson International Center for Scholars4 uhttp://www.wilsoncenter.org/publication-series/cwihp-bulletin4 zAccès libre au texte intégral1 bno. 2 (1992) -...cParisdMagasins/AnnexeeP 4° 6756 aZGRA aDEW 32701822cas0 2200385 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147105001800154106000600172110001600178200006300194207002900257210002400286304035100310306005500661440004800716512014500764530006500909710005800974711006101032712006301093801003001156801002301186802000701209856014501216955005501361991002001416078579759000109462220130319051140.0 a1766-8298 a03853777X aissn17668298 a0001094622 a20030523b18761911 y frey0103 ba0 afre aFR a 0  ar aau 0 10aBulletinfSociété de géographie commerciale de Bordeaux 0aN.1(1876=1874/75)-(1911) aBordeauxd1876-1911 aLe titre de couv. mentionné varie. En 1883, la couv. porte "Association française pour l'avancement des sciences. Groupe géographique du Sud-ouest. Société de géographie..... Bulletin" et à partir de 1900, la couv. porte "Groupe géographique et ethnographique du Sud-Ouest. Bulletin de la Société de géographie commerciale de Bordeaux" aNouvelle adresse bibliographique : Féret libraire 1tRevue de géographie commercialex1766-830110aAssociation française pour l'avancement des sciences. Groupe régional girondin. Société de géographie commerciale de Bordeaux. Bulletin10aBulletinb(Société de géographie commerciale de Bordeaux)02aSociété de géographie commerciale de Bordeaux407002aGroupe géographique et ethnographique du Sud-ouest407002aAssociation française pour l'avancement des sciences4340 3aFRbAbesc20070531gAFNOR 3aFRbISSNc20030523 a074 uhttp://gallica.bnf.fr/ark:/12148/cb328696274/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1874-1912)1 b(1891) -(1897)cParisdMagasins/AnnexeeP 8° 0819 aPériobTP02 P801050nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200004200160210007200202326001200274606004600286856014700332955008100479957009100560972000900651991001800660991003600678992002200714992001200736039220885000005685820130319051140.01 a0007-411X aFNSP265263 a0000056858 a19900101a18309999 ba0 afre aFR ar aafa 10aBulletin annoté des lois et décrets aPariscPublications périodiques de l'Imprimerie Paul Dupontd1830- aMensuel aDroityFrancexLégislationxPériodiques4 uhttp://gallica.bnf.fr/ark:/12148/cb34426061p/date.r=.langFRzAccès libre au texte intégral. Périodique partiellement numérisé sur Gallica1 bno. 1 (1830) -vol. 173 no. 12 (dec-2003)cParisdMagasins/AnnexeeP 8° 03821 b(1830) -(1860) ; (1870) -(1886) ; (1886) -(1900)cParisdMagasins/AnnexeeP Index 0094 aZPAY aexempb201104 anumer0 (complément de gallica) aGEO RA4.06 France aDEW 34801289cas0 2200361 450 00100100000000200110001000500170002101100140003803500170005203500170006903500150008610000410010110100080014210200070015010500180015710600060017511000160018120000630019721000650026032600110032544000420033651700560037853000630043453100370049771200470053480100300058180100230061180200070063485600900064185601080073195500680083999100200090703798053X000111362320130319051140.0 a0398-8147 accn0398-8147 aissn03988147 a0001113623 a19910110b19511952u y0frey0103 ba0 afre aFR ay  ar aaju uu 10aBulletin annuel de l'Institut français d'histoire sociale aCourbevoiecInstitut français d'histoire socialed1951-1952 aAnnuel 1tL'Actualité de l'histoirex0398-812010aBulletin de l'Institut français d'histoire sociale00aBulletin annuel de l'Institut français d'histoire sociale 0aBull. annu. Inst. fr. hist. soc.02aInstitut français d'histoire sociale4340 3aFRbAbesc20071003gAFNOR 3aFRbISSNc20071003 a074 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03988147.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 2 (1952) ; no. 3 (1952)cParisdMagasins/AnnexeeP 4° 1119 aPériobTP02 P401888cas0 2200433 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035002500100035001500125100004100140101000800181102000700189105001800196106000600214110001600220200008000236207006300316210007100379326001100450431012900461446012400590446011700714517007900831530008000910531004200990606003501032712006601067801003001133801002301163801002901186802000701215856014501222955006701367991002001434037453769000109456520130319051140.0 a0071-8394 a07051433X accn0071-8394 aissn00718394 aFRBNF327170950000005 a0001094565 a19960829b18831973 y0frey0103 ba0 afre aFR a 0  ar aaku 0uu 10aBulletin archéologique du Comité des travaux historiques et scientifiques 0a1883-1963/1964aN.s., vol. 1 (1965/66)-n.s., vol. 7 (1973) aPariscComité des travaux historiques et scientifiquesd1883-1973 aAnnuel |tBulletin du Comité des travaux historiques et scientifiques. Section d'histoire, d'archéologie et de philologiex0994-8325 |tBulletin archéologique du Comité des travaux historiques et scientifiques. Fasc. A, Antiquités nationalesx0997-5322 |tBulletin archéologique du Comité des travaux historiques et scientifiques. Fasc. B, Afrique du Nordx0997-530610aBulletin du Comité des travaux historiques et scientifiques. Archéologie00aBulletin archéologique du Comité des travaux historiques et scientifiques 0aBull. archéol. Com. trav. hist. sci. aHistoirexPériodiques2rameau02aFrancebComité des travaux historiques et scientifiques4340 3aFRbAbesc20070308gAFNOR 3aFRbISSNc20030203 3aFRbBnFc20060327gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb327170958/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1883-1935)1 bno. 2 (1883) -no. 2 (1905)cParisdMagasins/AnnexeeP 8° 0791 aPériobTP02 P801403nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200007500163207010600238210002900344326001700373441004700390530003100437601003900468601004500507606003700552710003000589801001300619856014100632955021700773991005900990992001601049038555875000047230220130319051140.0 a1149-381X a0000472302 a b19201933k fre ba0 afre aFR a 0  ar aa z 0 10aBulletin communisteeorgane du Comité de la Troisième internationale 1a1ère an., no. 1(1920)-5ème an., no. 46 (1924)a6ème an. no. 1 (1925)-14ème an., no. 32/322 (1933) aParisc[s.n.]d1920-1933 aHebdomadaire 1tCahiers du bolchévisme (Paris)x1149-827710aBulletin communistebParis02aInternationalec(03)xPériodiques02aParti communiste françaisxPériodiques aCommunismeyFrancexPériodiques02aParti communiste francais 0aFRbFNSP4 uhttp://gallica.bnf.fr/ark:/12148/cb34429127h/date.r=.langFRzAccès libre au texte intégral. Années 1922-1923 numérisées sur Gallica1 b1ère an., no. 17 (8 jul-1920)-6ème an. no. 46 (14 nov-1924)cParisdAnnexeeP P4° 2151wManquant : nos 1, 16, 22, 1920 ; nos 15, 16, 23, 25, 33/35, 44/45, 51, 57, 1921 ; nos 7, 11, 15, 22, 25, 31, 37, 40, 1922 anumer0 (complément gallica mais collection lacunaire) aDEW 324.2-501323cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001700069100004100086101000800127102000700135110001600142200011000158207004500268210007000313326001800383440003500401530003600436601003300472606004200505606003400547606003300581710005900614801003000673801003000703801002300733802000700756856007400763955008700837972000900924992001600933048750026000105575620131104153741.01 a1292-5497 accn1292-5497 aissn12925497 a20000228a19949999k y0frey0103 ba0 afre aFR aaiu uu 10aBulletin d'études de la MarinefMinistère de la Défense. Centre d'enseignement supérieur de la Marine 1ano. 11(fev-1994,fév.)-no. 50 (oct-2010) a[Paris]cCentre d'enseignement supérieur de la Marined1994-2010 a3 n°s par an 1tEtudes de la Marinex2119-775X02aBulletin d'études de la Marine02aFrancebMarinexPériodiques aLittorauxxAménagementxPériodiques aDroit de la merxPériodiques aDroit maritimexPériodiques02aCentre d'enseignement supérieur de la marinec(Paris) 3aFRbAbesc20060711gAFNOR 3aFRbAbesc20060711gAFNOR 3aFRbISSNc20010401 a074 uhttp://www.cesm.air.defense.gouv.fr/zAccès libre au texte intégral1 bConservation limitée aux 5 dernières annéescParisdMagasins/AnnexeeP 4° 7163 aZGRA aDEW 355-35901366cas0 2200361 450 001001000000002001100010005001700021011002500038035001700063035001700080035002500097035001500122100004100137101000800178102000700186105001800193110001600211200005400227207001900281210002700300326001600327440008700343710012200430711006600552801003000618801002300648801002900671802000700700856015300707955011600860991001700976991001100993038761238000107575020130319051140.0 a1246-7006y1155-7478 accn1246-7006 aissn12467006 aFRBNF327175500000000 a0001075750 a19931213b19111924uuuy1frey0103 ba0 afre aFR a 0  aahu 0uu 10aBulletin d'histoire économique de la Révolution 0a1911-1920/1921 aPariscCTHSd1911-1924 aTrimestriel 1tBulletin d'histoire économique et sociale de la Révolution françaisex0068-405802aFrancebCommission de recherche et de publication des documents relatifs à la vie économique de la Révolution407002aFrancebComité des travaux historiques et scientifiques4070 3aFRbAbesc20060703gAFNOR 3aFRbISSNc20050826 3aFRbBnFc20060327gAFNOR a074 uhttp://archive.org/stream/bulletindhistoi00frangoog#page/n11/mode/2upzAccès libre au texte intégral. Année 1907 numérisée sur Internet Archive1 b(1911) ; (1912) ; (1913) ; (1914) -(1916) ; (1917) -(1919) ; (1920) -(1921)cParisdMagasins/AnnexeeCOL8°0679 aPériobTP01 anumer000814nls 2200241 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200007800124210008000202230002400282326001400306601004400320712003000364801001300394856012800407992002500535992001200560000096118520131129142821.0 a a19959999k fre 01 ba0 afre aFR ar aae z  adr 10aBulletin d'information de la Cour de cassationb[Ressource électronique] aPariscService de documentation et d'études de la Cour de cassationd1995- aRevue électronique aBimensuel02aFrancebCour de cassationxPériodiques02aFrancebCour de cassation 0aFRbFNSP4 uhttp://www.courdecassation.fr/publications_cour_26/bulletin_information_cour_cassation_27/zAccès libre au texte intégral aGEO RA4.06 France 01 aDEW 34801149nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200019600154207004000350210004300390326001500433430006300448601003800511606003600549710005700585856009700642955008800739992001800827992001400845076642887000025574120130319051140.01 a1608-960X aFNSP892582 a0000255741 a19900101a19969999 f ba0 afre aFR aaja 10aBulletin d'information sur les droits de l'hommeeactivités du Conseil de l'Europe en matière de droits de l'hommefCouncil of Europef= Conseil de l'Europe, Direction des droits de l'homme 1aN° 39(juillet 1996-février 1997)- aStrasbourgcConseil de l'Europed1996- aSemestriel 1aFeuille d'information sur les droits de l'hommex0259-139102aConseil de l'EuropexPériodiques aDroits de l'hommexPériodiques02aConseil de l'EuropebDirection des droits de l'homme uhttp://www.humanrights.coe.int/Bulletin/fre/presenting.htmzAccès libre au texte intégral.1 bno. 39 (jul-1996-(fev-1997) -no. 42 (1997/1998)cParisdMagasins/AnnexeeP 4° 4627 aGEO RA Europe aDEW 341.201510nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007300154210002600227326001600253430007500269440003700344517003700381517007600418606004100494606004400535606004400579712004700623801002100670830020900691856005000900856008100950955006201031972000901093992002201102992001201124039219895000001143520130319051140.01 a0004-5365 aFNSP125011 a0000011435 a19900101b19462001 ba0 afre aFR aahu 10aBulletin d'informations - Association des bibliothécaires français aPariscABFd1946-2001 aTrimestriel 1tChronique - Association des bibliothécaires françaisxISSN 1256-2173 1tBIBLIOthèque(s)xISSN 1632-920110aBulletin d'informations - A.B.F.10aBulletin d'informations de l'Association des bibliothécaires français aBibliothèquesyFrancexPériodiques aBibliothéconomieyFrancexPériodiques aSciences de l'informationxPériodiques02aAssociation des bibliothécaires français 3aFRbCCN0004-5365 arN° 13, mars 1954 ----> n° 105, 1979 < P 8°1276 >, n° 106,1980 ---->1984 < P 4°4467 > : collection Locarchives à jeter ; conservons seulement Bibliothèque(s) 2 ans, notice désactivée janvier 20084 uhttp://www.abf.asso.fr/publications/bulletin/ zContenu : sommaires des numéros disponibles depuis 1992 ; texte depuis 19981 bConservation limitée aux 2 dernières années P 4° 4467 aZPAY aGEO RA4.06 France aDEW 02001009nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005200139210009800191300004600289326001600335422003400351530006100385606004800446710006000494856003800554955008000592972000900672992002200681992001600703039889920000005707220131007171804.01 a1141-5487 aFNSP265899 a19900101b19892004 ba0 afre aFR aaya 10aBulletin d'informations statistiques de la DGCL aPariscMinistère de l'intérieur, Direction générale des collectivités localesd1989-2004 aDevient consultable en ligne gratuitement aIrrégulier 1tDémocratie localex0183-559910aBulletin d'informations statistiques de la DGCLb(Paris) aAdministration localeyFrancexPériodiques01aFrancebDirection générale des collectivités locales4 uhttp://www.dgcl.interieur.gouv.fr1 bno. 1 (mai/jun-1989) -no. 46 (jul-2003)cParisdMagasins/AnnexeeP 4° 5803 aZGRA aGEO RA4.06 France aDEW 350-35401016nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210002300200326001500223422004000238606003500278710004800313856011100361856010800472955013700580972000900717992001200726036359122000025318720130319051140.01 a1148-7801 aFNSP883769 a0000253187 a19900101a19689999 f ba0 afre aFR aaja 10aBulletin de droit nucléaire. Supplément aPariscOCDEd1968- aSemestriel 1aDroit nucléaire (Paris)x1016-4995 aDroit nucléairexPériodiques02aAgence de l'OCDE pour l'énergie nucléaire4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043428/bulldroitnucleaire zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1968) -(2001)cParisdMagasins/AnnexeeP 4° 2500 biszde 1968 à 2001 le supplément est relié avec la revue < P 4° 2500 > aZPAY aDEW 34101708cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035002500069035001700094035001500111100004100126101000800167102000700175106000600182110001600188200008600204210002900290305013100319440009400450517009400544517009800638530008600736531004700822712007700869801003000946801002900976801002301005802000701028856014501035955006901180991002001249991005301269038430738000109507720131015165814.0 a0996-0201 accn0996-0201 aFRBNF327186290000007 aissn09960201 a0001095077 a19900906b18991921uuuy0frey0103 ba0 afre aFR ar aahu uu 10aBulletin de l'Alliance nationale pour l'accroissement de la population française aParisc[s.n.]d1899-1921 aBulletin mensuel à partir de février 1914 ; devient trimestriel en 1915 ; redevient mensuel dans le courant de l'année 1920 1tRevue de l'Alliance nationale pour l'accroissement de la population françaisex1149-985010aBulletin mensuel de l'Alliance nationale pour l'accroissement de la population française10aBulletin trimestriel de l'Alliance nationale pour l'accroissement de la population française10aBulletin de l'Alliance nationale pour l'accroissement de la population française 0aBull. Alliance natle. accroiss. popul. fr.02aAlliance nationale pour l'accroissement de la population française4340 3aFRbAbesc20070604gAFNOR 3aFRbBnFc20060327gAFNOR 3aFRbISSNc20070412 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34425170p/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1899-1915)1 b(1914) -(1921)wlacunes 20 %cParisdMagasins/AnnexeeP 8° 0873 aPériobTP02 P8 anumer0 (1908-1912 1916-1921 complément gallica)01027nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003900139210011000178300017200288326001700460530003900477601006000516712004600576856003900622955006600661992002200727992001200749001027603000006565120130906122036.01 a0755-2793 aFNSP303708 a19900101b19722005 ba0 afre aFR aaca 10aBulletin de l'Assemblée nationale aPariscSecrétariat général de l'Assemblée nationale, Service d'informations parlementairesd1972-2005 aLa publication papier est arrêtée à la fin des travaux de l'Assemblée, en Juillet 2005. Le bulletin sera consultable sur le site Internet de l'Assemblée nationale aHebdomadaire10aBulletin de l'Assemblée nationale02aFrancebAssemblée nationalec(1958-....)xPériodiques02aFrancebAssemblée nationalec(1958-....)4 uhttp://www.assemblee-nationale.fr/1 bno.1 (1972)-no.102 (2005)cParisdMagasins/AnnexeeP 4° 3221 aGEO RA4.06 France aDEW 32801288nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200005500160207002200215210005500237326001600292517001600308606004600324606004900370676000800419710004100427801002100468856007300489955006600562955008600628957005700714957006700771972000900838991001800847992002500865992001200890039219860000001147020130319051140.01 a0004-5322 aFNSP125105 a0000011470 a19900101a19249999 ba0 afre aFR ar aahu 10aBulletin de l'Association de géographes français 1ano. 1 (mar-1924)- aPariscAssociation de géographes françaisd1924- aTrimestriel10aGeographies aGéographie humaineyFrancexPériodiques aGéographieyFrancexRecherchexPériodiques a91002aAssociation de géographes français 3aFRbCCN0004-53224 uhttp://association-de-geographes-francais.fr/zSommaires depuis 20071 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9101 bno. 187 (jun-1947) ; no. 190 (jan-1948) -....cParisdMagasins/AnnexeeP 8° 00861 b(1955) -(1975)cParisdMagasins/AnnexeeP Index 02891 b(1986)-(1995)zcet index se trouve dans le vol. 73 no 3 (1996) aZPAY aexempb201110 aGEO RA4.06 France 01 aDEW 91001098cas0 2200289 450 001001000000002001100010005001700021035001700038100004100055101000800096102000700104106000600111110001600117200004700133210004200180326001200222430005100234434006600285440005900351530005500410710003800465801003000503856018900533955005500722991002000777991001100797039210405000109344620131015161225.0 accn9022/6321 a19830101b18901940 0frey0103 ba0 afre aFR ar aafa 10aBulletin de l'Institut catholique de Paris aPariscAncienne librairie Poussielgue aMensuel 1tRevue de l'institut catholique de paris (1896) |tBulletin du denier de l'institut catholique de Paris, en 1910 1tNouvelles de l'Institut catholique de Parisx0294-429410aBulletin de l'Institut catholique de Parisb(1910)02aInstitut catholique de Paris4070 3aFRbAbesc20040914gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb327208532/date.r=Bulletin+de+l%27Institut+catholique+de+Paris.langFRzAccès libre au texte intégral. Périodique numérisé sur gallica (1890-1940)1 b(1910) -(1940)cParisdMagasins/AnnexeeP 8° 0723 aPériobTP02 P8 anumerX01334nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005600154207003200210210002700242300010300269326002600372326002700398435004200425517006500467517002300532606004600555710005100601801002100652856002900673856012100702955007200823972000900895991001800904992002200922992001600944001017616000001132420130319051140.01 a0247-0101 aFNSP124409 a0000011324 a19900101b19802007 ba0 afre aFR aaja 10aBulletin de l'Institut d'histoire du temps présent 1ano. 1 (1980) -no. 87 (2007) aPariscIHTPd1980-2007 aÀ partir du no 88 de 2008, n'est plus accessible qu'en ligne sur le site$uhttp://www.ihtp.cnrs.fr aSemestrielb1998-2007 aTrimestrielb1980-1997 1tLes Cahiers de l'IHTPxISSN 0769-450410aBulletin trimestriel - Institut d'histoire du temps présent10aBulletin de l'IHTP aHistoirexRechercheyFrancexPériodiques02aInstitut d'histoire du temps présentc(Paris) 3aFRbCCN0247-01014 uhttp://www.ihtp.cnrs.fr/ uhttp://www.ihtp.cnrs.fr/spip.php%3Frubrique68&lang=fr.htmlzContenu : texte intégral à partir du n° 71, Juin 19981 bno. 1 (jun-1980) -no. 87 (2007)cParisdMagasins/AnnexeeP 4° 4503 aZGRA aexempb201201 aGEO RA4.06 France aDEW 900-90700995cas0 2200277 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119105001800126110001600144200003700160210006700197301005500264440004700319530003700366712002700403801003000430856012700460955006900587991002000656991004100676048882739000109461620131015162534.0 accn7208/6920 a0001094616 a20000323b18591918m y0frey0103 ba0 afre aEG a 0  aaub z 0 10aBulletin de l'institut égyptien aAlexandriecImprimerie française Mourès et Perrind1859-1918 aDemande de numérotation ISSN en cours par le CR25 1tBulletin de l'Institut d'Egyptex1110-193800aBulletin de l'institut égyptien02aInstitut d'Egypte4340 3aFRbAbesc20060622gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/bpt6k9336266zAccès libre au texte intégral. Années 1913-1918 numérisées sur Gallica1 b(1875) -(1895)wlacunes 20 %cParisdMagasins/AnnexeeP 8° 0792 aPériobTP02 P8 anumer0 (mode image seul sur gallica)01484cas0 2200409 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150110001600157200004300173210004700216300005000263326002300313430006400336606004400400606003200444676000800476710003800484801003000522801002300552802000700575856011800582856010800700856005000808856006800858955007600926972000901002991001801011992003301029992001201062040518280000070567020130319051140.01 a1276-8944 accn1276-8944 aissn12768944 a0000705670 a19970214b19962010 0fre 0103 ba0 afre aFR aaj 10aBulletin de l'Institut Pierre Renouvin aPariscInstitut Pierre Renouvind1996-2010 aA partir de 2010, publié uniquement en ligne a2 ou 3 n°s par an 1tTravaux et recherches - Institut Pierre Renouvinx0993-3298 aRelations internationalesxPériodiques aGéopolitiquexPériodiques a32702aInstitut Pierre Renouvinc(Paris) 3aFRbAbesc20040915gAFNOR 3aFRbISSNc20000701 a074 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-bulletin-de-l-institut-pierre-renouvin.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://ipr.univ-paris1.fr/spip.php?rubrique20 zContenu: sommaire des numéros, depuis le n° 1/2, automne 19961 bno. 8 (pri-1999) -no. 30 (aut-2009)cParisdMagasins/AnnexeeP 8° 6783 aZGRA aexempb201212 aGEO RS Sans aspect régional aDEW 32701358cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001700069035002500086035001500111100004100126101000800167102000700175106000600182110001600188200003600204207006900240210003800309440007800347530003600425531002100461606003300482712008400515712006400599801003000663801002300693801002900716802000700745856013400752955005500886991002000941991001100961038499932000108415020130319051140.0 a1143-9777 accn1143-9777 aissn11439777 aFRBNF327213040000003 a0001084150 a19930519b18941912 0fre 0103 ba0 afre aFR ar aaf 10aBulletin de l'Office du travail 0a1re année, n °1 (1894, janv.)-19e année, n °12 (1912, déc.) aPariscBerger-Levraultd1894-1912 1tBulletin du Ministère du travail et de la prévoyance socialex1143-978500aBulletin de l'Office du travail 0aBull. Off. trav. aEmploixPériodiques2rameau02aFrancebMinistère du commerce, de l'industrie, des postes et des télégraphes02aFrancebMinistère du commerce et de l'industriec1906-1913 3aFRbAbesc20060630gAFNOR 3aFRbISSNc20010521 3aFRbBnFc20060327gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb32721304q/date.r=.langFRzAccès libre au texte intégral. Année 1906 numérisée sur Gallica1 b(1894) -(1913)cParisdMagasins/AnnexeeP 8° 0367 aPériobTP01 P8 anumer001504nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154210003500190326002300225326002300248421006700271421007300338436005100411436006000462606004700522606004400569606003500613607005000648676000800698710002100706856012000727856015500847955007301002972000901075992002201084992001201106040196623000011671220130522121438.01 a1250-5765 aFNSP485309 a0000116712 a19900101a19949999 ba0 afre aFR aafa 10aBulletin de la Banque de France aPariscBanque de Franced1994- aTrimestrielb2009- aMensuelb1994-2008 1aBulletin de la Banque de France. Supplément Etudesx1250-5854 1tBulletin de la Banque de France. Supplément Statistiquesx1250-5846 1aBulletin mensuel - Banque de Francex1145-5535 1tBulletin trimestriel de la Banque de FrancexI0150-7583 aPolitique monétaireyFrancexPériodiques aMarché financieryFrancexPériodiques aFinancesyFrancexPériodiques aFrancexConditions économiquesxPériodiques a33202aBanque de France4 uhttp://www.banque-france.fr/publications/bulletins-de-la-banque-de-france/les-bulletins-de-la-banque-de-france.html zContenu : texte intégral des 3 derniers bulletins, texte intégral des éditoriaux parus depuis 2003, texte intégral des études parues depuis 1994.1 bno. 1 (jan-1994) -no. 190 (2012)cParisdMagasins/AnnexeeP 4° 6327 aZPAY aGEO RA4.06 France aDEW 33200891nls 2200289 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200006300124210003500187230002400222326002300246326002300269606004400292606003500336607005000371676000800421801001300429856012000442955000500562992002200567992001200589000124476720130522162554.0 a a19949999k fre 01 ba0 afre aFR ar aah z  adr 10aBulletin de la Banque de Franceb[Ressource électronique] aPariscBanque de franced1994- aRevue électronique aTrimestrielb2009- aMensuelb1994-2008 aMarché financieryFrancexPériodiques aFinancesyFrancexPériodiques aFrancexConditions économiquesxPériodiques a332 0aFRbFNSP4 uhttp://www.banque-france.fr/publications/bulletins-de-la-banque-de-france/les-bulletins-de-la-banque-de-france.html1 r aGEO RA4.06 France aDEW 33201498nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200006100163210006400224326001500288440006300303447006700366447008600433453005200519517009200571606005700663606004200720606004100762710003600803801001300839856006100852856005400913955009100967972000901058992001201067992003301079040167046000042986920130909162009.01 a1017-2831 a0000429869 a b19902010k f fre ba0 afre aFR a 0  ar aaj z 0 10aBulletin de la Cour internationale d'arbitrage de la CCI aPariscCour internationale d'arbitrage de la CCId1990-2010 aSemestriel 1tICC International Court of Arbitration bulletinx2304-7100 1tThe ICC international Court of Arbritation bulletinx1017-284X 1tThe ICC international Court of Arbritation bulletin (éd. multilingue)x2304-7100 1tICC International Court of Arbitration bulletin10aBulletin de la Cour internationale d'arbitrage de la Chambre de commerce internationale aDroit commercial (droit international)xPériodiques aArbitrage internationalxPériodiques aCommerce internationalxPériodiques02aCour internationale d'arbitrage 0aFRbFNSP uhttp://www.iccwbo.org/court/french/bulletin/bulletin.asp zContenu : sommaires en ligne depuis le n°1, 19901 bvol. 12 no. 1 (jan/mar-2001) -vol. 21 no. 2 (2010)cParisdMagasins/AnnexeeP 4° 6903 aZPAY aDEW 341 aGEO RS Sans aspect régional01480cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001700069035002500086035001500111100004100126101000800167102000700175105001800182110001600200200004200216207003400258210003600292326001100328430006500339441009400404517008900498530004200587531002400629606003800653710006600691801003000757801002300787801002900810802000700839856014500846955007200991991001901063037453904000108078320130319051140.0 a0071-8432 accn0071-8432 aissn00718432 aFRBNF327451200000001 a0001080783 a19960829b19131979 y0frey0103 ba0 afre aFR a 0  aaku 0uu 10aBulletin de la Section de géographie 0aTome 28 (1913)-tome 84 (1979) aPariscErnest Lerouxd1913-1979 aAnnuel 1tBulletin de géographie historique et descriptivex0994-835X |tActes du ... congrès national des sociétés savantes. Section de géographiex0071-842410aBulletin du Comité des travaux historiques et scientifiques. Section de géographie00aBulletin de la Section de géographie 0aBull. sect. géogr. aGéographiexPériodiques2rameau01aFrancebComité des travaux historiques et scientifiques4070 3aFRbAbesc20070123gAFNOR 3aFRbISSNc20050729 3aFRbBnFc20060327gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb32745120s/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1903-1938)1 b(1959) -(1963) ; (1965) -(1979)cParisdMagasins/AnnexeeCOL8°5345 aPériobTP03 801483nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004800139210005100187326001600238422006900254430005300323440003600376517005600412517004600468530004800514606003900562710006000601801002100661856014500682955015000827957005700977991003601034991001801070992001201088992002101100038373319000001153020130912144209.01 a0991-1367 aFNSP125360 a19900101b19011992 ba0 afre aFR aaha 10aBulletin de la Société d'histoire moderne aPariscSociété d'histoire moderned1908-1992 aTrimestriel 1aRevue d'histoire moderne et contemporaine (1954)xISSN 0048-8003 1tSociété d'histoire moderne (Paris),x0999-2529 1aBulletin de la SHMC,x1243-880410aBulletin mensuel de la Société d'histoire moderne10aRevue d'histoire moderne et contemporaine aBulletin de la Société d'histoire moderne aHistoire universellexPériodiques02aSociété d'histoire moderne et contemporainec(France) 3aFRbCCN0116/71974 uhttp://gallica.bnf.fr/ark:/12148/cb34412914g/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1908-1990)1 bvol. 27 no. 1 (jan-1928) -vol. 39 no. 16 (avr-1939) ; vol. 57 no. 8/9 (1959) -vol. 91 no. 3/4 (1992)cParisdMagasins/AnnexeeP 8° 0728wlacunes1 b(1925) -(1937)cParisdMagasins/AnnexeeP Index 0081 anumer0 (complément de gallica) aexempb201309 aDEW 909 aGEO RQ Universel01566cas0 2200397 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164106000600171110001600177200005500193207002800248210003400276300018000310326002900490440005400519512006700573512006300640530005500703531002900758606004100787710004500828801003000873801002300903802000700926856014500933955007001078991002001148038771594000108373620130319051140.0 a1247-9748 a070901023 accn1247-9748 aissn12479748 a0001083736 a19940511b18721948uuuy0frey0103 ba0 afre aFR ar aafu uu 10aBulletin de la Société de législation comparée 0aT.1(1869/72)-T.71(1948) aPariscA. Cotillond1872-1948 aPour certaines années, les numéros paraissent à partir de janvier, mais la tomaison portée sur la page de titre est à cheval sur l'année précédente et l'année réelle aMensuel puis trimestriel 1tRevue internationale de droit comparéx0035-333710aBulletin trimestriel de la Société de législation comparée10aBulletin mensuel de la Société de législation comparée00aBulletin de la Société de législation comparée 0aBull. Soc. légis. comp.1 aDroit comparéxPériodiques2rameau02aSociété de législation comparée4070 3aFRbAbesc20070226gAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/cb345086607/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1869-1937)1 bvol. 1 (1869) -vol. 71 (1948)cParisdMagasins/AnnexeeP 8° 0030 aPériobTP01 P801270cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086040001100101100004100112101000800153102000700161105001800168110001600186200005500202210007700257430007600334517006500410530005500475531003000530710005400560801003000614802000700644856014500651955012800796991002000924036487473000111342620130319051140.0 a0037-9239 accn0037-9239 zccn0005/9560 a0001113426 aAA0103 a19940307b18831975k y0frey0103 ba0 afre aVN ay 0  aay 0 10aBulletin de la Société des études indochinoises aSaigoncSociété des imprimeries et librairies indochinoisesd1883-1975 1tBulletin du Comité agricole et industriel de la Cochinchinex1022-722910aBulletin de la Société des études indochinoises de Saigon00aBulletin de la Société des études indochinoises 0aBull. Soc. étud. indoch.02aSociété des études indochinoisescSaïgon4070 3aFRbAbesc20070712gAFNOR a004 uhttp://gallica.bnf.fr/ark:/12148/cb32724362m/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1884-1929)1 bvol. 26 no. 1 (1951) -vol. 27 no. 1 (1952) ; vol. 46 no. 1 (1971) -vol. 46 no. 4 (1971)cParisdMagasins/AnnexeeP 4° 0979 aPériobTP02 P401645cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035002500069035001500094100004100109101000800150102000700158105001800165106000600183110001600189200009900205207005300304210002900357326001500386440006100401517011000462530009900572531005100671606007800722606008100800710007600881801003000957801002900987802000701016856014501023955007101168991002001239038588234000108415820130319051140.0 a1153-7272 accn1153-7272 aFRBNF327244270000007 a0001084158 a19910321b19101965k y0frey0103 ba0 afre aFR a 0  ar aag 0 10aBulletin de la Société des professeurs d'histoire et de géographie de l'enseignement public 0a1re année, n°1 (1910)-54e année, n°192(1965) aParisc[s.n.]d1910-1965 aBimestriel 1tHistoriens et géographes (Neuilly-sur-Seine)x0046-757X10aBulletin de la Société des professeurs d'histoire et de géographie de l'enseignement secondaire public00aBulletin de la Société des professeurs d'histoire et de géographie de l'enseignement public 0aBull. Soc. prof. hist. géogr. enseign. public aHistoirexÉtude et enseignementyFrancez1945-1970xPériodiques2rameau aGéographiexÉtude et enseignementyFrancez1945-1970xPériodiques2rameau02aAssociation des professeurs d'histoire et de géographiec(France)4070 3aFRbAbesc20060703gAFNOR 3aFRbBnFc20060327gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb32724427c/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1911-1939)1 bvol. 29 (1949) -vol. 54 (1965)cParisdMagasins/AnnexeeP 8° 0351 aPériobTP01 P800923nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101001300123102000700136110001600143200006700159210003300226326001200259606003400271606003600305710002800341830004800369856005700417856003600474955006300510972000900573992002300582992001600605039709914000005701220130319051140.01 a0761-1242 aFNSP265590 a0000057012 a19900101a19839999 ba0 afreaeng aFR aafa 10aBulletin de liaison et d'information - Institut Kurde de Paris aPariscInstitut Kurded1983- aMensuel aKurdesyTurquiexPériodiques aRéfugiés kurdesxPériodiques02aInstitut Kurde de Paris acollection arrêtée par St le 18 mars 20084 uhttp://www.institutkurde.org/publications/bulletins/4 zAccès libre au texte intégral1 bno. 5 (mar-1984) -....cParisdMagasins/AnnexeeP 4° 4946 aZCAD aGEO RA6.06 Turquie aDEW 305-30601311nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002800139210004800167210008600215326001500301430008500316452005300401530002800454606003000482710006400512801002100576830005300597856009700650955006600747955008500813972000900898991001800907992002500925992001100950039221008000001157520131125152642.01 a0007-4403 aFNSP125469 a19900101a19519999 ba0 afre aFR aagu 10aBulletin de psychologie aParis‎cBulletin de psychologie‎d1975- aParis‎cGroupe d'études de psychologie de l'Université de Paris‎d1951-1974 aBimestriel 1aBulletin du Groupe d'études de psychologie de l'Université de Parisx0242-5432 1tBulletin de psychologie (En ligne)‎x1968-376600aBulletin de psychologie aPsychologiexPériodiques02aUniversité Paris-SorbonnebGroupe d'études de psychologie 3aFRbCCN0007-4403 a1951-2010 : collection envoyée au CTles en 20134 uhttp://www.bulletindepsychologie.net/vente/articles.phpzSommaires des nos parus depuis 19511 bno. 294 (1971/1972) -....cParisdMagasins/AnnexeeP 4° 31851 bvol. 5 no. 1 (nov-1951) -no. 293 (1970/1971)cParisdMagasins/AnnexeeP 8° 1644 aZPAY aexempb201306 aGEO RA4.06 France 01 aDEW 1502066cas0 2200301 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119110001600126200003400142210003700176300007000213300105900283530002401342606005601366700003001422712004601452712004701498801003001545801003001575856012601605945001601731991001701747039192385000093639620130319051140.0 accn7203/2561 a0000936396 a19980416b18771877k 0frey0103 ba0 afre aFR aau 13aLe bulletin de vote. Par Gill aMeauxcimp. de A. Cochetc[1877] aPublié à l'occasion des élections législatives d'Octobre 1877 aPortraits de Léon Renault, Horace de Choiseul, De Marcère, Henri De Lacretelle, Louis Blanc, Ernest Duvergier de Hauranne, Devoucoux, Daniel Wilson, Albert Grévy, Paul de Rémusat, Charles Floquet, Léon Journault, Edouard Lockroy, Barodet, Andrieux, Jules Ferry, Alfred Naquet, Paul Duffo, François-Vincent Raspail, Henri Brisson, Denfert-Rochereau, Eugène Spuller, De Mahy, Even, Charles Lepère, Léon Gambetta, Bamberger, Talandier, Georges Perin, Greppo, Camille Sée, Jean-Casimir Périer, Carré-Kérisouet - De Janzé, Anatole Hugot, G. Loustalot, Farcy, Laisant, Armand Duportal, Jules Philippe, Adolphe Cochery, Albert Joly, Henry Liouville, Jules Grévy, Clémenceau, Saint-Martin, Allain-Targé, Germain Casse, Viette, Menier, Thourel, D'Osmoy, Rouvier, Edouard Millaud, Benjamin Raspail, Eugène Lisbonne, Souchu-Servinière, Antoine-Léonce Guyot-Montpayroux, Martin Nadaud, Marmottan, Félix Cantagrel, Tirard, Pascal Duprat, Ch. Lecomte, Leblond, Frébault, Emile Garran, Auguste Caubert, Anatole De La Forge, Brelay, Emile Deschanel03aLe Bulletin de vote aÉlectionsyFrancexPériodiques illustrés2rameau 1aGillbAndréf(1840-1885)02aFrancebAssemblée nationalec(1871-1875)02aFrancebChambre des députésc(1876-1940) 3aFRbAbesc20050407gAFNOR 3aFRbAbesc20050407gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/bpt6k2059733zAccès libre au texte intégral. Périodique numérisé sur Gallica (1877) b12°008.616 aSAFIGbTA06001594nas 2200481 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171100016001242000067001402100041002073260012002484640020002604640014002804640027002944640028003214640015003494640023003644640014003874640029004014640013004304640013004434640029004564640034004854640029005194640036005484640012005844640026005964640035006225300067006576010044007247100030007688560117007988560078009159550076009939720009010699920022010789920012011000000078359000007835920131023113921.01 a0242-5645 aFNSP353004 a19900101b19482007 ba0 afre aFR aafa 10aBulletin des arrêts de la Cour de cassation. Chambres civiles aPariscJournaux officielsd1948-2007 aMensuel 1aHumulus le muet 1aL'Hermine 1aY' avait un peisonnier 1aLe voyageur sans bagage 1aLa sauvage 1aLe bal des voleurs 1aLéocadia 1aLe rendez-vous de Senlis 1aEuricyde 1aAntigone 1aL'invitation au château 1aEpisode de la vie d'un auteur 1aArdèle ou la marguerite 1aLa répétition d'un amour puni 1aColombe 1aCécil des toréadors 1aCécile ou l'école des pères00aBulletin des arrêts de la Cour de cassation. Chambres civiles02aFrancebCour de cassationxPériodiques02aFrancebCour de cassation4 uhttp://www.courdecassation.fr/jurisprudence_publications_documentation_2/bulletin_information_cour_cassation_27/ zContient les bulletins et les hors-séries en texte intégral depuis 19951 bno. 1 (jan-1979) -no. 10 (dec-2007)cParisdMagasins/AnnexeeP 4° 4374 aZPAY aGEO RA4.06 France aDEW 34801214nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004200139210003400181326001500215530004200230606004400272606004100316710007900357801002100436856007100457955008100528955007100609955009100680957007400771972000900845992002200854992001200876039220680000001157820130531111605.01 a0006-2006 aFNSP125536 a19900101a19569999 ba0 afre aFR aafu 10aBulletin des bibliothèques de France aVilleurbannecENSB-BBFd1956- aBimestriel00aBulletin des bibliothèques de France aSciences de l'informationxPériodiques aBibliothèquesyFrancexPériodiques02aFrancebDirection de la programmation et de la documentation universitaire 3aFRbCCN0006-20064 uhttp://bbf.enssib.fr/zAccès libre au texte intégral depuis 19841 bLes 2 dernières annéescParisdFonds professionnel (4e étage)eP 4° 43201 bvol. 24 no. 1 (jan-1979) -....cParisdMagasins/AnnexeeP 4° 43201 bno. 1 (jan-1959) -vol. 23 no. 11/12 (nov/dec-1978)cParisdMagasins/AnnexeeP 8° 14321 b(1956) -(1982) ; (1956) -(1993)cParisdMagasins/AnnexeeP Index 0386 aZPAY aGEO RA4.06 France aDEW 02001810cas0 2200493 450 001001000000002001100010005001700021011001400038035001400052035001700066035002500083035001700108035001700125035001700142035001500159100004100174101000800215102000700223105001800230110001600248200006300264207001600327210002200343326001000365430006300375517003000438517004500468517005300513517007100566517006300637517007200700517007800772517006200850520003500912530005400947710005601001801003001057801002901087801002301116802000701139856013301146945001701279991002001296040489000000112430120130319051140.0 a1272-8152 a039016501 zccn7015/6840 aFRBNF327306260000006 accn1272-8152 accn7015/6867 aissn12728152 a0001124301 a19960829a18789999uuuy0frey0103 ba0 afre aFR ay  aafu uu 10aBulletin des postes, des télégraphes et des téléphones 0a(1878, mai) aPariscPTTd1878- aMens. 1tBulletin mensuel de l'Administration des postesx1272-816010aBulletin officiel des PTT10aBulletin des postes ou des télégraphes10aBulletin mensuel des postes ou des télégraphes10aBulletin mensuel des postes, des télégraphes et des téléphones10aBulletin des postes, des télégraphes et des téléphones10aBulletin officiel des postes, des télégraphes et des téléphones10aBulletin officiel du Ministère des postes, télégraphes et téléphones10aBulletin officiel des Postes, Télégraphes, Téléphones10aBulletin officiel des P. T. T.10aBulletin... - Postes, Télégraphes, Téléphones02aFrancebMinistère des postes et télégraphes4070 3aFRbAbesc20071128gAFNOR 3aFRbBnFc20060327gAFNOR 3aFRbISSNc20061002 a074 uhttp://gallica.bnf.fr/ark:/12148/cb32730626t/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica bMEL8*106(03) aPériobTP08 P400752cas0 2200241 450 00100100000000200110001000500170002101100140003803500170005210000410006910100080011010200070011810500180012510600060014311000160014920000340016521000730019953000340027280100300030685600990033695500550043599100200049003905523X000111174620130906122204.0 a2015-075X accn7105/2925 a19871010b19161918 0frey0103 ba0 afre aFR ay  ar aac 10aBulletin des usines de guerre aPariscSous-secrétariat de l'artillerie et des munitionsd1916-191800aBulletin des usines de guerre 3aFRbAbesc20070425gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb32726781g/datezAccès libre au texte intégral sur Gallica1 b(1916) -(1918)cParisdMagasins/AnnexeeP 4° 1390 aPériobTP03 P401016nls 2200313 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000126001642070030002902100059003202300028003793260011004076060045004186060039004637100059005028010013005618560090005749550005006649920012006699920021006810001240337000124033720130517155153.0 a2262-8541 a0001240337 a a20109999k fre 01 ba0 afre aFR ar aak z  adr 10aBulletin du Centre sociale d'histoire du XXe siècleb[Ressource électronique]fCentre d'histoire sociale du XXe siècle 1ano. 33/34, 2010/2011-.... aPariscCentre d'histoire sociale du XXe siècled2010- aRessource électronique aAnnuel aMouvements sociauxxPériodiques2rameau aSyndicalismexPériodiques2rameau02aCentre d'histoire sociale du XXe sièclec(Paris)4070 0aFRbFNSP4 uhttp://histoire-sociale.univ-paris1.fr/spip.php?article400zAccès au texte intégral1 r aDEW 303 aGEO RQ Universel01076nas 2200301 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000021001412100027001623260016001894300099002055170065003046060034003696060035004036060034004387120064004728560078005368560036006149550087006509920025007379920012007620000261000000026100020130319051140.0 aFNSP908005 a0000261000 a19981130a19989999 ba0 afre aFR aaha 10aBulletin du CIEC aPariscCIECd1998-1999 aTrimestriel 1aBulletin mensuel - Centre d'information sur l'épargne et le crédit (0755-6853) < P 8°4224 >10aBulletin du Centre d'information surl'épargne et le crédit aEpargneyFrancexPériodiques aFinancesyFrancexPériodiques aCrédityFrancexPériodiques02aCentre d'information sur l'épargne et le créditc(France)4 uhttp://www.paribas.com/SITE/HomeDb2.nsf/FrMain?ReadForm&level=600&lang=EN zAccès libre au texte intégral1 bno. 211 (4e trim-1998) -no. 213 (2e trim-1999)cParisdMagasins/AnnexeeP 8° 4224 aGEO RA4.06 France 01 aDEW 33201180cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200002500174210002700199430001300226517008600239517002200325532009700347606005600444710008300500801003000583802000700613856005600620856006200676955007100738992001400809992001900823039806812000116273520130319051140.01 a0850-8712 accn0850-8712 a0001162735 a19900806a19879999 0frey0103 ba0 afre aZZ ay  aah 10aBulletin du CODESRIA aDakarcCODESRIAd1987- 1tAfricana10aBulletin du Council for the Development of Economic and Social Research in Africa10aCODESRIA bulletin10aBulletin du Conseil pour le développement de la recherche économique et sociale en Afrique aSciences socialesxRechercheyAfriquexPériodiques02aConseil pour le développement de la recherche en sciences sociales en Afrique 3aFRbAbesc20081202gAFNOR a004 uhttp://www.codesria.org/spip.php?rubrique53&lang=fr zContenu : accès au texte intégral depuis le no 2 (2003)1 bno. 3/4 (2006) -no. 1/2 (2009)cParisdMagasins/AnnexeeP 4° 7244 aDEW 338.9 aGEO RE Afrique01372cas0 2200325 450 00100100000000200110001000500170002101100140003803500170005203500150006910000410008410100080012510200070013311000160014020000990015620700140025521000290026932600160029843001230031444000640043753000990050153100530060071200870065371200590074080100300079980200070082985601450083695500450098199100200102603798411X000108413820130319051140.0 a0399-0818 accn0399-0818 a0001084138 a19890811b19181938 0frey0103 ba0 afre aFR aak 10aBulletin du Comité d'études historiques et scientifiques de l'Afrique occidentale française 1a1918-1938 aPariscLarosed1918-1938 aTrimestriel 1tAnnuaire et mémoires du Comité d'études historiques et scientifiques de l'Afrique occidentale françaisex0378-570X 1tBulletin de l'Institut français d'Afrique noirex0399-080X00aBulletin du Comité d'études historiques et scientifiques de l'Afrique occidentale française 0aBull. Com. études hist. sci. Afr. Occident. fr.02aComité d'études historiques et scientifiques de l'Afrique occidentale française02aAfrique occidentale française. Gouvernement général 3aFRbAbesc20051010gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb34381764h/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1917-1937)1 b1917cParisdMagasins/AnnexeeP 8° 0362 aPériobTP01 P801416cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035002500069035001500094100004100109101000800150102000700158105001800165106000600183110001600189200004800205207004000253210005400293421010100347440005000448512005500498530004800553710007700601711003300678801003000711801002900741802000700770856014500777955005500922991002000977991004500997038780712000111286520131011101303.0 a1249-7991 accn1249-7991 aFRBNF327272200000009 a0001112865 a19931216b18911908 0frey0103 ba0 afre aFR ay  ar aau 10aBulletin du Comité de l'Afrique française 0a1re année (1891)-18e année (1908) aPariscComité de l'Afrique françaised1891-1908 |tRenseignements coloniaux et documents publiés par le Comité de l'Afrique françaisex1249-8017 1tL'Afrique française (Paris. 1909)x1249-800910aBulletin mensuel - Comité de l'Afrique française00aBulletin du Comité de l'Afrique française02aChambre de commerce internationalebComité de l'Afrique française407002aComité du MaroccParis4070 3aFRbAbesc20060703gAFNOR 3aFRbBnFc20060327gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb327272204/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1891-1908)1 b(1891) -(1908)cParisdMagasins/AnnexeeP 4° 0661 aPériobTP02 P4 anumer0 (1896, en complément de gallica)01173cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035002500069035001500094100004100109101000800150102000700158105001800165106000600183110001600189200004500205210005100250423004900301440004100350512005200391530004500443710003800488801003000526801002900556802000700585856014500592955005500737991002000792991001100812038636883000110938220130319051140.0 a1160-7440 accn1160-7440 aFRBNF327272230000000 a0001109382 a19910828b19011909 0frey0103 ba0 afre aFR ay  ar aaf 10aBulletin du Comité de l'Asie française aPariscComité de l'Asie françaised1901-1909 1t*Bulletin du Comité de l'Asie française... 1tL'Asie française (Paris)x1160-745910aBulletin mensuel - Comité de l'Asie française00aBulletin du Comité de l'Asie française02aComité de l'Asie française4070 3aFRbAbesc20070830gAFNOR 3aFRbBnFc20060327gAFNOR a074 uhttp://archive.org/stream/lasiefranaisebu00frangoog#page/n6/mode/2upzAccès libre au texte intégral. 1905 numérisée sur Internet Archive1 b(1901) -(1909)cParisdMagasins/AnnexeeP 4° 0567 aPériobTP01 P4 anumer001153cas0 2200349 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035002500100035001500125100004100140101000800181102000700189110001600196200003800212210002900250423004500279440004300324517004500367517002700412530003800439801003000477801002300507801002900530802000700559856014500566955007200711991002000783038553716000109458720130319051140.0 a1149-1914 a073811211 accn1149-1914 aissn11491914 aFRBNF327272400000001 a0001094587 a19900305b18951896 0fre 0103 ba0 afre aFR aau 10aBulletin du Comité de Madagascar aParisc[s.n.]d1895-1899 1tLa Quinzaine coloniale (1897)x1149-1833 1tRevue de Madagascar (Paris)x1149-192210aBulletin de l'Union coloniale française13aLa Quinzaine coloniale00aBulletin du Comité de Madagascar 3aFRbAbesc20060630gAFNOR 3aFRbISSNc20030523 3aFRbBnFc20060327gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb34425274b/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1895-1899)1 b(1895) -(1896) ; (1897) -(1899)cParisdMagasins/AnnexeeP 8° 0837 aPériobTP02 P801587cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001700069035002500086035001500111100004100126101000800167102000700175105001800182106000600200110001600206200010200222207001400324210007100338326001100409431012900420440010300549530010200652606003500754606003700789712006600826801003000892801002300922801002900945802000700974856013300981955005501114991002001169038418614000109507520130319051140.0 a0994-8333 accn0994-8333 aissn09948333 aFRBNF327291750000000 a0001095075 a19960829b18831884m y1frey0103 ba0 afre aFR a 0  ar aaku 0uu 10aBulletin du Comité des travaux historiques et scientifiquesiSection d'histoire et de philologie 0a1883-1884 aPariscComité des travaux historiques et scientifiquesd1883-1884 aAnnuel |tBulletin du Comité des travaux historiques et scientifiques. Section d'histoire, d'archéologie et de philologiex0994-8325 1tBulletin historique et philologique du Comité des travaux historiques et scientifiquesx0994-834100aBulletin du Comité des travaux historiques et scientifiques. Section d'histoire et de philologie aHistoirexPériodiques2rameau aPhilologiexPériodiques2rameau01aFrancebComité des travaux historiques et scientifiques4340 3aFRbAbesc20070309gAFNOR 3aFRbISSNc20050826 3aFRbBnFc20060327gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb32729175m/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 b(1883) -(1884)cParisdMagasins/AnnexeeP 8° 0847 aPériobTP02 P801694cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001700069035002500086035001500111100004100126101000800167102000700175105001800182106000600200110001600206200011200222207001900334210007100353326001100424431007600435440007600511530011200587531005600699710006600755801003000821801002300851801002900874802000700903856014500910955023601055991001701291038729393000107609720130319051140.0 a1243-2598 accn1243-2598 aissn12432598 aFRBNF327272730000002 a0001076097 a19960829b18831922 y0frey0103 ba0 afre aFR a 0  ar aaku 0uu 10aBulletin du Comité des travaux historiques et scientifiquesiSection des sciences économiques et sociales 0a1883-1921/1922 aPariscComité des travaux historiques et scientifiquesd1883-1922 aAnnuel |tRevue des sociétés savantes de la France et de l'étrangerx0994-8317 1tBulletin de la Section des sciences économiques et socialesx1243-260110aBulletin du Comité des travaux historiques et scientifiques. Section des sciences économiques et sociales 0aBull. Com. trav. hist. sci., Sect. sci. écon. soc.02aFrancebComité des travaux historiques et scientifiques4070 3aFRbAbesc20060703gAFNOR 3aFRbISSNc20050826 3aFRbBnFc20060327gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb32727273q/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1883-1922)1 b(1895) ; (1896) ; (1897) ; (1898) ; (1899) ; (1900) ; (1901) ; (1902) ; (1903) ; (1904) ; (1905) ; (1906) ; (1907) ; (1908) ; (1909) ; (1910) ; (1911) ; (1912) ; (1912) ; (1920) ; (1921) ; (1922)cParisdMagasins/AnnexeeCOL8°2094 aPériobTP0201053nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004000139210003500179300006600214326001600280452005400296530003100350606003300381606004500414710001100459801002100470830002900491856008500520955008300605972000900688991001800697992001200715001645285000001178520140110123051.01 a0304-2928 aFNSP126683 a19900101b19672000 f ba0 afre aFR aahu 10aBulletin du droit d'auteur/fUnesco aParis‎cUnesco‎d1967-2000 aA partir de 2001, publié uniquement en version électronique aTrimestriel 1tBulletin du droit d'auteur (En ligne),x1814-358X00aBulletin du droit d'auteur aDroit d'auteuryPériodiques aPropriété intellectuellexPériodiques02aUnesco 3aFRbCCN0304-2928 a1967--1984 donné au CTL4 uhttp://www.unesco.org/culture/copyrightbulletinzAccès libre au texte intégral1 bvol. 19 no. 1 (1985) -vol. 34 no. 4 (2000)cParisdMagasins/AnnexeeP 8° 0520 aZPAY aexempb201311 aDEW 34601479nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004000139210002700179326001200206436010100218436011800319452006700437452002900504488005100533517003700584606004400621606003300665801002100698830008800719856008100807856010800888955007800996972000901074992002201083992001201105039373193000000380220131106175100.01 a0242-5912 aFNSP104038 a19900101a19819999 ba0 afre aFR aafu 10aBulletin fiscal de Francis Lefebvre aPariscLefebvred1981- aMensuel 1tBulletin de documentation pratique des impôts directs et des droits d'enregistrementx0242-5556 1tBulletin de documentation pratique des taxes sur le chiffre d'affaires et des contributions indirectesx0242-5564 1tBulletin fiscal de Francis Lefebvre [Ressource électronique]. 1tNavis fiscal,x1273-0181 1aF.R. Feuillet rapide fiscal social,x0150-546710aBulletin fiscal Francis Lefebvre aPolitique fiscaleyFrancexPériodiques aImpôtyFrancexPériodiques 3aFRbCCN0242-5912 ano. 1, janv. 1981----> 1984 < P 4°4545 > collection donnée au CTL en juillet 20014 uhttps://acces-distant.sciences-po.fr/fork?http://www.efl.fr/si/hp/frm_hp.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (jan-1985) - no. 12 (dec. 2005)cParisdMagasins/AnnexeeP 4° 4545 aZPAY aGEO RA4.06 France aDEW 33601679cas0 2200421 450 001001000000002001100010005001700021011001400038035001700052035001700069035002500086035001500111100004100126101000800167102000700175105001800182106000600200110001600206200009200222207001400314210007100328320002100399326001100420430011300431440011700544512009000661530009200751606003500843710006600878801003000944801002300974801002900997802000701026856013401033955005501167991002001222991001501242038418649000109507620130319051140.0 a0994-8341 accn0994-8341 aissn09948341 aFRBNF327290880000003 a0001095076 a19960829b18851912uuuy1frey0103 ba0 afre aFR a 0  ar aaku 0uu 10aBulletin historique et philologique du Comité des travaux historiques et scientifiques 0a1885-1912 aPariscComité des travaux historiques et scientifiquesd1885-1912 aTables 1882-1915 aAnnuel 1tBulletin du Comité des travaux historiques et scientifiques. Section d'histoire et de philologiex0994-8333 1tBulletin philologique et historique jusqu'à 1715 du Comité des travaux historiques et scientifiquesx0399-556910aComité des travaux historiques et scientifiques. Bulletin historique et philologique00aBulletin historique et philologique du Comité des travaux historiques et scientifiques aHistoirexPériodiques2rameau02aFrancebComité des travaux historiques et scientifiques4070 3aFRbAbesc20060630gAFNOR 3aFRbISSNc20050826 3aFRbBnFc20060327gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb32729088p/date.r=.langFRzAccès libre au texte intégral. Année 1889 numérisée sur Gallica1 b(1885) -(1905)cParisdMagasins/AnnexeeP 8° 0847 aPériobTP02 P8 anumer0 (?)01238nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013110600060013811000160014420000790016020700540023921000490029332600250034232600260036751700430039360600500043671000290048680100210051585601450053695501590068197200090084099100180084999200210086799200120088803924346X000001174020130319051140.01 a0251-365X aFNSP126603 a0000011740 a19900101b19212000 ba0 afre aCH ar aaja 10aBulletin interparlementaireeorgane officiel de l'Union interparlementaire 1aaAnnée 1, no. 1 (1921) - année 80, no. 2 (2000) aGenèvecUnion interparlementaired1921-2000 aSemestriel 1996-2000 aTrimestriel 1955-199510aBulletin de l'Union interparlementaire aCoopération interparlementairexPériodiques02aUnion interparlementaire 3aFRbCCN0251-365X4 uhttp://gallica.bnf.fr/ark:/12148/cb344645513/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1921-1928)1 bvol. 1 no. 6 (nov/dec-1921) -vol. 20 no. 3 (mai/jun-1940) ; vol. 34 no. 4 (sep/oct-1954) -vol. 80 no. 2 (jul/dec-2000)cParisdMagasins/AnnexeeP 8° 0897 aZCAD aexempb201106 aGEO RQ Universel aDEW 32801570cas0 2200409 450 001001000000002001100010005001700021011001400038035001700052035002500069035001500094100004100109101000800150102000700158105001800165106000600183110001600189200002100205207004500226210007300271326001600344423006100360423005400421423004600475437004600521440004100567517011100608530003300719606004600752710007600798801003000874801002900904802000700933856014500940955005501085991002001140038443228000109507820130319051140.0 a0997-4385 accn0997-4385 aFRBNF327292350000000 a0001095078 a19960829b19011918k y0frey0103 ba0 afre aFR a 0  ar aahu 0 10aBulletin italien 0aTome 1 (1901, janv./mars)-tome 18 (1918) aBordeauxcFéretaLyoncHenri GeorgaMarseillecPaul Ruatd1901-1918 aTrimestriel 1tRevue des lettres françaises et étrangèresx0184-7813 1tRevue des études anciennes (Bordeaux)x0035-2004 1tBulletin hispanique (Bordeaux)x0007-4640 1tRevue des universités du Midix0755-1630 1tEtudes italiennes (Paris)x0997-439310aAnnales de la Faculté des lettres de Bordeaux et des universités du Midi. 4ème série. Bulletin italien10aBulletin italienb(Bordeaux) aLittérature romanexPériodiques2rameau02aUniversité de BordeauxbFaculté des lettres et sciences humaines4070 3aFRbAbesc20070319gAFNOR 3aFRbBnFc20060327gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb32729235n/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1901-1918)1 b(1901) -(1918)cParisdMagasins/AnnexeeP 8° 0939 aPériobTP02 P800767nls 2200253 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000052001502100027002022300024002296060032002538010013002858560070002988560108003689920025004769920012005010000941516000094151620130319051140.0 a0000941516 a a20009999k fre 01 ba0 afre aFR ar aaz z  adr 10aBulletin Joly Bourseb[Ressource électronique] aPariscLextensod2000- aRevue électronique aBoursexDroitxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lextenso.com zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aGEO RA4.06 France 01 aDEW 33200827nas 2200265 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000029001552100023001843260012002074300044002198560070002638560108003339550077004419720009005189920022005279920012005490000234161000023416120130319051140.01 a1285-0888 aFNSP829802 a0000234161 a19900101a19979999 ba0 afre aFR aafa 00aBulletin Joly sociétés aPariscJolyd1997- aMensuel 1aBulletin Joly (0997-5047) < P 8°1024 >4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lextenso.com zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 10 (oct-1997) -no. 12 (oct-2000)cParisdMagasins/AnnexeeP 8° 1024 aZGRA aGEO RA4.06 France aDEW 34600812nls 2200253 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001251350018001412000056001592100027002152300024002426060044002666060036003108560070003468560108004169920022005249920012005460000941447000094144720130319051140.0 aFNSP829802 a0000941447 a19900101a19869999 ba0 afre aFR aafa  adr 00aBulletin Joly sociétésb[Ressource électronique] aPariscLextensod1986- aRevue électronique aSociétésxDroityFrancexPériodiques aSociétésxDroitxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lextenso.com zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aGEO RA4.06 France aDEW 34601436cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200003500174210002900209304020700238326002500445421003300470440004600503517007500549517010300624517000800727517005300735530003500788531002500823801003000848802000700878856009900885955007000984991002001054038079534000108414020130319051140.0 a0755-2424 accn0755-2424 a0001084140 a19890418b19181982k y0frey0103 ba0 afre aFR a 0  aaea 0 13aLe Bulletin législatif Dalloz aPariscDallozd1918-1982 aS'est intitulé : "Bulletin législatif Dalloz et ordonnances des autorités d'occupation", de juillet 1940 à juillet 1944 ; "Bulletin législatif Dalloz et Recueil Duvergier", de 1956 à 1961 (inclus) aBimensuelb1918-1982 |tLa Gazette Dallozx0999-3843 1tActualité législative Dallozx0753-874X10aBulletin législatif Dalloz et ordonnances des autorités d'occupation10aBulletin législatif Dallozelois, décrets, arrêtés, circulaires, etc. Textes sans commentaires10aBLD10aBulletin législatif Dalloz et Recueil Duvergier03aLe Bulletin législatif Dalloz 0aBull. légis. Dalloz 3aFRbAbesc20070312gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb34387309q/datezAccès libre au texte intégral sur Gallica1 bvol. 1 (1918) -vol. 47 (1964)cParisdMagasins/AnnexeeP 8° 0339 aPériobTP01 P800959nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005000154210003800204326001200242451004500254601004600299606006800345710003200413856002400445856003600469955007400505972000900579992005700588992001200645045019606000026756220130319051140.01 a1561-0306 aFNSP926417 a0000267562 a19990308a19999999 f ba0 afre aDE aafa 10aBulletin mensuelfBanque centrale européenne aFrancfort sur le MaincBCEd1999- aMensuel 1aMonthly bulletin - European Central Bank02aBanque centrale européennexPériodiques aPolitique monétaireyPays de l'Union européennexPériodiques02aBanque centrale européenne4 uhttp://www.ecb.int/ zAccès libre au texte intégral1 b(jan-1999) -no. 11 (dec-2007)cParisdMagasins/AnnexeeP 4° 6798 bis aZGRA aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 33601255nas 2200361 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000027001552100026001823260012002084300080002205170024003005170060003245170085003846010063004696060033005326060044005657120049006098010021006588560048006798560078007279550045008059720009008509920022008599920012008810000057281000005728120130319051140.01 a0999-6478 aFNSP266743 a0000057281 a19900101b19899999 ba0 afre aFR aafa 10aBulletin mensuel - COB aPariscCOBd1989-2003 amensuel 1aBulletin mensuel de la Commission des opérations de boursexISSN 0245-942610aBulletin COB (1991)10aBulletin mensuel - Commission des opérations de bourse10aBulletin mensuel d'information de la Commission des opérations de bourse (1991)02aFrancebCommission des opérations de boursexPériodiques aBourseyFrancexPériodiques aMarché financieryFrancexPériodiques02aFrancebCommission des opérations de bourse 3aFRbCCN0245-9426 rPublication disponible en ligne depuis 1969 uhttp://www.amf-france.org/affiche_page.asp?urldoc=bm.htm&lang=fr&Id_Tab=01 bLa Bibliothèque ne conservait que 2 ans aZGRA aGEO RA4.06 France aDEW 33200918nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210006800195326001600263430003100279440003900310607004600349801002100395856003400416856004700450955008200497972000900579992001600588992001200604038681560000001190020130319051140.01 a0007-4810 aFNSP126956 a0000011900 a19900101b19692000 ba0 aeng aUS aaha 10aBulletin of concerned Asian scholars aBoulder, Colo.cBulletin of Concerned Asian Scholarsd1969-2000 aTrimestriel 1tCCAS newsletterx0898-7785 1tCritical Asian studies,x1467-2715 aAsiexEtude et enseignementxPériodiques 3aFRbCCN0007-48104 uhttp://csf.colorado.edu/bcas/ zContenu : sommaires depuis le vol. 1, 19681 bvol. 3 no. 1 (1971) -vol. 32 no. 4 (2000)cParisdMagasins/AnnexeeP 4° 3033 aZCAD aGEO RH Asie aDEW 95001722nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210006100198326001800259607005000277607005400327710007500381801002100456856010300477856010800580856012800688856010800816856010900924856010801033955006301141957007701204972000901281991001801290992002601308992001401334038681706000001174520130319051140.01 a0007-4918 aFNSP126608 a0000011745 a19900101a19659999 ba0 aeng aAU aaiu 10aBulletin of Indonesian economic studies aCanberracBulletin of Indonesian economic studiesd1965- a3 n°s par an aIndonésiexConditions socialesxPériodiques aIndonésiexConditions économiquesxPériodiques02aResearch School of Pacific Studies (Canberra)bDepartment of Economics 3aFRbCCN0007-49184 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=107889 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=B86&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713406865db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (jun-1965) -....cParisdMagasins/AnnexeeP 8° 28531 bno. 1 (1965) -vol. 30 no. 4 (1994)cParisdMagasins/AnnexeeP Index 0766 aZPAY aexempb201105 aGEO RI2.12 Indonésie aDEW 330.901302nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004000154210002800194326001500222607006200237607003500299710004500334801002100379856010100400856010800501856009000609856010800699955009000807972000900897991001800906992002800924992001200952039311791000001168320131127153137.01 a0261-3050 aFNSP126476 a0000011683 a19900101a19819999 ba0 aeng aGB aaju 10aBulletin of Latin American research aOxfordcPergamond1981- aSemestriel aAmérique latinexPolitique et gouvernementxPériodiques aAmérique latinexPériodiques02aSociety for Latin American Studiesc(GB) 3aFRbCCN0261-30504 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=106129 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/02613050.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (oct-1981) -vol. 31 no. 4 (oct-2012)cParisdMagasins/AnnexeeP 8° 4630 aZCAD aexempb201002 aGEO RD Amérique latine aDEW 98001848cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157110001600175200005000191207002200241210005700263430007200320440003500392452007000427530005000497712004600547801003000593801002300623802000700646856012100653856012200774856012100896856012201017856012201139856012201261955004701383991002001430036994979000109506120130319051140.0 a0190-5929 accn0190-5929 aissn01905929 a0001095061 a19760407b19011915uuuy0frey0103 ba0 aeng aUS a 0  aafa 0uu 10aBulletin of the American Geographical Society 0av. 33-47; 1901-15 aNew YorkcAmerican Geographical Societyd[1888]-1915 1tJournal of the American Geographical Society of New Yorkx1536-0407 1tGeographical reviewx0016-7428 1tBulletin of the American Geographical Society (Online)x1931-083810aBulletin of the American Geographical Society02aAmerican Geographical Society of New York 3aFRbAbesc20070604gAFNOR 3aFRbISSNc20051021 a014 uhttp://archive.org/details/bulletinamerica00unkngoogzAccès libre au texte intégral. Volume 1 sur Internet Archive4 uhttp://archive.org/details/bulletinamerica01yorkgoogzAccès libre au texte intégral. Volume 11 sur Internet Archive4 uhttp://archive.org/details/bulletinvolume00yorkgoogzAccès libre au texte intégral. Volume 22 sur Internet Archive4 uhttp://archive.org/details/bulletinamerica00yorkgoogzAccès libre au texte intégral. Volume 27 sur Internet Archive4 uhttp://archive.org/details/bulletinamerica04yorkgoogzAccès libre au texte intégral. Volume 33 sur Internet Archive4 uhttp://archive.org/details/bulletinamerica05yorkgoogzAccès libre au texte intégral. Volume 46 sur Internet Archive1 b(1915)cParisdMagasins/AnnexeeP 8° 0934 aPériobTP02 P800847nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000038001552100054001933260015002476060036002627100047002988010021003458560032003668560036003989550077004349720009005119920021005209920016005410000011895000001189520130319051140.01 a0096-3402 aFNSP126950 a0000011895 a19900101a19469999 ba0 aeng aUS aafu 10aBulletin of the atomic scientists aChicagocBulletin of the atomic scientistsd1946- aBimestriel aArmes nucléairesxPériodiques02aEducational Foundation for Nuclear Science 3aFRbCCN0096-34024 uhttp://www.thebulletin.org/ zAccès libre au texte intégral1 b(1985) -vol. 63 no. 6 (nov/dec-2007)cParisdMagasins/AnnexeeP 4° 0934 aZPAY aGEO RQ Universel aDEW 355-35901368nls 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000120001502100076002702300024003463260005003706060047003756060073004226060059004957100104005548010013006588560055006718560042007268560112007688560108008809550005009889920025009939920012010180000991174000099117420130319051140.0 a0000991174 a a19999999k fre 01 ba0 afre aFR ar aau z  adr 10aBulletin officiel de la Concurrence, de la Consommation et de la Répression des fraudesb[Ressource électronique] aPariscMinistère de l'Économie, des Finances et de l'Industried1999- aRevue électronique a aFraudeyFrancexLégislationxPériodiques aConsommateursxProtectionxDroityFrancexLégislationxPériodiques aConcurrencexDroityFrancexLégislationxPériodiques01aFrancebDirection générale de la concurrence, de la consommation et de la répression des fraudes 0aFRbFNSP4 uhttp://www.minefi.gouv.fr/DGCCRF/boccrf/index.html zContenu : texte intégral depuis 19994 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/lamy/AccesBis.htm?acces=KoEjMqEjBeKq zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 34701938cas0 2200397 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119105001800126106000600144110001600150200008400166210009000250215001800340300001000358301004200368327013300410430008700543440006300630530005800693607006000751676000800811710001300819711004100832801003000873830005900903856014600962856020101108856020101309945001501510991001501525048881953000114128520130319051140.0 accn7208/5878 a0001141285 a20000320b18341857k y0frey0103 ba0 afre aDZ ay  ar aau 10aBulletin officiel des actes du gouvernement,iAlgériefMinistère de la guerre aPariscImpr. royaleaAlgercImpr. royale [puis] Imprimerie du gouvernementd1834-1857 a3 vol.d22 cm aIndex aDEMANDE DE NUMEROTATION ISSN EN COURS1 aTome 1, 1er oct. 1834-1er janvier 1839 (n°1-61) ; tome 2, 13 oct.1838-30 déc.1841 (n°62-111) ; tome 3, 1842-1843 (n°112-165) 1tCollection des actes du gouvernement depuis l'occupation jusqu'au 1er octobre 1834 1tBulletin officiel de l'Algérie et des coloniesx2020-492210aBulletin officiel des actes du gouvernement. Algérie aAlgériexPolitique et gouvernementz1830-1962xSources a96501aAlgérie01aFrancebMinistère de la guerre4070 3aFRbAbesc20070910gAFNOR askp (transférée sur notice sudoc par sdy 18/07/2012)4 uhttp://archive.org/stream/algriebulletino01guergoog#page/n7/mode/2upzAccès libre au texte intégral. Tome 1 numérisé sur Internet Archive4 uhttp://books.google.fr/books?id=tnQIAAAAQAAJ&dq=editions%3AjMjURIkErU4C&hl=fr&pg=PP9#v=onepage&q=editions:jMjURIkErU4C&f=falsezAccès libre au texte intégral. Tome 2 numérisé sur Google Livres4 uhttp://books.google.fr/books?id=uIAIAAAAQAAJ&dq=editions%3AjMjURIkErU4C&hl=fr&pg=PP9#v=onepage&q=editions:jMjURIkErU4C&f=falsezAccès libre au texte intégral. Tome 3 numérisé sur Google Livres bR8*005.737 aPériobTZ00956nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000082001502100037002322300024002693260016002936070052003097120029003618010013003908560112004038560108005159550005006239920022006289920016006500000967897000096789720130319051140.0 a0000967897 a a19899999k fre 01 ba0 afre aFR ar aah z  adr 10aBulletin officiel des services du Premier ministreb[Ressource électronique] aPariscJournaux officielsd1989- aRevue électronique aTrimestriel aFrancexPolitique et gouvernementxPériodiques02aFrancebPremier ministre 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/lamy/AccesBis.htm?acces=KoEjMqEjBeKq zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France aDEW 350-35400976nls 2200313 i 450 0010011000000020011000110050017000220110005000390350015000441000041000591010008001001020007001081060006001151100016001211350018001372000105001552100023002603260012002833360056002953370017003515170020003686010073003886060056004617120059005178560042005769550005006189920025006239920014006480000583890000058389020130319051140.0 a a0000583890 a a19989999 ba0 afre aFR az aafaz  adr 10aBulletin officiel du Centre national de la recherche scientifique (Paris)b[Ressource électronique] aPariscCNRSd1998- aMensuel aDonnées textuelles accessibles uniquement en ligne aFichiers PDF10aCNRS BO (Paris)02aCentre national de la recherche scientifiquec(France)xPériodiques aRecherchexPolitique publiqueyFrancexPériodiques02aCentre national de la recherche scientifiquec(France)4 uhttp://www.dsi.cnrs.fr/bo/Default.htm1 r aGEO RA4.06 France 01 aDEW 001.401221nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000107001502100073002572300024003303260014003546010081003687100067004498010013005168560068005298560051005978560112006488560108007609550005008689920022008739920012008950000967903000096790320130319051140.0 a0000967903 a a19999999k fre 01 ba0 afre aFR ar aae z  adr 10aBulletin officiel du Ministère de l'écologie et du développement durableb[Ressource électronique] aPariscMinistère de l'écologie et du développement durabled1999- aRevue électronique aBimensuel02aFrancebMinistère de l'écologie et du développement durablexPériodiques02aFrancebMinistère de l'écologie et du développement durable 0aFRbFNSP4 uhttp://www1.environnement.gouv.fr/rubrique.php3?id_rubrique=532 zContenu : texte intégral depuis le n°1, 19994 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/lamy/AccesBis.htm?acces=KoEjMqEjBeKq zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France aDEW 34701078nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000079001502100045002292300024002743260016002986010053003147100039003678010013004068560061004198560042004808560112005228560108006349920022007429920012007640000969182000096918220130319051140.0 a0000969182 a a19929999k fre 01 ba0 afre aFR ar aah z  adr 10aBulletin officiel du Ministère de l'intérieurb[Ressource électronique] aPariscMinistère de l'intérieurd1992- aRevue électronique aTrimestriel02aFrancebMinistère de l'intérieurxPériodiques02aFrancebMinistère de l'intérieur 0aFRbFNSP4 uhttp://www.interieur.gouv.fr/rubriques/b/b5_lois_decrets zContenu : texte intégral depuis 19984 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/lamy/AccesBis.htm?acces=KoEjMqEjBeKq zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aGEO RA4.06 France aDEW 34001145nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000077001502100043002272300024002703260016002946010051003106060050003617100037004118010013004488560047004618560052005088560112005608560108006729550005007809920022007859920012008070000967895000096789520130319051141.0 a0000967895 a a19819999k fre 01 ba0 afre aFR ar aah z  adr 10aBulletin officiel du Ministère de la Justiceb[Ressource électronique] aPariscMinistère de la justiced1981- aRevue électronique aTrimestriel02aFrancebMinistère de la justicexPériodiques aJusticexAdministrationyFrancexPériodiques02aFrancebMinistère de la justice 0aFRbFNSP4 uhttp://www.justice.gouv.fr/actua/bo/bo.htm zContenu : texte intégral depuis le n°73, 19994 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/lamy/AccesBis.htm?acces=KoEjMqEjBeKq zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France aDEW 34701102nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003700139210002700176326001200203423005200215430010300267452006000370606003900430801002100469856008100490856010800571955007800679972000900757992002200766992001200788039373177000000393820131106121453.01 a0242-5874 aFNSP104390 a19900101a19819999 ba0 afre aFR aafu 10aBulletin social Francis Lefebvre aPariscLefebvred1981- aMensuel 11aFR. Feuillet rapide fiscal social,x0150-5467 1aBulletin de documentation pratique de sécurité sociale et de législation du travail,x0242-5548 1tBulletin social Francis Lefebvre (En ligne),x2115-9750 aDroit socialyFrancexPériodiques 3aFRbCCN0242-58744 uhttps://acces-distant.sciences-po.fr/fork?http://www.efl.fr/si/hp/frm_hp.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1( janv-1981) - no. 12 (dec-2005)cParisdMagasins/AnnexeeP 4° 4547 aZPAY aGEO RA4.06 France aDEW 34401190nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005200154210008600206326001100292430005600303510005100359606004700410607004600457710008300503856004200586856004200628856006400670955005300734972000900787991001800796992002200814992001600836040199606000012363520130319051141.01 a1024-0608 aFNSP508869 a0000123635 a19940411a19929999 ba0 ager aCH aaka 10aBulletin zur schweizerischen Sicherheitspolitik aZürichcETH, Forschungsstelle für Sicherheitspolitik und Konfliktanalysed1991- aAnnuel 1aETH-Bulletin zur schweizerischen Sicherheitspolitik10aBulletin sur la politique de sécurité suisse aSécurité nationaleySuissexPériodiques aSuissexPolitique militairexPériodiques02aForschungsstelle für Sicherheitspolitik und Konfliktanalysec(Zurich, Suisse)4 uhttp://www.fsk.ethz.ch/publ/bulletin/ zContenu : texte intégral depuis 1993 uhttp://www.fsk.ethz.ch/documents/bulletin/bulle_01/b_01.htm1 b(1993) -....cParisdMagasins/AnnexeeP 8° 6028 aZGRA aexempb201210 aGEO RA5.14 Suisse aDEW 355-35901063nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002300163210005200186326001600238517002500254606003900279606005100318710005500369801001300424856010800437856010800545955007100653972000900724992001600733038682354000048889820130319051142.01 a0007-6503 a0000488898 a a19609999k fre ba0 aeng aUS a 0  ar aah z 0 10aBusiness & society aThousand Oaks, Calif.cSage Publicationsd1960- aTrimestriel10aBusiness and society aGestion d'entreprisexPériodiques aGestion d'entrepriseyEtats-UnisxPériodiques02aInternational Association for Business and Society 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 39 no. 3 (sep-2000) -....cParisdMagasins/AnnexeeP 8° 6653 aZSAB aDEW 650-65800914nas 2200301 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200002600148210003500174326001800209452004700227530003600274606004000310801001300350856004700363856008100410955008000491972000900571991001800580992001400598048781371000028420320130919162545.01 a1369-5258 a b19992003k fre ba0 aeng aUS a 0  ar aai z 0 10aBusiness and politics aBasingstokecCarfaxd1999-2003 a3 n°s par an 1tBusiness and politics (Online),x1469-3569 aBusiness and politics‎bPrint aPolitique économiquexPériodiques 0aFRbFNSP4 uhttp://www.bepress.com/bap/all_issues.html zContenu : accès au texte intégral des articles depuis le vol 2, no 1, 20001 bvol.1 no. 1 (1999) -vol. 5 no. 1 (2003)cParisdMagasins/AnnexeeP 8° 6511 aZSAB aexempb201309 aDEW 338.901291nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210005800193326001600251430005500267606003900322606004200361801002100403856010300424856010800527856012800635856010800763955008100871972000900952992001600961038823462000001164720131127153322.01 a0045-3609 aFNSP126238 a0000011647 a19900101a19749999 ba0 aeng aUS aahu 10aBusiness and society review (1974) aBoston, MA [etc.]cBlackwell Publishers [etc.]d1974- aTrimestriel 1aBusiness and society review/Innovation,x0092-2706 aGestion d'entreprisexPériodiques aRelations industriellesxPériodiques 3aFRbCCN0045-36094 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=102521 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=BSR&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 11 (1974) -vol. 117 no. 4 (hiv-2012)cParisdMagasins/AnnexeeP 4° 3169 aZPAY aDEW 650-65801087nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210004400177326001600221530004000237606003300277606003700310710006200347801002100409856012800430856010800558955009800666972000900764992001200773038682397000001165320130319051142.01 a0007-666X aFNSP126299 a0000011653 a19900101a19659999 ba0 aeng aUS aahu 10aBusiness economics aCleveland, OhiocThe Associationd1965- aTrimestriel 0aBusiness economicsbCleveland, Ohio aMacroéconomiexPériodiques aEconomie politiquexPériodiques02aNational Association of Business Economistsc(Etats-Unis) 3aFRbCCN0007-666X4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=BEC&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 6 no. 1 (1971) -....cParisdMagasins/AnnexeeP 4° 3049wManquant: vol. 34 no. 1 (1999) aZPAY aDEW 33001211nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210005600182326001600238606004900254710006700303801002100370856002800391856005900419856009000478856010800568955007100676957009500747972000900842991001800851992001600869038682435000005813220130319051142.01 a0007-6805 aFNSP269542 a0000058132 a19900101a19549999 ba0 aeng aUS aaha 10aBusiness history review aBoston, Mass.cHarvard Business School Pressd1954- aTrimestriel aGestion d'entreprisexHistoirexPériodiques02aHarvard UniversitybGraduate School of Business Administration 3aFRbCCN0007-68054 uhttp://www.hbs.edu/bhr/ zContenu : sommaires et résumés depuis le n°28, 19544 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00076805.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 45 no. 1 (pri-1971) -....cParisdMagasins/AnnexeeP 8° 29171 bvol. 46 (1972) -vol. 50 (1976)cParisdMagasins/Annexezse trouve dans le no. 4 (hiv-1977) aZPAY aexempb200910 aDEW 650-65800971nas 2200277 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000320013921000310017132600160020245200530021853000320027160600420030360600440034585601080038985601080049795500670060597200090067299200120068103932026X000003834920131106161926.01 a0266-3821 aFNSP212741 a19900101a19849999 ba0 aeng aGB aaha 10aBusiness information review aClevelandcHeadlandd1984- aTrimestriel 1tBusiness information review (Online),x1741-6450 aBusiness information review aInformation économiqueyPériodiques aSciences de l'informationxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 13 no. 1 (1996) -....cParisdMagasins/AnnexeeP 4° 6628 aZPAY aDEW 02001123nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002000139210006800159326002300227326002600250452005900276530003700335606004900372710004100421801002100462830002900483856010700512955006100619955007100680972000900751992002300760992001400783036212148000001167620130604173523.01 a0007-7011 aFNSP126468 a19900101a19249999 ba0 aeng aUS aahu 10aBusiness review aPhiladelphia‎cFederal Reserve Bank of Philadelphia‎d1923- aTrimestrielb2001- aBimestrielb1968-2000 1tBusiness review (Philadelphia, Pa. Online),x2163-4440 aBusiness review‎bPhiladelphia aEconomie politiqueyEtats-UnisxPériodiques02aFederal Reserve Bank of Philadelphia 3aFRbCCN0007-7011 a1968--1984 donné au CTL4 uhttp://www.philadelphiafed.org/econ/br/index.htmlzAccès libre au texte intégral des nos depuis 19751 b(jan/mar-2001) -....cParisdMagasins/AnnexeeP 4° 68951 b(jan/fev-1985) -(nov/dec-2000)cParisdMagasins/AnnexeeP 8° 2576 aZGRA aGEO RC2 Etats-Unis aDEW 338.901110nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000018001552100033001733260017002064880094002236070054003178010021003718300122003928560033005148560073005479550163006209920023007839920014008060000003951000000395120130319051142.01 a0007-7135 aFNSP104406 a0000003951 a19900101a19299999 ba0 aeng aUS aacu 10aBusiness week aNew YorkcMcGraw-Hilld1929- aHebdomadaire 1aBusiness week (Industrial edition) (0739-8395) et International business week (0739-8409) aEtats-UnisxConditions économiquesxPériodiques 3aFRbCCN0007-7135 aA partir de 1981 la Bibliothèque reçoit : International business week. L'année en cours et l'année précédente ;4 uhttp://www.businessweek.com/ zContenu : sélection d'articles en texte intégral depuis oct. 1996.1 bno. 1065 (jan-1950) -no. 1478 (dec-1957) ; n°s isolés 1958-1961 ; no. 1801 (mar-1964) -no. 2669 (29 dec-1980/5 jan-1981)cParisdMagasins/AnnexeeP 4° 1211 aGEO RC2 Etats-Unis aDEW 330.901359cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200006900180207003300249210003500282326002900317326002600346440004300372517003300415530002700448606003600475710003700511801003000548801002300578802000700601856010300608856010800711955008800819972000900907992001200916992003300928111210887000107907620130319051142.01 a1745-0144 aissn17450144 a0001079076 a20061208a20069999k y0frey0103 ba0 aeng aGB a 0  ar aaia 0uu 10aC21st century societyejournal of the Academy of Social Sciences 0aVol. 1, issue 1 (June 2006)- aAbingdoncRoutledged2006-2010 a3 n°s par anb2007-2010 aSemestrielb2006-2006 1tContemporary social sciencex2158-204110aTwenty-first century society10aC21st societyb(Print) aSciences socialesxPériodiques02aAcademy of Social Sciencesc(GB) 3aFRbAbesc20070312gAFNOR 3aFRbISSNc20061208 a024 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=711212 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jun-2006) -vol. 5 no. 3 (nov-2010)cParis,Magasins/AnnexeeP 8° 6954 aZPAY aDEW 300 aGEO RS Sans aspect régional00921nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210004500186326001500231606003800246606002900284710003000313711003500343856003800378856006300416955006600479972000900545991001800554992002300572992001200595038975610000006048520130319051142.01 a0102-4248 aFNSP276855 a0000060485 a19900101a19859999 ba0 apor aBR aaja 10aCadernos de estudos sociais aRecifecFundação Joaquim Nabucod1985- aSemestriel aSociologieyBrésilxPériodiques aSociologiexPériodiques02aFundação Joaquim Nabuco02aInstituto de pesquisas sociais4 uhttp://www.campus-oei.org/br5.htm zContenu : sommaires depuis le vol. 11, n 1 janv./juin 19951 bvol. 1 no. 3 (1986) -....cParisdMagasins/AnnexeeP 8° 5214 aZPAY aexempb201109 aGEO RD4.13 Brésil aDEW 30101006nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001600154210002700170326001800197421002800215421003700243430003700280606004500317710010300362801002100465856003000486856005200516955006900568972000900637992002200646992001200668039592413000001167920130319051142.01 a0398-3145 aFNSP126471 a0000011679 a19900101a19769999 ba0 afre aFR aagu 10aCadres CFDT aPariscUCC-CFDTd1976- a5 n°s par an 1tCadres plus,x0980-9295 1tLe Bulletin de l'ODC,x1273-3199 1aCadres et profession,x0007-9472 aCadres (personnel)yFrancexPériodiques02aConfédération française démocratique du travailbUnion confédérale des ingénieurs et cadres 3aFRbCCN0398-31454 uhttp://www.cadrescfdt.fr/ zContenu : sommaire depuis le n° 367, mars 19951 bno. 275 (sep/oct-1975) -....cParisdMagasins/AnnexeeP 8° 2878 aZGRA aGEO RA4.06 France aDEW 33101069nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210004400189326001500233422004800248606002900296606004400325676000800369710009300377711004900470801002100519856003200540856005100572955007100623972000900694992001600703992001200719001029770000001187020130319051143.01 a0761-9510 aFNSP126886 a0000011870 a19900101a19839999 ba0 afre aFR aaju 10aCahier d'études stratégiques aPariscCIRPESd1983-aPariscGSDd1983- aSemestriel 1aPaix et conflits (0399-8630) < P 4° 4916 > aStratégiexPériodiques aSécurité internationalexPériodiques a35502aCentre interdisciplinaire de recherches sur la paix et d'études stratégiquesc(France)02aGroupe de sociologie de la défensec(Paris) 3aFRbCCN0761-95104 uhttp://www.ehess.fr/cirpes/ zContenu : résumé et sommaire de 1995 à 20021 bno. 1 (1983) -no. 40/41 (2006)cParisdMagasins/AnnexeeP 4° 4905 aZPAY aDEW 355-359 aDEW 32701080nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210006500187326001500252517001800267606003400285606002700319676000800346710005900354856003800413856013500451955006600586955005900652972000900711991001800720992001600738040153673000016229520130619162128.01 a1247-3189 aFNSP622802 a0000162295 a19900101a19939999 ba0 afre aFR aaja 10aCahier d'histoire immédiate aToulouseccGroupe de recherche en histoire immédiated1991- aSemestriel10aCahier - GRHI aHistoriographiexPériodiques aHistoirexPériodiques a90902aGroupe de recherche en histoire immédiatec(Toulouse)4 uhttp://w3.framespa.univ-tlse2.fr/ zContient : sommaires depuis le n° 1, octobre 1991et texte intégral d'une sélection d'articles à partir du n° 18, automne 20001 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9091 bno. 1 (1991) -....cParisdMagasins/AnnexeeP 8° 6144 aZPAY aexempb201207 aDEW 900-90701204nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000131001502070017002812100063002983260016003613360024003773370038004015170023004395170066004626060054005286060065005827100058006478010013007058560091007189920012008099920057008210000895804000089580420130319051143.0 a0000895804 a a20059999k fre 01 ba0 afre aFR az aay z  adr 10aCahier européen du pôle Ville/metropolis/cosmopolisb[Ressource électronique]fCentre d'études européennes de Sciences-po 1aN° 1(2005)- aPariscCentre d'études européennes de Sciences Pod2005- aIrrégulier aDonnées textuelles aFichiers PDF télédéchargeables10aCahier pôle Ville10aCahiers / Working papers du pôle Ville/metropolis/cosmopolis aVillesyPays de l'Union européennexPériodiques aPolitique urbaineyPays de l'Union européennexPériodiques02aCentre d'études européennes de Sciences Poc(Paris) 0aFRbFNSP4 uhttp://blogs.sciences-po.fr/recherche-villes/category/publications/cahiers-pole-ville/ aDEW 307 aGEO RA1.01 Communautés européennes, Pays de la CEE01242nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200011100154210004200265326001800307326002600325423006500351510005600416606003800472606005800510606004600568710003600614856003800650856007100688955007600759972000900835991001800844992001800862992001200880081376049000025544620130319051143.01 a1782-0707 aFNSP891489 a0000255446 a19900101a19989999 ba0 amul aBE aaka 10aCahier international sur le témoignage audiovisuel =dInternational journal on the audio-visual testimony aBruxellescFondation Auschwitzd1998- aAnnuelb2002- aSemestrielb1998-2001 11aBulletin trimestriel de la Fondation Auschwitz,x0772-652X10aInternational journal on the audio-visual testimony aMémoire collectivexPériodiques aGuerre mondiale (1939-1945)xAtrocitésxPériodiques aGuerre mondiale (1939-1945)xPériodiques02aFondation Auschwitz (Bruxelles) uhttp://www.auschwitz.be/index.php zcontenu : sommaires et texte integral de nos depuis le n° 1, 19981 bno. 1 (Jun-1998) -no. 14 (Jun-2008)cParisdMagasins/AnnexeeP 8° 6446 aZPAY aexempb201301 aGEO RA Europe aDEW 94001116nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210003000175300003600205300008500241326001500326517002300341606003600364712005800400856005600458856004900514955007500563955010600638972000900744992002100753992001600774040561062000016934220131125110733.01 a1282-5603 aFNSP641708 a0000169342 a19900101a19959999 ba0 afre aFR aaia 10aCahier politique aaPariscCREDEPd1995-2000 aN'a pas paru en 1998 et en 1999 aA partir de 2001, devient une collection de monographie éditée par l'Harmattan aSemestriel00aCahiers politiques aScience politiquexPériodiques02aCentre de recherches et d'études politiquesc(Paris)4 uhttp://www.dauphine.fr/credep/sommairescahiers.html zContenu : sommaires depuis le n°1, mai 19951 bno. 1 (mai-1995) -no. 6 (mai-2001)cParisdMagasins/AnnexeeP 4° 65391 bno. 1 (1995) -no. 2 (1995)cParisdBibliothèque de rechercheeP 4° 6539wManquant : no. 6, mai 2001 aZGRA aGEO RQ Universel aDEW 320-32100987cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118105001800125110001600143200004200159210004600201320003500247530004300282710004300325801003000368801002300398801003000421801002300451802000700474856004700481856004500528955006700573972000900640992001200649078574250000104341020131104160540.01 a1763-573X aissn1763573X a20030523b20032006k y0frey0103 ba0 afre aFR ay  aagu uu 14aLes CahiersfCercles des économistes aPariscCercle des économistesd2003-2006 aDevient une collection en 200714aLes Cahiersb(Cercle des économistes)02aCercle des économistesc(France)4070 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20081014 3aFRbAbesc20050426gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.lecercledeseconomistes.asso.fr/ zContenu : Sommaires depuis le n°1, 20031 bno. 4 (2003) -no. 9 (2006)cParisdMagasins/AnnexeeP 8° 6925 aZGRA aDEW 33001188nas 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000106001502100034002563260016002905170064003065170026003706060044003966060041004406060053004816060027005347120105005618010013006668560038006798560037007179550075007549720009008299920012008380000441439000044143920130319051143.0 a0000441439 a b20002004k fre ba0 afre aFR a 0  ar aay z 0 14aLes Cahiersescience, environnement, sociétéfPôle intégré de recherche et d'enseignement PROSES aPariscSciences Pod2000-2004 aIrrégulier14aLes Cahiers - Programme science, environnement et société14aLes Cahiers du PROSES aEnvironnementxProtectionxPériodiques aDéveloppement durablexPériodiques aAménagement du territoireyFrancexPériodiques aEcologiexPériodiques00aFondation nationale des sciences politiquesc(France)bProgramme Science, environnement et société 0aFRbFNSP4 uhttp://www.proses.sciences-po.fr/ zAccès libre au texte intégral.1 bno. 1 (2000) -no. 9 (mai/jun-2004)cParisdMagasins/AnnexeeP 8° 6612 aZGRA aDEW 33300954nls 2200301 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000059001502100040002092300024002493100135002733260031004083370024004396060041004636760015005047120029005198010013005488300007005618560048005688560036006160000769579000076957920130319051143.0 a0000769579 a a20029999k fre 01 ba0 afre aFR ar aby z  adr 14aLes cahiersb[Ressource électronique]fEn temps réel aSuresnescEn temps réeld2002-.... aDonnées textuelles aEgalement disponible sous forme imprimée ; voir le détail de la collection à "Cahiers / En temps réel" dans l'index Collection aCollection de monographies aAccès par Internet aRelations internationalesz1989-.... a320.9v21a02aEn temps réelc(France) 0aFRbFNSP adm4 uhttp://en.temps.reel.free.fr/activites.htm# zAccès libre au texte intégral01014nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210006300184326001500247440002600262510001500288601005400303606004500357710004000402801002100442856007200463856003600535955007800571972000900649992001800658992001200676039295184000001178720130319051143.01 a0257-7755 aFNSP126699 a0000011787 a19900101b19862002 f ba0 amul aLU aazu 10aCahiers BEId= EIB papers aLuxembourgcBanque européenne d'investissementd1986-2002 aSemestriel 1tEIB Papersx1830-367610aEIB papers02aBanque européenne d'investissementxPériodiques aInvestissements européensxPériodiques02aBanque européenne d'investissement 3aFRbCCN7103/00854 uhttp://www.eib.org/infocentre/efs/publications/eib-papers/index.htm zAccès libre au texte intégral1 bno. 1 (fev-1986) -vol. 7 no. 2 (2002)cParisdMagasins/AnnexeeP 4° 5107 aZGRA aGEO RA Europe aDEW 33201054cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200003200162210004900194430005300243606003600296606003600332710003200368801003000400801002300430801003000453801003000483802000700513856005300520856003600573955007400609972000900683992001200692113697074000107927120130319051143.01 a1953-0498 aissn19530498 a0001079271 a20070402a20059999k 0frey0103 ba0 afre aFR ar aau 14aLes Cahiers Bernard Brunhes aPariscles Publications du groupe BPId2005- 1tLes Cahiers du Groupe Bernard Brunhesx1289-3536 aChangement socialxPériodiques aEvolution socialexPériodiques02aBernard Brunhes consultants 3aFRbAbesc20070406gAFNOR 3aFRbISSNc20070301 3aFRbAbesc20070405gAFNOR 3aFRbAbesc20070403gAFNOR a074 uhttp://www.brunhes.com/publications/cahiers.html zAccès libre au texte intégral1 bno. 14 (mai-2005) -no. 19 (2008)cParisdMagasins/AnnexeseP 8° 6555 aZGRA aDEW 33801181nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210002700200326001600227440006400243606004700307606004400354710006000398856004900458856012600507955008800633957007000721972000900791991001800800992002500818992001200843001300571000004704220130319051143.01 a0755-9208 aFNSP239259 a0000047042 a19900101b19842007 ba0 afre aFR aaha 10aCahiers d'économie et sociologie rurales aPariscINRAd1984-2007 aTrimestriel 1tRevue d'études en agriculture et environnement,x1966-9607 aDéveloppement ruralyFrancexPériodiques aSociologie ruraleyFrancexPériodiques02aInstitut national de la recherche agronomiquec(France)4 uhttp://www.inra.fr/esr/publications/cahiers/ zContenu : sommaire et résumés depuis le n°1, juin 1984, texte intégral depuis le n° 46-47, 1er-2ème trimestres 19981 bno. 10 (jan/mar-1989) -no. 84/85 (jun/dec-2007)cParisdMagasins/AnnexeeP 8° 57661 bno. 1 (1984) -no. 29 (1993)cParisdMagasins/AnnexeeP Index 0730 aZPAY aexempb201111 aGEO RA4.06 France 01 aDEW 30700786nas 2200229 i 450 002001100000005001700011011001400028035001500042100004100057101000800098102000700106110001600113200003400129210002800163326001500191606003700206856021300243955005900456972000900515991001800524992001400542000000633320130904143314.01 a0339-3437 aFNSP110065 a19900406a19749999 ba0 afre aFR aaja 00aCahiers d'économie politique aPariscHarmattand1974- aSemestriel aEconomie politiquexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-cahiers-d-economie-politique.htm?zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 2 (1975) -....cParisdMagasins/AnnexeeP 8° 3939 aZPAY aexempb201005 aDEW 330.101174nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210003300187326001600220607002600236607003600262710005900298801002100357856010700378856010800485856002600593856009600619955006300715972000900778991001800787992001900805992001200824039221563000001179020140108155143.01 a0008-0055 aFNSP126702 a0000011790 a19900101a19609999 ba0 afre aFR aahu 10aCahiers d'études africaines aPariscEd. de l'EHESSd1960- aTrimestriel aAfriquexPériodiques aAfriquexHistoirexPériodiques02aEcole des hautes études en sciences socialesc(Paris) 3aFRbCCN0008-00554 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-cahiers-d-etudes-africaines.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr/ zContenu : accès au texte intégral via le portail Persée, du n° 1, 1960 au n°144, 1999.1 bno. 1 (jan-1960) -....cParisdMagasins/AnnexeeP 8° 1776 aZPAY aexempb201202 aGEO RE Afrique aDEW 96001078nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000230015421000360017732600160021343000720022951700360030151700500033753000300038760600270041760600430044471000470048785600670053485600360060195500600063797200090069799100180070699200160072404048243X000019064620130319051143.01 a1271-6669 aFNSP705050 a0000190646 a19900101a19969999 ba0 afre aFR aaha 10aCahiers d'histoire aPariscIRMcEspaces Marxd1996- aTrimestriel 1aCahiers d'histoire de l'Institut de recherches marxistesx0246-973110aCahiers d'histoire Espaces Marx10aCahiers d'histoireerevue d'histoire critique10aCahiers d'histoirebParis aHistoirexPériodiques aHistoriographie marxistexPériodiques02aInstitut de recherches marxistesc(France)4 uhttp://www.espaces-marx.org/revues/CahiersdHistoire/index.html zAccès libre au texte intégral1 bno. 62 (1996) -....cParisdMagasins/AnnexeeP 8° 2256 aZPAY aexempb201004 aDEW 900-90701147nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210005500178326001600233607004900249710007300298801002100371856010300392856010800495955006300603957013800666972000900804991001800813992001400831039565890000001187320130319051143.01 a0373-5834 aFNSP126890 a0000011873 a19900101a19489999 ba0 afre aFR aahu 10aCahiers d'Outre-mer aBordeauxcInstitut de la France d'Outre-merd1948- aTrimestriel aPays en voie de développementxPériodiques02aInstitut de géographie et d'études régionalesc(Talence, Gironde) 3aFRbCCN0373-58344 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-les-cahiers-d-outre-mer.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (jan-1948) -....cParisdMagasins/AnnexeeP 8° 00851 bTome 1 (1948) -tome 10 (1957) ; tome 11 (1958) -tome 20 (1967) ; tome 21 (1968) -tome 30 (1977)cParisdMagasins/AnnexeeP Index 0243 aZPAY aexempb201101 aDEW 330.901247nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210006000178320005200238326001600290451003000306517002300336601004800359607006000407676000800467710003400475711004600509856006600555856004900621955006700670955006300737972000900800991001800809992003400827992001200861040169030000004991520130319051143.01 a1017-7574 aFNSP246214 a0000049915 a19900101a19919999 f ba0 afre aFR aaza 10aCahiers de Chaillot aPariscInstitut d'études de sécurité de l'UEOd1991- aParaît tantôt en français tantôt en anglais aIrrégulier 1aChaillot paperx1017-756610aCahier de Chaillot02aUnion de l'Europe occidentalexPériodiques aEurope de l'OuestxRelations extérieuresxPériodiques a35502aUnion de l'Europe occidentale02aInstitut d'études de sécuritéc(Paris)4 uhttp://www.iss.europa.eu/fr/publications/cahiers-de-chaillot/ zContenu : texte intégral à partir du n° 11 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3551 bno. 1 (mar-1991) -....cParisdMagasins/AnnexeeP 8° 5772 aZSAB aexempb201111 aGEO RA2.01 Europe occidentale aDEW 32701080nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000054001502070023002042100024002272300024002513260015002753370017002904300146003076060039004537100101004928010013005938560042006068560060006489550005007089920025007139920016007380001182737000118273720130319051143.0 a0001182737 a a20109999k fre 01 ba0 afre aFR az aag z  adr 14aLes cahiers de l'ARCEPb[Ressource électronique] 1ano. 1 (jan-2010) - aPariscARCEPd2010- aRevue électronique aBimestriel aFichiers PDF 1tLa lettre de l'Autorité : lettre d'information bimestrielle de l'Autorité de régulation des télécommunications [Ressource électronique] aTélécommunicationsxPériodiques02aAutorité de régulation des communications électroniques et des postesc(France)xPériodiques 0aFRbFNSP4 uhttp://www.arcep.fr/index.php?id=2106 zContenu : texte intégral depuis le n° 1, janvier 20101 r aGEO RA4.06 France 01 aDEW 383-38901492nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008600154210002500240326001600265421010600281430009200387517002400479517002100503606007700524606006000601607004100661676000800702710007300710801002100783856006700804856006200871955006700933955006401000972000901064992002201073992001101095032929277000000395620130319051143.01 a0153-6184 aFNSP104411 a0000003956 a19900101a19769999 ba0 afre aFR aahu 10aCahiers de l'Institut d'aménagement et d'urbanisme de la région d'Ile-de-France aPariscIAURIFd1976- aTrimestriel 1tCahiers de l'Institut d'aménagement et d'urbanisme de la région d'Ile de France. Habitatx1241-7068 1aCahiers de l'Institut d'aménagement et d'urbanisme de la région parisiennex0020-220710aCahiers de l'IAURIF10aCariers - IAURIF aAménagement du territoireyFranceyIle-de-France (France)xPériodiques aUrbanismeyFranceyIle-de-France (France)xPériodiques aIle-de-France (France)xPériodiques a33302aInstitut d'aménagement et d'urbanisme de la région d'Ile-de-France 3aFRbCCN0153-61844 uhttp://www.iaurif.org/fr/ressources_doc/publications/index.htm zContenu : sommaires et résumés des 5 dernières années1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3331 bno. 42 (jul-1976) -....cParisdMagasins/AnnexeeP 4° 3706 aZPAY aGEO RA4.06 France aDEW 7101183nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009500154210002900249326001600278422009700294517003300391517002000424606005900444606003500503710007300538856006700611856006200678955007500740972000900815992002200824992001100846040062813000008226420130319051143.01 a1241-7068 aFNSP366177 a0000082264 a19900101b19922008 ba0 afre aFR aaha 10aCahiers de l'Institut d'aménagement et d'urbanisme de la région d'Ile de France. Habitat aPariscIAURIFd1992-2008 aTrimestriel 1aCahiers de l'Institut d'aménagement et d'urbanisme de la région d'Ile de Francex0153-618410aCahiers de l'IAURIF. Habitat10aCahiers habitat aLogementyFranceyIle-de-France (France)xPériodiques aLogementyFrancexPériodiques02aInstitut d'aménagement et d'urbanisme de la région d'Ile-de-France4 uhttp://www.iaurif.org/fr/ressources_doc/publications/index.htm zContenu : sommaires et résumés des 5 dernières années1 bno. 1 (avr-1992)-no. 43 (jan-2008)cParisdMagasins/AnnexeeP 4° 6177 aZPAY aGEO RA4.06 France aDEW 7100840nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210004800186326001600234530003200250607004600282712003400328856005700362856005900419955006300478972000900541992001200550039810844000001197820130319051143.01 a0983-1851 aFNSP127674 a0000011978 a19900823a19869999 ba0 afre aFR aaha 14aLes Cahiers de la Fondation aPariscFondation Europe et sociétéd1986- aTrimestriel04aLes Cahiers de la Fondation aPays de l'Union européennexPériodiques02aFondation Europe et société4 uhttp://www.europeetsociete.com/lescahiers/index.html4 zcontenu : accès aux sommaires depuis le n°, mai 19861 bno. 4 (jan-1987) -....cParisdMagasins/AnnexeeP 4° 5239 aZGRA aDEW 94001238nas 2200349 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012310600060014111000160014720000850016321000750024832600160032343000610033960600470040067600080044771000650045580100130052085600870053385600590062095500670067995500450074695500450079197200090083699200250084599200180087009300284X000087642720130430135454.01 a1774-475X a0000876427 a a20059999 fre 01 ba0 afre aFR a 0  ar aah z 0 14aLes Cahiers de la sécuritéfInstitut national des hautes études de sécurité aSaint-DeniscInstitut national des hautes études de sécuritéd2005- aTrimestriel 1tLes Cahiers de la sécurité intérieurexISSN 1150-1634 aSécurité nationaleyFrancexPériodiques a35502aInstitut national des hautes études de sécuritéc(France) 0aFRbFNSP4 uhttp://www.inhes.interieur.gouv.fr/publications_titres.php?choix=1&inhes=bienvenue4 zContenu : accès aux sommaires détaillés depuis 19891 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3551 bn. s. no. 1 (jul-2007) -....eP 4° 72061 bno. 56 (2005) -no. 63 (2006)eP 8° 5663 aZCAD aGEO RA4.06 France 01 aDEW 355 - 35901262nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200010800139207002300247210003700270210004100307300003600348326001100384517005900395530002700454606002400481606005300505710004400558856010300602856010800705955007200813972000900885991001800894992001200912040383962000020409020130916105528.01 a1262-0386 aFNSP742932 a19900101a19939999 ba0 afre aFR aaka 14aLes Cahiers de la Shoaheconférences et séminaires sur l'histoire de la ShoahfUniversité de Paris I 0ano. 1 (1993/1994)-1 aPariscles Belles lettresd2001- aPariscÉd. Liana Levid1993-[1997?] aN'a pas paru entre 1997 et 2001 aAnnuel10aConférences et séminaires sur l'histoire de la Shoah04aLesCahiers de la Shoah aShoahxPériodiques aGuerre mondiale (1939-1945)xJuifsxPériodiques02aUniversité Panthéon-Sorbonnec(Paris)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-les-cahiers-de-la-shoah.htm?4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1993/1994) -no. 9 (2007)cParisdMagasins/AnnexeeP 8° 6286 aZPAY aexempb201210 aDEW 94001032nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131105001800138110001600156200013100172207003000303210003900333326001500372440003200387606003000419712008000449801001300529856003100542856005600573955006800629972000900697992001200706040473430000018686220130319051143.01 a1270-0665 aFNSP691409 a0000186862 a19900101b19962004k fre ba0 afre aFR a z 0 b  aaj z 0 14aLes Cahiers de médiologie/fAssociation pour le développement de la recherche en médiologiegdir. de la publ. Régis Debray 1ano. 1(1996)-no. 18 (2004) aPariscGallimardcADREMd1996-2004 aSemestriel 1tMédium (Revue),x1771-3757 aMédiologiexPériodiques02aAssociation pour le développement de la recherche en médiologiec(France) 0aFRbFNSP4 uhttp://www.mediologie.com/ zContenu : texte intégral depuis le numéro 1, 19961 bno. 1 (1996) -no. 18 (2004)cParisdMagasins/AnnexeeP 8° 6226 aZPAY aDEW 30200970nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010013000951020007001081060006001151100016001211350018001372000222001552100070003772300024004473260013004716010061004846060036005458010013005818560036005948560036006309720005006669920021006710001227311000122731120130319051143.0 a0001227311 a a 9999k fre 01 ba0 aengafre aBE ar aaz z  adr 10aCahiers de sciences politiques de l'ULgb[Ressource électronique]etravaux réalisés par les chercheurs, enseignants-chercheurs et collaborateurs du département de science politique de l'ULg / Université de Liège aLiège:cUniversité de Liège, Département de science politique aRevue électronique ainconnue02aUniversité de LiègebDépartement de science politique aScience politiquexPériodiques 0aFRbFNSP4 uhttp://popups.ulg.ac.be/csp.htm ztexte intégral depuis le n° 1 a aGEO RQ Universel01014nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005200154210002800206326001500234436011600249606004100365606003500406710007700441801002100518856003200539955006300571957005700634972000900691992001200700039718573000001200320130319051143.01 a0761-9871 aFNSP127725 a0000012003 a19900101a19849999 ba0 afre aFR aaju 10aCahiers de sociologie économique et culturelle aLe HavrecINHEPPd1984- aSemestriel 1aEthno-psychologie (0046-2608) < P 8° 0074 > et de Cahiers de sociologie économique (0007-9987) < P 8° 1899 > aSociologie économiquexPériodiques aEthnopsychologiexPériodiques02aInstitut havrais de sociologie économique et de psychologie des peuples 3aFRbCCN0761-98714 uhttp://www.wmaker.net/isec/1 bno. 1 (jun-1984) -....cParisdMagasins/AnnexeeP 4° 49281 b(1984) -(2004)cParisdMagasins/AnnexeeP index 0870 aZPAY aDEW 30101185nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008600154210006900240326002400309326002700333430007900360530004400439607003500483710006300518856005700581856009000638955006400728972000900792991001800801992002800819992001200847039890295000001208120130320142516.01 a1141-7161 aFNSP127916 a0000012081 a19900827a19859999 ba0 afre aFR aaia 10aCahiers des Amériques latinesfInstitut des hautes études de l'Amérique Latine aPariscUniversité de la Sorbonne nouvelle Paris 3, IHEALd1985- a3 nos par anb1996- aIrrégulierb1985-1995 1aCahiers des amériques latines. Série Sciences de l'HommexISSN 0008-002010aCahiers des amériques latinesb(Paris) aAmérique latinexPériodiques02aInstitut des hautes études de l'Amérique latinec(Paris)4 uhttp://www.iheal.univ-paris3.fr/spip.php?rubrique358 zContenu : accès au texte intégral depuis le n° 1 (1985) sauf les derniers numéros1 bn.s. no. 1 (1985) -....cParisdMagasins/AnnexeeP 8° 2589 aZCAD aexempb201102 aGEO RD Amérique latine aDEW 98001177nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200011500154210002800269326001500297440005400312530006300366607003500429712006300464801002100527856006600548856006300614955015800677992002800835992001200863037436228000001202020130319051143.01 a0008-0020 aFNSP127786 a0000012020 a19900101b19681984 ba0 amul aFR aaju 10aCahiers des Amériques latines. Série Sciences de l'homme / Institut des hautes études de l'Amérique latine aPariscIHEALd1968-1984 aSemestriel 1aCahiers des amériques latines (Paris)x1141-716100aCahiers des Amériques latines. Série Sciences de l'homme aAmérique latinexPériodiques02aInstitut des hautes études de l'Amérique latinec(Paris) 3aFRbCCN0008-00204 uhttp://www.iheal.univ-paris3.fr/rubrique.php3?id_rubrique=359 zContenu : Sommaires depuis le numéro 1, janvier-juin 19681 bno. 1 (1968) -no. 29/30 (1984)cParisdMagasins/AnnexeeP 8° 2589zle no. 29/30 (1984) est relié avec le no. 1 (1985) de Cahiers des Amériques latines aGEO RD Amérique latine aDEW 98001199nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116106000600123110001600129200002800145210003500173326004600208421004800254437004400302440004500346530003800391601004500429606002900474710004800503830003400551856011100585955009000696991001800786992002200804992001400826992000900840038561239000004726920131015095554.01 a1149-8277 aFNSP239991 a19900101b19241942 ba0 afre aFR ar aafa 10aCahiers du bolchévisme aParis‎c[s.n.]‎d1924-1942 aHebdomadaire puis Bimensuel, puis Mensuel 0tBulletin colonial (Paris. 1933),x1149-8293 1tBulletin communiste (Paris),x1149-381X 1aCahiers du communisme (1944),x0008-013600aCahiers du bolchévisme‎bParis02aParti communiste françaisxPériodiques aCommunismexPériodiques02aParti communiste françaisbComité central a1924-1939 : conservé au 13 U4 zAccès libre au texte intégral sur Gallica (1924-1944)uhttp://gallica.bnf.fr/ark:/12148/cb327356292/date1 b(1924)-(1928) ; (1932)-(1939)cParisdMagasins/AnnexeeP 8° 0243wNombreuses lacunes aexempb201111 aGEO RA4.06 France aDEW 320.5 aPBUL01177nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154207003200190210002800222326001600250607002600266710004400292711006300336711006200399856006800461856011800529955014200647972000900789991001800798992002300816992001200839002436493000016443120130319051143.01 a0989-5191 aFNSP628719 a0000164431 a19900101b19872010 ba0 afre aFR aaha 10aCahiers du Brésil contemporain 1ano 1 (1987)-no 75/76 (2010) aPariscEHESSd1987-2010 aTrimestriel aBrésilxPériodiques02aMaison des sciences de l'hommec(Paris)02aInstitut des hautes études de l'Amérique latinec(Paris)02aCentre de recherches sur le Brésil contemporainc(Paris)4 uhttp://www.revues.msh-paris.fr/modele2/perbook2.asp?id_perio=56 zContenu : sommaires depuis le n°1, 1987 et une sélection d'articles accessibles en texte intégral gratuitement1 bno. 12 (1990) ; no. 20 (1993) ; no. 22 (1993) ; no. 27/28 (1995) ; no. 33/34 (1998) -no. 75/76 (2010)cParisdMagasins/AnnexeeP 8° 6149 aZGRA aexempb201209 aGEO RD4.13 Brésil aDEW 98001507nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101001300123102000700136110001600143200007400159210002600233300014600259326001600405517006600421530002900487606005800516606005800574606005300632606005300685710006500738801003000803856004300833856006200876955009700938991001801035992003201053992003601085992001201121013666142000014245720130319051143.01 a1805-0336 aFNSP564965 a0000142457 a19941124a19929999 y01 ba0 afreacze aCZ aaha 10aCahiers du CeFReSfCentre français de recherche en sciences sociales aPraguecCEFRESd1992- aLe n° 0 (no d'inauguration) s'intitule "Bulletin d'information du Centre français de recherche en sciences sociales" et porte la même cote aIrrégulier10aCahiers du Centre français de recherche en sciences sociales10aCahiers du CeFReSbPraha aScience politiqueyRépublique tchèquexPériodiques aSciences socialesyRépublique tchèquexPériodiques aSciences socialesyEurope de l'EstxPériodiques aScience politiqueyEurope de l'EstxPériodiques02aCentre français de recherche en sciences socialesc(Prague) 0aFRbAbesc20051209gAFNOR4 uhttp://www.cefres.cz/Cahiers-du-CEFRES zContenu : accès aux sommaires depuis le n°1, juin 1992.1 bno. 1 (jun-1992) -no. 16 (1999) ; no.26 (oct-2001) -....cParisdMagasins/AnnexeeP 8° 6084 aexempb201208 aGEO RA2.02 Europe orientale aGEO RA5.21 République tchèque aDEW 30000887nls 2200289 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010013001091020007001221060006001291100016001351350018001512000135001692070010003042100043003142300024003573260022003816060039004037100039004428010013004818560054004948560037005489550012005850001228436000122843620130319051143.0 a2116-5513 a0001228436 a a20119999k fre 01 ba0 afreaeng aFR ar aai z  adr 10aCahiers du Centre Émile Durkheimb[Ressource électronique]/Centre Émile Durkheim - Science politique et sociologie comparatives 1a2011- aPessac:cCentre Émile Durkheimd2011- aRevue électronique aTrois fois par an aSociologie politiquexPériodiques02aCentre Émile Durkheimc(Bordeaux) 0aFRbFNSP4 uhttp://www.centredurkheim.fr/Working%20Papers.htm zAccès libre au texte intégral.1 r2011-1101135cas0 2200361 450 001001000000002001100010005001700021011001400038035001400052035001700066035002500083035001700108035001500125100004100140101000800181102000700189105001800196110001600214200003100230207008500261210002900346215001000375530003100385710002500416801003000441801002900471801002300500802000700523856013400530955005500664991002000719991003400739038555883000110632720130319051143.0 a1149-3852 a070865094 accn1149-3852 aFRBNF327356520000009 aissn11493852 a0001106327 a19950203b19121914uuuy0frey0103 ba0 afre aFR ay  aauu uu 10aCahiers du Cercle Proudhon 0aN°1 (1912, janv./févr.)-n°5/6 (1913, juil.)a2e s., n°1 (1914, janv./févr.) aParisc[s.n.]d1912-1914 d23 cm00aCahiers du Cercle Proudhon02aCercle Proudhon4070 3aFRbAbesc20061009gAFNOR 3aFRbBnFc20060327gAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/cb32735652k/date.r=.langFRzAccès libre au texte intégral. Année 1912 numérisée sur Gallica1 b(1912) -(1976)cParisdMagasins/AnnexeeP 8° 3887 aPériobTP06 P8 anumer0 (compléments gallica)00924nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210002700178326001800205440007700223606004400300606003200344712006300376856007800439955007600517991001700593992001200610992001200622002513080000004674020130319051143.01 a1159-3733 aFNSP238277 a0000046740 a19900101b19911998 ba0 afre aFR aazb 14aLes Cahiers du CERI aPariscCERId1991-1998 a5 n°s par an 1tQuestions de recherche = Research in questionb[Ressource électronique] aRelations internationalesxPériodiques aGéopolitiquexPériodiques02aCentre d'études et de recherches internationalesc(Paris)4 uhttp://www.sciencespo.fr/ceri/fr/cahierzAccès libre au texte intégral.1 bno. 1 (oct-1991) -no. 20 (mai-1998)cParisdMagasins/AnnexeeP 8° 5762 aexemp$201111 aDEW 909 aDEW 32701204nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210002600177320011000203326001600313606004900329606005000378676000800428710007400436830004400510856007100554856003700625955006100662955007900723972000900802992002200811992001200833992000900845039900878000001316420131219160725.01 a1146-7924 aFNSP133847 a0000013164 a19900917a19889999 ba0 afre aFR aaha 10aCahiers du CEVIPOF aPariscCEVIPOFd1988- aCessent de paraître sur support papier avec le no 51, Septembre 2009 , continuent en ligne gratuitement. aTrimestriel aSociologie électoraleyFrancexPériodiques aParticipation politiqueyFrancexPériodiques a32002aCentre d'étude de la vie politique française contemporainec(Paris) aToute la collection se trouve au MAG 2740uhttp://www.cevipof.com/fr/les-publications/les-cahiers-du-cevipof/ zAccès libre au texte intégral.1 bno. 1 (1988) -no. 51 (2009)cParisdMagasinseP 8° 51301 bno. 1 (1988) -no. 51 (2009)cParisdBibliothèque de rechercheeP 8° 5130 aZGRA aGEO RA4.06 France aDEW 324 aPBUL00861nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210003700177326001200214606002600226801002100252856003500273856005300308945004400361955007300405957007300478972000900551992001100560001012509000001198820130319051143.01 a0008-011X aFNSP127687 a0000011988 a19900101a19519999 ba0 afre aFR aafa 10aCahiers du cinéma aPariscCahiers du cinémad1951- aMensuel aCinémaxPériodiques 3aFRbCCN0008-011X4 uhttp://www.cahiersducinema.com zExtraits de certains articles du dernier numéro a0000297083oL01lMAGAmbookd1992 05 181 bvol. 24 no. 139 (jan-1963) -....cParisdMagasins/AnnexeeP 4° 20901 bno. 200 (1968) -no. 399 (1987)cParisdMagasins/AnnexeeP Index 0639 aZPAY aDEW 7901284nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004300154210002900197326001500226440005200241601005000293606004000343606004300383606004800426676000800474710003600482856017000518856006500688955006700753955006800820972000900888992001200897992002500909004091833000020862320130319051143.01 a1253-2177 aFNSP756318 a0000208623 a19900101b19962010 ba0 afre aFR aaja 14aLes Cahiers du Conseil constitutionnel aPariscDallozd1996-2010 aSemestriel 1tLes Nouveaux cahiers du Conseil Constitutionnel02aFrancebConseil constitutionnelxPériodiques aDroit constitutionnelxPériodiques aCours constitutionnellesxPériodiques aDroit constitutionnelyFrancexPériodiques a34202aFrancebConseil constitutionnel4 uhttp://www.conseil-constitutionnel.fr/conseil-constitutionnel/francais/documentation-publications/cahiers-du-conseil/les-cahiers-du-conseil-constitutionnel.5069.html zContenu : texte intégral des Cahiers , sauf le n° en cours1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 3421 bno. 1 (1996) -no. 28 (2010)cParisdMagasins/AnnexeeP 4° 6657 aZCAD aDEW 342 aGEO RA4.06 France 0100890nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000050001502100034002002300024002343260005002586060043002636060046003068010013003528560085003658560108004509550005005589920025005639920012005880000969199000096919920130319051143.0 a0000969199 a a19999999k fre 01 ba0 afre aFR ar aaz z  adr 14aLes cahiers du DRHb[Ressource électronique] aPariscLamyline Reflexc1999- aRevue électronique a aDroit du travailyFrancexPériodiques aRessources humainesyFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 34401020nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002300163210003400186326001100220430002300231517008000254607003500334710007300369801001300442856007900455856004500534955006600579972000900645992002800654992001200682073604429000042661620130319051143.01 a1636-7103 a0000426616 a a20019999k fre ba0 afre aBE a 0  ar aak z 0 10aCahiers du GELA-IS aPariscL'Harmattand2002-2005 aAnnuel 1tCahiers du CELA-IS10aCahiers du Groupe d'études latino-américaines de l'Institut de sociologie aAmérique latinexPériodiques02aUniversité libre de BruxellesbGroupe d'études latino-américaines 0aFRbFNSP4 uhttp://www.editions-harmattan.fr/index.asp?navig=catalogue&obj=revue&no=58 zContenu : sommaires depuis le n°1, 20011 bno.1 (2001) - no 5 (2005)cParisdMagasins/AnnexeeP 8° 6319 aZSAB aGEO RD Amérique latine aDEW 98001136nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002100163210002800184326002200212326002400234430003500258606004700293606003800340606003400378801001300412856009500425856010800520955006000628957008900688972000900777992001200786048768596000027851120130319051143.01 a1298-6046 a0000278511 a a19999999k fre ba0 afre aFR a 0  ar aaj z 0 10aCahiers du genre aPariscHarmattand1999- aSemestrielb2000- a3 n°s par anb1999 1tCahiers du GEDISST,x1165-3558 aDivision sexuelle du travailxPériodiques aDivision du travailxPériodiques aFemmesxTravailxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-cahiers-du-genre.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 24 (1999) -....cParisdMagasins/AnnexeeP 4° 67751 bvol. 18 (1997) -vol. 35 (2003)zcet index se trouve dans le no. 35, 2003 de la revue aZPAY aDEW 33101119nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200009500139210009000234300007400324326001500398530003800413606003000451676000800481710006700489856004100556856007200597955007200669972000900741991001800750992002500768992001200793040540391000019547520130919105844.01 a1280-0082 aFNSP718141 a19900101b19962010 ba0 afre aFR aaja 14aLes Cahiers du journalismefEcole supérieure de journalisme de Lille, Centre de recherche aLillecCentre de recherche de l'École supérieure de journalisme de Lilled1996-2010 acesse de paraître sur support papier, continue en ligne gratuitement aSemestriel14aLes Cahiers du journalismebLille aJournalismexPériodiques a07002aEcole supérieure de journalismec(Lille)bCentre de recherche40uhttp://www.cahiersdujournalisme.net/ zContenu : accès libre au texte intégral depuis le numéro 1, 19961 bno. 1 (jun-1996) -no. 21 (2010)cParisdMagasins/AnnexeeP 8° 6262 aZPAY aexempb201309 aGEO RA4.06 France 01 aDEW 07001001nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210005400183210003400237326001600271430007800287606003200365606002400397710003600421856005400457856007000511955006300581972000900644991001800653992001600671040243737000024608220130319051143.01 a1029-8878 aFNSP864442 a0000246082 a19900101a19989999 ba0 afre aFR aaha 14aLes Cahiers du judaïsme aPariscAlliance israélite universelled1998-2009 aPariscEd. de l'éclatd2009- aTrimestriel 1aLes Nouveaux cahiers - Alliance israélite universelle (Paris)x0029-4705 aJuifsyFrancexPériodiques aJuifsxPériodiques02aAlliance israélite universelle4 uhttp://www.aiu.org/activites/editions/c_judaisme/ zContenu : informations sur la revue, sommaire du dernier n° paru1 bno. 1 (mar-1998) -....cParisdMagasins/AnnexeeP 8° 2197 aZPAY aexempb201004 aDEW 305-30601535nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210003300181326001600214430006900230607002600299607002300325607002500348710005900373856003400432856008800466856010200554856010800656856006100764856012100825955006700946972000901013992002001022992003901042992005601081992001201137040229599000014341020130319051143.01 a1252-6576 aFNSP567396 a0000143410 a19941205a19949999 ba0 afre aFR aaha 10aCahiers du monde russe aPariscEd. de l'EHESSd1994- aTrimestriel 1aCahiers du monde russe et soviétique (0008-0160) < P 8° 1742 > aEx-URSSxPériodiques aURSSxPériodiques aRussiexPériodiques02aEcole des hautes études en sciences socialesc(Paris)4 uhttp://monderusse.revues.org/ zContenu : sommaires et résumés de 1994 à 1998, texte intégral à partir de 19994 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-cahiers-du-monde-russe.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr/web/revues/home/prescript/revue/cmr zContenu : accès libre au texte intégral depuis le vol. 1, n°1, 1959 à l'exception des années les plus récentes1 bvol. 35 no. 1 (1994) -....cParisdMagasins/AnnexeeP 8° 1742 aZCAD aGEO RA7.01 URSS aGEO RA7.21 Russie (depuis 1991-92) aGEO RA7.02 Etats successeurs de l'Union soviétique aDEW 94701155nas 2200349 i 450 00100100000000200110001000500170002101100250003803500150006310000410007810100080011910200070012710500180013410600060015211000160015820000300017420700250020421000450022921000500027432000330032432600160035760600450037360600470041860600410046567600080050680100130051485601030052785600420063095501120067297200090078499200120079310423461X000034511720140109162020.01 a1622-1494y1469-3380 a0000345117 a a20002003k fre ba0 afre aFR a 0  ar aah z 0 14aLes Cahiers du numérique 1aVol. 1, n°1 (2000)- aPariscHermes Science Publicationsd2009 aPariscHermes Science Publicationsd2000-2003 aN'a pas paru de 2003 à 2009 aTrimestriel aSociété de l'informationxPériodiques aTechnologie de l'informationxPériodiques aRéseaux d'informationxPériodiques a070 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-les-cahiers-du-numerique.htm zAccès aux sommaires et aux résumés1 bvol. 1 no. 1 (2000) -vol. 4 no. 3/4 (2003) ; vol. 5 no. 1 (2009) - ….cParisdMagasins/AnnexeeP 8° 6536 aZPAY aDEW 07001227nls 2200409 i 450 0010011000000020011000110050017000220110005000390350015000441000041000591010008001001020007001081060006001151100016001211350018001372000065001552070005002202100050002252300005002753000053002803260016003333300005003493360056003543370038004106010036004486060005004846070073004896760005005627020021005677100058005888010013006468300005006598560077006649550005007419920014007469920057007600000401948000040194820130319051143.0 a a0000401948 a a20009999k fre 01 ba0 afre aFR az aay z  adr 10aCahiers européens de Sciences Pob[Ressource électronique] 1a aPariscCentre européen de Sciences Pod2000- a aTexte intégral de la revue depuis le n°1, 2000 airrégulier a aDonnées textuelles accessibles uniquement en ligne aFichiers PDF télédéchargeables02aUnion européennexPériodiques a aPays de l'Union européennexPolitique et gouvernementxPériodiques a 1aDehoussebRenaud02aCentre d'études européennes de Sciences Poc(Paris) 0aFRbFNSP a4 uhttp://www.cee.sciences-po.fr/fr/publications/les-cahiers-europeens.html1 r aDEW 341.2 aGEO RA1.01 Communautés européennes, Pays de la CEE01206nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002200139210004600161326001500207430005100222530003500273606005700308606004400365676000800409710005300417801002100470856006000491856006900551955007300620955005900693957007400752972000900826992001200835992000900847045233020000000400820131029101817.01 a0008-0217 aFNSP104524 a19900101a19569999 ba0 afre aFR aagu 10aCahiers français aPariscLa Documentation françaised1956- aBimestriel 1aLes Cahiers français d'informationx1149-181700aCahiers françaisbParis. 1956 aRelations économiques internationalesxPériodiques aRelations internationalesxPériodiques a00102aFrancebDirection de la documentation française 3aFRbCCN0008-02174 uhttp://www.ladocfrancaise.gouv.fr/revues/cf/index.shtml zContenu : sommaires et résumés depuis le n° 289, janvier 19991 bLes 3 dernières annéescParisd27, Salle Rez-de-chausséeeDEW 0011 bno. 1 (1956) -....cParisdMagasins/AnnexeeP 4° 00311 b(1971) -(1977) ; (1971) -(1986)cParisdMagasins/AnnexeeP Index 0508 aZPAY aDEW 909 aPBUL01179nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210003700195210005600232326001500288606002900303676000800332801002100340856011600361856010800477856009200585856005400677955008300731972000900814991001800823992001200841039221725000001222720131008114625.01 a0008-0276 aFNSP128239 a0000012227 a19900101b19462010 ba0 afre aFR aaja 10aCahiers internationaux de sociologie aaPariscÉd. du Seuild1946-1953 aaPariscPresses universitaires de Franced1954-2010 aSemestriel aSociologiexPériodiques a301 3aFRbCCN0008-02764 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-cahiers-internationaux-de-sociologie.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://doc-iep.univ-lyon2.fr/Ressources/Bases/Somrev/resultatSomrev.html?questionIDR=37 zContenu : sommaires depuis le n°98, janvier 19951 bvol. 1 (1946) -vol. 128/129 (jan/jun 2010)cParisdMagasins/AnnexeeP 8° 0060 aZSAB aexempb201011 aDEW 30101300cas0 2200373 450 00100100000000200110001000500170002101100140003803500170005203500150006910000410008410100080012510200070013310500180014010600060015811000160016420000920018020700170027221000240028932600150031353200830032860600440041160700390045571000810049471200940057580100300066980100230069980200070072285600260072985600820075595500590083799200180089699200120091413169815X000117835420140107174000.01 a1967-2713 aissn19672713 a0001178354 a20090223a20089999k y0frey0103 ba0 afre aFR ay  ar aaju uu 14aLes Cahiers Iricef[Identités, relations internationales et civilisations de l'Europe] 0aNo 1 (2008)- aPariscIRICEd2008- aSemestriel10aLes Cahiers Identités, relations internationales et civilisations de l'Europe aRelations internationalesxPériodiques aEuropexCivilisationxPériodiques02aIdentités, relations internationales et civilisations de l' Europec(Paris)02aCentre national de la recherche scientifiquec(France)bUnité mixte de recherchec(8138) 3aFRbAbesc20091001gAFNOR 3aFRbISSNc20091001 a074 uhttp://irice.cnrs.fr/ zContient : sommaires et texte intégral des articles à partir du no. 1, 20081 bno. 1 (2008) -....cParisdMagasins/AnnexeeP 8° 7106 aGEO RA Europe aDEW 94000872nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000054001502100034002042300024002383260005002626060055002678010013003228560085003358560108004209550005005289920025005339920012005589920012005700000969200000096920020130319051143.0 a0000969200 a a20029999k fre 01 ba0 afre aFR ar aaz z  adr 14aLes cahiers Lamy du CEb[Ressource électronique] aPariscLamyline Reflexc2002- aRevue électronique a aComités d'entreprisexDroityFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 344 aDEW 33101217nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002600139207004400165210004000209326001200249430007400261452007800335530003300413606003600446606002900482710005900511830001400570830003600584856009500620955008700715972000900802991001800811992002200829992001600851039221792000001410820131018152414.01 a0008-042X aFNSP138076 a19901004a19619999 ba0 afre aFR aafa 10aCahiers pédagogiques 1a17e année, n° 29 (1er octobre 1961) - aPariscCahiers pédagogiquesd1961- aMensuel 1tCahiers pédagogiques pour l'enseignement du second degréx1164-6691 1tLes Cahiers (Cercle de recherche et d'action pédagogiques)‎x2104-332910aCahiers pédagogiquesbRevue aEducationyFrancexPériodiques aPédagogiexPériodiques02aCercle de recherche et d'action pédagogiquesc(Paris) a1961-2012 a1961-->2010 : CTLES, juil. 20134 uhttp://www.cahiers-pedagogiques.com/zContenu : sommaires depuis le numéro 365, juin 19981 bVol. 17, no. 29 (1961) -vol. 67 no. 498 (2012)cParisdMagasins/AnnexeeP 4° 1591 aZPAY aexempb201305 aGEO RA4.06 France aDEW 370-37900780nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210005400191326001500245606004000260710004800300801002100348856003500369955005900404972000900463991001800472992001200490039590291000001222520130319051143.01 a0398-0677 aFNSP128237 a0000012225 a19900101a19759999 ba0 afre aFR aaja 10aCahiers pour l'analyse concrète aMontargiscCentre de sociologie historiqued1975- aSemestriel aSociologie historiquexPériodiques02aCentre de sociologie historique (Montargis) 3aFRbCCN0398-06774 uhttp://www.analyseconcrete.fr/1 bno. 2 (1976) -....cParisdMagasins/AnnexeeP 8° 4801 aZPAY aexempb201106 aDEW 30101097nas0 2200349 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006500139207001700204210004000221326001800261510002200279607002500301607002600326676001000352710006300362711003900425801003000464801001300494856008300507856005100590955006700641972000900708992001600717992001400733113887043000108399520130319051143.01 a1955-4397 a0001083995 a20070412b20062008k 0frey0103 ba0 amul aFR aau 10aCahiers Russiefpubl.par l'Observatoire de la Russie du CERI 0aN°1 (2006)- aPariscCeri, Sciences Pod2006-2008 a3 n°s par an14aThe Russia papers aRussiexPériodiques aEx-URSSxPériodiques a943.702aCentre d'études et de recherches internationalesc(Paris)02aObservatoire de la Russiec(Paris) 3aFRbAbesc20070412gAFNOR 0aFRbFNSP4 uhttp://www.ceri-sciences-po.org/cerifr/publica/cahier_russie/cahier_russie.php zContenu : texte intégral depuis le n°1, 20061 bno. 1 (2006) -no. 6 (2008)cParisdMagasins/AnnexeeP 8° 6971 aZGRA aGEO RA7. 21 aDEW 943.700868nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000080001502070011002302100038002412300024002793260013003036060041003166060038003577100033003958010013004288560058004418560041004999550005005409920021005450001227428000122742820130319051143.0 a0001227428 a a20089999k fre 01 ba0 afre aFR ar aaz z  adr 10aCahiers Sol et civilisationb[Ressource électronique] / Sol et civilsation 1a2008-1 aParis:cSol et civilisationd2008 aRevue électronique aInconnue aDéveloppement durablexPériodiques aAgricultureyFrancexPériodiques02aSol et civilisationc(Paris) 0aFRbFNSP4 uhttp://www.soletcivilisation.fr/category/les-cahiers/ ztexte intégral depuis le n°1, 20081 r aGEO RQ Universel00992nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210006000187326001600247606003900263710003900302801002100341856012800362856010800490955009100598972000900689992001600698038683741000001294320130523105956.01 a0008-1256 aFNSP132765 a0000012943 a19900101a19589999 ba0 aeng aUS aaha 10aCalifornia management review aBerkeley, Calif.cUniversity of California Pressd1958- aTrimestriel aGestion d'entreprisexPériodiques02aUniversity of California, Berkeley 3aFRbCCN0008-12564 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=CMW&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 11 no. 3 (pri-1969) -vol. 55 no. 1 (aut-2012)cParisdMagasins/AnnexeeP 4° 2798 aZPAY aDEW 650-65801050nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210003400189326001500223606003700238801002100275856009800296856003600394856010100430856010800531955007000639972000900709991001800718992001200736039404285000001334420130319051145.01 a0309-166X aFNSP134482 a0000013344 a19900101a19779999 ba0 aeng aGB aaga 10aCambridge journal of economics aLondoncAcademic Pressd1977- aBimestriel aEconomie politiquexPériodiques 3aFRbCCN0309-166X4 uhttps://acces-distant.sciences-po.fr/fork?http://cje.oupjournals.org/contents-by-date.0.shtml zAccès libre au texte intégral4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=102613 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1977) -....cParisdMagasins/AnnexeeP 8° 3890 aZPAY aexempb201001 aDEW 33001558nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210006400200326002300264326002900287326002600316606004400342710004900386856010300435856010800538856010900646856010800755856012800863856010800991955007001099972000901169991001801178992001201196040086437000003166020130319051145.01 a0955-7571 aFNSP187877 a0000031660 a19910514a19879999 ba0 aeng aGB aaia 10aCambridge review of international affairs aCambridgecCambridge review of international affairsd1987- aTrimestrielb2006- a3 n°s par anb2002-2005 aSemestrielb1990-2001 aRelations internationalesxPériodiques02aCentre for International Studies (Cambridge)4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=300201 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713409751db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=poh&jid=J1Y&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 4 no. 1 (pri-1990) -....cParisdMagasins/AnnexeeP 8° 5715 aZCAD aexempb201205 aDEW 32700999nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210002900179326001200208436003800220436001900258606003800277710003900315856006700354856008800421955006500509955006800574972000900642992002200651992001200673039823717000006071320130319051145.01 a0984-9181 aFNSP278285 a0000060713 a19900101a19879999 ba0 afre aFR aafa 10aCampagnes solidaires aPariscMedia Paysd1987- aMensuel 1aLe Travailleur paysan,x0293-5031 1tPays et paysan aPaysannerieyFrancexPériodiques02aConfédération paysannec(France)4 uhttp://www.confederationpaysanne.fr/campagnes_solidaires_5.php zContenu : sommaires, éditos et sélection d'articles depuis le no. 173, avril 20031 bno. 137 (jan-2000) -....cParisdMagasins/AnnexeeP 4° 68421 bno. 1 (sep-1987) -no. 136 (dec-1999)cParisdAnnexeeP F° 0463 aZPAY aGEO RA4.06 France aDEW 30700936nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001391100016001452000026001612100051001873260015002385170028002535300026002816060053003076060040003608010021004008560033004218560042004549550087004969920023005839920016006060000013346000001334620130319051145.01 a0197-0771 aFNSP134487 a0000013346 a19900101a19809999 ba0 aeng aUS ar aaga 10aCampaigns & elections aWashington, D.C.cCampaigns & electionsd1980- aBimestriel10aCampaigns and elections00aCampaigns & elections aCampagnes électoralesyEtats-UnisxPériodiques aElectionsyEtats-UnisxPériodiques 3aFRbCCN0197-07714 uhttp://www.campaignline.com/ zContenu : sommaire du dernier numéro1 bvol. 2 no. 1 (pri-1981) -vol. 18 no. 10 (1998)cParisdMagasins/AnnexeeP 4° 4650 aGEO RC2 Etats-Unis aDEW 324.6-901111nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000031001552100048001863260016002344300069002505300031003196070035003507120026003858010021004118300061004328560058004938560036005519550083005879570084006709920019007549920012007730000013421000001342120130319051146.01 a0008-3755 aFNSP134888 a0000013421 a19900101a19209999 ba0 aeng aCA aahu 10aCanadian historical review aTorontocUniversity of Toronto Pressd1920- aTrimestriel 1aReview of historical publications relating to Canada (0381-8055)00aCanadian historical review aCanadaxHistoirexPériodiques02aUniversity of Toronto 3aFRbCCN0008-3755 aCollection donnée au CTLes jusqu'au vol.81, n°4, 2000.4 uhttp://www.utpjournals.com/jour.ihtml?lp=CHR/CHR.html zContenu : sommaires depuis 19961 bvol. 82 no. 1 (2001) -vol. 83 no. 4 (2002)cParisdMagasins/AnnexeeP 8° 00831 rIndex des articles et des livres analysés 1950/1964 ; 1971/1990

 aGEO RC1 Canada aDEW 97101232nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004000154210007900194326002400273326002600297430005300323510004400376517004400420607002600464712005000490801002100540856009000561856010800651955008600759991001800845992001900863992001200882038684535000001350320130319051146.01 a0008-3968 aFNSP135139 a0000013503 a19900101a19679999 ba0 amul aCA aaia 10aCanadian journal of African studies aOttawa, Ont. [etc.]cCanadian Association of African Studies [etc.]d1967- a3 nos par anb1969- aSemestrielb1967-1968 1aBulletin of African studies in Canadax0525-137010aJournal canadien des études africaines10aRevue canadienne des études africaines aAfriquexPériodiques02aAssociation canadienne des études africaines 3aFRbCCN0008-39684 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00083968.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1967) -vol. 28 no. 3 (1994)cParisdMagasins/AnnexeeP 8° 3057 aexempb201001 aGEO RE Afrique aDEW 96001431nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210004800188326001600236437006800252517003500320607004800355607006100403801002100464856010100485856010800586856009000694856010800784955009000892972000900982991001800991992002901009992001901038992001201057038684691000001351120131127153521.01 a0008-4085 aFNSP135159 a0000013511 a19900101a19689999 ba0 amul aCA aaha 10aCanadian journal of economics aTorontocUniversity of Toronto Pressd1968- aTrimestriel 1aCanadian journal of economics and political science,x0315-489010aRevue canadienne d'économique aCanadaxPolitique économiquexPériodiques aAmérique du NordxConditions économiquesxPériodiques 3aFRbCCN0008-40854 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=104164 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00084085.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (fev-1968) -vol. 45 no. 4 (nov-2012)cParisdMagasins/AnnexeeP 8° 2730 aZPAY aexempb201105 aGEO RC Amérique du Nord aGEO RC1 Canada aDEW 33001422cas0 2200385 450 00100100000000200110001000500170002101100140003803500170005203500150006910000410008410100080012510200070013310600060014011000160014620000560016221000520021832600160027043000510028644600460033744600540038351000570043760700480049460700610054271000480060380100300065180200070068185600900068885601080077895500700088699100200095699200290097699200190100599200120102403728228X000108370820130319051146.01 a0315-4890 accn0315-4890 a0001083708 a19750925b19351967 frey0103 ba0 amul aCA ar aah 10aCanadian journal of economics and political science aTorontocUniversity of Toronto Pressd1935-1967 aTrimestriel 1tContributions to Canadian economicsx0383-6258 1tCanadian journal of economics,x0008-4085 1tCanadian journal of political science,x0008-423910aRevue canadienne d'économie et de science politique aCanadaxPolitique économiquexPériodiques aAmérique du NordxConditions économiquesxPériodiques02aCanadian Political Science Association4070 3aFRbAbesc20070417gAFNOR a044 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03154890.html4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 (1935) -vol. 33 (1967)cParisdMagasins/AnnexeeP 8° 0045 aPériobTP01 P8 aGEO RC Amérique du Nord aGEO RC1 Canada aDEW 33001786nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008300154210006000237210005800297326001600355437006700371510004200438606003600480606004400516710004800560711004800608801002100656856005200677856004900729856009000778856010800868856010300976856010801079955012701187972000901314991001801323992001901341992001601360038684888000001375120130319051146.01 a0008-4239 aFNSP136169 a0000013751 a19900101a19689999 ba0 amul aCA aaha 10aCanadian journal of political scienced= Revue canadienne de science politique aWaterloo, Ont.cWilfrid Laurier University Pressd1977- aToronto, Ont.cUniversity of Toronto Pressd1968-1976 aTrimestriel 1aCanadian journal of economics and political sciencex0315-489010aRevue canadienne de science politique aScience politiquexPériodiques aScience politiqueyCanadaxPériodiques02aSociété québécoise de science politique02aAssociation canadienne de science politique 3aFRbCCN0008-42394 uhttp://info.wlu.ca/wwwpress/jrls/cjps/cjps.html zContenu : sommaires et résumés depuis 19934 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03154890.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=113040 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1968) -....cParisdMagasins/AnnexeeP 8° 0045wManquant : vol. 22, no. 1, 1989 et vol. 23, no. 4, 1990 aZCAD aexempb201112 aGEO RC1 Canada aDEW 320-32101335nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210005500188326001600243517003600259606003700295606002900332801002100361856012800382856010800510856009000618856010800708955009000816972000900906991001800915992002100933992001900954992001200973039412563000001342420130319051146.01 a0318-6431 aFNSP134912 a0000013424 a19900101b19752007 ba0 amul aCA aaha 10aCanadian journal of sociology aEdmontoncCanadian journal of sociologyd1975-2007 aTrimestriel10aCahiers canadiens de sociologie aSociologieyCanadaxPériodiques aSociologiexPériodiques 3aFRbCCN0318-64314 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=7S8&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03186431.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 7 no. 4 (aut-1982) -vol. 32 no. 4 (hiv-2007)cParisdMagasins/AnnexeeP 8° 4625 aZCAD aexempb201003 aGEO RQ Universel aGEO RC1 Canada aDEW 30101056nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005000154210005200204326001600256510002600272606004500298607005200343801002100395856009000416856010800506955007000614972000900684991001800693992001900711992001200730039411168000001349620130319051146.01 a0317-0861 aFNSP135122 a0000013496 a19900101a19759999 ba0 amul aCA aaha 10aCanadian public policydAnalyse de politiques aToronto, ONcUniversity of Toronto Pressd1975- aTrimestriel10aAnalyse de politiques aPolitique publiqueyCanadaxPériodiques aCanadaxPolitique et gouvernementxPériodiques 3aFRbCCN0317-08614 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03170861.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 1 (hiv-1979) -....cParisdMagasins/AnnexeeP 8° 4166 aZGRA aexempb201104 aGEO RC1 Canada aDEW 97101324nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101001300123102000700136110001600143200005000159210005200209326001600261440007800277517005400355606002900409606003200438710005800470801002100528856012800549856010800677955009000785957007200875972000900947991001800956992001200974038685108000001358420130319051146.01 a0008-4948 aFNSP135490 a0000013584 a19900101b19642007 ba0 aengafre aCA aaha 10aCanadian review of sociology and anthropology aTorontocUniversity of Toronto Pressd1964-2007 aTrimestriel 1tCanadian review of sociology = revue canadienne de sociologie,x1755-617110aRevue canadienne de sociologie et d'anthropologie aSociologiexPériodiques aAnthropologiexPériodiques02aSociété canadienne de sociologie et d'anthropologie 3aFRbCCN0008-49484 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=CRS&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (fev-1964) -vol. 44 no. 4 (nov-2007)cParisdMagasins/AnnexeeP 8° 21001 bvol. 1 (1964) -vol. 10 (1973)cParisdMagasins/AnnexeeP Index 0251 aZPAY aexempb201105 aDEW 30101550nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210002300174326001800197430006600215517002200281606003600303606003700339606004800376710004500424801002100469856012800490856010800618856012800726856010800854955010300962957007001065972000901135991001801144992001401162039405753000001386420130319051147.01 a0309-8168 aFNSP136894 a0000013864 a19900101a19779999 ba0 aeng aGB aaiu 10aCapital & class aLondoncCSEd1977- a3 n°s par an 1aBulletin of the Conference of Socialist Economistsx0305-824710aCapital and class aEconomie marxistexPériodiques aEconomie politiquexPériodiques aCapitalismexAnalyse marxistexPériodiques02aConference of Socialist Economistsc(GB) 3aFRbCCN0309-81684 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=CAC&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=CAC&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (pri-1977) -....cParisdMagasins/AnnexeeP 8° 4560wManquant : no. 7, 1979 et no. 13, 19811 bno. 1 (1977) -no. 60 (1996)cParisdMagasins/AnnexeeP Index 0782 aZCAD aexempb201003 aDEW 330.100987nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210003100180326001200211606005200223607005000275830005700325856002600382856004300408955006900451955008700520972000900607992002100616992002200637992001400659039958280000004266720130319051147.01 a1162-6704 aFNSP224887 a0000042667 a19900101a19919999 ba0 afre aFR aafa 00aCapital (Paris, 1991) aPariscPrisma Pressd1991- aMensuel aHistoire économiquez20e sièclexPériodiques aFrancexConditions économiquesxPériodiques ano. 1 (oct-1991) -.... : collection donnée au CTLes4 uhttp://www.capital.fr zContenu : sommaire du dernier numéro.1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 60481 bConservation limitée aux 5 dernières annéescParisdMagasins/AnnexeeP 4° 6048 aZPAY aGEO RQ Universel aGEO RA4.06 France aDEW 330.901218nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210003600188326001600224517000800240606007200248606004700320856010300367856010800470856010900578856010800687955007000795972000900865991001800874992001200892040264793000019547020130319051147.01 a1045-5752 aFNSP718134 a0000195470 a19900101a19889999 ba0 aeng aUS aaha 10aCapitalism, nature, socialism aNew YorkcGuilford Pressd1988- aTrimestriel10aCNS aDéveloppement économiquexAspect de l'environnementxPériodiques aPolitique de l'environnementxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=110601 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713395259db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 6 no. 1 (mar-1995) -....cParisdMagasins/AnnexeeP 8° 6261 aZCAD aexempb201301 aDEW 33300775nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000068001502100048002182300024002663260015002906060036003058010013003418560035003548560069003899550005004589920012004639920022004750000980403000098040320130319051148.0 a0000980403 a a20019999k fre 01 ba0 afre aCH ar aaj z  adr 10aCarnets de bord en sciences humainesb[Ressource électronique] aGenèvecAssociation Carnets de bordd2001- aRevue électronique aSemestriel aSciences humainesxPériodiques 0aFRbFNSP4 uhttp://www.carnets-de-bord.ch/ zContenu : sommaires et texte intégral depuis le n°1, juin 20011 r aDEW 300 aGEO RA5.14 Suisse01400nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005400154210007900208326001800287606002400305606003800329710005700367801002100424856004700445856009100492856012800583856010800711955008600819957011900905972000901024991001701033992001201050038685833000001394320130319051149.01 a0008-7254 aFNSP137308 a0000013943 a19900101a19689999 ba0 aeng aUS aaiu 10aCase Western Reserve journal of international law aCleveland (Ohio)cCase Western reserve journal of international lawd1968- a3 n°s par an aDroitxPériodiques aDroit internationalxPériodiques02aCase Western Reserve School of Law (Cleveland, Ohio) 3aFRbCCN0008-72544 uhttp://law.case.edu/journals/jil/Home.aspx zContenu : texte intégral depuis le vol.31, n°1, 1998-1999 sauf pour les derniers n°4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=CWJ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (aut-1968) -vol. 41 no. 3 (2009)cParisdMagasins/AnnexeeP 8° 28071 bvol. 1 (1968) -vol. 10 (1978)cParisdMagasins/Annexezcet index se trouve dans le vol. 10 no. 3, 1978 de la revue aZCAD aexempb20105 aDEW 34101182cas0 2200409 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200003600197210003900233326001600272421003800288517002400326530002300350606003600373676000800409710003800417801003000455801002300485802000700508856003000515856004900545955006600594955006700660972000900727992002500736992001100761040459438000120998720130319051149.0 a1268-0478 accn1268-0478 aissn12680478 a0001209987 a19960207a19959999m y0frey50 ba0 afre aFR ay 0  ar aaha 0uu 10aCassandreel'art principe actif aPariscParoles de théâtred1995- aTrimestriel 0tCassandre. Hors-sériex1760-926710aCassandre Horschamp10aCassandreb(Paris) aArts du spectaclexPériodiques a79002aParoles de théâtrecFrance4340 3aFRbAbesc20110208gAFNOR 3aFRbISSNc20090225 a074 uhttp://www.horschamp.org/4 zContenu : sommaires en ligne depuis le n° 11 bLes 3 dernières annéescParisd27, salle 5e étageeDEW 7901 bno. 72 (hiv., 2008)-.... ; Paris, Magasins/Annexe : P 4° 7299 aZPAY aGEO RA4.06 France 01 aDEW 7901158nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210004400175326002200219606005500241606003600296710003900332801002100371856005500392856003600447856012800483856010800611955007000719972000900789991001800798992001600816039334988000001772320130319051150.01 a0273-3072 aFNSP148286 a0000017723 a19900101a19819999 ba0 aeng aUS aaia 14aThe Cato journal aWashington, D.C.cCato Instituted1981- aTrois fois par an aTechniques de décision en politiquexPériodiques aScience politiquexPériodiques02aCato Institutec(Washington, D.C.) 3aFRbCCN0273-30724 uhttp://www.cato.org/pubs/journal/cato_journal.html zAccès libre au texte intégral4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=CAO&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (pri-1981) -....cParisdMagasins/AnnexeeP 8° 4651 aZSAB aexempb201003 aDEW 320-32101119cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200006000180207001800240210005700258326001500315530003300330606004400363606003700407676000800444710002800452801003000480801002300510802000700533856002700540856006200567955006700629992003300696992001600729115427007000115490420130611121225.01 a1957-2166 aissn19572166 a0001154904 a20070614a20079999k y0frey0103 ba0 afre aFR ay  ar aaja uu 10aCause communeerevue citoyenne d'actualité réfléchie 1aN°1 (2007) - aParisaMeauxcLes Éd. du CerfcCause communed2007- aSemestriel10aCause communeb(Paris. 2007) aIdées politiquesyFrancexPériodiques aVie intellectuellexPériodiques a00102aCause communec(France) 3aFRbAbesc20080527gAFNOR 3aFRbISSNc20080526 a074 uhttp://www.causeco.fr/ zContient : sommaires et éditoriaux depuis le no. 1, 20071 bno. 1 (2007) -no. 3 (2008)cParisdMagasins/AnnexeeP 8° 7060 aGEO RS sans aspect régional aDEW 320-32100888nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210002500174326001600199606006400215606002900279710006100308856004400369856006800413955010600481972000900587992001400596040385906000018244020130515165840.01 a1262-1218 aFNSP679018 a0000182440 a19900101a19959999 ba0 afre aFR aaga 10aCauses communes aPariscCIMADEd1995- aTrimestriel aAide économiquexCoopération internationalexPériodiques aRéfugiésxPériodiques02aComité inter-mouvements auprès des évacuésc(France) 4uhttp://www.lacimade.org/causes_communes zContenu : sommaires depuis no. 1, 1995 et sélection d'articles1 bno. 1 (mar-1995) -no.67 (jan-2011)cParisdMagasins/AnnexeeP 4° 6584wManquant : nos 64 à 66, 2009 aZPAY aDEW 338.901240nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001200154210002900166326001900195326002800214430004400242517002600286606003400312606004800346606003700394856019200431856010800623955006900731955008000800992002200880992001200902059693738000017998520130319051151.01 a1623-4480 aFNSP671503 a0000179985 a19900101a19969999 ba0 afre aFR aaca 00aCB news aBoulognecCB newsd1996- aMensuelb2011- aHebdomadaireb1996-2011 1aCommunication & ... CB news,x0988-285110aCB news communication aMédiasyFrancexPériodiques aEntreprises de presseyFrancexPériodiques aPublicitéyFrancexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 73021 bno. 418 (jan-1996) -no. 1078 (mai-2011)cParisdMagasins/AnnexeeP F° 0524 aGEO RA4.06 France aDEW 65901081nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000300013921001250016932600110029444000310030553000290033660600420036571200550040783000390046285601620050195500550066397200090071899100180072799200220074599200120076700105919X000006239320131025170320.01 a0767-6964 aFNSP285521 a19900101a19852011 ba0 afre aFR aaka 10aCélébrations nationales aPariscMinistère de la culture, Direction des archives de France, Délégation aux célébrations nationalesd1985-2011 aAnnuel 1tCommémorations nationales10aCélébrations‎bParis aCommémorationsyFrancexPériodiques01aFrancebDélégation aux célébrations nationales aSudoc à jour : 25 avril 2007 (dm)4 uhttp://www.archivesdefrance.culture.gouv.fr/action-culturelle/celebrations-nationales/recueil-2011/zAccès libre au texte intégral des recueils depuis 19991 b(1986) -(2011)cParisdMagasins/AnnexeeP 8° 5805 aZGRA aexempb201112 aGEO RA4.06 France aDEW 00101460nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008800154210011600242326001500358430005500373440010900428606004100537606006400578607002600642710006300668801002100731856003000752856014700782955007300929972000901002992003001011992002301041992002001064992001401084001060694000001383120130319051151.01 a0764-9878 aFNSP136672 a0000013831 a19900101b19852005 ba0 afre aFR aaju 10aCEMOTI. Cahiers d'études sur la Méditerranée orientale et le monde turco-iranien aPariscAssociation française pour l'étude de la Méditerranée orientale et du monde turco-iraniend1985-2005 aSemestriel 1aEquipe de recherche sur la TurquiexISSN 0767-2365 1tAnatoli : de l'Anatolie à la Caspienne : territoires, politique, sociétésxISSN 0764-9878xP 8° 7156 aGéopolitiqueyTurquiexPériodiques aGéopolitiqueyMéditerranée (région ; est)xPériodiques aBalkansxPériodiques02aCentre d'études et de recherches internationalesc(Paris) 3aFRbCCN0764-98784 uhttp://cemoti.revues.org/ zContenu : sommaires et résumés depuis le n°1, quelques articles en texte intégral pour certains n°s ; texte intégral du n° 19 au n° 261 bno. 1 (1985) -no. 40 (déc-2005)cParisdMagasins/AnnexeeP 4° 5162 aZGRA aGEO RA8 Europe du Sud-Est aGEO RA6.06 Turquie aGEO RG4.02 Iran aDEW 956.101087nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210002800179326001600207607003200223710004800255801002100303856005700324856006600381856010900447856010800556955007000664972000900734991001800743992001200761039315312000001386820140108125050.01 a0263-4937 aFNSP136922 a0000013868 a19900101a19829999 ba0 aeng aGB aaha 10aCentral Asian survey aOxfordcPergamond1982- aTrimestriel aAsie centralexPériodiques02aSociety for Central Asian Studies (Londres) 3aFRbCCN0263-49374 uhttp://www.tandf.co.uk/journals/carfax/02634937.html zContenu : sommaires depuis le volume 15, numéro 1, mars 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713409859db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jul-1982) -....cParisdMagasins/AnnexeeP 8° 4646 aZSAB aexempb201003 aDEW 95801452nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000248001642100023004123260011004354520055004465100061005015300050005626060051006127100067006638010013007308560228007439550055009719720009010269920051010359920016010869920012011020000417610000041761020130918115945.01 a1994-9189 a0000417610 a a20019999k f fre ba0 amul aFR a 0  ar aak z 0 10aCentral government debt‎iStatistical yearbook‎‎fOrganisation for Economic Co-operation and Development‎d= Dette de l'administration centrale‎iAnnuaire statistique‎fOrganisation de coopération et de développement économiques aPariscOCDEd2001- aAnnuel 1ttSourceOECD. Central government debt‎x1684-000310aDette de l'administration centrale. Annuaire statistique10aCentral government debt. Statistical yearbook aDettes publiquesyPays de l'OCDExPériodiques aOrganisation de coopération et de développement économiques 0aFRbFNSP uhttps://acces-distant.sciences-po.fr/fork?http://titania.sourceocde.org/vl=3932884/cl=32/nw=1/rpsv/outlook_annuals.htmzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(2000) -(2007)cParisdMagasins/AnnexeeP 4° 7164 aZPAY aGEO RN1 Pays industrialisés, pays occidentaux aDEW 310-319 aDEW 33601053nas 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000126001502070010002762100072002863260011003586060050003696070048004197100049004678010013005168560047005298560066005769550058006429720009007009920018007099920012007270000818756000081875620130319051152.0 a0000818756 a a20019999 fre 01 ba0 afre aFR a 0  ar aak z 0 10aCentre d'histoire de l'Europe du vingtième siècle - Brochure d'informationfFondation nationale des sciences politiques 1a2001- aPariscCentre d'histoire de l'Europe du vingtième siècle :d2001- aAnnuel aHistoire universellexRecherchexPériodiques aEuropexEtude et enseignementxPériodiques02aCentre d'histoire de Sciences Po‎c(Paris) 0aFRbFNSP4 uhttp://www.chevs.sciences-po.fr/index.html zContenu : présentation des activités du centre de recherche1 b(2001/2002) -....cParisdMagasins/AnnexeeP 8° 6818 aZGRA aGEO RA Europe aDEW 94000878nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000060001502100059002102300024002693260033002935170029003265170060003556060040004157100040004558010013004958300007005088560085005150000464370000046437020130319051153.0 a0000464370 a a19849999k fre 01 ba0 aeng aGB az abu z  adr 10aCEPR discussion papersb[Ressource électronique]fCEPR aLondoncCentre for economic policy researchd1984-.... aDonnées textuelles aCollection de working papers10aDiscussion papers - CEPR10aDiscussion papers - Centre for economic policy research aPolitique économiquexPériodiques02aCentre for Economic Policy Research 0aFRbFNSP aBH4 uhttp://www.cepr.org/pubs/new-dps/dp_papers.htmzAccès libre au texte intégral.00851nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000056001502100059002062300024002653260033002895170025003225170049003476060040003967100040004368010013004768300007004898560077004960000464369000046436920130319051153.0 a0000464369 a a19999999k fre 01 ba0 aeng aGB az abu z  adr 10aCEPR policy papersb[Ressource électronique]fCEPR aLondoncCentre for economic policy researchd1999-.... aDonnées textuelles aCollection de working papers10aPolicy papers - CEPR10aPolicy papers - Centre for economic research aPolitique économiquexPériodiques02aCentre for Economic Policy Research 0aFRbFNSP aBH4 uhttp://www.cepr.org/pubs/PolicyPapers/zAccès libre au texte intégral.00900nls 2200289 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000055001502100031002052300024002363000074002603260015003346060023003496060026003726760010003987120101004088010013005098300007005228560081005290000412116000041211620130319051153.0 a0000412116 a a19749999k fre 01 ba0 amul aFR az aby z  adr 10aCEPREMAP working papersb[Ressource électronique] aPariscCEPREMAPd1974-.... aDonnées textuelles aTexte en anglais ou en français. Résumé en anglais et en français aCollection aEconomie politique aPolitique économique a330.102aCentre d'études prospectives d'économie mathématique appliquées à la planificationc(Paris) 0aFRbFNSP adm4 uhttp://www.cepremap.ens.fr/version/docume/zAccès libre au texte intégral.01123nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001500154210007900169326001200248430009400260517001500354606004900369606005800418710007100476830003500547856005100582856003600633955008200669972000900751992002500760992001200785039683850000005401120130319051153.01 a0758-1858 aFNSP255350 a0000054011 a19900101a19839999 ba0 afre aFR aafa 10aCEREQ Bref aPariscCentre d'études et de recherches sur les qualificationsd1983-2010 aMensuel 1aNote d'information - Centre d'études et de recherches sur les qualifications,x0291-806410aBref CEREQ aTravailxAspect socialyFrancexPériodiques aQualifications professionnellesyFrancexPériodiques02aCentre d'études et de recherches sur les qualificationsc(France) atraitement différent du Sudoc4 uhttp://www.cereq.fr/index.php/collections/Bref zAccès libre au texte intégral1 bno. 1 (mar/avr-1983) - no. 259 (dec-2008)cParisdMagasins/AnnexeeP 4° 3573 aZGRA aGEO RA4.06 France 01 aDEW 33101165nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000052001502070012002022100023002142300024002373260016002613300226002776060044005036060044005476060044005917100063006358010013006988560107007119920021008189920012008390001221928000122192820130319051153.0 a0001221928 a a20089999k fre 01 ba0 aeng aFR ar aau z  adr 10aCERI Strategy Papersb[Ressource électronique] 1a2008/1- aPariscCERId2008- aRevue électronique aIrrégulier aLes CERI Strategy Papers sont issus des séminaires stratégiques, réunions organisées avec le soutien du Commissariat à l'Energie Atomique et portant sur les questions de sécurité, défense et politique étrangère. aSécurité internationalexPériodiques aRelations internationalesxPériodiques aArt et science militairesxPériodiques02aCentre d'études et de recherches internationalesc(Paris) 0aFRbFNSP4 uhttp://www.sciencespo.fr/ceri/fr/papier/strategyzAccès libre au texte intégral depuis le n°1, 2008 aGEO RQ universel aDEW 35501397nls0 2200289 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109110001600127135001800143200004100161210006200202230002400264326001100288330052500299606005200824710006800876711007300944801003001017856003701047992001201084992001101096150015283000120610520130319051153.0 a0001206105 a2011 a20119999k y0frey50 ba0 afre aFR ay 0  aaka a 0  adr 10aCeriscopeb[Ressource électronique] aPariscCERI, Atelier de cartographie de Sciences Pod2011 aRevue électronique aAnnuel aLe Ceriscope est une publication scientifique en ligne du Centre d’études et de recherches internationales (CERI) réalisée en partenariat avec l’Atelier de cartographie de Sciences Po. Parution dynamique centrée sur un enjeu international, elle sera consacrée chaque année à un sujet différent. L’édition 2011 traite de la question des frontières.Réalisation collective, le Ceriscope offre une analyse qui s’appuie sur de multiples supports : textes, cartes, graphiques, photographies, diaporamas, etc aRelations internationalesxPériodiques2rameau02aCentre d'études et de recherches internationalesc(Paris)407002aInstitut d'études politiquesc(Paris)bAtelier de cartographie4070 3aFRbAbesc20110211gAFNOR4 uhttp://ceriscope.sciences-po.fr/ aDEW 327 aGEO RS01067nas0 2200289 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000600013921000550019930100430025432600160029760700690031360700710038271000640045371100530051780100300057085600860060095500700068697200090075699200120076507513019X000093052220130319051153.01 a1612-0663 a0000930522 a20031124a20039999k y frey0103 ba0 aeng aDE aaha 10aCESifo Dice reportfIfo Institute for economic research aMunichcIfo Institute for economic researchd2003- aDemande de numérotation issn en cours aTrimestriel aPays de l'Union européennexPolitique économiquexPériodiques aPays de l'Union européennexConditions économiquesxPériodiques02aIFO-Institut für Wirtschaftsforschungc(Munich, Allemagne)02aCenter for Economic Studiesc(Munich, Allemagne) 3aFRbAbesc20031124gAFNOR4 uhttp://www.cesifo-group.de/portal/page/portal/ifoHome/b-publ/b2journal/40publdice1 bvol. 1 no. 1 (pri-2003) -....cParisdMagasins/AnnexeeP 4° 7092 aZSAB aDEW 33001083nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000028001642070025001922100055002173260016002724300028002886060037003167100064003538010013004178560128004308560108005589550082006669720009007489920012007570000603138000060313820130319051153.01 a1610-241X a0000603138 a a20039999 fre 01 ba0 aeng aDE a 0  ar aah z 0 10aCesifo economic studies 1aVol.49, n°1 (2003)- aMunichcIfo Institute for economic researchd2003- aTrimestriel 1tIfo-Studien,x0018-9731 aEconomie politiquexPériodiques02aIFO-Institut für Wirtschaftsforschungc(Munich, Allemagne) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=RDV&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 49 no. 3 (2003) -vol. 52 no 1 (2006)cParisdMagasins/AnnexeeP 8° 2407 aZSAB aDEW 33001297nas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125105001800133106000600151110001600157200006700173210004900240326001600289517005800305517006300363606003600426606005300462606005300515710007700568801003000645801002300675856005700698856006800755955006900823972000900892992001600901992001800917139025952000117938920130319051153.01 a1992-3147 aissn19923147 a0001179389 a20091207a20069999 0frey0103 ba0 aeng ay  ar aah 10aCEU political science journalfDepartment of political science aBudapestcCentral European Universityd2006- aTrimestriel10aCentral European University political science journal10aCEU political science journal. The Graduate student review aScience politiquexPériodiques aScience politiqueyEurope de l'EstxPériodiques aScience politiqueyEurope centralexPériodiques02aCentral European UniversitybDepartment of political sciencec(Budapest) 3aFRbAbesc20091207gAFNOR 3aFRbISSNc200806014 uhttp://www.personal.ceu.hu/PolSciJournal/issues.html zContient les n°s en texte intégral depuis le no. 1 (jan-2006)1 bvol. 1 no 5 (dec-2006) -....cParisdMagasins/AnnexeeP 8° 7110 aZSAB aDEW 320-321 aGEO RA Europe00890nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000180015421000230017232600120019543000380020760600290024560700250027471000560029980100210035585600340037685600570041095500630046797200090053099200250053999200120056403957170X000001466820130319051153.01 a0395-5621 aFNSP140395 a0000014668 a19900101a19769999 ba0 afre aFR aafa 10aCFDT magazine aPariscCFDTd1976- aMensuel 1aSyndicalisme magazine,x0397-9512 aActualitéxPériodiques aFrancexPériodiques02aConfédération française démocratique du travail 3aFRbCCN0111/20234 uhttp://www.cfdt.fr/dexmag.htm zContenu : sommaires depuis le numéro 246, mars 19991 bno. 1 (dec-1976) -....cParisdMagasins/AnnexeeP 4° 3588 aZPAY aGEO RA4.06 France 01 aDEW 05001626nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005800139210004900197210008500246210008200331326001500413530003900428607005400467801002100521830005300542856011600595856020600711856024000917955006701157972000901224991001801233992002301251992001401274039657906000000410020131003151027.01 a0577-5132 aFNSP104809 a19900101a19549999 ba0 aeng aUS aagu 10aChallenge magazine:ethe Magazine of Economic Affairs aWhite Plains, N.Y.‎cM.E. Sharpe‎d1977- aWhite Plains, N.Y.‎cIASP, International Arts and Sciences Press‎d1973-1976 aNew York‎cInstitute of Economic Affairs, New York University‎d1952-1967 aBimestriel10aChallenge magazinebNew York, N.Y. aEtats-UnisxConditions économiquesxPériodiques 3aFRbCCN0577-5132 a1973-2010 : collection envoyée au CTles en 20134 uhttp://www.mesharpe.com/journals.aspzContenu : sommaires depuis le volume 44, numéro 1, janvier-février 20014 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=106043zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=CLG&site=bsi-livezContenu : accès au texte intégral via Business Source premier depuis 1964 à l'exception des six derniers mois1 bvol. 16 no. 3 (1973) -....cParisdMagasins/AnnexeeP 4° 3451 aZPAY aexempb201307 aGEO RC2 Etats-Unis aDEW 330.901006cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200002500162210003900187326001100226606004400237606003700281676000800318801003000326801002300356802000700379856004100386856008400427955007300511955006300584972000900647992001200656090062345000102126620130319051156.01 a1771-8627 aissn17718627 a0001021266 a20050222a20049999k y1frey0103 ba0 afre aFR ar aajy uu 10aChantiers politiques aPariscChantiers politiquesd2004- aAnnuel aRelations internationalesxPériodiques aVie intellectuellexPériodiques a001 3aFRbAbesc20060110gAFNOR 3aFRbISSNc20050901 a074 uhttp://www.chantiers-politiques.com/ zContenu : sommaires depuis le n° 1, Juin 2004 ; n°s 2 et 3 en texte intégral1 bLes 3 dernières annéescParisd27, Salle Rez-de-chausséeeDEW 0011 bno. 1 (avr-2004) -....cParisdMagasins/AnnexeeP 8° 6912 aZPAY aDEW 00101324cas0 2200409 450 001001000000002001100010005001700021011001400038035002100052035001700073100004100090101000800131102000700139105001800146106000600164110001600170200010600186207002700292210003200319326001600351530001200367606005500379606004300434676000800477702003100485702002800516801003000544801002300574802000700597856008600604856004800690955006800738955006200806972000900868992001200877992002500889160812909000124297720130416120001.0 a2258-7616 a(OCoLC)793599659 aissn22587616 a20120504a20129999m y0frey50 ba0 afre aFR aa 0  ar aahab 0uu 10aCharlese[revue littéraire]/f[directeurs de la publication Frédéric Houdaille & Alexandre Chabert] 0aN° 1 (printemps 2012) aPariscÉd. La Tengod2012- aTrimestriel00aCharles aPolitique-fiction françaisexPériodiques2rameau aSatire politiquexPériodiques2rameau a070 1aHoudaillebFrédéric4651 1aChabertbAlexandre4651 3aFRbAbesc20130412gAFNOR 3aFRbISSNc20120315 a074 uhttp://www.la-tengo.com/index.php?post/2013/03/18/Nouveaut%C3%A9-Charles-n%C2%B054 zContenu : sommaire des n°s depuis le n°1.1 bL'année en courscParisd27 Rez-de-chauséeeP 8° 7205 27 RDC1 bno. 1 (pri-2012)-....cParisdMagasins/AnnexeeP 8° 7205 aZPAY aDEW 324 aGEO RA4.06 France 0100983nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200002500160207001500185210003000200326001700230606004600247606002900293607002500322856005400347856010200401955006900503955006300572992002200635992001200657040037002000007124820130319051156.01 a1240-0068 aFNSP326721 a0000071248 a19900101a19929999 ba0 afre aFR ar aaca 00aCharlie hebdo (1992) 1aN.1(1992)- aPariscKalachnikofd1992- aHebdomadaire aSatire politique françaisexPériodiques aActualitéxPériodiques aFrancexPériodiques4 uhttp://www.multimania.com/hebdo/charlie/hebdo.htm zContenu : sélection d'articles en texte intégral du 19 nov. 1997 au 17 mars 1999 + caricatures.1 bL'année en courscParisd27, Salle Rez-de-chausséeeP F° 05141 bno. 1 (jul-1992) -....cParisdMagasins/AnnexeeP F° 0514 aGEO RA4.06 France aDEW 05000854nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004100163210005700204326001500261606003800276712003800314801001300352856003900365856007500404955006400479972000900543992001200552058346805000048865320140110125210.01 a1529-0816 a0000488653 a a20009999k fre ba0 aeng aUS a 0  ar aaj z 0 10aChicago journal of international law aChicago, ILcUniversity of Chicago Law Schoold2000- aSemestriel aDroit internationalxPériodiques02aUniversity of ChicagobLaw School 0aFRbFNSP4 uhttp://cjil.uchicago.edu/contents/ zsommaires et résumés des articles depuis le vol.1, n°1, Spring 20001 bvol.1 no.1 (2000) -....cParisdMagasins/AnnexeeP 8° 6658 aZSAB aDEW 34101266cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101001300142102000700155105001800162106000600180110001600186200001800202210004900220326001600269421003400285421004600319440003900365517002800404607002400432710005200456801003000508801002300538801003000561802000700591856007800598856007600676955008300752992002100835992001200856039468216000114945320130319051158.01 a0341-6631 accn0341-6631 aissn03416631 a0001149453 a19840421b19722008k y0frey0103 ba0 ageraeng aDE ay  ar aazu uu 10aChina aktuell aHamburgcInstitut für Asienkunded1972-2008 aTrimestriel 0tChina monthly datax0943-7533 0tChina aktuell. Data supplementx1867-8904 1tJournal of current chinese affairs10aChina aktuell (Hamburg) aChinexPériodiques02aInstitut für Asienkundec(Hambourg, Allemagne) 3aFRbAbesc20090703gAFNOR 3aFRbISSNc20090602 3aFRbAbesc20080410gAFNOR a064 uhttp://www.giga-hamburg.de/index.php?file=z_cha.html&folder=publikationen zContenu : sommaires depuis 2006, beaucoup d'articles en texte intégral1 bvol. 36 no. 1 (2007) -vol. 37 no. 4 (2008)cParisdMagasins/AnnexeeP 8° 7043 aGEO RI3.01 Chine aDEW 95101177nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210007600176326001800252430003300270607002400303710005500327856004700382856008200429856010800511856010800619955007000727972000900797992004500806992001200851040030008000002590320130319051159.01 a0920-203X aFNSP169096 a0000025903 a19910227a19869999 ba0 aeng aNL aaja 10aChina information aLeidencDocumentation and Research Centre for Contemporary Chinad1986- a3 n°s par an 1aChina informatie (0577-8832) aChinexPériodiques02aDocumentatiecentrum voor het Huidige China (Leyde)4 uhttp://www.chinainformation.leidenuniv.nl/ zContenu : sommaires depuis (1995) vol.10:n°1. - Abstracts du dernier numéro4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 4 no. 1 (ete-1989) -....cParisdMagasins/AnnexeeP 4° 5977 aZSAB aGEO RI3.03 Chine (République populaire) aDEW 95101378nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004900139210004700188326001500235430005400250452006000304530004500364607002400409607002500433710004200458856009000500856010800590856012800698856010800826955006400934972000900998992002101007992001201028036678341000017015420140108125326.01 a1324-9347 aFNSP643725 a19900101a19959999 ba0 aeng aAU aaja 14aThe China journalfContemporary China Centre aCanberracContemporary China Centred1995- aSemestriel 1aAustralian journal of Chinese affairs,x0156-7365 1tThe China journal (Canberra, A.C.T. Online),x1835-8535 aChina journal‎bCanberra, A.C.T. Print aChinexPériodiques aTaiwanxPériodiques02aContemporary China Centrec(Canberra)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/13249347.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=poh&jid=U7C&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 34 (jul-1995) -....cParisdMagasins/AnnexeeP 8° 5105 aZSAB aGEO RI3.01 Chine aDEW 95101366cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200002300180210007100203300013300274326001600407451005000423607004600473712007600519712007100595801003000666801002300696801003000719802000700749856005000756856007000806955005900876992004500935992001200980131275755000116274020130319051159.01 a2070-3449 aissn19964617 a0001162740 a20090218a19959999m y0frey0103 ba0 aeng aHK ay 0  ar aaha 0 10aChina perspectives aHong KongcFrench Centre for Research on Contemporary Chinad1995- aLa numérotation en couverture est celle de l'année en cours; la numérotation en continuité figure en deuxième de couverture aTrimestriel 1tPerspectives chinoises (Hong Kong)x1021-9013 aChinexCivilisationxPériodiques2rameau02aCentre d'études français sur la Chine contemporainec(Hong-Kong)434002aCentre d'études français sur la Chine contemporainec(Hong-Kong) 3aFRbAbesc20091201gAFNOR 3aFRbISSNc20080601 3aFRbAbesc20090218gAFNOR a224 uhttp://www.cefc.com.hk/perspectives.php?cat=2 zSommaires depuis le n°1, 1995 et index des auteurs et des sujets1 bno. 1 (2007) -....cParisdMagasins/AnnexeeP 4° 7242 aGEO RI3.03 Chine (République populaire) aDEW 95101132nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210004900174326001600223530003500239607002400274676000800298710005400306801002100360856009200381856010800473955006600581955006300647972000900710991001800719992004500737992001200782039394654000000410220130319051159.01 a0305-7410 aFNSP104811 a0000004102 a19900101a19609999 ba0 aeng aGB aahu 10aChina quarterly aCambridgecCambridge University Pressd1960- aTrimestriel 0aChina quarterlybLondon. Print aChinexPériodiques a95002aSchool of Oriental and African Studiesc(Londres) 3aFRbCCN0305-74104 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03057410.html?& zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9501 bno. 1 (jan-1960) -....cParisdMagasins/AnnexeeP 8° 1790 aZPAY aexempb201103 aGEO RI3.03 Chine (République populaire) aDEW 95101316nas 2200361 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000500015421000670020430000320027132600320030353000290033560700410036460700410040560700240044671000620047080100210053285600700055385601080062395501190073197200090085099100180085999200450087799200200092299200120094203868814X000006433520130403162413.01 a0009-4455 aFNSP295101 a0000064335 a19900101a19649999 ba0 aeng aIN aaha 10aChina reportea journal of east asian studies aNew DelhicCentre for the Study of Developing Societiesd1964- aArrive avec un an de retard aBimestriel puis Trimestriel10aChina report (New Delhi) aChinexRelationsyIndexPériodiques aIndexRelationsyChinexPériodiques aChinexPériodiques02aCentre for the Study of Developing Societiesc(New Delhi) 3aFRbCCN0009-44554 uhttps://acces-distant.sciences-po.fr/fork?http://chr.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 4 (1969) -vol. 22 no. 4 (1986) ; vol. 30 no. 1 (jan/mar-1994) -....cParisdMagasins/AnnexeeP 8° 3008 aZSAB aexempb201106 aGEO RI3.03 Chine (République populaire) aGEO RI1.13 Inde aDEW 95101146cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035002000069035001500089100004100104101000800145102000700153105001800160106000600178110001600184200001900200207003100219210005200250452003900302510002100341607004400362710004900406801003000455801002300485802000700508856003300515856009000548955008900638992001200727992001200739992002100751112769144000115365920130319051201.01 a1935-5564 aissn19355564 a(OCoLC)78900000 a0001153659 a20070222a20059999k y0frey50 ba0 aeng aUS ay 0  ar aaha 0uu 10aChina security 0aIssue no. 1 (Autumn 2005)- aWashington, DCcWorld Security Instituted2005- 1tChina security (Online)x1935-580710aZhongquo an quan aChinexDéfense nationalexPériodiques02aWorld Security Institutec(Washington, D.C.) 3aFRbAbesc20080514gAFNOR 3aFRbISSNc20070222 a014 uhttp://www.chinasecurity.us/ zContient le sommaire et le texte intégral des n°s depuis le vol. 1 no. 1 (aut-2005)1 bvol. 1 no. 1 (hiv-2005) -vol. 4 no. 4 (aut-2008)cParisdMagasins/AnnexeeP 8° 7053 aDEW 355 aDEW 951 aGEO RI3.01 Chine01228nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210003200174326001500206430004000221607004700261856010100308856010800409856012800517856010800645955007500753972000900828991001800837992004500855992001400900036163988000027308620130319051202.01 a1097-1475 aFNSP942068 a0000273086 a19990520a19979999 ba0 aeng aUS aaga 10aChinese economy aArmonk, N.Y.cSharped1997- aBimestriel 1aChinese economic studiesx0009-4552 aChinexPolitique économiquexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=110901 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=8CR&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 30 no. 1 (jan/fev-1997) -....cParisdMagasins/AnnexeeP 8° 2935 aZPAY aewempb201004 aGEO RI3.03 Chine (République populaire) aDEW 338.901264cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200007900174207002400253210004500277320005800322326002300380326002900403326002600432530005900458606003800517710005100555801003000606801002300636802000700659856004200666856006400708955007000772972000900842992001200851992001500863076801683000103501220130319051202.01 a1540-1650 aissn15401650 a0001035012 a20000630a20029999k y0frey0103 ba0 aeng aGB a 0  aaia 0uu 10aChinese journal of international lawfChinese society of international law 0aVol.1, no 1 (2002)- aBoulder, COcWorld Academy Pressdc2002- aPublié ensuite à Oxford par Oxford University Press aTrimestrielb2010- a3 n°s par anb2006-2009 aSemestrielb2002-200510aChinese journal of international lawb(Boulder, Colo.) aDroit internationalxPériodiques02aChinese Society of International Lawc(Pékin) 3aFRbAbesc20060710gAFNOR 3aFRbISSNc20000630 a024 uhttp://chinesejil.oxfordjournals.org/ zContient le sommaire des n°s depuis le vol.1, n°1 de 20021 bvol. 4 no. 1 (jun-2005) -....cParisdMagasins/AnnexeeP 8° 6916 aZSAB aDEW 341 aGEO R13.0101776cas0 2200445 450 001001000000002001100010005001700021011001400038035001700052035001700069035002500086035001500111100004100126101000800167102000700175106000600182110001600188200002800204207025700232210002900489215001000518308004900528326001500577421009900592421004100691430004500732440004800777517003700825530003700862531002600899606003500925710006100960801003001021801002301051801002901074802000701103856014501110955005501255991002001310038590522000108416020130319051204.0 a1153-9402 accn1153-9402 aissn11539402 aFRBNF327413920000003 a0001084160 a19910321b19091971uuuy1frey0103 ba0 afre aFR ar aafu uu 13aLe Christianisme social 0a22e année, n°1 (1909, 15 janv.)-27e année, n°6 (1914, juin)an.s., [1re année] (1920)-10e année (1929)an.s., 1re année (1930)-11e année, n°1 (1940, janv./mars)an.s., 54e année, n°1 (1946, janv./mars)-80e année, n°11/12 (1971, nov./déc.) aParisc[s.n.]d1909-1971 d17 cm aParution suspendue de mars 1940 à mars 1946 aBimestriel |tBulletin de l'Association protestante pour l'étude pratique des questions socialesx1153-9437 |tL'Avant-garde (Marseille)x1153-9461 1tRevue du christianisme socialx1154-0486 1tParole et société (Strasbourg)x0223-568413aLa Revue du christianisme social13aLe Christianisme socialb(Paris) 0aChrist. soc.b(Paris) aReligionxPériodiques2rameau02aMouvement français du christianisme socialcFrance4070 3aFRbAbesc20060630gAFNOR 3aFRbISSNc20030523 3aFRbBnFc20060327gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb327413927/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1909-1938)1 b(1897) -(1971)cParisdMagasins/AnnexeeP 8° 0163 aPériobTP01 P801436nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200010300154210006000257326001200317430007300329517004600402530005700448601004000505606003800545606004000583606003600623710004600659856006600705856013200771955010900903972000901012991002001021992002101041992001201062039718336000001395020130319051204.01 a0761-9359 aFNSP137329 a0000013950 a19901002a19849999 ba0 afre aFR aafa 13aLa Chroniqueele mensuel d'Amnesty international FrancefAmnesty international, Section française aPariscAmnesty international, Section françaised1984- aMensuel 1aChronique d'informations internationales (Ed. française),x0339-987713aChronique d'Amnesty international (Paris)10aChroniquebAmnesty International. Section française02aAmnesty internationalxPériodiques aViolence policièrexPériodiques aRépression politiquexPériodiques aDroits de l'hommexPériodiques02aAmnesty internationalbSection française4 uhttp://www.amnesty.fr/search/apachesolr_search/la%20chronique zContenu : sommaire du dernier numéro, sélection d'articles en texte intégral. Rapports et diverses informations depuis 1996.1 bno. 95 (jan-1984) -no. 128 (oct-1986) ; n. s. no. 1 (nov-1986) -....cParisdMagasins/AnnexeeP 4° 4261 aZCAD aPériobTP07 P4 aGEO RQ Universel aDEW 32301259cas0 2200373 450 00100100000000200110001000500170002101100140003803500170005203500210006903500150009010000410010510100080014610200070015410500180016111000160017920000440019521000550023932600110029443000740030553000560037960600360043560600370047171000290050880100300053780100230056780200070059085600520059785600700064995501100071999100180082999200210084799200170086812344697X000121626320130319051204.0 a1994-0955 aissn19940955 a(OCoLC)473629874 a0001216263 a20080423a19979999uuuy0frey50 ba0 afre aZZ ay  aaku uu 10aChronique des élections parlementaires aLe Grand-SaconnexcUnion interparlementaired1997- aAnnuel 1tChronique des élections et de l'évolution parlementairesx0256-540410aChronique des élections parlementairesb(Imprimé) aElectionsxPériodiques2rameau aParlementsxPériodiques2rameau02aUnion interparlementaire 3aFRbAbesc20101025gAFNOR 3aFRbISSNc20090617 a004 uhttp://www.ipu.org/french/perdcls.htm#Chronicle zContenu : texte intégral du rapport à partir de l'édition 20071 bVol. 30 (1995/1996) -vol. 31 (1997) ; vol. 33 (1999) ; vol 40, (2006)cParisdMagasins/AnnexeeP 8° 3117 aexempb201201 aGEO RQ Universel aDEW 324. 6-900895nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210003200193326001500225430005300240710008900293856009100382856006700473955006400540972000900604992001600613040579212000023848020140114094641.01 a1285-087X aFNSP842028 a0000238480 a19900101a19979999 ba0 afre aFR aaga 10aChronique internationale de l'IRES aNoisy-le-GrandcIRESd1997- aBimestriel 1aChronique internationale (Paris)xISSN 1145-140802aInstitut de recherches économiques et socialesc(Noisy-le-Grand, Seine-Saint-Denis)4 uhttp://www.ires-fr.org/files/publications/chronique%20internationale/chroniqueires.htm zContient : texte intégral des articles depuis le no. 48, 19971 bno. 48 (sep-1997) -....cParisdMagasins/AnnexeeP 4° 5975 aZPAY aDEW 360-36301052nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116200005000123210003500173326001600208430004300224452003200267530002600299532004500325601003200370710004900402830005300451856009900504955010600603972000900709991001800718992001400736040207145000019690420131003160817.01 a1025-8523 aFNSP722484 a19900101a19909999 f 0 afre aUS10aChronique ONUfOrganisation des Nations Unies aNew YorkcNations Uniesd1990- aTrimestriel 1aChronique des Nations Uniesx1013-5235 1tChronique ONU (1990.Online)10aChronique ONUb(1990)10aChronique Organisation des Nations Unies02aNations UniesxPériodiques02aNations UniesbDépartement de l'information a1990-2011 : collection envoyée au CTles en 20134 uhttp://www.un.org/french/pubs/chronique/zContenu : sélection d'articles publiés depuis 19991 bvol. 27 no. 1 (1990) -vol. 48 no 3 (2011)cParisdMagasins/AnnexeeP 4° 3630wManquant : no. 2, 1990 aZGRA aexempb201307 aDEW 341.201150nls 2200253 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281350018001342000075001522100048002273300358002755170042006336060049006758010013007248300010007378560070007478560079008170000769580000076958020130319051204.0 a0000769580 a d20009999k fre 01 0 aeng aUS ay z y  az adr 10aCIAOb[Ressource électronique]eColumbia International Affairs Online aNew YorkcColumbia University Pressd2000?- aAccès à des documents en texte intégral (working papers, actes de colloques, ouvrages, articles de revues, documents institutionnels, études de cas) sur les questions internationales. Mise à jour mensuelle. Possibilité de s'abonner à une liste de diffusion et d'interroger la base à distance pour les abonnés à la bibliothèque de Sciences Po.10aColumbia International Affairs Online aRelations internationalesxBases de données 0aFRbFNSP amf/dm4 uhttps://acces-distant.sciences-po.fr/fork?http://www.ciaonet.org/4 zConsultation : uniquement à partir des postes publics de la Bibliothèque01221nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210006500178326001500243430008800258606004500346606005700391607002600448710006100474801002100535856005300556856012600609955007400735972000900809992002800818992002500846992001200871039379493000001396020130319051204.01 a0304-2685 aFNSP137364 a0000013960 a19900101a19739999 ba0 apor aBR aaju 10aCiência e trópico aRecifecInstituto Joaquim Nabuco de pesquisas sociaisd1973- aSemestriel 1aBoletim do Instituto Joaquim Nabuco de pesquisas sociais (0100-1159) < P 8° 2392 > aSciences socialesyBrésilxPériodiques aSciences socialesyRégions tropicalesxPériodiques aBrésilxPériodiques02aInstituto Joaquim Nabuco de pesquisas sociaisc(Brésil) 3aFRbCCN0304-26854 uhttp://www.fundaj.gov.br/docs/publi/ema-rct.html zAccès aux sommaires depuis le volume 5, n°1, janvier-juin 1977 ; résumés depuis le volume 27, n°1, janvier-juin 19991 bvol. 1 no. 1 (jan/jun-1973) -....cParisdMagasins/AnnexeeP 8° 2392 aZGRA aGEO RD Amérique latine aGEO RD4.11 Argentine aDEW 98001222nas 2200337 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200002500148210012200173326001500295530002500310606003700335606004800372606004200420606005300462712007900515801001300594856008800607856008000695955005900775972000900834992001600843992002500859044817819000038851720130604171534.01 a1316-371X a a19979999k fre ba0 aspa aVE a 0  ar aaj z 0 10aCiencias de gobierno aMaracaibocInstituto Zuliano de Estudios Políticos. Económicos y Sociales y Gobernación del Estado Zulia‎d1996- aSemestriel10aCiencias de gobierno aPolitique publiquexPériodiques aPolitique publiqueyVenezuelaxPériodiques aAdministration publiquexPériodiques aAdministration publiqueyVenezuelaxPériodiques02aInstituto zuliano de estudios politicos, economicos y sociales (Maracaibo) 0aFRbFNSP4 uhttp://www2.scielo.org.ve/scielo.php/script_sci_serial/pid_1316-371x/lng_en/nrm_iso zContenu : accès au texte intégral du vol 9, nos 17 et 18, 2005 via Scielo1 bno. 1 (1997) -....cParisdMagasins/AnnexeeP 4° 6880 aZSAB aDEW 350-354 aGEO RD4.20 Venezuela00923nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004200154210004100196326001600237530001900253607002400272712007100296712004100367856008500408955006800493972000900561991001800570992002100588992001200609039977625000006944820130319051205.01 a1164-5857 aFNSP321375 a0000069448 a19900101a19929999 ba0 afre aFR aaua 10aCipangoecahiers d'études japonaises aPariscPublications Langues'Od1992- aIrrégulier 0aCipangobParis aJaponxPériodiques02aInstitut national des langues et civilisations orientalesc(Paris)02aCentre d'études japonaisesc(Paris)4 uhttp://www.inalco.fr/ina_gabarit_rubrique.php3?pub=1&id_rubrique=1882&cat_rub=611 bno. 1 (1992) -no. 11 (2004)cParisdMagasins/AnnexeeP 8° 5860 aZPAY aexempb201112 aGEO RI3.22 Japon aDEW 95201089cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200004000197210003400237326001200271447003900283447003600322517004100358530002800399710003200427801003000459801002300489802000700512856014500519955005500664991002000719038591537000111285820130319051205.0 a1154-0044 accn1154-0044 aissn11540044 a0001112858 a19911211b18961898uuuy1frey0103 ba0 afre aFR ay  ar aafu uu 10aCirculairehSérie AfMusée social aPariscA. Rousseaud1896-1898 aMensuel 1tMusée social. Série Bx1154-0052 1tMusée social (1899)x1154-006010aCirculaire - Musée social. Série A10aMusée social. Série A02aMusée socialc(Paris)4070 3aFRbAbesc20071002gAFNOR 3aFRbISSNc20030523 a074 uhttp://gallica.bnf.fr/ark:/12148/cb344379817/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1896-1898)1 b(1896) -(1898)cParisdMagasins/AnnexeeP 4° 0629 aPériobTP02 P401072cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157110001600175200004100191210003400232326001200266447003900278447003600317517004100353530002800394712003200422801003000454801002300484802000700507856014500514955005500659991002000714038591545000111285920130319051205.0 a1154-0052 accn1154-0052 aissn11540052 a0001112859 a19911211b18961898uuuy1frey0103 ba0 afre aFR ay  aafu uu 10aCirculairehSérie BfMusée social. aPariscA. Rousseaud1896-1898 aMensuel 1tMusée social. Série Ax1154-0044 1tMusée social (1899)x1154-006010aCirculaire - Musée social. Série B10aMusée social. Série B02aMusée socialc(Paris)4340 3aFRbAbesc20071002gAFNOR 3aFRbISSNc20030523 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34437983x/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1896-1898)1 b(1896) -(1898)cParisdMagasins/AnnexeeP 4° 0630 aPériobTP02 P400970nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001000154210003000164326001600194530002300210606003600233606004200269801002100311856003100332856004000363955013000403957011000533972000900643992001600652036515124000001396520130319051205.01 a0756-3205 aFNSP137371 a0000013965 a19900101b19822007 ba0 afre aFR aayu 00aCité aPariscCitéd1982-[2007] aIrrégulier00aCitébParis. 1982 aScience politiquexPériodiques aParticipation politiquexPériodiques 3aFRbCCN0756-32054 uhttp://www.revuecite.fr.st zContenu : sommaires depuis le n° 11 bno. 2 (1982) ; no.3 (1983) ; no. 13 (1986) - no. 26 (1992) ; no. 27 (1996) -no. 48 (2007)cParisdMagasins/AnnexeeP 4° 52661 bno. 1 (1982) -no. 26 (1992)cParisdMagasins/Annexezcet index se trouve dans le no. 27, 1996 de la revue aZCAD aDEW 320-32101066nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004500163207001700208210002200225326001600247530002600263606003000289606003600319676000800355801001300363856008500376856010800461955007300569955006300642972000900705992001400714048881759000030707820130319051205.01 a1299-5495 a0000307078 a a20009999k fre ba0 afre aFR a 0  ar aah z 0 10aCitésePhilosophie, politique, histoire 1aNo 1 (2000)- aPariscPUFd2000- aTrimestriel10aCitésb(Paris. 2000) aPhilosophiexPériodiques aSciences socialesxPériodiques a001 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-cites.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle Rez-de-chausséeeDEW 0011 bno. 1 (jan-2000) -....cParisdMagasins/AnnexeeP 8° 6521 aZPAY aDEW 10-1401263nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210002800178326002500206326002600231326002900257326002700286326002900313530003100342606004200373606003600415856005700451856006500508856011100573856010800684955006600792972000900858991001800867992001600885036751375000023325420130319051206.01 a1362-1025 aFNSP826733 a0000233254 a19900101a19979999 ba0 aeng aGB aaga 10aCitizenship studies aAbingdoncCarfaxd1997- a8 n°s par anb2011- aBimestrielb2008-2010 a5 n°s par anb2005-2007 aTrimestrielb2002-2004 a3 n°s par anb1997-2001 0aCitizenship studiesbPrint aParticipation politiquexPériodiques aDroits de l'hommexPériodiques4 uhttp://www.tandf.co.uk/journals/carfax/13621025.html zContenu : sommaires depuis le volume 1, no. 1, février 19974 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/openurl?genre=journal&issn=1362-1025 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1997) -....cParisdMagasins/AnnexeeP 8° 6368 aZSAB aexempb201301 aDEW 320-321008653as 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000029001552100028001843260011002126060064002237100052002878560042003398560067003819550055004489720009005039920031005129920016005439920016005590000113681000011368120130319051207.0 a0267-095X aFNSP477748 a0000113681 a19900101b19712005 ba0 aeng aGB aaka 10aCivil service statistics aLondoncHMSOd1971-2005 aAnnuel aFonctionnairesyGrande-BretagnexStatistiquesxPériodiques02aGrande-BretagnebGovernment Statistical Service zContenu : texte intégral du rapport.4 uhttp://www.civilservice.gov.uk/management/statistics/index.asp1 b(1971) -(2002)cParisdMagasins/AnnexeeP 4° 3986 aZPAY aGEO RA4.02 Grande-Bretagne aDEW 350-354 aDEW 310-31901231nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001500154210002400169300002500193326001600218606003200234606004400266856010900310856010800419856012800527856010800655955011500763972000900878991001800887992001200905036839094000026526520131007112030.01 a1369-8249 aFNSP920363 a0000265265 a19990201a19989999 ba0 aeng aGB aaha 10aCivil wars aIlfordcCassd1998- aN'a pas paru en 2004 aTrimestriel aGuerre civilexPériodiques aRelations internationalesxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713634578db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=poh&jid=IXN&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1998) -vol. 11 no. 1 (2009) ; vol. 15 no. 2 (jun-2013) -....cParisdMagasins/AnnexeeP 8° 6455 aZSAB aexempb201212 aDEW 32700772nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210003600177326001400213607005200227801002100279856003700300856004000337955007400377972000900451992002200460992001200482038689626000001501020130319051208.01 a0009-8167 aFNSP141197 a0000015010 a19900101a18509999 ba0 aita aIT aadu 10aCiviltà cattolica aRomacCiviltà cattolicad1850- aBimensuel aItaliexPolitique et gouvernementxPériodiques 3aFRbCCN0009-81674 uhttp://www.laciviltacattolica.it zContenu : informations sur la revue1 bvol. 99 no. 2342 (jan-1948) -....cParisdMagasins/AnnexeeP 8° 0165 aZSAB aGEO RA6.03 Italie aDEW 94501368nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210005900185326001200244517002000256606003700276606004400313856004300357856017600400856005400576856012000630955013600750957011200886972000900998992002301007992001201030036306347000016329220140115163450.01 a1130-3689 aFNSP625934 a0000163292 a19900101a19909999 ba0 aspa aES aafa 10aClaves de razón pràctica aMadridcProgresa, Promotera General de Revistasd1990- aMensuel10aClaves (Madrid) aVie intellectuellexPériodiques aRelations internationalesxPériodiques4 uhttp://claves.progresa.es/Sumarios.php zContenu : sommaires ; index auteurs ; depuis le numéro 1, 1990 jusqu'au numéro 126, 2002 ; accès au texte intégral depuis le n°82, mai 1998 jusqu'au numéro 126, 20024 uhttp://www.ucm.es/BUCM/compludoc/S/S/11303689.htm zContenu : sommaires depuis le numéro 20, 1992 sur le site de la Biblioteca de la Universidad Complutense de Madrid1 bno. 48 (déc-1994) -no. 72 (mai-1997) ; no. 135 (sep-2003) -....cParisdMagasins/AnnexeeP 4° 6485wManque : no. 136 et 138, 20031 bno. 1 (1990) -no. 180 (2008)cParisdMagasins/annexeeP Index 0773zIndex des auteurs, thèmes et sommaires aZPAY aGEO RA6.02 Espagne aDEW 00101371nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200018400154210010200338210003000440326001500470517004900485517003000534606003900564606004000603710013000643801002100773856005600794856008400850955005800934972000900992991001801001992001401019038114070000001515720130319051209.01 a0758-2412 aFNSP141566 a0000015157 a19900101a19839999 ba0 afre aFR aaja 10aCLESeCahiers lillois d'économie et de sociologiefUnité d'enseignement et de recherche de sciences économiques et sociales de Université des sciences et technologies de Lille aVilleneuve d'AscqcU.E.R. de Sciences économiques et sociales, Université de Lille Id1983-1997 aPariscL'Harmattand1998- aSemestriel10aCahiers lillois d'économie et de sociologie10aClés (Villeneuve-d'Ascq) aSociologie politiquexPériodiques aPolitique économiquexPériodiques02aUniversité des sciences et technologies de LillebUnité d'enseignement et de recherche de sciences économiques et sociales 3aFRbCCN0758-24124 uhttp://www.univ-lille1.fr/clerse/Sitecles/index.htm zContenu : accès aux sommaires et résumés des articles depuis le n° 31, 19981 bno 1 (1983) -....cParisdMagasins/AnnexeeP 8° 4659 aZPAY aexempb201003 aDEW 338.901092nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210005400195326001500249530001900264606003500283606002500318856002800343856011700371856008400488856010800572955005900680972000900739991001800748992001200766003695468000017240220131025132627.01 a1252-7017 aFNSP651564 a0000172402 a19900101a19959999 ba0 afre aFR aaja 00aClioehistoire, femmes et sociétés aToulousecPresses universitaires du Miraild1995- aSemestriel10aCliobToulouse aFemmesxHistoirexPériodiques aFemmesxPériodiques4 uhttp://clio.revues.org/ zContenu : sommaires et résumés depuis le n°1, 1995 et sélection d'articles en texte intégral, index auteurs4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-clio.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1995) -....cParisdMagasins/AnnexeeP 8° 6187 aZPAY aexempb201212 aDEW 30101298nls 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000041001502100079001912300005002703000151002753260016004263300131004423360056005733370027006294520025006566060036006817100116007178010013008338560048008468560047008949550005009419920014009460000505658000050565820130319051210.0 a0000505658 a a19959999k fre 01 ba0 afre aFR ar aay z  adr 10aCNRS Infob[Ressource électronique] aPariscCNRS, Délegation à l'information scientifique et techniqued1995- a aCommuniqués en texte intégral au format html de janv. 1995 au n°397, octobre-novembre 2001 ; puis au format pdf depuis le n°381, février 2000 airrégulier aLe département SHS (sciences de l'homme et de la société) correspond plus particulièrement aux thématiques de Sciences Po aDonnées textuelles uniquement accessibles en ligne aFichiers HTML puis PDF 1tCNRS Infox0750-7550 aRechercheyFrancexPériodiques02aCentre national de la recherche scientifiquec(France)bDélégation à l'information scientifique et technique 0aFRbFNSP4 uhttp://www.cnrs.fr/Cnrspresse/cnrsinfo.html4 uhttp://www.cnrs.fr/cw/fr/pres/infopres.htm1 r aDEW 001.401198nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002100163210003000184326002300214326002900237606003200266606004400298801001300342856010100355856010800456856010900564856010800673955007000781972000900851992001200860064130568000041495120130319051211.01 a1468-2745 a0000414951 a a20009999k fre ba0 aeng aGB a 0  ar aah z 0 10aCold war history aIlfordcFrank Cassd2000- aTrimestrielb2005- a3 n°s par anb2000-2004 aGuerre froidexPériodiques aRelations internationalesxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=108494 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713634851db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (aou-2000) -....cParisdMagasins/AnnexeeP 8° 6587 aZCAD aDEW 32701673nas 2200349 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001391100016001452000119001612070070002802100072003503000236004223050088006586060031007466060046007777020042008237120040008658300057009058560145009629550077011079570096011849720009012809920012012899920022013010000105724000010572420130422115852.0 a1762-4096 aFNSP449462 a0000105724 a19900101b18241949 ba0 afre aFR ar aafa 10aCollection complète des lois, décrets, ordonnances, réglements, avis du Conseil d'Etat ...fpar J. B. Duvergier 1aT. 1 (1824)-t. 108 (1908) ; Nouv. sér., t. 9 (1909)-t. 49 (1949) aPariscGuyot et Scribe,c[puis] L. Larose,c[puis] Sireyd1824-1949 aReprend les lois depuis 1788 ; les vol. 2 à 16, numérotés "ans 2 à 14" correspondent à 1794/1805 .-1ère éd. : vol. 1 à 24 couvrant les années 1788 à 1824, publiée en 1824, et continuée par un vol. annuel de 1825 à 1949 aAbsorbe en 1919 le fascicule annexe intitulé : "Législation de la guerre de 1914" aLoisyFrancexPériodiques aDroityFrancexLégislationxPériodiques 1aDuvergierbJean-Baptistef(1792-1877)02aFrancebConseil d'Etatc(1799-....) aces index se trouvaient dans la Salle de référence4 uhttp://gallica.bnf.fr/ark:/12148/cb375780597/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1811-1938)1 b(1788)-(1949)cParisdMagasins/AnnexeeP 8°0379wManquants : 1938, 19411 b1788-1830 (en 2 vols), 1831-1889 (en 4 vols), 1890-1899cParisdMagasins/AnnexeeP Index 88 aZGRA aDEW 348 aGEO RA4.06 France01441cas0 2200325 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119105001800126106000600144110001600150200008700166210002900253301004200282440005800324517009500382530008700477607006000564607005600624676000800680710004100688801003000729856032700759945001401086991001501100048881945000114128420130319051211.0 accn7208/586X a0001141284 a20000320b18301834k a0frey0103 ba0 afre aDZ ay  ar acu 10aCollection des actes du gouvernement depuis l'occupation jusqu'au 1er octobre 1834 aAlgerc[s.n.]d1830-1834 aDEMANDE DE NUMEROTATION ISSN EN COURS 1tBulletin officiel des actes du gouvernement. Algérie10aCollection des actes du gouvernement depuis l'occupation d'Alger jusqu'au 1er octobre 183400aCollection des actes du gouvernement depuis l'occupation jusqu'au 1er octobre 1834 aAlgériexPolitique et gouvernementz1830-1962xSources aAlgériez1830-1871 (Conquête française)xSources a96501aFrancebMinistère de la guerre4070 3aFRbAbesc20050729gAFNOR4 uhttp://books.google.fr/books?id=C2gPAAAAQAAJ&pg=PP9&dq=%22Collection+des+actes+du+gouvernement+depuis+l'occupation+jusqu'au+1er+octobre+1834%22&hl=fr&ei=XsKzTs6zMsGE8gPn_7DwBA&sa=X&oi=book_result&ct=result&resnum=1&ved=0CDAQ6AEwAA#v=onepage&q&f=falsezAccès libre au texte intégral. Document numérisé sur Google Livres b8*005.736 aPériobTZ01101nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123110001600141200009700157210004600254326001100300606006200311606004300373676000800416710006000424801001300484856007600497856005600573955005300629972000900682991001800691992002200709992001600731992001600747040402126000000427220140110154450.01 a1263-0322 aFNSP105243 a19900209a19909999k a fre ba0 afre aFR a z 0  aak 0 14aLes collectivités locales en chiffresfDirection générale des collectivité locales, DGCL aPariscLa Documentation françaised1990- aAnnuel aAdministration localeyFrancexStatistiquesxPériodiques aFinances localesyFrancexPériodiques a35102aFrancebDirection générale des collectivités locales 0aFRbFNSP4 uhttp://www.collectivites-locales.gouv.fr/collectivites-locales-chiffres4 zAccés au texte intégral en format pdf depuis 20011 b(1989) -....cParisdMagasins/AnnexeeP 8° 5764 aZGRA aexempb201202 aGEO RA4.06 France aDEW 350-354 aDEW 310-31900928nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000078001502100043002282300024002713260005002956060048003006060051003488010013003998560072004128560108004849550005005929920016005979920025006130000977511000097751120130319051212.0 a0000977511 a a20049999k fre 01 ba0 afre aFR ar aaz z  adr 10aCollectivités territoriales intercommunalitéb[Ressource électronique] aPariscLexisNexis Jurisclasseurc2004- aRevue électronique a aAdministration localeyFrancexPériodiques aAdministration communaleyFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aDEW 350-354 aGEO RA4.06 France 0101030nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000025001552100040001803260015002204300056002356060042002916060047003336070046003808560051004268560041004779550167005189720009006859920022006949920012007160000014932000001493220130319051212.01 a1124-1365 aFNSP141030 a0000014932 a19901016b19849999 ba0 aita aIT aaha 00aCollegamenti, Wobbly aMilanocCollegamenti, Wobblyd1984- aSemestriel 1aCollegamenti per l'organizzazione diretta di classe aExtrême gaucheyItaliexPériodiques aMouvement libertaireyItaliexPériodiques aItaliexConditions socialesxPériodiques4 uhttp://www.mercatiesplosivi.com/CW/default.htm zSommaires depuis le n° 1, mars 19771 bno. 13 (pri-1984) -no. 33 (1994) ; n.s. no. 1 (1995) -no. 10/11 (2000/2001) ; n.s. no. 1 (jan/jun-2002) -no. 13 (jan/jun-2008)cParisdMagasins/AnnexeeP 4° 5751 aZPAY aGEO RA6.03 Italie aDEW 94501108nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200009700163210003700260326001600297510003800313530002400351601004400375601003600419606003800455710004200493801001300535856002900548856010600577955006400683972000900747992001400756058475540000053982120130319051212.01 a1371-0346 a0000539821 a a19959999k fre ba0 amul aBE a 0  ar aah z 0 10aCollegiumeNews of College of Europed= Nouvelles du Collège de l'EuropefCollège d'Europe aBruggecCollege of Europed1995- aTrimestriel10aNouvelles du Collège de l'Europe10aCollegiumb(Brugge)02aCommunautés européennesxPériodiques02aUnion européennexPériodiques aDroit internationalxPériodiques02aCollège d'Europec(Bruges, Belgique) 0aFRbFNSP4 uhttp://www.coleurope.eu/4 zcontenu : sommaire des numéros depuis le n° 9, 1998, puis texte intégral à partir du n° 21, 20011 bno. 23 (mar-2002) -....cParisdMagasins/AnnexeeP 8° 6705 aZGRA aDEW 341.201004nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004200154210002700196326002200223430004200245606005000287606003800337710006800375801002100443856003600464856008500500955006600585972000900651991001800660992001200678038690918000001540420140110125516.01 a0010-1931 aFNSP142077 a0000015404 a19900101a19649999 ba0 aeng aUS aaia 10aColumbia journal of transnational law aNew YorkcCJTLAd1964- aTrois fois par an 1aInternational law bulletinx0734-3272 aDroit international économiquexPériodiques aDroit internationalxPériodiques02aColumbia Journal of Transnational Law Associationc(Etats-Unis) 3aFRbCCN0010-19314 uhttp://www.columbia.edu/cu/jtl/ zContenu : accès aux sommaires et résumés depuis le volume 42, numéro 1, 20041 bvol. 6 no. 1 (1967) -....cParisdMagasins/AnnexeeP 8° 2627 aZCAD aexempb201103 aDEW 34101004nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004300154210006000197326001600257440004100273606003000314710006500344801002100409856010000430856009000530955009000620992001600710036350052000001447420130319051213.01 a0022-5428 aFNSP139708 a0000014474 a19900101b19651996 ba0 aeng aUS aahu 14aThe Columbia journal of world business aNew YorkcColumbia journal of world businessd1965-1996 aTrimestriel 1aJournal of world businessx1090-9516 aEntreprisesxPériodiques02aColumbia Universityc(New York)bGraduate School of Business 3aFRbCCN0022-54284 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/00225428 zContenu : accès aux sommaires et aux résumés du volume 28, 1993 au volume 31, 19961 bvol. 1 no. 1 (aut-1965) -vol. 31 no. 4 (hiv-1996)cParisdMagasins/annexeeP 4° 2178 aDEW 650-65801058nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210002500185326001500210517000800225606003800233606003000271710006700301801002100368856004400389856009200433856003300525856008200558955007100640972000900711992001200720038690926000001447620130319051213.01 a0010-194X aFNSP139715 a0000014476 a19900101a19629999 ba0 aeng aUS aagu 10aColumbia journalism review aNew YorkcCJRd1962- aBimestriel10aCJR aMédiasyEtats-UnisxPériodiques aJournalismexPériodiques02aColumbia Universityc(New York)bGraduate School of Journalism 3aFRbCCN0010-194X4 uhttp://backissues.cjrarchives.org/year/ zContenu : accès libre au texte intégral de july august 1991 à november december 20014 uhttp://www.cjr.org/magazine/ zContenu : accès libre au texte intégral depuis le numéro de Jan./Feb. 20061 bvol. 9 no. 4 (1970/1971) -....cParisdMagasins/AnnexeeP 4° 3104 aZCAD aDEW 07001328nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006000154210004100214326001200255606003600267710003600303801002100339856009000360856010800450856012800558856010800686955014600794972000900940991001800949992002300967992001200990038690942000001447720130319051213.01 a0010-1958 aFNSP139719 a0000014477 a19900101a19019999 ba0 aeng aUS aafu 10aColumbia law reviewfColumbia University, School of Law aNew YorkcColumbia law reviewd1901- aMensuel aDroityEtats-UnisxPériodiques02aColumbia Universityc(New York) 3aFRbCCN0010-19584 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00101958.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=CAV&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 25 no. 1 (jan-1925) -vol. 28 no. 8 (dec-1928) ; vol. 63 no. 1 (jan-1963) -vol. 107 no. 8 (dec- 2007)cParisdMagasins/AnnexeeP 8° 1988 aZPAY aexempb201002 aGEO RC2 Etats-Unis aDEW 34901072nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002200139210005600161326001200217451006100229530004500290607004700335607005100382710005100433856005800484856011300542955007000655972000900725992002000734992001600754039134172000007208320131217115508.01 a0185-0601 aFNSP330662 a19900101a19519999 ba0 aspa aMX aafa 10aComercio exterior aMéxicocBanco nacional de comercio exteriord1951- aMensuel 1aComercio exterior de México (Ed. française)x0185-065212aComercio exteriorbEd. español. Impresa aMexiquexCommerce extérieurxPériodiques aMexiquexConditions économiquesxPériodiques02aBanco nacional de comercio exteriorc(Mexique)4 uhttp://revistas.bancomext.gob.mx/rce/sp/index_rev.jsp zContient sommaires, résumés et sélection d'articles en texte intégral depuis vol. 50, n°1, janvier 20001 bvol. 33 no. 1(jan-1983) -....cParisdMagasins/AnnexeeP 4° 1536 aZGRA aGEO RD1 Mexique aDEW 380-38201271cas0 2200325 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109106000600127110001600133200015600149207001000305210014100315301004300456326001800499430003800517606004200555712006000597801003000657856010400687856005900791955005200850972000900902992002200911992001200933157941213000122493120130319051214.0 a0001224931 a20120125a20119999k z0frey50 ba0 afre aFR ay 0  ar aakaz 0 a010aCommémorations nationales/fMinistère de la culture, Direction générale des patrimoines, Archives de France, Mission aux Commémorations nationales 1a2012- aPariscMinistère de la culture, Direction générale des patrimoines, Archives de France, Mission aux Commémorations nationalesd2011- aDemande de numérotation ISSN en cours aAnnuelb2012- 1tCélébrations (Paris)x0767-6964 aCommémorationsyFrancexPériodiques01aFrancebDélégation aux célébrations nationales4340 3aFRbAbesc20120126gAFNOR4 uhttp://www.archivesdefrance.culture.gouv.fr/action-culturelle/celebrations-nationales/recueil-2012/4 zContenu : texte intégral du dernier recueil en ligne.1 b(2011)-....cParisdMagasins/AnnexeeP 8° 5805 aZGRA aGEO RA4.06 France aDEW 00100891nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210002700181326001600208606003700224607004500261676000800306801002100314856003100335856006500366955006700431955001500498972000900513992002200522992001200544992000900556039284158000000415520130319051215.01 a0180-8214 aFNSP104984 a0000004155 a19900101a19789999 ba0 afre aFR aahu 10aCommentaire (Julliard) aPariscJulliardd1978- aTrimestriel aVie intellectuellexPériodiques aFrancexVie intellectuellexPériodiques a001 3aFRbCCN0180-82144 uhttp://www.commentaire.fr/ zContenu : sommaires depuis le volume 1, n°1, printemps 19781 bno. 1 (1978) -....cParisd27, Salle Rez-de-chausséeeDEW 0011 bP 8° 4030 aZCAD aGEO RA4.06 France aDEW 001 aPBUL01068nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210004800180326001200228430004300240606002400283606003600307710003000343801002100373856003900394856007400433955007100507955011600578972000900694992002300703992001600726038691167000001450720130319051215.01 a0010-2601 aFNSP139771 a0000014507 a19900101a19459999 ba0 aeng aUS aafu 10aCommentary (New York) aNew YorkcAmerican Jewish Committee.d1945- aMensuel 1aContemporary Jewish record (0363-6909) aJuifsxPériodiques aJuifsyEtats-UnisxPériodiques02aAmerican Jewish Committee 3aFRbCCN0010-26014 uhttp://www.commentarymagazine.com/ zContenu : sommaires depuis 1945 et texte intégral du dernier numéro1 bvol. 36 no. 1 (jul-1963) -....cParisdMagasins/AnnexeeP 4° 20201 bvol. 3 no. 3 (mar-1947) ; vol. 5 no. 1 (jan-1948) -vol. 35 no. 6 (jun-1963)cParisdMagasins/AnnexeeP 8° 0229 aZSAB aGEO RC2 Etats-Unis aDEW 305-30601314cas0 2200409 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147105001800154106000600172110001600178200005200194207001900246210002800265225002800293300008600321326001100407410003600418606004900454606003800503710007800541801003000619801002300649802000700672856007300679856004200752955006000794972000900854992002500863992001600888079005926000082296020130412151406.01 a1767-459X a080061656 aissn1767459X a0000822960 a20040616a20042010m z0frey0103 ba0 afre aFR a 0  ar aaka i 0 13aLe commerce en FrancefINSEE, Division Commerce 0a2003/2004-2010 aPariscINSEEd2004-201000aRéférencesx1639-4968 a2010, dernière édition papier, à partir de 2011 en version en ligne uniquement aAnnuel 1tRéférences - INSEEx1639-4968 aCommerceyFrancexStatistiquesxPériodiques aEntreprisesyFrancexPériodiques02aInstitut national de la statistique et des études économiquesc(France) 3aFRbAbesc20050513gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.insee.fr/fr/publications-et-services/collection.asp?id=134 zAccés au texte intégral depuis 20071 b(2004/2005) -(2010)cParisdMagasins/AnnexeeP 8° 6822 aZPAY aGEO RA4.06 France 01 aDEW 380-38201148nls 2200349 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000079001502070010002292100024002392250027002632300028002903000086003183260011004044100035004156060049004506060038004996760011005377100078005488010013006268560113006399550005007529920025007579920016007820001239092000123909220130517154912.0 a0001239092 a a20079999k fre 01 ba0 afre aFR ar aak z  adr 13aLe commerce en Franceb[Ressource électronique]fINSEE, Division Commerce 1a2007- aPariscINSEEd2007-20aInsee références web aRessource électronique a2010, dernière édition papier, à partir de 2011 en version en ligne uniquement aAnnuel 1tINSEE- Référencesx1639-4968 aCommerceyFrancexStatistiquesxPériodiques aEntreprisesyFrancexPériodiques a337.4402aInstitut national de la statistique et des études économiquesc(France) 0aFRbFNSP4 uhttp://www.insee.fr/fr/publications-et-services/collection.asp?id=13ztexte intégral du rapport depuis 20071 r aGEO RA4.06 France 01 aDEW 380-38201123cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200004600179210002200225517010900247517005200356530004600408531002500454712004800479801003000527802000700557856015600564955007200720991001700792038027658000107574820130319051216.0 a1052-1917 accn1052-1917 zccn7117/2548 a0001075748 a19880525b18801883 0frey0103 ba0 aeng aUS ar aau 10aCommercial relations of the United States aWashingtoncG.P.O10aReports from the consuls of the United States on the commerce, manufactures, of their consular districts10aConsular reports on commerce, manufactures, etc00aCommercial relations of the United States 0aCommer. relat. U. S.01aEtats-UnisbBureau of Foreign Commerce4340 3aFRbAbesc20070320gAFNOR a014 uhttp://archive.org/stream/commercialrelat03unkngoog#page/n6/mode/2upzAccès libre au texte intégral. 1894-1895 vol. 2 numérisé sur Internet Archive1 b(1884) -(1885) ; (1894) -(1895)cParisdMagasins/AnnexeeCOL8°0721 aPériobTP0101437nas 2200373 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000290015421000280018332600160021160600340022767600100026171000590027171100400033080100210037085600640039185600670045585601260052285601080064895500690075695500700082595700720089597200090096799100180097699200570099499200120105103910950X000000415820130319051216.01 a0165-0750 aFNSP104988 a0000004158 a19900101a19639999 ba0 aeng aNL aahu 10aCommon market law review aLa HayecNijhoffd1963- aTrimestriel aDroit européenxPériodiques a341.8 aBritish Institute of International and Comparative Law aEuropa instituutc(Leyde, Pays-Bas) 3aFRbCCN0165-07504 uhttp://www.kluwerlawonline.com/productinfo.php?pubcode=COLA zContenu : sommaires et résumés depuis le vol. 33, n°5, 19964 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=N0O&site=bsi-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 341.81 bvol. 1 no. 1 (jun-1963) -....cParisdMagasins/AnnexeeP 8° 20641 bvol. 1 (1963) -vol. 40 (2003)cParisdMagasins/AnnexeeP Index 0863 aZPAY aexempb201103 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 34101295nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004000154207002900194210002400223326002300247326002800270430006200298517004200360607005800402856004200460856006700502856010900569856010800678955007100786972000900857991001800866992004900884992001200933037426494000024749720130319051216.01 a1466-2043 aFNSP868348 a0000247497 a19900101a19989999 ba0 aeng aGB aaia 10aCommonwealth & comparative politics 1aVol. 36 no.1 (mar-1998)- aLondoncCassd1998- aTrimestrielb2007- a3 nos par anb1998-2006 1aJournal of Commonwealth & comparative politicsx0306-363110aCommonwealth and comparative politics aCommonwealthxPolitique et gouvernementxPériodiques4 uhttp://www.frankcass.com/jnls/ccp.htm zContenu : sommaires et résumés depuis le vol. 36, n°1, 19974 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713720447db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 36 no. 1 (mar-1998) -....cParisdMagasins/AnnexeeP 8° 2017 aZSAB aexempb201302 aGEO RP Autres groupes de pays ou de régions aDEW 90901401nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200010200139210009500241326002200336326002800358430004800386452011200434517006200546530008600608606003400694606002600728710008900754856010200843955008100945991001801026992001901044992001201063036394084000005755520130912114555.01 a1189-3788 aFNSP267329 a19900101a19919999 ba0 afre aCA aaja 10aCommunicationerevue québécoise des recherches et des pratiques en communication et information aSainte-Foy, QuébeccDépartement d'information et communication, Université Lavald1984- aSemestrielb1990- a3 nos par anb1984-1989 1tCommunication et information‎,x0382-7798 1tCommunication (Université Laval. Département d'information et de communication. En ligne), ‎x1920-734410aCommunication, information, médias, théories, pratiques10aCommunication - Université Laval. Département d'information et de communication aMédiasyCanadaxPériodiques aMédiasxPériodiques02aUniversité Lavalc(Québec, Canada)bDépartement d'information et de documentation4 uhttp://communication.revues.org/zAccès libre au texte intégral depuis le volume 23, no1 , 20041 bvol. 7 no. 1 (1985)-vol. 16 no. 1 (1995)cParisdMagasins/AnnexeeP 8° 4004 aexempb201207 aGEO RC1 Canada aDEW 30200926nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000069001502070047002192100005002662300024002716060056002956060040003518010013003918560082004048560108004869550005005949920012005999920025006110000994382000099438220130319051217.0 a0000994382 a a20049999k fre 01 ba0 afre aFR ar aaz z  adr 10aCommunication, commerce électroniqueb[Ressource électronique] 1aParis :$cLexisNexis Jurisclasseur :$c2004- a aRevue électronique aCommerce électroniquexDroityFrancexPériodiques aCommunicationyFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.com/fr/droit/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aDEW 340 aGEO RA4.06 France 0100970nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210002700184210003100211210002800242326001600270430004000286606003200326606002600358676000800384801002100392856005500413856006200468955006300530972000900593991001800602992001200620039531813000001468120140109115037.01 a0336-1500 aFNSP140417 a0000014681 a19900101a19699999 ba0 afre aFR aaha 10aCommunication et langages aPariscRetzd1969-1999 aPariscA. Colind2000-2008 aVineuilcNecplusd2009- aTrimestriel 1aCahiers de la publicitéx1268-7251 aCommunicationxPériodiques aMédiasxPériodiques a070 3aFRbCCN0336-15004 uhttp://www.armand-colin.com/revues_info.php?idr=18 zSommaires et résumés d'articles depuis le n° 126, 20001 bno. 1 (mar-1969) -....cParisdMagasins/AnnexeeP 8° 2347 aZPAY aexempb200908 aDEW 30201102cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200006600180207003000246210003300276326001600309606003200325606004600357710004400403801003000447801002300477802000700500856004600507856010800553955009100661992001200752093868529000112983420131127153711.01 a1050-3293 aissn10503293 a0001129834 a19900501a19919999k y0frey0103 ba0 aeng aUS ay 0  ar aaha 0uu 10aCommunication theoryfInternational Communication Association 0avol. 1, n. 1 (Feb. 1991)-1 aMalden, MAcBlackwelld1991- aTrimestriel aCommunicationxPériodiques aInformation, Théorie de l'xPériodiques02aInternational Communication Association 3aFRbAbesc20080111gAFNOR 3aFRbISSNc20051021 a024 uhttp://www.blackwell-synergy.com/loi/COMT zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 16 no. 1 (fev-2006) -vol. 22 no. 4 (nov-2012)cParisdMagasins/AnnexeeP 8° 6993 aDEW 30201174nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005600154210007900210326001500289530003200304606004400336606003400380676000800414710007800422801002100500856006300521856005400584955006600638955005900704972000900763991001800772992002200790992001200812013306014000001477020130319051217.01 a0588-8018 aFNSP140772 a0000014770 a19900101a19629999 ba0 afre aFR aaja 10aCommunicationsfÉcole pratique des hautes études, aPariscEd. du SeuilcÉcole pratique des hautes études, 6e sectiond1962- aSemestriel10aCommunicationsbParis. 1962 aSciences socialesyFrancexPériodiques aMédiasyFrancexPériodiques a30002aCentre d'études transdisciplinaires sociologie, anthropologie, politique 3aFRbCCN0103/18804 uhttp://www.ehess.fr/centres/cetsah/Communications/com.html zContenu : sommaires des n°s depuis le n°1, 19611 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3001 bno. 1 (1962) -....cParisdMagasins/AnnexeeP 8° 1922 aZCAD aexempb200910 aGEO RA4.06 France aDEW 30201098nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210009700187326001600284430003500300530004600335606003200381676000800413710007800421856005400499856005100553955005900604957007000663972000900733991001800742992001200760039934241000003303320140109120553.01 a1157-8637 aFNSP195907 a0000033033 a19910529a19919999 ba0 aeng aFR aaha 10aCommunications & stratégies aMontpelliercIDATE, [Institut de l'audiovisuel et des télécommunications en Europe]d1991- aTrimestriel 1aBulletin de l'IDATEx0249-257102aCommunications & stratégiesbMontpellier aCommunicationxPériodiques a07002aInstitut de l'audiovisuel et des télécommunications en Europec(France)4 uhttp://www.idate.fr/fr/publi/revu/pres/index.html zSommaires et résumés depuis le vol. 33, 19991 bno. 1 (1991) -....cParisdMagasins/AnnexeeP 8° 48361 bno. 1 (1991) -no. 32 (1998)cParisdMagasins/AnnexeeP Index 0718 aZPAY aexempb201011 aDEW 30201583nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006700154210004200221210004200263210003600305210004100341210003800382326002300420326002900443530003500472606002600507606003200533710005500565801002100620856010100641856010800742856010700850856010800957955006601065972000901131992003301140992001201173039466698000001467720130319051217.01 a0341-2059 aFNSP140408 a0000014677 a19900101a19769999 ba0 aeng aDE aaha 10aCommunicationsethe European journal of communication research aSankt AugustincH. Richarzd1976-1984 aFrankfurt am MaincP. Langd1985-1988 aMünchencK. G. Saurd1990-1994 aBerlincQuintessenz-Verl.d1995-2001 aaBerlincMouton de Gruyterd2002- aTrimestrielb1996- a3 n°s par anb1976-199510aCommunicationsbSankt Augustin aMédiasxPériodiques aCommunicationxPériodiques02aDeutsche Gesellschaft für Kommunikationsforschung 3aFRbCCN0341-20594 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=111084 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.degruyter.de/journals/communic/384_5346_DEU_h.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 7 no. 1 (1981) -....cParisdMagasins/AnnexeeP 8° 4526 aZPAY aGEO RS Sans aspect régional aDEW 30201247nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210004100195326001600236430004800252606002900300607003400329676001000363856010000373856006000473856005500533856007300588955006800661955007100729972000900800991001800809992003200827992001200859992001400871040101967000009522920130319051218.01 a0967-067X aFNSP416071 a0000095229 a19900101a19939999 ba0 aeng aGB aaha 10aCommunist and post-communist studies aOxfordcButterworth-Heinemannd1993- aTrimestriel 1aStudies in comparative communismx0039-3592 aCommunismexPériodiques aEurope de l'EstxPériodiques a943.74 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/0967067X zContenu : sommaires depuis le Vol. 26, n°1, March 19934 uhttp://www.ingentaconnect.com/content/els/0967067x zContenu : sommaires et résumés depuis le vol. 28, n°1, March 19951 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 943.71 bvol. 26 no. 1 (mar-1993) -....cParisdMagasins/AnnexeeP 8° 2664 aZSAB aexempb201001 aGEO RA2.02 Europe orientale aDEW 947 aDEW 320.501131nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210004100188326001600229606004700245801002100292856003000313856008400343856010100427856010800528955007000636957007200706972000900778991001800787992001200805038691531000001468020130319051218.01 a0010-3802 aFNSP140416 a0000014680 a19900101a19669999 ba0 aeng aGB aaha 10aCommunity development journal aOxoncOxford University Pressd1966- aTrimestriel aDéveloppement communautairexPériodiques 3aFRbCCN0010-38024 uhttp://www.oup.co.uk/cdj/ zContenu : sommaires ; recherche avec Excite depuis le vol. 31, n°1, janv. 19964 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=103040 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1966) -....cParisdMagasins/AnnexeeP 8° 24851 bvol. 1 (1966) -vol. 25 (1990)cParisdMagasins/AnnexeeP Index 0671 aZPAY aexempb200908 aDEW 30700911nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005900163210003700222326001600259607002900275607004300304801001300347856005700360856007600417955006600493972000900559992001200568992002900580078919819000057592120130319051218.01 a1477-5700 a0000575921 a a20039999k fre ba0 aeng aGB a 0  ar aah z 0 10aComparative American studiesean international journal aLondoncSage Publicationsd2003- aTrimestriel aEtats-UnisxPériodiques aEtats-UnisxCivilisationxPériodiques 0aFRbFNSP4 uhttp://www.maney.co.uk/search?fwaction=show&fwid=735 zcontenu : sommaires et résumés des articles depuis le vol.1,n°, 20031 bvol. 1 no. 1 (2003) -....cParisdMagasins/AnnexeeP 8° 6720 aZSAB aDEW 970 aGEO RC Amérique du Nord01050cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157110001600175200003700191210003000228326001500258423005000273606005200323710006800375801003000443801002300473802000700496856004800503856005200551955006400603992001200667992003300679039695204000117039720130319051218.01 a0733-4540 accn0733-4540 aissn07334540 a0001170397 a19820504a19799999k y1frey0103 ba0 aeng aUS a 0  aauu 0uu 10aComparative civilizations review a[Carlisle, PAcs.nd1979- aSemestriel 1tComparative civilizations bulletinx0734-0621 aCivilisationxEtudes comparativesxPériodiques01aInternational Society for the Comparative Study of Civilization 3aFRbAbesc20081202gAFNOR 3aFRbISSNc20051021 a014 uhttp://www.wmich.edu/iscsc/Journal.html#ccr zContenu : sommaires depuis le no. 25 (aut-1991)1 bno. 60 (pri-2009) -....cParisdMagasins/AnnexeeP 8° 7096 aDEW 900 aGEO RS Sans aspect régional01239nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154207003400187210007700221326001600298430002900314607006800343607007000411710004900481801002100530856010200551856010800653955006700761972000900828991001800837992003200855992001400887039983382000001467320130319051218.01 a0888-7233 aFNSP140404 a0000014673 a19900101a19859999 ba0 aeng aUS aaha 10aComparative economic studies 1avol. 27, no. 1 (spring 1985)- aa[Notre Dame, Ind.]cAssociation for Comparative Economic Studiesd1985- aTrimestriel 1aACES bulletinx0360-5930 aEurope de l'EstxPolitique économiquez1989-....xPériodiques aEurope de l'EstxConditions économiquesz1989-....xPériodiques02aAssociation for Comparative Economic Studies 3aFRbCCN0888-72334 uhttps://acces-distant.sciences-po.fr/fork?http://www.palgrave-journals.com/ces/archive/index.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 27 no. 1 (1985) -....cParisdMagasins/AnnexeeP 8° 4537 aZPAY aexempb200910 aGEO RA2.02 Europe orientale aDEW 338.901368nls 2200337 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000053001642070033002172100026002502300005002763000057002813260022003383360056003603370071004166060028004876060031005158010013005468560208005598560214007679920033009819920016010140000802818000080281820130319051218.01 a0305-0068 a0000802818 a a19649999k fre 01 ba0 aeng aGB ar aai z  adr 10aComparative educationb[Ressource électronique] 1aVol. 1, n°1 (October 1954)- aOxfordcCarfaxd1954- a aTexte intégral depuis le vol. 1, n°1, October 1954 aTrois fois par an aDonnées textuelles accessibles uniquement en ligne aTéléchargement de fichiers TIFF, PDF (recommandé) ou PostScript aEducationxPériodiques aEnseignementxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03050068.html?&cookieSet=1zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713410081db=allzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aGEO RS Sans aspect régional aDEW 370-37901231nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210005400187326001600241606002800257606003100285710005200316801002100368856005100389856012100440856009000561856010800651955007000759972000900829991001800838992002100856992001600877038691663000001467420130319051218.01 a0010-4086 aFNSP140405 a0000014674 a19900101a19579999 ba0 aeng aUS aaha 10aComparative education review aChicago, Ill.cUniversity of Chicago Pressd1957- aTrimestriel aEducationxPériodiques aEnseignementxPériodiques02aComparative and International Education Society 3aFRbCCN0010-40864 uhttp://www.journals.uchicago.edu/CER/home.html zContenu : sommaires ; index auteurs et sujets ; depuis le vol. 40, n°1, fév. 1996 ; Index vol. 1 à 42 (1957-1998)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00104086.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 19 no 1 (fev-1975) -....cParisdMagasins/AnnexeeP 8° 3573 aZPAY aexempb200911 aGEO RQ Universel aDEW 370-37901176nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003400163207002900197210004300226326002200269326002900291326002700320326002900347517000800376606003600384676000800420801001300428856010300441856010800544955006700652955007000719972000900789992001600798002124416000067964420131219160802.01 a1472-4790 a0000679644 a a20039999 fre 01 ba0 aeng aGB a 0  ar aai z 0 10aComparative European Politics 1aVol.1, no.1 (Mar. 2003)- aBasingstokecPalgrave Macmilland2003- aBimestrielb2013- a5 n°s par anb2011-2012 aTrimestrielb2005-2010 a3 n°s par anb2003-200410aCEP aScience politiquexPériodiques a320 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=110782 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bvol. 1 no. 1 (mar-2003) -....cParisdMagasins/AnnexeeP 8° 6773 aZCAD aDEW 320-32101559nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210003800188326001200226517000800238606005800246676000800304801002100312856007000333856010800403856010100511856010800612856010800720856010800828955006700936955006901003955007001072972000901142991001801151992001601169038691736000000423920131219161026.01 a0010-4140 aFNSP105204 a0000004239 a19900101a19689999 ba0 aeng aUS aafu 10aComparative political studies aNewbury Park, Calif.cSaged1968- aMensuel10aCPS aScience politiquexMéthode comparativexPériodiques a320 3aFRbCCN0010-41404 uhttps://acces-distant.sciences-po.fr/fork?http://cps.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101612 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bL'année en courscParisdBibliothèque de rechercheeP 8° 27021 bvol. 1 no. 1 (avr-1968) -....cParisdMagasins/AnnexeeP 8° 2702 aZCAD aexempb201103 aDEW 320-32101238nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210004200179326001600221606005300237606005800290676000800348710005900356801002100415856004200436856006200478856009600540856007200636955006700708955007000775972000900845991001800854992001600872038691744000000424220131219161059.01 a0010-4159 aFNSP105207 a0000004242 a19900101a19689999 ba0 aeng aUS aahu 10aComparative politics aNew YorkcComparative politicsd1968- aTrimestriel aInstitutions politiques comparéesxPériodiques aScience politiquexMéthode comparativexPériodiques a32002aCity University of New YorkbPolitical Science Program 3aFRbCCN0010-41594 uhttp://web.gc.cuny.edu/jcp/issues.htm zContenu : sommaires des n°s depuis le vol. 1, n°1, 19684 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/browse/00104159?config=jstor zContenu : texte intégral des articles des vol.31, 1998 à 34, 20011 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bvol. 1 no. 1 (oct-1968) -....cParisdMagasins/AnnexeeP 8° 2600 aZCAD aexempb201202 aDEW 320-32100910nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003200139210004400171326001100215430004900226530003200275606002900307801002100336856010300357856006200460955005900522972000900581991001800590992001200608039150135000000631120130909155357.01 a0195-6310 aFNSP110033 a19900101a19799999 ba0 aeng aUS aaku 10aComparative social research aGreenwich, Conn‎cJAI Press‎d1979- aAnnuel 1aComparative studies in sociology,x0164-124700aComparative social research aSociologiexPériodiques 3aFRbCCN0195-63104 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/bookseries/019563104 zContenu : accès aux sommaires depuis le numéro 19, 20001 bvol. 2 (1979)-....cParisdMagasins/AnnexeeP 8° 4182 aZPAY aexempb201106 aDEW 30100989nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002600163210003300189326001600222437006700238606002900305606003600334801001300370856012800383856010800511955006800619992001200687061047473000052612720131025120452.01 a1569-1322 a0000526127 a a20029999k fre ba0 aeng aNL a 0  ar aah z 0 10aComparative sociology aLeidenaBostoncBrilld2002- aTrimestriel 1tInternational journal of comparative sociologyxISSN 0020-7152 aSociologiexPériodiques aChangement socialxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=K0T&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 3/4 (2001) -....cParisdMagasins/AnnexeeP 8° 6876 aDEW 30101358nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210004000179326001800219606002900237606004400266676000800310801002100318856005400339856006000393856011900453856010800572856010900680856010800789955006800897972000900965991001800974992001600992039097153000001467520140110155352.01 a0149-5933 aFNSP140406 a0000014675 a19900101a19789999 ba0 aeng aUS aaga 10aComparative strategy aNew YorkcTaylor and Francisd1978- a5 n°s par an aStratégiexPériodiques aRelations internationalesxPériodiques a355 3aFRbCCN0149-59334 uhttp://www.ucm.es/BUCM/compludoc/S/S/01495933.htm zContenu : sommaires depuis le vol. 13, n°1, janv. 19944 uhttps://acces-distant.sciences-po.fr/fork?http://www.westlaw.com/signon/default.wl?RS=UKIS1.0&VR=1.0&sp=intiep-000 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713769613db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1/2 (1978) -....cParisdMagasins/AnnexeeP 8° 4144 aZSAB aexempb201104 aDEW 355-35901372nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004700154210004800201326001600249606002700265606002900292710007500321801002100396856004200417856004800459856010100507856010800608856009000716856010800806955006900914972000900983991001800992992001201010038691760000001477520130319051219.01 a0010-4175 aFNSP140777 a0000014775 a19900101a19589999 ba0 aeng aGB aahu 10aComparative studies in society and history aNew YorkcCambridge University Pressd1958- aTrimestriel aHistoirexPériodiques aSociologiexPériodiques02aSociety for the Comparative Study of Society and Historyc(Etats-Unis) 3aFRbCCN0010-41754 uhttp://uk.cambridge.org/journals/css/ zContenu : sommaires depuis le vol. 37, 19954 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=103286 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00104175.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no.1 (oct-1958) -....cParisdMagasins/AnnexeeP 8° 1769 aZSAB aexempb201102 aDEW 30101060nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000051001502100066002012300005002673000055002723260014003273360056003413370017003974520035004146060047004497100120004968010013006168560063006299550005006929920012006979920025007090000505418000050541820130319051220.0 a0000505418 a a20019999k fre 01 ba0 afre aFR ar aae z  adr 10aComplément d'objetb[Ressource électronique] aPariscMinistère de la culture et de la communicationd2001- a aTexte intégral depuis le n° 50 - 15 janvier 2001 abimensuel aDonnées textuelles accessibles uniquement en ligne aFichiers PDF 1tComplément d'objetx1626-2964 aPolitique culturelleyFrancexPériodiques01aFrancebMinistère de la culture et de la communicationbDélégation au développement et à l'action territoriale 0aFRbFNSP4 uhttp://www.culture.fr/culture/actualites/co-ddat/index.htm1 r aDEW 001 aGEO RA4.06 France 0101101nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200007000163207002900233210002600262326001100288530003000299606003000329606002900359801001300388856004200401856016400443955006700607955007800674972000900752992001400761057935645000040506920130319051221.01 a1626-4207 a0000405069 a b20002005k fre ba0 afre aFR a 0  ar aak z 0 10aComprendreerevue annuelle de philosophie et de sciences sociales 1ano 1 (2000) -no 6 (2005) aPariscPUFd2000-2005 aAnnuel00aComprendreb(Paris, 2000) aPhilosophiexPériodiques aSociologiexPériodiques 0aFRbFNSP4 uhttp://www.puf.com/revue.php?revue=HP zContenu : sélection de sommaires depuis le n°1, 2000 ; possibilité de chercher les autres publications aux PUF (articles ou monographies) pour chaque auteur1 bno. 1 (2000) -no. 6 (2005)cParisdMagasins/AnnexeeP 8° 65801 bno. 1 (2000) -no. 6 (2005)cParisdBibliothèque de rechercheeP 8° 6580 aZPAY aDEW 10-1401090nas0 22002891i 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109106000600127110001600133200009100149210002900240301002700269306003700296606006300333607005900396710004200455801003000497856014500527955008200672991001900754991002700773103008691000108115120130319051221.0 a0001081151 a20060601b186019 k a frey0103 ba0 afre aFR a 0  ar aakuzz 0yu 10aCompte définitif des dépenses de l'exercice...fGouvernement général de l'Algérie aParisc[s.n.]d1860-19.. aRétroconversion Cujas aImpr. impériale, puis nationale aFinances publiquesyFrancexColoniesxPériodiques2rameau aFrancexColoniesxAdministrationxPériodiques2rameau02aAlgériebGouvernement général4070 3aFRbAbesc20060601gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb41274569q/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1912-1937)1 b(1866) ; (1867) ; (1869) ; (1874) -(1879)cParisdMagasins/AnnexeeCOL4°0424 aPériobTP01 4 anumer0 (avant gallica)01044nas0 22002651 450 001001000000002001100010005001700021035001500038100004100053101000800094106000600102110001600108200015400124210003500278215001000313301005000323326001100373440007700384606005000461676000800511801003000519856013300549955007500682991002100757114227101000108624220130319051221.0 a0001086242 a20070430c1832 k y0frey0103 ba0 afre ar aa 10aCompte général de l'administration de la justice civileeprésenté...fGarde des Sceaux, Ministre Secrétaire d'Etat au Département de la justice aPariscImprimerie royaled1832 d34 cm aDemande de numérotation ISSN en cours (FNSP) aAnnuel 1tCompte général de l'administration de la justice civile et commerciale aJusticexAdministrationyFrancexPériodiques a340 3aFRbAbesc20070430gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb345304266/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 bvol. 1820 (1832) -vol. 1830 (1832)cParisdMagasins/AnnexeeCOL.F.0063 aPériobTP01 Fol01123nas0 22002291 450 001001000000002001100010005001700021035001500038100004100053101000800094106000600102110001600108200016900124210002900293215001000322301005000332326001100382801003000393856014500423955030400568991002100872114225788000108624120130319051222.0 a0001086241 a20070430c1833 k y0frey0103 ba afre ar aa 10aCompte général de l'administration de la justice civile et commercialeeprésenté...fGarde des Sceaux, Ministre Secrétaire d'Etat au Département de la justice aPariscImprimerie royale d34 cm aDemande de numérotation ISSN en cours (FNSP) aAnnuel 3aFRbAbesc20070430gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb345304266/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1820-1935)1 bvol. 1830 (1833) ; vol. 1831 (1833) ; vol. 1832 (1835) ; vol. 1833 (1835) ; vol. 1835 (1838) ; vol. 1836 (1838) ; vol. 1837 (1841) ; vol. 1838 (1841) ; vol. 1839 (1841) ; vol. 1840 (1842) ; vol. 1841 (1843) ; vol. 1842 (1844) ; vol. 1844 (1846) ; vol. 1845 (1847)cParisdMagasins/AnnexeeCOL.F.0063 aPériobTP01 Fol01151nas0 22002651 450 001001000000002001100010005001700021035001500038100004100053101000800094106000600102110001600108200014600124210003300270215001000303301005000313326001100363430007700374440008200451710004200533801003000575856014500605955011400750991002100864114225338000108623920130319051222.0 a0001086239 a20070430c1856 k y0frey0103 ba0 afre ar aa 10aCompte général de l'administration de la justice civile et commerciale en Franceeprésenté...fGarde des Sceaux, Ministère de la Justice aPariscImprimerie impériale d34 cm aDemande de numérotation ISSN en cours (FNSP) aAnnuel 1tCompte général de l'administration de la justice civile et commerciale 1tCompte général de la justice civile et commerciale en France et en Algérie02aFrancebMinistère de la justice4070 3aFRbAbesc20070430gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb345304266/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1830-1935)1 bvol. 1854 (1856) ; vol. 1860 (1862) ; vol. 1863 (1865) -vol. 1880 (1882)cParisdMagasins/AnnexeeCOL.F°0063 aPériobTP01 Fol01512cas0 2200301 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200007600148210006100224447007700285447010500362517009100467530007600558710004200634801003000676856014500706955015000851955007501001955011301076991002101189039084663000108622220130319051222.0 accn7113/1469 a0001086222 a19911212b182 193 0frey0103 ba0 afre aFR ar aak 10aCompte général de l'administration de la justice criminelle en France aPariscImprimerie impériale (puis nationale)d182?-193? 1tCompte général de l'administration de la justice civile et commerciale 1tCompte général de l'administration de la justice civile et commerciale et de la justice criminelle10aCompte général de l'administration de la justice criminelle en France et en Algérie00aCompte général de l'administration de la justice criminelle en France02aFrancebMinistère de la justice4070 3aFRbAbesc20051021gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb412790415/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1825-1932)1 bvol. 1900 (1902) -vol. 1911 (1913) ; vol. 1913 (1915) ; vol. 1920 (1926) -vol. 1929 (1932) ; vol. 1932 (1934)cParisdMagasins/AnnexeeCOL.F.00641 bvol. 1881 (1883) -vol. 1899 (1901)cParisdMagasins/AnnexeeCOL.F.00641 bvol. 1836 (1838) ; vol. 1837 (1840) ; vol. 1839 (1841) -vol. 1874 (1876)cParisdMagasins/AnnexeeCOL.F.0064 aPériobTP01 Fol01222nas 2200337 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200007700148210005000225225002500275300008600300326001100386430006200397606006000459606005400519710005100573801001300624856008500637856006100722955005500783972000900838992002500847992001200872073593907000047460220130514104646.01 a1635-4664 a b20022005k fre ba0 afre aFR a 0  ar aak z 0 14aLes comptes de l'intercommunalité et des établissements publics locaux aPariscLa Documentation françaised2002-200520aSecteur public local a2005 est la dernière édition en version papier après en version électronique. aAnnuel 1tLes comptes des établissements publics locauxx1624-4095 aFinances publiquesyFrancexComptabilitéxPériodiques aCoopération intercommunaleyFrancexPériodiques02aFrancebDirection de la comptabilité publique 0aFRbFNSP4 uhttp://www.colloc.minefi.gouv.fr/colo_struct_fina_loca/comp_coll/lint_epl_2.html4 zContenu : texte intégral du dernier rapport depuis 20001 b(2000) -(2005)cParisdMagasins/AnnexeeP 4° 6785 aZGRA aGEO RA4.06 France 01 aDEW 33601321cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001700069100004100086101000800127102000700135105001800142106000600160110001600166200004100182210011300223326001600336530005100352606005900403710006600462801003000528801002300558801003000581802000700611856010500618955006900723955006400792972000900856991001800865991001800883992002200901992001200923039874796000088493220131017160955.0 a0996-3979 accn0996-3979 aissn09963979 a19960402c1987 m h0frey0103 ba0 afre aFR ay  ar aakuzi uu 14aLes comptes de la protection sociale a[Paris]c[Direction de la recherche, des études, de l'évaluation et des statistiques]aPariscSESId1987?- aIrrégulier14aLes comptes de la protection sociale‎bParis aSécurité socialeyFrancexStatistiquesxPériodiques02aFrancebMinistère des affaires sociales et de la solidarité 3aFRbAbesc20080325gAFNOR 3aFRbISSNc20060706 3aFRbAbesc20041014gAFNOR a074 uhttp://www.ladocumentationfrancaise.fr/rapports-publicszAccés libre au texte intégral depuis 20011 b(1990/1995) ; (2002) -(2005)cParisdMagasins/AnnexeeP 8° 68361 b(1987) ; (1991) -(1994)cParisdMagasins/AnnexeeCOL4°3935 aZPAY aSAFIGbTC004i aexempb201310 aGEO RA4.06 France a360-36301382nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004100139207004400180210004600224300032900270326002200599326002200621430007300643517007100716606005500787710006000842856006400902955005500966972000901021992002201030992001601052032986815000005127720130313083302.01 a1263-0365 aFNSP249185 a19900101a19879999 ba0 afre aFR aaka 14aLes Comptes de la sécurité sociale 1aDécembre 1986 (prévisions 1986-1987)- aPariscLa Documentation françaised1987- aA partir de décembre 1986, deux rapports paraissent dans l'année : en mai ou en juin, les résultats de l'année précédente et les prévisions pour l'année en cours ; en septembre, les résultats de l'année et les prévisions pour l'année en cours et pour l'année suivante. - Semestriel (1996-). - Annuel (1987-1995) aSemestrielb1996- aAnnuelb1987-1995 1aRapport - Commission des comptes de la sécurité socialex0291-925710aRapport de la Commission des comptes de la sécurité sociale-CCSS aSécurité socialeyFrancexFinancesxPériodiques02aFrancebCommission des comptes de la Sécurité sociale4 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml1 b(1986) -(2007)cParisdMagasins/AnnexeeP 4° 4464 aZPAY aGEO RA4.06 France aDEW 360-36301088nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000029001552100064001843000084002483260011003326060060003436060058004037100051004618560079005128560061005919550060006529720009007129920025007219920016007469920012007620000180270000018027020130319051222.01 a1263-3089 aFNSP672911 a0000180270 a19900101b19959999 ba0 afre aFR aaka 14aLes Comptes des communes aPariscMinistère de l'économie et des financesd1995-2005 a2004 dernière édition en version papier voir ensuite en version électronique aAnnuel aFinances communalesyFrancexStatistiquesxPériodiques aBudgets communauxyFrancexStatistiquesxPériodiques02aFrancebDirection de la comptabilité publique4 uhttp://www.colloc.minefi.gouv.fr/colo_struct_fina_loca/comp_coll/comm.html4 zContenu : texte intégral du dernier rapport depuis 20001 b(1989/1992) -(2004)cParisdMagasins/AnnexeeP 4° 6698 aZGRA aGEO RA4.06 France 01 aDEW 310-319 aDEW 33601304nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000034001552100039001892250053002283000073002813260011003544300159003656060076005246060060006007120051006608560079007118560053007909550064008439720009009079920022009169920012009389920016009500000134639000013463920130319051222.01 a1263-3097 aFNSP542184 a0000134639 a19940823a19949999 ba0 afre aFR aaka 14aLes Comptes des départements aPariscMinistère du budgetd1994-21aSynthèses comptables des collectivités locales a2005 dernière édition papier voir ensuite en version électronique aAnnuel 1aStatistiques des comptes pour l'exercice...les communes, les départements, les régions, les établissements publics locaux (0767-1180) < Coll. 4°2244 > aBudgetyFrancexDépartementsxStatistiquesxPériodiquesxPériodiques aFinances publiquesyFrancexDépartementsxPériodiques02aFrancebDirection de la comptabilité publique4 uhttp://www.colloc.minefi.gouv.fr/colo_struct_fina_loca/comp_coll/depa.html4 zContenu : texte intégral depuis l'édition 20001 b(1989/1990/1991)-(2005)cParisdMagasins/AnnexeeP 4° 6393 aZGRA aGEO RA4.06 France aDEW 336 aDEW 310-31901328nas 2200337 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000050001412100060001912250059002513000073003103260011003834370092003944880073004866060060005596070061006197120051006808560084007318560056008159550057008719720009009289920025009379920016009629920012009780000215767000021576720130319051222.0 aFNSP777949 a0000215767 a19900101a19969999 ba0 afre aFR aaka 10aComptes des établissements publics de santé aPariscMinistère de l'économie et des financesd1996-21aSynthèses comptables du secteur hospitalier et social a2004 dernière édition papier voir ensuite en version électronique aAnnuel 1aStatistiques des comptes pour l'exercice... hôpitaux publics (0762-2961) < P 4°5030 > 1aLes établissements publics sociaux et médicaux-socio < P 4°6683 > aHôpitauxyFrancexFinancesxStatistiquesxPériodiques aFrancexCrédits budgétaires et dépensesxPériodiques02aFrancebDirection de la comptabilité publique4 uhttp://www.colloc.minefi.gouv.fr/colo_struct_fina_loca/comp_etab/comp_etab.html4 zContenu : texte intégral des rapports 2003 et 20041 b(1992/1993-2004)cParisdMagasins/AnnexeeP 4° 6682 aZGRA aGEO RA4.06 France 01 aDEW 310-319 aDEW 33601296nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210003900183225005300222300008400275326001600359430016000375606005500535606005700590712005100647856007900698856005300777955006900830972000900899992002200908992001200930992001600942040408124000014687120130319051222.01 a1263-3100 aFNSP578114 a0000146871 a19950118a19949999 ba0 afre aFR aaka 14aLes Comptes des régions aPariscMinistère du budgetd1994-21aSynthèses comptables des collectivités locales a2005 dernière édition en version papier voir ensuite en version électronique aIrrégulier 1aStatistiques des comptes pour l'exercice... les communes, les départements, les régions, les établissements publics locaux (0767-1180) < Coll. 4°2244 > aFinances publiquesyFrancexRégionsxPériodiques aBudgetyFrancexRégionsxStatistiquesxPériodiques02aFrancebDirection de la comptabilité publique4 uhttp://www.colloc.minefi.gouv.fr/colo_struct_fina_loca/comp_coll/regi.html zContenu : texte intégral depuis l'édition 20001 b(1989/1990/1991/1992)-(2005)cParisdMagasins/annexeeP 4° 6424 aZGRA aGEO RA4.06 France aDEW 336 aDEW 310-31901043nas 2200301 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000064001412100045002053000042002503260011002924300054003036060050003576060053004077100029004608560101004899550056005909550056006469720009007029910018007119920012007290000134312000013431220130516171815.0 aFNSP541521 a0000134312 a19940816a19819999 ba0 afre aFR aaka 10aComptes rendus analytiques - Conférence interparlementaire aGenèvecUnion interparlementaired1981- aPublication en 2 vol. de 1981 à 1983 aAnnuel 1aCompte rendu de la Conférence interparlementaire aCoopération interparlementairexPériodiques aRelations internationalesxSourcesxPériodiques02aUnion interparlementaire4 uhttp://www.ipu.org/strct-f/lstconf.htmzAccés au texte intégral depuis la 86ème session, 19911 b(2002) - (2006)cParisdMagasins/AnnexeeP 4° 69581 b(1981) - (2001)cParisdMagasins/AnnexeeP 8° 5229 aZPAY aexempb201305 aDEW 32801248nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005800154210005200212326002300264326003300287421006000320430008300380606003800463710003800501801002100539856005800560856004500618955008700663955008300750972000900833991001800842992002200860992001600882001254286000001477720130412110113.01 a0989-6988 aFNSP140779 a0000014777 a19900101a19879999 ba0 afre aFR aahu 10aComptes rendus de l'Académie d'agriculture de France aPariscAcadémie d'agriculture de Franced1987- aTrimestrielb2010- a5 à 8 nos par anb1987-2009 1tAnnuaire - Académie d'agriculture de Francex1294-4203 1aComptes rendus des séances de l'Académie d'agriculture de France,x0151-1335 aAgricultureyFrancexPériodiques02aAcadémie d'agriculture de France 3aFRbCCN7103/00504 uhttp://www.inra.fr/Internet/Hebergement/AAF/index.htm zContenu : sommaires depuis le n°4, 19951 bvol. 89 no. 1 (2003) -vol. 98 no. 3 (nov-2012)cParisdMagasins/AnnexeeP 4° 70041 bvol. 73 no. 1 (1987) -vol. 88 no. 8 (2002)cParisdMagasins/AnnexeeP 8° 0337 aZPAY aexempb201201 aGEO RA4.06 France aDEW 338.1-301222nls 2200337 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000055001552100037002103260012002474300073002596060047003326060101003796060073004807100104005538010021006578300060006788560061007388560037007999550005008369720009008419920022008509920012008720000061977000006197720130319051223.01 a0298-511X aFNSP283653 a0000061977 a19900101a19869999 ba0 afre aFR aafb 10aConcurrence, consommation, répression des fraudes aPariscJournaux officielsd1986- aMensuel 1aConcurrence et consommation (Paris, 1984) (0764-5325) < P 4° 1296 > aFraudeyFrancexLégislationxPériodiques aConsommateursxProtectionxDroityFrancexLégislationxPériodiquesxLégislationxPériodiques aConcurrencexDroityFrancexLégislationxPériodiquesxPériodiques02aFrancebDirection générale de la concurrence, de la consommation et de la répression des fraudes 3aFRbCCN0298-511X a< P 4° 1296 > 1955--2007 : collection donnée au CTLes4 uhttp://www.minefi.gouv.fr/DGCCRF/boccrf/index.html?ru=034 zAccès libre au texte intégral.1 r aZPAY aGEO RA4.06 France aDEW 34301376cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118106000600125110001600131200009200147207002400239210007700263320008500340326001600425452004000441517000900481606003700490676000800527710005000535801003000585801002300615802000700638856010200645856010800747955006700855955005900922972000900981992001200990085547026000101138820131021170028.01 a1773-9578 aissn17739578 a20050405a20049999u y0frey0103 ba0 afre aFR ar aahu uu 10aConcurrenceserevue des droits de la concurrencefInstitut des droits de la concurrence 0aN° 1 (2004,déc.)- aPariscInstitut des droits de la concurrencecThomson Transactived2004- aA partir de 2005, l'Institut est appelé 'Institut des droits de la concurrence" aTrimestriel 1tConcurrences (En ligne),x2116-009010aRDLC aConcurrencexDroitxPériodiques a34602aInstitut de droit de la concurrencec(France) 3aFRbAbesc20060711gAFNOR 3aFRbISSNc20060706 a074 uhttps://acces-distant.sciences-po.fr/fork?http://www.doctrinal.fr/doctrinal/LoginDoctrinalPlus.do zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 3461 bno. 1 (2005) -....cParisdMagasins/AnnexeeP 4° 7142 aZPAY aDEW 34601186nas 2200325 i 450 002001100000005001700011011001400028035001500042100004100057101000800098102000700106110001600113200003100129210003500160300007200195326001100267530003100278606007000309606005400379712005700433801002100490856003700511856005900548955013400607955005500741972000900796992002300805992001600828992001600844000010581520130328150227.01 a0098-4752 aFNSP449677 a19900101a19759999 ba0 aeng aUS aaku 14aThe Condition of education aWashington, D.C.cUSGPOd1975- a2011, dernière éd. papier, voir ensuite en version électronique. aAnnuel04aThe Condition of education aFormation professionnelleyEtats-UnisxStatistiquesxPériodiques aEducationyEtats-UnisxStatistiquesxPériodiques02aEtats-UnisbNational Center for Education Statistics 3aFRbCCN0098-47524 uhttp://nces.ed.gov/programs/coe/4 zTexte intégral des deux dernières éditions en ligne1 bvol. 1- 2 (1981) ; vol. 1-2 (1983) -(1987) ; vol. 2 (1988) ; vol. 1-2 (1989) -vol. 1-2 (1991)cParisdMagasins/AnnexeeP 8° 47961 b(1992) -(2011)cParisdMagasins/AnnexeeP 4° 6293 aZPAY aGEO RC2 Etats-Unis aDEW 370-379 aDEW 310-31901398nas0 2200337 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123110001600141200013100157210004700288300004300335326001500378530006200393606003600455606004400491606003900535607002600574710018100600801003000781856007600811856007100887955007000958992001201028992002001040121598942000113077820130319051224.01 a1870-3569 a0001130778 a20080218a20059999k y0frey0103 ba0 aspa aMX ay 0  aaja p 0 10aConfines de relaciones internacionales y ciencia politicafInstituto tecnologico y de estudios superiores (Monterey, Méxique) aMontereycTecnológico de Monterreyd2005- aDemande de numérotation ISSN en cours aSemestriel00aConfines de relaciones internacionales y ciencia politica aScience politiquexPériodiques aRelations internationalesxPériodiques aSociologie politiquexPériodiques aMexiquexPériodiques10aInstituto tecnológico y de estudios superioresc(Monterrey, Mexique)bDivision de humanides y ciencias socialesbDepartamento de relaciones internacionales y ciencia política 3aFRbAbesc20080218gAFNOR4 uhttps://acces-distant.sciences-po.fr/fork?http://confines.mty.itesm.mx/ zContenu : accès au texte intégral depuis le n° 1 (Janvier 2005)1 bvol. 1 no. 1 (jan-2005) -....cParisdMagasins/AnnexeeP 4° 7214 aDEW 327 aGEO RD1 Mexique01664cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200008100180207003100261210007300292300004500365326001800410430004000428606003900468606002500507710005600532801003000588801002300618802000700641856020100648856010800849856010900957856010801066955007101174972000901245992001201254093435525000096695120130319051225.01 a0738-8942 aissn07388942 a0000966951 a19820111a19809999k y1frey0103 ba0 aeng aUS a 0  ar aaha 0uu 10aConflict management and peace scienceejournal of thefPeace Science Society 0aVol. 5, no. 1 (Fall 1980)- aIthaca, N.YcWorld University Division, World Research Centerd1980- aPublié dorénavant par Taylor & Francis a5 n°s par an 1tJournal of peace sciencex0094-3738 aGestion des conflitsxPériodiques aGuerrexPériodiques02aSociété internationale pour la science de la paix 3aFRbAbesc20051205gAFNOR 3aFRbISSNc20051021 a014 uhttps://acces-distant.sciences-po.fr/fork?http://web.ebscohost.com/ehost/detail?vid=1&hid=6&sid=956db500-2ab9-434c-ae69-e69b2076c917%40sessionmgr4&bdata=JnNpdGU9ZWhvc3QtbGl2ZQ%3d%3d#db=sih&jid=A9P zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713669203db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 22 no. 1 (mar-2005) -....cParisdMagasins/AnnexeeP 8° 6885 aZSAB aDEW 32700796nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004700154210003900201326001500240606003700255606003500292856003600327856004500363955007100408972000900479991001800488992001200506040563677000023685920130605133446.01 a1283-1255 aFNSP837491 a0000236859 a19900101b19972009 ba0 afre aFR aaja 00aConflits actuelserevue d'étude politique aPariscConflits actuelsd1997-2009 aSemestriel aMouvements sociauxxPériodiques aConflits sociauxxPériodiques4 uhttp://www.conflits-actuels.com zContenu : sommaires depuis le n°1, 19971 bno. 1 (1997) -no. 23/24 (2009)cParisdMagasins/AnnexeeP 8° 6374 aZCAD aexempb201207 aDEW 30301146nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210002800188326001600216517003100232607004300263676000800306856023900314856008400553955006600637955006300703972000900766991001800775992002700793992001200820039904334000005239820130712091341.01 a1148-2664 aFNSP251748 a0000052398 a19900101a19919999 ba0 afre aFR aaha 00aConfluences en Méditerranée aPariscHarmattand1991- aTrimestriel10aConfluences Méditerranée aMéditerranée (région)xPériodiques a9394 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-confluences-mediterranee.htmzAccès local au texte intégral depuis 2001 pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.confluences-mediterranee.comzSommaires depuis le n°1, automne 19911 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9391 bno. 1 (aut-1991) -....cParisdMagasins/AnnexeeP 8° 5778 aZCAD aexempb201111 aGEO RL4 Méditerranée aDEW 90901141nas0 2200349 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123110001600141200003600157207001900193210004000212326001600252430005000268607006900318607006500387607003300452710002600485801003000511801002100541856005300562856006200615955006400677972000900741992002500750992001600775113271972000108115720130319051226.01 a1955-7337 a0001081157 a20070314a20079999k z0frey0103 ba0 afre aFR a 0  aahakz 0 010aConfrontations Europeela revue 0aN° 77 (2007)- aPariscConfrontations Europed2007- aTrimestriel 1tLa lettre de Confrontations Europex1771-3560 aPays de l'Union européennexPolitique économiquexPériodiques aPays de l'Union européennexPolitique socialexPériodiques aEuropexUnitéxPériodiques02aConfrontations Europe 3aFRbAbesc20070314gAFNOR 3aFRbBNc140320074 uhttp://www.confrontations.org/spip.php?rubrique9 zContenu: sommaires et texte intégral des 3 derniers n°s1 bno. 77 (jan-2007) -....cParisdMagasins/AnnexeeP 4° 6201 aZGRA aGEO RA4.06 France 01 aDEW 944.08301227nas 2200325 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101110001600108200003000124210004900154326002200203430003700225452005000262517003200312530003000344601003900374606004200413710007400455801002100529856021400550955007500764972000900839991001800848992002300866992001200889039696596000001480920130613171426.01 a0734-3469 a19900101a19829999 ba0 aeng aUS aaju 10aCongress & the Presidency aWashington, D.C.cAmerican Universityd1982- aTrois n°s par an 1aCongressional studiesx0194-4053 1tCongress & the presidency (Online)x1944-105310aCongress and the Presidency00aCongress & the presidency02aEtats-UnisbCongressxPériodiques aPrésidentsyEtats-UnisxPériodiques02aCenter for Congressional and Presidential Studiesc(Washington, D.C.) 3aFRbCCN0734-34694 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t905131667db=allzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 1 (hiv-1981/1982) -....cParisdMagasins/AnnexeeP 8° 3167 aZSAB aexempb201004 aGEO RC2 Etats-Unis aDEW 32800985nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004200154210005700196320005200253326001700305440002600322517004500348517002100393601003900414606004200453801002100495856002300516955009700539992002300636992001200659036239348000001487920130319051227.01 a0010-5910 aFNSP140939 a0000014879 a19900101b19561998 ba0 aeng aUS aa u 10aCongressional quarterly weekly report aWashington, D.C.cCongressional Quarterlyd1956-1998 aindexannuel relié avec l'année correspondante aHebdomadaire 1tCQ weekly,x1521-599710aCQ congressional quarterly weekly report10aCQ weekly report02aEtats-UnisbCongressxPériodiques aPrésidentsyEtats-UnisxPériodiques 3aFRbCCN0010-59104 uhttp://www.cq.com/1 bvol. 24 no. 1 (7 jan-1966) -vol. 56 no. 15 (11 avr-1998)cParisdMagasins/AnnexeeP 4° 2179 aGEO RC2 Etats-Unis aDEW 32801013nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000590015421000260021330000840023932600120032351700160033560600420035171000160039380100210040985601210043085600360055195500710058797200090065899100180066799200140068503955483X000000424420130319051227.01 a0338-9162 aFNSP105211 a0000004244 a19900101a19719999 ba0 afre aFR aafu 10aConjonctureeBulletin économique de la banque Paribas aPariscParibasd1971- an'a pas paru en avril et mai 2000 à la suite de la fusion entre BNP et Paribas aMensuel10aConjoncture aConjoncture économiquexPériodiques02aBNP Paribas 3aFRbCCN0338-91624 uhttp://economic-research.bnpparibas.com/applis/www/RechEco.nsf/navigation/FrameMainInter?OpenDocument&Lang=FR&Mode=6 zAccès libre au texte intégral1 bvol. 11 no. 1 (jan-1981) -....cParisdMagasins/AnnexeeP 8° 4459 aZGRA aexempb200911 aDEW 330.901057nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012310600060014111000160014720001030016320700220026621000570028832600120034543000290035760600450038667600080043171000430043980100130048285600460049585600560054195500760059797200090067399200250068299200120070707731333X000061999120130319051227.01 a1767-3356 a0000619991 a a20049999 fre 01 ba0 afre aFR a 0  ar aaf z 0 10aConnaissance de l'emploiele 4 pages du centre d'études de l'emploifCentre d'études de l'emploi 1aN°1 (mars 2004)- aNoisy -le-GrandcCentre d'études de l'emploid2004- aMensuel 1t4 pages (Noisy-le-Grand) aMarché du travailyFrancexPériodiques a33102aCentre d'études de l'emploic(France) 0aFRbFNSP4 uhttp://www.cee-recherche.fr/fr/c_pub2.htm zContenu : texte intégral depuis le n°1, mars 20041 bno. 1 (mar-2004) -no. 60 (dec-2008)cParisdMagasins/AnnexeeP 4° 6418 aZGRA aGEO RA4.06 France 01 aDEW 33100964nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000130001502070024002802100057003042300024003613260012003856060045003976760008004427100043004508010013004938560046005068560056005529550005006089920025006139920012006380001161289000116128920130319051227.0 a0001161289 a a20049999k fre 01 ba0 afre aFR ar aaf z  adr 10aConnaissance de l'emploib[Ressource électronique]ele 4 pages du Centre d'études de l'emploifCentre d'études de l'emploi 1aaN°1 (mars 2004)- aNoisy -le-GrandcCentre d'études de l'emploid2004- aRevue électronique aMensuel aMarché du travailyFrancexPériodiques a33102aCentre d'études de l'emploic(France) 0aFRbFNSP4 uhttp://www.cee-recherche.fr/fr/c_pub2.htm zContenu : texte intégral depuis le n°1, mars 20041 r aGEO RA4.06 France 01 aDEW 33101009nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009500154210002300249326001500272530002200287606003000309606002900339710006700368801002100435856009000456856004200546955006900588972000900657991001800666992001100684039541193000001761120130606144414.01 a0337-3126 aFNSP148081 a0000017611 a19900101a19729999 ba0 afre aFR aaja 10aConnexionsepsychosociologie, sciences humainese[revue trimestrielle publiée par l'ARIP] aPariscARIPd1972- aSemestriel10aConnexionsbParis aPsychologiexPériodiques aSociologiexPériodiques02aAssociation pour la recherche et l'intervention psychologiques 3aFRbCCN0337-31264 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-connexions.htm? zAccès aux sommaires et aux résumés1 bno. 26 (1978) -no. 98 (2012)cParisdMagasins/AnnexeeP 8° 4594 aZPAY aexempb201003 aDEW 1500922nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002700139210002400166326001100190530002700201606003800228710007400266801002100340856018300361955005900544972000900603991001800612992001400630039302687000001762420130528170136.01 a0251-3633 aFNSP148107 a19900101a19719999 ba0 afre aCH aaju 10aConscience et liberté aBernecAIDLRd1971- aAnnuel00aConscience et liberté aLiberté religieusexPériodiques02aAssociation internationale pour la défense de la liberté religieuse 3aFRbCCN0251-36334 uhttp://www.libertereligieuse.com/index.php?cat=consciencezContenu : Sommaire et texte intégral depuis le n°59, 2000 (sauf dernier numéro) (un fichier par numéro de la revue)1 bno. 1 (1971) -....cParisdMagasins/AnnexeeP 8° 3027 aZPAY aexempb201106 aDEW 20-2901433cas0 2200433 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164105001800171106000600189110001600195200006900211210002900280215003100309300007200340305006000412321004500472321001000517321008400527326000900611530002800620531001700648700004500665801003000710801002300740801001300763802000700776856011900783945001100902955005100913991003500964039087182000111983220130319051228.0 a2016-7741 a083050949 accn7113/7408 aissn20167741 a0001119832 a19890630b18491851m y0frey0103 ba0 afre aFR ay  ar aafu uu 13aLe Conseiller du peupleejournal mensuelfpar M. A. de Lamartine aParisc[s.n.]d1849-1851 a2 vol. (588, 456 p.)$25 cm aTous les n° comprennent une partie intitulée "Almanach politique" aEléments repris par "Les Foyers du peuple" (1851-1852) aCatalogue collectif des périodiques, II aHatin aTalvart & Place, Bibliographie des auteurs modernes de langue française, t. 11 aMens03aLe Conseiller du peuple 0aCons. peuple 1aLamartinebAlphonse def(1790-1869)4070 3aFRbAbesc20071003gAFNOR 3aFRbISSNc20070706 0aFRbFNSP a074 uhttp://gallica.bnf.fr/ark:/12148/bpt6k27867jzAccès libre au texte intégral. Année 1850 numérisée sur Gallica bE.14911 b(1849)-(1851)cParisdMagasins/AnnexeeRE.1491 anumer0 (complément gallica ?)01167cas0 2200373 450 001001000000002001100010005001700021011001400038035001400052035001400066035001700080035001800097035001700115035001500132100004100147101000800188102000700196105001800203106000600221110001600227200006100243207005900304210003800363530003500401607006300436676000800499801003000507801001800537801002300555801001300578802000700591856014400598955005100742038758075000114081620130319051229.0 a1246-6131 a094564639 a045328382 accn1246-6131 afrBN015779027 aissn12466131 a0001140816 a19931005b18181820uuuy0frey0103 ba0 afre aFR ay  ar aacu uu 13aLe Conservateurele roi, la charte et les honnêtes gens 0aVol. 1, n° 1 (1818, oct.)-vol. 6, n° 78 (1820, mars) aPariscLe Normant filsd1818-182013aLe Conservateurb(Paris. 1818) aFrancexPolitique et gouvernementz1814-1830xPériodiques a944 3aFRbAbesc20060707gAFNOR 3aFRbBNgAFNOR 3aFRbISSNc20051021 0aFRbFNSP a074 uhttp://gallica.bnf.fr/ark:/12148/cb32747421f/date.r=.langFRzAccès libre au texte intégral. Années 1818 à 1820 numérisées sur Gallica1 bvol. 1 (1818)cParisdMagasins/AnnexeeRH.015301714cas0 2200469 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150110001600157200001700173210008200190210002800272304007100300326001600371423004400387430006600431517004200497517002400539530002600563606005000589606005200639607005000691607004600741676001100787710008700798801003000885801003000915801002300945802000700968856006200975856003601037955007801073955005901151992002201210992001201232037437674000063249820130319051229.0 a0010-6593 accn0010-6593 aissn00106593 a0000632498 a19960207b19581986 0fre 0103 ba0 afre aFR aah 10aConsommation aPariscCentre de recherche et de documentation sur la consommationd1958-1986 aPariscDunodd1985-1986 aTitre à partir de 1980 : "Consommation : revue de socioéconomie" aTrimestriel 1tConsommation et modes de viex0295-9976 1tAnnales de recherches et de documentation sur la consommation10aConsommationerevue de socioéconomie10aCREDOC consommation10aConsommationb(Paris) aEnquêtes sociologiquesyFrancexPériodiques aCoût et niveau de la vieyFrancexPériodiques aFrancexConditions économiquesxPériodiques aFrancexConditions socialesxPériodiques a381.3202aCentre de recherche pour l'étude et l'observation des conditions de viec(France) 3aFRbAbesc20040606gAFNOR 3aFRbAbesc20040606gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.credoc.fr/publications/abstract.php?ref=CMV114 zAccès libre au texte intégral1 bvol. 5 no.1(1958)-vol. 31 no. 4 (1984)cParisdMagasins/AnnexeeP 8°16651 bno. 1 (1985)-no. 4 (1986)dMagasins/AnnexeeP 4 °5064 aGEO RA4.06 France aDEW 33901146nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200011500139210002500254326001200279606005000291606005100341607004600392710008700438856003500525856009100560955007700651957007000728972000900798992002500807992001200832039480844000001615420131002143237.01 a0295-9976 aFNSP144264 a19901029a19859999 ba0 afre aFR aafa 10aConsommation et modes de viefCREDOC, Centre de recherche pour l'étude et l'observation des conditions de vie aPariscCREDOCd1985- aMensuel aSociologie du quotidienyFrancexPériodiques aConsommateursyFrancexAttitudesxPériodiques aFrancexConditions socialesxPériodiques02aCentre de recherche pour l'étude et l'observation des conditions de viec(France) 4uhttp://www.credoc.fr/index.php zContenu : résumés depuis le no. 1, 1985 et texte intégral depuis le n° 111 de 19961 bno. 1 (mar-1985) -no. 214 (aou-2008)cParisdMagasins/AnnexeeP 4° 50771 bno. 1 (1985) -no. 52 (1990)cParisdMagasins/AnnexeeP Index 0655 aZGRA aGEO RA4.06 France 01 aDEW 33901425nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007900154210002900233300007600262326002300338326002800361530003400389606003600423606004000459856012800499856010800627856010100735856010800836955010000944972000901044991001801053992001601071036738719000012909720130319051229.01 a1351-0487 aFNSP525728 a0000129097 a19940607a19949999 ba0 aeng aGB aaha 10aConstellationsean international journal of critical and democratic theory aOxfordcBlackwelld1994- aReprend partiellement des éléments de Praxis international$x0260-8448 aTrimestrielb1998- a3 nos par anb1994-199710aConstellationsbOxford. Print aScience politiquexPériodiques aPhilosophie politiquexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=7QP&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100823 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (avr-1994) -....cParisdMagasins/AnnexeeP 8° 6034wManque : vol. 5, no. 2, 1998 aZCAD aexempb201207 aDEW 320-32101028nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210005800191326002300249326002900272606005000301606006000351606003700411710005400448856004500502856005800547955007000605972000900675991001800684992001200702040260771000005535020130319051231.01 a1043-4062 aFNSP259448 a0000055350 a19900101a19909999 ba0 aeng aUS aaha 10aConstitutional political economy aFairfax, VAcCenter for Study of Public Choiced1990- aTrimestrielb1996- a3 n°s par anb1990-1995 aEconomie politique et politiquexPériodiques aDroit constitutionnelxAspect économiquexPériodiques aEconomie politiquexPériodiques02aCenter for Study of Public Choicee(Fairfax, Va.)4 uhttp://www.wkap.nl/jrnltoc.htm/1043-4062 zContenu : sommaires depuis le vol. 6, n°1, hiv. 19951 bvol. 1 no. 1 (hiv-1990) -....cParisdMagasins/AnnexeeP 8° 5787 aZSAB aexempb201109 aDEW 33000924nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000109001502100055002592300024003143260022003386060037003606060037003976060044004348010013004788560031004918560072005229550005005949920012005999920011006110001162421000116242120130319051232.0 a0001162421 a a20029999k fre 01 ba0 afre aFR ar aai z  adr 10aConstructifb[Ressource électronique]eles contributions du Bâtiment aux grands débats de notre temps aPariscFédération française du bâtimentd2002- aRevue électronique atrois fois par an aProblèmes sociauxxPériodiques aVie intellectuellexPériodiques aRelations internationalesxPériodiques 0aFRbFNSP4 uhttp://www.constructif.fr/ zContenu : texte intégral des articles depuis le n°1, janvier 20021 r aDEW 300 aGEO RQ00808nls 2200253 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000057001502070047002072300024002546060046002788010013003248560072003378560108004099920012005179920025005290000994385000099438520130319051233.0 a0000994385 a a20049999k fre 01 ba0 afre aFR ar aaz z  adr 10aConstruction et urbanismeb[Ressource électronique] 1aParis :$cLexisNexis Jurisclasseur :$c2004- aRevue électronique aConstructionxDroityFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aDEW 340 aGEO RA4.06 France 0100905nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005600154210002700210326001600237517001800253530002900271606002700300607003500327856006000362856004200422955006600464972000900530991001800539992002200557992001200579013626833000024888720130319051233.01 a1127-3070 aFNSP871838 a0000248887 a19900101a19989999 ba0 aita aIT aaha 00aContemporaneaerivista di storia dell'800 e del'900 aBolognacMulinod1998- aTrimestriel10aContemporanea10aContemporaneab(Bologna) aHistoirexPériodiques aItaliexHistoirexPériodiques4 uhttp://www.mulino.it/edizioni/riviste/contemporanea.htm zContenu : sommaire du dernier numéro1 bvol. 1 no. 1 (1998) -....cParisdMagasins/AnnexeeP 8° 6395 aZECH aexempb201301 aGEO RA6.03 Italie aDEW 94501143nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210002400187326001600211430003500227607004700262607003400309856005600343856006000399856010900459856010800568955007100676972000900747991001800756992003100774992001200805036750743000020712720130319051234.01 a1361-9462 aFNSP751525 a0000207127 a19900101a19969999 ba0 aeng aGB aaha 10aContemporary British history aLondoncCassd1996- aTrimestriel 1aContemporary recordx0950-9224 aGrande-Bretagnez20e sièclexPériodiques aGrande-BretagnexPériodiques4 uhttp://www.tandf.co.uk/journals/titles/13619462.asp zContenu : sommaires et résumés depuis le vol.11, n°44 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713634559db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 10 no. 1 (mar-1996) -....cParisdMagasins/AnnexeeP 8° 6295 aZSAB aexempb201302 aGEO RA4.02 Grande-Bretagne aDEW 94101092nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000033001552100036001883260016002244300058002406060040002986070052003387100047003908560128004378560108005659550071006739720009007449920023007539920014007760000118430000011843020130319051234.01 a1074-3529 aFNSP490269 a0000118430 a19940216a19949999 ba0 aeng aUS aaha 10aContemporary economic policy aLong Beach, Calif.cWEAId1994- aTrimestriel 1aContemporary policy issues (0735-0007) < P 8° 4632 > aPolitique économiquexPériodiques aEtats-UnisxPolitique économiquexPériodiques02aWestern Economic Association International4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=CEY&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 12 no. 1 (jan-1994) -....cParisdMagasins/AnnexeeP 8° 4632 aZGRA aGEO RC2 Etats-Unis aDEW 338.901119nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210004900188326002300237326002800260607003600288607003800324856004200362856005300404856010100457856010800558955007000666972000900736991001800745992001800763992001200781040094820000006463720140107174216.01 a0960-7773 aFNSP296996 a0000064637 a19900101a19929999 ba0 aeng aGB aaia 00aContemporary European history aCambridgecCambridge University Pressd1992- aTrimestrielb2002- a3 nos par anb1992-2001 aEuropez1789-1900xPériodiques aEuropez20e sièclexPériodiques4 uhttp://uk.cambridge.org/journals/ceh/ zContenu : sommaires depuis le vol. 5, n°1, 19964 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=103531 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1992) -....cParisdMagasins/AnnexeeP 8° 5813 aZPAY aexempb201112 aGEO RA Europe aDEW 94001193nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002300139210004400162326001100206430004100217517003600258530004500294606003600339710007700375801002100452856027000473955007000743972000900813991001800822992002300840992001600863039091880000000631220131007172528.01 a0147-1694 aFNSP110034 a19900101a19779999 ba0 aeng aUS aaku 10aContemporary Jewry aNew Brunswick, N.J.cTransactiond1977- aAnnuel 1aJewish sociology and social research10aJournal of sociological inquiry10aContemporary Jewry (Online), $x1876-5165 aJuifsyEtats-UnisxPériodiques02aAssociation for the Social Scientific Study of Jewry (New London, Conn.) 3aFRbCCN0147-16944 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=LK1&site=ehost-livezAccès local au texte intégral à partir de 1976 pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 7 (1986) -vol. 28 (2008)cParisdMagasins/AnnexeeP 8° 5112 aZPAY aexempb201106 aGEO RC2 Etats-Unis aDEW 305-30600892nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003400163210004300197326002300240326002900263517000800292606003600300801001300336856008300349856006300432955007000495972000900565992001600574067775489000052359820130319051234.01 a1470-8914 a0000523598 a a20029999k fre ba0 aeng aGB a 0  ar aah z 0 10aContemporary political theory aBasingstokecPalgrave Macmilland2002- aTrimestrielb2005- a3 n°s par anb2002-200410aCPT aScience politiquexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.palgrave-journals.com/cpt zContenu : sommaires, résumés depuis le vol.1, n°1, 20021 bvol. 1 no. 1 (mar-2002) -....cParisdMagasins/AnnexeeP 8° 6676 aZSAB aDEW 320-32101048nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210002800180326001600208530004100224606003600265856005700301856005800358856010900416856010800525955007000633972000900703991001800712992001600730058169881000024573320130319051234.01 a1356-9775 aFNSP863695 a0000245733 a19900101a19959999 ba0 aeng aGB aaha 10aContemporary politics aAbingdoncCarfaxd1995- aTrimestriel 0aContemporary politicsbLondon. Print aScience politiquexPériodiques4 uhttp://www.tandf.co.uk/journals/carfax/13569775.html zContenu : sommaires depuis le vol. 3, n°1, mars 19974 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713411554db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 1 (mar-1997) -....cParisdMagasins/AnnexeeP 8° 6390 aZSAB aexempb201211 aDEW 320-32101030nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003300139210003600172326001700208430002900225530003300254606004400287606002800331606003800359856010900397856010800506955007100614972000900685991001800694992001600712036740055000013266620130911151947.01 a1352-3260 aFNSP538281 a19940720a19949999 ba0 aeng aGB aaia 10aContemporary security policy aLondon‎cFrank Cass‎d1994- a3 nos par an 1aArms control,x0144-038110aContemporary security policy aSécurité internationalexPériodiques aArmementsxPériodiques aPolitique militairexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713634773db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 15 no. 1 (avr-1994) -....cParisdMagasins/AnnexeeP 8° 4412 aZSAB aexempb201309 aDEW 355-35901265nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000067001502100063002173000098002803260014003783360058003923370063004504520053005136060029005668010013005958560090006088560128006988560108008269550005009349920012009390000487128000048712820130319051234.0 a0000487128 a a19729999k fre 01 ba0 aeng aUS az aae z  adr 10aContemporary sociology (Washington)b[Ressource électronique] aWashington, D.C.cAmerican sociological Associationd1972- aAccès au texte intégral (réservé aux sites de Sciences Po) jusqu'aux 5 dernières années aBimensuel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tContemporary sociology (Washington)x(0094-3061) aSociologiexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00943061.html4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=CSC&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aDEW 30101193nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210002800182320002600210326002300236326002800259607003000287856009600317856010800413856010900521856010800630955006600738972000900804991001800813992002400831992001200855040090760000007167720140108125642.01 a0958-4935 aFNSP328301 a0000071677 a19900101a19929999 ba0 aeng aGB aaha 10aContemporary South Asia aAbingdoncCarfaxd1992- aN' a pas paru en 2007 aTrimestrielb2003- a3 nos par anb1992-2002 aAsie du SudxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=tru zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713411866db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1992) -....cParisdMagasins/AnnexeeP 8° 5870 aZSAB aexempb201112 aGEO RI1 Asie du Sud aDEW 95401100nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003200139210002800171326002400199326002700223452004100250530003200291607003400323710005400357801002100411856010400432955006600536957010500602972000900707991001800716992002800734992001200762039031454000002061220140108125837.01 a0129-797X aFNSP156014 a19900101a19799999 ba0 aeng aSG aaia 10aContemporary Southeast Asia aSingaporecISEASd1979- a3 nos par anb1998- aTrimestrielb1979-1997 1tContemporary Southeast Asia (Online) aContemporary Southeast Asia aAsie du Sud-EstxPériodiques02aInstitute of Southeast Asian Studiesc(Singapour) 3aFRbCCN0129-797X4 uhttp://muse.jhu.edu/journals/csa/zAccès aux sommaires et résumés depuis le vol. 25, no. 1, 20031 bvol. 6 no. 4 (1985) -....cParisdMagasins/AnnexeeP 8° 49271 bvol. 1 (1979) -vol. 15 (1994) ; vol. 15 (1995) -vol. 20 (1998)cParisdMagasins/AnnexeeP Index 0652 aZSAB aexempb201106 aGEO RI2 Asie du Sud-Est aDEW 95901250nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200011200154210005200266300009600318326001100414423007200425606004600497606005500543676000800598710005000606856013300656856003600789955005300825972000900878992002500887992001200912092388809000020702520130319051234.01 a1958-4210 aFNSP751329 a0000207025 a19900101a19949999 ba0 afre aFR aaka 10aContentieux des réfugiésejurisprudence du Conseil d'État et de la Commission des recours des réfugiés aPariscCentre d'information contentieused1994- aContient la Jurisprudence du Conseil d' Etat et de la Commission des recours des réfugiés aAnnuel 11aContentieux des réfugiés (Montreuil-sous-Bois. 1998)x1958-4229 aDroit administratifyFrancexPériodiques aRéfugiésxStatut juridiqueyFrancexPériodiques a32502aFrancebCommission des recours des réfugiés4 uhttp://www.commission-refugies.fr/centre_recherche_18/jurisprudence_25/recueils_annuels_jurisprudence_162/recueil_2006_2172.html zAccès libre au texte intégral1 b(1993) -....cParisdMagasins/AnnexeeP 4° 6779 aZGRA aGEO RA4.06 France 01 aDEW 34201049nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004800163207003100211210005600242326001600298530003200314606003600346710003800382801001300420856010300433856010800536955007000644972000900714992001200723076794180000060116320130319051235.01 a1536-5042 a0000601163 a a20029999 fre 01 ba0 aeng aUS a 0  ar aah z 0 10aContextsfAmerican Sociological Association 1aVol.1, n°1 (Summer 2002)- aBerkeley, CAcUniversity of California Pressd2002- aTrimestriel00aContexts (Berkeley, Calif.) aSciences socialesxPériodiques02aAmerican Sociological Association 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=111065 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 1 (hiv-2004) -....cParisdMagasins/AnnexeeP 4° 7021 aZPAY aDEW 30000961nls 2200313 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000066001642100056002302300005002863000103002913260016003943360071004103370018004816060036004997100038005358010013005738560044005869550005006309920012006350000601166000060116620130319051235.02 a1537-6052 a0000601166 a a20029999k fre 01 ba0 aeng aUS az aah z  adr 10aContexts (Berkeley, Calif. Online)b[Ressource électronique] aBerkeley, CAcUniversity of California Pressd2002- a aSommaires, résumés et selection d'articles en texte intégral depuis le vol.1, n°1, Summer 2002 atrimestriel aDonnées textuelles ou numériques accessibles uniquement en ligne aFichiers HTML aSciences socialesxPériodiques02aAmerican Sociological Association 0aFRbFNSP4 uhttp://www.contextsmagazine.org/faq.php1 r aDEW 30000886nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210004400188326001600232430003000248606003000278856004900308856009400357955007100451972000900522991001800531992003300549992001400582036887072000025488220130319051235.01 a1387-2842 aFNSP889531 a0000254882 a19900101a19989999 ba0 aeng aNL aaha 10aContinental philosophy review aDordrechtcKluwer Academic Publ.d1998- aTrimestriel 1aMan and world,x0025-1534 aPhilosophiexPériodiques4 uhttp://www.wkap.nl/journalhome.htm/1387-2842 zContenu : texte intégral depuis le vol. 1 no. 1, 1968 et résumés pour les nos récents1 bvol. 31 no. 1 (jan-1998) -....cParisdMagasins/AnnexeeP 8° 2581 aZSAB aexempb201104 aGEO RS Sans aspect régional aDEW 10-1400867nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000065001502070047002152100005002622300024002673260005002916060046002968010013003428560072003558560108004279550005005359920012005409920025005520000994386000099438620130319051236.0 a0000994386 a a20049999k fre 01 ba0 afre aFR ar aaz z  adr 10aContrats concurrence consommationb[Ressource électronique] 1aParis :$cLexisNexis Jurisclasseur :$c2004- a aRevue électronique a aObligations (droit)yFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aDEW 340 aGEO RA4.06 France 0100910nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000060001502070046002102100005002562300024002616060050002856060050003358010013003858560072003988560108004709550005005789920012005839920025005950000994387000099438720130319051236.0 a0000994387 a a20049999k fre 01 ba0 afre aFR ar aaz z  adr 10aContrats et marchés publicsb[Ressource électronique] 1aParis :$cLexisNexis Jurisclasseur,$d2004- a aRevue électronique aContrats administratifsyFrancexPériodiques aMarchés publicsxDroityFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aDEW 342 aGEO RA4.06 France 0101159nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200009900163207004900262210003100311210003000342326002300372326002800395434004400423530003100467606004500498606002700543801001300570856005600583856007500639955007200714972000900786992001400795061095850000039805620130504114610.01 a1633-597X a0000398056 a a20019999k fre ba0 afre aFR a 0  ar aai z 0 10aContretempse[nouvelle revue thématique à la rencontre des courants de radicalité critique] 1ano 1 (2001)-no 21 (2008) ; n.s. no 1 (2009)- aPariscEd. Syllepsed2009- aPariscTextueld2001-2008 aTrimestrielb2009- a3 nos par anb2001-2008 1tCritique communiste (Paris),x0398-206810aContretempsb(Paris. 2001) aGauche (science politique)xPériodiques aMarxismexPériodiques 0aFRbFNSP4 uhttp://www.editionstextuel.com/index.php?cat=020362 zContenu : sommaires et présentation des thèmes depuis le no. 1, 20011 bno. 1 (mai-2001) -no. 20 (2007)cParisdMagasins/AnnexeeP 8° 6573 aZCAD aDEW 320.501596nas 2200373 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320001570013921000270029632600250032332600260034832600220037442101180039653000380051460600350055271000900058771100420067780100210071985601080074085601080084895501230095695500670107997200090114699100170115599100180117299200200119099200120121003884799X000001497720130703181236.01 a0069-9667 aFNSP141113 a19900101a19579999 ba0 aeng aIN aaiu 10aContributions to Indian sociologyfEcole pratique des hautes études, 6e sectiongInstitute of economic growthgfondée par Louis Dumont et David Pocock aNew DelhicSaged1957- a3 n°s par anb1999- aSemestrielb1975-1998 aAnnuelb1957-1972 1tContributions to Indian sociology. Occasional studiesbTexte imprimécNew DelhinVikas Publishing Housed[197?]-00aContributions to Indian sociology aSociologieyIndexPériodiques02aEcole pratique des hautes étudesc(Paris)bSection sciences économiques et sociales02aInstitute of Economic Growthc(Delhi) 3aFRbCCN0069-96674 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 9 no. 1 (jan-1975) -vol. 35 no. 3 (sep-2001) ; vol. 39 no. 1 (jan-2005) -....cParisdMagasins/AnnexeeP 8° 40661 bno. 1 (1967) -no. 8 (1974)cParisdMagasins/AnnexeeCOL8°2776 aZSAB aPériobTP02 aexempb201001 aGEO RI1.13 Inde aDEW 30101135nas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200010100162210003800263326001500301606004600316606004000362606003600402710013400438801003000572801002300602802000700625856003600632856003600668955007000704972000900774992001400783110206908000103507720130319051236.01 a1807-9326 aissn18079326 a0001035077 a20061024a20059999 0frey0103 ba0 apor aBR ar aaj 10aContributions to the history of conceptsfInstituto universitario de pesquisas do Rio de Janeiro aRio de Janeiro, RJcIUPERJd2005- aSemestriel aIdées politiquesxHistoirexPériodiques aPhilosophie politiquexPériodiques aScience politiquexPériodiques02aInstituto universitário de pesquisas do Rio de JaneirobGrupo de pesquisa em história dos conceitos e teoria política e social 3aFRbAbesc20061024gAFNOR 3aFRbISSNc20051001 a0k4 uhttp://contributions.iuperj.br/4 zAccès libre au texte intégral1 bvol. 1 no. 1 (mar-2005) -....cParisdMagasins/AnnexeeP 8° 6918 aZPAY aDEW 320.500767nas0 2200265 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003300139207002200172210003800194326001800232606003700250676000800287801003000295856009200325955006300417972000900480992001200489103481109000098493920140109150343.01 a1779-2355 a0000984939 a20060612a20069999k 1frey0103 ba0 afre aFR aaia k 10aControverseserevue d'idées 0aN°1 (mars 2006)- aPariscEditions de l'Eclatd2006- a3 n°s par an aVie intellectuellexPériodiques a001 3aFRbAbesc20060612gAFNOR4 uhttp://www.controverses.fr/articles/articles_index.htmzAccès libre au texte intégral1 bno. 1 (mar-2006) -....cParisdMagasins/AnnexeeP 8° 6898 aZPAY aDEW 00100748nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003000163210003400193326001500227712002900242801001300271856005400284856003600338955007500374972000900449992001200458057922993000038013920130319051238.01 a1623-9172 a0000380139 a b20002002k fre ba0 afre aFR a 0  ar aaj z 0 10aConvictions (Paris, 2000) aPariscConvictionsd2000-2002 aSemestriel02aClub Convictions (Paris) 0aFRbFNSP40uhttp://www.convictions.org/publications/index.htm zAccès libre au texte intégral1 bno. 1 (jun-2000) -no. 4 (fev-2002)cParisdMagasins/AnnexeeP 8° 6551 aZCAD aDEW 32401251nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200011900154210002400273326001600297606004600313676000800359710004500367801002100412856007000433856010800503856010800611856010800719955005900827972000900886991001800895992001200913038693356000001510220140110142747.01 a0010-8367 aFNSP141490 a0000015102 a19900101a19659999 ba0 aeng aGB aaha 10aCooperation and conflictf[published twice a year by the Nordic Committee for the Study of International Politics] aLondoncSaged1965- atrimestriel aCoopération internationalexPériodiques a32702aNordic International Studies Association 3aFRbCCN0010-83674 uhttps://acces-distant.sciences-po.fr/fork?http://cac.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1965) -....cParisdMagasins/AnnexeeP 8° 2171 aZSAB aexempb201105 aDEW 32701565nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004000139210002300179300034500202326001100547430007300558606003500631710010100666856030300767955005501070955005501125972000901180991001801189992004201207992001401249039300994000007722720131002185416.01 a0258-7742 aFNSP350182 a19900101a19729999 f ba0 afre aFR aaka 10aCoopération pour le développement aPariscOCDEd1972- aDe 2000 à 2005, appartient au périodique "Les Dossiers du CAD" dont il adopte la volumaison et dont il constitue une livraison annuelle portant le numéro 1 ; à partir de 2006, appartient au périodique "Revue de l'OCDE sur le développement" dont il adopte la volumaison et dont il constitue une livraison annuelle portant le numéro 1. aAnnuel 1aAide au développement (Comité d'aide au développement)x1727-5709 aAide économiquexPériodiques02aOrganisation de coopération et de développement économiquesbComité d'aide au développement4 uhttps://acces-distant.sciences-po.fr/fork?http://titania.sourceocde.org/vl=337820/cl=19/nw=1/rpsv/cgi-bin/jsearch_oecd?limittitles=&cheese=searchdb&oecd-select=home.htm&form=expert&search0=revue+de+l%27ocde+sur+le+developpement&search=&field0=tka&system=oecd_all&sortresultsby=rev_timestamp&what=d11 b(2005) -(2009)cParisdMagasins/AnnexeeP 4° 71561 b(1972) -(1998)cParisdMagasins/AnnexeeP 8° 5039 aZPAY aexempb201106 aGEO RO Pays en voie de développement aDEW 338.901053nas 2200253 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000029001552070110001842100029002943260012003235300029003358560133003649550086004979550131005839570085007140000098042000009804220130319051240.01 a0994-5563 aFNSP425648 a0000098042 a19900101b18431937 ba0 afre aFR aafa 13aLe Correspondant (Paris) 1aT.1-36, 1843-1855 , n.s. T.1-297, oct.1855-oct.1933 (série générale T.37-333) n.s. n° 1-38, 1935-1937 aPariscWailled1843-1937 aMensuel03aLe Correspondant (Paris)4 uhttp://gallica.bnf.fr/ark:/12148/cb34416007p/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 bvol. 89 no. 4 (nov-1872) -no. 1705 (oct-1933)cParisdMagasins/AnnexeeP 8° 04701 bvol.1 (1843) -vol. 26 (1850) ; (1857) -(1869)cParisdMagasins/AnnexeeP 8° 0470zEn dépôt au CEVIPOF, rue de l'Université1 b(1843/1874), (1875/1900) reliés en 1 vol.cParisdMagasins/AnnexeeP Index 008401525cas0 2200409 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150110001600157200002400173210004500197327004400242423005200286423004800338423004700386430004100433452004700474530004200521606002900563607002500592801003000617801003000647801002300677802000700700856006900707856019200776856010800968955000501076992002201081992001201103036251100000086488920130319051240.01 a1120-4982 accn1120-4982 aissn11204982 a0000864889 a19961217a19599999 y0frey0103 ba0 aita aIT abau uu 10aCorriere della sera aMilanocRCS Editoriale quotidianid1959-10aVersion en ligne uniquement via Factiva 1tLe Copertine del Corriere della serax1129-0870 1tI CD rom del Corriere della serax1129-0358 1tI Libri del Corriere della serax1129-0854 1tNuovo corriere della serax1128-255X 1tIl Corriere della sera (CD-ROM)x1128-256813aIl Corriere della serab(Print. 1959) aActualitéxPériodiques aItaliexPériodiques 3aFRbAbesc20050902gAFNOR 3aFRbAbesc20050902gAFNOR 3aFRbISSNc20000630 a0d4 uhttps://acces-distant.sciences-po.fr/fork?http://www.corriere.it4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b aGEO RA6.03 Italie aDEW 05001000cas0 2200301 450 001001000000002001100010005001700021035001700038035001500055100004100070101001800111102000700129105001800136106000600154110001600160200001500176207002000191210003100211300002500242301004300267530002400310607005800334607005600392801003000448856014500478955005500623991002000678050935763000109461720130319051241.0 accn0105/5704 a0001094617 a19830101b189619 m y0frey0103 ba0 afreaenggfre aFR a 0  ar aauu 0 10aCosmopolis 0aVol.1(1896)-... aPariscA. Colind1896-19?? aRevue internationale aDemande de numérotation ISSN en cours10aCosmopolisb(Paris) aFrancexVie intellectuellez19e sièclexPériodiques aFrancexVie intellectuellez1900-1945xPériodiques 3aFRbAbesc20060307gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb327493131/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1896-1898)1 b(1896) -(1898)cParisdMagasins/AnnexeeP 8° 0794 aPériobTP02 P800925nas 2200289 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200007100148210008400219326001700303530004100320606002900361710005200390801001300442856003900455856005200494955006800546972000900614992001200623069458790000048165920130918153912.01 a1761-5771 a b20022008k fre ba0 afre aFR a 0  ar aai z 0 10aCosmopolitiques‎ecahiers théoriques pour l'écologie politique aLa Tour d'Aigues‎cÉd. de l'Aube‎aParis‎cCosmopolitiques‎d2002-2008 a3 nos par an aCosmopolitiques‎bLa Tour d'Aigues aEcologismexPériodiques02aAssociation des Amis de Cosmopolitiques (Paris) 0aFRbFNSP4 uhttp://cosmopolitiques.phpnet.org/ zContenu : Texte intégral des articles publiés1 bno. 1 (2002) -no. 17 (2008)cParisdMagasins/AnnexeeP 8° 6639 aZCAD aDEW 32000818nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000047001502100034001973360047002316060036002787120052003148010013003668560063003798560070004429550005005129920012005179920011005290001159447000115944720130319051241.0 a0001159447 a a20089999k fre 01 ba0 afre aFR ar aaz z  adr 10aCosmopolitiquesb[Ressource électronique] aPariscCosmopolitiquesd2008- aSite web : accès thématique aux articles aEcologismexRessources Internet02aAssociation des Amis de Cosmopolitiques (Paris) 0aFRbFNSP4 uhttp://cosmopolitiques.phpnet.org/cosmopolitiques/spip.php zContenu : texte intégral d'une sélection d'articles depuis 20061 r aDEW 320 aGEO RQ01121nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200004600138210003500184300010800219326001100327430006800338530004600406606004600452606003600498712003600534801002100570856004200591856005300633955007000686972000900756991001800765992001200783039154777000007127220130329144129.0 a0198-9669 aFNSP326771 a0000071272 a19900101a00019999 ba0 aeng aUS10aCountry reports on human rights practices aWashington, D.C.cUSGPOd0001- aEd. 2006 disponible uniquement en ligne ; 2010 dernière éd. papier, voir ensuite en version en ligne. aannuel 1aReport on human rights pratices in countries receiving U.S. aid00aCountry reports on human rights practices aDroits civils et politiquesxPériodiques aDroits de l'hommexPériodiques02aEtats-UnisbDepartment of State 3aFRbCCN0198-96694 uhttp://www.state.gov/j/drl/rls/hrrpt/4 zContenu : texte intégral du rapport depuis 19991 b(1986)-(2005) ; (2007)-(2010)cParisdMagasins/AnnexeeP 8° 5181 aZPAY aexempb201106 aDEW 32300904nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000107001502070010002572100035002672300028003023260011003306060046003416060036003877100036004238010013004598560092004729550005005649920021005699920012005900001239085000123908520130517155603.0 a0001239085 a a19999999k fre 01 ba0 aeng aUS ar aak z  adr 10aCountry reports on human rights practicesb[Ressource électronique] /Etats-Unis.bDepartment of State 1a1999- aWashington, D.C.cUSGPOd1999- aRessource électronique aAnnuel aDroits civils et politiquesxPériodiques aDroits de l'hommexPériodiques02aEtats-UnisbDepartment of State 0aFRbFNSP4 uhttp://www.state.gov/j/drl/rls/hrrpt/zAccès au texte intégral du rapport depuis 19991 r aGEO RQ Universel aDEW 32301692cas0 2200385 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164105001800171106000600189110001600195200019900211210003600410436010700446436011700553440009900670510009800769530010100867531007400968710005101042801003001093801002301123802000701146830000901153856005701162955007201219991001501291036768316000112748920130319051242.0 a1812-0210 a080068952 accn0110/6872 aissn18120210 a0001127489 a19830101b1931194 k y0frey0103 ba0 amul aNL ay 0  ar aaua 0 10aCour permanente de justice internationalehSérie A/BiArrêts, ordonnances et avis consultatifsd= Permanent Court of International JusticehSeries A/B,iJudgments, orders and advisory opinions aLeydecA.W. Sijthoffd1931-194? 1tPublications de la Cour permanente de justice internationale. Série A. Recueil des arrêtsx1812-0199 1tPublications de la Cour permanente de justice internationale. Série B. Recueil des avis consultatifsx1812-0202 1tReports of judgments, advisory opinions and orders (International Court of Justice)x0074-444110aPermanent Court of International JusticehSeries A/BiJudgments, orders and advisory opinions10aCour permanente de justice internationale. Série A/B. Arrêts, ordonnances et avis consultatifs 0aCour perm. justice int., Sér. A/B, Arrêts ordonnances avis consult.02aCour permanente de justice internationale4070 3aFRbAbesc20050531gAFNOR 3aFRbISSNc20030523 a00 asdy0 uhttp://www.icj-cij.org/pcij/index.php?p1=9&p2=3&p3=21 bno. 40 (1931) -no. 79 (1939)cParisdMagasins/AnnexeeCOL8°1074 AB aPériobTZ00854nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002800139210002900167326003000196517002200226601002500248606002900273606002600302712001100328801002100339856003500360955007300395955006300468972000900531992001200540039379981000001521620130513165452.0 a0304-3118 aFNSP141690 a19900101b19482002 f ba0 afre aFR aafu 13aLe Courrier de l'Unesco aPariscUnescod1948-2001 aMensuel [puis] semestriel10aCourrier - Unesco02aUnescoxPériodiques aEthnologiexPériodiques aCulturexPériodiques02aUnesco 3aFRbCCN0304-31184 uhttp://www.unesco.org/courier/1 bvol. 1 no. 1 (1948) -(déc-1999)cParisdMagasins/AnnexeeP F° 00201 b(jan-2000) -(dec-2001)cParisdMagasins/AnnexeeP 4° 6897 aZECH aDEW 00101020cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001400069035001500083100004100098101000800139102000700147105001800154106000600172110001600178200004700194210006100241326001400302430004400316801003000360801001300390802000700403856003800410856009700448955008700545972000900632992001600641992002500657040221164000045129320130319051242.01 a1252-1574 accn1252-1574 aEvry24450 a0000451293 a19940202a19949999m h0frey0103 ba0 afre aFR a 0  ar aaea 0f 13aLe Courrier des maires et des élus locaux aPariscLe Courrier des maires et des élus locauxd1994- aBimensuel 1tLe Courrier du maire (Paris)x1249-6936 3aFRbAbesc20081203gAFNOR 0aFRbFNSP a074 uhttp://www.courrierdesmaires.com/ zContenu : archives juridiques depuis mars 2003, dossiers et guides et diverses informations.1 bConservation limitée aux 5 dernières annéescParisdMagasins/AnnexeeP 4° 6913 aZPAY aDEW 350-354 aGEO RA4.06 France 0101844nas 2200433 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210005000185300004800235300014100283326002600424326002300450440003000473607004700503607005500550607004800605607005900653607004400712607005100756710009300807801002100900856009100921856010801012955012201120957007401242972000901316992003201325992002001357992001901377992001401396039614905000000403820130319051242.01 a0590-0239 aFNSP104556 a0000004038 a19900101b19642008 ba0 afre aFR aafu 10aCourrier des pays de l'Est aPariscLa Documentation françaised1964-2008 aChange de système de numérotation en 2000 aA l'automne 2008, Le Courrier des pays de l'Est cesse de paraître pour faire place à Grande Europe, une revue exclusivement numérique aBimestrielb2004-2008 aMensuelb1964-2003 1aGrande Europe,x1760-5849 aEx-URSSxCommerce extérieurxPériodiques aEurope de l'estxCommerce extérieurxPériodiques aURSSxConditions économiquesxPériodiques aEurope de l'EstxConditions économiquesxPériodiques aURSSxCommerce extérieurxPériodiques aEx-URSSxConditions économiquesxPériodiques02aCentre d'études et de documentation sur l'URSS, la Chine et l'Europe de l'Estc(France) 3aFRbCCN0590-02394 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue.php?ID_REVUE=CPE zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 38 (sep-1965) -no. 445 (dec-1999) ; no. 1001 (jan-2000) - no. 1066 (mar-2008)cParisdMagasins/AnnexeeP 4° 21901 b(1977) -(1984) ; (1984) -(1988)cParisdMagasins/AnnexeeP Index 0546 aZPAY aGEO RA2.02 Europe orientale aGEO RA7.01 URSS aGEO RA7.03 CEI aDEW 330.901116cas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003000139210008600169326001600255452005600271530004900327606003000376710007800406801002100484830005300505856010100558955007900659972000900738991001800747992002100765992001600786039255468000001498320131004144125.01 a0151-9514 aFNSP141119 a19900101b19772009 ba0 afre aFR aahu 10aCourrier des statistiques aPariscInstitut national de la statistique et des études économiquesd1977-2009 aTrimestriel 1ttCourrier des statistiques (En ligne)‎x2107-090310aCourrier des statistiques‎bEd. française aStatistiquexPériodiques02aInstitut national de la statistique et des études économiquesc(France) 3aFRbCCN0151-9514 a1977-2000 : collection envoyée au CTles en 20134 uhttp://www.insee.fr/fr/ppp/collections.htmzContenu : texte intégral depuis le n°90, juin 19991 bno. 1 (jan-1977) -no. 95/96 (dec-2000)cParisdMagasins/AnnexeeP 4° 4079 aZPAY aexempb201306 aGEO RQ Universel aDEW 310-31901253nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200008100139210002800220326001700248517003400265530008300299606003700382607002700419712007100446801002100517856021500538955006300753957006700816991001800883992002400901992001400925036232556000001528220130921140350.01 a0577-148X aFNSP141845 a19900101a19589999 ba0 afre aBE aaca 10aCourrier hebdomadairefCentre de recherche et d'information socio-politiques aBruxellescCRISPd1958- aHebdomadaire10aCourrier hebdomadaire - CRISP10aCourrier hebdomadaire du Centre de recherche et d'information socio-politiques aProblèmes sociauxxPériodiques aBelgiquexPériodiques02aCentre de recherche et d'information socio-politiquesc(Bruxelles) 3aFRbCCN0009/03604 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-courrier-hebdomadaire-du-crisp.htm?zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 0 (dec-1958) -….cParisdMagasins/AnnexeeP 4° 19961 b(1959/1968), (1969/1978)cParisdMagasins/AnnexeeP Index 0527 aexempb201305 aGEO RA4.04 Belgique aDEW 949.301126nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210004100189326001700230421005800247421006700305606002900372856019200401856010800593955006900701955006600770992001200836001814850000002011920130319051242.01 a1154-516X aFNSP154467 a0000020119 a19901212a19909999 ba0 afre aFR aaca 00aCourrier international (Paris) aPariscCourrier internationald1990- aHebdomadaire 1aLes Dossiers de Courrier international < P 8° 6338 > 1aCourrier international. Hors-série (1169-114X) < P 4° 6087 > aActualitéxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bL'année en courscParisd27, Salle Rez-de-chausséeeP F° 04991 bno. 0 (25 oct-1990) -....cParisdMagasins/AnnexeeP F° 0499 aDEW 05001477nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005300163210003100216326002500247326002700272326002900299430004300328530001800371532002000389606003900409801001300448856005600461856005500517856010300572856010800675856010900783856010800892955007001000972000901070992001201079044758006000061500120130319051243.01 a1028-6632 a0000615001 a a19989999 fre 01 ba0 aeng aGB a 0  ar aai z 0 10aCPethe international journal of cultural policy aAbingdoncRoutledged1998- a5 n°s par an$d2011- aTrimestriel$d2007-2010 a3 n°s par an$d1998-2006 1tJournal of cultural policy,x1074-689700aCPbAmsterdam10aCultural policy aPolitique culturellexPériodiques 0aFRbFNSP4 uhttp://www.tandf.co.uk/journals/titles/10286632.asp zSommaires et résumés depuis le vol.8, n°1, 20024 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=300247 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713639985db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 9 no. 1 (mar-2003) -....cParisdMagasins/AnnexeeP 8° 6754 aZPAY aDEW 00100914nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200001400163207003700177210005300214326001700267430005400284517003500338601003900373606004200412801001300454856002300467955007500490992001200565992002300577037359339000028816220130319051243.0 a1521-5997 a0000288162 a a19989999k fre ba0 aeng aUS a 0  ar aac z 0 10aCQ weekly 1aVol. 56, no. 16 (Apr. 18, 1998)- aWashington, D.C.cCongressional Quarterlyd1998- aHebdomadaire 1tCongressional quarterly weekly report,x0010-591010aCongressional quarterly weekly02aEtats-UnisbCongressxPériodiques aPrésidentsyEtats-UnisxPériodiques 0aFRbFNSP uhttp://www.cq.com/1 bvol. 56 no. 16 (18 avr.1998) -....cParisdMagasins/annexeeP 4° 2179 aDEW 328 aGEO RC2 Etats-Unis01111cas0 2200361 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147105001800154110001600172200003400188207002300222210006100245326001600306430003700322517002200359530003000381801003000411801002300441801003000464801002300494802000700517856006400524856008100588955006600669992001400735074100254000113074920130319051243.01 a1532-687X a076863158 aissn1532687X a0001130749 a20030917a20019999k y0frey0103 ba0 aeng aUS a 0  aaia 0uu 10aCRethe new centennial review 1avol.1, no. (2001)- aEast Lansing, MIcMichigan State University Pressd2001- a3nos par an 1tThe Centennial reviewx0162-017710aCentennial review10aCRb(East Lansing, Mich.) 3aFRbAbesc20090308gAFNOR 3aFRbISSNc20090225 3aFRbAbesc20080130gAFNOR 3aFRbISSNc20000630 a014 uhttp://msupress.msu.edu/journals/cr/index.php?Page=subguide zContient le sommaire et le résumé des n°s depuis le vol. 1, n° 1 de 20011 bvol. 6 no. 1 (2006) -....cParisdMagasins/AnnexeeP 8° 7006 aDEW 320.501761nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200018600163210002300349300010800372326001500480430006900495510007000564530007100634606004900705712010100754801001300855830007000868856013000938856010801068955006701176972000901243992001401252992001601266992005101282992004201333145979040000050357020130319051244.01 a2218-0893 a0000503570 a a20009999k fre ba0 amul aII a 0  ar aag z 0 10aCreditor reporting system : aid activities =dSystème de notification des pays créanciers : activités d'aidefDevelopment Assistance Committee =fComité d'aide au développement aPariscOECDd2000- achaque n° est consacré à un ensemble de pays, mais le n° n'est pas constant d'une année à l'autre aBimestriel 1tQuarterly report on individual aid commitmentsx(ISSN 1023-8875)10aSystème de notification des pays créanciers : activités d'aide00aCreditor reporting system on aid activitiesb(Bilingual ed. Print) aAide économiquexStatistiquesxPériodiques02aOrganisation de coopération et de développement économiquesbComité d'aide au développement 0aFRbFNSP al'ISSN imprimé sur la publication est celui du titre précédent4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/10238875/statnotificationpayscreanciersactaide zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 3 ( 2000) -no 5 (2003)cParisdMagasins/annexeeP 4° 6419 aZGRA aDEW 338.9 aDEW 310-319 aGEO RN1 Pays industrialisés, pays occidentaux aGEO RO Pays en voie de développement01210nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003300139210003700172210004600209326002700255326003100282326002900313430003500342434003700377606003900414606003800453606003100491856012800522856010800650955007100758972000900829991001800838992001600856040037231000002889920140114095314.01 a0925-4994 aFNSP180076 a19910404a19919999 ba0 aeng aNL aaga 10aCrime, law and social change aDordrecht‎cSpringer‎d2004- aDordrecht [etc.]‎cKluwer‎d1991-2004 a10nos par an‎b2004- a8 nos par an‎b1993-2003 aBimestriel‎b1991-1992 1aContemporary crisesx0378-1100 1aCorruption and reformx0169-7528 aCorruption politiquexPériodiques aCrimes et criminelsxPériodiques aCriminologiexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=CRG&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 15 no. 1 (Jan-1991) -....cParisdMagasins/AnnexeeP 8° 3957 aZSAB aexempb201103 aDEW 364-36501243nls 2200361 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000072001642070017002362100046002532300005002993260020003043360056003243370071003806060031004517100026004828010013005088560090005218560108006118560050007198560058007699550005008279920033008329920016008650000802827000080282720130319051244.01 a0192-3234 a0000802827 a a19799999k fre 01 ba0 aeng aUS az aay z  adr 10aCrime and justiceb[Ressource électronique]fUniversity of Chicago 1aN°1 (1979)- aChicago, IIIcUniversity of Chicago Press a a1 ou 2 n° / an aDonnées textuelles accessibles uniquement en ligne aTéléchargement de fichiers TIFF, PDF (recommandé) ou PostScript aCriminologiexPériodiques02aUniversity of Chicago 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01923234.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.journals.uchicago.edu/CJ/home.html zContenu : accès aux sommaires depuis le vol. 1, 19791 r aGEO RS Sans aspect régional aDEW 364-36501285nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200006600163210003100229326001600260430005300276607004600329607002300375801001300398856010300411856010800514856010900622856010800731955007100839972000900910992001200919992001600931055762778000038518120130319051247.01 a1467-2715 a0000385181 a a20019999k fre ba0 aeng aGB a 0  ar aah z 0 10aCritical Asian studiesfCommittee of concerned Asian scholars aAbingdoncRoutledged2001- aTrimestriel 1tBulletin of concerned Asian scholars,x0007-4810 aAsiexEtude et enseignementxPériodiques aAsiexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=107513 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713695955db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 33 no. 1 (mar-2001) -....cParisdMagasins/AnnexeeP 4° 3033 aZCAD aDEW 950 aGEO RH Asie01350nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210005700174210003200231320002600263326001600289530003600305606004600341710004800387856005300435856008300488856010900571856010800680955014800788972000900936991001800945992002300963992001400986039988694000001090220130319051247.01 a0891-3811 aFNSP120950 a0000010902 a19900717a19879999 ba0 aeng aUS aaha 10aCritical review a[New YorkcLibertarian Review Foundation]d1987-2006 aaAbingdoncRoutledged2007- aN' a pas paru en 2002 aTrimestriel10aCritical reviewbNew York, N.Y. aLibertarianismeyEtats-UnisxPériodiques02aLibertarian Review Foundationc(Etats unis)4 uhttp://www.sevenbridgespress.com/cr/crindex.html zContenu : sommaires depuis le vol. 1, n°2, 1987 ; résumés à partir de 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t778142998db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 2 no. 4 (1988) -....cParisdMagasins/AnnexeeP 8° 5605wManquant : vol. 2, no. 1, 1988 ; vol. 8, no. 4, 1994 ; vol. 10, nos 1 à 4, 1996 aZSAB aexempb201204 aGEO RC2 Etats-Unis aDEW 320.501200nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006900154210002400223326002700247326002400274606004000298856012800338856010800466856010900574856010800683955006600791972000900857991001800866992001400884036839086000026641820130319051247.01 a1369-8230 aFNSP923855 a0000266418 a19990212a19989999 ba0 aeng aGB aaha 10aCritical review of international social and political philosophy aLondoncCassd1998- aTrimestrielb1998-2010 a5 nos par anb2011- aPhilosophie politiquexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=6ZQ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713634601db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1998) -....cParisdMagasins/AnnexeeP 8° 6459 aZSAB aexempb201301 aDEW 320.500940nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002300139210004300162326002200205326002700227326002900254430003700283606002900320856023300349955007100582972000900653992001200662040000184000001528120131017160853.01 a0896-9205 aFNSP141844 a19901019a19889999 ba0 aeng aUS aaha 10aCritical sociology aEugene, OrecCritical sociologyd1988- aBimestrielb2007- aTrimestrielb2005-2006 a3 n°s par anb1988-2004 1aInsurgent sociologistx0047-0384 aSociologiexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=C1O&site=ehost-livezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 15 no. 1 (pri-1988) -....cParisdMagasins/AnnexeeP 8° 3443 aZPAY aDEW 30101046nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007600154207002200230210003200252326001200284530002200296606005300318676000800371801002100379856008700400856010800487955006300595972000900658991001800667992001400685992002100699039222519000001545920140109151552.01 a0011-1600 aFNSP142167 a0000015459 a19900101a19469999 ba0 afre aFR aafa 10aCritiqueerevue générale des publications françaises et étrangères 1ano. 1 (jun-1946)- aPariscEd. de Minuitd1946- aMensuel10aCritiqueb(Revue) aLittératurexHistoire et critiquexPériodiques a001 3aFRbCCN0011-16004 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-critique.htm4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (jun-1946) -....cParisdMagasins/AnnexeeP 8° 0565 aZPAY aexempb201101 aDEW 80-89 aGEO RQ Universel01249nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007100154210007200225300006500297326002700362326002300389430003500412440004600447447004100493530003300534606002900567710004800596801002100644856004500665955008000710955007400790992002100864992001400885039591689000001518720130319051247.01 a0398-2068 aFNSP141617 a0000015187 a19900101a19759999 ba0 afre aFR aafa 10aCritique communistefrevue de la Ligue Communiste Révolutionnaire aPariscEditions de la Taupe Rouged1976-2009aMontreuilcLa Brèche aA la suite d'une erreur de l'éditeur le n°164 n'existe pas aTrimestrielb1994-2009 aMensuelb1976-1993 1aMarx ou crèvexISSN 0398-205X 1tContreTempserevue de critique communiste 1tContretemps (Paris. 2001)x1633-597X00aCritique communisteb(Paris) aCommunismexPériodiques02aLigue communiste révolutionnairec(France) 3aFRbCCN0398-20684 uhttp://orta.dynalias.org/critiqueco/home1 bno. 1 (avr/mai-1975) -no. 33 (oct-1980)cParisdMagasins/AnnexeeP 8° 37701 bno. 34 (jul-1981) -no. 173 (2004)cParisdMagasins/AnnexeeP 4° 4628 aGEO RQ Universel aDEW 320.501430nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210004100188320001700229326001600246530004100262606003200303606005500335606003600390676000800426710006300434856010300497856010800600856006300708856009900771955006700870955005900937972000900996991001801005992001201023992000901035004430697000025904720131219161427.01 a1290-7839 aFNSP901881 a0000259047 a19981104a19989999 ba0 afre aFR aaha 10aCritique internationalefCERI aPariscPresses de Sciences Pod1998- aIndex annuel aTrimestriel10aCritique internationalebParis. 1998 aGéopolitiquexPériodiques aRelations internationalesxRecherchexPériodiques aScience politiquexPériodiques a32702aCentre d'études et de recherches internationalesc(Paris)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-critique-internationale.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr/web/revues/home/prescript/revue/criti zAccès libre au texte intégral. Accès au texte intégral numérisé via Persée de 1998-20001 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bno. 1 (1998) -....cParisdMagasins/AnnexeeP 8° 6438 aZCAD aexempb201301 aDEW 327 aPBUL01250nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002900139210004700168326002300215326002100238452005000259530002900309606003200338801002100370856010100391856010800492856010800600856010800708955006900816972000900885991001800894992001200912039401677000001528920130911114518.01 a0308-275X aFNSP141859 a19900101a19749999 ba0 aeng aNL aahu 10aCritique of anthropology aAmsterdamcCritique of anthropologyd1974- aTrimestrielb1991- a3 nosb1974-1990 1tCritique of anthropology (Online),x1460-3721 aCritique of anthropology aAnthropologiexPériodiques 3aFRbCCN0308-275X4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101615 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 9/10 (1977) -....cParisdMagasins/AnnexeeP 8° 4383 aZPAY aexempb201106 aDEW 30101106cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200003000179210003600209421003800245430003800283440004500321530003000366531001800396801003000414801002300444802000700467856014400474955005500618991002000673991007500693037470000000109548220130319051247.0 a1770-6955 accn0124/8979 aissn17706955 a0001095482 a19830101b18721889 0frey0103 ba0 afre aFR ar aaf 13aLa Critique philosophique aPariscG. Baillièred1872-1889 |tLa Critique religieusex1770-6947 1tL'Année philosophiquex1770-6939 1tL'Année philosophique (1890)x1770-696303aLa Critique philosophique 0aCrit. philos. 3aFRbAbesc20061003gAFNOR 3aFRbISSNc20051001 a074 uhttp://gallica.bnf.fr/ark:/12148/bpt6k375765s.image.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1878-1885)1 b(1872) -(1885)cParisdMagasins/AnnexeeP 8° 1161 aPériobTP02 P8 anumer0 (?? d'après gallica on dirait une bibliographie, rien de plus)00986nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004400163210005700207326001600264517000900280606004400289607005000333710004500383801001300428856004600441856004500487955006700532972000900599992001200608992004000620036711020000052877620130319051247.01 a1331-1182 a0000528776 a a19959999k fre ba0 aeng aHR a 0  ar aah z 0 10aCroatian international relations review aZagrebcInstitute for international relationsd1995- aTrimestriel10aCIRR aRelations internationalesxPériodiques aCroatiexRelations extérieuresxPériodiques02aInstitut za medunarodne odnosec(Zagreb) 0aFRbFNSP4 uhttp://www.imo.hr/economics/publics/cirr/ zContenu : sommaires depuis le n°1, 19951 bvol. 5 no. 14 (1999) -....cParisdMagasins/AnnexeeP 4° 6974 aZSAB aDEW 327 aGEO RA8.23 Croatie (depuis 1991-92)00920nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001391100016001452000013001612100031001743260014002054400048002195300013002676060029002806070025003098010021003348560145003559550084005009920022005849920012006060000015447000001544720130319051248.0 a0242-6412 aFNSP142151 a0000015447 a19900101b18801968 ba0 afre aFR ar acau 13aLa Croix aPariscLa Croixd1880-1968 aquotidien 1aJournal La Croix (0242-6404)

03aLa Croix aActualitéxPériodiques aFrancexPériodiques 3aFRbCCN0242-64124 uhttp://gallica.bnf.fr/ark:/12148/cb343631418/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé par Gallica (1880-1944)1 béd. microfilm : 1 er fev.1945---> 31 déc. 1968cParisdMagasinseP Mic 35 (5) aGEO RA4.06 France aDEW 05001310nas 2200349 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000020001552100027001753260014002024300050002165170028002665300020002946060029003146070025003438010021003688560192003898560108005818560028006899550088007179550068008059550053008739920022009269920012009480000015424000001542420130319051248.01 a0242-6056 aFNSP142113 a0000015424 a19900101a19759999 ba0 afre aFR acaa 13aLa Croix (1975) aPariscLa Croixd1975- aQuotidien 1aJournal La Croix (0242-6404) < P Mic 35 (5) >10aLa Croix, l'évènement03aLa Croix (1975) aActualitéxPériodiques aFrancexPériodiques 3aFRbCCN0242-60564 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.la-croix.com1 bEd. en microfilm : (18 fév. 1975-1980)cParisdSalle des microformeseP Mic 35 (5)1 bLe mois en courscParisd27, Salle Rez-de-chausséeeP F° 12531 b(1981) -....cParisdMagasins/AnnexeeP F° 1253 aGEO RA4.06 France aDEW 05000972nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210003900182326001600221430004100237606003600278710004000314856010800354856010800462955006900570972000900639991001800648992001600666040305694000011226620130319051248.01 a1069-3971 aFNSP473402 a0000112266 a19900101a19939999 ba0 aeng aUS aaha 10aCross-cultural research aThousand Oaks, Calif.cSaged1993- aTrimestriel 1aBehavior science researchx0094-3673 aSciences socialesxPériodiques02aSociety for Cross-Cultural Research4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 27 no. 1/2 (1993) -....cParisdMagasins/AnnexeeP 8° 2218 aZSAB aexempb200908 aDEW 305-30601444nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210006200179326002200241326002600263606005400289607005400343607003500397607005400432710004600486801002100532856007000553856007300623856008700696856004700783955014300830972000900973991001800982992002801000992001801028992001201046013577654000001529020130319051248.01 a0011-2356 aFNSP141862 a0000015290 a19900101a19429999 ba0 aspa aMX aaha 10aCuadernos americanos aMéxicocUniversidad Nacional Autónoma de Méxicod1942- aTrimestrielb2006 aBimestrielb1942-2005 aSciences socialesyAmérique latinexPériodiques aEuropexRelationsyAmérique latinexPériodiques aAmérique latinexPériodiques aAmérique latinexRelationsyEuropexPériodiques02aUniversidad nacional autónoma de México 3aFRbCCN0011-23564 uhttp://w3.univ-tlse2.fr/ipealt/cedocal/revues/camericanos/cua.htm zContenu : sommaires du n°78, 1999 au n°103, 2004 (site du CEDOCAL)4 uhttp://dialnet.unirioja.es/servlet/revista?tipo_busqueda=CODIGO&clave_revista=5544 zContenu : sommaires depuis le n°103, 20041 bvol. 5 no. 3 (1946) ; vol. 11 no. 3 (1952) -vol. 45 no 3 (1986) ; nlle série vol. 1 no 1 (1987) -....cParisdMagasins/AnnexeeP 8° 1141 aZPAY aexempb201207 aGEO RD Amérique latine aGEO RA Europe aDEW 98001155nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006900154210004500223300003200268326001600300430006200316606004900378606004000427710006800467856008600535856008700621955005900708972000900767991001800776992002300794992001200817059854200000022563620130319051248.01 a1135-0679 aFNSP805916 a0000225636 a19900101a19949999 ba0 aspa aES aaha 10aCuadernos constitucionales de la Cátedra Fadrique Furió Ceriol aValenciacUniversidad de Valenciad1994- aArrive avec 4 ans de retard aTrimestriel 1aCuadernos de la Catedra Fadrique Furio Ceriol,x1133-7087 aDroit constitutionnelyEspagnexPériodiques aDroit constitutionnelxPériodiques02aUniversidad de ValenciabDepartamento de derecho constitucional4 uhttp://dialnet.unirioja.es/servlet/revista?tipo_busqueda=CODIGO&clave_revista=345 zContenu : sommaires depuis le n°1, automne 1992 ; quelques n° en texte intégral1 bno. 8 (1994) -....cParisdMagasins/AnnexeeP 8° 6354 aZSAB aexempb201301 aGEO RA6.02 Espagne aDEW 34201335cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200009300180207002700273210007200300326001600372606004400388607005300432676000800485710006700493801003000560801002300590802000700613856008400620856007600704955015600780992001600936992002100952076152448000115222420131217100358.01 a1696-8441 aissn16968441 a0001152224 a20040202a20039999k 0frey0103 ba0 aspa aES ay 0  ar aah 0 10aCuadernos de pensamiento políticofFundación para el análisis y los estudios sociales 0aN°1 (Octubre, 2003) - aMadridcFundación para el Análisis y los Estudios Socialesd2003- aTrimestriel aRelations internationalesxPériodiques aEspagnexPolitique et gouvernementxPériodiques a32002aFundación para el análisis y los estudios socialesc(Madrid) 3aFRbAbesc20080604gAFNOR 3aFRbISSNc20030523 a0u4 uhttp://www.fundacionfaes.org/es/publicaciones/cuadernos_de_pensamiento_politico zContient : sommaires et texte intégral des n°s depuis le no. 1 (2003)1 bno. 2 (mar-2004) -no. 3 (jun/sep-2004) ; no. 17 (jan/mar-2008) -no. 22 (avr/jun-2009) ; no. 30 (avr/jun-2011) -....cParisdMagasins/AnnexeeP 8° 7049 aDEW 320-321 aGEO RQ Universel01030nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210008800180326001500268606005400283607005100337710008300388856009000471856003700561955006000598972000900658991001700667992002800684992001600712037385348000001578020130319051249.01 a0798-1406 aFNSP143168 a0000015780 a19901025a19859999 ba0 aspa aES aaka 10aCuestiones políticas aMaracaibocCentro de investigaciones y estudios políticos y administrativosd1985- aSemestriel aScience politiqueyAmérique latinexPériodiques aAmérique latinexAdministrationxPériodiques02aCentro de investigaciones y estudios políticos y administrativosc(Maracaibo)4 uhttp://www.serbi.luz.edu.ve/scielo.php?script=sci_issues&pid=0798-1406&lng=en&nrm=iso zAccès libre au texte intégral.1 bvol. 1 (1985) -....cParisdMagasins/AnnexeeP 8° 5306 aZSAB aexemp$201111 aGEO RD Amérique latine aDEW 320-32101156cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101001300142102000700155110001600162200008400178207001900262210005400281326001500335530002200350606004600372606004000418606005000458710004600508801003000554801002300584802000700607856004200614856003600656955006400692992002400756992001400780039959716000115176020130319051249.01 a0870-4546 accn0870-4546 aissn08704546 a0001151760 a19870119a19829999k a0frec0103 ba0 aporaeng aPT az uu 10aCulturaerevista de historia e teoria das ideiasfCentro de historia da cultura 0aVol. 1 (1982)- aLisboacUNL, Centro de historia da culturad1982- aSemestriel10aCulturab(Lisboa) aIdées politiquesxHistoirexPériodiques aPhilosophie politiquexPériodiques aPhilosophie politiqueyPortugalxPériodiques02aCentro de historia da culturac(Lisbonne) 3aFRbAbesc20080124gAFNOR 3aFRbISSNc20071003 a184 uhttp://www.fcsh.unl.pt/chc/pg_pub.htm zAccès libre au texte intégral1 bvol. 16/17 (2003) -....cParisdMagasins/AnnexeeP 8° 7047 aGEO RA6.01 Portugal aDEW 320.501290nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210003100179326001600210517002600226517002700252530003200279606003700311606004400348676000800392710004200400856002900442856005300471856009900524856010800623955006700731955006400798972000900862992001200871992001200883992000900895039934837000003051220131219161500.01 a1157-996X aFNSP184800 a0000030512 a19910423a19909999 ba0 afre aFR aaha 10aCultures et conflits aaPariscL'Harmattand1991- aTrimestriel10aCulturas y conflictos10aCultures and conflicts10aCultures et conflitsbRevue aViolence politiquexPériodiques aRelations internationalesxPériodiques a32702aCentre d'étude des conflitsc(Paris)4 uhttp://www.conflits.org/ zContenu : texte intégral depuis le n°41, 2001.4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-cultures-et-conflits.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bno. 1 (1990/1991) -....cParisdMagasins/AnnexeeP 8° 5709 aZCAD aDEW 303 aDEW 327 aPBUL01521nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006500154210005400219326001600273452005100289606003200340710005600372801002100428856012800449856010800577856010100685856010800786856009000894856010800984955007001092972000901162992001201171038695332000001573620130319051251.01 a0011-3204 aFNSP142996 a0000015736 a19900101a19609999 ba0 aeng aUS aahu 10aCurrent anthropologyea world journal of the sciences of man aChicago, Ill.cUniversity of Chicago Pressd1960- aTrimestriel 1tCurrent anthropology [Ressource électronique] aAnthropologiexPériodiques02aWenner-Gren Foundation for Anthropological Research 3aFRbCCN0011-32044 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=CUA&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=104228 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00113204.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 2 (mar-1960) -....cParisdMagasins/AnnexeeP 4° 1977 aZPAY aDEW 30101210cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157110001600175200008700191210004800278326001500326606003000341710005600371801003000427801002300457802000700480856021800487856007600705955007100781992002100852992001100873048699039000120482520130319051251.01 a0963-7214 accn0963-7214 aissn09637214 a0001204825 a20000228a19929999k y0frey50 ba0 aeng aUS ay 0  aaga 0 10aCurrent directions in psychological sciencefAssociation for psychological science aNew YorkcCambridge University Pressd1992- aBimestriel aPsychologiexPériodiques02aAssociation for psychological scienceb(Etats-Unis) 3aFRbAbesc20081202gAFNOR 3aFRbISSNc19990923 a024 uhttps://acces-distant.sciences-po.fr/fork?http://cdp.sagepub.com/?&MDP-WSSO-SESSION=563f0690f746afb29bdc01d9eede8956&error=Votre%20session%20a%20expir%E9,%20merci%20de%20vous%20authentifier%20de%20nouveau&status=2 zContenu: sommaires et texte intégral depuis le vol. 1 no. 1 (fev-1992)1 bvol. 19 no. 4 (aou-2010) -....cParisdMagasins/AnnexeeP 4° 7296 aGEO RQ Universel aDEW 1501204nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000590015420700320021321000410024530000780028632600120036453000280037660600320040460600390043667600080047585600350048385601080051895500670062695500730069395500790076697200090084599200120085403869557X000000407820130319051251.01 a0011-3530 aFNSP104746 a0000004078 a19900101a19419999 ba0 aeng aUS aafu 10aCurrent historyethe monthly magazine of world affairs 1aVol. 1, no. 1 (Sept. 1941)- aNew York, N.YcEvents Pub. Cod1941- aArticles de 1941 à 1995 reproduits sur la base de données PCI Full Text aMensuel10aCurrent historyb(1941) aGéopolitiquexPériodiques aHistoire universellexPériodiques a3274 uhttp://www.currenthistory.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 62 no. 367 (mar-1972) -....cParisdMagasins/AnnexeeP 4° 06951 b(jul-1946) -vol. 62 no. 366 (fev-1972)cParisdMagasins/AnnexeeP 8° 0238 aZGRA aDEW 90901677nas 2200421 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005300154210002900207210003300236210003600269210003100305300021300336326002200549326002700571326002800598510002900626606002900655710004500684801002100729856003800750856006900788856010800857856010800965955007001073955005401143972000901197991001601206992002101222992001201243038695758000000891720130711152349.01 a0011-3921 aFNSP115816 a0000008917 a19900101a19529999 ba0 amul aUS aahu 10aCurrent sociologyd= La Sociologie contemporaine aPariscUnescod1952-1957 aLondoncBlackwelld1958-1965 aParis [etc.]cMoutond1966-1975 aLondon [etc.]cSaged1976- aLes nos 1 et 2/3 du vol. 1 (1952/53) ; 2/3 du vol. 2 (1953/54) ; 2/3 du vol. 3 (1954/55) et 2/3 du vol. 4 (1955) constituent : "International bibliography of sociology" qui paraîtra séparément par la suite aBimestrielb2001- aTrimestrielb1997-2000 a3 nos par anb1952-199610aSociologie contemporaine aSociologiexPériodiques02aAssociation internationale de sociologie 3aFRbCCN0011-39214 uhttp://www.ucm.es/info/isa/cs.htm zContenu : sommaires depuis 1996 ; grands thèmes de 1952 à 19954 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 28 no. 1 (pri-1980) -....cParis,Magasins/AnnexeeP 8° 55511 b(1952) -(1979)cParis,Magasins/AnnexeeCOL8°3835 aZSAB aexemp201111 aGEO RQ Universel aDEW 30101355nls 2200373 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000094001642100030002582300005002883000056002933260016003493360056003653370071004214300030004926060040005227100047005628010013006098560090006228560108007128560037008208560070008579550005009279920033009329920016009650000813723000081372320130319051251.01 a0362-6784 a0000813723 a a19769999k fre 01 ba0 aeng aUS az aah z  adr 10aCurriculum inquiryb[Ressource électronique]fOntario Institute for Studies in Education aNew YorkcJ. Wileyd1976- a aTexte intégral depuis le vol. 6, n°1, Autumn 1976 aTrimestriel aDonnées textuelles accessibles uniquement en ligne aTéléchargement de fichiers TIFF, PDF (recommandé) ou PostScript 1tCurriculum theory network aEducationyEtats-UnisxPériodiques01aOntario Institute for Studies in Education 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03626784.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://home.oise.utoronto.ca/ci/ zContenu : sommaires en ligne depuis le vol. 31, n°1, Spring 20011 r aGEO RS Sans aspect régional aDEW 370-37900877nls 2200301 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000075001642100037002393000086002763260016003623360056003783370017004346060030004518010013004818560028004948560036005229550005005589920012005630000405086000040508620130319051251.0 a1278-3366 a0000405086 a a19969999k fre 01 ba0 amul aFR az aay z  adr 10aCybergéoeRevue Européenne de Géographieb[Ressource électronique] aPariscGéographie-citésd1996- aSommaires, résumés et texte intégral de la revue depuis le n°1, 14 avril 1996 airrégulier aDonnées textuelles accessibles uniquement en ligne aFichiers HTM aGéographiexPériodiques 0aFRbFNSP4 uhttp://www.cybergeo.eu/4 zAccès libre au texte intégral1 r aDEW 91000768nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001800154210003300172326001500205607002500220856005200245856006000297955007000357972000900427991001800436992002200454992001400476040155188000000736620130319051251.01 a1015-2881 aFNSP112311 a0000007366 a19900510a19899999 ba0 aeng aCY aaja 00aCyprus review aNicosiacIntercolleged1989- aSemestriel aChyprexPériodiques4 uhttp://www.intercol.edu/nqcontent.cfm?a_id=1980 zContenu : sommaires depuis le vol. 1, n°1, print. 19891 bvol. 1 no. 1 (pri-1989) -....cParisdMagasins/AnnexeeP 8° 5637 aZSAB aexempb201205 aGEO RA6.07 Chypre aDEW 956.100952nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154210006500190326001600255530003500271606003700306606003200343676000800375712003100383856003600414856007800450955007100528972000900599991001800608992001200626045069018000025831920130319051251.01 a1290-5410 aFNSP899393 a0000258319 a19981022b19982001 ba0 afre aFR aaha 10aCyrèneerevue de géopolitique aVoisins le BretonneuxcL'Atelier de géopolitiqued1998-2001 aTrimestriel 0aCyrènebVoisins-le-Bretonneux aEtudes régionalesxPériodiques aGéopolitiquexPériodiques a32702aL'Atelier de géopolitique4 uhttp://www.oaric.com/cyrene.htm zContenu : sommaire du dernier n° ; résumés ; depuis le n°1, aut. 19981 bno. 1 (aut-1998) -no. 8 (2001)cParisdMagasins/AnnexeeP 8° 6431 aZPAY aexempb201207 aDEW 32701169nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001000154210004300164326002300207326002900230606004500259606003800304606005400342606002900396710006000425801002100485856003100506856008600537955006600623972000900689991001800698992002300716992002800739992001600767992001200783038696061000001827120130319051252.01 a0011-5258 aFNSP149928 a0000018271 a19900101a19669999 ba0 apor aBR aaha 10aDados aRio de JaneirocEspaço e tempod1966- aTrimestrielb1998- a3 n°s par anb1966-1997 aScience politiqueyBrésilxPériodiques aSociologieyBrésilxPériodiques aScience politiqueyAmérique latinexPériodiques aSociologiexPériodiques02aInstituto universitário de pesquisas do Rio de Janeiro 3aFRbCCN0009/35564 uhttp://www.scielo.br/dados zContenu : Sommaires, résumés et texte intégral depuis le volume 39, n°3, 19961 bno. 1 (2e sem-1966) -....cParisdMagasins/AnnexeeP 8° 2502 aZSAB aexempb200910 aGEO RD4.13 Brésil aGEO RD Amérique latine aDEW 320-321 aDEW 30101409nas 2200361 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000710015421000640022532600160028943000720030553000240037760600360040160600360043767600080047371000420048180100210052385601010054485601080064595500670075395501140082095700740093497200090100899100180101799200120103503869607X000006239720130319051252.01 a0011-5266 aFNSP285531 a0000062397 a19900101a19559999 ba0 aeng aUS aaha 10aDaedaluseproceedings of the American Academy of Arts and Sciences aBoston, Mass.cAmerican Academy of Arts and Sciencesd1955- aTrimestriel 1aProceedings of the American Academy of Arts and Sciencesx0199-9818 0aDaedalusbCambridge aSciences socialesxPériodiques aSciences humainesxPériodiques a32002aAmerican Academy of Arts and Sciences 3aFRbCCN0011-52664 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=111355 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bvol. 89 no. 1 (hiv-1960) -....cParisdMagasins/AnnexeeP 8° 1974zManquant : no. 4, 1987 ; no. 1 à 4, 19881 b(1958) -(1968) ; (1958) -(1998)cParisdMagasins/AnnexeeP Index 0175 aZCAD aexempb201002 aDEW 30001097nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200003600160210002900196326002800225606004700253606003200300856013300332955014800465957017200613992002200785992001200807038460378000013467820130319051252.01 a0999-2901 aFNSP542295 a0000134678 a19940824b18451944 ba0 afre aFR ar aafa 00aDalloz jurisprudence générale aPariscDallozd1845-1944 amensuel ou hebdomadaire aDroityFrancexJurisprudencexPériodiques aDroityFrancexPériodiques4 uhttp://gallica.bnf.fr/ark:/12148/cb344196239/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 b1845 ----> 1923, 1924 ----> 1944 ed. hebdomadaire et éd. mensuellecParisdMagasins/AnnexeeP 4°5224wmanque éd. mensuelle pour 1928 et 19331 b1845/1867, 1867/1877, 1877/1887, 1897/1907, 1907/1911, 1912/1916, 1917/1921, 1922/1926, 1927/1931, 1932/1936, 1937/1941, 1942/1946cParisdMagasins/AnnexeeP Index 443 aGEO RA4.06 France aDEW 34801471nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008300154210002300237300013700260300006600397326002300463326002300486326002700509421004000536517002500576517002300601606006900624606002800693606003800721606004400759710007900803856002700882856005800909955006000967972000901027992002101036992001601057039481506000010846720130319051252.01 a0296-1199 aFNSP458668 a0000108467 a19900101a19859999 ba0 afre aFR aaha 10aDamoclèsfCentre de documentation et de recherche sur la paix et les conflits aLyoncCDRPCd1985- aNouvelle formule à partir du n° 96 (mai 2003) : la revue devient une lettre mensuelle de 4 pages portant le sous-titre : la lettre aSuppl. irréguliers conservés avec la revue à la même cote aTrimestrielb2006- aMensuelb2003-2005 aTrimestrielb1985-2003 1tLes Cahiers de Damoclèsx0296-391410aDamoclèsela lettre10aBulletin Damoclès aForces arméesxCrédits budgétaires et dépensesxPériodiques aArmementsxPériodiques aPolitique militairexPériodiques aRelations internationalesxPériodiques02aCentre de documentation et de recherche sur la paix et les conflits (Lyon)4 uhttp://www.obsarm.org/ zContenu : sommaires à partir du no. 58 (3e tri-1993)1 bno. 37 (1989) -....cParisdMagasins/AnnexeeP 4° 6307 aZCAD aGEO RQ Universel aDEW 355-35901181nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002600139210004900165326001100214440007200225530003900297601004000336606003700376607005200413710002600465856016500491955005500656955005500711972000900766991001800775992002400793992001200817992001400829036746924000008403520140103141115.01 a0108-6995 aFNSP374055 a19900101b19471996 ba0 aeng aDK aaka 10aDanmarks Nationalbank aCopenhagencDanmarks Nationalbankd1947-1996 aAnnuel 1tReport and accounts for the year - Danmarks Nationalbankx1397-520X00aDanmarks NationalbankbEnglish ed.02aDanmarks NationalbankxPériodiques aFinancesyDanemarkxPériodiques aDanemarkxConditions économiquesxPériodiques02aDanmarks Nationalbank4 uhttp://www.nationalbanken.dk/DNUK/Publications.nsf/Publikationer.HTML?openview&RestrictToCategory=Report%20and%20AccountszAccès au texte intégral depuis 19901 b(1980) -(1989)cParisdMagasins/AnnexeeP 4° 55491 b(1935) -(1979)cParisdMagasins/AnnexeeCOL4°0325 aZGRA aexempb201312 aGEO RA3.04 Danemark aDEW 332 aDEW 330.901053nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000095001502100045002452300024002903260011003146010040003256060037003656070052004027100026004548010013004808560126004938560053006199550005006729920024006779920012007019920014007130001134314000113431420130319051252.0 a0001134314 a a19909999k fre 01 ba0 aeng aDK ar aak z  adr 10aDanmarks Nationalbank report and accountb[Ressource électronique]fDanmarks Nationalbank aCopenhagencDanmarks Nationalbankd1990- aRevue électronique aAnnuel02aDanmarks NationalbankxPériodiques aFinancesyDanemarkxPériodiques aDanemarkxConditions économiquesxPériodiques02aDanmarks Nationalbank 0aFRbFNSP4 uhttp://www.nationalbanken.dk/DNUK/Publications.nsf/Publikationer.HTML?openview&RestrictToCategory=Report%20and%20Accounts zContenu : texte intégral du rapport depuis 19901 r aGEO RA3.04 Danemark aDEW 332 aDEW 330.901087cas0 2200349 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147105001800154110001600172200005900188207002500247210004000272326001100312606002400323606003800347710004000385801003000425801002300455801003000478802000700508856006000515856006500575955008500640992001200725114206570000108611720130603161738.01 a1951-106X a127786376 aissn1951106X a0001086117 a20070427b20062011k y0frey0103 ba0 afre aFR ay  aahu uu 10aDe l'autre côtéfUnion juive française pour la paix 0aN.1 (printemps 2006) aPariscLa fabrique éditionsd2006- aAnnuel aJuifsxPériodiques aJuifsxAssociationsxPériodiques02aUnion juive française pour la paix 3aFRbAbesc20081118gAFNOR 3aFRbISSNc20080909 3aFRbAbesc20070427gAFNOR a074 uhttp://www.ujfp.org/modules/news/index.php?storytopic=9 zContenu : sommaires des n°s depuis le n° 1, Printemps 20061 bno. 1 (mar-2006) -no. hors-série (hiv-2011)cParisdMagasin/AnnexeseP 8° 6974 aDEW 32001233nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000054001502070026002042100044002303000074002743260015003483360056003633370109004196060032005286060044005607120093006048010013006978560032007109550165007429920012009070000619023000061902320130319051257.0 a0000619023 a a19989999k fre 01 ba0 afre aFR az aag z  adr 13aLe Débat stratégiqueb[Ressource électronique] 1aN° 39 (juillet 1998) aPariscCIRPESd1998-aPariscGSDd1998- aLettre d'information en texte intégral depuis le n°39, juillet 1998 aBimestriel aDonnées textuelles accessibles uniquement en ligne aFichiers HTML. Il existe la possibilité d'être tenu informé des publications en s'abonnant par e-mail aGéopolitiquexPériodiques aRelations internationalesxPériodiques02aCentre interdisciplinaire de recherches sur la paix et d'études stratégiquesc(France) 0aFRbFNSP4 uhttp://www.ehess.fr/cirpes/1 rConsultation de l'édition imprimée à la banque de prêt de la Salle d'actualité, 27 rue Saint-Guillaume ; conservation limitée aux deux dernières années. aDEW 32701255nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006400154210002800218326002500246326002600271530002700297607002800324607003400352856005700386856005700443856010900500856010800609955013600717972000900853991001800862992002500880992001200905045043477000022288220140107174432.01 a0965-156X aFNSP798359 a0000222882 a19900101a19939999 ba0 aeng aGB aaia 10aDebatteejournal of contemporary Central and Eastern Europe aAbingdoncCarfaxd1993- a3 n°s par anb2005- aSemestrielb1993-2004 0aDebattebOxford. Print aAllemagnexPériodiques aEurope de l'EstxPériodiques4 uhttp://www.tandf.co.uk/journals/carfax/0965156X.html zContenu : sommaires depuis le vol. 5, n°1, mai 19974 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713412549db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1993) ; vol. 3 no. 1 (1995) -....cParisdMagasins/AnnexeeP 8° 6343zLa bibliothèque n'a pas reçu le vol. 2, 1994 aZSAB aexempb201301 aGEO RA5.01 Allemagne aDEW 94301382nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002500139210006900164210007500233210003700308326002600345326003100371517002900402606003600431606002800467606003700495606002900532676000800561710004000569856012000609856007900729955006600808955006300874972000900937991001600946992002200962992001200984039742156000016322220140113141030.01 a0779-7389 aFNSP625786 a19900101a19939999 ba0 afre aFR aaia 10aDécisions marketing aParis‎cAssociation française de marketing c/o ESCP‎d200X- aBruxelles‎cCentre Européen d'Economie de l'Education‎d1993-199X aPontoise‎cEssec‎d199X-200X aTrimestriel‎b2002- a3 nos par an‎b1993-200110aDM. Décisions Marketing aMarketingyFrancexPériodiques aMarketingxPériodiques aPublicitéyFrancexPériodiques aPublicitéxPériodiques a65002aAssociation française du marketing4 uhttp://www.afm-marketing.org/1-afm-association-francaise-du-marketing/124-activites/143-decisions-marketing-dm.aspx zContenu : sommaires depuis 1993, recherche par mots-clés sur les articles1 bLes 3 dernières annéescParisd27, Salle 4e étageeDEW 6501 bno. 1 (mai-1993) -....cParisdMagasins/AnnexeeP 4° 6484 aZPAY aexemp201401 aGEO RA4.06 France aDEW 65900994cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200002100156210003300177326001900210326002600229430003100255606002900286606006100315606004300376710002800419801003000447801002300477802000700500856006300507955006500570972000900635992001200644078949599000107381520130319051300.01 a1767-0187 aissn17670187 a0001073815 a20030523a20049999k y0frey0103 ba0 afre aFR aafu uu 13aLa décroissance aLyoncCasseurs de pubd2004- aMensuelb2007- aBimestrielb2004-2006 1tCasseurs de pubx1299-944X aActualitéxPériodiques aMouvements alternatifs (politique)yFrancexPériodiques aDécroissance soutenablexPériodiques02aCasseurs de pubc(Lyon) 3aFRbAbesc20070226gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.ladecroissance.net/index.php?chemin=accueil.php1 bno. 32 (jun-2006) -....cParisdMagasins/AnnexeseP F° 0550 aZPAY aDEW 05001626nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210004600186326002200232326002700254430003300281606005100314606006900365606005800434856010300492856010800595856012800703856010800831856010900939856010801048955006601156972000901222991001701231992001601248040200450000019390120130319051300.01 a1024-2694 aFNSP714064 a0000193901 a19900101a19949999 ba0 aeng aGB aaha 10aDefence and peace economics as.l.cHardwood academic publishersd1994- aBimestrielb2000- aTrimestrielb1994-1999 1aDefence economicsx1043-0717 aDésarmementxAspect économiquexPériodiques aForces arméesxCrédits budgétaires et dépensesxPériodiques aPolitique militairexAspect économiquexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=300224 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=7VT&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713640174db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 1 (1994) -....cParisdMagasins/AnnexeeP 8° 5669 aZPAY aexemp$201111 aDEW 355-35901038nas 2200313 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200006200148210003000210326001700240530002000257606004400277606003800321676000800359710005300367801001300420856010400433856009600537955006600633972000900699992001600708064132072000057754120140110160132.01 a1470-2436 a a20019999k fre ba0 aeng aGB a 0  ar aai z 0 10aDefence studiesfJoint Services Command and Staff College aLondoncFrank Cassd2001- a3 nos par an00aDefence studies aSécurité internationalexPériodiques aPolitique militairexPériodiques a35502aJoint Services Command and Staff College (Wilts) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/http/www.informaworld.com/smpp/title~content=t713720481~db=all zAccès réservé aux lecteurs inscrits à la bibliothèque via Taylor & Francis depuis 20011 bvol. 1 no. 1 (2001) -....cParisdMagasins/AnnexeeP 8° 6693 aZSAB aDEW 355-35901067nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003200163210006700195326001600262430003300278517003400311606003800345606004400383801001300427856010900440856010800549955007100657972000900728992001600737067779069000046393720130319051300.01 a1475-1798 a0000463937 a a20029999k fre ba0 aeng aGB a 0  ar aah z 0 10aDefense & security analysis aBasingstoke, HantscCarfax Publishing, Taylor & Francisd2002- aTrimestriel 1tDefense analysis,x0743-017510aDefense and security analysis aPolitique militairexPériodiques aSécurité internationalexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713412200db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 18 no. 1 (mar-2002) -....cParisdMagasins/AnnexeeP 8° 4879 aZSAB aDEW 355-35901167nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210005000185326001600235430008200251532006700333607004100400607004500441710007200486711006700558856003700625856005200662955007700714972000900791992002500800992001600825039908046000016443220130523111747.01 a1150-4455 aFNSP628721 a0000164432 a19900101a19909999 ba0 afre aFR aaha 10aDéfense et citoyen-l'OSOR aParis‎cDefense et citoyen-l'OSOR‎d1990- aTrimestriel 1tL'Officier et le sous-officier de réserve de l'armée française,x0990-56501 aDéfense et citoyen-l'Officier et le sous-officier de réserve aFrancexForces arméesxPériodiques aFrancexHistoire militairexPériodiques02aFédération des sous-officiers de réserve républicainsc(France)02aFédération des officiers de réserve républicainsc(France)4 uhttp://republique.armee.free.fr/4 zAccès libre au texte intégral à quelques nos1 bno. 62 (jan-1994) -no 106 (avr-2007)cParisdMagasins/AnnexeeP 4° 6493 aZPAY aGEO RA4.06 France 01 aDEW 355-35901273nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210004100177326001200218430004300230440005900273530003600332606003800368606004400406607004500450676000800495801002100503856002600524856014500550955009200695955007700787972000900864992002200873992001600895039531805000000406020130319051300.01 a0336-1489 aFNSP104642 a0000004060 a19900101b19732004 ba0 afre aFR aafu 10aDéfense nationale aPariscDéfense nationaled1973-2004 aMensuel 1aRevue de défense nationalex0035-1075 1tDéfense nationale et sécurité collectivex1950-325300aDéfense nationalebParis. 1973 aPolitique militairexPériodiques aRelations internationalesxPériodiques aFrancexDéfense nationalexPériodiques a355 3aFRbCCN0336-14894 uhttp://www.defnat.com zContenu : sommaires depuis le numéro 1 de 1983 et résumés des articles pour les numéros récents ; moteur de recherche et nombreux liens1 bvol. 29 no. 1 (jan-1973) -vol. 60 no. 12 (dec-2004)cParisdMagasins/AnnexeeP 8° 02091 bLes 10 dernières annéescParisdBibliothèque de rechercheeP 8° 0209 aZCAD aGEO RA4.06 France aDEW 355-35901519cas0 2200409 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200008900162207007300251210006200324326001200386430004800398440002900446606003800475606004400513607004500557676000800602710005300610801003000663801002300693802000700716856002600723856011800749955009200867955010300959972000901062992002201071992001601093108065863000104168420130319051300.01 a1950-3253 aissn19503253 a0001041684 a20060906b20052009k y0frey0103 ba0 afre aFR ar aafu uu 10aDéfense nationale et sécurité collectivefComité d'études de défense nationale 0a61ème année, n° 1(2005, janv.)-65ème année, no 12 (2009, déc.) aPariscComité d'études de défense nationaled2005-2009 aMensuel 1tDéfense nationale (Paris. 1973)x0336-1489 1tRevue Défense Nationale aPolitique militairexPériodiques aRelations internationalesxPériodiques aFrancexDéfense nationalexPériodiques a35502aComité d'études de défense nationalec(Paris) 3aFRbAbesc20061016gAFNOR 3aFRbISSNc20060720 a074 uhttp://www.defnat.com zContenu : sommaires depuis le numéro 1 de 1953 et résumés des articles ; moteur de recherche et nombreux liens1 bvol. 61 no. 1 (jan-2005) -vol. 65 no. 12 (dec-2009)cParisdMagasins/AnnexeeP 8° 02091 bvol. 61 no. 1 (jan-2005) -vol. 65 no. 12 (dec-2009)cParisdBibliothèque de rechercheeP 8° 0209 aZPAY aGEO RA4.06 France aDEW 355-35901042nas 2200337 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200007400148210003500222326001800257430003500275452004400310517002500354530002300379606003000402606003600432801001300468856005100481856004000532955008900572972000900661991001800670992001600688040352889000028908220130830121757.01 a1085-5661 a b19952003k fre ba0 aeng aGB a 0  ar aai z 0 10aDemocracy & natureethe international journal of inclusiv e democracy aBasingstokecCarfaxd1995-2003 a3 n°s par an 1tSociety and nature,x1062-9599 1tDemocracy & nature (Online),x1469-372010aDemocracy and nature00aDemocracy & nature aDémocratiexPériodiques aScience politiquexPériodiques 0aFRbFNSP4 uhttp://www.inclusivedemocracy.org/dn/index.htm zContenu : sommaires de 1999 à 20031 bvol. 5 no. 1 (mar-1999) -vol. 9 no. 3 (nov-2003)cParisdMagasins/AnnexeeP 8° 6513 aZSAB aexempb201212 aDEW 320-32101138cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200002700180207003600207210003400243326001500277452004700292606003800339606003700377606002900414801003000443801002300473802000700496856010900503856005800612955007300670992001200743992002100755104756241000115651420130319051303.01 a1741-9166 aissn17419166 a0001156514 a20040524a20059999k y0frey0103 ba0 aeng aUS ay 0  ar azga 0uu 10aDemocracy and security 0aVol. 1, no. 1 (Jan./Jul. 2005)- aBasingstokecRoutledged2005- aSemestriel 1tDemocracy and security (Online)x1555-5860 aSûreté de l'étatxPériodiques aViolence politiquexPériodiques aTerrorismexPériodiques 3aFRbAbesc20081117gAFNOR 3aFRbISSNc20080526 a024 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t716100689db=all zContenu : sommaires depuis le vol. 1 no. 1 (jan-2005)1 bvol. 1 no 1 (jan/jul-2005) -....cParisdMagasins/AnnexeeP 8° 7063 aDEW 355 aGEO RQ Universel01028nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171100016001242000020001402100054001603260023002143260026002375300020002636060040002836060056003237100037003798010021004168560040004378560098004779550095005759720009006709920021006799920014007000000062198000006219820130930171947.01 a0164-3207 aFNSP284687 a19900101a19799999 ba0 aeng aUS aaha 10aDemocratic left aNew YorkcDemocratic socialists of Americad1979- aTrimestrielb1999- aBimestrielb1979-1998 aDemocratic left aSocialismeyAmériquexPériodiques aGauche (science politique)yAmériquexPériodiques02aDemocratic socialists of America 3aFRbCCN0164-32074 uhttp://www.dsausa.org/dl/index.html zContenu : accès libre au texte intégral des articles à partir du numéro de printemps 20001 bvol. 12 no. 3 (mai-jun-1984) -vol. 35 no. 3 (hiv-2008)cParisdMagasins/AnnexeeP 4° 4937 aZCAD aGEO RB Amérique aDEW 320.500891nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210002400183326001200207430004300219517003000262607005200292856006500344856007800409955006400487972000900551992002500560992001600585040457826000018934220130319051305.01 a1267-7817 aFNSP700090 a0000189342 a19900101a19959999 ba0 afre aFR aafa 10aDémocratie & socialisme aPariscD & Rd1995- aMensuel 1aDémocratie et révolution,x1265-549X10aDémocratie et socialisme aFrancexPolitique et gouvernementxPériodiques4 uhttp://www.democratie-socialisme.org./archives/newfile1.html zContenu : texte intégral des numéros à partir du n° 87/88, sept. 20011 bno. 29 (oct-1995) -....cParisdMagasins/AnnexeeP 4° 6602 aZGRA aGEO RA4.06 France 01 aDEW 944.08301038nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002300139210007000162300004600232326001600278421007200294421008900366606004500455710006500500801002100565856003800586955006500624972000900689992002200698992001600720039305309000006218720130513170255.01 a0183-5599 aFNSP284669 a19900101b19782004 ba0 afre aFR aazb 10aDémocratie locale aPariscDirection générale des collectivités localesd1978-2004 aDevient consultable gratuitement en ligne aIrrégulier 1tBulletin d'informations statistiques de la DGCL (Paris),x1141-5487 1tCollection Monographies - Direction générale des collectivités localesx0984-7057 aDémocratie localeyFrancexPériodiques02aFrancebDirection générale des collectivités locales4070 3aFRbCCN0183-55994 uhttp://www.dgcl.interieur.gouv.fr1 bno 15 (mai-1980) -(2004)cParisdMagasins/annexeeP 4° 4596 aZGRA aGEO RA4.06 France aDEW 350-35401271nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210002400174326002200198326002900220326002700249326002900276530002800305606003600333606003000369856005600399856005200455856010900507856010800616955007000724957007200794972000900866991001800875992001600893048779172000012995920140114170818.01 a1351-0347 aFNSP528471 a0000129959 a19940614a19949999 ba0 aeng aGB aaha 10aDemocratization aLondoncCassd1994- aBimestrielb2009- a5 n°s par anb2004-2008 aTrimestrielb1996-2003 a3 n°s par anb1994-1995 0aDemocratizationbLondon aScience politiquexPériodiques aDémocratiexPériodiques4 uhttp://www.tandf.co.uk/journals/titles/13510347.asp zContenu : sommaires depuis le vol. 8, n°1 20044 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713634863db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (pri-1994) -....cParisdMagasins/AnnexeeP 8° 60421 bvol. 1 (1994) -vol. 10 (2004)cParisdMagasins/AnnexeeP Index 0856 aZSAB aexempb201203 aDEW 320-32100947nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210002900179326001600208606003600224710003200260801002100292856006600313856005900379955017600438972000900614991001800623992001600641039603628000001546920130319051306.01 a0416-9565 aFNSP142179 a0000015469 a19900101a19609999 ba0 aita aIT aaha 10aDemocrazia e diritto aRomacEd. riunitid1960- aTrimestriel aScience politiquexPériodiques02aAssociazione CRS (Florence) 3aFRbCCN0416-95654 uhttp://www.francoangeli.it/riviste/sommario.asp?IDRivista=116 zContenu : accès aux sommaires de la revue depuis 20031 bno. 4 (oct-1966) -....cParisdMagasins/AnnexeeP 8° 2463wManquant : vol. 35, no 1,3,4, 1995 ; vol. 36, no 1 à 3, 1996 ; vol. 37, no 1, 1997 ; vol. 38, nos 1 à 4, 1998 aZCAD aexempb201103 aDEW 320-32101308nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005000139210006300189326001600252452003600268530001500304606003100319710003800350801002100388856009000409856010800499856012800607856010800735955006700843972000900910991001800919992002100937992001200958038848988000001597920130910112655.01 a0070-3370 aFNSP143824 a19900101a19649999 ba0 aeng aUS aaha 10aDemographyfPopulation Association of America aWashington, D.C.cPopulation Association of Americad1964- aTrimestriel 1tDemography (Online),x1533-779010aDemography aDémographiexPériodiques02aPopulation Association of America 3aFRbCCN0070-33704 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00703370.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=DEM&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 15 no. 1 (1978) -....cParisdMagasins/AnnexeeP 8° 4208 aZPAY aexempb201106 aGEO RQ Universel aDEW 30401151nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008300154207001800237210006700255326001600322510002000338530004100358607002600399710006500425711002400490856006300514856007500577955006600652972000900718991001800727992005600745992001200801075704234000022594220140108103447.01 a1074-6846 aFNSP807194 a0000225942 a19900101a19929999 ba0 aeng aUS aaha 10aDemokratizatsiya=dDemokratizaciâethe journal of post-soviet democratization 1ano. 1 (1992)- aWashington, D.CcQuality Press of the Southern Tier Incd1992- aTrimestriel10aDemokratizaciâ10aDemokratizatsiyab(Washington, D.C.) aEx-URSSxPériodiques02aMoskovskij gosudarstvennyj universitet imeni M.V. Lomonosova02aAmerican University4 uhttp://www.gwu.edu/~ieresgwu/programs/demokratizatsiya.cfm zContenu : accès libre au texte intégral depuis le vol. 1, n°1, 19921 bvol. 4 no. 2 (1996) -....cParisdMagasins/AnnexeeP 8° 6355 aZSAB aexempb201207 aGEO RA7.02 Etats successeurs de l'Union soviétique aDEW 94700963nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005100154210006100205326001500266606003800281710004100319801002100360856002600381955007000407957012400477972000900601991001800610992002100628992001200649039151239000001614220130319051307.01 a0196-2035 aFNSP144237 a0000016142 a19900101a19719999 ba0 aeng aUS aaju 10aDenver journal of international law and policy aDenver, ColocUniversity of Denver College of Lawd1971- aSemestriel aDroit internationalxPériodiques02aUniversity of DenverbCollege of Law 3aFRbCCN0196-20354 uhttp://www.djilp.org/1 bvol. 8 no. 1 (jan-1979) -....cParisdMagasins/AnnexeeP 8° 44751 b(1971) -(1981)cParisdMagasins/AnnexeeP Index 0382zvol. 11 (1982) -vol. 21 (1993): constitue le vol. 21 no. 3 (1993) aZSAB aexempb200911 aGEO RQ Universel aDEW 34101333nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005900139210007500198326001600273430003700289452008400326530004300410607006200453607005800515710006400573801002100637856009000658856010800748955007000856972000900926991001800935992002800953992001400981038824612000006209420140107135052.01 a0046-001X aFNSP283949 a19900101a19619999 ba0 aspa aAR aaha 10aDesarrollo económico‎erevista de ciencias sociales aBuenos Aires‎cInstituto de Desarrollo Económico y Social‎d1961- aTrimestriel 1aRevista de desarrollo económico 1tDesarrollo económico (Ciudad Autónoma de Buenos Aires. En línea),x1853-8185 aDesarrollo económico‎bBuenos Aires aAmérique latinexPolitique et gouvernementxPériodiques aAmérique latinexPolitique économiquexPériodiques02aInstituto de desarrollo económico y socialc(Buenos Aires) 3aFRbCCN0046-001X4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0046001X.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 3 (oct-1961) -....cParisdMagasins/AnnexeeP 8° 2003 aZPAY aexempb201002 aGEO RD Amérique latine aDEW 338.901116nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008300154210005000237326002300287326002600310326002300336430002700359607005500386607006600441801002100507856006500528856005800593955006300651972000900714991001800723992002500741992001200766038697688000001597820140107174820.01 a0012-1428 aFNSP143823 a0000015978 a19900101a19689999 ba0 ager aDE aafa 10aDeutschland ArchiveZeitschrift für Fragen der DDR und der Deutschlandpolitik aKölncVerlag Wissenschaft und Politikd1968- aTrimestriel$d2011- aBimestriel$d1996-2010 aMensuel$d1968-1995 1aSBZ-Archiv (0563-0894) aAllemagnexPolitique et gouvernementxPériodiques aAllemagne (République démocratique)xHistoirexPériodiques 3aFRbCCN0012-14284 uhttp://hsozkult.geschichte.hu-berlin.de/zeitschriften/id=257 zContenu : sommaires et résumés depuis le n°1, 20031 bno. 5 (aou-1968) -....cParisdMagasins/AnnexeeP 8° 2704 aZPAY aexempb201105 aGEO RA5.01 Allemagne aDEW 94301127cas0 2200325 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200007900139207003900218210006000257326001600317517000900333606003700342606004400379606006400423710004200487801003000529856004200559856008000601955007700681972000900758992002200767992001200789112324428000108602220130319051311.01 a1950-196X a0001086022 a20070205b20062008k frey0103 ba0 afre aFR aahakk 10aDeux mille cinquanteela revue de la Fondation pour l'innovation politique 1aN°1 (avr. 2006)-n° 10 (nov-2008) aPariscFondation pour l'innovation politiqued2006-2008 aTrimestriel10a2050 aVie intellectuellexPériodiques aIdées politiquesyFrancexPériodiques aPolitique publiquexInfluence de la recherchexPériodiques02aFondation pour l'innovation politique 3aFRbAbesc20070207gAFNOR4 uhttp://2050.fondapol.org/archives.jsp zContenu : sommaires des n°s et résumés des articles depuis le n°1, 20061 bno. 1 (avr-2006) -no. 10 (nov-2008)cParisdMagasins/Annexe : P 8° 6973 aZGRA aGEO RA4.06 France aDEW 00101163nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000860015421000520024032600160029260700720030871000470038080100210042785600460044885601140049495500860060895700720069497200090076699100180077599200420079399200140083503623690X000001599120131202124547.01 a0012-1533 aFNSP143843 a0000015991 a19900101a19639999 ba0 aeng aJP aahu 14aThe Developing economiesfthe journal of Institute of developing economies, Japan aTokyocInstitute of Developing Economiesd1963- aTrimestriel aPays en voie de développementxPolitique économiquexPériodiques02aInstitute of Developing Economiesc(Japon) 3aFRbCCN0009/85744 uhttp://www.blackwell-synergy.com/loi/DEVE zContenu : accès libre au texte intégral des articles depuis 1962 à l'exception des deux dernières années1 bvol. 1 no. 1 (1963) -vol. 50 no. 4 (dec-2012)cParisdMagasins/AnnexeeP 8° 21211 bvol. 1 (1963) -vol. 20 (1982)cParisdMagasins/AnnexeeP Index 0263 aZPAY aexempb201105 aGEO RO Pays en voie de développement aDEW 338.901593nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210002900181210002800210210003300238326002200271326002800293326002700321326003000348606004500378607007400423710003200497801002100529856007000550856007300620856010500693856010800798856012800906955006601034972000901100991001801109992004201127992001401169036771368000001614420130319051312.01 a0012-155X aFNSP144242 a0000016144 a19900101a19699999 ba0 aeng aGB aagu 10aDevelopment and change aOxfordcBlackwelld1994- aLondoncSaged1975-1993 aThe HaguecMoutond1969-1974 aBimestrielb2005- a5 nos par anb2000-2004 aTrimestrielb1975-1999 aQuadrimestrielb1969-1974 aDéveloppement économiquexPériodiques aPays en voie de développementxConditions économiquesxPériodiques02aInstitute of Social Studies 3aFRbCCN0012-155X4 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0012155X zContenu : sommaires et résumés depuis le vol. 28, n°1, janv. 19974 uhttps://acces-distant.sciences-po.fr/fork?http://www-fr.ebsco.com/online/direct.asp?JournalID=100829 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=7QQ&site=ehost-live1 bvol. 1 no. 1 (1969) -....cParisdMagasins/AnnexeeP 8° 2749 aZSAB aexempb201005 aGEO RO Pays en voie de développement aDEW 338.900938nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002500139210004900164326001500213606004500228606004600273606003500319710004300354801002100397856009600418955009300514972000900607991001800616992001400634039475107000001615920130903145626.01 a0345-2328 aFNSP144275 a19900101a19729999 ba0 aeng aSE aaju 10aDevelopment dialogue aUppsalacDag Hammarskjöld Foundationd1972- aSemestriel aDéveloppement économiquexPériodiques aAide économique scandinavexPériodiques aAide économiquexPériodiques02aDag Hammarskjöld Foundation (Uppsala) 3aFRbCCN0345-23284 uhttp://www.dhf.uu.se/publications.htmlzAccès libre au texte intégral depuis no 1/2, 19751 bno. 1 (1972) -sp. issue (2002) ; no. 47 (2006) -....cParisdMagasins/AnnexeeP 8° 3389 aZGRA aexempb201005 aDEW 338.901203nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210002500182326001500207606004500222606005300267856005700320856005900377856010900436856010800545955007000653957007100723972000900794991001800803992004200821992001400863040095657000017665520130319051312.01 a0961-4524 aFNSP662743 a0000176655 a19900101a19919999 ba0 aeng aGB aaha 10aDevelopment in practice aOxfordcOxfamd1991- aBimestriel aDéveloppement économiquexPériodiques aOrganisations non gouvernementalesxPériodiques4 uhttp://www.tandf.co.uk/journals/carfax/09614524.html zContenu : sommaires depuis le vol. 8, n°1, fév. 19984 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713412875db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 1 (fev-1995) -....cParisdMagasins/AnnexeeP 8° 62041 bvol. 1 (1991) -vol. 5 (1995)cParisdMagasins/AnnexeeP Index 0776 aZSAB aexempb201211 aGEO RO Pays en voie de développement aDEW 338.901096nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210002400184326001500208430002600223606004500249606007900294710004600373801002100419856007100440856006300511955007000574972000900644991001800653992003100671992004200702992001400744040078795000001600120130319051312.01 a0950-6764 aFNSP143858 a0000016001 a19900101a19839999 ba0 aeng aGB aagu 10aDevelopment policy review aLondoncSaged1983- aBimestriel 1aODI Reviewx0078-7116 aDéveloppement économiquexPériodiques aAide économique britanniqueyPays en voie de développementxPériodiques02aOverseas Development Institutec(Londres) 3aFRbCCN7105/72264 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0950-6764 zContenu : sommaires et résumés depuis le n°1, mars 19971 bvol. 1 no. 1 (mai-1983) -....cParisdMagasins/AnnexeeP 8° 3663 aZSAB aexempb201001 aGEO RA4.02 Grande-Bretagne aGEO RO Pays en voie de développement aDEW 338.900959nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210004200181326001600223606002800239606002900267676000800296801002100304856009900325856004200424955006600466955007000532972000900602991001800611992001600629002564378000001600820130319051314.01 a0378-7931 aFNSP143875 a0000016008 a19900101a19779999 ba0 afre aCH aahu 10aDéviance et société aGenèvecMédecine et hygièned1977- aTrimestriel aDéviancexPériodiques aSociologiexPériodiques a360 3aFRbCCN0378-79314 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-deviance-et-societe.htm? zAccès aux sommaires et aux résumés1 bLes 3 dernières annéescParisd27, Salle 4e étageeDEW 3601 bvol. 1 no. 1 (mai-1977) -....cParisdMagasins/AnnexeeP 8° 3994 aZPAY aexempb201001 aDEW 305-30600961nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000009001552100027001643260019001913260028002105170054002385300009002926070035003018560051003368560141003879550082005289720009006109920028006199920012006470000016012000001601220130319051314.01 a0399-6441 aFNSP143885 a0000016012 a19901026b19712006 ba0 afre aFR aafa 10aDIAL aPariscDIALd1971-2006 aMensuelb2006- aHebdomadaireb1971-200510aDiffusion de l'information sur l'Amérique latine00aDIAL aAmérique latinexPériodiques4 uhttp://www.alterinfos.org/spip.php?rubrique38/ zContenu : la revue cesse de paraître sur support papier, continue en ligne : accès libre au texte intégral à partir de novembre 20061 bno. 69 (dec-1972) -no. 2247 (jun/jul-2006)cParisdMagasinsAnnexeeP 4° 3901 aZPAY aGEO RD Amérique latine aDEW 98000871nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000090001502100018002402300005002583000047002633260016003103360056003263370018003826060036004007020036004367020026004728010013004988560053005119550005005640000505466000050546620130319051314.0 a0000505466 a a20019999k fre 01 ba0 afre aFR ar aay z  adr 10aDialogues politiqueserevue plurielle de science politiqueb[Ressource électronique] aslcsnd2001- a aTexte intégral depuis le n°0 de la revue airrégulier aDonnées textuelles accessibles uniquement en ligne aFichiers HTML aScience politiquexPériodiques 1aMabilon-BonfilsbBéatrice4340 1aSaadounbLaurent4340 0aFRbFNSP4 uhttp://www.la-science-politique.com/sommaire.php1 r01292nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200008200163210004800245326001800293530002500311606002900336606002800365606002800393801001300421856007800434856008900512856012800601856010800729955006600837972000900903991001800912992001200930083501428000066535220130319051314.01 a1044-2057 a0000665352 a a19919999 fre 01 ba0 aeng aCA a 0  ar aai z 0 10aDiasporaejournal of transnational studiesfsponsored by the Zoryan Institute aTorontocUniversity of Toronto Pressd1991- a3 n°s par an10aDiasporab(New York) aMinoritésxPériodiques aEtrangersxPériodiques aDiasporasxPériodiques 0aFRbFNSP4 uhttp://muse.jhu.edu/journals/diaspora_a_journal_of_transnational_studies/ zContenu : accès aux sommaires et résumés des articles depuis le vol.1, n°1, 19914 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=8QC&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 8 no. 1 (1999) -....cParisdMagasins/AnnexeeP 8° 6772 aZPAY aexempb201212 aDEW 32501000cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200004000156210005600196326001600252430005000268530003200318606003600350606002800386801003000414802000700444856003300451856009900484955007000583992002100653992001200674040514021000116705920131025131003.01 a1276-4248 accn1276-4248 a0001167059 a19980721a19979999 0frey0103 ba0 afre aFR aah 10aDiasporiquesecultures en mouvement aPariscDiasporiquescLigue de l'enseignementd1997- aTrimestriel 1tCahiers du cercle Gaston Crémieuxx0399-788X00aDiasporiquesb(Paris. 2008) aMulticulturalismexPériodiques aDiasporasxPériodiques 3aFRbAbesc20081203gAFNOR a074 uhttp://www.diasporiques.org/ zContient les sommaires à partir du no 1, 2008 et une sélection d'articles en texte intégral1 bn. s., no. 1 (mar-2008) -....cParisdMagasins/AnnexeeP 8° 7090 aGEO RQ Universel aDEW 30501172cas0 2200325 450 001001000000002001100010005001700021100004100038101000800079102000700087105001800094106000600112110001600118200004400134207003500178210005800213301005700271301007300328326002500401530002300426606003800449606004000487606003000527702003100557801003000588856011300618955007000731992001200801992003300813167099167000124570820140115163225.0 a20130131a20139999m y0frey50 ba0 aeng aGB ay 0  ar aaia 0 10aDigital journalismfeditor Bob Franklin 0aVol. 1, no. 1 (february 2013)- aAbingdoncRoutledge, Taylor & Francis groupd2013-... aDemande de numérotation ISSN par le CR70 (20130201) aISSN figurant sur la publication 2167-0811 mais pas dans ISSN online a3 fois par anb2013-00aDigital journalism aMédias numériquesxPériodiques aMédiasxInformatiquexPériodiques aJournalismexPériodiques 1aFranklinbBobf(1949-....) 3aFRbAbesc20130205gAFNOR4 uhttp://www.tandfonline.com/toc/rdij20/current#.Ue0gQNjHnWkzAccès intégral depuis depuis le vol. 1 de 20131 bvol. 1 no. 1 (fev-2013) -....cParisdMagasins/AnnexeeP 8° 7209 aDEW 070 aGEO RS Sans aspect régional01227nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005700154210003200211210002200243326001600265530003100281606003600312606002900348676000800377801003000385801001800415856008700433856010800520955005700628957007000685957010100755972000900856992001200865013868373000116660620130319051317.01 a0419-1633 aFNSP143887 a0000016013 a19900101a19529999 ba0 afre aFR aaha 10aDiogèneerevue internationale des sciences humaines aPariscGallimardd1952-1999 aPariscPUFd1999- aTrimestriel10aDiogèneb(Ed. française) aSciences humainesxPériodiques aEthnologiexPériodiques a306 3aFRbAbesc20090303gAFNOR 3aFRbSFgAFNOR4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-diogene.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1953)-....cParisdMagasins/AnnexeeP 8°12661 bno. 1 (1952) -no. 16 (1956)cParisdMagasins/AnnexeeP Index 02681 bno. 171 (1995) - no. 179 (1997)zcet index se trouve dans le no. 180, oct./déc.1997 de la revue aZPAY aDEW 00101138nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005700139210003200196210002200228326001600250530003100266606003600297606002900333801002100362856008000383856010600463955005900569957007000628957010100698972000900799992001600808013868373000001601320131025133928.01 a0419-1633 aFNSP143887 a19900101a19529999 ba0 afre aFR aaha 10aDiogèneerevue internationale des sciences humaines aPariscGallimardd1952-1999 aPariscPUFd1999- aTrimestriel10aDiogèneb(Ed. française) aSciences humainesxPériodiques aEthnologiexPériodiques 3aFRbCCN0419-16334 uhttps://acces-distant.sciences-po.fr/http/www.cairn.info/revue-diogene.htm? zAccès au texte intégral réservé aux lecteurs inscrits à la Bibliothèque, via Cairn, depuis 20011 bno. 1 (1953) -....cParisdMagasins/AnnexeeP 8° 12661 bno. 1 (1952) -no. 16 (1956)cParisdMagasins/AnnexeeP Index 02681 bno. 171 (1995) - no. 179 (1997)zcet index se trouve dans le no. 180, oct./déc.1997 de la revue aZPAY aDEW 305-30601162nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210002400183326002300207326002900230517002700259606002900286606004400315676000800359856004200367856008900409856010900498856010800607955007000715972000900785991001800794992001200812040091864000002592420140110143333.01 a0959-2296 aFNSP169142 a0000025924 a19910227a19909999 ba0 aeng aGB aaia 10aDiplomacy and statecraft aLondoncCassd1990- aTrimestrielb2001- a3 n°s par anb1990-200010aDiplomacy & statecraft aDiplomatiexPériodiques aRelations internationalesxPériodiques a3274 uhttp://www.frankcass.com/jnls/dip.htm zContenu : sommaires et résumés du n° actuel et à paraitre depuis le vol. 6, n°14 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713634951db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 2 (jul-1990) -....cParisdMagasins/AnnexeeP 8° 5701 aZSAB aexempb201112 aDEW 32701228nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002300139210004900162326002400211326002700235452004400262530002300306606004400329676000800373710007100381801002100452856010400473856010800577955006700685955006600752972000900818991001800827992002100845992001200866039086674000001603920130916164810.01 a0145-2096 aFNSP143953 a19900101a19779999 ba0 aeng aUS aaga 10aDiplomatic history aWilmington, Del.cScholarly Resourcesd1977- a5 nos par anb2005- aTrimestrielb1977-2004 1tDiplomatic history (Online),x1467-7709 aDiplomatic history aRelations internationalesxPériodiques a32702aSociety for Historians of American Foreign Relationsc(Etats-Unis) 3aFRbCCN0145-20964 uhttps://acces-distant.sciences-po.fr/fork?http://www3.interscience.wiley.com/journal/118503844/home zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 1 no. 1 (1977) -....cParisdMagasins/AnnexeeP 8° 4899 aZSAB aexempb201002 aGEO RQ Universel aDEW 32701079nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200006800163210006500231326001500296517002400311606003200335606004400367606002500411801001300436856003400449856005800483955005900541955008700600972000900687992001200696992003300708073903434000052848320130319051317.01 a1761-0559 a0000528483 a a20039999k fre ba0 afre aFR a 0  ar aag z 0 10aDiplomatieeaffaires stratégiques et relations internationales aSaint-CannatcDiplomatie magazinea[s.l.]cStrataegisd2003- aBimestriel10aDiplomatie magazine aGéopolitiquexPériodiques aRelations internationalesxPériodiques aGuerrexPériodiques 0aFRbFNSP4 uhttp://diplomatie-presse.com/ zContenu : sommaires et éditoriaux depuis janv. 2003.1 bL’année en courscParisd27, Salle Rez-de chaussée1 bConservation limitée aux 5 dernières annéescParisdMagasins/AnnexeeP 4° 6971 aZPAY aDEW 327 aGEO RS Sans aspect régional01269cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200003700180207002700217210002500244326001500269423004100284430003900325517001800364530003600382606003200418606004400450801003000494801002300524802000700547856004600554856009300600955006600693955006700759992001200826992003300838150689454000123209220130704120858.01 a2115-256X aissn2115256X a0001232092 a20110314a20119999u y0frey50 ba0 afre aFR ay  ar aagu uu 10aDiplomatie.iLes grands dossiers 0aN°1(2011,févr-mars)- aPariscAreiond2011- aBimestriel 1tDiplomatie (Saint-Cannat)x1761-0559 1tDiplomatie. Hors-sériex1959-453410aDiplomatie GD10aDiplomatie. Les grands dossiers aGéopolitiquexPériodiques aRelations internationalesxPériodiques 3aFRbAbesc20110514gAFNOR 3aFRbISSNc20110502 a074 uhttp://www.diplomatie-presse.com/?cat=223 zContenu : sommaires depuis le n° 1 (fev/mar-2011) à l'exception de la dernière année1 bLes 3 dernières annéesc30, ParisdMagasins/AnnexeeDEW 3271 bno. 8 (avr/mai-2012) -....cParisdMagasins/AnnexeeP 4° 7313 aDEW 327 aGEO RS Sans aspect régional01057nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101001300108102000700121105001800128106000600146110001600152200004700168210002900215320007300244326001600317510002600333530003000359606003100389606004400420710006900464801001300533856005600546856003700602955005900639972000900698992001200707044754671000042972520130319051318.01 a1020-7287 a0000429725 a a19999999k f fre ba0 aengafre aCH a 0  ar aah z 0 10aDisarmament forumd= Forum du désarmement aGenèvecUNIDIR :d1999- aTexte tête-bêche en anglais et en français pour l'édition papier aTrimestriel10aForum du désarmement00aDisarmament forum (Print) aDésarmementxPériodiques aSécurité internationalexPériodiques02aInstitut des Nations Unies pour la recherche sur le désarmement 0aFRbFNSP4 uhttp://www.unidir.org/html/en/disarmament_forum.php zAccès libre au texte intégral.1 bno. 4 (1999) -....cParisdMagasins/AnnexeeP 4° 6902 aZECH aDEW 34100990nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000740015421000320022821000330026021000290029332600160032253000210033860600310035985600720039085600490046295501050051197200090061699100180062599200210064399200120066403950669X000003834520130319051318.01 a0361-3666 aFNSP212736 a0000038345 a19900101a19779999 ba0 aeng aGB aaha 10aDisastersethe international journal of disaster studies and practice aOxfordcPergamond1977-1980 aFarnhamcFoxcombed1981-1987 aOxfordcBlackwelld1988- aTrimestriel 0aDisastersbPrint aCatastrophesxPériodiques4 uhttp://www.blackwellpublishing.com/journal.asp?ref=0361-3666&site=1 zContenu : sommaires et résumés depuis 19771 bvol. 13 no. 1 (1989) -....cParisdMagasins/AnnexeeP 8° 5742wManquant : vol. 13, nos 2 et 3, 1989 aZSAB aexempb201111 aGEO RQ Universel aDEW 33300951nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000240015421000240017832600220020232600270022451700260025160600360027785601080031385601080042195500700052997200090059999100180060899200120062699200110063804008986X000007670320130319051319.01 a0957-9265 aFNSP348289 a0000076703 a19900101a19909999 ba0 aeng aGB aaha 10aDiscourse & society aLondoncSaged1990- aBimestrielb2001- aTrimestrielb1990-200010aDiscourse and society aSociolinguistiquexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 1 (jan-1992) -....cParisdMagasins/AnnexeeP 8° 5894 aZSAB aexempb201112 aDEW 301 aDEW 4101254nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200009300139210002800232326001600260430003400276452003400310532008700344606005300431710007100484801002100555830006200576830005200638856009400690955006900784972000900853991001800862992002200880992001400902039243451000001694120131002151423.01 a0251-3625 aFNSP146309 a19900101a19659999 ba0 ager aCH aaha 10aDISPeDokumente und Informationen zur Schweizerischen Orts-, Regional- und Landesplanung aZürichcORL-ETHd1965- aTrimestriel 1tInformationen DISPx0579-7764 1tDISP (Online), ISSN 2166-860410aDokumente und Informationen zur Schweizerischen Orts-, Regional- und Landesplanung aAménagement du territoireySuissexPériodiques02aInstitut für Orts-, Regional-und Landesplanungc(Zürich, Suisse) 3aFRbCCN0251-3625 ano. 12, 1969--> no. 77, 1984 : donné au CTL en juin 2002 a1985-2009 : collection envoyée au CTles en20134 uhttp://www.nsl.ethz.ch/index.php/de/content/view/full/96zAccès libre au texte intégral1 bno. 78 (1985) -no 179 (2009)cParisdMagasins/AnnexeeP 4° 3064 aZGRA aexempb201306 aGEO RA5.14 Suisse aDEW 330.901081nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001200154210003500166326001600201530002200217606002900239606003700268801002100305856003600326856009300362955015100455957014300606991001800749992001200767038698641000001599220130319051320.01 a0012-3846 aFNSP143844 a0000015992 a19900101a19549999 ba0 aeng aUS aaha 10aDissent aNew York, N.Y.cDissentd1954- aTrimestriel00aDissentbNew York aSocialismexPériodiques aProblèmes sociauxxPériodiques 3aFRbCCN0012-38464 uhttp://www.dissentmagazine.org/ zContenu : sommaire ; texte intégral (sélection) ; depuis le vol. 43, n°2, print. 19961 bvol. 1 no. 1 (hiv-1954) -vol. 46 no. 4 (1999)cParisdMagasins/AnnexeeP 8° 1650wManquant : vol. 40, no 1à 4, 1993 et vol. 41, no. 1 à 4, 19941 bLes index cumulatifs (1972/1973), (1974/1975) sont respectivement dans le vol. 21 no. 1 (hiv-1974) et vol. 23 no. 1 (hiv-1976) de la revue aexempb201006 aDEW 30001253cas0 2200373 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147106000600154110001600160200013700176207002500313210006900338326001600407430003700423606004800460606003600508710006000544712006000604801003000664801002300694802000700717856002800724856003600752955006600788972000900854992001600863078960207000098688920130319051321.01 a1769-8502 a097914363 aissn17698502 a0000986889 a20040615a20049999k y1frey0103 ba0 afre aFR ar aah 10aDiversitéeville, école, intégrationf[publication du CNDP]gServices, culture, éditions, ressources pour l'éducation nationale 0a(N° 137) juin 2004- aMontrougecCentre de ressources Ville-école-intégrationd2004- aTrimestriel 1tVEI enjeux (Imprimé)x1299-085X aIntégration scolaireyFrancexPériodiques aEducationyFrancexPériodiques02aCentre national de documentation pédagogiquec(France)02aCentre de ressources Ville-école-integrationc(France) 3aFRbAbesc20060522gAFNOR 3aFRbISSNc20050901 a074 uhttp://www.cndp.fr/vei/4 zAccès libre au texte intégral1 bno. 137 (jun-2004) -....cParisdMagasins/AnnexeeP 8 ° 6902 aZPAY aDEW 305-30601005nls 2200301 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000105001502100027002552300024002823260031003065170031003376060040003686760015004087100057004238010013004808300107004938560061006008560037006619550005006980000442906000044290620130319051322.0 a0000442906 a a19979999k fre 01 ba0 afre aFR ar aby z  adr 10aDocument de travail -Observatoire français des conjonctures économiquesb[Ressource électronique] aPariscOFCEd1997-.... aDonnées textuelles aCollection de monographies10aDocument de travail - OFCE aPolitique économiquexPériodiques a338.9v21a02aObservatoire français des conjonctures économiques 0aFRbFNSP adm : avant 1997 voir dans l'index Collection "document de travail / OFCE" pour les documents imprimés4 uhttp://www.ofce.sciences-po.fr/publications/document.htm4 zAccès libre au texte intégral.1 r00960nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210002600178326001600204517000900220530003100229830008100260856009000341856008000431955008300511972000900594991001800603992002500621992001200646040536726000026728120130319051322.01 a1279-5127 aFNSP925808 a0000267281 a19990302a19979999 ba0 afre aFR aaha 10aDocument numérique aPariscHermèsd1997- aTrimestriel10aRSTI 0aDocument numériquebParis an'avons plus d'abonnement ; conservation 1997-1999 ; nos suivants déherbés4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue.php?ID_REVUE=DN zContient : sommaires, résumés et texte intégral des articles depuis 20011 bvol. 1 no. 1 (1997) -vol. 3 no. 3/4 (1999)cParisdMagasins/AnnexeeP 8° 6462 aZPAY aexempb201301 aGEO RA4.06 France 01 aDEW 02001496nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200013400139207006900273210002300342326001600365517004800381530002900429606004400458710008500502801002100587801001300608801001300621830005300634856022500687955008100912955007500993957005701068972000901125992001201134039222705000001671120131009140807.01 a0012-4508 aFNSP145556 a19900101a19649999 ba0 afre aFR aaga 10aDocumentaliste‎esciences de l'information‎fAssociation française des documentalistes et des bibliothécaires spécialisés 1aVol. 1, no. 1 (1964)-vol. 44, no. 6 (2007) ; n.s., no.1, (2008)- aPariscADBSd1964- aTrimestriel10aDocumentaliste sciences de l'information‎10aDocumentaliste‎bParis aSciences de l'informationxPériodiques02aAssociation française des documentalistes et des bibliothécaires spécialisés 3aFRbCCN0012-4508 0aFRbFNSP 0aFRbFNSP a1985-2010 : collection envoyée au CTles en 20134 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-documentaliste-sciences-de-l-information.htm?zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 2 dernières annéescParisdFonds professionnel (4e étage)eP 4° 24501 bno. 1 (1985) -....cParisdFonds professionnel (4e étage)eP 4° 24501 b(1964) -(1983)cParisdMagasins/AnnexeeP Index 0533 aZPAY aDEW 02001154nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200011300139207004700252210003200299326002600331326002700357326002600384530002600410607004900436607005500485801002100540856011400561955008800675972000900763991001900772992002500791992001200816001255622000001616420131022103630.01 a0151-0827 aFNSP144285 a19900101b19452009 ba0 afre aFR aagu 00aDocumentserevue des questions allemandesfCentre d'information et de documentation économiques et sociales 1avol. 1 no. 1 (1945) -vol. 64, no. 2 (2009) aPariscDocumentsd1945-2009 aBimestrielb2006-2009 aTrimestrielb2001-2005 aBimestrielb1945-200010aDocumentsbStrasbourg aAllemagnexConditions socialesxPériodiques aAllemagnexPolitique et gouvernementxPériodiques 3aFRbCCN7002/43084 uhttp://www.revuedocuments.comzRéférences des articles parus depuis 1945 et sommaires des numéros récents1 bvol. 2 no. 1(janv- 1947) -vol. 64, no 2 (2009);cParisdMagasins/AnnexeeP 8° 0161 aZGRA aaexempb201010 aGEO RA5.01 Allemagne aDEW 94301003nls 2200289 450 0010011000000020011000110050017000220350015000391000041000541010013000951020007001081050018001151060006001331100016001391350018001552000060001732100028002333000090002613000110003513260015004615170032004766060026005087120078005348010013006128560059006259550029006840000311907000031190720130319051322.0 a0000311907 a a19939999k fre ba0 afreaeng aFR a 0  az abu z 0  adz 10aDocuments de travail - CEPIIb[Ressource électronique] aPariscCEPIId1993-.... aAccès : World Wide Web. URL : http://www.cepii.fr/francgraph/doctravail/docw2001.htm aTexte en anglais ou en français. - Texte intégral au format pdf, télédéchargeable avec Adobe Acrobat aCollection10aDocument de travail - CEPII aPolitique économique02aCentre d'études prospectives et d'informations internationalesc(France) 0aFRbFNSP4 uhttp://www.cepii.fr/francgraph/doctravail/docw2001.htm1 rConsultable sur Internet01127nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000059001502100087002092300024002963260039003203370102003595170091004615170033005526060037005857100078006228010013007008300007007138560065007209550040007850000491754000049175420130319051322.0 a0000491754 a a19959999k fre 01 ba0 afre aFR az abu z  adr 10aDocuments de travailb[Ressource électronique]fINSEE aPariscInstitut national de la statistique et des études économiques d1995-.... aDonnées textuelles aCollection de documents de travail aTexte intégral au format pdf, télédéchargeable à partir de février 1995 avec Adobe Acrobat.10aDocuments de travail - Institut national de la statistique et des études économiques10aDocuments de travail - INSEE aEconomie politiquexPériodiques02aInstitut national de la statistique et des études économiquesc(France) 0aFRbFNSP aBH4 uhttp://www.insee.fr/fr/ppp/doc_travail/liste_doc_travail.asp1 rConsultable uniquement sur Internet01200cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200006700162210002100229530006700250531004200317606003800359606004200397676000800439801003000447801003000477802000700507856014300514856014600657945001900803991001900822991002100841037679201000085167720131216093432.0 a0777-1207 accn0777-1207 a0000851677 a19891214b18931914 0frey0103 ba0 afre aBE ar aak 10aDocuments relatifs à la répression de la traite des esclaves aBruxellescHayez00aDocuments relatifs à la répression de la traite des esclaves 0aDoc. relat. répress. traite esclaves aTraite des esclavesxPériodiques aEsclavagexLutte contrexPériodiques a326 3aFRbAbesc20050105gAFNOR 3aFRbAbesc20050105gAFNOR a0M4 uhttp://archive.org/stream/documentsrelati00trgoog#page/n4/mode/2upzAccès libre au texte intégral. 1896 numérisée sur Internet Archive4 uhttp://archive.org/stream/documentsrelati00belggoog#page/n11/mode/2upzAccès libre au texte intégral. 1905 numérisée sur Internet Archive bFOL.0641(1894) aSAFIGbTA040ca anumer1 lot folio01465nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101001300123102000700136110001600143200001400159210003700173320014900210326002300359326002600382326002700408326002600435517002000461530002100481607005500502607004900557676000800606710005900614801002100673856005000694856009300744955006600837955008800903972000900991991001801000992002501018992001201043038698927000001679420130329115730.01 a0012-5172 aFNSP145831 a0000016794 a19900101a19459999 ba0 agerafre aDE aaga 10aDokumente aBonncEuropa Union Verlagd1945- aEdition bilingue allemand/français, à partir du numéro spécial 3-4 de 2009, suite à la cessation de paraître de "Documents" ISSN 0151-0827 aTrimestrielb2010- aBimestrielb1986-2009 aTrimestrielb1971-1985 aBimestrielb1945-197010aDokumente(Bonn)10aDokumentebKöln aAllemagnexPolitique et gouvernementxPériodiques aAllemagnexConditions socialesxPériodiques a94002aGesellschaft für übernationale Zusammenarbeit (Bonn) 3aFRbCCN0012-51724 uhttp://www.zeitschrift-dokumente.de/index.php zContenu : sommaires depuis 1945, dossiers et chronologies depuis 2007 en texte intégral1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 bno. 1 (1952) -no. 6 (1953) ; no. 1 (1980) -....cParisdMagasins/AnnexeeP 8° 0447 aZCAD aexempb201204 aGEO RA5.01 Allemagne aDEW 94300992nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007200154210007900226326001600305607003600321710006700357801002100424856005100445856006100496955006600557972000900623991001800632992002800650992001200678038699001000006249220130319051324.01 a0012-5415 aFNSP286263 a0000062492 a19900101a19569999 ba0 ager aAT aaha 14aDer DonauraumeZeitschrift des Forschungs-Institutes für Donauraum aWiencFachverlag für Wirtschaft und Technik Ges. M. B. H. & Co. KGd1956- aTrimestriel aEurope danubiennexPériodiques02aForschungsinstitut für den Donauraum als Vierteljahresschrift 3aFRbCCN0012-54154 uhttp://www.idm.at/publikationen/der_donauraum/ zContenu : titres des numéros et couvertures depuis 19961 bvol. 1 no. 1 (1956) -....cParisdMagasins/AnnexeeP 8° 1415 aZCAD aexempb201102 aGEO RA5 Europe centrale aDEW 94301907cas0 2200541 450 00100090000000200110000900500170002001100140003702000170005102100200006803500140008803500160010203500150011803500170013303500170015003500180016703500150018510000410020010100130024110200070025410500180026110600060027911000160028520000470030121000280034830800670037632600230044341000360046660700460050260700370054860700440058567600080062971000780063780100300071580100200074580100210076580100180078680100230080480200070082783001940083485600730102885600360110195500610113795500710119895500550126999200250132499200160134932927126000075766220130319051324.01 a0758-6531 aFRb29601162 aFRbDL 96-13980 a101526180 aocm03903976 zocm1078556 accn0758-6531 aissn07586531 afrBN021219378 a0000757662 a19780517a19732006k z0frey0103 ba0 afreefre aFR ay 0  ar aamahi 0 010aDonnées socialesela société française aPariscINSEEd1973-2006 aA partir de 2002, appartient à la collection : "Références" aTous les trois ans 1tRéférences - INSEEx1639-4968 aFrancexConditions socialesxPériodiques aFrancexPopulationxPériodiques aFrancexPolitique socialexPériodiques a30102aInstitut national de la statistique et des études économiquesc(France) 3aFRbAbesc20070411gAFNOR 1aUSbOCLCgAACR2 2aFRbAUROCgAFNOR 3aFRbBNgAFNOR 3aFRbISSNc20030523 a07 adm : décotage : anciennes cotes : COL4*3194(024), COL4°3194(039), COL4°3194(062-063), 4°014.222(1981), 4°014.222(1984), 4°014.222(1987), 4°018.639, 4°021.517, 4°023.597, 4°027.3264 uhttp://www.insee.fr/fr/publications-et-services/collection.asp?id=134 zAccès libre au texte intégral1 bLa dernière annéecParisd27, Salle 4e étageeDEW 3011 bLa dernière annéecParisdBibliothèque de rechercheeP 4° 71901 b(1973) -(2006)cParisdMagasins/AnnexeeP 4° 7190 aGEO RA4.06 France 01 aDEW 360-36300851nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000043001502100057001932300024002506060055002747110053003298010013003828560068003958560072004639550005005359920022005409920011005620001162422000116242220130319051324.0 a0001162422 a a20059999k fre 01 ba0 afre aFR ar aaz z  adr 10aDossier CNCb[Ressource électronique] aPariscCentre national de la cinématographied2005- aRevue électronique aIndustrie cinématographiqueyFrancexPériodiques02aCentre national de la cinématographiec(France) 0aFRbFNSP4 uhttp://www.cnc.fr/Site/Template/F4.aspx?SELECTID=593&id=326&t=1 zContenu : texte intégral des articles depuis le n° 293, mars 20051 r aGEO RA4.06 France aDEW 7901193nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003000139210008800169326001500257430005200272440005900324530004700383606003800430606003000468676000800498710006200506856006100568856011000629955008500739972000900824992002200833992001200855001031384000000410920131017112811.01 a0767-4775 aFNSP104821 a19900101b19852003 ba0 afre aFR aagu 10aDossiers de l'audiovisuel aBry-sur-MarneaAubervillierscINA-publicationscDocumentation françaised1985-2003 aBimestriel 1aProblèmes audiovisuels (Paris)xISSN 0249-3756 1tLes Nouveaux dossiers de l'audiovisuelxISSN 1769-101X10aDossiers de l'audiovisuelb(Bry-sur-Marne) aAudiovisuelyFrancexPériodiques aAudiovisuelxPériodiques a07002aInstitut national de l'audiovisuelc(France ;c1986-....)4 uhttp://www.ina.fr/produits/publications/da/index.fr.html zContenu : sommaires depuis le n°1, 1985 et sommaires et résumés depuis le n°35, janvier-février 19911 bno. 1 (mai/jun-1985) -no. 112 (nov/dec-2003)cParisdMagasins/AnnexeeP 4° 4600 aZCAD aGEO RA4.06 France aDEW 30201278nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002900139210005000168320002600218326002700244430006200271606004600333606004500379712015700424830004000581856020800621955010100829972000900930992002500939992001200964040405680000018744520130521172014.01 a1263-1973 aFNSP694089 a19900101b19962006 ba0 afre aFR aafa 14aLes Dossiers de la DARES aPariscLa Documentation françaised1996-2006 aN' a pas paru en 2002 aSemestriel depuis 2003 1aPremières informations. Dossiers statistiquesx0298-430X aEconomie du travailyFrancexPériodiques aMarché du travailyFrancexPériodiques02aFrancebMinistère du travail, de l'emploi et de la formation professionnellebDirection de l'animation de la recherche, des études et des statistiques atraité en collection dans le Sudoc4 uhttp://travail-emploi.gouv.fr/etudes-recherche-statistiques-de,76/etudes-et-recherche,77/publications-dares,98/collections-archivees,1732/dossiers-de-la-dares,105/zliste des thèmes depuis le no 3, 19981 bno. 1 (jan-1996) -no. 6 (2001) ; no. 1 (2003) - no. 1 (2006)cParisdMagasins/AnnexeeP 4° 6402 aZPAY aGEO RA4.06 France 01 aDEW 33100761nls 2200229 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200005200124207001300176210002300189230002400212326001800236330021400254801001300468856004500481992000500526000124335520130429122224.0 a a20019999k fre 01 ba0 afre aFR ar aag z  adr 14aLes dossiers du Cerib[Ressource électronique] 1a(2011-1) aPariscCERId2001- aRevue électronique a6 n°s par an aDossier consacré à une actualité internationale souvent compliquée à décrypter : évènements mondiaux (échéances électorales, conflits, catastrophes, enjeux stratégiques, signatures d’accords…). 0aFRbFNSP4 uhttp://www.sciencespo.fr/ceri/fr/dossier a01448nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200015800163207004800321210005000369300005000419326001600469430005600485440005700541606005500598606004200653710013400695801001300829856005900842856003600901955007100937972000901008992002501017992001601042992001601058045105499000028192720130319051325.01 a1296-2120 a0000281927 a b19982006k fre ba0 afre aFR a 0  ar aah z 0 10aDossiers solidarité et santéfMinistère de l'emploi et de la solidarité, Direction de la recherche, des études, de l'évaluation et des statistiques 1ano. 4 (1998)no. 4 (2006, déc.) ; H.S. 2007 aPariscLa Documentation françaised1998-2007 aPublié uniquement en ligne à partir de 2007 aTrimestriel 1tSolidarité santé. Etudes statistiques,x0764-4493 1tDossiers solidarité et santé (En ligne)x1958-587X aService socialyFrancexStatistiquesxPériodiques aSanté publiqueyFrancexPériodiques02aFrancebMinistère de l'emploi et de la solidaritébDirection de la recherche, des études, de l'évaluation et des statistiques 0aFRbFNSP4 uhttp://www.sante.gouv.fr/drees/dossier-solsa/index.htm zAccès libre au texte intégral1 bno. 1 (1998) -no. 4 (dec-2006)cParisdMagasins/AnnexeeP 4° 3145 aZPAY aGEO RA4.06 France 01 aDEW 310-319 aDEW 360-36300924nls 2200313 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000045001642100005002092300005002143000059002193260016002783360101002943370017003956060030004126060041004427100062004838010013005458560047005589550005006050000432335000043233520130319051325.0 a1155-4142 a0000432335 a a20019999k fre 01 ba0 afre aFR az aay z  adr 10aDREE Dossiersb[Ressource électronique] a a aTexte intégral de la publication depuis février 2001 airrégulier aDonnées textuelles accessibles uniquement en ligne ou par abonnement par courrier électronique aFichiers PDF aRisque paysxPériodiques aCommerce internationalxPériodiques02aFrancebDirection des relations économiques extérieures 0aFRbFNSP4 uhttp://www.dree.org/publications/index.htm1 r01014nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210002300177326001200200430005100212517002400263606003900287606002900326856008500355856010800440955012100548972000900669992002200678992001200700039986365000008919420130319051325.01 a1165-4074 aFNSP393249 a0000089194 a19900101a19939999 ba0 afre aFR aafa 10aDroit & patrimoine aPariscLamyd1993- aMensuel 1aJournal des notaires et des avocatsx0751-645210aDroit et patrimoine aDroit privéyFrancexPériodiques aPatrimoinexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (jan-1993) -no. 40 (jul/aou-1996) ; no. 134 (fev-2005) -no. 148 (mai-2006)cParisdMagasins/AnnexeeP 4° 6233 aZPAY aGEO RA4.06 France aDEW 34600934nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002400139210003300163326001200196430005400208530003400262606004600296606003900342676000800381856003600389856010800425955009000533972000900623992001200632039606619000006209720130514112757.01 a0419-7461 aFNSP283957 a19900101a19629999 ba0 afre aFR aafa 10aDroit administratif aPariscEd. techniquesd1962- aMensuel 1aRevue pratique de droit administratif,x0482-833X10aDroit administratif‎bParis aDroit administratifyFrancexPériodiques aDroit publicyFrancexPériodiques a3424 uhttp://global.lexisnexis.com/fr zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1962) -vol. 43 no. 7 (jul-2004)cParisdMagasins/AnnexeeP 4° 1434 aZPAY aDEW 34200896nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000051001502070047002012100005002482300024002533260005002776060046002826060031003288010013003598560072003728560108004449550005005529920012005579920025005690000994389000099438920130319051325.0 a0000994389 a a20049999k fre 01 ba0 afre aFR ar aaz z  adr 10aDroit administratifb[Ressource électronique] 1aParis :$cLexisNexis Jurisclasseur :$c2004- a aRevue électronique a aDroit administratifyFrancexPériodiques aDroit publicxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aDEW 342 aGEO RA4.06 France 0100852nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000052001502070047002022100005002492300024002543260005002786060044002838010013003278560072003408560108004129550005005209920012005259920025005370000994390000099439020130319051326.0 a0000994390 a a20049999k fre 01 ba0 afre aFR ar aaz z  adr 10aDroit des sociétésb[Ressource électronique] 1aParis :$cLexisNexis Jurisclasseur :$c2004- a aRevue électronique a aSociétésxDroityFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aDEW 346 aGEO RA4.06 France 0100844nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210002300177326001800200606002400218856009600242856010800338955006000446972000900506991001800515992002100533992001200554001033603000003341320140110122529.01 a0769-3362 aFNSP196865 a0000033413 a19900101a19859999 ba0 afre aFR aaia 10aDroit et société aPariscLGDJd1985- a3 n°s par an aDroitxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-droit-et-societe.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 14 (1990) -....cParisdMagasins/AnnexeeP 8° 5729 aZCAD aexempb201111 aGEO RQ Universel aDEW 34000839nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000059001502100034002092300024002433260005002676060041002728010013003138560085003268560108004119550005005199920025005249920012005490000969208000096920820130319051327.0 a0000969208 a a19909999k fre 01 ba0 afre aFR ar aaz z  adr 13aLe droit maritime françaisb[Ressource électronique] aPariscLamyline Reflexc1990- aRevue électronique a aDroit maritimeyFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 34101203nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003100139210005200170326001500222430004400237452005800281530002100339606003500360710004800395830005300443856021600496955006800712957007000780972000900850991001800859992001200877040162192000001625020130930163448.01 a1016-4995 aFNSP144476 a19901030a19889999 f ba0 afre aFR aaza 10aDroit nucléaireeBulletin aPariscAgence pour l'énergie nucléaired1988- aSemestriel 1aBulletin de droit nucléairex0304-3428 1tBulletin de droit nucléaire (En ligne)‎x1684-356810aDroit nucléaire aDroit nucléairexPériodiques02aAgence de l'OCDE pour l'énergie nucléaire a1988-2001 : collection envoyée au CTles en 20134 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043428/bulldroitnucleairezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 41 (1988) -no. 2 (2001)cParisdMagasins/AnnexeeP 4° 25001 bno. 1 (1968) -no. 60 (1997)cParisdMagasins/AnnexeeP Index 0471 aZPAY aexempb201307 aDEW 34101207nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001100154210005100165326001500216517004300231606002400274676000800298710007800306801002100384856011500405856009900520955006600619955005900685957008600744972000900830991001800839992001200857039756521000000425120130319051327.01 a0766-3838 aFNSP105220 a0000004251 a19900101a19859999 ba0 afre aFR aaju 10aDroits aPariscPresses universitaires de Franced1985- aSemestriel10aRevue française de théorie juridique aDroitxPériodiques a34002aInstitut de recherches politiques, administratives et juridiquesc(Paris) 3aFRbCCN0766-38384 uhttp://www.puf.com/wiki/Droits,_Revue_fran%C3%A7aise_de_th%C3%A9orie,_de_philosophie_et_de_cultures_juridiques zContenu : sommaires du n°25, 1997 au n°32, 2000 ; thèmes des numéros depuis le n°22, 19951 bLes 3 dernières annéescParisd30, Salle 3e étageeDEW 3401 bno. 1 (1985) -....cParisdMagasins/AnnexeeP 8° 48291 bno. 1 (1985) -no. 20 (1994)zCet index se trouve dans le n° 20, 1994 de la revue aZCAD aexempb200912 aDEW 34000762nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002100163210003900184326001500223606003600238801001300274856003800287856006000325955007800385972000900463992001200472040414620000058230720130319051328.01 a1263-6223 a0000582307 a b19972007k fre ba0 afre aFR a 0  ar aaj z 0 10aDrôle d'époque aNancycDrôle d'époqued1997-2007 aSemestriel aSciences socialesxPériodiques 0aFRbFNSP4 uhttp://www.revuedroledepoque.com/ zsommaires et sélection d'articles depuis le n°1, 19971 bno. 10 (prin-2002) -no. 20 (aut-2007)cParisdMagasins/AnnexeeP 8° 6723 aZPAY aDEW 00100863nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000048001502100041001983000074002393260015003133360056003283370018003846060036004027100027004387110028004658010013004938560038005069550005005449920012005490000505671000050567120130319051328.0 a0000505671 a a19979999k fre 01 ba0 afre aFR ar aaj z  adr 10aDrôle d'époqueb[Ressource électronique] aNancycUniversité de Nancy 2d1997- aSélection d'articles en texte intégral depuis le n°1, automne 1997 asemestriel aDonnées textuelles uniquement disponibles en ligne aFichiers HTML aSciences socialesxPériodiques02aForum-Irts de Lorraine02aUniversité de Nancy II 0aFRbFNSP4 uhttp://www.revuedroledepoque.com/1 r aDEW 30001003nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154207005000185210003900235326001600274517002000290606004200310801002100352856010900373856010800482955008900590991001800679992001600697037431463000001654320130319051328.01 a8756-8233 aFNSP145220 a0000016543 a19900101b19862000 ba0 aeng aUS aahu 10aDrugs & society (New York) 1avol. 1, no. 1 (1986) -vol. 16, no. 1/2 (2000) aNew YorkcHaworth Pressd1986-2000 aTrimestriel10aDrugs & society aDrogues et criminalitéxPériodiques 3aFRbCCN8756-82334 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t904385151db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (aut-1986) -vol. 15, no. 1/2 (1999)cParisdMagasins/AnnexeeP 8° 5127 aexempb201011 aDEW 364-36501307cas0 2200385 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200004600148210002900194326001200223421003300235452003600268530001900304532004200323606004400365606004400409606003800453801003000491801002300521802000700544856011100551955006900662955006400731955007700795992001600872992001200888992002100900090068165000114503020131002115608.01 a1772-788X a20050221a20059999k y0frey0103 ba0 afre aFR ay  ar aafu uu 10aDSIedéfense & sécurité internationale aVentabrencAreiond2005- aMensuel 1tDSI. Hors-série,x1960-1514 1tDSI (Paris. 2010)‎x2115-187310aDSIbVentabren10aDéfense et sécurité internationale aSécurité internationalexPériodiques aRelations internationalesxPériodiques aPolitique militairexPériodiques 3aFRbAbesc20080407gAFNOR 3aFRbISSNc20080314 a074 uhttp://www.areion.fr/publishing/www_DSI/index.htmlzContenu: sommaires des n°s depuis le no. 1 (fev-2005)1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 72641 bno. 54 (dec-2009) -....cParisdMagasins/AnnexeeP 4° 72641 bno. 33 (jan-2008) -no. 53 (nov-2009)cParisdMagasins/AnnexeeP 8° 7036 aDEW 355-359 aDEW 327 aGEO RQ Universel01299nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005200154210005500206326002400261326002600285517005400311606003300365606003800398710005100436856011900487856010800606856004400714856006500758955006600823972000900889991001800898992002100916992001200937040276902000007250320130319051329.01 a1053-6736 aFNSP332927 a0000072503 a19900101a19919999 ba0 aeng aUS aaja 10aDuke journal of comparative & international law aDurham, N.C.cDuke University School of Lawd1991- a3 nos par an$d2009- aSemestriel$d1991-200810aDuke journal of comparative and international law aDroit comparéxPériodiques aDroit internationalxPériodiques02aDuke Universityc(Durham, N.C.)bSchool of Law4 uhttps://acces-distant.sciences-po.fr/fork?http://heinonline.org/HOL/Index?collection=journals&index=journals/djcil zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.law.duke.edu/journals/djcil/ zContenu : texte intégral depuis le vol.7, n°2, spring 19971 bvol. 1 no. 1 (1991) -....cParisdMagasins/AnnexeeP 8° 5880 aZSAB aexempb201112 aGEO RQ Universel aDEW 34101052nas0 2200301 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123200007600141207002500217210005400242326001800296606003800314606004700352606002900399801003000428856010900458856007500567955006600642972000900708992001200717992002100729139145958000117939020130319051330.01 a1746-7586 a0001179390 a20091210a20089999k frey0103 ba0 aeng aGB ay 10aDynamics of asymmetric conflictepathways toward terrorism and genocide 0aVol. 1 no. 1 (2008)- aAbingtoncRoutledge Taylor & Francis Groupd2008- a3 n°s par an aGuerre asymétriquexPériodiques aConflits de basse intensitéxPériodiques aTerrorismexPériodiques 3aFRbAbesc20091210gAFNOR4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t778749996db=all zContient sommaires et résumés des n°s depuis le vol. 1 no. 1 (2008)1 bvol. 1 no. 1 (2008) -....cParisdMagasins/AnnexeeP 8° 7112 aZSAB aDEW 909 aGEO RQ Universel00718nls 2200265 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000056001502100028002062300025002346060044002598010013003038560047003168560051003639550005004149920021004199920012004400001183491000118349120130319051330.0 a0001183491 a a20099999k fre 01 ba0 afre aFR ar aaj z  adr 10aDynamiques internationales[Ressource électronique] aBordeauxcSPIRITd2009- aaRevue électronique aRelations internationalesxPériodiques 0aFRbFNSP4 uhttp://www.dynamiques-internationales.com/ zContenu : texte intégral depuis le n°1, 20091 r aGEO RQ Universel aDEW 32701162nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003200139210006000171326003200231430004500263440004500308517003600353530003400389606005600423607004600479801002100525856004700546856004600593955007100639957006700710972000900777992002200786992001600808039389162000000439820131028120311.01 a0245-9132 aFNSP105541 a19900101b19641990 ba0 afre aFR aahu 10aE & H Economie et humanisme aCaluire‎cCentre Économie et humanisme‎d1964-1990 aBimestriel puis Trimestriel 1aEconomie et humanisme (1952),x0013-0516 1tEconomie et humanisme (1991),x1637-980210aE.H.‎eéconomie et humanisme aE. & H. Economie et humanisme aEconomie sociale et solidaireyFrancexPériodiques aFrancexConditions socialesxPériodiques 3aFRbCCN0245-91324 uhttp://www.economie-humanisme.org/EH4.html zContenu : sommaire depuis le n°311, 19901 bno. 155 (1964) -no. 315 (1990)cParisdMagasins/AnnexeeP 8° 01261 b(1960/1969), (1980/1989)cParisdMagasins/AnnexeeP Index 0156 aZPAY aGEO RA4.06 France aDEW 360-36301046nas 2200313 i 450 002001100000005001700011100004100028101000800069102000700077105001800084106000600102110001600108200003200124210004700156300002800203326001100231606004000242607003000282607004500312607002900357607004300386710005200429801001300481856014000494955005200634972000900686992002100695992001600716000061713320130919091838.0 a a19979999 fre 01 ba0 aeng aJP a 0  ar aa z 0 10aEast Asian strategic review aTokyocNIDSaTokyocThe Japan Timesd1997- aPublication en japonais aAnnuel aSécurite nationaleyAsie orientale aJaponxDéfense nationale aJaponxRelations extérieuresz1989-.... aAsie orientalexDéfense aAsie orientalexRelations extérieures02aNational Institute for Defense Studiesc(Japon) 0aFRbFNSP4 uhttp://www.nids.go.jp/english/publication/east-asian/zAccès aux résumés de 1996/1997à 2000 et au texte intégral à partir de 20011 a(2003)-....cParisdMagasins/AnnexeeP 8° 6761 aZPAY aGEO RI3.22 Japon aDEW 355-35901084nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131105001800138200004000156210005300196326001600249606004900265606005700314710003200371801001300403856003300416856011600449955009600565972000900661992005600670992003200726992001200758040320804000024901420130319051331.01 a1075-8402 aFNSP872139 a0000249014 a19900101b19922003 fre 0 aeng aHU ay z a 10aEast European constitutional review aBudapestcCentral European Universityd1992-2003 aTrimestriel aDroit constitutionnelyEx-URSSxPériodiques aDroit constitutionnelyEurope de l'EstxPériodiques02aCentral European University 0aFRbFNSP4 uhttp://www.law.nyu.edu/eecr/ zContenu : sommaires ; texte intégral ; recherche sur les mots du texte ; depuis le vol. 6, n°2/3, print. 19971 bvol. 6 no. 1 (hiv-1997) -vol. 12 no. 2/3 (pri/ete-2003)cParisdMagasins/AnnexeeP 4° 6765 aZCAD aGEO RA7.02 Etats successeurs de l'Union soviétique aGEO RA2.02 Europe orientale aDEW 34201128nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000330015421000470018732600180023443000370025260600320028960600410032171000430036285601090040585601080051495500660062297200090068899100180069799200390071599200320075499200160078603673716X000007231420130319051331.01 a1350-1674 aFNSP331933 a0000072314 a19900101a19929999 ba0 aeng aGB aaja 10aEast European Jewish affairs aLondoncInstitute of Jewish Affairsd1992- a3 n°s par an 1aSoviet Jewish affairsx0038-545X aJuifsyRussiexPériodiques aJuifsyEurope de l'EstxPériodiques02aInstitute of Jewish Affairsc(Londres)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713720502db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 22 no.1 (1992) -....cParisdMagasins/AnnexeeP 8° 3000 aZCAD aexempb201001 aGEO RA7.21 Russie (depuis 1991-92) aGEO RA2.02 Europe orientale aDEW 305-30601163cas0 2200337 450 00100100000000200110001000500170002101100140003803500170005203500150006910000410008410100080012510200070013310500180014010600060015811000160016420000270018021000590020743000680026660700420033467600100037680100300038680100230041680200070043985600920044685601080053895500640064695500710071099200120078199200320079316188072X000124043720130320102430.01 a2159-9165 aissn21599165 a0001240437 a20120621a20129999u y0frey50 ba0 aeng aGB ay 0  ar aaha 0uu 10aEast European politics aAbingdon, Oxon, UKcRoutledge, Taylor & Francisd2012- 1tJournal of communist studies and transition politicsx1352-3279 aEurope de l'EstxPériodiques2rameau a943.7 3aFRbAbesc20130211gAFNOR 3aFRbISSNc20121217 a014 uhttps://acces-distant.sciences-po.fr/fork?http://www.tandfonline.com/toc/fjcs20/current zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisdMagasins/AnnexeeDEW 943.71 bvol. 28 no. 1 (mar-2012) -....cParisdMagasins/AnnexeeP 8° 4930 aDEW 947 aGEO RA2.02 Europe orientale01147nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210003200185326002200217326002700239607007000266607006800336801002100404856010100425856010800526856004600634955006800680972000900748991001800757992003200775992001400807038699974000001668620140107135415.01 a0012-8775 aFNSP145507 a0000016686 a19900101a19629999 ba0 aeng aUS aagu 10aEastern European economics aArmonk, N.Y.cSharped1962- aBimestrielb1993- aTrimestrielb1962-1992 aEurope de l'EstxConditions économiquesz1989-....xPériodiques aEurope de l'EstxPolitique économiquez1989-....xPériodiques 3aFRbCCN0012-87754 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=106044 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.mesharpe.com/mall/results1.asp1 bvol. 9 no. 3/4 (1971) -....cParisdMagasins/AnnexeeP 8° 2982 aZPAY aexempb201106 aGEO RA2.02 Europe orientale aDEW 338.901427nas 2200373 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000440015420700260019821000560022432600230028032600280030351700090033151700410034051700540038160600530043560700340048885600700052285601080059285601080070085601080080895500660091697200090098299100180099199200320100999200120104103998284X000003822320140108103925.01 a0888-3254 aFNSP211827 a0000038223 a19900101a19909999 ba0 aeng aUS aaha 00aEastern European politics and societies 1aVol. 1, no. 1 (1987)- aBerkeley, CacUniversity of California Pressd1987- aTrimestrielb2003- a3 nos par anb1987-200210aEEPS10aEast European politics and societies10aEast European politics and societies and cultures aSciences socialesyEurope de l'EstxPériodiques aEurope de l'EstxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://eep.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1987) -....cParisdMagasins/AnnexeeP 8° 5034 aZSAB aexempb201210 aGEO RA2.02 Europe orientale aDEW 94701119nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007900154210006900233326002300302326002700325326002300352517002200375607002400397710003700421856005400458856005700512955006300569957008900632972000900721991001800730992002100748992001200769055063462000010750720130319051332.01 a1340-3656 aFNSP455614 a0000107507 a19900101a19939999 ba0 afre aFR aaja 10aEbisueétudes japonaisesfbulletin de la Maison franco-japonaise de Tokyo aTôkyôcMaison franco-japonaised1993-aPariscHarmattand1993- aIrrégulierb1997- aTrimestrielb1994-1996 a3 nos par anb199310aEtudes japonaises aJaponxPériodiques02aMaison franco-japonaisec(Tokyo)4 uhttp://www.mfj.gr.jp/publications/ebisu/index.php4 zContient : sommaires depuis le n°1, avril-juin 19931 bno. 1 (avr-1993) -....cParisdMagasins/AnnexeeP 8° 59791 bno. 1 (1993) -no. 20 (1999)cParisdMagasins/Annexezse trouve dans le no. 21 (1999) aZSAB aexempb201111 aGEO RI3.22 Japon aDEW 95201782nls 2200361 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281350018001342000226001522100053003783000028004313300339004594300203007985170077010015170054010786060022011326070035011546070024011896070027012136070026012406070027012666070033012936070027013268010013013538300008013668560046013740000844070000084407020130319051332.0 a0000844070 a d19919999k fre 01 0 amul aFR ay z y  az adr 10aEBSEES, European Bibliography of Slavic and East European Studiesb[Ressource électronique]d= Bibliographie européenne des travaux sur l'ex-URSS et l'Europe de l'Estd= Europäische Bibliographie zur Osteuropaforschung aPariscMaison des sciences de l'hommed1991-2005 aConsultation : gratuite aBase de données bibliographiques : contient les références des travaux (ouvrages, articles de périodiques, comptes rendus, thèses…) parus entre 1991 et 2005 sur l'ex-URSS et l’Europe de l’Est dans 8 pays d’Europe occidentale, et dans les champs suivants : sciences sociales et humaines, littérature, linguistique et arts 1tEuropean bibliography of Soviet, East European and Slavonic Studies < P 8° 4115 > puis < P 4° 5949 >, 1977-1989 ; European bibliography of Slavic and East European Studies < P 4°5949 >, 1990-199510aBibliographie européenne des travaux sur l'ex-URSS et l'Europe de l'Est10aEuropäische Bibliographie zur Osteuropaforschung aBases de données aEurope de l'EstxBibliographie aURSSxBibliographie aEx-URSSxBibliographie aRussiexBibliographie aBalkansxBibliographie aAsie centralexBibliographie aCaucasexBibliographie 0aFRbFNSP adln4 uhttp://ebsees.staatsbibliothek-berlin.de/00919nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200002000160207006200180210002900242326001400271444003000285530003400315606002900349607002500378856014500403955006900548992001200617038585499000008003620130319051332.0 a1153-3455 aFNSP356877 a0000080036 a19900101b18841938 ba0 afre aFR ag acaa 12aL'Echo de Paris 1aan. 1 no. 1 (12 mar-1884) -an. 54 no. 21371 (27 mar-1938) aParisc[s.n.]d1884-1938 aQuotidien 1tLe Jour (1933)x1256-030802aL'Écho de ParisbParis. 1884 aActualitéxPériodiques aFrancexPériodiques4 uhttp://gallica.bnf.fr/ark:/12148/cb34429768r/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1884-1938)1 béd. en microfilm (1914) -(1938)cParisdMagasinseP Mic 35 (21) aDEW 05000780nls 2200301 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000040001642100026002042300024002303260016002546060030002706060032003008010013003328560030003458560075003759550005004509920012004559920011004670001182511000118251120130319051332.0 a1963-1197 a0001182511 a a20079999k fre 01 ba0 afre aFR ar aah z  adr 10aEchoGéob[Ressource électronique] aPariscEchoGéod2007 aRevue électronique aTrimestriel aGéographiexPériodiques aGéopolitiquexPériodiques 0aFRbFNSP4 uhttp://echogeo.revues.org zContenu : texte intégral des articles depuis le n°1, juin/août 20071 r aDEW 910 aGEO RQ01326nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210002500189326001400214421002700228421004100255517004500296530002700341606002900368606005200397607005000449801002100499856002800520856019200548856010800740955006800848992002200916992001400938992001200952166260002000001674420130518171937.01 a0153-4831 aFNSP145645 a0000016744 a19900101a19289999 ba0 afre aFR acau 14aLes EchoseEdition quotidienne aParisc[s.n.]d1908- aQuotidien 1aDynasteurs,x0983-1517 1tEnjeux les Echos (Paris),x1167-219613aLe quotidien de l'économie [française]04aLes Échosb(Imprimé) aActualitéxPériodiques aHistoire économiquez20e sièclexPériodiques aFrancexConditions économiquesxPériodiques 3aFRbCCN0153-48314 uhttp://www.lesechos.fr/4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLe mois en courscParisd27, Salle Rez-de-chausséeeP F° 0104 aGEO RA4.06 France aDEW 330.9 aDEW 05000808nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000037001552100029001923260020002215300037002416060029002786070025003078010021003328560047003539550072004009920022004729920012004949920012005060000067011000006701120130319051332.01 a0255-9889 aFNSP311192 a0000067011 a19900101a19689999 ba0 afre aTW aaoa 10aEchos de la république de Chine aTaipeicKwang Hwad1968- a3 n°s par mois00aEchos de la république de Chine aActualitéxPériodiques aTaiwanxPériodiques 3aFRbCCN0255-98894 uhttp://www.gio.gov.tw/info/echos/index.htm1 bvol. 1 no. 1 (oct-1968) -(2002)cParisdMagasins/AnnexeeP F° 0291 aGEO RI3.02 Taiwan aDEW 951 aDEW 05000995nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001300154210004500167326001200212607004600224607005000270710006000320711007800380801002100458856003800479856005500517955006400572972000900636992002200645992001400667039484467000000432720130319051332.01 a0296-4449 aFNSP105384 a0000004327 a19900101a19859999 ba0 afre aFR aafu 10aEcoflash aPariscINSEEd1985-aPariscCNDPd1985-? aMensuel aFrancexConditions socialesxPériodiques aFrancexConditions économiquesxPériodiques02aCentre national de documentation pédagogiquec(France)02aInstitut national de la statistique et des études économiquesc(France) 3aFRbCCN0296-44494 uhttp://www.cndp.fr/REVUEECOFLASH/ zContenu : résumés depuis le n° 135, fév. 1999.1 bno. 25 (jan-1988) -....cParisdMagasins/annexeeP 4° 5273 aZPAY aGEO RA4.06 France aDEW 330.900877nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210002500178326001500203606002900218606004700247856003800294856012300332955005900455957006400514972000900578992001200587036307521000008557220130319051333.01 a1130-6378 aFNSP379993 a0000085572 a19900101a19919999 ba0 aspa aES aaja 10aEcología política aMadridcFUHEMd1991- aSemestriel aEcologismexPériodiques aPolitique de l'environnementxPériodiques4 uhttp://www.ecologiapolitica.info/ zContenu : sommaires et accès au texte intégral de depuis le n°1 (uniquement les résumés pour la dernière année)1 bno. 1 (1991) -....cParisdMagasins/AnnexeeP 4° 61971 bno. 1 (1991) -no. 8 (1994)zse trouve dans le no. 10 (1995) aZCAD aDEW 33301331nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210003200177210003600209210004100245300003300286326002200319326002700341517002600368606004700394606002900441676000800470856010000478856010800578955006700686955009500753957007000848972000900918991001800927992001200945039996972000005673120130319051333.01 a1166-3030 aFNSP265030 a0000056731 a19900101a19919999 ba0 afre aFR aaha 00aEcologie politique aPariscEcopressed1992-1998 aPariscÉd. Syllepsed2002-2010 aPariscPresses de Sciences Pod2011- aN'a pas paru de 1999 à 2002 aSemestrielb2002- aTrimestrielb1991-199810aEcologie et politique aPolitique de l'environnementxPériodiques aEcologismexPériodiques a3204 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-ecologie-et-politique.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 1 (1991/1992) -no. 23 (1998) ; no. 24 (2002) -....cParisdMagasins/AnnexeeP 8° 57911 bno. 1 (1991) -no. 12 (1995)cParisdMagasins/AnnexeeP Index 0756 aZCAD aexempb201111 aDEW 33300963nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001400154210003700168326001200205436002900217436003500246488002700281530002000308606002900328606004700357801002100404856003300425856006800458955009000526972000900616992001200625039311848000001675820130319051333.01 a0261-3131 aFNSP145681 a0000016758 a19900101b19799999 ba0 aeng aGB aazy 10aEcologist aWadebrigecEcosystemsd1979-2009 aMensuel 1aNew ecologistx0141-6952 1tEcologist quarterlyx0142-0399 11aL'Ecologiste (Paris) 0aEcologistb1979 aEcologismexPériodiques aPolitique de l'environnementxPériodiques 3aFRbCCN0261-31314 uhttp://www.theecologist.org/ zContenu : sélection d'articles en texte intégral depuis 2000.1 bvol. 9 no. 3 (jun-1979) -vol. 39 no. 6 (jul-2009)cParisdMagasins/AnnexeeP 4° 3170 aZPAY aDEW 33300896nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200001800163210003500181326002300216326002900239488002300268606002900291606004700320676000800367801001300375856003100388955006700419955006300486972000900549992001200558057801630000040395320130319051333.01 a1625-4732 a0000403953 a a20009999k fre ba0 afre aFR a 0  ar aah z 0 12aL' Ecologiste aPariscEcologist-Franced2000- aTrimestrielb2013- a3 n°s par anb2000-2012 11aEcologist (1979) aEcologismexPériodiques aPolitique de l'environnementxPériodiques a333 0aFRbFNSP4 uhttp://www.ecologiste.org/1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3331 bno. 1 (aut-2000) -....cParisdMagasins/AnnexeeP 4° 6890 aZPAY aDEW 33301578nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001700139210007300156326002100229326002700250606003700277606003100314710003000345801002100375856005500396856010400451856009000555856010800645856010100753856010800854955014200962957007301104972000901177991001801186992001201204038700255000006345720131127153844.01 a0012-9682 aFNSP292251 a19900101a19339999 ba0 amul aUS aaga 10aEconometrica aChicago, Ill.cEconometric Society, the University of Chicagod1933- aBimestrielb1970 aTrimestrielb1933-1969 aEconomie politiquexPériodiques aEconométriexPériodiques02aSociété d'économétrie 3aFRbCCN0012-96824 uhttp://www.econometricsociety.org/es/contents.html zContenu : sommaires ; recherche auteurs et titres ; depuis le vol. 61, 1993 ; 1933 à 1992 si JSTOR4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00129682.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101078 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 4 (oct-1933) -vol. 8 no. 3 (jul-1940) ; vol. 15 no. 1 (jan-1947) -vol. 86 no. 6 (nov-2012)cParisdMagasins/AnnexeeP 8° 01201 bvol. 21 (1953) -vol. 45 (1977)cParisdMagasins/AnnexeeP Index 0317 aZPAY aexempb201101 aDEW 33001158nls 2200337 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000056001642100029002202300005002493000090002543260005003443260015003493360091003643370017004556060037004726060031005097100033005408010013005738560101005868560128006879550005008150000452004000045200420130319051333.01 a1368-423X a0000452004 a a19989999k fre 01 ba0 aeng aGB az aaj z  adr 14aThe Econometrics Journalb[Ressource électronique] aOxfordcBlackwelld1998- a aTexte intégral de la revue via EBSCO Online depuis le volume 1, numéro 1, juin 1998 a asemestriel aDonnées textuelles accessibles uniquement en ligne à la bibliothèque de Sciences-Po aFichiers PDF aEconomie politiquexPériodiques aEconométriexPériodiques02aRoyal Economic Societyc(GB) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=1018074 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=BO9&site=ehost-live1 r01289nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000680015421000290022232600150025143000590026653000300032560600520035571000450040780100210045285600700047385600720054385601010061585601080071695500830082497200090090799200210091699200140093703931796X000001703220131127154309.01 a0265-0665 aFNSP146513 a0000017032 a19900101a19839999 ba0 aeng aGB aagu 10aEconomic affairseJournal offthe Institute of economic affairs aOxfordcBlackwelld1983- aBimestriel 1aJournal of economic affairs (0260-8359) < P 8° 4645 >10aEconomic affairs (Harlow) aHistoire économiquez20e sièclexPériodiques02aInstitute of Economic Affairsc(Londres) 3aFRbCCN0265-06654 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=02650665 zContenu : sommaires et résumés depuis le vol. 17, n°1, mars 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101079 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 4 no. 1 (oct-1983) -vol. 32 no. 3 (oct-2012)cParisdMagasinseP 4° 4864 aZPAY aGEO RQ Universel aDEW 330.901344nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003300163210005400196326001600250430004700266510003300313517007000346607005900416607006200475607006800537607006000605710004600665711003200711801001300743856004500756955007600801972000900877992001400886992002800900992003000928058384650000040385020130319051333.01 a1580-0466 a0000403850 a a19999999k fre ba0 aeng aSI a 0  ar aah z 0 10aEconomic and business review aLjubljanacUnion of economists of Sloveniad1999- aTrimestriel 1tSlovenska ekonomska revijaxISSN 0354-073110aEkonomska in poslovna revija10aEconomic and business review for Central and South-Eastern Europe aEurope de l'EstxConditions économiquesxPériodiques aBalkansxConditions économiquesz1990-....xPériodiques aEurope de l'EstxPolitique économiquez1989-....xPériodiques aBalkansxPolitique économiquez1990-....xPériodiques02aUniverza v LjubljanibEkonomska fakulteta02aZveza ekonomistov slovenije 0aFRbFNSP4 uhttp://miha2.ef.uni-lj.si/ebrweb/public/1 bvol. 1 no. 1/2 (oct/dec-1999) -....cParisdMagasins/AnnexeeP 8° 1057 aZPAY aDEW 330.9 aGEO RA5 Europe centrale aGEO RA8 Europe du Sud-Est01169nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003800139210002400177326001600201452005900217512004200276512004600318530003800364606005700402606004200459801002100501856010800522856010800630955006600738972000900804991001800813992001200831039083683000001715720130910163718.01 a0143-831X aFNSP146876 a19900101a19809999 ba0 aeng aGB aaha 10aEconomic and industrial democracy aLondoncSaged1980- aTrimestriel 1tEconomic and industrial democracy (Online),x1461-709910aEID economic and industrial democracy1 aEID‎eeconomic and industrial democracy aEconomic and industrial democracy aPersonnelxParticipation à la gestionxPériodiques aRelations industriellesxPériodiques 3aFRbCCN0143-831X4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1980) -....cParisdMagasins/AnnexeeP 8° 4276 aZSAB aexempb201106 aDEW 33100971nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001322000050001392100031001893260011002204300056002316070060002877100046003478010021003938560064004149550055004789550052005339550054005859920028006399920014006670000035272000003527220130319051334.01 a0095-2850 aFNSP202887 a0000035272 a19900101a19729999 f ba0 aeng aUS10aEconomic and social progress in Latin America aWashington, DCcBIDd1972- aAnnuel 1aSocio-economic progress in Latin Americax0160-4902 aAmérique latinexConditions économiquesxPériodiques02aBanque interaméricaine de développement 3aFRbCCN0095-28504 uhttp://www.iadb.org/Publications/index.cfm?language=English1 b(1994) -(2005)cParisdMagasins/AnnexeeP 4° 63801 b(1980/1981)cParisdMagasins/AnnexeeP 8° 55531 b1972) -(1979)cParisdMagasins/AnnexeeCOL8°3833 aGEO RD Amérique latine aDEW 330.900904nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210003700195326001600232530004200248607005200290710002200342856004200364955014300406972000900549991001800558992002400576992001400600148289207000018924120140116160502.01 a0872-9786 aFNSP699859 a0000189241 a19900101a19959999 ba0 aeng aPT aaha 10aEconomic bulletinfBanco de Portugal aLisboacBanco de Portugald1995- aTrimestriel00aEconomic bulletin - Banco de Portugal aPortugalxConditions économiquesxPériodiques02aBanco de Portugal4 uhttp://www.bportugal.pt/default_e.htm1 bvol. 1 no. 1 (mar-1995) -vol. 10 no. 3 (sep-2004)cParisdMagasins/AnnexeeP 4° 6601wManquant : vol. 8, no 1, 2002 à vol. 9, no 4, 2003 aZPAY aexempb201401 aGEO RA6.01 Portugal aDEW 330.901000nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210004100200326001600241606004700257606003400304710002700338801002100365830005600386856002700442856007600469955006900545972000900614991001700623992002200640992001200662039379531000005236420130319051334.01 a0304-274X aFNSP251682 a0000052364 a19900101a19489999 ba0 aeng aEG aahu 10aEconomic bulletinfNational Bank of Egypt aCairocNational Bank of Egyptd1948- aTrimestriel aPolitique monétaireyEgyptexPériodiques aBanquesyEgyptexPériodiques02aNational Bank of Egypt 3aFRbCCN0304-274X a1950-1984 : années cédées au CTL en juillet 20014 uhttp://www.nbe.com.eg/ zContenu : accès libre au texte intégral depuis le vol. 55, n°3, 20021 b(1985) -vol. 57 no. 2 (2004)cParisdMagasins/AnnexeeP 8° 1012 aZGRA aexemp$201101 aGEO RG1.16 Egypte aDEW 33201104cas0 2200301 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123110001600141200011200157207002600269210003100295326001600326430005100342530003800393606004000431606007100471801003000542856010300572856004600675955006700721992001400788108948633000111034220130319051334.01 a1573-9414 a0001110342 a20060921a20059999k y0frey0103 ba0 aeng aNL ay 0  aahakk 0 10aEconomic change and restructuringeempirical and policy research on the transitional and emerging economies 0an°1, vol. 38 (2005)- aDordrechtcSpringerd2005- aTrimestriel 1tEconomics of planning (Oslo. Print)x0013-045110aEconomic change and restructuring aEntreprisesxFinancesxPériodiques aPolitique économiqueyNouveaux pays industrialisésxPériodiques 3aFRbAbesc20070706gAFNOR4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/journal2.asp?journalid=113294 zContient: sommaire et résumé d'articles1 bvol. 38 no. 1 (2005) -....cParisdMagasins/AnnexeeP 8° 1984 aDEW 338.901384nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004500154210005400199326001600253606004500269606004000314606003600354801002100390856012800411856010800539856009000647856010800737955006400845957007200909972000900981991001800990992001401008992001201022036265586000001713920130319051334.01 a0013-0079 aFNSP146836 a0000017139 a19900101a19529999 ba0 aeng aUS aahu 10aEconomic development and cultural change aChicago, Ill.cUniversity of Chicago Pressd1952- aTrimestriel aDéveloppement économiquexPériodiques aPolitique économiquexPériodiques aChangement socialxPériodiques 3aFRbCCN0013-00794 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=EDC&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00130079.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (mars-1952) -....cParisdMagasins/AnnexeeP 8° 18511 bvol. 1 (1952) -vol. 15 (1967)cParisdMagasins/AnnexeeP Index 0137 aZPAY aexempb201003 aDEW 338.9 aDEW 30101126nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000230015421000460017732600160022360600420023967600080028171000410028980100210033085600900035185601080044195500670054995501550061697200090077199100180078099200140079803870059X000001714020130319051334.01 a0013-0095 aFNSP146837 a0000017140 a19900101a19259999 ba0 aeng aUS aahu 10aEconomic geography aWorcester, Mass.cClark Universityd1925- aTrimestriel aGéographie économiquexPériodiques a33002aClark Universityc(Worcester, Mass.) 3aFRbCCN0013-00954 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00130095.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3301 bvol. 10 no. 1 (jan-1934) -vol. 16 no. 3 (jul-1940) ; vol. 22 no. 1 (jan-1946) -....cParisdMagasins/AnnexeeP 8° 0274wManque : vol. 72 no. 4 (1996) aZPAY aexempb201101 aDEW 330.901989nas 2200421 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154207011900182210004400301210003100345210002900376326001600405606003900421710003500460801002100495801001300516856007100529856007300600856010100673856010800774856009000882856010800972856012801080856010801208955013801316957007401454972000901528991001801537992001201555038700611000006125220131127154653.01 a0013-0117 aFNSP280727 a0000061252 a19900101a19279999 ba0 aeng aGB aahu 10aEconomic history review 1aVol. 1, no. 1 (Jan. 1927)-vol. 18, nos. 1 & 2 (1948) ; 2nd ser., vol. 1, no. 1 (1948)-vol. 43, no. 4 (Nov. 1990) - aLondoncEconomic History Societyd1927- adivers editeursb1927-1987 aOxfordcBlackwelld1988- aTrimestriel aHistoire économiquexPériodiques02aEconomic History Societyc(GB) 3aFRbCCN0013-0117 0aFRbFNSP4 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0013-0117 zContenu : sommaires et résumés depuis le vol. 50, n°1, fév. 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=104600 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00130117.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=ECH&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 16 no. 1 (1946) -vol. 18 no. 1/2 (1948) ; n.s. vol. 1 no. 1 (1948) -vol. 65 no. 4 (nov-2012)cParisdMagasins/AnnexeeP 8° 03181 b(1927) -(1948) ; (1948) -(1970)cParisdMagasins/AnnexeeP Index 0036 aZPAY aexempb201101 aDEW 33001894nas 2200433 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007400154210005000228210002900278326002500307326002600332326003300358326002700391421005800418530003600476606003700512710003300549801002100582856007100603856007600674856010100750856010800851856009000959856010801049955015201157957009101309972000901400991001801409992002101427992001201448038700638000001738820131127155854.01 a0013-0133 aFNSP147371 a0000017388 a19900101a18919999 ba0 aeng aGB aafu 10aEconomic journalethe quarterly journal of the Royal Economic Society aLondoncCambridge University Pressd1891-1986 aOxfordcBlackwelld1987- a8 n°s par anb1999- aBimestrielb1991-1998 a5 numéros par anb1988-1990 aTrimestrielb1891-1987 1aConference papers - Royal Economic Societyx0269-400X10aEconomic journalbLondon. Print aEconomie politiquexPériodiques02aRoyal Economic Societyc(GB) 3aFRbCCN0013-01334 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0013-0133 zContenu : sommaires et résumés depuis le vol. 107, n°440, janv. 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100833 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00130133.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 24 no. 93 (mar-1914) -vol. 24 no. 94 (jun-1914) ; vol. 37 no. 145 (mar-1927) -vol. 122 no. 565 (déc-2012)cParisdMagasins/AnnexeeP 8° 01011 b(1921) -(1930) ; (1931) -(1980) ; (1981) -(1990)cParisdMagasins/AnnexeeP Index 0042 aZPAY aexempb201101 aGEO RQ Universel aDEW 33001427nas0 2200385 450 00100100000000200110001000500170002101100140003803500170005203500150006910000410008410100080012510200070013310500180014010600060015811000160016420000940018021000470027432600160032143001190033745200400045653000520049660600370054871000340058580100300061980100230064980200070067285601040067985601080078395500710089197200090096299200120097199200250098399200330100814258830X000118651620130319051335.01 a0812-0439 aissn08120439 a0001186516 a20100315a19829999 0frey0103 ba0 aeng aAU ay  ar aah 10aEconomic papersea journal of applied economics and policyfEconomic Society of Australia aRichmond,Victoria:cWiley-Blackwelld1982- aTrimestriel 1tEconomic papers - Economic Society of Australia and New Zealand, New South Wales and Victorian Branchesx0013-0354 1tEconomic papers (Online)x1759-344100aEconomic papers - Economic Society of Australia aEconomie politiquexPériodiques02aEconomic Society of Australia 3aFRbAbesc20100315gAFNOR 3aFRbISSNc20080601 a034 uhttps://acces-distant.sciences-po.fr/fork?http://www3.interscience.wiley.com/journal/122346824/home zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 28 no. 1 (mar-2009) -....cParisdMagasins/AnnexeeP 8° 7128 aZPAY aDEW 330 aGEO RJ3.01 Australie aGEO RJ3.02 Nouvelle-Zélande01964nas 2200433 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002000139210010700159326002300266326002600289326002900315452004100344530003000385606003700415676000800452710005900460711004000519856007100559856007300630856010100703856010800804856012800912856010801040856009001148856010801238955006701346955006401413972000901477991001801486992001401504992001201518039320413000000433020130917150921.01 a0266-4658 aFNSP105388 a19900101a19859999 ba0 aeng aGB aahu 10aEconomic policy aPariscEd. de la Maison des sciences économiquesd1985-aCambridgecCambridge University Pressd1985- aTrimestrielb2005- a3 nos par an‎b2004 aSemestriel‎b1985-2003 1tEconomic policy (Online),x1468-0327 aEconomic policy‎bPrint aEconomie politiquexPériodiques a33002aEcole des hautes études en sciences socialesc(Paris)02aCentre for Economic Policy Research4 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0266-4658 zContenu : sommaires et résumés depuis le vol. 12, n°24, avr. 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100835 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=1KO&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/02664658.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3301 bno. 1 (nov-1985) - ....cParisdMagasins/AnnexeeP 8° 4920 aZPAY aexempb201106 aDEW 338.9 aDEW 33001099nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006100139210005500200326001600255430006700271452004800338530006100386606004800447606003900495712003700534830006300571856010200634955000500736972000900741992002300750992001200773037416936000015570020131212111718.01 a1932-0426 aFNSP606697 a19900101a19959999 ba0 aeng aUS aaha 10aEconomic policy reviewfFederal reserve bank of New York aNew YorkcFederal Reserve Bank of New York.d1995- aTrimestriel 1aQuarterly review - Federal Reserve Bank of New Yorkx0147-6580 1tEconomic policy review (Online),x1932-0604 0aEconomic policy reviewbFederal Reserve Bank of New York aMarché financieryEtats-UnisxPériodiques aFinancesyEtats-UnisxPériodiques02aFederal Reserve Bank of New York adésherbé après 1995 car texte intégral en ligne (2013)4 uhttp://www.newyorkfed.org/research/publication_annuals/index.html$Accès libre au texte intégral1 b aZGRA aGEO RC2 Etats-Unis aDEW 33201555nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210006800174326001600242606005600258606004800314607005300362607006100415710003400476801002100510856010100531856010800632856012800740856010800868955013800976972000901114992002501123992003301148992001201181038700646000001739320131127160131.01 a0013-0249 aFNSP147378 a0000017393 a19900101a19259999 ba0 aeng aAU aahu 10aEconomic record aMelbournecEconomic Society of Australia and New Zealandd1925- aTrimestriel aEconomie politiqueyNouvelle-ZélandexPériodiques aEconomie politiqueyAustraliexPériodiques aAustraliexConditions économiquesxPériodiques aNouvelle-ZélandexConditions économiquesxPériodiques02aEconomic Society of Australia 3aFRbCCN0013-02494 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=106132 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=ERC&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 26 no. 51 (1950) -vol. 32 no. 63 (1956) ; vol. 35 no. 72 (1959) -vol. 88 no. 283 (déc-2012)cParisdMagasins/AnnexeeP 8° 1014 aZPAY aGEO RJ3.01 Australie aGEO RJ3.02 Nouvelle-Zélande aDEW 33001234nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171100016001242000084001402100064002243000047002883260011003354300059003465300085004056010039004906060033005296070048005627100025006108560122006359550054007579550054008119720009008659920020008749920014008940000061756000006175620140116171919.01 a0259-9902 aFNSP282250 a19900101a19809999 ba0 aeng aIR aaka 10aEconomic report and balance sheetfCentral Bank of the Islamic Republic of Iran aTehrancCentral Bank of the Islamic Republic of Irand1980- aEn version électronique à partir de 2005 aAnnuel 1aAnnual report and balance sheet - Central Bank of Iran00aEconomic report and balance sheet - Central Bank of the Islamic Republic of Iran02aCentral Bank of IranxPériodiques aFinancesyIranxPériodiques aIranxConditions économiquesxPériodiques02aCentral Bank of Iran4 uhttp://www.cbi.ir/category/EconomicReport_en.aspxzContenu : texte intégral du rapport à partir de l'éd. 2000/20011 b(1981)-(1999)cParisdMagasins/AnnexeeCOL4°27571 b(2000)-(2004)cParisdMagasins/AnnexeeP 4° 7000 aZGRA aGEO RG4.02 Iran aDEW 330.901043nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000158001502100064003082300024003723260011003966010039004076060033004466070048004797100025005278010013005528560054005658560071006199550005006909920020006959920014007150001131196000113119620130319051335.0 a0001131196 a a20009999k fre 01 ba0 aeng aIR ar aak z  adr 10aEconomic report and balance sheet - Central Bank of the Islamic Republic of Iranb[Ressource électronique]fCentral Bank of the Islamic Republic of Iran aTehrancCentral Bank of the Islamic Republic of Irand2000- aRevue électronique aAnnuel02aCentral Bank of IranxPériodiques aFinancesyIranxPériodiques aIranxConditions économiquesxPériodiques02aCentral Bank of Iran 0aFRbFNSP4 uhttp://www.cbi.ir/category/EconomicReport_en.aspx4 zContenu : texte intégral du rapport à partir de l'éd. 2000/20011 r aGEO RG4.02 Iran aDEW 330.901270nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006500154210003500219300006900254326001100323607005200334607005400386676001000440710004500450711002600495801002100521856007300542856003600615955006900651955005700720955005500777972000900832991001800841992002300859992001400882039146081000001477320130402144740.01 a0193-1180 aFNSP140775 a0000014773 a19900101a00019999 ba0 aeng aUS aaku 10aEconomic report of the President transmitted to the Congress aWashington, D.C.cUSGPOd0001- aContient : " Annual report of the Council of Economic Advisers " aAnnuel aEtats-UnisxPolitique économiquexPériodiques aEtats-UnisxConditions économiquesxPériodiques a330.902aEtats-UnisbCouncil of Economic Advisers02aEtats-UnisbPresident 3aFRbCCN0193-11804 uhttp://www.gpo.gov/fdsys/browse/collection.action?collectionCode=ERP zAccès libre au texte intégral1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 330.91 b(1946) -(1979)cParisdMagasins/AnnexeeCOL 8° 01631 b(1980) -(2010)cParisdMagasins/AnnexeeP 8° 5253 aZPAY aexempb201109 aGEO RC2 Etats-Unis aDEW 330.900965nls 2200277 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200013500124210003500259230002800294326001100322607005200333607005400385710004500439711002600484801001300510856012200523955000500645992002300650992001400673000124254220130522152112.0 a a19959999k fre 01 ba0 aeng aUS ar aa z  adr 10aEconomic report of the President transmitted to the Congressb[Ressource électronique] /Etats-Unis.bCouncil of Economlc Advisers aWashington, D.C.cUSGPOd1995- aRessource électronique aAnnuel aEtats-UnisxPolitique économiquexPériodiques aEtats-UnisxConditions économiquesxPériodiques02aEtats-UnisbCouncil of Economic Advisers02aEtats-UnisbPresident 0aFRbFNSP4 uhttp://www.gpo.gov/fdsys/browse/collection.action?collectionCode=ERPzAccès au texte intégral du rapport depis 19951 r aGEO RC2 Etats-Unis aDEW 330.901046nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210007000184326002800254326002200282434004500304451006200349607005000411710005600461801002100517856004000538856003600578955006500614972000900679992001800688992001400706038850516000000451520130319051336.01 a0070-8712 aFNSP105951 a0000004515 a19900101b19472005 f ba0 aeng aCH aaiu 10aEconomic survey of Europe aGenevacUnited Nations, Economic Commission for Europed1947-2005 a3 nos par anb1998-2005 aAnnuelb1947-1997 1tEconomic bulletion for Europex0041-2005 1aEtude sur la situation économique de l'Europex0251-0294 aEuropexConditions économiquesxPériodiques02aNations UniesbCommission économique pour l'Europe 3aFRbCCN0070-87124 uhttp://www.unece.org/ead/survey.htm4 zAccès libre au texte intégral1 b(1947) -no2, (2005)cParisdMagasins/AnnexeeNU 4° 0006 bis aZPAY aGEO RA Europe aDEW 330.901192nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005500154210003600209326001100245430004800256607006000304710008300364801002100447856012000468856004700588955005800635955010000693972000900793992002200802992002800824992001400852039290271000018476220140108160147.01 a0257-2184 aFNSP685857 a0000184762 a19900101a19829999 f ba0 aeng aCL aaku 10aEconomic survey of Latin America and the Caribbean aSantiagocUnited Nationsd1982- aAnnuel 1aEconomic survey of Latin Americax0070-8720 aAmérique latinexConditions économiquesxPériodiques02aNations UniesbCommission économique pour l'Amérique latine et les Caraïbes 3aFRbCCN0257-21844 uhttp://www.eclac.org/cgi-bin/getProd.asp?xml=/de/agrupadores_xml/aes252.xml&xsl=/agrupadores_xml/agrupa_listado.xsl4 zAccés au texte intégral depuis 1998/19991 b(2007/2008) -....cParisdMagasins/AnnexeeP 4° 72571 b(1982) -(1984) ; (1987) -(1989) ; (1992) -(2006/2007)cParisdMagasins/AnnexeeNU 4°00.165 bis aZPAY aGEO RD3 Caraïbes aGEO RD Amérique latine aDEW 330.901111nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210004200175210003900217326002300256326002600279430005000305607005900355710003200414856004000446856010500486856004200591955006700633972000900700991001800709992003200727992001400759040056961000003821820130319051336.01 a0939-3625 aFNSP211819 a0000038218 a19900101a19919999 ba0 aeng aDE aaha 10aEconomic systems aHeidelbergcPhysica-Verlagd1991-2000 aAmsterdamcElsevier Scienced2001- aTrimestrielb1993- aSemestrielb1991-1992 1aJahrbuch der Wirtschaft Osteuropasx0449-5225 aEurope de l'EstxConditions économiquesxPériodiques02aOsteuropa-Institut (Berlin)4 uhttp://www.lrz-muenchen.de/econsys/4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/web-editions/journal/09393625 zAccès aux sommaires et aux résumés1 bvol. 15 no. 1 (1991) -....cParisdMagasins/AnnexeeP 8° 5951 aZPAY aexempb201210 aGEO RA2.02 Europe orientale aDEW 330.101687nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009100154210002900245326001600274530002900290606003700319710005300356801002100409856007100430856007500501856010100576856010800677856009000785856010800875856012800983856010801111955008501219972000901304992001201313038700735000001745020131127160231.01 a0013-0427 aFNSP147613 a0000017450 a19900101a19219999 ba0 aeng aGB aaha 10aEconomicafpublished quarterly by the London school of economics and political science aOxfordcBlackwelld1921- aTrimestriel00aEconomicabLondon. Print aEconomie politiquexPériodiques02aLondon School of Economics and Political Science 3aFRbCCN0013-04274 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0013-0427 zContenu : sommaires et résumés depuis le vol. 64, n°253, fév. 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100836 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00130427.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=ECA&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (jan-1921) -vol. 79 no. 316 (oct-2012)cParisdMagasins/AnnexeeP 8° 0122 aZGRA aDEW 33001120nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004900139210006200188326001700250606004800267606003700315712005600352801002100408856016000429955008200589957007200671991002000743991001800763992002500781992001200806038700719000001743320130502115602.01 a0013-0419 aFNSP147575 a19900101a19549999 ba0 aspa aAR aaia 10aEconómicafUniversidad Nacional de La Plata aLa PlatacInstituto de investigaciones económicasd1954- a3 nos par an aEconomie politiqueyArgentinexPériodiques aEconomie politiquexPériodiques02aInstituto de investigaciones económicas (La Plata) 3aFRbCCN0013-04194 uhttp://economica.econo.unlp.edu.ar/zTexte intégral gratuit de la revue du vol. 1, 1954 au vol. 54, no. 2, 2008 ; Sommaires et résumés à partir de 20081 bvol. 1 no. 1 (1954) -vol. 45 no. 4 (1999)cParisdMagasins/AnnexeeP 8° 13591 bvol. 14 (1968)-vol. 18 (1972)cParisdMagasins/AnnexeeP Index 0235 aPériobTP03 P8 aexempb201305 aGEO RD4.11 Argentine aDEW 33001127nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210002900179326001700208517002700225606003600252606004000288856007100328856007100399856012800470856010800598955006600706972000900772991001800781992001400799040084329000005566820130319051336.01 a0954-1985 aFNSP260748 a0000055668 a19900101a19899999 ba0 aeng aGB aaia 10aEconomics & politics aOxfordcBlackwelld1989- a3 nos par an10aEconomics and politics aScience politiquexPériodiques aPolitique économiquexPériodiques4 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0954-1985 zContenu : sommaires et résumés depuis le vol. 9, n°3, nov. 19974 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=7QT&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1989) -....cParisdMagasins/AnnexeeP 8° 5574 aZSAB aexempl$102011 aDEW 338.901151nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003400139210002800173326002200201326002700223452005500250530003400305606006000339606004800399801002100447856006800468856005400536955007100590955008600661972000900747991001800756992002300774992001600797039334147000001744620131119173710.01 a0272-7757 aFNSP147605 a19900101a19819999 ba0 aeng aUS aagu 10aEconomics of education review aOxfordcPergamond1981- aBimestrielb2001- aTrimestrielb1981-2000 1tEconomics of education review (Online),x1873-7382 aEconomics of education review aEducationxAspect économiqueyEtats-UnisxPériodiques aEducationxAspect économiquexPériodiques 3aFRbCCN0272-77574 uhttp://www.journals.elsevier.com/economics-of-education-review/ zContenu : sommaires depuis le vol. 1, no. 1, 19811 bvol. 16 no. 1 (fev-1997) -....cParisdMagasins/AnnexeeP 4° 66551 bvol. 1 no. 1 (hiv-1981) -vol. 15 no. 4 (1996)cParisdMagasins/AnnexeeP 8° 4468 aZPAY aexempb201106 aGEO RC2 Etats-Unis aDEW 370-37901942nas 2200445 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210004700186210003300233210003600266326002300302326002800325326002600353607004900379607006800428607005100496607007000547676001000617710006700627856004600694856006600740856010100806856010800907856012801015856010801143955011601251972000901367991001801376992005601394992003201450992001401482040101983000010060720131127160747.01 a0967-0750 aFNSP434384 a0000100607 a19900101a19939999 ba0 aeng aGB aaia 14aThe Economics of transition aOxfordcOxford University Pressd1993-1998 aOxfordcBlackwelld1999-2008 aaOxfordcWiley-Blackwelld2008- aTrimestrielb2003- a3 nos par anb1999-2002 aSemestrielb1996-1998 aEx-URSSxPolitique économiquexPériodiques aEurope de l'EstxPolitique économiquez1989-....xPériodiques aEx-URSSxConditions économiquesxPériodiques aEurope de l'EstxConditions économiquesz1989-....xPériodiques a338.902aBanque européenne pour la reconstruction et le développement4 uhttp://www.blackwell-synergy.com/loi/ecot zContenu : sommaires et résumés depuis le vol. 9, n°3, 20014 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=102573 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=7QI&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1993) -vol. 20 no. 4 (2012)cParisdMagasins/AnnexeeP 8° 5965wManquants : vol. 3, 1995 (perdu) aZPAY aexempb201111 aGEO RA7.02 Etats successeurs de l'Union soviétique aGEO RA2.02 Europe orientale aDEW 338.901512nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008000154210004600234326001800280430006800298517002700366530003300393606003700426676000800463710006500471801002100536856010100557856010800658856005700766856004900823955006700872955006000939957008500999972000901084992002101093992001201114039416038000000447320130319051337.01 a0249-4744 aFNSP105872 a0000004473 a19900101a19819999 ba0 afre aFR aagu 10aEconomie & prévisionfMinistère de l'économie, des finances et du budget aPariscLa Documentation françaised1981- a5 n°s par an 1aStatistiques et études financières (Série orange)x0338-421710aEconomie et prévision00aEconomie & prévisionbParis aEconomie politiquexPériodiques a33002aFrancebMinistère de l'économie, des finances et du budget 3aFRbCCN0249-47444 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-economie-et-prevision.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://alize.finances.gouv.fr/prevision/revue/ep.htm zsommaires et résumés depuis le no 87, 19891 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3301 bno. 46 (1981) -....cParisdMagasins/AnnexeeP 4° 30081 b(1982/1987)cParisdMagasins/Annexezse trouve dans le no. 81, 1987 de la revue. aZPAY aGEO RQ Universel aDEW 33001197nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210005500178210002900233210006000262210003800322326001600360430007200376606003700448710007700485801002100562856004100583856005200624955006300676957006900739972000900808991001800817992001200835039222977000001742520140106113010.01 a0013-0494 aFNSP147548 a0000017425 a19900101a19489999 ba0 afre aFR aaha 10aEconomie appliquée aPariscPresses universitaires de Franced1948-1967 aGenèvecDrozd1968-1988 aGrenoblecPresses universitaires de Grenobled1989-1998 aPariscPresses de l'ISMÉAd1999- aTrimestriel 1aBulletin de l'Institut de science économique appliquéex1147-7423 aEconomie politiquexPériodiques02aInstitut de sciences mathématiques et économiques appliquéesc(Paris) 3aFRbCCN0013-04944 uhttp://www.ismea.org/ismea/eapp.html zContenu : sommaires depuis 1970 ; index auteurs1 bno. 1 (jan-1948) -....cParisdMagasins/AnnexeeP 8° 01231 bno. 2 (1968) -no. 3 (1991)cParisdMagasins/AnnexeeP Index 0679 aZPAY aexempb201101 aDEW 33000961nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000019001552100048001743260016002226070075002386070033003137120111003468010021004578560066004788560065005449550005006099720009006149920022006239920014006450000062897000006289720130319051337.01 a0150-7575 aFNSP287848 a0000062897 a19900101a19769999 ba0 afre aFR aaha 10aEconomie corse aAjacciocINSEE, Direction régionaled1976- aTrimestriel aFrancexConditions économiquesxDisparités régionalesxPériodiques aCorse (France)xPériodiques02aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Ajaccio) 3aFRbCCN0150-75754 uhttp://www.insee.fr/fr/insee_regions/corse/home/home_page.asp zLe contenu de la revue est dispersé sur le site Insee/Corse1 b aZPAY aGEO RA4.06 France aDEW 330.901373cas0 2200409 450 001001000000002001100010005001700021011001400038035002500052035001700077035001500094100004100109101000800150102000700158105001800165106000600183110001600189200009300205210006100298300004200359326001100401454003400412606004900446606005500495607004100550710004700591801003000638801002900668801002300697802000700720856008600727856005300813955004700866972000900913992002500922992001600947104394269000113841520130319051337.0 a1777-1021 aFRBNF400810310000004 aissn17771021 a0001138415 a20051207b200 2006u y0frey0103 ba1 afre aFR ay  ar azku uu 12aL'Economie de la défensefMinistère de la défense, Conseil économique de la défense a[Paris]cConseil économique de la défensed[200.]-2006 aNotice réd. d'après l'édition 2004 aAnnuel 1tDefence economy inx1777-103X aIndustries de défenseyFranceyPériodiques aDéfensexAspect économiqueyFrancexPériodiques aFrancexForces arméesxPériodiques02aFrancebConseil économique de la défense 3aFRbAbesc20080201gAFNOR 3aFRbBnFc20060327gAFNOR 3aFRbISSNc20070706 a074 uhttp://www.defense.gouv.fr/ced/votre_espace/publications/l_economie_de_la_defense zContenu : texte intégral du rapport depuis 20041 b(2006)cParisdMagasins/AnnexeeP 8° 7022 aZGRA aGEO RA4.06 France 01 aDEW 355-35901181cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118106000600125110001600131200002700147207005400174210004300228326001600271430004600287517002600333530003400359606005600393607004600449801003000495801002300525802000700548856005500555856005100610955008300661972000900744991001600753992002200769992001600791061783226000109266920131028120210.01 a1637-9802 aissn16379802 a20020718b19912007k y0frey0103 ba0 afre aFR ar aahu uu 10aÉconomie et humanisme 1ano. 316 (1991, janv./mars) - no. 382 (2007, oct.) aLyoncEconomie et humanismed1991-2007 aTrimestriel 1tE. & H. Economie et humanisme,x0245-913210aÉconomie & humanisme10aEconomie et humanismeb(1991) aEconomie sociale et solidaireyFrancexPériodiques aFrancexConditions socialesxPériodiques 3aFRbAbesc20061019gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.economie-humanisme.org/Publications.htm zContenu : Index des dossiers parus depuis 19831 bno. 316 (jan/mar-1991) -no. 382 (oct-2007)cParisdMagasins/AnnexeeP 8° 0126 aZPAY aexempb2013 aGEO RA4.06 France aDEW 360-36301297nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009300154210002400247326001200271430003700283517001000320517001100330607005000341676000800391710007800399801002100477856004700498856003600545955006700581955006400648957007100712957007400783972000900857992002200866992001400888992000900902013307509000000432020130319051338.01 a0336-1454 aFNSP105373 a0000004320 a19900101a19699999 ba0 afre aFR aafu 10aEconomie et statistiquefInstitut national de la statistique et des études économiques aPariscINSEEd1969- aMensuel 1aEtudes et conjoncturex0429-568410aE & S10aE et S aFrancexConditions économiquesxPériodiques a33002aInstitut national de la statistique et des études économiquesc(France) 3aFRbCCN0336-14544 uhttp://www.insee.fr/fr/ppp/collections.htm zAccès libre au texte intégral1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3301 bno. 1 (mai-1969) - ....cParisdMagasins/AnnexeeP 4° 01061 bno. 1 (1969) - no. 42 (1982)cParisdMagasins/AnnexeeP Index 04861 b(1982) -(1991)zcet index constitue le no. 250 (jan-1992) de la revue aZPAY aGEO RA4.06 France aDEW 330.9 aPBUL01720cas0 2200445 450 001001000000002001100010005001700021011001400038035001400052035002100066035001700087100004100104101000800145102000700153105001800160106000600178110001600184200016000200207001700360210002400377225002800401305006400429326001100493410003600504430005100540517004100591530004600632606007200678607007200750676001500822710008300837801003000920801002300950802000700973856012700980955007001107955005801177992001401235992002501249088588254000123886120131021095921.0 a1769-4035 a08120678X a(OCoLC)174245078 aissn17694035 a20050712a20049999k a0frey50 ba0 afre aFR ay 0  ar aak ii 0zz012aL'Économie françaiseecomptes et dossierserapport sur les comptes de la Nation de ...f[Institut national de la statistique et des études économiques] 0a(2004/2005)- aPariscINSEEd2004-00aRéférencesx1639-4968 aL'édition 2004/2005, parue en 2004, recouvre l'année 2003 aAnnuel 1tRéférences - INSEEx1639-4968 1tL'Economie française (Paris. 1993)x1638-209910aRapport sur les comptes de la nation02aL'Economie française comptes et dossiers aComptabilité nationaleyFrancexStatistiquesxPériodiques2rameau aFrancexConditions économiquesxStatistiquesxPériodiques2rameau a330.9v22a02aInstitut national de la statistique et des études économiquesc(France)4070 3aFRbAbesc20120613gAFNOR 3aFRbISSNc20081014 a074 uhttp://www.insee.fr/fr/publications-et-services/collection.asp?super_id=1zAccès libre au texte intégral depuis 2005/20061 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 330.941 b(2004/2005) -....cParisdMagasins/AnnexeeP 8° 6604 aDEW 330.9 aGEO RA4.06 France 0101267nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210005000182326001600232430005600248440003900304606004100343606003700384606005700421676000800478710007800486856010300564856010800667955007000775972000900845991001800854992001200872992003300884040050114000010083320130826120152.01 a1240-8093 aFNSP434937 a0000100833 a19900101b19932009 ba0 afre aFR aaha 10aEconomie internationale aPariscLa Documentation françaised1993-2009 aTrimestriel 1aEconomie prospective internationalexISSN 0242-7818 1tInternational economicsx2110-7017 aCommerce internationalxPériodiques aEconomie politiquexPériodiques aRelations économiques internationalesxPériodiques a33702aCentre d'études prospectives et d'informations internationalesc(France)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-economie-internationale.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 54 (1993) -no. 120 (2009)cParisdMagasins/AnnexeeP 8° 4264 aZPAY aexempb201303 aDEW 337 aGEO RS Sans aspect régional00978nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002500139210005500164326001600219530003500235606003700270676000800307856010000315856010800415955006700523955005900590972000900649991001800658992001200676045087261000026675920130828183706.01 a1293-6146 aFNSP924623 a19990217a19999999 ba0 afre aFR aaha 02aL'Economie politique aParis‎cScop-Alternatives économiques‎d1999- aTrimestriel12aL'Economie politique‎bParis aEconomie politiquexPériodiques a3304 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-l-economie-politique.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3301 bno. 1 (1999) -....cParisdMagasins/AnnexeeP 8° 6461 aZPAY aexempb200408 aDEW 33001197cas0 2200385 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001700100035001500117100004100132101000800173102000700181110001600188200007500204210004700279210005200326326002200378326002800400606003700428710004700465801003000512801003000542801002300572802000700595856003600602856007500638955005900713972000900772991001800781992001200799044839049000087512420140106114426.01 a1373-8496 a058731083 accn1373-8496 zccn7205/3364 aissn13738496 a0000875124 a20000407a19989999 0frey0103 ba0 afre aFR aaj 10aEconomie publique. Etudes et recherchesfInstitut d'économie publique aBruxellescDe Boeck Universitéd1998-2003 aMarseillecInstitut d'économie publiqued2003- aSemestrielb2002- a3 nos par anb1998-2001 aÉconomie publiquexPériodiques02aInstitut d'économie publiquec(Marseille) 3aFRbAbesc20050414gAFNOR 3aFRbAbesc20050414gAFNOR 3aFRbISSNc20010521 a0m4 uhttp://www.economie-publique.fr zContenu : accès au texte intégral des articles depuis le n° 1, 19981 bno. 1 (1998) -....cParisdMagasins/AnnexeeP 8° 6834 aZPAY aexempb201212 aDEW 33001158nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210002300174326001500197430007400212606003000286606005800316710004400374801002100418856009400439856010800533955007100641957007300712972000900785992002200794992001600816013302248000001853720130319051339.01 a0013-0559 aFNSP150505 a0000018537 a19900101a19539999 ba0 afre aFR aaga 10aEconomie rurale aPariscSFERd1953- aBimestriel 1aBulletin de la Société française d'économie rurale < P 4° 0903 > aAgriculturexPériodiques aAgriculturexAspect économiqueyFrancexPériodiques02aSociété française d'économie rurale 3aFRbCCN0013-05594 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-economie-rurale.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 15 (jan-1953) -....cParisdMagasins/AnnexeeP 4° 09031 bno. 111 (1976) -no. 122 (1977)cParisdMagasins/AnnexeeP Index 0512 aZPAY aGEO RA4.06 France aDEW 338.1-301192nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200012300163210004400286225003200330326001100362607006000373607005600433676001000489710006800499711005700567801001300624856002900637955006900666955005500735972000900790992002900799992001400828080065139000053979420130319051339.01 a1768-4560 a0000539794 a b20022009k fre ba0 afre aFR a 0  ar aa z 0 14aLes économies de l'Afrique centralefCommission économique des Nations Unies pour l'Afrique, Bureau Afrique centrale aPariscMaisonneuve et Larosed2002-200920aEconomies en développement aAnnuel aAfrique centralexConditions économiquesxPériodiques aAfrique centralexConditions socialesxPériodiques a330.902aCentre de développement sous-régional pour l'Afrique centrale02aNations UniesbCommission économique pour l'Afrique 0aFRbFNSP4 uhttp://www.uneca.org/ac/1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 330.91 b(2002) -(2009)cParisdMagasins/AnnexeeP 8° 6702 aZPAY aGEO RF2 Afrique centrale aDEW 330.901304nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009300154210005600247326001200303430006300315517005800378517006100436606003700497606005200534710007700586801002100663856002500684856005300709955006300762957005700825972000900882991001800891992002100909992001200930032921713000000459920140106115406.01 a0013-0567 aFNSP106080 a0000004599 a19900101a19679999 ba0 afre aFR aafu 10aEconomies et sociétésfInstitut de sciences mathématiques et économiques appliquées aGrenoblecPresses universitaires de Grenobled1967- aMensuel 1aCahiers de l'ISEAx0994-8287 (catalogués en monographies)10aÉconomies et sociétés : Cahiers de l'ISMEA (1975-)10aÉconomies et sociétés : Cahiers de l'ISEA (1967-1974) aEconomie politiquexPériodiques aHistoire économiquez20e sièclexPériodiques02aInstitut de sciences mathématiques et économiques appliquéesc(Paris) 3aFRbCCN0013-05674 uhttp://www.ismea.org zContenu : sommaires depuis le n°1, janvier 19701 bno. 1 (jan-1967) -....cParisdMagasins/AnnexeeP 8° 24311 b(1959) -(1991)cParisdMagasins/AnnexeeP Index 0679 aZPAY aexempb201009 aGEO RQ Universel aDEW 33001248nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210002900177326001700206451005900223517001800282606005200300606002900352607003400381801002100415856019200436856010800628955006900736955007400805992003100879992001200910038700859000000477520131014103214.01 a0013-0613 aFNSP106426 a0000004775 a19900101a18439999 ba0 aeng aGB accu 10aEconomist (London) aLondoncEconomistd1843- aHebdomadaire 1aEconomist. Edición para America latina < P 4° 2576 >10aThe Economist aHistoire économiquez20e sièclexPériodiques aActualitéxPériodiques aGrande-BretagnexPériodiques 3aFRbCCN0013-06134 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 01281 bvol. 30 no. 1527 (nov-1872) -....cParisdMagasins/AnnexeeP 4° 0128 aGEO RA4.02 Grande-Bretagne aDEW 05000857nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000053001502100052002032300024002553260005002796060037002846070054003218010013003758560031003888560108004199550005005279920023005329920012005550000995139000099513920130319051339.0 a0000995139 a a20049999k fre 01 ba0 aeng aUS ar aay z  adr 14aThe Economists' Voiceb[Ressource électronique] aBerkeley, CAcBerkeley Electronic Pressd2004 - aRevue électronique a aEconomie politiquexPériodiques aEtats-UnisxConditions économiquesxPériodiques 0aFRbFNSP4 uhttp://www.bepress.com/ev/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RC2 Etats-Unis aDEW 33001596nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210002900178326001600207606003700223606004100260801002100301801001300322856012800335856010800463856012800571856010800699856010900807856010800916955007001024957010101094972000901195991001801204992001201222013385054000001823520130319051339.01 a0308-5147 aFNSP149791 a0000018235 a19900101a19729999 ba0 aeng aGB aaha 10aEconomy and society aLondoncRoutledged1972- aTrimestriel aEconomie politiquexPériodiques aSociologie économiquexPériodiques 3aFRbCCN0308-5147 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=5B0&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=5B0&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713685159db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (fev-1972) -....cParisdMagasins/AnnexeeP 8° 30101 bvol.1 (1972) -vol. 5 (1976) ; vol.1 (1972) -vol. 10 (1981)cParisdMagasins/AnnexeeP Index 0310 aZSAB aexempb201106 aDEW 33000996nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005000163210002600213326001600239530002000255606002900275606005500304676000800359801001300367856002300380856008000403955007300483955005900556972000900615992001200624992002200636058823913000054485120130319051340.01 a1628-6391 a0000544851 a a20009999k fre ba0 afre aFR a 0  ar aah z 0 10aEcoRev'erevue critique d'écologie politique aPariscEcoRev'd2000- aTrimestriel10aEcoRev' (Paris) aEcologismexPériodiques aPolitique de l'environnementyFrancexPériodiques a001 0aFRbFNSP4 uhttp://ecorev.org/ zSélection d'articles en texte intégral depuis le n°0, 1er trimestre 20001 bLes 3 dernières annéescParisd27, Salle Rez-de-chausséeeDEW 0011 bno. 1 (2000) -....cParisdMagasins/AnnexeeP 4° 6984 aZCAD aDEW 001 aGEO RA4.06 France01050cas0 2200361 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147105001800154106000600172110001600178200005900194207002700253210003000280301005600310326001500366606002700381606003400408801003000442801002300472802000700495856004000502856004600542955006300588992001600651992002100667125204515000117708720130319051340.01 a1967-7499 a131745085 aissn19677499 a0001177087 a20080625a20089999k y0frey0103 ba0 afre aFR ay  ar aaju uu 10aEcrire l'histoireehistoire, littérature, esthétique 0aN.1 (2008, printemps)- aMarseillecGaussend2008- aDemande de numérotation ISSN en cours par le CR 57 aSemestriel aHistoirexPériodiques aHistoriographiexPériodiques 3aFRbAbesc20090309gAFNOR 3aFRbISSNc20090225 a074 uhttp://www.revueecrirelhistoire.fr/4 zAccès aux sommaires depuis le n°1, 20081 bno. 1 (pri-2008) -....cParisdMagasins/AnnexeeP 8° 7105 aDEW 900-907 aGEO RQ Universel01251cas0 2200325 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200004500148207005000193210009500243301004300338320005400381325006200435530004500497606002100542606004700563606005200610676000800662801003000670856014100700955006400841991002000905036831875000109341820130319051340.0 accn0118/2560 a0001093418 a19830101b18021929k y1frey0103 ba0 aeng aGB ar aah 114aThe Edinburgh review or Critical journal 0aVol.1:no1(1802,oct.)-vol.250:no510(1929,oct.) aEdinburghcArchibald Constable and companyaLondoncHurst, Rees, Orme and Brownd1802-1929 aDemande de numérotation ISSN en cours aIndex des vol.1-20, 21-50, 51-80, 81-110, 111-1401 aArticles reproduits sur la base de données PCI Full Text04aThe Edinburgh review or Critical journal aCritique2rameau aHistoire universellexPériodiques2rameau aRelations internationalesxPériodiques2rameau a900 3aFRbAbesc20050614gAFNOR4 uhttp://www.archive.org/search.php?query=edinburgh%20reviewzAccès libre au texte intégral. Périodique numérisé sur Internet Archive1 b(1846) -(1884)wlacunescParisdMagasins/AnnexeeP 8° 0708 aPériobTP02 P801584nls 2200361 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000066001502100043002162300021002593000259002803260005005393300100005444640042006444640017006864640017007034640029007206060037007496760008007867120030007948010013008248300168008378560064010058560148010699550005012170000909073000090907320130319051340.0 a0000909073 a a20049999k fre 01 ba0 afre aFR az aau z  adr 10aEditions Francis Lefebvre en ligneb[Ressource électronique] aLevallois-PerretcF. Lefebvred[2004]- aService en ligne aEn complément : Archives annuelles Navis sur cédéroms : 2005 et 2006 (Navis Droit des affaires Archives ; Navis Droit fiscal Archives ; Navis Droit social Archives), 2007 (Navis intégral : droit des affaires, social, fiscal, comptabilité-conso-ifrs) a aAccès à la base Mementis (14 memento) et aux bases Navis droit des affaires, fiscal et social 1tMémento pratique Francis Lefebvre... 1tNavis fiscal 1tNavis social 1tNavis droit des affaires aDroityFrancexBases de données a34002aEditions Francis Lefebvre 0aFRbFNSP aArchives (cédéroms version Nomade) Salle de référence - Avons 2005 et 2006 (= 6 cdr + 6 cdr d'installation - ET le 26/01/2007) + 2007 ("Navis intégral" 1 cdr)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.efl.fr4 zConsultation : Campus Sciences Po ; limité à trois utilisateurs simultanés.Dans la rubrique Abonnés, cliquez sur le lien multiutilisateurs.1 r01144nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000028001552070028001832100056002113000028002673000040002953260016003356060052003516060036004037120128004398010021005678560063005888560039006519550069006909720009007599920022007689920016007900000017656000001765620130319051340.01 a0294-0868 aFNSP148161 a0000017656 a19900101a1982 ba0 afre aFR aaha 10aEducation et formations 1aNo 1 (oct./déc. 1982)- aVanvescMinistère de l'éducation nationaled1982- aPas de parution en 1999 aLa revue parait désormais en ligne aTrimestriel aFormation professionnelleyFrancexPériodiques aEducationyFrancexPériodiques02aFrancebMinistère de l'éducation nationale, de la jeunesse et des sportsbDirection de l'évaluation et de la prospective 3aFRbCCN0294-08684 uhttp://www.education.gouv.fr/pid20674/sommaire-numero.html zcontient : texte intégral des nos1 bno. 1 (1982) - no. 66 (2003)cParisdMagasins/AnnexeeP 4° 4803 aZPAY aGEO RA4.06 France aDEW 370-37901148cas0 2200361 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001400100035001500114100004100129101000800170102000700178110001600185200009400201207001600295210004100311326001500352606004300367710005800410801003000468801003000498801002300528802000700551856010100558856004200659955006000701972000900761992001600770045044309000083007320130319051340.01 a1373-847X a058186409 accn7205/8749 aissn1373847X aEvry28619 a0000830073 a20000407a19989999k y0frey0103 ba0 afre aBE aaj 10aEducation et Sociétéserevue internationale de sociologie de l'éducationfINRPc(Lyon) 0an°1(1998)- aBruxellescDe Boeck & Larcierd1998- aSemestriel aSciences de l'éducationxPériodiques02aInstitut national de recherche pédagogiquec(France) 3aFRbAbesc20050518gAFNOR 3aFRbAbesc20050518gAFNOR 3aFRbISSNc20010401 a0m4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-education-et-societes.htm? zAccès aux sommaires et aux résumés1 bno. 11 (2003) -....cParisdMagasins/AnnexeeP 8° 6827 aZPAY aDEW 370-37901468nls 2200349 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000117001642070026002812100065003073000057003723260015004293360056004443370071005006060040005717100046006118010013006578560090006708560108007608560024008688560177008929920033010699920016011020000813729000081372920130319051341.01 a0162-3737 a0000813729 a a19799999k fre 01 ba0 aeng aUS az aag z  adr 10aEducational evaluation and policy analysisb[Ressource électronique]fAmerican Educational Research Association 1aN°1 (January 1979) - aWashingtoncAmerican Educational Research Associationd1979- aTexte intégral depuis le vol. 1, n°1, January 1979 aBimestriel aDonnées textuelles accessibles uniquement en ligne aTéléchargement de fichiers TIFF, PDF (recommandé) ou PostScript aEducationyEtats-UnisxPériodiques02aAmerican Educational Research Association 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01623737.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.aera.net zContenu : résumés en ligne depuis le vol. 26, n°3, Fall 2004 (site consulté le 13/05/2005) mais le projet affiché est, à terme, de mettre en ligne tous les résumés. aGEO RS Sans aspect régional aDEW 370-37901223cas0 22003853 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200004100180207002600221210004800247326001500295430002700310517003600337601005400373606004300427606004500470676000800515710004000523801003000563801002300593856007200616856003700688955008200725992001800807992001200825128292857000118708720130319051343.01 a1830-3676 aissn18303676 a0001187087 a20081016a20039999k f0frey0103 ba0 aeng aLU ay  ar aaj 10aEIB PapersfEuropean Investment Bank 0avol. 8, no. 1 (2003)- aLuxembourgcEuropean Investment Bankd2003- aSemestriel 1tCahiers BEIx0257-775510aEuropean Investment Bank Papers02aBanque européenne d'investissementxPériodiques aFinances internationalesxPériodiques aInvestissements européensxPériodiques a33202aBanque européenne d'investissement 3aFRbAbesc20090910gAFNOR 3aFRbISSNc200807014 uhttp://www.eib.org/infocentre/efs/publications/eib-papers/index.htm zAccès libre au texte intégral.1 bvol. 8 no. 1 (2003) -vol. 15 no. 2 (2010)cParisdMagasins/AnnexeeP 4° 5107 aGEO RA Europe aDEW 33201087nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000058001502100058002083000118002663260016003843360058004003370063004584520044005216060066005656060035006318010013006668560090006799550005007699920011007740000470135000047013520130319051343.0 a0000470135 a a19679999k fre 01 ba0 aeng aUS az aah z  adr 10aEighteenth-century studiesb[Ressource électronique] aBaltimore, Md.cJohns Hopkins University Pressd1967- aAccès au texte intégral (réservé aux sites de Sciences Po) à partir du vol.1 de 1967 jusqu'au vol.28 de 1995 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tEighteenth-century studiesx(0013-2586) aLittératurez18e sièclexHistoire et critiquexPériodiques aArtz18e sièclexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00132586.html1 r aDEW 7001151nas 2200313 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000023001412100039001643260017002034300053002205170028002736060052003016060029003536070061003826070048004438560192004919550069006839920039007529920020007919920014008119920012008250000010856000001085620130319051343.0 aFNSP120828 a0000010856 a19900716a19909999 ca0 arus aRU aaca 00aEkonomika i žizn' aMoskvacÈkonomika i žizn'd1990- aHebdomadaire 1aÈkonomiceskaâ gazeta (0013-3132) < P F°0228 >10aÈkonomičeskaâ gazeta aHistoire économiquez20e sièclexPériodiques aActualitéxPériodiques aRussiexConditions économiquesz1991-....xPériodiques aURSSxConditions économiquesxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA1 bno. 1 (jan-1990) -(dec-2004)cParisdMagasins/AnnexeeP F° 0228 aGEO RA7.21 Russie (depuis 1991-92) aGEO RA7.01 URSS aDEW 330.9 aDEW 05001000nas 2200277 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000032001552100028001873260014002154210035002296060029002646070026002938560192003198560108005119550068006199920023006879920012007100000071550000007155020130319051343.01 a0213-4608 aFNSP328047 a0000071550 a19900101a19839999 ba0 aspa aES acaa 10aEl Pais (Ed. internacional) aMadridcEl Paísd1983- aquotidien 1aEl Pais semanal < P 4° 4259 > aActualitéxPériodiques aEspagnexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLe mois en courscParisd27, Salle Rez-de-chausséeeP F° 0434 aGEO RA6.02 Espagne aDEW 05001067cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200002500174207002600199210003900225326001600264606004700280606004700327606005000374801003000424801002300454802000700477856004900484856007100533955006600604992001200670992001200682992002300694076791149000117938420130319051344.01 a1533-1296 aissn15331296 a0001179384 a20000630a20029999 0frey0103 ba0 aeng aUS ay  aah 10aElection law journal 0aVol. 1, no. 1 (2002)- aLarchmont, NYcM.A. Liebertd2002- aTrimestriel aDroit électoralyEtats-UnisxPériodiques aModes de scrutinyEtats-UnisxPériodiques aSystème électoralyEtats-UnisxPériodiques 3aFRbAbesc20090316gAFNOR 3aFRbISSNc20000630 a014 uhttp://www.liebertonline.com/elj?cookieSet=1 zContenu : sommaires des numéros depuis le vol. 1 no. 1 (mar-2002)1 bvol. 7 no. 2 (2008) -....cParisdMagasins/AnnexeeP 4° 7263 aDEW 973 aDEW 342 aGEO RC2 Etats-Unis01050cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101001300125102000700138110001600145200005100161210003600212326001500248517003000263530002200293606003600315606004300351710005700394801003000451802000700481856008500488856003600573955007000609972000900679992001200688992001200700044953046000109533220130319051345.01 a1488-3538 accn1488-3538 a0001095332 a20000407a19979999 0frey0103 ba0 aengafre aCA aaj 10aElectoral insight =dPerspectives électorales aOttawacElections Canadad1997- aSemestriel10aPerspectives électorales00aElectoral insight aElectionsyCanadaxPériodiques aDroit électoralyCanadaxPériodiques02aCanadabBureau du directeur général des élections 3aFRbAbesc20050420gAFNOR a044 uhttp://www.elections.ca/eca/eim/article_search/default.asp?textonly=false&lang=f zAccès libre au texte intégral1 bvol. 6 no. 1 (avr-2004) -....cParisdMagasins/AnnexeeP 4° 7195 aZSAB aGEO RC1 aDEW 97101016nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210004500176326003500221606002800256676000800284801002100292856010000313856005900413955006700472955009900539972000900638991001800647992002100665992001600686039312100000001801220130319051346.01 a0261-3794 aFNSP149261 a0000018012 a19900101a19829999 ba0 aeng aGB aahu 10aElectoral studies aGuildfordcButterworth Scientificd1982- a3 n°s par an puis trimestriel aElectionsxPériodiques a320 3aFRbCCN0261-37944 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/02613794 zContenu : sommaires et résumés depuis le vol.1, 19821 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bvol. 1 no. 3 (dec-1982) -....cParisdMagasins/AnnexeeP 8° 4621wManque : vol. 3 no. 3, 1984 aZSAB aexempb201003 aGEO RQ Universel aDEW 324.6-901299nas 2200289 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200006500148210008900213326001500302517008600317606005400403710001300457710004600470801001300516856037300529955006700902992001200969992002800981058784772000045586620131113155243.0 a1563-2113 a a19999999k fre ba0 afre aIN a 0  ar aaj z 0 10aEmploi et marché du travail dans les pays d'Europe centrale aLuxembourgcOffice des publications officielles des Communautés européennesd1999- aSemestriel11aEtudes et recherche. Emploi et marché du travail dans les pays d'Europe centrale aMarché du travailyEurope centralexPériodiques02aEUROSTAT02aUnion européennebCommission européenne 0aFRbFNSP4 uhttp://bookshop.europa.eu/fr/search/;pgid=y8dIS7GUWMdSR0EAlMEUUsWb0000nM_LU83m;sid=X07cXOyDRIjcUb4A0aNC-46mEi3CLutQWZ0=?webform-id=WFSimpleSearch&DefaultButton=findSimple&WFSimpleSearch_NameOrID=+Emploi+et+march%C3%A9+du+travail+dans+les+pays+d%27Europe+centrale&SearchConditions=&SearchType=1&findSimple.x=0&findSimple.y=0zAccès libre au texte intégral depuis 19991 bno. 1 (1999) -no. 1 (2003)cParisdMagasins/annexeeP 4° 6925 aDEW 331 aGEO RA5 Europe centrale01169cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200006500180207002200245210005400267326001100321452003500332517005400367530001500421606005500436606004400491801003000535801002300565802000700588856003700595856005400632955005800686972000900744992001800753992001200771123875080000122070920130319051349.0 a2030-5656 aissn20305656 a0001220709 a20080509a20089999k y0frey50 ba0 afre aBE ay 0  ar aaku 0zu 10aEmulationserevue des jeunes chercheurs en sciences sociales 0aN°1 (2007-2008)- aLouvaincPresses universitaires de Louvaind2008- aAnnuel 1tEmulations (Online)x1784-573410aEmulations, revue étudiante de sciences sociales10aEmulations0 aSciences socialesxRecherchexPériodiques2rameau0 aSciences socialesxPériodiques2rameau 3aFRbAbesc20080512gAFNOR 3aFRbISSNc20080509 a0m4 uhttp://www.revue-emulations.net/4 zContenu : texte intégral à partir du n°1, 20071 bno. 6 (2009)-....cParisdMagasins/AnnexeeP 8° 7177 aZPAY aGEO RA Europe aDEW 30000887nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000046001502100033001962300005002293000095002343260016003293360056003453370017004016060044004186060036004627100029004988010013005278560040005409550005005800000497683000049768320130827113128.0 a0000497683 a a20029999k fre 01 ba0 afre aFR az aay z  adr 10aEn temps réelb[Ressource électronique] aPariscEn temps réeld2000- a aTexte intégral depuis le n°1, février 2002 dans un délai de 3 mois suivant la parution airrégulier aDonnées textuelles accessibles uniquement en ligne aFichiers PDF aRelations internationalesxPériodiques aScience politiquexPériodiques02aEn temps réelc(France) 0aFRbFNSP4 uhttp://entempsreel.com/tag/cahiers/1 r01136nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200006700163207003200230210002200262326001200284430001600296517001000312607005200322607004100374710008500415801001300500856004700513856003600560955005900596955006900655972000900724992002500733992001600758112289215000059496720130319051349.01 a1956-922X a0000594967 a a20049999 fre 01 ba0 afre aFR a 0  ar aaf z 0 12aL'ENA hors les mursfAssociation des anciens élèves de l'ENA 1an°338 (janv./fév. 2004) - aPariscENAd2004- aMensuel 1tENA mensuel12aL'ENA aFrancexPolitique et gouvernementxPériodiques aFrancexAdministrationxPériodiques02aAssociation des anciens élèves de l'Ecole nationale d'administrationc(France) 0aFRbFNSP4 uhttp://www.aaeena.fr/publications/la-revue zSommaires des n°s précédents1 bL’année en courscParisd27, Salle Rez-de chaussée1 bno. 338 (jan/fev-2004) -....cParisdMagasins/AnnexeeP 4° 3975 aZCAD aGEO RA4.06 France 01 aDEW 350-35401186nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154207002400189210006600213326001600279607003700295607002300332856004300355856007600398856005400474856011600528955007700644957006800721972000900789991001800798992002000816992001200836036328758000020878020130319051350.01 a1136-6389 aFNSP756808 a0000208780 a19900101b19962009 ba0 aspa aES aaha 00aEncuentro de la cultura cubana 1a1(1996)-53/54(2009) aMadridcAsociación Encuentro de la Cultura Cubanad1996-2009 aTrimestriel aCubaxCivilisationxPériodiques aCubaxPériodiques4 uhttp://arch1.cubaencuentro.com/revista zContenu : sommaires et texte intégral du no.1, 1996 au no. 53/54, 20094 uhttp://www.cubaencuentro.com/es/revista-encuentro zContenu : accès libre aux sommaires et texte intégral des articles depuis le n°34-35 automne/hiver 2004-20051 bno. 1 (ete-1996) -no. 39 (2005/2006)cParisdMagasins/AnnexeeP 8° 63091 bno. 1(1996)-no. 24 (2002)cParisdMagasins/AnnexeeP Index 0849 aZGRA aexempb201210 aGEO RD3.05 Cuba aDEW 97201171nas 2200337 i 450 002001100000005001700011011001400028100004100042101000800083102000700091105001800098106000600116110001600122200004200138210002300180225001900203326001100222437006800233510004700301606005800348606005400406710004000460801001300500856008900513856010800602955006500710972000900775992002100784992001600805992001200821000043234220140115144959.0 a1606-8394 a a20019999k f fre ba0 amul aFR a 0  ar aak z 0 10aEnergy balances of non-OECD countries aPariscOCDEd2001-21aIEA statistics aAnnuel 1tEnergy statistics and balances of non-OECD countriesx1023-853010aBilans énergétiques des pays non-membres aRessources énergétiquesxStatistiquesxPériodiques aEnergiexConsommationxStatistiquesxPériodiques aAgence internationale de l'énergie 0aFRbFNSP4 uhttp://lysander.sourceoecd.org/vl=6109738/cl=13/nw=1/lg=fre/rpsv/outlook_annuals.htm4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1998/1999) -(1999/2000)cParisdMagasins/AnnexeeP 4° 4941 aZPAY aGEO RQ Universel aDEW 310-319 aDEW 33301053nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000043001552100084001983260011002825300043002936060073003366060058004097120052004678560054005198560036005739550057006099920057006669920012007239920016007350000276429000027642920130319051351.0 a1017-6705 aFNSP949708 a0000276429 a19990629a19919999 ba0 aeng aLU aaka 10aEnergy in Europe. Annual energy review aLuxembourgcOffice for Official Publications of the European Communitiesd1991- aAnnuel00aEnergy in Europe. Annual energy review aRessources énergétiquesyPays de l'Union européennexPériodiques aRessources énergétiquesxStatistiquesxPériodiques02aUnion européennebDirection générale Energie4 uhttp://www.europa.eu.int/en/comm/dg17/aerhome.htm zAccès libre au texte intégral1 b(1997)cParisdMagasins/AnnexeeP 4° 6820z+ CD-ROM aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 333 aDEW 310-31901096nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001800154210004300172326002600215326003000241326002700271326002700298606004200325606004400367801002100411856015100432856010800583955007000691972000900761992001200770039362264000001811720130319051351.01 a0301-4215 aFNSP149513 a0000018117 a19900101a19739999 ba0 aeng aGB aaeu 10aEnergy policy aGuilfordcButterworth-Heinemannd1973- a18 n°s par anb2004- a15 n°s par anb1997-2003 aIrrégulierb1985-1996 aTrimestrielb1973-1984 aPolitique énergétiquexPériodiques aRessources énergétiquesxPériodiques 3aFRbCCN0301-42154 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/03014215?&MDP-WSSO-SESSION=f82613f4083fe2b8c0afb5a35014ff78 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jun-1973) -....cParisdMagasins/AnnexeeP 4° 3324 aZPAY aDEW 33301402nas 2200361 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000044001642100023002082250019002313260011002504370069002615100052003306060058003826060054004407100040004948010013005348560263005478560108008109550064009189720009009829920021009919920016010129920012010280000432370000043237020130319051351.0 a1606-8686 a0000432370 a a20019999k f fre ba0 amul aFR a 0  ar aa z 0 10aEnergy statistics of non-OECD countries aPariscOCDEd2001-21aIEA statistics aAnnuel 1tEnergy statistics and balances of non-OECD countriesx(1023-853010aStatistiques de l'énergie des pays non-membres aRessources énergétiquesxStatistiquesxPériodiques aEnergiexConsommationxStatistiquesxPériodiques aAgence internationale de l'énergie 0aFRbFNSP4 uhttp://masetto.sourceoecd.org/vl=1144722/cl=24/nw=1/rpsv/cgi-bin/jsearch_oecd?limittitles=&cheese=searchdb&oecd-select=home.htm&form=expert&search0=energy+statistics+of+non-oecd+countries&search=&field0=tka&system=oecd_all&sortresultsby=rev_timestamp&what=d14 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1998/1999)-(2003/2004)cParisdMagasins/AnnexeeP 4° 6905 aZPAY aGEO RQ Universel aDEW 310-319 aDEW 33301355nas 2200325 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000040001412100023001813260011002044300036002155170050002516060058003016060054003596060058004137100040004718560258005118560108007699550064008779720009009419920051009509920012010019920016010130000047858000004785820130319051351.0 aFNSP241465 a0000047858 a19900101a19919999 f ba0 amul aFR aaka 10aEnergy statistics of OECD countries aPariscOCDEd1991- aAnnuel 1aEnergy statistics < P 4°5218 >10aStatistiques de l'énergie des pays de l'OCDE aRessources énergétiquesxStatistiquesxPériodiques aEnergiexConsommationxStatistiquesxPériodiques aRessources énergétiquesxStatistiquesxPériodiques aAgence internationale de l'énergie4 uhttp://oberon.sourceoecd.org/vl=2617097/cl=19/nw=1/rpsv/cgi-bin/jsearch_oecd?limittitles=&cheese=searchdb&oecd-select=home.htm&form=expert&search0=energy+statistics+of+oecd+countries&search=&field0=tka&system=oecd_all&sortresultsby=rev_timestamp&what=d14 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1980/1989)-(2003/2004)cParisdMagasins/AnnexeeP 4° 5218 aZPAY aGEO RN1 Pays industrialisés, pays occidentaux aDEW 333 aDEW 310-31901109nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210003100184210004300215326001500258606002700273607004400300801002100344856009000365856010800455856007700563955007300640972000900713991001800722992003100740992001200771038703645000005404320130319051352.01 a0013-8266 aFNSP255424 a0000054043 a19900101a18869999 ba0 aeng aGB aaha 10aEnglish historical review aHarlowcLongmand1886-1998 aOxfordcOxford University Pressd1998- aBimestriel aHistoirexPériodiques aGrande-BretagnexHistoirexPériodiques 3aFRbCCN0013-82664 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00138266.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ehr.oxfordjournals.org/1 bvol. 65 no. 254 (jan-1950) -....cParisdMagasins/AnnexeeP 8° 0850 aZPAY aexempb201101 aGEO RA4.02 Grande-Bretagne aDEW 90901192nas 2200349 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000100001552100036002553260012002914360064003034360052003675300029004196060032004486060040004807100044005208010021005648300069005858560025006548560046006799550072007259720009007979920022008069920014008280000018192000001819220130319051352.01 a0223-4866 aFNSP149692 a0000018192 a19900101a19809999 ba0 afre aFR aafu 10aEnjeuxenouveau mensuel de la normalisation françaisefAssociation française de normalisation aParis-La DéfensecAfnord1980- aMensuel 1aBulletin mensuel de la normalisation françaisex0300-1164) 1tCourrier de la normalisation (Paris)x0011-048510aEnjeuxb(Ed. française) aNormalisationxPériodiques aNormalisationyFrancexPériodiques02aAssociation française de normalisation 3aFRbCCN0223-4866 a1985-2006 : collection donnée au CTLes (envoi prévu pour 2008)4 uhttp://www.afnor.fr/ zContenu : sommaires des derniers numéros1 bno. 1 (mar-1980) -no. 53 (1984)cParisdMagasins/AnnexeeP 4° 4793 aZPAY aGEO RA4.06 France aDEW 60-6900957nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000078001502100005002282300005002333000058002383260014002963360056003103370018003666060032003846060030004166060044004467100093004908010013005838560042005969550005006380000432323000043232320130319051353.0 a0000432323 a a19989999k fre 01 ba0 afre aFR az aal z  adr 10aEnjeux de l'information et de la communicationb[Ressource électronique] a a aTexte intégral de la revue depuis le n°1, 1988-1999 abisannuel aDonnées textuelles accessibles uniquement en ligne aFichiers HTML aCommunicationxPériodiques aInformationxPériodiques aSciences de l'informationxPériodiques02aUniversité Stendhalc(Grenoble)bGroupe de recherche sur les enjeux de la communication 0aFRbFNSP4 uhttp://www.u-grenoble3.fr/les_enjeux/1 r01253nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002100139210002800160326001200188421004400200422002500244430003900269530002800308606003800336607005000374856019200424856010800616955007100724955008700795972000900882992002200891992001400913040004317000006075520131104154717.01 a1167-2196 aFNSP278402 a19900101a19929999 ba0 afre aFR aafa 00aEnjeux les Echos aPariscLes Echosd1992- aMensuel 1tEnjeux les Echos.Hors-sériex1777-1005 1ales Echosx0153-4831 1aDynasteurs (Paris)xISSN 0983-1517 0aEnjeux les EchosbParis aEntreprisesyFrancexPériodiques aFrancexConditions économiquesxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bL’année en courscParisd27, Salle Rez-de chausséeeP 4° 50601 bConservation limitée aux 5 dernières annéescParisdMagasins/AnnexeeP 4° 5060 aZPAY aGEO RA4.06 France aDEW 330.901228nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008500154210003900239300004600278326001200324430004000336440006000376606003600436606004200472607005000514710005500564856012000619856003600739955007000775972000900845992002200854992001400876039373142000001819920130319051353.01 a0242-5815 aFNSP149707 a0000018199 a19901122b19712003 ba0 afre aFR aafa 10aEnquête mensuelle de conjoncturefBanque de France, Direction de la conjoncture aPariscBanque de Franced1971-2003 aDevient consultable en ligne gratuitement aMensuel 1aLa Situation économiquex0037-5926 1tEnquête mensuelle de conjoncture (En ligne)x1762-5912 aIndustrieyFrancexPériodiques aConjoncture économiquexPériodiques aFrancexConditions économiquesxPériodiques02aBanque de FrancebDirection de la conjoncture40704 uhttp://www.banque-france.fr/publications/publication-statistiques-indicateurs/enquete-mensuelle-de-conjoncture.html4 zAccès libre au texte intégral1 bno. 9 (1971) -no. 225 ( 2003)cParisdMagasins/annexeeP 4° 2334 aZGRA aGEO RA4.06 France aDEW 330.901233nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210004300193326002300236606003900259606005500298607005000353607005800403710008400461856006100545856007500606955006300681957007800744972000900822992002800831992002400859992001200883039011925000001820320130319051354.01 a0120-4483 aFNSP149715 a0000018203 a19901122a19829999 ba0 aspa aCO aaja 10aEnsayos sobre política económica aBogotácBanco de la Repúblicad1982- a2 ou 3 n°s par an aPolitique monétairexPériodiques aEconomie politiqueyAmérique latinexPériodiques aColombiexPolitique économiquexPériodiques aAmérique latinexPolitique économiquexPériodiques02aBanco de la Repúblicac(Colombie)bDepartamento de investigaciones económicas4 uhttp://www.banrep.gov.co/docum/ensayos/htm/ediciones.htm zContenu : sommaires, résumés et texte intégral depuis le n°1, 19821 bno. 1 (mar-1982) -....cParisdMagasins/annexeeP 8° 48111 bno. 1 (mar-1982) -no. 27 (jun-1995)cParisdMagasins/annexeeP Index 0784 aZPAY aGEO RD Amérique latine aGEO RD4.16 Colombie aDEW 33001067nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200001700163210003500180326001200215430005800227530002300285606004700308606003800355801001300393856003100406856008700437955007100524955008700595972000900682992002200691992001600713040091007000030684820130319051356.01 a1243-4167 a0000306848 a a19929999k fre ba0 afre aFR a 0  ar aaf z 0 12aL'Entreprise aPariscGroupe Expansiond1992- aMensuel 1tL'Entreprise, A pour affaires économiquesx1164-702712aL'Entrepriseb1992 aGestion d'entrepriseyFrancexPériodiques aEntreprisesyFrancexPériodiques 0aFRbFNSP4 uhttp://www.lentreprise.com zContenu : sommaire et sélection d'articles en texte intégral du dernier numéro.1 bL’année en courscParisd27, Salle Rez-de-chausséeeP 4° 60011 bConservation limitée aux 2 dernières annéescParisdMagasins/AnnexeeP 4° 6001 aZPAY aGEO RA4.06 France aDEW 650-65800981nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210004700178326001500225606003900240606004700279676000800326710003300334856005700367856004200424955006600466955006300532972000900595991001800604992002200622992001100644040290042000014732820130319051356.01 a1256-5482 aFNSP579734 a0000147328 a19950123a19949999 ba0 afre aFR aaja 10aEntreprise éthique aPariscCercle éthique des affairesd1994- aSemestriel aEthique des affairesxPériodiques aEthique des affairesyFrancexPériodiques a65002aCercle éthique des affaires4 uhttp://www.soficom-diffusion.com/ethique/ethique.htm zContenu : sommaires depuis le 1er n°1 bLes 3 dernières annéescParisd27, Salle 4e étageeDEW 6501 bno. 1 (oct-1994) -....cParisdMagasins/AnnexeeP 8° 6092 aZPAY aexempb201212 aGEO RA4.06 France aDEW 1701030nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000280015421000230018232600230020532600280022832600260025653000350028260600480031785601030036585601080046895500760057697200090065299100170066199200220067899200160070003994767X000006393220130523145552.01 a1161-2770 aFNSP293306 a0000063932 a19900101a19929999 ba0 afre aFR aaha 00aEntreprises et histoire aPariscEskad1992- aTrimestrielb2005- a3 nos par anb1994-2004 aSemestrielb1992-1993 0aEntreprises et histoirebParis aEntreprisesyFrancexHistoirexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-entreprises-et-histoire.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (avr-1992) -no. 68 (sep-2012)cParisdMagasins/AnnexeeP 8° 5808 aZPAY aexemp$201112 aGEO RA4.06 France aDEW 650-65801021nas0 2200325 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200007300163207001800236210002900254326001500283606003700298606004300335676001000378801003000388856007300418856005400491955006900545955005800614972000900672992001400681112139051000108387920130319051357.01 a1954-2437 a0001083879 a20070126a20069999k y0frey0103 ba0 afre aFR a 0  ar aaju 0 10aEntropiaerevue d'étude théorique et politique de la décroissance 0aVol.1 (2006)- aLyoncParangond2006-... aSemestriel aEconomie politiquexPériodiques aDécroissance soutenablexPériodiques a338.9 3aFRbAbesc20070126gAFNOR4 uhttp://www.editions-parangon.com/f/index.php?sp=coll&collection_id=8 zContenu : sommaires des n°s depuis le n°1, 20061 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 338.91 bno. 1 (2006) -....cParisdMagasin/AnnexeeP 8° 6970 aZPAY aDEW 338.901051nas 2200325 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200004900148210002700197326001600224530004900240601005400289606006600343710004000409801001300449830003300462856009500495955007100590972000900661991001800670992001200688992002500700039608751000042798520130927122121.01 a0433-7646 a a19529999k a fre ba0 ager aDE a 0  ar aay z 0 10aEntscheidungen des Bundesverfassungsgerichts aTübingencMohrd1952- airrégulier00aEntscheidungen des Bundesverfassungsgerichts01aAllemagnebBundesverfassungsgerichtxPériodiques aDroit constitutionnelyAllemagnexJurisprudencexPériodiques02aAllemagnebBundesverfassungsgericht 0aFRbFNSP aex coll. 2158, et coll. 71384 uhttp://www.bverfg.de/cgi-bin/link.pl?entscheidungenzContenu : texte intégral depuis 19981 bvol. 1 (1952) -vol. 117 (2007)cParisdMagasins/AnnexeeP 8° 6606 aZCAD aexempb201309 aDEW 342 aGEO RA5.01 Allemagne00868nls 2200301 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000076001642100027002402300024002673260016002916060066003077100040003738010013004138560056004268560042004829550005005249920012005299920025005410001161952000116195220130319051357.0 a0433-7646 a0001161952 a a19989999k fre 01 ba0 ager aDE ar aay z  adr 10aEntscheidungen des Bundesverfassungsgerichtsb[Ressource électronique] aTübingencMohrd1998- aRevue électronique airrégulier aDroit constitutionnelyAllemagnexJurisprudencexPériodiques01aAllemagnebBundesverfassungsgericht 0aFRbFNSP4 uhttp://www.bverfg.de/cgi-bin/link.pl?entscheidungen0 zContenu : texte intégral depuis 19981 r aDEW 342 aGEO RA5.01 Allemagne01160cas0 2200385 450 00100100000000200110001000500170002101100140003803500170005203500170006903500150008610000410010110100080014210200070015010500180015710600060017511000160018120000300019720700240022721000240025132600120027543700380028753000380032560600470036360600450041060600280045580100300048380100230051380200070053685600490054385600660059295500710065899200120072999200330074103940238X000116638420130319051357.01 a0308-518X accn0308-518X aissn0308518X a0001166384 a19760616a19749999k y0frey0103 ba0 aeng aGB a 0  ar aaza 0uu 10aEnvironment & planninghA 0aVol.6, no.1 (1974)- aLondoncPiond1974- aMensuel 1tEnvironment & planningx0013-917310aEnvironment & planning Ab(Print) aPolitique de l'environnementxPériodiques aAménagement du territoirexPériodiques aUrbanismexPériodiques 3aFRbAbesc20090308gAFNOR 3aFRbISSNc20090225 a024 uhttp://www.envplan.com/allvols.cgi?journal=A zContenu : sommaires et résumés depuis le vol.1 no. 1 (1969)1 bvol. 41 no. 1 (jan-2009) -....cParisdMagasins/AnnexeeP 8° 7083 aDEW 333 aGEO RS Sans aspect régional01309nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005500154210002400209326002200233326002700255606003700282606004500319856004000364856006100404856010100465856010800566856005100674856010800725955007100833972000900904991001800913992001200931992001600943039316009000025540020130319051357.01 a0263-774X aFNSP891390 a0000255400 a19900101a19839999 ba0 aeng aGB aaga 10aEnvironment and planninghC .iGovernment & policy aLondoncPiond1983- aBimestrielb1998- aTrimestrielb1983-1997 aPolitique publiquexPériodiques aAménagement du territoirexPériodiques4 uhttp://www.pion.co.uk/ep/index.html zContenu : sommaires et résumés depuis le vol. 14, 19964 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=107667 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.envplan.com/epc/epc20_contents.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 15 no. 1 (fev-1997) -....cParisdMagasins/AnnexeeP 8° 6423 aZPAY aexempb201211 aDEW 333 aDEW 350-35401130nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210002400181326002200205326002900227326002700256606002900283606004700312856004100359856007800400856010900478856010800587955007000695972000900765991001800774992001200792013707345000007492420140107125652.01 a0964-4016 aFNSP341625 a0000074924 a19900101a19929999 ba0 aeng aGB aaga 10aEnvironmental politics aLondoncCassd1992- aBimestrielb2009- a5 n°s par anb2005-2008 aTrimestrielb1992-2004 aEcologismexPériodiques aPolitique de l'environnementxPériodiques4 uhttp://www.frankcass.com/jnls/ep.htm zContenu : Sommaires et sommaire du n° à paraitre depuis le vol. 3, n°14 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713635072db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (pri-1992) -....cParisdMagasins/AnnexeeP 8° 5887 aZGRA aexempb201112 aDEW 33300900nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210005300179326001500232606003200247606002900279856010100308856010800409955006600517972000900583991001800592992001200610088375307000007178120131004151307.01 a0963-2719 aFNSP328532 a0000071781 a19900101a19929999 ba0 aeng aGB aaha 10aEnvironmental values aStrond, Isle of HarriscWhite Horse Pressd1992- aBimestriel aEnvironnementxPériodiques aEcologismexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=103364 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 6 no. 3 (1997) -....cParisdMagasins/AnnexeeP 8° 5871 aZPAY aexempb201206 aDEW 33300899nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000045001502070047001952100005002422300024002473260005002716060047002766060039003238010013003628560072003758560108004479550005005559920012005609920025005720000994391000099439120130319051358.0 a0000994391 a a20049999k fre 01 ba0 afre aFR ar aaz z  adr 10aEnvironnementb[Ressource électronique] 1aParis :$cLexisNexis Jurisclasseur :$c2004- a aRevue électronique a aEnvironnementxDroityFrancexPériodiques aEnvironnementxDroitxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aDEW 346 aGEO RA4.06 France 0100971nas 2200289 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000030001412100030001713260016002016060048002176060040002657100107003057120042004128560059004548560055005139550070005689720009006389920022006479920012006690000138238000013823820130319051358.0 aFNSP550611 a0000138238 a19941012a19949999 ba0 afre aFR aaya 12aL'Environnement en France aPariscDécouverted1994- aQuadriennal aRessources naturellesyFrancexPériodiques aEnvironnementyFrancexPériodiques02aCommissariat général au développement durablebService de l'observation et des statistiquescFrance02aInstitut français de l'environnement4 uhttp://www.statistiques.developpement-durable.gouv.fr/ zContenu : texte intégral de la dernière édition1 b(1994) -(1995) ; (1999) -….cParisdMagasins/AnnexeeP 4° 6407 aZPAY aGEO RA4.06 France aDEW 33301075nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210002700179210002400206326001600230606003200246676000800278801002100286856009900307856004200406955006600448955007000514957015600584972000900740992001200749039236595000000460320130319051359.01 a0046-2497 aFNSP106087 a0000004603 a19900101a19729999 ba0 afre aFR aahu 10aEspace géographique aPariscDoind1972-1995 aPariscBelind1996- aTrimestriel aGéopolitiquexPériodiques a910 3aFRbCCN0046-24974 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-espace-geographique.htm? zAccès aux sommaires et aux résumés1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9101 bvol. 1 no. 1 (jan-1972) -....cParisdMagasins/AnnexeeP 4° 31131 b(1972) -(1976) ; (1977) -(1981) ; (1982) -(1986)cParisdMagasins/Annexe;zCes index se trouvent respectivement dans le dernier no. de 1976, 1981, 1986 aZPAY aDEW 91001454nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200011500139207002200254210004600276210003400322210003200356210003700388326001600425452005200441530002600493606003700519606002900556676000800585801002100593856020400614955006600818955006300884957005700947972000901004991001801013992002501031992001201056001012576000000460420131024164602.01 a0014-0481 aFNSP106090 a19900101a19709999 ba0 afre aFR aahu 10aEspaces et sociétéserevue critique internationale de l'aménagement, de l'architecture et de l'urbanisation 1ano. 1 (nov-1970)- aRamonville Saint-AgnecÉd. Érèsd2004- aPariscL'Harmattand1988-2003 aToulousecPrivatd1985-1987 aPariscÉd. Anthroposd1970-1985 aTrimestriel 1ttEspaces et sociétés (En ligne)‎x1961-870000aEspaces et sociétés aSociologieyFrancexPériodiques aSociologiexPériodiques a301 3aFRbCCN0014-04814 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-espaces-et-societes.htm?zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3011 bno. 1 (nov-1970) -....cParisdMagasins/AnnexeeP 8° 28631 b(1987) -(1994)cParisdMagasins/AnnexeeP Index 0836 aZPAY aexempb201105 aGEO RA4.06 France 01 aDEW 30101103nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000200015421000450017432600280021943000430024744000400029060600540033060700620038460700350044671000500048185600360053185600780056795500830064597200090072899200280073799200120076504035931X000014047420130319051359.01 a1260-7991 aFNSP559289 a0000140474 a19941104b19942008 ba0 afre aFR aaga 10aEspaces latinos aVilleurbannecEspaces latinosd1994-2008 aMensuel puis bimestriel 1aEspaces latinos-américainsx1168-1179 1tNouveaux espaces latinosx2104-211X aDroits de l'hommeyAmérique latinexPériodiques aAmérique latinexPolitique et gouvernementxPériodiques aAmérique latinexPériodiques02aNouveaux espaces latino-américainsc(France)4 uhttp://www.espaces-latinos.org/ zContenu : sommaire du dernier numéro et de certains numéros depuis 20011 bno. 114 (nov-1994) -no. 249 (nov/dec-2008)cParisdMagasins/AnnexeeP 4° 6338 aZPAY aGEO RD Amérique latine aDEW 98000870nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001800154210003600172326001600208606004400224606003800268710003800306801002100344856003600365856008700401955007100488972000900559992001200568039558428000001832520130319051359.01 a0339-3267 aFNSP150040 a0000018325 a19900101b19752005 ba0 afre aFR aahu 10aEspaces temps aPariscEspaces tempsd1975-2005 aTrimestriel aSciences socialesyFrancexPériodiques aGéographieyFrancexPériodiques02aAssociation Espaces temps (Paris) 3aFRbCCN0339-32674 uhttp://espacestemps.revues.org/ zContenu : sommaires, résumés, quatrièmes de couverture depuis le n°78-79, 20021 bno. 6 (1977) -no. 89/90 (2005)cParisdMagasins/AnnexeeP 4° 5085 aZPAY aDEW 30000981nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000062001502100032002122300005002443000193002493260016004423360056004583370018005146060043005327120038005758010013006138560036006269550005006629920012006670000498522000049852220130319051359.0 a0000498522 a a20029999k fre 01 ba0 afre aFR az aay z  adr 10aEspaces Temps.net - Le Journalb[Ressource électronique] aPariscEspaces tempsd2002- a aArticles du journal depuis le 1er mai 2002 incluant une sélection d'articles, en texte intégral, résumé ou sous forme de sommaires, des Cahiers Espaces Temps depuis le n° 78-79, 2002. airrégulier aDonnées textuelles accessibles uniquement en ligne aFichiers HTML aSciences socialesxRessources Internet02aAssociation Espaces temps (Paris) 0aFRbFNSP4 uhttp://espacestemps.revues.org/1 r aDEW 30000941nas 2200301 i 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102110001600109200006700125210004500192326001100237430004300248606003800291607005300329712002300382856004600405955005500451955005500506972000900561991001800570992002500588992001200613992001400625036252506000010496120131112142707.0 aFNSP447144 a19900101b19682002 ba0 aspa aGT aaka 10aEstudio económico y memoria de labores del Banco de Guatemala aGuatemalacBanco de Guatemalad1968-2002 aAnnuel 1tMemoria de labores y estudio economico aFinancesyGuatemalaxPériodiques aGuatemalaxConditions économiquesxPériodiques02aBanco de Guatemala uhttp://www.banguat.gob.gt/menu.asp?id=1651 b(1980) -(2001)cParisdMagasins/AnnexeeP 8° 52711 b(1968) -(1979)cParisdMagasins/AnnexeeCOL8°1811 aZGRA aexempb201110 aGEO RD2.02 Guatemala aDEW 332 aDEW 330.901060nls 2200313 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000092001502100062002422300005003043260031003093360024003405170070003646060036004346760013004707120064004838010013005478300007005608560054005678560120006219550005007410000442878000044287820130319051402.0 a0000442878 a a19909999k fre 01 ba0 aeng aES ai aby z  adr 10aEstudios - Centro de estudios avanzados en ciencias socialesb[Ressource électronique] aMadridcCentro de estudios avanzados en ciencias sociales a aCollection de monographies aDonnées textuelles10aWorking paper - Centro de estudios avanzados en ciencias sociales aSciences socialesxPériodiques a300v21a02aCentro de estudios avanzados en ciencias socialesc(Madrid) 0aFRbFNSP adm4 uhttp://www.march.es/ciencia/ingles/ciencia3-9.asp4 zliste des titres de la collection ; texte intégral télédéchargeable avec Adobe Acrobat à partir de 1994 n° 541 a01490nas 2200361 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000029001552100066001843260016002506060057002666060044003236070059003677120060004268010021004868560062005078560037005698560061006068560055006679550159007229570177008819720009010589920028010679920021010959920012011160000018607000001860720130319051402.01 a0716-0240 aFNSP150654 a0000018607 a19900101a19679999 ba0 aspa aCL aahu 10aEstudios internacionales aSantiago, ChilecInstituto de estudios internacionalesd1967- aTrimestriel aRelations économiques internationalesxPériodiques aRelations internationalesxPériodiques aAmérique latinexRelations extérieuresxPériodiques02aInstituto de estudios internacionales (Santiago, Chili) 3aFRbCCN0014-15184 uhttp://www.iei.uchile.cl/publicaciones/revista/index.html zContient : sommaires depuis 20024 uhttp://www.al-dia.cl/sistema/tablas/listar.asp?r=2543%20 zContient : sommaires depuis 1998, vol. 31, n° 1231 bvol. 1 no. 1 (avr-1967) -vol. 30 no. 119/120 (oct/dec-1997) ; vol. 33 no. 129 (jan/mar-2000) -vol. 36 no. 1 (jan-2003)cParisdMagasins/AnnexeeP 8° 24051 rIndex cumulatif des n°1/32 de 1967/1975 (vol.1/8) dans le n°33, vol.9, enero/marzo 1976; index des n°1/99 de 1967/1992 (vol.1/25) dans le n°100, vol. 25, oct./dic. 1992 aZSAB aGEO RD Amérique latine aGEO RQ Universel aDEW 32701524nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210006200177326001600239606004400255606005500299607005100354710005200405856005800457856016100515955008900676957022200765957009500987972000901082991001801091992002101109992002801130992001601158039678172000001862420130319051402.01 a0716-1115 aFNSP150691 a0000018624 a19901127a19809999 ba0 aspa aCL aaha 10aEstudios públicos aSantiago, ChilecCEP, Centro de estudios públicosd1980- aTrimestriel aPolitique publiqueyChilixPériodiques aPolitique publiqueyAmérique latinexPériodiques aChilixPolitique et gouvernementxPériodiques02aCentro de estudios públicosc(Santiago, Chili)4 uhttp://www.cepchile.cl/dms/lang_1/cat_441_inicio.html zContenu : sommaires et texte intégral depuis le n°1, décembre 1980, résumés depuis le n°11, 1983 ; possibilité de recherche par index auteur et sujet1 bno. 15 (hiv-1984) -....cParisdMagasins/AnnexeeP 8° 4810wManquant : no. 41, 19911 bno. 1 (1980) -no. 60 (1995) ; no. 1 (1980) -no. 70 (1998) ; no. 1 (1980) -no. 80 (2000) ; no. 1 (1980) -no. 90 (2003) ; no. 1 (1980) -no. 100 (2005) ; no. 1 (1980) -no. 110 (2008)cParisdMagasins/AnnexeeP Index 07751 bno. 1 (1980) -no. 50 (1993)cParisdMagasins/Annexe :zse trouve dans le no. 50 (aut-1993) aZSAB aexempb201010 aGEO RD4.14 Chili aGEO RD Amérique latine aDEW 350-35401040nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210011700177326001500294530004100309606002500350606002900375710004600404711005400450856008300504856003700587955005900624972000900683991001800692992001600710038980703000011259320130319051402.01 a0104-026X aFNSP474317 a0000112593 a19900101a19929999 ba0 apor aBR aaja 10aEstudos feministas aRio de JaneirocUniversidade Federal do Rio de Janeiro, Centro Interdisciplinar de Estudos Contemporaneosd1992- aSemestriel 0aRevista estudos feministasbImpresso aFemmesxPériodiques aFéminismexPériodiques02aEscola de comunicaçaõc(Rio de Janeiro)02aCentro interdisciplinar de estudos contemporaneos4 uhttp://www.scielo.br/scielo.php?script=sci_serial&pid=0104-026X&lng=en&nrm=iso zAccès libre au texte intégral.1 bno. 0 (1992) -....cParisdMagasins/AnnexeeP 8° 5996 aZSAB aexempb201210 aDEW 305-30600837nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210002200175326001100197606004400208710009800252856009100350955005300441972000900494991001800503992002200521992001600543039915891000006723920130319051405.01 a1152-5088 aFNSP312061 a0000067239 a19900101a19929999 ba0 afre aFR aaka 10aEtat de l'école aPariscDEPd1992- aAnnuel aEducation et EtatyFrancexPériodiques02aFrancebMinistère de l'éducation nationalebDirection de l'évaluation et de la prospective4 uhttp://www.education.gouv.fr/cid3013/catalogue-des-publications.html#l-etat-de-l-ecole1 b(1992) -....cParisdMagasins/AnnexeeP 8° 5818 aZGRA aexempb201112 aGEO RA4.06 France aDEW 370-37901090nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154207002500192210007600217300002900293326001100322517005800333606003500391710009400426856013500520955005300655972000900708991001800717992002500735992001600760073577995000025077220131127140920.01 a1633-6488 aFNSP877086 a0000250772 a19900101a19969999 ba0 afre aFR aaka 12aL'État du mal logement en France 1a1995 publié en 1996 aPariscFondation Abbé Pierre pour le logement des défavorisésd1996- aPas de parution en 2003. aAnnuel12aRapport annuel sur l''État du mal-logement en France aLogementyFrancexPériodiques02aFondation Abbé Pierre pour le logement des défavorisésbCentre de connaissance (Paris)4 uhttp://www.fondation-abbe-pierre.fr/publications.php?filtre=publication_rmlzAccès au texte intégral du dernier rapport en ligne1 b(1995) -....cParisdMagasins/AnnexeeP 8° 6397 aZGRA aexempb201301 aGEO RA4.06 France 01 aDEW 360-36301150nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000110015421000540016532600160021960600250023571000260026080100210028685600530030785600610036085600900042185601080051195501160061995700810073597200090081699200110082503870501X000001869320130319051411.01 a0014-1704 aFNSP150854 a0000018693 a19900101a18909999 ba0 aeng aUS aahu 10aEthics aChicago, Ill.cUniversity of Chicago Pressd1890- aTrimestriel aMoralexPériodiques02aUniversity of Chicago 3aFRbCCN0014-17044 uhttp://www.journals.uchicago.edu/Ethics/toc.html zContenu : sommaires depuis le vol. 106, n°2, janv. 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00141704.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 61 no. 3 (avr-1951) -no. 4 (jul-1953) ; vol. 76 no. 1 (oct-1965) -....cParisdMagasins/AnnexeeP 8° 24211 bvol. 1 (oct-1890) -vol. 100 (jul-1990)cParisdMagasins/AnnexeeP Index 0684 aZPAY aDEW 1701151nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210007400189326001600263517003700279606003500316606004400351710007000395801002100465856005400486856012900540955008500669972000900754991001700763992003300780992001200813039991628000000668620130319051411.01 a0892-6794 aFNSP110912 a0000006686 a19900101a19879999 ba0 aeng aUS aahu 10aEthics & international affairs aNew YorkcCarnegie Council on Ethics and International Affairsd1987- aTrimestriel10aEthics and international affairs aMorale politiquexPériodiques aRelations internationalesxPériodiques02aCarnegie Council on Ethics and International Affairs (Etats-Unis) 3aFRbCCN0892-67944 uhttp://www.cceia.org/resources/journal/index.html zContenu : accès aux sommaires et résumés depuis le Vol.1,1987 ; un grand nombre d'articles disponibles en texte intégral1 bvol. 1 (1987) -....cParisdMagasins/AnnexeeP 8° 5139wManquant : vol. 3, 1989 aZSAB aexempb201011 aGEO RS Sans aspect régional aDEW 32701091nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200013500154207003300289210004600322326001100368606004700379606004400426710009600470856009900566955006400665972000900729991001800738992002200756992001100778039768732000000586720130319051411.01 a0767-5976 aFNSP109220 a0000005867 a19900328a00019999 ba0 afre aFR aaka 10aEthique et recherche biomédicaleerapport...fComité consultatif national d'éthique pour les sciences de la vie et de la santé 1aDate approximative : 1984 ?- aPariscLa Documentation françaised0001- aAnnuel aMédecinexRechercheyFrancexPériodiques aEthique médicaleyFrancexPériodiques aFrancebComité consultatif national d'éthique pour les sciences de la vie et de la santé4 uhttp://www.ladocumentationfrancaise.fr/rapports-publicszAccés au texte intégral depuis 19981 b(1988) -(2002) ; (2006)cParisdMagasins/annexeeP 8° 5626 aZPAY aexempb201110 aGEO RA4.06 France aDEW 1700941nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210002900184326001500213606002900228606004300257801002100300856010900321856010800430955007000538972000900608991001800617992001600635039079104000001869620131025133627.01 a0141-9870 aFNSP150862 a0000018696 a19900101a19789999 ba0 aeng aGB aagu 10aEthnic and racial studies aLondoncRoutledged1978- aBimestriel aEthnologiexPériodiques aRelations interethniquesxPériodiques 3aFRbCCN0141-98704 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713685087db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1978) -....cParisdMagasins/AnnexeeP 8° 4022 aZSAB aexempb201001 aDEW 305-30601031nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000260015421000580018030000320023832600150027060600430028560600290032871000530035785600460041085600640045695501960052097200090071699200160072507618935X000001888420130319051411.01 a1010-5832 aFNSP151422 a0000018884 a19901129a19839999 ba0 aeng aLK aaja 10aEthnic studies report aKandycInternational Centre for Ethnic Studiesd1983- aArrive avec un an de retard aSemestriel aRelations interethniquesxPériodiques aEthnologiexPériodiques02aInternational Centre for Ethnic StudiesbColombo4 uhttp://www.ices.lk/publications/esr.shtml zSommaires et résumés depuis le volume 15, no 2, July 19971 bvol. 1 no. 1 (mai-1983) -vol. 2 no. 2 (jul-1984) ; vol. 4 no. 1 (jan-1986) -vol. 22 no. 1 (jan-2004)cParisdMagasins/AnnexeeP 4° 5178wManquants: vol. 18 no. 1(2000) ; vol. 21 no. 1 (2003) aZSAB aDEW 305-30600974nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200001600163210002400179326002200203326002700225326002400252606003100276606002900307801001300336856010800349856010800457955007000565972000900635992001600644059608706000041795820130319051411.01 a1468-7968 a0000417958 a a20019999k fre ba0 aeng aGB a 0  ar aai z 0 10aEthnicities aLondoncSaged2001- aBimestrielb2012- aTrimestrielb2002-2011 a3 n°s par anb2001 aNationalismexPériodiques aEthnicitéxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (avr-2001) -....cParisdMagasins/AnnexeeP 8° 6597 aZSAB aDEW 305-30600934nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008700154210004100241326001100282530002500293606002900318606004300347710003400390801002100424856011400445955006000559972000900619992001600628039480070000001888720131113155840.01 a0295-9151 aFNSP151432 a0000018887 a19900101a19859999 ba0 afre aFR aahu 10aEthniesedroits de l'Homme et peuples autochtonesfSurvival international [France] aPariscSurvival Internationald1985- aAnnuel 0aEthniesbParis. 1985 aEthnologiexPériodiques aRelations interethniquesxPériodiques02aSurvival international France 3aFRbCCN7019/09094 uhttp://boutique.survivalfrance.org/collections/revue-ethnieszAccès aux sommaires depuis le n°29/30 de 20031 bno. 1/2 (1985) -...cParisdMagasins/AnnexeeP 4° 5049 aZGRA aDEW 305-30600953nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000044001502100049001943000090002433260016003333360058003493370066004074520030004737120038005038010013005418560090005549550005006449920014006490000534041000053404120130319051412.0 a0000534041 a a19549999k fre 01 ba0 aeng aUS az aah z  adr 10aEthnohistoryb[Ressource électronique] aColumbus, OhiocDuke University Pressd1954- aAccès au texte intégral (réservé aux sites de Sciences-Po) jusqu'à l'année 2000 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou télédéchargement 1tEthnohistoryx(0014-1801)02aAmerican Society for Ethnohistory 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00141801.html1 r aDEW 970.101227nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154207003600180210002400216326001600240530003300256606002900289606004300318712003800361801002100399856010000420856004200520955007100562955009600633957007100729972000900800991001800809992002200827992001600849039236617000001890720130319051412.01 a0046-2616 aFNSP151493 a0000018907 a19900101a19719999 ba0 afre aFR aahu 10aEthnologie française 1aNouv. sér., T. 1, no 1 (1971)- aPariscColind1971- aTrimestriel10aEthnologie françaisebParis aEthnologiexPériodiques aRelations interethniquesxPériodiques02aSociété d'ethnologie française 3aFRbCCN0046-26164 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-ethnologie-francaise.htm? zAccès aux sommaires et aux résumés1 bvol. 36 no. 1 (jan-2006) -....cParisdMagasins/AnnexeeP 4° 72551 bn. s. vol. 6 no. 1 (jan-1976) -vol. 35 no. 4 (oct-2005)cParisdMagasins/AnnexeeP 8° 38911 b(1971) -(1992)zcet index setrouve dans le no. 2, 1993 de la revue aZPAY aexempb201009 aGEO RA4.06 France aDEW 305-30601436nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001400154207002600168210005900194326001600253606002900269606003200298710005700330801002100387856003400408856004700442856009000489856010800579856014600687856010800833955009000941972000901031991001801040992001601058038705079000001889220130319051412.01 a0014-1828 aFNSP151453 a0000018892 a19900101a19629999 ba0 aeng aUS aahu 10aEthnology 1aVol. 1, no. 1 (1962)- aPittsburgh, Pa.cUniversity of Pittsburgh Pressd1962- aTrimestriel aEthnologiexPériodiques aAnthropologiexPériodiques02aUniversity of PittsburghbDepartment of Anthropology 3aFRbCCN0014-18284 uhttp://www.pitt.edu/ethnolog/4 zContenu : accès aux sommaires depuis 19624 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00141828.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://web.ebscohost.com/ehost/detail?vid=4&hid=3&sid=4ba21a11-e5c5-43d7-839d-367b9d409c38%40SRCSM24 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1962) -vol. 45 no. 4 (aut-2006)cParisdMagasins/AnnexeeP 8° 1994 aZPAY aexempb201001 aDEW 305-30601446cas0 2200409 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200001800180207002900198210003800227326001600265430004600281452003800327530002700365606004300392606003600435606002900471801003000500801002300530802000700553856010300560856006100663856010900724856010800833955007000941972000901011992001601020108058034000107907420131025131429.01 a1744-9057 aissn17449057 a0001079074 a20060906a20059999k y0frey0103 ba0 aeng aGB a 0  ar aaha 0uu 10aEthnopolitics 0aVol. 4, no 1 (mar 2005)- aAbingdoncTaylor & Francisd2005- aTrimestriel 1tGlobal review of ethnopoliticsx1471-8804 1tEthnopolitics (Online)x1744-906510aEthnopoliticsb(Print) aRelations interethniquesxPériodiques aDroits de l'hommexPériodiques aEthnicitéxPériodiques 3aFRbAbesc20070312gAFNOR 3aFRbISSNc20060720 a024 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713735027 zContenu : sommaires des n°s depuis le vol.5, n°1, 20064 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713735027db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 4 no. 1 (mar-2005) -....cParisdMagasins/AnnexeeP 8° 6953 aZSAB aDEW 305-30600980nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000037001502100066001873000098002533260016003513360058003673370066004254520023004917120057005148010013005718560090005849550005006749920011006790000533874000053387420130319051412.0 a0000533874 a a19739999k fre 01 ba0 aeng aUS az aah z  adr 10aEthosb[Ressource électronique] aBerkeley, Calif.cAmerican Anthropological Associationd1973- aAccès au texte intégral (réservé aux sites de Sciences-Po) jusqu'aux 7 dernières années aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou télédéchargement 1tEthosx(0091-2131)02aSociety for Psychological Anthropologyc(Etats-Unis) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00912131.html1 r aDEW 1501051nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210002500185326001500210430005500225606003800280606003500318606003700353712004900390856003000439856004500469955005900514972000900573992003900582992002000621992005600641992001600697037398881000007001320130319051412.01 a0869-5415 aFNSP322892 a0000070013 a19900101a19929999 y ca0 arus aRU aaga 10aEtnografičeskoe obozrenie aMoskvacNaukad1992- aBimestriel 1aSovetskaâ ètnografiâ (0038-5050) < P 4° 0848 > aEthnologieyEx-URSSxPériodiques aEthnologieyURSSxPériodiques aEthnologieyRussiexPériodiques02aInstitut ètnologii i antropologiic(Moscou)4 uhttp://journal.iea.ras.ru zContenu : sommaires depuis le n°1, 20031 bno. 1 (1992) -....cParisdMagasins/AnnexeeP 4° 0848 aZPAY aGEO RA7.21 Russie (depuis 1991-92) aGEO RA7.01 URSS aGEO RA7.02 Etats successeurs de l'Union soviétique aDEW 305-30601152nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200003200160210002700192326001400219430008000233440004000313530001900353606003700372607004500409710002400454856014500478955008700623957008200710992002200792992001200814038414201000000453120130319051412.01 a0994-5954 aFNSP105972 a0000004531 a19900101b18971940 ba0 afre aFR ar aaeu 10aEtudesfCompagnie de Jésus aPariscs.n.d1897-1940 aBimensuel 1aEtudes religieuses, philosophiques, historiques et littéraires

 1tConstruire (Paris. 1941)x0994-596210aEtudesb(1897) aVie intellectuellexPériodiques aFrancexVie intellectuellexPériodiques02aCompagnie de Jésus4 uhttp://gallica.bnf.fr/ark:/12148/cb34348593d/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1897-1940)1 bvol. 34 tome 70 (jan/fev-1897) -no. 243 (1940)cParisdMagasins/AnnexeeP 8° 02601 b(1888/1900) ; (1901/1910) ; (1911/1924)cParisdMagasins/AnnexeeP Index 0001 aGEO RA4.06 France aDEW 00101408nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005000154210003300204326001200237430004100249430004000290517005200330517001800382530001800400606003700418607004500455676000800500710002400508856008600532856010800618955007300726955006500799957009100864972000900955992002500964992001200989992000901001013870300000018158520131129121047.01 a0014-1941 aFNSP676307 a0000181585 a19900101a19459999 ba0 afre aFR aafa 10aEtudeserevue catholique d'interêt général aPariscAssas-Editionsd1945- aMensuel 1tCité nouvelle (Issoudun)x1155-6927 1tConstruire (Paris. 1941)x0994-596210aEtudes : revue de culture contemporaine (2002-)10aEtudes (1945)00aÉtudesb1945 aVie intellectuellexPériodiques aFrancexVie intellectuellexPériodiques a00102aCompagnie de Jésus4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-etudes.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle Rez-de-chausséeeDEW 0011 bno. 244 (jan-1945) -....cParisdMagasins/AnnexeeP 8° 02601 b(1961) -(1978) ; (1979) -(1990) ; (1991) -(1997)cParisdMagasins/AnnexeeP Index 0001 aZCAD aGEO RA4.06 France 01 aDEW 001 aPBUL00907nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000023001552100049001783260016002276070026002437120043002698010021003128560037003338560054003709550117004249720009005419910018005509920023005689920014005910000018894000001889420130319051412.01 a0324-1654 aFNSP151463 a0000018894 a19900101a19649999 ba0 amul aBG aahu 10aEtudes balkaniques aSofiacInstitut d'études balkaniquesd1964- aTrimestriel aBalkansxPériodiques02aInstitut d'études balkaniques (Sofia) 3aFRbCCN0011/54524 uhttp://cl.bas.bg/Balkan-Studies/ zContenu: sommaire des n°s depuis le vol.30, 19941 bvol. 7 no. 2 (1971) -….cParisdMagasins/AnnexeeP 8° 3011zn'avons pas le vol.19 (1983) et le vol. 20 (1984) aZECH aexempb201106 aGEO RA8.01 Balkans aDEW 949.600968nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101001300123102000700136110001600143200002300159210002500182326001500207510002100222607002500243710004900268801002100317856003100338856008600369955005900455957007000514972000900584991001800593992001900611992001200630039263355000001889520130319051412.01 a0153-1700 aFNSP151476 a0000018895 a19900101a19759999 ba0 afreaeng aFR aaju 10aEtudes canadiennes aTalencecAFECd1975- aSemestriel10aCanadian studies aCanadaxPériodiques02aAssociation française d'études canadiennes 3aFRbCCN0153-17004 uhttp://www.afec33.asso.fr/ zContenu : sommaires depuis le n°1, 1975 et texte intégral depuis le n°23, 19871 bno. 2 (1976) -....cParisdMagasins/AnnexeeP 8° 41341 bno. 1 (1975) -no. 19 (1985)cParisdMagasins/AnnexeeP Index 0326 aZCAD aexempb201104 aGEO RC1 Canada aDEW 97101181cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200002200156210006100178326002200239326002200261421003200283430007200315510002000387607002400407607005500431710004700486801003000533801003000563802000700593856005300600856003600653955007600689972000900765992002100774992001200795039660443000099083320130523150150.01 a0755-5857 accn0755-5857 a0000990833 a19911009a19839999 0frey0103 ba0 afre aFR aaj 10aÉtudes chinoises aPariscAssociation française d'études chinoisesd1983- aSemestrielb2012- aAnnuelb1983-2011 0tLettre de l'AFECx1162-8200 1tBulletin de l'Association française d'études chinoisesx1169-018610aZhongguo yanjiu aChinexPériodiques aChinexEtude et enseignementyFrancexPériodiques02aAssociation française d'études chinoises 3aFRbAbesc20031209gAFNOR 3aFRbAbesc20031209gAFNOR a074 uhttp://www.afec-en-ligne.org/spip.php?rubrique214 zAccès libre au texte intégral1 bno. 22 (2003) -vol. 31 no. 2 (2012)cParisdMagasins/AnnexeeP 8° 6905 aZPAY aGEO RI3.01 Chine aDEW 95101047nls 2200325 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000055001642100037002192300024002563260015002806060032002956060078003278010013004058560102004188560042005208560027005628560104005899550005006939920012006989920011007100001182579000118257920130319051412.0 a2101-0366 a0001182579 a a20019999k fre 01 ba0 afre aFR ar aaj z  adr 10aEtudes de communicationb[Ressource électronique] aVilleneuve-d'AscqcGERIICOd2001 aRevue électronique aSemestriel aCommunicationxPériodiques aNouvelles technologies de l'information et la communicationxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-etudes-de-communication.htm zAccès aux sommaires et aux résumés4 uhttp://edc.revues.org/ zContenu : accès au texte intégral depuis le n°21, 2004 à l'exception des deux derniers numéros1 r aDEW 302 aGEO RQ01154nas 2200361 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200004600148207002400194210004600218326001900264430005100283517003800334530004700372606004400419606003900463607002500502676000800527710005300535801001300588856006100601856002700662955008200689972000900771992001200780077221427000061561320131029102304.01 a1763-6191 a a20049999 fre 01 ba0 afre aFR a 0  ar aae z 0 14aLes Etudes de la Documentation française 1ano. 5186/87 (2004)- aPariscLa Documentation françaised2004- a20 n°s par an 1tNotes et études documentairesxISSN 0029-400410aEtudes - Documentation française14aLes Études de la Documentation française aRelations internationalesxPériodiques aHistoire économiquexPériodiques aFrancexPériodiques a00102aFrancebDirection de la documentation française 0aFRbFNSP4 uhttp://www.ladocfrancaise.gouv.fr/revues/ned/index.shtml zsommaires des numéros1 bno. 5186/5187 (mar-2004) -no. 5345 (2011)cParisdMagasins/AnnexeeP 8° 6755 aZPAY aDEW 00100974nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210002300177326001900200517006800219606004400287676000800331710006300339856006700402856003600469955006700505955005800572972000900630992001200639992000900651013558951000016791720130425092348.01 a1297-8450 aFNSP638326 a0000167917 a19900101a19959999 ba0 afre aFR aaza 14aLes Etudes du CERI aPariscCERId1995- a10 n°s par an10aLes Etudes du Centre d'études et de recherches internationales aRelations internationalesxPériodiques a32702aCentre d'études et de recherches internationalesc(Paris)4 uhttp://www.ceri-sciences-po.org/cerifr/publica/etude/etude.htm zAccès libre au texte intégral1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bno 1 (1995) -....cParisdMagasins/AnnexeeP 4° 6533 aZGRA aDEW 909 aPBUL01032cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200002400156210007700180326001800257532007600275606002400351710006100375801003000436801002300466802000700489856006100496856003600557955006300593972000900656992002500665992001600690076266397000074794420130319051413.01 a1762-360X aissn1762360X a0000747944 a20030523a20039999 0fre 0103 ba0 afre aFR aai 14aLes études du CRIF aParisc[Conseil représentatif des institutions juives de France]d2003- a3 n°s par an10aLes études du Conseil représentatif des institutions juives de France aJuifsxPériodiques02aConseil représentatif des institutions juives de France 3aFRbAbesc20040409gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.crif.org/?page=articles_display/list&tg_id=114 zAccès libre au texte intégral1 bno. 1 (jul-2003) -....cParisdMagasins/AnnexeeP 4° 7062 aZGRA aGEO RA4.06 France 01 aDEW 305-30601095nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006000154210002700214326001100241530005900252607006100311710006600372856010700438856010800545955006000653972000900713991001800722992003900740992001400779037383108000016952920130319051413.01 a1995-3615 aFNSP642105 a0000169529 a19900101b19952001 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE. iFédération de Russie aPariscOCDEd1995-2002 aAnnuel10aÉtudes économiques de l'OCDE. Fédération de Russie aRussiexConditions économiquesz1991-....xPériodiques02aCentre pour la coopération avec les économies en transition4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocde zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1995) -(2001/2002)cParisdMagasins/AnnexeeP 8° 6177 aZECH aexempb201212 aGEO RA7.21 Russie (depuis 1991-92) aDEW 330.901217nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123200004600141210002700187326001100214430009000225452007100315530004600386607005300432710006700485801001300552856021200565955006000777972000900837991001800846992002500864992001400889039620492000000412720130709140809.01 a1995-3208 aFNSP104921 a19900206b19612002 fre 0 afre aXX aa z b 10aEtudes économiques de l'OCDE.iAllemagne aPariscOCDEd1961-2002 aAnnuel 1aSituation et problèmes de l'économie. République Fédérale d'Allemagnex0304-3363 1tÉtudes économiques de l'OCDE. Allemagne (En ligne)‎x1999-026X10aÉtudes économiques de l'OCDE. Allemagne aAllemagnexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2001/2002)cParisdMagasins/AnnexeeP 8° 5047 aZECH aexempb201104 aGEO RA5.01 Allemagne aDEW 330.901080nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004400139210002700183326001100210430005300221530004500274607005200319710006700371856010700438856010800545955006000653972000900713991001800722992002400740992001400764037036491000000413520130827115045.01 a1995-3135 aFNSP104934 a19900206b19622001 f ba0 afre aFR aaka 00aEtudes économiques de l'OCDE. Autriche aPariscOCDEd1962-2001 aAnnuel 1aSituation et problèmes de l'économie. Autriche aÉtudes économiques de l'OCDE. Autriche aAutrichexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocde zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2000/2001)cParisdMagasins/AnnexeeP 8° 5037 aZECH aexempb201006 aGEO RA5.13 Autriche aDEW 330.901106nas 2200301 i 450 00100100000000200110001000500170002101100140003810000410005210100080009310200070010110500180010810600060012611000160013220000550014821000230020332600110022651700550023760700520029271000670034480100130041185602120042495501030063697200090073999100180074899200140076699200240078011694207X000037975420130710111425.01 a1995-3712 a a199? k f fre ba0 afre aFR a 0  ar aa z 0 10aEtudes économiques de l'OCDE. Belgique-Luxembourg aPariscOCDEd199?- aAnnuel10aEtudes économiques de l'OCDE. Belgique-Luxembourg aBelgiquexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(1994/1995) ; (1998/1999) ; (2000/2001) ; (2002/2003);cParisdMagasins/AnnexeeP 8° 5062 aZECH aexempb201104 aDEW 330.9 aGEO RA4.04 Belgique01030nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004500139210002700184326001100211452007000222530004500292607005200337710006600389856021200455955006500667991001800732992001400750116941936000021508520130912111824.0 a1995-3577 aFNSP775831 a19900101b 1999 ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iBulgarie aPariscOCDEd1997-1999 aAnnuel 1tÉtudes économiques de l'OCDE. Bulgarie (En ligne)‎x1999-063410aÉtudes économiques de l'OCDE. Bulgarie aBulgariexConditions économiquesxPériodiques02aCentre pour la coopération avec les économies en transition4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1996/1997) -(1998/1999)cParisdMagasins/AnnexeeP 8° 6332 aexempb201309 aDEW 330.901077nas 2200277 i 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102110001600109200004200125210002700167326001100194430005200205452006800257530004300325607005000368710006700418856021200485955006000697972000900757992001900766992001400785116881178000000482620130715122048.0 aFNSP106653 a19900227b19612002 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE. Canada aPariscOCDEd1961-2002 aAnnuel 1aSituation et problèmes de l'économie.iCanada 1tÉtudes économiques de l'OCDE. Canada (En ligne)‎x1999-009X10aÉtudes économiques de l'OCDE. Canada aCanadaxConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2001/2002)cParisdMagasins/AnnexeeP 8° 5043 aZECH aGEO RC1 Canada aDEW 330.901148nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004500139210002700184326001100211430005300222452007000275530004500345607005200390710006700442856021200509955006000721972000900781991001800790992002400808992001400832037036467000000482720130715121846.01 a1995-316X aFNSP106654 a19900227b19622002 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iDanemark aPariscOCDEd1962-2002 aAnnuel 1aSituation et problèmes de l'économie. Danemark 1tÉtudes économiques de l'OCDE. Danemark (En ligne)‎x1999-022710aÉtudes économiques de l'OCDE. Danemark aDanemarkxConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2001/2002)cParisdMagasins/AnnexeeP 8° 5064 aZPAY aexempb201104 aGEO RA3.04 Danemark aDEW 330.901142nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000440013921000270018332600110021043000520022145200690027353000440034260700510038671000670043785602120050495500600071697200090077699100180078599200230080399200140082603703636X000000482920130715121005.01 a1995-3372 aFNSP106656 a19900227b19622002 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iEspagne aPariscOCDEd1962-2002 aAnnuel 1aSituation et problèmes de l'économie. Espagne 1tÉtudes économiques de l'OCDE. Espagne (En ligne)‎x1999-043X10aÉtudes économiques de l'OCDE. Espagne aEspagnexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2002/2003)cParisdMagasins/AnnexeeP 8° 5054 aZECH aexempb201104 aGEO RA6.02 Espagne aDEW 330.901160nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004700139210002700186326001100213430005500224452007400279530004800353607005400401710006700455856021200522955006000734972000900794991001800803992002300821992001400844039620557000000483020130715121057.01 a1995-3054 aFNSP106657 a19900227b19612002 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iEtats-Unis aPariscOCDEd1961-2002 aAnnuel 1aSituation et problèmes de l'économie. Etats-Unis 1taÉtudes économiques de l'OCDE. États-Unis (En ligne)‎x1999-011110aÉtudes économiques de l'OCDE. États-Unis aEtats-UnisxConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2001/2002)cParisdMagasins/AnnexeeP 8° 5055 aZECH aexempb201104 aGEO RC2 Etats-Unis aDEW 330.901078nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004500139210002700184326001100211452007000222530004500292607005200337710006700389856021200456955005500668972000900723991001800732992002400750992001400774039286150000000484420130715121201.01 a1995-3496 aFNSP106753 a19900228b19692003 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iFinlande aPariscOCDEd1969-2003 aAnnuel 1tÉtudes économiques de l'OCDE. Finlande (En ligne)‎x1999-055310aÉtudes économiques de l'OCDE. Finlande aFinlandexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2003)cParisdMagasins/AnnexeeP 8° 5059 aZECH aexempb201104 aGEO RA3.01 Finlande aDEW 330.901128nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004300139210002700182326001100209430004300220452006800263530004300331607005000374710006700424856021200491955006000703972000900763991001800772992002200790992001400812040132781000000434020130715115928.01 a1995-3186 aFNSP105399 a19900212b19622003 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iFrance aPariscOCDEd1962-2003 aAnnuel 1aSituation et problèmes de l'économie 1tÉtudes économiques de l'OCDE. France (En ligne)‎x1999-024310aÉtudes économiques de l'OCDE. France aFrancexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2002/2003)cParisdMagasins/AnnexeeP 8° 5045 aZECH aexempb201104 aGEO RA4.06 France aDEW 330.901150nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004300139210002700182326001100209430005100220452006800271530004300339607005000382710006700432856021200499955007400711972000900785991001800794992002200812992001400834039620514000000484720130715120648.01 a1995-3232 aFNSP106761 a19900228b19622001 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iGrèce aPariscOCDEd1962-2001 aAnnuel 1aSituation et problèmes de l'économie. Grèce 1tÉtudes économiques de l'OCDE. Grèce (En ligne)‎x1999-029410aÉtudes économiques de l'OCDE. Grèce aGrècexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(1997/1998) ; (2000/2001)cParisdMagasins/AnnexeeP 8° 5051 aZECH aexempb201104 aGEO RA6.05 Grèce aDEW 330.900982nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004300154210002700197326001100224607005100235710006700286856010700353856010800460955006000568972000900628991001800637992002300655992001400678037396951000003932120130319051413.01 a1995-347X aFNSP214725 a0000039321 a19900101b19912001 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE. Hongrie aPariscOCDEd1991-2001 aAnnuel aHongriexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocde zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1991) -(2001/2002)cParisdMagasins/AnnexeeP 8° 5747 aZECH aexempb201111 aGEO RA8.12 Hongrie aDEW 330.901143nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004400139210002700183326001100210430005200221452007000273530004400343607005100387710006700438856021200505955006000717972000900777991001800786992002300804992001400827037036386000000485120130709134033.01 a1995-3259 aFNSP106793 a19900228b19612001 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iIslande aPariscOCDEd1961-2001 aAnnuel 1aSituation et problèmes de l'économie. Islande 1ttÉtudes économiques de l'OCDE. Islande (En ligne)‎x1999-031610aÉtudes économiques de l'OCDE. Islande aIslandexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2000/2001)cParisdMagasins/AnnexeeP 8° 5044 aZECH aexempb201104 aGEO RA3.05 Islande aDEW 330.901134nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004300139210002700182326001100209430005100220452006600271530004300337607005000380710006700430856021200497955006000709972000900769991001800778992002200796992001400818040132781000000488920130828145201.01 a1995-3291 aFNSP106977 a19900301b19632001 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iItalie aPariscOCDEd1963-2001 aAnnuel 1aSituation et problèmes de l'économie. Italie 1tÉtudes économiques de l'OCDE. Italie (En ligne),x1999-035910aÉtudes économiques de l'OCDE. Italie aItaliexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2000/2001)cParisdMagasins/AnnexeeP 8° 5048 aZECH aexempb201104 aGEO RA6.03 Italie aDEW 330.901068nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004200139210002700181326001100208452006700219530004200286607004900328710006700377856021200444955006000656972000900716991001800725992002100743992001400764039286150000000489020130715121306.01 a1995-3070 aFNSP106978 a19900301b19642002 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iJapon aPariscOCDEd1964-2002 aAnnuel 1tÉtudes économiques de l'OCDE. Japon (En ligne)‎x1999-013810aÉtudes économiques de l'OCDE. Japon aJaponxConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2001/2002)cParisdMagasins/AnnexeeP 8° 5058 aZECH aexempb201104 aGEO RI3.22 Japon aDEW 330.901042nas 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000046001502100027001963260011002234300056002346070054002907120067003448010013004118560107004248560108005319550052006399720009006919920014007009920026007140000379751000037975120130319051413.0 a0000379751 a b20012001k f fre ba0 afre aFR a 0  ar aa z 0 10aEtudes économiques de l'OCDE. Luxembourg aPariscOCDEd2001-2003 aAnnuel 1tEtudes économiques de l'OCDE. Belgique, Luxembourg aLuxembourgxConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocde zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(2000/2001)cParisdMagasins/AnnexeeP 8° 6549 aZECH aDEW 330.9 aGEO RA4.05 Luxembourg00959nas 2200277 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000043001412100027001843260011002116070051002227120067002738560107003408560108004479550065005559720009006209910018006299920020006479920014006670000078280000007828020130319051413.0 aFNSP352822 a0000078280 a19900101b19922002 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE. Mexique aPariscOCDEd1992-2002 aAnnuel aMexiquexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocde zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1991/1992) -(2001/2002)cParisdMagasins/AnnexeeP 8° 5895 aZECH aexempb201201 aGEO RD1 Mexique aDEW 330.901148nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000450013921000270018432600110021143000530022245200700027553000450034560700520039071000670044285602120050995500600072197200090078199100180079099200240080899200140083203703636X000000489120130715120853.01 a1995-333X aFNSP106979 a19900301b19629999 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iNorvège aPariscOCDEd1962-2001 aAnnuel 1aSituation et problèmes de l'économie. Norvège 1tÉtudes économiques de l'OCDE. Norvège (En ligne)‎x1999-039110aÉtudes économiques de l'OCDE. Norvège aNorvègexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2000/2001)cParisdMagasins/AnnexeeP 8° 5053 aZECH aexempb201104 aGEO RA3.03 Norvège aDEW 330.901128nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005400139210002700193326001100220452007900231530005400310607006100364710006700425856021200492955006000704972000900764991001800773992003300791992001400824039306070000000489220130715121617.01 a1995-3119 aFNSP106980 a19900301b19752001 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iNouvelle Zélande aPariscOCDEd1975-2001 aAnnuel 1tÉtudes économiques de l'OCDE. Nouvelle-Zélande (En ligne)‎x1999-017010aÉtudes économiques de l'OCDE. Nouvelle Zélande aNouvelle-ZélandexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1975) -(2000/2001)cParisdMagasins/AnnexeeP 8° 5061 aZECH aexemp$B201104 aGEO RJ3.02 Nouvelle-Zélande aDEW 330.901165nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004500139210002700184326001100211430005300222452007000275530004500345607005200390676001000442710006700452856021200519955005500731972000900786991001800795992002400813992001400837040132803000000489420130715121940.01 a1995-3313 aFNSP106982 a19900301b19622000 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iPays-Bas aPariscOCDEd1962-2000 aAnnuel 1aSituation et problèmes de l'économie. Pays-Bas 1tÉtudes économiques de l'OCDE. Pays-Bas (En ligne)‎x1999-037510aÉtudes économiques de l'OCDE. Pays-Bas aPays-BasxConditions économiquesxPériodiques a330.902aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2000)cParisdMagasins/AnnexeeP 8° 5042 aZECH aexempb201104 aGEO RA4.03 Pays-Bas aDEW 330.900951nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004300154210002700197326001100224607005100235710006600286856010700352856010800459955006000567972000900627992002300636992001400659037396919000006931320130319051413.01 a1995-3550 aFNSP320457 a0000069313 a19900101b19922001 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE. Pologne aPariscOCDEd1992-2001 aAnnuel aPolognexConditions économiquesxPériodiques02aCentre pour la coopération avec les économies en transition4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocde zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1992) -(2000/2001)cParisdMagasins/AnnexeeP 8° 5828 aZECH aGEO RA5.11 Pologne aDEW 330.901153nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004500139210002700184326001100211430005300222452007000275530004500345607005200390710006700442856021200509955006500721972000900786991001800795992002400813992001400837037036246000000490620130715121747.01 a1995-3356 aFNSP107028 a19900302b19632002 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iPortugal aPariscOCDEd1963-2002 aAnnuel 1aSituation et problèmes de l'économie. Portugal 1tÉtudes économiques de l'OCDE. Portugal (En ligne)‎x1999-0413 aÉtudes économiques de l'OCDE. Portugal aPortugalxConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976/1977) -(2002/2003)cParisdMagasins/AnnexeeP 8° 5063 aZPAY aexempb201104 aGEO RA6.01 Portugal aDEW 330.901217nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005700139210002300196326001100219430007300230452008200303530005700385607005300442710006600495856021200561955006500773972000900838991001800847992003600865992001400901116941898000020020620130710115342.01 a1995-3534 aFNSP730743 a19900101a1996199 ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iRépublique slovaque aPariscOCDEd1996- aAnnuel 1aEtudes économiques de l'OCDE. Les républiques tchèque et slovaque 1tÉtudes économiques de l'OCDE. République slovaque (En ligne)‎x1999-059610aÉtudes économiques de l'OCDE. République slovaque aSlovaquiexConditions économiquesxPériodiques02aCentre pour la coopération avec les économies en transition4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1995/1996) -(2001/2002)cParisdMagasins/AnnexeeP 8° 6276 aZECH aexempb201301 aGEO RA5.22 République slovaque aDEW 330.901134nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005600154210002700210326001100237430006900248607006400317710006700381856010700448856010800555955009200663972000900755991001800764992003600782992001400818116941871000019604620130319051413.01 a1995-3518 aFNSP719793 a0000196046 a19900101b19962003 ba0 afre aFR aaka 10aEtudes économiques de l'OCDE. République tchèque aPariscOCDEd1996-2003 aannuel 1aEtudes économiques de l'OCDE. Républiques tchèque et slovaque aRépublique tchèquexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocde zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1995/1996) -(1997/1998) ; (2000/2001) -(2002/2003)cParisdMagasins/AnnexeeP 8° 5774 aZECH aexempb201111 aGEO RA5.21 République tchèque aDEW 330.901032nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210002700198326001600225607005200241710011700293856010700410856010800517955005200625972000900677991001800686992002400704992001400728116941995000024177020130319051413.01 a1995-3631 aFNSP850969 a0000241770 a19900101b19981998 ba0 afre aFR aaka 10aEtudes économiques de l'OCDE. Roumanie aPariscOCDEd1998-1998 aIrrégulier aRoumaniexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiquesbCentre pour la coopération avec les non-membres4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocde zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1997/1998)cParisdMagasins/AnnexeeP 8° 6383 aZECH aexempb201301 aGEO RA8.13 Roumanie aDEW 330.901173nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004800139210002700187326001100214430005600225452007300281530004800354607005900402710006700461856021200528955005900740972000900799991001800808992003100826992001400857040132536000000491320130709140438.01 a1995-3453 aFNSP107037 a19900302b19622001 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iRoyaume Uni aPariscOCDEd1962-2001 aAnnuel 1aSituation et problèmes de l'économie. Royaume Uni 1tÉtudes économiques de l'OCDE. Royaume-Uni (En ligne)‎x1999-051010aÉtudes économiques de l'OCDE. Royaume-Uni aGrande-BretagnexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976)-(2001/2002)cParisdMagasins/AnnexeeP 8° 5046 aZECH aexempb201006 aGEO RA4.02 Grande-Bretagne aDEW 330.901071nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004600139210002300185326001100208452007100219530004600290607005300336710006600389856021200455955005200667991001800719992004200737992001400779116941952000021846820130912112842.01 a1995-3593 aFNSP785316 a19900101a19979999 ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iSlovénie aPariscOCDEd1997- aAnnuel 1tÉtudes économiques de l'OCDE. Slovénie (En ligne)‎x1999-065010aÉtudes économiques de l'OCDE. Slovénie aSlovéniexConditions économiquesxPériodiques02aCentre pour la coopération avec les économies en transition4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1996/1997)cParisdMagasins/AnnexeeP 8° 6337 aexempb201309 aGEO RA8.22 Slovénie (depuis 1991-92) aDEW 330.901136nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004300139210002700182326001100209430005100220452006800271530004300339607005000382710006700432856021200499955006000711972000900771991001800780992002200798992001400820037036343000000491620130715120252.01 a1995-3399 aFNSP107040 a19900302b19622002 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iSuède aPariscOCDEd1962-2002 aAnnuel 1aSituation et problèmes de l'économie. Suède 1tÉtudes économiques de l'OCDE. Suède (En ligne)‎x1999-045610aÉtudes économiques de l'OCDE. Suède aSuèdexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2001/2002)cParisdMagasins/AnnexeeP 8° 5050 aZECH aexempb201104 aGEO RA3.02 Suède aDEW 330.901135nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004200139210002700181326001100208430005100219452006800270530004300338607005000381710006700431856021200498955006000710972000900770991001800779992002200797992001400819037036327000000491720130710103943.01 a1995-3410 aFNSP107041 a19900302b19612002 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE. Suisse aPariscOCDEd1961-2002 aAnnuel 1aSituation et problèmes de l'économie. Suisse 1tÉtudes économiques de l'OCDE. Suisse (En ligne)‎x1999-047210aÉtudes économiques de l'OCDE. Suisse aSuissexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2001/2002)cParisdMagasins/AnnexeeP 8° 5056 aZECH aexempb201104 aGEO RA5.14 Suisse aDEW 330.901142nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004400139210002700183326001100210430005200221452006900273530004400342607005100386710006700437856021200504955006000716972000900776991001800785992002300803992001400826116941790000000491920130715120745.01 a1995-3437 aFNSP107044 a19900302b19632002 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iTurquie aPariscOCDEd1963-2002 aAnnuel 1aSituation et problèmes de l'économie. Turquie 1tÉtudes économiques de l'OCDE. Turquie (En ligne)‎x1999-049910aÉtudes économiques de l'OCDE. Turquie aTurquiexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2001/2002)cParisdMagasins/AnnexeeP 8° 5052 aZECH aexempb201104 aGEO RA6.06 Turquie aDEW 330.901067nas 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000045001502100027001953260011002226060023002336070069002567120067003258010013003928560107004058560108005129550065006209720009006859920057006949920014007510000398396000039839620130319051413.0 a0000398396 a b20012003k f fre ba0 afre aFR a 0  ar aa z 0 10aEtudes économiques de l'OCDE. Zone euro aPariscOCDEd2001-2003 aAnnuel aEuroxPériodiques aPays de l'Union européennexPolitique économiquexPériodiques02aOrganisation de coopération et de développement économiques 0aFRbFNSP uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocde zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(2000/2001) -(2002/2003)cParisdMagasins/AnnexeeP 8° 6574 aZECH aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 330.900964nas 2200265 i 450 001001000000002001100010005001700021035001500038035001500053100004100068101000800109102000700117110001600124200004200140210002700182326001100209607006400220710006700284856021200351955006500563972000900628991001800637992002900655992001400684037404911000012837520130319051413.0 aFNSP523218 a0000128375 a19940601b19942003 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDEiCorée aPariscOCDEd1994-2003 aAnnuel aCorée (République)xConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1993/1994) -(2002/2003)cParisdMagasins/AnnexeeP 8° 6033 aZECH aexempb201207 aGEO RI3.13 Corée du Sud aDEW 330.901289nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010013000951020007001081050018001151060006001331100016001391350018001552000123001732100099002962300024003953000093004193000040005123000129005523260015006816060031006966070058007277120094007858010013008798560043008929550040009350000311119000031111920130319051413.0 a0000311119 a a19969999k fre ba0 afreaeng aFR a 0  az aau z 0  adr 10aEtudes et documents - Centre d'études et de recherches sur le développement internationalb[Ressource électronique] aClermont-FerrandcCentre d'études et de recherches sur le développement internationald1996- aDonnées textuelles aAccès au 18/04/2000 : World Wide Web. URL : http://www.u-clermont1.fr/cerdi/default.htm aArticles en français ou en anglais aRésumés seulement de 1996 à 1998. Texte intégral au format pdf à partir de 1999, télédéchargeable avec Adobe Acrobat aCollection aDéveloppement économique aPays en voie de développementxPolitique économique02aCentre d'études et de recherches sur le développement internationalc(Clermont-Ferrand) 0aFRbFNSP4 uhttp://www.cerdi.org/Publi/default.asp1 rUniquement consultable sur Internet01351nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210004300195210004600238326001100284517003600295517000900331530004100340606004600381606006100427676000800488710004000496801002100536830003200557856005400589955006700643955005200710957010900762972000900871991001800880992002200898992001200920992000900932039300862000000340520130319051413.01 a0182-788X aFNSP102870 a0000003405 a19900101a19479999 ba0 afre aFR aaka 10aEtudes et documentsfConseil d'État aPariscImprimerie nationaled1947-1988 aPariscLa Documentation françaised1989- aAnnuel10aRapport public - Conseil d'Etat10aEDCE 0aEtudes et documents - Conseil d'Etat aDroit administratifyFrancexPériodiques aDroit administratifyFrancexJurisprudencexPériodiques a342 aFrancebConseil d'Etatc(1799-....) 3aFRbCCN0182-788X a1947-1999 conservé au 13 U4 uhttp://www.conseil-etat.fr/fr/rapports-et-etudes/1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 3421 bno. 1 (1947) -....cParisdMagasinseP 4° 02401 bno. 34 (1982) -no. 48 (1996)cParisdMagasins/Annexezcet index se trouve dans l'année 1996 de la revue aZPAY aexempb201010 aGEO RA4.06 France aDEW 342 aPBUL01170nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000033001552100062001883260015002504300155002656060042004206060045004626060039005077100134005468300035006808560059007158560036007749550005008109920025008159920016008400000277295000027729520130319051413.01 a1292-6876 aFNSP952260 a0000277295 a19990709a19989999 ba0 afre aFR aana 10aEtudes et résultats - DREES aPariscMinistère de l'emploi et de la solidaritéd1998- aTrimensuel 1tInformations rapides - Ministère du travail et des affaires sociales, Service des statistiques, des études et des systèmes d'informationx1278-8309 aSanté publiqueyFrancexPériodiques aSécurité socialeyFrancexPériodiques aAide socialeyFrancexPériodiques02aFrancebMinistère de l'emploi et de la solidaritébDirection de la recherche, des études, de l'évaluation et des statistiques aDésherbé en mars 2012 (1998-4 uhttp://www.sante.gouv.fr/etudes-et-resultats,4001.html zAccès libre au texte intégral1 b aGEO RA4.06 France 01 aDEW 360-36301043nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210003600176326002200212326002700234606005300261710008700314801002100401856003900422856007700461955007800538957007000616972000900686992002200695992001200717039305570000001862320130923170315.01 a0183-5912 aFNSP150689 a0000018623 a19900101a19789999 ba0 afre aFR aaga 10aEtudes foncières aPariscEtudes foncièresd1978- aBimestrielb2001- aTrimestrielb1978-2000 aAménagement du territoireyFrancexPériodiques02aAssociation pour le développement et la diffusion des études foncièresc(Paris) 3aFRbCCN0183-59124 uhttp://www.adef.org/site/index.php zContenu : sélection d'articles en texte intégral depuis le no. 1, 19781 bno. 4 (pri-1979) ; no. 7 (1980) -....cParisdMagasins/AnnexeeP 4° 46351 bno. 1 (1978) -no. 22 (1984)cParisdMagasins/AnnexeeP Index 0535 aZPAY aGEO RA4.06 France aDEW 33301178nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210006700181326001600248530003700264606004400301607004900345676000800394710006000402801002100462856003600483856008800519955006700607955006300674972000900737991001800746992002100764992001900785992001200804036274623000000452720130319051413.01 a0014-2123 aFNSP105966 a0000004527 a19900101a19709999 ba0 afre aCA aahu 10aEtudes internationales aQuébeccCentre québecois de relations internationalesd1970- aTrimestriel00aÉtudes internationalesbQuébec aRelations internationalesxPériodiques aCanadaxRelations extérieuresxPériodiques a32702aInstitut québécois des hautes études internationales 3aFRbCCN0014-21234 uhttp://www.erudit.org/revue/ei/ zContenu : texte intégral depuis le vol.1, 1970 ; barrière mobile de deux années.1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bno. 1 (fev-1970) -....cParisdMagasins/AnnexeeP 8° 2773 aZCAD aexempb201103 aGEO RQ Universel aGEO RC1 Canada aDEW 32701065nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001700154210004900171326001500220517001800235606002500253710005800278801002100336856004300357856006000400955016500460957010400625991001800729992001600747039667162000001854920130319051413.01 a0701-1008 aFNSP150542 a0000018549 a19900101a19779999 ba0 amul aCA aaju 10aEtudes Inuit aQuébeccEtudes inuit / Inuit studiesd1977- aSemestriel10aInuit studies aInuitsxPériodiques02aAssociation Inuksiutiit Katimajiitc(Québec, Canada) 3aFRbCCN0701-10084 uhttp://www.erudit.org/revue/etudinuit/ zContenu : texte intégral depuis le vol.26, n°1 (2002)1 bvol. 1 no. 1 (1977) -vol. 18 no. 1/2 (1994)cParisdMagasins/AnnexeeP 8° 4674wLac.: vol. 1 no. 2 (1977) ; vol. 2 (1978) ; vol. 4 (1980) ; vol. 5 no. 1 (1981)1 bvol. 1 (1977) -vol. 10 (1986) ; vol. 1 (1977) -vol. 17 (1993)cParisdMagasins/AnnexeeP Index 0669 aexempb201106 aDEW 305-30601565cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200005200179210003300231326001200264421006600276421010300342430006600445447010300511447002900614517006800643517003100711530005200742531002900794710002900823801003000852801002300882802000700905856014500912955009001057991002001147038442795000108414920130319051413.0 a0997-4156 accn0997-4156 aissn09974156 a0001084149 a19900517b18621896uuuy0frey0103 ba0 afre aFR ar aafu uu 10aEtudes religieuses, historiques et littéraires aPariscC. Douniold1862-1896 aMensuel 1tMoniteur bibliographique de la Compagnie de Jésusx0994-5970 1tEtudes religieuses, philosophiques, historiques et littéraires. Partie bibliographiquex0994-5504 1tEtudes de théologie, de philosophie et d'histoirex0997-4148 1tEtudes religieuses, philosophiques, historiques et littéraires. Partie bibliographiquex0994-5504 1tEtudes (1897)x0994-595410aEtudes religieuses, philosophiques, historiques et littéraires10aEtudes religieuses (Paris)00aEtudes religieuses, historiques et littéraires 0aEtud. relig. hist. litt.02aCompagnie de Jésus4070 3aFRbAbesc20070108gAFNOR 3aFRbISSNc20030523 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34415014q/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1862-1896)1 bvol. 58 (1893) -vol. 243 (1940) ; vol. 244 (1945)cParisdMagasins/AnnexeeP 8° 0260 aPériobTP01 P801360nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006700154210003300221300002700254326001600281517000700297606004400304606004700348710004900395801002100444856003700465856017000502856009400672856010800766955006300874972000900937991001800946992002200964992001200986013310100000001900920130319051413.01 a0014-2182 aFNSP151731 a0000019009 a19900101a19619999 ba0 afre aFR aaha 10aEtudes ruralesfÉcole des hautes études en sciences sociales aPariscEd. de l'EHESSd1961- aParaît avec du retard aTrimestriel10aER aSociologie ruraleyFrancexPériodiques aDéveloppement ruralyFrancexPériodiques02aLaboratoire d'anthropologie socialec(Paris) 3aFRbCCN0014-21824 uhttp://etudesrurales.revues.org/ zContenu : sommaires de 1961 à 1972, sommaires et résumés à partir de 1973, texte intégral avec trois ans de délai par rapport à la parution, à partir de 20004 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-etudes-rurales.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (avr-1961) -....cParisdMagasins/AnnexeeP 8° 1920 aZGRA aexempb200910 aGEO RA4.06 France aDEW 30701158nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200014400154210006400298326001500362530003200377606003600409710005800445801002100503856007100524955008000595957011100675972000900786991001600795992002100811992001200832039223531000006120920130319051413.01 a0014-2204 aFNSP280620 a0000061209 a19900101a19359999 ba0 afre aFR aaju 14aLes Etudes socialeseorgane de la Société des études pratiques d'économie sociale et de la Société internationale de science sociales aPariscSociété d'économie et de sciences socialesd1935- aSemestriel14aLes Études socialesbParis aSciences socialesxPériodiques02aSociété d'économie et de sciences sociales (Paris) 3aFRbCCN0014-22044 uhttp://www.science-sociale.org/dossiers/dossiers.php?id_dossier=651 b(1935) -(1940) ; no. 1 (jan-1948) -....cParisdMagasins/AnnexeeP 8° 07571 bno. 48/49 (1961) -no. 73/74 (1967) ; no. 75/76 (1968) -no. 98 (1973)cParisdMagasins/AnnexeeP Index 0255 aZPAY aexemp201201 aGEO RQ Universel aDEW 30000889nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210003400174326002300208326002600231606002700257606002900284710004600313856003900359856003700398955006400435972000900499991001800508992003300526992001600559039223558000010802720130319051413.01 a0014-2247 aFNSP457348 a0000108027 a19900101a19559999 ba0 afre aFR aaha 10aEtudes tsiganes aPariscEtudes tsiganesd1955- aTrimestrielb2004- aSemestrielb1955-2003 aTsiganesxPériodiques aMinoritésxPériodiques02aAssociation des études tsiganesc(Paris)4 uhttp://www.etudestsiganes.asso.fr/ zAccès libre au texte intégral.1 bn.s. no. 1 (1993) -....cParisdMagasins/AnnexeeP 8° 5982 aZPAY aexempb201210 aGEO RS Sans aspect régional aDEW 305-30601169nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001500139210002900154326001200183421003700195421004700232430003800279530002300317606005400340606005000394606003600444801002100480856002900501856008600530955006900616955008700685972000900772992002200781992001600803039082962000001945920131104163823.01 a0766-6330 aFNSP152869 a19900101a19859999 ba0 afre aFR aafa 02aL'Etudiant aPariscL'Etudiantd1985- aMensuel01tEtudiant plus (Paris)x0766-634901tEtudiant. Guide pratique (1984)x0765-4812 1aDossiers de l'Etudiantx0181-513X02aL'ÉtudiantbParis aOrientation professionnelleyFrancexPériodiques aEnseignement supérieuryFrancexPériodiques aEducationyFrancexPériodiques 3aFRbCCN7014/78174 uhttp://www.letudiant.fr/ zContenu : sommaire et texte intégral du dernier numéros; diverses informations.1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 40981 bConservation limitée aux 2 dernières annéescParisdMagasins/AnnexeeP 4° 4098 aZPAY aGEO RA4.06 France aDEW 370-37901263nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003700163207002700200210004000227326001500267430005200282606004200334606003200376607003900408607004700447607004600494801001300540856009400553856010800647955006700755972000900822992005600831992001400887127737006000046011120140106161951.01 a1538-7216 a0000460111 a a20029999k fre ba0 aeng aUS a 0  ar aag z 0 10aEurasian geography and economics 1avol. 43, no. 2 (2002)- aPalm Beach, FLcV.H. Winstond2002- aBimestriel 1tPost-Soviet geography and economics,x1088-9388 aGéographie économiquexPériodiques aGéopolitiquexPériodiques aEx-URSSxGéographiexPériodiques aEurope de l'EstxGéographiexPériodiques aAsie orientalexGéographiexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://bellwether.metapress.com/content/120747/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 43 no. 2 (2002) -....cParisdMagasins/AnnexeeP 8° 1854 aZPAY aGEO RA7.02 Etats successeurs de l'Union soviétique aDEW 330.900930nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200000900154210004100163326001600204430003200220530002200252606006500274606004500339856003400384856008400418955006900502992005700571992001200628036849049000022057920130319051414.01 a1372-5270 aFNSP791823 a0000220579 a19900101b19972000 ba0 amul aBE aaha 10aEuro aBruxellescEcu-Activitiesd1997-1999 aTrimestriel 1aEcu (Bruxelles),x0775-508200aEurob(Bruxelles) aMarché financieryPays de l'Union européennexPériodiques aMonnaie unique européennexPériodiques4 uhttp://www.ecu-activities.be/ zContenu : sommaires ; texte intégral avec mot de passe ; depuis le n°42, 19981 bno. 39 (1997) -no. 50 (2000)cParisdMagasins/annexeeP 4° 5387 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 33201068nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210006300185326001500248451004000263606006400303606003700367676001100404710006400415801002100479856005500500856003700555955007200592972000900664992005700673992001200730040141039000001117120130319051414.01 a1012-2257 aFNSP123899 a0000011171 a19900101a00019999 f ba0 afre aBE aaja 10aEurobaromètre (Bruxelles) aBruxellescCommission des communautés européennesd0001- aSemestriel 1aEurobarometer (Brussels)x1012-2249 aOpinion publiqueyPays de l'Union européennexPériodiques aSondages d'opinionxPériodiques a303.3802aCommunautés européennesbDirection générale Information 3aFRbCCN0251-29394 uhttp://ec.europa.eu/public_opinion/standard_fr.htm zAccès libre au texte intégral.1 bno. 7 (jul-1977) -no. 66 (2006)cParisdMagasins/AnnexeeP 4° 4340 aZGRA aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 30301123nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001400139210002900153326001200182434003200194434003300226530001400259606006500273606003600338801002100374830005700395830005300452856008400505955006700589972000900656991001800665992005700683992002100740992001200761038705338000000450420131001141121.01 a0014-2433 aFNSP105924 a19900101a19699999 ba0 aeng aGB aafu 10aEuromoney aLondoncEuromoneyd1969- aMensuel 1tCentral Europeanx0962-2543 1tCorporate financex0958-205300aEuromoney aMarché financieryPays de l'Union européennexPériodiques aMarché financierxPériodiques 3aFRbCCN0014-2433 a1969---> 1979 collection donnée au CTL en juin 2002 a1980-2008 : collection envoyée au CTles en 20134 uhttp://www.euromoney.com/index.htmlzAccès libre aux sommaires depuis Jan 19961 b(1980) -no. 476 (dec-2008)cParisdMagasins/AnnexeeP 4° 2910 aZPAY aexempb201306 aGEO RA1.01 Communautés européennes, Pays de la CEE aGEO RQ Universel aDEW 33201048nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002700139210003100166326001600197530002700213607002500240607005400265676001000319801002100329856011200350955006800462955006300530957007200593972000900665991001800674992001800692992001200710039379582000002005220130725093234.01 a0304-2782 aFNSP154336 a19900101a19739999 ba0 ager aAT aahu 10aEuropäische Rundschau aWiencEuropa Verlagd1973- aTrimestriel00aEuropäische Rundschau aEuropexPériodiques aAutrichexPolitique et gouvernementxPériodiques a943.7 3aFRbCCN0304-27824 uhttp://www.europaeische-rundschau.atzContenu : sommaires depuis 2003, certains articles en texte intégral1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 943.71 bno. 1 (jul-1973) -....cParisdMagasins/AnnexeeP 8° 32421 bvol. 1 (1973) -vol. 21 (1993)cParisdMagasins/AnnexeeP Index 0710 aZSAB aexempb200911 aGEO RA Europe aDEW 94001201nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210003200182326001200214421004500226430007200271440004900343447003500392606003500427606003800462710005800500856005800558856007900616955008800695972000900783992002500792992001800817992001600835040058700000004162420130319051414.01 a0940-4171 aFNSP222723 a0000041624 a19900101a19919999 ba0 ager aDE aafa 10aEuropäische Sicherheit aHerfordcMittlerd1991-2011 aMensuel 1tMilitärgeschichte (Herford),x0940-4163 1aEuropäische Wehrkunde, Wehrwissenschaftliche Rundschau,x0723-9432 1tEuropäische Sicherheit & Technikx2193-746X 1tStrategie & Technikx1860-5311 aDéfenseyEuropexPériodiques aDéfenseyAllemagnexPériodiques02aGesellschaft für Wehr- und Sicherheitspolitik (Bonn)4 uhttp://www.europaeische-sicherheit.de/Rel/index2.html zContenu : sommaires depuis oct. 2000, certains articles en texte intégral1 bvol. 40 no. 1 (1991) -vol. 60 no. 12 (dec-2011)cParisdMagasins/AnnexeeP 4° 2996 aZCAD aGEO RA5.01 Allemagne aGEO RA Europe aDEW 355-35901228nas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200003800180210002500218421004400243436003900287436003500326517001100361532004000372606003500412606003800447710005800485801003000543801002300573802000700596856002400603856008200627955006200709992002500771992001800796992001600814158393120000122524720130319051414.01 a2193-746X aissn2193746X a0001225247 a20120213a20129999u y0frey50 ba0 ager aDE ay  ar aafu uu 10aEuropäische Sicherheit & Technik aBonncMittlerd2012- 1tMilitärgeschichte (Herford)x0940-4163 1tEuropäische Sicherheitx0940-4171 1tStrategie & Technikx1860-531110aES & T10aEuropäische Sicherheit und Technik aDéfenseyEuropexPériodiques aDéfenseyAllemagnexPériodiques02aGesellschaft für Wehr- und Sicherheitspolitik (Bonn) 3aFRbAbesc20120213gAFNOR 3aFRbISSNc20120206 a064 uhttp://www.esut.de/ zContenu : sommaires depuis janvier 2012, certains articles en texte intégral1 bno. 1 (jan-2012) -....cParisdMagasinsAnnexeeP 4° 2996 aGEO RA5.01 Allemagne aGEO RA Europe aDEW 355-35900831nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001600154210003000170326001500200606003400215801002100249856007300270856003600343955006600379972000900445991001800454992005700472992001200529039638049000002005820130319051414.01 a0531-2485 aFNSP154349 a0000020058 a19900101a19669999 ba0 ager aDE aaga 10aEuroparecht aBaden-BadencNomosd1966- aBimestriel aDroit européenxPériodiques 3aFRbCCN0531-24854 uhttp://www.nomos.de/nomos/d/recherche/zs_rech/zs_start.lasso#zsrecht zContenu : sommaires depuis 20001 bvol. 1 no. 1 (1966) -....cParisdMagasins/AnnexeeP 8° 2389 aZPAY aexempb200908 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 34101099nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154207001600182210003300198326001200231517003500243517004600278530002600324606003400350606003100384856007200415856010800487955010000595972000900695992005700704992001200761049007653000005241820130319051414.01 a1163-8184 aFNSP251789 a0000052418 a19900101a19919999 ba0 afre aFR aafa 00aEuropeerevue mensuelle 1aNo 1(1991)- aPariscEd. techniquesd1991- aMensuel10aEuropeerevue du Jurisclasseur10aEuropeeactualité du droit communautaire10aEuropeb(Paris. 1991) aDroit européenxPériodiques aDroit publicxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b1 ère an. no. 1(nov-1991) -17 ème an. no. 12 (déc- 2007)cParisdMagasins/AnnexeeP 4° 6069 aZPAY aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 34101931nas 2200433 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004700154207002700201210007300228210005400301326002100355326003000376430003000406607002600436607003400462710002600496856005700522856006000579856010300639856010800742856012800850856010800978856010901086856010801195955006701303972000901370991001801379992005601397992003201453992001201485040101622000008567820140108104232.01 a0966-8136 aFNSP380543 a0000085678 a19900101a19939999 ba0 aeng aGB aaga 10aEurope-Asia studiesfUniversity of Glasgow 1aVol. 45 no. 1 (1993) - aAbingdoncCarfax Publishing for the University of Glasgowd1993-199X aAbingdoncUniversity of GlasgowcRoutledged199X- aBimestrielb1993 a8 à 10 nos par anb1994- 1aSoviet studiesx0038-5859 aEx-URSSxPériodiques aEurope de l'EstxPériodiques02aUniversity of Glasgow4 uhttp://www.tandf.co.uk/journals/carfax/09668136.html zContenu : sommaires depuis le vol. 48, n°1, janv. 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/09668136.html?&cookieSet=1 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=EAS&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713414944db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 45 no. 1 (1993) -....cParisdMagasins/AnnexeeP 8° 0235 aZSAB aexempb201101 aGEO RA7.02 Etats successeurs de l'Union soviétique aGEO RA2.02 Europe orientale aDEW 94701081cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200002700180210006000207303005500267326001900322606003600341606006500377801003000442801002300472802000700495856004400502856008200546955007100628972000900699992001200708992001100720057909571000111415320130319051415.01 a1622-1109 aissn16221109 a0001114153 a20010206a20009999 y0frey0103 ba0 afre aFR ay  ar aai 12aL'Europe des libertés aStrasbourgcPresses universitaires de Strasbourgd2000- aNotice rédigée d'après le N. 22 (janvier 2007)- aQuadrimestriel aDroits de l'hommexPériodiques aDroits de l'hommeyPays de l'Union européennexPériodiques 3aFRbAbesc20070706gAFNOR 3aFRbISSNc20010206 a074 uhttp://leuropedeslibertes.u-strasbg.fr/ zContenu: sommaire et texte intégral des n°s depuis le vol. 4, n° 3 de 20031 bvol. 6 no. 19 (oct-2005) -....cParisdMagasins/AnnexeeP 4° 7205 aZPAY aDEW 323 aGEO UE01150nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210002300180300003300203326001600236606006100252676000800313710005000321801002100371856010000392856010800492955007100600955007100671972000900742992005700751992001600808039223582000001892520130319051416.01 a0154-9928 aFNSP151535 a0000018925 a19900101a19609999 ba0 afre aFR aaha 12aL'Europe en formation aPariscCIFEd1960- aParaît avec un an de retard aTrimestriel aFédéralismeyPays de l'Union européennexPériodiques a32002aCentre international de formation européenne 3aFRbCCN0014-28084 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-l-europe-en-formation.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étage:eDEW 320.441 bvol. 2 no. 2 (fév-1961) -....cParisdMagasins/AnnexeeP 4° 1956 aZPAY aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 320-32101145nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200009900163210002700262326001700289530003700306607007100343702003600414702002600450801001300476830007900489856009900568955008600667957006600753992001200819038759934000047249820130319051416.01 a1246-6735 a0000472498 a b19181940k fre ba0 afre aFR a 0  ar aac z 0 12aL'Europe nouvelleerevue hebdomadaire des questions extérieures, économiques et littéraires aPariscs.n.d1918-1940 aHebdomadaire12aL'Europe nouvelleb(Paris, 1918) aEuropexPolitique et gouvernementz1918-1945xPériodiques2rameau 1aFabre-LucebAlfredf(1899-1983) 1aLe VerrierbMadeleine 0aFRbFNSP aannée 1936 reliée à l'atelier 2011 toile bordeaux pièce de titre noire4 uhttp://gallica.bnf.fr/ark:/12148/cb32771271m/datezAccès libre au texte intégral sur Gallica1 bno. 1 (12 jan-1918) -no. 1164 (1er juin-1940)cParisdMagasins/AnnexeeP 4° 03321 b(1918) -(1928)cParisdMagasins/Annexewno. 568 (29 dec-1928) aDEW 05000845nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000109001502100041002593260016003006060043003166070070003598010013004298560036004428560061004789550005005399920012005449920011005560001159617000115961720130319051417.0 a0001159617 a a20009999k fre 01 ba0 aeng aUS ar aah z  adr 10aEuropean affairsb[Ressource électronique]ea Publication of the European InstitutefEuropean Institute aWashington, DCcThe Instituted2000- aTrimestriel aCoopération européennexPériodiques aPays de l'Union européennexRelations extérieuresxPériodiques 0aFRbFNSP4 uhttp://www.europeanaffairs.org/ zContenu : texte intégral des articles à partir de 20001 r aDEW 940 aGEO RQ01552nas 2200361 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000262001552100028004173000054004453260011004994300083005104400088005935100077006816070049007586070040008076070041008476070038008887100059009268560046009859550070010319720009011019920056011109920012011669920012011780000151123000015112320130319051417.0 a1259-458X aFNSP590711 a0000151123 a19950227b19942000 ba0 afre aFR aaka 10aEuropean bibliography of Slavic and East European Studiesd= Bibliographie européenne des travaux sur l'ex-URSS et l'Europe de l'EstffÉcole des hautes études en sciences sociales ; Council for Slavonic and East European library and information services aPariscEHESSd1994-2000 aA partir de 1996, publication en ligne uniquement aAnnuel 1aEuropean bibliography of Soviet, East European and Slavonic Studiesx0140-492X 1tBibliographie européenne des travaux sur l'ex-URSS et l'Europe de l'Estx1638-174210aBibliographie européenne des travaux sur l'ex-URSS et l'Europe de l'Est aEurope de l'EstxBibliographiexPériodiques aRussiexBibliographiexPériodiques aEx-URSSxBibliographiexPériodiques aURSSxBibliographiexPériodiques02aEcole des hautes études en sciences socialesc(Paris)4 uhttp://ebsees.staatsbibliothek-berlin.de/1 bvol. 16 (1990) -vol.21 (1995)cParisdMagasins/AnnexeeP 4° 5949 aZPAY aGEO RA7.02 Etats successeurs de l'Union soviétique aDEW 010 aDEW 94700749nas 2200217 i 450 001001000000002001100010005001700021035001500038035001500053100004100068101000800109102000700117110001600124200006200140210004900202326001600251517002300267712006200290856009800352955008100450036551589000006472020130319051417.0 aFNSP297178 a0000064720 a19900101a19709999 ba0 aeng aGB aaha 10aEuropean consortium for political research. News circular aColchester, GBcUniversity of Essexd[19??-] aTrimestriel10aECPR news circular02aConsortium européen de recherches en sciences politiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.palgrave-journals.com/eps/ecpr_news.html1 bvol. 1 no. 1 (1970) -vol. 3 no. 1 (1991)cParisdMagasins/annexeeP 4° 309201427nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006000154210007300214210004000287210003200327300009800359326002700457326002700484607006900511607007100580712003400651856010000685856007200785955014300857991001801000992005701018992001401075038705435000001907920130319051417.01 a0014-2921 aFNSP151890 a0000019079 a19901201a19699999 ba0 aeng aNL aaza 10aEuropean economic reviewfEuropean Economic Association aWhite Plains, N.Y.cInternational Arts and Sciences Pressd1969-1971 aAmsterdamcNorth-Hollandd1971-1983 aaAmsterdamcElsevierd1983- aà partir de 2003 cette revue n'est plus l'organe officiel de "European Economic Association" aIrrégulierb1980-2002 aTrimestrielb1969-1979 aPays de l'Union européennexPolitique économiquexPériodiques aPays de l'Union européennexConditions économiquesxPériodiques02aEuropean Economic Association4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/00142921 zContenu : sommaires et résumés depuis le vol. 34, n°7, nov. 19901 bvol. 1 no. 2 (1969) -vol. 38 no. 9 (1994)cParisdMagasins/AnnexeeP 8° 2764zà partir de 1995, édition imprimée consultable à l'OFCE aexempb200908 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 338.901414cas0 2200397 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147106000600154110001600160200003800176210009300214300002500307326002300332422003300355601004400388607007100432607006900503710009000572711004600662801003000708801002300738802000700761856007700768856003600845955005500881972000900936992005700945992001401002067379257000101116720130319051417.01 a1684-033X a067335640 aissn1684033X a0001011167 a20020530a20029999k f0frey0103 ba0 aeng aII ar aai 10aEuropean economy.iSpecial report aLuxembourgcOffice des publications officielles des Communautés européennesd2002-2006 aN'a pas paru en 2003 a2 à 3 n°s par an 1tEuropean economy,x0379-099102aCommunautés européennesxPériodiques aPays de l'Union européennexConditions économiquesxPériodiques aPays de l'Union européennexPolitique économiquexPériodiques02aCommunautés européennesbDirection générale Affaires économiques et financières02aUnion européennebCommission européenne 3aFRbAbesc20060621gAFNOR 3aFRbISSNc20020530 a004 uhttp://ec.europa.eu/economy_finance/publications/eespecialreports_en.htm zAccès libre au texte intégral1 bno. 1 (2002) -no. 4 (2006)cParisdMagasins/Annexe aZPAY aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 330.900852nls 2200265 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000053001642100077002172300024002946070071003188010013003898560057004028560056004599920057005159920014005720000978263000097826320130319051417.01 a1830-5180 a0000978263 a a20069999k fre 01 ba0 aeng aBE ar aaf z  adr 10aEuropean economy newsb[Ressource électronique] aBruxellescDirectorate General for Economic and Financial Affairsd2006- aRevue électronique aPays de l'Union européennexConditions économiquesxPériodiques 0aFRbFNSP4 uhttp://ec.europa.eu/economy_finance/een/index_en.htm zContenu : texte intégral depuis le numéro 1, 2006 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 330.901004nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154207002700185210002400212326001600236430003900252607003500291801002100326856010800347856010800455955007000563972000900633991001800642992001800660992001200678039318966000001908020130319051417.01 a0265-6914 aFNSP151891 a0000019080 a19900101a19849999 ba0 aeng aGB aahu 10aEuropean history quarterly 1aVol. 14, no. 1 (1984)- aLondoncSaged1984- aTrimestriel 1aEuropean studies reviewx0014-3111 aEuropexHistoirexPériodiques 3aFRbCCN0265-69144 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 14 no 1 (jan-1984) -....cParisdMagasins/AnnexeeP 8° 3281 aZSAB aexempb201009 aGEO RA Europe aDEW 94001005nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000370015421000370019132600150022860600360024360600540027985601190033385601080045295500590056097200090061999100180062899200570064699200120070303674932X000019551520140110133659.01 a1361-1526 aFNSP718416 a0000195515 a19900101a19969999 ba0 aeng aGB aaga 10aEuropean human rights law review aLondoncSweet and Maxwelld1996- aBimestriel aDroits de l'hommexPériodiques aDroits de l'homme (droit européen)xPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.westlaw.com/signon/default.wl?RS=UKIS1.0&VR=1.0&sp=intiep-000 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1996) -....cParisdMagasins/AnnexeeP 8° 6263 aZCAD aexempb201301 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 32300855nls 2200301 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000066001642070012002302100066002422300024003083260013003326060036003458010013003818560048003948560037004429550005004799920012004849920057004960001221929000122192920130319051417.0 a1027-5193 a0001221929 a a19979999k fre 01 ba0 aeng aAT ar aaz z  adr 10aEuropean Integration online Papersb[Ressource électronique] 1a1997/1- aViennecEuropean Community Studies Association Austriad1997- aRevue électronique aInconnue aUnion européennexPériodiques 0aFRbFNSP4 uhttp://eiop.or.at/eiop/index.php/eiop/index zAccès libre au texte intégral.1 r aDEW 327 aGEO RA1.01 Communautés européennes, Pays de la CEE00946nls 2200253 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000069001502100035002192300024002546060045002788010013003238560205003368560108005419920031006499920012006800001147384000114738420130319051417.0 a0001147384 a a19869999k fre 01 ba0 aeng aGB ar aaz z  adr 10aEuropean intellectual property reviewb[Ressource électronique] aLondoncSweet & Maxwellc1986- aRevue électronique aPropriété intellectuellexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.westlaw.com/search/default.wl?ForceTo=uk.westlaw.com&rp=%2fsearch%2fdefault.wl&mt=WestlawUK&rs=WLUK7.02&vr=2.0&sv=full&fn=top&db=EIPR&sp=intiep-000 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aGEO RA4.02 Grande-Bretagne aDEW 34001136nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154207003100192210002400223326002200247326002700269530004600296606003200342606004000374676000800414801002100422856010800443856010800551955007000659972000900729991001800738992001800756992001200774039321983000001908120140109145849.01 a0267-3231 aFNSP151892 a0000019081 a19900101a19869999 ba0 aeng aGB aahu 10aEuropean journal of communication 1aVol. 1, no. 1 (mar-1986) - aLondoncSaged1986- aBimestriel$d2013- aTrimestriel$d1986-2012 0aEuropean journal of communicationbLondon aCommunicationxPériodiques aCommunicationyEuropexPériodiques a070 3aFRbCCN0267-32314 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1986) -....cParisdMagasins/AnnexeeP 8° 5145 aZSAB aexempb201011 aGEO RA Europe aDEW 30201524nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004500154210002400199326002500223326002700248326002600275606003500301606004500336710010100381856004300482856007700525856012800602856010800730856010900838856010800947955006601055972000901121991001801130992001401148040089800000020889620130319051417.01 a0957-8811 aFNSP757059 a0000208896 a19900101a19899999 ba0 aeng aGB aaga 10aEuropean journal of development research aLondoncCassd1989- a5 n°s par anb2009- aTrimestrielb2004-2008 aSemestrielb1989-2003 aAide économiquexPériodiques aDéveloppement économiquexPériodiques02aAssociation européenne des instituts de recherche et de formation en matière de développement4 uhttp://www.frankcass.com/jnls/ejdr.htm zContenu : sommaires depuis le vol. 7, n°1 ; sommaire du n° à paraitre4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=6ZM&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713635016db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 8 no. 1 (1996) -....cParisdMagasins/AnnexeeP 8° 6311 aZSAB aexempb201210 aDEW 338.901762cas0 2200433 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200009300179210004000272326001600312430003600328452005400364606007100418606003600489710006000525801003000585801003000615801002300645802000700668856006500675856004500740856009000785856010800875856010300983856010801086955009101194972000901285992001801294992001601312039078604000079414120131127163232.01 a0141-8211 accn0141-8211 aissn01418211 a0000794141 a19790607a19799999 f0frey0103 ba0 aeng aGB ar aaha 10aEuropean journal of educationfEuropean Institute of Education and Social Policy (Paris) aOxfordcBlackwell Publishingd1979- aTrimestriel 1tPaedagogica Europaeax0078-7787 1tEuropean journal of education (Online)x1465-3435 aEnseignement supérieuryPays de l'Union européennexPériodiques aEducationyEuropexPériodiques02aInstitut européen d'éducation et de politique sociale 3aFRbAbesc20040906gAFNOR 3aFRbAbesc20040906gAFNOR 3aFRbISSNc20020530 a024 uhttp://www.blackwellpublishing.com/journal.asp?ref=0141-8211 zsommaires depuis le vol. 35, n° 1, 20004 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01418211.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=102214 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 39 no. 1 (mar-2004) -vol. 47 no. 4 (dec-2012)cParisdMagasins/AnnexeeP 8° 6817 aZPAY aGEO RA Europe aDEW 370-37901233nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008600154210004300240326001600283510004500299606003800344710003700382856002500419856003600444856010100480856010800581856003400689856006600723955006700789972000900856991001800865992001200883040055345000008330720140110125905.01 a0938-5428 aFNSP371404 a0000083307 a19900101a19909999 ba0 aeng aDE aaja 10aEuropean journal of international lawd= Journal européen de droit international aOxfordcOxford University Pressd1990- aTrimestriel10aJournal européen de droit international aDroit internationalxPériodiques02aInstitut universitaire européen4 uhttp://www.ejil.org/ zAccès libre au texte intégral4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=102619 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www3.oup.co.uk/ejilaw/ zContenu : sommaires et résumés depuis le vol. 9, n°1, 19981 bvol. 1 no 1/2 (1990) -....cParisdMagasins/AnnexeeP 8° 5909 aZCAD aexempb201202 aDEW 34101353nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009200154210002400246326001600270606004400286676000800330710006200338856007000400856010800470856016500578856010800743955006700851955007000918972000900988991001800997992001201015036741140000017269120130319051417.01 a1354-0661 aFNSP652215 a0000172691 a19900101a19959999 ba0 aeng aGB aaha 10aEuropean journal of international relationsfEuropean Consortium for Political Research aLondoncSaged1995- aTrimestriel aRelations internationalesxPériodiques a32702aConsortium européen de recherches en sciences politiques4 uhttps://acces-distant.sciences-po.fr/fork?http://ejt.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=availConsortium européen de recherches en sciences politiquesable zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 1 no. 1 (mar-1995) -....cParisdMagasins/AnnexeeP 8° 6191 aZSAB aexempb201212 aDEW 32700997nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009500154210003100249326001600280510005500296606003700351856006400388856006000452955007100512955008400583972000900667991001900676992001200695039129586000001078220130319051417.01 a0176-2680 aFNSP120555 a0000010782 a19900713a19859999 ba0 aeng aNL aaha 10aEuropean journal of political economyd=Europäische Zeitschrift für politische Ökonomie aAmsterdamcElsevierd1985- aTrimestriel10aEuropäische Zeitschrift für politische Ökonomie aEconomie politiquexPériodiques4 uhttp://www.elsevier.nl/inca/publications/store/5/0/5/5/4/4/ zContenu : sommaires depuis le vol. 11, n°2, janv. 19951 bvol. 24 no. 1 (mar-2008) -....cParisdMagasins/AnnexeeP 4° 72201 bvol. 5 no. 1 (1989) -vol 23 no 4 (dec-2007)cParisdMagasins/AnnexeeP 8° 5614 aZPAY aexemplb102011 aDEW 33001579nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004300139210003500182210003400217210003300251210002900284326001600313452006600329530004300395606003600438676000800474710006200482801002100544856010200565856020600667955006700873955006900940955007001009957007101079972000901150991001801159992001601177039380920000001908420131219162613.01 a0304-4130 aFNSP151897 a19900101a19739999 ba0 aeng aNL aahu 10aEuropean journal of political research aAmsterdamcElsevierd1973-1985 aDordrechtcNijhoffd1986-1987 aDordrechtcKluwerd1988-2001 aOxfordcBlackwelld2002- aTrimestriel 1tEuropean journal of political research (Online)‎x1475-676500aEuropean journal of political research aScience politiquexPériodiques a32002aConsortium européen de recherches en sciences politiques 3aFRbCCN0304-41304 uhttp://www.wkap.nl/jrnltoc.htm/0304-4130zContenu : sommaires depuis le vol. 27, n°1, janv. 19954 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=108658zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bL'année en courscParisdBibliothèque de rechercheeP 8° 33131 bvol. 1 no. 1 (avr-1973) -....cParisdMagasins/AnnexeeP 8° 33131 bvol. 1 (1973) -vol. 6 (1986)cParisdMagasins/AnnexeeP Index 0493 aZCAD aexempb200911 aDEW 320-32101105nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004100163210002400204326001600228517000900244606003600253801001300289856007000302856010800372856010800480856010800588955007000696972000900766992001600775070079617000052497520130319051417.01 a1474-8851 a0000524975 a a20029999k fre ba0 aeng aGB a 0  ar aah z 0 10aEuropean journal of political theory aLondoncSaged2002- aTrimestriel10aEJPT aScience politiquexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ept.sagepub.com/0 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jul-2002) -....cParisdMagasins/AnnexeeP 8° 6680 aZSAB aDEW 320-32101567nas 2200385 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000035001552100050001903260016002404300058002565170038003146060039003526070037003917100059004288010021004878560045005088560054005538560103006078560108007108560128008188560108009469550070010549720009011249910018011339920018011519920012011690000019085000001908520130319051417.01 a0168-6577 aFNSP151898 a0000019085 a19900101a19859999 ba0 amul aNL aahu 10aEuropean journal of population aAmsterdamcElsevier Science Publishersd1985- aTrimestriel 1aEuropean demographic information bulletin (0046-2756)10aRevue européenne de démographie aDémographieyEuropexPériodiques aEuropexPopulationxPériodiques02aAssociation européenne pour l'étude de la population 3aFRbCCN0168-65774 uhttp://www.wkap.nl/jrnltoc.htm/0168-6577 zContenu : sommaires depuis le vol. 11, n°1, 19954 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=102885 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=GG4&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1985) -....cParisdMagasins/AnnexeeP 8° 4863 aZPAY aexempb200912 aGEO RA Europe aDEW 30400840nas 2200265 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000042001552100029001973260016002266060038002428010021002808560102003018560060004039550082004639910018005459920011005630000066756000006675620130319051417.01 a0046-2772 aFNSP309816 a0000066756 a19900101a19719999 ba0 amul aGB aaha 10aEuropean journal of social psychology aChichestercWileyd1971- aTrimestriel aPsychologie socialexPériodiques 3aFRbCCN0046-27724 uhttps://acces-distant.sciences-po.fr/fork?http://www3.interscience.wiley.com/cgi-bin/jtoc?ID=1823 zContenu : sommaires depuis le vol. 26, n°1, janv. 19961 bvol. 3 no. 1 (1973) -vol. 16 no. 4 (1986)cParisdMagasins/AnnexeeP 8° 3366 aexempb200905 aDEW 1500852nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154210002400192326001600216606002900232856010800261856010800369955007000477972000900547991001800556992001200574036819808000025525020130319051417.01 a1368-4310 aFNSP890689 a0000255250 a19900101a19989999 ba0 aeng aGB aaha 10aEuropean journal of social theory aLondoncSaged1998- aTrimestriel aSociologiexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (fev-1998) -....cParisdMagasins/AnnexeeP 8° 6419 aZSAB aexempb201211 aDEW 30101536nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006000154210002900214326002400243326002700267326003300294606003900327606004700366856010300413856010800516856012800624856010800752856010900860856010800969955007001077972000901147991001801156992001201174040102335000011668220130319051417.01 a0967-2567 aFNSP485233 a0000116682 a19900101a19939999 ba0 aeng aGB aaga 14aThe European journal of the history of economic thought aLondoncRoutledged1993- a5 nos par anb2010- aTrimestrielb1999-2009 a2 ou 3 nos par anb1993-1998 aHistoire économiquexPériodiques aEconomie politiquexHistoirexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=104706 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=5B6&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713698194db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (aut-1993) -....cParisdMagasins/AnnexeeP 8° 6009 aZPAY aexempb201210 aDEW 33001137nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004000154210002400194326001600218606002500234606003300259856009500292856008900387856010800476856010800584955007000692972000900762991001800771992001800789992001600807036737828000014578420130319051417.01 a1350-5068 aFNSP575183 a0000145784 a19950110a19949999 ba0 aeng aGB aaha 10aEuropean journal of women's studies aLondoncSaged1994- aTrimestriel aFemmesxPériodiques aFemmesyEuropexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sagepub.co.uk/journal.aspx?pid=105543 zContenu : sommaires depuis le vol. 4, n°1, fév. 1997 ; résumés à partir de 19984 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (pri-1994) -....cParisdMagasins/AnnexeeP 8° 6091 aZSAB aexempb201212 aGEO RA Europe aDEW 305-30601122nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002500139210002900164326001500193606003400208710003700242856007100279856006600350856012800416856010800544955007000652972000900722991001800731992005700749992001400806036739162000023898320140110121434.01 a1351-5993 aFNSP843766 a19900101a19959999 ba0 aeng aGB aaga 10aEuropean law journal aOxfordcBlackwelld1995- aBimestriel aDroit européenxPériodiques02aInstitut universitaire européen4 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=1351-5993 zContenu : sommaires et résumés depuis le vol. 3, n°1, 19974 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=7PX&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 1 (mar-1997) -....cParisdMagasins/AnnexeeP 8° 6379 aZSAB aexempb201305 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 341.201098nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210003700178326001500215606003400230801002100264856016900285856010800454955006600562957007200628972000900700991001800709992005700727992001200784039399249000001933320140110135148.01 a0307-5400 aFNSP152508 a0000019333 a19900101a19759999 ba0 aeng aGB aagu 10aEuropean law review aLondoncSweet and Maxwelld1975- aBimestriel aDroit européenxPériodiques 3aFRbCCN0307-54004 uhttps://acces-distant.sciences-po.fr/fork?http://www.westlaw.com/signon/default.wl?RS=UKIS1.0&VR=1.0&sp=intiep-000&MDP-WSSO-SESSION=b60b87ae2e5a144004d3306d2c2d98b5 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1975) -....cParisdMagasins/AnnexeeP 8° 38841 bvol. 1 (1975) -vol. 25 (2000)cParisdMagasins/AnnexeeP index 0846 aZPAY aexempb201001 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 34101452nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200010100163210003100264210003200295210004300327326002200370530004200392606004000434710006600474801001300540856010300553856010800656856010900764856010800873955007000981972000901051991001801060992001201078040349381000041517020130319051417.01 a1084-8770 a0000415170 a a19969999k fre ba0 aeng aGB a 0  ar aag z 0 14aThe European legacyetoward new paradigmsfInternational Society for the Study of European Ideas aAbingdoncRoutledged2005- aAbingdoncCarfaxd2000-2004 aCambridge, Mass.cMIT Pressd1996-1999 a6 à 8 nos par an 0aEuropean legacy, toward new paradigms aPhilosophie politiquexPériodiques02aSociété internationale pour l'étude de l'idée européenne 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=104583 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713416679db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 2 no. 1 (mar-1997) -....cParisdMagasins/AnnexeeP 8° 6591 aZSAB aexempb201301 aDEW 94001510nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210002800184326001900212326004700231606005200278606007400330607005000404856005700454856005900511856012800570856010800698856010900806856010800915955006601023972000901089991001801098992001801116992001401134040100235000013696820130319051418.01 a0965-4313 aFNSP547792 a0000136968 a19940929a19939999 ba0 aeng aGB aafa 10aEuropean planning studies aAbingdoncCarfaxd1993- aMensuelb2009- aTrimestriel puis 10 n°s par anb1993-2008 aPlanification économiqueyEuropexPériodiques aAménagement du territoireyPays de l'Union européennexPériodiques aEuropexConditions économiquesxPériodiques4 uhttp://www.tandf.co.uk/journals/carfax/09654313.html zContenu : sommaires depuis le vol. 4, n°1, fév. 19964 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=EUP&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713417253db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 2 no. 1 (1994) -....cParisdMagasins/AnnexeeP 8° 6062 aZSAB aexempb201212 aGEO RA Europe aDEW 338.901174nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003100163207003000194210006600224326002300290326002900313517000800342606003600350710006200386801001300448856010300461856010800564955007000672955006900742972000900811992001600820059239492000058915620140114170901.01 a1680-4333 a0000589156 a a20019999k fre ba0 aeng aGB a 0  ar aai z 0 10aEuropean political science 1aVol.1, n°1(Autumn 2001)- aColchestercEuropean Consortium for Political Researchd2001- aTrimestrielb2005- a3 n°s par anb2001-200410aEPS aScience politiquexPériodiques02aConsortium européen de recherches en sciences politiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=113209 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (aut-2001) -....cParisdMagasins/AnnexeeP 8° 67321 bL'année en courscParisdBibliothèque de rechercheeP 8° 6732 aZSAB aDEW 320-32101022nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007200154210004300226210004900269326001600318530004100334606003600375606003600411710002200447856006400469856006600533955007000599972000900669991001800678992001200696040293149000026642620130319051418.01 a1062-7987 aFNSP923868 a0000266426 a19990212a19939999 ba0 aeng aGB aaha 10aEuropean revieweinterdisciplinary journal of the Academia Europaea aChichestercJ. Wiley & Sonsd1993-1997 aCambridgecCambridge University Pressd1998- aTrimestriel 0aEuropean reviewbChichester, England aSciences socialesxPériodiques aScience politiquexPériodiques02aAcademia europaea4 uhttp://journals.cambridge.org/action/displayJournal?jid=erw zContenu : sommaires et résumés depuis le vol. 1, no.1, 19931 bvol. 6 no. 1 (fev-1998) -....cParisdMagasins/AnnexeeP 8° 6460 aZSAB aexempb201212 aDEW 30001191nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004600139210004300185326001600228530004600244606003000290801002100320856010700341856013800448856020600586955006600792972000900858991001800867992001600885039109712000001933720130903142815.01 a0165-1587 aFNSP152514 a19900101a19739999 ba0 aeng aGB aahu 10aEuropean review of agricultural economics aOxfordcOxford University Pressd1973- aTrimestriel00aEuropean review of agricultural economics aAgriculturexPériodiques 3aFRbCCN0165-15874 uhttp://www3.oup.co.uk/eurrag/contents/zContenu : sommaires et résumés depuis le vol. 26, n°1, 19994 uhttps://acces-distant.sciences-po.fr/fork?http://www.degruyter.de/zContenu : sommaires du vol. 24, n°1, 1997 au vol. 25, n°4, 19984 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=102815zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1973) -....cParisdMagasins/AnnexeeP 8° 3361 aZPAY aexempb200905 aDEW 338.1-301116nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004000154210004900194326001800243606003900261710004200300856004200342856005200384856010100436856010800537955007000645972000900715991001600724991001800740992001800758992001400776048879150000026891920130319051418.01 a1361-4916 aFNSP930466 a0000268919 a19990325a19979999 ba0 aeng aGB aaia 10aEuropean review of economic history aCambridgecCambridge University Pressd1997- a3 n°s par an aHistoire économiquexPériodiques02aEuropean Historical Economics Society4 uhttp://uk.cambridge.org/journals/ere/ zContenu : sommaires depuis le vol.1, n°1, 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=105870 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (avr-1997) -....cParisdMagasins/AnnexeeP 8° 6466 aZPAY aexempb2011 aexempb201212 aGEO RA Europe aDEW 330.901243nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210002400176326001600200606003500216607004900251676000800300856010900308856010800417856010300525856010800628955006700736955006600803991001800869992001800887992001200905040101088000008517320130319051418.01 a0966-2839 aFNSP378183 a0000085173 a19900101a19929999 ba0 aeng aGB aaha 00aEuropean security aLondoncCassd1992- aTrimestriel aDéfenseyEuropexPériodiques aEuropexRelations extérieuresxPériodiques a3554 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713635117db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=110517 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3551 bvol. 1 no. 1 (1992) -....cParisdMagasins/AnnexeeP 8° 5915 aexempb201202 aGEO RA Europe aDEW 32701415nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005800139210002900197326002400226326002700250452004400277606003700321710003800358856010300396856010800499856005700607856006200664856010900726856010800835955006500943972000901008991001801017992001801035992001201053048811823000027689420130830110955.01 a1461-6696 aFNSP950730 a19990705a19999999 ba0 aeng aGB aaga 10aEuropean societiesfEuropean Sociological Association aLondoncRoutledged1999- a5 nos par anb2007- aTrimestrielb1999-2006 1tEuropean societies (Online),x1469-8307 aSociologieyEuropexPériodiques02aEuropean Sociological Association uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=104707 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.tandf.co.uk/journals/titles/14616696.html zContenu : sommaires, résumés, vol. 2, no. 1, janv. 20004 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713685208db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no.1 (1999) -....cParisdMagasins/AnnexeeP 8° 6501 aZSAB aexempb201212 aGEO RA Europe aDEW 30101220nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003300139210004300172326002200215326002800237326002700265326002800292452005400320606003700374801002100411856004200432856007100474856009000545856010800635955007000743972000900813991001800822992001800840992001200858039320960000001934220131025121155.01 a0266-7215 aFNSP152523 a19900101a19859999 ba0 aeng aGB aagu 10aEuropean sociological review aOxfordcOxford University Pressd1985- aBimestrielb2009- a5 nos par anb2003-2008 aTrimestrielb1998-2002 a3 nos par anb1985-1997 1tEuropean sociological review (Online),x1468-2672 aSociologieyEuropexPériodiques 3aFRbCCN0266-72154 uhttp://www.oup.co.uk/eursoj/contents/ zContenu : sommaires et résumés depuis le vol. 12, n°1, mai 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/02667215.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 2 no. 1 (mai-1986) -....cParisdMagasins/AnnexeeP 8° 5004 aZSAB aexempb201106 aGEO RA Europe aDEW 30101439nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002800163207003100191210002400222326002300246326002900269517000800298601003600306607007300342676001000415801001300425856007000438856010800508856010800616856010800724955007100832955007000903972000900973992001400982992005700996056260350000038516220130319051418.01 a1465-1165 a0000385162 a a20009999k fre ba0 aeng aGB a 0  ar aah z 0 10aEuropean Union Politics 1aVol. 1, no. 1 (Feb. 2000)- aLondoncSaged2000- aTrimestrielb2002- a3 n°s par anb2000-200110aEUP02aUnion européennexPériodiques aPays de l'Union européennexPolitique et gouvernementxPériodiques a341.8 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://eup.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étage:eDEW 320.441 bvol. 1 no. 1 (fev-2000) -....cParisdMagasins/AnnexeeP 8° 6561 aZSAB aDEW 341.2 aGEO RA1.01 Communautés européennes, Pays de la CEE01044nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154210002400192210003100216326001600247517004000263606003600303606005300339856010800392856010800500955006600608972000900674991001800683992001800701992001100719040105202000019870720130319051419.01 a0969-7764 aFNSP726475 a0000198707 a19900101a19949999 ba0 aeng aGB aaha 10aEuropean urban & regional studies aLondoncSaged1997- aHarlowcLongmand1994-1996 aTrimestriel10aEuropean urban and regional studies aUrbanismeyEuropexPériodiques aAménagement du territoireyEuropexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 1 (1996) -....cParisdMagasins/AnnexeeP 8° 6272 aZSAB aexempb201210 aGEO RA Europe aDEW 7101099nas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200004900156210007500205326001500280607004600295607006900341710003400410801003000444801002300474802000700497856006300504856005900567955006600626972000900692992005800701992001400759112874363000106898120130319051419.01 a1781-6858 aissn17816858 a0001068981 a20070227a20059999 0frey0103 ba0 aeng aBE aaj 10aEuropean ViewfForum of the European Studies aBrusselscForum of the European studiescEuropean Peoples' Party$2005- aSemestriel aPays de l'Union européennexPériodiques aPays de l'Union européennexEtude et enseignementxPériodiques02aForum of the European Studies 3aFRbAbesc20070227gAFNOR 3aFRbISSNc20070201 a0m4 uhttp://www.epp.eu/subpagina.php?hoofdmenuID=7&submenuID=61 zContenu : texte intégral depuis le vol.1, Spring 20051 bvol. 1 (pri-2005) -....cParisdMagasins/Annexes : P 8° 6946 aZGRA aGEO RA1. 01 Communautés européennes, Pays de la CEE aDEW 341.201014cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200004100156210002800197326001100225606005500236606003700291710002000328711004000348801003000388801002300418802000700441856005200448856005400500955007900554972000900633992001800642992001600660073551333000094490120130319051419.01 a1570-7865 aissn15707865 a0000944901 a20030523a20039999u y1frey0103 ba0 aeng aNL aaku uu 10aEuropean yearbook of minority issues aLeiden:cNijhoffd2003- aAnnuel aMinoritésxStatut juridiqueyEuropexPériodiques aEthnicitéyEuropexPériodiques02aEUR.AC Research02aEuropean Centre for Minority Issues 3aFRbAbesc20060109gAFNOR 3aFRbISSNc20030523 a0j4 uhttp://www.ecmi.de/rubrik/55/european+yearbook/ zContenu : sommaires depuis le volume 1, 2001/20021 bvol. 2 (2002/2003) -vol. 5 (2005/2006)cParisdMagasins/annexeeP 8° 6877 aZSAB aGEO RA Europe aDEW 305-30601073nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000053001552070017002082100089002253260011003145170055003255170058003806070039004387100013004778560112004908560036006029550054006389720009006929920018007019920016007199920012007350000169298000016929820130319051419.01 a1560-490X aFNSP641606 a0000169298 a19900101a19959999 f ba0 afre aLU aa a 10aEUROSTAT. Annuaireevue statistique sur l'Europe 1a(1983/1993)- aLuxembourgcOffice des publications officielles des Communautés européennesd1995- aAnnuel10aAnnuaire Eurostatele guide statistique del'Europe10aAnnuaire... - EUROSTAT : l'Europe en chiffres (2005-) aEuropexStatistiquesxPériodiques aEUROSTAT4 uhttp://epp.eurostat.ec.europa.eu/portal/page?_pageid=2693,70381876,2693_70592044&_dad=portal&_schema=PORTAL4 zAccès libre au texte intégral1 b(1995)-(2005)cParisdMagasins/AnnexeeP 4° 6538 aZPAY aGEO RA Europe aDEW 310-319 aDEW 94001131nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000035001552100089001903260011002795100035002905170026003255170025003516060087003767100013004638560139004768560037006159550059006529720009007119920057007209920016007779920012007930000075739000007573920130319051419.01 a1015-7743 aFNSP344483 a0000075739 a19900101a00019999 f ba0 amul aLU aaka 10aEUROSTAT. Bilans de l'énergie aLuxembourgcOffice des publications officielles des Communautés européennesd0001- aAnnuel10aEUROSTAT. Bilans de l'énergie10aEnergy balance sheets10aBilans de l'énergie aRessources énergétiquesyPays de l'Union européennexStatistiquesxPériodiques02aEUROSTAT4 uhttp://epp.eurostat.cec.eu.int/portal/page?_pageid=1073,1135281,1073_1135295&_dad=portal&_schema=PORTAL&p_product_code=KS-DM-04-001-3A4 zAccès libre au texte intégral.1 b(1985/1986) -(2001)cParisdMagasins/AnnexeeP 4° 6146 aZPAY aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 310-319 aDEW 33301232cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200006600180207003100246210003300277326002300310326002900333452004200362517006700404530003100471606003600502606003800538801003000576801002300606802000700629856004900636856006600685955007000751972000900821992001600830094895945000096695320130319051420.01 a1744-2648 aissn17442648 a0000966953 a20040524a20059999k y1frey0103 ba0 aeng aGB a 0  ar aaha 0uu 10aEvidence & policyea journal of research, debate and practice 0aVol. 1, no. 1 (Jan. 2005)- aBristolcPolicy Pressd2005- aTrimestrielb2006- a3 n°s par anb2005-2005 1tEvidence & policy (Online)x1744-265610aEvidence and policyeajournal of research, debate and practice10aEvidence & policyb(Print) aScience politiquexPériodiques aDécision politiquexPériodiques 3aFRbAbesc20060110gAFNOR 3aFRbISSNc20051021 a024 uhttp://www.ingentaconnect.com/content/tpp/ep zContient : sommaires et résumés depuis le vol.1, n°1, 20051 bvol. 1 no. 1 (jan-2005) -....cParisdMagasins/AnnexeeP 8° 6884 aZSAB aDEW 320-32101227nas 2200325 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200011600148210007400264326001100338440007900349488007500428530005200503607005400555710005100609801001300660856009000673955006100763972000900824991001800833992003400851992001600885078585961000029092420131217101451.01 a1811-2757 a b19??2005k fre ba0 afre aFR a 0  ar aak i 0 10aEvolution économique de la navigation rhénane :iStatistiquesfCommission centrale pour la navigation du Rhin aStrasbourgcCommission centrale pour la navigation du Rhind1998-2005 aAnnuel 1tObservation du marché de la navigation intérieure européennex1997-891X 11atRapport annuel de la Commission centrale pour la navigation du Rhin10aEvolution économique de la navigation rhénane aRhin (cours d'eau)xRégularisationxPériodiques02aCommission centrale pour la navigation du Rhin 0aFRbFNSP4 uhttp://www.ccr-zkr.org/13020200-fr.htmlzAccés libre au texte intégrale depuis 19981 b(1998) -(2002)cParisdMagasins/AnnexeeP 4° 5700-SuppL aZGRA aexempb201312 aGEO RA2.01 Europe occidentale aDEW 383-38901758cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157110001600175200005000191210008500241300018300326326001100509430006900520441009700589532011200686606006200798606004200860710006700902801003000969801002300999802000701022856011201029856010801141955005601249992001601305992005101321048859125000118727620130319051421.0 a1563-0471 accn1563-0471 aissn15630471 a0001187276 a20000228b19952000uuuy0frey0103 ba0 afre aZZ ay  aaku uu 10aExamen des pêcheries dans les pays de l'OCDE aPariscOrganisation de coopération et de développement économiquesd1995-2000 aEn 2000, paraît en deux volumes : Vol.1, Examen des pêcheries de l'OCDE. Politiques et statistiques de bases ; Vol. 2, Examen des pêcheries de l'OCDE. Statistiques nationales. aAnnuel 1tExamen des pêcheries dans les pays membres de l'OCDEx1018-4139 |tExamen des pêcheries dans les pays de l'OCDE. Politiques et statistiques de basex1992-83511|aExamen des pêcheries dans les les pays de l'Organisation de coopération et de développement économiques0 aPêchesxPolitique publiqueyPays de l'OCDExPériodiques aPêchesyPays de l'OCDExPériodiques02aOrganisation de coopération et de développement économiques 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20070111 a004 uhttps://acces-distant.sciences-po.fr/fork?http://titania.sourceocde.org/vl=2853357/cl=33/nw=1/rpsv/home.htm4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1997) ; (2000)cParisdMagasins/AnnexeeP 4° 5232 aDEW 338.1-3 aGEO RN1 Pays industrialisés, pays occidentaux01364cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200008500180207001000265210008100275326001100356437006100367606004200428606006200470710006700532801003000599801002300629802000700652856011200659856010800771955005600879992001600935992005100951099486458000118727720130319051421.0 a1992-8351 aissn19928351 a0001187277 a20060421a20019999uuuy0frey0103 ba0 afre aZZ ay  ar aaku uu 10aExamen des pêcheries dans les pays de l'OCDEiPolitique et statistiques de base 0a2001- aPariscOrganisation de coopération et de développement économiquesd2001- aAnnuel 1tExamen des pêcheries dans les pays de l'OCDEx1563-04710 aPêchesyPays de l'OCDExPériodiques0 aPêchesxPolitique publiqueyPays de l'OCDExPériodiques02aOrganisation de coopération et de développement économiques 3aFRbAbesc20090308gAFNOR 3aFRbISSNc20090225 a004 uhttps://acces-distant.sciences-po.fr/fork?http://titania.sourceocde.org/vl=2853357/cl=33/nw=1/rpsv/home.htm4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(2001) ; (2003)cParisdMagasins/AnnexeeP 4° 5232 aDEW 338.1-3 aGEO RN1 Pays industrialisés, pays occidentaux00968nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000032001552100035001873260011002224300080002335300032003136010035003456100046003807120021004268560055004479550052005029550054005549720009006089920022006179920015006390000063803000006380320130319051422.01 a1150-7217 aFNSP293024 a0000063803 a19900101a19799999 ba0 afre aFR aaka 10aExercice - Banque Sudameris aPariscBanque Sudamerisd1979- aAnnuel 1aExercice - Banque française et italienne pour l'Amérique du Sud Sudameris00aExercice - Banque Sudameris02aBanque SudamerisxPériodiques 0a* BanquesxRapportsyFrancexPériodiques02aBanque Sudameris uhttp://www.sudameris.fr/shared/AnnRpt/ARpt99Fr.pdf1 b(1980) -...cParisdMagasins/AnnexeeP 4° 55441 b(1978)-(1979)cParisdMagasins/AnnexeeCOL4°0316 aZGRA aGEO RA4.06 France aDEW 332.0600762nas 2200265 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000033001412100038001743260011002126010050002236060047002737120022003208560036003429550069003789720009004479920025004569920015004810000124918000012491820130319051422.0 aFNSP511895 a0000124918 a19940426a00019999 ba0 afre aFR aaka 10aExercice - Ciments français aPuteauxcCiments françaisd0001- aAnnuel02aSociété des ciments françaisxPériodiques aSociétésxRapportsyFrancexPériodiques02aCiments français uhttp://www.cimfra.fr/princd.htm1 b(1957)-(1988) ; (1993) -....cParisdMagasins/AnnexeeCOL4°1712 aZGRA aGEO RA4.06 France 01 aDEW 338.0600977nas 2200301 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181060006001251100016001312000035001472100041001823260011002235170041002346010048002756100064003237120035003878300098004228560060005209550049005809720009006299920022006389920015006600000082931000008293120130319051422.0 aFNSP370248 a0000082931 a19900101a00019999 ba0 afre aFR ar aaka 10aExercice - Crédit coopératif aNanterrecCrédit coopératifd0001- aAnnuel10aRapport annuel - Crédit coopératif02aCrédit coopératifc(France)xPériodiques0 a* Etablissements de créditxRapportsyFrancexPériodiques02aCrédit coopératif (Nanterre) aD'après fichier des cotes COL (sous N, dossier Rétro), cette cote est au CTL (sdy mai 2009) uhttp://www.credit-cooperatif.com/rapport_annuel_cc.html1 b1969--->cParisdMagasins/AnnexeeCOL4°3297 aZGRA aGEO RA4.06 France aDEW 332.0600800nas 2200277 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000180015421000450017232600110021760600230022880100210025185600320027285601150030495500600041997200090047999100180048899200160050603912858X000001954320130319051422.01 a0175-3347 aFNSP153012 a0000019543 a19900101a19839999 ba0 ager aDE aaka 10aExilforschung aMünchencEdition Text und Kritikd1983- aAnnuel aExilxPériodiques 3aFRbCCN0175-33474 uhttp://www.etk-muenchen.de/ zContenu : sommaire du dernier n° ; grands thèmes des n° précédents ; index auteurs ; depuis le n°1, 19831 bvol. 1 (1983) -....cParisdMagasins/AnnexeeP 8° 4881 aZPAY aexempb201002 aDEW 305-30601362nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006600139210003500205326001200240434004000252530002600292606005200318606003800370607005000408801002100458830005300479856029700532955006900829955006300898972000900961991001800970992002200988992001401010001012606000000447020130930160424.01 a0014-4703 aFNSP105867 a19900101a19679999 ba0 afre aFR aaeu 12aL'Expansion‎emensuel de la vie économique et des affaires aPariscGroupe Expansiond1967- aMensuel 1tScience & vie. Economie,x0765-002712aL'Expansion‎bParis aHistoire économiquez20e sièclexPériodiques aEntreprisesyFrancexPériodiques aFrancexConditions économiquesxPériodiques 3aFRbCCN0014-4703 a1967-2010 : collection envoyée au CTles en 20134 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAAzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 23951 bno. 1 (oct-1967) -....cParisdMagasins/AnnexeeP 4° 2395 aZPAY aexempb201306 aGEO RA4.06 France aDEW 330.900990nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210003600191326001600227430005500243517000800298606003900306801002100345856009600366856014200462955007300604972000900677992001400686038706458000001935320130319051423.01 a0014-4983 aFNSP152547 a0000019353 a19900101a19699999 ba0 aeng aUS aahu 10aExplorations in economic history aNew YorkcAcademic Pressd1969- aTrimestriel 1aExplorations in entrepreneurial historyx0884-542510aEEH aHistoire économiquexPériodiques 3aFRbCCN0014-49834 uhttp://www.elsevier.com/wps/find/journaldescription.cws_home/622830/description#description zContenu : sommaires depuis le vol. 33, n°1, janv. 1996 ; enregistrement mot de passe en tant que "guest" pour avoir accès aux résumés1 bvol. 7 no. 1/2 (1969/1970) -....cParisdMagasins/AnnexeeP 8° 2145 aZPAY aDEW 330.900929nas 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000037001502070010001872100023001973260011002204300053002316070053002847100088003378010013004258560030004388560046004689550047005149720009005619920029005709920016005990000585910000058591020130319051423.0 a0000585910 a a20039999k fre ba0 aeng aKR a 0  ar aak z 0 10aExplore Korea through statistics 1a2003- aSéoulbNSOd2003- aAnnuel 1tStatistical handbook of Koreab(1997)x0081-4806 aCorée (République)xStatistiquesxPériodiques01aCorée (République)bNational Statistical OfficebStatistical Publication Division 0aFRbFNSP4 uhttp://www.nso.go.kr/eng/ zContenu : sommaire du précédent rapport1 b(2003)cParisdMagasins/AnnexeeP 8° 6614 aZGRA aGEO RI3.13 Corée du Sud aDEW 310-31901242cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001800069035001700087035001500104100004100119101000800160102000700168105001800175110001600193200003700209210003900246300004500285326001600330422003100346601004400377606004200421710003400463801003000497801001800527801002100545801002300566802000700589856007700596856006700673955006500740992002500805992001400830001030493000118973220130319051424.01 a0764-1656 accn0764-1656 afrBN004458963 aissn07641656 a0001189732 a19841002a19839999k y0frey0103 ba0 afre aFR ay  aauu uu 10aExposés du Cercle Léon Trotsky aPariscCercle Léon Trotskyd1983- aNotice réd. d'après le vol. 11 de 1984 aIrrégulier 1tLutte ouvrièrex0024-765001aLutte ouvrièrec(France)xPériodiques aExtrême gaucheyFrancexPériodiques02aCercle Léon Trotskyc(Paris) 3aFRbAbesc20090308gAFNOR 3aFRbBNgAFNOR 0aFRbCNEPSgAFNOR 3aFRbISSNc20090225 a074 uhttp://www.lutte-ouvriere.org/documents/archives/cercle-leon-trotsky-62/ zContenu : accès au texte intégral depuis le no. 1 (oct-1983)1 bno. 107 (oct-2007) -....cParisdMagasins/AnnexeeP 8° 7139 aGEO RA4.06 France 01 aDEW 320.501438nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116106000600123110001600129200001400145210002800159305004600187326001700233421022400250530002100474606002900495607002500524801002100549856029700570955006900867955006500936955007701001992002201078992001201100039223612000000447420131219152509.01 a0014-5270 aFNSP105873 a19900101a19539999 ba0 afre aFR ar aa u 12aL'Express aPariscL'Expressd1953- aQuotidien entre octobre 1955 et mars 1956 aHebdomadaire 1aL'Express Paris (Supplément)x0753-1249, L'Express 2. Sportx0960-8892, L'Express 2. Aujourd'huix0980-8922, L'Express 2. Votre argentx0980-8906 et L'Express 2. Stylex0980-8914 sont conservés sous la cote P 4° 207702aL'ExpressbParis aActualitéxPériodiques aFrancexPériodiques 3aFRbCCN0014-52704 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAAzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 20771 bno. 692 (sep-1964) -....cParisdMagasins/AnnexeeP 4° 20771 bno. 1 (mai-1953) -no. 691 (sep-1964)cParisdMagasins/AnnexeeP F° 0112 aGEO RA4.06 France aDEW 05000996nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000290015421000250018332600110020851700310021951700100025051700380026060600340029860600450033260600340037760600450041185600670045685600360052395500580055997200090061799100180062699200140064404005456X000001463420130319051424.01 a0938-0256 aFNSP140325 a0000014634 a19901012a19899999 ba0 ager aDE aaka 00aExtremismus & Demokratie aBonncBouvierd1989- aannuel10aExtremismus und Demokratie10aE & D10aJahrbuch Extremismus & Demokratie aExtrême droitexPériodiques aExtrême gaucheyAllemagnexPériodiques aExtrême gauchexPériodiques aExtrême droiteyAllemagnexPériodiques4 uhttp://www.tu-chemnitz.de/phil/politik/pspi/jahrbuch/index.php zContenu : sommaires depuis 19891 bno.1 (1989) -....cParisdMagasins/AnnexeeP 8° 5671 aZPAY aexempb201110 aDEW 320.501049nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000042001502100035001922300024002273260017002516060048002686060035003166060044003518010013003958560192004088560108006009550005007089920022007139920012007350001160211000116021120130319051424.0 a0001160211 a a20099999k fre 01 ba0 afre aFR ar aac z  adr 13aMoney Weekb[Ressource électronique] aPariscGroupe Expansiond2009- aRevue électronique aHebdomadaire aEntreprisesyFrancexFinancesxPériodiques aFinancesyFrancexPériodiques aMarché financieryFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France aDEW 33200910nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004900154210002200203326001100225430004800236606006000284606005200344710003000396856004000426856003600466955005200502992002200554992001600576992001600592057931534000015379620130319051426.01 a1625-5798 aFNSP599712 a0000153796 a19900101a19949999 ba0 afre aFR aaka 10aFaits et chiffresfUnion routière de France aPariscURFd1994- aannuel 1aLa Circulation routière (Paris)x1169-1581 aTransports routiersyFrancexStatistiquesxPériodiques aCirculationyFrancexStatistiquesxPériodiques02aUnion routière de France4 uhttp://www.urf.asso.fr/?label=faits4 zAccès libre au texte intégral1 b(1994) -....cParisdMgasins/AnnexeeP 4° 6966 aGEO RA4.06 France aDEW 383-389 aDEW 310-31901056nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000060001502100053002103000116002633260014003793360058003933370063004514520046005146060029005606060045005898010013006348560090006479550005007379920012007420000486590000048659020130319051426.0 a0000486590 a a19699999k fre 01 ba0 aeng aUS az aae z  adr 10aFamily planning perspectivesb[Ressource électronique] aNew-York, N.Y.cAlan Guttmacher Instituted1969- aAccès au texte intégral (réservé aux sites de Sciences Po) jusqu'à l' année précédant l'année en cours aBimensuel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tFamily planning perspectivesx(0014-7354) aPopulationxPériodiques aRégulation des naissancesxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00147354.html1 r aDEW 30401180nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000048001502100068001983000158002663260016004243360058004403370066004984520034005647120055005988010013006538560090006668560101007569550005008579920016008620000534049000053404920130319051426.0 a0000534049 a a19809999k fre 01 ba0 aeng aUS az aah z  adr 10aFamily relationsb[Ressource électronique] aMinneapolis, Minn.cNational Council on Family Relationsd1980- aAccès au texte intégral (réservé aux sites de Sciences-Po). Il existe des lacunes d'un ou deux ans entre la couverture de JSTOR et celle d'Ebsco Host aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou télédéchargement 1tFamily relationsx(0197-6664)02aNational Council on Family Relationsc(Etats-Unis) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01976664.html4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=1104141 r aDEW 305-30601046nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000320015421000510018632600230023732600280026051700230028860700580031160700360036980100210040585600250042685600910045195500930054299200420063599200410067799200140071803870708X000001936320130319051426.01 a0014-7591 aFNSP152577 a0000019363 a19900101b19462009 ba0 aeng aHK aafu 10aFar Eastern economic review aHongkongcReview Publishing Companyd1946-2009 aMensuelb2004-2009 aHebdomadaireb1946-200410aReview (Hong Kong) aAsie orientalexConditions économiquesxPériodiques aHong Kong (Chine)xPériodiques 3aFRbCCN0014-75914 uhttp://www.feer.com/ zContenu : texte intégral (sélection) ; recherche par dates et mots-clés depuis 19941 bvol. 28 no. 4 (jan-1960) - vol. 172 no 12 (dec-2009)cParisdMagasins/AnnexeeP 4° 3182 aGEO RI3 Asie orientale, Asie centrale aGEO RI3.21 Hong Kong (jusqu'à 1997) aDEW 330.901178nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000057001502100057002073000116002643260016003803360058003963370063004544400055005174520043005726070033006157120042006488010013006908560090007039550005007939920042007989920012008400000464137000046413720130319051426.0 a0000464137 a b19411956k fre 01 ba0 aeng aUS az aah z  adr 14aThe Far Eastern quarterlyb[Ressource électronique] aAnn Arbor, Mich.cFar Eastern Associationd1941-1956 aAccès au texte intégral (réservé aux sites de Sciences Po) à partir du vol.1, 1941 jusqu'au vol.15 de 1956 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tJournal of Asian studies [Ressource électronique] 1tThe Far Eastern quarterlyx(0363-6917) aAsie orientalexPériodiques02aFar Eastern Associationc(Etats-Unis) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03636917.html1 r aGEO RI3 Asie orientale, Asie centrale aDEW 95001173nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210004000183300008100223326002700304326002300331606003900354606005200393710004100445801002100486856006000507856003600567955020000603972000900803992002300812992001200835038707411000001937220130319051427.01 a0014-9209 aFNSP152599 a0000019372 a19900101b19152005 ba0 aeng aUS aafu 10aFederal Reserve bulletin aWashington [D.C.]cG.P.Od1915-2005 aPublication papier interrompue. Disponible gratuitement en ligne sur le site aTrimestrielb2004-2005 aMensuelb1915-2003 aFinancesyEtats-UnisxPériodiques aBanques de la Réserve fédéralexPériodiques02aFederal Reserve Systemc(Etats-Unis) 3aFRbCCN0014-92094 uhttp://www.federalreserve.gov/pubs/bulletin/default.htm zAccès libre au texte intégral1 b(1919) -vol. 89 no. 12 (dec-2003)cParisdMagasins/AnnexeeP 4° 0055wLacunes : jan. à jul. 1923 ; jul.1940 ; sep. 1940 à jul. 1942 ; oct. 1942 à aou 1944 ; nov. 1944 à fev. 1945 ; jan. 1946 aZPAY aGEO RC2 Etats-Unis aDEW 33201037nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002000163210004300183326001800226606002900244606002500273801001300298856008300311856003700394856009000431856010800521955006900629972000900698992001600707039078477000059499420130319051428.01 a0141-7789 a0000594994 a a19799999 fre 01 ba0 aeng aGB a 0  ar aai z 0 10aFeminist review aBasingstokecPalgrave Macmilland1979- a3 n°s par an aFéminismexPériodiques aFemmesxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.palgrave-journals.com/fr/ zContenu : sommaires et résumés4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01417789.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 73 (2003) -no. 87 (2007)cParisdMagasins/AnnexeeP 8° 6734 aZSAB aDEW 305-30601199cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200002000174207003100194210002400225326001800249606003800267801003000305801002300335801001300358802000700371856009500378856006500473856010800538856010800646955007000754972000900824992001600833058256520000057555520130319051428.01 a1464-7001 aissn14647001 a0000575555 a20001001a20009999 0fre 0103 ba0 aeng aGB ay  aai 10aFeminist theory 0aVol. 1, no. 1 (Apr. 2000)- aLondoncSaged2000- a3 n°s par an aThéorie féministexPériodiques 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20001001 0aFRbFNSP a024 uhttps://acces-distant.sciences-po.fr/fork?http://www.sagepub.co.uk/journal.aspx?pid=105555 zcontenu : sommaires et résumés depuis le vol.1, n°1, 20004 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 3 (dec-2002) -....cParisdMagasins/AnnexeeP 8° 6718 aZSAB aDEW 305-30602254cas0 2200457 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200003000162210003200192421006000224421007800284421008900362421010200451421010100553421007600654421007500730421007400805421004400879421011500923421018701038440003401225454003101259454004301290512005201333517005801385530003001443531002501473801003001498802000701528856016301535955007801698991002001776038316102000109458020130319051429.0 a1421-3753 accn1421-3753 a0001094580 a19951031b18491919 0frey0103 ba0 afre aCH ar aac 10aFeuille fédérale suisse aBernecStämpflid1849-1919 |tVerzeichnis der eidgenössischen Geschwornenx1421-4083 |tRésumé des délibérations de l'Assemblée fédérale suissex1421-4075 |tAmtliches stenographisches Bulletin der schweizerischen Bundesversammlungx1421-4032 |tAmtliches stenographisches Bulletin der schweizerischen Bundesversammlung. Nationalratx1421-4016 |tAmtliches stenographisches Bulletin der schweizerischen Bundesversammlung. Ständeratx1421-4024 |tStenographisches Bulletin der Bundesversammlung. Nationalratx1421-4008 |tStenographisches Bulletin der Bundesversammlung. Ständeratx1421-3990 |tRecueil officiel des lois et ordonnances de la Confédération suisse |tRecueil des lois fédéralesx1013-6312 |tRapport du Tribunal fédéral suisse à l'Assemblée fédérale sur sa gestion pendant l'année ...x1423-1115 |tMessage du Conseil fédéral à l'Assemblée fédérale concernant le budget de la Confédération suisse pour l'année...bTexte imprimécBernenConseil fédéral suissed1867-1990 1tFeuille fédéralex1420-2492 1tFoglio federalex1420-2514 1tSchweizerisches Bundesblattx1421-393110aFeuille fédérale de la Confédération suisse10aFeuille fédérale suisse et recueil des lois suisses00aFeuille fédérale suisse 0aFeuille féd. suisse 3aFRbAbesc20040621gAFNOR a404 uhttp://www.bar.admin.ch/archivgut/00945/00948/index.html?lang=frzAccès libre au texte intégral. Périodique numérisé par les Archives fédérales suisses1 b(1897) -(1913)w1897, 1902,1904, 1908cParisdMagasins/AnnexeeP 8° 0796 aPériobTP02 P801538nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200001400160210002800174300004000202326001400242421008400256421003600340606002900376607002500405801002100430830005900451856014500510856020900655856002800864955010000892955006800992955007001060992002201130992001201152040621235000001937420130319051429.01 a0182-5852 aFNSP152602 a0000019374 a19900101a18549999 ba0 afre aFR ar acau 13aLe Figaro aPariscLe Figarod1854- aSuspendu de nov. 1942 à août 1944 aQuotidien 1aFigaro thématique < P 4° 5170 > et Figaro Magazine (0184-9336) < P 4° 4230 > 1tFigaro économie < P F° 0471 > aActualitéxPériodiques aFrancexPériodiques 3aFRbCCN0182-5852 ajuil. 1940-1942 : manquant à Locarchives (13/03/2008)4 uhttp://gallica.bnf.fr/ark:/12148/cb34355551z/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1854-1942)4 uhttps://acces-distant.sciences-po.fr/fork?http://global.factiva.com/sb/default.aspx?NAPC=S&fcpil=frzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.lefigaro.fr/1 bEd. en microfilm : (23-08-1944 -1975); (1983-1986)cParisdSalle des microformeseP Mic 35 (27)1 bLe mois en courscParisd27, Salle Rez-de-chausséeeP F° 10111 b(1969) -(1984) ; (1987) -....cParisdMagasins/AnnexeeP F° 1011 aGEO RA4.06 France aDEW 05000994nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002300139210002800162326001700190422004000207530003300247606002900280607002500309801002100334830004900355856010800404955005900512955005700571991001800628992002200646992001200668039318117000000427720131008105303.01 a0184-9336 aFNSP105248 a19900101a19789999 ba0 afre aFR aa u 13aLe Figaro magazine aPariscLe Figarod1978- aHebdomadaire 1aLe Figaro (Paris, 1854),x0182-585210aFigaro magazinebParis. 1978 aActualitéxPériodiques aFrancexPériodiques 3aFRbCCN0184-9336 aenvoyé 1978-->2010 au CTLES en juillet 20134 uhttp://www.lefigaro.fr/magazine/zContenu : sommaire et articles en texte intégral du dernier numéro.1 bL’année en courscParisd27, Salle Rez-de chaussée1 b(oct-1978) -....cParisdMagasins/AnnexeeP 4° 4230 aexempb201306 aGEO RA4.06 France aDEW 05000914nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210003000177326002400207326002600231530003400257606004000291856007600331856004100407955007000448957005400518972000900572991001700581992001400598039599485000006460020130319051430.01 a0394-7297 aFNSP296474 a0000064600 a19900101a19879999 ba0 aita aIT aaia 00aFilosofia politica aBolognacIl Mulinod1987- a3 nos par anb1993- aSemestrielb1988-199210aFilosofia politicab(Bologna) aPhilosophie politiquexPériodiques4 uhttp://www.mulino.it/edizioni/riviste/scheda_rivista.php?issn=0394-7297 zSommaires depuis le n°1, avril 19971 bvol. 2 no. 1 (jun-1988) -....cParisdMagasins/AnnexeeP 8° 58121 b(1987/2006)cParisdMagasins/AnnexeeP Index 0868 aZCAD aexemp$201112 aDEW 320.501372nas 2200385 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000580015421000530021232600150026543000600028060600270034060600440036760600360041160600350044771000380048280100210052085600320054185600540057385600870062785601080071495500700082297200090089299100180090199200220091999200330094199200120097403963809X000001951220130319051430.01 a0752-6180 aFNSP152959 a0000019512 a19900101a19829999 ba0 afre aFR aaju 10aFinancefrevue de l'Association française de finance aPariscPresses universitaires de Grenobled1982- aSemestriel 1aRevue de l'Association française de financex0248-0107 aFinancesxPériodiques aMarché financieryFrancexPériodiques aMarché financierxPériodiques aFinancesyFrancexPériodiques02aAssociation française de finance 3aFRbCCN0752-61804 uhttp://www.affi.asso.fr/fr/ zContenu : sommaires depuis le vol.19, n° 2, 19984 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-finance.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 1 (avr-1982) -....cParisdMagasins/AnnexeeP 8° 4403 aZPAY aexempb201010 aGEO RA4.06 France aGEO RS Sans aspect régional aDEW 33201219nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210002700184326001600211517003100227517002600258606003500284606006400319710003500383711007000418801002100488856005400509856009400563955006600657955008100723972000900804992004200813992001400855039607720000001951820130319051430.01 a0430-473X aFNSP152971 a0000019518 a19900101a19649999 f ba0 afre aUS aahu 10aFinances & développement aWashingtoncFMId1964- aTrimestriel10aFinances et développement10aFinance & development aAide économiquexPériodiques aAide économiquexCoopération internationalexPériodiques02aFonds monétaire international02aBanque internationale pour la reconstruction et le développement 3aFRbCCN0430-473X4 uhttp://www.imf.org/external/pubs/ft/fandd/fda.htm zContenu : accès libre au texte intégral des articles depuis le vol 33, no 1, march 19961 bvol. 5 no. 1 (1968) -....cParisdMagasins/AnnexeeP 4° 25741 bvol. 1 no. 1 (1964) -vol. 4 no. 4 (1967)cParisdMagasins/AnnexeeP 8° 2081 aZPAY aGEO RO Pays en voie de développement aDEW 338.901036nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005000154210005200204225004600256326001100302517005000313606004300363710004800406856011300454856003600567955005500603972000900658991001800667992002500685992001200710045080682000025857920130319051430.01 a1292-3656 aFNSP900027 a0000258579 a19981028a19979999 ba0 afre aFR aaka 14aLes Finances des collectivités locales en... aPariscObservatoire des finances localesd1997-21aCollection Les rapports de l'Observatoire aAnnuel14aLes finances des collectivités territoriales aFinances localesyFrancexPériodiques02aObservatoire des finances localesc(France)4 uhttp://www.dgcl.interieur.gouv.fr/sections/a_votre_service/statistiques/budgets_locaux/rapport_de_l_ofl/view4 zAccès libre au texte intégral1 b(1996) -(2006)cParisdMagasins/AnnexeeP 8° 6433 aZGRA aexempb201212 aGEO RA4.06 France 01 aDEW 33601199nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005900163210005000222225004800272300007300320326001100393430007400404517007000478606004300548710006000591801001300651856010000664955005400764972000900818992002200827992001200849051689553000031052020130319051430.01 a1299-4979 a0000310520 a b19992004k fre ba0 afre aFR a 0  ar aak z 0 14aLes Finances des communes de moins de 10 000 habitants aPariscLa Documentation françaised1997-200421aCollection statistiques et finances locales a2004 dernière édition papier voir ensuite en version électronique aAnnuel 1tGuide des ratios des communes de moins de 10 000 habitantsx1152-483914aLes finances locales des communes de moins de dix mille habitants aFinances localesyFrancexPériodiques02aFrancebDirection générale des collectivités locales 0aFRbFNSP4 uhttp://www.dgcl.interieur.gouv.fr/publications/collections/Collections/col_stat_fin_local_2.htm1 b(1997)-(2004)cParisdMagasins/AnnexeeP 4° 4929 aZGRA aGEO RA4.06 FRANCE aDEW 33601245nas 2200349 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000058001642100049002222250048002713000073003193260011003924300063004035170061004666060046005277100060005738010013006338560132006469550055007789720009008339920025008429920012008679920016008790000297440000029744020130319051431.0 a1298-9134 a0000297440 a b19999999k fre ba0 afre aFR a 0  ar aak z 0 14aLes Finances des communes de plus de 10 000 habitants aPariscLa Documentation françaisd1999-200520aCollection statistiques et finances locales a2004 dernière édition papier voir ensuite en version électronique aAnnuel 1tGuide des rations des communes de plus de 10 000 habitants14aLes Finances des communes de plus de dix mille habitants aFinances communalesyFrancexPériodiques02aFrancebDirection générale des collectivités locales 0aFRbFNSP4 uhttp://www.dgcl.interieur.gouv.fr/publications/collections/Collections/col_stat_fin_local.htmlzAccès libre au texte intégral1 b(1997) -(2004)cParisdMagasins/AnnexeeP 4° 3821 aZGRA aGEO RA4.06 France 01 aDEW 336 aDEW 310-31901270nas 2200349 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000085001642100066002492250048003153000073003633260011004366060046004476060060004937120125005538010013006788560077006918560036007689550054008049720009008589920025008679920012008929920016009040000405072000040507220130319051431.0 a1623-5800 a0000405072 a a19999999k fre ba0 afre aFR a 0  ar aak z 0 14aLes Finances des groupements de communes à fiscalité propreeintercommunalité aPariscDirection générale des collectivités localesd2001-20aCollection statistiques et finances locales a2005 dernière édition papier voir ensuite en version électronique aAnnuel aFinances communalesyFrancexPériodiques aFinances communalesyFrancexStatistiquesxPériodiques01aFrancebDirection générale des collectivités localesbService des statistiques, des études et des techniques locales 0aFRbFNSP4 uhttp://www.dgcl.interieur.gouv.fr/publications/accueil_publications.html4 zAccès libre au texte intégral1 b(1999)-(2005)cParisdMagasins/AnnexeeP 4° 6892 aZGRA aGEO RA4.06 France 01 aDEW 336 aDEW 310-31901126nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003000163210007000193225004800263326001100311436004500322447004300367606005500410710006000465801001300525856007700538856004700615955005500662972000900717992002200726992001600748992001200764048884634000029877920130319051431.01 a1621-0166 a0000298779 a b19992005k fre ba0 afre aFR a 0  ar aak z 0 14aLes Finances des régions aPariscDirection générale des collectivités localesd1999-200520aCollection statistiques et finances locales aAnnuel 1tGuide des ratios des régionsx0984-6298 1tLes Finances régionales...x1263-0306 aFinances publiquesyFrancexRégionsxPériodiques02aFrancebDirection générale des collectivités locales 0aFRbFNSP4 uhttp://www.dgcl.interieur.gouv.fr/publications/accueil_publications.html4 z2 dernières années consultables en ligne1 a(1997) -(2005)cParisdMagasins/AnnexeeP 4° 5407 aZGRA aGEO RA4.06 France aDEW 310-319 aDEW 33601098nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210008200185326001500267430003200282606003800314710006900352801002100421856012800442856010800570955007600678972000900754992002100763992001200784038708469000001952420130319051431.01 a0015-198X aFNSP152980 a0000019524 a19900101a19459999 ba0 aeng aUS aagu 10aFinancial analysts journal aa[New York, N.Y.]cNational Federation of Financial Analysts Societiesd1960- aBimestriel 1tAnalysts journalx1940-882X aAnalyse financièrexPériodiques02aAssociation for Investment Management and Researchc(Etats-Unis) 3aFRbCCN0015-198X4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=FAJ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 19 no. 5 (sept/oct-1963) -....cParisdMagasins/AnnexeeP 4° 3100 aZPAY aGEO RQ Universel aDEW 33200943nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001341350018001502000097001682100052002653000087003173000074004043260015004786060025004937120041005188010013005598560053005729550040006250000311915000031191520130319051431.0 a0000311915 a a19969999k fre ba0 aeng aUS a 0  az aau z 0  adr 10aFinancial and economics discussion series - Federal Reserve Boardb[Ressource électronique] aWashington, D.C.cFederal Reserve Systemd1996- aAccès au 18/04/2000 : World Wide Web. URL : http://www.bog.frb.fed.us/p ubs/feds/ aTexte intégral au format pdf, télédéchargeable avec Adobe Acrobat aCollection aPolitique monétaire02aFederal Reserve Systemc(Etats-Unis) 0aFRbFNSP4 uhttp://netec.mcc.ac.uk/WoPEc/data/fipfedgfe.html1 rConsultable uniquement sur Internet00954cas0 2200313 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002900139210004800168326002500216326002600241606003700267606002700304710004500331801003000376801002300406802000700429856005100436856006100487955007100548972000900619992001200628040103811000108664520130408123824.01 a0968-5650 a0001086645 a19940614a19949999 0fre 0103 ba0 aeng aGB aaj 10aFinancial history review aCambridgecCambridge University Press,1994- a3 n°s par anb2011- aSemestrielb1994-2010 aFinancesxHistoirexPériodiques aFinancesxPériodiques02aEuropean Association for Banking History 3aFRbAbesc20040618gAFNOR 3aFRbISSNc20030523 a024 uhttp://www.journals.cambridge.org/action/login zContenu: sommaires et résumés depuis le vol. 7 de 20001 bvol. 12 no. 1 (avr-2005) -....cParisdMagasins/AnnexeeP 8° 6960 aZPAY aDEW 33200918nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000087001502100034002372300024002713260011002956010046003066060068003527100032004208010013004528560024004658560053004899550005005429920057005479920012006040001152440000115244020130319051431.0 a0001152440 a a20069999k fre 01 ba0 aeng aDE ar aak z  adr 10aFinancial integration in Europeb[Ressource électronique] /fEuropean central bank aFrankfurt am MaincECBd2006- aRevue électronique aAnnuel02aBanque centrale européennexPériodiques aPolitique monétaireyPays de l'Union européennexPériodiques02aBanque centrale européenne 0aFRbFNSP4 uhttp://www.ecb.int/ zContenu : texte intégral du rapport depuis 20061 r aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 33601247nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005900139210005900198326001600257517000700273606002700280710005100307801002100358856003300379856009500412856012900507856013800636955008600774972000900860991001900869992002100888992001200909036561541000005875620130618164619.01 a0046-3892 aFNSP271955 a19900101b19722012 ba0 aeng aUS aahu 10aFinancial managementfFinancial management association aTampa, FlacFinancial Management Association‎d1972- aTrimestriel10aFM aFinancesxPériodiques02aFinancial management associationc(Etats unis) 3aFRbCCN0046-38924 uhttp://www.fma.org/index.htm zContenu : sommaire du dernier n° ; recherche par mots-clés sur les résumés depuis 19914 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=2Q6H&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po , texte intégral depuis 19721 bvol. 1 no. 1 (1972) -vol. 41 no. 4 (hiv-2012)cParisdMagasins/AnnexeeP 4° 3507 aZPAY aexemp§b201306 aGEO RQ Universel aDEW 33201244nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000084001642100023002483260013002714510053002845300028003376060052003656060041004177120067004588010013005258560111005388560108006499550077007579720009008349920012008439920051008550000417617000041761720130319051431.01 a0378-651X a0000417617 a a19779999k f fre ba0 aeng aFR a 0  ar aai z 0 10aFinancial market trendsfOrganisation for Economic Co-operation and Development aPariscOECDd1977- a3 par an 1tTendances des marchés des capitauxx(0378-6528)10aFinancial market trends aMarché financieryPays de l'OCDExPériodiques aMouvements de capitauxxPériodiques02aOrganisation de coopération et de développement économiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/0378651X/financmarkettrends zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 78 (mar-2001) -no. 84 (2003)cParisdMagasins/AnnexeeP 8° 3945 bis aZECH aDEW 332 aGEO RN1 Pays industrialisés, pays occidentaux00791nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001700154210003600171326001600207606003700223801002100260830003400281856003100315856004900346955006700395972000900462991001800471992001200489038708582000001951420130319051431.01 a0015-2218 aFNSP152965 a0000019514 a19900101a18849999 ba0 amul aDE aaha 10aFinanzarchiv aTübingen:cMohr Siebeckd1884- aTrimestriel aFinances publiquesxPériodiques 3aFRbCCN0015-2218 a1948-->1984 : donné au CTLES4 uhttp://www.mohr.de/fa.html zContenu : sommaires et résumés depuis 19991 bvol. 43 no. 1 (1985) -....cParisdMagasins/AnnexeeP 8° 0111 aZPAY aexempb201101 aDEW 33200948nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002900139210003800168326001100206606004400217676001000261830011300271856009800384955006300482955005300545972000900598991001800607992002100625992001200646039607917000004678620131007113120.01 a0430-5973 aFNSP238397 a19900101a19599999 ba0 ager aDE aaka 14aDer Fischer Weltalmanach aFrankfurt am MaincFischerd1959- aAnnuel aRelations internationalesxPériodiques a320.9 a1 seul accés limité à la version en ligne, login : info.docum@sciencespo.fr mot de passe : BibSciencesPo14 uhttp://www.weltalmanach.de/weltrang/.aPour les codes d'accès voir l'accueil bibliographique1 bLa dernière annéecParisd30,Salle 1er étageeDEW 320.91 b(1974) -....cParisdMagasins/AnnexeeP 8° 3716 aZPAY aexempb200912 aGEO RQ Universel aDEW 90900821nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000047001502100047001972300024002443260014002686060036002827100042003188010013003608560072003738560058004459550005005039920012005089920011005200001228852000122885220130319051432.0 a0001228852 a a20129999k fre 01 ba0 afre aFR ar aaa z  adr 10aFlash économieb[Ressource électronique] aPariscCDC IXIS Capital marketsd2001-.... aRevue électronique aQuotidien aMarché financierxPériodiques02aCDC-MarchésbService de la recherche 0aFRbFNSP4 uhttps://institutionsfinancieres.natixis.com/jcms/abo_5754/flash-eco zAccès libre au texte intégral des derniers numéros1 r aDEW 332 aGEO RQ01211nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210004600180300005400226326001600280606005600296710005200352856002600404856007000430856008400500856010800584955007800692957010600770972000900876992001200885039920887000008548820130523150548.01 a1154-2721 aFNSP379824 a0000085488 a19900101a19899999 ba0 afre aFR aaha 10aFlux (Noisy-le-Grand) aPariscLa Documentation françaised1989- aParait alternativement en français et en anglais aTrimestriel aSciences socialesxAnalyse de réseauxPériodiques02aGroupement de recherches sur les réseaux (903)4 uhttp://www.persee.fr/ zAccès libre au texte intégral pour les numéros de 1990 à 20004 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-flux.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (aut-1990) -no 89/90 (dec-2012)cParisdMagasins/AnnexeeP 4° 61951 bno. 1 (1990) -no. 34 (1998)cParisdMagasins/Annexe :zcet index constitue le n°35, 1999 de la revue aZPAY aDEW 33301057nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001700154207004700171210005800218326002300276326002500299430003200324601004900356606004300405710003500448856006300483856006000546955008300606972000900689992002100698992001200719040152952000022383120130319051433.01 a1014-9651 aFNSP801139 a0000223831 a19900101b19912008 f ba0 afre aUS aaea 10aFMI bulletin 1avol. 20 no. 4 (1991)-vol. 37 no. 12 (2008) aWashingtoncFonds monétaire internationald1991-2008 aMensuelb2007-2008 aBimensuelb1991-2007 1aBulletin du FMI,x0250-741202aFonds monétaire internationalxPériodiques aFinances internationalesxPériodiques02aFonds monétaire international4 uhttp://www.imf.org/external/pubs/ft/survey/fre/surveyf.htm zContenu : texte intégral depuis le vol. 18, no 1, 19991 bvol. 20 no. 4 (1991) -vol. 37 no. 3 (2008)cParisdMagasins/AnnexeeP 4° 0270 aZGRA aGEO RQ Universel aDEW 33201006nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013110600060013811000160014420000210016021000290018132600180021051700140022851700150024260600390025780100210029685601450031795501290046295700570059197200090064899200210065799200140067803922371X000001955020130319051433.01 a0015-5357 aFNSP153025 a0000019550 a19900101a18989999 ba0 afre aFR ar aagu 13aLa Foi et la vie aPariscFoi et vied1898- a5 n°s par an10aFoi & vie10aFoi et vie aEglises protestantesxPériodiques 3aFRbCCN0015-53574 uhttp://gallica.bnf.fr/ark:/12148/cb327761001/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1899-1926)1 bvol. 43 no. 1 (nov-1945) -vol. 45 no. 6 (sept/oct-1947) ; vol. 70 no. 6 (dec-1971) -....cParisdMagasins/AnnexeeP 8° 05741 b(1963) -(1985)cParisdMagasins/AnnexeeP Index 0625 aZPAY aGEO RQ Universel aDEW 20-2900844nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001600139210004300155326001500198606007200213801002100285856005800306856007600364955007100440972000900511992004200520992001600562039397866000002012820131002154744.01 a0306-9192 aFNSP154486 a19900101a19759999 ba0 aeng aGB aagu 10aFood policy aGuilfordcButterworth-Heinemannd1975- aBimestriel aPolitique alimentaireyPays en voie de développementxPériodiques 3aFRbCCN0306-91924 uhttp://www.sciencedirect.com/science/journal/03069192 zContenu : sommaires ; recherche par auteurs et mots-clés ; depuis 19951 bvol. 10 no. 1 (fev-1985) -....cParisdMagasins/AnnexeeP 4° 5079 aZPAY aGEO RO Pays en voie de développement aDEW 338.1-300769nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000055001502100044002052300024002493260022002736060029002956060043003248010013003678560029003808560042004099550005004519920012004569920011004680001180246000118024620130319051434.0 a0001180246 a a19989999k fre 01 ba0 aeng aGB ar aai z  adr 10aForced Migration Reviewb[Ressource électronique] aOxfordcRefugee studies programmed1998 aRevue électronique atrois fois par an aRéfugiésxPériodiques aTransferts de populationxPériodiques 0aFRbFNSP4 uhttp://www.fmreview.org/ zContenu : texte intégral depuis 19981 r aDEW 325 aGEO RQ00996nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001322000034001392100037001733260011002105300034002216010034002556060047002896060055003366060043003917120020004348010021004548560030004759550054005059550065005599720009006249920023006339920014006560000084689000008468920130319051434.01 a0071-7274 aFNSP376266 a0000084689 a19900101a19519999 ba0 aeng aUS10aFord Foundation annual report aNew YorkcFord Foundationd1951- aAnnuel00aFord Foundation annual report02aFord foundationxPériodiques aAide économique américaineyPériodiques aAssistance en matière de populationxPériodiques aTransfert de technologiexPériodiques02aFord Foundation 3aFRbCCN0071-7274 uhttp://www.fordfound.org/1 b(1980)-(1999)cParisdMagasins/AnnexeeP 4° 57981 bb(1951) ; (1953)-(1979)cParisdMagasins/AnnexeeCOL8°1872 aZGRA aGEO RC2 Etats-Unis aDEW 338.901573nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210005000191326001800241606004400259607005300303676000800356710004700364801002100411856003500432856009600467856012800563856010800691955006700799955021100866957005701077972000901134992002101143992002301164992001201187038710021000000433320131219163643.01 a0015-7120 aFNSP105391 a0000004333 a19900101a19229999 ba0 aeng aUS aagu 10aForeign affairs (New York, N.Y.) aNew YorkcCouncil on Foreign Relationsd1922- a5 n°s par an aRelations internationalesxPériodiques aEtats-UnisxRelations extérieuresxPériodiques a32702aCouncil on Foreign Relationsc(Etats-Unis) 3aFRbCCN0015-71204 uhttp://www.foreignaffairs.org/ zContenu : sommaires ; résumés ; recherche par auteurs, sujets et dates ; depuis oct. 19734 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=FAF&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 1 no. 1 (1922) -....cParisdMagasins/AnnexeeP 8° 0001wManquants : vol. 62, no. 3 et 4 (1983-1984), vol. 69, no. 1 (1990), vol. 70, no. 1 (1991), vol. 81 nos 1,3, 5, 2002 ; vol. 82 nos 2, 3, 4, 20031 b(1922) -(1972)cParisdMagasins/AnnexeeP Index 0050 aZCAD aGEO RQ Universel aGEO RC2 Etats-Unis aDEW 32701868nas 2200445 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154207001900173210004200192210007200234326002200306326002700328326002700355453004800382606004400430676000800474710005000482801002100532856003400553856008200587856012800669856010800797856009000905856010800995955006701103955006901170955006501239955007901304972000901383991001801392992001201410038710056000000437720131219163736.01 a0015-7228 aFNSP105462 a0000004377 a19900101a19719999 ba0 aeng aUS aagu 10aForeign policy 1ano. 1 (1971) - aNew YorkcNational Affairsd1971-1978 aWashington, D.C.cCarnegie Endowment for International Peaced1978- aBimestrielb2001- aCinq fois par anb2000 aTrimestrielb1971-1999 1tForeign policy (Éd. française)x1957-5335 aRelations internationalesxPériodiques a32702aDotation Carnegie pour la paix internationale 3aFRbCCN0015-72284 uhttp://www.foreignpolicy.com/ zContenu : sommaires ; résumés ; index auteurs et sujets ; depuis été 19974 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=FPO&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00157228.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bL'année en courscParisdBibliothèque de rechercheeP 4° 68651 bno. 120 (aut-2000) -....cParisdMagasins/AnnexeeP 4° 68651 bno. 1 (hiv-1971) -no. 119 (été-2000)cParisdMagasins/AnnexeeP 8° 2944 aZCAD aexempb201103 aDEW 32701243nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008800154210004600242326001600288606005200304606004500356710007100401856009500472856010800567856005100675856006900726955006300795972000900858992002200867992001600889992001200905013304429000000441620140106173129.01 a0759-6340 aFNSP105592 a0000004416 a19900101a19839999 ba0 afre aFR aahu 10aFormation emploif[CEREQ, Centre d'études et de recherches sur les qualifications] aPariscLa Documentation françaised1983- aTrimestriel aFormation professionnelleyFrancexPériodiques aMarché du travailyFrancexPériodiques02aCentre d'études et de recherches sur les qualificationsc(France)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-formation-emploi.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://formationemploi.revues.org/index55.html zAccès libre au texte intégral du n° 93, 2006 au n° 100, 20071 bno. 1 (jan-1983) -....cParisdMagasins/AnnexeeP 4° 4835 aZPAY aGEO RA4.06 France aDEW 370-379 aDEW 33101311nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154207002600177210003900203326001600242606004400258607005000302607006300352801002100415856005200436856003600488856005500524856012600579955007500705957007700780972000900857991001800866992002000884992002100904992001200925039133869000002013220130319051436.01 a0185-013X aFNSP154491 a0000020132 a19900101a19609999 ba0 aspa aMX aahu 10aForo internacional 1avol. 1, no. 1 (1960)- aMéxicocColegio de Méxicod1960- aTrimestriel aRelations internationalesxPériodiques aMexiquexRelations extérieuresxPériodiques aMexiquexRelations économiques extérieuresxPériodiques 3aFRbCCN0185-013X4 uhttp://www.colmex.mx/centros/cei/foro_index.htm zAccès libre au texte intégral4 uhttp://revistas.colmex.mx/revista.jsp?id_revista=7 zContenu : sommaires et texte intégral depuis le n°159 volume 40 janvier-mars 2000 à l'exception de la dernière année1 bvol. 1 no. 1 (jul/sept-1960) -....cParisdMagasins/AnnexeeP 8° 18571 bno 1 (jul-1961) -no. 50 (oct-1972)cParisdMagasins/AnnexeeP Index 0264 aZGRA aexempb201001 aGEO RD1 Mexique aGEO RQ Universel aDEW 32700921nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000460015421000400020032600160024051700280025660600480028471000450033285600420037785600730041995500630049297200090055599100180056499200250058299200120060704004825X000017270720130319051436.01 a0933-9361 aFNSP652247 a0000172707 a19900101a19889999 ba0 ager aDE aaha 10aForschungsjournal Neue Soziale Bewegungen aStuttgartcLucius und Luciusd1988- aTrimestriel10aNeue Soziale Bewegungen aMouvements sociauxyAllemagnexPériodiques02aForschungsgruppe Neue Soziale Bewegungen4 uhttp://www.fjnsb.de/frameJahrgang.htm zContenu : Sommaires depuis 1995, résumés en anglais et en allemand1 bno. 4 (dec-1994) -....cParisdMagasins/AnnexeeP 8° 6192 aZSAB aexempb201212 aGEO RA5.01 Allemagne aDEW 30301088nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210002600181300004300207326001400250488002500264530002600289606003900315607005400354801002100408830009000429856003900519955005900558955008700617972000900704992002300713992001400736039701638000000431320130319051436.01 a0738-5587 aFNSP105323 a0000004313 a19900101a19839999 ba0 aeng aUS aaeu 10aFortune Europe edition aZolingencTimed1983- aAvant 1983 voir Fortune < P F° 0131 > aBimensuel 1aFortune,xP F° 013100aFortune international aFinancesyEtats-UnisxPériodiques aEtats-UnisxConditions économiquesxPériodiques 3aFRbCCN0738-5587 aVol. 107, n°1, Jan. 10, 1983 -->1984 < P F° 0131 >: collection Locarchives à jeter4 uhttp://www.pathfinder.com/fortune/1 bL’année en courscParisd27, Salle Rez-de chaussée1 bConservation limitée aux 5 dernières annéescParisdMagasins/AnnexeeP 4° 6831 aZPAY aGEO RC2 Etats-Unis aDEW 330.901071nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200009600163207003600259210004600295326001100341530003900352606004200391710004500433801001300478830003300491856003300524856007600557955005400633972000900687992002500696992001200721073340065000055277720130319051436.01 a1761-0214 a0000552777 a a20039999k fre ba0 afre aFR a 0  ar aak z 0 13aLe Forum des droits sur l'interneterapport d'activitéfLe Forum des droits sur l'internet 1a1er rapport d'activité (2002)- aPariscLa Documentation françaised2003- aAnnuel03aLe Forum des droits sur l'internet aInternetxDroityFrancexPériodiques02aForum des droits sur l'internetc(Paris) 0aFRbFNSP asudoc à jour : 26/04/07, dm uhttp://www.foruminternet.org zL'adresse renvoie au rapport sur le site de la Documentation française1 b(2002)-(2007)cParisdMagasins/AnnexeeP 8° 6709 aZPAY aGEO RA4.06 France 01 aDEW 00401136nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200008400139210006500223326001600288452005900304453005800363453005400421530004900475606004100524710004900565801002100614856006300635955007800698972000900776992002100785992001600806039666565000002028820131219151823.01 a0591-2512 aFNSP154761 a19900101a19649999 f ba0 afre aCH aaha 10aForum du commerce international‎fCentre du commerce international CNUCED/OMC aGenèvecCentre du commerce international CNUCED-GATTd1964- aTrimestriel 1tForum du commerce international (En ligne),x1608-0106 1tForum de comercio internacional (Impresa),x0251-009X 1tInternational trade forum (Print), ISSN 0020-8957 aForum du commerce international‎bImprimé aCommerce internationalxPériodiques02aCentre du commerce international CNUCED/GATT 3aFRbCCN0591-25124 uhttp://www.tradeforum.orgzAccès libre au texte intégral1 bvol. 1 no. 1 (dec-1964) -no. 3 (2007)cParisdMagasins/AnnexeeP 4° 2115 aZGRA aGEO RQ Universel aDEW 380-38200864nas 2200277 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000049001552100065002043260016002696060043002856060028003287120057003568010021004138560029004349550090004639920021005539920012005740000020823000002082320130319051436.01 a0887-8218 aFNSP156445 a0000020823 a19900101a19869999 ba0 aeng aUS aaha 10aForum for applied research and public policy aChapel Hill, N.C.cUniversity of North Carolina Pressd1986- aTrimestriel aEnvironnementxRecherchexPériodiques aRecherchexPériodiques02aEnergy Environnment and Resources Center (Knoxville) 3aFRbCCN0887-82184 uhttp://forum.ra.utk.edu/1 bvol. 1 no. 1 (pri-1986) -vol. 14 no. 3 (aut-1999)cParisdMagasins/AnnexeeP 4° 5244 aGEO RQ Universel aDEW 50700963nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210002400182326001100206607004600217676000800263710007800271856007300349856003600422955006600458955005700524972000900581991001800590992002500608992001600633004292901000023163020130319051438.01 a1279-3671 aFNSP822870 a0000231630 a19900101a19979999 ba0 afre aFR aaka 10aFrance, portrait social aPariscINSEEd1997- aAnnuel aFrancexConditions socialesxPériodiques a36002aInstitut national de la statistique et des études économiquesc(France)4 uhttp://www.insee.fr/fr/publications-et-services/collection.asp?id=134 zAccès libre au texte intégral1 bLes 3 dernières annéescParisd27, Salle 4e étageeDEW 3601 b(1997/1998) -...cParisdMagasins/AnnexeeP 8° 6448 aZPAY aexempb201301 aGEO RA4.06 France 01 aDEW 360-36301212cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200009200179210002800271225002800299440003900327606004900366710007800415801003000493801002300523801003000546801002300576802000700599856006000606856003600666955007900702991001800781992002500799992001400824040501574000071828220130319051438.01 a1274-8560 accn1274-8560 aissn12748560 a0000718282 a19970820b19932004k a0frea0103 ba0 afre aFR ar azu 13aLa France des servicesfInstitut national de la statistique et des études économiques aPariscINSEEd1993-200400aRéférencesx1639-4968 1tLes services en France,x1779-0883 aServicesyFrancexStatistiquesxPériodiques02aInstitut national de la statistique et des études économiquesc(France) 3aFRbAbesc20050523gAFNOR 3aFRbISSNc20020108 3aFRbAbesc20041026gAFNOR 3aFRbISSNc20010401 a074 uhttp://www.insee.fr/fr/ffc/docs_ffc/france_services.htm zAccès libre au texte intégral1 b(1996) ; (1999) ; (2001) ; (2004/2005)cParisdMagasins/AnnexeeP 8° 6788 aexempb201212 aGEO RA4.06 France 01 aDEW 338.400948cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200006600197210001900263530004100282801003000323801002300353802000700376830000900383856012100392955005700513991001500570991004900585039091112000112524320130319051438.0 a2017-2230 accn7114/8825 aissn20172230 a0001125243 a19891106b188719 uuuy0frey0103 ba0 afre aFR ay  ar azku uu 13aLa France économiqueeStatistique, raisonnée et comparative aPariscA.Colin13aLa France économiqueb(Paris. 1887) 3aFRbAbesc20070823gAFNOR 3aFRbISSNc20070808 a00 asdy04 uhttp://gallica.bnf.fr/ark:/12148/bpt6k279027/f4.imagezAccès libre au texte intégral. 1889 numérisée sur Gallica1 b(1887) ; (1890)cParisdMagasins/AnnexeeCOL12°0171 aPériobTZ anumer0 (tout, gallica mode texte mais moche)01423cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001700069100004100086101000800127102000700135105001800142106000600160110001600166200009500182210008400277452005300361530004300414607003500457607005600492607006400548676001100612710007800623801003000701801003000731801002300761802000700784856014300791955005500934972000900989992002500998992001401023039862089000092803220131017163430.01 a0992-4124 accn0992-4124 aissn09924124 a19980721a19889999m y0frey0103 ba0 afre aFR a 0  ar azu 0 13aLa France et ses régionsfInstitut national de la statistique et des études économiques aParisc[Institut national de la statistique et des études économiques]d1988- 0tLa France et ses régions (Cédérom)x1286-938413aLa France et ses régions‎bImprimé aFrancexRégionsxPériodiques aPays de l'Union européennexRégionsxPériodiques aFrancexConditions économiquesxStatistiquesxPériodiques a330.9402aInstitut national de la statistique et des études économiquesc(France) 3aFRbAbesc20060123gAFNOR 3aFRbAbesc20060123gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.insee.fr/fr/publications-et-services/collection.asp?super_id=1&numpage=5&nombre=20zAccés libre au texte intégral depuis 20061 b(1988) -(2010)cParisdMagasins/AnnexeeP 8° 6864 aZPAY aGEO RA4.06 France 01 aDEW 330.900969nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001700154210003100171326003500202606003700237607004500274607002500319801002100344856009600365856004400461945004400505955006300549972000900612992002200621992001200643039236684000002029620130319051439.01 a0046-4910 aFNSP154775 a0000020296 a19900101a19579999 ba0 afre aFR aahb 10aFrance forum aPariscFrance forumd1957- a8 n°s par an puis trimestriel aVie intellectuellexPériodiques aFrancexVie intellectuellexPériodiques aFrancexPériodiques 3aFRbCCN0046-49104 uhttp://doc.sciencespo-lyon.fr/Signal/index.php?r=numero/search&SearchNumero%5BrevueId%5D=51 zContenu : sommaires des nos depuis 1990 a0000155006oL01lMAGAmbookd1990 12 141 bno. 6 (oct-1957) -....cParisdMagasins/AnnexeeP 4° 1529 aZGRA aGEO RA4.06 France aDEW 00100735nas 2200253 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000027001412100061001683260014002295170035002436060029002786070028003078560041003359550068003769920025004449920012004690000071480000007148020130319051439.0 aFNSP327615 a0000071480 a19900101a00019999 ba0 ager aDE acaa 10aFrankfurter Allgemeine aFrankfurt am MaincFrankfurter Allgemeine Zeitungd0001- aQuotidien10aFrankfurter Allgemeine Zeitung aActualitéxPériodiques aAllemagnexPériodiques4 uhttp://www.faz.de/mainpage/hp_lf.asp1 bLe mois en courscParisd27, Salle Rez-de-chausséeeP F° 1227 aGEO RA5.01 Allemagne aDEW 05000948nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000053001502100005002032300024002083260014002326060029002466070028002758010013003038560192003168560108005089550005006169920025006219920012006460001131860000113186020130319051439.0 a0001131860 a a20019999k fre 01 ba0 ager aDE ar aaa z  adr 10aFrankfurter Rundschaub[Ressource électronique] a aRevue électronique aquotidien aActualitéxPériodiques aAllemagnexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA5.01 Allemagne aDEW 05000839nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005700154210005800211326001100269607002500280710005500305856008700360955005300447972000900500991001800509992002200527992001200549040051099000011059320130319051439.01 a0935-6649 aFNSP466984 a0000110593 a19900101a19889999 ba0 ager aDE aaka 10aFrankreich-JahrbuchfDeutsch-Französisches Institut aWiesbadencVerl. für Sozialwiss./GWV Fachverld1988- aAnnuel aFrancexPériodiques02aInstitut franco-allemandc(Ludwigsburg, Allemagne)4 uhttp://www.dfi.de/de/veroeffentlichungen_fj.shtmlzContenu : sommaires depuis 19961 b(1988) -....cParisdMagasins/AnnexeeP 8° 5305 aZPAY aexempb201110 aGEO RA4.06 France aDEW 94401112nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210004600182326002300228326002800251530004800279607007500327856007100402856010800473955007000581957012000651972000900771991001800780992001200798040088197000003151720140107174916.01 a0957-1558 aFNSP187544 a0000031517 a19910513a19909999 ba0 aeng aGB aaia 10aFrench cultural studies aChalfont St. GilescAlpha Academicd1990- aTrimestrielb2009- a3 nos par anb1990-200810aFrench cultural studiesbChalfont St. Giles aFrancexCivilisationxEtude et enseignement (supérieur)xPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://frc.sagepub.com/? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 3 (oct-1990) -....cParisdMagasins/AnnexeeP 8° 57161 bvol. 1 (1990) -vol. 10 (1999)cParisdMagasins/Annexezcet index se trouve dans le vol. 10 no. 30, 1999 de la revue aZPAY aexempb201205 aDEW 94401112nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200003000138210006200168326001600230607003500246801002100281856005700302856005500359856010300414856010800517955007000625957007200695972000900767992002200776992001200798038710951000005873320130319051440.01 a0016-1071 aFNSP271899 a0000058733 a19900101a19589999 ba0 amul aUS10aFrench historical studies aBaton RougecSociety for French Historical Studiesd1958- aTrimestriel aFrancexHistoirexPériodiques 3aFRbCCN0016-10714 uhttp://www.sla.purdue.edu/academic/hist/fhs/home.htm zContenu : sommaires depuis le vol. 20, n°13, 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=111223 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 3 (pri-1964) -....cParisdMagasins/AnnexeeP 8° 21721 bvol. 1 (1958) -vol. 14 (1986)cParisdMagasins/AnnexeeP Index 0151 aZPAY aGEO RA4.06 France aDEW 94401365nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002000163207003100183210004200214326001600256517000700272606004400279607005200323607004800375676000800423801001300431856015100444856020800595955006600803955007000869955000500939972000900944992001600953992002200969073547786000054152620130716151855.01 a1476-3419 a0000541526 a a20039999k fre ba0 aeng aGB a 0  ar aaj z 0 10aFrench politics 1aVol. 1, no. 1 (Mar. 2003)- aHoundmillscPalgrave Macmilland2003- aTrimestriel10aFP aScience politiqueyFrancexPériodiques aFrancexPolitique et gouvernementxPériodiques aFrancexEtude et enseignementxPériodiques a940 0aFRbFNSP uhttps://acces-distant.sciences-po.fr/fork?http://www.palgrave-journals.com/fp/zSommaires et résumés des articles à partir du vol.1, n°1, 20034 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=110785zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 bvol. 1 no. 1 (mar-2003) -....cParisdMagasins/AnnexeeP 8° 67061 a aZCAD aDEW 320-321 aGEO RA4.06 France01355nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101001300108102000700121105001800128106000600146110001600152200009000168210003600258326001600294430004800310607005200358676000800410710005200418711005200470711004400522801001300566856012800579856010800707955006600815955006900881972000900950992001200959992002200971052303799000032084620130319051440.01 a1537-6370 a0000320846 a a19999999k fre ba0 aengefre aUS a 0  ar aai z 0 10aFrench politics, culture and societyfConference Group on French Politics and Society aNew YorkcBerghahn Booksd1999- aTrimestriel 1aFrench politics and societyxISSN 0882-1267 aFrancexPolitique et gouvernementxPériodiques a94002aConference Group on French Politics and Society02aCenter for European Studiesc(Cambridge, Mass.)02aInstitute of French Studiesc(New York) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=LT0&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 aLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 bvol. 17 no. 3/4 (1999) -....cParisdMagasins/AnnexeeP 4° 4998 aZCAD aDEW 324 aGEO RA4.06 France00991nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007200154210003900226326001600265606004400281801002100325856003400346856007900380955021500459972000900674991001800683992001200701039463052000006687620130319051440.01 a0340-0255 aFNSP310915 a0000066876 a19900101a18999999 ba0 ager aDE aaha 14aDie Friedens-Warteejournal of international peace and organization aBerlincBerlin Verlag Spitzd1899- aTrimestriel aRelations internationalesxPériodiques 3aFRbCCN0340-02554 uhttp://www.friedens-warte.de/ zContenu : sommaires et résumés depuis le n°1, 2003, moteur de recherche1 bvol. 23 no. 1/2 (1923) -vol. 40 no. 1/2 (1940) ; vol. 50 no. 1 (1950) -vol. 56 no. 4 (1961/1966) ; vol. 57 no. 1/4 (1974) -vol. 68 no. 1/2 (1988) ; vol. 71 no. 1 (1996) -....cParisdMagasins/AnnexeeP 8° 0455 aZSAB aexempb201301 aDEW 32701641cas0 2200421 450 001001000000002001100010005001700021011001400038020001700052100004100069101000800110102000700118105001800125106000600143110001600149200023600165207001200401210003500413326001100448452002200459606003100481606005200512606003900564607006000603676001500663710006100678711006500739711007500804801003000879801001500909801001500924856012000939955006201059955005201121972000901173992002501182992001201207171169727000124751720130906152505.0 a0932-7983 aUSb88640708 a20130827a19879999k y0frey50 ba0 ager aDE ay 0  ar azkah 0yy 10aFriedensgutachtenfHessische Stiftung Friedens- und Konfliktforschung (HSFK), Forschungsstätte der Evangelischen Studiengemeinschaft (FEST), Institut für Friedensforschung und Sicherheitspolitik an der Universität Hamburg (IFSH) 0a(1987)- aFrankfurt am MaincHSFKd1987- aAnnuel 1tFriedensgutachten aPaixxPériodiques2rameau aSécurité internationalexPériodiques2rameau aDésarmementxPériodiques2rameau aAllemagnexRelations extérieuresxPériodiques2rameau a327.1v22a02aHessische Stiftung Friedens- und Konfliktsforschung407002aForschungsstätte der evangelischen Studiengemeinschaft407002aInstitut für Friedensforschung und Sicherheitspolitik (Hambourg)4070 3aFRbAbesc20130828gAFNOR 0bDLCgAACR2 2bNSTgAACR24 uhttp://www.friedensgutachten.de/index.php/id-2013.htmlzAccès aux sommaires et résumés des chapitres depuis 20001 bLa dernière annéecParisd30, Salle 1er étageeDEW 3271 b(2013)-....cParisdMagasins/AnnexeeP 8° 7212 aZCAD aGEO RA5.01 Allemagne aDEW 32700983nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001341350018001502000108001682100025002762300024003013000100003253260012004253300123004376060037005608010013005978560055006109550040006650000313753000031375320130319051440.0 a0000313753 a a00019999k fre ba0 afre aFR a 0  az aaf z 0  adr 10aFRIPESb[Ressource électronique]eFichier Régional d'Informations Politiques, Economiques et Sociales aLyoncIEP Lyonds.d. aDonnées textuelles aAccès au 18/04/2000 : World Wide Web. URL : http://iep.univ-lyon2.fr/Documentation/fripes.html aMensuel aDepuis 1983, bibliographie d'environ 50 000 articles de périodiques en sciences politiques, économiques et sociales. aSciences socialesxBibliographie 0aFRbFNSP uhttp://iep.univ-lyon2.fr/Documentation/fripes.html1 rConsultable uniquement sur internet01048nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008000154207003500234210003200269326001600301530002800317606003600345606004500381606003000426856006500456856012200521955007300643991001800716992001200734039921409000000931820130319051445.01 a1154-418X aFNSP116520 a0000009318 a19900613b19901998 ba0 afre aFR aaha 00aFutur antérieurepolitique, sociologie, philosophie, psychanalyse, culture 1ano. 1 (1990) -no. 43 (1997/98) aPariscHarmattand1990-1998 aTrimestriel00aFutur antérieurbParis aSciences socialesxPériodiques aGauche (science politique)xPériodiques aPhilosophiexPériodiques uhttp://multitudes.samizdat.net/rubrique.php3?id_rubrique=117 ztexte intégral de presque tous les numéros ordinaires et spéciaux publiés, hébergés sur le site de "Multitudes"1 bno. 1 (1990) -no. 43 (1997/1998)cParisdMagasins/AnnexeeP 8° 5648 aexempb201103 aDEW 30101249nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001500154210005600169326001200225436004100237436004300278517002000321530002200341606002900363606003700392676000800429710002900437801002100466856003100487856010300518955006600621955006400687957007300751972000900824991001800833992001200851039541177000000441720130319051446.01 a0337-307X aFNSP105593 a0000004417 a19900101a19759999 ba0 afre aFR aafu 10aFuturibles aPariscAssociation internationale Futuriblesd1975- aMensuel 1aProspectives (Paris)xISSN 0338-5280 1tAnalyses et prévisionxISSN 0003-262X10aFuturibles 2000 0aFuturiblesbParis aPrévisionxPériodiques aEconomie politiquexPériodiques a30002aFuturibles international 3aFRbCCN0337-307X4 uhttp://www.futuribles.com/ zContenu : sommaires depuis le n° 205, janv. 1996 ; éditorial en texte intégral depuis nov. 19981 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3001 bno 1/2 (pri-1975) -....cParisdMagasins/AnnexeeP 8° 28751 bno. 1/2 (1975) -no. 237 (1988)cParisdMagasins/AnnexeeP Index 0819 aZPAY aexempb200904 aDEW 30001057nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001200154210004100166326001500207440005500222530002200277606004600299606002600345606003200371801002100403856009500424856009000519955008000609972000900689992002100698992001200719038712040000002029220130319051447.01 a0016-5492 aFNSP154769 a0000020292 a19900101b19552005 ba0 aeng aNL aagu 10aGazette aLondoncSage Publicationsd1955-2005 aBimestriel 1tThe International communication gazettex1748-048510aGazetteb(Leiden) aCommunication audiovisuellexPériodiques aMédiasxPériodiques aCommunicationxPériodiques 3aFRbCCN0016-54924 uhttps://acces-distant.sciences-po.fr/fork?http://www.sagepub.co.uk/journal.aspx?pid=105560 zContenu : sommaires depuis le vol. 59, n°1, fév. 1997 ; résumés à partir de 19981 bvol. 1 no 1 (1955) -vol. 67 no 6 (2005)cParisdMagasins/AnnexeeP 8° 1375 aZSAB aGEO RQ Universel aDEW 07001200nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006100139210003600200326001700236430005500253606004800308606004300356801002100399856004100420856020300461955009400664955011400758992002200872992001600894039790118000002029720131018174907.01 a0769-3508 aFNSP154778 a19900101a19859999 ba0 afre aFR aa u 13aLa Gazette des communes, des départements, des régions aPariscAction municipaled1985- aHebdomadaire 1aLa Gazette des communes (0242-570X) < P 4° 4574 > aAdministration localeyFrancexPériodiques aServices publicsyFrancexPériodiques 3aFRbCCN0769-35084 uhttp://www.lagazettedescommunes.com/ zContenu : sommaires et résumés depuis janv. 1997 ; textes des "Cahiers" depuis 2001. Articles consultables à la bibliothèque à l'aide d'un mot de passe à demander à l'accueil bibliographique.1 bLes six derniers mois de l'année en courscParisd27, Salle Rez-de-chausséeeP 4° 45741 bno. 8 (15/28 avr-1985) -no. 1434 (dec-1997) ; n.s. no. 1 (jan-1998) -....cParisdMagasins/AnnexeeP 4° 4574 aGEO RA4.06 France aDEW 350-35401388nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004200154210003600196326001500232422003700247430005100284606004700335606003200382676000800414801002100422856002600443856003600469856007000505856010800575955006500683955006400748957015900812972000900971992002200980992001201002039373452000000443220130319051447.01 a0242-6390 aFNSP105717 a0000004432 a19900101a19689999 ba0 afre aFR aagu 10aGazette du Palais. Recueil bimestriel aPariscGazette du Palaisd1968- aBimestriel 1aLa Gazette du Palais (0242-6331) 1aGazette du Palais. Supplément ... (0249-4981) aDroityFrancexJurisprudencexPériodiques aDroityFrancexPériodiques a340 3aFRbCCN0242-63904 uhttp://www.gpdoc.com/ zAccès libre au texte intégral4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lextenso.com zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30,Salle 3e étageeDEW 3401 bno. 1 (jan-1968) - ….cParisdMagasins/AnnexeeP 4° 02741 b1966-1970, 1971-1972, 1974-1976, 1977-1979, 1980-1982, 1983-1985, 1986-1988, 1989-1991, 1992-1994, 1995-1997cParisdMagasins/AnnexeeP Index 0472zTables aZPAY aGEO RA4.06 France aDEW 34800829nls 2200265 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001251350018001412000049001592100027002082300024002356060047002596060032003068010013003388560070003518560108004219920022005299920012005510000941430000094143020130319051447.0 aFNSP105717 a0000941430 a19900101a20009999 ba0 afre aFR aagu  adr 10aGazette du Palaisb[Ressource électronique] aPariscLextensod2000- aRevue électronique aDroityFrancexJurisprudencexPériodiques aDroityFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lextenso.com zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aGEO RA4.06 France aDEW 34804580nas 2200589 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200005000160207003500210210002900245326001400274440005100288530005000339607006300389676000800452830003800460856014300498856015000641856014400791856014400935856014401079856014401223856014401367856014501511856014501656856014401801856014401945856014502089856016502234856014402399856014502543856014402688856014502832856014402977856014503121856014403266856014503410856014403555856014403699955005003843957007403893991001103967992001203978038705710000004655420131028165955.0 a1169-2510 aFNSP237431 a0000046554 a19900101b17891810 ba0 afre aFR ar aaaa 03aLa Gazette nationale ou le Moniteur universel 1a24 nov. (1789) -31 déc-(1810) aParisc[s.n.]d1789-1810 aQuotidien 1aLe Moniteur universel (Paris. 1811)x1169-252903aLa Gazette nationale ou le Moniteur universel aFrancexPolitique et gouvernementz1789-1815xPériodiques a070 aLa collection se trouve en MAG 274 uhttp://archive.org/stream/gazettenationale1789panc#page/n5/mode/2upzAccès libre au texte intégral. 1789 (mai-déc) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale8990panc#page/n3/mode/2upzAccès libre au texte intégral. 1789 (nov)-1790 (juin) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale1790panc#page/n1/mode/2upzAccès libre au texte intégral. 1790 (juil-déc) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale1794panc#page/n1/mode/2upzAccès libre au texte intégral. 1794 (janv-juin) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale1794panc#page/n1/mode/2upzAccès libre au texte intégral. 1795 (janv-juin) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale1795panc#page/n3/mode/2upzAccès libre au texte intégral. 1795 (juil-déc) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale1796panc#page/n3/mode/2upzAccès libre au texte intégral. 1796 (janv-juil) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale17961panc#page/n1/mode/2upzAccès libre au texte intégral. 1796 (juil-déc) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale17971panc#page/n3/mode/2upzAccès libre au texte intégral. 1797 (janv-juin) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale1797panc#page/n5/mode/2upzAccès libre au texte intégral. 1797 (juil-déc) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale1798panc#page/n3/mode/2upzAccès libre au texte intégral. 1798 (janv-juin) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale17981panc#page/n3/mode/2upzAccès libre au texte intégral. 1798 (juil-déc) sur Internet Archive4 uhttp://gallica.bnf.fr/ark:/12148/bpt6k49333r/f3.imagezAccès libre au texte intégral. Accès libre au texte intégral. 1799 (janv-juin) numérisé sur Gallica4 uhttp://archive.org/stream/gazettenationale1799panc#page/n3/mode/2upzAccès libre au texte intégral. 1799 (juil-déc) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale18001panc#page/n3/mode/2upzAccès libre au texte intégral. 1800 (janv-juin) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale1800panc#page/n1/mode/2upzAccès libre au texte intégral. 1800 (juil-déc) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale18011panc#page/n3/mode/2upzAccès libre au texte intégral. 1801 (janv-juin) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale1801panc#page/n3/mode/2upzAccès libre au texte intégral. 1801 (juil-déc) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale18021panc#page/n3/mode/2upzAccès libre au texte intégral. 1802 (janv-juin) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale1802panc#page/n1/mode/2upzAccès libre au texte intégral. 1802 (juil-déc) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale18031panc#page/n3/mode/2upzAccès libre au texte intégral. 1803 (janv-juin) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale1803panc#page/n1/mode/2upzAccès libre au texte intégral. 1803 (juil-déc) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale1804panc#page/n3/mode/2upzAccès libre au texte intégral. 1804 (juil-déc) sur Internet Archive1 b(1789) -(1810)cParisdMagasin 27eP F° 11731 b(1789-1799), (1799-1810)zces tables sont rangées avec la collection anumer0 aDEW 05001051nas0 2200313 450 00100100000000200110001000500170002101100140003803500170005203500150006910000410008410100080012510200070013310600060014011000160014620000570016221000440021932600160026360600440027960600440032380100300036780100230039780200070042085600350042785601910046295500630065397200090071699200120072509893046X000095451120130319051447.01 a0941-5831 aissn09415831 a0000954511 a20060406a19929999 0frey0103 ba0 ager aDE ar aah 10aGegenstandpunktePolitische Vierteljahreszeitschrift aMünchencGegenstandpunkt Verlagd1992- aTrimestriel aRelations internationalesxPériodiques aRelations internationalesxPériodiques 3aFRbAbesc20060406gAFNOR 3aFRbISSNc20060401 a064 uhttp://www.gegenstandpunkt.com zContenu : Index alphabétique, géopolitque, thématique des articles parus de 1992 à 2008, certains articles parus en français, anglais, italien, russe et danois. Moteur de recherche.1 bno. 4 (dec-2003) -....cParisdMagasins/AnnexeeP 8° 6879 aZPAY aDEW 32701560nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154207003000175210003800205326001500243517002300258606004200281606004200323710005200365856010100417856010800518856009000626856010800716856010800824856010800932955007001040972000901110991001801119992003301137992001601170039988139000002030420130319051447.01 a0891-2432 aFNSP154785 a0000020304 a19901213a19879999 ba0 aeng aGB aaga 10aGender & society 1aVol. 1, no. 1 (mar-1987)- aNewbury Park, Calif.cSaged1987- aBimestriel10aGender and society aDiscrimination sexuellexPériodiques aRelations hommes-femmesxPériodiques02aSociologists for Women in Societyc(Etats-Unis)4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=103730 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/08912432.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 1 (mar-1989) -....cParisdMagasins/AnnexeeP 8° 5216 aZPAY aexempb201110 aGEO RS Sans aspect régional aDEW 305-30601298nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000270013921000250016632600170019153000340020860600570024260600480029960600420034785601030038985601080049285601090060085601080070995500700081797200090088799100180089699200420091499200160095603674199X000019552320130828181423.01 a1355-2074 aFNSP718435 a19900101a19959999 ba0 aeng aGB aaia 10aGender and development aOxfordcOxfamd1995- a3 nos par an 0aGender and developmentbPrint aFemmesyPays en voie de développementxPériodiques aFemmes dans le développementxPériodiques aRelations hommes-femmesxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=103705 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713422432db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 1 (fev-1995) -....cParisdMagasins/AnnexeeP 8° 6264 aZPAY aexempb201301 aGEO RO Pays en voie de développement aDEW 305-30601292nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001300154210004600167210002400213326001600237530002000253606003600273606002700309676000800336856008700344856010800431856006300539856010000602955006600702955005900768955006900827972000900896992001600905992000900921039925196000001409020131219164035.01 a1155-3219 aFNSP137999 a0000014090 a19901004a19909999 ba0 afre aFR aaha 00aGenèses aPariscGenèsescCalmann-Lévyd1990-1992 aPariscBelind1992- aTrimestriel00aGenèsesbParis aSciences socialesxPériodiques aHistoirexPériodiques a9094 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-geneses.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr/web/revues/home/prescript/revue/genes zAccès libre au texte intégral à partir de 1990 à l'exception des années les plus récentes1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9091 bno. 1 (1990) -....cParisdMagasins/AnnexeeP 8° 56671 bL'année en courscParisdBibliothèque de rechercheeP 8° 5667 aZCAD aDEW 900-907 aPBUL01430cas0 2200373 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147110001600154200004800170210007700218326001600295421004000311430004400351530002600395710006000421801001300481856009200494856010800586856004900694856010000743856002900843856006800872955006700940972000901007992002601016992001401042055391508000033466520130319051450.01 a1627-4873 a058815139 aissn16274873 a0000334665 a20010427a20009999k y0frey0103 ba0 afre aFR aahu uu 10aGéocarrefourerevue de géographie de Lyon a[Lyon]c[Association des amis de la Revue de géographie de Lyon]d2000- aTrimestriel 1tCollection Géocarrefourx1778-7408 1tRevue de géographie de Lyonx0035-113X10aGéocarrefourb(Lyon)02aAssociation des amis de la Revue de géographie de Lyon 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-geocarrefour.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr/listIssues.do?key=geoca zAccès libre au texte intégral à partir de 2000 à l'exception des années les plus récentes4 uhttp://geocarrefour.org/ zContenu : sommaires et résumés depuis le vol. 75 no. 1 (2000)1 bvol. 75 no. 1 (2000) -....cParisdMagasins/AnnexeeP 4° 5679 aZPAY aGEO RA4. 06 France 01 aDEW 330.901280nas 2200349 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200001800148210003600166210003600202326001600238430004900254530002500303606004200328606005700370710008400427801001300511856009000524856010800614856004700722856007400769955006600843972000900909992001200918054376890000032635820140107131955.01 a1620-9869 a a20009999k fre ba0 afre aFR a 0  ar aah z 0 10aGéoéconomie aPariscEditions Choiseuld2003- aPariscGéoéconomied2000-2002 aTrimestriel 1tRevue française de géoéconomiex1284-934010aGéoéconomiebParis aGéographie économiquexPériodiques aRelations économiques internationalesxPériodiques02aInstitut Choiseul pour la politique internationale et la géoéconomiec(Paris) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-geoeconomie.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.geoeconomie.org/rfg/default.htm zContenu : sommaire et résumés des articles à partir du n° 1, 19971 bno. 14 (été-2000) -....cParisdMagasins/AnnexeeP 8° 6331 aZPAY aDEW 33701013nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000081001502100040002313000098002713260016003693360058003853370066004434520067005097120051005768010013006278560090006409550005007300000534062000053406220130319051450.0 a0000534062 a a19659999k fre 01 ba0 amul aSE az aah z  adr 10aGeografiska Annaler. Series A. Physical Geographyb[Ressource électronique] aOxfordcBlackwell Publishersd1965- aAccès au texte intégral (réservé aux sites de Sciences-Po) jusqu'aux 5 dernières années aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou télédéchargement 1tGeografiska Annaler. Series A. Physical Geographyx(0435-3676)02aSwedish Society for Anthropology and Geography 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/04353676.html1 r01944nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200025900139210002300398326001100421430013300432452013800565530012500703606007800828606004900906606006600955606003601021710010101057830005301158856019201211955006601403972000901469992004201478992003201520992001601552992001401568040208915000015380520131008125502.01 a1026-1869 aFNSP599729 a19900101a19959999 f ba0 amul aFR aaka 10aGeographical distribution of financial flows to aid recipientsiDibursements, commitments, country indicatorsd= Répartition géographique des ressources financières allouées aux bénéficiaires de l'aideiVersements, engagements, indicateurs par pays aPariscOCDEd1995- aAnnuel 1aGeographical distribution of financial flows to developing countries. Disbursements, commitments, economic indicatorsx1015-3934 1tGeographical distribution of financial flows to aid recipients. Disbursements, commitments, country indicators (Online)‎x1996-252510aGeographical distribution of financial flows to aid recipients. Disbursements, commitments, country indicators‎bPrint aAide économiquexCoopération internationalexStatistiquesxPériodiques aAide économiquexStatistiquesxPériodiques aAide économiqueyEurope de l'EstxStatistiquesxPériodiques aPrêts étrangersxPériodiques02aOrganisation de coopération et de développement économiquesbComité d'aide au développement a1993-1998 : collection envoyée au CTles en 20134 uhttp://oberon.sourceoecd.org/vl=2302688/cl=33/nw=1/lg=fre/rpsv/outlook_annuals.htmzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1989/1993) -(1994/1998);cParisdMagasins/AnnexeeP 4° 5220 aZPAY aGEO RO Pays en voie de développement aGEO RA2.02 Europe orientale aDEW 310-319 aDEW 338.901316nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210004600179326001600225430004500241606003000286710003700316801002100353856009000374856010800464856010300572856010800675955007800783957007500861972000900936992002100945992001200966038712644000002034720131127163314.01 a0016-7398 aFNSP155037 a0000020347 a19900101a18939999 ba0 aeng aGB aahu 10aGeographical journal aLondoncRoyal Geographical Societyd1893- aTrimestriel 1aProceedings - Royal Geographical Society aGéographiexPériodiques02aRoyal Geographical Societyc(GB) 3aFRbCCN0016-73984 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00167398.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=106131 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(jan-1948) -vol. 178 no. 4 (dec-2012)cParisdMagasins/AnnexeeP 8° 00781 bvol. 151 (1985) -vol. 160 (1994)cParisdMagasins/AnnexeeP Index 0753 aZPAY aGEO RQ Universel aDEW 91001097nas 2200325 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200003800148210002900186210003100215210005200246326002600298326002300324606004200347606004700389801001300436856010700449856010800556955006600664972000900730991001800739992001400757045103232000028181320140106115805.01 a1295-926X a a19999999k fre ba0 afre aFR a 0  ar aah z 0 10aGéographie, économie, société aCachancLavoisierd2004- aPariscElsevierd2002-2003 aQuétignycAlternatives économiquesd1999-2001 aSemestrielb1999-2002 aTrimestrielb2003- aGéographie économiquexPériodiques aGéographie de la populationxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-geographie-economie-societe.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1999) -....cParisdMagasins/AnnexeeP 8° 6510 aZPAY aexempb201212 aDEW 330.900995nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000280015421000280018232600160021051700340022653000350026060600380029567600080033371000400034185600790038185600450046095500660050595500590057197200090063099100180063999200120065703998110X000006926020130319051450.01 a1165-0354 aFNSP320364 a0000069260 a19900101a19929999 ba0 afre aFR aaha 10aGéographie et cultures aPariscHarmattand1992- aTrimestriel10aRevue géographie et cultures 0aGéographie et culturesbParis aGéographie humainexPériodiques a30602aAssociation Géographie et cultures4 uhttp://www.editions-harmattan.fr/index.asp?navig=catalogue&obj=revue&no=17 zContenu : sommaires depuis le n°1, 19921 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3061 bno. 1 (1992) -....cParisdMagasins/AnnexeeP 8° 5827 aZPAY aexempb201112 aDEW 30401451cas0 2200421 450 001001000000002001100010005001700021011001400038035001700052035001700069100004100086101000800127102000700135105001800142110001600160200001600176207003300192210003000225430005700255452003700312530002600349606003200375606004400407676000800451801003000459801002300489801001300512802000700525856004200532856006000574856010900634856010800743955006700851955007200918972000900990991001800999992001201017048813249000028068720130916122738.01 a1465-0045 accn1465-0045 aissn14650045 a20000513a19989999k y0frey0103 ba0 aeng aGB ay 0  aaia 0uu 10aGeopolitics 0aVol. 3, no. 1 (summer 1998)- aLondoncFrank Cassd1998- 1tGeopolitics and international boundaries,x1362-9379 1tGeopolitics (Online),x1557-302810aGeopoliticsb(London) aGéopolitiquexPériodiques aRelations internationalesxPériodiques a327 3aFRbAbesc20090308gAFNOR 3aFRbISSNc20090225 0aFRbFNSP a024 uhttp://www.frankcass.com/jnls/gib.htm zContenu : sommaires et résumés depuis le vol. 1, n°14 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713635150db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 3 no. 1 (été-1998) -....cParisdMagasins/AnnexeeP 8° 6326 aZSAB aexempb201309 aDEW 32700866nas 2200277 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000042001412100026001833000088002093260011002974300030003085170060003386060026003987100043004248560041004679550052005089920012005609920016005720000267349000026734920130319051451.0 aFNSP925960 a0000267349 a19990303b19981998 ba0 afre aFR aaka 13aLa Géopolitique mondiale des drogues aPariscOGDd1998-1998 aLe rapport est seulement diffusé sur internet à partir de l'édition de 1998/1999 aAnnuel 1aGéopolitique des drogues10aRapport annuel - Observatoire géopolitique des drogues aDroguesxPériodiques02aObservatoire géopolitique des drogues uhttp://www.ogd.org/2000/fr/99fr.html1 b(1997/1998)cParisdMagasins/AnnexeeP 4° 6800 aDEW 303 aDEW 364-36501074nas 2200301 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200009600148210005800244326002300302326002800325430007700353530004700430606003800477712006500515801001300580856009100593955006700684972000900751992001200760058780106000038509620130916171412.01 a1534-9977 a a20009999k fre ba0 aeng aUS a 0  ar aah z 0 14aThe George Washington International law reviewfThe George Washington University Law School aWashington, D.C.cGeorge Washington Universityd2000- aTrimestrielb2001- a3 nos par anb2000-2000 1tGeorge Washington journal of international law and economics,x0748-4305 aGeorge Washington international law review aDroit internationalxPériodiques02aGeorge Washington Universityc(Washington, D.C.)bLaw School 0aFRbFNSP4 uhttp://www.gwilr.org/zAccès libre au texte intégral à partir du vol. 40 no.1, 20081 bvol. 33 no. 1 (2000) -....cParisdMagasins/AnnexeeP 8° 4906 aZCAD aDEW 34101186nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200001900163210002600182326001600208452004000224607003800264710003200302801001300334856010100347856010800448856010800556856010800664955006700772972000900839992001200848039320200000058897920130319051451.01 a0266-3554 a0000588979 a a19849999k fre ba0 aeng aGB a 0  ar aah z 0 10aGerman history aLondoncArnoldd1984- aTrimestriel 1tGerman history (Online),x1477-089X aAllemagnexHistoirexPériodiques02aGerman History Society (GB) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=102059 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 18 no. 1 (2000) -....cParisdMagasins/AnnexeeP 8° 6729 aZPAY aDEW 94301267nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210002400174326002300198326002900221607002800250676000800278710005600286856004100342856011800383856010900501856010800610955006600718955007000784972000900854991001700863992002500880992001200905040099199000008263820130319051452.01 a0964-4008 aFNSP368513 a0000082638 a19900101a19929999 ba0 aeng aGB aaha 10aGerman politics aLondoncCassd1992- aTrimestrielb2004- a3 n°s par anb1992-2003 aAllemagnexPériodiques a94002aAssociation pour l'étude de la politique allemande4 uhttp://www.frankcass.com/jnls/gp.htm zContenu : sommaires depuis le vol. 3, n°1, 1994 ; résumés depuis le vol. 7, n°1 ; sommaire du n° à paraitre4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713635220db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 bvol. 1 no. 1 (avr-1992) -....cParisdMagasins/AnnexeeP 8° 5904 aZSAB aexemp$201201 aGEO RA5.01 Allemagne aDEW 94301518cas0 2200409 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200006100180207002300241210006000264210006600324210005500390210003900445326001600484517000900500607005500509607004900564607002800613710006300641801003000704801002300734802000700757856012800764856010800892955007101000992002501071992001201096093815360000113057720130319051452.01 a1045-0300 aissn10450300 a0001130577 a19861121a19869999k y0frey0103 ba0 aeng aUS ay 0  ar aaha 0uu 10aGerman politics and societyfCenter for European studies 0aNo. 9 (Oct. 1986)- aCambridge, MasscThe Center for European studiesd1986-1 aCambridge, MasscThe Center for European studiesd1986-[1993]1 aBerkeley, CAcUniversty of Californiad[1993-1997]2 aBeds (GB)cBerghan journalsd1998- aTrimestriel10aGP&S aAllemagnexPolitique et gouvernementxPériodiques aAllemagnexConditions socialesxPériodiques aAllemagnexPériodiques02aCenter for German and European studiesc(Washington, D.C.) 3aFRbAbesc20080125gAFNOR 3aFRbISSNc20051021 a014 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=9GJ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 24 no. 1 (pri-2006) -....cParisdMagasins/AnnexeeP 8° 7000 aGEO RA5.01 Allemagne aDEW 94301170nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200007200139210002200211326001600233430006700249452004300316517005500359530004100414606006600455710005100521801002100572856010300593856004200696955006300738972000900801991001800810992001600828039248550000002078220130911163310.01 a0151-0193 aFNSP156377 a19900101a19789999 ba0 afre aFR aahu 10aGérontologie et société‎fFondation nationale de gérontologie aPariscFNGd1978- aTrimestriel 1aCahiers de la Fondation nationale de gérontologie,x0241-5771 1tGérontologie et société,x2101-021810aCahiers de la Fondation nationale de gérontologie aGérontologie et société‎bParis aPersonnes âgéesxProtection, assistance, etc.xPériodiques02aFondation nationale de gérontologiec(France) 3aFRbCCN0151-01934 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-gerontologie-et-societe.htm? zAccès aux sommaires et aux résumés1 bno. 5 (jun-1978) -....cParisdMagasins/AnnexeeP 8° 4424 aZPAY aexempb201106 aDEW 305-30601403nas 2200409 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001392000047001452100050001923000047002423260011002894300081003004510058003815170044004395300047004836010038005306060038005686060050006066070053006567120024007098010021007338560029007548560042007839550054008259550054008799720009009339920025009429920012009679920014009790000083238000008323820130319051452.01 a0070-394X aFNSP370950 a0000083238 a19900101a19589999 ba0 ager aDE ar10aGeschäftsbericht der Deutschen Bundesbank aFrankfurt am MaincDeutsche Bundesbankd1958- aEn version électronique à partir de 2007 aAnnuel 1aGeschaftsbericht der Bank Deutscher Länder für die Jahre < Coll. 4°0082 > 1aAnnual report - Deutsche Bundesbank < P 4°5471 bis >10aGeschäftsbericht - Deutsche Bundesbank00aGeschäftsbericht der Deutschen Bundesbank02aDeutsche BundesbankxPériodiques aFinancesyAllemagnexPériodiques aPolitique monétaireyAllemagnexPériodiques aAllemagnexConditions économiquesxPériodiques02aDeutsche Bundesbank 3aFRbCCN0070-394X4 uhttp://www.bundesbank.de zContenu : Texte intégral depuis 19961 b(1957)-(1979)cParisdMagasins/AnnexeeCOL4°00821 b(1980)-(2006)cParisdMagasins/AnnexeeP 4° 5471 aZGRA aGEO RA5.01 Allemagne aDEW 332 aDEW 330.901107nls 2200349 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000095001502100050002452300024002953260011003194510040003306010038003706060038004086060050004466070053004967100024005498010013005738560029005868560086006159550005007019920025007069920012007319920014007430001130124000113012420130319051452.0 a0001130124 a a19969999k fre 01 ba0 ager aDE ar aak z  adr 10aGeschäftsbericht der Deutschen Bundesbankb[Ressource électronique]fDeutsche Bundesbank aFrankfurt am MaincDeutsche Bundesbankd1996- aRevue électronique aAnnuel 1tAnnual report - Deutsche Bundesbank02aDeutsche BundesbankxPériodiques aFinancesyAllemagnexPériodiques aPolitique monétaireyAllemagnexPériodiques aAllemagnexConditions économiquesxPériodiques02aDeutsche Bundesbank 0aFRbFNSP4 uhttp://www.bundesbank.de zContenu : texte intégral du rapport depuis 1996 en version allemande et anglaise1 r aGEO RA5.01 Allemagne aDEW 332 aDEW 330.900978nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004500154210004800199326001600247607003800263607004900301801002100350856007000371856003600441955006600477957005700543972000900600991001800609992002500627992001200652039556417000002058920130319051452.01 a0340-613X aFNSP155984 a0000020589 a19900101a19759999 ba0 ager aDE aaha 10aGeschichte und Gesellschaft (Göttingen) aGöttingencVandenhoeck und Ruprechtd1975- aTrimestriel aAllemagnexHistoirexPériodiques aAllemagnexConditions socialesxPériodiques 3aFRbCCN0340-613X4 uhttp://hsozkult.geschichte.hu-berlin.de/zeitschr/gug/gugindex.htm zContenu : sommaires depuis 19841 bvol. 6 no. 1 (1980) -....cParisdMagasins/AnnexeeP 8° 44281 b(1975) -(1984)cParisdMagasins/AnnexeeP Index 0348 aZPAY aexempb200911 aGEO RA5.01 Allemagne aDEW 94300851nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003800163210004100201326001600242430002000258607005500278801001300333856002500346856006500371955006700436972000900503992002500512992001200537168221276000045983020140107180033.01 a1619-6910 a0000459830 a a20029999k fre ba0 ager aDE a 0  ar aah z 0 10aGesellschaft, Wirtschaft, Politik aLeverkusencLeske und Budrichd2002- aTrimestriel 1tGegenwartskunde aAllemagnexPolitique et gouvernementxPériodiques 0aFRbFNSP4 uhttp://www.gwp-pb.de zContient : Sommaires des numéros parus depuis le n°1, 20001 bvol. 51 no. 1 (2002) -....cParisdMagasins/AnnexeeP 8° 2606 aZPAY aGEO RA5.01 Allemagne aDEW 94301156cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200004300180207002300223210004800246326001200294430004800306517004400354530003300398606004500431676000800476801003000484801002300514802000700537856003200544856003000576955006700606955006300673992002200736992001200758130470139000117457620130319051452.01 a1969-1009 aissn19691009 a0001174576 a20090116a20099999k y0frey0103 ba0 afre aFR ay  ar aafu uu 10aGestion & finances publiquesela revue 0ano. 1 (jan-2009) - aPariscGestion et Finances Publiquesd2009- aMensuel 1tLa Revue du Trésor (Paris)xISSN 0035-271310aGestion et finances publiquesela revue00aGestion & finances publiques aFinances publiquesyFrancexPériodiques a336 3aFRbAbesc20090611gAFNOR 3aFRbISSNc20090427 a074 uhttp://www.gestionfipu.com/ zContient : sommaires 20091 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3361 bno. 1 (jan-2009) -....cParisdMagasins/AnnexeeP 4° 0059 aGEO RA4.06 France aDEW 33600983nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210007300188326001500261606003600276606004200312606003700354710006300391856004900454856003700503955007000540972000900610991001800619992001600637992001600653036987697000017679420130319051453.01 a1405-1079 aFNSP663053 a0000176794 a19900101a19929999 ba0 aspa aMX aaja 10aGestión y política pública aMéxicocCentro de Investigación y Docencia Económicas, A.Cd1992- aSemestriel aScience politiquexPériodiques aAdministration publiquexPériodiques aPolitique publiquexPériodiques02aCentro de investigación y docencia económicasc(Mexique)4 uhttp://www.gestionypoliticapublica.cide.edu/ zAccès libre au texte intégral.1 bvol. 1 no. 1 (jul-1992) -....cParisdMagasins/AnnexeeP 8° 6205 aZSAB aexempb201301 aDEW 350-354 aDEW 320-32100880nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210003000188326001200218606003900230710004800269801002100317856004000338856003600378955010000414972000900514991001800523992002500541992001200566038713659000002109720130319051453.01 a0016-9447 aFNSP157087 a0000021097 a19900101a19502004 ba0 ager aDE aafu 10aGewerkschaftliche Monatshefte aKölncBund-Verlagd1950- aMensuel aSyndicatsyAllemagnexPériodiques02aDeutscher GewerkschaftsbundbBundesvorstand 3aFRbCCN0016-94474 uhttp://www.gmh.dgb.de/jahresin.html zContenu : Sommaires depuis 19501 bvol. 24 no. 10 (oct-1973) -vol. 55 no. 11/12 (nov/dec-2004)cParisdMagasins/AnnexeeP 8° 3357 aZPAY aexempb200911 aGEO RA5.01 Allemagne aDEW 33101168cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200003800174210003100212300005300243326001500296452005800311530005600369606004500425710007900470801003000549801002300579802000700602856005200609856004800661955006400709992003300773992001200806058799907000114350920130319051453.01 a1593-0793 aissn15930793 a0001143509 a20010829a20019999k y0frey0103 ba0 aita aIT ay  aaju uu 10aGiornale di storia costituzionale aMaceratacQuodlibetd2001- aContient des articles en français et en anglais aSemestriel 1tGiornale di storia costituzionale (Online)x1827-795010aGiornale di storia costituzionaleb(Testo stampato) aHistoire constitutionnellexPériodiques02aLaboratorio di storia costituzionale "Antoine Barnave"c(Macerata, Italie) 3aFRbAbesc20070713gAFNOR 3aFRbISSNc20010829 a0d4 uhttp://www.quodlibet.it/generale/giostocost.htm zContenu : sommaires depuis le n° 1 de 20011 bno. 13 (jan-2007) -....cParisdMagasins/AnnexeeP 8° 7030 aGEO RS Sans aspect régional aDEW 34200892nas0 2200313 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004700163210004000210301003400250326001500284606003700299607003300336801003000369856003500399856003600434955007100470972000900541992001600550992001200566113696620000107909020130319051454.01 a1976-068X a0001079090 a20070402a20069999k y0frey0103 ba0 aeng aKR a 0  ar aaja 0 10aGlobal AsiafEast Asia Foundation (Séoul) aSéoulcEast Asia Foundationd2006- aDemande de numérotation ISSN aSemestriel aEconomie politiquexPériodiques aAsie orientalexPériodiques 3aFRbAbesc20070402gAFNOR4 uhttp://globalasia.org/main.php zAccès libre au texte intégral1 bvol. 1 no. 1 (sep-2006) -....cParisdMagasins/AnnexeseP 4° 7187 aZPAY aGEO RH Asie aDEW 95001319nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200011800163207002900281210002800310320002300338326001800361430003200379517003800411606002300449606004400472606004400516712007500560801001300635856010900648856010800757955007100865972000900936992001200945078920256000060900020130319051454.01 a1478-1158 a0000609000 a a20039999 fre 01 ba0 aeng aGB a 0  ar aai z 0 10aGlobal change, peace & securityfpublished in cooperation with the School of Social Sciences, La Trobe University 1aVol.15, n°1 (Feb.2003)- aAbingdoncCarfaxd2003- aISSN non vérifié a3 n°s par an 1tPacifica review,x1323-910410aGlobal change, peace and security aPaixxPériodiques aRelations internationalesxPériodiques aSécurité internationalexPériodiques02aLa Trobe Universityc(Melbourne, Australie)bSchool of Social Sciences 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713440448db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 15 no. 1 (fev-2003) -....cParisdMagasins/AnnexeeP 8° 6505 aZSAB aDEW 32701272nas0 2200337 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109110001600127200006000143210004000203301004300243306010000286326001100386437005200397606007000449710002500519801003000544801001300574830007500587856012000662856004300782955006500825972000900890992002100899992001400920088969754000084401020130319051454.0 a0000844010 a20050819a19969999k y0frey0103 ba0 aeng aCH a 0  aakaih 0 14aThe global competitiveness reportfWorld Economic Forum aGenevacWorld Economic Forumd1996- aDemande de numérotation ISSN en cours aVols. 1999-2003/2004 publ. par Oxford University Press ; 2004/2005-.... par Palgrave Macmillan. aAnnuel 1tThe World competitiveness report ...x1015-5449 aCompétitivité (économie politique)xStatistiquesxPériodiques02aWorld Economic Forum 3aFRbAbesc20050819gAFNOR 0aFRbFNSP ademandé par Thomas Orliac : transmis aux ANNUAIRES le 21/08/2005 (dm)4 uhttp://www.weforum.org/site/homepublic.nsf/Content/Global+Competitiveness+Programme%5CGlobal+Competitiveness+Report zContenu : extraits du rapport en ligne1 b(2004/2005) -(2007/2008)cParisdMagasins/AnnexeeP 4° 7078 aZPAY aGEO RQ Universel aDEW 338.900943cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200002900180210003300209676000800242710003100250801003000281801002300311801001300334802000700347856004300354856003700397955006100434955005200495972000900547992002100556992001600577104769106000051706620130319051454.0 a1749-3161 aissn17493161 a0000517066 a20030312a20029999uuuy0frey50 ba0 aeng aGB ay 0  ar aaka 0uu 10aGlobal corruption report aLondoncProfile Booksd2002- a36002aTransparency International 3aFRbAbesc20090827gAFNOR 3aFRbISSNc20090617 0aFRbFNSP a02 uhttp://www.globalcorruptionreport.org/ zAccès libre au texte intégral.1 bLa dernière annéecParisd27, Salle 4e étageeDEW 3601 b(2003) -...cParisdMagasins/AnnexeeP 8° 6673 aZPAY aGEO RQ Universel aDEW 364-36501214cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200001700180207003300197210002900230326001600259430004500275452003700320606003800357606003400395801003000429801002300459802000700482856010900489856010800598955007600706972000900782992001600791992003300807094895872000116273920130319051454.01 a1744-0572 aissn17440572 a0001162739 a20040423a20049999k y0frey0103 ba0 aeng aGB ay 0  ar aaha 0uu 10aGlobal crime 0aVol. 6, issue 1 (Feb. 2004)- aLondoncRoutledged2004- aTrimestriel 1tTransnational organised crimex1357-7387 1tGlobal crime (Online)x1744-0580 aCrimes et criminelsxPériodiques aCrime organiséxPériodiques 3aFRbAbesc20090225gAFNOR 3aFRbISSNc20090225 a024 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t714592492db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1/2 (fev/mai-2008) -....cParisdMagasins/AnnexeeP 8° 7074 aZPAY aDEW 364-365 aGEO RS Sans aspect régional01405nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005000139210004000189225002200229300002900251326001100280430003300291452005200324517000800376606005900384606008400443710007000527830005900597856023600656955005400892972000900946991001800955992004200973992001201015992001601027040182819000021547920131011110149.01 a1020-5454 aFNSP777291 a19900101a19979999 ba0 aeng aUS aaka 10aGlobal development finance‎fThe World Bank aWashington, D.C.cWorld Bankd1997-23aA World Bank book aPublication en 2 volumes aAnnuel 1aWorld debt tablesx0253-2859 1tGlobal development finance (Online),x1996-842610aGDF aFinancesyPays en voie de développementxPériodiques aDettes extérieuresyPays en voie de développementxStatistiquesxPériodiques02aBanque internationale pour la reconstruction et le développement atoute la collection en depôt au CTLES en juillet 2013 uhttps://acces-distant.sciences-po.fr/fork?http://ddp-ext.worldbank.org/ext/DDPQQ/member.do?method=getMembers&userid=1&queryId=zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1997) -(2005)cParisdMagasins/AnnexeeP 4°4473 aZPAY aexempb201306 aGEO RO Pays en voie de développement aDEW 332 aDEW 310-31901166nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005900154210004000213326001100253517003000264606004500294606003500339607007400374676001000448710007000458856013000528955006400658955005300722972000900775992004200784992001400826040152685000015595120130319051454.01 a1014-8906 aFNSP607255 a0000155951 a19900101a19909999 f ba0 aeng aUS aaka 10aGlobal economic prospects and the developing countries aWashington, D.C.cWorld Bankd1990- aAnnuel10aGlobal economic prospects aDéveloppement économiquexPériodiques aAide économiquexPériodiques aPays en voie de développementxConditions économiquesxPériodiques a338.902aBanque internationale pour la reconstruction et le développement4 uhttp://extsearch.worldbank.org/servlet/SiteSearchServlet?q=global%20economic%20prospects%20and%20the%20developing%20countries1 bLa dernière annéecParisd27, Salle 1er étageeDEW 338.91 b(1993) -....cParisdMagasins/AnnexeeP 4° 6458 aZPAY aGEO RO Pays en voie de développement aDEW 338.900905nls 2200301 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000054001642100052002182300024002703260016002946060057003106060043003678010013004108560032004238560108004559550005005639920023005689920012005910000995136000099513620130319051454.01 a1524-5861 a0000995136 a a20009999k fre 01 ba0 aeng aUS ar aah z  adr 10aGlobal economy journalb[Ressource électronique] aBerkeley, CAcBerkeley Electronic Pressd2000 - aRevue électronique aTrimestriel aRelations économiques internationalesxPériodiques aFinances internationalesxPériodiques 0aFRbFNSP4 uhttp://www.bepress.com/gej/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RC2 Etats-Unis aDEW 33201141cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200003400174207003100208210003600239326001600275530004300291606004700334606002900381676000800410801003000418801002300448802000700471856006400478856007600542955006700618955007300685972000900758992001200767076788482000107885920130319051454.01 a1526-3800 aissn15263800 a0001078859 a20000630a20019999k y1frey0103 ba0 aeng aUS a 0  aaha 0uu 10aGlobal environmental politics 0aVol. 1, no. 1 (Feb. 2001)- aCambridge, MAcMIT Pressd2001- aTrimestriel10aGlobal environmental politicsb(Print) aPolitique de l'environnementxPériodiques aEcologismexPériodiques a333 3aFRbAbesc20060106gAFNOR 3aFRbISSNc20000630 a014 uhttp://muse.jhu.edu/journals/global_environmental_politics/ zContenu : sommaires et résumés d'articles depuis le vol.3, n°1, 20031 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3331 bvol. 1 no. 1 (mai -2001) -....cParis, Magasins/Annexes : P 8° 6948 aZSAB aDEW 33301307nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154207002600176210005400202326002300256326002800279606004400307606003600351676000800387856007200395856003400467856003600501856012800537856010800665955006700773955006600840972000900906991001800915992001200933040319784000015852220130319051454.01 a1075-2846 aFNSP613375 a0000158522 a19900101a19959999 ba0 aeng aUS aaha 10aGlobal governance 1avol. 1, no. 1 (1995)- aBoulder, COcLynne Rienner Publishers, Incd1995- aTrimestrielb1998- a3 nos par anb1995-1997 aRelations internationalesxPériodiques aScience politiquexPériodiques a3274 uhttp://www.hunger.brown.edu/Departments/ACUNS/NEW_GG/GG.index.shtml4 uhttp://www.rienner.com/gg.htm zContenu : sommaires depuis 19994 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=25L&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 1 no. 1 (1995) -....cParisdMagasins/AnnexeeP 8° 6127 aZSAB aexempb201204 aDEW 32701234nas 2200349 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000092001502100030002422250049002723000067003213260011003884510114003996060044005136060048005577100055006058010013006608560066006738560036007399550047007759720009008229920021008319920016008529920016008680000538910000053891020130319051454.0 a0000538910 a a19999999k fre ba0 aeng aUS a 0  ar aak z 0 10aGlobal illicit drug trendsfUnited Nations Office for Drug Control and Crime Prevention aNew-YorkcUN-ODCCPd1999-20aODCCP studies on drugs and crimeestatistics aL'organisme éditeur devient en 2003 Office on Drugs and Crime aAnnuel 1tTendances mondiales des drogues illicitesfNations Unies Office contre la drogue et le crime < P4°6978 bis > aToxicomaniexStatistiquesxPériodiques aDroguesxTraficxStatistiquesxPériodiques02aNations UniesbOffice contre la drogue et le crime 0aFRbFNSP4 uhttp://www.unodc.org/unodc/en/global_illicit_drug_trends.html zAccès libre au texte intégral1 b(2003)cParisdMagasins/AnnexeeP 4° 6978 aZGRA aGEO RQ Universel aDEW 364-365 aDEW 310-31900953nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005600163210004400219326001600263530003600279606004800315606004400363676000800407801001300415856004200428856007800470955007000548972000900618992001200627058263780000048688720130319051455.01 a1470-2266 a0000486887 a a20019999k fre ba0 aeng aGB a 0  ar aah z 0 10aGlobal networksea journal of transnational affairs aOxford, UK;Malden, MAcBlackwelld2001- aTrimestriel00aGlobal networksb(Oxford.Print) aMondialisationxAspect socialxPériodiques aRelations internationalesxPériodiques a303 0aFRbFNSP4 uhttp://www.globalnetworksjournal.com/ zContenu : sommaires des numéros publiés à partir du n°1, january 20011 bvol. 1 no. 1 (jan-2001) -....cParisdMagasins/AnnexeeP 8° 6650 aZSAB aDEW 30300928nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002500163210002400188326001800212606003600230606004800266801001300314856010800327856010800435955007000543972000900613992001600622064130304000042151620130319051455.01 a1468-0181 a0000421516 a a20019999k fre ba0 aeng aGB a 0  ar aai z 0 10aGlobal social policy aLondoncSaged2001- a3 n°s par an aPolitique socialexPériodiques aMondialisationxAspect socialxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (avr-2001) -....cParisdMagasins/AnnexeeP 8° 6603 aZSAB aDEW 360-36301070nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001900139210002800158326002300186326002800209430004300237606004400280856005700324856006000381856010900441856010800550955007100658972000900729991001800738992001200756055053386000020332820140114174152.01 a1360-0826 aFNSP741163 a19900101a19969999 ba0 aeng aGB aaha 10aGlobal society aAbingdoncCarfaxd1996- aTrimestrielb1999- a3 nos par anb1996-1998 1aParadigms (Canterbury)xISSN 0951-9750 aRelations internationalesxPériodiques4 uhttp://www.tandf.co.uk/journals/carfax/13600826.html zContenu : sommaires depuis le vol. 10, n°1, janv. 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713423373db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 10 no. 1 (jan-1996) -....cParisdMagasins/AnnexeeP 8° 6284 aZSAB aexempb201301 aDEW 32700938cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200005600174210007700230326001500307530002900322801003000351801003000381802000700411856003500418856006500453955006600518972000900584992001900593992001200612044943334000081969220130319051457.01 a1481-5869 accn1481-5869 a0000819692 a20000407a19989999 y0frey0103 ba0 afre aCA ay 0  aaja 0 10aGlobeerevue internationale d'études québécoises aMontréalcProgramme d'études sur le Québec, Université McGilld1998- aSemestriel10aGlobeb(Montréal. 1998) 3aFRbAbesc20081203gAFNOR 3aFRbAbesc20040918gAFNOR a044 uhttp://www.revueglobe.uqam.ca/ zContenu : sommaires et résumés depuis le vol.1, no 1, 19981 bvol. 5 no. 2 (2002) -....cParisdMagasins/AnnexeeP 8° 6820 aZGRA aGEO RC1 Canada aDEW 97101056nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210002500178326001200203430005000215606003200265606005000297676001000347710004300357856004300400955006800443955017100511972000900682992003900691992001200730040212394000007348320130319051458.01 a1026-9452 aFNSP335135 a0000073483 a19900101a19929999 y ca0 arus aRU aafa 10aGosudarstvo i pravo aMoskvacNaukad1992- aMensuel 1aSovetskoe gosudarstvo i pravoxISSN 0038-5204 aDroityRussiexPériodiques aInstitutions politiquesyRussiexPériodiques a943.702aInstitut gosudarstva i pravac(Moscou)4 uhttp://www.igpran.ru/journal/index.php1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 943.71 bno. 3 (1992) -no. 6 (1997) ; no. 1 (1999) -no. 3 (1999) ; no. 3 (2000) -....cParisdMagasins/AnnexeeP 4° 0336wManque : no. 4 (2000) ; no. 10 (2000) ; no. 2 (2001) aZPAY aGEO RA7.21 Russie (depuis 1991-92) aDEW 34001175nas0 2200349 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003500163207001700198210004100215326001600256517003600272606003600308606004200344676001000386801003000396856011100426856010800537955006700645955006700712972000900779992002100788992001600809160348943000122702720130329100339.01 a2260-0965 a0001227027 a20120417a20129999k y0frey50 ba0 afre aFR ay  ar aaha 10aGouvernement & action publique 0ano 1 (2012)- aPariscPresses de Sciences Pod2012- aTrimestriel10aGouvernement et action publique aScience politiquexPériodiques aAdministration publiquexPériodiques a320.6 3aFRbAbesc20120417gAFNOR4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-gouvernement-et-action-publique.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 1 (jan/mar-2012) -....cParisdMagasins/AnnexeeP 8° 7182 aZPAY aGEO RQ Universel aDEW 320-32101482nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001500154207002900169210002900198326001600227530003000243606004200273606005500315606003600370676000800406856012800414856010800542856010100650856010800751955006700859955007000926955006900996972000901065991001801074992001601092040081168000002113920131219164141.01 a0952-1895 aFNSP157189 a0000021139 a19910103a19889999 ba0 aeng aGB aaha 10aGovernance 1aVol.1, no.1 (jan-1988) - aOxfordcBlackwelld1988- aTrimestriel 0aGovernancebOxford. Print aAdministration publiquexPériodiques aTechniques de décision en politiquexPériodiques aFonction publiquexPériodiques a3204 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=7QX&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101084 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bvol. 1 no. 1 (jan-1988) -....cParisdMagasins/AnnexeeP 8° 51641 bL'année en courscParisdBibliothèque de rechercheeP 8° 5164 aZCAD aexempb201011 aDEW 350-35400920nas 2200253 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210003900191326001600230606007000246856012800316856010800444955008400552991001800636992001200654039704165000020231820130319051500.01 a0740-624X aFNSP737433 a0000202318 a19900101a19849999 ba0 aeng aUS aaha 10aGovernment information quarterly aGreenwich, Conn.cJAI Pressd1984- aTrimestriel aPublications officiellesyEtats-UnisxBibliographiexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=GIQ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 13 no. 2 (1996) -vol. 16 no. 3 (1999)cParisdMagasins/AnnexeseP 8° 6282 aexempb201301 aDEW 01001399cas0 2200361 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116106000600123110001600129200012000145207002500265210002700290326001600317422004300333430004600376606003600422676000800458710008700466801003000553856003500583856003700618856012400655856010800779955006600887955006300953972000901016992001201025093787588000096695220130319051500.01 a1777-375X a0000966952 a20051206a20059999k y0frey0103 ba0 afre aFR ar aah 14aLes grands dossiers des sciences humainesfAssociation de formation, d'études et de recherche en sciences humaines 0aN° 1 (2005, déc.)- aAuxerrecAFERSHd2005- aTrimestriel 1tSciences humaines (Auxerre)x0996-6994 1tSciences humaines. Hors sériex1252-3429 aSciences humainesxPériodiques a30002aAssociation de formation, d'étude et de recherche en sciences humainesc(Auxerre) 3aFRbAbesc20060427gAFNOR4 uhttp://www.scienceshumaines.fr zContenu : sommaires et résumés4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/magazine-les-grands-dossiers-des-sciences-sumaines.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3001 bno. 1 (mar-2005) -....cParisdMagasins/AnnexeeP 4° 6218 aZPAY aDEW 30000820nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210004400189326001600233606004300249606003900292856004500331856005300376955007000429972000900499991001800508992001600526040038122000016097420130319051502.01 a0926-2644 aFNSP620043 a0000160974 a19900101a19929999 ba0 aeng aNL aaga 10aGroup decision and negotiation aDordrechtcKluwer Academic Publ.d1992- aTrimestriel aNégociations (affaires)xPériodiques aGestion d'entreprisexPériodiques4 uhttp://www.wkap.nl/jrnltoc.htm/0926-2644 zContenu : sommaires depuis le vol. 4, no 1, 19951 bvol. 4 no. 1 (jan-1995) -....cParisdMagasins/AnnexeeP 8° 6137 aZSAB aexempb201202 aDEW 650-65801291nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210006000176326001600236606004200252606004200294710006200336801002100398856012800419856010800547856010100655856010800756955009000864972000900954992001400963036304093000002082420131127163949.01 a0017-4815 aFNSP156446 a0000020824 a19900101a19709999 ba0 aeng aUS aahu 10aGrowth and change aLexington, KycCollege of Business and Economicsd1970- aTrimestriel aGéographie économiquexPériodiques aIndustriexLocalisationxPériodiques02aUniversity of KentuckybCollege of Business and Economics 3aFRbCCN0017-48154 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=GRC&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100950 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 2 no. 1 (jan-1971) -vol. 43 no. 4 (dec-2012)cParisdMagasins/AnnexeeP 4° 3192 aZPAY aDEW 330.901067cas0 2200325 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123110001600141200007000157210002400227326001100251517003400262530007100296607006200367712006500429801003000494801003000524856005600554856003600610955005300646972000900699992001900708992001400727094684863000091919720130319051503.0 a1760-902X a0000919197 a20060106a19999999k y0frey50 ba0 afre aFR ay 0  aakaih 0 13aLa GuadeloupefInstitut d'émission des départements d'Outre-mer aPariscIEDOMd1999- aAnnuel13aLa Guadeloupeerapport annuel13aLa Guadeloupe - Institut d'émission des départements d'Outre-mer aGuadeloupexConditions économiquesxPériodiques2rameau02aInstitut d'émission des départements d'Outre-merc(France) 3aFRbAbesc20100315gAFNOR 3aFRbAbesc20060113gAFNOR4 uhttp://www.iedom.fr/dom/guadeloupe/publications.asp4 zAccès libre au texte intégral1 b(1999) -....cParisdMagasins/AnnexeeP 8° 6855 aZGRA aGEO Guadeloupe aDEW 330.900929nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000022001502100005001722300024001773260014002016060029002156070034002448010013002788560192002918560108004839550005005919920031005969920012006270001132428000113242820130319051503.0 a0001132428 a a19909999k fre 01 ba0 aeng aGB ar aaa z  adr 10aGuardian (London) a aRevue électronique aQuotidien aActualitéxPériodiques aGrande-BretagnexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.02 Grande-Bretagne aDEW 05001403nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004800154210005100202326001600253430011000269517004800379606002500427676000800452710006100460801002100521856012300542856010800665955006700773955006500840957010900905972000901014991001801023992001201041001234641000002114420130319051504.01 a0984-2292 aFNSP157201 a0000021144 a19900101a19879999 ba0 afre aFR aahu 10aGuerres mondiales et conflits contemporains aPariscPresses universitaires de Franced1987- aTrimestriel 1aRevue d'histoire de la Deuxième guerre mondiale et des conflits contemporains (0755-1584) < P 8° 0738 >10aGuerres mondiales et conflits contemporains aGuerrexPériodiques a35502aInstitut d'histoire des conflits contemporainsc(France) 3aFRbCCN7016/68464 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-guerres-mondiales-et-conflits-contemporains.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3551 bno. 145 (fev-1987) -....cParisdMagasins/AnnexeeP 8° 07381 bno. 1 (1950) -no. 200 (2000)cParisdMagasinseDEW 355zCet index constitue le no. 231, 2008 de la revue aZCAD aexempb201102 aDEW 32701097nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000060001552100050002152250076002653000145003413260011004864300060004976060041005577100060005988560039006589550055006979720009007529920022007619920012007830000122643000012264320130319051504.01 a0984-5593 aFNSP504733 a0000122643 a19940329b19872008 ba0 afre aFR aaka 10aGuide budgétaire communal, départemental et régional aPariscLa Documentation françaised1987-200821aCollection Décentralisation. Série Budgets des collectivités locales aLes volumes du "Guide budgétaire communal, départemental et régional" sont publiés séparément et consultables en version électronique aAnnuel 1aGuide budgétaire communal et départementalx0984-5461 aBudgets locauxyFrancexPériodiques aFrancebDirection générale des collectivités locales4 uhttp://www.dgcl.interieur.gouv.fr/1 b(1987) -(2008)cParisdMagasins/AnnexeeP 4° 5004 aZGRA aGEO RA4.06 France aDEW 33601141nas 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000116001502070010002662100046002762250036003223260011003586060056003696060047004256060042004727100067005148010013005818560078005948560033006729550052007059720009007579920025007669920012007910000609085000060908520130319051504.0 a0000609085 a a20049999 fre 01 ba0 afre aFR a 0  ar aak z 0 10aGuide de l'environnement et de la qualité de l'habitatfMinistère de l'écologie et du développement durable 1a2004- aPariscLa Documentation françaised2004-20aCollection Droits et démarches aAnnuel aEnvironnementxDroityFrancexGuides, manuels, etc. aEnvironnementxDroityFrancexPériodiques aLogementxDroityFrancexPériodiques01aFrancebMinistère de l'écologie et du développement durable 0aFRbFNSP4 uhttp://www.ladocumentationfrancaise.fr/catalogue_pages/index.shtml?xtor=6 zContenu : résumé en ligne.1 b(2004-2005)cParisdMagasins/AnnexeeP 8° 6748 aZPAY aGEO RA4.06 France 01 aDEW 33301064nas 2200301 i 450 002001100000005001700011035001500028035001500043100004100058101000800099102000700107110001600114200004700130210002500177326001100202517006800213601006800281606007200349710005400421856004600475856004200521955006500563955006600628972000900694991001800703992002500721992001600746000018758120130409115237.0 aFNSP694404 a0000187581 a19900101a00019999 ba0 afre aFR aaka 10aGuide de l'étudiantfSciences po Bordeaux aBordeauxcIEPd0001- aAnnuel10aGuide de l'étudiant - Institut d'études politiques (Bordeaux)02aInstitut d'études politiquesc(Talence, Gironde)xPériodiques aEnseignement supérieuryFrancexProgrammes d'étudesxPériodiques02aInstitut d'études politiquesc(Talence, Gironde)4 uhttp://www.sciencespobordeaux.fr/accueil/ zContenu : présentation de l'institut1 b(1980/1981) -(2001/2002)cParisdMagasins/AnnexeeP 8° 54021 b(1952/1953) -(1979/1980)cParisdMagasins/AnnexeeCOL12°0107 aZGRA aexempb201303 aGEO RA4.06 France 01 aDEW 370-37901284cas0 2200433 450 001001000000002001100010005001700021011001400038035001400052035001700066035001600083035001700099035001500116100004100131101000800172102000700180105001800187106000600205110001600211200003400227210002600261530004300287606003400330606003300364606005500397676000800452801003000460801003000490801003000520801003100550801002300581802000700604856006900611856005400680955007000734972000900804992002500813992001200838036062421000082326320130606160542.01 a0997-8453 a073805416 accn0997-8453 aocm11846375 aissn09978453 a0000823263 a19850325a19849999m y0frey0103 ba0 afre aFR a 0  ar aak 0 13aLe guide des relations presse aPariscEdinoved1984-13aLe Guide des relations presseb(Paris) aMédiasyFrancexPériodiques aPresseyFrancexPériodiques aRelations publiquesyFrancexGuides, manuels, etc. a070 3aFRbAbesc20050216gAFNOR 3aFRbAbesc20050216gAFNOR 1aUSbOCLCc20050216gAACR2 2aFRbAUROCc20050216gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.leguidedesrelationspresse.com/consulter_accueil.phtml zContenu : sommaire de l'édition 2005, 22e année1 bno. 21 (2004) ; no. 26 (2009)cParisdMagasins/annexeeP 8° 6825 aZPAY aGEO RA4.06 France 01 aDEW 07001091nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001322000054001392100046001932250076002393000076003153260011003916060053004027100060004558010021005158560137005369550054006739720009007279920025007369920012007619920016007730000128378000012837820130319051504.01 a1152-510X aFNSP523223 a0000128378 a19900101a00019999 ba0 afre aFR10aGuide statistique de la fiscalité directe locale aPariscLa Documentation françaised0001-21aCollection Décentralisation. Série Budgets des collectivités locales aEd.2003 et 2004 uniquement consultables en ligne, pas de version papier aAnnuel aImpôt localyFrancexStatistiquesxPériodiques02aFrancebDirection générale des collectivités locales 3aFRbCCN7002/26314 uhttp://www.dgcl.interieur.gouv.fr/search_form?SearchableText=GUIDE+STATISTIQUE+DE+LA+FISCALITE+DIRECTE+LOCALE&review_state=published1 b(1983) -(2007)cParisdagasins/AnnexeeP 4° 5046 aZGRA aGEO RA4.06 France 01 aDEW 336 aDEW 310-31901233cas0 2200397 450 00100100000000200110001000500170002101100140003803500140005203500170006603500150008310000410009810100080013910200070014710500180015411000160017220000660018821000240025432600110027841000830028951200200037251700300039253000110042260700580043371000650049180100300055680100230058680100300060980200070063985600520064685600360069895500530073497200090078799200140079699200250081009468457X000091919420130319051505.0 a1760-8996 a131723111 aissn17608996 a0000919194 a20060106a19999999k y0frey50 ba0 afre aFR ay  azku uu 13aLa GuyanefInstitut d'émission des départements d'Outre-mer aPariscIEDOMd1999- aAnnuel 1tRapport annuel - Institut d'émission des départements d'Outre-merx1632-420X13aLa Guyane en...13aLa Guyaneerapport annuel00aGuyane aGuyanexConditions économiquesxPériodiques2rameau02aInstitut d'émission des départements d'Outre-merc(France) 3aFRbAbesc20090423gAFNOR 3aFRbISSNc20090225 3aFRbAbesc20060112gAFNOR a074 uhttp://www.iedom.fr/dom/guyane/publications.asp4 zAccès libre au texte intégral1 b(1999) -....cParisdMagasins/AnnexeeP 8° 6852 aZGRA aDEW 330.9 aGEO RA4.06 France 0101069nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210002600173326001600199437003600215437004800251601007600299606004100375710006200416830005500478856010500533955007700638972000900715991001900724992001200743048702595000018152020131009154052.01 a1020-3613 aFNSP676165 a0000181520 a19900101a19959999 f ba0 aeng aKE aaha 10aHabitat debate aNairobicUNCHSd1995- aTrimestriel 1tUNCHS (Habitat) newsx0255-271X 1tUNCHS (Habitat) shelter bulletinx1014-810802aCentre des Nations Unies pour les établissements humainsxPériodiques aEtablissements humainsxPériodiques02aCentre des Nations Unies pour les établissements humains atoute la collection envoyée au CTLES , juil. 2013 uhttp://www.unhabitat.org/pmss/getPage.asp?page=periodView&period=2301Accès libre au texte intégral1 bvol. 1 no. 1 (mar-1995) -no 2 (2008)cParisdMagasins/AnnexeeP 4° 3153 aZECH aexemp§b201306 aDEW 30401235cas0 2200349 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610600060012311000160012920001530014520700220029821000750032030600410039532600150043653000240045171000430047571100290051871200440054780100300059180100130062185600320063485601100066695500660077697200090084299200220085199200120087307870782X000035157820130806122040.01 a1565-5733 a0000351578 a20040601a20009999m y0frey0103 ba0 aeng aIL ar aaja 10aHagareInternational social science reviewfHumphrey institute for social researchgIsraël sociological societygBen-Gurion university of the Negev 0aVol. 1no. (2000)- a[Beer Sheva, Israël]cBen-Gurion university of the Negev pressd2000- aEditoriaux et résumés sur internet aSemestriel10aHagarb(Beer Sheva)02aHumphrey institute for social research02aIsrael sociology society02aBen-Gurion university of the Negev4340 3aFRbAbesc20050426gAFNOR 0aFRbFNSP4 uhttp://hsf.bgu.ac.il/hagar/ zContenu : sommaires, résumés et sélection d'articles en texte intégral depuis le volume 1, n°1, 20001 bvol. 1 no. 1 (2000) -....cParisdMagasins/AnnexeeP 8° 5694 aZPAY aGEO RG2.15 Israel aDEW 30101205nas0 2200373 450 00100100000000200110001000500170002101100140003802000190005203500160007103500150008710000410010210100080014310200070015110500180015811000160017620000350019220700260022721000560025332600180030951700080032760600290033560600440036480100300040880100200043880100210045880100150047980100150049485601030050985601080061295500660072099200120078699200330079812726311X000115746420130319051505.01 a1871-1901 aUSb2006208655 aocm70167848 a0001157464 a20080910a20069999 y0engy0103 ba0 aeng aNL ay  aai 04aThe Hague journal of diplomacy 0aVol. 1, no. 1 (2006)- aLeidenaBostoncMartinus Nijhoff Publishersdc2006- a3 n°s par an10aHJD aDiplomatiexPériodiques aRelations internationalesxPériodiques 3aFRbAbesc20080910gAFNOR 1aUSbOCLCgAACR2 2aFRbAUROCgAFNOR 0bDLCgAACR2 2bHVLgAACR24 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=114730 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (2006) -....cParisdMagasins/AnnexeeP 8° 7066 aDEW 327 aGEO RS Sans aspect régional01043cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200003700180210004100217326001500258517000900273606003700282606003400319801003000353801002300383802000700406856006400413856010800477955006600585972000900651992002100660992001200681133920658000121132920130319051505.01 a1876-4045 aissn18764045 a0001211329 a20090602a20099999k y0frey50 ba0 aeng aNL ay  ar aaja uu 10aHague journal on the rule of law aThe HaguecT.M.C. Asser Pressd2009- aSemestriel10aHJRL aPrimauté du droitxPériodiques aRègle de droitxPériodiques 3aFRbAbesc20101012gAFNOR 3aFRbISSNc20100215 a0j4 uhttp://journals.cambridge.org/action/displayJournal?jid=ROL zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bVol. 1 no. 1 (2009) -....cParisdMagasins/AnnexeeP 8° 7166 aZSAB aGEO RQ Universel aDEW 34000906nls 2200265 i 450 0010011000000020011000110050017000220350015000391000041000541010013000951020007001081050018001151060006001331100016001391350018001552000066001732100072002392300024003113260012003353300173003474520039005206070036005598010013005958560032006080000313740000031374020130319051506.0 a0000313740 a a00019999k fre ba0 aengaspa aUS a 0  az aaf z 0  adr 10aHandbook of Latin American studiesb[Ressource électronique] aWashington,D.C.cHispanic Division of the Library of Congressds.d. aDonnées textuelles aMensuel aDepuis 1935, bibliographie d'articles de périodiques et d'ouvrages en sciences sociales et humaines, dans différentes langues. Interrogation en anglais et en espagnol 1tHandbook of Latin american studies aAmérique latinexBibliographie 0aFRbFNSP4 uhttp://lcweb2.loc.gov/hlas/01068nas0 2200289 450 001001000000002001100010005001700021011001400038100004100052101000800093102001100101110001600112200010300128207002100231210004400252300002200296326001100318606005300329710007100382801003000453856017100483955006600654972000900720992001600729992001200745992002100757078858178000071382320140117162333.01 a1819-5512 a20040611a19979999 0frey0103 ba0 aeng aUSaCH aak 10aHandbook of world mineral trade statistics ...fUnited Nations conference on Trade and Development 0aHandbook (1997)- aNew YorkaGenevacUnited Nationsd1997- aUNCTAD/ITCD/COM/2 aAnnuel aIndustries minièresxStatistiquesxPériodiques02aConférence des Nations Unies sur le commerce et le développement 3aFRbAbesc20040611gAFNOR4 uhttp://unctad.org/SearchCenter/Pages/Results.aspx?k=Handbook%20of%20world%20mineral%20trade%20statistics&start1=1zAccés au texte intégral en ligne depuis 2006/20071 b(1990/1995) -(1996/2001);cParisdMagasins/AnnexeeP 4° 7057 aZGRA aDEW 310-319 aDEW 333 aGEO RQ Universel00892nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210003800174300004800212326002000260430004000280517002300320606004700343856005000390856005000440955007700490992002300567992001200590039997901000006701220130319051507.01 a0895-7983 aFNSP311194 a0000067012 a19900101b19882007 ba0 aeng aUS aaba 14aThe Harris poll aNew YorkcLouis Harrisd1988-2007 aNe paraît plus qu'en version électronique aBi-hebdomadaire 1aThe Harris survey (1981)x0273-103711aHarris interactive aOpinion publiqueyEtats-UnisxPériodiques4 uhttp://www.harrisinteractive.com/harris_poll/ zContenu : texte intégral depuis janvier 20051 bno. 1 (jan-1988)- no. 132 (dec-2007)cParisdMagasins/AnnexeeP 4° 3248 aGEO RC2 Etats-Unis aDEW 30301362nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000920015421000500024632600190029632600260031560600390034160600510038067600080043180100210043985600320046085600900049285602580058295500660084095500700090697200090097699200230098599200160100803871616X000002171420131022155933.01 a0017-8012 aFNSP158665 a0000021714 a19900101a19229999 ba0 aeng aUS aafa 10aHarvard Business ReviewfHarvard University, Graduate School of Business Administration aBoulder, C.O.cHarvard business reviewd1922- aMensuelb2001- aBimestrielb1950-2000 aGestion d'entreprisexPériodiques aGestion d'entrepriseyEtats-UnisxPériodiques a650 3aFRbCCN0017-80124 uhttp://www.hbsp.harvard.edu zContenu : sommaire et résumés du dernier n° ; résumés des 100 meilleurs articles4 uhttps://acces-distant.sciences-po.fr/fork?http://web.ebscohost.com/bsi/search?vid=1&hid=106&sid=5deac7e9-62a7-48dd-93ad-adb6220aec1e%40sessionmgr111zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 4e étageeDEW 6501 bvol. 28 no.1 (jan-1950) -....cParisdMagasins/AnnexeeP 4° 0299 aZPAY aGEO RC2 Etats-Unis aDEW 650-65800998nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005600154210004000210326001600250606004500266606004400311606003800355712002300393856005900416856006600475955008100541972000900622991001800631992002300649992001200672040332993000020862820130319051507.01 a1081-180X aFNSP756490 a0000208628 a19900101b19962007 ba0 aeng aUS aaha 14aThe Harvard international journal of press/politics aCambridge, MAcMIT Pressd1996-2007 aTrimestriel aCommunication en politiquexPériodiques aMédiasxAspect politiquexPériodiques aPresse et politiquexPériodiques02aHarvard University4 uhttp://mitpress.mit.edu/journal-home.tcl?issn=1081180X zContenu : sommaires et résumés depuis le vol. 1, n°1, 19961 bvol. 1 no. 1 (1996) -vol. 5 no. 3 (2000)cParisdMagasins/AnnexeeP 8° 6304 aZSAB aexempb201210 aGEO RC2 Etats-Unis aDEW 30200987nas 2200325 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200003800148210006000186326001500246430005800261606003800319710003500357711002300392801001300415856003100428856007500459955006700534972000900601991001800610992001200628992002100640038716240000043449720140110130513.01 a0017-8063 a a19679999k fre ba0 aeng aUS a 0  ar aaj z 0 10aHarvard international law journal aCambridge, Mass.cHarvard International Law Clubd1967- aSemestriel 1tThe Harvard international Law Club journalx0888-2584 aDroit internationalxPériodiques02aHarvard International Law Club01aHarvard Law School 0aFRbFNSP4 uhttp://www.harvardilj.org/ zContenu : selection d' artcles de numéros récents en texte intégral1 bvol. 31 no. 1 (1990) -....cParisdMagasins/AnnexeeP 8° 6610 aZCAD aexempb201301 aDEW 341 aGEO RQ Universel01318nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200002300138210006000161326001200221606003600233710003500269801002100304856012800325856010800453856009000561856010800651955018300759972000900942991001800951992002300969992001200992038716275000002132620130319051507.01 a0017-811X aFNSP157666 a0000021326 a19900101a18879999 ba0 aeng aUS10aHarvard law review aCambridge, Mass.cHarvard Law Review Associationd1887- aMensuel aDroityEtats-UnisxPériodiques02aHarvard Law Review Association 3aFRbCCN0017-811X4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=HLR&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0017811X.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 58 no. 3 (fev-1945) -....cParisdMagasins/AnnexeeP 8° 1993wManquants vol. 60 no. 3 (1947) à vol. 62 no. 6 (1949) et vol. 68 no. 1 (nov-1954) à vol. 74 no. 8 (jun-1961) aZPAY aexempb201103 aGEO RC2 Etats-Unis aDEW 34901126cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157110001600175200002400191207002400215210009900239326001800338606003600356710006900392801003000461801002300491802000700514856004700521856009900568955009600667972000900763992001600772048854611000096314620130319051508.01 a1527-9677 accn1527-9677 aissn15279677 a0000963146 a20000302a19999999k y1frey0103 ba0 aeng aUS a 0  aaia 0uu 14aThe Hedgehog review 0aVol. 1 (Fall 1999)- aCharlottesville, VAcInstitute for Advanced Studies in Culture, University of Virginiadc1999- a3 n°s par an aScience politiquexPériodiques02aInstitute for Advanced Studies in Culturec(Charlottesville, Va) 3aFRbAbesc20060105gAFNOR 3aFRbISSNc20051021 a014 uhttp://www.virginia.edu/iasc/hedgehog.html zContient les thèmes principaux des n°s depuis 1999 et les sommaires d'une sélection de n°s1 bvol. 2 no. 1 (pri-2000) ; vol. 4 no. 1 (pri-2002) -....cParisdMagasins/AnnexeeP 8° 6883 aZSAB aDEW 320-32100872nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001200154210003000166326001600196530002500212606003200237676000800269856005500277856007400332955006600406955005900472972000900531991001800540992001200558039773515000002129720130319051508.01 a0767-9513 aFNSP157617 a0000021297 a19910104a19889999 ba0 afre aFR aaha 10aHermès aPariscEd. du CNRSd1988- aTrimestriel10aHermèsbParis. 1988 aCommunicationxPériodiques a3004 uhttp://documents.irevues.inist.fr/handle/2042/8538 zcontenu : accès au libre au texte intégral des articles depuis 19881 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3001 bno. 1 (1988) -....cParisdMagasins/AnnexeeP 8° 5201 aZCAD aexempb201011 aDEW 30201110nas 2200349 i 450 001001000000002001100010005001700021011001400038035001300052035001500065100004100080101000800121102000700129110001600136200001400152207002500166210003000191326001600221606003200237676000800269801002100277830003200298856008800330856010800418955006700526955005600593957006300649972000900712991001800721992001200739992000900751039550427000000235820130724115607.01 a0338-487X aFNSP8460 a0000002358 a19900101a19769999 ba0 afre aFR aahu 10aHérodote 1ano 1 (jan-mar 1976)- aPariscDécouverted1976- aTrimestriel aGéopolitiquexPériodiques a327 3aFRbCCN0338-487X a1976-1999 conservé au 13 U4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-herodote.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bno. 1 (jan-1976) -....cParisdMagasinseP 8° 37521 bno. 1 (1976) -no. 80 (1996)cParisdMagasinseP Index 0777 aZCAD aexempb200912 aDEW 327 aPBUL01173nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210004400175326001800219606004200237801002100279856004500300856006200345856010300407856010800510955007100618957012700689972000900816991001800825992001600843038717786000002130020140114101940.01 a0018-1560 aFNSP157623 a0000021300 a19900101a19729999 ba0 aeng aNL aafa 10aHigher education aDordrechtcKluwer Academic Publ.d1972- a8 n°s par an aEnseignement supérieurxPériodiques 3aFRbCCN0018-15604 uhttp://www.wkap.nl/jrnltoc.htm/0018-1560 zContenu : sommaires depuis le vol. 33, n°1, janvier 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=102901 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (fév-1972) -....cParisdMagasins/AnnexeeP 8° 30331 bvol. 1-vol.20 (1972-1990)cParisdMagasins/AnnexeeP 8° 3033zcet index constitue le vol.23, n°2, March 1992 de la revue aZPAY aexempb200910 aDEW 370-37901184nls 2200277 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200015200124210002300276230002400299300012100323326001100444606004200455606007700497710013900574801001300713856014700726955000500873992001200878992001600890000124575920130626100205.0 a a20019999k fre 01 ba0 aeng aFR ar aak z  adr 10aHigher education management and policy :b[Ressource électronique]ejournal of the programme on institutional management in higher educationfOCDE aPariscOCDEd2001- aRevue électronique aA partir de 2008, la version française de Higher education management and policy est accessible uniquement en ligne aAnnuel aEnseignement supérieurxPériodiques aEnseignement supérieurxAspect économiqueyPays del'OCDExPériodiques02aOrganisation de coopération et de développement économiquesbProgramme sur la gestion des établissements d'enseignement supérieur 0aFRbFNSP4 uhttp://puck.sourceoecd.org/vl=5799444/cl=52/nw=1/rpsv/journal_news.htmzaccès aux sommaires et texte intégral depuis le vol. 13, no. 1, 20011 r aGEO RM4 aDEW 370-37901502cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200012300174210002300297300012100320326001800441430005100459453006600510606004200576606007700618710013900695801003000834801002300864802000700887856014700894955008301041992001201124992001601136070253749000117532520140114102400.01 a1682-3451 aissn16823451 a0001175325 a20030203a20019999 0fre 0103 ba0 aeng aFR ay  aah 10aHigher education management and policyejournal of the programme on institutional management in higher educationfOCDE aPariscOCDEd2001- aA partir de 2008, la version française de Higher education management and policy est accessible uniquement en ligne a3 n°s par an 1tHigher education management (Print)x1013-851X 1tPolitiques et gestion de l'enseignement supérieurx1682-346X aEnseignement supérieurxPériodiques aEnseignement supérieurxAspect économiqueyPays del'OCDExPériodiques02aOrganisation de coopération et de développement économiquesbProgramme sur la gestion des établissements d'enseignement supérieur 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20030203 a004 uhttp://puck.sourceoecd.org/vl=5799444/cl=52/nw=1/rpsv/journal_news.htmzaccès aux sommaires et texte intégral depuis le vol. 13, no. 1, 20011 bvol. 20 no. 1 (2008) -vol. 24, no.1 (2012)cParisdMagasins/AnnexeeP 8° 6599 aGEO RM4 aDEW 370-37901259nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000310015421000290018532600160021443000610023060600590029160600420035067600080039285600710040085600730047185601010054485601080064595500910075397200090084499200210085399200310087499200160090504008003X000002128420131209112248.01 a0951-5224 aFNSP157594 a0000021284 a19910104a19879999 ba0 aeng aGB aaha 10aHigher education quarterly aOxfordcBlackwelld1987- aTrimestriel 1aUniversities quarterly (1982) (0263-9769) < P 8° 0212 > aEnseignement supérieuryGrande-BretagnexPériodiques aEnseignement supérieurxPériodiques a3704 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0951-5224 zContenu : sommaires et résumés depuis le vol. 51, n°1, janv. 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100847 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 41 no. 1 (jan-1987) -vol. 66 no. 4 (oct-2012)cParisdMagasins/AnnexeeP 8° 0212 aZPAY aGEO RQ Universel aGEO RA4.02 Grande-Bretagne aDEW 370-37901087nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001500154210002700169326001200196530002900208606002700237676000800264801002100272856003500293856007400328856009300402856010800495955006400603955001500667972000900682992001200691992002500703992000900728039295982000000458420130912090210.01 a0182-2411 aFNSP106057 a0000004584 a19900101a19789999 ba0 afre aFR aafu 12aL'Histoire aPariscHistoired1978- aMensuel12aL' HistoirebParis. 1978 aHistoirexPériodiques a909 3aFRbCCN0182-24114 uhttp://www.histoire.presse.fr/ zContenu : sommaires ; index auteurs et sujets ; depuis le no. 1, 19784 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/magazine-l-histoire.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (mai 1978) -....cParisd30, Salle 2e étageeDEW 9091 bP 4° 4220 aZPAY aDEW 909 aGEO RA4.06 France 01 aPBUL01192nas 2200289 i 450 002001100000005001700011011001400028100004100042101000800083102000700091110001600098200002200114210007500136210003400211326002200245326002700267517002300294530002900317606004100346606003700387856015800424856020300582955007600785972000900861992001600870992001600886000002129320130603162855.01 a0982-1783 a19910104a19869999 ba0 afre aFR aaja 10aHistoire & mesure aPariscÉd. du Centre national de la recherche scientifiqued1986-2004 aPariscÉd. de l'EHESSd2005- aSemestrielb2006- aTrimestrielb1986-200510aHistoire et mesure 0aHistoire & mesurebParis aHistoirexStatistiquesxPériodiques aSciencesxHistoirexPériodiques4 uhttp://www.persee.fr/listIssues.do?key=hismzAccès libre au texte intégral des numéros à partir de 1986 à l'exception des années les plus récentes4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-histoire-et-mesure.htm?zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1986)- vol. 27 (2012)cParisdMagasins/AnnexeeP 8° 4940 aZPAY aDEW 900-907 aDEW 310-31900966nls 2200313 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000091001642100051002552300024003063260022003305170023003526060039003756070035004147100049004498010013004988560038005118560066005499920012006159920025006270001096211000109621120130319051509.0 a1954-3670 a0001096211 a a20079999k fre 01 ba0 afre aFR ar aai z  adr 10aHistoire [arobase] Politiqueepolitique, culture, sociétéb[Ressource électronique] aPariscCentre d'histoire de Sciences Pod2007- aRevue électronique aTrois fois par an10aHistoire@Politique aHistoire universellexPériodiques aFrancexHistoirexPériodiques02aCentre d'histoire de Sciences Po‎c(Paris) 0aFRbFNSP4 uhttp://www.histoire-politique.fr/ zAccès libre au texte intégral depuis le n°1, mai-juin 2007 aDEW 900 aGEO RA4.06 France 0101132nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210004700191210003300238210002700271326001600298430005500314606003500369606003900404607004600443856021200489955007400701972000900775992002200784992001200806013304488000013821120140107172208.01 a0752-5702 aFNSP550558 a0000138211 a19941012a19829999 ba0 afre aFR aaha 10aHistoire, économie et société aPariscÉd. CDU & SEDES réunisd1982-1994 aPariscÉd. SEDESd1995-2003 aPariscA. Colind2004- aTrimestriel 1aRevue d'histoire économique et socialex0035-239X aHistoire socialexPériodiques aHistoire économiquexPériodiques aFrancexConditions socialesxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-histoire-economie-et-societe.htmzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 3 (1992) ; no. 1 (1994) -....cParisdMagasins/AnnexeeP 8° 6071 aZPAY aGEO RA4.06 France aDEW 90901216nls 2200265 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281350018001342000067001522100048002193000079002673300456003466060022008026060054008247110018008788010013008968300008009098560033009170000582173000058217320130319051513.0 a0000582173 a d20039999k fre 01 0 afre aFR ay z y  az adr 10aHistorical Abstractsb[Ressource électronique]fABC-Clio Inc. aSanta Barbara, Calif.cABC-Clio Inc.d2003- aConsultation : uniquement à partir des postes publics de la Bibliothèque aBase de données bibliographique analysant et indexant, depuis 1955, la littérature spécialisée en histoire mondiale (Amérique du Nord exclue) de 1450 à nos jours. Elle contient des références d'ouvrages, de travaux de recherche et des résumés en anglais d'articles de périodiques. Actuellement, 1800 revues en 50 langues sont dépouillées. La base s'enrichit chaque année de 20 000 notices supplémentaires. La mise à jour est mensuelle. aBases de données aHistoire universellexBibliographiexPériodiques02aABC-Clio Inc. 0aFRbFNSP amfo4 uhttp://serials.abc-clio.com/01098nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005500163210002700218210004600245326002300291326002600314606002700340710005300367801001300420856009000433856011200523955009600635972000900731991001800740992001400758044930151000035518320130319051513.01 a1465-4466 a0000355183 a a19979999k fre ba0 aeng aGB a 0  ar aaj z 0 10aHistorical materialismfLondon School of Economics aLeydencBrill :d2002- aLondoncLondon School of Economicsd1997- aTrimestrielb2002- aSemestrielb1997-2001 aMarxismexPériodiques02aLondon School of Economics and Political Science 0aFRbFNSP4 uhttp://juno.ingentaselect.com/vl=3271370/cl=60/nw=1/rpsv/cw/brill/14654466/contp1.htm zContenu : sommaires depuis le volume 1, n°1, 1997 (le volume 11 n°1, 2003 est en texte intégral gratuit)1 bno. 1 (1997) -no. 9 (2001) ; vol. 10 no. 1 (2002) -....cParisdMagasins/AnnexeeP 8° 6540 aZSAB aexempb201301 aDEW 330.101186nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003100139210010900170326001600279430004000295510004000335530003800375606003900413710004500452801002100497856007000518856003600588856002900624856009200653955006400745972000900809991001800818992001200836039125327000002178720131028152332.01 a0172-6404 aFNSP158885 a19900101a19799999 ba0 amul aDE aaha 10aHistorical social research aaKölncZentrum für Historische Sozialforschung im Zentralarchiv für Empirische Sozialforschungd1979- aTrimestriel 1aQuantum-InformationxISSN 0172-877610aHistorische Sozialforschung (Köln) 0aHistorical social researchbKöln aSociologiexHistoirexPériodiques02aZentrum für Historische Sozialforschung 3aFRbCCN0172-64044 uhttp://hsozkult.geschichte.hu-berlin.de/zeitschr/hsr/hsrindex.htm zContenu : index de 1996 à 20014 uhttp://www.hsr-retro.de/ zContenu : index depuis 2000 accès à certains articles plus anciens en texte intégral1 bno. 12 (oct-1979) -....cParisdMagasins/AnnexeeP 8° 4311 aZSAB aexempb201103 aDEW 30101615nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210005900184210006100243210010400304210002300408326001500431430011000446530004900556606006100605606005800666676000800724710007100732801002100803856002400824856005600848955006700904955009500971957007401066972000901140991001801149992002201167992001601189039236773000002122520130319051513.01 a0046-757X aFNSP157433 a0000021225 a19900101a19659999 ba0 afre aFR aagu 10aHistoriens et géographes aPariscSociété des professeurs d'histoired1965-1975 aPariscAssociation des professeurs d'histoired1975-1976 aPariscAssociation des professeurs d'histoire et de géographie de l'enseignement publicd1976-1985 aPariscAPHGd1986- aBimestriel 1aBulletin de la Société des professeurs d'histoire et de géographie de l'enseignement publicx1153-727210aHistoriens et géographesbNeuilly-sur-Seine aGéographiexEtude et enseignementyFrancexPériodiques aHistoirexEtude et enseignementyFrancexPériodiques a90902aAssociation des professeurs d'histoire et de géographiec(France) 3aFRbCCN0046-757X4 uhttp://www.aphg.fr/ zContenu : sommaires des n°s depuis le n°365, 19991 bLes 3 dernières annéescParisd30, Salle 2e étage:eDEW 9091 bvol. 55 no. 193 (oct-1965) -....cParisdMagasins/AnnexeeP 8° 0351zManque no. 338, 19921 bno. 303 (1985) - no. 334 (1991)cParisdMagasins/AnnexeeP Index 0727 aZGRA aexempb201101 aGEO RA4.06 France aDEW 370-37901276nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005500154210004200209326001600251530002700267606002700294607004400321710003800365801002100403856007100424856007500495856010100570856010800671955007700779972000900856991001800865992003100883992001200914038718499000005745920130319051513.01 a0018-2648 aFNSP267112 a0000057459 a19900101a19129999 ba0 aeng aGB aahu 10aHistoryethe journal of the Historical Association aLondoncHistorical Associationd1912- aTrimestriel00aHistorybLondon. Print aHistoirexPériodiques aGrande-BretagnexHistoirexPériodiques02aHistorical Associationc(Londres) 3aFRbCCN0018-26484 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0018-2648 zContenu : sommaires et résumés depuis le vol. 81, n°263, juil. 19964 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101085 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 36 no. 126/127 (fev-1951) -....cParisdMagasins/AnnexeeP 8° 1046 aZSAB aexempb201203 aGEO RA4.02 Grande-Bretagne aDEW 90900782nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210005500177326001500232517002100247606002700268856003800295856006200333955007000395972000900465991001800474992001200492040050866000012006220130319051514.01 a0935-560X aFNSP495734 a0000120062 a19940303a19899999 ba0 aeng aUS aaja 10aHistory and memory aBloomington, Ind.cIndiana University Pressd1989- aSemestriel10aHistory & memory aHistoirexPériodiques4 uhttp://muse.jhu.edu/journals/ham/ zContient : sommaires en ligne depuis vol. 10, no. 1, 19981 bvol. 5 no. 1 (pri-1993) -....cParisdMagasins/AnnexeeP 8° 6017 aZPAY aexempb201211 aDEW 90901499nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210005600177326001600233606004000249606002700289710004500316801002100361856007100382856005000453856010100503856010800604856009000712856010800802955008600910957007200996972000901068991001801077992001401095992001601109038718502000002123020131127170306.01 a0018-2656 aFNSP157441 a0000021230 a19900101a19609999 ba0 aeng aUS aahu 10aHistory and theory aMiddletown, Conn.cWesleyan University Pressd1960- aTrimestriel aHistoirexPhilosophiexPériodiques aHistoirexPériodiques02aWesleyan Universityc(Middletown, Conn.) 3aFRbCCN0018-26564 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0018-2656 zContenu : Sommaires, résumés depuis le 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101086 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00182656.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 1 (1963) -vol. 51 no. 4 (dec-2012)cParisdMagasins/AnnexeeP 8° 23801 bvol. 6 (1967) -vol. 10 (1971)cParisdMagasins/AnnexeeP Index 0189 aZCAD aexempb200908 aCDD 10-14 aDEW 900-90701214nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003000139210004500169210005100214326002600265326002900291326003000320452005100350530003000401606004700431801002100478856016300499955007100662955008600733972000900819991001800828992001800846992001200864039143791000002123220130926105637.01 a0191-6599 aFNSP157444 a19900101a19809999 ba0 amul aGB aahu 10aHistory of European ideas aAmsterdam‎cElsevier Science‎d1994- aOxford [etc.]‎cPergamon Press‎d1980-1993 aTrimestriel‎b2000- aBimestriel‎b1986-1999 aTrimestriel‎b1980-1985 1tHistory of European ideas (Online),x1873-541X aHistory of European ideas aIdéologieyEuropexHistoirexPériodiques 3aFRbCCN0191-65994 uhttp://www.sciencedirect.com/science/journal/01916599zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 36 no. 3 (sep-2010) -....cParisdMagasins/AnnexeeP 4° 72901 bvol. 1 no. 1 (1980) -vol. 36 no. 2 (jun-2010)cParisdMagasins/AnnexeeP 8° 4380 aZSAB aexempb201106 aGEO RA Europe aDEW 94001367nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210004700187300013600234326001600370606004700386801002100433856010100454856010800555856012800663856010800791955007000899972000900969991001800978992003300996992001201029038718537000005746020130319051514.01 a0018-2702 aFNSP267115 a0000057460 a19900101a19699999 ba0 aeng aUS aahu 10aHistory of political economy aDurham, N.C.cDuke University Pressd1969- aLe supplément annuel est traité en monographie, voir le détail de la collection à "History of political economy. Annual suppl." aTrimestriel aEconomie politiquexHistoirexPériodiques 3aFRbCCN0018-27024 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=111226 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=HPE&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (pri-1969) -....cParisdMagasins/AnnexeeP 8° 2951 aZPAY aexempb201103 aGEO RS Sans aspect régional aDEW 33000952nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210003300188210002400221326002400245326002700269606004600296856010800342856010800450955006500558972000900623991001800632992001200650040082008000008250120130319051514.01 a0952-6951 aFNSP367908 a0000082501 a19900101a19889999 ba0 aeng aGB aaha 10aHistory of the human sciences aLondoncRoutledged1988-1991 aLondoncSaged1992- a5 nos par anb2009- aTrimestrielb1992-2008 aSciences humainesxHistoirexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no.1 (1992) -....cParisdMagasins/AnnexeeP 8° 5903 aZSAB aexempb201202 aDEW 30001030nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000051001502100068002012300005002693000098002743260016003723360058003883370066004464520058005127120034005708010013006048560090006179550005007079920016007120000534058000053405820130319051514.0 a0000534058 a a19679999k fre 01 ba0 aeng aUS az aah z  adr 14aThe History teacherb[Ressource électronique] aLong Beach, Calif.cSociety for the History of educationd1967- a aAccès au texte intégral (réservé aux sites de Sciences-Po) jusqu'aux 3 dernières années aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou télédéchargement 1tThe History teacher (Long Beach, Calif.)x(0018-2745)02aSociety for History Education 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00182745.html1 r aDEW 900-90700971nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210004300183326001500226430003300241517000800274606003500282606002700317856004200344856014700386955006400533972000900597991001800606992001200624992002100636036756881000015489620130319051514.01 a1363-3554 aFNSP604078 a0000154896 a19900101a19959999 ba0 aeng aGB aaja 00aHistory workshop journal aOxfordcOxford University Pressd1995- aSemestriel 1aHistory workshop,x0309-298410aHWJ aHistoire socialexPériodiques aHistoirexPériodiques4 uhttp://www.oup.co.uk/hiwork/contents/ zContenu : sommaires ; résumés ; recherche par sujets avec Excite ; depuis le n°41, print. 1996 ; envoi sommaire par mail du n° à paraitre1 bno. 39 (pri-1995) -....cParisdMagasins/AnnexeeP 8° 4823 aZCAD aexempb201010 aDEW 909 aGEO RQ Universel01340nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003500163210004300198326001800241606002400259606003900283710004500322801001300367856004000380856003800420856010300458856010800561856012100669856010800790955007100898972000900969992001200978037430998000041519520130319051515.01 a8756-6583 a0000415195 a a19869999k fre ba0 aeng aGB a 0  ar aai z 0 10aHolocaust and genocide studies aOxfordcOxford University Pressd1986- a3 n°s par an aShoahxPériodiques aGénocidexRecherchexPériodiques02aUnited States Holocaust Memorial Council 0aFRbFNSP4 uhttp://www3.oup.co.uk/holgen/scope/ zsommaires depuis le vol. 10, 19964 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=108985 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://heinonline.org/HOL/Index?index=alpha/H_journals&collection=journals zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 15 no. 1 (pri-2001) -....cParisdMagasins/AnnexeeP 8° 6592 aZCAD aDEW 94001143nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210002600200326001600226530002500242606003200267606003600299710004900335801002100384856008700405856010800492856002600600856007600626955006400702972000900766991001800775992001200793039607704000002123420130319051515.01 a0439-4216 aFNSP157448 a0000021234 a19900101a19619999 ba0 afre aFR aahu 12aL'Hommeerevue française d'anthropologie aPariscNavarind1961- aTrimestriel12aL'HommebParis. 1961 aAnthropologiexPériodiques aSciences socialesxPériodiques02aLaboratoire d'anthropologie socialec(Paris) 3aFRbCCN0439-42164 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-l-homme.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr/ zContenu : Accès libre au texte intégral du n°1, 1961 au n°152, 19991 bno. 1 (janv-1961) -....cParisdMagasins/AnnexeeP 8° 1919 aZCAD aexempb200908 aDEW 30100915nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210002800182326001600210606004700226676000800273801002100281856010100302856004200403955014100445972000900586991001800595992001200613001012622000002123620131025100906.01 a0018-4306 aFNSP157450 a0000021236 a19900101a19669999 ba0 afre aFR aahu 12aL'Homme et la société aPariscHarmattand1966- aTrimestriel aSciences socialesxRecherchexPériodiques a300 3aFRbCCN0018-43064 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-l-homme-et-la-societe.htm? zAccès aux sommaires et aux résumés1 bno. 1 (1966) -....cParisdMagasins/AnnexeeP 8° 2305wManquant : nos 87 à 90, 1988 (vol. relié) et nos 99 à 102, 1991 (vol. relié) aZPAY aexempb201001 aDEW 30001190nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210003900178326002300217326002600240326002300266430005200289530003000341606004400371607005200415676000800467856004000475856008000515955006700595955006600662957005700728972000900785992002200794992001200816039892328000002135620130805144116.01 a1142-852X aFNSP157896 a0000021356 a19910107a19879999 ba0 afre aFR aaga 10aHommes & migrations aPariscHommes et migrationsd1987- aTrimestrielb2013- aBimestrielb1997-2012 aMensuelb1987-1996 1aHommes et migrations. DocumentsxISSN 0223-3290 0aHommes & migrationsb1987 aEmigration et immigrationxPériodiques aFrancexEmigration et immigrationxPériodiques a325 uhttp://www.hommes-et-migrations.fr/ zContenu : accès au texte intégral d'une sélection d'articles depuis 19971 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3251 bno. 1099 (jan-1987) -....cParisdMagasins/AnnexeeP 4° 32201 b(1981) -(1985)cParisdMagasins/AnnexeeP Index 0586 aZPAY aGEO RA4.06 France aDEW 32500828cas0 2200265 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200004400148210003600192530004400228607004900272676000800321801003000329801003000359856014000389945001500529991001800544048879398000062748020130319051515.0 accn7208/2224 a0000627480 a20000308b18711871 0frey0103 ba0 afre aFR ar aaz 10aHommes et choses du temps de la Commune aParisaGenèveaLondresd[1871]00aHommes et choses du temps de la Commune aParis (France)z1871 (Commune)xPériodiques a944 3aFRbAbesc20020120gAFNOR 3aFRbAbesc20020120gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb327872342/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1871) b12*014.972 aSAFIGbTM095c01073nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001400154210005400168300019700222326001100419607003600430710004700466856004800513955005500561955007500616972000900691991001800700992004100718992001200759104702176000011313520130627122605.01 a1011-4521 aFNSP476129 a0000113135 a19900101a00019999 ba0 aeng aHK aaka 10aHong Kong aHong KongcGovernment Information Servicesd0001- aDe 1980 à 1997, le contenu est celui de l'année précédent e ; Pour 1997, demander le supplément : "Hong Kong - Anew e ra" ; A partir de 1998, l'année de couverture correspond au contenu. aAnnuel aHong Kong (Chine)xPériodiques02aHong Kong. Government Information Services uhttp://www.info.gov.hk/hkar99/eng/index.htm1 b(1980) -(2010)cParisdMagasins/AnnexeeP 8° 55361 b(1952) ; (1955) ; (1962) -(1979)cParisdMagasins/AnnexeeCOL 8° 3526 aZPAY aexempb201210 aGEO RI3.21 Hong Kong (jusqu'à 1997) aDEW 95101101cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200001900174210005100193326001600244606007900260607008300339607006600422710004200488801003000530802000700560856004600567856004700613955007200660992003100732992001200763044904622000117430520130319051516.01 a1437-6164 accn1437-6164 a0001174305 a20000407a19929999 0frey0103 ba0 ager aDE ay  aah 10aHorch und Guck aBerlincBürgerkomitee "15. Januar" e.Vd1992- aTrimestriel aRésistance politiqueyAllemagne (République démocratique)xPériodiques aAllemagne (République démocratique)xPolitique et gouvernementxPériodiques aAllemagne (République démocratique)xHistoirexPériodiques02aBürgerkomitee "15.Januar"e.VcBerlin 3aFRbAbesc20081203gAFNOR a064 uhttp://www.horch-und-guck.info/hug/archiv zContenu : sommaires depuis le no. 1 (1992)1 bvol. 18 no. 63 (mar-2009) -....cParisdMagasins/AnnexeeP 4° 7253 aGEO RA5.03 Allemagne (RDA) aDEW 94301224nas0 2200337 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000580013920700250019721000500022232600160027260600450028860600420033360600460037571000420042180100300046385600330049385600300052685601010055685601080065795500800076597200090084599200160085499200160087011241947X000106534920130319051516.01 a1958-3370 a0001065349 a20070208b20069999k a0frey0103 ba0 afre aFR aahadk g 10aHorizons stratégiquesfCentre d'analyse stratégique 0aN°1 (juillet 2006)- aPariscLa Documentation françaised2006-2008 aTrimestriel aPolitique publiqueyFrancexPériodiques aAdministration publiquexPériodiques aDécision politiqueyFrancexPériodiques01aFrancebCentre d'analyse stratégique 3aFRbAbesc20070208gAFNOR4 uhttp://www.strategie.gouv.fr zContenu : texte intégral4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-horizons-strategiques.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (jul-2006) -no. 7 (jan/mar-2008)cParisdMagasins/AnnexeseP 4° 7172 aZPAY aGEO RA4. 06 aDEW 350-35400974nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210005300191326001600244606004100260710003600301856010900337856010800446955007000554972000900624991001800633992002100651992001200672093980175000014543220130319051518.01 a1064-6175 aFNSP574255 a0000145432 a19950106a19889999 ba0 aeng aUS aaha 10aHoward journal of communications aWashington, D.C.cHoward University Pressd1988- aTrimestriel aMédiasxAspect socialxPériodiques02aHoward School of Communications4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713771688db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 4 no. 4 (mar-1993) -....cParisdMagasins/AnnexeeP 8° 6090 aZSAB aexempb201202 aGEO RQ Universel aDEW 30201141cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157110001600175200007400191207002400265210003300289325006200322326001600384606004300400710004400443801003000487801002300517802000700540856006500547856010800612955007100720992001200791039505014000112982620130319051518.01 a0360-3989 accn0360-3989 aissn03603989 a0001129826 a19751204a19749999k y0frey0103 ba0 aeng aUS ay 0  aaha 0uu 10aHuman communication researchfInternational Communication Association 0aVol. 1 (Fall 1974)- aMalden, MacBlackwelld1974-1 aArticles reproduits sur la base de données PCI Full Text aTrimestriel aCommunicationxRecherchexPériodiques02aInternational Communication Association 3aFRbAbesc20080123gAFNOR 3aFRbISSNc20051021 a014 uhttp://www.blackwellpublishing.com/journal.asp?ref=0360-3989 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 32 no. 1 (jan-2006) -....cParisdMagasins/AnnexeeP 8° 6994 aDEW 30201256nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210006400177326001600241430003700257606002900294606004300323710005900366801002100425856002800446856007200474856010300546856010800649955006600757957007400823972000900897992001200906038720000000002138520130319051518.01 a0018-7259 aFNSP157946 a0000021385 a19900101a19499999 ba0 aeng aUS aahu 10aHuman organization aOklahoma City, Ok.cSociety for Applied Anthropologyd1949- aTrimestriel 1aApplied anthropology (0093-2914) aSociologiexPériodiques aAnthropologie appliquéexPériodiques02aAssociation européenne pour l'étude de la population 3aFRbCCN0018-72594 uhttp://www.sfaa.net/ho/ zContenu : sommaires et résumés depuis le vol. 53, n°3, aut. 19944 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=113218 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 8 no. 1 (1949) -....cParisdMagasins/AnnexeeP 4° 06881 b(1947) -(1958) ; (1959) -(1964)cParisdMagasins/AnnexeeP Index 0408 aZPAY aDEW 30101254nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210005800181326001600239430004300255606003600298676001100334710005700345801002100402856005700423856005100480856009000531856010800621955007000729955006600799972000900865991001800874992001200892039336816000002138620130319051519.01 a0170-0847 aFNSP157949 a0000021386 a19900101a19819999 ba0 aeng aUS aahu 10aHuman rights quarterly aBaltimore, Md.cJohns Hopkins University Pressd1981- aTrimestriel 1aUniversal human rightsxISSN 0163-2647 aDroits de l'hommexPériodiques a341.4802aUrban Morgan Institute for Human Rights (Etats-unis) 3aFRbCCN0275-0392 uhttp://muse.jhu.edu/journals/human_rights_quarterly/ zContenu : sommaires depuis le n°1, fév. 19954 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/02750392.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 341.481 bvol. 3 no. 1 (1981) -....cParisdMagasins/AnnexeeP 8° 4160 aZSAB aexempb201104 aDEW 32300976cas0 2200289 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116106000600123110001600129200002400145207002700169210006600196326002300262606003600285801003000321856010300351856010800454955007000562972000900632992003300641992001200674074102699000076196520130319051519.01 a1524-8879 a0000761965 a20030917a19999999k y0frey0103 ba0 aeng aUS ar aaha 10aHuman rights review 1aN°1, (Octobre 2003) - aNew JerseycTransaction Periodicals Consortium Rutgersd1999- aTrimestrielb1999- aDroits de l'hommexPériodiques 3aFRbAbesc20040114gAFNOR4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=103917 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 1 (oct-2003) -....cParisdMagasins/AnnexeeP 8° 6799 aZPAY aGEO RS Sans aspect régional aDEW 32300948nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000036001642100040002003260011002404370070002515170017003216060036003386060046003747100023004208010013004438560023004568560037004799550052005169720009005689920021005779920012005980000517170000051717020130319051519.01 a1054-948X a0000517170 a a19909999k fre ba0 aeng aUS a 0  ar aak z 0 10aHuman Rights Watch world report aNew YorkcHuman Rights Watchd1990- aAnnuel 1tAnnual report - Human Rights Watch (organization)xISSN 1041-895410aWorld report aDroits de l'hommexPériodiques aDroits civils et politiquesxPériodiques02aHuman Rights Watch 0aFRbFNSP uhttp://www.hrw.org zAccès libre au texte intégral.1 b(2000)-....cParisdMagasins/AnnexeeP 8° 6674 aZGRA aGEO RQ Universel aDEW 32301237nas0 2200421 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200002600180207001000206210004900216300007600265326001100341452003500352606003700387606002500424606003900449676000800488710004700496801003000543801002300573802000700596856004000603856005300643955006100696972000900757992002100766992001200787992001600799108056236000101964620130319051519.01 a1557-914X aissn1557914X a0001019646 a20060906a20059999k y0frey0103 ba0 aeng aUS a 0  ar azka 0uu 10aHuman security report 0a2005- aNew York, NYcOxford University Pressd2005- a2009/2010 dernière édition papier, à partir de 2011 version en ligne aAnnuel 0tHuman security report (Online) aViolence politiquexPériodiques aGuerrexPériodiques aGestion des conflitsxPériodiques a32702aHuman Security Centrec(Vancouver, Canada) 3aFRbAbesc20060906gAFNOR 3aFRbISSNc20060720 a014 uhttp://www.humansecurityreport.info zContenu : texte intégral du rapport depuis 20051 b(2005) ; (2009/2010)cParisdMagasins/AnnexeeP 4° 7144 aZPAY aGEO RQ Universel aDEW 327 aDEW 310-31900955nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000076001502070010002262100049002362300028002853260011003136060037003246060025003616060039003867100047004258010013004728560090004859550005005759920021005809920012006019920016006130001239080000123908020130603162804.0 a0001239080 a a20059999k fre 01 ba0 aeng aUS ar aak z  adr 10aHuman security reportb[Ressource électronique]fHuman Security Centre 1a2005- aNew York, NYcOxford University Pressd2005- aRessource électronique aAnnuel aViolence politiquexPériodiques aGuerrexPériodiques aGestion des conflitsxPériodiques02aHuman Security Centrec(Vancouver, Canada) 0aFRbFNSP4 uhttp://www.humansecurityreport.infozaccès au texte intégral du rapport depuis 20051 r aGEO RQ Universel aDEW 327 aDEW 310-31901279nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210004400182326001500226430006500241606003900306606003900345676000800384801002100392856010200413856010800515955006600623955006400689957017500753972000900928992001600937039224082000000459420130319051519.01 a0018-7372 aFNSP106069 a0000004594 a19900101a19639999 ba0 afre aFR aagu 10aHumanisme et entreprise aNeuillycHumanisme et entreprised1963- aBimestriel 1aCahiers du Centre d'études et de recherchesxISSN 2023-5607 aGestion d'entreprisexPériodiques aPersonnelxDirectionxPériodiques a650 3aFRbCCN0018-73724 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-humanisme-et-entreprise.htm4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 4e étageeDEW 6501 bno. 18 (mar-1963) -....cParisdMagasins/AnnexeeP 4° 16761 bno. 1 (1959) -no. 88 (1974)cParisdMagasins/AnnexeeP Index 0080zPour la période 1959-1962, ce répertoire se rapporte aux Cahiers du Centre d'études et de recherches aZPAY aDEW 650-65801101nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101001300108102000700121105001800128106000600146110001600152200006300168207002300231210004400254326001800298421004000316530002500356606004900381606004000430710004000470711002300510801001300533856012900546955006300675972000900738992001600747057925615000045127620140114100629.01 a1624-4184 a0000451276 a a20009999k fre ba0 afreaeng aFR a 0  ar aai z 0 10aHumanitairefInstitut de l'humanitairegMédecins du monde 1aN°1 (2000, nov.)- aPariscInstitut de l'humanitaired2000- a3 n°s par an01tHumanitaire. Hors-sériex1950-489610aHumanitaireb(Paris) aDroit d'ingérence humanitairexPériodiques aSecours internationalxPériodiques02aInstitut de l'humanitairec(France)02aMédecins du monde 0aFRbFNSP4 uhttp://www.medecinsdumonde.org/Publications/La-revue-HumanitairezAccès au texte intégral depuis le n°18 , printemps 20081 bno. 1 (nov-2000) -....cParisdMagasins/AnnexeeP 8° 6616 aZPAY aDEW 360-36300978nas 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000049001502070035001992100037002343260011002714220027002826060037003096060040003467100023003868010013004098560072004228560037004949550071005319720009006029920025006119920016006360000678527000067852720131011094220.0 a0000678527 a a20042007 fre 01 ba0 afre aFR a 0  ar aak z 0 10aHumanitaire. Hors sériefMédecins du monde 1aHors série, n°1, été 2004- aPariscMédecins du monded2004- aAnnuel 1tHumanitairex1624-4184 aDroit à la santéxPériodiques aSecours internationalxPériodiques02aMédecins du monde 0aFRbFNSP4 uhttp://www.medecinsdumonde.org/fr/publications/la_revue_humanitaire4 zAccès libre au texte intégral.1 bno. 1 (2004) -no. 4 (2007)cParisdMagasins/AnnexeeP 8° 6616 bis aZPAY aGEO RA4.06 France 01 aDEW 360-36301490nas 2200361 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000024001552100028001793260014002074210047002214880127002686010045003956060029004406070025004697100030004948010021005248560035005458560192005808560108007729550093008809550068009739550053010419920022010949920012011160000021736000002173620130319051519.01 a0242-6870 aFNSP158705 a0000021736 a19900101a19049999 ba0 afre aFR acau 12aL'Humanité (Paris) aPariscHumanitéd1904- aQuotidien 1aL'Actualité économique(Paris)x0299-8793 1aL'Humanité clandestine (0398-3153) < P F° 0406 > et Humanité dimanche. Dimanche, 2e édition (0241-8827) < P F° 0329 >02aParti communiste françaisxPériodiques aActualitéxPériodiques aFrancexPériodiques02aParti communiste francais 3aFRbCCN0242-68704 uhttp://www.humanite.presse.fr/4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bEd. en microfilm : (1904-1939) ; (1944-1951)cParisdSalle des microformeseP Mic 35 (7)1 bLe mois en courscParisd27, Salle Rez-de-chausséeeP F° 10121 b(1952) -....cParisdMagasins/AnnexeeP F° 1012 aGEO RA4.06 France aDEW 05001042nas0 2200301 450 001001000000002001100010005001700021011001400038020001900052035001500071100004100086101000800127102000700135105001800142110001600160200008800176210006300264326002200327452005300349606003600402801003000438801001500468856004300483856009600526955007000622992001500692992003300707147737087000120169820140110134235.01 a2151-4364 aUSb2009203016 a0001201698 a20101109a20109999k y0frey50 ba0 aeng aUS ay  aaja yy 10aHumanityean international journal of human rights, humanitarianism and development aPhiladelphia, Pa.cUniversity of Pennsylvania Pressd2010- aTrois n°s par an 1tHumanity (Philadelphia, Pa. : Online)x2151-4372 aDroits de l'hommexPériodiques 3aFRbAbesc20101109gAFNOR 0bDLCgAACR24 uhttp://muse.jhu.edu/journals/humanity/ zContenu : table des matières et texte intégral des n°s depuis le vol. 1 no. 1 (aut-2010)1 bvol. 1 no. 1 (aut-2010) -....cParisdMagasins/AnnexeeP 8° 7149 aDEW 341.48 aGEO RS Sans aspect régional01314cas0 2200409 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001700100035001700117035001500134035001500149100004100164101000800205102000700213110001600220200010800236210003900344326001100383530003500394606002700429710004000456801003000496801002800526801002300554802000700577856008900584856010800673955005500781972000900836991001800845992002500863992001600888013758225000071177520130319051519.01 a1298-6216 a048883603 zccn7208/8230 accn1298-6216 accn7208/8230 aissn12986216 asib1135325 a0000711775 a19980606a19989999 0fre 0103 ba0 afre aFR aak 10aHypothèses...etravaux de l'école doctorale d'histoire de l'Université de Paris I-Panthéon Sorbonne aPariscPubl. de la Sorbonned1998- aAnnuel10aHypothèses ...b(Paris. 1998) aHistoirexPériodiques02aEcole doctorale d'histoirec(Paris) 3aFRbAbesc20040906gAFNOR 3aFRbSFc20040906gAFNOR 3aFRbISSNc20000908 a074 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-hypotheses.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1997) -(2005)cParisdMagasins/AnnexeeP 8° 6784 aZPAY aexempb201212 aGEO RA4.06 France 01 aDEW 900-90701332nls 2200313 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181050018001251060006001431100016001491350018001652000188001832100038003712150005004093260011004143300251004256060037006766060022007137120054007357120053007898010013008428300008008558560155008630000254180000025418020130319051519.0 aFNSP886931 a0000254180 a19900101a19819999k fre ba0 aeng aGB a z 0  az azk a 0  adr 10aIBSS, International bibliography of the social sciencesb[Ressource électronique]fBritish Library of Political and Economic Science, London School of Economics and Political Science aNorwood, MAcSilverPlatterd1981- a aannuel aBase de données bibliographiques : contient les références d'une sélection de publications internationales : livres,articles, chapitres de livres de plus de 2600 revues en économie, science politique, sociologie et anthropologie depuis 1981. aSciences socialesxBibliographie aBases de données02aBritish Library of Political and Economic Science02aLondon School of Economics and Political Science 0aFRbFNSP amfo4 uhttps://acces-distant.sciences-po.fr/fork?http://web.ebscohost.com/ehost/search?vid=1&hid=108&sid=307cfea0-a90a-436d-acfd-281661923544%40sessionmgr10400831nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001400154210003100168326001500199606004400214606003100258856005500289856004400344955009000388972000900478991001800487992002200505992001400527036262218000016182120130319051520.01 a1123-5527 aFNSP621855 a0000161821 a19900101b19942007 ba0 aita aIT aaga 10aIdeazione aRomacIdeazioned1994-2007 aBimestriel aScience politiqueyItaliexPériodiques aLibéralismexPériodiques4 uhttp://www.ideazione.com/Rivista/rivista_frame.htm zContenu : sommaires depuis janvier 19971 bvol. 1 no. 1 (nov-1994) -vol. 14 no. 2 (mar-2007)cParisdMagasins/AnnexeeP 8° 6143 aZCAD aexempb201202 aGEO RA6.03 Italie aDEW 320.501417nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001700154210005400171326002200225326002700247430008100274530003300355606003500388607004900423710004800472801002100520856004800541856007700589856009100666856010800757955009500865972000900960991001800969992004200987992001401029039318699000002156620131202124224.01 a0265-5012 aFNSP158348 a0000021566 a19900101a19849999 ba0 aeng aGB aahu 10aIDS bulletin aBrightoncInstitute of Development Studiesd1984- aBimestriel$d2006- aTrimestriel$d1984-2005 1aBulletin - Institute of Development Studies (Brighton, 1980)xISSN 0020-283510aIDS bulletinbBrighton. 1984 aAide économiquexPériodiques aPays en voie de développementxPériodiques02aInstitute of Development Studies (Brighton) 3aFRbCCN0265-50124 uhttp://www.ids.ac.uk/ids/bookshop/bulletin/ zContenu : sommaires et résumés depuis le volume 21, n°1, janvier 19904 uhttp://thesius.ingentaselect.com/vl=1166055/cl=58/nw=1/rpsv/cw/ids/02655012/contp1.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 15/16 no. 2 (1984/1985) -vol. 43 no. 6 (nov-2012)cParisdMagasins/AnnexeeP 8° 2831 aZCAD aexempb200908 aGEO RO Pays en voie de développement aDEW 338.901262nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000017001552100026001723260016001986060044002147120091002588010021003498300085003708560036004558560131004918560108006228560108007309550005008389570072008439720009009159920012009240000021486000002148620130319051521.01 a0340-0352 aFNSP158175 a0000021486 a19900101a19759999 f ba0 aeng aDE aahu 10aIFLA journal aMünchencSaurd1975- aTrimestriel aSciences de l'informationxPériodiques02aFédération internationale des associations de bibliothécaires et des bibliothèques 3aFRbCCN0340-0352 aVol. 8, n°2, May 1982 ---> 1984< P 8° 4631 > : collection Locarchives à jeter4 uhttp://www.ifla.org/V/index.htm zContenu : sommaires et résumés depuis le vol. 19, n°1, 1993 ; texte intégral de la revue à partir du vol. 26, n° 1, 20004 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b1 bvol. 1 (1975) -vol. 10 (1984)cParisdMagasins/AnnexeeP Index 0577 aZPAY aDEW 02001055nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210003900176326001700215607005000232607005300282710006400335801002100399830005400420856009700474856007400571955006900645992002500714992001400739038720914000002168820130319051521.01 a0018-974X aFNSP158604 a0000021688 a19900101a19489999 ba0 ager aDE aada 10aIfo-Schnelldienst aBerlincDuncker und Humblotd1948- aHebdomadaire aEuropexConditions économiquesxPériodiques aAllemagnexConditions économiquesxPériodiques02aIFO-Institut für Wirtschaftsforschungc(Munich, Allemagne) 3aFRbCCN0018-974X a1971--1984 collection donnée au CTL en juin 20024 uhttp://www.cesifo-group.de/portal/page/portal/ifoHome/b-publ/b2journal/20publsd/_ZS-SD-INTRO zContenu : sommaires et résumés en allemand et en anglaisdepuis 20001 bVol. 38 no. 1/2 (1985) -....cParisdMagasins/AnnexeeP 4° 3003 aGEO RA5.01 Allemagne aDEW 330.900980nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008300154210004500237326001200282530001900294530002200313607004800335801002100383856003500404856004400439955012000483972000900603991001800612992002200630992001400652038775263000014362620130319051521.01 a0032-423X aFNSP567943 a0000143626 a19941207a19459999 ba0 aita aIT aafa 10aIl Ponteerivista di politica economica e cultura fondata da Piero Calamendrei aFirenzecLa Nuova Italia Editriced1945- aMensuel10aPontebFirenze03aIl PontebFirenze aItaliexPolitique économiquexPériodiques 3aFRbCCN0032-423X4 uhttp://www.ilponterivista.com/ zContenu : sommaire des n°s depuis 20031 bvol. 1 no. 1 (jan-1945) -vol. 44 no. 3 (1988) ; vol. 63 no. 1 (jan-2007) -....cParisdMagasins/AnnexeseP 8° 0249 aZPAY aexempb201101 aGEO RA6.03 Italie aDEW 338.901590cas0 2200397 450 00100100000000200110001000500170002103500150003810000410005310100080009410200070010210500180010910600060012711000160013320000530014920700270020221000330022930100690026230100850033132600160041643000380043260600390047060600640050971000350057380100300060880100200063880100170065885601110067585600840078685601050087085601080097595500670108397200090115099200210115999200120118014677180X000120186620140107140331.0 a0001201866 a20100922a20109999k y0frey50 ba0 aeng aGB ay  ar aahu 10aIMF economic reviewfInternational Monetary Fund 0aVol. 58, no. 1 (2010)- aBasingstokecPalgraved2010- aDemande de numérotation ISSN en cours par le CR26 le 2010-10-08 a2041-4161 : ISSN figurant sur la publication et dans ISSN-portal, et non validé aTrimestriel 1tIMF Staff papers,xISSN 1020-7635 aPolitique monétairexPériodiques aAide économiquexCoopération internationalexPériodiques02aFonds monétaire international 3aFRbAbesc20101013gAFNOR 0bGyBeDBIZgAACR2 1bHEBISgAACR24 uhttps://acces-distant.sciences-po.fr/fork?http://www.palgrave-journals.com/imfer/journal/v58/n1/index.html zContenu: sommaires, résumés et texte intégral depuis le vol. 58 no. 1 (2010)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.palgrave-journals.com/imfer/archive/index.html? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bVol. 58 no. 1 (2010) -....cParisdMagasins/AnnexeeP 8° 0438 aZPAY aGEO RQ Universel aDEW 33201386nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005000163207004700213210006000260326001600320430005900336440003600395606003900431606006400470710003500534801001300569856005900582856003600641856010100677856010800778955008400886972000900970992002100979992001201000044754884000028208520140107135910.01 a1020-7635 a0000282085 a b19992010k f fre ba0 aeng aUS a 0  ar aah z 0 10aIMF Staff papersfInternational Monetary Fund 1aVol.46, no. 1(1999) - vol.57, no. 2 (2010) aWashington, D.CcInternational Monetary Fundd1999-2010 aTrimestriel 1tStaff papers - International Monetary Fund,x0020-8027 1tIMF economic review,x2041-4161 aPolitique monétairexPériodiques aAide économiquexCoopération internationalexPériodiques02aFonds monétaire international 0aFRbFNSP4 uhttp://www.imf.org/external/pubs/ft/staffp/archive.htm zAccès libre au texte intégral4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=111793 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 46 no. 1 (1999) - vol. 57 no. 2 (2010)cParisdMagasins/AnnexeeP 8° 0438 aZPAY aGEO RQ Universel aDEW 33201144nls 2200349 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001341350018001502000054001682100058002222300028002803260031003083360024003393370024003635170049003875170025004365170031004615170023004926060045005156070058005607100035006188010013006538560092006668560036007580000311218000031121820130403094450.0 a0000311218 a a19979999k fre ba0 aeng aUS a 0  az aby z 0  adr 10aIMF working paperb[Ressource électronique]fIMF aWashington, D. C.cInternational Monetary Fundd1997- aDonnées électroniques aCollection de monographies aDonnées textuelles aAccès par Internet10aWorking papers - International Monetary Fund10aWorking papers - FMI10aDocuments de travail - FMI10aIMF working papers aFinancesyPays en voie de développement aPays en voie de développementxPolitique économique02aFonds monétaire international 0aFRbFNSP4 uhttp://www.imf.org/external/pubs/cat/wp1_sp.aspx?s_year=1997&e_year=2013&brtype=default zAccès libre au texte intégral00852nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000123001502100023002732300024002963260005003206060062003258010013003878560077004008560065004779550005005429920016005479920011005630001166836000116683620130319051522.0 a0001166836 a a20089999k fre 01 ba0 afre aFR ar aaz z  adr 10aImhe info/ Programme de l'OCDE sur la gestion des établissements d'enseignement supérieurb[Ressource électronique] aPariscOCDEd2008- aRevue électronique a aEnseignement supérieurxPolitique publiquexPériodiques 0aFRbFNSP4 uhttp://www.oecd.org/department/0,3355,en_2649_35961291_1_1_1_1_1,00.html zContenu : texte intégral des articles depuis décembre 20081 r aDEW 370-379 aGEO RQ01221nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210002400182320002600206326001800232517003000250606002900280606002800309606004400337801002100381856005600402856006000458856010900518856010800627955006900735972000900804991001800813992001200831992001600843039312879000002147320130319051522.01 a0261-9288 aFNSP158149 a0000021473 a19900101a19829999 ba0 aeng aGB aaiu 10aImmigrants & minorities aLondoncCassd1982- aN' a pas paru en 2004 a3 n°s par an10aImmigrants and minorities aMinoritésxPériodiques aEtrangersxPériodiques aEmigration et immigrationxPériodiques 3aFRbCCN0261-92884 uhttp://www.tandf.co.uk/journals/titles/02619288.asp zContenu : sommaires en ligne à partir du vol. 22, 20034 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713720544db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no.1 (mar-1982) -....cParisdMagasins/AnnexeeP 8° 4545 aZSAB aexempb200910 aDEW 325 aDEW 305-30601233cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200003400180207002200214210003100236305010100267423003900368530002600407606005000433676000800483710002600491801003000517801002300547802000700570856003100577856005200608955006900660955006400729972000900793992002100802992001200823160813778000123885020130319051525.01 a2258-8787 aissn22588787 a0001238850 a20120504a20129999m y0frey50 ba0 afre aFR ay 0  ar aafu 0uu 12aL'Impossibleel'autre journal 0ano. 1 (mars 2012) aPariscL'Impossibled2012- aLe sous-titre : "l'autre journal", fait allusion à la revue parue sous ce titre de 1984 à 1993 1tL'Autre journal (Paris)x0765-441312aL'Impossibleb(Paris) aActualitéz21e sièclexPériodiques2rameau a00102aL'Impossiblec(Paris) 3aFRbAbesc20120720gAFNOR 3aFRbISSNc20120529 a074 uhttp://www.limpossible.fr/ zContenu : sommaire en ligne à partir du no. 1.1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 8° 71971 bno. 1 (mars 2012) -....cParisdMagasins/AnnexeeP 8° 7197 aZPAY aGEO RQ Universel aDEW 00100869nas 2200277 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000410013921000260018032600170020643000450022360600520026871200510032083000970037185600310046885600490049995500050054899200220055399200160057503989732X000002182420130321094924.01 a1145-0673 aFNSP159014 a19910115b19862009 ba0 afre aFR aa a 10aINC hebdo, Consommateurs actualités aPariscINCd1986-2009 aHebdomadaire 1aCA, Consommateurs actualitésx0339-154X aConsommateursxProtectionyFrancexPériodiques02aInstitut national de la consommationc(France) aDésherbé , réunion mars 2013 (on ne gardait que 5 ans et n'avions rien reçu depuis 2009)4 uhttp://www.conso.net/page/ zaccès libre au site ; sélection d'articles1 b aGEO RA4.06 France aDEW 380-38201142nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000057001502100065002073000120002723260016003923360058004083370063004664300050005294400052005794520043006316060030006748010013007048560090007179550005008079920016008120000491580000049158020130319051526.0 a0000491580 a b19501961k fre 01 ba0 aeng aGB az aay z  adr 10aIncorporated statisticianb[Ressource électronique] aLondoncAssociation of Incorporated Statisticiansd1950-1961 aAccès au texte intégral (réservé aux sites de Sciences Po) à partir du vol. 1 de 1950 jusqu'au vol. 11 de 1961 aIrrégulier aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tStatistical science [Ressource électronique] 1tStatistician (London) [Ressource électronique] 1tIncorporated statisticianx(1466-9404) aStatistiquexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/14669404.html1 r aDEW 310-31900984nas 2200265 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000035001552100040001903260014002306060029002446070034002738560192003078560108004999550068006079920031006759920012007060000071492000007149220130319051527.01 a0951-9467 aFNSP327936 a0000071492 a19900101a19869999 ba0 aeng aGB acaa 14aThe Independent (London, 1986) aLondoncNewspaper Publishingd1986- aQuotidien aActualitéxPériodiques aGrande-BretagnexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLe mois en courscParisd27, Salle Rez-de-chausséeeP F° 1335 aGEO RA4.02 Grande-Bretagne aDEW 05001089nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154207003300181210005000214326001600264606003700280606004900317710004500366856012800411856010800539955006600647972000900713991001800722992002300740992001200763040355519000020729120130319051527.01 a1086-1653 aFNSP751873 a0000207291 a19900101a19969999 ba0 aeng aUS aaha 14aThe Independent review 1aVol. 1, no. 1 (Spring 1996)- aOakland, Calif.cIndependent Instituted1996- aTrimestriel aEconomie politiquexPériodiques aEconomie politiqueyEtats-UnisxPériodiques02aIndependent Institutec(Oakland, Calif.)4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=TIR&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1996) -....cParisdMagasins/AnnexeeP 8° 6297 aZSAB aexempb201301 aGEO RC2 Etats-Unis aDEW 33001222nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210005400178326002300232326002800255606004000283801002100323856003800344856005800382856010900440856010800549955007100657955009000728957005700818972000900875992001200884039396606000002181420130319051527.01 a0306-4220 aFNSP158993 a0000021814 a19900101a19729999 ba0 aeng aGB aaha 10aIndex on censorship aLondoncWriters and Scholars internationald1972- aTrimestrielb2001- aMensuel puis bimestriel aLiberté d'expressionxPériodiques 3aFRbCCN0306-42204 uhttp://www.oneworld.org/index_oc/ zContenu : sommaires et résumés depuis le n°2, 19954 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t714592856db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 10 no. 4 (aou-1981) -....cParisdMagasins/AnnexeeP 4° 46551 bvol. 1 no. 1 (mar-1972) -vol. 10 no. 3 (jun-1981)cParisdMagasins/AnnexeeP 8° 30901 b(1972) -(1979)cParisdMagasins/AnnexeeP Index 0254 aZCAD aDEW 32301215nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210005400174326001600228607004700244676000800291710003600299801002100335856021800356856010800574955006600682955008200748972000900830991001800839992002000857992001200877039242889000006695720130319051528.01 a0251-3048 aFNSP311075 a0000066957 a19900101a19439999 ba0 aeng aIN aaha 10aIndia quarterly aNew DelhicIndian Council of World Affairsd1943- aTrimestriel aIndexRelations extérieuresxPériodiques a95002aIndian Council of World Affairs 3aFRbCCN0251-30484 uhttps://acces-distant.sciences-po.fr/fork?http://iqq.sagepub.com/?&MDP-WSSO-SESSION=85836973b72e8e3fa3610159c5334937&error=Votre%20session%20a%20expir%E9,%20merci%20de%20vous%20authentifier%20de%20nouveau&status=2 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9501 bvol. 4 no. 4 (1948) -vol. 64 no. 4 (2008)cParisdMagasins/AnnexeeP 8° 0222 aZECH aexempb201101 aGEO RI1.13 Inde aDEW 32701310nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200001700163207002400180210003000204326001600234607002300250801001300273856004200286856006800328856012800396856010800524856010900632856010800741955007000849972000900919992001200928992002000940067777422000048893020140108130506.01 a1473-6489 a0000488930 a a20029999k fre ba0 aeng aGB a 0  ar aah z 0 10aIndia review 1aVol.1, no.1 (2002)- aLondoncFrank Cassd2002- aTrimestriel aIndexPériodiques 0aFRbFNSP4 uhttp://www.frankcass.com/jnls/ind.htm zSommaires et résumés des articles depuis le vol.1, n°1, 20024 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=IYD&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713635440db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-2002) -....cParisdMagasins/AnnexeeP 8° 6660 aZSAB aDEW 954 aGEO RI1.13 Inde01001nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000016001552100041001713260017002126060029002296070023002588010021002818300160003028560104004628560108005669550005006749920020006799920012006990000053839000005383920130926152634.01 a0254-8399 aFNSP255006 a0000053839 a19900101a19759999 ba0 aeng aIN aaca 10aIndia today aNew DelhicLiving Media Indiad1975- aHebdomadaire aActualitéxPériodiques aIndexPériodiques 3aFRbCCN0254-8399 a1979-->1984 : désherbé ; 1985-->2004 : collection donnée au CTLes ; 2005-->2008 : désherbé (on ne conservait que 3 ans et n'arrivait plus (P 4° 4906)4 uhttps://acces-distant.sciences-po.fr/fork?http://global.factiva.com/sb/default.aspx?NAPC=S&fcpil=fr zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b aGEO RI1.13 Inde aDEW 05001316nas 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000142001502100027002923000073003193260016003925100047004086060058004557100067005138010013005808560105005938560108006989550064008069720009008709910018008799920014008979920016009119920051009270000402328000040232820130621131000.0 a0000402328 a a20012002k f fre ba0 amul aFR a 0  ar aah z 0 10aIndicators of industry and services =dIndicateurs de l'industrie et des servicesfOrganisation for Economic Co-operation and Development aPariscOECDd2001-2002 aRevue arrêtée pour développer la base de données correspondante. aTrimestriel10aIndicateurs de l'industrie et des services aIndustrieyPays de l'OCDExStatistiquesxPériodiques02aOrganisation de coopération et de développement économiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/16098714/indicindserv zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno 1 (2001) -no 4(2001)cParisdMagasins/AnnexeeP 4° 4324 aZPAY aexempb201306 aDEW 338.4 aDEW 310-319 aGEO RN1 Pays industrialisés, pays occidentaux01085nas 2200325 i 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102110001600109200003400125210003500159225002500194300006900219326001100288517005900299530003500358606006500393710004100458830004800499856007800547955005600625972000900681991001800690992002300708992001600731992001200747036286885000008346320131003135533.0 aFNSP372036 a19900101a00019999 ba0 aeng aUS aaka 10aIndividual income tax returns aWashington, D.C.cUSGPOd0001-20aStatistics of income aDe 1951 à 1953, constitue la partie 1 de "Statistics of income" aAnnuel10aStatistics of income. 1. Individual income tax returns00aIndividual income tax returns. aImpôt sur le revenuyEtats-UnisxStatistiquesxPériodiques02aEtats-UnisbInternal Revenue Service aCollection donnée au CTLES en juillet 20134 uhttp://www.irs.gov/uac/Tax-Stats-2zAccés au texte intégral depuis 19941 b(1964) -(2004)cParisdMagasins/AnnexeseP 4° 3275 aZPAY aexempb201306 aGEO RC2 Etats-Unis aDEW 310-319 aDEW 33600955nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210006800177326001500245607002900260710004700289801002100336856009000357856010800447955006300555972000900618992002600627992001200653038723921000002185120130319051529.01 a0019-7289 aFNSP159074 a0000021851 a19900101a19669999 ba0 aeng aUS aaju 10aIndonesia (Ithaca) aIthaca, N.Y.cCornell University, Southeast Asia Programd1966- aSemestriel aIndonésiexPériodiques02aCornell UniversitybSoutheast Asia Program 3aFRbCCN0019-72894 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00197289.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (avr-1966) -....cParisdMagasins/AnnexeeP 4° 2349 aZCAD aGEO RI2.12 Indonésie aDEW 95901734nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009700154210010100251326001600352517004200368517001500410606005400425606004200479710006000521801002100581856004500602856007300647856009000720856010800810856006800918856010800986955009001094957009001184972000901274991001801283992002301301992001201324013310011000002185320130319051529.01 a0019-7939 aFNSP159077 a0000021853 a19900101a19479999 ba0 aeng aUS aahu 10aIndustrial & labor relations reviewfNew York State School of Industrial and Labor Relations aIthaca,N.Y.cNew York State School of Industrial and Labor Relations, Cornell University]d1947- aTrimestriel10aIndustrial and labor relations review10aILR Review aRelations industriellesyEtats-UnisxPériodiques aRelations industriellesxPériodiques02aNew York State School of Industrial and Labor Relations 3aFRbCCN0019-79394 uhttp://www.ilr.cornell.edu/depts/ILRrev/ zContenu : sommaires et résumés depuis le vol. 47, n°4, juil. 19944 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00197939.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://digitalcommons.ilr.cornell.edu/ilrreview/all_issues.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 2 (jan-1950) -vol. 63 no. 1 (oct-2009)cParisdMagasins/AnnexeeP 8° 09421 b(oct-1947) -(jul-1960) ; (oct-1960) -(jul-1967)cParisdMagasins/AnnexeeP Index 0030 aZPAY aexempb201101 aGEO RC2 Etats-Unis aDEW 33100881nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210002500195326001100220430006200231517003400293606004500327606002800372710006900400856004400469955005500513972000900568992001400577048780952000024538720130319051529.01 a1361-7486 aFNSP862910 a0000245387 a19900101a19959999 ba0 aeng aXX aaka 10aIndustrial development global report aViennacUNIDOd1995- aAnnuel 1aIndustry and global development. Global reportx0259-303310aIndustrial development report aDéveloppement économiquexPériodiques aIndustriexPériodiques02aOrganisation des Nations Unies pour le développement industriel4 uhttp://www.unido.org/index.php?id=o63971 b(1996) -(2004)cParisdMagasins/AnnexeeP 4° 5016 aZPAY aDEW 338.401179nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200011800139210002900257326002300286326002800309530003500337606004200372710005800414856007100472856007300543856005300616856005400669955007000723972000900793991001800802992002100820992001200841038724448000002185620130729122804.01 a0019-8676 aFNSP159083 a19910115a19619999 ba0 aeng aUS aaha 10aIndustrial relationsfInstitute for research on labor and employment (IRLE), University of California at Berkeley aOxfordcBlackwelld1961- aTrimestrielb1994- a3 nos par anb1961-1993 0aIndustrial relationsbBerkeley aRelations industriellesxPériodiques02aInstitute of Industrial Relationsc(Berkeley, Calif.)4 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0019-8676 zContenu : sommaires et résumés depuis le vol. 36, no.1, janv. 19974 uhttp://www.irle.berkeley.edu/indrel/archive.html zContenu : sommaires depuis le vol. 1, no. 1, 19611 bvol. 1 no. 1 (oct-1961) -....cParisdMagasins/AnnexeeP 8° 1977 aZSAB aexempb201002 aGEO RQ Universel aDEW 33101148nas 2200325 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200003300148210002300181326001100204430004800215606005000263606003600313710006700349801001300416856020900429856005300638955006500691972000900756991001800765992002500783992001400808078221102000055985520140117162748.01 a2104-0354 a a20039999k fre ba0 afre aFR a 0  ar aak z 0 12aL'Industrie française en... aPariscCPCId2003- aAnnuel 1tL'Etat de l'industrie françaisex1285-0772 aIndustrieyFrancexStatistiquesxPériodiques aIndustrieyFrancexPériodiques02aFrancebCommission permanente de concertation pour l'industrie 0aFRbFNSP4 uhttp://www.ladocumentationfrancaise.fr/ezexalead/search?SearchText=Industrie+fran%C3%A7aise+en&cat[GroupeThematique]=%C3%89conomie%2C+finances&n=slDocFrancaisezAccés libre au texte intégral depuis 20004 zAccés au texte intégral du rapport depuis 20001 b(2001/2002) -(2003/2004)cParisdMagasins/AnnexeeP 4° 6728 aZPAY aexempb201401 aGEO RA4.06 France 01 aDEW 338.901390nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000035001552100023001904300059002135170038002726060060003107120067003708560288004378560108007259550099008339550054009329720009009869920051009959920014010469920016010600000077531000007753120130319051530.01 a0256-9868 aFNSP350993 a0000077531 a19900101a19619999 f ba0 amul aFR aaka 10aIndustrie sidérurgique en.... aPariscOCDEd1961- 1aIndustrie sidérurgique en Europe < Doc OCDE 4°0064 >10aIron and steel industry in....... aSidérurgieyPays de l'OCDExStatistiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://titania.sourceocde.org/vl=1321297/cl=28/nw=1/rpsv/cgi-bin/jsearch_oecd?limittitles=&cheese=searchdb&oecd-select=home.htm&form=expert&search0=industrie+siderurgique&search=&field0=tka&system=oecd_all&sortresultsby=rev_timestamp&what=d14 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r1960-1961 < Doc OCDE 4°0064 >, 1962-1969 < Doc OCDE 8°0146 >, 1970-1975 < Doc OCDE 4°0064 >1 b(1976)-(2001)cParisdMagasins/AnnexeeP 4° 5225 aZPAY aGEO RN1 Pays industrialisés, pays occidentaux aDEW 338.4 aDEW 310-31901606nas 2200421 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131105001800138200002800156207002900184210002800213326002500241326002600266326002400292326002700316326002600343430004400369606002800413606003000441710005000471801001300521856005700534856005800591856010300649856010800752856010900860856010800969955006601077972000901143991001801152992001401170036786004000023151020130319051530.01 a1366-2716 aFNSP822350 a0000231510 a19900101c fre 0 aeng aGB ay z a 10aIndustry and innovation 1avol. 4 no.1 (June-1997)- aAbingdoncCarfaxd1997- a8 n°s par anb2011- aBimestrielb2008-2010 a5 n°s par anb2007 aTrimestrielb2001-2006 aSemestrielb1997-2000 1aJournal of industry studies,x1320-6095 aIndustriexPériodiques aInnovationsxPériodiques02aIndustrial Relations Research Center (Sydney) 0aFRbFNSP4 uhttp://www.tandf.co.uk/journals/carfax/13662716.html zContenu : sommaires depuis le vol. 1, n°2, nov. 19944 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=104593 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713424563db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 4 no. 1 (1997) -....cParisdMagasins/AnnexeeP 8° 6361 aZPAY aexempb201301 aDEW 338.401152cas 2200385 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147106000600154110001600160200005200176207002100228210003400249326002300283530003000306606003800336607004500374676000800419710001900427801003000446801002300476802000700499856004000506856006500546955006700611955006300678972000900741992001600750086155237000092633620130319051531.01 a1772-3760 a086075276 aissn17723760 a0000926336 a20050422a20059999k 1fre 0103 ba0 afre aFR ar aaju 10aInflexionsecivils et militaires : pouvoir dire 1aN.1(2005, fev.)- aPariscArmée de terred2005- a2 à 3 n°s par an10aInflexionsb(Paris. 2005) aPolitique militairexPériodiques aFrancexDéfense nationalexPériodiques a35501aFrancebArmée 3aFRbAbesc20060110gAFNOR 3aFRbISSNc20050601 a074 uhttp://inflexions.fr/category/revue zContenu : sommaires et résumés depuis le n° 11 (jul-2010)1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3551 bno. 1 (fev-2005) -....cParisdMagasins/AnnexeeP 8° 6862 aZGRA aDEW 355-35901113nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210005300191326001500244517000800259606003600267607005100303710004700354801002100401830007200422856003200494856008100526955006500607957005700672972000900729992002300738992001400761038724677000002261920140106172218.01 a0019-977X aFNSP160617 a0000022619 a19900101a19319999 ba0 aspa aES aafa 10aInformación comercial española aMadridcMinisterio de economia y haciendad1931- aBimestriel10aICE aCommerceyEspagnexPériodiques aEspagnexConditions économiquesxPériodiques02aEspagnebMinisterio de economia y hacienda 3aFRbCCN0019-977X a1948--1984 : collection donnée au CTL ; suppl P 4° 104 bis jeté.4 uhttp://www.revistasice.com/ zContient : sommaires et texte intégral depuis le numéro 778, mai-juin 19991 bno. 617 (jan-1985) -....cParisdMagasins/AnnexeeP 4° 01041 b(1982) -(1998)cParisdMagasins/AnnexeeP Index 0442 aZPAY aGEO RA6.02 Espagne aDEW 330.900986nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002700139210002400166326001200190530004100202606003800243710007500281801002100356830005300377856003100430955007500461955007100536972000900607991001800616992002200634992001600656039224228000002206520130930131253.01 a0019-994X aFNSP159684 a19900101a19529999 ba0 afre aFR aafa 12aL'Information agricole aPariscFNSEAd1952- aMensuel12aInformation agricole‎bParis. 1952 aAgricultureyFrancexPériodiques02aFédération nationale des syndicats d'exploitants agricolesc(France) 3aFRbCCN0019-994X a1962-2010 : collection envoyée au Ctles en 20134 uhttp://www.pleinchamp.com/1 bno. 363 (1962) -no. 866 (avr-2013)cParisdMagasins/AnnexeeP 4° 22621 bno. 128 (1956) -no. 362 (1962)cParisdMagasins/AnnexeeP F° 1237 aZPAY aexempb201306 aGEO RA4.06 France aDEW 338.1-300919nas 2200253 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000028001552100027001833260016002105300028002268010021002548560108002758560108003839550084004919550090005750000022610000002261020130319051531.01 a0266-6669 aFNSP160602 a0000022610 a19900101a19859999 ba0 aeng aGB aaha 10aInformation development aLondoncManselld1985- aTrimestriel00aInformation development 3aFRbCCN0266-66694 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 9 no. 1/2 (1993) -vol. 11 no. 4 (1995)cParisdMagasins/AnnexeeP 4° 64051 bvol. 1 no. 1 (jan-1985) -vol. 8 no. 4 (déc-1992)cParisdMagasins/AnnexeeP 8° 484801049nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210002400186326005000210606003200260676000800292801002100300856007300321856003700394856010500431856004200536955006600578955007000644972000900714992001200723039224260000002261120130319051531.01 a0020-0093 aFNSP160605 a0000022611 a19900101a19369999 ba0 afre aFR aaha 12aL'Information géographique aPariscColind1936- aBimestriel puis trimestriel à partir de 2000 aGéopolitiquexPériodiques a910 3aFRbCCN0020-00934 uhttp://www.armand-colin.com/revue/6/2/l-information-geographique.php zAccès libre au texte intégral.4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-l-information-geographique.htm zAccès aux sommaires et aux résumés1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9101 bvol. 1 no. 1 (jun-1936) -....cParisdMagasins/AnnexeeP 4° 0096 aZPAY aDEW 91001560nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002800139210004000167326001600207452005100223530002800274606004700302801002100349856020800370856023300578856021400811955006701025955008201092972000901174991001801183992002101201992001201222039152502000002261420130730143554.01 a0197-2243 aFNSP160610 a19900101a19819999 ba0 aeng aUS aaha 14aThe Information society aNew YorkcTaylor and Francisd1981- aTrimestriel 1tThe information society (Online)‎x1087-653704aThe Information society aTechnologie de l'informationxPériodiques 3aFRbCCN0197-22434 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=100659zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=1HQ&site=ehost-livezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713669588db=allzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 14 no. 1 (1998) -....cParisdMagasins/AnnexeeP 4° 67731 bvol. 1 no. 1 (1981) -vol. 13 no. 4 (1997)cParisdMagasins/AnnexeeP 8° 4706 aZPAY aexempb201304 aGEO RQ Universel aDEW 02001219nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116200003800123210007400161326001200235436005400247436005800301530003800359606005600397710007400453801002100527830005600548830005300604856011100657955006100768972000900829991001800838992002500856992001200881039371905000002273420130930154747.01 a0303-2493 aFNSP160875 a19900101a19749999 ba0 ager aDE10aInformationen zur Raumentwicklung aBonncBundesforschungsanstalt für Landeskunde und Raumordnungd1974- aMensuel 1aRundbrief - Institut für Landeskunde,x0340-0638 1tInformationen - Institut für Raumordnung,x0020-231200aInformationen zur Raumentwicklung aAménagement du territoireyAllemagnexPériodiques02aBundesforschungsanstalt für Landeskunde und Raumordnungc(Allemagne) 3aFRbCCN0303-2493 a1967--> 1984 collection donnée au CTL en juin 2002 a1985-2012 : collection envoyée au CTles en 20134 uhttp://www.bbr.bund.de/index.html?/veroeffentlichungen/izr_jahresverz.htmzContenu : sommaires depuis 20011 bno. 1/2 (1985) -....cParisdMagasins/AnnexeeP 4° 2348 aZPAY aexempb201306 aGEO RA5.01 Allemagne aDEW 33301004nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003300139210006200172210008200234326001600316530003900332606004500371710006500416856004400481856005600525955006800581972000900649992004200658992001400700039891615000002271420140107140851.01 a1142-4540 aFNSP160836 a19910122a19729999 ba0 afre aFR aaha 10aInformations et commentaires aCorenccAssociation pour un nouveau développementd1999- aLyoncAssociation des amis du Centre croissance des jeunes nationsd1972-1998 aTrimestriel 0aInformations et commentairesbLyon aDéveloppement économiquexPériodiques02aAssociation des amis du centre Croissance des jeunes nations4 uhttp://www.ismea.org/ISMEA/infocom.html zContenu : sommaires depuis le no. 106, janvier 19991 bno. 41/42 (1982/1983) -....cParisdMagasins/AnnexeeP 4° 5401 aZPAY aGEO RO Pays en voie de développement aDEW 338.901131nas 2200289 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000073001412100027002143260014002414300093002554400071003486060036004196060046004556070044005017120129005458560058006749550068007329920025008009920016008250000212103000021210320130319051532.0 aFNSP766159 a0000212103 a19900101b00011997 ba0 afre aFR aaea 10aInformations rapidesfMinistère du travail et des affaires sociales aPariscSESId0001-1997 aBimensuel 1aInformations rapides - Ministère des affaires sociales et de l'intégration (1164-7051) 1aInformations rapides - Ministère de l'emploi et de la solidarité aHôpitauxyFrancexPériodiques aPolitique sanitaireyFrancexPériodiques aFrancexPolitique socialexPériodiques02aFrancebMinistère du travail et des affaires socialesbService des statistiques, des études et des systèmes d'information4 uhttp://www.sante.gouv.fr/htm/publication/index_ir.htm1 bno. 81 (1996)-no. 89 (1997)cParisdMagasins/AnnexeeP 4° 5091 aGEO RA4.06 France 01 aDEW 360-36301017nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007000154210002300224326001500247530003900262606004900301710005800350801002100408856010100429856010800530955006400638972000900702992001600711039236854000002309820140114100940.01 a0046-9459 aFNSP161644 a0000023098 a19900101a19479999 ba0 afre aFR aafa 10aInformations socialesfUnion des caisses d'allocations familiales aPariscCNAFd1947- aBimestriel10aInformations socialesbParis. 1947 aAllocations familialesyFrancexPériodiques02aCaisse nationale des allocations familialesc(France) 3aFRbCCN0046-94594 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-informations-sociales.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 6 (mar-1948) - ....cParisdMagasins/AnnexeeP 8° 0178 aZGRA aDEW 360-36300967nas 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000138001502100037002883260011003256060044003366070028003807100083004088010013004918560060005048560036005649450015006009550009006159920025006249920016006490000621530000062153020130319051532.0 a0000621530 a a20029999 fre 01 ba0 aspa aAR a 0  ar aak z 0 10aInforme sobre antisemitismo en la ArgentinafDAIA, Delegacion de Asociaciones Isrealitas Argentinas, CES, Centro de estudios sociales a[Buenos Aires]:cDAIA/CESd2002- aAnnuel aAntisémitismeyArgentinexPériodiques aArgentinexPériodiques02aDelegación de asociaciones israelitas argentinasbCentro de estudios sociales 0aFRbFNSP4 uhttp://news.daia.org.ar/shop/otraspaginas.asp?pagina=15 zAccès libre au texte intégral b8°246.4181 a2002 aGEO RD4.11 Argentine aDEW 305-30600998nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000046001502100050001963000045002463260012002913360056003033370042003596060036004016060046004376060073004836060030005567100033005868010013006198560040006329920012006720000505390000050539020130319051532.0 a0000505390 a a20029999k fre 01 ba0 afre aFR ar aaf z  adr 10aInfos de serreb[Ressource électronique] aMontreuilcRéseau action climat Franced2002 aTexte intégral depuis le n°1, mai 2002 amensuel aDonnées textuelles accessibles uniquement en ligne aFichiers PDF et Word télechargeables aEffet de serre (météorologie) aGaz à effet de serrexPolitique publique aRéchauffement de la terrexPréventionxCoopération internationale aEnvironnementxProtection02aRéseau action climat France 0aFRbFNSP4 uhttp://www.rac-f.org/Infos-de-Serre aDEW 33301047nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006400154210002100218326001600239430005400255530002100309606002900330710007700359856005700436856005400493955015900547972000900706991001800715992001200733040143392000004755620130319051532.01 a1012-8050 aFNSP240832 a0000047556 a19900101a19889999 ba0 aeng aAT aaha 10aInnovationethe European journal of social science research aWiencIFSd1988- aTrimestriel 1tInnovations in social science researchx1360-626310aInnovationbWien aSociologiexPériodiques02aInterdisciplinary Centre for Comparative Research in the Social Sciences4 uhttp://www.tandf.co.uk/journals/carfax/13511610.html zContenu : sommaires depuis le vol. 1, no. 1, 19881 bvol. 2 no. 4 (1989) -vol. 9 no. 2 (jun-1996) ; vol. 11 no. 3 (1998) -vol. 11 no. 4 (1998) ; vol. 14 no. 1 (2001) -....cParisdMagasins/AnnexeeP 8° 5767 aZSAB aexempb201206 aDEW 30100959nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005300154210004300207210003200250326001500282530002500297606005000322856009100372856010800463955005900571972000900630991001800639992001200657040456773000021474620130319051533.01 a1267-4982 aFNSP775067 a0000214746 a19900101a19959999 ba0 afre aFR aaja 10aInnovationsecahiers d'économie de l'innovation aBruxellescDe Boeck Universitéd2007- aPariscHarmattand1995-2006 aSemestriel10aInnovationsb(Paris) aInnovationsxAspect économiquexpériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-innovations.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1995) -....cParisdMagasins/AnnexeeP 8° 6330 aZPAY aexempb201211 aDEW 50700967nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001300154207002000167210005100187326001900238326002500257430004800282601003900330606004400369606002900413856004300442856008200485955006500567972000900632992001200641037455265000002327720130319051533.01 a1164-6586 aFNSP162202 a0000023277 a19910129a19859999 ba0 afre aFR aafa 00aInprecor 1ano. 193 (1985)- aMontreuilcPresse Edition Communicationd1985- aMensuelb1993- aBimensuelb1986-1992 1aINPRECOR, Intercontinental pressx0294-851602aInternationalec(04)xPériodiques aRelations internationalesxPériodiques aActualitéxPériodiques4 uhttp://orta.dynalias.org/inprecor/home zContenu : texte intégral du dernier numéro en ligne , sélection d'articles1 bno. 193 (avr-1985) -....cParisdMagasins/AnnexeeP 4° 4054 aZPAY aDEW 05001141nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005600154207003300210210003800243326002200281326002700303530002000330606003000350606004000380801002100420856010900441856010800550955007100658972000900729991001800738992003300756992001400789038725568000002271620130319051533.01 a0020-174X aFNSP160840 a0000022716 a19900101a19589999 ba0 aeng aNO aaga 00aInquiryean interdisciplinary journal of philosophy 1aVol. 1, no. 1 (spring 1958)- aOslocUniversitetsforlagetd1958- aBimestrielb2004- aTrimestrielb1958-200310aInquiryb(Oslo) aPhilosophiexPériodiques aPhilosophie politiquexPériodiques 3aFRbCCN0020-174X4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713393858db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 16 no. 1 (mar-1973) -....cParisdMagasins/AnnexeeP 8° 3282 aZSAB aexempb201009 aGEO RS Sans aspect régional aDEW 10-1400962nas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200004500156207002300201210002700224326001500251530002200266607005000288607005200338801003000390801002300420802000700443856003400450856003600484955006400520972000900584992001200593992001900605114940487000109330920130319051533.01 a1188-746X aissn1188746X a0001093309 a20070529a19929999 0frey0103 ba0 aeng aCA aaj 10aInroadsethe Canadian journal of opinion 0aNo. 1 (Fall 1992)- aOttawacInroadsd1992- aSemestriel10aInroadsb(Ottawa) aCanadaxConditions économiquesxPériodiques aCanadaxPolitique et gouvernementxPériodiques 3aFRbAbesc20070529gAFNOR 3aFRbISSNc20070501 a044 uhttp://www.inroadsjournal.ca/ zAccès libre au texte intégral1 bno. 15 (jul-2004)- ....cParisdMagasins/AnnexeeP 8° 6964 aZSAB aDEW 971 aGEO RC1 Canada01007nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000020001552100024001753260017001994300044002165300028002606070060002886070064003487120078004128560047004908560036005379550068005739920022006419920016006639920014006790000067283000006728320130319051533.01 a0997-3192 aFNSP312586 a0000067283 a19900101a19899999 ba0 afre aFR aa a 10aINSEE première aPariscINSEEd1989- aHebdomadaire 1aPremiers résultats (Paris) (0758-7724)00aINSEE première (Paris) aFrancexConditions socialesxStatistiquesxPériodiques aFrancexConditions économiquesxStatistiquesxPériodiques02aInstitut national de la statistique et des études économiquesc(France)4 uhttp://www.insee.fr/fr/ppp/collections.htm zAccès libre au texte intégral1 bno. 1 (1989)-no. 997 (2004)cParisdMagasins/AnnexeeP 4° 4855 aGEO RA4.06 France aDEW 310-319 aDEW 330.901075nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000050001642100023002143260011002375100056002486060052003047100067003568010013004238560123004368560042005599550060006019720009006619920016006709920012006869920051006980000299607000029960720130319051534.0 a1029-4333 a0000299607 a a19999999k f fre ba0 amul aFR a 0  ar aak z 0 10aInstitutional investors. Statistical yearbook aParisbOCDEd1999- aAnnuel10aInvestisseurs institutionnels. Annuaire statistique aInvestissements institutionnelsyPays de l'OCDE02aOrganisation de coopération et de développement économiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://miranda.sourceoecd.org/vl=1250810/cl=12/nw=1/rpsv/outlook_annuals.htm4 zAccés au texte intégral depuis 19991 b(1998) -(1992/2001)cParisdMagasins/AnnexeeP 4° 6833 aZPAY aDEW 310-319 aDEW 332 aGEO RN1 Pays industrialisés, pays occidentaux01279nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200020400154210002300358326001100381510004200392606005800434710006700492856012300559856010800682955006500790972000900855991001800864992005100882992001600933992001600949036035289000010272620140106171152.01 a1023-8549 aFNSP441365 a0000102726 a19900101a19939999 f ba0 amul aFR aaka 10aInsurance statistics yearbook‎fOrganisation for Economic Co-operation and Development‎d= Annuaire des statistiques d'assurance‎fOrganisation de coopération et de développement économiques aPariscOCDEd1993- aAnnuel10aAnnuaire des statistiques d'assurance aAssuranceyPays de l'OCDExStatistiquesxPériodiques01aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://lysander.sourceocde.org/vl=369977/cl=14/nw=1/rpsv/outlook_annuals.htm4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1983/1990) -(1996/2005)cParisdMagasins/AnnexeeP 4° 6280 aZPAY aexempb201401 aGEO RN1 Pays industrialisés, pays occidentaux aDEW 360-363 aDEW 310-31901148nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001600154210003700170326001600207422005600223530002200279601003600301676001000337710003800347801002100385856006000406856010500466955007000571955005900641972000900700991001800709992005700727992001400784039682250000002309720130319051535.01 a0720-5120 aFNSP161643 a0000023097 a19900101a19789999 ba0 ager aDE aahu 10aIntegration aBonncEuropa Union Verlagd1978- aTrimestriel 1aEuropäische Zeitung (Europa-Union)xISSN 0343-665910aIntegrationbBonn02aUnion européennexPériodiques a341.802aInstitut de politique européenne 3aFRbCCN0720-51204 uhttp://www.iep-berlin.de/index.php?id=integration_suche zContenu : sommaires depuis n°1, 1979, abstracts, moteur de recherche et beaucoup de texte intégral1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 320.441 bno. 1 (1979) -....cParisdMagasins/AnnexeeP 8° 4164 aZCAD aexempb201104 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 341.201507cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200008000180207002900260210006300289326001800352430003300370606004700403606003000450710005100480801003000531801002300561802000700584856010900591856007700700856010900777856010800886955007100994972000901065992001401074992002101088116904224000114352520130319051535.01 a1749-6977 aissn17496977 a0001143525 a20070807a20079999k y0frey0103 ba0 aeng aGB ay 0  ar aaia 0uu 10aIntellectual history reviewfInternational Society for Intellectual History 0aVol. 17, issue 1 (2007)- a[Abingdon, Eng.]cRoutledge, Taylor & Francis Groupd2007- a3 n°s par an 1tIntellectual newsx1561-5324 aVie intellectuellexHistoirexPériodiques aPhilosophiexPériodiques02aInternational Society for Intellectual History 3aFRbAbesc20080516gAFNOR 3aFRbISSNc20080429 a014 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t748118689db=all zContenu: sommaires et résumés des n°S depuis le vol. 17 no. 1 de 20074 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t748118689db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 17 no. 1 (mar-2007) -....cParisdMagasins/AnnexeeP 8° 7029 aZSAB aDEW 10-14 aGEO RQ Universel00986nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210002400193326001500217606002900232801002100261856010900282856010800391955013700499972000900636991001800645992002100663992001200684039323897000002270720130319051536.01 a0268-4527 aFNSP160823 a0000022707 a19900101a19869999 ba0 aeng aGB aaha 10aIntelligence and national security aLondoncCassd1986- aBimestriel aEspionnagexPériodiques 3aFRbCCN0268-45274 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713672628db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1986) -....cParisdMagasins/AnnexeeP 8° 4960wmanque le no. 4 (1986), épuisé et les no. 1 et 4 (1989), perdus aZSAB aexempb201003 aGEO RQ Universel aDEW 32701116nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002400163210003800187326001400225430005000239606004500289606004300334801001300377856019200390856010800582955007300690972000900763991001800772992001200790059483253000041163820130827111744.01 a1630-6589 a0000411638 a a20019999k fre ba0 afre aFR a 0  ar aae z 0 10aIntelligence online aPariscIndigo publicationsd2001- aBimensuel 1tMonde du renseignement (Imprimé),x0997-7139 aServices de renseignementsxPériodiques aIntelligence économiquexPériodiques 0aFRbFNSP uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno 412 (sep-2001) -no 631 (2010)cParisdMagasins/AnnexeeP 4° 4694 aZCAD aexempb201307 aDEW 32701306cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200001700174210005700191430003100248441005200279517002500331517002300356530004600379606004300425606004000468606003600508606003900544710005600583801003000639802000700669856006400676856006000740955007500800992003300875992001200908039674657000117280520130319051536.01 a0712-1571 accn0712-1571 a0001172805 a19890913b19812009 0frey0103 ba0 afre aCA ay  aah 10aInterculture aMontréalcCentre interculturel Monchanind1981-2009 1tRevue Monchaninx0712-158X 0tInterculture (Montreal. English ed.)x0828-797X10aInterculture journal10aRevue interculture10aIntercultureb(Montréal. Ed. française) aRelations interethniquesxPériodiques aRelations culturellesxPériodiques aMulticulturalismexPériodiques aPluralisme religieuxxPériodiques02aCentre interculturel Monchaninc(Montréal, Canada) 3aFRbAbesc20081202gAFNOR a044 uhttp://www.iim.qc.ca/publications/interculture/larevue.html4 zContenu : texte intégral des articles depuis le no 1581 bno. 143 (oct-2002) -no. 157 (2009)cParisdMagasins/AnnexeeP 8° 7101 aGEO RS Sans aspect régional aDEW 30501152cas0 2200337 450 001001000000002001100010005001700021011002500038035001400063035001700077035001700094035001500111100004100126101000800167102000700175106000600182110001600188200004700204210006300251326001200314530004700326531003100373606006300404606006100467801003000528801002300558802000700581856014500588955006100733991002000794038432978000109343120130319051537.0 a0996-2808y0020-5613 a070597693 accn0996-2808 aissn09962808 a0001093431 a19980709b18641940uuuy0frey0103 ba0 afre aFR ar aafu uu 12aL'Intermédiaire des chercheurs et curieux aPariscIntermédiaire des chercheurs et curieuxd1864-1940 aMensuel02aL'Intermédiaire des chercheurs et curieux 0aInterméd. cherch. curieux aSciencesxVulgarisationz19e sièclexPériodiques2rameau aSciencesxVulgarisationz1900-1945xPériodiques2rameau 3aFRbAbesc20070412gAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34413981v/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1864-1937)1 b(1917) -(1930)w1921cParisdMagasins/AnnexeeP 8° 0716 aPériobTP02 P801774nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154207003200180210004900212326001600261430005500277530004900332606004400381676000800425710005100433801002100484856012800505856010800633856010100741856010800842856009000950856010801040955006701148955006901215955007101284972000901355992001201364038726955000000464920131219164350.01 a0020-5850 aFNSP106145 a0000004649 a19900101a19449999 ba0 aeng aGB aahu 10aInternational affairs 1aVol. 20, no. 1 (Jan. 1944)- aCambridgecCambridge University Pressd1944- aTrimestriel 1tInternational affairs review supplementx1473-811210aInternational affairsb(London. 1944. Print) aRelations internationalesxPériodiques a32702aRoyal Institute of International Affairsc(GB) 3aFRbCCN0020-58504 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=INA&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101087 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00205850.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bL'année en courscParisdBibliothèque de rechercheeP 8° 00031 bvol. 20 no. 1 (jan-1944) -....cParisdMagasins/AnnexeeP 8° 0003 aZCAD aDEW 32701013cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200003300156210009900189326001500288517000800303606004400311710006400355801003000419801003000449802000700479856002800486856008700514955007700601972000900678992001200687040326039000073257020130319051537.01 a1078-3520 accn1078-3520 a0000732570 a19980902a19929999 0frey0103 ba0 aeng aUS aaj 10aInternational affairs review aWashington, D.C.cGeorge Washington UniversitycElliott School of International Affairsd1992- aSemestriel10aIAR aRelations internationalesxPériodiques02aElliott School of International Affairsc(Washington, D.C.) 3aFRbAbesc20040927gAFNOR 3aFRbAbesc20040927gAFNOR a014 uhttp://www.iar-gwu.org/ zContient: les sommaires, résumés et une sélection d'articles en texte intégral1 bvol. 11 no. 2 (été/aut-2002) -....cParisdMagasins/AnnexeeP 8° 6793 aZPAY aDEW 32702098nas 2200445 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200010300154210005400257210008000311210007800391210004700469210004900516326001600565434013300581436004700714436007200761606003300833606003800866710005900904801002100963856010100984856010801085856006401193856006701257856009001324856010801414955007001522972000901592991001801601992002101619992001201640038726971000002266320140110130826.01 a0020-5893 aFNSP160739 a0000022663 a19900101a19529999 ba0 aeng aGB aahu 10aInternational and comparative law quarterlyethe journal of the Society of comparative legislation aLondoncSociety of Comparative Legislationd1952- aLondoncSociety of Comparative Legislation and International Lawd1956-1958 aLondoncBritish Institute of International and Comparative Lawd1959-2000 aOxfordcOxford University Pressd2001-2007 aCambridgecCambridge University Pressd2008- aTrimestriel 1aQuarterly of the Society of Comparative Legislation and International Law et Transactions of the Grotius SocietyfISSN 1479-1234 1aThe international law quarterlyx1479-5930 1tJournal of comparative legislation and international lawx1479-5949 aDroit comparéxPériodiques aDroit internationalxPériodiques02aBritish Institute of International and Comparative Law 3aFRbCCN0020-58934 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=106093 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://journals.cambridge.org/action/displayJournal?jid=ILQ zContenu : sommaires et résumés depuis le volume 1 n°1, 19524 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00205893.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1952) -....cParisdMagasins/AnnexeeP 8° 0026 aZCAD aexempb200910 aGEO RQ Universel aDEW 34101266nas 2200349 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000890015421000610024322500410030432600110034542200600035644000560041651700760047260600390054860600360058771000350062385600590065885600360071785600660075395500550081997200090087499200210088399200120090404015971X000014436920130319051537.01 a1016-0345 aFNSP570264 a0000144369 a19941215b19862001 f ba0 aeng aUS aaka 10aInternational capital markets, Developments, prospects/fInternational Monetary Fund aWashington, D.C.cInternational Monetary Fundd1986-200121aWorld economic and financial surveys aAnnuel 1tWorld economic and financial surveys (Print)x0258-7440 1tGlobal financial stability report,x,ISSN 1729-701X10aInternational capital markets - Developments propects and policy issues aPolitique monétairexPériodiques aMarché financierxPériodiques02aFonds monétaire international4 uhttp://www.imf.org/external/pubs/ft/icm/1999/index.htm zAccès libre au texte intégral4 uhttp://www.imf.org/external/pubs/ft/icm/2000/01/eng/index.htm1 b(1986) -(2001)cParisdMagasins/AnnexeeP 4° 5299 aZPAY aGEO RQ Universel aDEW 33201137nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200011900163207001000282210002300292326001400315517007400329606004400403606004400447710008300491801001300574856006100587856004900648955006000697972000900757992002100766992001200787076243230000069187820130319051537.01 a1660-3222 a0000691878 a a20029999 fre 01 ba0 aeng aCH a 0  ar aal z 0 10aInternational CIIP handbookfCenter for Security Studies at the ETH Zurich (Swiss Federal Institute of Technology) 1a2002- aZurichcETHd2002- aBisannuel10aInternational critical information infrastructure protection handbook aSécurité internationalexPériodiques aRelations internationalesxPériodiques02aForschungsstelle für Sicherheitspolitik und Konfliktanalysec(Zurich, Suisse) 0aFRbFNSP4 uhttp://www.isn.ethz.ch/crn/publications/publications.cfm zContenu : texte intégral du dernier rapport1 b(2004) -(2008/2009)cParisdMagasins/AnnexeeP 8° 6779 aZGRA aGEO RQ Universel aDEW 32701265nas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200004400180207004200224210002400266326002500290326002600315430004500341606004600386606002600432606003200458801003000490801002300520802000700543856010800550856010800658955007100766972000900837992002100846992001200867108058913000101461120130319051537.01 a1748-0485 aissn17480485 a0001014611 a20060906a20069999k y0frey0103 ba0 aeng aGB a 0  ar aafa 0uu 14aThe international communication gazette 1aBegan with vol. 68, no. 1 (Feb. 2006) aLondoncSaged2006- a8 n°s par anb2009- aBimestrielb2006-2008 1tGazette (Leiden, Netherlands)x0016-5492 aCommunication audiovisuellexPériodiques aMédiasxPériodiques aCommunicationxPériodiques 3aFRbAbesc20060906gAFNOR 3aFRbISSNc20060720 a024 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 68 no. 1 (fev-2006) -....cParisdMagasins/AnnexeeP 8° 1375 aZSAB aGEO RQ Universel aDEW 07000777nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003800163210004700201326001800248606004500266801001300311856003600324856005200360955006600412972000900478992001200487064147681000052360320130319051538.01 a1567-536X a0000523603 a a20019999k fre ba0 aeng aNL a 0  ar aah z 0 10aInternational criminal law review aThe HaguecKluwer Law Internationald2001- a5 n°s par an aDroit pénal internationalxPériodiques 0aFRbFNSP4 uhttp://www.kluwerlawonline.com/ zContenu : sommaires depuis le vol.1,n °1, 20011 bvol. 2 no. 1 (2002) -....cParisdMagasins/AnnexeeP 8° 6677 aZSAB aDEW 34101278nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200025300154210002300407326001100430510006800441606005900509710006700568856012300635856010800758955005500866972000900921991001800930992001200948992001600960040202267000010315820140107161004.01 a1024-8226 aFNSP442745 a0000103158 a19900101a19939999 f ba0 amul aFR aaka 10aInternational direct investment statistics yearbook‎fOrganisation for Economic Cooperation and Development‎d= Annuaire des statistiques d'investissement direct international‎f= Organisation de coopération et de développement économiques aPariscOCDEd1993- aAnnuel10aAnnuaire des statistiques d'investissement direct international aInvestissements étrangersxStatistiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://titania.sourceocde.org/vl=1504601/cl=20/nw=1/rpsv/outlook_annuals.htm4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1993) -(2004)cParisdMagasins/AnnexeeP 4° 6285 aZPAY aexempb201401 aDEW 332 aDEW 310-31902061nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200019400154207003000348210005900378326003400437530004800471606003700519710007400556711005600630801002100686856012800707856010800835856010100943856010801044856009001152856010801242955009001350957007901440957010501519972000901624991001801633992001201651038727250000005702820131127170737.01 a0020-6598 aFNSP265620 a0000057028 a19900101a19609999 ba0 aeng aUS aahu 10aInternational economic reviewfpublished jointly by the Economics Department of the University of Pennsylvania and the Osaka University Institute of Social and Economic Research Association 1avol. 1 no. 1 (jan-1960) - aPhiladelphia, PacInternational economic reviewd1960- a3 nos par an puis trimestriel10aInternational economic reviewbPhiladelphia aEconomie politiquexPériodiques02aInstitute of Social and Economic Research Associationc(Osaka, Japon)02aUniversity of PennsylvaniabDepartment of Economics 3aFRbCCN0020-65984 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=IER&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=103322 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00206598.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1960) -vol. 53 no. 4 (nov-2012)cParisdMagasins/AnnexeeP 8° 19581 bvol. 31 (1990) -vol. 35 (1994)zse trouve dans le vol. 36 no. 1 (fev-1995)1 bvol. 1 (1960) -vol. 25 (1984) ; vol. 26 (1985) -vol. 30 (1989)cParisdMagasins/AnnexeeP Index 0571 aZPAY aexempb201103 aDEW 33001177nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000068001502100057002183000119002753260016003943360058004103370063004684400084005314520054006156060029006696060045006988010013007438560090007569550005008469920012008510000486591000048659120130319051538.0 a0000486591 a b19751977k fre 01 ba0 aeng aUS az aah z  adr 10aInternational family planning digestb[Ressource électronique] aNew-York, N.Y.cAlan Guttmacher Instituted1975-1977 aAccès au texte intégral (réservé aux sites de Sciences Po) à partir du vol. 1 de 1975 jusqu'au vol. 3 de 1977 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tInternational family planning perspectives and digest [Ressource électronique] 1tInternational family planning digestx(0362-4056) aPopulationxPériodiques aRégulation des naissancesxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03624056.html1 r aDEW 30401182nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000074001502100053002243000116002773260016003933360058004093370063004674300084005304520060006146060045006746060029007198010013007488560090007619550005008519920012008560000486671000048667120130319051538.0 a0000486671 a a19799999k fre 01 ba0 aeng aUS az aah z  adr 10aInternational family planning perspectivesb[Ressource électronique] aNew-York, N.Y.cAlan Guttmacher Instituted1979- aAccès au texte intégral (réservé aux sites de Sciences Po) jusqu' à l'année précédant l'année en cours aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tInternational family planning perspectives and digest [Ressource électronique] 1tInternational family planning perspectivesx(0190-3187) aRégulation des naissancesxPériodiques aPopulationxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01903187.html1 r aDEW 30401250nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000085001502100057002353000090002923260016003823360058003983370063004564300067005194400073005864520071006596060045007306060029007758010013008048560090008179550005009079920012009120000486668000048666820130319051538.0 a0000486668 a a19781978k fre 01 ba0 aeng aUS az aah z  adr 10aInternational family planning perspectives and digestb[Ressource électronique] aNew-York, N.Y.cAlan Guttmacher Instituted1978-1978 aAccès au texte intégral (réservé aux sites de Sciences Po) pour le vol. 4 de 1978 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tInternational family planning digest [Ressource électronique] 1tInternational family planning perspectives [Ressource électronique] 1tInternational family planning perspectives and digestx(0162-2749) aRégulation des naissancesxPériodiques aPopulationxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01622749.html1 r aDEW 30401081nas 2200337 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200004700148207002600195210002900221326002300250326002900273517000900302530004700311606003600358676001000394801001300404856010900417856010800526955006600634972000900700991001800709992001600727058255788000035512420131025132842.01 a1461-6742 a a19999999k fre ba0 aeng aGB a 0  ar aai z 0 10aInternational feminist journal of politics 1aVol. 1, no. 1 (1999)- aLondoncRoutledged1999- aTrimestrielb2004- a3 n°s par anb1999-200310aIFJP aInternational feminist journal of politics aScience politiquexPériodiques a305.4 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713722173db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1999) -....cParisdMagasins/AnnexeeP 8° 6539 aZSAB aexempb201212 aDEW 305-30601061nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001391100016001452000033001612100051001943260014002454400033002596060029002926070029003218010021003508560297003719550068006689920023007369920012007590000022776000002277620131104152734.01 a0294-8052 aFNSP160994 a0000022776 a19900101a19679999 ba0 aeng aFR ar acau 10aInternational Herald tribune aPariscInternational Herald Tribuned1967-2013 aQuotidien 1tInternational New York Times aActualitéxPériodiques aEtats-UnisxPériodiques 3aFRbCCN0294-80524 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAAzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLe mois en courscParisd27, Salle Rez-de-chausséeeP F° 1218 aGEO RC2 Etats-Unis aDEW 05001066nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210005000187326001600237606002700253710004700280801002100327856002700348856005000375856010900425856010800534955007100642972000900713991001800722992001200740039672581000002269020140107172340.01 a0707-5332 aFNSP160795 a0000022690 a19900101a19799999 ba0 amul aCA aahu 10aInternational history review aOntario, CanadacUniversity of Torontod1979- aTrimestriel aHistoirexPériodiques02aSimon Fraser Universityc(Burnaby, Canada) 3aFRbCCN0707-53324 uhttp://www.sfu.ca/ihr/ zContenu : sommaires depuis le volume 24, 20024 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t914689374db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 9 no. 1 (fév-1987) -....cParisdMagasins/AnnexeeP 8° 5133 aZSAB aexempb201011 aDEW 90901310nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200015300154210003700307326001600344606004400360710008100404856005600485856004000541856010900581856010800690955017100798972000900969991001800978992001200996039393127000003491620130319051538.01 a0305-0629 aFNSP201989 a0000034916 a19900101a19749999 ba0 aeng aGB aaha 10aInternational interactionsea transnational multidisciplinary journalfUniversity of North Carolina at Chapell Hill, Department of political science aLondoncGordon and Breachd1974- aTrimestriel aRelations internationalesxPériodiques02aUniversity of North Carolina at Chapel HillbDepartment of Political Science4 uhttp://www.tandf.co.uk/journals/titles/03050629.asp zContenu : présentation de la revue4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713718605db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 16 no. 1 (1990) -vol. 27 no. 4 (dec-2001)cParisdMagasins/AnnexeeP 8° 5734wLac.: vol. 19 no. 1 à 4 (1993), vol. 26 no. 1 à 4 (2000) ,vol. 27, no. 1 (2001). aZCAD aexempb201111 aDEW 32701471nas0 2200409 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200005700180210008000237326001600317436003800333436004500371517005900416530007800475607005200553607005100605607003300656801003000689801002300719802000700742856012900749856004100878955006700919972000900986992001200995992003601007992001801043130021687000115882120130319051538.01 a1337-5482 aissn13375482 a0001158821 a20081219a20069999 0frey0103 ba0 aeng aSK ay  ar aah 10aInternational issues & Slovak foreign policy affairs aBratislavacResearch Center of the Slovak Foreign Policy Associationd2006- aTrimestriel 1tMedzinárodné otázkyx1210-1583 1tSlovak foreign policy affairsx1335-625910aInternational issues and Slovak foreign policy affairs10aInternational issues & Slovak foreign policy affairsb(Tlačené vydanie) aSlovaquiexRelations extérieuresxPériodiques aEuropexIntégration économiquexPériodiques aEuropexUnitéxPériodiques 3aFRbAbesc20081219gAFNOR 3aFRbISSNc20080601 a354 uhttps://federation.sciences-po.fr/cas/login?service=https%3A%2F%2Ffederation.sciences-po.fr%3A443%2Fidp%2FAuthn%2FRemoteUser zContenu: texte intégral depuis 20061 bvol. 15 no. 1 (2006) -....cParisdMagasins/AnnexeeP 8° 6753 aZPAY aDEW 327 aGEO RA5.22 République slovaque aGEO RA Europe01323nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007100154210006400225326001600289530003500305606005700340606004400397607004900441676000800490710005100498801002100549856012200570856010800692955006700800955006600867972000900933992001900942992001200961038727358000002268820130319051538.01 a0020-7020 aFNSP160792 a0000022688 a19900101a19469999 ba0 aeng aCA aahu 10aInternational journalfCanadian institute of international affairs aTorontocCanadian Institute of International Affairsd1946- aTrimestriel 0aInternational journalbToronto aRelations économiques internationalesxPériodiques aRelations internationalesxPériodiques aCanadaxRelations extérieuresxPériodiques a32702aInstitut canadien des affaires internationales 3aFRbCCN0020-70204 uhttps://acces-distant.sciences-po.fr/fork?http://www.heinonline.org/HOL/Index?index=journals/intj&collection=journals zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 1 no. 4 (1946) -....cParisdMagasins/AnnexeeP 8° 0008 aZPAY aGEO RC1 Canada aDEW 32701003nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009000154210006200244326001500306510004700321607002500368710004800393856007400441856006000515955006800575972000900643991001800652992001900670992001200689036387258000026995020130319051538.01 a1180-3991 aFNSP933470 a0000269950 a19990408a19909999 ba0 amul aCA aaja 10aInternational journal of Canadian studiesdRevue internationale d'études canadiennes aOttawacInternational Council for Canadian Studiesd1990- aSemestriel10aRevue internationale d'études canadiennes aCanadaxPériodiques02aConseil international d'études canadiennes4 uhttp://www.iccs-ciec.ca/pages/newweb/sample2/journal_fr.asp?shownav=3 zContenu : accès aux sommaires et résumés depuis 19901 bno. 16 (1997) -no 32 (2005)cParisdMagasins/AnnexeeP 8° 6477 aZSAB aexempb201212 aGEO RC1 Canada aDEW 97101277nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005100154210002500205326002200230326002900252326002700281326002600308517000900334606002900343801002100372856010800393856010800501955011300609957007200722957009100794972000900885992002100894992001200915038727455000002269920131025123149.01 a0020-7152 aFNSP160811 a0000022699 a19900101a19609999 ba0 aeng aNL aahu 10aInternational journal of comparative sociology aLeidencBrilld1960- aBimestrielb2012- a3 n°s par anb2010-2011 aTrimestrielb1968-2009 aSemestrielb1960-196710aIJCS aSociologiexPériodiques 3aFRbCCN0020-71524 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1960) -vol. 42 no. 5 (2001) ; vol. 45 no. 1/2 (2004) -....cParisdMagasins/AnnexeeP 8° 18181 bvol. 1 (1960) -vol. 36 (1996)cParisdMagasins/AnnexeeP Index 07901 bvol. 26 (1985)-vol. 41 (2000)zcet index constitue le vol. 41, no. 5, 2000 de la revue aZGRA aGEO RQ Universel aDEW 30101092cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200008300180207003100263210004300294326001600337517001000353517005400363606004000417710003900457801003000496801002300526802000700549856004400556856006000600955007000660992001200730089938569000113151620130319051538.01 a1474-2640 aissn14742640 a0001131516 a20040510a20039999k y0frey0103 ba0 aeng aGB ay 0  ar aaha 0uu 10aInternational journal of constitutional lawfNew York University school of law 0aVol. 1, no. 1 (Jan. 2003)- aOxfordcOxford university pressd2003- aTrimestriel10aI.CON10aI.CON international journal of constitutional law aDroit constitutionnelxPériodiques02aNew York UniversitybSchool of Law 3aFRbAbesc20080111gAFNOR 3aFRbISSNc20050901 a024 uhttp://icon.oxfordjournals.org/archive/ zContenu : sommaires depuis le vol. 1 no 1, January 20031 bvol. 5 no. 1 (jan-2007) -....cParisdMagasins/AnnexeeP 8° 7011 aDEW 34201177nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012310600060014111000160014720000550016320700310021821000240024932600180027360600390029180100130033085601010034385601080044485601080055285601080066095500700076897200090083899200160084706413265X000060549520130319051538.01 a1470-5958 a0000605495 a a20019999 fre 01 ba0 aeng aGB a 0  ar aai z 0 10aInternational journal of cross cultural management 1aVol.1, n°1, (April 2001)- aLondoncSaged2001- a3 n°s par an aGestion d'entreprisexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=105892 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (avr-2001) -....cParisdMagasins/AnnexeeP 8° 6742 aZPAY aDEW 650-65801190nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005300139210002800192326003200220452007300252530005300325606003100378606002800409801002100437856011300458955007100571955008600642957007200728972000900800991001800809992002100827992001600848039701212000002271020130916164531.01 a0738-0593 aFNSP160828 a19900101a19819999 ba0 aeng aGB aagu 10aInternational journal of educational development aOxfordcPergamond1981- aTrimestriel puis bimestriel 1tnternational journal of educational development (Online),x1873-4871 aInternational journal of educational development aEnseignementxPériodiques aEducationxPériodiques 3aFRbCCN0738-05934 uhttp://www.sciencedirect.com/science/journal/07380593/1zSommaires et résumés depuis le vol. 1, no 1, 19811 bvol. 29 no. 1 (jan-2009) -....cParisdMagasins/AnnexeeP 4° 72841 bvol. 5 no. 1 (1985) -vol. 28 no. 6 (nov-2008)cParisdMagasins/AnnexeeP 8° 48901 bvol. 1 (1981) -vol. 10 (1990)cParisdMagasins/AnnexeeP Index 0670 aZPAY aexempb201002 aGEO RQ Universel aDEW 370-37901077nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000063001502100066002133000129002793260016004083360058004243370063004824400037005454520049005826060025006318010013006568560090006699550005007599920011007640000486587000048658720130319051538.0 a0000486587 a b18901938k fre 01 ba0 aeng aUS az aah z  adr 10aInternational journal of ethicsb[Ressource électronique] aPhiladelphia, Pa.cInternational Journal of Ethicsd1890-1938 aAccès au texte intégral (réservé aux sites de Sciences Po) à partir du vol. 1 de 1890 jusqu'au vol. 48, issue 2 de 1938 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tEthics [Ressource électronique] 1tInternational journal of ethicsx(1526-422X) aMoralexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/1526422X.html1 r aDEW 1701102nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210002400200326002500224326002100249326002900270326002700299606003600326856004100362856004700403856010900450856010800559955007000667972000900737991001800746992001200764036762733000023187220130319051538.01 a1364-2987 aFNSP823435 a0000231872 a19900101a19979999 ba0 aeng aGB aaha 14aThe International journal of human rights aLondoncCassd1997- a8 n°s par anb2011- aBimestrielb2010 a5 n°s par anb2008-2009 aTrimestrielb1997-2007 aDroits de l'hommexPériodiques4 uhttp://www.frankcass.com/jnls/hr.htm zContenu : sommaires depuis le vol. 1, no.14 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713635869db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1997) -....cParisdMagasins/AnnexeeP 8° 6367 aZSAB aexempb201301 aDEW 32300937nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005200154210004300206326001500249430005600264606004400320801002100364856006500385856008800450955007000538972000900608991001800617992001200635039323730000002271120130319051538.01 a0268-4012 aFNSP160829 a0000022711 a19900101a19869999 ba0 aeng aGB aagu 10aInternational journal of information management aGuilfordcButterworth-Heinemannd1986- aBimestriel 1aSocial science information studies,xISSN 0143-6236 aSciences de l'informationxPériodiques 3aFRbCCN0268-40124 uhttp://www.elsevier.nl:80/inca/publications/store/3/0/4/3/4/ zContenu : sommaires ; index auteurs et sujets ; depuis le vol. 15, n°1, fév. 19951 bvol. 6 no. 1 (mar-1986) -....cParisdMagasins/AnnexeeP 4° 5125 aZSAB aexempb201203 aDEW 02001052nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000066001642100046002303260016002766060045002928010013003378560103003508560109004538560108005629550071006709720009007419920012007500000464533000046453320130319051538.01 a0885-0607 a0000464533 a a19869999k fre ba0 aeng aUS a 0  ar aah z 0 10aInternational journal of intelligence and counterintelligence aPhiladelphia, PAcTaylor & Francisd1986- aTrimestriel aServices de renseignementsxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=1024654 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713723134db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 13 no. 1 (pri-2000) -....cParisdMagasins/AnnexeeP 8° 6627 aZCAD aDEW 32701027nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005300139210003000192326001500222530005300237606004000290606002900330710007900359801002100438856010500459856005200564955006600616972000900682991001800691992001600709039091910000002271920130916141021.01 a0147-1767 aFNSP160843 a19900101a19779999 ba0 aeng aUS aagu 10aInternational journal of intercultural relations aNew YorkcPergamond1977- aBimestriel aInternational journal of intercultural relations aRelations culturellesxPériodiques aSociologiexPériodiques02aSociété pour l'éducation, la formation et la recherche interculturelles 3aFRbCCN0147-17674 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/web-editions/journal/01471767 zContenu : accès aux sommaires et aux résumés1 bvol. 8 no. 4 (1984) -....cParisdMagasins/AnnexeeP 8° 4884 aZCAD aexempb201002 aDEW 305-30601256nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004800154210003800202326002200240326002700262606004400289606003900333801002100372856010300393856010800496856010900604856010800713955006600821972000900887991001800896992001600914039309851000002272120130319051538.01 a0260-1370 aFNSP160849 a0000022721 a19900101a19829999 ba0 aeng aGB aagu 10aInternational journal of lifelong education aLondoncTaylor and Francisd1982- aBimestrielb1994- aTrimestrielb1982-1993 aFormation professionnellexPériodiques aEducation permanentexPériodiques 3aFRbCCN0260-13704 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=102455 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713747968db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1982) -....cParisdMagasins/AnnexeeP 8° 4531 aZPAY aexempb200910 aDEW 370-37901085nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200007000163210004600233326002200279326002700301430005500328606002800383710003800411801001300449856012800462856010800590955007600698972000900774055672957000030711920130319051538.01 a1470-7853 a0000307119 a a20009999k fre ba0 aeng aGB a 0  ar aag z 0 10aInternational journal of market researchfMarket Research Society aHenley-on-ThamescNTC Publicationsd2000- aBimestrielb2005- aTrimestrielb1999-2004 1tJournal of the Market Research Society,x0025-3618 aMarketingxPériodiques02aMarket Research Society (Londres) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=9I8&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 42 no. 1 (hiv-1999/2000) -....cParisdMagasins/AnnexeeP 8° 2916 aZPAY01193cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200005700180207001900237210003000256326001800286517005500304517003000359517000800389606002600397606003700423606004400460801003000504801002300534802000700557856006300564856008100627955006600708992001200774992002100786104755571000115365820130319051539.01 a1740-8296 aissn17408296 a0001153658 a20040511a20059999k y0frey0103 ba0 aeng aGB ay 0  ar aaia 0uu 10aInternational journal of media and cultural politics 0aVol. 1, no. 1- aBristolcIntellectd2005- a3 n°s par an10aInternational journal of media & cultural politics10aMedia & cultural politics10aMCP aMédiasxPériodiques aMédias et culturexPériodiques aMédiasxAspect politiquexPériodiques 3aFRbAbesc20060711gAFNOR 3aFRbISSNc20060706 a024 uhttp://www.intellectbooks.co.uk/journals.php?issn=17408296 zContient les sommaires et résumés d'articles depuis le vol. 1 no. 1 (2005)1 bvol. 3 no. 1 (2007) -....cParisdMagasins/AnnexeeP 8° 7054 aDEW 302 aGEO RQ Universel01393nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004900154207003100203210004600234326001600280607003100296607003000327607003400357710005300391801002100444856004200465856007000507856009000577856010800667955006600775957007200841972000900913991001800922992003000940992002500970992001200995038727765000002274320140108154154.01 a0020-7438 aFNSP160887 a0000022743 a19900101a19709999 ba0 aeng aGB aahu 10aInternational journal of Middle East studies 1aVol. 1, no. 1 (Jan. 1970)- aLondoncCambridge University Pressd1970- aTrimestriel aMoyen-OrientxPériodiques aPays arabesxPériodiques aPays islamiquesxPériodiques02aMiddle East Studies Association of North America 3aFRbCCN0020-74384 uhttp://uk.cambridge.org/journals/mes/ zContenu : sommaires de quelques n° depuis le vol. 29, n°2, 19974 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00207438.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1970) -....cParisdMagasins/AnnexeeP 8° 27281 bvol. 1 (1970)-vol . 20 (1987)cParisdMagasins/AnnexeeP Index 0733 aZSAB aexempb200904 aGEO RG.12 Pays islamiques aGEO RG2 Moyen-Orient aDEW 95601032nas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200004300162210006800205326001500273606002300288606004100311710005600352801003000408801002300438802000700461856003800468856010500506955007400611972000900685992001200694097572284000093620720130319051539.01 a1085-7494 aissn10857494 a0000936207 a20060303a19959999 0frey0103 ba0 aeng aUS ar azl 10aInternational journal of peace studies aSt. Louis, Mo.cInternational Peace Research Associationd1995- aSemestriel aPaixxPériodiques aRèglement de conflitsxPériodiques02aAssociation internationale de recherche sur la paix 3aFRbAbesc20060303gAFNOR 3aFRbISSNc20060301 a014 uhttp://www.gmu.edu/academic/ijps/ zContenu : accès aux sommaires et à beaucoup d'articles en texte intégral avec un embargo de 2 ans1 bvol. 8 no. 1 (pri/ete-2003) -....cParisdMagasins/AnnexeeP 8° 6869 aZSAB aDEW 32701141nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004700154210003200201326001600233430005400249606003700303801002100340856004100361856006400402856015500466856010800621955007800729991001800807992001400825039987965000002362420130319051539.01 a0891-1916 aFNSP162974 a0000023624 a19900101a19879999 ba0 aeng aUS aaha 10aInternational journal of political economy aArmonk, N.Y.cSharped1987- aTrimestriel 1aInternational journal of politicsxISSN 0012-8783 aEconomie politiquexPériodiques 3aFRbCCN0891-19164 uhttp://www.mesharpe.com/ijp_main.htm zContenu : sommaires depuis le vol. 25, n°4, hiv. 1995-19964 uhttps://acces-distant.sciences-po.fr/fork?http://web.ebscohost.com/ehost/detail?vid=9&hid=113&sid=542c359b-3d02-405c-88f0-79b8e8548347%40sessionmgr107 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol.17 no 1(1987) -vol.26 no 4 (1996)cParisdMagasins/AnnexeeP 8° 3295 aexempb200911 aDEW 338.901188nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005900139210003700198210004800235210006800283210005200351326001600403430004300419452008100462517003400543530005900577606003600636856004800672955007000720972000900790991001800799992002100817992001200838039988872000002357620131003163516.01 a0891-4486 aFNSP162859 a19910131a19879999 ba0 aeng aUS aaha 10aInternational journal of politics, culture and society aDordrecht‎cSpringer‎d2004- aDordrecht‎cKluwer Academic‎d2000-2004 aNew York‎cKluwer Academic/Human Sciences Press‎d1999-2000 aNew York‎cHuman Sciences Press‎d1987-1998 aTrimestriel 1aState, culture and society,x0743-9245 1tInternational journal of politics, culture, and society (Online),x1573-341610aPolitics, culture and society00aInternational journal of politics, culture and society aSciences socialesxPériodiques uhttp://www.springerlink.com/content/105664/1 bvol. 1 no. 1 (aut-1987) -....cParisdMagasins/AnnexeeP 8° 5092 aZSAB aexempb201106 aGEO RQ Universel aDEW 30001371nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005100154210002800205326001900233606004200252607004500294801002100339856012800360856010800488856010900596856010800705955006700813955008700880972000900967991001800976992002300994992001601017039141330000002356320130319051539.01 a0190-0692 aFNSP162840 a0000023563 a19900101a19799999 ba0 aeng aUS aafa 10aInternational journal of public administration aNew YorkcDekkerd1979- a14 n°s par an aAdministration publiquexPériodiques aEtats-UnisxAdministrationxPériodiques 3aFRbCCN0190-06924 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=IPN&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713597261db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 33 no. 1 (2010) -....cParisdMagasins/AnnexeeP 4° 72721 bvol. 1 no. 1 (1979) -vol. 32 no. 14 (dec-2009)cParisdMagasins/AnnexeeP 8° 4328 aZSAB aexempb201104 aGEO RC2 Etats-Unis aDEW 350-35400939nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005300154210004300207326001600250606003700266606003500303710006200338856004200400856010200442955006600544972000900610991001800619992001200637040084515000003994120130319051539.01 a0954-2892 aFNSP216401 a0000039941 a19900101a19899999 ba0 aeng aGB aaha 10aInternational journal of public opinion research aOxfordcOxford University Pressd1989- aTrimestriel aSondages d'opinionxPériodiques aOpinion publiquexPériodiques02aAssociation mondiale de recherches sur l'opinion publique4 uhttp://www.oup.co.uk/intpor/contents/ zContenu : sommaires, résumés et texte intégral d'articles depuis le vol. 1, no. 1, Spring 19891 bvol. 1 no. 1 (1989) -....cParisdMagasins/AnnexeeP 8° 5748 aZSAB aexempb201111 aDEW 30301096nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210004300195326001600238606002900254606005900283676000800342856004200350856007200392856010100464856010800565955007000673972000900743991001800752992001200770040083578000001077620140110124429.01 a0953-8186 aFNSP120519 a0000010776 a19900712a19899999 ba0 aeng aGB aaha 10aInternational journal of refugee law aOxfordcOxford University Pressd1989- aTrimestriel aRéfugiésxPériodiques aRéfugiésxProtection, assistance, etc.xPériodiques a3254 uhttp://www.oup.co.uk/reflaw/contents/ zContenu : sommaires et résumés depuis le vol. 8, n°1, janv. 19964 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=102632 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1989) -....cParisdMagasins/AnnexeeP 8° 5603 aZCAD aexempb201111 aDEW 32501505nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005700163210003800220326002200258326002900280606003600309710003800345801001300383856012800396856010800524856010300632856010800735856010900843856010800952955007401060972000901134992001201143036764574000060583020130319051539.01 a1364-5579 a0000605830 a a19989999 fre 01 ba0 aeng aGB a 0  ar aag z 0 10aInternational journal of social research methodology aAbingdoncTaylor & Francisd1998- aBimestriel$d2011- a5 n°s par an$d1998-2010 aSciences socialesxPériodiques02aSocial Research Associationc(GB) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=9EB&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=102458 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713737293db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 6 no. 1 (jan/mar-2003) -....cParisdMagasins/AnnexeeP 8° 6745 aZPAY aDEW 30001275nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005000139210003400189326001600223430006600239440006400305452007100369530006000440606003900500801002100539856010000560856006000660955009000720957006700810972000900877991001800886992002100904992001200925039148793000002369620130909150350.01 a0194-6595 aFNSP163115 a19900101b19792007 ba0 aeng aGB aaha 10aInternational journal of the sociology of law aLondoncAcademic Pressd1979- aTrimestriel 1aInternational journal of criminology and penology,x0306-3208 1tInternational journal of law, crime and justice,x1756-0616 1tInternational journal of the sociology of law (Online),x1095-9262 aInternational journal of the sociology of law‎bPrint aSociologie juridiquexPériodiques 3aFRbCCN0194-65954 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/01946595 zContenu : sommaires depuis le vol. 23, n° 1, mars 19951 bvol. 7 no. 1 (fev-1979) -vol. 35 no. 4 (dec-2007)cParisdMagasins/AnnexeeP 8° 41771 bno. 1 (2004) -no. 4 (2004)zse trouve dans le no. 4 (dec-2004) aZPAY aexempb201106 aGEO RQ Universel aDEW 34001338cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200005000180207003000230210004300260326001700303530005900320606003900379606005800418801003000476801002300506802000700529856007800536856006600614856010300680856010800783955007000891992001500961116224924000114059220140110134418.01 a1752-7716 aissn17527716 a0001140592 a20070706a20079999k y0frey0103 ba0 aeng aGB ay 0  ar aaia 0uu 10aInternational journal of transitional justice 0aVol. 1, no 1 (Mar. 2007)- aOxfordcOxford University Pressd2007- a3 nos par an10aInternational journal of transitional justiceb(Print) aJustice réparatricexPériodiques aDroits de l'homme (droit international)xPériodiques 3aFRbAbesc20080118gAFNOR 3aFRbISSNc20070706 a024 uhttps://acces-distant.sciences-po.fr/fork?http://ijtj.oxfordjournals.org/ zContenu : sommaires et résumés depuis le vol. 1, March 20074 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=712650 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-2007) -....cParisdMagasins/AnnexeeP 8° 7024 aDEW 341.4802036nas 2200433 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200011600139210002900255210003900284326002200323326002700345326003100372452007800403510005900481606003600540606002800576606004500604676000800649801002100657856007200678856007300750856010100823856010800924856015101032856010801183955006701291955010501358957010101463972000901564991001801573992001101591039404080000002356020130926113115.01 a0309-1317 aFNSP162836 a19900101a19779999 ba0 aeng aGB aaha 10aInternational journal of urban and regional researchd= Revue internationale de recherche urbaine et régionale aOxfordcBlackwelld1991- aLondon‎cE. Arnold‎d1977-1990 aBimestrielb2011- aTrimestrielb1979-2010 a3 nos par an‎b1977-1978 1tInternational journal of urban and regional research (Online),x1468-242710aRevue internationale de recherche urbaine et regionale aPolitique urbainexPériodiques aUrbanismexPériodiques aAménagement du territoirexPériodiques a333 3aFRbCCN0309-13174 uhttp://www.blackwellpublishing.com/journal.asp?ref=0309-1317&site=1 zContenu : sommaires et résumés depuis le vol. 21, n°1, janv. 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100853 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://web.ebscohost.com/ehost/detail?vid=4&hid=7&sid=d4412796-afa9-4974-a85d-bbe4308d4a69%40sessionmgr7 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3331 bvol. 1 no. 1 (mar-1977) -....cParisdMagasins/AnnexeeP 8° 4266wManquent : vol. 21, nos 1>4, 19971 bno. 1 (1977) -no. 10 (1986) ; no. 11 (1987) -no. 20 (1996)cParisdMagasins/AnnexeeP Index 0607 aZPAY aexempb201106 aDEW 7100901nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005500154210004700209326001600256430005400272606003600326856004900362856005300411955008700464972000900551991001800560992002100578992001200599036861820000022454720130319051539.01 a1385-4879 aFNSP803465 a0000224547 a19900101a19979999 ba0 aeng aNL aaha 00aInternational journal on minority and group rights aThe HaguecKluwer Law Internationald1997- aTrimestriel 1aInternational journal on group rights,x0927-5908 aDroits de l'hommexPériodiques4 uhttp://www.wkap.nl/journalhome.htm/1385-4879 zContenu : sommaires depuis le vol. 3, n°1, 19951 bvol. 4 no. 1 (1996/1997) -vol. 10 no. 4 (2004)cParisdMagasins/AnnexeeP 8° 6252 aZSAB aexempb201212 aGEO RQ Universel aDEW 32301713cas0 2200409 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006400139207001800203210005200221215001600273300001100289321018400300430007000484440006600554500005200620530007200672606004600744606005500790606006400845606002600909606003200935606004200967712004101009801003001050801001901080856011701099945001501216955005501231991001701286080162770000107398220130319051539.0 a1933-8201 a0001073982 a20040907b19141915 h frey0103 ba0 aeng aUS aak # yy 00aInternational law topics and discussionsfNaval War College 0a(1913)-(1914) aWashington (D.C.)cGovt. Print. Off.d1914-1915 a2 v.d24 cm aAnnuel0 a"General index to international law situations topics and discussions" (1922) ; "General index to international law situations topics, discussions, documents and decisions" (1933) 1tInternational law situations (Naval War College. 1911)x1933-821X 1tInternational law topics (Naval War College. 1916)x1933-835x1|aInternational law topics and discussions (1913)10aInternational law topics and discussionsb(Naval War College. 1914) aDroit internationalxPériodiques2rameau aGuerre (droit international)xPériodiques2rameau aGuerre maritime (droit international)xPériodiques2rameau aInternational law2lc aWar (International law)2lc aWar, Maritime (International law)2lc02aNaval war collegecNewport, R.I4340 3aFRbAbesc20061108gAFNOR 2bCStRLINgAACR24 uhttp://archive.org/details/internationalla03collgoogzAccès libre au texte intégral. 1914 sur Internet Archive bCOL8°00351 b(1913) -(1914)cParisdMagasins/AnnexeeCOL8°0035 aPériobTP0101840cas0 2200397 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102110001600109200006400125207001800189210005200207215001600259300001100275301006700286321030400353430005300657440007000710500005200780530006600832606004600898606005500944606006400999606002601063606003201089606004201121712004101163801003001204801001901234856011701253955005501370991001701425080162002000107397820130319051539.0 a0001073978 a20040907b19061907 h frey0103 ba0 aeng aUS aak # yy 00aInternational law topics and discussionsfNaval War College 0a(1905)-(1906) aWashington (D.C.)cGovt. Print. Off.d1906-1907 a2 v.d24 cm aAnnuel aDemande de numérotation ISSN en cours par Cr27, le 16/09/20050 aGeneral index to international law situations, topics and discussions, with bibliography and table of contents (1912) ; "General index to international law situations topics and discussions" (1922) ; "General index to international law situations topics, discussions, documents and decisions" (1933) 1tInternational law situations (Naval War College) 1tInternational law situations (Naval War College. 1908)x1933-82361|aInternational law topics and discussions (1905)10aInternational law topics and discussionsb(Naval War College) aDroit internationalxPériodiques2rameau aGuerre (droit international)xPériodiques2rameau aGuerre maritime (droit international)xPériodiques2rameau aInternational law2lc aWar (International law)2lc aWar, Maritime (International law)2lc02aNaval war collegecNewport, R.I4340 3aFRbAbesc20050916gAFNOR 2bCStRLINgAACR24 uhttp://archive.org/details/internationalla00collgoogzAccès libre au texte intégral. 1906 sur Internet Archive1 b(1905) -(1906)cParisdMagasins/AnnexeeCOL8°0035 aPériobTP0101036nas 2200289 i 450 002001100000005001700011011001400028035001500042100004100057101000800098102000700106200003400113210006600147326001500213606004700228710004200275801002100317856008900338856003200427856003800459955009000497955007000587957004700657972000900704992002100713992001200734000005630220130429150258.01 a0020-7829 aFNSP263480 a19900101a19629999 ba0 aeng aUS10aInternational legal materials aWashington, D.CcAmerican Society of International Lawd1962- aBimestriel aDroit internationalxSourcesxPériodiques02aAmerican Society of International Law 3aFRbCCN0020-78294 zAccessible en texte intégral dans la base de données Westlaw depuis 1980 réservé4 uhttp://www.asil.org/ilm.cfm zSommaire des numéros depuis 19991 bvol. 1 no. 1 (aou-1962) -vol. 45 no. 6 (nov-2006)cParisdMagasins/AnnexeeP 4° 23601 bvol. 49 no. 4 (jul-2010)-....cParisdMagasins/AnnexeeP 4° 23601 rIndex 1970/1979, 1980/1989 < P Index 568 > aZCAD aGEO RQ Universel aDEW 34101236nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210007000182300004100252326001800293510003100311510003200342530004300374606004400417710005200461801002100513856007100534856007300605955018100678972000900859991001800868992001200886038728265000003626020130319051539.01 a0020-7985 aFNSP205397 a0000036260 a19900101a19679999 f ba0 amul aCH aaga 10aInternational migration aGenevacIntergovernmental Committee for European Migrationd1967- anos 3 et 4 de 1980 et 1981 non parus a5 n°s par an10aMigrations internationales10aMigraciones internacionales 0aInternational migrationbGeneva. Print aEmigration et immigrationxPériodiques02aOrganisation internationale pour les migrations 3aFRbCCN0020-79854 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0020-7985 zContenu : sommaires et résumés depuis le vol. 35, no. 1, mars 19971 bvol. 1 no. 1 (1963) -vol. 34 no. 4 (1996) ; vol. 37 no. 3 (1999) -....cParisdMagasins/AnnexeeP 8° 1731wManquant : vol. 35, 1997 ; vol. 36, 1998 ; vol. 37, nos 1 et 2, 1999 aZSAB aexempb201102 aDEW 32501477nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006900154210006500223210004000288210004200328326001600370606004400386710004400430801002100474856004500495856003800540856009000578856010800668856010300776856010800879955008600987972000901073992002101082992001201103039153630000002369820131202094231.01 a0197-9183 aFNSP163121 a0000023698 a19900101a19669999 ba0 aeng aUS aaha 14aThe International migration reviewfCenter for Migration Studies aStaten Island, N.Y.cCenter for Migration Studiesd1966-2005 aMalden, Mass.cBlackwelld2006-2007 aMalden, Mass.cWiley-Blackwelld2008- aTrimestriel aEmigration et immigrationxPériodiques02aCenter for Migration Studies (New York) 3aFRbCCN0197-91834 uhttp://www.cmsny.org/imr-publication.htm zContenu : sommaire du dernier n°4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01979183.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=114469 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1966) -vol. 46 no. 4 (hiv-2012)cParisdMagasins/AnnexeeP 8° 2400 aZCAD aGEO RQ Universel aDEW 32501051nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006400154210004700218326001800265606003200283606004400315710004500359856012800404856010800532955008200640972000900722991001800731992001200749068680384000022017320130319051540.01 a1382-340X aFNSP790931 a0000220173 a19900101a19969999 ba0 aeng aNL aaia 10aInternational negotiationea journal of theory and practice aThe HaguecKluwer Law Internationald1996- a3 n°s par an aNégociationsxPériodiques aRelations internationalesxPériodiques02aWashington Interest in Negotiation Group4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=MZZ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1996) -vol. 11 no. 3 (2006)cParisdMagasins/AnnexeeP 8° 6339 aZSAB aexempb201301 aDEW 32201551nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005500154210003900209326001600248606004800264606004700312676000800359710004200367711002700409801002100436856012800457856010800585856010100693856010800794856009000902856010800992955006601100972000901166992001401175038728346000002311720140110145203.01 a0020-8183 aFNSP161682 a0000023117 a19900101a19479999 ba0 aeng aUS aahu 10aInternational organizationfWorld Peace Foundation aCambridge, Mass.cMIT Pressd1947- aTrimestriel aOrganisations internationalesxPériodiques aSociologie des organisationsxPériodiques a32702aMassachusetts Institute of Technology02aWorld Peace Foundation 3aFRbCCN0020-81834 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=IOR&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=109456 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00208183.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1947) -....cParisdMagasins/AnnexeeP 8° 0005 aZCAD aDEW 341.201190nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154207002600185210002800211210002900239326002500268326002700293606004400320606003800364676000800402856004100410856006700451856010900518856010800627955006600735972000900801991001800810992001200828036740640000015836520140110151002.01 a1353-3312 aFNSP612760 a0000158365 a19900101a19949999 ba0 aeng aGB aaha 10aInternational peacekeeping 1avol. 1, no. 1 (1994)- aLondoncCassd1994-2005 aLondoncRoutledged2005- a5 n°s par an$d2007- aTrimestriel$d1994-2006 aSécurité internationalexPériodiques aMaintien de la paixxPériodiques a3274 uhttp://www.frankcass.com/jnls/ip.htm zContenu : sommaires et résumés depuis le vol. 1, no. 1, 19944 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713635493db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1994) -....cParisdMagasins/AnnexeeP 8° 6126 aZSAB aexempb201207 aDEW 32701422nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210006200200326001500262517004300277606005100320710005200371801002100423856010800444856010800552856015500660856010800815955006900923955005500992972000901047992001601056992001201072038728451000006632820131112101449.01 a0020-8345 aFNSP308120 a0000066328 a19900101a19519999 f ba0 amul aFR aagu 10aInternational political science abstracts aPariscInternational Political Science Associationd1951- aBimestriel10aDocumentation politique internationale aScience politiquexBibliographiexPériodiques02aAssociation internationale de science politique 3aFRbCCN0020-83454 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://web.ebscohost.com/ehost/search?vid=2&hid=108&sid=13385cc1-c12b-4bd1-acd1-f6ba0db60f6c%40sessionmgr104 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1982) -vol. 56 no. 6 (2006)cParisdMagasins/AnnexeeP 4° 47471 b(1951) -(1981)cParisdMagasins/AnnexeeP 8° 1004 aZSAB aDEW 320-321 aDEW 01002017nas 2200445 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200008800139210003700227210005400264210005500318210004100373326002400414326002700438452006400465510004600529530004200575606003600617676000800653710005200661801002100713856007000734856010800804856010800912856010801020856009001128856010801218955006701326955006601393955006901459972000901528991001801537992001601555039145107000002313920131219164436.01 a0192-5121 aFNSP161778 a19900101a19809999 ba0 afre aGB aagu 10aInternational political science reviewd= Revue internationale de science politique aLondon [etc.]‎cSage‎d1996- aGuildford‎cButterworth-Heinemann‎d1990-1995 aGuildford‎cButterworth Scientific‎d1987-1990 aLondon [etc.]‎cSage‎d1980-1986 a5 nos par anb2007- aTrimestrielb1996-2006 1tInternational political science review (Online),x1460-373X10aRevue internationale de science politique anternational political science review aScience politiquexPériodiques a32002aAssociation internationale de science politique 3aFRbCCN0192-51214 uhttps://acces-distant.sciences-po.fr/fork?http://ips.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01925121.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bvol. 1 no. 1 (1980) -....cParisdMagasins/AnnexeeP 8° 42541 bL'année en courscParisdBibliothèque de rechercheeP 8° 4254 aZSAB aexempb201106 aDEW 320-32101180nas0 2200337 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200007300139207002300212210004000235326001600275606003900291606004400330606005600374676000800430710004400438801003000482856004500512856005700557955006600614955007000680955006900750972000900819992001400828113755376000108081820131219164536.01 a1749-5679 a0001080818 a20070404a20079999k 0frey0103 ba0 aeng aUS aaha k 10aInternational political sociologyfInternational Studies Association 0aVol.1, n.1 (2007)- aMaldencBlackwell Publishingd2007- aTrimestriel aSociologie politiquexPériodiques aRelations internationalesxPériodiques aRelations internationalesxSociologiexPériodiques a30102aAssociation des études internationales 3aFRbAbesc20070404gAFNOR4 uhttp://www.blackwell-synergy.com/loi/IPS zContenu : sommaires des n°s et résumés d'articles1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3011 bvol. 1 no. 1 (mar-2007) -....cParisdMagasins/AnnexeeP 8° 69581 bL'année en courscParisdBibliothèque de rechercheeP 8° 6958 aZGRA aDEW 306.201123nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002700139210004700166326002200213326002700235430002900262452004800291530003800339606005700377606004400434676000800478856013400486955006700620955007100687972000900758991001800767992001200785036858544000020087220130709140403.01 a1384-5748 aFNSP732733 a19900101a19969999 ba0 aeng aNL aaha 10aInternational politics aThe HaguecKluwer Law Internationald1996- aBimestrielb2007- aTrimestrielb1996-2006 1aCo-existence,x0587-5994 1tInternational politics (Online),x1740-389810aInternational politicsbThe Hague aRelations économiques internationalesxPériodiques aRelations internationalesxPériodiques a3274 uhttps://acces-distant.sciences-po.fr/fork?http://www.palgrave-journals.com/ip/archive/index.htmlzAccès libre au texte intégral1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 33 no. 1 (mar-1996) -....cParisdMagasins/AnnexeeP 8° 2105 aZSAB aexempb201202 aDEW 32701047nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210003700198326002300235326002800258326002600286517000900312606004200321710004400363856010900407856010800516955006600624972000900690991001800699992001600717036159298000026955620130319051540.01 a1096-7494 aFNSP932620 a0000269556 a19990402a19989999 ba0 aeng aUS aaha 10aInternational public management journal aStamford, Con.cJAI Pressd1998- aTrimestrielb2006- a3 nos par anb2005-2005 aSemestrielb1998-200410aIPMJ aAdministration publiquexPériodiques02aInternational Public Management Network4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t737963440db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1998) -....cParisdMagasins/AnnexeeP 8° 6472 aZPAY aexempb201212 aDEW 350-35401172nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004200154210006600196326003200262606004200294606003800336710004500374801002100419856010800440856010800548955008600656957009800742991001800840992001200858039101371000002314320130319051540.01 a0160-0176 aFNSP161787 a0000023143 a19900101a19759999 ba0 aeng aUS aaju 10aInternational regional science review aMorgantown, Wv.cInternational Regional Science Reviewd1975- aSemestriel puis Trimestriel aGéographie économiquexPériodiques aEconomie régionalexPériodiques02aRegional Research Institute (Etats-Unis) 3aFRbCCN0160-01764 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 1 (aut-1980) -vol. 21 no. 3 (1998)cParisdMagasins/AnnexeeP 8° 45541 bvol. 1 (1975) -vol. 12 (1989)cParisdMagasins/Annexe :zpublié dans le vol. 12 no. 3 (1989) aexempb201106 aDEW 90901237nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200003700138210007600175326002300251326002800274326002600302606004400328710006700372801002100439856002800460856010800488856010800596856010800704955005700812972000900869992002100878992001200899038826704000002314420130319051540.01 a0047-1178 aFNSP161788 a0000023144 a19900101a19549999 ba0 aeng aGB10aInternational relations (London) aLondoncDavid Davies Memorial Institute of International Studiesd1954- aTrimestrielb2003- a3 n° par anb1992-2002 aSemestrielb1954-1991 aRelations internationalesxPériodiques02aDavid Davies Memorial Institute of International Studiesc(GB) 3aFRbCCN0016/01484 uhttp://ire.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(avr-1954) -....cParisdMagasins/AnnexeeP 8° 1357 aZSAB aGEO RQ Universel aDEW 32701252nas 2200349 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012310600060014111000160014720001110016321000430027432600180031745200700033553000660040560600440047160700470051560700620056271000490062480100130067385600370068685600710072395500660079497200090086099200120086999200210088106413248X000049036120130319051540.01 a1470-482X a0000490361 a a20019999k fre ba0 aeng aGB a 0  ar aai z 0 10aInternational relations of the Asia-Pacificea journal of the Japan Association of International Relations aOxfordcOxford University Pressd2001- a3 n°s par an 1tInternational relations of the Asia-Pacific (online)x(1470-4838)00aInternational relations of the Asia-Pacificb(Texte imprimé) aRelations internationalesxPériodiques aAsiexRelations extérieuresxPériodiques aPacifique (région)xRelations extérieuresxPériodiques02aJapan Association of International Relations 0aFRbFNSP4 uhttp://www.irap.oupjournals.org/ zSommaires et résumés des articles à partir du vol.1, n°1, 20011 bvol. 1 no. 1 (2001) -....cParisdMagasins/AnnexeeP 8° 6663 aZSAB aDEW 327 aGEO RI3.22 Japon01349nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005200154210002400206326001600230422006600246434004900312606004200361606003700403710005600440801002100496856007000517856010800587856010800695856010800803955007500911972000900986992001600995038728516000004340320130319051541.01 a0020-8523 aFNSP227514 a0000043403 a19900101a19579999 ba0 aeng aIN aahu 10aInternational review of administrative sciences aLondoncSaged1957- aTrimestriel 1aRevue internationale des sciences administrativesx(0773-2961 1aProgress in public administrationx0352-3060 aAdministration publiquexPériodiques aPolitique publiquexPériodiques02aInstitut international des sciences administratives 3aFRbCCN0020-85234 uhttps://acces-distant.sciences-po.fr/fork?http://ras.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 53 no. 1 (mar-1987) -....cParisdMagasins/AnnexeeP 4° 1490 bis aZSAB aDEW 350-35401487nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210002600200326002200226326002900248326002700277606003700304856012800341856010800469856010300577856010800680856010900788856010800897955007001005972000901075991001801084992002101102992001401123039325288000001077720130319051541.01 a0269-2171 aFNSP120520 a0000010777 a19900712a19879999 ba0 aeng aGB aaga 10aInternational review of applied economics aLondoncArnoldd1987- aBimestrielb2008- a5 n°s par anb2006-2007 aTrimestrielb1987-2005 aEconomie politiquexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=RAE&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=102219 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713426883db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1987) -....cParisdMagasins/AnnexeeP 8° 5207 aZPAY aexempb201202 aGEO RQ Universel aDEW 338.900978nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200004600138210004300184326002300227326002600250606003700276801002100313856010000334856005400434955007100488955009000559972000900649991001800658992001200676039086011000005622220130319051541.01 a0144-8188 aFNSP263280 a0000056222 a19900101a19819999 ba0 aeng aGB10aInternational review of law and economics aGuilfordcButterworth-Heinemannd1981- aTrimestrielb1992- aSemestrielb1981-1991 aDroit des affairesxPériodiques 3aFRbCCN0144-81884 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/01448188 zContenu : sommaires depuis le vol. 1, no. 1, 19811 bvol. 28 no. 1 (mar-2008) -....cParisdMagasins/AnnexeeP 4° 72211 bvol. 4 no. 2 (dec-1984) -vol. 27 no. 4 (dec-2007)cParisdMagasins/AnnexeeP 8° 4861 aZPAY aexempb201011 aDEW 34601323nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004300154210004900197326001800246430008900264606003500353710004600388801002100434856004200455856005400497856010100551856010800652955011500760957007200875972000900947991001700956992001200973038728591000007399020130319051541.01 a0020-8590 aFNSP336706 a0000073990 a19900101a19569999 ba0 aeng aNL aaiu 10aInternational review of social history aCambridgecCambridge University Pressd1956- a3 n°s par an 1aBulletin of the International Institute of Social History (0921-254X) < P 8° 1034 > aHistoire socialexPériodiques02aInstitut international d'histoire sociale 3aFRbCCN0020-85904 uhttp://uk.cambridge.org/journals/ish/ zContenu : sommaires depuis le vol. 41, n°1, 19964 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=102041 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1956) -vol. 29 no. 3 (1984) ; vol. 39 no. 1 (avr-1994) -....cParisdMagasins/AnnexeeP 8° 10341 bvol. 1 (1956) -vol. 37 (1992)cParisdMagasins/AnnexeeP Index 0779 aZPAY aexemp$201103 aDEW 30100880nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000069001502100025002192300024002443260016002685100043002846010058003276060053003858010013004388560035004518560054004869550005005409920021005459920012005660001161296000116129620130319051541.0 a0001161296 a a19959999k fre 01 ba0 aeng aCH ar aah z  adr 10aInternational review of the Red Crossb[Ressource électronique] aGenèvecCICRd1995- aRevue électronique aTrimestriel12aRevue internationale de la Croix-Rouge02aComité international de la Croix-RougexPériodiques aOrganisations non gouvernementalesxPériodiques 0aFRbFNSP4 uhttp://www.cicr.org/eng/review zContenu : texte intégral depuis le n° 304, 19951 r aGEO RQ Universel aDEW 36001178nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008300154210006100237326001600298510004300314601005800357606005300415710004400468801002100512830003200533856003500565856005400600955007600654957007100730972000900801991001800810992001200828038786877000004235820130319051541.01 a0020-8604 aFNSP224265 a0000042358 a19900101a19559999 f ba0 aeng aZZ aahu 10aInternational review of the Red Crossd=Revue internationale de la Croix rouge aGenèvecInternational Committee of the Red Crossd1961- aTrimestriel10aRevue internationale de la Croix rouge02aComité international de la Croix-RougexPériodiques aOrganisations non gouvernementalesxPériodiques02aComité international de la Croix-Rouge 3aFRbCCN0035-3361 a1947-1984 : donné au CTLES4 uhttp://www.cicr.org/eng/review zContenu : texte intégral depuis le n° 304, 19951 bno. 751 (1985) - no. 862 (jun-2006)cParisdMagasins/AnnexeeP 8° 01771 b(1962)-(1974), (1975)-(1987)cParisdMagasins/AnnexeeP Index 0279 aZGRA aexempb201101 aDEW 32701635nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002700139210003900166326001600205452005000221530003700271606004400308606004400352676000800396710006900404801002100473856013300494856019500627856020600822955006701028955007001095955006901165972000901234991001801243992001201261039105679000002315120131219164737.01 a0162-2889 aFNSP161818 a19900101a19769999 ba0 aeng aUS aahu 10aInternational security aCambridge, Mass.cMIT Pressd1976- aTrimestriel 1tInternational security (Online)‎x1531-480410aInternational security‎bPrint aSécurité internationalexPériodiques aArt et science militairesxPériodiques a32702aCenter for Science and International Affairsc(Cambridge, Mass.) 3aFRbCCN0162-28894 uhttp://mitpress.mit.edu/journal-contents.tcl?issn=01622889zContenu : sommaires et résumés depuis le vol. 19, n°1, été 19944 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01622889.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101990zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 2 no. 3 (hiv-1978) -....cParisdMagasins/AnnexeeP 8° 40451 bL'année en courscParisdBibliothèque de rechercheeP 8° 4045 aZCAD aexempb200302 aDEW 32701130nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002800139210005300167326002400220326003000244452005100274530002800325606002900353710004500382801002100427856010800448856010800556955011300664972000900777991001800786992001200804039324044000002315720131003155536.01 a0268-5809 aFNSP161836 a19900101a19869999 ba0 aeng aGB aahu 10aInternational sociology aCardiffcUniversity College Cardiff Pressd1986- aBimensuel‎b2006- aTrimestriel‎b1986-2005 1tInternational sociology (Online)‎x1461-7242 aInternational sociology aSociologiexPériodiques02aAssociation internationale de sociologie 3aFRbCCN0268-58094 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1986) -vol. 2, no. 4 (1987) ; vol. 6 no. 1 (1991)-....cParisdMagasins/AnnexeeP 8° 5088 aZSAB aexempb201106 aDEW 30101185nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210004200186326001600228430006000244451004200304606004400346676000800390710004300398801002100441856010900462856010800571955007000679957005600749972000900805992002100814992001200835039594351000002315820140110150546.01 a0393-2729 aFNSP161837 a0000023158 a19900101a19839999 ba0 aeng aIT aahu 14aThe International spectator aRomacFratelli Palombi Editorid1983- aTrimestriel 1aSpettatore internazionale (English edition),x0584-8776 1aSpettatore internazionale,x0391-9455 aRelations internationalesxPériodiques a32702aIstituto affari internazionalic(Rome) 3aFRbCCN0393-27294 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t768481834db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 18 no. 1/2 (1983) - ....cParisdMagasins/AnnexeeP 4° 48701 b(1991)-(1999)cParisdMagasins/AnnexeeP Index 0831 aZPAY aGEO RQ Universel aDEW 32701119nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210002700180326001600207530003900223606004400262607004700306710004900353856010800402856010800510955012800618972000900746991001800755992002000773992001200793038728729000002321820130319051541.01 a0020-8817 aFNSP161989 a0000023218 a19910129a19599999 ba0 aeng aIN aaha 10aInternational studies aNew DelhicSaged1959- aTrimestriel10aInternational Studiesb(New Delhi) aRelations internationalesxPériodiques aIndexRelations extérieuresxPériodiques02aSchool of International Studiesc(New Delhi)4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jul-1959) -vol. 42 no. 1 (janv/mar-2005) ; vol. 45 no. 2 (avr-2008) -....cParisdMagasins/AnnexeeP 8° 1826 aZSAB aexempb200910 aGEO RI1.13 Inde aDEW 32701010cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200003900162210004400201326001600245430004300261606004400304710004400348801003000392801002300422802000700445856003000452856006600482955007000548972000900618992003300627992001200660058346473000073306420130319051541.01 a1528-3577 aissn15283577 a0000733064 a20001206a20009999 0fre 0103 ba0 aeng aUS ar aah 10aInternational studies perspectives aMalden, MAcBlackwell Publishersd2000- aTrimestriel 1tInternational studies notesx0094-7768 aRelations internationalesxPériodiques02aAssociation des études internationales 3aFRbAbesc20040602gAFNOR 3aFRbISSNc20001206 a014 uhttp://www.isp.uconn.edu/ zContenu : sommaires et résumés depuis le Vol. 1, n°1, 20001 bvol. 5 no. 1 (fev-2004) -....cParisdMagasins/AnnexeeP 4° 7063 aZGRA aGEO RS Sans aspect régional aDEW 32701609nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154210004300190326001600233421005700249430004500306606004400351712004400395801002100439830004700460856007900507856007200586856009000658856010800748856006500856856009000921955015101011972000901162991001901171992002101190992001201211038728745000002326420130319051541.01 a0020-8833 aFNSP162176 a0000023264 a19900101a19679999 ba0 aeng aGB aahu 10aInternational studies quarterly aGuilfordcButterworth-Heinemannd1967- aTrimestriel01tMershon international studies reviewxISSN 1079-1760 1aBackground (Los Angeles)xISSN 0361-5448 aRelations internationalesxPériodiques02aAssociation des études internationales 3aFRbCCN0020-8833 a1958 -->1983 : Collection donnée au CTLes4 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0020-8833&src=cts zContenu : sommaires et résumés depuis le vol. 41, n°1, mars 19974 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00208833.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po zPour Background (Los Angeles) via JSTOR, voir URL ci-dessous4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03615448.html1 bvol. 28 no. 1 (1984) -....cParisdMagasins/AnnexeeP 8° 1684wManquants: vol. 36 (1992) ; vol. 42 no. 3 (1998) ; vol. 44 (2000) ; vol. 45 (2001) aZSAB aexemp§b201102 aGEO RQ Universel aDEW 32701148cas0 2200349 450 001001000000002001100010005001700021011001400038020002000052035001500072040001100087100004100098101000800139102001100147105001800158110001600176200007400192207003500266210004400301326001600345430005200361606004400413606004400457710004400501801003000545856004600575856006500621955007000686972000900756992002100765992001200786056261063000092332220130319051541.01 a1521-9488 aUSbsn 98001195 a0000923322 aISRVFT a20010710a19999999 y0frey0103 ba0 aeng aUSbma a 0  aahy 0yy 00aInternational studies reviewfAssociation des études internationales 0aVol. 1, issue 1 (Spring 1999)- aMalden, MAcBlackwell Publishersd1999- aTrimestriel 1tMershon international studies reviewx1079-1760 aRelations internationalesxPériodiques aRelations internationalesxPériodiques02aAssociation des études internationales 3aFRbAbesc20020522gAFNOR4 uhttp://www.blackwell-synergy.com/loi/misr zContenu : sommaires et résumés depuis le vol.1, n°1, 19991 bvol. 6 no. 1 (mar-2004) -....cParisdMagasins/AnnexeeP 8° 6860 aZSAB aGEO RQ Universel aDEW 32701222nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003600139210002900175326001600204530003200220606004100252710005300293801002100346856010300367856010800470856010900578856010800687955007000795972000900865991001800874992001600892039976831000002326820131002165945.01 a0885-3908 aFNSP162189 a19900101a19869999 ba0 aeng aUS aahu 14aThe International trade journal aLaredo, Tex.cIITd1986- aTrimestriel aInternational trade journal aCommerce internationalxPériodiques02aInstitute of International Tradec(Laredo, Tex.) 3aFRbCCN0885-39084 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=102460 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713772442db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (oct-1986) -....cParisdMagasins/AnnexeeP 8° 5029 aZPAY aexempb201106 aDEW 380-38201197nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200018700154210003600341326001100377430007500388510005100463606004400514676000800558710004300566856012200609955005800731955005300789972000900842992001600851992001600867036063886000007784620130319051541.01 a1010-447X aFNSP351734 a0000077846 a19900101a19859999 f ba0 amul aUS aaka 10aInternational trade statistics yearbookd= Annuaire statistique du commerce internationalfUnited Nations, Department of International Economic and Social Affairs, Statistical Office aNew YorkcUnited Nationsd1985- aAnnuel 1aYearbook of international trade statistics - United Nationsx0084-382210aAnnuaire statistique du commerce international aStatistiques commercialesxPériodiques a33702aNations UniesbDivision de statistique4 uhttps://unp.un.org/Search.aspx?keyword=international%20trade%20statistics%20yearbookzAccès libre au texte intégral1 b(1983) -(2004)cParisdMagasins/AnnexeeNU 4° 00.1041 b(2005) -....cParisdMagasins/AnnexeeP 4° 7247 aZPAY aDEW 380-382 aDEW 310-31901191nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007900154210004600233326002200279326002300301430004100324517000700365530006300372606004400435676000800479710005100487856004100538856009300579955006700672955006300739972000900802991001800811992001200829037132326000014789820130319051541.01 a1430-175X aFNSP581309 a0000147898 a19950127a19959999 ba0 ager aDE aaga 10aInternationale PolitikfDeutsche Gesellschaft für Auswärtige Politik e.V aBonncVerl. für Internat. Politikd1995- aBimestrielb2010- aMensuelb1995-2009 1aEuropa archiv (Bonn)xISSN 0014-247610aIP10aInternationale PolitikbBonn. Verl. für Internat. Politik aRelations internationalesxPériodiques a32702aDeutsche Gesellschaft für Auswärtige Politik4 uhttp://www.internationalepolitik.de/ zContenu : sommaires depuis 1998, articles de 1995 à 2000 disponibles en texte intégral1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bno. 1 (jan-1995) -....cParisdMagasins/AnnexeeP 8° 1707 aZGRA aexempb201102 aDEW 32701401cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200008300180210007100263326002200334326002700356422007500383517002200458530004000480606004400520676000800564710005100572801003000623801002300653802000700676856003000683856006600713955006700779955011200846992003300958992001200991058234853000118950020130319051541.01 a1439-8443 aissn14398443 a0001189500 a20001206a20009999k y0frey0103 ba0 aeng aDE ay 0  ar aaga 0 10aInternationale Politikethe journal of the German Council on Foreign Relations aBerlincDeutsche Gesellschaft für Auswärtige Politik e.V.d2000- aBimestrielb2009- aTrimestrielb2000-2009 1tInternationale Politik (Bonn. Verl. für Internat. Politik)x1430-175X10aIP global edition10aInternationale Politikb(Frankfurt) aRelations internationalesxPériodiques a32702aDeutsche Gesellschaft für Auswärtige Politik 3aFRbAbesc20100320gAFNOR 3aFRbISSNc20001206 a064 uhttp://www.ip-global.org/ zContient : articles en texte intégral depuis le vol. 1, 20001 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 8 no. 3 (2007) -vol. 8 no. 4 (2007) ; vol. 10 (sep/oct-2009) -....cParisdMagasins/AnnexeeP 8° 7135 aGEO RS Sans aspect régional aDEW 32700964nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210003000198326001600228430007500244510003900319606004400358710002900402856002700431856007300458955005900531972000900590991001800599992002100617992001200638040066843000013110420130319051541.01 a0945-2419 aFNSP532723 a0000131104 a19940623a19949999 ba0 amul aDE aaha 10aInternationale Politik und Gesellschaft aBonncDietz Nachf.d1994- aTrimestriel 1aVierteljahresberichte problems of international cooperationx0936-451X10aInternational politics and society aRelations internationalesxPériodiques02aFriedrich-Ebert-Stiftung4 uhttp://www.fes.de/ipg/ zContenu : accès au texte intégral depuis 1998, moteur de recherche1 bno. 1 (1994) -....cParisdMagasins/AnnexeeP 8° 2154 aZSAB aexempb201003 aGEO RQ Universel aDEW 32700928nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210003800185326001600223607002300239801002100262856004000283856005300323955008200376957011300458972000900571991001800580992001600598992001200614038729059000002357820130319051541.01 a0020-9449 aFNSP162861 a0000023578 a19900101a19709999 ba0 amul aDE aaha 10aInternationales Asienforum aMünchencWeltforum-Verlagd1970- aTrimestriel aAsiexPériodiques 3aFRbCCN0020-94494 uhttp://www.arnold-bergstraesser.de/ zContenu : sommaires et résumés depuis mai 20011 bvol. 1 no. 1 (1970) -vol. 40 no. 4 (2009)cParisdMagasins/AnnexeeP 8° 27451 bno. 1 (1970) -no. 25 (1994)cParisdMagasins/Annexezcet index constitue le vol. 26 no. 1 (1995) de la revue aZSAB aexempb201105 aGEO RH Asie aDEW 95001513cas0 2200397 450 00100100000000200110001000500170002101100140003803500170005203500170006903500170008603500150010304000110011810000410012910100080017010200070017810500180018511000160020320000420021920700260026121000410028732600160032860600440034460600450038880100300043380100230046380200070048685601610049385600810065485601090073585601080084495500720095295500670102499200120109199200120110304036318X000113073920130319051542.01 a1087-5301 zccn7202/1772 accn1087-5301 aissn10875301 a0001130739 aIRSQFC a19980721a19969999k y0frey0103 ba0 aeng aUS ay 0  aaha 0uu 10aInternet reference services quarterly 0aVol. 1, no. 1 (1996)- aBinghamton, NYcHaworth Pressd1996- aTrimestriel aBibliothèques virtuellesxPériodiques aBibliothèques et InternetxPériodiques 3aFRbAbesc20080128gAFNOR 3aFRbISSNc20051021 a014 uhttps://acces-distant.sciences-po.fr/fork?http://www.haworthpress.com/store/product.asp?sid=TACAVC07DGP99GSD12S2U8HDP997DECC&sku=J136&detail=TOCList#TOCList zContient le sommaire et le résumé des n°s depuis le vol. 1, n° 1 de 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t792306879db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes deux dernières annéescParisdFonds professionneleP 8° 70041 bvol. 11 no. 1 (2006) -....cParisdMagasins/AnnexeeP 8° 7004 aDEW 004 aDEW 02001227cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001700069035002100086035001500107100004100122101000800163102000700171105001800178110001600196200009700212207001400309210004100323440007100364517005300435530004900488531004300537710006400580801001300644802000700657830004100664856002500705856003700730955004700767992001400814992002500828040402460000028184920131119143817.0 a1263-0500 accn1263-0500 aissn12630500 a(OCoLC)473135982 a0000281849 a19960829b19931998u y0frey50 ba0 afre aFR ay  aaku uu 10aInventaire national des déchets radioactifsfObservatoire national des déchets radioactifs 0a1993-1998 aFontenay-aux-RosescANDRAd1993-1998 1tEtat et localisation des déchets radioactifs en Francex1297-165012aL'observatoire national des déchets radioactifs00aInventaire national des déchets radioactifs 0aInventaire national déchets radioact.02aObservatoire national des déchets radioactifscFrance4070 0aFRbFNSP a07 aA jeter (mis ds tableau Désherbage)4 uhttp://www.andra.fr/ zAccès libre au texte intégral.1 b(1998)cParisdMagasins/AnnexeeP 4° 6823 aDEW 60-69 aGEO RA4.06 France 0101186cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200005400174210005800228326001500286517002700301517005800328606004400386606003700430607002700467607005100494710004000545801003000585801002300615802000700638856004600645856005100691955007000742992001200812068846819000111034020130319051544.01 a1684-9787 aissn16849787 a0001110340 a20020530a20019999 0fre 0103 ba0 aeng aPK ay  aaj 10aIPRI journalfIslamabad Policy Research Institute aIslamabadcIslamabad Policy Research Instituted2001- aSemestriel10aJournal - IPRI (Print)10aJournal - Islamabad Policy Research Institute (Print) aRelations internationalesxPériodiques aDéfenseyPakistanxPériodiques aPakistanxPériodiques aPakistanxRelations extérieuresxPériodiques02aIslamabad Policy Research Institute 3aFRbAbesc20021208gAFNOR 3aFRbISSNc20020530 a004 uhttp://www.ipripak.org/publications.shtml zContient: sommaire et texte intégral des n°s1 bvol. 3 no. 2 (jun-2003) -....cParisdMagasins/AnnexeeP 8° 6977 aDEW 90901157nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002000139210004900159326002200208326002900230326002700259452004000286530002000326607002300346710004600369801002100415856021400436955007000650957007200720972000900792991001800801992001200819038729636000002643620130613175733.01 a0021-0862 aFNSP170370 a19900101a19689999 ba0 aeng aUS aaha 10aIranian studies aNew-YorkcSociety for Iranian Studiesd1968- aBimestrielb2011- a5 n°s par anb2007-2010 aTrimestrielb1968-2006 1tIranian studies (Online)x1475-481900aIranian studies aIranxPériodiques02aSociety for Iranian Studiesc(Etats-Unis) 3aFRbCCN0021-08624 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713427941db=allzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (nov-1968) -....cParisdMagasins/AnnexeeP 8° 31771 bvol. 1 (1968) -vol. 15 (1982)cParisdMagasins/AnnexeeP Index 0544 aZCAD aexempb200910 aDEW 95501113nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210003000182326001600212607005300228607006600281710004500347801002100392856010900413856010800522955006000630972000900690991001800699992002300717992003100740992001600771039752453000000671120130319051545.01 a0790-7184 aFNSP110960 a0000006711 a19900101a19869999 ba0 aeng aIE aahu 10aIrish political studies aGalwaycPSAI Pressd1986- aTrimestriel aIrlandexPolitique et gouvernementxPériodiques aIrlande du Nord (GB)xPolitique et gouvernementxPériodiques02aPolitical Studies Association of Ireland 3aFRbCCN0790-71844 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713635614db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 (1986) -....cParisdMagasins/AnnexeeP 8° 4965 aZSAB aexempb201003 aGEO RA4.01 Irlande aGEO RA4.02 Grande-Bretagne aDEW 941.5-701054nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210002800195326001600223606002400239606005000263856005700313856005800370856010900428856010800537955006600645972000900711991001800720992001400738040092763000016135220140109163127.01 a0959-6410 aFNSP620851 a0000161352 a19900101a19909999 ba0 aeng aGB aaja 10aIslam and Christian-Muslim relations aAbingdoncCarfaxd1990- aTrimestriel aIslamxPériodiques aIslamxRelationsxChristianismexPériodiques4 uhttp://www.tandf.co.uk/journals/carfax/09596410.html zContenu : sommaires depuis le vol. 7, n°1, mars 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713424660db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 1 (1994) -....cParisdMagasins/AnnexeeP 8° 6139 aZSAB aexempb201202 aDEW 20-2900745nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154207003000174210003200204326001600236606002400252856003800276856004500314955006700359972000900426991001800435992001400453040508056000023825320130319051547.01 a1275-7527 aFNSP841481 a0000238253 a19900101b19982000 ba0 afre aFR aaha 10aIslam de France 1ano. 1 (1997)-no. 8 (2000) aPariscHarmattand1998-2000 aTrimestriel aIslamxPériodiques4 uhttp://www.editions-harmattan.fr/ zContenu : sommaires depuis le n°1, 19981 bno. 1 (1998) -no. 8 (2000)cParisdMagasins/AnnexeeP 8° 6376 aZPAY aexempb201212 aDEW 20-2901339nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210003000173326001600203607002600219676000800245856005600253856009300309856010300402856007300505856010900578856010800687955006600795955006600861972000900927991001800936992002300954992001200977138880220000014952920130319051548.01 a1353-7121 aFNSP586138 a0000149529 a19950213a19949999 ba0 aeng aGB aaha 10aIsrael affairs aLondoncFrank Cassd1994- aTrimestriel aIsraëlxPériodiques a9564 uhttp://www.tandf.co.uk/journals/titles/13537121.asp zContenu : sommaires et résumés depuis le vol. 5, n°1, 1999 jusqu'au vol.9, n°4, 20034 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713677360 zContenu : sommaires et résumés depuis le vol.1, n°1, automne 19944 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713677360db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9561 bvol. 1 no. 1 (1994) -....cParisdMagasins/AnnexeeP 8° 6099 aZSAB aexempb201208 aGEO RG2.15 Israël aDEW 95600888nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210002700176326001600203606003300219606002400252710003400276801002100310856005200331856003900383955009000422972000900512991001800521992002300539992001200562038730324000002611220130319051548.01 a0021-2237 aFNSP169585 a0000026112 a19900101a19669999 ba0 aeng aIL aaha 10aIsrael law review aJerusalemcILRAd1966- aTrimestriel aDroityIsraëlxPériodiques aDroitxPériodiques02aIsrael Law Review Association 3aFRbCCN0021-22374 uhttp://law.mscc.huji.ac.il/law1/ilr/Default.htm zContenu : sommaire du n° en cours1 bvol. 1 no. 1 (jan-1966) -vol. 36 no. 3 (oct-2002)cParisdMagasins/AnnexeeP 8° 2503 aZSAB aexempb201004 aGEO RG2.15 Israël aDEW 34900796nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321050018001392000028001572100037001853260011002225300028002336060035002617100019002968010013003158560070003289550064003989720009004629920023004719920012004940000089879000008987920130319051548.01 a0334-2093 aFNSP395993 a0000089879 a19900101a1974 fre 0 aeng aIL a z a 10aIsrael's banking system aJerusalemcBank of Israeld1974- aAnnuel00aIsrael's banking system aBanquesyIsraëlxPériodiques02aBank of Israel 0aFRbFNSP4 uhttp://www.bankisrael.gov.il/deptdata/pikuah/skira99/skira99e.htm1 b(1980) ; (1982) -(2006)cParisdMagasins/AnnexeeP 4° 4726 aZGRA aGEO RG2.15 Israël aDEW 33201076nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210005500173326001500228530003800243606002400281607002600305712004100331712004800372712004900420856003500469856010100504955006600605972000900671991001900680992002300699992001600722040349640000021439120130319051548.01 a1084-9513 aFNSP774288 a0000214391 a19900101a19969999 ba0 aeng aUS aaja 10aIsrael studies aBloomington, Ind.cIndiana University Pressd1996- aSemestriel 0aIsrael studiesbBloomington, Ind. aJuifsxPériodiques aIsraëlxPériodiques02aBen-Gurion Research Center (Israël)02aOxford Centre for Hebrew and Jewish Studies02aAssociation for Israel Studiesc(Etats-Unis)4 uhttp://iupjournals.org/israel/ zContenu : sommaires depuis le vol. 1, n°1, print. 1996 ; 1 article en ligne par n° depuis 19981 bvol. 1 no. 1 (1996) -....cParisdMagasins/AnnexeeP 8° 6329 aZSAB aexempb2012/11 aGEO RG2.15 Israël aDEW 305-30601263cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200005700180207006100237210005100298326001500349430003900364440003700403607002600440607003600466607003100502710004900533801003000582801002300612802000700635856004700642856005300689955008700742972000900829992001200838992001500850104732342000105206120130319051549.01 a1557-2455 aissn15572455 a0001052061 a20020107b20012010k y0frey0103 ba0 aeng aUS a 0  ar aaja 0uu 10aIsrael studies forumfAssociation for Israel studies 0aVol. 17, no. 1 (Fall 2001)- vol. 25, no. 2 (Winter 2010) aNew-YorkaOxfordcBerghahn Journalsd2001-2010 aSemestriel 1tIsrael studies bulletinx1065-7711 1tIsrael studies reviewx2159-0370 aIsraëlxPériodiques aIsraëlxHistoirexPériodiques aMoyen-OrientxPériodiques02aAssociation for Israel Studiesc(Etats-Unis) 3aFRbAbesc20060717gAFNOR 3aFRbISSNc20060706 a014 uhttp://www.berghahnbooks.com/journals/isf/ zContient les sommaires et les résumés des n°s1 bvol. 21 no. 1 (2006) -vol. 25 no. 2 (hiv-2010)cParisdMagasins/AnnexeeP 8° 6929 aZSAB aDEW 956 aGEO RG2.1501159cas0 2200361 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005800163207002300221210003900244301005100283301006400334326001500398430003600413607002600449607003600475710004900511801003000560856004700590856005300637955007100690972000900761992001200770992001500782153819405000121825820130319051549.01 a2159-0370 a0001218258 a20110721a20119999 y0frey50 ba0 aeng aUS ay  ar aaja yy 10aIsrael studies reviewfAssociation for Israel studies 1aVol.26 no.1(2011)- aNew YorkcBerghahn Journalsd2011- a2159-0370 : ISSN figurant sur la page de titre aDemande de numérotation ISSN en cours par le CR28 20110721 aSemestriel 1tIsrael studies forumx1557-2455 aIsraëlxPériodiques aIsraëlxHistoirexPériodiques02aAssociation for Israel Studiesc(Etats-Unis) 3aFRbAbesc20110922gAFNOR4 uhttp://www.berghahnbooks.com/journals/isr/ zContient les sommaires et les résumés des n°s1 bvol. 26 no. 1 (Win-2011) -....cParisdMagasins/AnnexeeP 8° 6929 aZSAB aDEW 956 aGEO RG2.1501072nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001000154210005900164326001600223440005200239530002600291607002600317607004900343607004900392710004600441801002100487856009000508955007600598957007200674992001200746038826828000002391020130319051549.01 a0047-1607 aFNSP163614 a0000023910 a19900101b19711999 ba0 aeng aUS aahy 10aIssue aWaltham, Mass.cAfrican Studies Associationd1971-1999 aTrimestriel 1tAfrican issues (New Brunswick, N.J.)x1548-450500aIssuebWaltham, Mass. aAfriquexPériodiques aAfriquexRelationsyEtats-UnisxPériodiques aEtats-UnisxRelationsyAfriquexPériodiques02aAfrican Studies Associationc(Etats-Unis) 3aFRbCCN0047-16074 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00471607.html1 bvol. 1 (1971) -vol. 27 no. 2 (1999)cParisdMagasins/AnnexeeP 4° 31141 bvol. 1 (1947) -vol. 51 (1997)cParisdMagasins/AnnexeeP Index 0798 aDEW 96001584nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006100139210002300200326002300223326002300246453008000269517009500349517008300444530006200527606007300589607002500662607002400687676000800711710005100719801002100770856015700791955006600948955012401014972000901138991001801147992002101165992001201186040145484000001876820131024154937.01 a1013-2511 aFNSP151120 a19900101a19649999 ba0 aeng aTW aafa 10aIssues and studiesfInstitute of International Relations aTaipeicIRId1964- aTrimestrielb2002- aMensuelb1964-2001 1tEtudes et documents (Institut de relations internationales)xISSN 0256-55521 aIssues and studies‎ : an international quaterly on China, Taiwan, and East Asian affairs1 aIssues and studies‎ : a journal of Chinese studies and international affairs10aIssues and studies - Institute of International Relations aChine, Question de la réunification de la (1949-....)xPériodiques aTaiwanxPériodiques aChinexPériodiques a95002aInstitute of International Relationsc(Taipei) 3aFRbCCN0016/35624 uhttp://iir.nccu.edu.tw/index.php?include=journal&kind=4zContient : Sommaires et sélection d'articles en texte intégral depuis le vol. 37, no. 1, 19961 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9501 bvol. 5 no. 6 (mar-1969) -vol. 15 no. 12 (dec-1979) ; vol. 21 no. 1 (jan-1985) -....cParisdMagasins/AnnexeeP 8° 2850 aZSAB aexempb201105 aGEO RI3.01 Chine aDEW 95100939nas0 2200301 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109106000600127110001600133200012700149207001200276210002200288301004300310326001100353606003800364710005300402801003000455856004400485955006100529972000900590992002200599992001600621125304412000114591820130319051549.0 a0001145918 a20080630a19879999k y0frey0103 ba0 aeng aIT ay 0  ar aaka 0 10aItalian agricultureean abridged version of the Annuario dell'agricoltura ItalianafIstituto nazionale di economia agraria 0a(1987)- aRomacINEAd1987- aDemande de numérotation ISSN en cours aAnnuel aAgricultureyItaliexPériodiques02aIstituto nazionale di economia agrariac(Italie) 3aFRbAbesc20080630gAFNOR4 uhttp://www.inea.it/public/it/search.php1 bvol. 57 (2003) -....cParisdMagasins/AnnexeeP 8° 7038 aZGRA aGEO RA6.03 Italie aDEW 338.1-301090cas0 2200361 450 00100100000000200110001000500170002101100140003803500170005203500150006910000410008410100080012510200070013310500180014010600060015811000160016420000190018020700330019921000580023232600160029043000620030651700210036860600360038971000500042580100300047580100230050580200070052885600340053585600600056995500700062995700170069999200120071610472725X000114241420130319051550.01 a1549-4942 aissn15494942 a0001142414 a20000201a20009999k y0frey0103 ba0 aeng aUS ay 0  ar aaha 0uu 10aItems & issues 0aVol. 1, no. 1 (winter 2000)- aNew York, N.YcSocial Science Research Councild2000- aTrimestriel 1tItems - Social Science Research Council (U.S.)x0049-090310aItems and issues aSciences socialesxPériodiques02aSocial Science Research Councilc(Etats-Unis) 3aFRbAbesc20080513gAFNOR 3aFRbISSNc20060706 a014 uhttp://publications.ssrc.org/ zContenu : texte intégral depuis le vol. 1 no. 1 (2000)1 bvol. 1 no. 1 (hiv-2000) -....cParisdMagasins/AnnexeeP 4° 00431 eP Index 0798 aDEW 30001155nas 2200337 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181050018001251100016001432000023001592100029001823260014002113270044002256060029002696070026002986070023003246070025003478010013003728560192003858560108005779550005006859920020006909920056007109920039007669920012008050000071526000007152620130319051550.0 aFNSP327997 a0000071526 a19900101a19179999k fre ba0 arus aRU a z 0  aaa 0 00aIzvestiâ (Moskva) aMoskvacIzvestiâd1917- aQuotidien10aVersion en ligne uniquement via Factiva aActualitéxPériodiques aEx-URSSxPériodiques aURSSxPériodiques aRussiexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b aGEO RA7.01 URSS aGEO RA7.02 Etats successeurs de l'Union soviétique aGEO RA7.21 Russie (depuis 1991-92) aDEW 05000958nas 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000032001502100038001823260012002204300036002326060038002686060030003066060039003367120054003758010013004298560027004428560037004699550079005069720009005859920022005949920016006160000521345000052134520130319051550.0 a0000521345 a a20039999k fre ba0 afre aFR a 0  ar aaf z 0 10aJA magfJeunes agriculteurs aPariscJeunes agriculteursd2003- aMensuel 1tJeunes agriculteurs,x0396-7425 aAgricultureyFrancexPériodiques aAgriculturexPériodiques aAgriculteursyFrancexPériodiques02aCentre national des jeunes agriculteursc(France) 0aFRbFNSP4 uhttp://ja.web-agri.fr/ zAccès libre au texte intégral.1 bno. 580 (fev-2003) -no. 589 (dec-2003)cParisdMagasins/AnnexeeP 4° 6946 aZPAY aGEO RA4.06 France aDEW 338.1-300938nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000134001502100048002842300024003323260011003566060039003677100071004068010013004778300008004908560041004988560053005399550005005929920025005979920014006220001221078000122107820130319051550.0 a0001221078 a a20049999k fre 01 ba0 ager aDE ar aak z  adr 10aJahrbuch - Max-Planck-Gesellschaft b[Ressource électronique]fMax-Planck-Gesellschaft zur Förderung der Wissenschaften (Munich) aGöttingencVandenhoeck und Ruprechtd2004- aRevue électronique aAnnuel aRechercheyAllemagnexPériodiques02aMax-Planck-Gesellschaft zur Förderung der Wissenschaften (Munich) 0aFRbFNSP acdj4 uhttp://www.mpg.de/166008/jahrbuecher4 zContenu : texte intégral du rapport depuis 20041 r aGEO RA5.01 Allemagne aDEW 001.400995cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200009300156210004000249606003200289606004900321710006700370801003000437801002300467802000700490856005400497856003600551955005500587972000900642992001800651992001200669059601728000090812520130319051550.01 a1616-6558 aissn16166558 a0000908125 a20011008a20009999 0fre 0103 ba0 ager aDE azk 10aJahrbuch des FöderalismusfEuropaïsches Zentrum für Föderalismus-Forschung Tübingen aBaden-BadencNomos-Verl.-Gesd2000- aRégionalismexPériodiques aGouvernement fédéralyEuropexPériodiques02aEuropäisches Zentrum für Föderalismusforschungc(Tübingen) 3aFRbAbesc20020131gAFNOR 3aFRbISSNc20011008 a064 uhttp://www.uni-tuebingen.de/ezff/jahrbuecher.html4 zContenu : sommaires depuis 20001 b(2004) -(2005)cParisdMagasins/AnnexeeP 8° 6845 aZPAY aGEO RA Europe aDEW 94000904nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210002600181326001500207606004100222801002100263856004400284856003600328955007000364957009700434972000900531991001800540992003200558992001200590038861798000002883320130319051550.01 a0075-2746 aFNSP179929 a0000028833 a19900101a19609999 ba0 ager aDE aaja 10aJahrbuch für Ostrecht aMünchencBeckd1960- aSemestriel aDroityEurope de l'EstxPériodiques 3aFRbCCN0075-27464 uhttp://www.ostrecht.de/index.php?id=159 zContenu : sommaires depuis 20001 bvol. 9 no. 1 (sep-1968) -....cParisdMagasins/AnnexeeP 8° 27171 b(1958-2000)cParisdMagasins/Annexezcet index constitue le vol. 43, no. 2, 2002 de la revue aZCAD aexempb201105 aGEO RA2.02 Europe orientale aDEW 34901051nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001322000038001392100065001773260011002424300039002535300038002926070055003307100031003858010021004168560163004379550052006009550072006529920025007249920012007490000091344000009134420130319051550.01 a0435-7701 aFNSP403071 a0000091344 a19900101a00019999 ba0 ager aDE10aJahresbericht der Bundesregierung aBonncPresse- und Informationsamt der Bundesregierungd0001- aAnnuel 1aDeutsche Politik (Bonn)x0170-230000aJahresbericht der Bundesregierung aAllemagnexPolitique et gouvernementxPériodiques02aAllemagnebBundesregierung 3aFRbCCN0435-77014 uhttp://www.bundesregierung.de/statisch/jahresbericht2011/Webs/Breg/jahresbericht2011/DE/Startseite/startseite.htmlzAccés au texte intégral depuis 2009/20101 b(1980) -...cParisdMagasins/AnnexeeP 4° 54121 b(1967) ; (1970) ; (1973)-(1979)cParisdMagasins/AnnexeeCOL4°0246 aGEO RA5.01 Allemagne aDEW 94300811nas 2200253 i 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102110001600109200004700125210004200172326001100214530004400225606005800269710002900327856010000356955005500456972000900511992002500520992001200545036557382000009267820130603152201.0 aFNSP409208 a19900101a00019999 ba0 ager aDE aaka 10aJahresbericht der Friedrich-Ebert-Stiftung aBonncFriedrich-Ebert-Stiftungd0001- aAnnuel11aFriedrich-Ebert-Stiftung. Jahresbericht aSciences socialesxRechercheyAllemagnexPériodiques02aFriedrich-Ebert-Stiftung4 uhttp://library.fes.de/fulltext/fes/03208.htmlzContenu : texte intégral du rapport depuis 20051 b(1970) -(2000)cParisdMagasins/AnnexeeP 4° 3769 aZGRA aGEO RA5.01 Allemagne aDEW 30001248cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101001300125102000700138105001800145110001600163200010000179210004900279326001500328430004400343530002900387607002400416710007100440711007600511801003000587802000700617856007800624856007700702955008300779972000900862992001200871992001500883044900112000114346220130319051550.01 a1436-3518 accn1436-3518 a0001143462 a20000407a19989999 0frey0103 ba0 aengager aDE ay  aag 10aJapan aktuellejournal of current Japanese affairsfGerman Institute of Global and Area Studies aHamburgcInstitut für Asienkunded1998-2008 aBimestriel 1tJapan (Hamburg. Zeitschrift)x0944-380010aJapan aktuellb(Hamburg) aJaponxPériodiques02aGerman Institute of Global and Area Studiesc(Hambourg, Allemagne)02aGerman Institute of Global and Area Studies, Institute of Asian Studies 3aFRbAbesc20080130gAFNOR a064 uhttp://www.giga-hamburg.de/index.php?file=z_jaa.html&folder=publikationen zContenu: sommaires et résumés des n°s depuis le vol. 14, n°1 de 20061 bvol. 15 no. 1 (2007) -vol. 16 no. 4 (2008)cParisdMagasins/AnnexeeP 8° 7027 aZSAB aDEW 959 aGEO RI3.2201017nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001600154210004300170326002400213326002600237530002400263607002400287712004500311856010900356856010800465955007000573972000900643991001800652992002100670992001200691037392387000000492420130319051550.01 a0955-5803 aFNSP107049 a0000004924 a19900302a19899999 ba0 aeng aGB aaia 10aJapan forum aOxfordcOxford University Pressd1989- a3 nos par anb2002- aSemestrielb1989-2001 0aJapan forumbOxford aJaponxPériodiques02aBritish Association for Japanese Studies4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713704207db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (avr-1989) -....cParisdMagasins/AnnexeeP 8° 5620 aZSAB aexempb201204 aGEO RI3.22 Japon aDEW 95200756nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210003400184326001400218430005700232856003300289856004400322955008200366972000900448992002100457992001200478044835086000026435320130319051551.01 a1345-1189 aFNSP917473 a0000264353 a19990119b19992000 ba0 aeng aJP aaea 00aJapan times international aTokyocThe Japan Timesd1999- aBimensuel 1aJapan times. Weekly international editionx0447-57634 uhttp://www.japantimes.co.jp/ zArticles en texte intégral depuis 19991 bvol. 39 no. 1 (jan-1999) -vol. 40 no. 6 (mar-2000)cParisdAnnexeeP F° 0517 aZPAY aGEO RI3.22 Japon aDEW 05001339cas0 2200421 450 001001000000002001100010005001700021011001400038020001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200004200197207003000239210005100269303005800320326002300378326003300401452006200434606003600496607005100532607002400583801003000607801002300637801001300660802000700673856003900680856006700719955006700786972000900853992001600862992003900878056260318000052360820130319051551.01 a1468-1099 aUSb00227142 aissn14681099 a0000523608 a20010710a20009999k y0frey0103 ba0 aeng aGB ay 0  ar aaja 0uu 00aJapanese journal of political science 0aVol. 1, pt. 1 (May 2000)- a[Cambridge]cCambridge University Pressd2000- aNotice rédigée d'après le N.1, Vol.10 (avril 2009) aTrimestrielb2012- aTrois fois par anb2000-2011 1tJapanese journal of political science (Online)x1474-0060 aScience politiquexPériodiques aJaponxPolitique et gouvernementxPériodiques aJaponxPériodiques 3aFRbAbesc20090618gAFNOR 3aFRbISSNc20090617 0aFRbFNSP a024 uhttp://www.journals.cambridge.org/ zContenu : sommaires, résumés depuis le vol.1, n°1, mai 20001 bvol. 2 no. 1 (2001 ) -....cParisdMagasins/AnnexeeP 8° 6678 aZSAB aDEW 320-321 aGEO RI Asie (sans Asie de l'Ouest)01251nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007500154210005200229230003300281326001600314517002000330606002900350606006300379710004800442856009400490856010800584955006900692957008600761972000900847991001800856992002500874992001400899040463338000025260720130319051552.01 a1268-5399 aFNSP881832 a0000252607 a19900101a19959999 ba0 afre aFR aaha 10aJean Jaurès cahiers trimestrielsf[Société d'études jaurésiennes] aPariscSociété d'études jaurésiennesd1995- aParaît avec 2 ans de retard aTrimestriel10aCahiers Jaurès aSocialismexPériodiques aGauche (science politique)yFrancexHistoirexPériodiques02aSociété d'études jaurésiennesc(France)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-cahiers-jaures.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 135 (jan/mar-1995) -....cParisdMagasins/AnnexeeP 8° 64011 b(1959) -(1999)cParisdMagasins/AnnexeeP Index 0813zcorrespond au no. 149, 1998 aZPAY aexempb201211 aGEO RA4.06 France 01 aDEW 320.500664nas 2200229 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000029001502100055001793260015002347120057002498010013003068560038003199550077003570000380054000038005420130319051552.0 a0000380054 a a19919999k fre ba0 aeng aIT a 0  ar aay z 0 10aJean Monnet Chair papers aFlorencecEuropean University Instituted1991-.... aCollection02aInstitut universitaire européenbChaire Jean Monnet 0aFRbFNSP uhttp://www.iue.it/PUB/JMC_fm.html1 rCette collection, depuis 1995, est conservée dans la Salle de 3e cycle.00963nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000069001502100005002192300024002243260017002486060029002656070026002948010013003208560192003338560108005259550005006339920023006389920012006610001131863000113186320130319051552.0 a0001131863 a a19889999k fre 01 ba0 aeng aIL ar aac z  adr 10aJerusalem post. International editionb[Ressource électronique] a aRevue électronique ahebdomadaire aActualitéxPériodiques aIsraëlxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RG2.15 Israël aDEW 05001011nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000018001552100036001733260017002094400026002265170032002526060029002846070026003138010021003398560033003608560091003939550080004849550078005649920019006429920012006619920012006730000024008000002400820130319051552.01 a0021-6089 aFNSP163945 a0000024008 a19900101b19612000 ba0 afre aFR aa u 10aJeune Afrique aPariscJeune Afriqued1961-2000 aHebdomadaire 1tL'Intelligent (Paris)10aJeune Afrique l'Intelligent aActualitéxPériodiques aAfriquexPériodiques 3aFRbCCN0021-60894 uhttp://www.jeuneafrique.com/ zContenu : sommaire et articles en texte intégral du dernier numéro. Divers dossiers.1 bno. 300 (oct-1966) -no. 2039 (fev-2000)cParisdMagasins/AnnexeeP 4° 22631 bno. 60 (nov-1961) -no. 299 (oct-1966)cParisdMagasins/AnnexeeP F° 0145 aGEO RE Afrique aDEW 050 aDEW 96000926nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210003000179326002700209326002300236326002800259530004000287712004200327856003500369955006700404955016500471992001200636038080028000005857020130319051552.01 a0755-3021 aFNSP271172 a0000058570 a19900101b19201989 ba0 afre aFR aafa 13aLa Jeune république aaParisc[s.n.]d1920-1989 aTrimestrielb1968-1984 aMensuelb19??-1966 aHebdomadaireb1920-19??03aLa Jeune républiqueb(Paris, 1920)02aParti de la Jeune république (Paris)4 uhttp://jeunerepublique.free.fr1 b(1920) -(1938)cParisdAnnexeeP F° 1347zlacunes importantes1 bn.s. no. 9 (nov-1961) -no. 129 (1984)cParisdAnnexeeP 4° 3070wManquant : no 21, 22, 1962 ; nos 31, 1963 à 42, 1964 ; nos 50, 1965 à 66, 1967 ; no 73, 1969 aDEW 05000810nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200003200138210004800170326001500218606002400233710002500257801002100282856006800303856003700371955008100408972000900489991001800498992001600516038732092000002402320130319051553.01 a0021-6534 aFNSP163973 a0000024023 a19900101b1959 ba0 aeng aGB10aJewish journal of sociology aLondrescJewish Journal of Sociologyd1959- aSemestriel aJuifsxPériodiques02aCongres juif mondial 3aFRbCCN0021-65344 uhttp://jewishjournalofsociology.org/index.php/jjs/issue/archive4 zAccès libre au texte intégral.1 bno. 1 (avr-1959) -vol. 49 no. 1/2 (2007)cParisdMagasins/AnnexeeP 8° 1817 aZPAY aexempb201103 aDEW 305-30600870nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000059001502100049002092300024002583000048002823260015003306060024003457100025003698010013003948300008004078560068004158560063004839550005005469920017005510001238857000123885720130319051553.0 a0001238857 a a20069999k fre 01 ba0 aeng aGB ar aaj z  adr 10aJewish journal of sociologyb[Ressource électronique] aLondres:cJewish Journal of Sociologyd2006- aRevue électronique aEn version électronique à partir de 2008. aSemestriel aJuifsxPériodiques02aCongres juif mondial 0aFRbFNSP acdj4 uhttp://jewishjournalofsociology.org/index.php/jjs/issue/archive4 zContenu : texte intégral du rapport en ligne depuis 2006.1 r aaDEW 305-30601101nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210005500180326002500235326002700260606002400287606002700311710004000338801002100378856003500399856009900434955013100533957009800664972000900762992001600771038732149000009983620130319051553.01 a0021-6704 aFNSP432075 a0000099836 a19900101a19399999 ba0 aeng aUS aaia 10aJewish social studies aBloomington, Ind.cIndiana University Pressd1939- a3 n°s par anb1994- aTrimestrielb1939-1993 aJuifsxPériodiques aSionismexPériodiques02aConference of Jewish Social Studies 3aFRbCCN0021-67044 uhttp://www.iupjournals.org/jss zContenu : sommaires ; 1 article en texte intégral par n° ; depuis le vol. 4, n°1, aut. 19971 bvol. 15 no. 1 (jan-1953) -vol. 50 no. 3/4 (1988/1993) ; n.s. vol. 1 no. 1 (aut-1994) -....cParisdMagasins/AnnexeeP 8° 12131 bvol. 1 no. 1 (aut-1994) -vol. 10 no. 1 (aut-2003)zse trouve dans le vol. 10 no. 1 (aut-2003) aZCAD aDEW 305-30600797nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006100154210002700215326001600242430006300258606003700321856003300358955006800391972000900459991001800468992002100486992001200507040046192000002546920130319051553.01 a0932-4569 aFNSP167902 a0000025469 a19910220a19869999 ba0 aeng aDE aaha 10aJITE. Journal of institutional and theoretical economics aTübingencMohrd1986- aTrimestriel 1aZeitschrift für die gesamte Staatswissenschaftx0044-2550 aEconomie politiquexPériodiques4 uhttp://www.mohr.de/jite.html1 bvol. 142 no. 1 (1986) -....cParisdMagasins/AnnexeeP 8° 0033 aZPAY aexempb201210 aGEO RQ Universel aDEW 33001215nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002600139210003500165300004700200326001100247437005800258530002600316607005400342710005100396856009600447856005300543955008000596955005500676955008100731972000900812991001900821992002300840992001400863039105962000008621620130521165116.01 a0162-5888 aFNSP382198 a19900101a00019999 ba0 aeng aUS aaka 10aJoint economic report aWashington, D.C.cUSGPOd0001- aEn version électronique à partir de 2010 aAnnuel 1tAnnual report on the Economic report of the President00aJoint economic report aEtats-UnisxConditions économiquesxPériodiques02aEtats-UnisbCongressbJoint Economic Committee4 uhttp://www.jec.senate.gov/public/index.cfm?p=Search&filter=0&num=10&q=joint+economic+report4 zContenu : texte intégral du rapport depuis 20101 b(1993) ; (1998) -(1999) ; (2003)-(2006)cParisdMagasins/AnnexeeP 4° 63771 b(1982) -(1992)cParisdMagasins/AnnexeeP 8° 54701 b(1961) ; (1963) -(1964) ; (1966) -(1979)cParisdMagasins/AnnexeeCOL8°3547 aZPAY aexemplb201109 aGEO RC2 Etats-Unis aDEW 330.900984nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002400163210004600187326001400233430005600247440006700303530003000370607006300400676000800463801001300471856016500484955004500649090054040000119437320130319051553.01 a1770-6181 a0001194373 a a18051815 fre 01 ba0 afre aFR a 0  ar aa z 0 10aJournal de l'Empire aPariscImprimerie de Lenormantd1805-1815 aQuotidien 1tJournal des débats et des décrets, ISSN 1256-0480 1tJournal des débats politiques et littéraires, ISSN 1770-619X11aJournal de l'Empireb1805 aFrancexPolitique et gouvernementz1789-....xPériodiques a944 0aFRbFNSP4 uhttp://gallica.bnf.fr/ark:/12148/cb32797692j/date.r=journal+de+l%27empire.langFRzAccès libre au texte intégral. Années 1805 à 1814 numérisées sur Gallica1 b1814cParisdMagasins/AnnexeeP F° 002700959nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001391100016001452000052001612100026002133260016002395300052002556060030003077120038003378010021003758560134003969550069005309570054005999920016006530000024052000002405220130319051553.01 a0037-914X aFNSP164013 a0000024052 a19900101b18601998 ba0 afre aFR ar aahu 10aJournal de la Société de statistique de Paris aPariscSSPd1860-1998 aTrimestriel00aJournal de la Société de statistique de Paris aStatistiquexPériodiques02aSociété de statistique de Paris 3aFRbCCN0037-914X4 uhttp://gallica.bnf.fr/ark:/12148/cb32798282c/date.r=.langFRzAccès libre au texte intégral. Année 1860 numérisée sur Gallica1 b(1947)-vol. 139 no. 1 (1998)cParisdMagasins/AnnexeeP 4° 00491 b(1936/1960)cParisdMagasins/AnnexeeP Index 0435 aDEW 310-31900988nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004500154210004900199326001500248440004000263607002600303712004000329801002100369856004800390856006200438955008400500957007100584992001900655992001200674037448811000002437320130319051553.0 a0037-9166 aFNSP164823 a0000024373 a19900101b19311975 ba0 afre aFR aaju 10aJournal de la Société des Africanistes aPariscSociété des Africanistesd1931-1975 asemestriel 1aJournal des Africanistesx0399-0346 aAfriquexPériodiques02aSociété des Africanistes (France) 3aFRbCCN0037-91664 uhttp://www.persee.fr/listIssues.do?key=jafr zAccès libre au texte intégral à partir de 1931 à 19751 bvol. 27 no. 1 (1957)-vol. 45 no. 1/2 (1975)cParisdMagasins/AnnexeeP 4° 15711 bvol. 1 (1931)-vol. 45 (1975)cParisdMagasins/AnnexeeP Index 0287 aGEO RE Afrique aDEW 96001019nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000560015421000470021032600110025760700510026860700520031971000430037183000430041485601280045795500880058599200230067399200210069699200120071703923150X000011529220130319051553.01 a0037-9174 aFNSP481546 a0000115292 a19900101a18959999 ba0 afre aFR aaka 10aJournal de la Société des américanistes de Paris aPariscSociété des Américanistesd1895- aAnnuel aAmériquexEtude et enseignementxPériodiques aEtats-UnisxEtude et enseignementxPériodiques02aSociété des américanistesc(France) a1957--1984 : collection donnée au CTL4 uhttp://www.persee.fr/listIssues.do?key=jsazAccès libre au texte intégral. Périodique numérisé sur Persée (1895-1939)1 bvol. 71 (1985) -vol. 74 (1988) ; vol. 79 (1993)cParisdMagasins/AnnexeeP 4° 1570 aGEO RC2 Etats-Unis aGEO RB Amérique aDEW 97001374nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004400139207003000183210004400213326002500257326003000282326002500312452006900337530004400406606005100450607004700501607003700548710004000585801002100625830005400646856012400700955008600824972000900910991001800919992004700937992001600984039520471000002437120131016144958.01 a0300-953X aFNSP164816 a19900101a19459999 ba0 afre aFR aaju 10aJournal de la Société des Océanistes 1aVol. 1, no 1 (déc-1945)- aPariscSociété des Océanistesd1945- aSemestriel‎b1982- aTrimestriel‎b1970-1981 aAnnuel‎b1945-1969 1tJournal de la Société des océanistes (En ligne)‎x1760-7256 aJournal de la Société des océanistes aSociétés savantes et institutsxPériodiques aPacifique, Iles duxHistoirexPériodiques aPacifique, Iles duxPériodiques02aSociété des océanistesc(France) 3aFRbCCN0300-953X a1956-->2010 : collection donnée au CTles en 20134 uhttp://www.oceanistes.org/oceanie/spip.php?rubrique21zSommaires depuis 1975 et selection d'articles en texte intégral1 bvol. 12 no. 12 (dec-1956) -no. 136/137 (2013)cParisdMagasins/AnnexeeP 4° 1509 aZPAY aexempb201305 aGEO RL3 Océan Pacifique/Région Pacifique aDEW 990-99600929nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000115001502100054002652300024003193260016003436060030003596060044003897100040004338010013004738560057004868560042005439550005005859920016005909920021006060001161404000116140420130319051553.0 a0001161404 a a20099999k fre 01 ba0 afre aFR ar aah z  adr 10aJournal de la Société française de statistique & revue de statistique appliquéeb[Ressource électronique] aPariscSociété française de statistiqued2009- aRevue électronique aTrimestriel aStatistiquexPériodiques aStatistique mathématiquexPériodiques02aSociété française de statistique 0aFRbFNSP4 uhttp://www.sfds.asso.fr/34-Journal_de_la_SFdS_J-SFdS zContenu : texte intégral depuis 19531 r aDEW 310-319 aGEO RQ Universel01099nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000290015421000450018332600150022843000560024360700260029971200400032585600480036585601000041385600360051385600640054995500870061395700540070099200190075499200120077303959789X000002437420130319051553.01 a0037-9166 aFNSP164826 a0000024374 a19910211a19769999 ba0 afre aFR aaja 10aJournal des africanistes aPariscSociété des Africanistesd1976- aSemestriel 1aJournal de la Société des Africanistesx0037-9166 aAfriquexPériodiques02aSociété des Africanistes (France)4 uhttp://www.persee.fr/listIssues.do?key=jafr zAccès libre au texte intégral à partir de 1976 à l'exception des années les plus récentes4 uhttp://africanistes.revues.org/ zContenu : sommaires et résumés des n°s les plus récents1 bvol. 46 no. 1/2 (1976) -vol. 66 no. 1/2 (1996)cParisdMagasins/AnnexeeP 4° 15711 b(1976-1993)cParisdMagasins/AnnexeeP Index 0287 aGEO RE Afrique aDEW 96001930nas 2200409 450 001001000000002001100010005001700021011002500038035001500063100004100078101000800119102000700127105001800134106000600152110001600158200003600174210003000210300013700240326001400377440004700391517002400438517018100462517002400643517005300667517008600720517008400806530004000890601008700930601006101017607006301078676000801141710005901149711003301208801001301241856019401254955007201448036695866000119437220140117194338.01 a1256-0480$f1256-0480 a0001194372 a a17891805 fre 01 ba0 afre aFR a 0  ar aa z 0 10aJournal des débats et décrets aPariscBaudoind1789-1805 aJusqu'en floréal an V [mai 1797], porte successivement en tête "Assemblée nationale", "Convention nationale", "Corps législatif" aQuotidien 1tJournal de l'Empire (1805), ISSN 1770-618110aJournal des débats10aJournal des débats et des décrets ou récit de ce qui s'est passé aux séances de l'Assemblée nationale depuis le 17 juin 1789 jusqu'au premier septembre de la même année10aJournal des débats10aJournal des débats et lois du corps législatif10aJournal des débats, des lois du pouvoir législatif et des actes du gouvernement10aJournal des débats et loix du pouvoir législatif et des actes du gouvernement00aJournal des débats et des décrets01aFrancebAssemblée nationale constituantec(1789-1791)xComptes rendus des débats01aFrancebConvention nationalexComptes rendus des débats aFrancexPolitique et gouvernementz1789-....xPériodiques a94401aFrancebAssemblée nationale constituantec(1789-1791)01aFrancebConvention nationale 0aFRbFNSP4 uhttp://gallica.bnf.fr/ark:/12148/cb327995159/date.r=journal+des+d%C3%A9bats+et+des+d%C3%A9crets.langFRzAccès libre au texte intégral. Années 1800 à 1805 numérisées sur Gallica (2010)1 bno. 85 (1796) -no. 117 (1796)cParisdMagasins/AnnexeeR12°009.55902152cas0 2200457 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164106000600171110001600177200013000193207036200323210003300685304008900718320002000807326002400827326002700851421004200878421005300920517005700973517008301030530003801113601006001151601007301211606004501284606003801329606004401367801003001411801002301441802000701464856013301471955007001604991002001674038554100000108559220130319051553.0 a1149-2368 a070619476 accn1149-2368 aissn11492368 a0001085592 a19900329b18411940uuuy0frey0103 ba0 afre aFR ar aafu uu 10aJournal des économisteserevue mensuelle de l'économie politique, des questions agricoles, manufacturières et commerciales 0aT. 1, n°1 (1841, déc.)-t. 37, n°152 (1853, déc.)a2e s., t. 1, n°1 (1854, janv.)-t. 48, n°144 (1865, déc.)a3e s., t. 1, n°1 (1866, janv.)-t. 48, n°144 (1877, janv.)a4e s., t. 1, n°1 (1878, janv.)-t. 48, n°12 (1889, déc.)a5e s., t. 1, n°1 (1890, janv.)-t. 56, n°3 (1903, déc.)a6e s., t. 1, n°1 (1904, janv.)-t. 110, n°2 (1940, mars/avr.) aPariscGuillaumind1841-1940 aLe sous-titre varie : revue mensuelle de la science économique et de la statistique aTable 1841-1865 aMensuel (1841-1934) aBimestriel (1935-1940) |tLa Ligue du libre-échangex1149-2376 |tLe Libre-échange (Neuilly-sur-Seine)x1149-238410aRevue de la science économique et de la statistique10aJournal des économisteserevue de la science économique et de la statistique10aJournal des économistesb(Paris)02aSociété de statistique de ParisxPériodiques2rameau02aSociété d'économie politiquecFrancec1847-xPériodiques2rameau aEconomie politiquexPériodiques2rameau aStatistiquexPériodiques2rameau aSciences socialesxPériodiques2rameau 3aFRbAbesc20060627gAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34426009k/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 bvol. 1 (1841) -vol. 90 (1940)cParisdMagasins/AnnexeeP 8° 0472 aPériobTP01 P801032nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000055001502100005002052300024002103260017002346060029002516060035002806060036003158010013003518560192003648560108005569550005006649920025006699920012006949920012007060001131867000113186720130319051554.0 a0001131867 a a20059999k fre 01 ba0 afre aFR ar aac z  adr 13aLe Journal des financesb[Ressource électronique] a aRevue électronique ahebdomadaire aActualitéxPériodiques aFinancesyFrancexPériodiques aMarché financierxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 050 aDEW 33201166cas0 2200337 450 00100100000000200110001000500170002101100140003803500170005203500170006903500150008610000410010110100080014210200070015010600060015711000160016320000510017921000320023032600120026244700440027444700600031851700790037853000510045753100250050880100300053380100230056380200070058685601450059395500700073899100200080803767031X000108412920130319051554.0 a0242-5416 accn0242-5416 aissn02425416 a0001084129 a19881129b18801974uuuy0frey0103 ba0 afre aFR ar aafu uu 10aJournal des sociétés civiles et commerciales aPariscL. Larosed1880-1974 aMensuel 1tRevue des sociétés (Paris)x0240-8945 1tRevue des sociétés, Journal des sociétésx0242-542410aJournal des Sociétés civiles et commerciales françaises et étrangères00aJournal des sociétés civiles et commerciales 0aJ. soc. civ. commer. 3aFRbAbesc20070416gAFNOR 3aFRbISSNc20041123 a074 uhttp://gallica.bnf.fr/ark:/12148/cb343630530/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1880-1937)1 bvol. 1 (1880) -vol. 12 (1974)cParisdMagasins/AnnexeeP 8° 0288 aPériobTP01 P800997nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210003300189326001600222430009000238517001100328606003800339801002100377856010900398955006900507957007700576972000900653992002100662992001200683039224791000000467120140110131216.01 a0021-8170 aFNSP106172 a0000004671 a19900101a19159999 ba0 afre aFR aahu 10aJournal du droit international aPariscEd. techniquesd1915- aTrimestriel 1aJournal du droit international privé et de la jurisprudence comparée < P 8° 0370 >10aClunet aDroit internationalxPériodiques 3aFRbCCN0021-81704 uhttp://gallica.bnf.fr/ark:/12148/cb34348804s/date.r=.langFRzAccès libre au texte intégral sur Gallica1 bvol. 42 no. 1/2 (1915) -....cParisdMagasins/AnnexeeP 8° 03701 b(1915) -(1925)cParisdMagasins/AnnexeeP Index 0048zTables générales aZCAD aGEO RQ Universel aDEW 34101366cas0 2200385 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083035001500098100004100113101000800154102000700162105001800169110001600187200007800203210004800281215001000329440004600339517007500385530004200460531002500502540001100527702003800538801003000576801001800606802000700624856014500631955004700776955007000823991002000893991006700913038604159000108559520130319051554.0 a1155-8377 a013307525 accn1155-8377 asib0036383 a0001085595 a19911126b18741914k y0frey0103 ba0 afre aFR a 0  aaga 0 x 10aJournal du droit international privéffondée en 1874 par Edouard Clunet aPariscCossecMarchal et Billardd1874-1914 d25 cm 1tJournal du droit internationalx0021-817010aJournal du droit international privé et de la jurisprudence comparée00aJournal du droit international privé 0aJ. droit int. privé10aClunet 1aClunetbEdouardf(1845-1922)4395 3aFRbAbesc20061215gAFNOR 3aFRbSFgAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb344442139/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1874-1914)1 b(1874)cParisdMagasins/AnnexeeP 8° 03701 bvol. 2 (1875) -vol. 41 (1914)cParisdMagasins/AnnexeeP 8° 0370 aPériobTP01 P8 anumer0 (trou dans gallica entre 1890-1898, vérifier si avons)01198cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200003400156210002800190430003900218530004300257606003600300606004000336710005300376801001300429802000700442856005600449856004300505856010900548856010800657955007000765972000900835992001600844074395114000060740120130319051554.01 a1479-7585 aissn14797585 a0000607401 a20030523a20039999 0fre 0103 ba0 aeng aGB aah 10aJournal for cultural research aAbingdoncCarfaxd2003- |tCultural values (Print)x1362-517910aJournal for cultural researchb(Print) aSciences socialesxPériodiques aValeurs (Philosophie)xPériodiques02aInstitute for Cultural Researchc(Lancaster, GB) 0aFRbFNSP a024 uhttp://www.tandf.co.uk/journals/titles/13625179.asp zContenu : sommaires des numéros parus4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713684902db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol .7 no. 1 (jan-2003) -....cParisdMagasins/AnnexeeP 8° 6538 aZSAB aDEW 305-30601092cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200004000180207003300220210006100253326001500314606003600329606003400365606003400399801003000433801002300463802000700486856004200493856007900535955007000614972000900684992001600693992002100709116948094000114503620130319051554.01 a1930-1189 aissn19301189 a0001145036 a20070807a20069999k y0frey0103 ba0 aeng aUS ay 0  ar azja 0u 10aJournal for the study of radicalism 0aVol. 1, no. 1 (spring 2007)- aEast Lansing, MIcMichigan State University Pressd2006- aSemestriel aScience politiquexPériodiques aExtrême droitexPériodiques aExtrême gauchexPériodiques 3aFRbAbesc20080407gAFNOR 3aFRbISSNc20070808 a014 uhttp://msupress.msu.edu/journals/jsr/ zContient le sommaire et le résumé des n°s depuis le vol. 1, no 1 (2007)1 bvol. 1 no. 1 (pri-2007) -....cParisdMagasins/AnnexeeP 8° 7037 aZSAB aDEW 320-321 aGEO RQ Universel01274nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004700154210002900201326002200230326002800252326002600280606004300306801002100349856012800370856010800498856010100606856010800707955009000815972000900905991001800914992001600932038732475000005598220131202104834.01 a0021-8308 aFNSP262175 a0000055982 a19900101a19719999 ba0 aeng aGB aahu 10aJournal for the theory of social behaviour aOxfordcBlackwelld1971- aTrimestrielb1987 a3 nos par anb1978-1986 aSemestrielb1971-1977 aSciences du comportementxPériodiques 3aFRbCCN0021-83084 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=BPZ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101092 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (avr-1971) -vol. 42 no. 4 (dec-2012)cParisdMagasins/AnnexeeP 8° 2955 aZPAY aexempb201103 aDEW 305-30601346nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200018300163210011200346326001500458510004600473606003900519606003700558710008000595801001300675856002500688856017600713955008100889972000900970992001600979992002500995060295937000052871120130319051554.01 a1438-9444 a0000528711 a a19999999k fre ba0 amul aDE a 0  ar aaj z 0 10aJournal für Konflikt- und Gewaltforschung =dJournal of conflict and violence researchfInstitut für interdisziplinäre Konflikt- und Gewaltforschung der Universität Bielefeld aBielefeldcInstitut für Interdisziplinäre Konflikt- und Gewaltforschung der Universität Bielefeldd1999- aSemestriel10aJournal of conflict and violence research aGestion des conflitsxPériodiques aViolence politiquexPériodiques02aInstitut für interdisziplinäre Konflikt- und Gewaltforschungc(Bielefeld) 0aFRbFNSP4 uhttp://www.ijcv.org/4 zContenu : continue en ligne sous le titre "International Journal of conflict and violence" (ISSN 1864-1385); accès libre au texte intégral des articles à partir de 20071 bvol. 3 no. 1 (2001) -vol. 7 no. 2 (2005)cParisdMagasins/AnnexeeP 8° 6687 aZSAB aDEW 305-306 aGEO RA5.01 Allemagne01452nas 2200373 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000330013920700310017221000430020332600250024632600280027142100450029945200580034453000330040260700510043571000550048685600340054185600710057585601010064685601080074795500870085595700760094297200090101899100180102799200190104599200140106404009877X000009618320130905112528.01 a0963-8024 aFNSP420334 a19900101a19929999 ba0 aeng aGB aaga 10aJournal of African economies 1aVol. 1, no. 1 (Mar. 1992)- aOxfordcOxford University Pressd1992- a5 fois par anb2007- aTrimestrielb1992 -2006 1aJournal of African economies. Supplement 1tJournal of African economies (Online), ISSN 1464-372310aJournal of African economies aAfriquexConditions économiquesxPériodiques02aCentre for the study of African economies (Oxford)4 uhttp://www3.oup.co.uk/jafeco/ zContenu : sommaires et résumés depuis le vol. 5, n°1, mars 19964 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=102634 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1992) -vol. 17, no. 5 (2008)cParisdMagasins/AnnexeeP 8° 59571 bvol. 1 (1992) -vol. 5 (1996)zse trouve dans le vol. 5 no. 3 (oct-1996) aZPAY aexempb201112 aGEO RE Afrique aDEW 330.901194nas 2200313 i 450 001001000000002001100010005001700021035001500038035001500053100004100068101000800109102000700117110001600124200010000140210004300240300014600283326002200429422004400451517006800495517003600563607005100599710005600650856003300706955008100739972000900820991001800829992001900847992001400866070228396000021864920130917101315.0 aFNSP785734 a0000218649 a19900101a19969999 ba0 aeng aGB aaka 10aJournal of African economies.iSupplementeAfrican economic research consortium Plenary session aOxfordcOxford University Pressd1996- aParait en supplément à différents numéros de la revue ; ces suppléments paraissent 2 ou 3 ans après le congrès dont ils rendent compte a1 à 2 nos par an 1aJournal of African economiesx0963-802410aAfrican economic research consortium Plenary session supplement10aAERC Plenary session supplement aAfriquexConditions économiquesxPériodiques02aConsortium pour la recherche économique en Afrique4 uhttp://www.oup.co.uk/jafeco/1 b(1994/1995)-vol. 17, supp. 2, (2008)cParisdMagasins/AnnexeeP 8° 5957 bis aZPAY aexempb201212 aGEO RE Afrique aDEW 330.901403nas 2200385 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000310015420700280018521000480021332600240026132600270028532600280031232600260034053000380036660700360040480100210044085600420046185600540050385600900055785601080064795500660075595701380082197200090095999100180096899200190098699200120100503873267X000005593320130319051554.01 a0021-8537 aFNSP261350 a0000055933 a19900101a19609999 ba0 aeng aGB aaiu 10aJournal of African history 1aVol. 1, no. 1/2 (1960)- aNew YorkcCambridge University Pressd1960- a3 nos par anb1983- aTrimestrielb1968-1982 a3 nos par anb1962-1967 aSemestrielb1960-1961 0aJournal of African historybPrint aAfriquexHistoirexPériodiques 3aFRbCCN0021-85374 uhttp://uk.cambridge.org/journals/afh/ zContenu : sommaires depuis le vol. 37, n°3, 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00218537.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1960) -....cParisdMagasins/AnnexeeP 8° 19461 bvol. 1 (1960) -vol. 20 (1979) ; vol. 21 (1980) -vol. 30 (1989) ; vol. 31 (1990) -vol. 40 (1999)cParisdMagasins/AnnexeeP Index 0363 aZPAY aexempb201001 aGEO RE Afrique aDEW 96001551nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210005800181326001500239606003300254710005400287801002100341830011800362856003300480856014700513856010100660856010800761856009000869856010800959955006601067972000901133991001601142992001901158992001201177038732688000002463820130319051554.01 a0021-8553 aFNSP165570 a0000024638 a19900101a19579999 ba0 aeng aGB aaju 10aJournal of African law aLondoncSchool of Oriental and African Studiesd1957- aSemestriel aDroityAfriquexPériodiques02aSchool of Oriental and African Studiesc(Londres) 3aFRbCCN0021-8553 aVol. 1, n° 1, Spring 1957---> vol. 28 , n° 1/2, 1984 < P 8° 1825 > : collection donnée au CTL en juillet 20014 uhttp://www.oup.co.uk/jaflaw/ zContenu : sommaires et résumés depuis le vol. 39, n°2, 1995 ; recherche par sujets avec Excite ; envoi sommaire du n° à paraitre par mail4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=102635 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00218553.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 29 no.1 (1985) -....cParisdMagasins/AnnexeeP 8° 1825 aZPAY aexemp201010 aGEO RE Afrique aDEW 34900728nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003600139210002400175326001100199607002700210856004200237856004700279955006900326972000900395991001800404992002400422992001600446036754935000025420820131028145516.01 a1362-9417 aFNSP887000 a19900101a19969999 ba0 aeng aGB aaka 14aThe Journal of Algerian studies aIlfordcCassd1996- aAnnuel aAlgériexPériodiques4 uhttp://www.frankcass.com/jnls/alg.htm zContenu : sommaires depuis le vol. 1, 19961 bno. 1 (1996) -no. 4/5 (2000)cParisdMagasins/AnnexeeP 8° 6415 aZSAB aexempb201211 aGEO RG1.13 Algérie aDEW 961-96501507nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154207002800190210006600218326001600284430005700300530005500357607003900412710004000451801002100491856003200512856007200544856010100616856010800717856009000825856010800915955007101023972000901094991001801103992001201121038732912000002465420130319051554.01 a0021-8723 aFNSP165600 a0000024654 a19900101a19649999 ba0 aeng aUS aahu 14aThe Journal of American history 1aVol. 51, no. 1 (1964) - aBloomington, Ind.cOrganization of American Historiansd1964- aTrimestriel 1aThe Mississippi Valley historical review,x0161-391X04aThe Journal of American historybBloomington, Ind. aEtats-UnisxHistoirexPériodiques02aOrganization of American Historians 3aFRbCCN0021-87234 uhttp://www.indiana.edu/jah/ zContenu : sommaires et résumés depuis le vol. 84, n°1, juin 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=107493 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00218723.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 75 no. 1 (jun-1988) -....cParisdMagasins/AnnexeeP 8° 5161 aZPAY aexempb201011 aDEW 97301294nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210004600186326002300232326002800255326002600283430007200309606004800381710004500429801002100474856004200495856005400537856010100591856010800692955007000800972000900870991001800879992002300897992001200920038732920000002466020130319051554.01 a0021-8758 aFNSP165608 a0000024660 a19900101a19679999 ba0 aeng aGB aaiu 10aJournal of American studies aLondoncCambridge University Pressd1967- aTrimestrielb2011- a3 nos par anb1971-2010 aSemestrielb1967-1970 1aBulletin - British Association for American StudiesxISSN 0524-5001 aSciences socialesyEtats-UnisxPériodiques02aBritish Association for American Studies 3aFRbCCN0021-87584 uhttp://uk.cambridge.org/journals/ams/ zContenu : sommaires depuis le vol. 30, n°1, 19964 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101391 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (avr-1967) -....cParisdMagasins/AnnexeeP 8° 2924 aZPAY aexempb201103 aGEO RC2 Etats-Unis aDEW 97301049nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000460015421000390020032600160023960600430025571000660029880100210036485601080038585601080049395501150060197200090071699100180072599200160074303873303X000002468220130319051554.01 a0021-8863 aFNSP165659 a0000024682 a19900101a19659999 ba0 aeng aUS aahu 14aThe Journal of applied behavioral science aGreenwich, Conn.cJAI Pressd1965- aTrimestriel aSciences du comportementxPériodiques02aNTL Institute for Applied Behavioral Science (Washington, DC) 3aFRbCCN0021-88634 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1965) -vol. 31 no. 3 (1995) ; vol. 37 no. 1 (mar-2001) -....cParisdMagasins/AnnexeeP 8° 2356 aZSAB aexempb200908 aDEW 305-30600990nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000076001502100039002263000098002653260016003633360058003793370063004374520049005006060031005498010013005808560090005939550005006839920012006880000468694000046869420130319051554.0 a0000468694 a a19869999k fre 01 ba0 aeng aGB az aah z  adr 10aJournal of applied econometrics (Chichester)b[Ressource électronique] aChichesteraNew-YorkcWileyd1986- aAccès au texte intégral (réservé aux sites de Sciences Po) jusqu'aux 5 dernières années aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tJournal of applied econometricsx(0883-7252) aEconométriexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/08837252.html1 r aDEW 33000837nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200006600163210004700229326001500276607002300291607003800314712004300352801001300395856003700408955008100445972000900526992001200535058719199000045144320130319051554.0 a1229-9774 a0000451443 a a19999999k fre ba0 aeng aKR a 0  ar aaj z 0 10aJournal of Asia-Pacific affairsfAsia-Pacific Research Center aSeoulcAsia-Pacific Research Centerd1999- aSemestriel aAsiexPériodiques aPacifique (région)xPériodiques02aAsia-Pacific Research Centerc(Séoul) 0aFRbFNSP uhttp://gsaps.hanyang.ac.kr/APRC/1 bvol. 2 no. 1 (2000) -vol. 7 no. 1 (2005)cParisdMagasins/AnnexeeP 8° 6618 aZGRA aDEW 95001393nas 2200373 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000410015421000330019532600220022832600270025051700090027753000510028660700230033760700260036071000640038685601010045085601080055185601080065985601080076795500700087597200090094599100180095499200160097299200190098899200120100703873334X000002471020130319051554.01 a0021-9096 aFNSP165708 a0000024710 a19910213a19662002 ba0 aeng aCA aaga 10aJournal of Asian and African studies aWillowdalecde Sitterd1966- aBimestrielb2005- aTrimestrielb1966-200410aJAAS00aJournal of Asian and African studiesb(Leiden) aAsiexPériodiques aAfriquexPériodiques02aYork Universityc(Toronto, Canada)bDepartment of Sociology4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=105998 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1966) -....cParisdMagasins/AnnexeeP 8° 2361 aZCAD aexempb200910 aGEO RH Asie aGEO RE Afrique aDEW 90900934nas0 2200277 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123110001600141200003500157210003100192326001800223606004300241607002300284801003000307856011100337856010800448955007200556992001200628992001600640128412348000115467320130319051554.01 a1751-6234 a0001154673 a20081017a20089999m y0frey0103 ba0 aeng aGB ay 0  aaiazz 0 00aJournal of Asian public policy aAbingdoncRoutledged2008- a3 n°s par an aPolitique publiqueyAsiexPériodiques aAsiexPériodiques 3aFRbAbesc20081017gAFNOR4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/openurl?genre=journal&issn=1751-6234 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-2008) -....cParis :dMagasins/AnnexeeP 8° 7057 aDEW 950 aGEO RH Asie01471nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200010300154207003000257210007600287210005600363326001600419430004600435607002300481710004800504801002100552856009000573856010800663856010300771856010800874955007200982972000901054991001801063992001601081992001201097038733366000002471620130319051554.01 a0021-9118 aFNSP165722 a0000024716 a19900101a19569999 ba0 aeng aUS aahu 14aThe Journal of Asian studiesereview of Eastern and Southern Asia and the adjacent Pacific Islands 1aVol. 16, no.1 (nov-1956)- aAnn Arbor, Mich., etc.cAssociation for Asian Studies, etc.]d1956-2006 aWest Nyack, N.Y.cCambridge University Pressd2007- aTrimestriel 1aThe Far Eastern quarterlyxISSN 0363-6917 aAsiexPériodiques02aAssociation for Asian Studiesc(Etats-Unis) 3aFRbCCN0021-91184 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00219118.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=712073 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 16 no. 1 (1956/1957) -....cParisdMagasins/AnnexeeP 8° 1005 aZCAD aexempb201101 aGEO RH Asie aDEW 95001578cas0 2200385 450 001001000000002001100010005001700021011001400038020001900052100004100071101000800112102000700120105001800127106000600145110001600151200004700167207003100214210003100245326001600276430006700292452006600359517004500425530004500470607003200515607003400547607002600581801003000607856010300637856010800740856010900848856010800957955009001065992001401155992002301169133349888000117910520140107180829.01 a1944-8953 aUSb2008201985 a20090507a20099999k y0frey0103 ba0 aeng aGB ay 0  ar aaha 0yy 00aJournal of Balkan and Near Eastern studies 1avol. 11, no. 1 (mar-2009)- aAbingdoncRoutledged2009- aTrimestriel 1tJournal of Southern Europe and the Balkans (Print),x1461-3190 1tJournal of Balkan & Near Eastern Studies (Online), x1944-896110aJournal of Balkan & Near Eastern studies10aJournal of Balkan & Near Eastern studies aEurope du SudxPériodiques aEurope de l'EstxPériodiques aBalkansxPériodiques 3aFRbAbesc20090511gAFNOR4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=104630 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713435906db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 11 no. 1 (mar-2009) -vol. 15 no 4 (dec-2013)cParisdMagasins/AnnexeeP 8° 6532 aDEW 949.6 aGEO RA8.01 Balkans01348cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200008100156210007700237326001600314430003100330606003700361710006800398801003000466801003000496802000700526856004400533856007000577856010900647856010800756955007100864972000900935992004200944992001200986039106489000073256620130319051554.01 a0162-9778 accn0162-9778 a0000732566 a19741224a19729999 0frey0103 ba0 aeng aUS aah 10aJournal of Baltic studiesfAssociation for the Advancement of Baltic Studies aDarnestown, MDcAssociation for the Advancement of Baltic Studiesd1972- aTrimestriel 1tBulletin of Baltic studies aBaltique (région)xPériodiques02aAssociation for the Advancement of Baltic Studiesc(Etats-Unis) 3aFRbAbesc20040914gAFNOR 3aFRbAbesc20040914gAFNOR a014 uhttp://www.balticstudies-aabs.lanet.lv/ zContenu : sommaires des n°s depuis le vol. 23, n°1, Spring 20024 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t759156371db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 35 no. 1 (pri-2004) -....cParisdMagasins/AnnexeeP 8° 6795 aZPAY aGEO RA2.12 Région de la mer Baltique aDEW 94801245nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000290015421000380018332600150022160600240023660600360026080100210029685600900031785601080040785601080051585601080062395500890073197200090082099100180082999200210084799200230086899200160089103873348X000002468920130319051554.01 a0021-9347 aFNSP165671 a0000024689 a19900101a19709999 ba0 aeng aUS aagu 10aJournal of black studies aNewbury Park, Calif.cSaged1970- aBimestriel aNoirsxPériodiques aNoirs américainsxPériodiques 3aFRbCCN0021-93474 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00219347.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1no. 1 (sep-1970) -vol. 33 no. 3 (jan-2003)cParisdMagasins/AnnexeeP 8° 3009 aZSAB aexempb201106 aGEO RQ Universel aGEO RC2 Etats-Unis aDEW 305-30601505nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004700139210003300186326001600219430004400235452007000279517001000349530004700359606005800406606003200464710005000496801002100546856020800567856021400775955007100989972000901060991001801069992002301087992002101110992001201131039974162000002469320130903173558.01 a0883-8151 aFNSP165678 a19900101a19859999 ba0 aeng aUS aahu 10aJournal of broadcasting & electronic media aWashington, D.C.cBEAd1985- aTrimestriel 1aJournal of broadcastingxISSN 0021-938X 1tJournal of broadcasting & electronic media (Online)‎x1550-687810aJOBEM11aJournal of broadcasting & electronic media aCommunication audiovisuelleyEtats-UnisxPériodiques aCommunicationxPériodiques02aBroadcast Education Associationc(Etats-Unis) 3aFRbCCN0883-81514 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=113227zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t775648091db=allzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 29 no. 1 (hiv-1985) -....cParisdMagasins/AnnexeeP 8° 3453 aZCAD aexempb201103 aGEO RC2 Etats-Unis aGEO RQ Universel aDEW 07001710nas 2200385 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000280015421000580018232600260024032600270026643000690029351700530036253000390041560600270045471000480048180100210052985601280055085601080067885601010078685601080088785600900099585601080108595500890119397200090128299100170129199200160130803873351X000005592820130319051554.01 a0021-9398 aFNSP261339 a0000055928 a19900101b19542006 ba0 aeng aUS aahu 14aThe Journal of business aChicago, Ill.cUniversity of Chicago Pressd1954-2006 aBimestrielb2005-2006 aTrimestrielb1954-2004 1aThe Journal of business of the University of Chicago,x0740-916810aJournal of business of the University of Chicago10aJournal of businessbChicago, Ill. aAffairesxPériodiques02aGraduate School of Business (Chicago, Ill.) 3aFRbCCN0021-93984 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=JBU&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=106556 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00219398.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol.40 no. 4 (oct-1967) -vol. 79 no 6 (nov-2006)cParisdMagasins/AnnexeeP 8° 2709 aZPAY aexemp$200904 aDEW 650-65801309nls 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000084001502100058002343000119002923260016004113360058004273370063004854300061005484400066006094520070006756060027007456060027007727120048007998010013008478560090008609550005009509920016009550000470122000047012220130319051554.0 a0000470122 a b19281953k fre 01 ba0 aeng aUS az aah z  adr 14aThe Journal of business of the University of Chicagob[Ressource électronique] aChicago, Ill.cUniversity of Chicago Pressd1928-1953 aAccès au texte intégral (réservé aux sites de Sciences Po) à partir du vol. 1 de 1928 jusqu'au vol.26 de 1953 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tUniversity journal of business [Ressource électronique] 1tJournal of business (Chicago, Ill.) [Ressource électronique] 1tThe Journal of business of the University of Chicagox(0740-9168) aAffairesxPériodiques aFinancesxPériodiques02aGraduate School of Business (Chicago, Ill.) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/07409168.html1 r aDEW 650-65801078cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200004100180207003300221210007800254510003100332517000900363607005100372711004500423801003000468801002300498801001300521802000700534856002600541856004200567955007000609992002100679992001600700104828986000069187420130319051554.01 a1080-6954 aissn10806954 a0000691874 a19960325a19959999k y0frey0103 ba0 aeng aUS ay 0  ar aajy 0uu 10aJournal of Chinese political science 0aVol. 2, no. 1 (winter 1995)- aKnoxville, TNcDept. of Political Science, University of Tennesseed1995-10aZhongguo zheng zhi xue kan10aJCPS aChinexPolitique et gouvernementxPériodiques02aAssociation of Chinese Political Studies 3aFRbAbesc20080513gAFNOR 3aFRbISSNc20060706 0aFRbFNSP a014 uhttp://jcps.sfsu.edu/ zSommaires depuis le vol.1, n°1, 19951 bvol. 6 no. 1 (mar-2000) -....cParisdMagasins/AnnexeeP 8° 6777 aGEO RI3.01 Chine aDEW 320-32101121nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003500163210002400198326002300222326002900245517000800274606002900282801001300311856009500324856006900419856010800488856010800596955007000704972000900774992001200783064130959000052486320130319051554.01 a1468-795X a0000524863 a a20019999k fre ba0 aeng aGB a 0  ar aai z 0 10aJournal of classical sociology aLondoncSaged2001- aTrimestrielb2008- a3 n°s par anb2001-200710aJCS aSociologiexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sagepub.co.uk/journal.aspx?pid=105622 zContenu : sommaires et résumés depuis le vol.1, n°1, mai 20014 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mai-2001) -....cParisdMagasins/AnnexeeP 8° 6679 aZSAB aDEW 30101349nas 2200385 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200003200148207003300180210003600213326002300249326002800272530003200300606003200332606004400364676000800408710005700416801001300473856003600486856006100522856010100583856010800684955006700792955006500859972000900924991001800933992001200951050924133000030157320130903143543.01 a1520-3972 a a19999999k eng ba0 aeng aUS a 0  ar aai z 0 10aJournal of cold war studies 1aVol. 1, no. 1 (winter 1999)- aCambridge, MAcMIT Pressd1999- aTrimestrielb2002- a3 nos par anb1999-200110aJournal of cold war studies aGuerre froidexPériodiques aRelations internationalesxPériodiques a32702aDavis Center for Russian Studiesc(Cambridge, Mass.) 0aFRbFNSP4 uhttp://mitpress.mit.edu/COLDWAR zSommaires et résumés depuis le vol.1, n°1, hiver 19994 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=104181 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 1 no.1 (1999) -....cParisdMagasins/AnnexeeP 8° 6516 aZCAD aexempb201212 aDEW 32701638nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210002900191326002700220326003400247326002200281601004400303676001000347856007400357856011600431856010100547856010800648856006700756856006700823955006400890955006600954957013401020972000901154991001801163992005701181992001401238038733935000002477120130319051554.01 a0021-9886 aFNSP165807 a0000024771 a19900101a19629999 ba0 aeng aGB aahu 10aJournal of Common Market studies aOxfordcBlackwelld1962- aTrimestrielb1962-1999 a5 numéros par an b2000-2010 aBimestrielb2011-02aCommunautés européennesxPériodiques a341.84 uhttp://www.blackwellpublishers.co.uk/journal.asp?ref=0021-9886&site=1 zContenu : sommaires et résumés depuis le vol. 35, no.1, mars 1997, possibilité d'alerte de sommaire par mail4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100859 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1468-5965 zContenu : sommaires et résumés depuis le vol. 1, no. 1, 19621 bLes 3 dernières annéescParisd27, 1er étageeDEW 330.941 bvol. 1 no. 1 (1962) -....cParisdMagasins/AnnexeeP 8° 19811 bvol. 1(1962) -vol. 4 (1966) ; vol. 5 (1967) -vol. 8 (1970) ; vol. 25 (1986) -vol. 26 (1988)cParisdMagasins/AnnexeeP Index 0069 aZSAB aexempb201002 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 341.201148nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005100154207004900205210002800254326001300282430005700295440005100352530005100403607005800454801002100512856004200533856007700575955009100652991001800743992004900761992001200810037270184000002477820130319051554.01 a0306-3631 aFNSP165821 a0000024778 a19900101b19741997 ba0 aeng aGB aaiu 10aJournal of Commonwealth & comparative politics 1aVol. 12, no. 1 (1974) -vol. 35, no. 3 (1997) aLondoncCassd1974-1997 a3 n°/an 1aJournal of Commonwealth political studiesx0021-9908 1aCommonwealth & comparative politicsx1466-204300aJournal of Commonwealth & comparative politics aCommonwealthxPolitique et gouvernementxPériodiques 3aFRbCCN0306-36314 uhttp://www.frankcass.com/jnls/ccp.htm zContenu : sommaires depuis le vol. 32, n°1 ; résumés des n° récents1 bvol. 12 no. 1 (mar-1974) -vol. 35 no. 3 (nov-1997)cParisdMagasins/AnnexeeP 8° 2017 aexempb201011 aGEO RP Autres groupes de pays ou de régions aDEW 90900880nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210004500183326001600228606003200244801002100276856003300297856007200330955009200402957005700494972000900551991001800560992001200578038733978000002478020131202100011.01 a0021-9916 aFNSP165824 a0000024780 a19900101a19519999 ba0 aeng aUS aahu 10aJournal of communication aNew YorkcOxford University Pressd1951- aTrimestriel aCommunicationxPériodiques 3aFRbCCN0021-99164 uhttp://www.oup.co.uk/jnlcom/ zContenu : sommaires et résumés depuis le vol. 46, n°1, hiv. 19961 bvol. 16 no. 3 (sep-1966) -vol. 62 no. 6 (déc-2012)cParisdMagasins/AnnexeeP 8° 23101 b(1951) -(1968)cParisdMagasins/AnnexeeP Index 0141 aZCAD aexempb200909 aDEW 30201406nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006100139210002800200326001600228430004900244440003900293452008200332530005700414606002900471607003400500607002600534856005600560856004800616856010900664856010800773955009200881972000900973991001800982992003201000992001201032036740071000013786820130917164155.01 a1352-3279 aFNSP549820 a19941010b19942011 ba0 aeng aGB aaha 14aThe Journal of Communist studies and transition politics aLondoncCassd1994-2011 aTrimestriel 1aThe Journal of Communist studies,x0268-4535 1tEast european politics,x2159-9165 1tThe journal of communist studies and transition politics (Online),x1743-911610aJournal of communist studies and transition politics aCommunismexPériodiques aEurope de l'EstxPériodiques aEx-URSSxPériodiques4 uhttp://www.tandf.co.uk/journals/titles/13523279.asp zContenu : sommaires depuis le vol. 17, n°14 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713635808db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 10 no. 1 (mar-1994) -vol . 27 no. 4 (dec-2011)cParisdMagasins/AnnexeeP 8° 4930 aZGRA aexempb201010 aGEO RA2.02 Europe orientale aDEW 94701074nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210003500188300003200223326001600255606004900271606004500320710006900365856010900434856010800543955008200651972000900733991001800742992001200760094015082000014924120130319051554.01 a1070-5422 aFNSP585133 a0000149241 a19950209a19949999 ba0 aeng aUS aaha 10aJournal of community practice aNew YorkcHaworth Pressd1994- aArrive avec un an de retard aTrimestriel aService socialxAdministrationxPériodiques aOrganisation communautairexPériodiques02aAssociation for Community Organization and Social Administration4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t792303986db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1994) -vol. 13 no. 3 (2005)cParisdMagasins/AnnexeeP 8° 6098 aZSAB aexempb201211 aDEW 30100954nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210004500191326001600236606006100252606003700313710004900350801002100399856009600420856005900516955006600575972000900641992001400650039092992000002486820130319051554.01 a0147-5967 aFNSP165997 a0000024868 a19900101a19779999 ba0 aeng aUS aahu 10aJournal of comparative economics aSan Diego, Calif.cAcademic Pressd1977- aTrimestriel aPolitique économiquexEtudes comparativesxPériodiques aEconomie politiquexPériodiques02aAssociation for Comparative Economic Studies 3aFRbCCN0147-59674 uhttp://www.elsevier.com/wps/find/journaldescription.cws_home/622864/description#description zContenu : sommaires depuis le vol. 21 no. 2 (oct-1995)1 bvol. 1 no. 1 (1977) -....cParisdMagasins/AnnexeeP 8° 4491 aZPAY aDEW 338.902170cas0 2200445 450 00100100000000200110001000500170002101100140003803500140005203500170006603500170008303500150010010000410011510100080015610200070016410600060017111000160017720000970019321000240029043000650031444700470037944700590042651700760048553000610056160600410062260600460066371000480070980100300075780100230078780200070081085601210081785601200093885601210105885601140117985601140129385601210140785601210152895500550164999100200170403685736X000109505920130319051554.0 a1479-5949 a070640718 accn0121/7895 aissn14795949 a0001095059 a19830101b19171951 0fre 0103 ba0 aeng aGB ar aay 10aJournal of comparative legislation and international lawfSociety of comparative legislation aLondoncJohn Murray 1tJournal of the Society of Comparative Legislationx1479-5973 1tThe international law quarterlyx1479-5930 1tInternational and comparative law quarterlyx0020-589310aJournal of the Society of Comparative Legislation and international law00aJournal of comparative legislation and international law1 aDroit comparéxPériodiques2rameau1 aDroit internationalxPériodiques2rameau02aSociety of comparative legislationcGB4070 3aFRbAbesc20050707gAFNOR 3aFRbISSNc20030203 a024 uhttp://archive.org/details/journalcomparat08londgoogzAccès libre au texte intégral. Volume 2 sur Internet Archive4 uhttp://archive.org/details/journalcomparat01londgoogzAccès libre au texte intégral. Volume4 sur Internet Archive4 uhttp://archive.org/details/journalcomparat03londgoogzAccès libre au texte intégral. Volume 6 sur Internet Archive4 uhttp://archive.org/details/journalsocietyc02legigoogzAccès libre au texte intégral. Volume 7 (1ere partie)4 uhttp://archive.org/details/journalcomparat06londgoogzAccès libre au texte intégral. Volume 7 (2eme partie)4 uhttp://archive.org/details/journalcomparat10londgoogzAccès libre au texte intégral. Volume 8 sur Internet Archive4 uhttp://archive.org/details/journalsocietyc00legigoogzAccès libre au texte intégral. Volume 9 sur Internet Archive1 b(1938) -(1940)cParisdMagasins/AnnexeeP 8° 0891 aPériobTP02 P801657nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200006600163210004800229210007100277326001600348606005800364606005700422606006100479676000800540801001300548856004800561856011600609856010300725856006000828856010900888856010800997955012301105972000901228991001801237992001601255070505187000048714120130319051554.01 a1387-6988 a0000487141 a a19989999k fre ba0 aeng aGB a 0  ar aah z 0 10aJournal of comparative policy analysiseresearch and practice aAbingtoncRoutledge Taylor & Francisd2004- aDordrecht ; Boston ; LondoncKluwer Academic Publishersd1998-2003 aTrimestriel aPolitique publiquexEtudes comparativesxPériodiques aPolitique socialexEtudes comparativesxPériodiques aPolitique économiquexEtudes comparativesxPériodiques a320 0aFRbFNSP4 uhttp://www.springerlink.com/content/102926/ zContenu : sommaires des numéros et résumés des articles depuis le vol.1, n° 1, September 1998 jusqu'à 20034 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713672306 zContenu : accès aux sommaires et résumés depuis 20044 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713672306db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (sep-1998) -vol. 5 no. 2/3 (jun-2003) ; vol. 9 no. 1 (mar-2007) -....cParisdMagasins/AnnexeeP 8° 6652 aZSAB aexempb201212 aDEW 320-32101149nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003900163210004300202326001500245430005200260517004100312606004400353801001300397856003400410856005700444856011900501856010800620955007000728972000900798992001600807058260420000052358420130319051554.01 a1467-7954 a0000523584 a a20009999k fre ba0 aeng aGB a 0  ar aaj z 0 10aJournal of conflict & security law aOxfordcOxford University Pressd2000- aSemestriel 1tJournal of armed conflict lawxISSN (1364-0224)10aJournal of conflict and security law aSécurité internationalexPériodiques 0aFRbFNSP4 uhttp://www3.oup.co.uk/jconsl/ zContenu : sommaires depuis le vol.5, n°1, juin 20004 uhttps://acces-distant.sciences-po.fr/fork?http://www.westlaw.com/signon/default.wl?RS=UKIS1.0&VR=1.0&sp=intiep-000 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 6 no. 1 (jun-2001) -....cParisdMagasins/AnnexeeP 8° 6675 aZSAB aDEW 355-35901656nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210009200193210004600285326002200331326002700353430003500380606004400415606003900459676000800498712005600506801002100562856009000583856003700673856007000710856010800780856010800888856010800996955007001104972000901174991001801183992003301201992001201234038734249000002478720140110151449.01 a0022-0027 aFNSP165835 a0000024787 a19900101a19579999 ba0 aeng aUS aagu 14aThe Journal of conflict resolution aAnn Arbor, Mich.cThe Journal of Conflict Resolution, University of Michigand1957-1972 aBeverly Hills, Calif. [etc.]cSaged1973- aBimestrielb1997- aTrimestrielb1957-1996 1aConflict resolutionx0731-4086 aMédiation internationalexPériodiques aGestion des conflitsxPériodiques a32702aSociété internationale pour la science de la paix 3aFRbCCN0022-00274 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00220027.html zAccès libre au texte intégral.4 uhttps://acces-distant.sciences-po.fr/fork?http://jcr.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1957) -....cParisdMagasins/AnnexeeP 8° 1867 aZSAB aexempb201001 aGEO RS Sans aspect régional aDEW 32701404nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154210005600190326002500246326002600271606005500297606004300352710004300395801002100438856012800459856010800587856010300695856010800798955008600906972000900992991001801001992002301019992001201042038734303000002486620131202100833.01 a0022-0078 aFNSP165995 a0000024866 a19900101a19679999 ba0 aeng aUS aaju 14aThe Journal of consumer affairs aMadison, Wis.cUniversity of Wisconsin Pressd1967- a3 n°s par anb2008- aSemestrielb1967-2007 aConsommateursyEtats-UnisxAttitudesxPériodiques aConsommateursxAttitudesxPériodiques02aAmerican Council on Consumer Interests 3aFRbCCN0022-00784 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=JCA&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=113242 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1967) -vol. 46 no. 3 (aut-2012)cParisdMagasins/AnnexeeP 8° 2855 aZPAY aexempb200910 aGEO RC2 Etats-Unis aDEW 33901286nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003200163210003700195326002500232326002600257606004300283606005500326606004300381676000800424801001300432856009500445856008500540856010800625856010800733955007000841972000900911992001600920064131491000049037520130319051554.01 a1469-5405 a0000490375 a a20019999k fre ba0 aeng aGB a 0  ar aai z 0 10aJournal of consumer culture aLondoncSage Publicationsd2001- a3 n°s par anb2003- aSemestrielb2001-2002 aConsommateursxAttitudesxPériodiques aConsommateursyEtats-UnisxAttitudesxPériodiques aConsommationxSociologiexPériodiques a306 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sagepub.co.uk/journal.aspx?pid=105627 zContenu : sommaires et résumés des articles à partir du vol.1,n°1, juin 20014 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jun-2001) -....cParisdMagasins/AnnexeeP 8° 6662 aZSAB aDEW 305-30601086nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004400139210002800183326002300211326002400234326002600258607002600284856005700310856005900367856010900426856010800535955007100643972000900714991001800723992001900741992001200760039302148000019507220130828181243.01 a0258-9001 aFNSP716794 a19900101a19819999 ba0 aeng aGB aaha 10aJournal of contemporary African studies aAbingdoncCarfaxd1981- aTrimestrielb2008- a3 par anb2003-2007 aSemestrielb1981-2002 aAfriquexPériodiques4 uhttp://www.tandf.co.uk/journals/carfax/02589001.html zContenu : sommaire depuis le vol. 14, n°1, janv. 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713429127db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 13 no. 1 (jan-1995) -....cParisdMagasins/AnnexeeP 8° 6253 aZSAB aexempb201301 aGEO RE Afrique aDEW 96000901nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200003300138210005400171326001600225607002300241801002100264856010900285856010800394955006600502972000900568991001800577992001600595992001200611036535036000002512520140108131044.01 a0047-2336 aFNSP166488 a0000025125 a19900101a19709999 ba0 aeng aGB00aJournal of contemporary Asia aJCAaLondrescJournal of contemporary Asiad1970- aTrimestriel aAsiexPériodiques 3aFRbCCN0042/92954 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t776095547db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 2 no. 1 (1972) -....cParisdMagasins/AnnexeeP 8° 3069 aZSAB aexempb200910 aGEO RH Asie aDEW 95001434nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006000154210005600214210003200270210003100302326002200333326002800355326002700383326002800410510002300438607002400461710004700485856005700532856008800589856010900677856010800786955007000894972000900964992004500973992001201018992001801030040301788000011636720140108131319.01 a1067-0564 aFNSP484170 a0000116367 a19900101a19929999 ba0 aeng aUS aaia 14aThe Journal of contemporary Chinad= Tang tai Chung-kuo aPrinceton, N.J.cCenter for Modern Chinad1992-1995 aAbingdoncCarfaxd1996-2005 aAbingdoncRoutledged2005- aBimestrielb2012- a5 nos par anb2009-2011 aTrimestrielb2001-2008 a3 nos par anb1992-200010aTang tai Chung-kuo aChinexPériodiques02aCenter for Modern Chinac(Princeton, N.J.)4 uhttp://www.tandf.co.uk/journals/carfax/10670564.html zContenu : sommaires depuis le vol. 5, n°11, mars 1996 ; thèmes du n° à paraitre4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713429222db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (aut-1992) -....cParisdMagasins/AnnexeeP 8° 6007 aZSAB aGEO RI3.03 Chine (République populaire) aDEW 951 aexemp$b20121001611nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004500163210006800208326001500276430004800291606003700339676000800376801001300384856012800397856010800525856010300633856010800736856010900844856010800953955006601061955007101127972000901198992001201207992001801219078920418000055055420130319051554.01 a1478-2804 a0000550554 a a20039999k fre ba0 aeng aGB a 0  ar aaj z 0 10aJournal of Contemporary European Studies aBasingstoke, HantscCarfax Publishing, Taylor & Francis d2003- aSemestriel 1tJournal of European area studiesx1460-8464 aEtudes régionalesxPériodiques a940 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=RFL&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=109429 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713429588db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 bvol. 11 no. 1 (mai-2003) -....cParisdMagasins/AnnexeeP 4° 4745 aZCAD aDEW 940 aGEO RA Europe01362nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154210004700190210002400237326001600261606003900277676000800316801002100324856009500345856011200440856010800552856010800660955006700768955006600835957007200901972000900973991001800982992001201000036347507000002513920130319051554.01 a0022-0094 aFNSP166506 a0000025139 a19900101a19669999 ba0 aeng aGB aahu 10aJournal of contemporary history aLondoncWeidenfeld and Nicolsond1966-1971 aLondoncSaged1972- aTrimestriel aHistoire universellexPériodiques a909 3aFRbCCN0022-00944 uhttps://acces-distant.sciences-po.fr/fork?http://www.sagepub.co.uk/journal.aspx?pid=105630 zContenu : sommaires depuis le vol. 32, n°1, janv. 1997, résumés à partir du vol. 34, n°3, juillet 19994 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étage:eDEW 9091 bvol. 1 no. 1 (1966) -....cParisdMagasins/AnnexeeP 8° 22361 bvol. 1 (1966) -vol. 12 (1977)cParisdMagasins/AnnexeeP Index 0315 aZSAB aexempb201105 aDEW 90901374nas 2200361 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200003400148207003200182210006100214210005000275210005300325210003100378326001600409452006600425606004100491710005300532801001300585856005000598856006100648856010300709856010800812955006900920972000900989992001400998039976556000041494320131025134253.01 a0885-2545 a a19779999k fre ba0 aeng aNL a 0  ar aah z 0 10aJournal of cultural economics 1aVol. 1, no. 1 (June, 1977)- aAkron, OHcAssociation for Cultural Economicsd1977-1993 aNorwell, MAcKluwer Academic Publishersd1993 aDordrechtcKluwer Academic Publishersd1993-2004 aDordrechtcSpringerd2005- aTrimestriel 1tJournal of cultural economics (Dordrecht. Online),x1573-6997 aEconomie de la culturexPériodiques02aAssociation for Cultural Economics International 0aFRbFNSP4 uhttp://www.springerlink.com/content/0885-2545 zContenu : sommaires des n°s depuis le vol.1, n°1, 19774 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=100284 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 23 no. 1/2 (1991) -....cParisdMagasins/AnnexeeP 8° 6590 aZPAY aDEW 338.401369nas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101001300125102000700138105001800145106000600163110001600169200003900185210008500224326001600309430002900325452006100354517003400415530004800449607002400497710007100521711007600592801003000668801002300698802000700721856007800728856007700806955006700883992002100950992001200971135308534000117095820130319051554.01 a1868-1026 aissn18681026 a0001170958 a20090706a20099999 0frey0103 ba0 ageraeng aDE ay  ar aaz 10aJournal of current Chinese affairs aHamburgcInstitute of Asian Studies, German Institute of Global and Area Studies aTrimestriel 1tChina aktuellx0341-6631 1tJournal of current Chinese affairs (Internet)x1868-487410aChina aktuell (Hamburg. 2009)10aJournal of current Chinese affairsb(Print) aChinexPériodiques aGerman Institute of Global and Area Studiesc(Hambourg, Allemagne) aGerman Institute of Global and Area Studies, Institute of Asian Studies 3aFRbAbesc20090706gAFNOR 3aFRbISSNc20080601 a064 uhttp://www.giga-hamburg.de/index.php?file=z_cha.html&folder=publikationen zContenu : sommaires depuis 2006, de nombreux articles en texte intégral1 bvol. 38 no. 1 (2009) -....cParisdMagasins/AnnexeeP 8° 7043 aGEO RI3.01 Chine aDEW 95101273nas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200004700180210009200227326001600319430003600335530005600371607003400427710007100461711007600532801003000608801002300638802000700661856007800668856005500746955006700801992003100868992001200899135307651000117095720130319051554.01 a1868-1034 aissn18681034 a0001170957 a20090706a20099999 0frey0103 ba0 ager aDE ay  ar aaz 10aJournal of current Southeast Asian affairs aHamburgcInstitute of Asian Studies, German Institute of Global and Area Studiesd2009- aTrimestriel 1tSüdostasien aktuellx0722-882110aJournal of current Southeast Asian affairsb(Print) aAsie du Sud-EstxPériodiques02aGerman Institute of Global and Area Studiesc(Hambourg, Allemagne)02aGerman Institute of Global and Area Studies, Institute of Asian Studies 3aFRbAbesc20090706gAFNOR 3aFRbISSNc20080601 a064 uhttp://www.giga-hamburg.de/index.php?file=z_soa.html&folder=publikationen zContenu : sommaires depuis le vol. 25 no. 1 (2006)1 bvol. 28 no. 1 (2009) -....cParisdMagasins/AnnexeeP 8° 7044 aGEO RI2.02 Asie du Sud-Est aDEW 95901118nas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101001300125102000700138105001800145110001600163200009400179210005800273326001500331510003800346517000800384607002500392710004400417801003000461801002300491802000700514856002700521856010700548955007100655992003200726992002200758121770095000113158920130319051554.01 a1303-2925 aissn13032925 a0001131589 a20080225a20019999 0frey0103 ba0 aengatur aTR ay  aaj 10aJournal of Cyprus studies =dKıbrıs Araştırmaları DergisifCenter for Cyprus studies aAnkaracEastern Mediterranean university pressd2001- aSemestriel10aKıbrıs Araştırmaları Dergisi10aJCS aChyprexPériodiques02aCenter for Cyprus Studiesc(Famagouste) 3aFRbAbesc20080225gAFNOR 3aFRbISSNc20080201 a284 uhttp://jcs.emu.edu.tr/ zContenu: sommaire des n°s depuis le vol. 1, n° 1 de 1995 et résumés à partir du n° 28/29 de 20051 bvol. 10 no. 26/27 (2004) -....cParisdMagasins/AnnexeeP 8° 7010 aDEW 956.1 Turquie et Chypre aGEO RA6.07 Chypre01121nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154207003400179210006100213326001600274606003000290606002800320606003600348676000800384710005100392856005900443856005900502955006700561955006700628972000900695991001800704992003300722992001600755040264777000000829520130319051554.01 a1045-5736 aFNSP114427 a0000008295 a19900529a19909999 ba0 aeng aUS aaha 10aJournal of democracy 1aaVol. 1, no. 1 (winter 1990)- aaWashington, DCcNational Endowment for Democracyd1990- aTrimestriel aDémocratiexPériodiques aElectionsxPériodiques aScience politiquexPériodiques a32002aNational Endowment for Democracyc(Etats-Unis)4 uhttp://calliope.jhu.edu/journals/journal_of_democracy/ zContenu : sommaires depuis le vol. 6, n°1, janv. 19951 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bvol. 1 no. 1 (1990) - ....cParisdMagasins/AnnexeeP 8° 5641 aZSAB aexempb201101 aGEO RS Sans aspect régional aDEW 320-32100982nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154210005900190326002200249326002700271607004900298710003200347801002100379856003800400856006100438955011600499972000900615992004200624992001400666038734591000002514220130319051554.01 a0022-037X aFNSP166510 a0000025142 a19900101a19669999 ba0 aeng aUS aaju 14aThe Journal of developing areas aMacomb, Ill.cWestern Illinois University Pressd1966- aSemestrielb2000- aTrimestrielb1966-1999 aPays en voie de développementxPériodiques02aWestern Illinois University 3aFRbCCN0022-037X4 uhttp://muse.jhu.edu/journals/jda/ zContenu : sommaires depuis le volume 37, no 1, Fall 20031 bvol. 1 no 1 (oct-1966) -vol. 33 no 4 (1999) ; vol. 36 no 1 (aut-2002) -....cParisdMagasins/AnnexeeP 8° 2362 aZSAB aGEO RO Pays en voie de développement aDEW 338.901266nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154210002500190326002300215326002600238430004600264607004900310856012800359856010800487856007100595856010800666955011300774972000900887992004200896992001400938039120422000001090020130319051554.01 a0169-796X aFNSP120948 a0000010900 a19900717a19859999 ba0 aeng aNL aaha 10aJournal of developing societies aLeidencBrilld1985- aTrimestrielb2004- aSemestrielb1987-200? 1aContributions to Asian studiesx0304-2695 aPays en voie de développementxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=C3J&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://jds.sagepub.com/? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 2 (oct-1987) -vol. 17 no. 2 (2001) ; vol. 20 no. 1(2004)-....cParisdMagasins/AnnexeeP 8° 5602 aZSAB aGEO RO Pays en voie de développement aDEW 338.901342nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210003100189210002800220326002600248326002900274326002600303606004500329607007200374801002100446856005600467856008700523856010900610856010800719955007000827972000900897991001800906992004200924992001400966038734621000002516020130319051554.01 a0022-0388 aFNSP166552 a0000025160 a19900101a19649999 ba0 aeng aGB aafu 10aJournal of development studies aAbingdoncRoutledged2005- aLondoncCassd1964-2005 a10 n°s par anb2008- a8 n°s par anb2005-2007 aBimestrielb1964-2004 aDéveloppement économiquexPériodiques aPays en voie de développementxPolitique économiquexPériodiques 3aFRbCCN0022-03884 uhttp://www.tandf.co.uk/journals/titles/00220388.asp zContenu : sommaires depuis le volume 37, n°2, 2000 et alerte de sommaire par mail4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713395137db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (oct-1964) -....cParisdMagasins/AnnexeeP 8° 2216 aZSAB aexempb200908 aGEO RO Pays en voie de développement aDEW 338.900981cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200002800180207002600208210005200234326001600286606005400302801003000356801002300386801003000409802000700439856005100446856005500497955006600552972000900618992001600627104725672000104787120130319051554.01 a1542-4049 aissn15424049 a0001047871 a20021106a20049999k y0frey0103 ba0 aeng aUS a 0  ar aaha 0uu 10aJournal of e-government 0aVol. 1, no. 1 (2004)- aBinghamton, NYcHaworth Political Pressdc2004- aTrimestriel aAdministration publique et InternetxPériodiques 3aFRbAbesc20061129gAFNOR 3aFRbISSNc20060706 3aFRbAbesc20060707gAFNOR a014 uhttp://www.egovjournal.com/journal_archive.htm4 zContenu : sommaires depuis le volume 1, n°1, 20041 bvol. 1 no. 1 (2004) -....cParisdMagasins/AnnexeeP 8° 6927 aZSAB aDEW 350-35401225nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210005600188326001600244606005200260607003400312856010100346856010800447856010900555856010800664955006600772972000900838991001800847992003200865992001400897040301583000013725420130319051554.01 a1066-9868 aFNSP548435 a0000137254 a19941004a19959999 ba0 aeng aUS aaha 00aJournal of East-West business aBinghamton, NYcInternational Business Pressd1995- aTrimestriel aAide économiqueyEurope de l'EstxPériodiques aEurope de l'EstxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=109527 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t792306893db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1995) -....cParisdMagasins/AnnexeeP 8° 6066 aZPAY aexempb201210 aGEO RA2.02 Europe orientale aDEW 338.901137nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000065001502100061002153000107002763260016003833360058003993370063004574400061005204520051005816060037006327120034006698010013007038560090007169550005008069920012008110000469929000046992920130319051554.0 a0000469929 a b19631968k fre 01 ba0 aeng aUS az aah z  adr 14aThe Journal of economic abstractsb[Ressource électronique] aEvanston, Ill.cAmerican Economic Associationd1963-1968 aAccès au texte intégral (réservé aux sites de Sciences Po) du vol.1 de 1963 jusqu'au vol.6 de 1968 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tJournal of economic literature [Ressource électronique] 1tThe Journal of economic abstractsx(0364-281X) aEconomie politiquexPériodiques02aAmerican Economic Association 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0364281X.html1 r aDEW 33001102nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000360015421000480019032600160023860600390025471000470029380100210034085600900036185601080045195500690055995700740062895700750070297200090077799200140078603873477X000005598520130319051554.01 a0022-0507 aFNSP262182 a0000055985 a19900101a19419999 ba0 aeng aUS aahu 14aThe Journal of economic history aNew YorkcCambridge University Pressd1941- aTrimestriel aHistoire économiquexPériodiques02aEconomic History Associationc(Etats Unis) 3aFRbCCN0022-05074 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00220507.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no 1 (mai-1941) -....cParisdMagasins/AnnexeeP 8° 00941 b(1941) -(1950) ; (1951) -(1964)cParisdMagasins/AnnexeeP Index 01211 b(1951) -(1964) se trouve dans le vol. 25, n° 2, June 1965 de la revue aZPAY aDEW 330.901200nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210003700185210006900222326001600291517000800307517003500315606003700350710005300387801002100440856012800461856010800589955006900697957005700766972000900823991001800832992001200850038731053000002292620130319051554.01 a0021-3624 aFNSP161322 a0000022926 a19900101a19679999 ba0 aeng aUS aaha 10aJournal of economic issues aArmonk, N.Y.cM.E. Sharped2009- aLincoln, Neb.cAssociation for Evolutionary Economicsd1967-2008 aTrimestriel10aJEI10aJEI Journal of economic issues aEconomie politiquexPériodiques02aUniversity of TennesseebDepartment of Economics 3aFRbCCN0021-36244 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=JEI&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no.4 (dec-1971) -....cParisdMagasins/AnnexeeP 8° 30181 b(1967) -(1990)cParisdMagasins/AnnexeeP Index 0662 aZPAY aexempb201001 aDEW 33001373nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210005900189326001600248430004900264606003700313676000800350710003400358801002100392856012800413856010800541856009000649856010800739955006700847955007000914972000900984991001800993992001201011038734788000002516320130319051554.01 a0022-0515 aFNSP166557 a0000025163 a19900101a19699999 ba0 aeng aUS aahu 10aJournal of economic literature aNashville, Tenn.cAmerican Economic Associationd1969- aTrimestriel 1aThe Journal of economic abstractsx0364-281X aEconomie politiquexPériodiques a33002aAmerican Economic Association 3aFRbCCN0022-05154 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=JEL&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00220515.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3301 bvol. 7 no. 1 (mar-1969) -....cParisdMagasins/AnnexeeP 8° 1990 aZPAY aexempb200910 aDEW 33001522nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004100139210005900180326001600239452006200255517002600317530004100343606005200384606004100436676000800477710003400485801002100519856012800540856010800668856009000776856010800866955006700974955006601041972000901107991001801116992001401134039997065000002517020131004101836.01 a0895-3309 aFNSP166569 a19900101a19879999 ba0 aeng aUS aahu 14aThe Journal of economic perspectives aNashville, Tenn.cAmerican Economic Associationd1987- aTrimestriel 1tThe journal of economic perspectives (Online),x1944-796510aEconomic perspectives14aThe Journal of economic perspectives aHistoire économiquez20e sièclexPériodiques aPrévision économiquexPériodiques a33002aAmerican Economic Association 3aFRbCCN0895-33094 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=JEC&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/08953309.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3301 bvol. 1 no. 1 (1987) -....cParisdMagasins/AnnexeeP 8° 5097 aZPAY aexempb201106 aDEW 330.901359cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200003800180207003200218210003100250326001600281430004400297606004000341801003000381801002300411801003000434801002300464802000700487856010300494856008600597856010900683856010800792955007100900992001400971115408606000113224820130319051554.01 a1748-7870 aissn17487870 a0001132248 a20070614a20079999k y0frey0103 ba0 aeng aGB ay 0  ar aaha 0uu 10aJournal of economic policy reform 0aVol. 10, no. 1 (Mar. 2007)- aAbingdoncRoutledged2007- aTrimestriel 1tThe journal of policy reformx1384-1289 aPolitique économiquexPériodiques 3aFRbAbesc20090308gAFNOR 3aFRbISSNc20090225 3aFRbAbesc20080201gAFNOR 3aFRbISSNc20070614 a024 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713648069 zContenu : sommaires et résumés des articles depuis le vol. 10 no. 1, March 20074 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713648069db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 10 no. 1 (mar-2007) -....cParisdMagasins/AnnexeeP 8° 6413 aDEW 338.900956nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210003300179326001500212430005100227517001100278530003100289606003700320856023300357955006700590972000900657992001200666040045293000005602720130729114116.01 a0931-8658 aFNSP262276 a0000056027 a19900101a19869999 ba0 aeng aAT aaga 10aJournal of economics aWiencSpringer-Verlagd1986- aBimestriel 1aZeitschrift für Nationalökonomie,x0044-315810aJOECEP10aJournal of economicsbWien aEconomie politiquexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=72C&site=ehost-livezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 46 no. 1 (1986) -....cParisdMagasins/AnnexeeP 8° 1301 aZPAY aDEW 33001636nls 2200373 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000123001642070025002872100100003123000057004123260016004693360056004853370071005414300038006126060040006506060042006907100046007328010013007788560090007918560108008818560045009898560179010349920033012139920016012460000815974000081597420130319051554.01 a1076-9986 a0000815974 a a19949999k fre 01 ba0 aeng aUS az aah z  adr 10aJournal of educational and behavioral statisticsb[Ressource électronique]fAmerican Educational Research Association 1aN°3 (Autumn 1994) - aWashingtoncAmerican Educational Research Association,cAmerican Statistical Associationd1994- aTexte intégral depuis le vol. 19, n°3, Autumn 1994 aTrimestriel aDonnées textuelles accessibles uniquement en ligne aTéléchargement de fichiers TIFF, PDF (recommandé) ou PostScript 1tJournal of educational statistics aEducationyEtats-UnisxPériodiques aStatistiqueyEtats-UnisxPériodiques02aAmerican Educational Research Association 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/10769986.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.aera.net/publications/?id=318 zContenu : résumés en ligne depuis le vol. 29, n°1, Spring 2004 (site consulté le 13/05/2005) mais le projet affiché est, à terme, de mettre en ligne tous les résumés. aGEO RS Sans aspect régional aDEW 370-37901440cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200005300180207003200233210003800265430005000303452007300353530006200426676000800488711005600496801003000552801002300582801001300605802000700618856005600625856005000681856010900731856010800840955007300948972000901021992001201030104760192000089810820140110100238.01 a1745-7289 aissn17457289 a0000898108 a20041109a20069999k y0frey0103 ba0 aeng aGB ay 0  ar aaia 0uu 10aJournal of elections, public opinion and parties 0aVol. 16, no. 1 (Feb. 2006)- aAbingdoncTaylor & Francisd2006- 1tBritish elections & parties reviewx1368-9886 1tJournal of elections, public opinion and parties (Online)x1745-729710aJournal of elections, public opinion and partiesb(Print) a32002aPolitical Studies Association of the United Kingdom 3aFRbAbesc20090308gAFNOR 3aFRbISSNc20090225 0aFRbFNSP a024 uhttp://www.tandf.co.uk/journals/titles/17457289.asp zContenu : sommaires et résumés des articles4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713727959db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 15, no. 1 (Apr. 2005) -....cParisdMagasins/AnnexeeP 8° 5934 aZSAB aDEW 32401160nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210003900195326002300234326002600257517004300283606004100326606004700367710008700414856010800501856010800609955009000717972000900807991001800816992001200834040307670000008241820130319051554.01 a1070-4965 aFNSP366879 a0000082418 a19900101a19929999 ba0 aeng aUS aaha 10aJournal of environment & development aThousand Oaks, Calif.cSaged1992- aTrimestrielb1996- aSemestrielb1992-199510aJournal of environment and development aDéveloppement durablexPériodiques aPolitique de l'environnementxPériodiques02aGraduate School of International Relations and Pacific Studies (San Diego, Calif.)4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (aou-1992) -vol. 18 no. 4 (dec-2009)cParisdMagasins/AnnexeeP 8° 5901 aZSAB aexempb201202 aDEW 33301461nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005300154210002800207326002600235326002900261326003100290430003200321606004700353710007900400856005700479856005900536856010300595856010800698856010900806856010800915955006701023972000901090992001201099040099016000007185720130319051554.01 a0964-0568 aFNSP328682 a0000071857 a19900101a19929999 ba0 aeng aGB aafa 10aJournal of environmental planning and management aAbingdoncCarfaxd1992- a10 n°s par anb2011- a8 n°s par anb2009-2010 aSemestriel puis bimestriel 1aPlanning outlookx0032-0714 aPolitique de l'environnementxPériodiques02aUniversity of Newcastle Upon TynebDepartment of Town and Country Planning4 uhttp://www.tandf.co.uk/journals/carfax/09640568.html zContenu : sommaires depuis le vol. 39, n°1, mars 19964 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=100638 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713429786db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 35 no. 1 (1992) -....cParisdMagasins/AnnexeeP 4° 4072 aZPAY aDEW 33301164cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069040001100084100004100095101000800136102000700144105001800151110001600169200004700185210004200232517004900274530004200323606004700365801003000412801002300442801001300465802000700478856010900485856010800594955007000702972000900772992001200781992002100793058344772000030142220130319051554.01 a1523-908X aissn1523908X a0000301422 aJEPNFA a20001206a19999999 0fre 0103 ba0 aeng aGB ay  aai 10aJournal of environmental policy & planning aChichester, West SussexcWileyd1999-10aJournal of environmental policy and planning10aJournal environmental policy planning aPolitique de l'environnementxPériodiques 3aFRbAbesc20080612gAFNOR 3aFRbISSNc20001206 0aFRbFNSP a014 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713433817db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mai-1999) -....cParisdMagasins/AnnexeeP 4° 6837 aZPAY aDEW 333 aGEO RQ Universel01262nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210002800198326002200226326002700248430003400275606004300309856012800352856010800480856010900588856010800697955006700805972000900872991001800881992002100899992001600920037421085000025508220131025131823.01 a1369-183X aFNSP890350 a0000255082 a19900101a19989999 ba0 aeng aGB aaga 10aJournal of ethnic and migration studies aAbingdoncCarfaxd1998- aBimestrielb2003- aTrimestrielb1998-2002 1aNew communityxISSN 0047-9586 aRelations interethniquesxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=56F&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713433350db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 24 no. 2 (1998) -....cParisdMagasins/AnnexeeP 8° 4808 aZSAB aexempb201010 aGEO RQ Universel aDEW 305-30601162nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012310600060014111000160014720000370016321000720020032600150027243000400028744000570032753000370038460600370042180100130045885601280047185601080059995500900070797200090079799200120080699200180081804881167X000027946120130319051554.01 a1460-8464 a0000279461 a b19992002k fre ba0 aeng aGB a 0  ar aaj z 0 10aJournal of European area studies aBasingstoke, HantscCarfax Publishing, Taylor & Francis d1999-2002 aSemestriel 1tJournal of area studies,x0261-3530 1tJournal of contemporary European studies,x1478-280400aJournal of European area studies aEtudes régionalesxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=RFL&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 7 no. 1 (mai-1999) -vol. 10 no. 2 (nov-2002)cParisdMagasins/AnnexeeP 4° 4745 aZPAY aDEW 940 aGEO RA Europe01159nas0 2200325 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109110001600127200003600143207002400179210004700203326001500250430004900265601004400314607004400358676001000402710004900412801003000461856005600491856009700547955007000644955007100714992003400785992001400819115665285000110187120130319051554.0 a0001101871 a20070625a20079999k 0frey0103 ba0 aeng aGB ay  aaga a 10aJournal of European integration 0aVol.29, n.1 (2007)- aAbingdon, United KingdomcRoutledged2007- aBimestriel 1tRevue d'intégration européenne,x0703-633702aCommunautés européennesxPériodiques aEurope de l'OuestxUnitéxPériodiques a341.802aInstitut européen d'administration publique 3aFRbAbesc20070625gAFNOR4 uhttp://www.tandf.co.uk/journals/titles/07036337.asp zContenu : présentation de la revue ; sommaires et résumés depuis le volume 24, n°1, 20021 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 320.441 bvol. 29 no. 1 (mar-2007) -....cParisdMagasins/AnnexeeP 8° 3952 aGEO RA2.01 Europe occidentale aDEW 341.801181nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009400154210003000248326001500278510005100293510006200344607005400406607007200460710006200532856005700594856004000651955006600691972000900757991001800766992005700784992001400841040071561000016792520130319051554.01 a0947-9511 aFNSP638341 a0000167925 a19900101a19959999 f ba0 amul aDE aaja 10aJournal of European integration historyd= Revue d'histoire de l'intégration européenne aBaden-BadencNomosd1995- aSemestriel10aRevue d'histoire de l'intégration européenne10aZeitschrift für Geschichte der Europäischen Integration aEurope de l'OuestxUnitéxHistoirexPériodiques aEurope de l'OuestxIntégration économiquexHistoirexPériodiques02aGroupe de liaison des historiens auprès des Communautés4 uhttp://www.restena.lu/lcd/cere/f/revue/revinfof.html zContenu : présentation de la revue1 bvol. 1 no. 1 (1995) -....cParisdMagasins/AnnexeeP 8° 6169 aZCAD aexempb201203 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 341.201449nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154207002500192210002900217326002500246326002600271326002700297606006600324676001000390856012800400856010800528856010900636856010800745955007000853955006600923972000900989991001800998992005701016992001401073044835426000013711620130319051554.01 a1350-1763 aFNSP548116 a0000137116 a19941003a19949999 ba0 aeng aGB aafa 00aJournal of European public policy 1aVol. 1 no. 1 (1994)- aLondoncRoutledged1994- a8 n°s par anb2006- aBimestrielb2001-2005 aTrimestrielb1994-2000 aPolitique publiqueyPays de l'Union européennexPériodiques a341.84 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=5BM&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713685697db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 330.941 bvol. 1 no. 1 (1994) -....cParisdMagasins/AnnexeeP 8° 6064 aZSAB aexempb201203 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 341.201148nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154210002700192300004200219326002500261326002700286607004400313607006500357856010800422856010800530955006600638972000900704991001800713992001800731992005700749992001600806040091449000009619320130319051554.01 a0958-9287 aFNSP420364 a0000096193 a19900101a19919999 ba0 aeng aGB aaga 10aJournal of European social policy aHarlowcLongmand1991- aLe vol.1, 1991 ne comporte que 2 n°s a5 n°s par anb2009- aTrimestrielb1991-2008 aEuropexPolitique socialexPériodiques aPays de l'Union européennexPolitique socialexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 2 no. 1 (1991) -....cParisdMagasins/AnnexeeP 8° 5958 aZSAB aexempb201210 aGEO RA Europe aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 360-36301027nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003200139210002500171326001500196530004400211607002500255710004400280801002100324856010800345856010800453955010700561972000900668991001800677992001800695992001200713039302296000002531020130918161139.01 a0258-9680 aFNSP167074 a19900101a19859999 ba0 aeng aPK aaju 10aJournal of European studies aKarachicASCEd1985- aSemestriel aJournal of European studies‎bKarachi aEuropexPériodiques02aArea Study Centre for Europec(Karachi) 3aFRbCCN0258-96804 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1985) -....cParisdMagasins/AnnexeeP 8° 4992wManquant : vol. 18 no. 1 (jan-2002) aZSAB aexempb201106 aGEO RA Europe aDEW 94001237nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000030001552100066001853260018002514400070002695300030003396060042003696060049004116060030004607120039004908560090005298560108006199550157007279920023008849920016009070000123229000012322920130319051554.01 a1071-1031 aFNSP506799 a0000123229 a19940406b19291967 ba0 aeng aUS aaga 10aJournal of farm economics aMenasha, Wisc.cAmerican Farm Economic Associationd1929-1967 a5 n°s par an 1aAmerican journal of agricultural economics (0002-9092)

00aJournal of farm economics aAgricultureyEtats-UnisxPériodiques aPolitique agricoleyEtats-UnisxPériodiques aAgriculturexPériodiques02aAmerican Farm Economic Association4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/10711031.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 30 no. 4 (1948) ; vol. 32 (no. 4) (nov-1950) -vol. 37 no. 3 (1955) ; vol. 40 no. 1 (1958) -vol. 49 no. 5 (1967)cParisdMagasins/AnnexeeP 8° 0944 aGEO RC2 Etats-Unis aDEW 338.1-301457nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154207002600181326002200207326002800229326002600257530004400283606002700327710003300354801002100387856012800408856001400536856010100550856010800651856009000759856010800849955008700957972000901044991001801053992001201071038735253000002537520131202101429.01 a0022-1082 aFNSP167318 a0000025375 a19900101a19469999 ba0 aeng aUS aagu 14aThe Journal of finance 1aVol. 1 no. 1 (1946) - aBimestrielb1998- a5 nos par anb1968-1997 aTrimestielb1946-196704aThe Journal of financebNew York. Print aFinancesxPériodiques02aAmerican Finance Association 3aFRbCCN0022-10824 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=FIN&site=ehost-live zContenu :4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=103084 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00221082.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1946) -vol. 67 no. 6 (déc-2012)cParisdMagasins/AnnexeeP 8° 0105 aZPAY aexempb201101 aDEW 33201081nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005100154210007400205326001500279517000900294606003900303606003700342710005600379801002100435856009000456856010800546955007000654972000900724991001800733992001600751038735261000005603020130319051554.01 a0022-1090 aFNSP262284 a0000056030 a19900101a19669999 ba0 aeng aUS aahu 10aJournal of financial and quantitative analysis aSeattle, Wash.cJournal of financial and quantitative analysisd1966- aBimestriel10aJFQA aGestion d'entreprisexPériodiques aEconomie politiquexPériodiques02aSchool of Business Administrationc(Seattle, Wash.) 3aFRbCCN0022-10904 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00221090.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 6 no. 1 (jan-1971) -....cParisdMagasins/AnnexeeP 8° 2904 aZPAY aexempb199901 aDEW 650-65801026nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000880013921000360022732600120026345200560027553000350033160600270036671000560039380100210044985600910047095501360056197200090069799100180070699200120072403938084X000009462520131127130156.01 a0304-405X aFNSP414735 a19900101a19749999 ba0 aeng aNL aafa 10aJournal of financial economicsfSamuel Curtis Johnson Graduate school of management aAmsterdamcNorth-Hollandd1974- aMensuel 1tJournal of financial economics (Online),x1879-277400aJournal of financial economics aFinancesxPériodiques02aSamuel Curtis Johnson Graduate School of Management 3aFRbCCN0304-405X4 uhttp://www.sciencedirect.com/science/journal/0304405XzAccès libre au texte intégral1 bvol. 6 no. 1 (1978) -vol. 12 no. 4 (1983) ; vol. 33 no. 1 (jan-1993) -vol. 103 no 2 (fev-2012)cParisdMagasins/Annexe,eP 8° 4119 aZPAY aexempb201103 aDEW 33200860nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003300139210003100172326001600203452005400219530003300273606003600306856006000342856007100402955007000473972000900543991001800552992001200570036873942000026947320130830103253.01 a1386-4181 aFNSP932446 a19990401a19989999 ba0 aeng aNL aaha 10aJournal of financial markets aAmsterdamcElsevierd1998- aTrimestriel 1tJournal of financial markets (Online),x1878-576X aJournal of financial markets aMarché financierxPériodiques4 uhttp://www.elsevier.nl:80/homepage/sae/econbase/finmar/ zContenu : sommaires et résumés depuis le vol. 1, n°1, avr. 19981 bvol. 1 no. 1 (avr-1998) -....cParisdMagasins/AnnexeeP 8° 6468 aZPAY aexempb201301 aDEW 33201263nas 2200325 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200003300148210002800181326001700209452005400226530004300280606003900323801001300362856012800375856010800503856010900611856010800720955007000828972000900898991001800907992001200925050912437000032761220130830125224.01 a1462-3528 a a19999999k fre ba0 aeng aGB a 0  ar aai z 0 10aJournal of genocide research aAbingdoncCarfaxd1999- a3 nos par an 1tJournal of genocide research (Online),x1469-9494 aJournal of genocide research‎bPrint aGénocidexRecherchexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=56G&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713431069db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1999) -....cParisdMagasins/AnnexeeP 8° 6534 aZSAB aexempb201212 aDEW 90901112cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200003000180207003100210210004900241326001800290606004300308606005000351710005300401801003000454801002300484802000700507856006400514856007700578955007000655992001600725992002100741108057607000115222920130319051554.01 a1740-0228 aissn17400228 a0001152229 a20060906a20069999k y0frey0103 ba0 aeng aGB ay 0  ar aaia 0uu 10aJournal of global history 0aVol. 1, pt. 1 (Mar. 2006)- aCambridgecCambridge University Pressd2006- a3 n°s par an aMondialisationxHistoirexPériodiques aDéveloppement humainxHistoirexPériodiques02aLondon School of Economics and Political Science 3aFRbAbesc20080514gAFNOR 3aFRbISSNc20060720 a024 uhttp://journals.cambridge.org/action/displayJournal?jid=JGH zContenu: sommaires et résumés d'articles depuis le vol. 1 no. 1 (2006)1 bvol. 1 no. 1 (mar-2006) -....cParisdMagasins/AnnexeeP 8° 7048 aDEW 900-907 aGEO RQ Universel01350nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003200139210003500171326001600206452005300222530003200275606002800307856016100335856006000496856010900556856010800665955008300773955009200856972000900948991001800957992003300975992001601008039987884000002537620131004125754.01 a0891-1762 aFNSP167319 a19910219a19879999 ba0 aeng aUS aaha 10aJournal of global marketing aNew YorkcHaworth Pressd1987- aTrimestriel 1tJournal of global marketing (Online),x1528-6975 aJournal of global marketing aMarketingxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.haworthpress.com/store/product.asp?sid=SQ2J5J6A98118LTCWVM1VXRB39KGDS57&sku=J042&detail=TOCList#TOCList zContenu : sommaires depuis le vol. 1, n° 1/2 1987/19884 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t792304011db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 20 no. 1 (2006) -vol. 21 no. 4 (2008)cParisdMagasins/AnnexeeP 4° 72171 bvol. 1 no. 1/2 (aut/hiv-1987) -vol. 19 no. 4 (2006)cParisdMagasins/AnnexeeP 8° 5115 aZSAB aexempb201106 aGEO RS Sans aspect régional aDEW 650-65801106nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154210003900192326002300231440003300254517004000287606005000327606004800377856010900425856010800534955008400642972000900726991001800735992002300753992001600776040001792000006057520130319051554.01 a0897-7186 aFNSP277509 a0000060575 a19900101b19892007 ba0 aeng aUS aaha 10aJournal of health & social policy aNew YorkcHaworth Pressd1989-2007 a6 à 8 n°s par an 1tSocial work in public health10aJournal of health and social policy aPolitique sanitaireyEtats-UnisxPériodiques aMédecine socialeyEtats-UnisxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t904385165db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1989) -vol. 22 no. 3/4 (2007)cParisdMagasins/AnnexeeP 8° 5800 aZSAB aexempb201111 aGEO RC2 Etats-Unis aDEW 360-36300989nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210005600189326001600245517000800261606003900269606004700308801002100355856009000376856010800466955007000574972000900644991001800653992001600671038735741000002538120130319051554.01 a0022-166X aFNSP167330 a0000025381 a19900101a19669999 ba0 aeng aUS aahu 14aThe Journal of human resources aMadison, Wis.cUniversity of Wisconsin Pressd1966- aTrimestriel10aJHR aPersonnelxDirectionxPériodiques aDiscrimination dans l'emploixPériodiques 3aFRbCCN0022-166X4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0022166X.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1966) -....cParisdMagasins/AnnexeeP 8° 2858 aZPAY aexempb200908 aDEW 650-65801263nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002800163207003100191210003700222326001600259606003600275676001100311801001300322856010300335856010800438856010900546856010800655955007000763955007100833972000900904992001200913067779514000068028120130319051554.01 a1475-4835 a0000680281 a a20029999 fre 01 ba0 aeng aGB a 0  ar aah z 0 10aJournal of human rights 1aVol. 1, no. 1 (Mar. 2002)- aLondoncCarfax Publishingd2002- aTrimestriel aDroits de l'hommexPériodiques a341.48 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=300256 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713431618db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 341.481 bvol. 3 no. 1 (mar-2004) - ....cParisdMagasins/AnnexeeP 8° 6774 aZPAY aDEW 32301178nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004900154210002400203326002300227326002900250607004100279607005400320801002100374856004300395856004800438856010900486856010800595955007000703991001800773992004900791992001200840039402894000002544620130319051554.01 a0308-6534 aFNSP167856 a0000025446 a19900101a19729999 ba0 aeng aGB aaiu 10aJournal of imperial and Commonwealth history aLondoncCassd1972- aTrimestrielb2006- a3 n°s par anb????-2005 aCommonwealthxHistoirexPériodiques aGrande-BretagnexColoniesxHistoirexPériodiques 3aFRbCCN0308-65344 uhttp://www.frankcass.com/jnls/jich.htm zContenu : sommaires depuis le vol. 24, n°14 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713635365db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 4 no. 1 (oct-1975) -....cParisdMagasins/AnnexeeP 8° 3904 aexempb201001 aGEO RP Autres groupes de pays ou de régions aDEW 90901455nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154210002900190326001600219606002800235606005200263801002100315856007100336856007300407856010100480856010800581856009000689856010800779955013500887957007201022972000901094992001401103038735938000002545020131202101903.01 a0022-1821 aFNSP167862 a0000025450 a19900101a19529999 ba0 aeng aGB aahu 10aJournal of industrial economics aOxfordcBlackwelld1952- aTrimestriel aIndustriexPériodiques aHistoire économiquez20e sièclexPériodiques 3aFRbCCN0022-18214 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0022-1821 zContenu : sommaires et résumés depuis le vol. 44, n°3, sept. 19964 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100864 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00221821.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 2 (1955) -vol. 3 no. 3 (1955) ; vol. 11 no. 2 (avr-1963) -vol. 60 no. 4 (déc-2012)cParisdMagasins/AnnexeeP 8° 19991 bvol. 1 (1952) -vol. 41 (1992)cPArisdMagasins/AnnexeeP Index 0707 aZPAY aDEW 338.401208nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000350013921000310017432600150020543000380022060600440025871000500030280100210035285601010037385601080047485601080058285601080069095500870079897200090088599200120089403911046X000002545420131104155944.01 a0165-5515 aFNSP167868 a19900101a19799999 ba0 aeng aGB aagu 10aJournal of information science aLondoncBowker-Saurd1979- aBimestriel 1aInformation scientist (0020-0263) aSciences de l'informationxPériodiques02aInstitute of Information Scientists (Londres) 3aFRbCCN0165-55154 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=103633 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bConservation limitée aux 5 dernières annéescParisdMagasins/AnnexeeP 4° 6342 aZPAY aDEW 02001120nas0 2200325 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109200005500127207002600182210004700208326001600255430002800271517005100299606006500350606004500415606005400460801003000514856004200544856008400586955006600670972000900736992002100745992001200766992001600778129103977000115651620130319051554.0 a0001156516 a20081117a20079999k frey0103 ba0 aeng aUS ay 10aJournal of information technology & politicseJITP 0aVol. 4, no. 1 (2007)- aBinghamton, N.Y.cThe Haworth Pressd2007- aTrimestriel 1tJournal of e-government10aJournal of information technology and politics aTechnologie de l'informationxAspect politiquexPériodiques aCommunication en politiquexPériodiques aAdministration publique et InternetxPériodiques 3aFRbAbesc20081117gAFNOR4 uhttp://www.jitp.net/m_archive.php?p=1 zContenu: sommaire des numéros et texte intégral depuis le vol. 4 no. 1 (2007)1 bvol. 4 no. 1 (2007) -....cParisdMagasins/AnnexeeP 4° 7234 aZSAB aGEO RQ Universel aDEW 004 aDEW 320-32101071cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200003900180207003000219210004900249326002300298326002900321326002300350606003700373801003000410801002300440802000700463856006400470856009600534955007000630972000900700992001200709104757701000103502820130319051554.01 a1744-1374 aissn17441374 a0001035028 a20040507a20059999k y0frey0103 ba0 aeng aGB a 0  ar aaia 0uu 10aJournal of institutional economics 0aVol. 1, no 1 (June 2005)- aCambridgecCambridge University Pressd2005- aTrimestrielb2010- a3 n°s par anb2006-2009 aSemestriel en 2005 aEconomie politiquexPériodiques 3aFRbAbesc20060712gAFNOR 3aFRbISSNc20060706 a024 uhttp://journals.cambridge.org/action/displayJournal?jid=JOI zContenu : résumés et sélection d'articles en texte intégral depuis le vol.1, n°1, 20051 bvol. 1 no. 1 (jun-2005) -....cParisdMagasins/AnnexeeP 8° 6915 aZSAB aDEW 33001620nas 2200397 i 450 001001000000002001100010005001700021011001600038035001500054035001500069100004100084101000800125102000700133110001600140200005500156207005800211210007500269326001600344430004900360440005100409607005800460607005800518607002800576710006000604801002100664856003600685856004800721856009000769856010800859955009600967957009901063972000901162991001801171992002101189992001201210038736020000000469020130319051554.01 aa0022-1937 aFNSP106211 a0000004690 a19900101b19702000 ba0 aeng aUS aahu 10aJournal of interamerican studies and world affairs 1aVol. 12, no. 1 (jan-1970) -vol. 42, no. 4 (oct- 2000) aCoral Gables, Fla.cUniversity of Miami, North-South Centerd1970-2000 aTrimestriel 1aJournal of inter-American studiesx0885-3118 1tLatin American politics and societyx1531-426X aAmérique latinexRelationsyEtats-UnisxPériodiques aEtats-UnisxRelationsyAmérique latinexPériodiques aAmériquexPériodiques02aInstitute of International Studies (Coral Gables, Fla.) 3aFRbCCN0022-19374 uhttp://www.rienner.com/laps.htm zContient les sommaires de l'année en cours4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00221937.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol.13 no. 3/4 (jul/oct-1971) -vol. 42 no. 4 (hiv-2000)cParisdMagasins/AnnexeeP 8° 21851 b(1959/1969), (1970/1989), vol. 31 (1989)- vol. 40 (1998)cParisdMagasins/annexeeP Index 0642 aZSAB aexempb201105 aGEO RB Amérique aDEW 98001275nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004500154210003900199326001600238606002700254801002100281856005900302856007200361856010100433856010800534856009000642856010800732955007000840972000900910991001800919992001200937038736047000005404420130319051554.01 a0022-1953 aFNSP255425 a0000054044 a19900101a19709999 ba0 aeng aUS aaha 14aThe Journal of interdisciplinary history aCambridge, Mass.cMIT Pressd1970- aTrimestriel aHistoirexPériodiques 3aFRbCCN0022-19534 uhttp://mitpress.mit.edu/journal-home.tcl?issn=00221953 zContenu : sommaires et résumés depuis le vol. 25, n°1, hiv. 19964 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=102109 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00221953.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (aut-1970) -....cParisdMagasins/AnnexeeP 8° 2959 aZPAY aexempb201106 aDEW 90901793nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210006400191300006000255326001500315430006200330530004700392606004400439676000800483801002100491856012800512856010800640955006700748955025700815957036201072972000901434992001201443038736098000002555820130319051554.01 a0022-197X aFNSP168089 a0000025558 a19900101a19529999 ba0 aeng aUS aaju 10aJournal of international affairs aNew YorkcSchool of International and Public Affairsd1952- aLa Bibliothèque n'a pas reçu les années 1995 et 1996 aSemestriel 1aColumbia journal of international affairsxISSN 1045-3466 0aJournal of international affairsbNew York aRelations internationalesxPériodiques a327 3aFRbCCN0022-197X4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=poh&jid=JIA&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 6 no. 1 (1952) -vol. 45 no. 1 (1991) ; vol. 47 no. 1 (1993)- vol. 48 no. 1 (1994) ; vol. 51 no. 1 (1997) -vol. 51 no. 2 (1998) ; vol. 53 no. 1 (1999) -....cParisdMagasins/AnnexeeP 8° 1167wManquant : vol. 47, no. 2, 1993 ; vol. 48, no. 2, 19941 b(1947) -(1950) ; (1951) -(1954) ; (1955) -(1957) ; (1958) -(1960) ; (1961) -(1963) ; (1964) -(1966) ; (1967) -(1969) ; (1970) -(1972)cParisdMagasins/Annexezces index se trouvent respectivement dans le no. 2 des vol. 4 (1950) ; vol. 8 (1954) ; vol. 11 (1957) ; vol. 14 (1960) ; vol. 17 (1963) ; vol. 20 (1966) ; vol. 23 (1969) ; vol. 26 (1972) de la revue aZPAY aDEW 32701883nas 2200457 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200010000154210003100254300005200285326002500337326002900362326002600391326002700417326002800444517000900472606004600481606003900527710004300566711006900609801002100678856002400699856006500723856009000788856010800878856010300986856010801089955007101197955009101268972000901359991001801368992001601386992002301402038827506000002556320130319051554.01 a0047-2506 aFNSP168099 a0000025563 a19900101a19709999 ba0 aeng aUS aahu 10aJournal of international business studiesethe journal of the Academy of International Business aColumbia, Sc.cJIBSd1970- aA partir de 2003 publié par Palgrave Macmillan a9 n°s par anb2010- a8 n°s par anb2008-2009 aBimestrielb2003-2007 aTrimestrielb1990-2002 a3 nos par anb1970-198910aJIBS aEntreprises multinationalesxPériodiques aGestion d'entreprisexPériodiques02aAcadémie des affaires internationales02aUniversity of South CarolinabCollege of Business Administration 3aFRbCCN0047-25064 uhttp://www.jibs.net zContenu : sommaires et résumés depuis le vol.1, n°1, 19794 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00472506.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=110790 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 34 no. 1 (jan-2003) -....cParisdMagasins/AnnexeeP 4° 69721 bvol. 11 no. 1 (pri/ete-1980) -vol. 33 no. 4 (2002)cParisdMagasins/AnnexeeP 8° 4352 aZPAY aexempb201011 aDEW 650-658 aGEO RC2 Etats-Unis01212nas 2200349 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000390015420700300019321000400022321000310026332600220029432600280031632600270034467600080037167600120037980100210039180100050041285601000041785600720051795500670058995501790065697200090083599100180084403873611X000017899020130906101015.01 a0022-1996 aFNSP668730 a0000178990 a19900101a19719999 ba0 aeng aNL aahu 10aJournal of international economics 1aVol. 1, n. 1 (fev-1971) - aAmsterdamcNorth-Hollandd1971-199X aAmsterdamcElsevierd199X- aBimestrielb1998- a8 nos par anb1982-1997 aTrimestrielb1971-1981 a330 aDEW 330 3aFRbCCN0022-1996 0a4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/00221996 zContenu : accès aux sommaires de la revue depuis le volume 1, 19701 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3301 bvol. 1 no. 1 (1971) - ....cParisdMagasins/AnnexeeP 8° 2941wManquants : vol. 20, no. 1/2, 1986 ; vol. 21, no. 3/4, 1986 ; vol. 22, no. 3/4, 1987 à vol. 33, no. 3/4, 1992 aZPAY aexempb20110601455nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000224001642070029003882100094004173260016005115100066005276060044005937100086006377110033007238010013007568560128007698560108008979550070010059720009010759920021010849920012011050000617132000061713220130319051554.01 a1488-3473 a0000617132 a a20009999 fre 01 ba0 amul aCA a 0  ar aah z 0 10aJournal of international migration and integrationd=Revue de l'intégration et de la migration internationalefPrairie Centre of Excellence for Research on Immigration and integrationf=Centre d'excellence des Prairies 1aVol.1, n°1 (hiv. 2000)- aEdmontoncPrairie Centre of Excellence for Research on Immigration and Integrationd2000- aTrimestriel10aRevue de l'integration et de la migration internationalezfre aEmigration et immigrationxPériodiques02aCentre d'excellence des Prairies pour la recherche en immigration et intégration02aMetropolis Projectc(Canada) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=LTB&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (hiv-2000) -....cParisdMagasins/AnnexeeP 8° 6760 aZSAB aGEO RQ Universel aDEW 32500941nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012310600060014111000160014720000470016321000490021032600180025960600430027760600410032067600120036180100130037385601000038685600850048695500710057197200090064203931250X000048178220130319051555.01 a0261-5606 a0000481782 a a19829999k fre ba0 aeng aGB a 0  ar aag z 0 10aJournal of international money and finance aOxfordaNew-YorkaAmsterdamcElsevierd1982- a8 n°s par an aFinances internationalesxPériodiques aCommerce internationalxPériodiques aDEW 332 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/02615606 zContenu : accès aux sommaires et résumés de la revue depuis le volume 1, 19821 bvol. 1 no. 1 ( fev-2002) -....cParisdMagasins/AnnexeeP 8° 6640 aZPAY01132cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200004600180207002600226210004200252326001500294430004200309517000900351606003600360606004000396606004400436801003000480801002300510802000700533856004200540856006500582955006600647992001200713992003300725125000499000117938720130319051555.01 a1755-0882 aissn17550882 a0001179387 a20080618a20089999k y0frey0103 ba0 aeng aGB ay 0  ar aaja 0uu 10aJournal of international political theory 0aVol. 4, no. 1 (2008)- aEdinburghcEdinburgh University Press aSemestriel 1tPolitics and ethics reviewx1743-453X10aJIPT aScience politiquexPériodiques aPhilosophie politiquexPériodiques aRelations internationalesxPériodiques 3aFRbAbesc20090610gAFNOR 3aFRbISSNc20090602 a024 uhttp://www.euppublishing.com/loi/jipt zContient : sommaires des numéros depuis vol. 1 no. 1 (2005)1 bvol. 4 no. 1 (2008) -....cParisdMagasins/AnnexeeP 8° 7113 aDEW 320 aGEO RS Sans aspect régional01216cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200004600180207003200226210006600258326001600324606004900340606004400389606003800433801003000471801002300501802000700524856010300531856010800634955007000742972000900812992002100821992001200842116904240000120238520130319051555.01 a1750-2977 aissn17502977 a0001202385 a20070807a20079999k y0frey50 ba0 aeng aGB ay 0  ar aaha 0uu 10aJournal of intervention and statebuilding 0aVol. 1, no. 1 (March 2007)- aAbingdon, Oxfordshire, UKcRoutledge, Taylor & Francisd2007- aTrimestriel aReconstruction d'après-guerrexPériodiques aSécurité internationalexPériodiques aMaintien de la paixxPériodiques 3aFRbAbesc20080516gAFNOR 3aFRbISSNc20080429 a014 uhttps://acces-distant.sciences-po.fr/fork?http://eJournals.ebsco.com/Journal2.asp?JournalID=712282 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bVol. 4 no. 1 (mar-2010) -....cParisdMagasins/AnnexeeP 8° 7150 aZPAY aGEO RQ Universel aDEW 32001066nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210004300185326001500228606002400243712003800267856003300305856010600338856010100444856010800545955007000653972000900723991001800732992001400750040085856000009307320130319051555.01 a0955-2340 aFNSP410464 a0000093073 a19900101a19909999 ba0 aeng aGB aaja 10aJournal of Islamic studies aOxfordcOxford University Pressd1990- aSemestriel aIslamxPériodiques02aOxford Centre for Islamic Studies4 uhttp://www.oup.co.uk/islamj/ zContenu : sommaires depuis le vol. 7, n°1, janv. 1996 ; résumés depuis le vol. 8, n°2, juil. 1997 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=106097 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 4 no. 1 (jan-1993) -....cParisdMagasins/AnnexeeP 8° 5941 aZPAY aexempb201210 aDEW 20-2901451nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210002400189300003800213326001800251430005000269606003700319607003600356710006400392856004200456856004800498856010300546856010800649856010900757856010800866955007100974972000901045992002301054992001201077036740497000012986520130319051555.01 a1353-1042 aFNSP528262 a0000129865 a19940614a19949999 ba0 aeng aGB aaia 14aThe Journal of Israeli history aLondoncCassd1994- aN'a pas paru en 1999,2000,et 2002 a3 n°s par an 1aStudies in zionism,x0084-5523 < P 8° 4549 > aSionismexHistoirexPériodiques aIsraëlxHistoirexPériodiques02aInstitute for Research in the History of Zionism (Tel-Aviv)4 uhttp://www.frankcass.com/jnls/jih.htm zContenu : sommaires depuis le vol. 17, n°14 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=110528 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713720568db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 15 no. 1 (pri-1994) -....cParisdMagasins/AnnexeeP 8° 4549 aZPAY aGEO RG2.15 Israël aDEW 95601029nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210004800186326001500234607002400249676000800273712004300281856009000324856010800414955006600522955006700588972000900655991001800664992002100682992001200703038900262000016165020130319051555.01 a0095-6848 aFNSP621490 a0000161650 a19900101a19749999 ba0 aeng aUS aaja 10aJournal of Japanese studies aSeattlecJournal of Japanese studiesd1974- aSemestriel aJaponxPériodiques a95002aSociety for Japanese Studies (Seattle)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00956848.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9501 bvol. 20 no. 1 (1994) -....cParisdMagasins/AnnexeeP 8° 6142 aZCAD aexempb201202 aGEO RI3.22 Japon aDEW 95201159nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210005400185326001600239606003800255801002100293856012800314856010800442856009000550856010800640955007000748972000900818991001800827992001200845039696537000002578220130319051555.01 a0734-306X aFNSP168728 a0000025782 a19900101a19839999 ba0 aeng aUS aahu 10aJournal of labor economics aChicago, Ill.cUniversity of Chicago Pressd1983- aTrimestriel aEconomie du travailxPériodiques 3aFRbCCN0734-306X4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=JLB&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0734306X.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1983) -....cParisdMagasins/AnnexeeP 8° 4715 aZPAY aexempb201106 aDEW 33101150nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003000139210005100169326001600220452005100236530003000287606003800317606004200355710006900397801002100466856010300487856010800590955006600698972000900764991001800773992002100791992001200812039149730000002571820130911121232.01 a0195-3613 aFNSP168581 a19900101a19809999 ba0 aeng aUS aahu 10aJournal of labor research aFairfax, Va.cJournal of labor researchd1980- aTrimestriel 1tJournal of labor research (Online),x1936-4768 aJournal of labor research aEconomie du travailxPériodiques aRelations industriellesxPériodiques02aGeorge Mason Universityc(Fairfax, Va.)bDepartment of Economics 3aFRbCCN0195-36134 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=110581 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1980) -....cparisdMagasins/AnnexeeP 8° 4401 aZPAY aexempb201106 aGEO RQ Universel aDEW 33101057cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200003700174210007000211326002300281326002900304606003200333606004100365606003100406801003000437801002300467802000700490856005200497856008100549955006600630972000900696992001400705070086877000113074820130319051555.01 a1569-2159 aissn15692159 a0001130748 a20030203a20029999k y0frey0103 ba0 aeng aNL ay  aahu uu 10aJournal of language and politics aAmsterdamaPhiladelphiacJohn Benjamins Publishing Companyd2002- aTrimestrielb2010- a3 n°s par anb2002-2009 aCommunicationxPériodiques aPolitique linguistiquexPériodiques aLinguistiquexPériodiques 3aFRbAbesc20080212gAFNOR 3aFRbISSNc20030203 a0j4 uhttp://benjamins.com/#catalog/journals/jlp/main zContient le sommaire et le résumé des n°s depuis le vol. 1, n° 1 de 20021 bvol. 5 no. 1 (2006) -....cParisdMagasins/AnnexeeP 8° 7002 aZSAB aDEW 42-4901366nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154210004600192326001600238607006200254607003500316676000800351801002100359856006400380856005400444856009000498856010800588955006600696955007000762957010500832972000900937991001800946992002800964992001200992038736306000002567420130319051555.01 a0022-216X aFNSP168363 a0000025674 a19900101a19699999 ba0 aeng aGB aahu 10aJournal of Latin American studies aLondoncCambridge University Pressd1969- aTrimestriel aAmérique latinexPolitique et gouvernementxPériodiques aAmérique latinexPériodiques a980 3aFRbCCN0022-216X4 uhttp://journals.cambridge.org/action/displayJournal?jid=LAS zContenu : sommaires depuis le vol. 29, n°1, 19974 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0022216X.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9801 bvol. 1 no. 1 (mai-1969) -....cParisdMagasins/AnnexeeP 8° 27121 bvol. 1 (1969) -vol. 15 (1983) ; vol. 16 (1984) -vol. 25 (1993)cParisdMagasins/AnnexeeP Index 0594 aZSAB aexempb201105 aGEO RD Amérique latine aDEW 98001615nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154207002400189210005400213326002300267326002600290517003300316606003600349606004900385676000800434710003800442801002100480856005100501856005900552856009000611856010800701955006700809955006000876957020700936972000901143991001801152992002301170992001201193038736314000002567720130319051555.01 a0022-2186 aFNSP168368 a0000025677 a19900101a19589999 ba0 aeng aUS aaju 14aThe Journal of law & economics 1aVol. 1 (Oct. 1958)- aChicago, Ill.cUniversity of Chicago Pressd1958- aTrimestrielb2007- aSemestrielb1958-200610aJournal of law and economics aDroityEtats-UnisxPériodiques aDroit des affairesyEtats-UnisyPériodiques a34602aUniversity of ChicagobLaw School 3aFRbCCN0022-21864 uhttp://www.journals.uchicago.edu/JLE/home.html zContenu : sommaires depuis le vol. 38, n°1, avr. 19954 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00222186.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 3461 bvol. 1 (1958) -....cParisdMagasins/AnnexeeP 8° 19171 b(1958) -(1967) ; (1968) -(1972) ; (1983) -(1991)cParisdMagasins/AnnexeeP 8° 1917zces index se trouvent respectivement dans les vol. 11, avril 1968, vol 16, avril 1973, vol 34, oct. 1991 de la revue aZGRA aexempb200908 aGEO RC2 Etats-Unis aDEW 34901071nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154207002500188210005900213326001600272606003600288676000800324710002700332801002100359856004400380856005200424955011900476957007600595972000900671991001800680992002300698992001200721039716554000002568120130319051555.01 a0047-2506 aFNSP168373 a0000025681 a19900101a19839999 ba0 aeng aUS aahy 14aThe Journal of law & politics 1avol. 1 no. 1 (1983)- aCharlottesville, Va.cJournal of law & politicsd1983- aTrimestriel aDroityEtats-UnisxPériodiques a34602aUniversity of Virginia 3aFRbCCN0749-22274 uhttp://www.student.virginia.edu/jalopy/4 zContenu : sommaires depuis le vol 5, n°3, 19991 bvol. 4 no. 3 (hiv-1988) -vol. 18 no. 4 (2002) ; vol. 25 no. 1 (hiv-2009) -....cParisdMagasins/AnnexeeP 8° 51661 bvol. 1 (1983) -vol. 6 (1990)zse trouve dans le vol. 7 no. 1 (aut-1990) aZSAB aexempb201011 aGEO RC2 Etats-Unis aDEW 34901615cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157110001600175200004600191207003300237210005000270326001600320517004800336517000800384606003600392606004900428606004700477801003000524801002300554802000700577856009000584856010800674856021100782856010800993955007101101992003301172992001201205037430963000113351720130614103733.01 a8756-6222 accn8756-6222 aissn87566222 a0001133517 a19850124a19859999k y0frey0103 ba0 aeng aUS ay 0  aaja 0uu 10aJournal of law, economics, & organization 0aVol. 1, no. 1 (spring 1985)- aNew Haven, ConncYale University Pressd1985- aTrimestriel10aJournal of law, economics, and organization10aLEO aDroityEtats-UnisxPériodiques aEconomie politiqueyEtats-UnisxPériodiques aSociologie des organisationsxPériodiques 3aFRbAbesc20070412gAFNOR 3aFRbISSNc20070412 a014 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/87566222.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://international.westlaw.com/search/default.wl?spa=intiep-000&rs=WLIN8.05&fn=_top&sv=Split&db=JLECONORG&vr=2.0&rp=%2fsearch%2fdefault.wl&mt=WestlawInternational zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 23 no. 1 (avr-2007) -....cParisdMagasins/AnnexeeP 8° 7017 aGEO RS Sans aspect régional aDEW 34901368nls 2200361 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000070001642070025002342100050002593000088003093260015003973360056004123370071004684520074005396060036006136060049006496060047006988010013007458560090007588560108008489550005009569920033009619920012009940000816058000081605820130319051555.01 a1465-7341 a0000816058 a a19859999k fre 01 ba0 aeng aUS az aaj z  adr 10aJournal of law, economics & organizationbRessource électronique 1aN°1 (Spring 1985) - aNew Haven, ConncYale University Pressd1985- aTexte intégral depuis le vol. 1, n°1, Spring 1985 et jusqu'au vol.13, 1997 inclus aSemestriel aDonnées textuelles accessibles uniquement en ligne aTéléchargement de fichiers TIFF, PDF (recommandé) ou PostScript 1tJournal of law, economics & organization (Texte imprimé),x8756-6222 aDroityEtats-UnisxPériodiques aEconomie politiqueyEtats-UnisxPériodiques aSociologie des organisationsxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/87566222.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RS Sans aspect régional aDEW 34901066nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003600139210005800175326001500233517003000248530003600278606003600314710004600350711003800396801002100434856009000455856010800545955008100653991001800734992001200752037657429000002568420130918150856.01 a0748-0814 aFNSP168379 a19900101a19839999 ba0 aeng aUS aaju 14aThe Journal of law and religion aSt Paul, Mn.cHamline University School of Lawd1983- aSemestriel10aJournal of law & religion14aThe Journal of law and religion aReligion et droitxPériodiques02aCouncil on Religion and Lawc(Etats-Unis)02aSchool of Law (Saint Paul, Minn.) 3aFRbCCN0748-08144 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/07480814.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1983) -vol. 9 no. 2 (1992)cParisdMagasins/AnnexeeP 8° 4952 aexempb201106 aDEW 32301706nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210002900185326001600214430005000230452005400280530004100334606003900375801002100414856014100435856019500576856023300771856020901004955011501213972000901328991001901337992001201356039315096000002571520130920153849.01 a0263-323X aFNSP168578 a0000025715 a19900101a19829999 ba0 aeng aGB aaju 10aJournal of law and society aOxfordcBlackwelld1982- aTrimestriel 1aBritish journal of law and societyx0306-3704 1tJournal of law and society (Online)‎x1467-6478 aJournal of law and society‎bPrint aDroitxAspect socialxPériodiques 3aFRbCCN0263-323X4 uhttp://www.blackwellpublishing.com/journal.asp?ref=0263-323X&site=1zContenu : sommaires et résumés depuis le vol. 24, n°1, mars 19974 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0263323x.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=7Q3&site=ehost-livezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www3.interscience.wiley.com/journal/118540112/homezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 9 no. 1 (ete-1982) -....cParisdMagasins/AnnexeeP 8° 4049wmanquent : vol. 24 (1997) à vol. 25 (1998) aZSAB aexemplb200201 aDEW 34001234nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171100016001242000033001402100054001733260015002274520084002425300033003266060024003596060036003837120038004198010021004578560108004788560195005869550086007819910018008679920023008859920012009080000055776000005577620130607142402.01 a0047-2530 aFNSP260959 a19900101a19729999 ba0 aeng aUS aaju 14aThe Journal of legal studies aChicago, Ill.cUniversity of Chicago Pressd1972- aSemestriel 1tThe journal of legal studies (Online. University of Chicago. Press.)x1537-536604aThe Journal of legal studies aDroitxPériodiques aDroityEtats-UnisxPériodiques02aUniversity of ChicagobLaw School 3aFRbCCN0047-25304 uhttp://www.journals.uchicago.edu/JLS/home.htmlzContenu : sommaires depuis le vol. 24, n°1, janv. 19954 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00472530.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1972) -vol. 27 no. 2 (1998)cParisdMagasins/AnnexeeP 8° 3149 aexempb200911 aGEO RC2 Etats-Unis aDEW 34901024nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003900139210002400178326001600202606002400218606003800242606002900280856004200309856004700351856010400398856011500502955006600617972000900683991001800692992001200710036744034000018347720130313085410.01 a1357-2334 aFNSP681986 a19900101a19959999 ba0 aeng aGB aaha 14aThe journal of legislative studies aLondoncCassd1995- aTrimestriel aDroitxPériodiques aPouvoir législatifxPériodiques aParlementsxPériodiques4 uhttp://www.frankcass.com/jnls/jls.htm zContenu : sommaires depuis le vol. 1, n°14 uhttps://acces-distant.sciences-po.fr/http/www.informaworld.com/smpp/title~content=t713719040~db=all zAccès au texte intégral réservé aux lecteurs inscrits à la Bibliothèque via Taylor & Francis depuis 19971 bvol. 1 no. 1 (1995) -....cParisdMagasins/AnnexeeP 8° 6221 aZSAB aexempb201212 aDEW 32801257nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003900139207004500178210002900223300003900252326003300291440003400324606004000358606003700398606003600435710004800471801002100519856011300540955012400653957009900777972000900876991001800885992001600903039511022000002571620130515180358.01 a0363-2873 aFNSP168579 a19900101b19779999 ba0 aeng aUS aahu 14aThe Journal of libertarian studies 1avol. 1 no. 1 (1977)-vol. 21 no. 4 (2007) aNew YorkcCLSd1977-2007 aPas de parution en 1984 et en 1993 aTrimestriel puis irrégulier 1tLibertarian papersx1947-6949 aPhilosophie politiquexPériodiques aEconomie politiquexPériodiques aScience politiquexPériodiques02aCenter for Libertarians Studiesc(New York) 3aFRbCCN0363-28734 uhttp://mises.org/journals/libertarianforum.aspzAccès libre au texte intégral depuis le vol. 1, no 1, 19771 bvol. 3 no.1 (1979) -vol. 11 no. 2, 1995 ; vol. 15 no. 1 (2000) -vol. 21 no 4 (2007)cParisdMagasins/AnnexeeP 8° 43531 bvol. 1 (1977) -vol. 10 (1992)cParisdMagasins/Annexezinclus dans le vol. 10 no. 2 (aut-1992) aZCAD aexempb201009 aDEW 320-32101299nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154207002700184210006600211210003100277326001600308606003300324606003700357712005900394801003000453801002300483856009600506856005900602856010000661856007700761955006000838972000900898991001800907992001200925039108244000110652320130319051555.01 a0164-0704 aFNSP168583 a0000025720 a19900101a19799999 ba0 aeng aUS aahu 10aJournal of macroeconomics 1avol. 1 (winter 1979) - aBaton Rouge, La.cLouisiana State University Pressd1979-2001 aAmsterdamcElsevierd2002- aTrimestriel aMacroéconomiexPériodiques aEconomie politiquexPériodiques02aCollege of Business Administrationc(Baton Rouge, La.) 3aFRbAbesc20070329gAFNOR 3aFRbISSNc200703294 uhttp://www.elsevier.com/wps/find/journaldescription.cws_home/622903/description#description zContenu : sommaires depuis le vol. 18, n°1, hiv. 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/01640704 zContenu : accès aux sommaires et aux résumés depuis le volume 1, 19711 bvol. 1 no. 1 (1979)cParisdMagasins/AnnexeeP 8° 4244 aZPAY aexempb201010 aDEW 33001202nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003000139207002700169210006600196210003700262326001600299606003300315606003700348712005900385801002100444856009600465856005900561856005800620856007700678955007000755972000900825991001800834992001200852039108244000002572020130313085410.01 a0164-0704 aFNSP168583 a19900101a19799999 ba0 aeng aUS aahu 10aJournal of macroeconomics 1avol. 1 (winter 1979) - aBaton Rouge, La.cLouisiana State University Pressd1979-2001 aAmsterdam‎cElsevier‎d2002- aTrimestriel aMacroéconomiexPériodiques aEconomie politiquexPériodiques02aCollege of Business Administrationc(Baton Rouge, La.) 3aFRbCCN0164-07044 uhttp://www.elsevier.com/wps/find/journaldescription.cws_home/622903/description#description zContenu : sommaires depuis le vol. 18, n°1, hiv. 19964 uhttp://www.sciencedirect.com/science/journal/01640704 zContenu : accès aux sommaires et aux résumés depuis le volume 1, 19711 bvol. 1 no. 1 (hiv-1979) -....cParisdMagasins/AnnexeeP 8° 4244 aZPAY aexempb201010 aDEW 33001163nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003400139210002900173326002700202326003900229452006300268530004900331606005600380606003900436676000800475801002100483856007100504856007300575955007000648972000900718991001800727992003100745992002100776992001600797038736438000002574020130709125859.01 a0022-2380 aFNSP168614 a19900101a19649999 ba0 aeng aGB aahu 10aJournal of management studies aOxfordcBlackwelld1964- a8 nos par an‎b2000- aDiverses périodicitésb1964-1999 1tJournal of management studies (Oxford. Online),x1467-6486 0aJournal of management studiesbOxford. Print aGestion d'entrepriseyGrande-BretagnexPériodiques aGestion d'entreprisexPériodiques a650 3aFRbCCN0022-23804 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0022-2380 zContenu : sommaires et résumés depuis le vol. 34, n°1, janv. 19971 bvol. 1 no. 1 (mar-1964) -....cParisdMagasins/AnnexeeP 8° 2085 aZSAB aexempb200908 aGEO RA4.02 Grande-Bretagne aGEO RQ Universel aDEW 650-65801169nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210005500187326001600242517000800258606003900266710007900305856004300384856005300427856012800480856010800608955009600716972000900812991001800821992001600839040264475000008394320130319051555.01 a1045-3695 aFNSP373547 a0000083943 a19900101a19899999 ba0 aeng aUS aaha 10aJournal of managerial issues aPittsburg, Kan.cPittsburg State Universityd1989- aTrimestriel10aJMI aPersonnelxDirectionxPériodiques02aUniversity of PittsburghbGladys A. Kelce School of Business and Economics4 uhttp://www.pittstate.edu/econ/jmi.html zContenu : sommaires depuis le vol. 8, no 1, 19964 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=JIU&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 2 no. 4 (hiv-1990) ; vol. 3 no. 4 (hiv-1991) -....cParisdMagasins/AnnexeeP 8° 5911 aZSAB aexempb201206 aDEW 650-65801456nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210005700179326002200236326002700258436009500285606002800380606002600408710003500434801002100469856012800490856010800618856009000726856010800816955006700924957009000991972000901081992001601090038736462000002574220130319051555.01 a0022-2429 aFNSP168617 a0000025742 a19900101a19369999 ba0 aeng aUS aagu 10aJournal of marketing aChicago, Ill.cAmerican Marketing Associationd1936- aBimestrielb2008- aTrimestrielb1936-2007 1aThe American marketing journal (0193-1806) et de The National marketing review (0190-9509) aMarketingxPériodiques aGestionxPériodiques02aAmerican Marketing Association 3aFRbCCN0022-24294 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=JMK&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00222429.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 26 no. 1 (1962) -....cParisdMagasins/AnnexeeP 4° 27111 b(jul-1946) -(avr-1951) ; (jul-1951) -(avr-1956)cParisdMagasins/AnnexeeP Index 0160 aZPAY aDEW 650-65801303nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210003000188326002200218326002700240517000800267606002800275710003500303801002100338856012800359856010800487856009000595856010800685955007000793957007700863972000900940992001600949038736470000005700220130319051555.01 a0022-2437 aFNSP265573 a0000057002 a19900101a19649999 ba0 aeng aUS aahu 10aJournal of marketing research aChicago, Ill.cAMAd1964- aBimestrielb2008- aTrimestrielb1964-200710aJMR aMarketingxPériodiques02aAmerican Marketing Association 3aFRbCCN0022-24374 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=MKR&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00222437.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 8 no. 1 (fev-1971) -....cParisdMagasins/AnnexeeP 4° 29911 bvol. 7 (1970) -vol. 12 (1975)zse trouve dans le vol.12 no. 4 (nov-1975) aZPAY aDEW 650-65801590nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210003400189326001800223430005800241606003800299606003800337710005500375801002100430856009000451856010800541856010100649856010800750856012800858856010800986955009101094972000901185991001801194992001601212038736489000002574520130319051555.01 a0022-2445 aFNSP168626 a0000025745 a19900101a19649999 ba0 aeng aUS aahu 10aJournal of marriage and family aMinneapolis, Mn.cNCFRd1964- a5 n°s par an 1aMarriage and family living (Menasha, Wis.)x0885-7059 aFamillexSociologiexPériodiques aMariagexSociologiexPériodiques02aNational Council on Family Relationsc(Etats-Unis) 3aFRbCCN0022-24454 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00222445.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=111076 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=JMA&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 37 no. 1 (fev-1975) -vol. 70 no. 5 (dec-2008)cParisdMagasins/AnnexeeP 8° 3614 aZPAY aexempb200911 aDEW 305-30600847nas 2200217 i 450 0010011000000020011000110050017000220110014000391000041000531010008000941020007001021100016001092000042001252100053001673260032002205300038002528010021002908560214003119550086005259910018006110000067748000006774820130605115554.01 a0022-250X a19900101a19719999 ba0 aeng aUS aaha 14aThe Journal of mathematical sociology aNew YorkcGordon and Breach Science Publ.d1971- aSemestriel puis trimestriel00aJournal of mathematical sociology 3aFRbCCN0022-250X4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713618269db=allzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1971) -vol. 11 no. 4 (1985)cParisdMagasins/AnnexeeP 8° 3083 aexempb20110601078cas0 2200325 450 001001000000002001100010005001700021011001400038020001900052035001500071100004100086101000800127102000700135105001800142110001600160200004200176207004300218210004700261326001600308607003100324710012600355801003000481801001500511856005200526856003700578955007300615972000900688992004300697992001200740109897536000104342020130319051555.01 a1825-0483 aUSb2006224061 a0001043420 a20061012a20059999 y0undy0103 ba0 aeng aIT a 0  aaha 0yy 00aJournal of Middle Eastern geopolitics 0aYear 1, vol. 1, n 1 (July/Sept. 2005)- aRomecGlobe Research and Publishingd2005- aTrimestriel aMoyen-OrientxPériodiques02aUniversità degli studi La Sapienza (Rome)bDipartimento di studi geoeconomici statistici storici per l'analisi regionale 3aFRbAbesc20061013gAFNOR 0bNICgAACR24 uhttp://padis2.uniroma1.it:81/ojs/index.php/JMEG zAccès libre au texte intégral.1 bvol. 1 no.1 (jul/sep-2005) -....cParisdMagasins/AnnexeeP 8° 6924 aZPAY aGEO RG Afrique du Nord et Moyen-Orient aDEW 95601064nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000063001502100057002133000098002703260016003683360058003843370063004424300047005054520049005526060037006018010013006388560090006519550005007419920016007460000470731000047073120130319051555.0 a0000470731 a a19899999k fre 01 ba0 aeng aUS az aah z  adr 14aThe Journal of military historyb[Ressource électronique] aWashington, D.C.cAmerican Military Instituted1989- aAccès au texte intégral (réservé aux sites de Sciences Po) jusqu'aux 3 dernières années aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tMilitary affairs [Ressource électronique] 1tThe Journal of military historyx(0899-3718) aHistoire militairexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/08993718.html1 r aDEW 355-35901433nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154210004600192326001600238607002600254607005300280676000800333801002100341856004200362856005400404856010100458856010800559856009000667856010800757955006600865955007000931972000901001991001801010992001901028992001201047038736640000002574820130319051555.01 a0022-278X aFNSP168631 a0000025748 a19900101a19639999 ba0 aeng aGB aahu 10aJournal of modern African studies aLondoncCambridge University Pressd1963- aTrimestriel aAfriquexPériodiques aAfriquexPolitique et gouvernementxPériodiques a960 3aFRbCCN0022-278X4 uhttp://uk.cambridge.org/journals/moa/ zContenu : sommaires depuis le vol. 35, n°1, 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101397 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0022278X.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9601 bvol. 1 no. 1 (mar-1963) -....cParisdMagasins/AnnexeeP 8° 2020 aZCAD aexempb201105 aGEO RE Afrique aDEW 96001037nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210005400188326001600242606003900258801002100297856005000318856005900368856009000427856010800517955007100625972000900696991001800705992001200723038736659000002574920130319051555.01 a0022-2801 aFNSP168635 a0000025749 a19900101a19299999 ba0 aeng aUS aahu 14aThe Journal of modern history aChicago, Ill.cUniversity of Chicago Pressd1929- aTrimestriel aHistoire universellexPériodiques 3aFRbCCN0022-28014 uhttp://www.journals.uchicago.edu/JMH/toc.html zContenu : sommaires depuis le vol. 67, n°1, mars 19954 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00222801.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 21 no. 1 (mar-1949) -....cParisdMagasins/AnnexeeP 8° 0087 aZPAY aexempb201101 aDEW 90900946nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154210002900192326002300221326002900244607003500273856010900308856010800417955007000525972000900595991001800604992002200622992001200644036741531000026949320130319051555.01 a1354-571X aFNSP932488 a0000269493 a19990401a19959999 ba0 amul aGB aaha 10aJournal of modern Italian studies aLondoncRoutledged1995- aTrimestrielb2003- a3 n°s par anb1998-2002 aItaliexHistoirexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713699215db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 1 (mar-1998) -....cParisdMagasins/AnnexeeP 8° 6469 aZSAB aexempb201212 aGEO RA6.03 Italie aDEW 94501054nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210007900188326002700267326002900294326003000323530004400353606002600397606002700423856010000450856008900550955008300639991001800722992001200740039380688000020029720130409154303.01 a0304-3932 aFNSP731382 a0000200297 a19900101a19759999 ba0 aeng aNE aaga 10aJournal of monetary economics aAmsterdam‎aNew York‎aLondon‎cNorth-Holland‎cElsevier‎d1975- a8 nos par an‎b2002- aBimestriel‎b1981-2001 aTrimestriel‎b1975-198000aJournal of monetary economics‎bPrint aMonnaiexPériodiques aFinancesxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/03043932 zContenu : accès aux sommaires et aux résumés de la revue depuis le volume 1, 19751 bvol. 1 no. 1 (1975) -vol. 15 no. 1 (1985)cParisdMagasins/Annexe:eP 8° 4015 aexempb201303 aDEW 33201243nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210005500195326001600250606002600266606003900292606002700331801002100358856009000379856010800469856010300577856010800680955009000788972000900878991001800887992001200905038736748000002575420131202102212.01 a0022-2879 aFNSP168646 a0000025754 a19900101a19699999 ba0 aeng aUS aahu 10aJournal of money, credit and banking aColumbus, OhiocOhio State University Pressd1969- aTrimestriel aBanquesxPériodiques aPolitique monétairexPériodiques aFinancesxPériodiques 3aFRbCCN0022-28794 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00222879.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=711952 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 2 (mai-1969) -vol. 44 no. 8 (dec-2012)cParisdMagasins/AnnexeeP 8° 2821 aZPAY aexempb201010 aDEW 33201569nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210002800193326002300221326002900244326002600273430006200299606002400361710005000385856012800435856010800563856010300671856010800774856010900882856010800991955006701099972000901166991001801175992001401193036748382000019061020130319051555.01 a1360-2004 aFNSP704975 a0000190610 a19900101a19969999 ba0 aeng aAE aaha 10aJournal of Muslim minority affairs aAbingdoncCarfaxd1996- aTrimestrielb2009- a3 n°s par anb2005-2008 aSemestrielb1996-2004 1aJournal - Institute of Muslim Minority Affairsx0266-6952 aIslamxPériodiques02aInstitute of Muslim Minority Affairs (Jeddah)4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=LMM&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=104627 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713433220db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 16 no. 1 (1996) -....cParisdMagasins/AnnexeeP 8° 4597 aZCAD aexempb201009 aDEW 20-2901102nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000033001552100076001883260016002645300033002806060046003136060034003597120056003938010021004498560090004708560108005609550087006689920029007559920016007840000067749000006774920130319051555.01 a0022-2992 aFNSP314376 a0000067749 a19900101a19169999 ba0 aeng aUS aaha 14aThe Journal of Negro history aWashingtoncAssociation for the Study of Negro Life and History.d1916- aTrimestriel04aThe Journal of Negro history aNoirs américainsxHistoirexPériodiques aNoirsxHistoirexPériodiques02aAssociation for the Study of Negro life and History 3aFRbCCN0022-29924 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00222992.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 50 no. 4 (oct-1965) -vol. 67 no. 1 (1982)cParisdMagasins/AnnexeeP 8° 2261 aGEO RC Amérique du Nord aDEW 305-30601126nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210002400191326002400215326002700239326002800266607003400294856004200328856007200370856010900442856010800551955007000659972000900729991001800738992002800756992001600784036754897000023186020130319051555.01 a1362-9387 aFNSP823408 a0000231860 a19900101a19969999 ba0 aeng aGB aaha 10aJournal of North African studies aLondoncCassd1996- a5 nos par anb2013- aTrimestrielb1998-2012 a3 nos par anb1996-1997 aAfrique du NordxPériodiques4 uhttp://www.frankcass.com/jnls/nas.htm zContenu : sommaire depuis le vol. 1, no. 1 ; résumé du n° actuel4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713677623db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1996) -....cParisdMagasins/AnnexeeP 8° 6365 aZSAB aexempb201301 aGEO RG1 Afrique du Nord aDEW 961-96501876nls 2200301 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000062001642100033002262300005002593260013002643301166002776060030014437100037014738010013015108560023015239550005015469920012015519920011015630001206050000120605020130319051555.0 a0282-423X a0001206050 a a 9999k fre 01 ba0 aeng aSE ar aau z  adr 10aJournal of Official Statisticsb[Ressource électronique] aStockholmbStatistics Sweden a aInconnue aThe Journal of Official Statistics is published by Statistics Sweden, the national statistical office of Sweden. The journal publishes articles on statistical methodology and theory, with an emphasis on applications. It is an open access journal, which gives the right to users to read, download, copy, distribute, print, search, or link to the full texts of all articles. We encourage articles on the following topics: Methodologies and policies for the collection, processing, analysis, presentation, and distribution of statistical data. Examples of such topics are: sampling design; estimation; analytical uses of data; questionnaire design; quality control; data base management; confidentiality; ethics; dissemination; presentation of quality; training of statisticians; the role of statistics in today’s society; the relations between producers, users, and respondents; intra-organization collaboration; international statistical cooperation; and evaluation and identification of statistical needs. Articles may present theoretical contributions, interesting applications of existing methods, comparisons of different methods, or authoritative reviews. aStatistiquexPériodiques01aSuèdebStatistiska centralbyran 0aFRbFNSP4 uhttp://www.jos.nu/1 r aDEW 310 aGEO RS01514nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154207002600187210011800213326001600331607003100347676000800378710005200386712002200438801002100460856004100481856010600522856009000628856010800718955006600826955010000892957007200992972000901064991001801073992002501091992001201116039552381000002575320130319051555.01 a0377-919X aFNSP168640 a0000025753 a19900101a19719999 ba0 amul aUS aahu 10aJournal of Palestine studies 1avol. 1 no. 1 (1971) - aBerkeley, CAcUniversity of California Press for Kuwait University and the Institute for Palestine Studiesd1971- aTrimestriel aMoyen-OrientxPériodiques a95602aInstitut des études palestiniennesc(Beyrouth)02aKuwait University 3aFRbCCN0377-919X4 uhttp://www.ucpress.edu/journals/jps/ zContenu : sommaires depuis le vol. 24, n°1, aut. 1994, résumés à partir du vol.30, n°1, aut.20004 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0377919X.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9561 bvol. 1 no. 1 (aut-1971) -....cParisdMagasins/AnnexeeP 8° 2981wManque : vol. 29 (1998/1999)1 bvol.1 (1971) - vol. 25 (1996)cParisdMagasins/AnnexeeP Index 0375 aZSAB aexempb201103 aGEO RG2 Moyen-Orient aDEW 95601228nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210002400184326001500208606002300223676000800246710004300254801002100297856007000318856010800388856009000496856010800586955007100694955008600765972000900851991001800860992001200878038737205000002581020140110122711.01 a0022-3433 aFNSP168814 a0000025810 a19900101a19649999 ba0 aeng aNO aagu 10aJournal of peace research aLondoncSaged1964- aBimestriel aPaixxPériodiques a32702aInternational Peace Research Institute 3aFRbCCN0022-34334 uhttps://acces-distant.sciences-po.fr/fork?http://jpr.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00223433.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 47 no. 1 (jan-2010) -....cParisdMagasins/AnnexeeP 4° 72951 bvol. 1 no. 1 (1964) -vol. 46 no. 6 (nov-2009)cParisdMagasins/AnnexeeP 8° 2131 aZSAB aexempb200904 aDEW 32701573nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210002800185210004000213210003100253326001500284606003000299801002100329856005600350856005500406856012800461856010800589856010900697856010800806955007000914957015100984972000901135991001801144992002101162992001601183039397092000002581120130806155817.01 a0306-6150 aFNSP168815 a0000025811 a19900101a19739999 ba0 aeng aGB aahu 10aJournal of peasant studies aLondoncCassd1973-2003 aLondoncTaylor & Francisd2003-2005 aAdingdoncRoutledged2005- aBimestriel aAgriculturexPériodiques 3aFRbCCN0306-61504 uhttp://www.tandf.co.uk/journals/titles/03066150.asp zContenu : sommaires depuis le vol. 29, n°1 (2001)4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=LTY&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713673200db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (oct-1973) -....cParisdMagasins/AnnexeeP 8° 35441 bvol. 1 (1973) -vol. 20 (1993) ; (1993)-(2004);cParisdMagasins/AnnexeeP Index 0726zl'index 1993/2004 se trouve dans le vol. 32 no. 1 (jan-2005) aZSAB aexempb200911 aGEO RQ Universel aDEW 338.1-301269nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004600139210002700185326001600212436003200228436004200260452006700302530005600369606004900425606005600474710007200530801002100602856017200623955007000795972000900865991001800874992002300892992001600915039339777000002582720131119165928.01 a0276-8739 aFNSP168855 a19900101a19819999 ba0 aeng aUS aahu 10aJournal of policy analysis and management aNew YorkcWileyd1981- aTrimestriel 1aPolicy analysis,x0098-2067 1tPublic policy (Cambridge),x0033-3646 1tJournal of policy analysis and management (Online),x1520-6688 aJournal of policy analysis and management‎bPrint aPolitique publiqueyEtats-UnisxPériodiques aServices publicsyEtats-UnisxGestionxPériodiques02aAssociation for Public Policy Analysis and Managementc(Etats-Unis) 3aFRbCCN0276-87394 uhttp://onlinelibrary.wiley.com/journal/10.1002/(ISSN)1520-6688zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (aut-1981) -....cParisdMagasins/AnnexeeP 8° 4458 aZSAB aexempb201106 aGEO RC2 Etats-Unis aDEW 350-35401395nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210006900184326001600253606004600269606003600315606004600351856010300397856010800500856020200608856010800810955011000918991001801028992002301046992001201069040002519000000536720130319051555.01 a0898-0306 aFNSP108029 a0000005367 a19900313a19899999 ba0 aeng aUS aaha 10aJournal of policy history aUniversity Park, Pa.cPennsylvania State University Pressd1989- aTrimestriel aScience politiquexHistoirexPériodiques aScience politiquexPériodiques aIdées politiquesxHistoirexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://eJournals.ebsco.com/Journal2.asp?JournalID=718045 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://web.ebscohost.com/ehost/detail?vid=1&hid=7&sid=aa2da0fd-b917-4287-90ac-eeb4e22c8a44%40sessionmgr11&bdata=JnNpdGU9ZWhvc3QtbGl2ZQ%3d%3d#db=poh&jid=0W1 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1989) -vol. 1 no. 4 (1989) ; vol. 22 no. 1 (2010) -....cParisdMagasins/AnnexeeP 8° 5624 aexempb201202 aGEO RC2 Etats-Unis aDEW 32001277nas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200007200174207002600246210004200272326001600314430004100330452005100371606003600422607004800458710004400506801003000550801002300580802000700603856010900610856010800719955006700827972000900894992001200903113732325000107928320130319051555.01 a1558-8742 aissn15588742 a0001079283 a20070403a20069999 y0frey0103 ba0 aeng aUS a 0  aaha 0yy 10aJournal of policy practicefSocial Policy and Policy Practice Group 0aVol. 5, no. 1 (2006)- aBinghamton, NYcHaworth Pressdc2006- aTrimestriel 1tThe social policy journalx1533-2942 1tJournal of policy practice (Online)x1558-8750 aPolitique socialexPériodiques aEtats-UnisxPolitique socialexPériodiques02aSocial Policy and Policy Practice Group 3aFRbAbesc20070403gAFNOR 3aFRbISSNc20070301 a014 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t792306913db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 1 (2006) -....cParisdMagasins/AnnexeseP 8° 6692 aZSAB aDEW 36001003nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200003300160210003200193300002500225326001600250440004900266606004000315710005200355711005900407856005100466856007500517955007400592972000900666992001400675094868336000025370420130319051555.01 a1384-1289 aFNSP885899 a0000253704 a19900101a19969999 ba0 aeng aNL ar aaha 14aThe journal of policy reform aAmsterdamcRoutledged1996- aN'a pas paru en 1998 aTrimestriel 1tJournal of economic policy reformx1748-7870 aPolitique économiquexPériodiques02aHarvard Institute for International Development02aCenter for International Economics (College Park, Md.)4 uhttp://www.tandf.co.uk/journals/listings/j.asp zContenu : sommaires et résumés des articles à partir du vol.5, 20021 bvol. 1 no. 1 (1996) -vol. 9 no. 4 (2006)cParisdMagasinseP 8° 6413 aZSAB aDEW 338.901126nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000480013921000300018732600150021745200590023251700090029153000460030060600390034660600390038580100210042485602330044595500700067897200090074899100180075799200210077599200160079603882762X000002586120130726161529.01 a0047-2697 aFNSP168928 a19900101a19739999 ba0 aeng aUS aaju 10aJournal of political and military sociology aDeKalb, Ill.cJPMSd1973- aSemestriel 1ttJournal of political and military sociology (Online)10aJPMS00aJournal of political & military sociology aSociologie politiquexPériodiques aSociologie militairexPériodiques 3aFRbCCN0047-26974 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=1ZA&site=ehost-livezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (pri-1973) -....cParisdMagasins/AnnexeeP 8° 3343 aZSAB aexempb201005 aGEO RQ Universel aDEW 355-35901230nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008900154210005400243326001500297606003700312676000800349710002600357801002100383856005000404856006400454856009000518856010800608955006700716955007000783972000900853991001800862992001200880038737574000002586220130319051555.01 a0022-3808 aFNSP168930 a0000025862 a19900101a18929999 ba0 aeng aUS aagu 10aJournal of political economyfUniversity of Chicago, Department of Political Economy aChicago, Ill.cUniversity of Chicago Pressd1892- aBimestriel aEconomie politiquexPériodiques a33002aUniversity of Chicago 3aFRbCCN0022-38084 uhttp://www.journals.uchicago.edu/JPE/toc.html zContenu : sommaires depuis le vol. 104, n°1, février 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00223808.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3301 bvol. 7 no. 1 (dec-1898) -....cParisdMagasins/AnnexeeP 8° 0136 aZCAD aexempb201101 aDEW 33001139nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003600139210002800175326001700203452005700220530003600277606002900313606003600342856005700378856006200435856010900497856010800606955007000714972000900784991001800793992001400811079280935000020899520130828182226.01 a1356-9317 aFNSP757736 a19900101a19969999 ba0 aeng aGB aaia 10aJournal of political ideologies aAbingdoncCarfaxd1996- a3 nos par an 1tJournal of political ideologies (Online),x1469-9613 aJournal of political ideologies aIdéologiexPériodiques aScience politiquexPériodiques4 uhttp://www.tandf.co.uk/journals/carfax/13569317.html zContenu : sommaires depuis le vol. 1, n°1, février 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713435568db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (fev-1996) -....cParisdMagasins/AnnexeeP 8° 6313 aZSAB aexempb201301 aDEW 320.500937nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000035001642100041001993000032002403260016002726060038002888010013003268560109003398560108004489550066005569720009006229920016006310000530715000053071520130319051555.01 a1537-7857 a0000530715 a a20029999k fre ba0 aeng aUS a 0  ar aah z 0 10aJournal of political marketing aBinghamton, NYcHaworth Pressd2002- aArrive avec un an de retard aTrimestriel aMarketing politiquexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t792306945db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (2002) -....cParisdMagasins/AnnexeeP 8° 6689 aZSAB aDEW 320-32100808nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004000154210003900194326001600233606004000249856007100289856007100360955007000431972000900501991001800510992001400528040098761000011712020130319051555.01 a0963-8016 aFNSP486542 a0000117120 a19900101a19939999 ba0 aeng aUS aaia 14aThe Journal of political philosophy aCambridge, Mass.cBlackwelld1993- aTrimestriel aPhilosophie politiquexPériodiques4 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0963-8016 zContenu : sommaires et résumés depuis le vol. 4, n°1, mars 19961 bvol. 1 no. 1 (mar-1993) -....cParisdMagasins/AnnexeeP 8° 6011 aZSAB aexempb201202 aDEW 320.501026nas0 2200313 450 00100100000000200110001000500170002101100140003802000190005203500150007110000410008610100080012710200070013510500180014210600060016011000160016620000310018221000660021332600220027943000320030160600460033380100300037980100150040985601090042485600720053395500700060599200210067599200160069615229578X000121168020130319051555.01 a2158-379X aUSb2010203408 a0001211680 a20110516a20119999k y0frey50 ba0 aeng aGB ay 0  ar aaia 0 00aJournal of political power aAbingdon, Oxfordshire, GBcRoutledge, Taylor & Francisd2011- aTrois n°s par an 1tJournal of powerx1754-0291 aPouvoir (sciences sociales)xPériodiques 3aFRbAbesc20110516gAFNOR 0bDLCgAACR24 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=g791731572db=all zContient les sommaires et résumés des n°s depuis le no. 1 (2008)1 bvol. 4 no. 1 (avr-2011) -....cParisdMagasins/AnnexeeP 8° 7117 aGEO RQ Universel aDEW 320-32101098nas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200004300174207003600217210004700253326002300300326002900323606003600352606005900388801003000447801002300477802000700500856010300507856007600610955007400686992001200760121769399000113158520130319051555.01 a1551-2169 aissn15512169 a0001131585 a20080225a20059999 y0frey0103 ba0 aeng aUS ay 0  aaha z 0yy 10aJournal of political science education 0aVol. 1, no. 1 (Jan./Apr. 2005)- aPhiladelphia, Pa.cTaylor & Francisd2005- aTrimestrielb2008- a3 n°s par anb2005-2007 aScience politiquexPériodiques aScience politiquexEtude et enseignementxPériodiques 3aFRbAbesc20080225gAFNOR 3aFRbISSNc20080201 a014 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713723463 zContenu: sommaire et résumés des n°s depuis le vol. 1, n° 1 de 20051 bvol. 2 no. 1 (jan/avr-2006) -....cParisdMagasins/AnnexeeP 8° 7009 aDEW 32001693nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154207002600182210007300208210005100281326001600332606004500348606005300393607005600446710005700502801002100559856010100580856010800681856009000789856010800879955007100987955011601058955008501174972000901259992002301268992001601291038737582000002583320130319051555.01 a0022-3816 aFNSP168868 a0000025833 a19900101a19399999 ba0 aeng aUS aahu 14aThe Journal of politics 1avol. 1, no. 1 (1939)- aGainesville, Fla.cSouthern Political Science Associationd1939-1987 aAustin, Tex.cUniversity of Texas Pressd1988- aTrimestriel aParlementairesyEtats-UnisxPériodiques aSociologie électoraleyEtats-UnisxPériodiques aEtats-UnisxPolitique et gouvernementxPériodiques02aSouthern Political Science Associationc(Etats-Unis) 3aFRbCCN0022-38164 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=105135 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00223816.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 68 no. 1 (fev-2006) -....cParisdMagasins/AnnexeeP 4° 71021 bvol. 4 no. 4 (nov-1943) ; vol. 9 no. 4 (nov-1947) -vol. 67 no. 4 (nov-2005)cParisdMagasins/AnnexeeP 8° 00461 bannées complémentaires à JSTORcParisdBibliothèque de rechercheeP 4° 7102 aZCAD aGEO RC2 Etats-Unis aDEW 320-32101286nas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200004100180210009400221326002200315430003800337452006300375517001700438530005000455607003500505710008500540801003000625801002300655802000700678856005800685856007000743955005900813992002800872992001200900135935709000117430620130319051555.01 a1866-802X aissn1866802X a0001174306 a20090818a20099999k y0frey0103 ba0 aeng aDE ay  ar aaiu uu 10aJournal of politics in Latin America aHamburgcInstitute of Latin American Studies, German Institute of Global and Area Studies aTrois n°s par an 1tLateinamerika-Analysenx1619-1684 1tJournal of politics in Latin America (Internet)x1868-489010aJPLA (Print)10aJournal of politics in Latin Americab(Print) aAmérique latinexPériodiques02aGerman Institute of Global and Area Studies, Institute of Latin American Studies 3aFRbAbesc20090818gAFNOR 3aFRbISSNc20090617 a064 uhttp://hup.sub.uni-hamburg.de/giga/jpla/issue/archive zContenu : accès au texte intégral depuis le vol. 1 no. 1 (2009)1 bno. 1 (2009) -....cParisdMagasins/AnnexeeP 8° 7042 aGEO RD Amérique latine aDEW 98001053nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004000139210003200179326001600211452006100227517000900288530004000297606003700337606003300374801002100407856010100428856010800529955008200637991001800719992001400737039102041000002586620130910170958.01 a0160-3477 aFNSP168937 a19900101a19789999 ba0 aeng aUS aahu 10aJournal of Post Keynesian economics aArmonk, N.Y.cSharped1978- aTrimestriel 1tJournal of post Keynesian economics (Online),x1557-782110aJPKE aJournal of post Keynesian economics aEconomie politiquexPériodiques aKeynésianismexPériodiques 3aFRbCCN0160-34774 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=109348 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1978) -vol. 19 no. 4 (1997)cParisdMagasins/AnnexeeP 8° 4292 aexempb201106 aDEW 330.101064cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200002100180207003400201210005900235440003100294606004600325801003000371801002300401802000700424856010900431856007200540955008900612992002100701992001600722131663003000118126120130319051555.01 a1754-0291 aissn17540291 a0001181261 a20090223a20089999k y0frey50 ba0 aeng aGB ay 0  ar aaia 0uu 10aJournal of power 0aBegan with v. 1, no. 1 (2008) aAbingdoncRoutledge, Taylor & Francis Groupd2008-2010 1tJournal of political power aPouvoir (sciences sociales)xPériodiques 3aFRbAbesc20090308gAFNOR 3aFRbISSNc20090225 a0140uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=g791731572db=all zContient les sommaires et résumés des n°s depuis le no. 1 (2008)1 bvol. 1 no. 1 (avr-2008) -vol. 3 no. 3 (dec-2010)cParisdMagasins/AnnexeeP 8° 7117 aGEO RQ Universel aDEW 320-32101023nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005700154210008000211326001600291517001100307606004200318710006200360856009000422856010800512955007000620972000900690991001800699992001600717040276406000007250520130319051555.01 a1053-1858 aFNSP332929 a0000072505 a19900101a19919999 ba0 aeng aUS aaha 10aJournal of public administration research and theory aLawrence, Kan.cJournal of public administration research and theoryd1991- aTrimestriel10aJ-PART aAdministration publiquexPériodiques02aUniversity of KansasbDepartment of Public Administration4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/10531858.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 4 (oct-1991) -....cParisdMagasins/AnnexeeP 8° 5881 aZSAB aexempb201112 aDEW 350-35401149nas 2200313 i 450 001001000000002001100010005001700021011001400038035002400052035001500076100004100091101000800132102000700140110001600147200004800163210008700211326001100298517000900309530006700318606004400385606004400429710008100473711006500554856011300619955006400732972000900796991001800805992001200823040307794000018246920131202165605.01 a1070-521X aFNSP6791011070-521X a0000182469 a19900101a19909999 ba0 aeng aUS aaka 10aJournal of public and international affairs aPrinceton , N.J.cWoodrow Wilson School of Public and International Affairsd1990- aAnnuel10aJPIA00aJournal of public and international affairsb(Princeton, N.J.) aRelations internationalesxPériodiques aRelations internationalesxPériodiques02aWoodrow Wilson School of Public and International Affairsc(Princeton, N.J.)02aAssociation of Professional Schools of International Affairs4 uhttp://www.princeton.edu/jpia/zAccès aux sommaires de 1998 à 2010 et au texte intégral à partir de 20111 bvol. 5 (pri-1994) -....cParisdMagasins/AnnexeeP 8° 6217 aZSAB aexempb201211 aDEW 32700901nas 2200253 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001322000032001392100042001713260016002136060040002296060037002698010021003068560100003278560058004279550150004859920012006350000169615000016961520130319051555.01 a0047-2727 aFNSP642325 a0000169615 a19900101a19729999 ba0 aeng aNL10aJournal of public economics aAmsterdamcNorth Holland Publ.d1972- aTrimestriel aPolitique économiquexPériodiques aFinances publiquesxPériodiques 3aFRbCCN0047-27274 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/00472727 zContenu : sommaires et résumés depuis le n°1, 19781 bvol. 1 no. 1 (avr-1972) -vol. 25 no. 3 (dec-1984)cParisdMagasins/AnnexeeP 8° 3058 ; la bibliothèque de l''OFCE conserve la revue depuis 1985 aDEW 33600910nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116200002900123210004900152326002400201326002700225452005000252530003900302606003700341801002100378856012100399955006900520972000900589991001800598992001600616039083586000002586920130911170846.01 a0143-814X aFNSP168945 a19900101a19819999 ba0 aeng aGB10aJournal of public policy aCambridgecCambridge University Pressd1981- a3 nos par anb1994- aTrimestrielb1981-1993 1tJournal of public policy (Online),x1469-781510aJournal of public policy‎bPrint aPolitique publiquexPériodiques 3aFRbCCN0143-814X4 uhttp://journals.cambridge.org/action/displayJournal?jid=PUPzaccès libre aux sommaires depuis le vol. 1 no. 1, 19811 bvol. 1 no. 1 (fev-1981) -....cParisdMagasinsAnnexeeP 8° 4426 aZSAB aexempb201106 aDEW 350-35400940nas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200003400174207002400208210004600232326001800278606003500296606003500331801003000366801002300396802000700419856005000426856004700476955006600523972000900589992001600598092126316000103501620130319051555.01 a1535-0118 aissn15350118 a0001035016 a20051025a20019999 y0frey0103 ba0 aeng aUS a 0  aaiy 0yy 10aJournal of public procurement 0aVol.1, no 1 (2001)- aBoca Raton, FLcPrAcademics Pressdc2001- a3 n°s par an aServices publicsxPériodiques aMarchés publicsxPériodiques 3aFRbAbesc20051025gAFNOR 3aFRbISSNc20051001 a014 uhttp://www.pracademicspress.com/toc-jopp.html zContenu : accès aux sommaires depuis 20011 bvol. 3 no. 2 (2003) -....cParisdMagasins/AnnexeeP 8° 6919 aZSAB aDEW 350-35400884nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210004300185326001600228606002900244676000800273856004200281856006600323955006700389955006600456972000900522991001800531992002100549992001200570040080285000002589720130319051555.01 a0951-6328 aFNSP169076 a0000025897 a19910227a19889999 ba0 aeng aGB aaha 10aJournal of refugee studies aOxfordcOxford University Pressd1988- aTrimestriel aRéfugiésxPériodiques a3254 uhttp://www.oup.co.uk/refuge/contents/ zContenu : sommaires et résumés depuis le vol. 1, n°1, 19881 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3251 bvol. 1 no. 1 (1988) -....cParisdMagasins/AnnexeeP 8° 5175 aZSAB aexempb201010 aGEO RQ Universel aDEW 32501182nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210007000186210003600256326001600292606003700308606003800345801002100383856012800404856010800532955011500640957007200755972000900827991001800836992001400854038737787000002588120130319051555.01 a0022-4146 aFNSP168994 a0000025881 a19900101a19589999 ba0 aeng aUS aahu 10aJournal of regional science aPhiladelphia, PA.cRegional Science Research Instituted1958-1992 aCambridgecBlackwelld1993-2008 aTrimestriel aEconomie politiquexPériodiques aEconomie régionalexPériodiques 3aFRbCCN0022-41464 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=RSC&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1958) -vol. 36 no. 2 (mai-1996) ; vol. 39 no. 1 (1999) -....cParisdMagasins/AnnexeeP 8° 18481 bvol. 1 (1958) -vol. 25 (1985)cParisdMagasins/AnnexeeP Index 0608 aZSAB aexempb201003 aDEW 330.901030nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210002500188326001600213434004200229510002400271607003600295801002100331856009400352856006000446955006600506957007200572972000900644991001800653992001900671992001400690038737817000002588220130319051555.01 a0022-4200 aFNSP168995 a0000025882 a19900101a19679999 ba0 aeng aNL aahu 10aJournal of religion in Africa aLeidencBrilld1967- aTrimestriel 1aAfrican religious researchx0044-660210aReligion en Afrique aAfriquexReligionxPériodiques 3aFRbCCN0022-42004 uhttp://dandini.ingentaselect.com/vl=9512532/cl=134/nw=1/rpsv/cw/brill/00224200/contp1.htm zContenu : sommaires et résumés depuis le n°1 de 20021 bvol. 1 no. 1 (1967) -....cParisdMagasins/AnnexeeP 8° 28491 bvol. 1 (1967) -vol. 26 (1996)cParisdMagasins/AnnexeeP Index 0793 aZPAY aexempb200910 aGEO RE Afrique aDEW 20-2901345nls 2200373 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000102001642070025002662100065002913000056003563260016004123360056004283370071004844300029005556060028005846060049006126060040006617100044007018010013007458560090007588560069008489550005009179920033009229920016009550000816062000081606220130319051555.0 a0022-4367 a0000816062 a a19649999k fre 01 ba0 aeng aUS az aa z  adr 10aJournal of risk and insuranceb[Ressource électronique]fAmerican Risk and Insurance Association 1aN° 1 (March 1964) - aOrlando, FlacAmerican Risk and Insurance Associationd1964- aTexte intégral depuis le vol. 31, n°1, March 1964 aTrimestriel aDonnées textuelles accessibles uniquement en ligne aTéléchargement de fichiers TIFF, PDF (recommandé) ou PostScript 1tThe Journal of Insurance aAssurancexPériodiques aStratégiexAspect économiquexPériodiques aEconomie industriellexPériodiques aAmerican Risk and Insurance Association 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00224367.html zContenu : résumés en ligne depuis le vol. 31, n°1, March 19641 r aGEO RS Sans aspect régional aDEW 360-36301228nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000330015421000840018732600150027160600420028660600360032871000820036480100210044685601000046785600360056795500660060395701380066997200090080799100180081699200210083499200230085599200120087803955175X000002589620130319051555.01 a0377-7480 aFNSP169072 a0000025896 a19900101a19739999 ba0 aeng aIL aaju 10aJournal of rural cooperation aTel AvivcInternational Research Centre on Rural Cooperative Communitiesd1973- aSemestriel aCoopératives agricolesxPériodiques aKibboutzyIsraëlxPériodiques02aCentre international de recherches sur les communautés coopératives rurales 3aFRbCCN0377-74804 uhttps://acces-distant.sciences-po.fr/fork?http://departments.agri.huji.ac.il/economics/JRC.html4 zContenu : sommaires depuis 19991 bvol. 5 no. 1 (1977) -....cParisdMagasins/AnnexeeP 8° 44641 bvol. 6 (1978) -vol. 10 (1982) ; vol. 16 (1988) -vol. 20 (1992) ; vol. 26 (1998) -vol. 30 (2002)cParisdMagasins/AnnexeeP Index 0351 aZPAY aexempb200911 aGEO RQ Universel aGEO RG2.15 Israël aDEW 33401209nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004300154210002400197326001600221430005900237606005300296606006100349607004400410607003600454856010900490856010800599955007000707972000900777991001800786992001900804992003200823992001600855036739278000009429520130319051555.01 a1351-8046 aFNSP414047 a0000094295 a19900101a19939999 ba0 aeng aGB aaha 04aThe Journal of Slavic military studies aLondoncCassd1993- aTrimestriel 1aThe Journal of Soviet military studiesxISSN 0954-254X aArt et science militairesyEx-URSSxPériodiques aArt et science militairesyEurope de l'EstxPériodiques aEurope de l'EstxDéfensexPériodiques aEx-URSSxDéfensexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713636668db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 6 no. 1 (mar-1993) -....cParisdMagasins/AnnexeeP 8° 5913 aZSAB aexempb201207 aGEO RA7.03 CEI aGEO RA2.02 Europe orientale aDEW 355-35901528nas 2200361 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000580015421000320021232600160024443000590026048800820031960600370040160600360043860600360047471000580051080100210056885601280058985601080071785601280082585601080095395500660106197200090112799100180113699200120115403934388X000002590720130319051555.01 a0278-839X aFNSP169104 a0000025907 a19900101a19819999 ba0 aeng aUS aahu 14aThe Journal of social, political and economic studies aWashington, DCcCSESd1981- aTrimestriel 1aThe Journal of social and political studiesx0193-5941 1aJournal of social, political and economic studies monograph seriesx0895-724X aEconomie politiquexPériodiques aScience politiquexPériodiques aSciences socialesxPériodiques02aCouncil for Social and Economic Studiesc(Etats-Unis) 3aFRbCCN0278-839X4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=JSE&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=JSE&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 6 no. 1 (1981) -....cParisdMagasins/AnnexeeP 8° 4069 aZSAB aexempb201009 aDEW 30001275nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210003400183326001600217606003600233606003800269710007100307801002100378856012800399856010800527856010100635856010800736955006600844972000900910991001800919992001200937038738112000005603920130319051555.01 a0022-4537 aFNSP262301 a0000056039 a19900101a19459999 ba0 aeng aUS aahu 10aJournal of social issues aNew YorkcPlenum Pressd1945- aTrimestriel aSciences socialesxPériodiques aPsychologie socialexPériodiques02aSociety for the Psychological Study of Social Issuesc(Etats-Unis) 3aFRbCCN0022-45374 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=JSI&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100955 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 6 no. 2 (1950) -....cParisdMagasins/AnnexeeP 8° 0780 aZPAY aexempb201101 aDEW 30001078nas 2200301 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101110001600108200002900124210004900153326001600202530003900218606003600257607005300293710003600346801002100382856020800403955007000611972000900681991001800690992003100708992002100739992001600760038827719000002590520130605111345.01 a0047-2794 a19900101a19729999 ba0 aeng aGB aahu 10aJournal of social policy aCambridgecCambridge University Pressd1972- aTrimestriel10aJournal of social policy‎bPrint aPolitique socialexPériodiques aGrande-BretagnexPolitique socialexPériodiques02aSocial Policy Associationc(GB) 3aFRbCCN0047-27944 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=101400zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1972) -....cParisdMagasins/AnnexeeP 8° 3065 aZCAD aexempb201106 aGEO RA4.02 Grande-Bretagne aGEO RQ Universel aDEW 360-36301092nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154207002500191210005600216210005000272210004300322326001500365606003800380801002100418856012800439856010800567955006500675972000900740991001800749992001100767038738139000002593420130319051555.01 a0022-4545 aFNSP169164 a0000025934 a19900101a19309999 ba0 aeng aUS aagu 14aThe Journal of social psychology 1aVol. 1 no. 1 (1930)- aWorcester, Mass.cClark University Pressd1930-1936 aProvincetown, Mass.cJournal Pressd1937-1984 aWashington, D.C.cHeldref Publ.d1984- aBimestriel aPsychologie socialexPériodiques 3aFRbCCN0022-45454 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=JSY&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 27 (fev-1948) -....cParisdMagasins/AnnexeeP 8° 0075 aZSAB aexempb201101 aDEW 1501153nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006200154210004000216210002400256326002300280326002800303430007200331606004800403606004000451710004000491856010800531856010800639955007100747972000900818992001200827037420984000024727420130319051555.01 a1440-7833 aFNSP867479 a0000247274 a19900101a19989999 ba0 aeng aAU aaha 10aJournal of sociologyfAustralian Sociological Association aSouth MelbournecLongmand1998-2000 aLondoncSaged2001- aTrimestrielb2000- a3 nos par anb1998-2000 1aThe Australian and New Zealand journal of sociologyxISSN 0004-8690 aSociologieyNouvelle-ZélandexPériodiques aSociologieyAustraliexPériodiques02aAustralian Sociological Association4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 34 no. 1 (mar-1998) -....cParisdMagasins/AnnexeeP 8° 2331 aZPAY aDEW 30101344nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154207002500193210006100218210003200279210004800311326002400359326002600383430005000409530005000459607003400509710006000543801002100603856010100624856010800725955007000833972000900903991001800912992002800930992001200958038738236000002593620130319051555.01 a0022-4634 aFNSP169170 a0000025936 a19900101a19709999 ba0 aeng aSG aaju 10aJournal of Southeast Asian studies 1aVol. 1, no.1 (1970)- aSingaporecMcGraw-Hill Far Eastern Publishersd1970-1974 aDivers éditeursd1975-2000 aCambridgecCambrige University Pressd2001- a3 nos par anb2001- aSemestrielb1970-2000 1aJournal of Southeast Asian historyx0217-7811 0aJournal of Southeast Asian studiesbSingapore aAsie du Sud-EstxPériodiques02aNational University of SingaporebDepartment of History 3aFRbCCN0022-46344 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=107435 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1970) -....cParisdMagasins/AnnexeeP 8° 1957 aZCAD aexempb201001 aGEO RI2 Asie du Sud-Est aDEW 95901407nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005600163210003400219300012900253326001800382440004500400607002600445607003800471676001000509710005600519801001300575856004200588856005100630856010900681856010800790955008900898972000900987992001400996992002301010064130592000048886420130319051555.01 a1468-3857 a0000488864 a a20009999k fre ba0 aeng aGB a 0  ar aai z 0 10aJournal of Southeast European and Black Sea studies aLondoncFrank Cassd2000-2004 aReprend des éléments de Southeast European yearbook. Les numéros spéciaux sont aussi publiés sous forme de monographies a3 n°s par an 1tSoutheast European and Black Sea studies aBalkansxPériodiques aMer Noire (région)xPériodiques a943.702aHellenic Foundation for European and Foreign Policy 0aFRbFNSP4 uhttp://www.frankcass.com/jnls/bss.htm zSommaires depuis le vol.1, n°1, january. 20004 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713634533db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-2000) -vol. 4 no. 3 (sep-2004)cParisdMagasins/AnnexeeP 8° 6659 aZSAB aDEW 949.6 aGEO RA8.01 Balkans01283nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004000154210004300194326001600237607003500253801002100288856010300309856010800412856010900520856010800629955006500737957008300802972000900885991001800894992002900912992001600941039394476000006775420130319051555.01 a0305-7070 aFNSP314384 a0000067754 a19900101a19749999 ba0 aeng aGB aahu 10aJournal of Southern African studies aOxfordcOxford University Pressd1974- aTrimestriel aAfrique australexPériodiques 3aFRbCCN0305-70704 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03057070.html?&cookieSet=1 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713436095db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1974) -....cParisdMagasins/AnnexeP 8° 35761 bvol. 1 no. 1 (1974) -vol. 30 no. 3 (2004)cParisdMagasins/AnnexeP Index 0866 aZSAB aexempb200911 aGEO RF3 Afrique australe aDEW 966-96901651nas 2200409 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200004700148207004800195210003200243326002800275326002600303440005900329452006800388517004500456530005700501607003200558607003400590607002600624801001300650856010100663856010800764856011100872856010800983955008601091972000901177991001801186992001401204992002301218048811726000032750620130830122335.01 a1461-3190 a b19992008k fre ba0 aeng aGB a 0  ar aai z 0 10aJournal of Southern Europe and the Balkans 1avol. 1, no. 1 (1999)-vol. 10, no. 3 ( 2008) aAbingdoncCarfaxd1999-2008 a3 nos par anb2003-2008 aSemestrielb1999-2002 1tJournal of Balkan and Near Eastern studies,x1944-8953 1tJournal of Southern Europe and the Balkans (Online),x1469-963X10aJournal of Southern Europe & the Balkans aJournal of Southern Europe and the Balkans‎bPrint aEurope du SudxPériodiques aEurope de l'EstxPériodiques aBalkansxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=104630 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/openurl?genre=journal&issn=1461-3190 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mai-1999) -vol. 10 no. 3 (2008)cParisdMagasins/AnnexeeP 8° 6532 aZCAD aexempb201212 aDEW 949.6 aGEO RA8.01 Balkans01239nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004000163210004700203326002300250326002900273326002600302607005300328801001300381856010300394856010800497856010900605856010800714955007000822972000900892992001200901058256245000038503920130319051555.01 a1463-6204 a0000385039 a a20009999k fre ba0 aeng aGB a 0  ar aah z 0 10aJournal of Spanish cultural studies aBasingstokecCarfa,Taylor & Francisd2000- aTrimestrielb2009- a3 n°s par anb2004-2008 aSemestrielb2000-2003 aEspagnexCivilisationz20e sièclexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=104631 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713436003db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-2000) -....cParisdMagasins/AnnexeeP 8° 6558 aZPAY aDEW 94601160nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210003100187210003100218326002200249326002400271326002800295606004400323676000800367801002100375856010900396856010800505955006700613955007000680972000900750991001800759992002100777992001200798039075362000002594520130624095302.01 a0140-2390 aFNSP169192 a0000025945 a19900101a19789999 ba0 aeng aGB aahu 10aJournal of strategic studies aLondoncF. Cassd1978-2004 aAbingdoncRoutledged2005- aBimestrielb2005- aTrimest.b1981-2004 a3 nos par anb1978-1980 aSécurité internationalexPériodiques a327 3aFRbCCN0140-23904 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713636064db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 1 no. 1 (mai-1978) -....cParisdMagasins/AnnexeeP 8° 4097 aZSAB aexempb201103 aGEO RQ Universel aDEW 32701260nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200007100163210006200234300007300296326001800369430006600387601005400453606006400507710005700571801001300628856008100641856008900722955006700811972000900878992002300887992001200910040286312000055939520130319051555.01 a1059-4329 a0000559395 a a19909999k fre ba0 aeng aUS a 0  ar aai z 0 10aJournal of Supreme Court historyfSupreme Court Historical Society aWashington, D.C.cSupreme Court Historical Societyd1990- anouvelle adresse bibliographique : Malden, MA : Blackwell Publishing a3 n°s par an 1tYearbook - Supreme Court Historical SocietyxISSN = 0362-524901aEtats-UnisbSupreme CourtxHistoirexPériodiques aJusticexAdministrationyEtats-UnisxHistoirexPériodiques02aSupreme Court Historical Societyc(Washington, D.C.) 0aFRbFNSP uhttp://www.blackwell-synergy.com/servlet/useragent?func=showIssues&code=jsch zContenu : Sommaires et résumés des articles à partir du vol. 25, n°1, march 20001 bvol. 27 no. 1 (2002) -....cParisdMagasins/AnnexeeP 8° 6710 aZSAB aGEO RC2 Etats-Unis aDEW 34201176nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000087001502100070002373000119003073260016004263360058004423370063005004400077005634520073006406060037007138010013007508560090007639550005008539920016008580000470140000047014020130319051555.0 a0000470140 a b19371938k fre 01 ba0 aeng aUS az aah z  adr 14aThe Journal of the American Military History Foundationb[Ressource électronique] aWashington, D.C.cAmerican Military History Foundationd1937-1938 aAccès au texte intégral (réservé aux sites de Sciences Po) à partir du vol. 1 de 1937 jusqu'au vol. 2 de 1938 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tThe Journal of the American Military Institute [Ressource électronique] 1tThe Journal of the American Military History Foundationx(1520-8621) aHistoire militairexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/5786002j.html1 r aDEW 355-35901217nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000078001502100061002283000119002893260016004083360058004243370063004824300086005454400047006314520064006786060037007428010013007798560090007929550005008829920016008870000470143000047014320130319051555.0 a0000470143 a b19391940k fre 01 ba0 aeng aUS az aah z  adr 14aThe Journal of the American Military Instituteb[Ressource électronique] aWashington, D.C.cAmerican Military Instituted1939-1940 aAccès au texte intégral (réservé aux sites de Sciences Po) à partir du vol. 3 de 1939 jusqu'au vol. 4 de 1940 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tThe Journal of the American Military History Foundation [Ressource électronique] 1tMilitary affairs [Ressource électronique] 1tThe Journal of the American Military Institutex(1520-8613) aHistoire militairexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/5786003j.html1 r aDEW 355-35901688nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004900154210005600203326001600259430006100275517000900336606005600345710003400401801002100435856012800456856010800584856010900692856010800801955007100909957031200980972000901292992002301301992001401324039148556000002594720130319051555.01 a0194-4363 aFNSP169198 a0000025947 a19900101a19799999 ba0 aeng aUS aahu 10aJournal of the American Planning Association aChicago, Ill.cAmerican Planning Associationd1979- aTrimestriel 1aJournal of the American Institute of Plannersx0002-899110aJAPA aPlanification économiqueyEtats-UnisxPériodiques02aAmerican Planning Association 3aFRbCCN0194-43634 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=APN&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t782043358db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 45 no. 1 (jan-1979) -....cParisdMagasins/AnnexeeP 4° 31051 b1958/1983 : cet index constitue le vol.49, n°4, 1983 de la revue ; 1984/1988 : cet index se trouve dans le vol.54, n°4, 1988 de la revue ; 1989/1993 (vol.55/59) : cet index se trouve dans le vol.59, n°4, 1993 de la revue; 1994/1998 (vol.60/64) : cet index se trouve dans le vol.64, n°4, 1998 de la revue aZSAB aGEO RC2 Etats-Unis aDEW 338.901626nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005200154210006200206326001600268430007800284517000900362606004200371710003700413801002100450856009000471856010800561856010300669856010800772955007300880955009100953957017201044972000901216992002301225992001601248039105547000005346620130319051555.01 a0162-1459 aFNSP254070 a0000053466 a19900101a19229999 ba0 aeng aUS aaha 10aJournal of the American Statistical Association aWashington, D.C.cAmerican Statistical Associationd1922- aTrimestriel 1aQuarterly publications of the American Statistical Associationx1522-544510aJASA aStatistiqueyEtats-UnisxPériodiques02aAmerican Statistical Association 3aFRbCCN0162-14594 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01621459.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=1087484 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 66 no. 333 (mar-1971) -....cParisdMagasins/AnnexeeP 4° 30531 bvol. 35 no. 209 (1940) -vol. 65 no. 332 (dec-1970)cParisdMagasins/AnnexeeP 8° 00961 bvol. 35 (1940) -vol. 50 (1955) ; vol. 51 (1956) -vol. 60 (1965) ; vol. 51 (1956) -vol. 73 (1978) ; vol. 50 (1955) -vol. 91 (1991)cParisdMagasins/AnnexeeP Index 0009 aZPAY aGEO RC2 Etats-Unis aDEW 310-31901386cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001700069035001700086100004100103101000800144102000700152105001800159110001600177200004000193210003800233326002300271326002900294452006100323530004000384607004800424607006300472607004900535607006400584801001300648802000700661856010900668856010800777955006600885972000900951992001200960992002800972048779695000052850220131016153306.01 a1354-7860 zccn7208/8095 accn1354-7860 aissn13547860 a20000427a19969999k y0frey0103 ba0 aeng aGB a 0  aaia 0uu 10aJournal of the Asia Pacific economy aLondoncRoutledge Journalsd1996- aTrimestrielb2005- a3 n°s par anb2002-2004 1tJournal of the Asia Pacific economy (Online),x1469-9648 aJournal of the Asia Pacific economy aAsiexConditions économiquesxPériodiques aPacifique (région)xConditions économiquesxPériodiques aAsiexIntégration économiquexPériodiques aPacifique (région)xIntégration économiquexPériodiques 0aFRbFNSP a024 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713703356db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 7 no. 1 (2002) -....cParisdMagasisn/AnnexeeP 8° 6683 aZSAB aDEW 950 aGEO RI2 Asie du Sud-Est00964nls 2200253 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000078001502100052002282300024002806060045003048010013003498560205003628560108005679920023006759920012006980001147381000114738120130319051555.0 a0001147381 a a19839999k fre 01 ba0 aeng aUS ar aaz z  adr 10aJournal of the copyright society of the U.S.A.b[Ressource électronique] aNew YorkcCopyright Society of the U.S.Ac1983- aRevue électronique aPropriété intellectuellexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.westlaw.com/search/default.wl?ForceTo=uk.westlaw.com&rp=%2fsearch%2fdefault.wl&mt=WestlawUK&rs=WLUK7.02&vr=2.0&sv=full&fn=top&db=JCPS&sp=intiep-000 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aGEO RC2 Etats-Unis aDEW 34001319nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200008000163207002800243210003600271326001500307606003700322710003400359801001300393856010100406856010800507856012800615856010800743955009100851972000900942992001200951992001800963080086357000061886720131202101306.01 a1542-4766 a0000618867 a a20039999 fre 01 ba0 aeng aUS a 0  ar aag z 0 10aJournal of the European Economic AssociationfEuropean Economic Association 1aVol.1, n°1(Mars 2003)- aCambridge, MAcMIT Pressd2003- aBimestriel aEconomie politiquexPériodiques02aEuropean Economic Association 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=110749 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=TQK&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-2003) -vol. 10 no. 6 (déc-2012)cParisdMagasins/AnnexeeP 8° 6762 aZPAY aDEW 330 aGEO RA Europe01018nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171100016001242000054001402100050001943000050002443260016002946070030003106070044003407100022003848560148004069550106005549720009006609910018006699920029006879920012007160000075294000007529420130920151508.01 a0254-4288 aFNSP342620 a19900101a19759999 ba0 aara aKW aaha 10aJournal of the Gulf and Arabian Peninsula studies aKhaldiehcAcademic Publication Councild1975- aTexte en arabe, quelques résumés en anglais aTrimestriel aPays arabesxPériodiques aPersique, Golfe (région)xPériodiques02aKuwait University4 uhttp://www.pubcouncil.kuniv.edu.kw/jgaps/home.aspx?id=1&Root=yes#zContenu : accèsaux sommaires et résumés des articles depuis le vol.1,19751 bvol. 4 no. 13 (1978) -no. 45 (1986) ; vol. 16 no. 63 (1990) -....cParisdMagasins/AnnexeeP 8° 4033 aZCAD aexempb201001 aGEO RG.13 Golfe Persique aDEW 95601180nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154210006300190326001600253517000800269606003600277801002100313856007000334856005300404856009000457856010800547955007200655957007300727972000900800992003300809992001200842038738562000005425920130319051555.01 a0022-5037 aFNSP255928 a0000054259 a19900101a19409999 ba0 aeng aUS aahu 10aJournal of the history of ideas aNew Brunswick, NJ.cJournal of the History of Ideasd1940- aTrimestriel10aJHI aPenséexHistoirexPériodiques 3aFRbCCN0022-50374 uhttp://calliope.jhu.edu/journals/journal_of_the_history_of_ideas/ zContenu : sommaires depuis le n°1, janvier 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00225037.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 11 no. 1 ( jan-1950) -....cParisdMagasins/AnnexeeP 4° 06861 bvol. 46 (1985) -vol. 61 (2000)cParisdMagasins/AnnexeeP Index 0841 aZSAB aGEO RS Sans aspect régional aDEW 00101070nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005600154210004300210210003100253326001600284607004700300607004900347801002100396856010000417856007400517955010300591972000900694991001800703992002100721992001400742039984370000002595020130319051555.01 a0889-1583 aFNSP169202 a0000025950 a19900101a19879999 ba0 aeng aUS aahu 10aJournal of the Japanese and international economies aDuluth, MNcAcademic Pressdc1987-2001 aAmsterdamcElsevierd2002- aTrimestriel aJaponxPolitique économiquexPériodiques aJaponxConditions économiquesxPériodiques 3aFRbCCN0889-15834 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/08891583 zContenu : sommaires et résumés de la revue depuis le volume 1, 19871 bvol. 1 no. 1 (mar-1987) -....cParisdMagasins/AnnexeeP 8° 5138wManquant : vol. 5, no. 2 (1991) aZPAY aexempb201011 aGEO RI3.22 Japon aDEW 330.901163nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200004500160210004900205326001600254430005000270440007500320606003000395712003600425856019500461955013300656957006800789992001600857037923463000010685220130319051555.01 a0952-8385 aFNSP453198 a0000106852 a19900101b18871947 ba0 aeng aGB ar aaha 10aJournal of the Royal Statistical Society aLondoncRoyal Statistical Societyd1887-1947 aTrimestriel 1aJournal of the Statistical Societyx0959-5341 1aJournal of the Royal Statistical Society. Series A. Generalx0035-9238 aStatistiquexPériodiques02aRoyal Statistical Societyc(GB)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/09528385.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 50 no. 1 (1887) -vol. 103 no. 1 (1940) ; vol. 108 no. 1/2 (1945) -vol. 110 no. 4 (1947)cParisdMagasins/AnnexeeP 8° 01021 b(1873/1887) ; (1888/1908)cParisdMagasins/AnnexeeP Index 0007 aDEW 310-31901107nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200006400160210004900224326001600273430005600289440008900345606003000434710003600464801002100500856019500521955008500716992001600801036469211000002599720130319051555.01 a0035-9238 aFNSP169287 a0000025997 a19900101b19481987 ba0 aeng aGB ar aahu 10aJournal of the Royal Statistical Society. Series A. General aLondoncRoyal Statistical Societyd1948-1987 aTrimestriel 1aJournal of the Royal Statistical Societyx0952-8385 1aJournal of the Royal Statistical Society. Series A. Statistics in Societyx0964-1998 aStatistiquexPériodiques02aRoyal Statistical Societyc(GB) 3aFRbCCN0035-92384 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00359238.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 111 no. 1 (1948) -vol. 150 no. 4 (1987)cParisdMagasins/AnnexeeP 8° 0102 aDEW 310-31901732nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200007800160210004500238326001600283430009100299606003700390607004800427607005500475710003600530856019500566856020600761856023300967955008501200957001701285972000901302992003101311992001601342992001201358040099113000010689420131202104422.01 a0964-1998 aFNSP453266 a0000106894 a19900101a19889999 ba0 aeng aGB ar aaha 10aJournal of the Royal Statistical Society. Series A. Statistics in Society aLondoncRoyal Statistical Societyd1988- aTrimestriel 1aJournal of the Royal Statistical Society. Series A. General (0035-9238) < P 8° 0102 > aProblèmes sociauxxPériodiques aGrande-BretagnexStatistiquesxPériodiques aGrande-BretagnexConditions socialesxPériodiques02aRoyal Statistical Societyc(GB)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/09641998.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100873zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=BQN&site=ehost-livezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 151 no. 1 (1988) -vol. 175 no. 4 (2012)cParisdMagasins/AnnexeeP 8° 01021 eP Index 0007 aZPAY aGEO RA4.02 Grande-Bretagne aDEW 310-319 aDEW 30001359nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200007100160207004800231210004900279326002700328326003300355430007900388440010400467488008000571606003000651710003600681856019500717955008700912991001800999992001601017013308408000010688120130319051555.01 a0035-9246 aFNSP453244 a0000106881 a19900101b19481997 ba0 aeng aGB ar aaha 10aJournal of the Royal Statistical Society. Series B. Methodological 1aVol.10 Part 1(1948) - vol. 59 part 4 (1997) aLondoncRoyal Statistical Societyd1948-1997 aTrimestrielb1993-1997 aTrois fois par anb1948-1992 1aSupplement to the Journal of the Royal Statistical SocietyxISSN 1466-6162 1tJournal of the Royal Statistical Society. Series B, Statistical methodology (Print)xISSN 1369-7412 1aJournal of the Royal Statistical Society. Series A. GeneralxISSN 0035-9238 aStatistiquexPériodiques02aRoyal Statistical Societyc(GB)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00359246.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 10 no. 1 (1948) -vol. 48 no. 3 (1986)cParisdMagasins/AnnexeeP 8° 0102 bis aexempb201101 aDEW 310-31901077nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000100001502100065002503260016003153360058003313370063003894400056004524520037005086060030005458010013005758560195005889920016007830000491575000049157520130319051555.0 a0000491575 a a19869999k fre 01 ba0 aeng aUS az aah z  adr 10aJournal of the Royal Statistical Society. Series D, The statisticianb[Ressource électronique] aHayward, Calif.cInstitute of Mathematical Statisticsd1986- aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tIncorporated statistician [Ressource électronique] 1tStatistical sciencex(0883-4237) aStatistiquexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/08834237.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aDEW 310-31901071nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200003900160210004900199326001600248440005600264452005200320517004900372606003000421710003600451856019500487955008300682992001600765037931059000010687220130319051555.01 a0959-5341 aFNSP453230 a0000106872 a19900101b18381886 ba0 aeng aGB ar aaua 10aJournal of the Statistical Society aLondoncRoyal Statistical Societyd1838-1886 aTrimestriel 1aJournal of the Royal Statistical Societyx0952-8385 1tJournal of the Statistical Societyx(0959-5341)10aJournal of the Statistical Society of London aStatistiquexPériodiques02aRoyal Statistical Societyc(GB)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/09595341.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 47 no. 2 (1884) -vol. 49 no. 4 (1886)cParisdMagasins/AnnexeeP 8° 0102 aDEW 310-31900785nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200003600138210002400174326001600198606003600214801002100250856002800271856010800299955006900407972000900476991001800485992001600503040080242000002599820130319051555.01 a0951-6298 aFNSP169290 a0000025998 a19900101a19899999 ba0 aeng aGB00aJournal of theoretical politics aLondoncSaged1989- aTrimestriel aScience politiquexPériodiques 3aFRbCCN7106/64544 uhttp://jtp.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no 1 (jan-1989) -....cParisdMagasins/AnnexeeP 8° 5190 aZSAB aexempb201106 aDEW 320-32101117nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210006000189326001500249607004900264607007500313710003900388856012800427856010800555955007100663972000900734991001800743992004200761992001200803037428942000019520620130319051555.01 a8755-3449 aFNSP717171 a0000195206 a19900101a19849999 ba0 aeng aUS aaja 10aJournal of third world studies aAmericus, GacAssociation of Third World Studiesd1984- aSemestriel aPays en voie de développementxPériodiques aPays en voie de developpementxPolitique et gouvernementxPériodiques02aAssociation of Third World Studies4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=JTW&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 11 no. 1 (mar-1994) -....cParisdMagasins/AnnexeeP 8° 6256 aZSAB aexempb201212 aGEO RO Pays en voie de développement aDEW 90901432nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154207002600183210012200209326002300331326002700354606002500381606004000406606003700446606003700483710004400520856012800564856010800692856006100800856006900861955006700930972000900997991001801006992002301024992001101047039697827000000419520130319051555.01 a0735-2166 aFNSP105117 a0000004195 a19900208a19819999 ba0 aeng aUS aaga 10aJournal of urban affairs 1aVol. 3, no. 4 (1981)- aBlacksburg, VacDivision of Environment and Urban Systems, Virginia Polytechnic Institute and State Universityd1981- a5nos par anb2000- aTrimestrielb1981-1999 aVillesxPériodiques aUrbanismeyEtats-UnisxPériodiques aVillesyEtats-UnisxPériodiques aSociologie urbainexPériodiques02aUrban Affairs Associationc(Etats-Unis)4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=JFA&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.blackwellpublishing.com/toc.asp?ref=0735-2166 zContenu : sommaires et résumés depuis le volume 21, n°1, 19991 bvol. 10 no. 4 (1988) -....cParisdMagasins/AnnexeeP 8° 5615 aZSAB aexempb201205 aGEO RC2 Etats-Unis aDEW 7101174cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200006900180207002100249210006700270326002200337517000800359530005400367607002700421710005800448801003000506801002300536802000700559856003800566856008400604955007600688972000900764992001200773992001500785110908368000114352220130319051555.01 a1559-372X aissn1559372X a0001143522 a20061123a20069999k y0frey0103 ba0 aeng aUS ay 0  ar aaja 0uu 10aJournal of Vietnamese studiesfCenter for Southeast Asia Studies 0aN.1(2006,fév.)- aBerkeley, CaliforniecCenter for Southeast Asia Studiesd2006- aTrois n°s par an10aJVS10aJournal of Vietnamese studiesb(Berkeley, Calif.) aViet-NamxPériodiques02aCenter for Southeast Asia Studiesc(Berkeley, Calif.) 3aFRbAbesc20080108gAFNOR 3aFRbISSNc20080107 a014 uhttp://caliber.ucpress.net/loi/vs zContenu: sommaires et texte intégral des n°s depuis le vol. 1 n° 1/2 de 20061 bvol. 1 no. 1/2 (fev/aou-2006) -....cParisdMagasins/AnnexeeP 8° 7028 aZSAB aDEW 959 aGEO RI2.2301016cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200003900180207002600219210003000245326001800275711003800293801003000331801002300361801003000384801001700414802000700431856006300438856005400501955006600555992001200621992003300633131662694000115475120130319051555.01 a1752-6272 aissn17526272 a0001154751 a20090223a20089999k y0frey0103 ba0 aeng aGB ay 0  ar aaia 0uu 10aJournal of war and culture studies 0aVol. 1, no. 1 (2008)- aBristolcIntellectd2008- a3 n°s par an02aGroup for War and Culture Studies 3aFRbAbesc20090311gAFNOR 3aFRbISSNc20090225 3aFRbAbesc20081020gAFNOR 0bOCLCSgAACR2 a024 uhttp://www.intellectbooks.co.uk/journals.php?issn=17526272 zContenu : sommaires depuis le vol. 1, no. 1, 20081 bvol. 1 no. 1 (2008) -....cParisdMagasins/AnnexeeP 8° 7058 aDEW 355 aGEO RS Sans aspect régional01267nas 2200373 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000040001642070027002042100045002313260016002764300033002924520061003255170042003866060029004286060025004576060046004826760008005288010013005368560109005498560108006589550069007669720009008359920033008449920016008770000928735000092873520140110101042.01 a1554-477X a0000928735 a a20059999 fre 01 ba0 aeng aUS a 0  ar aah z 0 10aJournal of women, politics & policy 1aVol.27, n°1/2 (2005-) aNew YorkcHaworth Political Pressd2005- aTrimestriel 1tWomen & politics,x0195-7732 1tJournal of women, politics & policy (Online),x1554-478800aJournal of women, politics and policy aFéminismexPériodiques aFemmesxPériodiques aFemmesxActivité politiquexPériodiques a320 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t792306983db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 27 no. 1/2 (2005) -....cParisdMagasins/AnnexeeP 8° 4371 aZSAB aGEO RS Sans aspect régional aDEW 305-30600892nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210003900184326001600223430006600239517000800305606003000313856010000343856007900443955006700522972000900589992001600598037418823000021879820130319051555.01 a1090-9516 aFNSP786087 a0000218798 a19900101a19979999 ba0 aeng aUS aaha 10aJournal of world business aGreenwich, Conn.cJAI Pressd1997- aTrimestriel 1aColumbia journal of world business,x0022-5428 < P 4° 2178 >10aJWB aEntreprisesxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/10909516 zContenu : accès aux sommaires et aux résumés depuis le volume 32, 1997.1 bvol. 32 no. 1 (1997) -....cParisdMagasins/AnnexeeP 4° 2178 aZPAY aDEW 650-65801232cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086040001100101100004100112101000800153102000700161105001800168106000600186110001600192200005600208207003300264210005200297326001600349452004900365606003900414606004100453710003000494801003000524801002300554802000700577856005900584856006600643955007100709972000900780992001200789992003300801040264866000116865020130319051555.01 a1045-6007 accn1045-6007 aissn10456007 a0001168650 aJWHIEC a19890810a19909999k y0frey0103 ba0 aeng aUS a 0  ar aaha 0uu 10aJournal of world historyfWorld history association 0aVol. 1, no. 1 (spring 1990)- aHonolulu, HIcUniversity of Hawaii Pressd1990- aTrimestriel 1tJournal of world history (Online)x1527-8050 aHistoire universellexPériodiques aCivilisationxHistoirexPériodiques02aWorld history association 3aFRbAbesc20090428gAFNOR 3aFRbISSNc20090427 a014 uhttp://muse.jhu.edu/journals/journal_of_world_history/ zContenu : sommaires et résumés depuis le vol. 7 no. 1, 19961 bvol. 19 no. 1 (mar-2008) -....cParisdMagasins/AnnexeeP 8° 7093 aZPAY aDEW 909 aGEO RS Sans aspect régional01040cas0 2200301 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200002700156210005800183326001500241430004200256606004100298801003000339801003000369802000700399856012800406856010800534955007100642972000900713992001600722040137236000081968920130319051555.01 a1011-6702 accn1011-6702 a0000819689 a19890414a19889999 0frey0103 ba0 aeng aGB aag 10aJournal of world trade aKingston upon ThamescKluwer Law Internationald1988- aBimestriel 1tJournal of world trade Lawx0022-5444 aCommerce internationalxPériodiques 3aFRbAbesc20040914gAFNOR 3aFRbAbesc20040914gAFNOR a404 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=JWT&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 39 no. 1 (fev-2005) -....cParisdMagasins/AnnexeeP 8° 6819 aZPAY aDEW 380-38200877nls 2200265 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000106001502100089002562300024003456010044003696060034004137120030004478010013004778560050004909920057005409920014005970000960196000096019620130319051555.0 a0000960196 a a19989999k fre 01 ba0 afre aLU ar aaa z  adr 10aJournal officiel de l'Union européenne. C, Communications et informationsb[Ressource électronique] aLuxembourgcOffice des publications officielles des Communautés européennesd1998- aRevue électronique02aCommunautés européennesxPériodiques aDroit européenxPériodiques02aCommunautés européennes 0aFRbFNSP4 uhttp://europa.eu.int/eur-lex/lex/fr/index.htm aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 341.200859nls 2200265 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000088001502100089002382300024003276010044003516060034003957120030004298010013004598560050004729920057005229920014005790000960204000096020420130319051555.0 a0000960204 a a19989999k fre 01 ba0 afre aLU ar aaa z  adr 10aJournal officiel de l'Union européenne. L, Législationb[Ressource électronique] aLuxembourgcOffice des publications officielles des Communautés européennesd1998- aRevue électronique02aCommunautés européennesxPériodiques aDroit européenxPériodiques02aCommunautés européennes 0aFRbFNSP4 uhttp://europa.eu.int/eur-lex/lex/fr/index.htm aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 341.200917nas 2200241 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181060006001251100016001312000050001472100041001973260014002384300076002524400113003288560145004419550078005869910011006640000100320000010032020131015170350.0 aFNSP433701 a0000100320 a19900101b18701920 ba0 afre aFR ar aaaa 00aJournal officiel de la République française aPariscJournaux officielsd1870-1920 aquotidien 1aJournal officiel de l'Empire français  1aJournal officiel de la République française. Lois et décrets (0373-0425) 4 uhttp://gallica.bnf.fr/ark:/12148/cb34378481r/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1871-1939)1 béd. en microfiches : 1870 -----> 1920cParisdMagasins/ANnexeeP Mic F 3 anumerX01327nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200010100139210003700240326002500277517009100302517011000393607005000503607004800553676000800601710004200609801002100651856014200672955008700814955005500901972000900956992002200965992001400987013303058000000476520131104171739.01 a0429-3541 aFNSP106368 a19900101a19479999 ba0 afre aFR aaeu 10aJournal officiel de la République française. Avis et rapports du Conseil économique et social aPariscJournaux officielsd1947- a2 ou 3 fois par mois10aJournal officiel de la République française. Avis et rapports du Conseil économique10aJournal officiel de la République française. Les avis du Conseil économique, social et environnemental aFrancexConditions économiquesxPériodiques aFrancexPolitique économiquexPériodiques a30002aFrancebConseil économique et social 3aFRbCCN0429-35414 uhttp://www.conseil-economique-et-social.fr/ces_dat2/2-3based/base.htmzSommaires depuis 1947; accès libre au texte intégral depuis 19981 bConservation limitée aux 3 dernières annéescParisdMagasins/AnnexeeP 8° 63921 b(1947) -(2002)cParisdMagasins/AnnexeeP Mic F 10 aZCAD aGEO RA4.06 France aDEW 338.901155nas 2200241 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000120001552100037002753260016003124370123003285300120004518560054005718560218006259550070008430000011120000001112020130319051555.01 a0242-6765 aFNSP122918 a0000011120 a19900725a19809999 ba0 afre aFR aaza 10aJournal officiel de la République française. Débats parlementaires. Assemblée nationale. Compte rendu intégral aPariscJournaux officielsd1980- airrégulier 1aJournal officiel de la République française. Débats parlementaires. Assemblée nationale (0242-6749) < P Mic F 11 >00aJournal officiel de la République française. Débats parlementaires. Assemblée nationale. Compte rendu intégral4 uhttp://www.assembleenationale.fr/debats/index.asp4 zAccès libre au texte intégral. Contenu : depuis la session 2001-2002 ; depuis le 20 janvier 2004, la version numérisée du compte rendu intégral des débats est mise en ligne dans un délai de 24 à 48 heures.1 béd. en microfiches : 1980 ---> 2002cParisdMagasinseP Mic F 1101130nas 2200253 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001391100016001452000143001612100037003043000050003413260016003914300123004075300143005308560135006739550068008080000010978000001097820130319051555.01 a0242-6757 aFNSP121349 a0000010978 a19900719a19809999 ba0 afre aFR ar aaza 10aJournal officiel de la République française. Débats parlementaires. Assemblée nationale. Questions écrites et réponses des ministres aPariscJournaux officielsd1980- aTable annuelle conservée avec le périodique aIrrégulier 1aJournal officiel de la République française. Débats parlementaires. Assemblée nationale (0242-6749) < P Mic F 11 >00aJournal officiel de la République française. Débats parlementaires. Assemblée nationale. Questions écrites et réponses des ministres4 uhttp://questions.assemblee-nationale.frzQuestion écrites, orales et réponses ministérielles depuis 1981-1986 (7e Législature)1 b1980--->2002 (éd. en microfiches)cParisdMagasinseP Mic F 1100976nas 2200241 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000106001552100037002613000050002983260016003484370101003645300106004658560095005719550068006660000011136000001113620130319051555.01 a0755-544X aFNSP123148 a0000011136 a19900725a19839999 ba0 afre aFR aaza 10aJournal officiel de la République française. Débats parlementaires. Sénat. Compte rendu intégral aPariscJournaux officielsd1983- aTable annuelle conservée avec le périodique airrégulier 1aJournal officiel de la République française. Débats parlementaires. Sénat (1958) (0242-6803)00aJournal officiel de la République française. Débats parlementaires. Sénat. Compte rendu intégral4 uhttp://www.senat.fr/seances/seances.htmlzAccès libre au texte intégral depuis juin 19961 béd. en microfiche 1983 ---> 2002cParisdMagasinsePMic F (13)01120nas 2200241 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000179001552100037003343000050003713260016004214300101004375300179005388560093007179550068008100000010980000001098020130319051555.0 a0755-5458 aFNSP121351 a0000010980 a19900719a19839999 ba0 afre aFR aaza 10aJournal officiel de la République française. Débats parlementaires. Sénat. Questions remises à la présidence du Sénat et réponses des ministres aux questions écrites aPariscJournaux officielsd1983- aTable annuelle conservée avec le périodique airrégulier 1aJournal officiel de la République française. Débats parlementaires. Sénat (1958) (0242-6803)00aJournal officiel de la République française. Débats parlementaires. Sénat. Questions remises à la présidence du Sénat et réponses des ministres aux questions écrites4 uhttp://www.senat.fr/quesdom.htmlzAccès libre au texte intégral depuis le 2 avril 19781 béd. en microfiche 1983 ---> 2002cParisdMagasinsePMic F (13)01218nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001391100016001452000074001612100037002354300085002725170076003575300074004336070041005078010021005488300060005698560100006299550060007299550077007899920022008669920016008880000010972000001097220130319051555.01 a0242-6773 aFNSP121326 a0000010972 a19900101a19559999 ba0 afre aFR ar aazu 10aJournal officiel de la République française. Document administratif aPariscJournaux officielsd1955- 1aJournal officiel de la République française. Annexe administrative (0242-6846)10aJournal officiel de la République française. Documents administratifs00aJournal officiel de la République française. Document administratif aFrancexAdministrationxPériodiques 3aFRbCCN0242-6773 adésherbé en février 2006 période avril 2006 à 20084 uhttp://www.journal-officiel.gouv.fr/dae.htmlzAccès libre au texte intégral depuis avril 20061 b2004 ---> mars 2006cParisdMagasins/AnnexeeP 4° 16171 bed. sur support microfiches : 1955---> 2002cParisdMagasinseP Mic F 16 aGEO RA4.06 France aDEW 350-35401424nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001391100016001452000068001612100037002293000050002663260014003164210108003305300068004386060031005066060046005378560195005838560108007788560106008869550069009929920025010619920012010860000011036000001103620130319051555.01 a0373-0425 aFNSP122071 a0000011036 a19900723a19219999 ba0 afre aFR ar aa a 10aJournal officiel de la République française. Lois et décrets aPariscJournaux officielsd1921- aTable annuelle conservée avec le périodique aQuotidien 1aJournal officiel de la République française. Lois et décrets. Associations (0753-2156) < P 4°5065 >00aJournal officiel de la République française. Lois et décrets aLoisyFrancexPériodiques aDroityFrancexLégislationxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://lamyline.lamy.fr/content/Search.aspxzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.legifrance.gouv.fr/zAccès libre aux contenus des numéros à partir de 1990 sur Legifrance4 uhttp://www.lexeek.com/journal-officiel/zAccès libre au texte intégral à partir de 1947 sur Lexeek1 béd. en microfiches : 1921 --- >1989cParisdMagasinseP Mic F 3 aGEO RA4.06 France 01 aDEW 34801332nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000086001552100089002413260014003304300068003445300086004126010044004986060034005427120030005768560050006069550081006569570222007379920057009599920014010160000066844000006684420130319051555.01 a0378-7052 aFNSP310434 a0000066844 a19900101a19689999 f ba0 afre aLU aaaa 10aJournal officiel des Communautés européennes. C, Communications et informations aLuxembourgcOffice des publications officielles des Communautés européennesd1968- aQuotidien 1aJournal des Communautés européennes (0022-5479) < P 4°1116 >00aJournal officiel des Communautés européennes. C, Communications et informations02aCommunautés européennesxPériodiques aDroit européenxPériodiques02aCommunautés européennes4 uhttp://europa.eu.int/eur-lex/lex/fr/index.htm1 bEd. en microfiche de 1952 à 2002cParisdSalle de référenceeP Mic F (18)1 rLes tables annuelles sur papier sont conservées à partir de 1968 dans la Salle des collections. Egalement sous forme de microfiches de 1952 à 2001, avec l'année correspondante < PMic F (18) >, Salle de référence aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 341.200853nls 2200265 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001322000068001392100089002073260014002966010044003106060048003547120030004028010021004328010013004538560050004669920057005169920014005730000066801000006680120130319051555.01 a0378-7060 aFNSP310313 a0000066801 a19900101a19689999 f ba0 afre aLU10aJournal officiel des Communautés européennes. L, Législation aLuxembourgcOffice des publications officielles des Communautés européennesd1968- aQuotidien02aCommunautés européennesxPériodiques aDroit européenxLégislationxPériodiques02aCommunautés européennes 3aFRbCCN0017/5072 0aFRbFNSP4 uhttp://europa.eu.int/eur-lex/lex/fr/index.htm aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 341.201404cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200004700174210002400221326002500245326002600270326002700296326002900323530002500352606003000377606005300407801003000460801002300490801001300513802000700526856009500533856007100628856010800699856010800807955007000915972000900985992001200994058256679000048695020130617100238.01 a1464-8849 aissn14648849 a0000486950 a20010206a20009999k y0frey0103 ba0 aeng aGB a 0  aaiu 0uu 10aJournalismetheory, practice and criticism aLondoncSaged2000- a8 fois par anb2011- aBimestrielb2007-2010 aTrimestrielb2003-2006 a3 fois par anb2000-200210aJournalismb(London) aJournalismexPériodiques aJournalismexEtude et enseignementxPériodiques 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20010206 0aFRbFNSP a024 uhttps://acces-distant.sciences-po.fr/fork?http://www.sagepub.co.uk/journal.aspx?pid=105704 zContenu : sommaires et résumés depuis le vol.1, n°1, avril 20004 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (avr-2000) -....cParisdMagasins/AnnexeeP 8° 6649 aZSAB aDEW 07001071cas0 2200337 450 00100100000000200110001000500170002101100140003803500170005203500150006910000410008410100080012510200070013310500180014011000160015820000240017420700310019821000310022932600230026032600290028360600300031280100300034280100230037280200070039585601100040285601090051295500700062197200090069199200120070099200210071211463551X000115881620130319051556.01 a1751-2786 aissn17512786 a0001158816 a20070522a20079999k y0frey0103 ba0 aeng aGB ay 0  aaha 0uu 10aJournalism practice 0aVol. 1, no. 1 (Feb. 2007)- aAbingdoncRoutledged2007- aTrimestriel$d2009- a3 n°s par an$d2007-2008 aJournalismexPériodiques 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20070501 a024 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t762290976db=jour zContenu: sommaires, résumés des articles et texte intégral des n°s depuis le vol. 1 no. 1 (fev-2007)1 bvol. 1 no. 3 (oct-2007) -....cParisdMagasins/AnnexeeP 8° 7070 aZPAY aDEW 070 aGEO RQ Universel01492nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200009500163207002800258210003100286326002200317326002700339606003000366676000800396710005600404801001300460856005600473856007000529856010300599856010800702856010900810856010800919955007001027972000901097992001201106089938143000060297620140109121833.01 a1461-670X a0000602976 a a20009999 fre 01 ba0 aeng aGB a 0  ar aag z 0 10aJournalism studiesfpublished in cooperation with European Journalism Training Association 1aVol.1, n.1 (Feb. 2000)- aAbingdoncRoutledged2000- aBimestrielb2006- aTrimestrielb2000-2005 aJournalismexPériodiques a07002aAssociation européenne de formation au journalisme 0aFRbFNSP4 uhttp://www.tandf.co.uk/journals/titles/1461670X.asp zSommaires et résumés d'articles depuis le vol.1, n°1, Feb.20004 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=104721 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713393939db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 1 (fev-2004) -....cParisdMagasins/AnnexeeP 8° 6741 aZPAY aDEW 07001492nls 2200265 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281350018001342000045001522100044001972300005002413000079002463300740003256060047010656060022011128010013011348300008011478560071011550000583657000058365720130319051557.0 a0000583657 a d20049999k fre 01 0 afre aFR ay z y  az adr 10aJurisclasseurb[Ressource électronique] aPariscEditions du JurisClasseurd2004- a aConsultation : uniquement à partir des postes publics de la bibliothèque aLa base donne accès aux Encyclopédies JurisClasseur : 42 collections : textes, doctrine, formules, jurisprudence, bibliographies mises à jour régulièrement ; La Semaine Juridique : 8 dernières années 1995-2002 des 3 éditions (Générale, Entreprise et Affaires, Notariale et Immobilière) en texte intégral : les études doctrinales, les chroniques d'actualité, les commentaires et les sommaires de jurisprudence, les comptes rendus bibliographiques ; Jurisprudence : Copie d'arrêts : accès à plusieurs centaines de milliers de décisions issues des cours d'appel, complétées par des décisions significatives des tribunaux, aux décisions de la Cour de cassation, du Conseil d'État et des cours administratives d'appel aDroityFrancexJurisprudencexPériodiques aBases de données 0aFRbFNSP amfo4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.fr00851nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000058001502100034002082300024002423260005002666060054002718010013003258560085003388560108004239550005005319920025005369920012005610000969198000096919820130319051557.0 a0000969198 a a19979999k fre 01 ba0 afre aFR ar aaz z  adr 10aJurisprudence sociale Lamyb[Ressource électronique] aPariscLamyline Reflexc1997- aRevue électronique a aDroit socialyFrancexJurisprudencexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 34401141nas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200006100180207001600241210002500257300004900282326001100331606004000342606003100382676000800413710003400421801003000455801002300485802000700508856004500515856005300560955006600613955005300679992001100732992001200743136030920000117351820130319051557.01 a2101-8790 aissn21018790 a0001173518 a20090819a20099999k y0frey0103 ba0 afre aFR ay  ar aaku uu 10aJus politicumerevue de droit politiquefInstitut Villey 0aN°1 (2009) aPariscDallozd2009- aExiste en version électronique depuis 2008. aAnnuel aDroit constitutionnelxPériodiques aDroit publicxPériodiques a34202aInstitut Michel VilleycParis 3aFRbAbesc20090819gAFNOR 3aFRbISSNc20090617 a074 uhttp://www.juspoliticum.com/-Revue-.html4 zContenu : texte intégral du rapport depuis 20081 bLes 3 dernières annéescParisd30, Salle 3e étageeDEW 3421 b(2009) -....cParisdMagasins/AnnexeeP 8° 7102 aGEO RQ aDEW 34200976nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010018000951020007001131060006001201100016001261350018001422000151001602100075003112300024003866060040004106060047004506060040004978010013005378560033005508560065005839550005006489920012006539920021006650001159586000115958620130319051557.0 a0001159586 a a20089999k fre 01 ba0 afreaengager aFR ar aaz z  adr 10aJus politicumb[Ressource électronique]eRevue de droit politiqueeJournal of constitutional law and politicseZeitschrift für politisches Recht aVersaillescUniversité de Versailles Saint-Quentin-en-Yvelinesd2008- aRevue électronique aDroit constitutionnelxPériodiques aScience politiquexRecherchexPériodiques aPhilosophie politiquexPériodiques 0aFRbFNSP4 uhttp://www.juspoliticum.com/4 zContenu : texte intégral des articles depuis le no. 1, 20081 r aDEW 342 aGEO RQ Universel00890nls 2200241 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281350018001342000048001522100050002003300211002506060055004618010013005168300007005298560074005368560038006100000857308000085730820130319051559.0 a0000857308 a d20059999k fre 01 0 aeng aUS ay z y  az adr 10aKeesing's Onlineb[Ressource électronique] aWashington, D.C.cKeesing's Worldwided2005?- aAccès à toute la collection du Keesing's Record of World events depuis 1960 : interrogations thématiques ou chronologiques sur un pays, une organisation internationale, une personnalité, un événement. aHistoire universellez1945-....xBases de données 0aFRbFNSP adm4 uhttp://keesings.gvpi.net/keesings/lpext.dll?f=templates&fn=main-h.htm4 zConsultation : Campus Sciences Po01037nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000037001552100027001923260012002194300067002316060063002986060063003618560071004248560108004959550088006039720009006919920031007009920016007310000010318000001031820130319051559.01 a0950-6128 aFNSP118829 a0000010318 a19900628a19879999 ba0 aeng aGB aafu 10aKeesing's record of world events aLondoncLongmand1987- aMensuel 1aKeesing's contemporary archives (0022-9679) < P 4° 0594 bis > aHistoire universellez1970-1990xChronologiexPériodiques aHistoire universellez1990-....xChronologiexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.keesings.com/4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 33 ( 1987) - vol. 53 no 6 (jun -2007)cParisdMagasins/AnnexeseP 4° 0594 bis aZCAD aGEO RA4.02 Grande-Bretagne aDEW 900-90701015nas 2200289 i 450 002001100000005001700011011001400028035001500042100004100057101000800098102000700106110001600113200006100129210004200190326001100232430006600243517004400309607006200353710003900415856012200454955005500576972000900631991001800640992001600658992003500674992001600709000019178420140116164010.01 a0969-4838 aFNSP707783 a19900101a19909999 ba0 aeng aPH aaka 10aKey indicators of developing Asian and Pacific countries aManilacAsian Development Bankd1990- aAnnuel 1aKey indicators of developing member countries of ADBx116-30001 aKey indicators for Asia and the Pacific aAsiexConditions économiquesxStatistiquesxPériodiques02aBanque asiatique de développement4 uhttp://www.adb.org/publications/series/key-indicators-for-asia-and-the-pacificzAccés au texte intégral depuis 19991 b(1995) -(2012)cParisdMagasins/AnnexeeP 4° 6638 aZPAY aexempb201401 aGEO RH Asie aGEO RJ Océanie, Pacifique Sud aDEW 310-31900955nls 2200277 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200012400124210004200248230002400290326001100314517004400325607006200369710003900431801001300470856012200483955000500605992001600610992003500626992001600661000124460820130517102228.0 a a20129999k fre 01 ba0 aeng aPH ar aak z  adr 10aKey indicators of developing Asian and Pacific countriesb[Ressource électronique]fBanque asiatique de développement aManilacAsian Development Bankd2012- aRevue électronique aAnnuel12aKey indicators for Asia and the Pacific aAsiexConditions économiquesxStatistiquesxPériodiques02aBanque asiatique de développement 0aFRbFNSP4 uhttp://www.adb.org/publications/series/key-indicators-for-asia-and-the-pacificzAccés au texte intégral depuis 19991 r aGEO RH Asie aGEO RJ Océanie, Pacifique Sud aDEW 310-31900825nas 2200301 i 450 0010011000000020011000110050017000220110014000391000041000531010008000941020007001021050018001091060006001271100016001332000069001492100023002183260011002415320009002526060037002617100043002988010013003418560061003549550053004159720009004689910018004779920016004959920012005110000291561000029156120140117164634.01 a1728-4309 a a19999999k f fre ba0 aeng aCH a 0  ar aak i 0 10aKey indicators of the labour marketfInternational Labour Office aGenevacILOd1999- aAnnuel10aKILM aMarché du travailxPériodiques02aOrganisation internationale du travail 0aFRbFNSP4 uhttp://www.ilo.org/public/english/employment/strat/kilm/1 b(1999) -....cParisdMagasins/AnnexeeP 4° 6824 aZGRA aexempb201401 aDEW 310-319 aDEW 33100945nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210003300185326001100218530005200229606002400281606003100305710003600336801002100372856012400393955005400517972000900571991001800580992002100598992001200619036311278000000806720130705125137.01 a0075-6423 aFNSP113884 a0000008067 a19900101a19619999 ba0 aeng aJP aaku 10aKobe University law review aKobecKobe Universityd1961- aAnnuel aKobe University law review‎bInternational ed aDroitxPériodiques aDroityJaponxPériodiques02aKobe UniversitybFaculty of Law 3aFRbCCN0017/98924 uhttp://www.law.kobe-u.ac.jp/lawrev/mokuji.htmzAccès libre à une sélection d'articles en texte intégral depuis 19611 b(1961) - ....cParisdMagasins/AnnexeeP 8° 2031 aZGRA aexempb200908 aGEO RI3.22 Japon aDEW 34000888nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200006200138210004100200326001600241430004000257606004000297801002100337856003500358856007500393955006600468972000900534991001800543992002500561992001200586038740966000002643920130319051600.01 a0023-2653 aFNSP170380 a0000026439 a19900101a19559999 ba0 ager aDE10aKölner Zeitschrift für Soziologie und Sozialpsychologie aOpladencWestdeutscher Verlagd1955- aTrimestriel 1aKölner Zeitschrift für Soziologie aSociologieyAllemagnexPériodiques 3aFRbCCN0023-26534 uhttp://www.uni-koeln.de/kzfss/ zContenu : sommaires et résumés en allemand et en anglais depuis 19941 bvol. 7 no. 1 (1955) -....cParisdMagasins/AnnexeeP 8° 1007 aZGRA aexempb201101 aGEO RA5.01 Allemagne aDEW 30100905nas 2200277 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000024001412100030001653260017001954300028002125300024002406070046002646070061003108560045003719550069004169550087004859920039005729920016006110000268634000026863420130319051600.0 aFNSP929469 a0000268634 a19990323a19979999 ca0 arus aRU aa a 10aKommersant". Vlast' aMoskvacKommersantd1997- ahebdomadaire 1aKommersant

00aKommersant". Vlast' aRussiexCommerce extérieurxPériodiques aRussiexConditions économiquesz1991-....xPériodiques4 uhttp://www.kommersant.com/rus/weekly.htm1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 69141 bConservation limitée aux 5 dernières annéescParisdMagasins/AnnexeeP 4° 6914 aGEO RA7.21 Russie (depuis 1991-92) aDEW 380-38201077nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210004300176326001600219421004700235440004400282606004200326801002100368830010600389856006300495856006100558955008700619991001800706992001400724992002500738038741199000002647820130319051600.01 a0023-3498 aFNSP170793 a0000026478 a19900101b19542002 ba0 ager aDE aaga 10aKonjunkturpolitik aBerlincDuncker und Humblotd1954-2002 aTrimestriel 1aBeihefte der Konjunkturpolitik (0452-4780) 1tApplied economics quarterly,x1611-6607 aConjoncture économiquexPériodiques 3aFRbCCN0023-3498 avol. 1 no. 1 (1961) ---> vol 30 no. 6 (1984) < P 8° 1882 > collection donnée au CTL en juillet 20014 uhttp://www.diw.de/deutsch/publikationen/konjunkturpolitik/ zContenu : sommaires et résumés depuis le vol. 42, 19961 bvol. 31 no. 1/2 (1985) -vol. 48 no. 3/4 (2002)cParisdMagasins/AnnexeeP 8° 1882 aexempb200910 aDEW 330.9 aGEO RA5.01 Allemagne01121nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000180013921000560015732600230021332600230023660700390025971000620029880100210036085600600038185600590044195500700050095701670057097200090073799100180074699200290076499200140079301331257X000002620220131028124522.01 a0023-3900 aFNSP169879 a19900101a19619999 ba0 aeng aKR aahu 10aKorea journal aSeoulcKorean National Commission for Unescod1961- aTrimestrielb1991- aMensuelb1961-1990 aCorée (République)xPériodiques02aCoréec(République)bCommission nationale pour l'Unesco 3aFRbCCN0023-39004 uhttp://www.ekoreajournal.net/paper/service/bk_issue.jsp zContenu : texte intégral depuis le vol. 1 n° 1, 19611 bvol. 1 no. 3 (nov-1961) -....cParisdMagasins/AnnexeeP 8° 24641 b(1961) -(1981) ; (1981) -(1986) ; (1961) -(1991)cParisdMagasins/AnnexeeP Index 0373zvol. 35 (1995) -vol. 39 (1999): se trouve dans le vol. 34 no. 4 (Win-1999) aZGRA aexempb200908 aGEO RI3.13 Corée du Sud aDEW 951.901132nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210005500193326001500248606004400263607005000307710004900357856010900406856010800515955012700623991001800750992002900768992002100797992001200818040161153000007865420130319051600.01 a1016-3271 aFNSP353728 a0000078654 a19900101a19899999 ba0 aeng aKR aaja 10aKorean journal of defense analysis aSeoulcKorea Institute for Defense Analysisd1989- aSemestriel aRelations internationalesxPériodiques aCorée (République)xRelationsxPériodiques02aKorea Institute for Defense Analyses (Seoul)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t792815843db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 2 (1991) - vol. 9 no. 1 (1997) ; vol. 19 no. 1 (2007) -vol. 19 no. 4 (2007)cParisdMagasins/AnnexeeP 8° 5897 aexempb201201 aGEO RI3.13 Corée du Sud aGEO RQ Universel aDEW 32701014nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000047001502100005001972300024002023260014002266010033002406060029002736070041003028010013003438560192003568560108005489550005006569920039006619920012007000001131861000113186120130319051600.0 a0001131861 a a20059999k fre 01 ba0 arus aRU ar aaa z  adr 10aKrasnaâ zvezdab[Ressource électronique] a aRevue électronique aquotidien02aRussie. ArméexPériodiques aActualitéxPériodiques aRussiexForces arméesxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA7.21 Russie (depuis 1991-92) aDEW 05000834nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001100154210002500165300002600190326001600216530001800232601004500250606004400295676000800339856005100347955005900398972000900457991001800466992002200484992001400506039869024000002627920140110101413.01 a0994-2440 aFNSP170053 a0000026279 a19910304a19889999 ba0 afre aFR aaza 10aKrisis aPariscKrisisd1988- aN' a pas paru en 2007 aIrrégulier 0aKrisisbParis02aNouvelle droite françaisexPériodiques aPartis politiquesyFrancexPériodiques a3204 uhttp://www.alaindebenoist.com/pages/krisis.php1 bno. 1 (1988) -....cParisdMagasins/AnnexeeP 8° 5191 aZPAY aexempb201106 aGEO RA4.06 France aDEW 320.500856nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000210015421000300017532600160020560600350022180100210025685600510027785601000032895500740042897200090050299100180051199200250052999200120055403874175X000002647520130319051600.01 a0023-4834 aFNSP170788 a0000026475 a19900101a19689999 ba0 ager aDE aaha 10aKritische Justiz aBaden-BadencNomosd1968- aTrimestriel aDroityAllemagnexPériodiques 3aFRbCCN0023-48344 uhttp://www.kj-online.de/kjneu/kjneu_zeit.lasso zContenu : sommaires et abstracts depuis le n°2, 1999, texte intégral des années 2002 à 20041 bvol. 8 no. 3 (jan/mar-1975) -....cParisdMagasins/AnnexeeP 8° 3553 aZPAY aexempb200911 aGEO RA5.01 Allemagne aDEW 34900783nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001100154210004200165326001600207606003700223801002100260856007000281856006300351955008200414972000900496992001200505038742209000002629220131202105249.01 a0023-5962 aFNSP170091 a0000026292 a19900101a19479999 ba0 aeng aCH aahu 10aKyklos aBaselcHelbing und Lichtenhahnd1947- aTrimestriel aEconomie politiquexPériodiques 3aFRbCCN0023-59624 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=00235962 zContenu : sommaires depuis le vol. 50, n°1, février 19971 bvol. 1 no. 1 (1947) -vol. 65 no. 4 (2012)cParisdMagasins/AnnexeeP 8° 0954 aZPAY aDEW 33001293cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200007800162207002600240210010700266210006500373326001500438430004900453606004400502607004900546710004900595801003000644801002300674802000700697856004300704856005900747955007100806972000900877992002100886992001200907089844181000104758920130319051601.01 a1349-6786 aissn13496786 a0001047589 a20050223a20049999k y1frey0103 ba0 aeng aJP ar aaju uu 14aThe Kyoto economic reviewfKyoto University. Graduate School of Economics 1aVol. 73 no. 1 (2004)- aKyotocOffice of Advanced Economic Analysis, Graduate School of Economics, Kyoto Universityd2004-2007 aKyotocGraduate School of Economics, Kyoto Universityd2008- aSemestriel 1tKyoto University economic review,x0023-6055 aEconomie politiqueyJaponxPériodiques aJaponxConditions économiquesxPériodiques02aGraduate School of Economicsc(Kyoto, Japon) 3aFRbAbesc20060106gAFNOR 3aFRbISSNc20050901 a094 uhttp://www.jstage.jst.go.jp/browse/ker zContenu : texte intégral depuis le vol.73, n°1, 20041 bvol. 73 no. 1 (jun-2004) -....cParisdMagasins/AnnexeeP 8° 1059 aZGRA aGEO RI3.22 Japon aDEW 33801168nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002600139210006700165326001600232452005000248530002600298606003100324710006900355801002100424856023300445955007100678957007800749972000900827991001800836992001200854039102262000002670120131011161744.01 a0160-449X aFNSP171303 a19900101a19769999 ba0 aeng aUS aaha 10aLabor studies journal aNew Brunswick, N.J.cTransaction Periodicals Consortiumd1976- aTrimestriel 1ttLabor studies journal (Online)‎x1538-975800aLabor studies journal aSyndicalismexPériodiques02aUniversity and College Labor Education Associationc(Etats-Unis) 3aFRbCCN0160-449X4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=LSJ&site=ehost-livezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 10 no. 3 (hiv-1986) -....cParisdMagasins/AnnexeeP 8° 50231 bvol. 1 (1976) -vol. 19 (1995)zse trouve dans le vol. 20 no. 2 (ete-1995) aZSAB aexempb201106 aDEW 33101132nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101001300108102001100121105001800132106000600150110001600156200002400172210010100196326001800297326002600315606004400341607002500385710004300410711015200453801001300605856004900618856004800667955006800715972000900783992001400792058818057000045552620131010162147.01 a1627-9204 a0000455526 a a20019999k fre ba0 afreaita aFRbIT a 0  ar aak z 0 10aLaboratoire italien aLyoncAssociation Laboratoire italiencENS édaFirenzecLibreria Leggere per [diffuseur]d2001- aAnnuelb2002- aSemestrielb2001-2001 aScience politiqueyItaliexPériodiques aItaliexPériodiques02aAssociation Laboratoire italien (Lyon)02aCentre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités)c(Talence, Gironde) 0aFRbFNSP4 uhttp://www.jus.unitn.it/labo/revue/home.html zSommaires et résumés depuis le n°1, 20011 bno. 1 (2001) -no. 12 (2012)cParisdMagasins/AnnexeeP 8° 6620 aZCAD aDEW 320.501465cas0 2200361 450 001001000000002001100010005001700021035001500038100004100053101001300094102000700107105001800114110001600132200012800148207001400276210003500290301006400325301004900389302012000438326001800558510003800576517005200614530004200666606002900708606003600737710007300773801003000846856004000876856007600916955005900992992004001051992001201091139787135000119120620130319051602.0 a0001191206 a20100114a20099999k y0frea50 ca0 arusaeng aRU ay 0  aaiu 0 10aLaboratoriumežurnal socialʹnyh issledovanij =dRussian review of social researchfCenter for independent social research 0a1 (2009)- aSankt-Peterburgc[CNSI]d2009- aDemande de numérotation ISSN en cours par le CR28 20100208 aISSN figurant sur la publication : 2076-8214 aTexte bilingue russe/anglais (les articles en anglais sont des traductions abrégées ou non des articles en russe) a3 n°s par an10aRussian review of social research10aLaboratoriumeRussian review of social research10aLaboratoriumb(Sankt-Peterburg. 2009) aSociologiexPériodiques aSciences socialesxPériodiques02aCenter for independent social researchc(Saint-Pétersbourg, Russie) 3aFRbAbesc20100208gAFNOR4 uhttp://www.soclabo.org/eng/journal/ zContenu: sommaires, résumés et texte intégral depuis le no. 1 (2009)1 bno. 1 (2009) -....cParisdMagasins/AnnexeeP 8° 7136 aGEO RA7. 21 Russie (depuis 1991-92) aDEW 30101094nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006400139210003900203210004000242326002300282326002800305452004000333530003600373606004200409606003800451710003300489856007200522856004900594955008600643972000900729991001800738992001200756036255947000002676720131202131819.01 a1121-7081 aFNSP171465 a19910308a19879999 ba0 amul aIT aaha 10aLabourereview of labour economics and industrial relations aRoma‎cWiley-Blackwell‎d1999-1 aRomacE & L Publicationsd1987-1998 aTrimestrielb1998- a3 nos par anb1987-1997 1tLabour (Oxford. Online),x1467-991410aLabour‎bRoma. Testo stampato aRelations industriellesxPériodiques aEconomie du travailxPériodiques02aFondazione Giacomo Brodolini4 uhttp://www.blackwellpublishing.com/journal.asp?ref=1121-7081&site=1 zContenu : sommaires et résumés depuis 19871 bvol. 1 no. 1 (1987) -vol. 26 no. 4 (dec-2012)cParisdMagasins/AnnexeeP 8° 5093 aZPAY aexempb201106 aDEW 33101366nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210007600185326001500261437005000276517003300326607007200359710007700431801002100508856012800529856010800657955013000765957007100895991001800966992004200984992001401026039671437000002677320130319051602.0 a0706-1706 aFNSP171474 a0000026773 a19900101a19799999 ba0 amul aCA aaja 10aLabour capital and society aaMontrealcCentre for Developing-Area Studies, McGill Universityd1979- aSemestriel 1aManpower and unemployment researchx0702-760510aTravail capital et société aPays en voie de développementxPolitique économiquexPériodiques02aCentre d'études sur les régions en développementc(Montréal, Canada) 3aFRbCCN0706-17064 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=3ZB&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 16 no. 1 (1983) -vol. 22 no. 2 (1989) ; vol. 25 no. 1 (1992) -vol. 31 no. 1/2 (1998)cParisdMagasins/AnnexeeP 8° 46941 bvol. 1 (1968) -vol. 8 (1985)cParisdMagasins/AnnexeeP Index 0630 aexempb201010 aGEO RO Pays en voie de développement aDEW 338.900881nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000035001552100028001903260018002186070072002366070058003086760010003668560039003768560053004159550070004689720009005389920032005479920012005790000013472000001347220130319051602.01 a0141-7746 aFNSP135027 a0000013472 a19900924b19772003 ba0 aeng aGB aaiu 10aLabour focus on Eastern Europe aOxfordcBergd1977-2003 a3 n°s par an aEurope de l'EstxPolitique et gouvernementz1989-....xPériodiques aEurope de l'EstxRelations extérieuresxPériodiques a943.74 uhttp://www.gn.apc.org/labourfocus/ zContenu : sommaires depuis le vol. 1, n°1, 19771 bno. 1 (1990)-no. 75/76 (2003)cParisdMagasins/AnnexeeP 4° 5941 aZPAY aGEO RA2.02 Europe orientale aDEW 94701304nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200012400154210002300278300005600301326001100357430003400368510004100402606006600443710009500509856012300604856010800727955007900835972000900914992005100923992001600974032923473000007724420130319051602.01 a0474-5515 aFNSP350227 a0000077244 a19900101a196X9999 f ba0 amul aFR aaka 10aLabour force statisticsd= Statistiques de la population activefOrganisation for Economic Co-operation and Development aPariscOCDEd196X- aChaque volume regroupe 10 ou 20 ans de statistiques aAnnuel 1aStatistiques de main d'oeuvre10aStatistiques de la population active aPopulation activeyPays de l'OCDExStatistiquesxPériodiques02aOrganisation de coopération et de développement économiquesbDirection des statistiques4 uhttps://acces-distant.sciences-po.fr/fork?http://titania.sourceocde.org/vl=1504601/cl=20/nw=1/rpsv/outlook_annuals.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1950/1962) ; (1962/1982) -(1986/2006)cParisdMagasins/AnnexeeP 4° 5219 aZPAY aGEO RN1 Pays industrialisés, pays occidentaux aDEW 310-31901067nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005100163210004000214326001700254517005100271530002800322606003600350801001300386856003400399856008900433856010800522955007200630972000900702991001800711992001200729040604217000048280120131008114237.01 a1288-6289 a0000482801 a a19989999k fre ba0 afre aFR a 0  ar aai z 0 10aLabyrintheela revue des étudiants chercheurs aPariscMaisonneuve et Larosed1998- a3 nos par an10aLabyrintheela revue des étudiants-chercheurs10aLabyrinthebParis. 1998 aSciences socialesxPériodiques 0aFRbFNSP4 uhttp://labyrinthe.revues.org/4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-labyrinthe.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (aut-1998) -no. 34 (2010)cParisdMagasins/AnnexeeP 8° 6643 aZPAY aexempb201212 aDEW 30000828nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000046001502100034001962300024002303260005002546060043002598010013003028560085003158560108004009550005005089920025005139920012005380000969220000096922020130319051602.0 a0000969220 a a19979999k fre 01 ba0 afre aFR ar aaz z  adr 10aLamy assuranceb[Ressource électronique] aPariscLamyline Reflexc1997- aRevue électronique a aAssurancexDroityFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 34600939nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000076001502100034002262300024002603260005002846060046002896060042003358010013003778560085003908560108004759550005005839920025005889920012006139920012006250000969197000096919720130319051602.0 a0000969197 a a19979999k fre 01 ba0 afre aFR ar aaz z  adr 10aLamy droit de l'informatique et des réseauxb[Ressource électronique] aPariscLamyline Reflexc1997- aRevue électronique a aInformatiquexDroityFrancexPériodiques aInternetxDroityFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 346 aDEW 00400836nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000053001502100034002032300024002373260005002616060044002668010013003108560085003238560108004089550005005169920025005219920012005460000969218000096921820130319051602.0 a0000969218 a a19979999k fre 01 ba0 afre aFR ar aaz z  adr 10aLamy droit immobilierb[Ressource électronique] aPariscLamyline Reflexc1997- aRevue électronique a aImmobilierxDroityFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 34600846nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000055001502100034002052300024002393260005002636060052002688010013003208560085003338560108004189550005005269920025005319920012005560000969216000096921620130319051602.0 a0000969216 a a19979999k fre 01 ba0 afre aFR ar aaz z  adr 10aLamy protection socialeb[Ressource électronique] aPariscLamyline Reflexc1997- aRevue électronique a aSécurité socialexDroityFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 34400895nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000082001502100034002322300024002663260005002906060050002958010013003458560085003588560108004439550005005519920025005569920012005819920012005930000969217000096921720130319051602.0 a0000969217 a a20019999k fre 01 ba0 afre aFR ar aaz z  adr 10aLamy prud'hommesejugements prud'homaux commentésb[Ressource électronique] aPariscLamyline Reflexc2001- aRevue électronique a aConseils de prud'hommesyFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 344 aDEW 33100833nls 2200265 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000046001502100034001962300035002306060043002658010013003088560085003218560108004069920025005149920012005399920016005510000969221000096922120130319051602.0 a0000969221 a a19979999k fre 01 ba0 afre aFR ar aaz z  adr 10aLamy transportb[Ressource électronique] aPariscLamyline Reflexc1997- aRevue électronique en 3 tomes aTransportxDroityFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aGEO RA4.06 France 01 aDEW 346 aDEW 383-38901497cls0 2200349 450 001001000000002001100010005001700021035001600038035001500054100004100069101000800110102000700118106000600125110001600131135001800147200005100165210002700216215000500243230002100248330034300269606006000612606005900672606005300731606005400784712002000838801003000858801003000888801003100918830000700949856011200956856007901068055476023000076995720130319051602.0 aocm46592096 a0000769957 a20010326a20009999 y0frey0103 ba0 afre aFR az aau x  adr 00aLamylineb[Ressource électronique]féd. Lamy a[Paris]cLamyd[2000]- a aService en ligne aAccès au fonds documentaire Lamy mis à jour en continu : le fonds officiel (textes officiels nationaux et communautaires, Traités, jurisprudence de droit privé, jurisprudence de droit public, jurisprudence européenne, autorités administratives), les ouvrages et les revues Lamy. Possibilité de recevoir une newsletter hebdomadaire. aDroityFrancexJurisprudencexBases de données2rameau aDroityFrancexLégislationxBases de données2rameau aDroit européenxLégislationxBases de données aDroit européenxJurisprudencexBases de données02aLamy SA (Paris) 3aFRbAbesc20050314gAFNOR 1aUSbOCLCc20050314gAACR2 2aFRbAUROCc20050314gAFNOR adm uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/lamy/AccesBis.htm?acces=KoEjMqEjBeKq zConsultation : uniquement à partir des postes publics de la Bibliothèque01080nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210005600198326001600254430005800270606003000328606003900358801002100397856009000418856010800508955008300616991001800699992002100717992001600738992001200754038743035000002739220130319051603.01 a0023-7639 aFNSP173983 a0000027392 a19900101a19489999 ba0 aeng aUS aaha 10aLand economicsfUniversity of Wisconsin aMadison, Wis.cUniversity of Wisconsin Pressd1948- aTrimestriel 1tJournal of land & public utility economicsx1548-9000 aAgriculturexPériodiques aDéveloppement ruralxPériodiques 3aFRbCCN0023-76394 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00237639.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 39 no. 1 (1963) -vol. 70 no. 4 (1994)cParisdMagasins/AnnexeeP 8° 1997 aexempb201001 aGEO RQ Universel aDEW 338.1-3 aDEW 33300953nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210002700175326001600202606003100218801002100249856002600270856003700296856008700333856010800420955008500528972000900613991001800622992001100640039608085000005391820130527155828.01 a0458-726X aFNSP255162 a0000053918 a19900101a19669999 ba0 afre aFR aahu 10aLangages (Paris) aPariscLaroussed1966- aTrimestriel aLinguistiquexPériodiques 3aFRbCCN0458-726X4 uhttp://www.persee.fr/ zAccès libre au texte intégral.4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-langages.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 6 no. 23 (sep-1971) -no. 188 (dec-2012)cParisdMagasins/AnnexeeP 8° 2980 aZPAY aexempb201106 aDEW 4100855nas 2200265 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000037001502100027001873260017002146060046002317020044002778010013003218560145003349450017004799550081004969920012005770000472432000047243220130319051603.0 a0000472432 a b18681869k fre ba0 afre aFR a 0  ar aac z 0 13aLa Lanternefpar Henri Rochefort aPariscs.n.d1868-1869 ahebdomadaire aSatire politique françaisexPériodiques 1aRochefortbHenrif(1831-1913 ;cpseud.) 0aFRbFNSP4 uhttp://gallica.bnf.fr/ark:/12148/cb32805103j/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1868-1869) bA.0346(1968)1 bn° 1, 30 mai 1868 --> n° 16, 11 sept. 1868cParisdMagasins/AnnexeeA.0346 aDEW 05001591cas0 2200445 450 001001000000002001100010005001700021011001400038035001400052035001400066035001700080035001700097035001500114035001500129100004100144101000800185102000700193105001800200110001600218200003100234207002800265210003100293215002400324305024400348320008200592326001200674517002100686530003100707531002600738702003400764702003200798801003000830801001800860801002300878802000700901856013300908955005501041991002001096991002901116038430665000110937320130319051603.0 a0996-0120 a070597251 a04809143X accn0996-0120 aissn09960120 asib0383501 a0001109373 a19911204b19071957 y0frey0103 ba0 afre aFR ay 0  aaf 0 10aLarousse mensuel illustré 0aT.1 (1907)- T.14 (1957) aPariscLaroussed1907-1957 a14 volcill.d32 cm aPublication suspendue avec le n°399 (1940, mai) ; reprend avec le n°401 (1948, janvier). - Le n°400 a paru rétrospectivement en 1951 sous le titre de : "La Seconde guerre mondiale : numéro spécial du Larousse mensuel de 1939 à 1947" aTables : 1907-1922 ; 1907-1925 ; 1907-1928 ; 1907-1931 ; par volume 1932-1957 aMensuel10aLarousse mensuel00aLarousse mensuel illustré 0aLarousse mens. illus. 1aAugébClaudef1854-19244651 1aAugébPaulf1881-19514651 3aFRbAbesc20061006gAFNOR 3aFRbSFgAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/cb344251204/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 b(1907) -(1957)cParisdMagasins/AnnexeeP 4° 0373 aPériobTP01 P4 anumer0 (lacunes gallica)01135cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200005100180207003400231210006200265326001600327430002000343517004500363606005400408607003500462710003900497801003000536801002300566802000700589856006600596955007100662992002800733992001200761093710291000117938620130319051603.01 a0890-7218 aissn08907218 a0001179386 a19831012a19839999k y0frey0103 ba0 aeng aUS ay 0  ar aaha 0uu 10aLASA forumfLatin American Studies Association 0aVol. 14, no. 2 (summer 1983)- aPittsburgh, PAcLatin American Studies Associationd1983- aTrimestriel 1tLASA newsletter10aLatin American Studies Association forum aSciences socialesyAmérique latinexPériodiques aAmérique latinexPériodiques10aLatin American Studies Association 3aFRbAbesc20090617gAFNOR 3aFRbISSNc20090617 a014 uhttp://lasa.international.pitt.edu/fra/about/publications.asp1 bvol. 39 no. 1 (hiv-2008) -....cParisdMagasins/AnnexeeP 4° 7262 aGEO RD Amérique latine aDEW 98001227cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101001800125102000700143105001800150110001600168200002700184210005700211326002200268430006400290440005200354607003500406710008500441801003000526801002300556802000700579856008600586856010800672955006900780992002800849992001200877067796214000114835220130319051604.01 a1619-1684 aissn16191684 a0001148352 a20020530a20029999k y0frey0103 ba0 ageraengaspa aDE ay  aaia 10aLateinamerika-Analysen aHamburgcInstitut für Iberoamerika-Kunded2002-2008 aTrois n°s par an 1tLateinamerika (Institut für Iberoamerika-Kunde)x0176-2818 1tJournal of politics in Latin Americax1866-802X aAmérique latinexPériodiques02aGerman Institute of Global and Area Studies, Institute of Latin American Studies 3aFRbAbesc20080811gAFNOR 3aFRbISSNc20020530 a064 uhttp://www.giga-hamburg.de/index.php?file=z_la_analysen.html&folder=publikationen zContenu : résumés en anglais, espagnol et allemand depuis 2006, articles en texte intégral 2002-20041 bno. 16 (2007) -no. 21 (2008)cParisdMagasins/AnnexeeP 8° 7042 aGEO RD Amérique latine aDEW 98001328nas 2200361 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000320015421000380018632600220022432600270024660600540027360700350032767600080036280100210037085600900039185601080048185600700058985601080065995500660076795500660083397200090089999100180090899200280092699200120095403889856X000002688420130319051604.01 a0094-582X aFNSP172236 a0000026884 a19900101a19749999 ba0 aeng aUS aaga 10aLatin American perspectives aNewbury Park, Calif.cSaged1974- aBimestrielb1997- aTrimestrielb1974-1996 aSciences socialesyAmérique latinexPériodiques aAmérique latinexPériodiques a980 3aFRbCCN0094-582X4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0094582X.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://lap.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9801 bvol. 1 no. 1 (1974) -....cParisdMagasins/AnnexeeP 8° 3549 aZSAB aexempb200911 aGEO RD Amérique latine aDEW 98001558nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004000163207003400203210010300237326001600340430007100356607005800427607005800485607002800543710005700571801001300628856012800641856010800769856009000877856010800967955006701075972000901142992002101151992001201172059340762000040531720140108160453.01 a1531-426X a0000405317 a a20019999k fre ba0 aeng aUS a 0  ar aah z 0 10aLatin American politics and society 1aVol. 43, no. 1 (spring 2001)- aCoral GablescUniversity of Miami, School of International StudiescLynne Rienner Publishersd2001 aTrimestriel 1tJournal of interamerican studies and world affairsxISSN 0022-1937 aAmérique latinexRelationsyEtats-UnisxPériodiques aEtats-UnisxRelationsyAmérique latinexPériodiques aAmériquexPériodiques02aSchool of International Studies (Coral Gables, Fla.) 0aFRbFNSP uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=FSZ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/1531426X.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 43 no. 1 (2001) -....cParisdMagasins/AnnexeeP 8° 2185 aZSAB aGEO RB Amérique aDEW 98001112nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210003400189326001800223606005400241710004000295801002100335856009000356856010800446856005400554856004500608955006600653972000900719991001800728992002800746992001200774038743272000002756120140108160547.01 a0023-8791 aFNSP174258 a0000027561 a19900101a19659999 ba0 aeng aUS aaia 10aLatin American research review aAlbuquerque, N.McLARRd1965- a3 n°s par an aSciences socialesyAmérique latinexPériodiques02aLatin American Research Association 3aFRbCCN0023-87914 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00238791.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po uhttp://lasa.international.pitt.edu/LARR/index.asp zcontenu : sommaire des derniers numéros1 bvol. 1 no. 1 (1965) -....cParisdMagasins/AnnexeeP 8° 2200 aZSAB aexempb201105 aGEO RD Amérique latine aDEW 98001178nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200001900163207002900182210004300211320002300254326002300277326002900300606005400329607003500383607006200418801001300480856010800493856010800601955007000709972000900779992002800788992001200816089938976000061566420130319051604.01 a1476-3435 a0000615664 a a20039999 fre 01 ba0 aeng aGB a 0  ar aai z 0 10aLatino studies 1aVol.1, n°1 (2003, mar)- aBasingstokecPalgrave Macmilland2003- aISSN non vérifié aTrimestriel$d2006- a3 n°s par an$d2003-2005 aSciences socialesyAmérique latinexPériodiques aAmérique latinexPériodiques aAmérique latinexPolitique et gouvernementxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.palgrave-journals.com/lst/journal/v1/n3/index.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-2003) -....cParisdMagasins/AnnexeeP 8° 6733 aZSAB aGEO RD Amérique latine aDEW 98000857nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002100139210002700160326001600187530002100203606004300224856007600267856003600343955007000379957005700449972000900506991001800515992002200533992001200555036253162000005425220131003160027.01 a1120-947X aFNSP255917 a19900101a19879999 ba0 aita aIT aaha 00aLavoro e diritto aBolognacMulinod1987- aTrimestriel aLavoro e diritto aDroit du travailyItaliexPériodiques4 uhttp://www.mulino.it/edizioni/riviste/scheda_rivista.php?issn=1120-947X zSommaires depuis le no. 1, 19901 bvol. 1 no. 1 (jan-1987) -....cParisdMagasins/AnnexeeP 8° 50891 b(1987) -(2006)cParisdMagasins/AnnexeeP Index 0869 aZPAY aexempb201106 aGEO RA6.03 Italie aDEW 34401027nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001700154210002900171326001600200430003800216606003700254606002400291710006100315856012800376856010800504955007000612972000900682991001800691992001600709039319164000002691220130319051604.01 a0265-8240 aFNSP172289 a0000026912 a19910311a19849999 ba0 aeng aUS aaha 10aLaw & policy aOxfordcBlackwelld1984- aTrimestriel 1aLaw & policy quarterlyx0164-0267 aPolitique publiquexPériodiques aDroitxPériodiques02aBaldy Center for Law and Social Policyc(Buffalo, N. Y.)4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=LPL&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 6 no. 1 (jan-1984) -....cParisdMagasins/AnnexeeP 8° 4343 aZSAB aexempb201104 aDEW 350-35400735nas 2200253 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210004300181326001600224440002800240517002900268801003000297801002300327856007100350955006000421036943002000110667820130319051604.01 a0164-0267 aFNSP172238 a0000026885 a19900101b19791983 ba0 aeng aUS aaha 10aLaw & policy quarterly aBeverly Hills, Calif.cSaged1979-1983 aTrimestriel 1aLaw & policyx0265-824010aLaw and policy quarterly 3aFRbAbesc20051124gAFNOR 3aFRbISSNc200510214 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0265-82401 bvol. 6 no. 1 (1984)cParisdMagasins/AnnexeeP 8° 434300693nas 2200229 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002700139210004300166326001600209440002800225517002900253801002100282856007100303955008900374036943002000002688520130313085516.01 a0164-0267 aFNSP172238 a19900101b19791983 ba0 aeng aUS aaha 10aLaw & policy quarterly aBeverly Hills, Calif.cSaged1979-1983 aTrimestriel 1aLaw & policyx0265-824010aLaw and policy quarterly 3aFRbCCN0164-02674 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0265-82401 bvol. 2 no. 4 (oct-1980) -vol. 5 no. 4 (oct-1983)cParisdMagasins/AnnexeeP 8° 434301171nls 2200325 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000052001642100044002162300024002603260016002846060036003006060024003368010013003608560090003738560108004638560128005718560108006999550005008079920021008129920012008330001061824000106182420130319051604.01 a1545-696X a0001061824 a a19889999k fre 01 ba0 aeng aUS ar aah z  adr 10aLaw & social inquiryb[Ressource électronique] aChicagocAmerican Bar Foundationd1988- aRevue électronique aTrimestriel aSciences socialesxPériodiques aDroitxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/08976546.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=3Z0&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RQ Universel aDEW 30001256nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210002800179326001600207517002700223606003100250606002400281710004900305801002100354856009000375856010800465856012800573856010800701955007000809972000900879991001800888992001200906038743566000002680720130319051604.01 a0023-9216 aFNSP171537 a0000026807 a19900101a19669999 ba0 aeng aUS aaha 10aLaw & society review aAmherst, MAcLSAd1966- aTrimestriel10aLaw and society review aDroit socialxPériodiques aDroitxPériodiques02aLaw and Society Associationc(Chigago, Ill.) 3aFRbCCN0023-92164 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00239216.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=LSR&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (nov-1966) -....cParisdMagasins/AnnexeeP 8° 2614 aZSAB aexempb201105 aDEW 34001223nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003400139210005500173326001600228452005700244530003400301606005200335606005700387710005100444801002100495830005300516856019500569955007100764972000900835991001800844992002300862992001200885038743507000002739320130930121604.01 a0023-9186 aFNSP173986 a19900101a19339999 ba0 aeng aUS aaha 10aLaw and contemporary problems aDurham, N.C.cDuke University School of Lawd1933- aTrimestriel 1tLaw and contemporary problems (Online)‎x1945-232200aLaw and contemporary problems aDroit constitutionnelyEtats-UnisxPériodiques aDroit international privéyEtats-UnisxPériodiques02aDuke Universityc(Durham, N.C.)bSchool of Law 3aFRbCCN0023-9186 a1950-2010 : collection envoyée au Ctles en 20134 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00239186.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 15 no. 1 (hiv-1950) -....cParisdMagasins/AnnexeeP 4° 2097 aZSAB aexempb201305 aGEO RC2 Etats-Unis aDEW 34200987nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210002700179326001600206606002400222801002100246856005300267856005700320955006600377957016900443972000900612992002100621992001200642992003100654038743604000002678020130319051605.01 a0023-933X aFNSP171486 a0000026780 a19900101a18859999 ba0 aeng aGB aaha 10aLaw quarterly review aLondoncStevensd1885- aTrimestriel aDroitxPériodiques 3aFRbCCN0023-933X4 uhttp://193.118.187.160/contents.nsf/lqr?OpenView zContenu : sommaires depuis le vol. 114, janvier 19981 bvol. 101 (jan-1985) -....cParisdMagasins/AnnexeeP 8° 00501 bvol. 1(1885) -vol. 80 (1964) ; vol. 1 (1885) -vol. 90 (1974) ; vol. 1 (1885) -vol. 100 (1984) ; vol. 1 (1885) -vol. 111 (1995)cParisdMagasins/AnnexeeP Index 0215 aZPAY aGEO RQ Universel aDEW 340 aGEO RA4.02 Grande-Bretagne00803nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000055001502100005002053000073002103260016002833360056002993370017003556070034003726070026004068010013004328560031004459920023004769920014004990000405093000040509320130319051605.0 a0000405093 a a19989999k fre 01 ba0 afre aFR az aay z  adr 10aLe Courrier des Balkansb[Ressource électronique] a aTraduction d'articles de la presse est-européenne depuis août 1998 airrégulier aDonnées textuelles accessibles uniquement en ligne aFichiers HTM aEurope de l'EstxPériodiques aBalkansxPériodiques 0aFRbFNSP4 uhttp://www.balkans.eu.org/ aGEO RA8.01 Balkans aDEW 949.600987nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210004900183326001400232421008800246440003400334517003800368606003900406676000800445856002900453856005500482955009000537972000900627992002500636992001200661040479595000019686920130319051607.01 a1271-1802 aFNSP722415 a0000196869 a19900101b19962001 ba0 afre aFR aaea 00aLégi social. Actualité aPariscPublications fiduciairesd(1996-2001) aBimensuel 1aLégi social. Dossiers < P 8°3190 bis > et Légi social. Supplément < P 8°3190 > 1tRF social. Revue d'actualité10aLa Revue fiduciaire. Légi social aDroit socialyFrancexPériodiques a3444 uhttp://www.GroupeRF.com/ zContenu : sommaires depuis le n°55, novembre 19981 bno. 1 (1er/15 mai-1996) -no. 116 (16/31 jul-2001)cParisdMagasins/AnnexeeP 8° 6270 aZPAY aGEO RA4.06 France 01 aDEW 34401026nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210004700181326001200228422004500240437004000285440004800325606003900373856002900412856005600441955008500497957005400582972000900636991001800645992002500663992001200688040479609000020048920130319051607.01 a1271-1810 aFNSP731810 a0000200489 a19900101b19962001 ba0 afre aFR aafa 10aLégi social.iDossier aPariscPublications fiduciairesd1996-2001 aMensuel 1tLégi social. ActualitéxISSN 1271-1802 1aLégi social (1973)xISSN 0223-4726 1tRF social. Cahier juridiquexISSN 1630-3873 aDroit socialyFrancexPériodiques4 uhttp://www.GroupeRF.com/ zContenu : sommaires depuis le n°284, novembre 19981 bno. 258 (mai-1996) -no. 314 (juin- 2001)cParisdMagasins/AnnexeeP 8° 3190 bis1 b(1988-1997)cParisdMagasins/AnnexeeP Index 0801 aZPAY aexempb201210 aGEO RA4.06 France 01 aDEW 34401375nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210006800188326001600256601003900272607005600311710006300367801002100430856003000451856007600481856009000557856010800647955006300755957014500818972000900963991001800972992002300990992001201013039509893000002646920130319051607.01 a0362-9805 aFNSP170776 a0000026469 a19900101a19769999 ba0 aeng aUS aahu 10aLegislative studies quarterly aIowa City, IowacComparative Legislative Research Centerd1976- aTrimestriel02aEtats-UnisbCongressxPériodiques aEtats-UnisxPolitique et gouvernementxPériodiques02aComparative Legislative Research Centerc(Iowa City, Iowa) 3aFRbCCN0362-98054 uhttp://www.uiowa.edu/lsq/ zContenu : sommaires et résumés depuis le vol. 21, n°1, février 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03629805.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (fev-1976) -....cParisdMagasinseP 8° 37941 bvol. 1 (1976) -vol. 20 (1995)cParisdMagasinseP Index 0783zCet index se trouve sur une disquette à demander au service des périodiques. aZSAB aexempb200912 aGEO RC2 Etats-Unis aDEW 32801260nas 2200349 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200004000148210004400188300007800232326001600310452006100326530004000387601004900427601007000476606003800546606004300584710006500627801001300692856004700705856007000752955006700822972000900889992001200898013797298000048705020130902171623.01 a0922-1565 a a19889999k fre ba0 aeng aNL a 0  ar aah z 0 10aLeiden journal of international law aLeidencKluwer Law Internationald1988- anouvelle adresse bibliographique : Cambridge : Cambridge University Press aTrimestriel 1tLeiden journal of international law (Online),x1478-9698 aLeiden journal of international law02aCour internationale de justicexPériodiques02aTribunal pénal international pour l'ex-YougoslaviexPériodiques aDroit internationalxPériodiques aTribunaux internationauxxPériodiques02aRijksuniversiteit te LeidenbFaculteit der rechtsgeleerdheid 0aFRbFNSP4 uhttp://www.kluweronline.com/issn/0922-1565 zsommaires et résumés des articles depuis le vol.13, n° 1, 20001 bvol. 12 no. 4 (1999) -....cParisdMagasins/AnnexeeP 8° 6648 aZSAB aDEW 34100862nas 2200253 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210004000175326001600215606003800231801002100269856010900290856010800399955009000507992001100597039095797000002648820130319051607.01 a0149-0400 aFNSP170820 a0000026488 a19900101a19779999 ba0 aeng aUS aahu 10aLeisure sciences aNew YorkcTaylor and Francisd1977- aTrimestriel aLoisirsxSociologiexPériodiques 3aFRbCCN0149-04004 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713773100db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 6 no. 1 (1983) -vol. 21 no. 4 (oct/dec-1999)cParisdMagasins/AnnexeeP 8° 4717 aDEW 7901053cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200002700156210002500183326001600208452005000224517004100274530004600315606002600361606003700387606004400424801003000468801002300498802000700521856008500528955008100613972000900694992001200703058424288000101090220130918101146.01 a1592-2898 aissn15922898 a0001010902 a20010401a19849999 0fre 0103 ba0 aita aIT aah 10aLettera internazionale aRomacGangemid1984- aTrimestriel 1tLettera internazionale (Online)‎x1971-822510aLettera internazionaleeEd. italiana aLettera internazionale‎bTesto stampato10aCulturexPériodiques aVie intellectuellexPériodiques aRelations internationalesxPériodiques 3aFRbAbesc20021026gAFNOR 3aFRbISSNc20010401 a0d4 uhttp://www.letterainternazionale.it/zContenu : sommaires depuis le n°1 de 19841 bvol. 85 (3ème tri-2005) -no. 114 (2012)cParisdMagasins/AnnexeeP 4° 7161 aZPAY aDEW 32701223nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000105001502100066002552300005003213000117003263260014004433360056004573370017005134520089005306060047006197100114006668010013007808560062007939550005008559920012008609920025008720000505413000050541320130319051609.0 a0000505413 a a19979999k fre 01 ba0 afre aFR ar aae z  adr 13aLa Lettre d'information - Ministère de la culture et de la communicationb[Ressource électronique] aPariscMinistère de la culture et de la communicationd1997- a aTexte intégral depuis le n° 1, 15 janvier 1997. Dossiers classés par thèmes depuis le n°35 du 7 octobre1998 abimensuel aDonnées textuelles accessibles uniquement en ligne aFichiers PDF 1tLa Lettre d'information - Ministère de la culture et de la communicationx1255-6270 aPolitique culturelleyFrancexPériodiques01aFrancebMinistère de la culture et de la communicationbDépartement de l'information et de la communication 0aFRbFNSP4 uhttp://www.culture.fr/culture/actualites/index-lettre.htm1 r aDEW 001 aGEO RA4.06 France 0101051nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154207004100186210004100227326001500268440003900283606004400322607002500366710010200391856007000493856006500563955008000628992002500708992001600733040140385000008594920130319051609.01 a1246-3833 aFNSP381550 a0000085949 a19900101b19922003 ba0 afre aFR aaga 13aLa Lettre de confrontations 1an°1,1992 ?-n°60,février/mars 2003 aMontreuilcConfrontationsd1992-2003 abimestriel 1tla Lettre de confrontations Europe aPartis politiquesyFrancexPériodiques aFrancexPériodiques aConfrontations pour une conflictualité ouverte, viable, créative (Montreuil, Seine-Saint-Denis)4 uhttp://www.confrontations.org/publications/lettres/index.php#Haut zsommaires des numéros depuis le n° 47, déc.2000/janv.20011 bno. 4 (jan-1993) -no. 60 (fev/mars-2003)cParisdMagasins/AnnexeeP 4°6201 aGEO RA4.06 France 01 aDEW 944.08301288nas 2200361 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000039001502070049001892100048002383000071002863260027003573260026003844300055004104400037004656060044005026070025005467100026005718010013005978560065006108560116006759550085007919720009008769920025008859920016009100000539792000053979220130319051609.0 a0000539792 a b20032006k fre ba0 afre aFR a 0  ar aah z 0 13aLa lettre de Confrontations Europe 1aN°61, avril/mai 2003-n°76, oct./déc. 2006 aMontreuilcConfrontations Europed2003-2006 aLe supplément Opening Europe est parfois encarté dans le numéro aTrimestrielb2005-2006 aBimestrielb2003-2004 1tLa Lettre de confrontations (Montreuil)x1246-3833 1tConfrontations Europe : La revue aPartis politiquesyFrancexPériodiques aFrancexPériodiques02aConfrontations Europe 0aFRbFNSP4 uhttp://www.confrontations.org/publications/lettres/index.php zcontenu : sommaires et texte intégral ou sélection selon les numéros à partir du n° 47, déc.2000/jan.20011 bno. 61 (avr-mai 2003) -no. 76 (oct/dec-2006)cParisdMagasins/AnnexeeP 4° 6201 aZGRA aGEO RA4.06 France 01 aDEW 944.08301158nls 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000146001502070039002962100026003353000046003613260015004073360056004223370017004784400053004956060039005487100078005878010013006658560040006788560056007189550005007749920025007799920016008040000776564000077656420130319051609.0 a0000776564 a b19982009k fre 01 ba0 afre aFR az aag z  adr 13aLa lettre de l'Autoritéelettre d'information bimestrielle de l'Autorité de régulation des télécommunicationsb[Ressource électronique] 1ano. 1(jun-1998) -no. 68 (sep-2009) aPariscARTd1998-2009 aTexte intégral depuis le n°1, juin 1998 aBimestriel aDonnées textuelles accessibles uniquement en ligne aFichiers PDF 1tLes cahiers de l'ARCEP [Ressource électronique] aTélécommunicationsxPériodiques02aAutorité de régulation des télécommunicationsc(France)xPériodiques 0aFRbFNSP4 uhttp://www.arcep.fr/index.php?id=21 zContenu : texte intégral depuis le n°1, juin 19981 r aGEO RA4.06 France 01 aDEW 383-38901045nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210004100175326001200216430009000228606004200318710005700360856005500417856005900472856012400531955007700655972000900732992001400741076235629000013865720130319051609.01 a1639-9129 aFNSP551819 a0000138657 a19941017a19922011 ba0 afre aFR aafa 10aLettre de l'OFCE aPariscPresses de la FNSPd1992-2011 aMensuel 1aObservations et diagnostics économiques. Lettre de l'OFCE,x0756-5577 < P 4° 4796 > aConjoncture économiquexPériodiques02aObservatoire français des conjonctures économiques4 uhttp://www.sciences-po.fr/edition/revues/ofce.html4 uhttp://www.ofce.sciences-po.fr/publications/lettre.htm zListe des Lettres depuis le n°158 du 31 janvier 1997, texte intégral des articles depuis le n°168 du 13 octobre 19971 bno. 96 (jan-1992) -no.330 (oct-2011)cParisdMagasins/AnnexeeP 4° 4796 aZPAY aDEW 330.900985nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000095001502070026002452100042002713260016003133360056003293370017003856060037004027100050004398010013004898560068005028560051005709550005006219920033006269920012006590000776626000077662620130319051609.0 a0000776626 a a19919999k fre 01 ba0 afre aFR az aah z  adr 13aLa lettre de la régulationb[Ressource électronique]/Association Recherche et regulation 1aN°1 (novembre 1991)- aPariscRecherche & Régulationd1991- aTrimestriel aDonnées textuelles uniquement accessibles en ligne aFichiers PDF aEconomie politiquexPériodiques02aAssociation Recherche et regulationc(France) 0aFRbFNSP4 uhttp://www.upmf-grenoble.fr/irepd/regulation/Lettre_regulation/ zContenu : texte intégral depuis le n°1, 19911 r aGEO RS Sans aspect régional aDEW 33001181cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200003100179210006400210326001200274530005100286601004900337606003200386606002900418710004900447801003000496801002300526802000700549856002100556856006300577955006400640955008200704972000900786992001200795040524736000107380520130319051609.01 a1277-6092 accn1277-6092 aissn12776092 a0001073805 a19961118a19949999k y0frey0103 ba0 afre aFR ar aaf 13aLa Lettre des écologistes aSavigny-sur-OrgecMouvement écologiste indépendantd1994- aMensuel13aLa Lettre des écologistesb(Savigny-sur-Orge)00aMouvement écologiste indépendantc(France) aEnvironnementxPériodiques aEcologismexPériodiques02aMouvement écologiste indépendantc(France) 3aFRbAbesc20061128gAFNOR 3aFRbISSNc20001206 a074 uhttp://m-e-i.fr/4 zContenu : accès libre au texte intégral depuis le no. 701 bno. 81 (jan-2007) -....cParisdMagasins/AnnexeeP 4° 71791 bno. 75 (nov/déc-2005) -no. 80 (oct-2006)cParisdMagasins/AnnexeeP F° 0551 aZCAD aDEW 33300822nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210003800191326001500229601003800244607002500282710003100307856004700338856002800385955008000413972000900493992001800502992001200520039967336000006473120130319051609.01 a1163-4499 aFNSP297204 a0000064731 a19900101a19929999 ba0 afre aFR aaga 13aLa Lettre des Européens (Paris) aPariscMouvement européend1992- aBimestriel02aMouvement européenxPériodiques aEuropexPériodiques02aMouvement européen-France uhttp://www.mouvement-europeen.org/main.htm zsommaire du dernier n°1 bno. 1 (mar-avr-1992) -no. 51 (oct-2004)cParisdMagasins/AnnexeeP 4° 6101 aZCAD aGEO RA Europe aDEW 94000978nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210006600177326001200243488005400255517008100309606003700390710007800427856006100505856003600566955006500602972000900667992001200676039376281000014948120130319051609.01 a0243-1947 aFNSP586040 a0000149481 a19950213a19799999 ba0 afre aFR aafa 13aLa Lettre du CEPII aPariscCEPIId1979-aPariscLa Documentation françaised1979 aMensuel 1aEconomie internationalex1240-8093 < P 8° 4264 >10aLa Lettre du Centre d'études prospectives et d'informations internationales aEconomie politiquexPériodiques02aCentre d'études prospectives et d'informations internationalesc(France)4 uhttp://www.cepii.fr/francgraph/publications/publicat.htm zAccès libre au texte intégral1 bno. 132 (fev-1995) -....cParisdMagasins/AnnexeeP 4° 6433 aZPAY aDEW 33001034nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210002200180300006800202326001200270517001800282532005000300601006200350606003800412710004800450856006800498856003600566955006300602972000900665992002200674992001200696039893618000005446820130319051609.01 a1143-5070 aFNSP256368 a0000054468 a19900101a19899999 ba0 afre aFR aafa 10aLettre du CSA (Paris) aPariscCSAd1989- aRemplace Lettre d'information - CNCL (0989-6767) < P 4° 5253 > aMensuel10aLa Lettre CSA10aLettre du Conseil supérieur de l'audiovisuel02aFrancebConseil supérieur de l'audiovisuelxPériodiques aAudiovisuelyFrancexPériodiques02aFrancebConseil supérieur de l'audiovisuel4 uhttp://www.csa.fr/infos/publications/publications_lettreCSA.php zAccès libre au texte intégral1 bno. 1 (oct-1989) -....cParisdMagasins/AnnexeeP 4° 5253 aZGRA aGEO RA4.06 France aDEW 07001004nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000030001552100026001853200017002113260017002284300053002454400042002986070052003407100050003928560083004428560059005259550077005849920025006619920016006860000183454000018345420130319051609.01 a1268-9122 aFNSP681928 a0000183454 a19900101b19969999 ba0 afre aFR aa a 13aLa Lettre du gouvernement aPariscSIDd1996-2005 aIndex annuel aHebdomadaire 1aLa Lettre de Matignon (0769-9786) < P 4° 4699 > 1tLe mensuel du gouvernementx1771-1819 aFrancexPolitique et gouvernementxPériodiques02aFrancebService d'information du Gouvernement4 uhttp://www.premier-ministre.gouv.fr/spihtm/sig_nn4/texte/recherche_txt_cat.cfm zContenu : sommaires depuis le n°30, 17 septembre 19971 bno. 1 (jan-1996) -no. 191 (oct-2005)cParisdMagasins/AnnexeeP 4° 4699 aGEO RA4.06 France 01 aDEW 944.08301048nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000051001502100104002012300005003053000047003103260016003573360056003733370017004294300034004466060030004807100099005107110023006098010013006328560060006459550005007059920012007100000505422000050542220130319051609.0 a0000505422 a a20019999k fre 01 ba0 afre aFR ar aay z  adr 13aLa lettre Intergéob[Ressource électronique] aPariscPôle de Recherche pour l'Organisation et la Diffusion de l'Information Géographiqued2001- a aTexte intégral depuis le n° 7, nov. 2001 airrégulier aDonnées textuelles accessibles uniquement en ligne aFichiers PDF 1tLettre d'intergéox0220-0546 aGéographiexPériodiques02aPôle de recherche pour l'organisation et la diffusion de l'information géographiquec(Paris)00aIntergéoc(Paris) 0aFRbFNSP4 uhttp://prodig.univ-paris1.fr/infogeo/accueil_lettre.htm1 r aDEW 91000951nls 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008100154210005300235326001200288606004200300606005200342710008200394830006000476856002800536856003600564955000500600972000900605992002100614992001400635039608530000002677220130319051609.01 a0479-5369 aFNSP171472 a0000026772 a19910308a19579999 ba0 afre aFR aafa 10aLettre mensuelle de conjoncturefChambre de commerce et d'industrie de Paris aPariscChambre de commerce et d'industried1957- aMensuel aConjoncture économiquexPériodiques aHistoire économiquez20e sièclexPériodiques02aChambre de commerce et d'industriec(Paris)bCentre d'observation économique a< P 4° 1505 > 1957--2005 : collection donnée au CTLes4 uhttp://www.coe.ccip.fr/ zAccès libre au texte intégral1 r aZGRA aGEO RQ Universel aDEW 330.901493nls 2200289 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281350018001342000108001522100031002602300005002913000079002963370592003756060022009676060047009897020018010367100058010548010013011128300008011258560070011330000582191000058219120130319051609.0 a0000582191 a d20049999k fre 01 0 afre aFR ay z y  az adr 10aLextenso.comb[Ressource électronique]fGIE Lextensogdirecteur de la publication du Site Bruno Vergé aPariscGIE Lextensod2004- a aConsultation : uniquement à partir des postes publics de la Bibliothèque aLa base contient : le Bulletin Joly Sociétés : depuis le 1er janvier 1986, la Gazette du Palais : depuis le 1er janvier 2000, les Petites Affiches : depuis le 1er janvier 1995, le Répertoire du Notariat Defrénois : depuis le 1er janvier 1990, la Revue des contrats : depuis 2003, la Revue générale du droit des Assurances : depuis le 1er janvier 1995. Il y a un accès aux derniers sommaires de certaines revues et journaux. Lextenso propose les revues partenaires en consultant le sommaire de chaque nouveau numéro ainsi que le sommaire des numéros précédents (au format pdf). aBases de données aDroityFrancexJurisprudencexPériodiques 1aVergébBruno02aGroupement d'intérêt économique Lextensoc(France) 0aFRbFNSP amfo4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lextenso.com01310nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154210003600190326001700226421030700243488005800550606003900608607004600647801002100693830013700714856007100851856005200922992002200974992001200996039469441000002679720130319051609.01 a0294-8168 aFNSP171518 a0000026797 a19900101a19619999 ba0 afre aFR aaau 10aLiaisons sociales.iBref social aPariscLiaisons socialesd1961- aHebdomadaire 1aLiaisons sociales (mensuel) (0296-5119) < P 4° 5061 >, Liaisons sociales. Documents (0417-870X) < P 4° 3505 >, Liaisons sociales. Revue de presse (0997-1114) < P 4° 3503 >, Liaisons sociales. Législation sociale (0294-8176) < P 4° 3504 > et Liaisons sociales. Conventions et accords < P 4° 6782 > 1aTravail social actualités (0753-9711) < P 4° 4898 > aDroit socialyFrancexPériodiques aFrancexConditions socialesxPériodiques 3aFRbCCN0294-8168 ano. 6845 (1er jul-1974) -no. 9389 (dec-1984) < P 4° 3502 > donné au CTL en juin 2002, 1985-2004 : collection donnée au CTLes 20084 uhttps://acces-distant.sciences-po.fr/fork?http://lamyline.lamy.fr/ zContenu : accès au texte intégral depuis 2000 aGEO RA4.06 France aDEW 34401223nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004100163210004700204326002400251440006000275488004400335488005000379488004600429517004300475606004300518606003900561676000800600801001300608856007000621856005200691955006300743972000900806992002200815992001200837040482502000044523020130319051609.01 a1271-6782 a0000445230 a a19??9999k fre ba0 afre aFR a 0  ar aaf z 0 10aLiaisons sociales.iNuméro spécial aPariscGroupe Liaisons socialesd19??-2008 a8 à 10 n°s par an 1tLiaisons sociales.eNuméros juridiquesxISSN 2101-4418 1aLiaisons sociales. Documentsx0417-870X 1aLiaisons sociales. Revue de pressex0997-1114 1aLiaisons sociales. Conventions et accords10aLiaisons sociales. Numéraux spéciaux aDroit du travailyFrancexPériodiques aDroit socialyFrancexPériodiques a344 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://lamyline.lamy.fr zContenu : accès au texte intégral depuis 20001 b(1996) -(dec-2008)cParisdMagasins/AnnexeeP 4° 3504 bis aZPAY aGEO RA4.06 France aDEW 34401381cas0 2200421 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147106000600154110001600160200004400176207002200220210004400242302007000286326001200356423004200368430005100410530004300461606003100504606004300535676000800578801003000586801002300616801003000639802000700669856007000676856005200746955006600798955006100864992002200925992001200947133880796000116548620130319051609.01 a2101-4418 a132363682 aissn21014418 a0001165486 a20090603a20099999k y0frey0103 ba0 afre aFR ar aafu uu 10aLiaisons sociales.iNuméros juridiques 1aFévrier (2009) - aRueil-MalmaisoncGroupe liaisonsd2009- aLa publication porte l'ISSN 2101-4418 à partir du no de mai 2009 aMensuel 1tLiaisons sociales magazinex1297-031X 1tLiaisons sociales. Numéro spécialx1271-678210aLiaisons sociales. Numéros juridiques aDroit socialxPériodiques aDroit du travailyFrancexPériodiques a344 3aFRbAbesc20090608gAFNOR 3aFRbISSNc20090602 3aFRbAbesc20090330gAFNOR a074 uhttps://acces-distant.sciences-po.fr/fork?http://lamyline.lamy.fr zContenu : accès au texte intégral depuis 20001 bLes 3 dernières annéescParisd30, Salle 3e étageeDEW 3441 b(jan-2009) -....cParisdMagasins/AnnexeeP 4° 3504 bis aGEO RA4.06 France aDEW 34401353nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210003000184326001400214421008000228530003100308606002900339607002500368801002100393856002900414856019200443856010800635955006800743955006600811955010400877992002200981992001201003039523209000002678420130319051610.01 a0335-1793 aFNSP171492 a0000026784 a19900101a19739999 ba0 afre aFR abau 00aLibération (Paris, 1973) aPariscLibérationd1973- aQuotidien 1aLibération le magazinexISSN 1259-9298aLibération Hors-Sériex0335-179300aLibérationb(Paris. 1973) aActualitéxPériodiques aFrancexPériodiques 3aFRbCCN0335-17934 uhttp://www.liberation.fr4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLe mois en courscParisd27, Salle Rez-de-chausséeeP F° 03651 bno. 1 (18 avr-1973) -....cParisdMagasins/AnnexeeP F° 03651 bHors-Série no.113 (23 juin-2011) ; (10/11 sep 2011)cParisd27, Salle Rez-de-chausséeeP F° 0365 aGEO RA4.06 France aDEW 05001183nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200011500154207002800269210004700297326001600344606004400360606003700404607004500441676000800486710006500494856005300559856007200612955007300684955007900757972000900836992001200845040602060000021731320130319051610.01 a1288-0639 aFNSP782364 a0000217313 a19900101a19979999 ba0 afre aFR aaha 10aLiberté politiqueela nouvelle revue d'idées chrétiennefAssociation pour la Fondation de service politique 1aN°1 (1997, printemps)- aSaint-CloudcAFSPcF.-X. de Guibertd1997- aTrimestriel aRelations internationalesxPériodiques aVie intellectuellexPériodiques aFrancexVie intellectuellexPériodiques a00102aAssociation pour la Fondation de service politiquec(France)4 uhttp://www.libertepolitique.com/public/index.php zContenu : sommaires et résumés des articles depuis le n° 7, 19991 bLes 3 dernières annéescParisd27, Salle Rez-de-chausséeeDEW 0011 bno. 1 (1997) ; no. 17 (sep-2001) -....cParisdMagasins/AnnexeeP 8° 6334 aZCAD aDEW 00101220cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200004300174207006600217210005600283210003900339300003900378326001100417440004000428530002600468606003600494606004000530607004500570801003000615801002300645802000700668856008800675955008300763992001200846083128018000113075020131209101446.01 a1768-675X aissn1768675X a0001130750 a20041123a20049999k y1frey0103 ba0 afre aFR ay  aaku uu 10aLibreserevue de la pensée française 1aN°1 (2004)-n°5 (2008) ; Nouvelle série, n°1 (2011, janv.) aPariscFrançois-Xavier de Guibert /OEILd2004-2008 aPariscLe Retour aux sourcesd2011 aPas de parution entre 2008 et 2011 aAnnuel 1tPerspectives libres, ISSN 2116-744310aLibresb(Paris. 2004) aScience politiquexPériodiques aLibertéxPhilosophiexPériodiques aFrancexVie intellectuellexPériodiques 3aFRbAbesc20070410gAFNOR 3aFRbISSNc20041123 a074 uhttp://www.revue-libres.comzAccès aux sommaires et résumés depuis le n°1, 20041 bno. 2 (2004 ) -no. 5 (2008) ; no. 1 (2011)cParisdMagasins/AnnexeeP 8° 7005 aDEW 00101026nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210003500189326001500224430006000239517001300299606003700312606004100349676000800390710004100398856005300439856003600492955005900528955006400587972000900651992001600660992001200676036441937000015355220130319051611.01 a1204-3206 aFNSP599156 a0000153552 a19900101a19949999 ba0 afre aCA aaja 10aLien social et politiques-RIAC aMontréalcSaint-Martind1994- aSemestriel 1aRevue internationale d'action communautaire,x0707-969910aLSP-RIAC aPolitique publiquexPériodiques aSociologie économiquexPériodiques a30002aEcole de service socialc(Montréal)4 uhttp://www.erudit.org/revue/lsp/index.html#liste zAccès libre au texte intégral1 bLes 3 dernières annéesc27, Salle 3e étageeDEW 3001 bno. 32 (aut-1994) -....cParisdMagasins/AnnexeeP 8° 1654 aZPAY aDEW 360-363 aDEW 30101068nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200007600139207006700215210003100282210004500313210003200358210002800390210003100418326001700449530002600466606003600492606003600528856003600564955010300600972000900703991001800712992001200730039848671000000475720131025105210.01 a0988-5226 aFNSP106360 a19900222a19879999 ba0 afre aFR aaia 10aLigneserevue trimestrielleearts, littérature, philosophie, politique 1aNo 1 (nov. 1987)-no 38 (nov. 1999)an.s., [no] 01 (mars 2000)- aPariscSéguierd1987-1991 aPariscNouvelles éditions Lignesd2007- aPariscL. Scheerd2000-2006 aPariscHazand1992-1999 aPariscSéguierd1987-1991 a3 nos par an10aLignesb(Paris. 1987) aSciences socialesxPériodiques aScience politiquexPériodiques4 uhttp://www.editions-lignes.com/1 bno. 1 (nov-1987) -no. 38 (1999) ; n. s. no. 1 (mar-2000) -....cParisdMagasins/AnnexeeP 8° 5114 aZPAY aexempb201106 aDEW 30001135nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000052001502100005002022300024002073260017002316060053002486060059003016060065003606070025004258010013004508560192004638560108006559550005007639920039007689920014008070001131857000113185720130319051612.0 a0001131857 a a20059999k fre 01 ba0 arus aRU ar aac z  adr 10aLiteraturnaä gazetab[Ressource électronique] a aRevue électronique ahebdomadaire aLittératurexHistoire et critiquexPériodiques aLittérature russexHistoire et critiquexPériodiques aLittérature soviétiquexHistoire et critiquexPériodiques aRussiexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA7.21 Russie (depuis 1991-92) aDEW 80-8901080nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001300154210009500167326001600262607002700278710002400305856002900329856010700358955007200465957016400537972000900701991001800710992003800728992001200766038745933000005346720130319051613.01 a0024-5089 aFNSP254073 a0000053467 a19900101a19549999 ba0 aeng aUS aaha 10aLituanus aChampaign, IllcLithuanian Student Association, Secretariate for External Relationsd1954- aTrimestriel aLituaniexPériodiques02aLituanus Foundation4 uhttp://www.lituanus.org/ zContenu : sommaires et sélection d'articles en texte intégral depuis le volume 16, n°1, Spring 19701 bvol. 34 no. 1 (mar-1988) -....cParisdMagasins/AnnexeseP 8° 55551 bvol. 1(1954) -vol. 32 (1978) ; vol. 25 (1979) -vol. 33 (1987)cParisdMagasins/AnnexeeP Index 0635z(1954/1955) -(1994): se trouve dans le vol. 4 no. 4 (1994) aZSAB aexempb201204 aGEO RA7.14 Lituanie (depuis 1991) aDEW 94701640nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001800154210002700172326002500199326002700224517000700251606007700258606003800335710003000373801002100403856010100424856010800525856012800633856010800761856010900869856010800978955006301086972000901149991001801158992003101176992002101207992001401228039324966000002676120130319051613.01 a0269-0942 aFNSP171454 a0000026761 a19900101a19869999 ba0 aeng aGB aafa 10aLocal economy aHarlowcLongmand1986- a8 n°s par anb2009- aTrimestrielb1986-200810aLE aAdministration localexAspect économiqueyGrande-BretagnexPériodiques aEconomie régionalexPériodiques02aLocal Economy Policy Unit 3aFRbCCN0269-09424 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=105324 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=BAJ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713395259db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (pri-1986) -....cParisdMagasins/AnnexeeP 8° 4961 aZPAY aexempb201003 aGEO RA4.02 Grande-Bretagne aGEO RQ Universel aDEW 338.901046nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000290015421000240018332600180020732600270022560600570025260600400030985601090034985601080045895500710056697200090063799100180064699200210066499200310068599200160071603935833X000009136320130319051613.01 a0300-3930 aFNSP403118 a0000091363 a19900101a19719999 ba0 aeng aGB aaga 10aLocal government studies aLondoncCassd1971- a5 n°s par an aTrimestrielb1992-2004 aAdministration localeyGrande-BretagnexPériodiques aAdministration localexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713673447db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 18 no. 1 (mar-1992) -....cParisdMagasins/AnnexeeP 8° 5938 aZSAB aexempb201202 aGEO RQ Universel aGEO RA4.02 Grande-Bretagne aDEW 350-35401056cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157110001600175200002700191207003300218210002700251326001400278512008300292606005300375606002600428801003000454801002300484802000700507856003800514856006000552955007100612972000900683992001400692039311244000106530020130319051615.01 a0260-9592 accn0260-9592 aissn02609592 a0001065300 a19830415a19799999k y0frey0103 ba0 aeng aGB a 0  aabu 0uu 10aLondon review of books 0aVol. 1, no. 1 (25 Oct-1979)- aLondoncLRB Ltdd1979- aBimensuel14aThe London review of books with the New York review of books (De 1979 à 1981) aLittératurexHistoire et critiquexPériodiques aCulturexPériodiques 3aFRbAbesc20060707gAFNOR 3aFRbISSNc20051021 a024 uhttp://www.lrb.co.uk/contents.php zContenu : sommaires et résumés d'articles depuis 19981 bvol. 28 no. 2 (jan-2006) -....cParisdMagasins/AnnexeeP F° 0549 aZPAY aDEW 80-8901398nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000450015421000240019932600180022351700470024160600470028885600510033585601040038685601280049085601080061885601090072685601080083595500900094397200090103399100180104299200120106004010110X000008264220130319051616.01 a0966-2847 aFNSP368526 a0000082642 a19900101a19929999 ba0 aeng aGB aaia 00aLow intensity conflict & law enforcement aLondoncCassd1992- a3 n°s par an10aLow intensity conflict and law enforcement aConflits de basse intensitéxPériodiques4 uhttp://www.tandf.co.uk/journals/listings/l.asp zContenu : sommaires et résumés des vol. 7, 1998 à 10, 2001 ; sommaires à partir du vol.11, 20024 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=UPM&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713728233db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jun-1992) -vol. 13 no. 3 (dec-2005)cParisdMagasins/AnnexeeP 8° 5905 aZSAB aexempb201202 aDEW 30300968nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154207001800189210003300207326001700240606005100257606004300308830003200351856002300383856004300406955005900449955008700508992002200595992002100617992001600638039224937000002675820130319051616.01 a0024-2632 aFNSP171444 a0000026758 a19910308a19589999 ba0 afre aFR aa a 10aLSA, Libre service actualités 1ano. 1 (1958)- aLevallois-PerretcLSAd1958- aHebdomadaire aCircuits de distributionyFrancexPériodiques aCircuits de distributionxPériodiques aCollection donnée au CTLes4 uhttp://www.lsa.fr/ zcontenu : sommaire du dernier numéro.1 bL’année en courscParisd27, Salle Rez-de chaussée1 bConservation limitée aux 2 dernières annéescParisdMagasins/AnnexeeP 4° 4184 aGEO RA4.06 France aGEO RQ Universel aDEW 380-38201090nas 2200349 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000130015421000290016732600180019660600450021460600360025960600360029571000610033180100210039285600680041385600360048195500740051795700710059197200090066299100180067199200230068999200160071299200120072803897648X000002696120130319051616.01 a0102-6445 aFNSP172379 a0000026961 a19900101a19849999 ba0 apor aBR aaia 10aLua nova aSão PaulocCEDECd1984- a3 n°s par an aSciences socialesyBrésilxPériodiques aSciences socialesxPériodiques aChangement socialxPériodiques02aCentro de estudos de cultura contemporânea (São Paulo) 3aFRbCCN0102-64454 uhttp://www.scielo.br/scielo.php?pid=0102-6445&script=sci_issues4 zAccès libre au texte intégral1 bvol. 2 no. 1 (avr/jun-1985) -....cParisdMagasins/AnnexeeP 8° 49681 bno. 15 (1988) -no. 48 (1999)cParisdMagasins/AnnexeeP Index 0830 aZPAY aexempb201003 aGEO RD4.13 Brésil aDEW 320-321 aDEW 30101216nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101001300123102000700136110001600143200002600159210005600185326001500241606004500256606004600301606005500347801002100402856006600423856006200489856009000551856010800641955007100749972000900820992004900829992001200878038746794000005346820130319051616.01 a0024-7413 aFNSP254074 a0000053468 a19900101a19649999 ba0 aengapor aUS aaju 10aLuso-Brazilian review aMadison, Wis.cUniversity of Wisconsin Pressd1964- aSemestriel aSciences socialesyBrésilxPériodiques aSciences socialesyPortugalxPériodiques aSciences socialesyAfrique lusophonexPériodiques 3aFRbCCN0024-74134 uhttp://www.wisc.edu/wisconsinpress/journals/journals/lbr.html zContenu : sommaires depuis le volume 33, n°1, été 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00247413.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 17 no. 2 (hiv-1980) -....cParisdMagasins/AnnexeeP 8° 4501 aZCAD aGEO RP Autres groupes de pays ou de régions aDEW 90901446nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001400154210003400168210003600202210002500238326002200263326002200285606004500307606004600352606005500398607004400453710005300497856004800550856008600598856012800684856010800812955005300920972000900973991001700982992004900999992001201048040295532000013485320140115173425.01 a1257-0273 aFNSP542726 a0000134853 a19940830a19949999 ba0 afre aFR aaja 10aLusotopie aPariscL'Harmattand1994-1995 aPariscÉd. Karthalad1995-2004 aLeidencBrilld2005- aSemestrielb2006- aAnnuelb1994-2005 aSciences socialesyBrésilxPériodiques aSciences socialesyPortugalxPériodiques aSciences socialesyAfrique lusophonexPériodiques aPays de langue portugaisexPériodiques02aAssociation des chercheurs de la revue Lusotopie4 uhttp://www.lusotopie.sciencespobordeaux.fr/ zContenu : sommaires et résumés de 1994 à 1999, texte intégral de 1994 à 20044 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=DG8&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1994) -....cParisdMagasins/AnnexeeP 8° 6058 aZPAY aexemp$201202 aGEO RP Autres groupes de pays ou de régions aDEW 90901166cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200006700180207001200247210004600259326001100305430006000316606004800376606005200424606004100476710006800517801003000585801002300615802000700638856006400645955005400709992002500763992001600788110559622000113995820130319051616.01 a1779-9295 aissn17799295 a0001139958 a20061109a20069999 0frey0103 ba0 afre aFR ay  ah azk 13aLa Lutte contre le racisme, l'antisémitisme et la xénophobie 0a(2005)- aPariscLa Documentation françaised2006- aAnnuel 1tLa Lutte contre le racisme et la xénophobiex1263-0357 aRacismexLutte contreyFrancexPériodiques aXénophobiexLutte contreyFrancexPériodiques aAntisémitismeyFrancexPériodiques02aFrancebCommission nationale consultative des droits de l'homme 3aFRbAbesc20070620gAFNOR 3aFRbISSNc20061101 a074 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml1 b(2005)-(2007)cParisdMagasins/AnnexeeP 8° 5803 aGEO RA4.06 France 01 aDEW 305-30601019nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004900154207001800203210005000221326001100271517007400282606005200356606004800408710006800456856006400524955005400588972000900642991001600651992002200667992001600689040402169000004334620130319051616.01 a1263-0357 aFNSP227372 a0000043346 a19900101b19912005 ba0 afre aFR aaka 13aLa Lutte contre le racisme et la xénophobie 1a(1990)-(2004) aPariscLa Documentation françaised1991-2005 aAnnuel10aRapport de la Commission nationale consultative des droits de l'homme aXénophobiexLutte contreyFrancexPériodiques aRacismexLutte contreyFrancexPériodiques02aFrancebCommission nationale consultative des droits de l'homme4 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml1 b(1990)-(2004)cParisdMagasins/AnnexeeP 8° 5803 aZPAY aexemp201112 aGEO RA4.06 France aDEW 305-30600954nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200002000138210003400158326001700192601004400209606002900253607002500282710003900307801002100346856003500367856007400402955015100476992002500627992001200652038724936000006813120130319051617.01 a0024-7650 aFNSP315531 a0000068131 a19900101a19689999 ba0 afre aFR10aLutte ouvrière aPariscLutte ouvrièred1968- aHebdomadaire02aLutte ouvrièrec(France)xPériodiques aActualitéxPériodiques aFrancexPériodiques02aUnion communiste internationaliste 3aFRbCCN0106/45094 uhttp://www.lutte-ouvriere.org/ zContenu : sommaires et articles en texte intégral depuis sept. 1999.1 bno. 1 (jun-1968) -....cParisdMagasins/AnnexeeP F° 0283zLes nos. reçus à partir de 2009 sont consultables uniquement en Salle de référence aGEO RA4.06 France 01 aDEW 05001342nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005500154210005400209326001600263606005300279606003300332606003400365676001000399710008800409856006600497856010700563856003700670856004200707955007100749955006500820972000900885991001700894992005700911992001200968040195295000018145520130319051617.01 a1023-263X aFNSP675822 a0000181455 a19900101a19949999 ba0 aeng aDE aaha 10aMaastricht journal of European and comparative law aBaden-BadencNomosd1994-aAntwerpencMaklud1994 aTrimestriel aDroityPays de l'Union européennexPériodiques aDroit comparéxPériodiques aDroit européenxPériodiques a341.802aMaastrichts europees instituut voor transnationaal rechtswetenschappelijk onderzoek4 uhttp://www.unimaas.nl/fdr.asp?id=P62QE735X175I4S223GU&taal=nl zContenu : sommaires et résumés depuis 1999 ( vol.6, n°1), jusqu'au vol.10, n°2 (avant-dernier n°)4 uhttp://www.maastrichtjournal.eu/ zContenu : sommaire du dernier numéro1 bLes 3 dernières annéescParisdSalle des périodiqueseDEW 341.81 bvol. 2 no.1 (1995) -....cParisdMagasins/AnnexeeP 8° 6214 aZCAD aexemp$201211 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 34101353nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002500139210003900164326001200203452005300215530002500268606006400293606005300357801002100410830005200431856010400483856021000587955005900797955006300856972000900919991001800928992002100946992002200967992001400989013373218000002723020130930132355.01 a0024-9807 aFNSP173613 a19900101a19669999 ba0 afre aFR aafa 10aMagazine littéraire aPariscMagazine littéraired1966- aMensuel 1tLe Magazine littéraire (En ligne)‎x2108-676100aMagazine littéraire aLittérature françaisexHistoire et critiquexPériodiques aLittératurexHistoire et critiquexPériodiques 3aFRbCCN0024-9807 a1966-2009 : collection donnée au Ctles en 20134 uhttp://www.magazine-litteraire.com/zContenu : sélection d'articles en texte intégral depuis 19754 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/magazine-le-magazine-litteraire.htm?zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bL’année en courscParisd27, Salle Rez-de chaussée1 bno. 1 (nov-1966) -....cParisdMagasins/AnnexeeP 4° 2281 aZPAY aexempb201306 aGEO RQ Universel aGEO RA4.06 France aDEW 80-8901430cas0 2200361 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109106000600127110001600133200008500149207001000234210009500244301006600339302008300405326001100488430003900499606003600538607005500574607004500629710006800674801003000742856015100772856004900923955005200972972000901024992002301033992001201056145529363000123529420130319051618.0 a0001235294 a20100705a20099999k y0frey50 ba0 afre aTN ay 0  ar aaka 0xx010aMaghreb et sciences socialesfInstitut de recherches sur le Maghreb contemporain 0a2008- aTuniscInstitut de recherches sur le Maghreb contemporainaPariscdiff. L'Harmattand2009- aDemande de numérotation ISSN en cours par le CR28 2010-07-15 aTexte en français avec résumés dans la même langue, en anglais et en arabe aAnnuel 1tAlfa. Maghreb et sciences sociales aSciences socialesxPériodiques aAfrique du NordxConditions socialesxPériodiques aAfrique du nordxRecherchexPériodiques01aInstitut de recherche sur le Maghreb contemporainc(Tunis)4340 3aFRbAbesc20100715gAFNOR4 uhttp://www.irmcmaghreb.org/spip.php?page=recherche&lang=fr&forcer_lang=true&recherche=maghreb+et+sciences+sociales&validsearch.x=5&validsearch.y=94 zContenu : sommaire des rapports depuis 2008.1 b(2008)-....cParisdMagasins/AnnexeeP 8° 6904 aZPAY aGEO RG1.01 Maghreb aDEW 30001459nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200009200163207002100255210002800276210009300304326001600397430004500413607003100458607003400489607003000523676000800553710008400561801001300645856007700658856006200735955006600797955006500863955006900928972000900997992001201006992004301018073654051000053952820131219165149.01 a1762-3162 a0000539528 a a20039999k fre ba0 afre aFR a 0  ar aah z 0 10aMaghreb-MachrekfInstitut Choiseul pour la politique internationale et la géoéconomie 1ano. 175 (2003) - aPariscÉd. Eskad2013- aPariscInstitut Choiseul pour la politique internationale et la géoéconomied2003-2012 aTrimestriel 1tMonde arabe, Maghreb, Machrekx1241-5294 aMoyen-OrientxPériodiques aAfrique du NordxPériodiques aPays arabesxPériodiques a95602aInstitut Choiseul pour la politique internationale et la géoéconomiec(Paris) 0aFRbFNSP4 uhttp://choiseul-editions.com/revues-geopolitique-Maghreb-Machrek-15.html zContenu : sommaires et résumés depuis le printemps 20031 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9561 bno. 175 (pri-2003) -....cParisdMagasins/AnnexeeP 8° 66981 bL'année en courscParisdBibliothèque de rechercheeP 8° 6698 aZCAD aDEW 956 aGEO RG Afrique du Nord et Moyen-Orient02224nas 2200457 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116106000600123110001600129200006800145207001600213210002300229326001200252421006300264421007600327421006100403421007300464510004000537517010000577517010000677517007000777517004600847530003800893606005900931607007200990710012301062830013601185830005301321856021701374955006701591972000901658991001801667992005101685992001401736992001601750070249202000005098720130930145418.01 a0474-5523 aFNSP248191 a19900101a19609999 f ba0 afre aFR ar aafa 10aMain economic indicatorsd= Principaux indicateurs économiques 1aNo 1(1960)- aPariscOCDEd1960- aMensuel 1aMain economic indicators. Historical statisticsx0258-2325 1tPrincipaux indicateurs économiques. Sources et définitionsx1028-818X 1tMain economic indicators. Sources and methodsx0259-2991 1tShort-term economic indicators Central and Eastern Europex1019-982910aPrincipaux indicateurs économiques10aBulletins statistiques de l'OECE. Statistiques générales. Principaux indicateurs économiques10aBulletins statistiques de l'OCDE. Statistiques générales. Principaux indicateurs économiques10aOCDE. Bulletins statistiques. Principaux indicateurs économiques10aOCDE. Principaux indicateurs économiques00aMain economic indicatorsb(Print) aIndicateurs économiquesyPays de l'OCDExPériodiques aPays de l'OCDExConditions économiquesxStatistiquesxPériodiques02aOrganisation de coopération et de développement économiquesbDépartement des affaires économiques et statistiques aDemandé 1er et dernier n° de la cote à Locarchives le 27/05/2010 : obtenu décembre 1965 et octobre 1984. Pas de 1960-1964 ? sdy a1960-2003 : collection envoyée au Ctles en 20134 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/04745523/principauxindiceconzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1960) -no. 4 (2003)cParisdMagasins/AnnexeeP 4° 2256 aZECH aexempb201306 aGEO RN1 Pays industrialisés, pays occidentaux aDEW 330.9 aDEW 310-31900937nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210002200175326001400197430004200211606005100253606004800304710003700352856002800389856010300417955006800520972000900588992002200597992001600619040444988000016309220130319051618.01 a1265-6917 aFNSP624901 a0000163092 a19900101a19959999 ba0 afre aFR aaea 10aMaires de France aPariscAMFd1995- aBimensuel 1aDépartements et communes,x0045-9984 aAdministration communaleyFrancexPériodiques aAdministration localeyFrancexPériodiques02aAssociation des maires de France4 uhttp://www.amf.asso.fr/ zContenu : sommaire du dernier numéro; sélection d'articles en texte intégral depuis juil. 2001.1 bn.s. no. 1 (jun-1995) -....cParisdMagasins/AnnexeeP 4° 1409 aZCAD aGEO RA4.06 France aDEW 350-35401064nas0 2200313 i 450 001001000000002001100010005001700021035002500038035002000063035001500083100004100098101000800139102000700147105001800154106000600172110001600178200005100194207002200245210005300267607006400320801003000384801002900414801001300443830000900456856012800465955006900593955007000662991001800732114224730000112576020130319051618.0 aFRBNF328110970000005 aPR031301800001J a0001125760 a20070430b19471954 y0frey0103 ba0 aeng aUS ay 0  ar aauu 0 y 10aMajor problems of United States foreign policy 1a1947-1954 (I-VII) aWashingtoncThe Brookings Institutiond1947-1955 aEtats-UnisxRelations extérieuresz1945-1953xPériodiques 3aFRbAbesc20070430gAFNOR 0aFRbBNFc19970701gAFNOR 0aFRbFNSP asdy04 uhttp://www.archive.org/details/majorproblemsofu033404mbpzAccès libre au texte intégral. Vol.4 numérisé sur Archive.org1 bvol. 3 (1949) -vol. 7 (1954)cParisdMagasins/AnnexeeCOL8°00051 bbvol. 1 (1947) -vol. 2 (1949)cParisdMagasins/AnnexeeCOL4°0002 aexempb20121200891nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005700154210004700211326001600258440001400274606003000288801002100318856004500339856006200384955009000446991001800536992003300554992001400587036376698000002704320130319051620.01 a0025-1534 aFNSP172637 a0000027043 a19900101b19681997 ba0 amul aNL aaha 10aMan and worldean international philosophical review aPittsburgh, Pa.cIPR Associatesd1968-1997 aTrimestriel 1x1387-2842 aPhilosophiexPériodiques 3aFRbCCN0025-15344 uhttp://www.wkap.nl/jrnltoc.htm/0025-1534 zContenu : sommaires depuis le vol. 28, n°1, janvier 19951 bvol. 1 no. 1 (fev-1968) - vol.30 no. 4 (oct-1997)cParisdMagasins/AnnexeeP 8° 2581 aexempb201103 aGEO RS Sans aspect régional aDEW 10-1401186nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006400154207001700218210002700235210005200262210003100314300003300345326001500378430003800393530001700431606003200448606002900480710006600509856006800575856004600643955009600689972000900785991001800794992001200812040478947000018826020131025125006.01 a1271-0377 aFNSP696957 a0000188260 a19900101a19969999 ba0 afre aFR aaja 10aManafLaboratoire d'analyse socio-anthropologique du risque 1ano 1 (1996)- aCaencLASARd1996-1999 aCaencPresses universitaires de Caend2000-2003 aaPariscL'Harmattand2007- aN'a pas paru de 2004 à 2007 aSemestriel 1aCahiers du LASA (Caen)x0765-025610aManab(Caen) aAnthropologiexPériodiques aSociologiexPériodiques02aLaboratoire d'analyse socio-anthropologique du risquec(Caen)4 uhttp://www.unicaen.fr/services/puc/rubrique.php3?id_rubrique=74 zContenu : sommaires depuis le no. 1, 19961 bno. 1 (1996) -no. 12/13 (2003) ; no. 14/15 (2007) -....cParisdMagasins/AnnexeeP 8° 6131 aZPAY aexempb201202 aDEW 30100962nas 2200313 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200001500148210003200163326001200195430004200207606004700249801001300296830007300309856003000382856004300412955005900455955008700514972000900601992002200610992001600632052447669000027937020131104161714.01 a1627-4792 a a19999999k fre ba0 afre aFR a 0  ar aaf z 0 10aManagement aPariscPrisma Pressed1999- aMensuel 1tL'Essentiel du management,x1263-7807 aGestion d'entrepriseyFrancexPériodiques 0aFRbFNSP ano. 56 (oct-1999) -.... : collection donnée au CTLes (juillet 2008)4 uhttp://www.management.fr/ zContenu : sommaire du dernier numéro.1 bL’année en courscParisd27, Salle Rez-de chaussée1 bConservation limitée aux 5 dernières annéescParisdMagasins/AnnexeeP 4° 6441 aZPAY aGEO RA4.06 France aDEW 650-65800756nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116200003600123210002900159326001500188517000800203606003900211801002100250856008800271955006700359972000900426991001800435992002100453992001600474036376779000002688120131108120104.01 a0025-181X aFNSP172229 a19900101a19619999 ba0 aeng aDE10aManagement international review aWiesbadencGablerd1961- aBimestriel10aMIR aGestion d'entreprisexPériodiques 3aFRbCCN0025-181X4 uhttp://www.uni-hohenheim.de/mir/zContenu : sommaires depuis le vol. 36, n°1, 19961 bvol. 10 no. 1 (1970) -....cParisdMagasins/AnnexeeP 8° 2848 aZPAY aexempb201105 aGEO RQ Universel aDEW 650-65801154nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200010100154210006200255326001200317606003900329710003700368801002100405856009000426856010800516955008900624955008400713991001800797992002100815992001600836038748290000002691820130319051621.01 a0025-1909 aFNSP172304 a0000026918 a19900101a19549999 ba0 aeng aUS aafa 10aManagement scienceejournal of the Institute for operations research and the management sciences aProvidence, R.I.cInstitute of Management Sciencesd1954- aMensuel aGestion d'entreprisexPériodiques02aInstitut des sciences de gestion 3aFRbCCN0025-19094 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00251909.html4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol.15, no. 8 (avr-1969) - vol. 28 no. 12 (1992)cParisdMagasins/AnnexeeP 8° 26871 bvol. 39 no. 1 (1993) -vol. 40 no. 12 (1994)cParisdMagasins/AnnexeeP 4° 6333 aexempb201001 aGEO RQ Universel aDEW 650-65801466nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154207002900180210002900209326001500238421004800253430006400301530003500365606005400400606003700454710006700491856010100558856010800659856012800767856010800895955009201003972000901095992001201104037247824000027532520131202110418.01 a1463-6786 aFNSP947766 a0000275325 a19990617a19989999 ba0 aeng aGB aaga 14aThe Manchester School 1aVol.66, no.1 (Jan.1998)- aOxfordcBlackwelld1998- aBimestriel 1aPapers in money, macroeconomics and finance 1aManchester School of Economic and Social Studiesx0025-2034 0aManchester Schoolb1998. Print aEconomie politiqueyGrande-BretagnexPériodiques aEconomie politiquexPériodiques aVictoria university of ManchesterbSchool of economics studies uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101097 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=MSE&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 66 no. 1 (jan-1998) -vol. 80 no. 6 (déc-2012)cParisdMagasins/AnnexeeP 8° 0116 aZPAY aDEW 33001271nas 2200301 i 450 001001000000002001100010005001700021035001500038035001500053100004100068101000800109102000700117110001600124200011600140210002500256300006600281326001200347517006100359517006400420601002500484601003500509710001100544856023500555856003700790955010700827992001400934992002100948039247570000019677020130319051621.0 aFNSP722200 a0000196770 a19900101a19519999 ba0 afre aFR aala 10aManuel de la Conférence généralefOrganisation des Nations Unies pour l'éducation, la science et la culture aPariscUnescod1951- aDernière édition papier 1994, puis en version électronique aBiennal10aTextes fondamentaux. Manuel de la Conférence générale10aManuel de la Conférence générale et du Conseil exécutif02aUnescoxPériodiques02aUnescobConférence générale02aUnesco4 uhttp://unesdoc.unesco.org/Ulis/cgi-bin/ulis.pl?database=&lin=1&futf8=1&ll=1&gp=1&look=default&sc1=1&sc2=1&nl=1&req=2&text=Convention%20on%20the%20Privileges%20and%20Immunities%20of%20the%20Specialized%20Agencies&text_p=phrase+like4 zAccès libre au texte intégral.1 b(1951) ; (1954) ; (1958) -(1985 ; (1988) -(1989) ; (1991) ; (1994)cParisdMagasins/AnnexeeP 8° 3249 aDEW 341.2 aGEO RQ Universel00982nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000075001502100025002252300024002503260012002745170061002866010025003477100011003728010013003838560235003968560042006319550005006739920014006780001190128000119012820130319051621.0 a0001190128 a a19909999k fre 01 ba0 afre aFR ar aal z  adr 10aManuel de la Conférence généraleb[Ressource électronique]fUnesco aPariscUnescod1990- aRevue électronique aBiennal10aTextes fondamentaux. Manuel de la Conférence générale02aUnescoxPériodiques02aUnesco 0aFRbFNSP4 uhttp://unesdoc.unesco.org/Ulis/cgi-bin/ulis.pl?database=&lin=1&futf8=1&ll=1&gp=1&look=default&sc1=1&sc2=1&nl=1&req=2&text=Convention%20on%20the%20Privileges%20and%20Immunities%20of%20the%20Specialized%20Agencies&text_p=phrase+like4 zContenu : texte intégral depuis 19901 r aDEW 341.200970nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001500154210005300169326001600222440004200238606005000280606004000330676000800370710005100378856003800429856010800467955006800575972000900643992001600652039736350000001073920130319051622.01 a0764-3470 aFNSP120337 a0000010739 a19900711b19862003 ba0 afre aFR aaha 10aMappemonde aMontpelliercMaison de la géographied1986-2003 aTrimestriel 1tMappemondeb[Ressource électronique] aGéographie économiquexCartesxPériodiques aGéopolitiquexCartesxPériodiques a91002aGroupement d'intérêt public RECLUSc(France)40uhttp://www.mgm.fr/PUB/Mappemonde/ zContenu : sommaires depuis le n°3, 1993, résumés depuis le n°3, 1995 et jusqu'au n°4, 2003 = n°721 bno. 1 (1990) -no. 72 (2003)cParisdMagasins/AnnexeeP 4° 5926 aZPAY aDEW 911-91300990nls 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000042001502070022001922100048002142300005002623000057002673260016003243360075003403370025004154300044004405170015004846060050004996060040005498010013005898560029006029550005006319920016006360000610214000061021420130319051622.0 a0000610214 a a20049999k fre 01 ba0 afre aFR az aah z  adr 10aMappemondeb[Ressource électronique] 1aN°1=n°73(2004)- aMontpelliercMaison de la géographied2004 a aTexte intégral gratuit depuis le n°73 = n°1, 2004 aTrimestriel aDonnées textuelles et cartographiques accessibles uniquement en ligne aFichiers HTML et PDF 1tMappemondeb[Texte imprimé]x0764-347010aM@ppemonde aGéographie économiquexCartesxPériodiques aGéopolitiquexCartesxPériodiques 0aFRbFNSP4 uhttp://mappemonde.mgm.fr1 r aDEW 911-91300933nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000051001502100005002012300005002063000062002113260016002733360101002893370017003906060030004076060067004377100062005048010013005668560047005799550005006260000432327000043232720130319051622.0 a0000432327 a a20019999k fre 01 ba0 afre aFR az aay z  adr 10aMarchés émergentsb[Ressource électronique] a a aTexte intégral de la revue depuis le n°24, janvier 2003 airrégulier aDonnées textuelles accessibles uniquement en ligne ou par abonnement par courrier électronique aFichiers PDF aRisque paysxPériodiques aMarché financieryNouveaux pays industrialisésxPériodiques02aFrancebDirection des relations économiques extérieures 0aFRbFNSP4 uhttp://www.dree.org/publications/index.htm1 r00828nas 2200277 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000480015421000330020232600170023553000290025260600290028160700250031085600370033595500690037295500720044199200250051399200120053804050803X000021725620130903160757.01 a1275-7500 aFNSP782238 a0000217256 a19900101a19979999 ba0 afre aFR aaca 10aMarianne‎fdir. publ. Jean-François Kahn aPariscMarianne (DIP)d1997- aHebdomadaire10aMarianne‎bParis. 1997 aActualitéxPériodiques aFrancexPériodiques4 uhttp://www.marianne-en-ligne.fr/1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 66881 bno. 1 (28 avr/4 mai-1997) -....cParisdMagasins/AnnexeeP 4° 6688 aGEO RA4.06 France 01 aDEW 05000885nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001800154210004300172326002600215326003000241606003400271801002100305856010500326856005200431955007000483972000900553992002100562992001200583039402819000002771320130429114031.01 a0308-597X aFNSP174706 a0000027713 a19900101a19779999 ba0 aeng aGB aaga 10aMarine policy aGuilfordcButterworth-Heinemannd1977- aBimestriel‎b19990- aTrimestriel‎b1977-1989 aDroit de la merxPériodiques 3aFRbCCN0308-597X4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/web-editions/journal/0308597X zContenu : accès aus sommaires et aux résumés1 bvol. 8 no. 2 (avr-1984) -....cParisdMagasins/AnnexeeP 4° 5142 aZCAD aGEO RQ Universel aDEW 34100928cas0 2200325 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116106000600123110001600129200001500145210002400160512002400184517003500208530002400243607005400267710006500321801003000386801002300416802000700439856004000446955006800486972000900554992001400563992002500577090057163000091655420130319051623.01 a1771-0790 a0000916554 a20010102a20009999 y0frey0103 ba0 afre aFR ar azku uu 10aMartinique aPariscIEDOMd2000-13aLa Martinique en...13aLa Martinique : rapport annuel10aMartiniqueb(Paris) aMartiniquexConditions économiquesxPériodiques02aInstitut d'émission des départements d'Outre-merc(France) 3aFRbAbesc20050909gAFNOR 3aFRbISSNc20050901 a074 uhttp://www.iedom.fr/dom/martinique/1 b(2000) -.... = (1999) -....cParisdMagasins/AnnexeeP 8° 6850 aZGRA aDEW 330.9 aGOE RA4.06 France 0101453nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210007000200326001600270430008300286606004400369606003900413676000800452710006100460801002100521856002600542856007500568856011900643856010800762955006700870955006300937957007001000972000901070992001201079001033557000005278820130319051624.01 a0769-3206 aFNSP252514 a0000052788 a19900101a19859999 ba0 afre aFR aahu 10aMatériaux pour l'histoire de notre temps aNanterrecAssociation des amis de la B.D.I.C. et du muséed1985- aTrimestriel 1aLa Lettre de l'Association des amis de la B.D.I.C. & du muséexISSN 0293-2245 aRelations internationalesxPériodiques aHistoire universellexPériodiques a90902aAssociation des amis de la BDIC et du Muséec(Nanterre) 3aFRbCCN0769-32064 uhttp://www.persee.fr/ zContenu : accès libre au texte intégral du n°1, 1985 au n°68, 20024 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-materiaux-pour-l-histoire-de-notre-temps.htm4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étage:eDEW 9091 bno. 1 (jan-1985) -....cParisdMagasins/AnnexeeP 4° 48121 bno. 1 (1985) -no. 20 (1990)cParisdMagasins/AnnexeeP Index 0751 aZPAY aDEW 90901180nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200009500163210002300258320004500281326001600326430006600342606005200408606003300460710007300493801001300566856006300579856006900642955006500711957001700776972000900793992001200802992001600814048886696000031766720130319051624.01 a0987-6936 a0000317667 a a20009999k fre ba0 afre aFR a 0  ar aah z 0 10aMathématiques et sciences humainesfCentre d'analyse et de mathématique socialesSgEHESS aPariscCAMSd2000- aA déjà porté ce titre de 1962 à 1987 aTrimestriel 1tMathématiques, informatique et sciences humaines,x0995-2314 aSciences socialesxMathématiquesxPériodiques aMathématiquesxPériodiques02aCentre d'analyse et de mathémathique socialesc(Paris /cMarseille) 0aFRbFNSP4 uhttp://www.ehess.fr/revue-msh/recherche.php?numero=dernier zContenu : sommaires des nos et sélection d'articles depuis 19621 bno. 149 (pri-2000) -....cParisdMagasins/AnnexeeP 4° 20191 eP Index 0622 aZPAY aDEW 004 aDEW 310-31900979nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200004800160210002900208300007100237326001400308517005500322530002500377606002900402607002500431856014500456955007600601992001200677038816601000010723220130319051624.0 a1256-0359 aFNSP454320 a0000107232 a19900101b18841944 ba0 afre aFR ar acaa 03aLe Matinederniers télégrammes de la nuit aParisc[s.n.]d1884-1944 aReprend le titre de: "Le matin: journal républicain indépendant" aQuotidien13aLe Matinele mieux informé des journaux français03aLeMatinbParis. 1884 aActualitéxPériodiques aFrancexPériodiques4 uhttp://gallica.bnf.fr/ark:/12148/cb328123058/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1884-1944)1 b(1914) -(1918) ; (oct-1939) -(1942) ; (1944)cParisdAnnexeeP F° 1105 aDEW 05001230cas0 2200397 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147105001800154110001600172200006400188210002400252326001100276410008300287512001800370517002800388607005900416710006500475801003000540801002300570801003000593802000700623856003700630856003600667955006200703972000900765991001800774992002600792992001400818094684693000091919520130319051624.0 a1760-9038 a131723162 aissn17609038 a0000919195 a20060106a19999999k y0frey50 ba0 afre aFR ay  azku uu 10aMayottefInstitut d'émission des départements d'Outre-mer aPariscIEDOMd1999- aAnnuel 1tRapport annuel - Institut d'émission des départements d'Outre-merx1632-420X10aMayotte en...10aMayotteerapport annuel aMayottexConditions économiquesxPériodiques2rameau02aInstitut d'émission des départements d'Outre-merc(France) 3aFRbAbesc20090423gAFNOR 3aFRbISSNc20090225 3aFRbAbesc20060112gAFNOR a074 uhttp://www.iedom.fr/dom/mayotte/4 zAccès libre au texte intégral1 b(1999) ; (2001) -....cParisdMagasins/AnnexeeP 8° 6853 aZGRA aexempb201212 aGEO RL2 Océan indien aDEW 330.901018nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210003600181326001600217606003900233606004700272801002100319856012600340856010800466955007800574972000900652991001800661992002100679992001600700038828308000002730320130319051624.01 a0047-5394 aFNSP173794 a0000027303 a19900101a19649999 ba0 aeng aUS aaha 14aThe McKinsey quarterly aNew YorkcMcKinsey & Co.d1964- aTrimestriel aGestion d'entreprisexPériodiques aOrganisation de l'entreprisexPériodiques 3aFRbCCN0047-53944 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=MCK&site=bsi-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 4 no. 4 (pri-1967) -no. 2 (2007)cParisdMagasins/AnnexeeP 8° 2953 aZGRA aexempb201106 aGEO RQ Universel aDEW 650-65801626cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200008400156210002700240326001400267441010700281441010400388510009000492510002900582606006200611606007600673606005700749710006700806801003000873856012400903856010801027955005501135972000901190992005101199992001401250048881309000081978720130319051625.01 a1606-8416 accn7208/5169 a0000819787 a20000309b19999999 0frey0103 ba0 amul aZZ aal 10aMeasuring globalisationfOrganisation for Economic Co-operation and Development aPariscOCDEd1999-2008 aBisannuel 1tMeasuring globalisation : activities of multinationals. Volume I, Manufacturing sector, ISSN 2074-7233 1tMeasuring globalisation : activities of multinationals. Volume II, Services (Print), ISSN 2074-725X10aMesurer la mondialisationele poids des multinationales dans les économies de l'OCDE10aMesurer la globalisation aEntreprises multinationalesyPays de l'OCDExPériodiques aIndustries manufacturièresyPays de l'OCDExStatistiquesxPériodiques aServicesyPays de l'OCDExStatistiquesxPériodiques02aOrganisation de coopération et de développement économiques 3aFRbAbesc20040920gAFNOR4 uhttps://acces-distant.sciences-po.fr/fork?http://masetto.sourceocde.org/vl=18115731/cl=19/nw=1/rpsv/outlook_annuals.htm4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(2001) -(2008)cParisdMagasins/AnnexeeP 4° 7075 aZPAY aGEO RN1 Pays industrialisés, pays occidentaux aDEW 330.901090nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000290013921000240016832600220019232600270021445200500024151700310029153000290032260600260035167600080037780100210038585601080040685601080051495500700062297200090069299100180070199200210071999200120074003910723X000005234820140109135214.01 a0163-4437 aFNSP251653 a19900101a19799999 ba0 aeng aGB aagu 10aMedia, culture & society aLondoncSaged1979- aBimestrielb1999- aTrimestrielb1979-1998 1tMedia, culture & society (Online),x1460-367510aMedia, culture and society00aMedia, culture & society aMédiasxPériodiques a070 3aFRbCCN0163-44374 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1979) -....cParisdMagasins/AnnexeeP 8° 4435 aZSAB aexempb201106 aGEO RQ Universel aDEW 30200999nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210007800177326001200255430005800267606003700325710005200362856003400414856015500448955006000603972000900663992002500672992001200697039121143000002128820130319051626.01 a0170-1754 aFNSP157601 a0000021288 a19910104a19709999 ba0 ager aDE aafa 10aMedia-Perspektiven aFrankfurt am MaincArbeitsgemeinschaft der ARD-Werbegesellschaftend1970- aMensuel 1aHinweisdienst - Werbung im Rundfunk - Gmbhx0170-1770 aMédiasyAllemagnexPériodiques02aArbeitsgemeinschaft der ARD-Werbegesellschaften4 uhttp://www.ard-werbung.de/mp/ zContenu : accès au texte intégral depuis janvier 2000, sommaires et abstracts depuis 1997, certains articles en texte intégral, moteur de recherche1 bno. 11 (1990) -....cParisdMagasins/AnnexeeP 4° 5968 aZGRA aGEO RA5.01 Allemagne aDEW 30201428nas 2200397 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200009400148207001200242210005100254300002900305326001100334430002900345451004000374530003400414606005600448606005700504606006500561676000800626710007500634801001300709856012500722955006200847955005300909972000900962992002700971992001600998992001601014118815296000110298320131025115448.01 a1960-8527 a a20079999 fre 01 ba0 afre aFR a 0  ar aa z 0 10aMediterrafCentre International de Hautes Etudes Agronomiques Méditerranéennes (CIHEAM) 1a(2007)- aPariscCIHEAMcSciences-Po, les Pressesd2007- aPas de parution en 2011. aAnnuel 1tRapport annuel du CIHEAM 1ttMediterra (English ed.)x1966-510510aMediterra‎bÉd. française aAgricultureyMéditerranée (région)xPériodiques aAlimentationyMéditerranée (région)xPériodiques aDéveloppement ruralyMéditerranée (région)xPériodiques a33802aCentre international de hautes études agronomiques méditerranéennes 0aFRbFNSP4 uhttp://www.ciheam.org/index.php/fr/publications/mediterra-2012zAccès libre au texte intégral des rapports depuis 20071 bLa dernière annéecParisd27, Salle 1er étageeDEW 3381 b(2007) -....cParisdMagasins/AnnexeeP 8° 6976 aZPAY aGEO RL4 Méditerranée aDEW 338.1-3 aDEW 310-31901352cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200008100180210004900261430003200310451004300342606005600385606005700441606006500498676000800563710007500571801003000646801002300676802000700699856008500706955006200791955005300853992001700906992001600923992002700939127900748000119030420130515184200.01 a1966-5105 aissn19665105 a0001190304 a20081002a20079999u y0frey50 ba0 aeng aFR ay  ar azku uu 10aMediterrafInternational Centre for Advanced Mediterranean Agronomic Studies aPariscPresses de Sciences PocCIHEAMd2007- 1tAgri.med (Paris)x1813-1603 1tMediterra (Éd. française)x1960-8527 aAgricultureyMéditerranée (région)xPériodiques aAlimentationyMéditerranée (région)xPériodiques aDéveloppement ruralyMéditerranée (région)xPériodiques a33802aCentre international de hautes études agronomiques méditerranéennes 3aFRbAbesc20091005gAFNOR 3aFRbISSNc20091001 a074 uhttp://www.ciheam.org/zAccès libre au texte intégral des rapports depuis 20071 bLa dernière annéecParisd27, Salle 1er étageeDEW 3381 b(2009) -....cParisdMagasins/AnnexeeP 8° 6976 aDEW 338. 1-3 aDEW 310-319 aGEO RL4 Méditerranée01130nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154207002600181210002400207326001800231530004100249607004300290856004100333856007700374856010900451856010800560955007000668972000900738991001800747992002700765992001200792036754900000021394220140107172726.01 a1362-9395 aFNSP772657 a0000213942 a19900101a19969999 ba0 aeng aGB aaia 10aMediterranean politics 1aVol.1, no. .1 (1996)- aLondoncCassd1996- a3 n°s par an10aMediterranean politicsbLondon. 1996 aMéditerranée (région)xPériodiques4 uhttp://www.frankcass.com/jnls/mp.htm zContenu : sommaires depuis le vol. 1, n°1 ; sommaire du n° à paraitre4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713604487db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (hiv-1996) -....cParisdMagasins/AnnexeeP 8° 6328 aZSAB aexempb201209 aGEO RL4 Méditerranée aDEW 90901127nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210004700182326001600229607004300245856005800288856005300346856010100399856010800500955006900608955007000677972000900747991001800756992002700774992001200801040267660000001293620140107173031.01 a1047-4552 aFNSP132739 a0000012936 a19900913a19909999 ba0 aeng aUS aaha 10aMediterranean quarterly aDurham, N.C.cDuke University Pressd1990- aTrimestriel aMéditerranée (région)xPériodiques4 uhttp://muse.jhu.edu/journals/mediterranean_quarterly/ zContenu : sommaires depuis le vol.10, n°3, 19994 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=111229 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bL'année en courscParisdBibliothèque de rechercheeP 8° 56651 bvol. 1 no. 1 (hiv-1990) -....cParisdMagasins/AnnexeeP 8° 5665 aZCAD aexempb201110 aGEO RL4 Méditerranée aDEW 90901373nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210006400173320007900237326001500316607003200331607004300363801002100406830016600427856009200593856010800685955006000793957010800853972000900961992002600970992002700996992001201023039225151000002790120130319051626.01 a0025-8296 aFNSP175712 a0000027901 a19900101a19609999 ba0 afre aFR aaha 10aMéditerranée aAix-en-ProvencecLes amis de la revue Méditerranéed1960- aA partir de 2007 publié par Les Publications de l'Université de Provence aSemestriel aEurope du SudxPériodiques aMéditerranée (région)xPériodiques 3aFRbCCN0025-8296 a1ère an., n°1, janv./mars 1960 ---> t.34, n°4, 1978 < P 8° 1859 >, t.35, n°1/2,1979 ---> n°53, 1984 < P 4° 4373 >collection donnée au CTL en juillet 20014 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-mediterranee.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 54 (1985) -....cParisdMagasins/AnnexeeP 4° 43731 b(1960) -(1969) ; (1970) -(1979) ; (1980) -(1989) ; (1990) -(1999)cParisdMagasins/AnnexeeP Index 0168 aZCAD aGEO RA6 Europe du Sud aGEO RL4 Méditerranée aDEW 90900965cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200006400162207001800226210003100244326001600275430004300291530002700334606003000361801003000391801002300421802000700444856004400451856004800495955006300543972000900606992001200615083216626000091296620130319051626.01 a1771-3757 aissn17713757 a0000912966 a20050110a20049999 y0frey0103 ba0 afre aFR ar aahu uu 10aMédiumetransmettre pour innoverfdir. publ. Régis Debray 0ano. 1 (2004)- aPariscEd. Babyloned2004- aTrimestriel 1tLes Cahiers de médiologie,x1270-066510aMédiumb(Paris. 2004) aMédiologiexPériodiques 3aFRbAbesc20050909gAFNOR 3aFRbISSNc20050601 a074 uhttp://editions-babylone.com/medium.htm zContenu : sommaires à partir du n°1, 20041 bno. 1 (aut-2004) -....cParisdMagasins/AnnexeeP 8° 6226 aZPAY aDEW 30201079nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154210004700192326001700239517003800256517003200294607003100326607006800357607005600425801002100481856002500502856004900527955006900576955007100645992002500716992001200741038828618000002874320130319051627.01 a0047-7230 aFNSP178636 a0000028743 a19900101a19579999 ba0 aeng aGB aa u 10aMEED. Middle East economic digest aLondoncMiddle East Economic Digestd1957- aHebdomadaire10aMEED. Middle East business weekly10aMiddle East economic digest aMoyen-OrientxPériodiques aMoyen-OrientxRelations économiques extérieuresxPériodiques aMoyen-OrientxConditions économiquesxPériodiques 3aFRbCCN0047-72304 uhttp://www.meed.com/ zContenu : sommaire des numéros depuis 2001.1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 28311 bvol. 14 no. 1 (jan-1970) -....cParisdMagasins/AnnexeeP 4° 2831 aGEO RG2 Moyen-Orient aDEW 95601154nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003500139210002300174326001100197517008000208530003600288601006700324606005500391710009000446856016800536955005500704972000900759991001800768992002200786992001600808992001600824039871495000014660520130828143100.01 a0994-9410 aFNSP577554 a19950117a19569999 ba0 afre aFR aaka 10aMémento de statistiquesfSNCF aPariscSNCFd1956- aAnnuel10aMémento de statistiques - Société nationale des chemins de fer français00aMémento de statistiques - SNCF02aSociété nationale des chemins de fer françaisxPériodiques aChemins de feryFrancexStatistiquesxPériodiques02aSociété nationale des chemins de fer françaisbDépartement méthodes et systèmes4 uhttp://www.statistiques.developpement-durable.gouv.fr/donnees-densemble/1869/873/memento-statistiques-transports.htmlzAccès libre au texte intégrale depuis 19501 b(1972) -(2004)cParisdMagasins/AnnexeeP 8° 3259 aZGRA aexempb200911 aGEO RA4.06 France aDEW 383-389 aDEW 310-31901412cas0 2200385 450 001001000000002001100010005001700021011001400038035001400052035001700066035001800083035001700101035001500118100004100133101000800174102000700182105001800189106000600207110001600213200014400229210005100373430016300424510004100587530007500628531005000703710004000753801003000793801001800823801002300841802000700864856003600871856004900907955005500956991001501011038859602000112749420130319051627.0 a0074-4433 a001610171 accn0074-4433 afrBN007939158 aissn00744433 a0001127494 a19880202a19489999k y0frey0103 ba0 amul aNL ay  ar aaz 10aMémoires, plaidoiries et documentsfCour internationale de justice =dPleadings, oral arguments, documentsfInternational Court of Justice aLa HayecInternational Court of Justiced1948- 1tPublications de la Cour permanente de justice internationale. Série C. Actes et documents relatifs aux arrêts et aux avis consultatifs de la Courx1011-846210aPleadings, oral arguments, documents10aPleadings, oral arguments, documentsb(International Court of Justice) 0aPlead. oral argum. doc.b(Int. Court Justice)02aCour internationale de justice4070 3aFRbAbesc20080123gAFNOR 3aFRbBNgAFNOR 3aFRbISSNc20030523 a004 zAccès libre au texte intégral4 uhttp://www.icj-cij.org/docket/index.php?p1=31 b(1948) -(1976)cParisdMagasins/AnnexeeCOL8°1089 aPériobTZ00978nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000092001502100044002422300024002863260011003106010043003216060036003646070051004007100029004518010013004808560043004938560062005369550005005989920023006039920012006269920014006380001140369000114036920130319051628.0 a0001140369 a a19809999k fre 01 ba0 aspa aBO ar aak z  adr 10aMemoria - Banco central de Boliviab[Ressource électronique]fBanco central de Bolivia aLa PazcBanco central de Boliviad1980- aRevue électronique aAnnuel02aBanco central de BoliviaxPériodiques aFinancesyBoliviexPériodiques aBoliviexConditions économiquesxPériodiques02aBanco central de Bolivia 0aFRbFNSP4 uhttp://www.bcb.gov.bo/sitio/index.php# zContenu : texte intégral du rapport en ligne depuis 19801 r aGEO RD4.12 Bolivie aDEW 332 aDEW 330.900988nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000094001502100050002442300024002943260011003186010044003296060037003736070052004107100030004628010013004928560040005058560062005459550005006079920024006129920012006369920014006480001140373000114037320130319051628.0 a0001140373 a a20049999k fre 01 ba0 aspa aHN ar aak z  adr 10aMemoria - Banco central de Hondurasb[Ressource électronique]fBanco central de Honduras aTegucigalpacBanco central de Hondurasd2004- aRevue électronique aAnnuel02aBanco central de HondurasxPériodiques aFinancesyHondurasxPériodiques aHondurasxConditions économiquesxPériodiques02aBanco central de Honduras 0aFRbFNSP4 uhttp://www.bch.hn/memoria_anual.php zContenu : texte intégral du rapport en ligne depuis 20041 r aGEO RD2.04 Honduras aDEW 332 aDEW 330.901051nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000112001502100052002622300024003143260011003386010052003496060035004016070050004367100039004868010013005258560064005388560070006029550005006729920022006779920012006999920014007110001140375000114037520130319051628.0 a0001140375 a a19229999k fre 01 ba0 aspa aPE ar aak z  adr 10aMemoria - Banco central de reserva del Perúb[Ressource électronique]fBanco central de reserva del Perú aLimacBanco central de reserva del Perúd1922- aRevue électronique aAnnuel02aBanco central de reserva del PeruxPériodiques aFinancesyPérouxPériodiques aPérouxConditions économiquesxPériodiques02aBanco central de reserva del Perú 0aFRbFNSP4 uhttp://www.bcrp.gob.pe/bcr/Memoria-Anual/Memoria-Anual.html zContenu : texte intégral du dernier rapport en ligne depuis 20021 r aGEO RD4.18 Pérou aDEW 332 aDEW 330.901051nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000048001552100027002033000041002303260011002716010046002826060039003286070054003677100032004218010021004538560045004749550079005199550054005989720009006529920026006619920012006879920014006990000090811000009081120130319051628.01 a0067-320X aFNSP400311 a0000090811 a19900101a19509999 ba0 aspa aCR aaku 10aMemoria anual - Banco central de Costa Rica aSan JosécBCCRd1950- aEn version électronique depuis 1995 aAnnuel02aBanco central de Costa RicaxPériodiques aFinancesyCosta RicaxPériodiques aCosta RicaxConditions économiquesxPériodiques02aBanco central de Costa Rica 3aFRbCCN0067-320X4 uhttp://www.bccr.fi.cr/flat/bccr_flat.htm1 b(1952) ; (1955)-(1967) ; (1974)-(1979)cParisdMagasins/AnnexeeCOL8°05561 b(1981)-(1984)cParisdMagasins/AnnexeeP 4° 5274 aZGRA aGEO RD2.06 Costa Rica aDEW 332 aDEW 330.900998nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000104001502100027002542300024002813260011003056010046003166060039003626070054004017100032004558010013004878560045005008560070005459550005006159920026006209920012006469920014006580001140677000114067720130319051628.0 a0001140677 a a19959999k fre 01 ba0 aspa aCR ar aak z  adr 10aMemoria anual - Banco central de Costa Ricab[Ressource électronique]fBanco central de Costa Rica aSan JosécBCCRd1995- aRevue électronique aAnnuel02aBanco central de Costa RicaxPériodiques aFinancesyCosta RicaxPériodiques aCosta RicaxConditions économiquesxPériodiques02aBanco central de Costa Rica 0aFRbFNSP4 uhttp://www.bccr.fi.cr/flat/bccr_flat.htm zContenu : texte intégral du dernier rapport en ligne depuis 19951 r aGEO RD2.06 Costa Rica aDEW 332 aDEW 330.900976nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000097001502100029002472300024002763260011003006010058003116060040003696070055004097100044004648010013005088560053005218560042005749550005006169920027006219920014006480001109620000110962020130319051628.0 a0001109620 a a20029999k fre 01 ba0 aspa aSV ar aak z  adr 10aMemoria de labores - BCRb[Ressource électronique]fBanco central de reserva de El Salvador aSan SalvadorcBCRd2002- aRevue électronique aAnnuel02aBanco central de reserva de El SalvadorxPériodiques aFinancesyEl SalvadorxPériodiques aEl SalvadorxConditions économiquesxPériodiques02aBanco central de reserva de El Salvador 0aFRbFNSP4 uhttp://www.bcr.gob.sv/publicaciones/memoria.html zContenu : texte intégral depuis 20021 r aGEO RD2.03 El Salvador aDEW 330.901099nas 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000066001502100041002163000047002573260011003044370064003156010037003796060038004166070053004547100023005078010013005308560065005438560053006089550054006619720009007159920025007249920012007490000994767000099476720130319051628.0 a0000994767 a a20039999 fre 01 ba0 aspa aGT a 0  ar aa z 0 10aMemoria de labores del Banco de GuatemalafBanco de Guatemala aGuatemalacBanco de Guatemalad2003- aEn version électronique à partir de 2006 aAnnuel 1tEstudio económico y memoria de laboresfBanco de Guatemala02aBanco de GuatemalaxPériodiques aFinancesyGuatemalaxPériodiques aGuatemalaxConditions économiquesxPériodiques02aBanco de Guatemala 0aFRbFNSP4 uhttp://www.banguat.gob.gt/inc/main.asp?id=14756&aud=1&lang=14 zContenu : texte intégral du rapport depuis 20031 b(2002)-(2005)cParisdMagasins/AnnexeeP 4° 7122 aZGRA aGEO RD2.02 Guatemala aDEW 33200957nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000093001502100041002432300024002843260011003086010037003196060038003566070053003947100023004478010013004708560065004838560053005489550005006019920025006069920012006310001109736000110973620130319051628.0 a0001109736 a a20039999k fre 01 ba0 aspa aGT ar aak z  adr 10aMemoria de labores del Banco de Guatemalab[Ressource électronique]fBanco de Guatemala aGuatemalacBanco de Guatemalad2003- aRevue électronique aAnnuel02aBanco de GuatemalaxPériodiques aFinancesyGuatemalaxPériodiques aGuatemalaxConditions économiquesxPériodiques02aBanco de Guatemala 0aFRbFNSP4 uhttp://www.banguat.gob.gt/inc/main.asp?id=14756&aud=1&lang=1 zContenu : texte intégral du rapport depuis 20031 r aGEO RD2.02 Guatemala aDEW 33201241cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200003100180207004200211210007800253326001200331430004100343606003800384710005000422801003000472801002300502801003000525802000700555856010500562856007300667955007700740972000900817992002500826992001600851094683166000111034120130319051629.01 a1771-1819 aissn17711819 a0001110341 a20060106a20069999m y0frey0103 ba0 afre aFR ay  ar aafu uu 13aLe Mensuel du Gouvernement 0aN.1 (2006, janvier) -n.20 (2008, mai) aPariscPremier ministre, Service d'information du Gouvernementd2006-2008 aMensuel 1tLa Lettre du Gouvernementx1268-9122 aInformation d'ÉtatxPériodiques02aFrancebService d'information du Gouvernement 3aFRbAbesc20080605gAFNOR 3aFRbISSNc20060101 3aFRbAbesc20070713gAFNOR a074 uhttp://www.archives.premier-ministre.gouv.fr/villepin/information/mensuel_gouvernement_50/index.html zContenu : disponible en texte intégral depuis le no 1, Janvier 20061 bno. 12 (jan-2007) -no. 20 (mai-2008)cParisdMagasins/AnnexeeP 4° 4699 aZGRA aGEO RA4.06 France 01 aDEW 944.08300921nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000058001502100074002082300024002823260012003066070052003187100050003708010013004208560077004338560075005109550005005859920025005909920016006150001061819000106181920130319051629.0 a0001061819 a a20069999k fre 01 ba0 afre aFR ar aaf z  adr 13aLe Mensuel du Gouvernementb[Ressource électronique] aPariscPremier ministre, Service d'information du Gouvernementd2006- aRevue électronique aMensuel aFrancexPolitique et gouvernementxPériodiques02aFrancebService d'information du Gouvernement 0aFRbFNSP4 uhttp://www.premier-ministre.gouv.fr/information/mensuel-gouvernement_50/ zContenu : accès libre au texte intégral depuis le n°1, janvier 20061 r aGEO RA4.06 France 01 aDEW 944.08301489cas0 2200373 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164105001800171106000600189110001600195200006000211207010000271210004000371300015300411300008300564326001200647430004200659530003700701801003000738801002300768801001300791802000700804856014500811955014700956992001201103038551616000037619620130319051629.01 a1149-0292 a070619204 accn1149-0292 aissn11490292 a0000376196 a19901029b18901965k y0frey0103 ba0 afre aFR ay 0  ar aafu 0uu 10aMercure de Franceesérie modernefdir. Alfred Vallette 0aT. 1, no.1 (1890)-t. 297, no.998 (1940)at. 298, no.999/1000 (1946)-t. 354, no.1221/1222 (1965) aPariscMercure de Franced1890-1965 aTables : t. 1-20 (1890-1896) ; t. 21-52 (1897-1904) ; t. 53-82 (1905-1909) ; t. 83-106 (1910-1913) ; t. 107-136 (1914-1919) ; t. 137-176 (1920-1924) aExiste aussi en partie sous forme de reprod. en fac-sim., Vaduz : Kraus, 1965- aMensuel 1tLa Pléïade (Paris. 1886)x1149-028410aMercure de Franceb(Paris. 1890) 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20030203 0aFRbFNSP a074 uhttp://gallica.bnf.fr/ark:/12148/cb34427363f/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1890-1935)1 b1912 -1915 (lac) ; 1919 (lac) 1920, 1921 (lac) ,1922 (lac), 1923 -1926, 1927 (lac), 1928 (lac) ; 1947-1965cParisdMagasins/AnnexeeP 8° 0395 aDEW 05001408nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210007000183326001500253430004500268440006100313607003100374710006900405801002100474856009000495856010800585856006900693856009000762955010100852957008000953992002501033992001201058037817620000002874820130319051629.01 a0888-0328 aFNSP178646 a0000028748 a19900101b19861987 ba0 aeng aUS aagu 10aMERIP Middle East report aNew YorkcMiddle East Research and Information Projectd1986-1987 aBimestriel 1aMERIP reports (0047-7265) < P 4° 4185 > 1aMiddle East report (New York, N.Y., 1988) < P 4° 4185 > aMoyen-OrientxPériodiques02aMiddle East Research and Information Projectc(Washington, D.C.) 3aFRbCCN0888-03284 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/08880328.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po zPour MERIP reports < P 4° 4185 > via JSTOR, voir URL ci-dessous uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00477265.html1 bvol. 16 no. 1 (jan/fev-1986) -vol. 17 no. 149 (nov/dec-1987)cParisdMagasins/AnnexeeP 4° 41851 bno. 1 (1971) -no. 92 (1980) (n°1/92)cParisdMagasins/AnnexeeP Index 0530 aGEO RG2 Moyen-Orient aDEW 95600941nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001100154210003400165326001200199606003700211607004800248801002100296856003300317856007700350955014800427972000900575991001800584992002500602992001200627038751534000002852020130319051629.01 a0026-0096 aFNSP178055 a0000028520 a19900101a19479999 ba0 ager aDE aafu 10aMerkur aStuttgartcKlett-Cottad1947- aMensuel aVie intellectuellexPériodiques aAllemagnexVie intellectuellexPériodiques 3aFRbCCN0026-00964 uhttp://www.online-merkur.de/ zContenu : sommaires depuis le n° 526, janvier 1993, moteur de recherche1 bvol. 2 no. 10 (1948) ; vol. 3 no. 16 (1949) ; vol. 18 no. 193 (1964) ; vol. 22 no. 238 (jan/fev-1968) -....cParisdMagasins/AnnexeeP 8° 2516 aZCAD aexempb200908 aGEO RA5.01 Allemagne aDEW 00101207nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210004300195326001500238422004700253440004400300606004400344710007200388712004400460856009000504856010800594955008200702991001800784992004600802992002100848992001200869040327558000013185120130319051629.01 a1079-1760 aFNSP535909 a0000131851 a19940704b19941998 ba0 aeng aUS aaja 10aMershon international studies review aCambridge, Mass.cBlackwelld1994-1998 aSemestriel 1aInternational studies quarterlyx0020-8833 1tInternational studies reviewx1521-9488 aRelations internationalesxPériodiques02aMershon Center for Education in National Securityc(Columbus, Ohio)02aAssociation des études internationales4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/10791760.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 38 no. 1(1994) -vol. 40 no. 1 (1996)cParisdMagasins/AnnexeeP 8° 6051 aexempb201202 ahttp://www.blackwell-synergy.com/loi/misr aGEO RQ Universel aDEW 32701134nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200011600154210006200270326001600332530002900348606004000377606003600417712007700453712005500530856003500585856007700620955008200697972000900779991001800788992001400806111254590000020897120130319051630.01 a1405-4558 aFNSP757276 a0000208971 a19900101a19979999 ba0 aspa aMX aaha 10aMetapolíticaerevista trimestral de teoria y ciencia de la politicafCentro de estudios de política comparada aMéxicocCentro de estudios de política comparadad1997- aTrimestriel00aMetapolíticab(Impresa) aPhilosophie politiquexPériodiques aScience politiquexPériodiques02aUniversidad autónoma de PueblabFacultad de derecho y ciencias sociales02aCentro de estudios de politica comparada (México)4 uhttp://www.metapolitica.com.mx zContenu : sommaires et résumés depuis le vol. 1, n°1, janv.-mars 19971 bvol. 1 no. 1 (1997) -vol. 8 no. 38 (2005)cParisdMagasins/AnnexeeP 8° 6312 aZSAB aexempb201210 aDEW 320.501180nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004500139210006000184326001500244452004500259510002300304530002000327607002600347801002100373856005400394856006700448856009000515856010800605955007000713972000900783991001800792992002000810992001200830039707164000002853920140108155833.01 a0742-9797 aFNSP178098 a19900101a19859999 ba0 amul aUS aaju 10aMexican studies‎d= Estudios mexicanos aBerkeley, Calif.cUniversity of California Pressd1985- aSemestriel 1tMexican studies (Online), ‎x1533-832010aEstudios mexicanos10aMexican studies aMexiquexPériodiques 3aFRbCCN0742-97974 uhttp://www.ucpressjournals.com/journal.asp?j=msem zContenu : sommaires et résumés depuis le vol. 11, n°1, 19954 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/07429797.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (hiv-1985) -....cParisdMagasins/AnnexeeP 8° 4999 aZPAY aexempb201106 aGEO RD1 Mexique aDEW 97201201nls 2200349 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000051001642100049002152300005002643000054002693260017003233300056003403370071003966060036004678010013005038560090005168560108006068560049007148560048007639550005008119920023008169920012008390000801860000080186020130319051631.01 a0026-2234 a0000801860 a a19029999k fre 01 ba0 aeng aUS az aaz z  adr 10aMichigan law reviewb[Ressource électronique] aAnn Harbor, MichcMichigan law reviewd1902- a aTexte intégral depuis le vol. 1, n°1, June 1902 a8 n° par an aDonnées textuelles accessibles uniquement en ligne aTéléchargement de fichiers TIFF, PDF (recommandé) et PostScript aDroityEtats-UnisxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00262234.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://students.law.umich.edu/mlr/index.html zContenu : sommaires depuis le vol. 96, n°11 r aGEO RC2 Etats-Unis aDEW 34901073nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001400139210004600153326002200199326002900221326003000250452003500280530003300315606003600348607005200384676000800436856004800444856004500492955006600537955005900603972000900662991001800671992002200689992001200711039599531000002856620130918162802.01 a0394-7378 aFNSP178162 a19910328a19869999 ba0 aita aIT aaha 10aMicromega aRomacEditrice periodici culturalid1986- aMensuel‎b2010- aBimestriel‎b1989-2009 aTrimestriel‎b1986-1988 1tMicroMega (Online),x2282-121X10aMicroMega‎bTesto stampato aSciences socialesxPériodiques aItaliexPolitique et gouvernementxPériodiques a9404 uhttp://temi.repubblica.it/micromega-online/ zContenu : sommaires depuis le n°1, 19971 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 bno. 1 (1986) -....cParisdMagasins/AnnexeeP 8° 4997 aZCAD aexempb201106 aGEO RA6.03 Italie aDEW 94501086nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210005100182326001600233607003100249676000800280712004600288801002100334856005900355856009700414955006600511955007000577957006700647972000900714992002500723992001200748038752743000000490520130319051631.01 a0026-3141 aFNSP107027 a0000004905 a19900101a19479999 ba0 aeng aUS aahu 14aThe Middle East journal aWashington, D.C.cMiddle East Instituted1947- aTrimestriel aMoyen-OrientxPériodiques a95602aMiddle East Institutec(Washington, D.C.) 3aFRbCCN0026-31414 uhttp://www.mideasti.org/programs/programs_journal.html4 zContenu : accès aux sommaires et résumés des articles depuis le vol 57, n°1, Winter 20031 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9561 bvol. 1 no. 1 (jan-1947) -....cParisdMagasins/AnnexeeP 8° 00181 b(1947-1966), (1967-1977)cParisdMagasins/AnnexeeP Index 0212 aZCAD aGEO RG2 Moyen-Orient aDEW 95601302nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154207002600177210005600203326001600259430004200275607003100317607006700348607006700415676000800482710005000490856002500540856009400565955006600659955006600725957007300791972000900864991001800873992002500891992001200916040290522000006168920130319051631.01 a1061-1924 aFNSP282117 a0000061689 a19900101a19929999 ba0 aeng aUS aaha 10aMiddle East policy 1avol. 1, no. 1 (1992)- aWashington, D.C.cMiddle East Policy Councild1992- aTrimestriel 1aAmerican-arab affairsxISSN 0731-6763 aMoyen-OrientxPériodiques aEtats-UnisxRelations extérieuresyMoyen-OrientxPériodiques aMoyen-OrientxRelations extérieuresyEtats-UnisxPériodiques a95602aMiddle East Policy Council (Washington, D.C.)4 uhttp://www.mepc.org/ zContient une sélection d'articles en texte intégral depuis le vol.4, no 4, octobre 19961 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9561 bvol. 1 no. 1 (1992) -....cParisdMagasins/AnnexeeP 8° 47401 b(1982) -(1993)zcet index constitue le vol.2, n°4, 1993 de la revue aZSAB aexempb201011 aGEO RG2 Moyen-Orient aDEW 95600993nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154207003100180210004700211326001600258607003000274607003400304607003100338710003700369856003200406856007800438955007000516972000900586991001700595992004300612992001200655094034982000013695120140108154315.01 a1073-9467 aFNSP547758 a0000136951 a19940929a19949999 ba0 aeng aUS aaha 10aMiddle East quarterly 1aVol. 1, no. 1 (Mar. 1994)- aPhiladelphia, PacMiddle East Forumd1994- aTrimestriel aPays arabesxPériodiques aPays islamiquesxPériodiques aMoyen-OrientxPériodiques02aMiddle East Forum (Philadelphia)4 uhttp://www.meforum.org/meq/ zAccès libre au texte intégral à l'exception du numéro le plus récent1 bvol. 1 no. 1 (mar-1994) -....cParisdMagasins/AnnexeeP 8° 6061 aZSAB aexemp$201202 aGEO RG Afrique du Nord et Moyen-Orient aDEW 95601183nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210006600200326002300266326002600289430005600315607003100371607003000402710006900432856009000501856010800591955007700699957001700776972000900793992004300802992001200845040004597000002874920130319051631.01 a0899-2851 aFNSP178647 a0000028749 a19910402a19889999 ba0 aeng aUS aaha 10aMiddle East report (New York, N.Y., 1988) aNew YorkcMiddle East Research and Information Projectd1988- aTrimestrielb1996- aBimestrielb1988-1995 1aMERIP Middle East report (0888-0328) < P 4° 4185 > aMoyen-OrientxPériodiques aPays arabesxPériodiques02aMiddle East Research and Information Projectc(Washington, D.C.)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/08992851.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 18 no. 150 (jan/fev-1988) -....cParisdMagasins/AnnexeeP 4° 41851 eP Index 0530 aZCAD aGEO RG Afrique du Nord et Moyen-Orient aDEW 95601303nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000950015420700560024921000740030532600150037944000610039460700310045571000530048685600560053985600640059595500920065995701620075197200090091399100180092299200250094099200120096503875276X000002875020130319051631.01 a0026-3184 aFNSP178648 a0000028750 a19910402b19672008 ba0 aeng aUS aaja 10aMiddle East studies Association bulletinfMiddle East Studies Association of North America 1avol. 1, no. 1 (May 1967) -vol. 42, nos. 1 /2 (2008) aNew YorkcMiddle East Studies Association of North Americad1967-2008 aSemestriel 1tReview of Middle East studies (Tucson, Ariz.)x2151-3481 aMoyen-OrientxPériodiques02aMiddle East Studies Association of North America4 uhttp://fp.arizona.edu/mesassoc/Bulletin/welcome.htm zContenu : sommaires depuis le volume 26, n° 1, Summer 19921 bvol. 7 no. 2 (1973) -vol. 42 no. 1/2 (ete/hiv-2008)cParisdMagasins/AnnexeeP 8° 45301 bvol. 21 (1987) -vol. 30 (1996) ; vol. 31 (1997) -vol. 35 (2001)zse trouvent respectivement dans le vol. 32 no. 1 (1998) et vol. 36, no. 1 (2002) de la revue aZSAB aexempb201010 aGEO RG2 Moyen-Orient aDEW 95601468nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154207002700181210003100208210003100239326002200270326002700292607005800319607003100377676000800408801002100416856005600437856008500493856010900578856010800687955006600795955007000861957005700931972000900988991001800997992004301015992001201058038752786000000490820130319051631.01 a0026-3206 aFNSP107031 a0000004908 a19900101a19649999 ba0 aeng aGB aagu 10aMiddle Eastern studies 1avol. no. 1 (oct-1964)- aLondoncF. Cassd1964-2004 aAbingdoncRoutledged2005- aBimestrielb2004- aTrimestrielb1964-2003 aMoyen-OrientxPolitique et gouvernementxPériodiques aMoyen-OrientxPériodiques a956 3aFRbCCN0026-32064 uhttp://www.tandf.co.uk/journals/titles/00263206.asp zContenu : sommaires depuis le vol. 37, n°1, 2001 et alerte de sommaire par mail4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713673558db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9561 bvol. 1 no. 1 (oct-1964) -....cParisdMagasins/AnnexeeP 8° 22201 b(1964) -(2004)cParisdMagasins/AnnexeeP Index 0739 aZSAB aexempb200909 aGEO RG Afrique du Nord et Moyen-Orient aDEW 95601117nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000068001502100060002183000120002783260016003983360058004143370063004724400068005354520054006036060036006578010013006938560090007069550005007969920014008010000486589000048658920130319051631.0 a0000486589 a b19571972k fre 01 ba0 aeng aUS az aah z  adr 10aMidwest journal of political scienceb[Ressource électronique] aDetroit, Mich.cWayne State University Pressd1957-1972 aAccès au texte intégral (réservé aux sites de Sciences Po) à partir du vol. 1 de 1957 jusqu'au vol. 16 de 1972 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tAmerican journal of political science [Ressource électronique] 1tMidwest journal of political sciencex(0026-3397) aScience politiquexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00263397.html1 r aDEW 320.500873nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001300154210004400167326001600211530002900227607006200256856004400318856005300362856003700415955005900452972000900511991001700520992002200537992001200559040011984000006922920130319051632.01 a1168-0814 aFNSP320294 a0000069229 a19900101a19929999 ba0 afre aFR aaja 00aMigrance aPariscEd. Mémoire-Génériquesd1992- aTrimestriel 0aMigrancebEd. française aFrancexEmigration et immigrationxHistoirexPériodiques4 uhttp://www.generiques.org/migrance.html zContenu : sommaires depuis le n°1, 2e trim.19924 zAccès libre au texte intégral.1 bno. 1 (1992) -....cParisdMagasins/AnnexeeP 8° 5826 aZCAD aexemp$201112 aGEO RA4.06 France aDEW 32501272nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009500154210002400249326001500273530003200288606002800320606004400348607005200392676000800444710008200452856007100534856005500605955006700660955007100727957005200798972000900850991001800859992002100877992001200898039873935000005583220130430111926.01 a0995-7367 aFNSP261110 a0000055832 a19900101a19899999 ba0 afre aFR aaga 10aMigrations sociétéfCentre d'information et d'études sur les migrations internationales aPariscCIEMId1989- aBimestriel 0aMigrations sociétébParis aEtrangersxPériodiques aEmigration et immigrationxPériodiques aFrancexEmigration et immigrationxPériodiques a32502aCentre d'information et d'études sur les migrations internationalesc(Paris)4 uhttp://www.revues-plurielles.org/php/index.php?nav=revue&no=16&sr= zContient : sommaires des nos depuis le no. 1, 19891 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3251 bvol. 1 no. 1 (fév-1989) -....cParisdMagasins/AnnexeeP 8° 57901 b1989-1992cParisdMagasins/AnnexeeP Index 0693 aZPAY aexempb201112 aGEO RQ Universel aDEW 32501167nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008500154207001800239210005100257326001100308430004200319530002700361606003700388607004500425710003700470856009300507856010800600955006000708972000900768991001800777992002200795992001200817039899268000000691420130319051632.01 a1146-1225 aFNSP111253 a0000006914 a19900423a19899999 ba0 afre aFR aaka 10aMil neuf centerevue d'histoire intellectuellefSociété d'études soréliennes 1ano. 7 (1989)- aPariscSociété d'études soréliennesd1989- aAnnuel 1aCahiers Georges SorelxISSN 0755-828710aMil neuf centb(Paris) aVie intellectuellexPériodiques aFrancexVie intellectuellexPériodiques02aSociété d'études soréliennes4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-mil-neuf-cent.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 7 (1989) -....cParisdMagasins/AnnexeeP 8° 4714 aZPAY aexempb201104 aGEO RA4.06 France aDEW 00101445nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210004800180326001600228430007300244606004600317710003700363801002100400856012800421856010800549856010300657856010800760955008800868955007300956972000901029991001801038992002301056992001601079039980804000002840720131202111053.01 a0887-378X aFNSP177846 a0000028407 a19900101a19869999 ba0 aeng aUS aaha 14aThe Milbank quarterly aNew YorkcCambridge University Pressd1986- aTrimestriel 1aMilbank Memorial Fund quarterly, health and society,xISSN 0160-1997 aSanté publiqueyEtats-UnisxPériodiques02aMilbank Memorial Fund (New York) 3aFRbCCN0887-378X4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=MIQ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=100886 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 64 no. 1 (1986) -vol. 90 no. 4 (déc-2012)cParisdMagasins/AnnexeeP 8° 10991 bvol. 51 (1973) -vol. 65 (1987)cParisdMagasins/AnnexeeP Index 0647 aZPAY aexempb201101 aGEO RC2 Etats-Unis aDEW 360-36301164nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000048001502100061001983000120002593260016003793360058003953370063004534300077005164400062005934520034006556060037006898010013007268560090007399550005008299920016008340000470730000047073020130319051633.0 a0000470730 a b19411988k fre 01 ba0 aeng aUS az aah z  adr 10aMilitary affairsb[Ressource électronique] aWashington, D.C.cAmerican Military Instituted1941-1988 aAccès au texte intégral (réservé aux sites de Sciences Po) à partir du vol. 5 de 1941 jusqu'au vol. 52 de 1988 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tThe Journal of the American Military Institute [Ressource électronique] 1tThe Journal of military history [Ressource électronique] 1tMilitary affairsx(0026-3931) aHistoire militairexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00263931.html1 r aDEW 355-35901430nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210006500175215004200240326001100282606002800293606003800321676000800359710005100367801002100418856010900439856010800548856010300656856010800759955006000867955006500927972000900992991001801001992002101019992001601040039617653000002371420131018091756.01 a0459-7222 aFNSP163154 a0000023714 a19900101a19599999 ba0 aeng aGB aaku 10aMilitary balance aLondoncInternational Institute for Strategic Studiesd1959- acarte dépliante à partir de 1992/93 aAnnuel aArmementsxPériodiques aPolitique militairexPériodiques a35501aInstitut international d'études stratégiques 3aFRbCCN0459-72224 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t716100759db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://eJournals.ebsco.com/Journal2.asp?JournalID=111407 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1980/1981) -(2011)cParisdMagasins/AnnexeeP 8° 55421 b(1960/1961) -(1979/1980)cParisdMagasins/AnnexeeCOL8°3757 aZPAY aexempb201209 aGEO RQ Universel aDEW 355-35901080nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002000139210008300159326002200242326002300264430004700287452004100334530002000375607004500395801002100440856010800461955008300569957005700652991001800709992002300727992001600750038753111000005265420130705110622.01 a0026-4148 aFNSP252266 a19900101a19399999 ba0 aeng aUS aafu 10aMilitary review aFort Leavenworth, Kan.‎cUS Army Command and General Staff College‎d1939- aBimestrielb1994- aMensuelb1939-1994 1tCommand and General Staff School quarterly 1tMilitary review (Online),x1943-1147 aMilitary review aEtats-UnisxForces arméesxPériodiques 3aFRbCCN0026-41484 uhttp://usacac.army.mil/cac2/militaryreview/index.aspzAccès libre au texte intégral à partir de 20061 bvol. 44 no. 1 (1964) -vol. 76 no. 2 (1996)cParisdMagasins/AnnexeeP 8° 20441 b(1922) -(1965)cParisdMagasins/AnnexeeP Index 0106 aexempb201003 aGEO RC2 Etats-Unis aDEW 355-35901091nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001500154210004600169326001800215517003700233606005500270606003600325676000800361710005300369801002100422856004700443856007000490955008200560957007200642972000900714991001800723992001200741039394875000002879220130319051633.01 a0305-8298 aFNSP179312 a0000028792 a19900101a19719999 ba0 aeng aGB aaia 10aMillennium aLondoncLondon School of Economicsd1971- a3 n°s par an10aJournal of international studies aRelations internationalesxRecherchexPériodiques aScience politiquexPériodiques a32702aLondon School of Economics and Political Science 3aFRbCCN0305-82984 uhttp://www.lse.ac.uk/depts/intrel/millenn/ zContenu : thèmes des n° spéciaux depuis le vol. 25, n°3, 19961 bvol. 2 no. 2 (1973) -vol. 36 no. 3 (2008)cParisdMagasins/AnnexeeP 8° 35591 bvol. 1 (1972) -vol. 11 (1982)cParisdMagasins/AnnexeeP Index 0383 aZSAB aexempb200911 aDEW 32701327nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005400154210002700208326001600235430003500251530002000286606003600306710005800342801002100400856004500421856010700466856010300573856010800676955007000784957008400854972000900938991001800947992001200965038753308000002856220130319051633.01 a0026-4695 aFNSP178147 a0000028562 a19900101a19629999 ba0 aeng aGB aaha 10aMinervaea review of science, learning and policy aLondoncMinervad1962- aTrimestriel 1aScience and freedomx0582-1940 0aMinervabLondon aSciences socialesxPériodiques02aInternational Council on the Future of the University 3aFRbCCN0026-46954 uhttp://www.wkap.nl/jrnltoc.htm/0026-4695 zContenu : sommaires depuis le vol. 1, n°1, sept. 1962, recherche par auteur, titre ou texte intégral4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=102961 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (aut-1962) -....cParisdMagasins/AnnexeeP 8° 20241 bvol. 1 no. 1 (1962) -vol. 30 no. 4 (1992)cParisdMagasins/AnnexeeP Index 0700 aZPAY aexempb201105 aDEW 30001857cas0 2200361 450 00100100000000200110001000500170002101100140003803500140005203500170006603500170008303500150010010000410011510100080015610200070016410600060017111000160017720001470019320700710034021000540041121500180046530506260048343100400110960700630114967600080121280100300122080100300125080100230128080200070130383000070131085601330131795500450145003746471X000093675520130319051633.01 a1770-6297 a090054075 accn0116/1091 aissn17706297 a0000936755 a19830101b18181820u y1frey0103 ba0 afre aFR ar aacu uu 13aLa Minerve françaisefpar MM. Aignan,... Benjamin Constant, Évariste Dumoulin, Étienne, A. Jay, E. Jouy,... Lacretelle aîné... Tissot,... 1aT. 1, 1re livraison (févr. 1818)-t. 9, 113e livraison (mars 1820) aPariscBureau de la Minerve françaised1818-1820 a9 vol.d20 cm a"La société de gens de lettres qui rédigeait depuis un an le Mercure de France vient d'en perdre le privilège par des circonstances qu'il serait trop long d'expliquer. (...) Nous venons de former une nouvelle société qui publiera un ouvrage en quatre volumes, sous le titre de la Minerve française, et qui sera divisé en cinquante-deux livraisons. Il en paraîtra treize par trimestre mais à des époques indéterminées ; dépouillant ainsi toute les formes périodiques, nous pourrons, libre de toute censure, user du droit que la charte donne à tous les Français d'exprimer leurs opinions." (p. 3-4, vol. 1) 1tMercure de France (1799)x1770-6254 aFrancexPolitique et gouvernementz1814-1830xPériodiques a944 3aFRbAbesc20060110gAFNOR 3aFRbAbesc20060110gAFNOR 3aFRbISSNc20050901 a07 adm4 uhttp://gallica.bnf.fr/ark:/12148/cb328162247/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 b1818-1820cParisdMagasinseR12°009.46901118nas0 2200313 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102200014300109207001800252210002200270301003400292326001600326517003300342606003600375606004400411607002500455710008300480801003000563856004400593856007500637955005900712972000900771992001200780992001200792110020278000103131520130319051634.0 a0001031315 a20061016a20049999k frey0103 ca0 arus aRU10aMir peremenemeždunarodnyj naučno-obŝestvennyj žurnalfInstitut èkonomiki rossijskoj akademii naukgNacional'nyj investicionnyj sovet 0ano. 1 (2004)- aMoskvacNPd2004- aDemande de numérotation ISSN aTrimestriel14aThe world of transformations aSciences socialesxPériodiques aRelations internationalesxPériodiques aRussiexPériodiques02aInstitut meždunarodnyh èkonomičeskih i političeskih issledovanijc(Russie) 3aFRbAbesc20061016gAFNOR4 uhttp://www.imepi-eurasia.ru/eng/mir.php zSommaires et résumés accessibles gratuitement depuis le n°1 de 20041 bno. 1 (2004) -....cParisdMagasins/AnnexeeP 8° 6913 aZPAY aDEW 327 aDEW 30001335nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005100154210002600205326001200231517000900243606004400252606003600296606003700332606004300369606004200412606004500454606004400499607004900543607004700592676000800639710007000647801003000717856004100747955005300788972000900841992003900850992002000889992001600909038753634000110258920130319051634.01 a0026-5829 aFNSP175910 a0000027941 a19900101a19579999 ca0 arus aRU aafa 10aMirovaâ ekonomika i meždunarodnye otnoseniâ aMoskvacPravdad1957- aMensuel10aMEMO aRelations internationalesxPériodiques aScience politiquexPériodiques aEconomie politiquexPériodiques aEconomie politiqueyURSSxPériodiques aScience politiqueyURSSxPériodiques aEconomie politiqueyRussiexPériodiques aScience politiqueyRussiexPériodiques aRussiexRelations extérieuresxPériodiques aURSSxRelations extérieuresxPériodiques a32702aInstitut mirovoj èkonomiki i meždunarodnyh otnošenijc(Moscou) 3aFRbAbesc20070702gAFNOR4 uhttp://www.imemo.ru/ru/period/meimo/1 bno. 1 (1957)cParisdMagasins/AnnexeeP 8° 1709 aZPAY aGEO RA7.21 Russie (depuis 1991-92) aGEO RA7.01 URSS aDEW 320-32101530nas 2200421 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005100139210002600190326001200216517000900228606004400237606003600281606003700317606004300354606004200397606004500439606004400484607004900528607004700577676000800624710007000632801002100702856004100723955006700764955006700831955012600898972000901024992003901033992002001072992001601092038753634000002794120130313085935.01 a0026-5829 aFNSP175910 a19900101a19579999 ca0 arus aRU aafa 10aMirovaâ ekonomika i meždunarodnye otnoseniâ aMoskvacPravdad1957- aMensuel10aMEMO aRelations internationalesxPériodiques aScience politiquexPériodiques aEconomie politiquexPériodiques aEconomie politiqueyURSSxPériodiques aScience politiqueyURSSxPériodiques aEconomie politiqueyRussiexPériodiques aScience politiqueyRussiexPériodiques aRussiexRelations extérieuresxPériodiques aURSSxRelations extérieuresxPériodiques a32702aInstitut mirovoj èkonomiki i meždunarodnyh otnošenijc(Moscou) 3aFRbCCN0026-58294 uhttp://www.imemo.ru/ru/period/meimo/1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bno. 1 (1957) -no. 9 (1998)cParisdMagasins/AnnexeeP 8° 17091 bno. 11 (1999) -no. 12 (1999) ; no. 3 (2000) -....cParisdMagasins/AnnexeeP 4° 6912wManque : nos. 1, 2, 4, 6, 12, 2000 aZPAY aGEO RA7.21 Russie (depuis 1991-92) aGEO RA7.01 URSS aDEW 320-32101063nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003200163210006400195326001600259430003900275606003900314606005100353710007000404801001300474856003500487856006300522955007100585972000900656992002100665992002300686992001600709058777695000037978520130319051635.01 a1532-9194 a0000379785 a a20019999k fre ba0 aeng aUS a 0  ar aah z 0 10aMIT Sloan management review aCambridge, Mass.cSloan Management Review Associationd200- aTrimestriel 1tSloan management reviewx0019-848X aGestion d'entreprisexPériodiques aGestion d'entrepriseyEtats-UnisxPériodiques02aMassachusetts Institute of Technology. Sloan School of Management 0aFRbFNSP4 uhttp://web.mit.edu/smr-online/ zContient : résumés d'articles sélectionnés depuis 20011 bvol. 42 no. 2 (hiv-2001) -....cParisdMagasins/AnnexeeP 4° 4431 aZPAY aGEO RQ Universel aGEO RC2 Etats-Unis aDEW 650-65801299cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200007500180207007500255210003500330210003900365210005900404326001500463517003100478606002900509606003600538710004400574801003000618801002300648802000700671856006100678856006200739955007500801992002500876992001200901135817730000118879920130319051635.01 a0941-6382 aissn09416382 a0001188799 a20090806a19929999k y0frey0103 ba0 ager aDE ay  ar aaga xx 10aMittelweg 36eZeitschrift des Hamburger Instituts für Sozialforschung 0aApril/Mai 1992, 1-Dez. 1992/Jan. 1993, 5a2. Jg., 1 (Feb./März 1993)- aWiesbadencExtra Verlagd1992-0 aWiesbadencExtra Verlagd1992-19941 aHamburgcHamburger Ed. HIS Verlagsgesellschaft d1994- aBimestriel10aMittelweg sechsunddreissig aSociologiexPériodiques aSciences socialesxPériodiques02aHamburger Institut für Sozialforschung 3aFRbAbesc20090807gAFNOR 3aFRbISSNc20080601 a064 uhttp://www.his-online.de/zeitschrift/jahresregister.html zContenu : sommaires depuis le vol. 1 no. 1 (avr/mai-1992)1 bvol. 18 no. 1 (fev/mar-2009) -....cParisdMagasins/AnnexeeP 8° 7132 aGEO RA5.01 Allemagne aDEW 30101079nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000035001502100047001853000160002323260016003923360058004083370063004664300052005294520021005816060053006028010013006558560090006689550005007589920014007630000480104000048010420130319051635.0 a0000480104 a a19629999k fre 01 ba0 aeng aUS az aah z  adr 10aMLNb[Ressource électronique] aBaltimore, Md.cJohns Hopkins Pressd1962- aAccès au texte intégral (réservé aux sites de Sciences Po) à partir du vol.77 de 1962 jusqu'au vol.109 de 1994 ; sommaires à partir du vol. 110, 1995 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tModern language notes [Ressource électronique] 1tMLNx(0026-7910) aLittératurexHistoire et critiquexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00267910.html1 r aDEW 80-8901020nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001700154210008200171326002300253326002800276326002600304530003600330606003700366710005600403856006200459856007600521955007000597972000900667991001800676992001200694040358127000023184720131025105945.01 a1086-671X aFNSP823388 a0000231847 a19900101a19969999 ba0 aeng aUS aaha 10aMobilization aSan Diego, Calif.cSan Diego State University, Department of Sociologyd1996- aTrimestrielb2006- a3 n° par anb2002-2005 aSemestrielb1996-2001 0aMobilizationbSan Diego, Calif. aMouvements sociauxxPériodiques02aSan Diego State UniversitybDepartment of Sociology4 uhttp://www.mobilization.sdsu.edu/generalinfo/contact.html zContenu : sommaires et résumés depuis le vol. 1, no.2, septembre 19961 bvol. 1 no. 1 (mar-1996) -....cParisdMagasins/AnnexeeP 8° 6364 aZCAD aexempb201301 aDEW 30301359nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008600154210008400240326002800324326002100352430006500373517003900438530004400477606003000521606004100551607004600592710004400638801002100682830008800703856002700791856004300818955006500861992002200926992002100948992001600969039225445000000529920130319051635.01 a0026-9719 aFNSP107841 a0000005299 a19900312a19669999 ba0 afre aFR aa u 10aMOCIeMoniteur du commerce internationalfCentre français du commerce extérieur aPariscSociété d'édition, de documentation économique et commercialed1966- aHebdomadaireb1966-2006 aBimensuelb2007- 1aMOCI. Moniteur officiel du commerce internationalx0991-797710aMoniteur du commerce international00aMOCI Moniteur du commerce international aRisque paysxPériodiques aCommerce internationalxPériodiques aFrancexCommerce extérieurxPériodiques02aCentre français du commerce extérieur 3aFRbCCN0026-9719 a1902--1979 : collection donnée au CTL en 1998 et : 1980--1984 donné en avril 20024 uhttp://www.lemoci.com/ zContenu : sommaire du dernier numéro.1 bno. 641 (jan-1985) -....cParisdMagasins/AnnexeeP 4° 0144 aGEO RA4.06 France aGEO RQ Universel aDEW 380-38201097nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001400154210008700168326002700255326002800282530001800310607006800328607007000396712005100466856004500517856005300562955008300615972000900698991001800707992003200725992001400757036252263000004013020130319051635.0 a1120-7388 aFNSP216880 a0000040130 a19900101b19912001 ba0 aeng aIT aaia 10aMoct-Most aLondonaBolognaaDordrechtaBostoncKluwer Academic PublisherscNomismad1990-2001 aTrimestrielb1994-2001 a3 nos par anb1991-199310aMostbBologna aEurope de l'EstxPolitique économiquez1989-....xPériodiques aEurope de l'EstxConditions économiquesz1989-....xPériodiques02aNomisma. Società di studi economici (Bologna)4 uhttp://www.wkap.nl/jrnltoc.htm/1120-7388 zContenu : sommaires depuis le vol. 5, n°1, 19951 bVol. 2, no. 1 (1991) -vol. 11, no.4 (2001)cParisdMagasins/AnnexeeP 8° 5750 aZPAY aexempb201111 aGEO RA2.02 Europe orientale aDEW 338.901291nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210002700187326001600214517003500230607003500265607002500300676000800325710007000333856005700403856005900460856010100519856010800620955006600728955007100794972000900865991001800874992002500892992001200917040098931000009317720130319051636.01 a0267-761X aFNSP410874 a0000093177 a19900101a19849999 ba0 aeng aGB aaha 10aModern & contemporary France aHarlowcLongmand1984- aTrimestriel10aModern and contemporary France aFrancexHistoirexPériodiques aFrancexPériodiques a94002aAssociation for the Study of Modern and Contemporary Francec(GB)4 uhttp://www.tandf.co.uk/journals/carfax/09639489.html zContenu : sommaires depuis le vol. 5, n°1, fév. 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=104641 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 bn.s. vol. 1 no. 1 (1993) -....cParisdMagasins/AnnexeeP 8° 5942 aZSAB aexempb201210 aGEO RA4.06 France 01 aDEW 94401269nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210004900179326002200228326002700250607002300277801002100300856004200321856005400363856010100417856010800518856009000626856010800716955007000824972000900894992001600903992001200919038754002000002853420130319051636.01 a0026-749X aFNSP178089 a0000028534 a19900101a19679999 ba0 aeng aGB aaga 10aModern Asian studies aCambridgecCambridge University Pressd1967- aBimestrielb2007- aTrimestrielb1967-2006 aAsiexPériodiques 3aFRbCCN0026-749X4 uhttp://uk.cambridge.org/journals/ass/ zContenu : sommaires depuis le vol. 32, n°1, 19984 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=102045 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0026749x.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1967) -....cParisdMagasins/AnnexeeP 8° 2427 aZCAD aGEO RH Asie aDEW 95001256nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001700154207002500171210005300196326001600249607002400265676000800289801002100297856009000318856010800408856007000516856010800586955006600694955007000760972000900830992004500839992001200884992001000896038963132000002851920130319051636.01 a0097-7004 aFNSP178053 a0000028519 a19900101a19759999 ba0 aeng aUS aaha 10aModern China 1aVol. 1, no 1 (1975)- aBeverly Hills [Calif.]cSage Publicationsd1975- aTrimestriel aChinexPériodiques a950 3aFRbCCN0097-70044 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00977004.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://mcx.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9501 bvol. 1 no. 1 (jan-1975) -....cParisdMagasins/AnnexeeP 8° 3595 aZSAB aGEO RI3.03 Chine (République populaire) aDEW 951 aexemp01434nas 2200361 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000170015421000280017132600220019932600280022132600260024960700350027571000460031085600570035685600570041385601030047085601080057385601090068185601080079095501130089897200090101199100180102099200220103899200120106006164899X000026953920130319051636.01 a1353-2944 aFNSP932583 a0000269539 a19990402a19959999 ba0 aeng aGB aaha 10aModern Italy aAbingdoncCarfaxd1995- aTrimestriel$2008- a3 n°s par an$2006-2007 aSemestrielb1998-2005 aItaliexHistoirexPériodiques02aAssociation for the Study of Modern Italy4 uhttp://www.tandf.co.uk/journals/carfax/13532944.html zContenu : sommaires depuis le vol. 3, n°1, mai 19984 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=104642 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713437858db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 2 no. 1/2 (1997) -vol. 3, no 2 (1998) ; vol.5, no 1 (2000) -....;cParisdMagasins/MagasinseP 8° 6470 aZPAY aexempb201212 aGEO RA6.03 Italie aDEW 94500954nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210005700173326001700230606002800247606002400275801002100299856010100320856010800421955008900529972000900618992002100627992001600648039338614000002853020130319051636.01 a0276-1114 aFNSP178081 a0000028530 a19900101a19819999 ba0 aeng aUS aaia 10aModern Judaism aBaltimore, MdcJohns Hopkins University Pressd1981- a3 nos par an aJudaïsmexPériodiques aJuifsxPériodiques 3aFRbCCN0276-11144 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101048 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mai-1981) -vol. 27 no 3 (oct-2007)cParisdMagasins/AnnexeeP 8° 4564 aZCAD aGEO RQ Universel aDEW 305-30601102nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000053001502100051002033000120002543260014003743360058003883370063004464400034005094520039005436060053005826060031006358010013006668560090006799550005007699920014007740000478701000047870120130319051636.0 a0000478701 a b18861961k fre 01 ba0 aeng aUS az aae z  adr 10aModern language notesb[Ressource électronique] aBaltimore, Md.cJohns Hopkins Pressd1886-1961 aAccès au texte intégral (réservé aux sites de Sciences Po) à partir du vol. 1 de 1886 jusqu'au vol. 76 de 1961 aBimensuel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tMLN [Ressource électronique] 1tModern language notesx(0149-6611) aLittératurexHistoire et critiquexPériodiques aLinguistiquexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01496611.html1 r aDEW 80-8901493nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210003900176326001500215606002400230606004100254801002100295856007100316856007300387856010100460856010800561856009000669856010800759955009000867957010400957972000901061991001801070992003101088992001201119038754142000002850320130319051636.01 a0026-7961 aFNSP178024 a0000028503 a19900101a19379999 ba0 aeng aUS aaga 10aModern law review aCambridge, Mass.cBlackwelld1937- aBimestriel aDroitxPériodiques aDroityGrande-BretagnexPériodiques 3aFRbCCN0026-79614 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0026-7961 zContenu : sommaires et résumés depuis le vol. 59, n°4, juil. 19964 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101099 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00267961.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 9 no. 1 (avr-1946) -vol. 72 no. 6 (nov-2009)cParisdMagasins/AnnexeeP 8° 02931 bvol. 1 (1938) -vol. 33 (1970) ; vol. 1 (1938) -vol. 50 (1987)cParisdMagasins/AnnexeeP Index 0184 aZPAY aexempb201101 aGEO RA4.02 Grande-Bretagne aDEW 34901115nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007400154210002200228326001200250421004800262430008900310607005200399710006200451830008200513856004800595856005800643955005300701972000900754992002400763992001400787038764636000003626520130319051637.01 a0029-9898 aFNSP205405 a0000036265 a19900101a19389999 ba0 ager aAT aafa 10aMonatsberichte - Österreichisches Institut für Wirtschaftsforschung aWiencWIFOd1938- aMensuel 1aStatistische Überichten < P 4° 2364 bis > 1tMonatsberichte des Österreichischen Institutes für Konjunkturforschung,x1607-1417 aAutrichexConditions économiquesxPériodiques02aWiener Institut für Internationale Wirtschaftsvergleiche a1932-1937 ; 1947-1953 : (P 4° 0435) et 1967 --1984 collection donnée au CTL4 uhttp://www.wifo.ac.at/publ/monate_text.html zContenu : sommaires et résumés depuis le n°1, 19961 b(1985) -....cParisdMagasins/AnnexeeP 4° 2364 aZGRA aGEO RA5.13 Autriche aDEW 330.901311nas 2200349 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000013001552100027001683260014001955300027002095400024002366060029002606070025002898560027003148560104003418560108004459550097005539550067006509550060007179550089007779570061008669920022009279920012009490000011063000001106320130319051637.01 a0395-2037 aFNSP122207 a0000011063 a19900724a19449999 ba0 afre aFR aaaa 13aLe Monde aPariscLe Monded1944- aQuotidien03aLe Monde (Paris, 1944)13aLe Monde. Quotidien aActualitéxPériodiques aFrancexPériodiques4 uhttp://www.lemonde.fr/4 uhttps://acces-distant.sciences-po.fr/fork?http://www.bpe.europresse.com/WebPages/Search/Result.aspx zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bEd sur microfilm : (19 déc-1944)-(31 janv-2005)cParisdSalle des microformeseP Mic 35 (1)1 bLe dernier moiscParisd27, Salle Rez-de-chausséeeP F° 10991 b(19 dec-1944) -....cParisdMagasins/AnnexeeP F° 10991 zPas de photocopies possibles dans les volumes reliés (voir l'édition en microfilm)1 rPour l'index annuel voir : Le Monde. IndexeP Index 0446 aGEO RA4.06 France aDEW 05001019nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002900163207004300192210003100235300006700266326001200333430007400345530003500419606003600454801001300490856003100503856005500534955007900589972000900668992001600677048761397000027850720130319051637.01 a1297-2185 a0000278507 a b19992008k fre ba0 afre aFR a 0  ar aaf z 0 13aLe Monde de l'éducation 1ano. 273 (sep-1999) -no. 375 (dec-2008) aPariscLe Monded1999-2008 aA partir de janvier 2009, devient supplément gratuit du Monde aMensuel 1tLe Monde de l'éducation, de la culture et de la formationx1281-151303aLe Monde de l'éducationb1999 aEducationyFrancexPériodiques 0aFRbFNSP4 uhttp://www.lemonde.fr/mde/ zContenu : sommaires des numéros depuis janv. 20031 bno. 273 (sep-1999) -no. 375 (dec-2008)cParisdMagasins/AnnexeeP 4° 3572 aZPAY aDEW 370-37901469nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002600139210004000165326001200205606004400217801002100261856003700282856015000319856010800469856010400577856010800681955006900789955007200858955011800930957007401048972000901122992001201131039225321000000495120131029112811.01 a0026-9395 aFNSP107076 a19900101a19549999 ba0 afre aFR aafu 13aLe Monde diplomatique aPariscLe Monde diplomatiqued1954- aMensuel aRelations internationalesxPériodiques 3aFRbCCN0026-939540uhttp://www.monde-diplomatique.fr zhttps://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/magazine-le-monde-diplomatique.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bL'année en courscParisd27, Salle Rez-de-chausséeeP F° 12091 bvol. 5 no. 166 (jan-1968) -....cParisdMagasins/AnnexeeP F° 12091 bAutre collection sur microfilm : no. 1 (mai-1954) -no. 609 (dec-2004)cParisdSalle de référenceeP Mic 35 (12)1 b(1954) -(1983) ; (1982) -(1992)cParisdMagasins/AnnexeeP Index 0619 aZPAY aDEW 32701013nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210004000198326001500238422002600253517002100279606004400300676000800344856009800352856010800450955007300558955005900631972000900690992001200699001226460000011174020130319051637.01 a0987-8610 aFNSP471772 a0000111740 a19900101a19879999 ba0 afre aFR aaga 13aLe Monde diplomatique. Manière de voir aPariscLe Monde diplomatiqued1987- aBimestriel 1aLe Monde diplomatique10aManière de voir aRelations internationalesxPériodiques a0014 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/magazine-maniere-de-voir.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle Rez-de-chausséeeDEW 0011 bno. 1 (1988) -....cParisdMagasins/AnnexeeP 4° 6312 aZCAD aDEW 32700987nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000030001552070043001852100042002283260014002704300073002844400062003575300043004196060045004628560039005078560048005469550070005949720009006649920012006730000052877000005287720130510112633.01 a0997-7139 aFNSP252727 a0000052877 a19900101b19882001 ba0 afre aFR aaea 13aLe Monde du renseignement 1ano. 106 (oct-1988)-no.411 (août-2001) aPariscIndigo publicationsd1988-2001 aBimensuel 1aMonde du renseignement, Parapolitique, Edition complète,x0765-9776 1tIntelligence Online (Ed. française. Imprimé),x630-658913aLe Monde du renseignement‎bImprimé aServices de renseignementsxPériodiques4 uhttp://www.indigo-net.com/lmr.html zContenu : sommaires depuis le no. 185, 19921 bno. 106 (1988)-no. 411 (2001)cParisdMagasins/AnnexeeP 4° 4694 aZCAD aDEW 32701186nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002900139210004700168326001600215452005200231530004200283606003500325607004900360801002100409856020800430955006800638955008300706972000900789991001800798992004200816992001400858039521656000000495520140107141128.01 a0302-3052 aFNSP107080 a19900101a19729999 ba0 amul aBE aahu 10aMondes en développement aBruxellescMondes en développementd1972- aTrimestriel 1tMondes en développement (Online)‎x1782-144410aMondes en développement‎bImprimé aAide économiquexPériodiques aPays en voie de développementxPériodiques 3aFRbCCN0302-30524 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-mondes-en-developpement.htm?zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 18 no. 69 (1990) -....cParisdMagasins/AnnexeeP 4° 61001 bvol. 1 no. 1 (1972) -vol. 17 no. 68 (1989)cParisdMagasins/AnnexeeP 8° 3273 aZPAY aexempb200905 aGEO RO Pays en voie de développement aDEW 338.901324nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005200154210004300206300006300249326001700312421010000329421007800429430005700507517005200564606005000616606004200666801002100708830004400729856003800773856004300811955008700854992002200941992001100963013382101000003632720130319051639.01 a0026-9700 aFNSP205632 a0000036327 a19900101a19039999 ba0 afre aFR aa a 13aLe Moniteur des travaux publics et du bâtiment aPariscPublications du Moniteurd1903- ales numéros spéciaux sont conservés avec le périodique aHebdomadaire 1aLe Moniteur des travaux publics et du bâtiment. Supplément magazinex0242-1615 < P 4° 4337 > 1tLe Moniteur des travaux publics et du bâtiment. Environnementx1290-2527 1tL'Entreprise et l'industrie (Paris. 1901)x1250-105013aLe Moniteur du bâtiment et des travaux publics aConstructionxIndustrieyFrancexPériodiques aTravaux publicsyFrancexPériodiques 3aFRbCCN0026-9700 aCollection donnée au CTL jusqu'en 20034 uhttp://www.lemoniteur-expert.com/ zcontenu : sommaire du dernier numéro.1 bConservation limitée aux 2 dernières annéescParisdMagasins/AnnexeeP 4° 2180 aGEO RA4.06 France aDEW 7101193nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006900154207003200223210003900255225004700294326001100341517005100352606004700403606003400450710005500484856005000539856003600589955005500625955005500680955005600735991001800791992002200809992001200831039373169000000495820130319051639.0 a0242-5866 aFNSP107084 a0000004958 a19900305b19701998 ba0 afre aFR aaka 13aLa Monnaie en ...fBanque de FrancegConseil national du crédit 1ano. 1 (1970) -no. 29 (1998) aPariscBanque de Franced1970-199821aCollection statistiques / Banque de France aAnnuel13aLa Monnaie et les systèmes de paiement en ... aPolitique monétaireyFrancexPériodiques aMonnaieyFrancexPériodiques aBanque de FrancebDirection générale des études4 uhttp://www.banque-france.fr/fr/publi/main.htm zAccès libre au texte intégral1 b(1990) -(1997)cParisdMagasins/AnnexeeP 4° 62891 b(1980) -(1989)cParisdMagasins/AnnexeeP 8° 53991 b(1970) -(1979)cParisdMagasins/AnnexeeCOL12°0239 aexempb201109 aGEO RA4.06 France aDEW 33201350nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200010300139210003500242326001200277421005900289430007600348517008200424517005300506530005200559606004300611606004500654606004400699710004300743801002100786856009300807955008700900972000900987992001600996038811510000005979120140106144204.01 a0041-7432 aFNSP274790 a19900101a19479999 f ba0 amul aUS aafa 10aMonthly bulletin of statistics/fUnited Nationsd= Bulletin mensuel de statistiquesfNations unies aNew YorkcNations Uniesd1947- aMensuel 1aStatistical yearbook - United Nations,xISSN 0082-8459 1aBulletin mensuel de statistique - Société des NationsxISSN 1014-845010aStatistical papers - United Nations. Series Q. Monthly bulletin of statistics10aBulletin mensuel de statistiques - Nations Unies00aMonthly bulletin of statistics - United Nations aPopulationxStatistiquesxPériodiques aStatistiques industriellesxPériodiques aStatistiques commercialesxPériodiques02aNations UniesbDivision de statistique 3aFRbCCN0041-74324 uhttp://unstats.un.org/unsd/mbs/app/DataSearchTable.aspxzAccès libre au texte intégral1 bConservation limitée aux 5 dernières annéescParisdMagasins/AnnexeeP 4° 0041 aZECH aDEW 310-31901017nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000026001552100031001813260012002124360046002244360131002706060056004016060052004578300032005098560028005418560036005699550054006059720009006599920023006689920012006910000052878000005287820130319051639.01 a0095-7356 aFNSP252728 a0000052878 a19900101a19749999 ba0 aeng aUS aafa 10aMonthly energy review aWashington, DCcEIAd1974- aMensuel 1aPIMS monthly petroleum report (0099-0914) 1tQuarterly report, energy information report to Congress required by Public Law 93-319, amende by Public Law 94-163 (0148-494X) aIndustries énergétiquesyEtats-UnisxPériodiques aEnergiexConsommationyEtats-UnisxPériodiques a1996-2006 : donné au CTLes4 uhttp://eia.doe.gov/mer/ zAccès libre au texte intégral1 b(1985)-(1995)cParisdMagasins/AnnexeeP 4° 4744 aZPAY aGEO RC2 Etats-Unis aDEW 33301246nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210003500179326001200214430007800226452005000304517000800354530002500362606005000387712004300437801002100480856007900501856020600580955007800786972000900864992002300873992001200896038963620000003627220140116150244.01 a0098-1818 aFNSP205517 a0000036272 a19900101a19189999 ba0 aeng aUS aafa 10aMonthly labor review aWashington, D.C.cUSGPOd1918- aMensuel 1tMonthly review of the U.S. Bureau of Labor Statistics (Print),x2329-1354 1tMonthly labor review (Online), ISSN 1937-465810aMLR aMonthly labor review aEconomie du travailyEtats-UnisxPériodiques02aEtats-UnisbBureau of Labor Statistics 3aFRbCCN0098-18184 uhttp://stats.bls.gov/opub/mlr/mlrhome.htmzAccès libre au texte intégral4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=110459zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1947)-vol. 128 no. 5 (2005)cParisdMagasins/Annexe$ P 4° 0013wLacunes aZPAY aGEO RC2 Etats-Unis aDEW 33100868nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210004700173326001200220530003500232606002700267606004400294856003300338856010000371955006800471972000900539991001800548992001200566038755130000002924920130319051639.01 a0027-0520 aFNSP180938 a0000029249 a19910409a19499999 ba0 aeng aUS aafa 10aMonthly review aNew YorkcMonthly Review Foundationd1949- aMensuel 0aMonthly reviewbNew York. 1949 aMarxismexPériodiques aRelations internationalesxPériodiques4 uhttp://www.monthlyreview.org zContenu : sommaires depuis le vol. 47, n°4, sept. 1995 ; texte intégral à partir de mai 19981 bvol. 8 no. 3/4 (1956) -....cParisdMagasins/AnnexeeP 8° 1663 aZCAD aexempb201201 aDEW 90901053nls 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000077001502070018002272100036002453000074002813260015003553360056003703370017004266060049004436070050004927100033005428010013005758560031005888560053006199550005006729920016006779920022006930000796015000079601520130319051639.0 a0000796015 a a19999999k fre 01 ba0 aeng aGR az aag z  adr 10aMonthly statistical bulletin - Bank of Greeceb[Ressource électronique] 1a(March 1999)- aaAthenscBank of Greeced1999- aTexte intégral en version grecque et anglaise depuis mars/avril 1999 abimestriel aDonnées textuelles accessibles uniquement en ligne aFichiers PDF aFinancesyGrècexStatistiquesxPériodiques aGrècexConditions économiquesxPériodiques02aBank of GreecexPériodiques 0aFRbFNSP4 uhttp://www.bankofgreece.gr zContenu : texte intégral depuis mars/avril 19991 r aDEW 310-319 aGEO RA6.05 Grèce01105nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200001600160210003900176326001700215453004200232606002900274607002600303607002300329607002500352856003000377856006800407955009400475955005900569992005600628992003900684992002000723992001200743038755300000003064520130319051640.01 a0027-1306 aFNSP185505 a0000030645 a19910424a19309999 ba0 aeng aRU ar ac a 10aMoscow news aMoscowcMoskovskiye novostid1930- aHebdomadaire 1tMoskovskie novosti (Print)x0256-551X aActualitéxPériodiques aEx-URSSxPériodiques aURSSxPériodiques aRussiexPériodiques4 uhttp://www.moscownews.ru/ zContenu : sommaires et articles en texte intégral depuis 2002.1 bLes six derniers mois de l'année en courscParisd27, Salle Rez-de-chausséeeP F° 01331 bno. 6 (1991) -....cParisdMagasins/AnnexeeP F° 0133 aGEO RA7.02 Etats successeurs de l'Union soviétique aGEO RA7.21 Russie (depuis 1991-92) aGEO RA7.01 URSS aDEW 05001614nas 2200409 i 450 001001000000002001100010005001700021011001400038035001300052035001500065100004100080101000800121102000700129110001600136200003600152210003100188300005900219326002500278326002700303430006800330517004900398530002200447606003600469676000800505801002100513856004800534856011300582856008400695856010800779955006700887955006300954955006901017957008901086972000901175992001101184992000901195001016741000000206120131219165514.01 a0243-6450 aFNSP7815 a0000002061 a19900101a19809999 ba0 afre aFR aaiu 10aMotseles langages du politique aLyoncENS éditionsd1980- ade 1980 à 1999 édité par les Presses de Sciences-po a3 n°s par anb2000- aTrimestrielb1980-1999 1aTravaux de lexicométrie et de lexicologie politiquex0294-796X10aMOTS. Mots, ordinateurs, textes, sociétés.00aMotsbParis. 1980 aLangage politiquexPériodiques a320 3aFRbCCN0243-64504 uhttp://www.persee.fr/listIssues.do?key=mots zAccès libre au texte intégral des articles à partir de 1980 à l'exception des années les plus récentes4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-mots.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 1 (sep-1980) -....cParisdMagasins/AnnexeeP 8° 43251 bL'année en courscParisdBibliothèque de rechercheeP 8° 43251 bno. 1 (sep-1980) -no. 30 (mar-1992)cParisdBibliothèque de rechercheeP index 0689 aZPAY aDEW 41 aPBUL01540nas 2200397 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000210015421000330017532600160020843000470022460600390027160600450031060700460035567600080040180100210040985600990043085601080052985600900063785601080072795500660083595500680090195700960096997200090106599100180107499200220109299200160111499200120113003922547X000000536020130319051641.01 a0027-2671 aFNSP108021 a0000005360 a19900313a19609999 ba0 afre aFR aahu 10aMouvement social aPariscEd. ouvrièresd1960- aTrimestriel 1aL'Actualité de l'histoirexISSN 0398-8120 aSyndicalismeyFrancexPériodiques aMouvements sociauxyFrancexPériodiques aFrancexConditions socialesxPériodiques a300 3aFRbCCN0027-26714 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-le-mouvement-social.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00272671.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3001 bno. 33/34 (1960/1961) -....cParisdMagasins/AnnexeeP 8° 12331 b(1961/1971) ; (1971/1974) ; (1975/1980) ; (1981/1999)cParisdMagasins/AnnexeeP Index 0208 aZCAD aexempb201001 aGEO RA4.06 France aDEW 360-363 aDEW 30301092nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200008200163210002900245326009100274530003700365606003700402606003700439801001300476856014500489955008600634991003300720992001200753992002500765038538814000052274020130319051641.01 a1147-6893 a0000522740 a b18991914k fre ba0 afre aFR a 0  ar aa z 0 13aLe Mouvement socialisteerevue de critique sociale, littéraire et artistique aParisc[s.n.]d1899-1914 adifférentes périodicités : bimensuel ou hebdomadaire puis mensuel à partir de 190403aLe Mouvement socialisteb(Paris) aVie intellectuellexPériodiques aSocialismeyFrancexPériodiques 0aFRbFNSP4 uhttp://gallica.bnf.fr/ark:/12148/cb34425483v/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1899-1909)1 bvol. 1 no. (janv-1899) -no. 263/264(mai-1914)cParisdMagasins/AnnexeeP 8° 0800 anumer0 (complément gallica) aDEW 001 aGEO RA4.06 France 0101190nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001500154210004800169210003400217320005800251326001600309430005100325517004000376530002800416606005300444676000800497856009000505856010800595955006700703955005900770972000900829992001400838045076529000025932920140103114716.01 a1291-6412 aFNSP902571 a0000259329 a19981109a19989999 ba0 afre aFR aaga 00aMouvements aIssy-les-MoulineauxcElsevier-Massond2008- aPariscDécouverted1998-2007 aChaque n° contient le sommaire des n°s précédents aTrimestriel 1aM Mensuel, marxisme, mouvementxISSN 0769-493810aMouvements des idées et des luttes10aMouvementsbParis. 1998 aGauche (science politique)yFrancexPériodiques a3204 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-mouvements.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 1 (1998) -....cParisdMagasins/AnnexeeP 4° 5120 aZCAD aDEW 320.500970nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200001400138207002800152210003000180326001500210421003500225530003600260606003700296607004500333801002100378856004500399856007600444955006300520972000900583991001800592992002200610992001200632038756137000002924220140108102326.01 a0027-3120 aFNSP180913 a0000029242 a19900101a19529999 ba0 aita aIT03aIl Mulino 1aVol. 1 no. 1(nov-1951)- aBolognacIl Mulinod1951- aBimestriel 1aMulino. EuropaxISSN 1126-9561 0aMulinobBologna. Testo stampato aVie intellectuellexPériodiques aItaliexVie intellectuellexPériodiques 3aFRbCCN0021/76034 uhttp://www.mulino.it/ilmulino/index.html zContenu : sommaires depuis le no. 1, 2001 et index historique 1951-20001 bno. 6 (avr-1952) -....cParisdMagasins/AnnexeeP 8° 1404 aZSAB aexempb201102 aGEO RA6.03 Italie aDEW 00100947nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200001500163210004600178326001600224530002300240606004400263676000800307710002300315801001300338856009000351856010800441955006300549972000900612992001200621054530660000032092320140109152225.01 a0292-0107 a0000320923 a a20009999k fre ba0 afre aFR a 0  ar aai z 0 10aMultitudes aaPariscÉd. ExilscÉd. Amsterdamd2000- aTrimestriel10a@MultitudesbParis02aIdées politiquesyFrancexPériodiques a00102aMultitudescFrance 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-multitudes.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (mar-2000) -....cParisdMagasins/AnnexeeP 8° 6527 aZPAY aDEW 00101192cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200001800197210003400215326001200249436003900261436003900300446004100339446005600380530002600436606004400462712003200506801003000538801002300568802000700591856014500598955005500743991002000798038591553000111286020130319051642.0 a1154-0060 accn1154-0060 aissn11540060 a0001112860 a19911211b18991901uuuy1frey0103 ba0 afre aFR ay  ar aafu uu 10aMusée social aPariscA. Rousseaud1899-1901 aMensuel 1tMusée social. Série Ax1154-0044 1tMusée social. Série Bx1154-0052 1tLe Musée social. Annalesx1154-0079 1tLe Musée social. Mémoires et documentsx1154-008710aMusée socialb(1899) aSciences socialesxPériodiques2rameau02aMusée socialc(Paris)4340 3aFRbAbesc20051124gAFNOR 3aFRbISSNc20030523 a074 uhttp://gallica.bnf.fr/ark:/12148/cb344379848/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1899-1901)1 b(1899) -(1901)cParisdMagasins/AnnexeeP 4° 0631 aPériobTP02 P401066cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200003000179210003400209326001200243431003600255447005600291447003900347530003000386712003200416801003000448801002300478802000700501856014500508955005500653991002000708038591561000109343420130319051642.0 a1154-0079 accn1154-0079 aissn11540079 a0001093434 a19911211b19021914uuuy1frey0103 ba0 afre aFR ar aafu uu 13aLe Musée socialiAnnales aPariscA. Rousseaud1902-1914 aMensuel |tMusée social (1899)x1154-0060 1tLe Musée social. Mémoires et documentsx1154-0087 1tLe Musée social (1922)x1154-009513aLe Musée social. Annales02aMusée socialc(Paris)4340 3aFRbAbesc20051124gAFNOR 3aFRbISSNc20030523 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34438058g/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1902-1914)1 b(1902) -(1914)cParisdMagasins/AnnexeeP 8° 0696 aPériobTP02 P801178cas0 2200349 450 00100100000000200110001000500170002101100140003803500170005203500170006903500150008610000410010110100080014210200070015010600060015711000160016320000450017920700470022421000340027143100360030544700410034144700390038253000450042160600440046671000320051080100300054280100230057280200070059585601450060295500610074799100200080803859157X000109343520130319051642.0 a1154-0087 accn1154-0087 aissn11540087 a0001093435 a19911211b19021921uuuy0frey0103 ba0 afre aFR ar aafu uu 13aLe Musée socialiMémoires et documents 0a1902, n°1 (janv.)-1921, n°9 (nov./déc.) aPariscA. Rousseaud1902-1921 |tMusée social (1899)x1154-0060 1tLe Musée social. Annalesx1154-0079 1tLe Musée social (1922)x1154-009513aLe Musée social. Mémoires et documents aSciences socialesxPériodiques2rameau02aMusée socialc(Paris)4070 3aFRbAbesc20060628gAFNOR 3aFRbISSNc20030523 a074 uhttp://gallica.bnf.fr/ark:/12148/cb344380601/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1904-1921)1 b(1918) -(1921)w1918cParisdMagasins/AnnexeeP 8° 0697 aPériobTP02 P801181nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210003100187326001800218430006300236440004300299530003900342607005800381607005800439607003500497712004500532801002100577856002600598856005300624955009100677992002800768992002300796992001200819036928151000004888820130319051644.0 a0149-1598 aFNSP243891 a0000048888 a19900101b19771990 ba0 aeng aUS aazb 10aNACLA report on the Americas aNew YorkcNACLAd1977-1990 a5 n°s par an 1aN.A.C.L.A.'s Latin America & empire reportxISSN 0095-5930 1aReport on the AmericasxISSN 1058-539700aNACLA report on the Americasb1977 aEtats-UnisxRelationsyAmérique latinexPériodiques aAmérique latinexRelationsyEtats-UnisxPériodiques aAmérique latinexPériodiques02aNorth American Congress on Latin America 3aFRbCCN0149-15984 uhttp://www.nacla.org/ zContenu : sommaires depuis le vol. 1, n°1, 19671 bvol. 11 no. 6 (jul-1977) -vol. 24 no. 3 (nov-1990)cParisdMagasins/AnnexeeP 4° 3725 aGEO RD Amérique latine aGEO RC2 Etats-Unis aDEW 98001421nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154207003200187210002700219326002300246326002600269430004300295530003900338607005800377607003500435607005800470676000800528710004500536856002600581856021900607955006600826955007100892972000900963992002300972992002800995992001201023040311511000015444420130319051644.01 a1071-4839 aFNSP602356 a0000154444 a19900101a19932006 ba0 aeng aUS aaga 10aNACLA report on the Americas 1aaVol. 26, no. 5 (May 1993)- aNew YorkcNACLAd1993- aTrimestriel$d2012- aBimestriel$d1993-2011 1aReport on the AmericasxISSN 1058-539700aNACLA report on the Americasb1993 aEtats-UnisxRelationsyAmérique latinexPériodiques aAmérique latinexPériodiques aAmérique latinexRelationsyEtats-UnisxPériodiques a98002aNorth American Congress on Latin America4 uhttp://www.nacla.org/ zContenu : sommaires depuis le vol. 1, n°1, 1967 ; texte intégral de l'introduction du rapport ainsi que d'une sélection d'articles (pour les autres articles, extraits disponibles) depuis le vol. 25, n° 1, 1991.1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9801 bvol. 26 no. 5 (mai-1993) -....cParisdMagasins/AnnexeeP 4° 3725 aZCAD aGEO RC2 Etats-Unis aGEO RD Amérique latine aDEW 98001381cas0 2200325 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200006600148210002000214215003000234300009000264430001800354530002800372606005900400607006300459676000800522801003000530801003000560856028100590856015200871945001501023991001701038038389061000098736920130319051644.0 accn7114/9651 a0000987369 a19891128b18161816 0frey0103 zz0 afre aBE ar aau 13aLe Nain jaune réfugiéfpar une société d'anti-éteignoirs aBruxellesd1816 a1 vol. (544-24 p.)d20 cm aPar L. A. F. Cauchois-Lemaire, A. V. Arnault, Isid. Guyet et autres, d'après Barbier 1tLe Nain jaune03aLe Nain jaune réfugié aFrançaisyBelgiqueyBruxelles (Belgique)z19e siècle aFrancexPolitique et gouvernementz1814-1830xPériodiques a944 3aFRbAbesc20060615gAFNOR 3aFRbAbesc20060615gAFNOR4 uhttp://books.google.fr/books?id=WxsXAAAAYAAJ&printsec=frontcover&dq=editions:bwZ24UJaQvYC&hl=fr&ei=k-64Ts_fFJPY8QPL9IHFBw&sa=X&oi=book_result&ct=book-thumbnail&resnum=2&ved=0CDQQ6wEwAQ#v=onepage&q&f=falsezAccès libre au texte intégral. Volume 3 numérisé sur Google Livres4 uhttp://www.archive.org/stream/lenainjaunerfug00caucgoog#page/n6/mode/2upzAccès libre au texte intégral. Volume 4 numérisé sur Internet Archive bR8*023.887 aSAFIGbTA09900878nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000015001552100041001703260017002115300034002286060029002626070029002918010021003208560030003418560074003719550108004459920023005539920012005760000029046000002904620130506145542.01 a0027-8378 aFNSP180449 a0000029046 a19900101a18659999 ba0 aeng aUS aa a 14aThe Nation aNew York‎cJ.H. Richards‎d1865- aHebdomadaire14aThe Nation‎bNew York, N.Y. aActualitéxPériodiques aEtats-UnisxPériodiques 3aFRbCCN0027-83784 uhttp://www.thenation.com/ zContenu : sommaires et articles en texte intégral depuis janv. 1999.1 bvol. 29 no. 705 (jan-1879) -....cParisdMagasins/AnnexeeP 4 °0139wManque : (jul-1940) à (dec-1944) aGEO RC2 Etats-Unis aDEW 05001640cas0 2200421 450 00100100000000200110001000500170002101100140003803500170005203500170006903500150008610000410010110100080014210200070015010500180015710600060017511000160018120000820019720700890027921000300036832600140039853000230041253100190043560600520045460700470050670000360055370200370058980100300062680100230065680200070067985601200068685601200080685601200092695500550104695500550110199100200115699100420117603863452X000110938120130319051645.0 a1160-5383 accn1160-5383 aissn11605383 a0001109381 a19980721b19151919k 1frey0103 ba0 afre aFR ay  ar aaea 13aLa nation tchèqueerevue bi-mensuellefDir. Ernest Denis [puis] Edouard Bene 1a1ère Année, N.1 (1915, 1er Mai) - 4e Année, N.23/24 (1919, 15 Juillet / 15 Août) aParisc[s. n.]d1915-1919 aBimensuel03aLa Nation tchèque 0aNation tchèq. aEmigration et immigrationxPériodiques2rameau aTchèquesz1900-1945xPériodiques2rameau 1aDenisbErnestf(1849-1921)4651 1aBenešbEdvardf(1884-1948)4651 3aFRbAbesc20061024gAFNOR 3aFRbISSNc20051021 a074 uhttp://archive.org/details/lanationtchque01beneuoftzAccès libre au texte intégral. Volume 1 sur Internet Archive4 uhttp://archive.org/details/lanationtchque03beneuoftzAccès libre au texte intégral. Volume 3 sur Internet Archive4 uhttp://archive.org/details/lanationtchque04beneuoftzAccès libre au texte intégral. Volume 4 sur Internet Archive1 b(1915) -(1917)cParisdMagasins/AnnexeeP 4° 05921 b(1917) -(1919)cParisdMagasins/AnnexeeP 8° 0711 aPériobTP01 P4 anumer0 (complément internet archive)01668cas0 2200421 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101001300139102000700152105001800159106000600177110001600183200012500199207001000324210002300334300005500357326001100412423006800423430009700491510006300588510008000651606005800731710006700789801003000856801002300886802000700909856008800916856010801004955005501112992005101167992001201218992001601230100511198000111384420130319051645.0 a1992-8742 a112270247 aissn19928742 a0001113844 a20060427a20009999 0frey0103 ba0 aengafre aZZ ay  ar aak 10aNational accounts of OECD countries.iDetailed tables=dComptes nationaux des pays de l'OCDE.iTableaux détaillészfre 0a2000- aPariscOCDEd2000- aA partir de 2003 paraît en 2 volumes : IIa et IIb aAnnuel 1tNational accounts of OECD countries. Main aggregatesx1992-8750 1tNational accounts. Detailed tables - OECD. Department of Economics and Statisticsx0256-757110aComptes nationaux des pays de l'OCDE. Tableaux détaillés10aComptes nationaux des pays de l'OCDEhVolume II.iTableaux détaillészfre aComptabilité nationaleyPays de l'OCDExPériodiques02aOrganisation de coopération et de développement économiques 3aFRbAbesc20070205gAFNOR 3aFRbISSNc20070201 a004 uhttp://titania.sourceoecd.org/vl=4137042/cl=28/nw=1/lg=eng/rpsv/outlook_annuals.htm4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(2000) -(2005)cParisdMagasins/AnnexeeP 4° 5236 aGEO RN1 Pays industrialisés, pays occidentaux aDEW 336 aDEW 310-31901591cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101001300125102000700138105001800145106000600163110001600169200012500185207001000310210002300320326001100343423006800354430009700422510007900519606005800598606008000656710006700736801003000803801002300833802000700856856008800863856010800951955005501059992005101114992001201165992001601177100507301000111384320130319051645.01 a1992-8750 aissn19928750 a0001113843 a20060427a20009999uuuy0frey0103 ba0 aengafre aZZ ay  ar aaku uu 10aNational accounts of OECD countries.iMain aggregates=dComptes nationaux des pays de l'OCDE.iPrincipaux agrégatszfre 0a2000- aPariscOCDEd2000- aAnnuel 1tNational accounts of OECD countries. Detailed tablesx1992-8742 1tNational accounts. Main aggregates - OECD. Department of Economics and Statisticsx0256-758X10aComptes nationaux des pays de l'OCDEhVolume 1.iPrincipaux agrégatszfre aComptabilité nationaleyPays de l'OCDExPériodiques aAgrégats (économie politique)yPays de l'OCDExStatistiquesxPériodiques02aOrganisation de coopération et de développement économiques 3aFRbAbesc20070903gAFNOR 3aFRbISSNc20070201 a004 uhttp://titania.sourceoecd.org/vl=4137042/cl=28/nw=1/lg=eng/rpsv/outlook_annuals.htm4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(2000) -(2007)cParisdMagasins/AnnexeeP 4° 5236 aGEO RN1 Pays industrialisés, pays occidentaux aDEW 336 aDEW 310-31901006nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200007000139210003600209326001100245530007100256606006400327606005100391710001800442856009900460955006900559972000900628991001800637992002100655992001200676992001600688039304310000007797820131022145328.01 a0259-3025 aFNSP352026 a19900101a19859999 f ba0 aeng aUS aaka 10aNational accounts statisticsiMain aggregates and detailed tables aNew YorkcUnited Nationsd1985- aAnnuel10aNational accounts statistics : main aggregates and detailed tables aAgrégats (économie politique)xStatistiquesxPériodiques aFinances publiquesxStatistiquesxPériodiques02aNations Unies4 uhttp://unstats.un.org/unsd/nationalaccount/pubsDB.asp?pType=3zAccès libre au texte intégral1 bno 1(1982) -no 2 (1996/1997)cParisdMagasins/AnnexeeP 4° 5265 aZGRA aexempb201307 aGEO RQ Universel aDEW 336 aDEW 310-31901034nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000250015421000280017932600110020743000680021844000340028651700640032060600720038471000530045685600840050995500550059397200090064899200310065799200160068899200160070408984601X000011309720130319051645.0 a1354-1226 aFNSP476035 a0000113097 a19900101b19932001 ba0 aeng aGB aaka 10aNational food survey aLondoncHMSOd1993-2001 aAnnuel 1aHousehold food consumption and expenditure (Londres)x0302-3273 1tFamily food in ...x1748-075210aAnnual report on Household Food Consumption and Expenditure aAlimentsxConsommationyGrande-BretagnexStatistiquesxPériodiques02aNational Food Survey Committee (Grande-Bretagne)4 uhttp://www.defra.gov.uk/statistics/foodfarm/food/familyfood/nationalfoodsurvey/1 b(1992) -(2000)cParisdMagasins/AnnexeeP 4° 5278 aZPAY aGEO RA4.02 Grande-Bretagne aDEW 338.1-3 aDEW 310-31901292nas 2200349 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200002400148210002800172326002300200326002900223530003400252606003100286606003200317606004300349801001300392856010100405856010800506856010900614856010800723955007000831972000900901991001800910992001400928050912364000032756920130830124533.01 a1460-8944 a a19999999k fre ba0 aeng aGB a 0  ar aah z 0 10aNational identities aAbingdoncCarfaxd1999- aTrimestrielb2005- a3 n°s par anb1999-2004 aNational identities‎bPrint aNationalismexPériodiques aNationalitésxPériodiques aRelations interethniquesxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=104645 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713439360db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1999) -....cParisdMagasins/AnnexeeP 8° 6533 aZPAY aexempb201212 aDEW 320.501425nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210002500193326001600218606004400234607005900278607005700337710006100394801002100455856010100476856010800577856010800685856010800793955006300901957005700964972000901021992003101030992001401061038758067000000479420130319051645.01 a0027-9501 aFNSP106465 a0000004794 a19900101a19599999 ba0 aeng aGB aahu 10aNational Institute economic review aLondoncNIESRd1959- aTrimestriel aFinancesyGrande-BretagnexPériodiques aGrande-BretagnexConditions économiquesxPériodiques aGrande-BretagnexPolitique économiquexPériodiques02aNational Institute of Economic and Social Researchc(GB) 3aFRbCCN0027-95014 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=105908 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (jan-1959) -....cParisdMagasins/AnnexeeP 4° 18501 b(1959) -(1967)cParisdMagasins/AnnexeeP Index 0488 aZPAY aGEO RA4.02 Grande-Bretagne aDEW 330.900847nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002600139210004800165326001500213530002600228606004400254676000800298801002100306856003600327856006300363955005900426972000900485991001800494992002100512992001200533039975991000002905420140110102033.01 a0884-9382 aFNSP180469 a19900101a19859999 ba0 aeng aUS aahu 14aThe National interest aNew York, NYcNational Affairs, Inc.d1985- aBimestriel14aThe National interest aRelations internationalesxPériodiques a320 3aFRbCCN0884-93824 uhttp://www.nationalinterest.org zContenu : sommaires depuis 1993 ; résumés du dernier n°1 bno. 1 (1985) -....cParisdMagasins/AnnexeeP 8° 4903 aZSAB aexempb201002 aGEO RQ Universel aDEW 32700770nas 2200277 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000310015421000430018532600140022860600290024260700290027180100210030085600350032195500920035697200090044899200230045799200120048003875830X000002905620130319051645.01 a0028-0038 aFNSP180479 a0000029056 a19900101a19559999 ba0 aeng aUS aaeu 10aNational review (New York) aNew York, N.Y.cNational reviewd1955- aBimensuel aActualitéxPériodiques aEtats-UnisxPériodiques 3aFRbCCN0028-00384 uhttp://www.nationalreview.com/1 bvol. 18 no. 4 (jan-1966) -vol. 63 no. 24 (dec-2011)cParisdMagasins/AnnexeeP 4° 2181 aZCAD aGEO RC2 Etats-Unis aDEW 05001141nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210005200179326001600231606003700247710004300284801002100327856012800348856010800476955008200584957009900666972000900765991001800774992002300792992001200815038758474000002906020130319051645.01 a0028-0283 aFNSP180488 a0000029060 a19900101a19489999 ba0 aeng aUS aahu 10aNational tax journal aColumbus, OhiocNational Tax Associationd1948- aTrimestriel aImpôtyEtats-UnisxPériodiques02aNational Tax Associationc(Etats-Unis) 3aFRbCCN0028-02834 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=NTJ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 21 no. 4 (1968) -vol. 61 no.4 (2008)cParisdMagasins/AnnexeeP 8° 26921 b(1948) -(1997)cParisdMagasins/Annexezse trouve dans le vol. 50 no. 4 (dec-1997) de la revue aZPAY aexempb201105 aGEO RC2 Etats-Unis aDEW 33601371nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210002400188326001600212517003600228606003100264606004300295856004200338856008900380856012800469856010800597856010900705856010800814955007000922972000900992991001801001992001401019036740969000014974620130319051646.01 a1353-7113 aFNSP586973 a0000149746 a19950214a19959999 ba0 aeng aGB aaha 10aNationalism & ethnic politics aIlfordcCassd1995- aTrimestriel10aNationalism and ethnic politics aNationalismexPériodiques aRelations interethniquesxPériodiques4 uhttp://www.frankcass.com/jnls/nep.htm zContenu : sommaires depuis le vol. 1, n°1 ; résumés des n° actuel et à paraitre4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=IYA&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713636289db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (pri-1995) -....cParisdMagasins/AnnexeeP 8° 6100 aZGRA aexempb201212 aDEW 320.501828nas 2200433 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154207001900179210009900198326002300297326002600320606003200346606002400378606003500402606002700437607006000464607005200524710007400576801002100650856012800671856010800799856010900907856010801016955006601124957007301190972000901263991001801272992003201290992005601322992001601378038892162000002906120140108104417.01 a0090-5992 aFNSP180492 a0000029061 a19900101a19729999 ba0 aeng aUS aahu 10aNationalities papers 1avol. 1 (1972)- aCharleston, Ill.cAssociation for the Study of the Nationalities (USSR and East Europe)d1972- aTrimestrielb1995- aSemestrielb1972-1994 aMinoritésyEurope de l'Est aMinoritésyEx-URSS aNationalitésyEurope de l'Est aNationalitésyEx-URSS aEurope de l'EstxRelations interethniquesxPériodiques aEx-UrssxRelations interethniquesxPériodiques02aAssociation for the Study of the Nationalities (USSR and East Europe) 3aFRbCCN0090-59924 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=55O&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713439073db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 8 no. 1 (1980) -....cParisdMagasins/AnnexeeP 8° 43591 bvol. 11 (1983) -vol. 20 (1992)cParisdMagasins/AnnexeeP Index 0712 aZSAB aexempb201010 aGEO RA2.02 Europe orientale aGEO RA7.02 Etats successeurs de l'Union soviétique aDEW 305-30601080nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210004900182326002300231326002900254606003200283606003100315676000800346712006500354856012800419856010800547955007000655972000900725991001800734992001400752036741507000016136420140110102716.01 a1354-5078 aFNSP620880 a0000161364 a19900101a19959999 ba0 aeng aGB aaha 10aNations and nationalism aCambridgecCambridge University Pressd1995- aTrimestrielb1998- a3 n°s par anb1995-1997 aNationalitésxPériodiques aNationalismexPériodiques a32002aAssociation for the Study of Ethnicity and Nationalismc(GB)4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=D8K&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1995) -....cParisdMagasins/AnnexeeP 8° 6140 aZSAB aexempb201207 aDEW 320.501103nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002800139210002300167225001900190326001100209437003900220452005500259517004400314530002800358606003600386710004000422856021300462955004700675972000900722991001800731992001600749992001200765048881260000023316820140117161522.01 a1683-4267 aFNSP826551 a19900101a19979999 ba0 afre aFR aaka 10aNatural gas information aPariscOCDEd1997-21aIEA statistics aannuel 1aOil and gas informationx1016-5010 1tIEA natural gas information (Online)‎x1683-426710aIEA statistics. Natural Gas information aNatural gas information aGazxStatistiquesxPériodiques aAgence internationale de l'énergie4 uhttps://acces-distant.sciences-po.fr/fork?http://puck.sourceocde.org/vl=562167/cl=24/nw=1/rpsv/home.htmzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1996)-(2006)dMagasins/AnnexeeP 4° 6726 aZPAY aexempb201401 aDEW 310-319 aDEW 33301081nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210007000184326001600254606003200270606004000302710004400342801002100386856003400407856007800441955007100519957010500590972000900695991001800704992002100722992001200743038758679000002907120130319051647.01 a0028-0739 aFNSP180515 a0000029071 a19900101a19619999 ba0 aeng aUS aahu 10aNatural resources journal aAlbuquerque, N.M.cUniversity of New Mexico School of Law.d1961- aTrimestriel aEnvironnementxPériodiques aRessources naturellesxPériodiques02aUniversity of New MexicobSchool of Law 3aFRbCCN0028-07394 uhttp://lawschool.unm.edu/NRJ/4 zContenu : accès aux sommaires et résumés depuis le vol. 41, n°1, 20011 bvol. 11 no. 1 (jan-1971) -....cParisdMagasins/AnnexeeP 8° 29451 bvol. 1 (1961) -vol. 20 (1980) ; vol. 21 (1981) -vol. 30 (1990)cParisdMagasins/AnnexeeP Index 0368 aZPAY aexempb201106 aGEO RQ Universel aDEW 33300987nls 2200337 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000063001642070034002272100038002612100042002992300024003413260017003656060037003826060038004197100011004578010013004688560052004818560066005339550005005999920031006049920014006350001236017000123601720130319051647.0 a1476-4687 a0001236017 a a18699999k fre 01 ba0 aeng aGB ar aac z  adr 10aNatureb[Ressource électronique]fNature Publishing Group 1aVol. 1, no. 1 (Nov. 4, 1869)- aLondoncNature Publ. Groupd2000- aLondoncMacmillan Journalsd1869-1999 aRevue électronique aHebdomadaire aSciences de la viexPériodiques aSciences naturellesxPériodiques02aNature 0aFRbFNSP4 uhttp://www.nature.com/nature/archive/index.html4 zContenu : texte intégral des numéros depuis le no. 1 de18691 r aGEO RA4.02 Grande-Bretagne aDEW 50-5901123nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210002700198326001600225517003600241606003200277606002700309710004000336856006200376856010900438856010400547955014900651972000900800992001200809040039358000026988920130319051647.01 a1240-1307 aFNSP933349 a0000269889 a19990408a19939999 ba0 afre aFR aaha 10aNatures sciences sociétés (Montrouge) aPariscElsevierd1993- aTrimestriel10aNSS natures sciences sociétés aEnvironnementxPériodiques aEcologiexPériodiques02aAssociation NSS dialoguesc(France)4 uhttp://www.edpsciences.org/journal/index.cfm?edpsname=nss zContenu : accès au texte intégral depuis 2004 avec 2 ans de retard par rapport à l'édition imprimée4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-natures-sciences-societes.htm1 bvol. 1 no. 1 (1993) -....cParisdMagasins/AnnexeeP 4° 6809wManquants : vol. 4 no. 1 (1996) ; vol. 5 no. 1-2-3 (1997) ; vol. 7 no. 1-2 (1999) aZPAY aDEW 33301052nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210004400183326002300227326002600250606004800276607004900324801002100373856005100394856008600445955007200531957005700603972000900660991001800669992002300687992001600710038758970000002907320130319051647.01 a0028-1484 aFNSP180518 a0000029073 a19900101a19489999 ba0 aeng aUS aahu 10aNaval War College review aNewport, R.I.cNaval War Colleged1948- aTrimestrielb1986- aBimestrielb1948-1985 aMarines de guerreyEtats-UnisxPériodiques aEtats-UnisxDéfense nationalexPériodiques 3aFRbCCN0028-14844 uhttps://portal.nwc.navy.mil/press/default.aspx zContenu : accès libre au texte intégral d'une sélection d'articles depuis 20011 bvol. 20 no. 11 (jun-1968) -....cParisdMagasins/AnnexeeP 8° 25501 b(1948) -(1973)cParisdMagasins/AnnexeeP Index 0231 aZSAB aexempb200908 aGEO RC2 Etats-Unis aDEW 355-35901924nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210003900185326001100224530003100235606003700266606003300303676000800336710005500344856024400399856026800643856023800911856025901149955006701408955006001475972000901535991001801544992001201562039984672000001756920130605155443.01 a0889-3365 aFNSP147994 a0000017569 a19901115a19869999 ba0 aeng aUS aaka 10aNBER macroeconomics annual aCambridge, Mass.cMIT Pressd1986- aannuel00aNBER macroeconomics annual aEconomie politiquexPériodiques aMacroéconomiexPériodiques a33002aNational Bureau of Economic Researchc(Etats-Unis)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.nber.org/booksbyseries/MA.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po, accès au texte intégral de 1986 à il y a 2 ans uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/direct.asp?db=bth&jid=88GB&scope=sitezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po, accès au texte intégral de 2007 à il y a 2 ans4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/08893365.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po, accès au texte intégral de 1986 à 20074 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/direct.asp?db=bth&jid=MNA&scope=sitezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po, accès au texte intégral de 1997 à 20061 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3301 bvol. 3 (1988) -....cParisdMagasins/AnnexeeP 8° 5679 aZPAY aexempb201110 aDEW 33901096nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000057001502100062002072300024002693260034002933370199003275170058005265170026005846060037006107100055006478010013007028300007007158560032007229550040007540000464365000046436520130319051647.0 a0000464365 a a19949999k fre 01 ba0 aeng aUS az abu z  adr 10aNBER working papersb[Ressource électronique]fNBER aNew YorkcNational bureau of economic researchd1994-.... aDonnées textuelles aCollection de working papers. aTexte intégral au format pdf, télédéchargeable à partir du n°4935, nov. 1994 avec Adobe Acrobat. Egalement envoi par e-mail. Les papers précédents peuvent être mis en ligne sur demande.10aWorking papers - National bureau of economic research10aWorking papers - NBER aEconomie politiquexPériodiques02aNational Bureau of Economic Researchc(Etats-Unis) 0aFRbFNSP aBH4 uhttp://www.nber.org/papers/1 rConsultable uniquement sur Internet01026nas 2200289 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000038001412100046001792250047002253260011002724300054002836060052003377120047003898560081004368560051005178560064005689550070006329920022007029920012007240000103824000010382420130319051647.0 aFNSP444220 a0000103824 a19900101a19919999 ba0 afre aFR aaka 13aLa Négociation collective en.... aPariscLa Documentation françaised1991-21aBilans et rapports / Ministère du travail aAnnuel 1aBilan de la négociation collective < P 4°5824 > aNégociations collectivesyFrancexPériodiques02aFrancebDirection des relations du travail4 uhttp://www.travail.gouv.fr/publications/p_detailPublication.asp?idTitre=2191 zContenu : texte intégral du bilan de l'année4 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml1 b(1992)-(1997) ; (2002)-(2006)cParisdMagasins/AnnexeeP 4° 5824 aGEO RA4.06 France aDEW 33100872nls 2200277 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000045001642100043002092300024002523260015002766060032002916060039003238010013003628560196003759920012005719920011005830001180911000118091120130319051648.0 a1782-1452 a0001180911 a a20049999k fre 01 ba0 afre aBE ar aaj z  adr 10aNégociationsb[Ressource électronique] aBruxellescDe Boeck Universitéd2004- aRevue électronique asemestriel aNégociationsxPériodiques aGestion des conflitsxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-negociations.htmzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aDEW 322 aGEO RQ00903cas0 2200301 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119110001600126200003900142210002600181601003600207606003500243710002200278801003000300801003000330856002700360856006100387955009200448972000900540991001800549992001200567992002200579036549797000009070620130319051649.0 accn0044/4227 a0000090706 a19830101c19 0frey0103 zz0 aeng aNP aau 10aNepal Rastra bank. Economic report aKathmanducNRBd1967-02aNepal Rastra BankxPériodiques aFinancesyNépalxPériodiques02aNepal Rastra Bank 3aFRbAbesc20040912gAFNOR 3aFRbAbesc20040912gAFNOR4 uhttp://www.nrb.org.np/4 zAccés à une partie du texte intégral depuis 2001/20021 a(1966/1967) -(1987/1988) ; (1994/1995) -(2003/2004)bParisdMagasins/AnnexeeP 8° 6519 aZGRA aexempb201108 aDEW 332 aGEO RI1.15 Népal00834nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000086001502100031002362300024002673260011002916010036003026060035003387100022003738010013003958560027004088560058004359550005004939920022004989920012005200001133697000113369720130319051649.0 a0001133697 a a20009999k fre 01 ba0 aeng aNP ar aak z  adr 10aNepal Rastra bank. Economic report.b[Ressource électronique]fNepal Rastra bank aKathmanducNRBd2000/2001- aRevue électronique aAnnuel02aNepal Rastra BankxPériodiques aFinancesyNépalxPériodiques02aNepal Rastra Bank 0aFRbFNSP4 uhttp://www.nrb.org.np/ zContenu : texte intégral du rapport depuis 2000/20011 r aGEO RI1.15 Népal aDEW 33201091nas 2200349 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200002700148207001700175210004800192326001500240606004700255606003700302607004500339607002500384676001000409801001300419856002900432856008600461955006800547955006400615972000900679992003900688992001400727059514140000060699420130718143242.01 a1815-7912 a a19979999 frey01 ba0 arus aRU a 0  ar aag z 0 10aNeprikosnovennyj zapas 1ano. 1(1998)- aMoskvacNovoe literaturnoe obozrenied1999- aBimestriel aPolitique et cultureyRussiexPériodiques aVie intellectuellexPériodiques aRussiexVie intellectuellexPériodiques aRussiexPériodiques a943.7 0aFRbFNSP4 uhttp://www.nz-online.ru/ zContient : sommaires et sélection d'articles en texte intégral depuis le n° 241 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 943.71 bno. 1 = 39 (2003) -....cParisdMagasins/AnnexeeP 4° 7024 aZPAY aGEO RA7.21 Russie (depuis 1991-92) aDEW 943.701144cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200004100179210002800220306005400248326001800302421005700320430006400377606003800441801003000479801003000509801002300539802000700562856006400569856006100633955006700694972000900761992001200770039109488000098443020130319051649.01 a0165-070X accn0165-070X aissn0165070X a0000984430 a19890613a19759999k y1frey0103 ba0 aeng aNL ar aaiu uu 10aNetherlands international law review aLeydencSijthoffd1975- aPublié ensuite à La Haye par T.M.C. Asser Press a3 n°s par an 1tNetherlands yearbook of international lawx0167-6768 1tNederlands tijdschrift voor internationaal rechtx0028-2138 aDroit internationalxPériodiques 3aFRbAbesc20051124gAFNOR 3aFRbAbesc20051124gAFNOR 3aFRbISSNc20050729 a0j4 uhttp://journals.cambridge.org/action/displayJournal?jid=NLR zContient : sommaires des n°s à partir du vol. 50, 20031 bvol. 51 no. 1 (2004) -....cParisdMagasins/AnnexeeP 8° 6895 aZSAB aDEW 34101063nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004500154210003000199326001200229436004400241436008200285607004800367607005500415676000800470801002100478856005400499856004900553955005900602972000900661991001800670992002500688992001200713039131289000002932620140109153551.01 a0177-6738 aFNSP181106 a0000029326 a19900101a19859999 ba0 ager aDE aafu 14aDie neue Gesellschaft, Frankfurter Hefte aBonncDietz Nachf.d1985- aMensuel 1aDie neue Gesellschaft (Bonn)x0028-3177 1tFrankfurter Hefte (Neue Verlagsgesellschaft der Frankfurter Hefte)x0015-9999 aAllemagnexVie intellectuellexPériodiques aAllemagnexPolitique et gouvernementxPériodiques a001 3aFRbCCN0177-67384 uhttp://www.frankfurter-hefte.de/Aktuelle-Ausgabe/ zContenu : texte intégral en ligne 2007-20081 bno. 1 (1985) -....cParisdMagasins/AnnexeeP 8° 2073 aZGRA aexempb201105 aGEO RA5.01 Allemagne aDEW 00101065nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154207003000184210003500214326002400249326002700273326002300300430003600323606004000359856008300399856005200482955007500534955008900609972000900698991001800707992001400725038759616000003109520130319051649.01 a0028-3320 aFNSP186492 a0000031095 a19910502a19569999 ba0 ager aDE aaha 10aNeue politische Literatur 1avol. 1 no. 1 (Juli 1956)- aFrankfurt am MaincLangd1956- a3 nos par anb1985- aTrimestrielb1965-1984 aMensuelb1956-1964 1aPolitische Literaturx0477-2776 aPhilosophie politiquexPériodiques4 uhttp://hsozkult.geschichte.hu-berlin.de/zeitschriften/type=zeitschriften&id=404 zContenu : accès aux sommaires depuis n°1,20011 bvol. 26 no. 1 (jan/mar-1981) -....cParisdMagasins/AnnexeeP 8° 44381 bvol. 4 no. 4 (avr-1959) -vol. 5 no. 8 (aou-1960)cParisdMagasins/AnnexeeP 8° 1157 aZCAD aexempb200911 aDEW 320.500942nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000053001502100005002032300024002083260014002326060029002466070025002758010013003008560192003138560108005059550005006139920022006189920012006400001131856000113185620130319051649.0 a0001131856 a a19939999k fre 01 ba0 ager aCH ar aaa z  adr 10aNeue Zürcher Zeitungb[Ressource électronique] a aRevue électronique aquotidien aActualitéxPériodiques aSuissexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA5.14 Suisse aDEW 05000833nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210003200185326001200217430005500229607002600284801002100310856004100331856006600372955006500438972000900503992001900512992001200531036356344000002962320130319051649.01 a0142-9345 aFNSP182334 a0000029623 a19900101a19789999 ba0 aeng aGB aafu 10aNew African (London, 1978) aLondoncIC Magazinesd1978- aMensuel 1aNew african development,x0140-1378 < P 4° 2812 > aAfriquexPériodiques 3aFRbCCN0142-93454 uhttp://www.africasia.com/newafrican/ zContenu : sommaires depuis le numéro de juillet / Août 20021 bno. 129 (mai-1978) -....cParisdMagasins/AnnexeeP 4° 2812 aZCAD aGEO RE Afrique aDEW 96000924nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000160015421000300017032600160020044000380021653000310025460600370028571000520032285600700037485600780044495500820052299100180060499200120062204030731X000018178720130319051650.01 a1070-3535 aFNSP676712 a0000181787 a19900101b19942004 ba0 aeng aGB aaha 10aNew economy aLondoncDrydend1994-2004 aTrimestriel 1tPublic policy researchx1744-539600aNew economybLondon. Print aEconomie politiquexPériodiques02aInstitute for Public Policy Researchc(Londres)4 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=10703535 zContenu : sommaires et résumés depuis le volume 5, numéro 1, mars 19981 bvol. 2 no. 1 (1995) -vol. 11 no. 4 (2004)cParisdMagasins/AnnexeeP 8° 6216 aexempb201211 aDEW 33000969nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210004000179326001200219430002100231606004400252606002900296801002100325856004300346856006000389955006300449957013400512972000900646992001200655039395359000002965220130319051651.01 a0305-9529 aFNSP182408 a0000029652 a19900101a19739999 ba0 aeng aGB aafu 10aNew internationalist aOxfordcNew Internationalistd1973- aMensuel 1aInternationalist aRelations internationalesxPériodiques aActualitéxPériodiques 3aFRbCCN0305-95294 uhttp://www.oneworld.org/ni/index4.html zContenu : liste des grands thèmes traités depuis 19931 bno. 1 (mar-1973) -....cParisdMagasins/AnnexeeP 4° 32611 bno. 1 (1973) -no. 22 (1974) ; no. 11 (1974) -no. 34 (1975) ; no. 263 (1995) -no. 319 (1999)cParisdMagasins/AnnexeeP Index 0490 aZCAD aDEW 05001148nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154207008100174210003500255326001500290436004400305436002800349606004500377607006100422676000800483801002100491856003400512856003600546955006700582955010900649972000900758991001700767992001400784038760274000002965520130319051651.01 a0028-6060 aFNSP182419 a0000029655 a19900101a19609999 ba0 aeng aGB aagu 10aNew left review 1ano. 1 (jan/fev-1960)-no. 238 (nov/dec-1999)a2nd ser. no. 1 (jan./feb-2000)- aLondoncNew Left Reviewd1960- aBimestriel 1aUniversities and left reviewx0502-6385 1tNew reasonerx0548-6556 aGauche (science politique)xPériodiques aGrande-BretagnexPolitique et gouvernementxPériodiques a320 3aFRbCCN0028-60604 uhttp://www.newleftreview.net/ zAccès libre au texte intégral1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 1 (jan-1960) -no. 238 (dec-1999) ; n. s. no. 13 (jan-2002) -....cParisdMagasins/AnnexeeP 8° 1878 aZCAD aexempb20108 aDEW 320.501308nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210002800180326002200208326002700230326002900257606003700286856005700323856005800380856012800438856010800566856010900674856010800783955007000891972000900961992001200970036743062000019879220140106120315.01 a1356-3467 aFNSP726687 a0000198792 a19900101a19969999 ba0 aeng aGB aaia 10aNew political economy aAbingdoncCarfaxd1996- aBimestrielb2013- aTrimestrielb2004-2012 a3 n°s par anb1996-2003 aEconomie politiquexPériodiques4 uhttp://www.tandf.co.uk/journals/carfax/13563467.html zContenu : sommaires depuis le vol. 1, n°1, mars 19964 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=NPE&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713439457db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1996) -....cParisdMagasins/AnnexeeP 8° 6273 aZSAB aDEW 33001531nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154207011000180210006700290210003200357210003200389326002300421326002700444606003600471676000800507710003900515856010600554856005400660856010900714856010800823955006700931955011600998972000901114991001801123992001601141039702545000011445820130319051651.01 a0739-3148 aFNSP479608 a0000114458 a19900101a19729999 ba0 aeng aUS aaha 10aNew political science 1a[Fall 1972-spring-summer 1978?] ; no. 1 (spring 1979)-no. 41/42 (fall 1997) ; vol. 20, no. 1 (Mar. 1998)- aIndianapolis, Ind.cCaucus for a New Political Science]d1972- aAbingdoncCarfaxd1998-2004 aaAbingdoncRoutledged2005- aTrimestrielb1998- aIrrégulierb1972-1997 aScience politiquexPériodiques a32002aCaucus for a New Political Science4 uhttp://www.tandf.co.uk/journals/frameloader.html?http://www.tandf.co.uk/journals/carfax/07393148.html zContenu : sommaires depuis le vol. 20, n°1, 19984 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713439578db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 2/3 (1979/1980) -no. 41/42 (1997) ; n.s. vol. 20 no. 1 (mar-1998) -....cParisdMagasins/AnnexeeP 8° 4980 aZSAB aexempb201011 aDEW 320-32100804nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001700139210005100156326001500207530001700222606004400239801002100283856007200304955012300376972000900499991001800508992001200526038760428000002967520130605104236.01 a0028-6494 aFNSP182483 a19900101a19619999 ba0 aeng aUS aahu 10aNew politics aBrooklyn, N.Y.cNew Politics Associatesd1961- aSemestriel00aNew politics aRelations internationalesxPériodiques 3aFRbCCN0028-64944 uhttp://www.newpol.org/zAccès libre au texte intégral depuis 19611 bvol. 9 no. 1 (pri-1971) -vol. 12 no. 1 = 45 (1978) ; vol. 1 no. 1 (ete-1986) -....cParisdMagasins/AnnexeeP 8° 3043 aZSAB aexempb201106 aDEW 32400811nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116106000600123110001600129200002100145207003700166210003800203326001700241452005900258606002900317607002900346801002100375856002400396955006600420992002300486992001200509038760479000006630820131129122236.01 a0028-6583 aFNSP308089 a19900101a19149999 ba0 aeng aUS ar aa a 14aThe New Republic 1aVol.1, N.1 (November 7th, 1914)- aNew YorkcThe New Republicd1914- aHebdomadaire04tThe New republic (New York, N.Y. Online)‎x2169-2416 aActualitéxPériodiques aEtats-UnisxPériodiques 3aFRbCCN0028-65834 uhttp://www.tnr.com/1 bno. 1623 (jan-1946) -....cParisdMagasins/AnnexeeP 4° 0146 aGEO RC2 Etats-Unis aDEW 05000889nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001800139210003700157326001700194430003900211452004100250530002400291606002900315607006100344856003300405856004300438955007500481992003100556992001200587036765929000020087620131129143617.0 a1364-7431 aFNSP732740 a19900101a19969999 ba0 aeng aGB aa a 10aNew statesman aLondoncNew Statesman Ltdd1996- aHebdomadaire 1aNew statesman & societyx0954-2361 1tNew statesman (Online)‎x1758-924X10aNew statesmanb1996 aActualitéxPériodiques aGrande-BretagnexPolitique et gouvernementxPériodiques4 uhttp://www.newstatesman.com/ zContenu : sommaire du dernier numéro.1 bvol. 9 no. 407 (14 jun-1996) -....cParisdMagasins/AnnexeeP 4° 5317 aGEO RA4.02 Grande-Bretagne aDEW 05000868nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200003300138210003100171326001400202421004000216517008100256606005300337801002100390856004400411955005900455955005300514972000900567992001400576073325317000005311920130319051652.01 a0028-7504 aFNSP253285 a0000053119 a19900101a19639999 ba0 aeng aUS14aThe New York review of books aNew York, NYcNYREVd1963- aBimensuel 1tLondon review of booksx(0260-9592)10aLondon review of books with the New York review of books (de 1979 à 1981 ?) aLittératurexHistoire et critiquexPériodiques 3aFRbCCN0028-75044 uhttp://www.nybooks.com/nyrev/index.html1 bL’année en courscParisd27, Salle Rez-de chaussée1 b(1968) -....cParisdMagasins/AnnexeeP F° 0281 aZPAY aDEW 80-8901565cas0 2200433 450 00100100000000200110001000500170002101100140003803500170005203500170006903500150008604000110010110000410011210100080015310200070016110500180016810600060018611000160019220000230020820700390023121000460027031101060031645100260042245200390044845200410048780100300052880100230055880100300058180100230061180200070063483000530064185600270069485601920072185601080091395500660102197200090108799200230109699200120111903950932X000106226520130319051652.0 a0362-4331 accn0362-4331 aissn03624331 a0001062265 aNYTIAO a19750921a18579999uuuy0frey0103 ba0 aeng aUS ay 0  ar acaa 0uu 14aThe New York times 0aVol. 6, no. 1868 (Sept. 14, 1857)- aNew-York [N.YcH.J. Raymond & Co.]d1857- aTitre en relation depuis 2002 : The New York Times : une sélection hebdomadaire offerte par Le Monde 1tNew-York weekly times 1tNew York times (CD-ROM)x1542-667X 1tNew York times on the Webx1553-8095 3aFRbAbesc20100222gAFNOR 3aFRbISSNc20100215 3aFRbAbesc20070111gAFNOR 3aFRbISSNc20051021 a01 adésherbé en février 2008 suite à abo Factiva4 uhttp://www.nytimes.com4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 aLa bibliothèque n'est plus abonnée à l'édition imprimée. aZPAY aGEO RC2 Etats-Unis aDEW 05000944nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000050001502100005002002300024002053260014002296060029002436070029002728010013003018560192003148560108005069550005006149920023006199920012006420001131864000113186420130319051652.0 a0001131864 a a19809999k fre 01 ba0 aeng aUS ar aaa z  adr 14aThe New York timesb[Ressource électronique] a aRevue électronique aquotidien aActualitéxPériodiques aEtats-UnisxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RC2 Etats-Unis aDEW 05001398cas0 2200301 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102110001600109200003500125207005400160210004000214301004300254325006200297430011200359440003100471606005400502801003000556856010800586856010900694856010900803856010900912955005501021991002001076083413723000108417820130319051652.0 a0001084178 a20050120b19151916k y0frey0103 ba0 aeng aUS aafa 10aNew York times current history 0aVol. 2, n°1 (1915, apr)-Vol. 3, n°5 (1916, feb) aNew YorkcNew York timesd1915-1916 aDemande de numérotation ISSN en cours1 aArticles reproduits sur la base de données PCI Full Text 1tThe New York times current history of the European warbTexte imprimécNew YorknNew York timesd1914-1915 1tCurrent history (New York) aGuerre mondiale (1914-1918)xPériodiques2rameau 3aFRbAbesc20050121gAFNOR4 uhttp://www.gutenberg.org/ebooks/15478zAccès libre au texte intégral. Vol.2 n°1 sur Projet Gutenberg4 uhttp://www.gutenberg.org/ebooks/15479zAccès libre au texte intégral. Vol. 2 n°2 sur Projet Gutenberg4 uhttp://www.gutenberg.org/ebooks/15480zAccès libre au texte intégral. Vol. 2 n°3 sur Projet Gutenberg4 uhttp://www.gutenberg.org/ebooks/22460zAccès libre au texte intégral. Vol. 2 n°4 sur Projet Gutenberg1 b(1915) -(1916)cParisdMagasins/AnnexeeP 8° 0238 aPériobTP01 P801364nas0 2200289 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102110001600109200005900125207005400184210004000238301004300278325006200321440008800383606005400471801003000525856011100555856011100666856011100777856011100888955005500999991002001054083413383000108417720130319051652.0 a0001084177 a20050120b19141915k y0frey0103 ba0 aeng aUS aafa 14aThe New York times current history of the European war 0aVol. 1, n°1 (1914, dec)-Vol. 1, n°6 (1915, dec) aNew YorkcNew York timesd1914-1915 aDemande de numérotation ISSN en cours1 aArticles reproduits sur la base de données PCI Full Text 1tNew York times current historybTexte imprimécNew YorknNew York timesd1915-1916 aGuerre mondiale (1914-1918)xPériodiques2rameau 3aFRbAbesc20050120gAFNOR4 uhttp://www.gutenberg.org/ebooks/13635zAccès libre au texte intégral. Vol. 1 - n°1 sur Projet Gutenberg4 uhttp://www.gutenberg.org/ebooks/16331zAccès libre au texte intégral. Vol. 1 - n°2 sur Projet Gutenberg4 uhttp://www.gutenberg.org/ebooks/18880zAccès libre au texte intégral. Vol. 1 - n°3 sur Projet Gutenberg4 uhttp://www.gutenberg.org/ebooks/16363zAccès libre au texte intégral. Vol. 1 - n°4 sur Projet Gutenberg1 b(1914) -(1915)cParisdMagasins/AnnexeeP 8° 0238 aPériobTP01 P800984nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200003500138207003200173210005700205326001500262530004100277606003600318710003900354801002100393856004000414856006700454955008700521972000900608991001800617992002300635992001200658036356948000003005520130319051652.01 a0028-7881 aFNSP183513 a0000030055 a19900101a1950 ba0 aeng aUS00aNew York University law review 1aVol. 25, no. 1 (Jan. 1950)- aa[New YorkcNew York University School of Lawd1924- aBimestriel 0aNew York University law reviewb1950 aDroityEtats-UnisxPériodiques02aNew York UniversitybSchool of Law 3aFRbCCN0022/86644 uhttp://www.nyu.edu/pages/lawreview/ zContenu : sommaires et résumés depuis le vol. 71, n°4, 19961 bvol. 38 no. 1 (jan-1963) -vol. 84 no. 6 (2009)cParisdMagasins/AnnexeeP 8° 2482 aZPAY aexempb201004 aGEO RC2 Etats-Unis aDEW 34901256nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116106000600123200003500129210004800164326001100212326003300223517003400256607005000290607003600340710004800376801002100424856013400445955005500579955006900634955008100703972000900784991001700793991001900810992003300829992001600862992001600878038869764000010249820130514155854.01 a0078-0170 aFNSP440162 a19900101a18939999 ba0 aeng aNZ ar10aNew Zealand official year book aWellingtoncDepartment of Statisticsd1893- aAnnuel aBisannuel à partir de 2000.10aNew Zealand official handbook aNouvelle-ZélandexStatistiquesxPériodiques aNouvelle-ZélandexPériodiques02aNouvelle-ZélandebDepartment of Statistics 3aFRbCCN0078-01704 uhttp://www.stats.govt.nz/browse_for_stats/snapshots-of-nz/digital-yearbook-collection.aspxzAccés intégral au texte depuis 18931 b(1992) -(2010)cParisdMagasins/AnnexeeP 4° 62761 b(1980) -(1988/1989) ; (1992)cParisdMagasins/AnnexeeP 8° 52501 b(1897) ; (1915) -(1939) ; (1946) -(1979)cParisdMagasins/AnnexeeCOL8°0138 aZCAD aPériobTP01 aexemplb201109 aGEO RJ3.02 Nouvelle-Zélande aDEW 310-319 aDEW 990-99601290nls 2200349 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000078001502100062002283000099002903260012003893360058004013370063004594400046005224520064005686070038006326070033006706070034007037120044007378010013007818560090007949550005008849920035008899920016009240000466810000046681020130319051652.0 a0000466810 a b19261928k fre 01 ba0 aeng aUS az aaf z  adr 10aNews bulletin - Institute of Pacific Relationsb[Ressource électronique] aHonolulu, T.H.cInstitute of Pacific Relationsd1926-1928 aAccès au texte intégral (réservé aux sites de Sciences Po) de mai 1926 jusqu'à avril 1928 aMensuel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tPacific affairs [Ressource électronique] 1tNews bulletin - Institute of Pacific Relationsx(1530-2199) aPacifique (région)xPériodiques aAsie orientalexPériodiques aAsie du Sud-EstxPériodiques02aAmerican Institute of Pacific Relations 0aFRbFNSP1 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/15302199.html1 r aGEO RJ Océanie, Pacifique Sud aDEW 990-99601050nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000074001502100041002242300005002653000120002703260017003903360101004073370018005086060036005266060037005627100036005998010013006358560067006489550005007159920016007200000505408000050540820130319051652.0 a0000505408 a a20019999k fre 01 ba0 afre aFR ar aac z  adr 13aLa newsletter de la Fondation Jean Jaurèsb[Ressource électronique] aPariscFondation Jean Jaurèsd2001- a aAccessible par abonnement. Texte intégral des dernières numéros, recherche par mots clés pour les plus anciens. ahebdomadaire aDonnées textuelles uniquement accessibles en ligne ou par abonnement par courrier électronique aFichiers html aScience politiquexPériodiques aSocial-démocratiexPériodiques02aFondation Jean Jaurèsc(Paris) 0aFRbFNSP4 uhttp://193.45.254.92/affiche_page.php?Id=109&IdRub=20&IdSite=11 r aDEW 320-32101063nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000051001502100005002012300024002063260014002306060029002446070025002736070026002988010013003248560192003378560108005299550005006379920012006429920056006549920039007100001145135000114513520130319051652.0 a0001145135 a a19989999k fre 01 ba0 arus aRU ar aaa z  adr 10aNezavisimaâ gazetab[Ressource électronique] a aRevue électronique aQuotidien aActualitéxPériodiques aRussiexPériodiques aEx-URSSxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aDEW 050 aGEO RA7.02 Etats successeurs de l'Union soviétique aGEO RA7.21 Russie (depuis 1991-92)00907nas 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000029001502100022001793260011002014300039002126060026002516060046002777120057003238010013003808560050003938560050004439550058004939720009005519920021005609920012005810000469692000046969220130319051653.0 a0000469692 a a20029999k fre ba0 aeng aJP a 0  ar aak z 0 10aNHK broadcasting studies aTokyocNHKd2002- aAnnuel 1tStudies of broadcastingx0585-7325 aMédiasxPériodiques aCommunication audiovisuellexPériodiques02aNHK Broadcasting Culture Research Institutec(Tokyo) 0aFRbFNSP uhttp://www.nhk.or.jp/bunken/book-en/b4-e.html zcontenu : sommaires à partir du n° 31, 19951 bno.1 (2002) -....cParisdMagasins/AnnexeeP 8° 2506 aZGRA aGEO RI3.22 Japon aDEW 07001076nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210006100186326001800247530003200265606004800297712006000345712004800405801001300453856010900466856010800575955007000683972000900753992001200762040317161000022073220130319051654.01 a1073-6700 aFNSP792528 a0000220732 a19900101a19939999 ba0 aeng aUS aaia 14aThe Nonproliferation review aMonterey, CAcCenter for Nonproliferation Studiesd1993- a3 n°s par an04aThe Nonproliferation review aNon-prolifération nucléairexPériodiques02aCenter for Nonproliferation Studiesc(Monterey, Calif.)02aMonterey Institute of International Studies 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t716100717db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 4 no. 1 (aut-1996) -....cParisdMagasins/AnnexeeP 4° 6701 aZPAY aDEW 32701117nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003200163210005100195326001100246430004600257517003000303607004700333676000800380710003200388801001300420856022100433955006100654972000900715992001600724992001200740992002700752074935887000031601320140115104131.01 a1398-0017 a0000316013 a a19979999k fre ba0 aeng aDK a 0  ar aak z 0 10aNordic statistical yearbook aCopenhagencNordic Council of Ministersd1997- aAnnuel 1tYearbook of Nordic statistics,x0078-108810aNordisk statistisk arsbok aEurope du NordxStatistiquesxPériodiques a314 aNordic council of ministers 0aFRbFNSP4 uhttp://www.norden.org/en/publications/publikationer/2011-001/publications_results_view?SearchablePublicationsText=nordic%20statistical%20yearbook&b_start:int=0&tab=nordiczAccès au texte intégral à partir de 2006+1 bvol. 37 (1999) -....cParisdMagasins/AnnexeeP 8° 3185 aZPAY aDEW 310-319 aDEW 948 aGEO RA3 Europe du Nord01106nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002000139210005900159326001500218430007000233452004000303517006400343530002000407606004800427606004100475710006400516856007500580955005900655972000900714991001800723992002700741992001200768058734821000013272620140106103825.01 a1403-1108 aFNSP538402 a19940721a19949999 ba0 aeng aSE aaja 10aNordicom review aGöteborg‎cNordicom, Göteborg university‎d1994- aSemestriel 1aNordicom review of Nordic mass communication research,x0349-6244 1tNordicom review (Online)x2001-511910aNordicom Review of Nordic Research on Media & Communication10aNORDICOM review aCommunicationyEurope du NordxPériodiques aMediasyEurope du NordxPériodiques02aNordic Documentation Center for Mass Communication Research4 uhttp://www.nordicom.gu.se/review.htmlzAccès libre au texte intégral1 bno. 1 (1994) -....cParisdMagasins/AnnexeeP 4° 5996 aZGRA aexempb201312 aGEO RA3 Europe du Nord aDEW 30201120cas0 2200373 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147110001600154200001400170207002900184210003600213326001800249530002300267607003000290607003000320710008400350801003000434801002300464801003000487802000700517856003700524856007400561955006300635972000900698992001200707992002700719076262170000057396720140115174429.01 a1761-7677 a074034820 aissn17617677 a0000573967 a20030523a20039999 0fre 0103 ba0 afre aFR aai 10aNordiques 0aN° (2003, janv./avril)- aPariscInstitut Choiseuld2003- a3 n°s par an10aNordiquesb(Paris) aScandinaviexPériodiques aPays baltesxPériodiques02aInstitut Choiseul pour la politique internationale et la géoéconomiec(Paris) 3aFRbAbesc20050323gAFNOR 3aFRbISSNc20030523 3aFRbAbesc20040331gAFNOR a074 uhttp://www.choiseul-editions.com zcontenu : sommaires et résumés des articles à partir du n°1, 20031 bno. 1 (jan-2003) -....cParisdMagasins/AnnexeeP 8° 6712 aZPAY aDEW 940 aGEO RA3 Europe du Nord00881nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000072001502100029002222300024002513260011002756010030002866060037003166070052003537100016004058010013004218560039004348560053004739550005005269920024005319920012005550001134319000113431920130319051654.0 a0001134319 a a19989999k fre 01 ba0 aeng aNO ar aak z  adr 10aNorges Bank's Annual reportb[Ressource électronique]fNorges Bank aOslocNorges Bankd1998- aRevue électronique aAnnuel02aNorges BankxPériodiques aFinancesyNorvègexPériodiques aNorvègexConditions économiquesxPériodiques02aNorges Bank 0aFRbFNSP4 uhttp://www.norges-bank.no/english/ zContenu : texte intégral du rapport depuis 19981 r aGEO RA3.03 Norvège aDEW 33201310nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001100154207004700165210002800212300003300240326001600273606004200289607005800331801002100389856008600410856010800496856003000604856009400634955011900728957007400847972000900921991001800930992001200948039225615000003016420130319051654.01 a0029-182X aFNSP183764 a0000030164 a19900101a19549999 ba0 afre aFR aahu 10aNorois 1ano 1 (1954)-no 189 (2002) ; no 190 (2004)- aPoitierscNoroisd1954- aN'a pas paru en 2002 et 2003 aTrimestriel aGéographie économiquexPériodiques aFrance (ouest)xConditions économiquesxPériodiques 3aFRbCCN0029-182X4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-norois.htm?4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://norois.revues.org/ zContenu : texte intégral via revues.org depuis 2004 à l'exception des numéros récents1 bvol. 2 no. 5 (1955) -vol. 2 no. 8 (1955) ; vol. 8 no. 29 (1961) -no. 221, 2011cParisdMagasins/AnnexeeP 8° 18791 b(1954) -(1963) ; (1964) -(1973)cParisdMagasins/AnnexeeP Index 0206 aZPAY aexempb201105 aDEW 91001011nas0 2200313 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123110001600141200001800157207003900175210006900214326001500283607003600298607002600334710006300360801003000423801001700453856005800470856005400528955007400582992002900656992001200685143212842000118880020130319051654.01 a1870-3550 a0001188800 a20100413a20069999 y0spay0103 ba0 aspa aMX ay 0  aaja 0yy 00aNorteamérica 0aAño 1, no. 1 (ene./jun. de 2006)- aMéxico, D. F.cUniversidad Nacional Autónoma de México, CISAN aSemestriel aAmérique du NordxPériodiques aMexiquexPériodiques01aCentro de Investigaciones sobre América del NortecMexico 3aFRbAbesc20100413gAFNOR 0bBNMEXgAACR24 uhttp://www.cisan.unam.mx/Norteamerica/ejemplares.html zContenu : sommaires depuis le vol. 1 no. 1 (2006)1 bvol. 3 no. 1 (jan/jun-2008) -....cParisdMagasins/AnnexeeP 8° 7133 aGEO RC Amérique du nord aDEW 97001134nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000069001552100040002243260014002644300082002785170118003605300070004786070060005487120083006088560048006919550063007399920028008029920014008300000053116000005311620130319051655.01 a0257-2168 aFNSP253281 a0000053116 a19900101b19851998 f ba0 aspa aCL aaea 10aNotas sobre la economía y el desarrollofNaciones Unidas, CEPAL aSantiago de ChilecCEPALd1985-1998 abimensuel 1tNotas sobre la economía y el desarrollo - Naciones Unidas, CEPAL,x0251-945310aNotas sobre la economía y el desarrollo - Naciones unidas, Comisión económica para América latina y el Caribe00aNotas sobre la economía y el desarrollo - Naciones Unidas, CEPAL aAmérique latinexConditions économiquesxPériodiques02aNations UniesbCommission économique pour l'Amérique latine et les Caraïbes uhttp://www.eclac.cl ou http://www.eclac.org1 b(1985 )-no. 618 (1998)cParisdMagasins/AnnexeeP 4° 2767 aGEO RD Amérique latine aDEW 330.901334nls 2200349 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001481350018001642000140001822100070003223000046003923200095004383260012005333360056005453370038006014300086006395300076007256060036008016060044008378010013008818560049008949920016009439920025009590000415148000041514820130319051655.02 a1286-9392 a0000415148 a a19989999k fre 01 ba0 afre aFR a 0  az aaf z 0  adr 10aNote d'information - Direction de la programmation et du développementfMinistère de l'Education nationaleb[Ressource électronique] aVanvescDirection de la programmation et du développementd1998- aTexte intégral à partir du n° 38, 1995 aUne sélection de ces notes est publiée dans le "Recueil d'études sociales" < P4°6477 > amensuel aDonnées textuelles accessibles uniquement en ligne aFichiers PDF télédéchargeables 1tNote d'information - Direction de l'évaluation et de la prospectivex(1149-1035)00aNote d'information - Direction de la programmation et du développement aEducationyFrancexPériodiques aEducation et EtatyFrancexPériodiques 0aFRbFNSP4 uhttp://www.education.gouv.fr/stateval/ni.htm aDEW 370-379 aGEO RA4.06 France 0101428nas 2200361 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000035001552100024001903260025002143260027002394210037002664220183003034300082004865170093005686060042006616070050007037100078007538010021008318560066008528560036009189550067009549720009010219920022010309920014010520000004817000000481720130319051655.01 a0766-6268 aFNSP106616 a0000004817 a19900101a19859999 ba0 afre aFR aaiu 10aNote de conjoncture de l'INSEE aPariscINSEEd1985- a3 n°s par anb1989- atrimestrielb1985-1988 1tPoint de conjoncture,x1253-1316 1aTendances de la conjoncture. Cahier 1, graphiques sur 10 ans (0754-1627) < P 4° 2730 > et Tendances de la conjoncture. Cahier 2, graphiques sur 20 ans (0754-1619) < P 4° 4685 > 1aTendances de la conjoncture. Note de synthèse (0150-8849) < P 4° 2730 bis >10aNote de conjoncture de l'Institut national de la statistique et des études économiques aConjoncture économiquexPériodiques aFrancexConditions économiquesxPériodiques02aInstitut national de la statistique et des études économiquesc(France) 3aFRbCCN0766-62684 uhttp://www.insee.fr/fr/indicateur/analys_conj/conj_resume.htm zAccès libre au texte intégral1 b(fev-1985) -(mar-2004)cParisdMagasins/AnnexeeP 4° 2730 bis aZPAY aGEO RA4.06 France aDEW 330.900963nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000080001502100033002303000081002633260015003443360058003593370066004174520066004837120028005498010013005778560090005909550005006800000534374000053437420130319051655.0 a0000534374 a a19389999k fre 01 ba0 aeng aGB az aaj z  adr 10aNotes and records of the Royal Society of Londonb[Ressource électronique] aLondoncRoyal Societyd1938- aAccès au texte intégral (réservé aux sites de Sciences-Po) jusqu'en 1998 aSemestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou télédéchargement 1tNotes and Records of the Royal Society of Londonx(0035-9149)02aRoyal Society of London 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00359149.html1 r01372nas 2200349 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000300015421001170018432001110030132600140041243000510042660700500047760700480052771000700057571100330064585600440067885600610072295500770078395701010086097200090096199100180097099200220098899200120101004002296X000007697520130319051655.01 a1168-9021 aFNSP349402 a0000076975 a19900101b19922009 ba0 afre aFR aaea 14aLes Notes bleues de Bercy aPariscDirection de la communication, Ministère de l'économie et des finances; Ministère du budgetd1992-2009 aA partir de juil.2004 publié également sous forme de lettre électronique bimensuelle en texte intégral aBimensuel 1aLes Notes bleues (Paris, 1981)xISSN 0244-1179 aFrancexConditions économiquesxPériodiques aFrancexPolitique économiquexPériodiques02aFrancebMinistère de l'économie, des finances et de l'industrie02aFrancebMinistère du budget4 uhttp://www.minefi.gouv.fr/notes_bleues/ zContenu : texte intégral depuis le n°117, juillet 19971 bno. 1 (oct-1992) -no. 363 (fev-2009)cParisdMagasins/AnnexeeP 4° 50271 bno. 1(1992) -no. 53 (1994) ; no. 54 (1995) -no. 149 (1998)cParisdMagasins/AnnexeeP Index 0720 aZPAY aexempb201205 aGEO RA4.06 France aDEW 33600819nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000077001502100052002272300024002793260012003036060040003156060027003558010013003828560033003958560073004289550005005019920012005069920011005180001165379000116537920130319051655.0 a0001165379 a a20099999k fre 01 ba0 afre aFR ar aaf z  adr 14aLes Notes de l'Institut européen du salariatb[Ressource électronique] aNanterrecInstitut européen du salariate2009- aRevue électronique amensuel aSociologie du travailxPériodiques aSalariatxPériodiques 0aFRbFNSP4 uhttp://www.ies-salariat.org/ zContenu : texte intégral des articles depuis le n°1, février 20091 r aDEW 331 aGEO RQ02086nas 2200685 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000033001502070010001832100027001932150010002202250023002303000013002533070040002663200013003063210031003193260011003503270013003614100034003744110027004084210024004354220024004594230024004834240024005074250024005314300024005554340024005794350024006034360024006274370024006514400024006754410024006994440024007234450024007474460024007714470024007954510024008194520024008434530024008674540024008914880024009155100030009395120025009695170025009945300065010195310043010845320030011275400013011577020024011708010013011948560188012079550005013950000895820000089582020130320122217.0 a0000895820 a a20059999 fre 01 ba0 afre aFR a 0  ar aak z 0 10aNotice périodique à l'Opac 1a2005- aPariscA. Colind2005- d23 cm20aQue sais-je ?v232 azone 300 aZone 307 : vol 1, A-D ; vol. 2, E-Z azone 320 aNote 321b2008-x0032-0023 aAnnuel1#azone 327 1tQue sais-je ?x0768-0066v232 1tzone 411x0011-0031v5 1tzone 421x0022-0032 1tzone 421x0023-0033 1tzone 423x0024-0034 tzone 424x0025-0035 tzone 425x0026-0036 1tzone 430x0027-0037 1tzone 434x0028-0038 1tzone 435x0029-0039 1tzone 436x0030-0040 1tzone 437x0031-0041 1tzone 440x0032-0042 1tzone 441x0033-0043 1tzone 444x0034-0044 1tzone 445x0035-0045 1tzone 446x0036-0046 1tzone 447x0037-0047 1tzone 451x0038-0048 1tzone 451x0039-0049 1tzone 453x0040-0050 1tzone 454x0041-0051 1tzone 488x0042-005210azone 510esous-titrezlat10azone 512esous-titre10azone 517esous-titre00azone 530bqualificatifjnuméro date ou vol.vnuméro volume 0azone 531bqualificatifvnuméro volume10azone 532zlangue du titre10azone 540 1aMagnierbDonatienne 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sociologyencyclopedia.comzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 a01077nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200002400160207003200184210003400216215001000250326001700260430003400277440003400311517001600345517001000361530002400371531002200395801001300417801003000430801002300460856011200483955007100595992002500666992001200691037898728000003437320130319051656.01 a0337-8721 aFNSP199113 a0000034373 a19900101b19721976 ba0 afre aFR ar aa a 10aNouveau Paris-Match 1aNo1231(1972) - No1394(1976) aPariscParis-Matchd1972-1976 d35 cm aHebdomadaire 1aParis-Match (1949)x0031-2029 1aParis-Match (1976)x0397-163510aParis Match10aMatch10aNouveau Paris-Match 0aNouv. Paris-Match 0aFRbFNSP 0aFRbAbesc20081202gAFNOR 0aFRbISSNc200305234 uhttp://anciensnumeros.parismatch.com/an/searchzCouvertures des anciens numéros sur le site de Paris-Match1 bno. 1183 (jan-1972)-no. 1387 (dec-1975)cParisdAnnexeeP F° 0151 aGEO RA4.06 France 01 aDEW 05001410nas0 2200373 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109106000600127110001600133200005200149207001800201210002500219301006800244326001600312430005400328601005000382606004000432606004800472606004300520676000800563710003600571801003000607856017000637856006500807955006700872955006000939992001200999992002501011147245389000120169620130319051656.0 a0001201696 a20101015a20109999k y0frey50 ba0 afre aFR ay 0  ar aah 0 14aLes Nouveaux cahiers du Conseil Constitutionnel 0aNo.29 (2010)- aPariscDallozd2010- aDemande de numérotation ISSN en cours par le CR70 (2010-10-14) aTrimestriel 1tLes Cahiers du Conseil Constitutionnelx1253-217701aFrancebConseil constitutionnelxPériodiques aDroit constitutionnelxPériodiques aDroit constitutionnelyFrancexPériodiques aCours constitutionnellesxPériodiques a34202aFrancebConseil constitutionnel 3aFRbAbesc20101015gAFNOR4 uhttp://www.conseil-constitutionnel.fr/conseil-constitutionnel/francais/documentation-publications/cahiers-du-conseil/les-cahiers-du-conseil-constitutionnel.5069.html zContenu : texte intégral des Cahiers , sauf le n° en cours1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 3421 bno. 29 (2010) -....cParisdMagasins/AnnexeeP 4° 6657 aDEW 342 aGEO RA4.06 France 0101197cas0 2200349 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200008600163207002900249210005500278300005000333326001500383430005700398517000800455606003000463710006200493801003000555856007000585856006500655955008400720972000900804992002200813992001200835081016816000074453620130319051657.01 a1769-101X a0000744536 a20041011b20042006m y0fre 0103 ba0 afre aFR a 0  ar aaga 0 y014aLes Nouveaux dossiers de l'audiovisuelf[INA, Institut national de l'audiovisuel] 1aN°1 (2004, sept./oct.)- aBry-sur-MarnecINA-Ed. et documentationd2004-2006 aA partir de 2007, ne paraît plus qu'en ligne aBimestriel 1tDossiers de l'audiovisuel (Bry-sur-Marne)x0767-477510aNDA aAudiovisuelxPériodiques02aInstitut national de l'audiovisuelc(France ;c1986-....) 3aFRbAbesc20041028gAFNOR4 uhttp://www.ina.fr/produits/publications/nouveaux_da/index.fr.html zSommaire des n°s et texte intégral à partir de janv. 20071 bno. 1 (sep/oct-2004) -no. 11 (jul/aou-2006)cParisdMagasins/AnnexeeP 4° 4600 aZCAD aGEO RA4.06 France aDEW 30202433cas0 2200385 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200027800148210003600426215004300462304026300505327006300768422011300831530011200944606001301056606003901069676000801108701005101116702005901167801003001226801003001256801001301286830000901299856017901308856017901487856036901666945001202035038395274000093169520130319051657.0 accn7117/2351 a0000931695 a19900328b18391842k y0frey0103 ba0 afre aDE ar aau 10aNouveaux supplémens au Recueil de traités et d'autres actes remarquables servant à la connaissance des relations étrangères des puissances et Etats dans leur rapport mutuel depuis 1761 jusqu'à présentfpar Frédéric Murhardgfondé par Georges Frédéric de Martens aGottinguecDieterichd1839-1842 a3 vol. (XVIII-810, 662, 904 p.)d21 cm aLes tomes 1 et 2 sont suivis "d'un appendice contenant des Traités et actes publics importans d'une date antérieure, qui ou n'ont pas encore vu le jour ou du moins ne se trouvent pas dans une collection générale quelconque de traités et d'actes publics"1#aTome 1 : 1761-1829. Tome 2 : 1765-1829. Tome 3 : 1806-1839 1tNouveau recueil de traités d'alliance, de paix, de trêve, de neutralité... depuis 1808 jusqu'à présent"00aNouveaux supplémens au Recueil de traités et d'autres actes remarquables... depuis 1761 jusqu'à présent aTraités aRelations internationalesxSources a327 1aMartensbGeorg Friedrich vonf(1756-1821)4340 1aMurhardbFriedrich Wilhelm August‎f(1779-1853)4340 3aFRbAbesc20060222gAFNOR 3aFRbAbesc20060222gAFNOR 0aFRbFNSP asdy04 uhttp://books.google.fr/books?id=yUZNAAAAcAAJ&dq=editions%3A65MOp27Og1cC&hl=fr&pg=PR1#v=onepage&q&f=falsezAccès libre au texte intégral. Tome 1 numérisé sur Google Livres4 uhttp://books.google.fr/books?id=-EZNAAAAcAAJ&dq=editions%3A65MOp27Og1cC&hl=fr&pg=PR3#v=onepage&q&f=falsezAccès libre au texte intégral. Tome 2 numérisé sur Google Livres4 uhttp://books.google.fr/books?id=BYJJAAAAcAAJ&dq=%22Nouveaux%20suppl%C3%A9mens%20au%20Recueil%20de%20trait%C3%A9s%20et%20d'autres%20actes%20remarquables%22&hl=fr&pg=PP5#v=onepage&q=%22Nouveaux%20suppl%C3%A9mens%20au%20Recueil%20de%20trait%C3%A9s%20et%20d'autres%20actes%20remarquables%22&f=falsezAccès libre au texte intégral. Tome 3 numérisé sur Google Livres bRD.040401611nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154207002500180210004000205326002400245326002500269326002800294421003600322436011900358530003500477606005200512606003800564607005000602801002100652856019200673856010800865955006900973955006601042955008101108992002201189992001401211039572374000000488320130319051657.01 a0395-6458 aFNSP106955 a0000004883 a19900101a19759999 ba0 afre aFR aa u 13aLe Nouvel économiste 1aN° 1, 10 oct. 1975- aPariscLe Nouvel économisted1975- aHebdomadaireb2003- aBimensuelb1996-2003 aHebdomadaireb1975-1995 1tLe Nouvel économiste. Magazine 1aEntreprises (0013-9068) < P 4° 1073 > et de Informations industrielles et commerciales (0395-644X) < P 4° 2265 >13aLe Nouvel économisteb(Paris) aHistoire économiquez20e sièclexPériodiques aEntreprisesyFrancexPériodiques aFrancexConditions économiquesxPériodiques 3aFRbCCN0395-64584 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bL'année en courscParisd27, Salle Rez-de-chausséeeP F° 05471 bno. 1226 (sep-2003) -....cParisdMagasins/AnnexeeP F° 05471 bno. 1 (10 oct-1975) -no. 1225 (jul-2003)cParisdMagasins/AnnexeeP 4° 3684 aGEO RA4.06 France aDEW 330.901485nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210004000180326001700220421005900237421003300296421005200329421005200381421004700433421005000480421003700530430004200567530003500609606002900644607002500673801002100698856003000719856008500749955006900834955006600903955007200969992002201041992001201063039225666000000489720130903161005.01 a0029-4713 aFNSP107018 a0000004897 a19900101a19649999 ba0 afre aFR aacu 13aLe Nouvel observateur aPariscLe Nouvel observateurd1964- aHebdomadaire 1tLe Nouvel observateur. Spécial entreprisesx1143-323X 1tAtlaséco (Paris)x0290-036X 1tLe Nouvel observateur des étudiantsx1299-2879 1tTravailler et investir dans le mondex1292-5403 1tFaits et chiffres (Paris. 1973)x0290-0378 1tLe Nouvel observateur. Hors-sériex1950-4152 1tDocuments Observateurx0987-7665 1aFrance Observateur (Paris)x1273-900603aLe Nouvel observateurb(Paris) aActualitéxPériodiques aFrancexPériodiques 3aFRbCCN0029-47134 uhttp://www.nouvelobs.com/ zContenu : sommaire et sélection d'articles en texte intégral depuis janv.1993.1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 69331 bno. 1939 (jan-2002) -....cParisdMagasins/AnnexeeP 4° 69331 bno. 1 (19 nov-1964) -no. 1938 (dec-2001)cParisdAnnexeeP F° 0132 aGEO RA4.06 France aDEW 05001085cas0 2200337 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123110001600141200006100157210002300218326001100241517004300252530006100295607007100356710004700427801003000474801003000504856005800534856003600592955005300628972000900681991001800690992001400708992002500722094684936000091919820130319051657.0 a1760-9054 a0000919198 a20060106a19999999k y0frey50 ba0 afre aFR ay 0  aakaih 0 13aLa Nouvelle-CalédoniefInstitut d'émission d'Outre-mer aPariscIEOMd1999- aAnnuel13aLa Nouvelle-Calédonieerapport annuel12aLaNouvelle-Calédonie - Institut d'émission d'Outre-mer aNouvelle-CalédoniexConditions économiquesxPériodiques2rameau02aInstitut d'émission d'Outre-merc(France) 3aFRbAbesc20100315gAFNOR 3aFRbAbesc20060113gAFNOR4 uhttp://www.ieom.fr/agence_caledonie_publication_3.asp4 zAccès libre au texte intégral1 b(1999) -....cParisdMagasins/AnnexeeP 8° 6856 aZGRA aexempb201212 aDEW 330.9 aGEO RA4.06 France 0100970nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210002900174300002500203326001600228606003600244676000800280801002100288856003400309856004800343955006600391955005900457957008600516972000900602992002100611992001200632039237060000003039520130319051658.01 a0048-0967 aFNSP184547 a0000030395 a19900101a19689999 ba0 afre aFR aahu 10aNouvelle école aPariscLabyrinthed1968- aN'a pas paru en 2004 aIrrégulier aSciences socialesxPériodiques a300 3aFRbCCN0048-09674 uhttp://www.revue-elements.com zContient : sommaires depuis le no. 35, 19801 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3001 bno. 3 (1968) -....cParisdMagasins/AnnexeeP 4° 26211 bl'index cumulatif 1968/1979 (n°1/33) constitue le n°34,automne 1979 de la revue aZCAD aGEO RQ Universel aDEW 30001221cas0 2200373 450 00100100000000200110001000500170002101100140003803500140005203500170006603500170008303500150010010000410011510100080015610200070016410600060017111000160017720000220019321000400021521500100025532600140026553000220027953100150030160600620031660600600037860600580043860600560049680100300055280100230058280200070060585601450061295500700075799100200082703757731X000109457420130319051658.0 a0184-7465 a07053439X accn0184-7465 aissn01847465 a0001094574 a19810121b18791940uuuy0frey0103 ba0 afre aFR ar aaeu uu 13aLa Nouvelle revue aPariscLa Nouvelle revued1879-1940 d24 cm aBimensuel03aLa Nouvelle revue 0aNouv. rev. aLivresxPrésentationsz19e sièclexPériodiques2rameau aLivresxPrésentationsz1900-1945xPériodiques2rameau aVie intellectuellez19e sièclexPériodiques2rameau aVie intellectuellez1900-1945xPériodiques2rameau 3aFRbAbesc20060718gAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34356973m/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1879-1935)1 bvol. 1 (1880) -vol. 25 (1903)cParisdMagasins/AnnexeeP 8° 0802 aPériobTP02 P801199cas0 2200349 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164106000600171110001600177200006200193210002900255215001000284326001600294430008400310440007100394530006200465606004200527801003000569801002300599802000700622856014500629955005500774991002000829038429624000109458420130319051658.0 a0995-8924 a07059709X accn0995-8924 aissn09958924 a0001094584 a19890601b18771921uuuy0frey0103 ba0 afre aFR ar aauu uu 10aNouvelle revue historique de droit français et étranger aParisc[s.n.]d1877-1921 d23 cm aTrimestriel 1tRevue de législation ancienne et moderne, française et étrangèrex0995-8908 1tRevue historique de droit français et étranger (1922)x0035-328000aNouvelle revue historique de droit français et étranger aDroitxHistoirexPériodiques2rameau 3aFRbAbesc20060717gAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34416607b/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1877-1921)1 b(1877) -(1887)cParisdMagasins/AnnexeeP 8° 0801 aPériobTP02 P800939nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210002500186326002300211326002600234607003000260710002700290801002100317856006300338856004100401955006300442957007200505972000900577992002700586992001200613039412024000003060020130319051658.01 a0249-0072 aFNSP184976 a0000030600 a19900101a19809999 ba0 afre aFR aahu 14aLes Nouvelles d'Afghanistan aPariscAFRANEd1980- aTrimestrielb1997- aBimestrielb1980-1996 aAfghanistanxPériodiques02aAmitié franco-afghane 3aFRbCCN0249-00724 uhttp://www.afrane.asso.fr/fr-php/Nouvelles_Afghanistan.php zContenu : sommaires depuis le no 1021 bno. 1 (jul-1980) -....cParisdMagasins/AnnexeeP 4° 47351 bvol. 1 (1980) -vol. 50 (1990)cParisdMagasins/AnnexeeP Index 0660 aZPAY aGEO RG4.01 Afghanistan aDEW 95801139nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000027001642100037001913200064002283260014002924300040003064880018003465300035003646060039003998010013004388560112004518560108005639550087006719720009007589920012007679920022007790000417663000041766320130319051658.01 a0399-1636 a0000417663 a a20009999k fre ba0 afre aFR a 0  ar aae z 0 14aLes Nouvelles fiscales aPariscGroupe Liaisons SAd2000- aMises à jour entre deux éditions annuelles du Lamy fiscal aBimensuel 1tLamy fiscal. Bulletins d'actualité 11aLamy fiscal14aLes Nouvelles fiscales (Paris) aDroit fiscalyFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/lamy/AccesBis.htm?acces=KoEjMqEjBeKq zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 853 (1er sep-2001) -no. 896 (jul-2003)cParisdMagasins/AnnexeeP 4° 5778 bis aZPAY aDEW 343 aGEO RA4.06 France00832nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000054001502100034002042300024002383260005002626060039002678010013003068560085003198560108004049550005005129920025005179920012005420000969196000096919620130319051658.0 a0000969196 a a19989999k fre 01 ba0 afre aFR ar aaz z  adr 14aLes Nouvelles fiscalesb[Ressource électronique] aPariscLamyline Reflexc1998- aRevue électronique a aDroit fiscalyFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 34301125cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200005000180207002800230210004600258326001600304430004000320606003600360710002800396801003000424801002300454802000700477856009000484856010800574955007200682972000900754992001200763107988100000105981620130319051658.01 a1951-9745 aissn19519745 a0001059816 a20060904b20062008k y0frey0103 ba0 afre aFR a 0  ar aahu 0y 10aNouvelles fondationsfFondation Gabriel Péri 1aNo 2 (2006)-no 9 (2008) aPariscFondation Gabriel Périd2006-2008 aTrimestriel 1tFondations (Paris. 2006)x1950-1331 aScience politiquexPériodiques02aFondation Gabriel Péri 3aFRbAbesc20061017gAFNOR 3aFRbISSNc20060901 a074 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue.php?ID_REVUE=NF zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 2 (2006) - no. 9 (avr-2008)cParisdMagasins/AnnexeeP 4° 7118 aZPAY aDEW 32000973nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000045001502100005001952300024002003000019002243260005002436060029002486070025002778010013003028560192003158560108005079550005006159920012006209920039006320001145136000114513620130319051659.0 a0001145136 a a20029999k fre 01 ba0 arus aRU ar aab z  adr 10aNovaâ gazetab[Ressource électronique] a aRevue électronique aBihebdomadaire a aActualitéxPériodiques aRussiexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aDEW 050 aGEO RA7.21 Russie (depuis 1991-92)01088nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210002500186326001500211530004100226606002700267607003500294607003300329676001000362710004000372856003100412856006400443955006800507955005900575972000900634992002000643992003900663992001200702992001200714038762730000007011020130319051659.01 a0130-3864 aFNSP323097 a0000070110 a19900101a19579999 ca0 arus aRU aaga 10aNovaâ i novejsaâ istoriâ aMoskvacNaukad1957- aBimestriel 0aNovaâ i novejšaâ istoriâbMoskva aHistoirexPériodiques aRussiexHistoirexPériodiques aURSSxHistoirexPériodiques a943.702aInstitut vseobŝej istorii (Moscou)4 uhttp://www.openweb.ru/nnh/ zContenu : sommaires depuis le n°1, 1998 (russe et anglais)1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 943.71 bno. 1 (1958) -....cParisdMagasins/AnnexeeP 8° 1636 aZPAY aGEO RA7.01 URSS aGEO RA7.21 Russie (depuis 1991-92) aDEW 947 aDEW 90901256nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210003000181326001600211430003100227517006500258606005400323606005400377606004500431606004500476710005000521801002100571856007100592856005900663955007000722972000900792991001800801992002800819992002300847992001200870038972220000003064620130319051659.01 a0101-3300 aFNSP185506 a0000030646 a19900101a19819999 ba0 apor aBR aahu 10aNovos estudos - CEBRAP aSão PaulocCEBRAPd1981- aTrimestriel 1aEstudos CEBRAP (0100-7025)10aNovos estudos - Centro Brasileiro de Análise e Planejamento aSciences socialesyAmérique latinexPériodiques aScience politiqueyAmérique latinexPériodiques aScience politiqueyBrésilxPériodiques aSciences socialesyBrésilxPériodiques02aCentro brasileiro de análise et planejamento 3aFRbCCN0101-33004 uhttp://novosestudos.uol.com.br/conteudoVirtual/conteudoVirtual.asp zContenu : sommaires et résumés des derniers numéros1 bvol. 1 no. 1 (dec-1981) -....cParisdMagasins/AnnexeeP 8° 3795 aZPAY aexempb201001 aGEO RD Amérique latine aGEO RD4.13 Brésil aDEW 98000896nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001900139210006000158326002500218326002600243517002300269530003200292607005300324801002100377856007500398955007000473957005700543991001800600038763192000003064720130502110254.01 a0029-5795 aFNSP185507 a19900101a19549999 ba0 aspa aES aafa 10aNuestro tiempo aPamplona‎cEdiciones Universidad de Navarra‎d1954- aBimestriel‎b2009- aMensuel‎b1954-200810aNT. Nuestro tiempo00aNuestro tiempo‎bPamplona aEspagnexPolitique et gouvernementxPériodiques 3aFRbCCN0029-57954 uhttp://www.unav.es/nuestrotiempo/zSommaires des nos à partir de 20091 bno. 23 (1956) -no. 396 (1987)cParisdMagasins/AnnexeeP 8° 14671 b(1954) -(1958)cParisdMagasins/AnnexeeP Index 0058 aexempb20130501068nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210003500173326001500208606004000223606004700263606005400310606004700364801002100411856002500432856008900457955006400546972000900610991001800619992002800637992002500665992001200690992001600702039243346000003065020140108160825.01 a0251-3552 aFNSP185513 a0000030650 a19900101a19729999 ba0 aspa aVE aagu 10aNueva sociedad aCaracascNueva sociedadd1972- aBimestriel aSociologieyVenezuelaxPériodiques aScience politiqueyVenezuelaxPériodiques aScience politiqueyAmérique latinexPériodiques aSociologieyAmérique latinexPériodiques 3aFRbCCN0251-35524 uhttp://www.nuso.org/ zContenu : sommaires, résumés et texte intégral depuis le n°1, juillet-août 19721 bno. 28 (jan-1977) -....cParisdMagasins/AnnexeeP 8° 3998 aZPAY aexempb201001 aGEO RD Amérique latine aGEO RD4.20 Venezuela aDEW 301 aDEW 320-32101700nls 2200289 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010023001091020007001321060006001391100016001451350018001612000057001792100005002362300024002413260013002653301019002786070028012978010013013258560034013389550005013729920012013779920021013890001206049000120604920130319051700.0 a1626-0252 a0001206049 a a20019999k fre 01 ba0 afreaengaspaapor aFR ar aau z  adr 10aNuevo mundo mundos nuevosb[Ressource électronique] a aRevue électronique aInconnue aNuevo Mundo Nuevos Mundos es una revista de historia y ciencias sociales que privilegia el comparatismo y las miradas cruzadas sobre las Américas y el mundo hispánico en la larga duración. La variedad de los temas reflejan las orientaciones temáticas y teóricas de nuestro centro de investigación, el CERMA (EHESS), cuando se fundó la revista (2001), integrado posteriormente en el MASCIPO (CNRS): relaciones entre mestizaje y formas tempranas de mundialización ; la historia política y el papel del Estado; la historia de las representaciones y sensibilidades, las circulaciones de hombres, ideas y conocimientos ; y la antropología, ya sea histórica o contemporánea. La revista está abierta a artículos inéditos de investigadores americanistas y publica numerosos materiales útiles a la constitución del patrimonio científico americanista dentro del novedoso campo de investigación abierto por las Humanidades Digitales. Se publica en cuatro idiomas: español, francés, portugués, e inglés. aAmériquexPériodiques 0aFRbFNSP4 uhttp://nuevomundo.revues.org/1 r aDEW 300 aGEO RB Amérique01145nas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200006200180207003300242210004900275326001600324606004400340606003700384606003600421801003000457801002300487802000700510856006300517856007300580955008600653972000900739992001200748992002300760111800692000107577820130319051700.01 a1559-1905 aissn15591905 a0001075778 a20070111a20069999k y0frey0103 ba0 aeng aUS a 0  ar aaha 0uu 14aThe objective standardea journal of culture and politics 0aVol. 1, no. 1 (Spring 2006)- aGlen Allen, VacGlen Allen Press, LLCd2006- aTrimestriel aRelations internationalesxPériodiques aVie intellectuellexPériodiques aCulture politiquexPériodiques 3aFRbAbesc20070111gAFNOR 3aFRbISSNc20070111 a014 uhttp://www.theobjectivestandard.com/issues/past-issues.asp zContenu : sommaires des numéros depuis le vol. 1, no 1, Spring 20061 bvol. 1 no. 1 (mar-2006) -vol. 2 no. 4 (2008)cParisdMagasins/AnnexeseP 8° 6947 aZSAB aDEW 001 aGEO RC2 Etats-Unis01154nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009100154207001800245210002300263326001500286607003300301710006700334801002100401856005900422856003600481856003600517856004800553955007300601957006800674972000900742992005100751992001400802039380165000000492020130319051700.01 a0304-3398 aFNSP107045 a0000004920 a19900101a19629999 f ba0 afre aFR aagu 10aObservateur de l'OCDE/fOrganisation de coopération et de développement économiques 1ano. 1 (1962)- aPariscOCDEd1962- aBimestriel aPays de l'OCDExPériodiques02aOrganisation de coopération et de développement économiques 3aFRbCCN0304-33984 uhttp://www.oecd.org/publications/observer/index-fr.htm zAccès libre au texte intégral4 uhttp://www.observateurocde.org/ zcontenu : accès au dernier numéro publié1 bno. 1 (1962) -no. 226/227 (2001)cParisdMagasins/AnnexeeP 4° 19991 b(1962-1967) ; (1984-1988)cParisdMagasins/AnnexeeP Index 0113 aZECH aGEO RN1 Pays industrialisés, pays occidentaux aDEW 330.901122nas 2200313 i 450 001001000000002001100010005001700021011001400038035001300052035001500065100004100080101000800121102000700129110001600136200009900152210004100251326002700292326002700319440003100346606004200377710005700419801002100476856002600497856006500523955006800588957012000656991001800776992001400794038027828000000203520130411112724.01 a0751-6614 aFNSP7783 a0000002035 a19900101b19821993 ba0 afre aFR aazu 10aObservations et diagnostics économiquesfObservatoire français des conjonctures économiques aPariscPresses de la FNSPd1982-1993 aTrimestrielb1984-1994 aIrrégulierb1982-1983 1aRevue de l'OFCEx1265-9576 aConjoncture économiquexPériodiques02aObservatoire français des conjonctures économiques 3aFRbCCN0751-66144 uhttp://www.persee.fr/ zAccès libre au texte intégral des articles de 1982 à 19941 bno. 1 (1982) -no. 47 (1993)cParisdMagasins/AnnexeeP 8° 45481 b(1982) -(1990)zIndex et table des matières communs à la Revue et la LettrecParisdMagasins/AnnexeeP Index 0656 aexempb201207 aDEW 330.901038nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005600163210006100219326001500280530003100295606004700326676000800373710005400381801001300435856006300448856004600511955006600557955006400623972000900687992001600696039983854000041509220130319051700.01 a1165-2675 a0000415092 a a19919999k fre ba0 afre aFR a 0  ar aaj z 0 12aL'Observatoireela revue des politiques culturelles aGrenoblecObservatoire des politiques culturellesd1991- aSemestriel12aL'Observatoireb(Grenoble) aPolitique culturelleyFrancexPériodiques a30602aObservatoire des politiques culturellesc(France) 0aFRbFNSP4 uhttp://www.observatoire-culture.net/index.php?id=9&idp=9.0 zContient : sommaires depuis le n°2, 19911 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3061 bno. 16 (aut-1998) -....cParisdMagasins/AnnexeeP 4° 6896 aZPAY aDEW 350-35400825nls 2200265 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001341350018001502000092001682070023002602100022002832300024003053000089003296060044004188010013004628560044004759550040005190000310701000031070120130319051700.0 a0000310701 a a19999999k fre ba0 afre aFR a 0  az aau z 0  adr 12aL'Observatoire du politiqueb[Ressource électronique]/g réd. en chef Thierry Leterre 1aN°1(1999, janv.)- aPariscIEPd1999- aDonnées textuelles aAccès au 18/04/2000 : World Wide Web. URL : http://www.sciences-po.fr/observatoire/ aRelations internationalesxPériodiques 0aFRbFNSP4 uhttp://www.sciences-po.fr/observatoire/1 rUniquement consultable sur Internet00959nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000049001502100005001992300024002043260017002286060029002456070034002748010013003088560192003218560108005139550005006219920031006269920012006570001131855000113185520130319051700.0 a0001131855 a a19819999k fre 01 ba0 aeng aGB ar aac z  adr 10aObserver (London)b[Ressource électronique] a aRevue électronique ahebdomadaire aActualitéxPériodiques aGrande-BretagnexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.02 Grande-Bretagne aDEW 05001264nas 2200349 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000260015421000250018032600120020543000830021760600450030060700610034560700590040660700570046560700550052271000560057771100310063385600470066485600740071195500690078597200090085499200390086399200120090203918241X000008388120130319051700.01 a0207-3676 aFNSP373406 a0000083881 a19900101a19919999 ca0 arus aRU aafa 10aObšestvo i ekonomika aMoskvacNaukad1991- aMensuel 1aIzvestiâ akademii nauk SSSR. Seriâ ekonomiceskaâ,x0321-172X < P 8° 2823 > aEconomie politiqueyRussiexPériodiques aRussiexConditions économiquesz1991-....xPériodiques aRussiexPolitique économiquez1991-....xPériodiques aRussiexConditions socialesz1991-....xPériodiques aRussiexPolitique socialez1991-....xPériodiques02aRossijskij soûz promyšlennikov i predprinimatelej02aRossijskaâ akademiâ nauk4 uhttp://members.xoom.com/_XOOM/asek/O&E.HTM zContenu : sommaires depuis le n°11-12, 1997 (en russe et en anglais)1 bno. 1/2 (jan/fev-1992) -....cParisdMagasins/AnnexeeP 8° 2823 aZPAY aGEO RA7.21 Russie (depuis 1991-92) aDEW 33001115nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004400139210004000183326001600223430006400239452006700303530004400370606003400414801002100448856021400469955007000683972000900753991001800762992002100780992001200801038892502000003072720130725113729.01 a0090-8320 aFNSP185667 a19900101a19739999 ba0 aeng aUS aahu 10aOcean development and international law aNew YorkcTaylor and Francisd1973- aTrimestriel 1aOcean development and international law journal,x0883-4873 1tOcean development and international law (Online)‎x1521-064200aOcean development and international law aDroit de la merxPériodiques 3aFRbCCN0090-83204 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713774325db=allzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (pri-1973) -....cParisdMagasins/AnnexeeP 8° 3280 aZSAB aexempb200911 aGEO RQ Universel aDEW 34101257cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200004100180207001500221210002300236300006600259326001100325430004500336532006700381606003700448710006700485801003000552801002300582802000700605856013500612955006400747972000900811992005100820992001200871130771171000118260220130711122416.0 a1995-2848 aissn19952848 a0001182602 a20090127a20089999k y0frey0103 ba0 aeng aZZ ay  ar aaku uu 10aOECD journaleeconomic studiesfOECD 0aVol. 2008- aParisbOECDc2008- a2012, dernière éd. papier voir ensuite en version en ligne. aAnnuel 1tOECD economic studies (Print)x0255-082212aOrganisation for economic co-operation and development journal aEconomie politiquexPériodiques02aOrganisation de coopération et de développement économiques 3aFRbAbesc20090428gAFNOR 3aFRbISSNc20090427 a004 uhttp://www.oecd-ilibrary.org/fr/economics/oecd-journal-economic-studies_19952856zContenu : texte intégral du rapport depuis 20081 b(2008) ; (2010) -(2012)cParisdMagasins/AnnexeeP 4° 7269 aZECH aGEO RN1 Pays industrialisés, pays occidentaux aDEW 33000825nls 2200253 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200006900124210002300193230002400216326001100240606003700251710006700288801001300355856013500368955000500503992005100508992001200559000124659020130711122400.0 a a20089999k fre 01 ba0 aeng aZZ ar aak z  adr 10aOECD journalb[Ressource électronique]:eeconomic studiesfOECD aParisbOECDc2008- aRevue électronique aAnnuel aEconomie politiquexPériodiques02aOrganisation de coopération et de développement économiques 0aFRbFNSP4 uhttp://www.oecd-ilibrary.org/fr/economics/oecd-journal-economic-studies_19952856zContenu : texte intégral du rapport depuis 20081 r aGEO RN1 Pays industrialisés, pays occidentaux aDEW 33001255cas0 2200385 450 001001000000002001100010005001700021011001400038035001400052035001400066035001700080035001500097100004100112101000800153102000700161105001800168106000600186110001600192200003000208210002200238326001800260451005800278517008800336530003900424606003700463710006700500801003000567801002300597802000700620856009900627856005300726955006600779992001200845992001200857114024669000115655220140107131635.01 a1608-7143 a070253331 a060663995 aissn16087143 a0001156552 a20070423a19 9999 y0frey0103 ba0 aeng aFR ay  ar aai 10aOECD journal on budgeting aPariscOCDEd19?- a3 n°s par an 1tRevue de l'OCDE sur la gestion budgétairex1608-715110aOrganisation for Economic Co-operation and Development journal on budgeting (Print)10aOECD journal on budgetingb(Print) aFinances publiquesxPériodiques02aOrganisation de coopération et de développement économiques 3aFRbAbesc20080131gAFNOR 3aFRbISSNc20070301 a004 uhttp://puck.sourceoecd.org/vl=4638055/cl=32/nw=1/rpsv/periodical/p9_about.htm?jnlissn=16087143 zContient : texte intégral depuis le no. 1, 20011 bvol. 7 no. 3 (2007) -....cParisdMagasins/AnnexeeP 8° 6600 aGEO RN1 aDEW 33601389nas 2200337 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200005500148210002300203326001100226430006600237510007200303606004400375676000800419710009500427801001300522856028300535856007800818955006500896972000900961992005100970992001401021992001601035058053514000042946120130518172557.01 a1682-7457 a a20019999k f fre ba0 amul aFR a 0  ar aak z 0 10aOECD statistics on international trade in services aPariscOCDEd2001- aAnnuel 1tServices. Statistics on international transactionsx1025-414510aStatistiques de l'OCDE sur les échanges internationaux de services aStatistiques commercialesxPériodiques a33702aOrganisation de coopération et de développement économiquesbDirection des statistiques 0aFRbFNSP4 uhttp://oberon.sourceocde.org/vl=838084/cl=20/nw=1/rpsv/cgi-bin/jsearch_oecd?limittitles=&cheese=searchdb&oecd-select=outlook_annuals.htm&form=expert&search0=oecd+statistics+on+international+trade+in+services&search=&field0=tka&system=oecd_all&sortresultsby=rev_timestamp&what=d1 zAccés réservé aux lecteurs inscrits à la Bibliothèque via Sourceocde1 b(1990/1999) -(1995/2004)cParisdMagasins/AnnexeeP 4° 6173 aZPAY aGEO RN1 Pays industrialisés, pays occidentaux aDEW 338.4 aDEW 310-31900958nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210003300186326001400219421005800233517004100291517003700332607004400369801002100413856002300434856007300457955006400530972000900594992002500603992001600628038764210000003073920130319051701.01 a0029-859X aFNSP185703 a0000030739 a19900101a19489999 ba0 ager aDE aaeu 14aDie öffentliche Verwaltung aStuttgartcKohlhammerd1948- aBimensuel 1aBaden-württembergisches Verwaltungsblatt (0005-3724)10aOffentliche Verwaltung (Zeitschrift)10aDOV. Die öffentliche Verwaltung aAllemagnexAdministrationxPériodiques 3aFRbCCN0029-859X4 uhttp://www.doev.de zContient : sommaires, archives, texte intégral de la jurisprudence.1 bno. 19 (oct-1952) -....cParisdMagasins/AnnexeeP 4° 1050 aZCAD aGEO RA5.01 Allemagne aDEW 350-35401015nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200003700138210003500175326001200210517002800222601003900250710005400289801002100343856005100364856005400415955006000469955011000529972000900639991001800648992002300666992001200689039103722000016708420130420120041.0 a0160-9890 aFNSP636162 a0000167084 a19900101a18879999 ba0 aeng aUS10aOfficial congressional directory aWashington, D.C.cUSGPOd1887- aBiennal10aCongressional directory02aEtats-UnisbCongressxPériodiques02aEtats-UnisbCongressbJoint Committee on Printing 3aFRbCCN0160-98904 uhttp://www.gpoaccess.gov/cdirectory/index.html zAccès en ligne depuis le 104e congrès (1995-96)1 b(1981) -(2009/2010)cParisdMagasins/annexeeP 8° 53331 b(1905) ; (1947) ; (1951) -(1952) ; (1957) ; (1964) ; (1966) -(1979)cParisdMagasins/annexeeCOL 8° 0396 aZPAY aexempb201109 aGEO RC2 Etats-Unis aDEW 32800773nls 2200253 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200006400124210003600188230002400224326001200248601003900260710005400299801001300353856011300366955000500479992002300484992001200507000124326320130522152447.0 a a19969999k fre 01 ba0 aeng aUS ar aal z  adr 10aOfficial congressional directoryb[Ressource électronique] aWashington, D.C.cUSGPOd11996- aRevue électronique aBiennal02aEtats-UnisbCongressxPériodiques02aEtats-UnisbCongressbJoint Committee on Printing 0aFRbFNSP4 uhttp://www.gpoaccess.gov/cdirectory/index.htmlzAccès au texte intégral depuis le 104e congrès de 1995-961 r aGEO RC2 Etats-Unis aDEW 32801171nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000020001552100023001752250019001983260011002174370039002285170029002676060041002967100040003378560281003778560108006589550054007669720009008209920012008299920016008410000233166000023316620130319051702.0 a1029-4309 aFNSP826547 a0000233166 a19900101a19979999 ba0 afre aFR aaka 10aOil information aPariscOCDEd1997-21aIEA statistics aannuel 1aOil and gas informationx1016-501010aDonnées sur le pétrole aPétrolexStatistiquesxPériodiques02aAgence internationale de l'énergie4 uhttps://acces-distant.sciences-po.fr/fork?http://lysander.sourceocde.org/vl=969204/cl=11/nw=1/rpsv/cgi-bin/jsearch_oecd?limittitles=&cheese=searchdb&oecd-select=home.htm&form=expert&search0=oil+information&search=&field0=tka&system=oecd_all&sortresultsby=rev_timestamp&what=d14 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1996)-(2006)cParisdMagasins/AnnexeeP 4° 6725 aZPAY aDEW 333 aDEW 310-31900807nls 2200253 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200005300124210003500177230002400212326001100236607005400247710005100301801001300352856014600365955000500511992002300516992001400539000124311920130522152221.0 a a20109999k fre 01 ba0 aeng aUS ar aak z  adr 10aJoint economic reportb[Ressource électronique] aWashington, D.C.cUSGPOd2010- aRevue électronique aAnnuel aEtats-UnisxConditions économiquesxPériodiques02aEtats-UnisbCongressbJoint Economic Committee 0aFRbFNSP4 uhttp://www.jec.senate.gov/public/index.cfm?p=Search&filter=0&num=10&q=joint+economic+reportzAccès au texte intégral du rapport depuis 20101 r aGEO RC2 Etats-Unis aDEW 330.900834nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000047001502100027001972300005002243000077002293260016003063360056003223370018003786060037003967100023004338010013004568560046004699550005005159920012005200000505682000050568220130319051702.0 a0000505682 a a19979999k fre 01 ba0 afre aFR ar aay z  adr 10aOiseau-tempêteb[Ressource électronique] aPariscAb Iratod1997- a aTexte intégral depuis le n°1, printemps 1997 jusqu'au n°8, été 2001 airrégulier aDonnées textuelles uniquement disponibles en ligne aFichiers HTML aMouvements sociauxxPériodiques02aAb Iratoc(France) 0aFRbFNSP4 uhttp://abirato.free.fr/3oiseau/OISEAU.HTM1 r aDEW 30001055nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003000163210004200193326001500235430003800250606002900288606003600317801001300353830005800366856010500424856010800529955008300637972000900720992001200729050921134000032690320130319051704.01 a1468-4527 a0000326903 a a20009999k fre ba0 aeng aGB a 0  ar aag z 0 10aOnline information review aBradfordcMCB University Pressd2000- abimestriel 1tOnline & CDROM review,x1353-2642 aCédéromsxPériodiques aBases de donnéesxPériodiques 0aFRbFNSP aabonnement annulé pour 2003, le n° 6 n'arrivera pas4 uhttps://acces-distant.sciences-po.fr/fork?http://www-fr.ebsco.com/online/direct.asp?JournalID=105309 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 24 no. 1 (2000) -vol. 26 no. 5 (2002)cParisdMagasins/AnnexeeP 4° 6217 aZPAY aDEW 02001007nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001341350018001502000084001682100023002522300024002753000090002993000092003893260015004816070042004967120107005388010013006458560030006589550029006880000311793000031179320130319051704.0 a0000311793 a a19949999k fre ba0 aeng aFR a 0  az aau z 0  adr 10aOnline working papers - OECD Department of Economicsb[Ressource électronique] aPariscOCDEd1994- aDonnées textuelles aAccès au 18/04/2000 : World Wide Web. URL : http://www.oecd.org/eco/wp/ onlinewp.htm aTexte intégral au format Word ou au format pdf, télédéchargeable avec Adobe Acrobat aCollection aPays de l'OCDExPolitique économique02aOrganisation de coopération et de développement économiquesbDépartement des affaires économiques 0aFRbFNSP4 uhttp://www.oecd.org/home/1 rConsultable sur Internet01262nas 2200349 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000180015421000690017232600120024151700630025360100650031660600530038160600440043471000510047880100210052985600370055085600760058795500670066395501170073097200090084799100180085699100260087499200120090003962076X000003075220130319051704.01 a0474-6279 aFNSP185757 a0000030752 a19900101a19689999 f ba0 aeng aAT aafu 10aOPEC bulletin aViennacOrganization of the Petroleum Exporting Countriesd1968- aMensuel10aOrganization of the Petroleum Exporting Countries bulletin02aOrganisation des pays exportateurs de pétrolexPériodiques aPétrole‎xIndustrie et commercexPériodiques aRessources énergétiquesxPériodiques02aOrganisation des pays exportateurs de pétrole 3aFRbCCN0474-62794 uhttp://www.opec.org/opec_web/en/ zContient les n°s en texte intégral depuis le vol. 32 no. 1 (jan-2001)1 bvol. 24 no. 1 (1993) -....cParisdMagasins/AnnexeeP 4° 63461 bno. 1(1968) -no. 1 (1973) ; vol. 12 no. 10 (oct-1981) -vol. 23 no. 10 (1992)cParisdMagasins/AnnexeeP 8° 2511 aZGRA aexempb200904 aexempb201205 (P 4°) aDEW 33300879nas 2200301 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000025001412100028001663260015001946070053002096070026002627100013002887110036003018560029003378560025003669550064003919570078004559720009005339920023005429920012005650000211878000021187820130319051705.0 aFNSP765645 a0000211878 a19900101a19899999 ba0 aspa aBO aaga 10aOpiniones y analisis aLa PazcFUNDEMOSd1989- aBimestriel aBoliviexPolitique et gouvernementxPériodiques aBoliviexPériodiques02aFUNDEMOS02aHanns-Seidel-Stiftungc(Munich)4 uhttp://www.fundemos.org/ zAccès aux sommaires1 bno. 21 (mai-1995) -....cParisdMagasins/AnnexeeP 4° 67631 bno. 1 (1989) -no. 100 (2009)zse trouve dans le no. 99 (2009) de la revue aZGRA aGEO RD4.12 Bolivie aDEW 98000990nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000067001502100034002172300005002513000107002563260016003633360056003793370018004354300032004536060039004857100027005247110046005518010013005978560033006109550005006439920016006480000505636000050563620130319051705.0 a0000505636 a a20019999k fre 01 ba0 amul aCA ar aah z  adr 10aOptimum en direct =dOptimum Onlineb[Ressource électronique] aOttawacOptimum Onlined2001- a aTexte intégral depuis le vol. 31, n°1, novembre 2001 accessible après inscription gratuite en ligne atrimestriel aDonnées textuelles uniquement accessibles en ligne aFichiers HTML 1tOptimum (Ottawa)x0475-1906 aGestion d'entreprisexPériodiques02aSummit Groupc(Canada)02aCentre d'études en gouvernancec(Ottawa) 0aFRbFNSP4 uhttp://www.optimumonline.ca/1 r aDEW 650-65801134nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000061001642100044002253260015002694220039002844300042003236060071003656060064004366060069005007120026005698010013005958560055006088560037006639550075007009720009007759920012007840000539809000053980920130319051705.01 a1774-9603 a0000539809 a a20039999k fre ba0 afre aFR a 0  ar aaj z 0 12aL'Option de Confrontations EuropefConfrontations Europe aMontreuilcConfrontations Europed2003- aSemestriel 1tLa Lettre de Confrontations Europe 1tL'Option de Confrontationsx1262-2230 aParticipation politiqueyPays de l'Union européennexPériodiques aSociété civileyPays de l'Union européennexPériodiques aParticipation socialeyPays de l'Union européennexPériodiques02aConfrontations Europe 0aFRbFNSP4 uhttp://www.confrontations.org/spip.php?rubrique1794 zAccès libre au texte intégral.1 bno. 18 ( juin 2003) -no. 21 (2005)cParisdMagasins/AnnexeeP 8° 6703 aZCAD aDEW 32201176nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001000154210006300164326001600227530002400243606004400267607005300311676000800364710005900372801002100431856010500452856003700557955006700594955010300661972000900764991001800773992002300791992001200814038766302000000492920130319051705.01 a0030-4387 aFNSP107054 a0000004929 a19900101a19579999 ba0 aeng aUS aahu 10aOrbis aPhiladelphia, PacForeign Policy Research Instituted1957- aTrimestriel 0aOrbisbPhiladelphia aRelations internationalesxPériodiques aEtats-UnisxRelations extérieuresxPériodiques a32702aForeign Policy Research Institutec(Philadelphie, Pa.) 3aFRbCCN0030-43874 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/web-editions/journal/00304387 zContenu : sommaires et résumés1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 1 no. 2 (aut-1957) -....cParisdMagasins/AnnexeeP 8° 1874wManquant : vol. 32, no. 2, 1987 aZSAB aexempb201010 aGEO RC2 Etats-Unis aDEW 32701167cas0 2200361 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164105001800171110001600189200007700205207002900282210002800311326001800339430005400357607003500411710007600446801003000522801002300552802000700575856003200582856007300614955007800687992001200765992002800777040387089000119046320130319051705.01 a1262-1692 a094577439 accn1262-1692 aissn12621692 a0001190463 a19950427a19949999k y0frey50 ba0 afre aFR ay  aagu uu 12aL'Ordinaire latino-américainfUniversité de Toulouse-Le Mirail, IPEALT 1aN° 152/153 (juil-1994)- aToulousecIPEALTd1994- a3 n°s par an 1tL'Ordinaire Mexique Amérique centralex0997-0584 aAmérique latinexPériodiques02aInstitut pluridisciplinaire d'étude sur l'Amérique latinec(Toulouse) 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20081014 a074 uhttp://ipeat.univ-tlse2.fr/ zContenu : sommaires et résumés depuis le no. 152/153, jul/oct 19941 bno. 208/209 (sep-2007/avr-2008) -....cParisdMagasins/AnnexeeP 8° 7142 aDEW 980 aGEO RD Amérique latine01220nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004500154210003600199326001100235430007500246440006300321452007000384530005500454601003300509606003500542710001900577830006000596856011100656955007200767972000900839992002200848992001200870161409776000006277620140107143032.01 a2280-4153 aFNSP287546 a0000062776 a19900101b19852005 ba0 aeng aIT aaka 10aOrdinary general meeting of shareholders aRomacBanca d'Italiad1985-2005 aAnnuel 1aAdunanza generale degli azionisti - Banca nazionale del regno d'Italia 1tAnnual report (Banca d'Italia. Testo stampato),x2239-9674 1tOrdinary general meeting of shareholders (Online), ISSN 2280-416110aOrdinary general meeting of shareholders‎bPrint02aBanca d'ItaliaxPériodiques aFinancesyItaliexPériodiques02aBanca d'Italia aP 4° : coll. jetée (1985-2005). COL4° à Locarchives4 uhttp://www.bancaditalia.it/pubblicazioni/relannzAccès au texte intégral du rapport depuis l'année 19971 b(1895) -(1941) ; (1943) -(1979)cParisdMagasins/AnnexeeCOL4°0309 aZGRA aGEO RA6.03 Italie aDEW 33200918nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000146001502100032002962300024003283260011003526010033003636060035003967100019004318010013004508560052004638560062005159550005005779920022005829920012006040001131334000113133420130319051705.0 a0001131334 a a19979999k fre 01 ba0 aeng aIT ar aak z  adr 10aOrdinary general meeting of shareholders held in... - Banca d'Italiab[Ressource électronique]eabridged report for the yearfBanca d'Italia aRomacBanca d'Italiad1997- aRevue électronique aAnnuel02aBanca d'ItaliaxPériodiques aFinancesyItaliexPériodiques02aBanca d'Italia 0aFRbFNSP4 uhttp://www.bancaditalia.it/pubblicazioni/relann zContenu : texte intégral du rapport depuis l'année 19971 r aGEO RA6.03 Italie aDEW 33201015nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200006700160210003000227326001100257530002000268606004300288606003800331801002100369856006600390856005900456955006100515955007200576972000900648991001800657992001400675038829495000000786420140106120850.01 a0048-2129 aFNSP113448 a0000007864 a19900101a19489999 ba0 ager aDE ar aaku 10aOrdoeJahrbuch für die Ordung von Wirtschaft und Gesellschaft aStuttgartcFischerd1948- aAnnuel10aOrdobStuttgart aLibéralisme économiquexPériodiques aEconomie de marchéxPériodiques 3aFRbCCN0048-21294 uhttp://www.luciusverlag.com/hauptseite/ORDO/ordo%20gesamt.htm zContenu : accès aux sommaires depuis le vol.51 (2000)1 bvol. 31 (1980) -....cParisdMagasins/AnnexeeP 8° 52611 bvol. 1 (1948) -vol. 30 (1979)cParisdMagasins/AnnexeeCOL 8° 0199 aZCAD aexempb201110 aDEW 330.101058nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007500154210002400229326002200253326002700275326002600302517001700328530002700345606004700372856010800419856010800527955007000635972000900705991001800714992001200732036737860000014541420130319051706.01 a1350-5084 aFNSP574211 a0000145414 a19950106a19949999 ba0 aeng aGB aaga 10aOrganizationethe critical journal of organization, theory and society aLondoncSaged1994- aBimestrielb2004- aTrimestrielb1995-2003 aSemestrielb1994-199410aOrganization00aOrganizationb(London) aSociologie des organisationsxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jul-1994) -....cParisdMagasins/AnnexeeP 8° 6087 aZSAB aexempb201212 aDEW 30101413nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200031200154210003700466326001900503326002900522326002600551326002700577606004700604606003900651710004600690801002100736856010800757856010800865955005900973972000901032991001801041992001601059039122174000003090520130319051707.01 a0170-8406 aFNSP186088 a0000030905 a19900101a19809999 ba0 aeng aDE aafu 10aOrganization studiesean international multidisciplinary journal devoted to the study of organizations, organization, organizing and the organized in, of and between societiesfpublished in collaboration with the European Group for Organizational Studies (EGOS) and the Maison des sciences de l'homme, Paris aBerlincWalter de Gruyterd1980- aMensuelb2005- a9 n°s par anb2003-2004 aBimestrielb1994-2002 aTrimestrielb1980-1993 aSociologie des organisationsxPériodiques aGestion d'entreprisexPériodiques02aGroupe européen d'études d'organisation 3aFRbCCN0170-84064 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1980) -....cParisdMagasins/AnnexeeP 8° 4295 aZCAD aexempb201103 aDEW 650-65801027nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000110015421000400016530000320020532600160023753000230025360700310027667600080030771000320031580100210034785600810036885600390044995500660048895500710055497200090062599200430063499200120067703876654X000003090720130319051707.01 a0030-5227 aFNSP186091 a0000030907 a19900101a19609999 ba0 ager aDE aahu 10aOrient aBaden-BadencNomos-Verl.-Gesd1960- aArrive avec un an de retard aTrimestriel10aOrientbLeverkusen aMoyen-OrientxPériodiques a95602aDeutsches Übersee-Institut 3aFRbCCN0030-52274 uhttp://www.giga-hamburg.de/index.php?file=z_orient.html&folder=publikationen zSommaires et abstracts depuis 20001 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9561 bvol. 15 no. 1 (mar-1974) -....cParisdMagasins/AnnexeeP 4° 3529 aZSAB aGEO RG Afrique du Nord et Moyen-Orient aDEW 95600953nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210004000174326002200214326002900236607003100265710003500296801002100331856003700352856005000389955016600439972000900605992002500614992001200639038766760000003100020130319051707.01 a0030-5472 aFNSP186287 a0000031000 a19900101a19219999 ba0 aita aIT aahu 10aOriente moderno aRomacIstituto per l'Oriented1921- aSemestrielb2007- a3 n°s par anb1921-2006 aMoyen-OrientxPériodiques02aIstituto per l'Orientec(Rome) 3aFRbCCN0030-54724 uhttp://www.ipocan.it/Framed.html zContenu : sommaires des n° parus depuis 19961 bvol. 27 no. 1/3 (jan/mar-1947) -....cParisdMagasins/AnnexeeP 4° 0006wManquants: vol. 76 no. 3 (1996) ; vol. 82 no. 3 et no. 4 (2002) ; vol. 84, no. 4 (2004) aZSAB aGEO RG2 Moyen-Orient aDEW 95600951nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000038001502100054001883000098002423260011003403360058003513370066004094520033004757120031005088010013005398560090005529550005006429920014006470000534379000053437920130319051708.0 a0000534379 a a19369999k fre 01 ba0 amul aBE az aak z  adr 10aOsirisb[Ressource électronique] aChicago, Ill.cUniversity of Chicago Pressd1936- aAccès au texte intégral (réservé aux sites de Sciences-Po) jusqu'aux 5 dernières années aAnnuel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou télédéchargement 1tOsiris (Bruges)x(0369-7827)02aHistory of Science Society 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03697827.html1 r aDEW 50-5901104nas 2200265 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101110001600108200005800124210003600182326001600218440007600234530005800310606003600368830017700404856013300581955008100714972000900795991001800804992001600822039556425000003110420130620163917.01 a0378-5149 a19910502b19721999 ba0 ager aAT aaha 10aÖsterreichische Zeitschrift für Politikwissenschaft aWiencDöcker Verlagd1972-1999 aTrimestriel 1tÖZP : Österreichische Zeitschrift für Politikwissenschaftx1615-554800aÖsterreichische Zeitschrift für Politikwissenschaft aScience politiquexPériodiques ale Sudoc a fait un chgt de titre en 1999 (devient : ÖZP. Österreichische Zeitschrift für Politikwissenschaft) ; nous l'avons pris en variante (bcp de notices d'articles)4 uhttp://www.oezp.at/getMagazines.phpzAccès libre au texte intégral des éditoriaux, des sommaires et des abstracts depuis 19961 bvol. 1 no.1 (1972) -vol. 36 no. 4 (2007)cParisdMagasins/AnnexeeP 8° 3046 aZSAB aexempb201106 aDEW 320-32101142nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001400154210004700168326001200215421003300227530002500260607005500285607006100340676001000401710004600411801002100457856004800478856007500526955006800601955007000669972000900739992003200748992001200780038767155000003111120130319051708.01 a0030-6428 aFNSP186551 a0000031111 a19900101a19519999 ba0 ager aDE aafu 10aOsteuropa aStuttgartcDeutsche Verlags-Anstaltd1951- aMensuel 1aOsteuropa-Archiv (0179-485X)10aOsteuropabStuttgart aEurope de l'EstxConditions socialesxPériodiques aEurope de l'EstxPolitique et gouvernementxPériodiques a943.702aDeutsche Gesellschaft für Osteuropakunde 3aFRbCCN0030-64284 uhttp://www.osteuropa.dgo-online.org/issues/ zContenu : sommaires et résumés en allemand et en anglais depuis 20021 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 943.71 ban. 2 no. 1 (fév-1952) -....cParisdMagasins/AnnexeeP 8° 1138 aZSAB aGEO RA2.02 Europe orientale aDEW 94700976nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002000139210004700159326002200206326002700228421009200255606004100347710004600388801002100434856006000455856003600515955007000551972000900621992003200630992001200662038767163000003111320130313090533.01 a0030-6444 aFNSP186554 a19900101a19559999 ba0 ager aDE aagu 10aOsteuropa-Recht aStuttgartcDeutsche Verlags-Anstaltd1955- aBimestrielb1999- aTrimestrielb1955-1998 1aInternational bulletin for research on law in Eastern Europe (0340-0522) < P 8° 2765 > aDroityEurope de l'EstxPériodiques02aDeutsche Gesellschaft für Osteuropakunde 3aFRbCCN0030-64444 uhttps://bwv-verlag.de/Zeitschriften.htm#Osteuropa-Recht zContenu : sommaires depuis 20001 bvol. 3 no. 1 (1957) -....cParisdMagasins/AnnexeeP 8° 1138 bis aZCAD aGEO RA2.02 Europe orientale aDEW 34900987nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210004700179326001600226607005900242710004600301801002100347856006500368856003600433955007400469957005700543972000900600991001800609992003200627992001400659038767171000003112020130319051708.01 a0030-6460 aFNSP186571 a0000031120 a19900101a19569999 ba0 ager aDE aahu 10aOsteuropa-Wirtschaft aStuttgartcDeutsche Verlags-Anstaltd1956- aTrimestriel aEurope de l'EstxConditions économiquesxPériodiques02aDeutsche Gesellschaft für Osteuropakunde 3aFRbCCN0030-64604 uhttps://bwv-verlag.de/Zeitschriften.htm#Osteuropa-Wirtschaft zContenu : sommaires depuis 20061 bvol. 1 no. 1 (aou-1956) -....cParisdMagasins/AnnexeeP 8° 1138 ter1 b(1956) -(1961)cParisdMagasins/AnnexeeP Index 0032 aZPAY aexempb201102 aGEO RA2.02 Europe orientale aDEW 330.901124nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005100163210004800214210007100262210003100333326002200364326002700386606003200413606003700445676000800482801001300490856009100503856010800594955006300702972000900765992001200774073601136000038500220140110152306.01 a1636-3671 a0000385002 a a20019999k fre ba0 afre aFR a 0  ar aah z 0 10aOutre-terreerevue française de géopolitique aRamonville Saint-AgnecEditions Eresd2003- aMarne-la-ValléecPresses universitaires de Marne-la-Valléed2002 aVilleurbannecGoliasd2001 aSemestriel$d2007- aTrimestriel$d2001-2006 aGéopolitiquexPériodiques aEtudes régionalesxPériodiques a327 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-outre-terre.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (jan-2001) -....cParisdMagasins/AnnexeeP 8° 6554 aZCAD aDEW 32701344nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000314001642100089004785300048005676060042006156060030006576760013006877120048007008010013007488300007007618560133007689450011009019550080009129910038009920000598859000059885920130319051709.02 a1256-1312 a0000598859 a b18571913 fre 01 ba0 afre aFR a 0  ar aau z 0 14aLes ouvriers des deux mondeseétudes sur les travaux, la vie domestique et la condition morale des populations ouvrières des diverses contrées et sur les rapports qui les unissent aux autres classesfpubl. sous forme de monographies par la Société internationale des études pratiques d'économie sociale aPariscSociété internationale des études pratiques d'économie socialed1857-191314aLes ouvriers des deux mondesb(Paris. 1857) aClasse ouvrièreyFrancez19e siècle aTravailleursz19e siècle a331v21a02aSociété internationale de science sociale 0aFRbFNSP adm4 uhttp://gallica.bnf.fr/ark:/12148/cb32830863r/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica aE.01111 a1ère série, 1857-1885 ; 2ème série, 1887-1899 ; 3ème série, 1900-1905 anumer0 (complément de Gallica ?)01252nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004800154210002900202326001500231430010100246606003700347606005400384801002100438856007100459856006400530856010100594856010800695955007100803972000900874992003100883992001200914039395057000003109120130319051709.01 a0305-9049 aFNSP186487 a0000031091 a19900101a19739999 ba0 aeng aGB aagu 10aOxford bulletin of economics and statistics aOxfordcBlackwelld1973- aBimestriel 1aBulletin of the Oxford University Institute of Economics & Statistics (0140-5543) < P 8° 0097 > aEconomie politiquexPériodiques aEconomie politiqueyGrande-BretagnexPériodiques 3aFRbCCN0305-90494 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0305-9049 zContenu : sommaires et résumés depuis le n°1, fév. 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100897 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 35 no. 1 (fev-1973) -....cParisdMagasins/AnnexeeP 8° 0097 aZPAY aGEO RA4.02 Grande-Bretagne aDEW 33001447nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154207007800181210004300259326002900302326003900331606003700370801002100407856005600428856007300484856009000557856010800647856010300755856010800858955009200966972000901058991001801067992001201085038767406000003109220130319051710.01 a0030-7653 aFNSP186488 a0000031092 a19900101a19389999 ba0 aeng aGB aahu 10aOxford Economic Papers 1ano. 1 (oct.- 1938) -no. 8, novembre 1947anew series, vol. 1 no.1 (1949)  aOxfordcOxford University Pressd1938- a3 ou 4 nos par anb1985- adiverses périodicitésb1938-1984 aEconomie politiquexPériodiques 3aFRbCCN0030-76534 uhttp://oep.oupjournals.org/contents-by-date.0.shtml zContenu : sommaires et résumés depuis le vol. 48, n°1, janv. 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00307653.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=102649 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bn.s. no. 1 (jan-1949)-....cParisdMagasins/AnnexeeP 8° 0300wManquant : no. 3 (1957) aZPAY aexempb201101 aDEW 33001193nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000370015421000430019132600160023460600540025060600370030460700570034180100210039885600420041985600730046185601010053485601080063595500700074397200090081399200310082299200140085303932124X000003109420130319051710.01 a0266-903X aFNSP186490 a0000031094 a19900101a19859999 ba0 aeng aGB aahu 10aOxford review of economic policy aOxfordcOxford University Pressd1985- aTrimestriel aEconomie politiqueyGrande-BretagnexPériodiques aEconomie politiquexPériodiques aGrande-BretagnexPolitique économiquexPériodiques 3aFRbCCN0266-903X4 uhttp://www.oup.co.uk/ecopol/contents/ zContenu : sommaires et résumés depuis le vol. 1, n°1, print. 19854 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101543 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 3 (aut-1985) -....cParisdMagasins/AnnexeeP 4° 5241 aZPAY aGEO RA4.02 Grande-Bretagne aDEW 338.901178nas 2200337 i 450 00100090000000200110000900500170002001100140003703500150005103500150006610000410008110100080012210200070013011000160013720000200015321000590017332600160023243000510024845200460029960700380034567600080038371000350039180100210042685600900044785601080053795500660064595500690071197200090078099200350078999200160082403876766000003120520130319051711.01 a0030-851X aFNSP186859 a0000031205 a19900101a19289999 ba0 aeng aCA aahu 10aPacific affairs aVancouver, B.C.cUniversity of British Columbiad1928- aTrimestriel 1aNews bulletin - Institute of Pacific Relations 1tPacific affairs [Ressource électronique] aPacifique (région)xPériodiques a99002aUniversity of British Columbia 3aFRbCCN0030-851X4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0030851x.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9901 bvol. 1 no.1 (jan-1928)- ....cParisdMagasins/AnnexeeP 8° 0017 aZSAB aGEO RJ Océanie, Pacifique Sud aDEW 990-99600953nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001900139210004300158326001600201452005000217530002700267607003800294856010900332856010800441955006600549972000900615992003500624992001600659040079600000003121020140108160946.01 a0951-2748 aFNSP186868 a19910506a19889999 ba0 aeng aGB aaha 10aPacific review aOxfordcOxford University Pressd1988- aTrimestriel 1tPacific review (Abingdon. Online),x1470-133200aPacific reviewbOxford aPacifique (région)xPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713707111db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1988) -....cParisdMagasins/AnnexeeP 4° 5347 aZSAB aGEO RJ Océanie, Pacifique Sud aDEW 990-99601055nas 2200325 i 450 002001100000005001700011011001400028100004100042101000800083102000700091105001800098106000600116110001600122200005300138210003200191326001800223430004900241440004800290530002000338606002300358606004400381606004400425801001300469856005700482856006000539955009100599972000900690991001800699992001200717000027963920130830111825.01 a1323-9104 a b19942002k fre ba0 aeng aGB a 0  ar aai z 0 10aPacifica reviewepeace, security & global change aAbingdoncCarfaxd1994-2002 a3 n°s par an 1tInterdisciplinary peace research,x1032-3856 1tGlobal change, peace & security,x1478-115810aPacifica review aPaixxPériodiques aRelations internationalesxPériodiques aSécurité internationalexPériodiques 0aFRbFNSP4 uhttp://www.tandf.co.uk/journals/carfax/13239104.html zContenu : sommaires depuis le vol. 10, n°1, fév. 19981 bvol. 11 no. 1 (fev-1999) -vol. 14 no. 3 (oct-2002)cParisdMagasins/AnnexeeP 8° 6505 aZSAB aexempb201212 aDEW 32700985nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210006600186326001600252607005000268607005200318710006000370801002100430856002800451856006100479955006600540972000900606991001800615992002400633992001400657038768119000003121820130319051711.01 a0030-9729 aFNSP186880 a0000031218 a19900101a19619999 ba0 aeng aPK aahu 10aPakistan development review aIslamabadcPakistan Institute of Development Economicsd1961- aTrimestriel aPakistanxPolitique économiquexPériodiques aPakistanxConditions économiquesxPériodiques02aPakistan Institute of Development Economics (Islamabad) 3aFRbCCN0030-97294 uhttp://www.pide.org.pk/ zContenu : accès aux sommaires depuis vol 44, n°1, 20051 bvol. 1 no. 1 (1961) -....cParisdMagasins/AnnexeeP 8° 1982 aZPAY aexempb201002 aGEO RG4.03 Pakistan aDEW 338.900799nls 2200265 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200006200124210004400186230002400230326001100254607004100265710004300306801001300349856011400362955000500476992002400481992001600505992001200521000124560720130619095032.0 a a20079999k fre 01 ba0 aeng aPK ar aak z  adr 10aPakistan statistical year bookb[Ressource électronique] aKarachicManager of Publicationsd2007- aRevue électronique aAnnuel aPakistanxStatistiquesxPériodiques02aPakistan. Federal Bureau of Statistics 0aFRbFNSP4 uhttp://www.pbs.gov.pk/search/node/pakistan%20statistical%20year%20bookzAccés au texte intégral depuis 20071 r aGEO RG4.03 Pakistan aDEW 310-319 aDEW 95400936nas 2200289 i 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102110001600109200003500125210004800160300007700208326001100285607004100296710004300337856011400380955005500494972000900549991001800558991001800576992002400594992001600618992001200634036372919000004107620131220114713.0 aFNSP220485 a19900101b19642012 ba0 aeng aPK aaka 10aPakistan statistical year book aKarachicManager of Publicationsd1964-2012 a2012, dernière éd. papier, à partir de 2013, en version électronique aAnnuel aPakistanxStatistiquesxPériodiques02aPakistan. Federal Bureau of Statistics4 uhttp://www.pbs.gov.pk/search/node/pakistan%20statistical%20year%20bookzAccés au texte intégral depuis 20071 b(1985) -(2012)cParisdMagasins/AnnexeeP 4° 6034 aZPAY aexempb201309 aexempb201312 aGEO RG4.03 Pakistan aDEW 310-319 aDEW 95401016cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200004300174210004100217326001500258607002700273607003400300607005400334710004600388801003000434801002300464802000700487856003800494856004000532955007000572992001200642992002400654059143835000113074620130319051711.01 a1681-5742 aissn16815742 a0001130746 a20011008a20009999 0fre 0103 ba0 aeng aPK ay  aaj 10aPakistan visionfPakistan Study Centre aLahorecPakistan Study Centred2000- aSemestriel aPakistanxPériodiques aAsie du Sud-EstxPériodiques aPakistanxPolitique et gouvernementxPériodiques02aPakistan Study Centrec(Lahore, Pakistan) 3aFRbAbesc20080131gAFNOR 3aFRbISSNc20011008 a004 uhttp://www.pu.edu.pk/psc/journal/ zContient le sommaire du dernier n°1 bvol. 7 no. 1 (jul-2006) -....cParisdMagasins/AnnexeeP 8° 7003 aDEW 954 aGEO RG4.03 Pakistan01020nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000800116110001600124200004400140210006100184326001100245452006300256530004400319606003800363606003800401712004500439856009300484955005900577972000900636991001800645992004300663992001200706036870080000000699220130916162924.01 a1015-1842 aFNSP111406 a19900424a19849999 ba0 aeng aXXX aaka 10aPalestine yearbook of international law aNicosiacAl-Shaybani Society of International Lawd1984- aAnnuel 1tPalestine yearbook of international law online,x2211-614100aPalestine yearbook of international law aDroit internationalxPériodiques aDroityMoyen-OrientxPériodiques02aAl-Shaybany Society of International Law4 uhttp://booksandjournals.brillonline.com/content/22116141zSommaires depuis le no 1, 19841 bvol. 1 (1984)-....cParisdMagasins/AnnexeeP 8° 4888 aZCAD aexempb201002 aGEO RG Afrique du Nord et Moyen-Orient aDEW 34101707cas0 2200445 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147105001800154106000600172110001600178200011700194210002300311326001400334451003300348452004800381517005300429606006400482606007100546710006700617801003000684801002300714801003000737801003000767802000700797856011200804856004200916856006400958856010801022955005501130972000901185992005101194992001601245083270949000100066720130319051712.0 a1817-0005 a083451463 aissn18170005 a0001000667 a20050112a20019999u y0frey0103 ba0 afre aZZ ay  ar aaju uu 10aPanorama de la santéeles indicateurs de l'OCDEfOrganisation de coopération et de développement économiques aPariscOCDEd2001- aBisannuel 1tHealth at a gancex1995-3992 1tPanorama de la santé (En ligne)x1999-132010aPanorama de la santé. Les indicateurs de l'OCDE aSanté publiqueyPays de l'OCDExStatistiquesxPériodiques aÉconomie de la santéyPays de l'OCDExStatistiquesxPériodiques02aOrganisation de coopération et de développement économiques 3aFRbAbesc20080408gAFNOR 3aFRbISSNc20080314 3aFRbAbesc20070308gAFNOR 3aFRbAbesc20050121gAFNOR a004 uhttps://acces-distant.sciences-po.fr/fork?http://hermia.sourceocde.org/vl=11773533/cl=18/nw=1/rpsv/home.htm zContenu : texte intégral depuis 20034 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(2001) -(2007)cParisdMagasins/AnnexeeP 4° 7138 aZPAY aGEO RN1 Pays industrialisés, pays occidentaux aDEW 360-36301473cas0 2200385 450 001001000000002001100010005001700021011001400038035001400052035001700066100004100083101000800124102000700132106000600139110001600145200012800161207001000289210002300299326002700322452005400349453002400403517003800427530002900465606005400494607005400548710006700602801003000669801002300699802000700722856022700729955005500956972000901011992005101020992001601071059201797000091939920130724112524.01 a1684-2200 a064154238 aissn16842200 a20011206a20019999k 0frey0103 ba0 afre aZZ ar aau 10aPanorama de la sociétéeles indicateurs sociaux de l'OCDEfOrganisation de coopération et de développement économiques 0a2001- aPariscOCDEd2001- aParaît tous les 2 ans 1tPanorama de la société (En ligne)‎x1999-1304 1tSociety at a glance14aLes indicateurs sociaux de l'OCDE00aPanorama de la société0 aIndicateurs sociauxyPays de l'OCDExPériodiques aPays de l'OCDExConditions socialesxPériodiques02aOrganisation de coopération et de développement économiques 3aFRbAbesc20060111gAFNOR 3aFRbISSNc20020530 a004 uhttps://acces-distant.sciences-po.fr/fork?http://titania.sourceocde.org/vl=831543/cl=11/nw=1/rpsv/outlook_annuals.htmzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(2001) -(2006)cParisdMagasins/AnnexeeP 4° 7087 aZPAY aGEO RN1 Pays industrialisés, pays occidentaux aDEW 360-36300792nls 2200253 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200009900124207001000223210008700233230002400320326001100344676000800355710004900363801001300412830000700425856010100432955000500533000124670220130719175048.0 a a19979999k fre 01 ba0 aspa aES ar aak z  adr 10aPanorama estratégicob[Ressource électronique]fInstituto Español de Estudios Estratégicos 1a1997- aMadridcMinisterio de DefensacInstituto Español de Estudios Estratégicosd1997- aRevue électronique aAnnuel a32702aInstituto español de estudios estratégicos 0aFRbFNSP azm4 uhttp://www.ieee.es/documentos/panorama-estrategico/zAccès libre au texte intégral depuis 19971 r00874nls 2200277 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200011700124207001000241210006400251230003900315326001100354606003700365606004900402676001300451801001300464830000700477856009500484955000500579992001200584000124668820130718163028.0 a a20119999k fre 01 ba0 aspa aES ar aak z  adr 10aPanorama geopolítico de los conflictosb[Ressource électronique]fInstituto Español de Estudios Estratégicos 1a2011- aMadridcInstituto Español de Estudios Estratégicosd2011- aPublication annuelle électronique aAnnuel aGéopolitiquez1990-....2rameau aRelations internationalesz2001-....2rameau a327v22a 0aFRbFNSP azm4 uhttp://www.ieee.es/documentos/panorama-de-los-conflictos/zAccès libre au texte intégral1 r aDEW 32701333nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008100154207002400235210003200259326001500291517003300306606004200339710004700381801002100428856009000449856010800539856012800647856010800775955006600883972000900949992002100958992001600979038779242000003536020130319051713.01 a0033-3352 aFNSP203074 a0000035360 a19900101a19409999 ba0 aeng aUS aaga 10aPAR Public administration reviewfAmerican Society for Public Administration 1aN°1 (Autumn 1940)- aWashington, DCcASPAd1940- aBimestriel10aPublic administration review aAdministration publiquexPériodiques02aAmerican Society for Public Administration 3aFRbCCN0033-33524 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00333352.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=PBA&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 2 (1945) -....cParisdMagasins/AnnexeeP 4° 0034 aZSAB aGEO RQ Universel aDEW 350-35401114cas0 2200349 450 00100100000000200110001000500170002101100140003803500170005203500150006910000410008410100080012510200070013310500180014010600060015811000160016420000660018021000390024653000240028560600440030960600320035380100300038580100230041580100300043880200070046885600410047585600640051695500690058095500700064999200120071999200330073113310852X000117424020130319051714.01 a1969-1297 aissn19691297 a0001174240 a20090427a20079999k y0frey0103 ba0 amis aFR ay  ar aaju uu 14aThe Paris globalistea student international affairs magazine aAntonycThe Paris globalistd2007-00aThe Paris globalist aRelations internationalesxPériodiques aGéopolitiquexPériodiques 3aFRbAbesc20090923gAFNOR 3aFRbISSNc20090427 3aFRbAbesc20090427gAFNOR a074 uhttp://www.global21online.org/paris/ zContenu : texte intégral depuis le vol. 1 no. 1 (fev-2007)1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 72511 bvol. 3 no. 1 (jan-2009) -....cParisdMagasins/AnnexeeP 4° 7251 aDEW 327 aGEO RS Sans aspect régional00995nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001600154210003000170326001700200430003500217530002200252606002900274607002500303830009900328856011200427955006800539955002500607955001200632992002500644992001200669039582914000003437220130319051714.01 a0397-1635 aFNSP199114 a0000034374 a19900101a19769999 ba0 afre aFR aa a 10aParis-Match aPariscParis-Matchd1976- aHebdomadaire 1aNouveau Paris-Matchx0337-872110aParis-Matchb1976 aActualitéxPériodiques aFrancexPériodiques a1985-->2001 : collection donnée au CTL en avril 2002 (nous conservons de 1949 à 1984 inclus)4 uhttp://anciensnumeros.parismatch.com/an/searchzCouvertures des anciens numéros sur le site de Paris-Match1 bno. 1 (mar-1949)-no. 1230 (nov-1972)cParisdAnnexeeP F° 01511 aGEO RA4.06 France 011 aDEW 050 aGEO RA4.06 France 01 aDEW 05000905nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001600139210003000155326001700185430003500202530002500237606002900262607002500291830009900316856011200415955006300527992002500590992001200615039582914000003437420130313090634.01 a0397-1635 aFNSP199114 a19900101a19769999 ba0 afre aFR aa a 10aParis-Match aPariscParis-Matchd1976- aHebdomadaire 1aNouveau Paris-Matchx0337-872110aParis-Match‎b1976 aActualitéxPériodiques aFrancexPériodiques a1985-->2001 : collection donnée au CTL en avril 2002 (nous conservons de 1949 à 1984 inclus)4 zCouvertures des anciens numéros sur le site de Paris-Matchuhttp://anciensnumeros.parismatch.com/an/search1 bno. 1388 (1976)-no. 1857 (1984)cParisdAnnexeeP F° 0151 aGEO RA4.06 France 01 aDEW 05000991nas 2200277 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000016001552100035001713260014002064300037002206060029002576070025002868560192003118560108005039550068006119920022006799920012007010000091075000009107520130319051714.01 a0767-3558 aFNSP401696 a0000091075 a19900101a19869999 ba0 afre aFR acaa 13aLe Parisien aSaint-OuencLe Parisiend1986- aQuotidien 1aLe Parisien libéré (0242-1011) aActualitéxPériodiques aFrancexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLe mois en courscParisd27, Salle Rez-de-chausséeeP F° 0522 aGEO RA4.06 France aDEW 05000772nas 2200253 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200002800138210005600166326001700222607005500239710005600294801002100350856002300371955008700394992002500481992001200506036373842000006723320130319051714.01 a0031-2258 aFNSP312044 a0000067233 a19900101a19519999 ba0 ager aDE14aDas Parlament (Hamburg) aBonncBundeszentrale für Politische Bildungd1951- aHebdomadaire aAllemagnexPolitique et gouvernementxPériodiques02aBundeszentrale für politische Bildungc(Allemagne) 3aFRbCCN0024/67274 uhttp://www.bpb.de/1 bConservation limitée aux 2 dernières annéescParisdMagasins/AnnexeeP F° 1204 aGEO RA5.01 Allemagne aDEW 94301363cas0 2200409 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200004000180210003100220326001500251421004600266517001500312530003200327606003800359606002700397607005200424676000800476710006000484801003000544801002300574802000700597856009000604856010800694955006700802955005900869972000900928992001600937083127771000095517120130319051714.01 a1768-6520 aissn17686520 a0000955171 a20041123a20049999m y0frey0103 ba0 afre aFR a 0  ar aaj z 0 10aParlement[s]eHistoire et politique aPariscArmand Colind2004- aSemestriel 1tParlement[s]. Hors-sériexISSN 1962-396810aParlements10aParlement[s]b(Paris. 2004) aPouvoir législatifxPériodiques aHistoirexPériodiques aFrancexPolitique et gouvernementxPériodiques a32002aComité d'histoire parlementaire et politiquec(France) 3aFRbAbesc20050905gAFNOR 3aFRbISSNc20041123 a074 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-parlements.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 2 (2004) -....cParisdMagasins/AnnexeeP 8° 6881 aZPAY aDEW 320-32101432cas0 2200421 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200005500180207001700235210004200252326001600294422004600310517002800356530003000384606003800414606002700452607005200479676000800531710006000539801003000599801002300629802000700652856009000659856010800749955006700857955005900924992001600983992001100999127790314000117077520130319051714.01 a1962-3968 aissn19623968 a0001170775 a20080909a20049999k y0frey0103 ba0 afre aFR ay  ar aaku uu 10aParlement[s]ehistoire et politiquei. Hors-série 1ano. 1(2004)- aPariscÉd. Pepper/L'Harmattand2004- aIrrégulier 1tParlement[s] (Paris. 2004)xISSN1768-652010aParlements. Hors-série10aParlement[s]. Hors-série aPouvoir législatifxPériodiques aHistoirexPériodiques aFrancexPolitique et gouvernementxPériodiques a32002aComité d'histoire parlementaire et politiquec(France) 3aFRbAbesc20090308gAFNOR 3aFRbISSNc20090225 a074 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-parlements.htm?4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 3 (2007) -....cParisdMagasins/AnnexeeP 8° 7097 aDEW 320-321 aGEO RS01156nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200011000154207003300264210002800297300002500325326002600350326002700376430006100403606004100464606003100505710007100536856005200607856003600659955008200695972000900777991001800786992001400804039299155000003132620130319051714.01 a0258-4751 aFNSP187121 a0000031326 a19910507b19852003 ba0 afre aFR aaha 10aParlements et francophonieerevue de l'Association internationale des parlementaires de langue française 1ano. 55 (1985)-no. 115 (2003) aPariscAIPLFd1985-2003 aN'a pas paru en 1999 aSemestrielb2000-2003 aTrimestrielb1985-1998 1aRevue des parlementaires de langue françaisex0223-5765 aPolitique linguistiquexPériodiques aFrancophoniexPériodiques02aAssociation internationale des parlementaires de langue française4 uhttp://apf.francophonie.org/-Publications-.html zAccès libre au texte intégral1 bno. 56 (jan/mar-1985) -no. 115 (jul-2003)cParisdMagasins/AnnexeeP 8° 2984 aZGRA aexempb201010 aDEW 42-4901229nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002000139210005800159326001600217430005100233606004300284710004300327801002100370830003500391856019400426955006600620955008100686957010600767972000900873992002100882992001200903038769239000005195620131001113410.01 a0031-2282 aFNSP250672 a19900101a19669999 ba0 aeng aGB aahu 10aParliamentarian aLondoncCommonwealth Parliamentary Associationd1966- aTrimestriel 1aJournal of the parliaments of the Commonwealth aParlementsxCommonwealthxPériodiques02aCommonwealth Parliamentary Association 3aFRbCCN0031-2282 aenvoyé au CTLES jusqu'en 19794 uhttp://www.cpahq.org/cpahq/Mem/Resources/Mem/Document%20Library/Search_Document_Library.aspx?hkey=348f2926-aa6b-495b-8048-9c0c7330f003zAccès libre au texte intégral depuis le no. 1, 20081 bvol. 65 no 3 (1984) -....cParisdMagasins/AnnexeeP 4° 49751 bvol. 61 no 1 (1980) -vol. 65 no 2 (1984)cParisdMagasins/AnnexeeP 8° 03691 bvol. 72 (1991) -vol. 76 (1995) ; vol. 77 (1996) -vol. 81 (2000)cParisdMagasins/AnnexeeP Index 0789 aZSAB aGEO RQ Universel aDEW 32801019nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154207002500180210004300205326001600248601004600264607006100310676000800371710002600379801002100405856004200426856007300468955007000541972000900611991001800620992003100638992001200669038769247000000493420140110103444.01 a0031-2290 aFNSP107059 a0000004934 a19900101a19479999 ba0 aeng aGB aahu 10aParliamentary affairs 1avol. 1 no. 1 (1947)- aLondoncOxford University Pressd1947- aTrimestriel02aGrande-BretagnebParliamentxPériodiques aGrande-BretagnexPolitique et gouvernementxPériodiques a32002aHansard Societyc(GB) 3aFRbCCN0031-22904 uhttp://www.oup.co.uk/parlij/contents/ zContenu : sommaires et résumés depuis le vol. 49, n°1, janv. 19961 bvol. 1 no. 1 (hiv-1947) -....cParisdMagasins/AnnexeeP 8° 0043 aZSAB aexempb201010 aGEO RA4.02 Grande-Bretagne aDEW 32800854nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001800154210006000172326001700232530002400249606004700273710005200320856005700372856003600429955008600465972000900551992001600560039673413000005264320130319051715.01 a0709-6941 aFNSP252246 a0000052643 a19900101a19779999 f ba0 aeng aNO aaia 10aParticipation aOslocnternational Political Science Associationd1977- a3 nos par an10aParticipationbOslo aScience politiquexRecherchexPériodiques02aAssociation internationale de science politique4 uhttp://www.ipsa.ca/fr/publications/participation.asp zAccès libre au texte intégral1 bvol. 1 no. 1 (jan-1977) -vol. 32 no. 2 (2008)cParisdMagasins/AnnexeeP 4° 1622 aZGRA aDEW 320-32101146nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200015400163210005000317326001100367410009700378606005600475606004400531710005100575801001300626856003900639856003600678955006000714972000900774992002500783992001200808040536408000061668220130319051715.02 a1279-4686 a0000616682 a b19872004 fre 01 ba0 afre aFR a 0  ar aak z 0 13aLa Participation financièreerapport annuel du Conseil de la participationfMinistère des affaires sociales, Conseil supérieur de la participation aPariscLa Documentation françaised1987-2004 aAnnuel 01aBilans et rapports - Ministère du travail, de l'emploi et de la formation professionnelle aParticipation aux bénéficesyFrancexPériodiques aEpargne salarialeyFrancexPériodiques01aFrancebConseil supérieur de la participation 0aFRbFNSP4 uhttp://www.ladocfrancaise.gouv.fr/ zAccès libre au texte intégral1 b(2002) -(2003/2004)cParisdMagasins/AnnexeeP 8° 6764 aZPAY aGEO RA4.06 France 01 aDEW 33201271cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200008500180210003100265517006900296606005000365606003800415676001400453801003000467801002300497802000700520856009400527856010800621955006700729955006700796972000900863992002100872992001600893158384814000123025320130319051716.01 a2034-7650 aissn20347650 a0001230253 a20120213a20119999k y0frey50 ba0 afre aBE ay 0  ar aaia 0uu 10aParticipationserevue de sciences sociales sur la démocratie et la citoyenneté aBruxellescDe Boeckd2011-10aRevue de sciences sociales sur la démocratie et la citoyenneté aParticipation politiquexPériodiques2rameau aDémocratiexPériodiques2rameau a321.8v22 3aFRbAbesc20120629gAFNOR 3aFRbISSNc20120206 a0m4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-participations.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 1 (jan/avr-2011) -....cParisdMagasins/AnnexeeP 8° 7185 aZPAY aGEO RQ Universel aDEW 320-32101260nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154207002600173210002400199326002200223326002700245606003600272676000800308856010500316856010800421856002800529856010800557955006700665955006900732955006600801972000900867991001800876992001600894036741183000016021920131219170149.01 a1354-0688 aFNSP617552 a0000160219 a19900101a19959999 ba0 aeng aGB aaga 00aParty politics 1aVol. 1, no. 1 (1995)- aLondoncSaged1995- aBimestrielb2001- aTrimestrielb1995-2000 aPartis politiquesxPériodiques a3204 uhttps://acces-distant.sciences-po.fr/fork?http://www-fr.ebsco.com/online/direct.asp?JournalID=101635 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://ppq.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bL'année en courscParisdBibliothèque de rechercheeP 8° 61351 bvol. 1 no. 1 (1995) -....cParisdMagasins/AnnexeeP 8° 6135 aZCAD aexempb201204 aDEW 324.2-500742nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210002700181326001200208606002900220607002500249856003300274856008500307955006300392972000900455992001200464039846237000003133320130319051717.01 a0987-8505 aFNSP187133 a0000031333 a19910507a19879999 ba0 afre aFR aafa 10aPassages (Paris, 1987) aPariscPassagesd1987- aMensuel aActualitéxPériodiques aFrancexPériodiques4 uhttp://www.passages-forum.fr zContenu : sommaire et sélection d'articles en texte intégral depuis le n° 73.1 bno. 1 (dec-1987) -....cParisdMagasins/AnnexeeP 4° 5271 aZCAD aDEW 05000845nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000052001502100038002022300005002403000116002453260016003613360056003773370018004336060036004518010013004878560038005009550005005389920012005430000505676000050567620130319051717.0 a0000505676 a a19989999k fre 01 ba0 afre aFR ar aay z  adr 13aLe Passant Ordinaireb[Ressource électronique] aBèglesbMaison du Passantd1998- a aSélection d'articles depuis le n°18, février-mars 1998, texte intégral à partir du n° 28, mars-avril 2000 airrégulier aDonnées textuelles uniquement accessibles en ligne aFichiers HTML aSciences socialesxPériodiques 0aFRbFNSP4 uhttp://www.passant-ordinaire.com/1 r aDEW 30001040nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000046001502100043001963000098002393260016003373360058003533370066004114520032004775170021005096060027005307120045005578010013006028560090006159550005007059920016007100000528787000052878720130319051717.0 a0000528787 a a19529999k fre 01 ba0 aeng aGB az aah z  adr 10aPast & presentb[Ressource électronique] aOxfordcOxford University Pressd1952- aAccès au texte intégral (réservé aux sites de Sciences-Po) jusqu'aux 5 dernières années aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou télédéchargement 1tPast & presentx(0031-2746)10aPast and present aHistoirexPériodiques02aPast and Present Societyc(Oxford, G.B.) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00312746.html1 r aDEW 900-90701657nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002600139210004800165326002400213326002700237452004700264530002600311606003800337710004300375801002100418856012800439856010800567856010100675856010800776856010900884856010800993955006601101957007301167972000901240991001801249992001601267038769530000003133620130919155823.01 a0031-322X aFNSP187138 a19900101a19679999 ba0 aeng aGB aagu 10aPatterns of prejudice aaLondoncInstitute of Jewish Affairsd1967- a5 nos par anb2006- aTrimestrielb1967-2005 1tPatterns of prejudice (Online),x1461-7331 aPatterns of prejudice aJuifsxCivilisationxPériodiques02aInstitute of Jewish Affairsc(Londres) 3aFRbCCN0031-322X4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=0SV&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=300354 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713395163db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1967) -....cParisdMagasins/AnnexeeP 8° 24491 bvol. 17 (1983) -vol. 18 (1984)cParisdMagasins/AnnexeeP Index 0352 aZCAD aexempb201004 aDEW 305-30601008nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210003500186326001100221517004600232607004200278676001000320710007100330801002100401856009000422955006400512955005300576972000900629992004200638992001400680039295311000009746920130716112610.01 a0257-8107 aFNSP424073 a0000097469 a19900101a19849999 f ba0 afre aUS aaku 14aLes Pays les moins avancés aNew YorkcNations Uniesd1984- aAnnuel10aRapport...sur les pays les moins avancés aPays les moins avancésxPériodiques a338.902aConférence des Nations Unies sur le commerce et le développement 3aFRbCCN0257-81074 uhttp://unctad.org/fr/pages/Publications.aspxzAccès intégral du rapport depuis 19971 bLa dernière annéecParisd27, Salle 1er étageeDEW 338.91 b(1984) -....cParisdMagasins/AnnexeeP 4° 5028 aZGRA aGEO RO Pays en voie de développement aDEW 338.901560nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002100139210003800160210005600198210004900254210006300303326001600366452004000382517000700422530002100429606002300450606004400473710005400517711007500571801002100646856012800667856010800795955007200903955009100975957005701066972000901123991001801132992001201150039095851000003169420130911153445.01 a0149-0508 aFNSP187944 a19900101a19729999 ba0 aeng aUS aahu 10aPeace and change aHoboken, N.J.‎cWiley‎d2008- aCambridge, Mass. [etc.]‎cBlackwell‎d1996-2008 aNewbury Park, Calif.‎cSage‎d1989?-1995 aSonoma, Calif.‎cCalifornia State College‎d1972-1988? aTrimestriel 1tPeace & change (Online),x1468-013010aPC10aPeace and change aPaixxPériodiques aRelations internationalesxPériodiques02aCouncil on Peace Research in History (Etats-Unis)02aConsortium on Peace Research, Education, and Developmentc(Etats-Unis) 3aFRbCCN0149-05084 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=PNC&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 6 no. 1/2 (hiv-1980) -....cParisdMagasins/AnnexeeP 8° 44211 bvol. 1 no. 1 (aut-1972) -vol. 5 no. 2/3 (aut-1978)cParisdMagasins/AnnexeeP 4° 46611 b(1972) -(1975)cParisdMagasins/AnnexeeP Index 0528 aZSAB aexempb201006 aDEW 32701253nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210005500177326001600232606004100248606002300289710006900312856012800381856010800509856010900617856010800726955006600834972000900900991001800909992001200927094060231000026167420130319051719.01 a1078-1919 aFNSP909451 a0000261674 a19981207a19959999 ba0 aeng aUS aaha 10aPeace and conflict aHillsdale, N.JcLawrence Erlbaum Associatesd1995- aTrimestriel aRèglement de conflitsxPériodiques aPaixxPériodiques02aAmerican Psychological Association. Division of Peace Psychology4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=7MU&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t775653690db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 2 no. 3 (1996) -....cParisdMagasins/AnnexeeP 8° 6443 aZSAB aexempb201211 aDEW 32701170cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069040001100084100004100095101000800136102000700144105001800151106000600169110001600175200007000191207003100261210006300292326001500355430003700370606002300407606004100430606004400471801003000515801002300545802000700568856003600575856009400611955007000705972000900775992001200784094081859000093119720130319051719.01 a1082-7307 aissn10827307 a0000931197 aPCSTFR a19950530a19959999k y1fre 0103 ba0 aeng aUS a 0  ar aaja 0uu 10aPeace and conflict studiesfNetwork of Peace and Conflict Studies 0aVol. 2, no. 1 (June 1995)- aColumbus, OHcNetwork of Peace and Conflict Studiesd1995- aSemestriel 1tPeace and conflict studies notes aPaixxPériodiques aRèglement de conflitsxPériodiques aRelations internationalesxPériodiques 3aFRbAbesc20051122gAFNOR 3aFRbISSNc20051021 a014 uhttp://www.gmu.edu/academic/pcs zContenu : texte intégral des articles du vol.2, n°1, June 1995 au vol.9, n°1, May 20021 bvol. 8 no. 2 (nov-2001) -....cParisdMagasins/AnnexeeP 8° 6867 aZSAB aDEW 32701312nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000460015421000350020032600160023553000360025160600230028785600570031085600580036785601280042585601080055385601090066185601080077095500700087897200090094899100170095799200120097404025495X000010573420130319051719.01 a1040-2659 aFNSP449480 a0000105734 a19900101a19899999 ba0 aeng aUS aaha 10aPeace reviewea journal of social justice aBoulder, Colo.cRiennerd1989- aTrimestriel10aPeace reviewbPalo Alto, Calif. aPaixxPériodiques4 uhttp://www.tandf.co.uk/journals/carfax/10402659.html zContenu : sommaires depuis le vol. 8, n°1, mars 19964 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=PCR&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713441298db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 1 (pri-1993) -....cParisdMagasins/AnnexeeP 8° 5973 aZSAB aexemp$201111 aDEW 32701079nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002300163207002700186210005900213326001800272606005300290606002600343607004300369801001300412856009700425856010800522955007300630972000900703992002700712992001400739054372968000060295420130408174738.01 a1621-5338 a0000602954 a a20009999 fre 01 ba0 afre aFR a 0  ar aai z 0 13aLa Pensée de midi 1aN°1 (printemps 2000)- aArlescActes SudaMarseillecla Pensée de midid2000- a3 n°s par an aLittératurexHistoire et critiquexPériodiques aCulturexPériodiques aMéditerranée (région)xPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-la-pensee-de-midi.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 12 (pri-2004) -no. 31 (2010)cParisdMagasins/AnnexeeP 4° 7022 aZPAY aGEO RL4 Méditerranée aDEW 80-8900849cas0 2200301 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002900163210005000192326001800242606003700260801003000297801002800327801002300355802000700378856008100385955006000466972000900526992001200535036375225000091127020130319051720.01 a0774-2754 a0000911270 a19830101a19859999k y0frey0103 ba0 afre aBE a 0  ar aaiu 0 013aLa pensée et les hommes aBruxellescEditions Espace de libertéd1985- a3 n°s par an aVie intellectuellexPériodiques 3aFRbAbesc20050512gAFNOR 3aFRbSFc20050512gAFNOR 3aFRbISSNc20020530 a0m4 uhttp://www.ulb.ac.be/cal/edl/editions/collectionpensee&leshommes/CataPH.html1 bno. 52 (2003) -....cParisdMagasins/AnnexeeP 8° 6846 aZPAY aDEW 00101177nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008600154210004900240326001600289530002600305606004100331710004400372856005700416856007500473955018000548957007100728972000900799991001800808992002300826992001400849037416634000019542220130319051720.01 a1300-8641 aFNSP717836 a0000195422 a19900101a19969999 ba0 aeng aTR aaha 10aPerceptionsejournal of international affairsfCenter for strategic research, SAM aAnkaracCenter for Strategic Researchd1996- aTrimestriel10aPerceptionsbIstanbul aGéopolitiqueyTurquiexPériodiques02aStratejik arastirmalar Merkezi (Ankara)4 uhttp://sam.gov.tr/category/publications/perceptions/ zContenu : accès au texte intégral depuis le vol. 1 no. 1 (1996/1997)1 bvol. 1 no. 1 (1996) ; vol. 1 no. 4 (1996/1997) -vol. 3, no 1 (1998) ; vol. 4 no. 2 (1999) -vol. 7 no. 3 (2002) ; vol. 16 no. 1 (2011) -....cParisdMagasins/AnnexeeP 8° 62601 bvol. 1 (1996) -vol. 6 (2002)cParisdMagasins/AnnexeeP Index 0847 aZGRA aexempb201209 aGEO RA6.06 Turquie aDEW 956.101119nas 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000083001502070009002332100030002423260011002724300059002835320092003426010065004346060049004996060055005487100051006038010013006548560023006679550047006909720009007379920023007469920012007690000991472000099147220130319051721.0 a0000991472 a a20059999 fre 01 ba0 aeng aUS a 0  ar aa z 0 10aPerformance and accountability reportfU.S. Securities and Exchange Commission 1a2004 aLanham, MacBernand2004- aAnnuel 1tAnnual reportfU.S. Securities and Exchange Commission10aPerformance and accountability report$fUnited States Securities and Exchange Commission10aEtats-UnisbSecurities and Exchange CommissionxPériodiques aEntreprisesxDroityEtats-UnisxPériodiques aMarché financierxDroityEtats-UnisxPériodiques10aEtats-UnisbSecurities and Exchange Commission 0aFRbFNSP4 uhttp://www.sec.gov1 b(2006)cParisdMagasins/AnnexeeP 4° 7097 aZPAY aGEO RC2 Etats-Unis aDEW 33200916nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000064001502100047002142300005002613000047002663260016003133360074003293370018004036060036004217020022004577020028004798010013005078560065005209550005005859920012005900000505686000050568620130319051721.0 a0000505686 a a19939999k fre 01 ba0 afre aFR ar aay z  adr 14aLes périphériques vous parlentb[Ressource électronique] aParisbPériphériques vous parlentd1993- a aTexte intégral depuis le n°0, avril 1993 airrégulier aDonnées textuelles et audiovisuelles uniquement disponibles en ligne aFichiers HTML aChangement socialxPériodiques 1aCalvelbAnne4340 1aBertellibFederica4340 0aFRbFNSP4 uhttp://www.lesperipheriques.org/rubrique.php3?id_rubrique=181 r aDEW 30101387nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008700154210002400241326001200265421004000277430004300317530002100360606004600381676000800427710008600435801002100521856003900542856004800581955006600629955006500695957021800760972000900978992002200987992001601009039348784000003184620130319051722.01 a0223-5692 aFNSP188198 a0000031846 a19900101a19689999 ba0 afre aFR aafu 10aPersonnelfAssociation nationale des directeurs et cadres de la fonction personnel aPariscANDEPd1968- aMensuel 1aCommuniquez (Paris)xISSN 0980-7039 1aDirection de personnelxISSN 1247-957800aPersonnelbParis aPersonnelxDirectionyFrancexPeriodiques a65002aAssociation nationale des directeurs et cadres de la fonction personnelc(France) 3aFRbCCN0223-56924 uhttp://www.andcp.fr/personnel.html zContenu : sommaires depuis janv.-fév. 19981 bLes 3 dernières annéescParisd27, Salle 4e étageeDEW 6501 bno. 114 (mar-1968) -....cParisdMagasins/AnnexeeP 4° 35481 b(1988) -(1992)zcet index se trouve dans le no. 337, nov./déc. de la revue ; 1994-1998wcet index se trouve dans le n°396, janv. 1999 de la revue ; (1997) -(2000) : cet index st trouve dans le n°425 (déc.2001) aZPAY aGEO RA4.06 France aDEW 650-65801053nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210002800177326001500205606005600220606003600276606004500312710006200357801002100419856005400440856007000494955006800564972000900632991001800641992002300659992002100682992001200703039189449000005077520130319051722.01 a0210-0436 aFNSP247585 a0000050775 a19900101a19739999 ba0 acat aES aaju 10aPerspectiva social aBarcelonacICESBd1973- aSemestriel aSciences socialesyEspagneyCatalognexPériodiques aSciences socialesxPériodiques aSciences socialesyEspagnexPériodiques02aInstitut catòlic d'estudis socialsc(Barcelone, Espagne) 3aFRbCCN0210-04364 uhttp://www.ucm.es/BUCM/compludoc/S/S/02100436.htm zContenu : sommaires depuis le n°34, 1994 (lacunes : n°36 et 44)1 bno. 1 (1973) -no. 48 (2002)cParisdMagasins/AnnexeeP 8° 3612 aZGRA aexempb201006 aGEO RA6.02 Espagne aGEO RQ Universel aDEW 30001021nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000270015421000290018132600220021032600220023260700580025460700620031271000580037480100210043285600440045385600370049795500590053497200090059399100180060299200230062099200280064399200120067103897231X000003205520130319051722.01 a0101-3459 aFNSP189178 a0000032055 a19900101a19769999 ba0 apor aBR aaju 10aPerspectivas (Marilia) aSÀo PaulocUNESPd1976- aSemestrielb2005- aAnnuelb1976-2004 aAmérique latinexPolitique économiquexPériodiques aAmérique latinexPolitique et gouvernementxPériodiques02aUniversidade estadual paulistac(São Paulo, Brésil) 3aFRbCCN0101-34594 uhttp://www.fclar.unesp.br/perspectivas/ zAccès libre au texte intégral.1 bvol 1 (1976) -....cParisdMagasins/AnnexeeP 8° 4672 aZSAB aexempb201003 aGEO RD4.13 Brésil aGEO RD Amérique latine aDEW 98000887nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001700139210005600156326001500212530002600227607003400253710005100287856005500338856003600393955005900429972000900488991001600497992003200513992002800545992001200573058474595000013208320130525132703.01 a1210-762X aFNSP536983 a19940707a19939999 ba0 aeng aCZ aaja 10aPerspectives aPraguecInstitute of International Relationsd1993- aSemestriel10aPerspectivesb(Praha) aEurope de l'EstxPériodiques02aInstitute of International Relationsc(Prague)4 uhttp://www.iir.cz/display.asp?lng=uk&ida=87&idi=324 zAccès libre au texte intégral1 bno. 1 (1993) -....cParisdMagasins/AnnexeeP 8° 6052 aZPAY aexemp$21202 aGEO RA2.02 Europe orientale aGEO RA5 Europe centrale aDEW 94701087nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200009500139210002300234326001100257517004400268517005700312530004000369606004600409712006700455856021800522955006500740992001600805040217752000015355020131219154129.0 a1027-5754 aFNSP599149 a19900101a19959999 f ba0 afre aFR aaka 14aLes perspectives agricolesfOrganisation de coopération et de développement économiques aPariscOCDEd1995- aAnnuel10aPerspectives agricoles de l'OCDE, 1999-10aPerspectives agricoles de l'OCDE et de la FAO, 2005-14aLes perspectives agricoles‎b1995 aAgricultureyPays de l'OCDExPériodiques02aOrganisation de coopération et de développement économiques4 uuhttps://acces-distant.sciences-po.fr/fork?http://puck.sourceocde.org/vl=1151166/cl=40/nw=1/rpsv/home.htmzzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1995/2000) -(1997/2001)cParisdMagasins/AnnexeeP 4° 6468 aDEW 338.1-301487nas 2200361 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200004000148210002300188300015100211326001100362430004600373452007300419517005000492530004100542606004600583710006700629801001300696830005400709856021600763856000500979955005900984972000901043992001601052992005701068048859109000037974320131219154848.01 a1563-0455 a a19989999k f fre ba0 afre aFR a 0  ar aa z 0 10aPerspectives agricoles de l'OCDE... aPariscOCDEd1998- aL'édition 2005 porte le titre Perspectives agricoles de l'OCDE et de la FAO car elle a été préparée conjointement par ces deux organisations. aAnnuel 1tPerspectives agricoles (1995),x1027-5754 1tPerspectives agricoles de l'OCDE et de la FAO (En ligne),x1999-115010aPerspectives agricoles de l'OCDE et de la FAO aPerspectives agricoles de l'OCDE ... aAgricultureyPays de l'OCDExPériodiques02aOrganisation de coopération et de développement économiques 0aFRbFNSP aNotice à supprimer qd désherbage fait (Martine)4 uhttps://acces-distant.sciences-po.fr/fork?http://puck.sourceocde.org/vl=1151166/cl=40/nw=1/rpsv/home.htmzzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 u1 b(1998/2003)-(2007)cParisdMagasins/AnnexeeP 4° 6468 aZPAY aDEW 338.1-3 aGEO RA1.01 Communautés européennes, Pays de la CEE01136nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210006900181326002300250326002600273430004300299451003400342607002400376676000800400710007100408856005400479856007000533955006600603955006300669972000900732992004500741992001200786040189449000006498520130430114133.01 a1021-9013 aFNSP298586 a0000064985 a19900101a19929999 ba0 afre aHK aaga 10aPerspectives chinoises aHong KongcCentre d'études et d'information sur la Chined1992- aTrimestriel$d2007- aBimestriel$d1992-2006 1aBulletin de sinologie (ISSN 1011-2006) 1tChina perspectivesx1996-4617 aChinexPériodiques a95002aCentre d'études français sur la Chine contemporainec(Hong-Kong)4 uhttp://www.cefc.com.hk/perspectives.php?cat=2&p=9 zSommaires depuis le n°1, 1992 et index des auteurs et des sujets1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9501 bno. 1 (mar-1992) -....cParisdMagasins/AnnexeeP 4° 6103 aZCAD aGEO RI3.03 Chine (République populaire) aDEW 95101077nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000730015421000600022722500400028732600150032745400630034260600420040560600390044767600100048671000350049685600460053195500690057795500610064697200090070799200210071699200140073704018062X000001093320130319051722.01 a1020-1343 aFNSP121011 a0000010933 a19900718a19909999 f ba0 amul aUS aaja 10aPerspectives de l'économie mondialefFonds monétaire international aWashington, D.C.cFonds monétaire internationald1990-21aEtudes économiques et financières aSemestriel 1tWorld economic outlook (Washington. Print)xISSN 0256-6877 aConjoncture économiquexPériodiques aHistoire économiquexPériodiques a330.902aFonds monétaire international4 uhttp://www.imf.org/external/fra/index.asp1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 330.91 b(Mai 1990) -....cParisdMagasins/AnnexeeP 4° 4857 bis aZPAY aGEO RQ Universel aDEW 330.901085nas 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000115001502070010002652100023002753260011002986060059003096060041003686070033004097100067004428010013005098560077005228560033005999550055006329720009006879920051006969920012007470000608700000060870020130319051722.0 a0000608700 a a20039999 fre 01 ba0 afre aFR a 0  ar aak z 0 10aPerspectives de l'investissement internationalfOrganisation de coopération et de développement économiques 1a2003- aPariscOCDEd2003- aAnnuel aInvestissements étrangersxStatistiquesxPériodiques aMouvements de capitauxxPériodiques aPays de l'OCDExPériodiques02aOrganisation de coopération et de développement économiques 0aFRbFNSP4 uhttp://www.oecd.org/publications/0,2743,fr_2649_201185_1_1_1_1_1,00.html zContenu : résumé en ligne.1 b(2003) -(2004)cParisdMagasins/AnnexeeP 8° 6746 aZPAY aGEO RN1 Pays industrialisés, pays occidentaux aDEW 33201329nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200010400163210002300267326001200290532012500302606008600427606006600513710006700579801001300646856022900659955005500888972000900943992005100952992001201003059552085000053980120130716171247.01 a1995-4050 a0000539801 a a20009999k fre ba0 afre aFR a 0  ar aa z 0 10aPerspectives de l'OCDE sur les PME/fOrganisation de coopération et de développement économiques aPariscOCDEd2000- aBiennal10aPerspectives de l'Organisation de coopération et de développement économiques sur les petites et moyennes entreprises aPetites et moyennes entreprisesxPolitique publiqueyPays de l'OCDExPériodiques aPetites et moyennes entreprisesyPays de l'OCDExPériodiques aOrganisation de coopération et de développement économiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://lysander.sourceocde.org/vl=8347465/cl=28/nw=1/rpsv/outlook_annuals.htmzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(2002) -(2005)cParisdMagasins/AnnexeeP 4° 6980 aZPAY aGEO RN1 Pays industrialisés, pays occidentaux aDEW 33801493nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004600163210008000209326001900289437003800308512005600346606003900402606003700441710006700478801001300545856044400558955005901002972000901061991001801070992001601088992005101104045029342000041196820130319051722.01 a1562-8809 a0000411968 a a19999999k f fre ba0 afre aFR a 0  ar aal z 0 10aPerspectives des communications de l'OCDE aPariscOrganisation de coopération et de développement économiqued1999- aTous les 2 ans 1tCommunications outlookx1019-975610aTechnologies de l'information et des communications aTélécommunicationsxPériodiques aTélédistributionxPériodiques02aOrganisation de coopération et de développement économiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://masetto.sourceocde.org/vl=1113719/cl=36/nw=1/rpsv/cgi-bin/jsearch_oecd_books?cheese=searchdb&form=expert&search0=perspectives%20des%20communications%20de%20l%27ocde%20NOT%20technologies&field0=title&limittitles=wis%3Dfre_bookperiodical&what=d1&dropdown=true&sortresultsby=rev_timestampzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1999) -(2007)cParisdMagasins/AnnexeeP 8° 5806 bis aZPAY aexempb201112 aDEW 383-389 aGEO RN1 Pays industrialisés, pays occidentaux01277nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200012000163210002300283326001400306437004600320606004700366710015000413801001300563856012400576856010800700955005900808972000900867992005100876992001200927992001200939119395959000032747620130319051722.01 a1996-3483 a0000327476 a a19949999k f fre ba0 afre aFR a 0  ar aal z 0 10aPerspectives des technologies de l'information de l'OCDEeTIC, commerce électronique et économie de l'information aPariscOCDEd1994- aBisannuel 1tInformation technology outlookx1019-973X aTechnologie de l'informationxPériodiques02aOrganisation de coopération et de développement économiquesbComité de la politique de l'information, de l'informatique et des communications 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://lysander.sourceocde.org/vl=5959222/cl=20/nw=1/rpsv/outlook_annuals.htm4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1994) -(2004)cParisdMagasins/AnnexeeP 4° 6092 bis aZPAY aGEO RN1 Pays industrialisés, pays occidentaux aDEW 004 aDEW 02001431nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004000139207001800179210002300197326001500220452006500235530004000300532009800340606005200438606004100490676001000531710006700541801002100608830005300629856021800682955006400900955006400964972000901028991001801037992001401055013349422000000494920131009142821.01 a0304-3274 aFNSP107074 a19900101a19679999 f ba0 afre aFR aaju 10aPerspectives économiques de l'OCDE 1ano. 1 (1967)- aPariscOCDEd1967- aSemestriel 1tPerspectives économiques de l'OCDE (En ligne)‎x1684-343600aPerspectives économiques de l'OCDE1 aPerspectives économiques de l'Organisation de coopération et de développement économiques aHistoire économiquez20e sièclexPériodiques aPrévision économiquexPériodiques a330.902aOrganisation de coopération et de développement économiques 3aFRbCCN0304-3274 a1967-2008 : collection envoyée au CTles en 20134 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043274/perspectiveseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLa dernière annéecParisd27, Salle 1er étageeDEW 330.91 bno. 1 (jul-1967) - ....cParisdMagasins/AnnexeeP 4° 2465 aZECH aexempb201306 aDEW 330.901449nas 2200313 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200017700148210002300325326001100348452006600359530004100425607004900466710003900515711003900554801001300593856042400606955006501030972000901095992001901104992001201123079580637000053980020140116121731.01 a1815-9508 a a20029999k fre ba0 afre aFR a 0  ar aa z 0 10aPerspectives économiques en Afrique‎fBanque africaine de développement‎gCentre de développement de l'Organisation de coopération et de développement économiques aPariscOCDEd2002- aAnnuel 1tPerspectives économiques en Afrique (En ligne)‎x1999-103700aPerspectives économiques en Afrique aAfriquexPolitique économiquexPériodiques02aCentre de développement de l'OCDE02aBanque africaine de développement 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://masetto.sourceocde.org/vl=1113719/cl=36/nw=1/rpsv/cgi-bin/jsearch_oecd_books?cheese=searchdb&form=expert&search0=%22Perspectives%20%E9conomiques%20en%20Afrique%2A%22&field0=title&limittitles=wis%3Dfre_bookperiodical&what=d1&dropdown=true&sortresultsby=rev_timestampzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(2002/2003) -(2006/2007)cParisdMagasins/AnnexeeP 4° 6977 aZPAY aGEO RE Afrique aDEW 96000818nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000139001502070011002892100012003002300024003123260016003366060044003528010013003968560044004098560037004539550005004909920021004959920012005160001222482000122248220130319051722.0 a0001222482 a a20129999k fre 01 ba0 afre aFR ar aah z  adr 10aPerspectives internationalesela revue des étudiants-chercheurs en Relations Internationales de Sciences Pob[Ressource informatique] 1a2012-1 aParisc aRevue électronique aTrimestriel aRelations internationalesxPériodiques 0aFRbFNSP4 uhttp://perspectivesinternationales.com/ zAccès libre au texte intégral.1 r aGEO RQ universel aDEW 32701220cas0 2200397 450 001001000000002001100010005001700021011001400038035002100052035001700073100004100090101000800131102000700139105001800146106000600164110001600170200002400186207002300210210003900233210005500272326001600327430003600343530002400379531002100403606004400424606004800468607005300516676000800569801003000577801002300607802000700630856008300637955006100720992002500781992001600806153901543000125218320131209103345.0 a2116-7443 a(OCoLC)762705176 aissn21167443 a20110722a20119999k y0frey50 ba0 afre aFR ay 0  ar aauu 0uu 10aPerspectives libres 0aN° 2 (avril 2011) aAubecLe Retour aux sourcesd2011-1 a[Paris]c[Scribédit/Le Retour aux sources]d2011- aIrrégulier 1tLibres (Paris. 2004)x1768-675X00aPerspectives libres 0aPerspect. libres aScience politiquexPériodiques2rameau aLibertéxPhilosophiexPériodiques2rameau aFrancexVie intellectuellexPériodiques2rameau a001 3aFRbAbesc20120405gAFNOR 3aFRbISSNc20110722 a074 uhttp://cerclearistote.com/category/revue/zAccès aux sommaires depuis le n°2.1 bno.2 (avr-2011)-....cParisdMagasins/AnnexeeP 8° 7005 aGEO RA4.06 France 01 aDEW 320-32101464cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200005000180210004000230326001600270452007000286530005900356607005200415607003500467607004400502801003000546801002300576802000700599856010900606856004600715856010900761856010800870955007000978992001801048992001201066075627396000114322920130319051722.01 a1570-5854 aissn15705854 a0001143229 a20030523a20029999k y0frey0103 ba0 aeng aNL ay  ar aaiu uu 10aPerspectives on European politics and society aKölnaLeidenaBostoncBrilld2002- aTrimestriel 1tPerspectives on European politics and society (Online)x1568-025810aPerspectives on European politics and societyb(Print) aEuropexPolitique et gouvernementxPériodiques aEuropexHistoirexPériodiques aEuropexUnitéz1990-....xPériodiques 3aFRbAbesc20071002gAFNOR 3aFRbISSNc20030523 a0j4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t748254466db=all zContenu :sommaires depuis le n° 1 (2000)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t748254466db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 7 no. 1 (mai-2006) -....cParisdMagasins/AnnexeeP 8° 7025 aGEO RA Europe aDEW 32001460cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101001300125102000700138110001600145200005400161207002600215210002500241326001600266530005400282606006200336607007000398607007400468801003000542801002300572802000700595856005300602856006500655856012800720856010800848955006500956972000901021992004201030992001401072060849894000092687320130319051722.01 a1569-1500 aissn15691500 a0000926873 a20020516a20029999u y1frey0103 ba0 aenggeng aNL aahu uu 00aPerspectives on global development and technology 0aVol. 1, no. 1 (2002)- aLeidencBrilld2002- aTrimestriel00aPerspectives on global development and technology aTechnologiexPays en voie de développementxPériodiques aPays en voie de développementxConditions socialesxPériodiques aPays en voie de développementxConditions économiquesxPériodiques 3aFRbAbesc20060113gAFNOR 3aFRbISSNc20030203 a0j4 uhttp://www.brill.nl/m_catalogue_sub6_id10024.htm zContenu : sommaires et résumés depuis le vol.1, n°1, 20024 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=KHL&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no.1 (2002) -....cParisdMagasins/AnnexeeP 8° 6863 aZSAB aGEO RO Pays en voie de développement aDEW 338.901357nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200006900163207002900232210004800261326001600309606003600325606004800361607005600409676000800465710004300473801001300516856009000529856010800619856010100727856003700828955007000865972000900935992002300944992001600967071042113000061504820140110103903.01 a1537-5927 a0000615048 a a20039999 fre 01 ba0 aeng aUS a 0  ar aah z 0 10aPerspectives on politicsfAmerican Political Science Association 1aVol.1, no. 1 (Mar 2003)- aNew YorkcCambridge University Pressd2003- aTrimestriel aScience politiquexPériodiques aScience politiqueyEtats-UnisxPériodiques aEtats-UnisxPolitique et gouvernementxPériodiques a32002aAmerican Political Science Association 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/15375927.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=110962 zAccès libre au texte intégral.1 bvol. 1 no. 1 (mar-2003) -....cParisdMagasins/AnnexeeP 4° 7030 aZSAB aGEO RC2 Etats-Unis aDEW 320-32101038nas 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000097001502100045002473260017002926060046003097020028003557020025003838010013004088560211004219450016006329550101006489910011007490000472408000047240820131113134647.0 a0000472408 a a1868 k fre ba0 afre aFR a 0  ar aa z 0 13aLa Petite lanterneeparaissant tous les samedisfAchille de SecondignégAmédée Désandré aParisb22, rue de la Monnaiecs.n.d1868 aHebdomadaire aSatire politique françaisexPériodiques 1aSecondignébAchille de 1aDésandrébAmédée 0aFRbFNSP4 uhttp://books.google.fr/books?id=AZzSAAAAMAAJ&dq=%22La%20Petite%20lanterne%22&hl=fr&pg=PA1#v=onepage&q=%22La%20Petite%20lanterne%22&f=falsezAccès libre au texte intégral. N°1 numérisé sur Google Livres b12°009.5101 b[n°1, spécimen], 20 juin 1868 ---> n° 15, 10 oct. 1868cParisdMagasins/Annexee12°009.510 > anumer001159nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210004900179326001700228430001100245606004700256676000800303856004300311856003600354856007000390856010800460955015700568955006500725972000900790992002200799992001200821039884228000005345720130319051723.01 a0999-2170 aFNSP254055 a0000053457 a19900101a19569999 ba0 afre aFR aaca 04aLes Petites affiches aPariscJournaux judiciaires associésd1956- aHebdomadaire 1aLa Loi aDroityFrancexJurisprudencexPériodiques a3404 uhttp://www.petites-affiches.presse.fr/ zAccès libre au texte intégral4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lextenso.com zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 3e étageeDEW 340zSeuls les nos reliés sont empruntables ; les 6 derniers mois sont consultables sur place1 bno. 105 (sep-1991) -....cParisdMagasins/AnnexeeP 4° 6070 aZPAY aGEO RA4.06 France aDEW 34800763nls 2200241 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001251350018001412000052001592100027002112300024002386060047002628560070003098560108003799920022004879920012005090000941453000094145320130319051723.0 aFNSP254055 a0000941453 a19900101a19959999 ba0 afre aFR aaca  adr 04aLes Petites affichesb[Ressource électronique] aPariscLextensod1995- aRevue électronqiue aDroityFrancexJurisprudencexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lextenso.com zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aGEO RA4.06 France aDEW 34801067nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210003400175326001200209488002700221606002900248606004000277607003600317710003300353801002100386856006400407856005700471955007900528955007900607972000900686992002200695992001200717039389308000005033920130319051723.01 a0245-9507 aFNSP246894 a0000050339 a19900101a19659999 ba0 afre aFR aafu 13aLe Peuple breton aLannioncPeuple bretond1965- aMensuel 1aPobl Vreiz (0245-9515) aActualitéxPériodiques aRégionalismeyFrancexPériodiques aBretagne (France)xPériodiques02aUnion démocratique bretonne 3aFRbCCN0245-95074 uhttp://www.arbedkeltiek.com/galleg/revues/peuple_breton.htm zSommaire des derniers numéros avec un peu de retard1 bno. 433 (jan-2000) -no. 539 (dec-2008)cParisdMagasins/AnnexeeP 4° 68461 bno. 138 (mai-1975) -no. 432 (dec-1999)cParisdMagasins/AnnexeeP F° 0404 aZPAY aGEO RA4.06 France aDEW 05001054cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200002900197207003200226210004900258530002900307531001700336712003500353801003000388801002300418802000700441856019300448955006700641991002000708038771543000109531920130319051724.0 a0031-8108 accn0031-8108 aissn00318108 a0001095319 a19751012a18929999uuuy0frey0103 ba0 aeng aUS a 0  ar aaha 0uu 14aThe Philosophical Review 0av. 1- (no. 1- ); Jan. 1892- aIthaca, N.YcCornell University Pressd1892-04aThe Philosophical review 0aPhilos. rev.02aSage School of Philosophy4340 3aFRbAbesc20070222gAFNOR 3aFRbISSNc20060706 a014 uhttp://archive.org/search.php?query=title%3A%28the%20philosophical%20review%29&page=1zAccès libre au texte intégral. Périodique numérisé sur Internet Archive (1892-1920 avec lacunes)1 bno. 4 (1950) -no. 3 (1952)cParisdMagasins/AnnexeeP 8° 0995 aPériobTP02 P801035nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154207002600180210006500206210003600271210003300307210003100340326003000371326002300401326002600424606003000450856004500480856006000525955007100585972000900656991001800665992001400683038771551000015853920131014091825.01 a0031-8116 aFNSP613409 a0000158539 a19900101a19509999 ba0 aeng aNL aafa 10aPhilosophical studies 1aVol. 1, no. 1 (1950)- aMinneapolis, Minn.cUniversity of Minnesota Pressd1950-1971 aDordrechtcD. Reideld1972-1988 aDordrechtcKluwerd1988-2004 aDordrechtcSpringerd2005- aQuinze fois par anb2000- aMensuelb1989-1999 aBimestrielb1950-1988 aPhilosophiexPériodiques4 uhttp://www.wkap.nl/jrnltoc.htm/0031-8116 zContenu : sommaires depuis le vol. 77, n°1, janv. 19951 bvol. 77 no. 1 (jan-1995) -....cParisdMagasins/AnnexeeP 8° 6128 aZSAB aexempb201202 aDEW 10-1400879cas0 2200289 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108110001600126200002500142207002600167210003400193326002600227326002600253530002500279606003000304801003000334856007200364955006900436955006300505972000900568992001200577099030136000105005220130918100222.01 a1951-1787 a20060410a20069999 y0frey0103 ba0 afre aFR a 0  aafa 0 10aPhilosophie magazine 0aN° 1(2006,avr./mai)- aPariscPhilo Éditionsd2006- a10 n°s par anb2007- aBimestrielb2006-200600aPhilosophie magazine aPhilosophiexPériodiques 3aFRbAbesc20061121gAFNOR4 uhttp://www.philomag.com/zContenu : sommaires des derniers numéros1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 71591 bno. 1 (mai-2006) -....cParisdMagasins/AnnexeeP 4° 7159 aZPAY aDEW 10000931nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210005500180300005600235326001500291530004100306606004000347856002400387955007600411955008700487972000900574991001800583992001400601992001400615039957004000005779520130319051724.01 a1162-325X aFNSP268152 a0000057795 a19900101b19912000 ba0 afre aFR aaja 10aPhilosophie politique aPariscPresses universitaires de Franced1991-2000 aPublication suspendue (fin 2002), no. 11, 2000 : dr aSemestriel10aPhilosophie politiqueb(Paris. 1991) aPhilosophie politiquexPériodiques4 uhttp://www.puf.com/1 bno. 1 (oct-1991) -no. 11 (avr-2000)cParisdMagasins/AnnexeeP 8° 57941 bno. 1 (oct-1991) -no. 11 (avr-2000)cParisdBibliothèque de rechercheeP 8° 5794 aZCAD aexempb201112 aDEW 320.5 aDEW 10-1401087nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200007600163210005600239326001500295606003000310676000800340710006700348801001300415856009500428856010800523955009400631972000900725992001400734992002500748040568679000057431320130403145028.01 a1283-7091 a0000574313 a a19979999k fre ba0 afre aFR a 0  ar aai z 0 13aLe Philosophoireelaboratoire de philosophiefLe Lisible et l'illisible aNeuilly-sur-SeinecLe Lisible et l'Illisibled1997- aSemestriel aPhilosophiexPériodiques a10002aLe Lisible et l'Illisiblec(Neuilly-sur-Seine, Hauts-de-Seine) 0aFRbFNSP uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-le-philosophoire.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 10 ; no. 12 (2000) ; no. 14 (2001) -no. 36 (2011)cParisdMagasins/AnnexeeP 8° 6717 aZPAY aDEW 10-14 aGEO RA4.06 France 0101115nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210005900186210004000245210003200285320004400317326001600361606004000377606004200417801002100459856009000480856010800570955007000678972000900748991001800757992001400775038829835000005077320140109162034.01 a0048-3915 aFNSP247583 a0000050773 a19900101a19719999 ba0 aeng aUS aahu 10aPhilosophy & public affairs aPrinceton, N.J.cPrinceton University Pressd1971-2003 aMalden, Mass.cBlackwelld2004-2008 aHoboken, N.J.cWileyd2008- aLa revue n'a pas été publiée en 2002 aTrimestriel aPhilosophie politiquexPériodiques aSociologiexPhilosophiexPériodiques 3aFRbCCN0048-39154 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00483915.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (aut-1971) -....cParisdMagasins/AnnexeeP 8° 2970 aZSAB aexempb200910 aDEW 10-1401116nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210006900188210002400257326002400281326002800305326002600333326002700359430003700386517003600423606003000459856009500489856008400584955006900668972000900737991001800746992001400764039143279000014542620130319051724.01 a0191-4537 aFNSP574245 a0000145426 a19950106a19789999 ba0 aeng aGB aaha 10aPhilosophy & social criticism aChestnut Hill, Mass.cPhilosophy and Social Criticismd1978-1993 aLondoncSaged1993- a9 nos par anb2008- a7 nos par anb2004-2007 aBimestrielb1995-2003 aTrimestrielb1978-1994 1tCultural hermeneuticsx0011-286010aPhilosophy and social criticism aPhilosophiexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sagepub.co.uk/journal.aspx?pid=105730 zContenu : sommaires depuis le vol. 23, n°1, janv. 1997 ; résumés depuis 19981 bvol. 20 no. 1/2 (1994) -....cParisdMagasins/AnnexeeP 8° 6088 aZSAB aexempb201202 aDEW 10-1401026nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154210003800192326001600230606003600246606004000282606003000322801002100352856010800373856010800481955007000589972000900659991001800668992001200686992001400698038829843000003212220130319051724.01 a0048-3931 aFNSP189373 a0000032122 a19900101a19719999 ba0 amul aCA aahu 10aPhilosophy of the social sciences aNewbury Park, Calif.cSaged1971- aTrimestriel aSciences socialesxPériodiques aPhilosophie politiquexPériodiques aPhilosophiexPériodiques 3aFRbCCN0048-39314 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1971) -....cParisdMagasins/AnnexeeP 8° 2994 aZSAB aexempb201106 aDEW 300 aDEW 10-1401160cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200004000156207002600196210004400222326001200266430005700278606002300335606004800358606003100406710003500437801003000472801002300502802000700525856006400532856006100596955006500657972000900722992002100731992002200752992001200774073604119000090289820130319051725.01 a1636-676X aissn1636676X a0000902898 a20030523a20059999 0fre 0103 ba0 afre aFR aafu uu 10aPlanète paixfMouvement de la paix 1aN° 500 (mars 2005- ) aSaint-OuencMouvement de la paixd2005- aMensuel 1tCombat pour la paix, la paix en mouvementx1623-4170 aPaixxPériodiques aMouvements pacifistesyFrancexPériodiques aDésarmementxPériodiques02aMouvement de la paixc(France) 3aFRbAbesc20050905gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.mvtpaix.org/outils/planete-paix/planete-paix.php zContenu : sommaires et sélection d'articles depuis 20031 bno. 500 (mar-2005) -....cParisdMagasins/AnnexeeP 4° 2270 aZGRA aGEO RQ Universel aGEO RA4.06 France aDEW 32700928nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002000163210002400183326001800207606004400225606004500269801001300314856010800327856010800435955007000543972000900613992001600622067777031000053889020130319051725.01 a1473-0952 a0000538890 a a20029999k fre ba0 aeng aGB a 0  ar aai z 0 10aPlanning theory aLondoncSaged2002- a3 n°s par an aPlanification économiquexPériodiques aAménagement du territoirexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-2002) -....cParisdMagasins/AnnexeeP 8° 6694 aZSAB aDEW 350-35401129nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009800154210002400252326001600276530002300292606005900315606006800374676000800442710007500450856006100525856012300586955006300709972000900772992002200781992001200803039844633000003215720140110141325.01 a0987-3260 aFNSP189444 a0000032157 a19910516a19879999 ba0 afre aFR aaha 10aPlein droitela revue du GISTIfGroupe d'information et de soutien des travailleurs immigrés aPariscGISTId1987- aTrimestriel00aPlein droitbParis aEmigration et immigrationxDroityFrancexPériodiques aTravailleurs étrangersxStatut juridiqueyFrancexPériodiques a32502aGroupe d'information et de soutien des travailleurs immigrésc(Paris)4 uhttp://www.gisti.org/publications/plein-droit/index.html zContenu : sommaires depuis le n°1, octobre 1987 ; sélection d'articles en texte intégral depuis le n°27, juin 19951 bno. 1 (oct-1987) -....cParisdMagasins/AnnexeeP 4° 5287 aZCAD aGEO RA4.06 France aDEW 32301650cas0 2200409 450 00100100000000200110001000500170002101100140003803500210005203500170007310000410009010100080013110200070013910500180014610600060016411000160017020000980018620700180028421000800030232600110038245201950039351700420058851700450063053000260067560600720070167600120077371000400078580100300082580100230085580200070087885601910088595500630107695500520113999200210119199200120121299200160122410448358X000124468920130527120954.0 a1957-2522 a(OCoLC)472902476 aissn19572522 a20060704a20069999u y0frey50 ba0 afre aFR ay  ar aaku uu 10aPME...erapport OSEO sur l'évolution des PMEfdirecteur de la publication Didier Havette,... 0aVol.1 (2005)- aMaisons-AlfortcGIE OSEO serviceaPariscLa Documentation françaised2006- aAnnuel 1tPME...bRessource électroniqueorapport OSEO sur l'évolution des PMEfdirecteur de la publication Didier Havette,...cMaisons-AlfortnGIE OSEO servicenLa Documentation françaised[2006]-10aRapport OSEO sur l'évolution des PME10aPME...erapport sur l'évolution des PME10aPME...b(Paris. 2006) aPetites et moyennes entreprisesxStatistiquesxPériodiques2rameau a338.64202aObservatoire des PMEc(France)4340 3aFRbAbesc20130417gAFNOR 3aFRbISSNc20120312 a074 uhttp://www.oseo.fr/a_la_une/etudes/observatoire_des_pme/rapport_sur_l_evolution_des_pmezAccès au texte intégral du rapport depuis 2007 et synthèse uniquement de la dernière édition1 bLa dernière annéecParisd27, Salle 2e étageeDEW 338.61 b(2012)-....cParisdMagasins/AnnexeeP 4° 7334 aGEO RQ Universel aDEW 338 aDEW 310-31901207nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001300154210002700167326001700194530002600211606002900237607002500266801002100291856019200312856010800504856002600612856007400638955006900712955006300781992001200844992002500856013559214000000506220130319051726.01 a0242-6005 aFNSP107252 a0000005062 a19900101a19729999 ba0 afre aFR aa u 13aLe Point aPariscLe Pointd1972- aHebdomadaire03aLe PointbParis. 1972 aActualitéxPériodiques aFrancexPériodiques 3aFRbCCN0242-60054 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.lepoint.fr zContenu : sommaire et articles en texte intégral du dernier numéro.1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 31831 bno. 1 (sep-1972) -....cParisdMagasins/AnnexeeP 4° 3183 aDEW 050 aGEO RA4.06 France 0101152nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200009900163210002800262326001500290422004600305430003500351530003800386606004200424607005000466712007800516801001300594856006600607856003600673955010800709972000900817004044762000029306220130319051726.0 a1253-1316 a0000293062 a b19962003k fre ba0 afre aFR a 0  ar aaj z 0 10aPoint de conjoncturefInstitut national de la statistique et des études économiques (France) aPariscINSEEd1996-2003 aSemestriel 1tNote de conjoncture de l'INSEEx0766-6268 1tPoint conjoncturel,x0992-166400aPoint de conjoncturebParis. 1996 aConjoncture économiquexPériodiques aFrancexConditions économiquesxPériodiques02aInstitut national de la statistique et des études économiquesc(France) 0aFRbFNSP4 uhttp://www.insee.fr/fr/indicateur/analys_conj/conj_resume.htm zAccès libre au texte intégral1 b(1999) -(2003)cParisdMagasins/AnnexeeP 4° 2730 bisz: les n° sont reliés avec la revue principale aZPAY01633nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200013600154210003000290210004500320210003700365326001500402530002700417606003600444607004300480607003200523676000800555710009400563856004800657856010000705856008800805856010800893955006701001955005901068972000901127991001801136992002701154992002601181992001601207040387046000014293020131219170450.01 a1262-1676 aFNSP566310 a0000142930 a19941130a19949999 ba0 afre aFR aaja 10aPôle Suderevue de science politique de l'Europe méridionalefCentre comparatif d'études des politiques publiques et des espaces aMontpelliercOPPESd2005- aCastelnau-Le-LezcEd. Climatsd2004-2005 aMontpelliercCEPELd1994-[2003?] aSemestriel10aPôle SudbMontpellier aScience politiquexPériodiques aMéditerranée (région)xPériodiques aEurope du SudxPériodiques a32002aCentre comparatif d'études des politiques publiques et des espaces locauxc(Montpellier)4 uhttp://www.persee.fr/listIssues.do?key=pole zAccès libre au texte intégral à partir de 1994 à l'exception des années les plus récentes4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-pole-sud.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 1 (1994) -....cParisdMagasins/AnnexeeP 8° 6085 aZPAY aexempb201204 aGEO RL4 Méditerranée aGEO RA6 Europe du Sud aDEW 320-32101057cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200003100180207002200211210002800233326001500261530001800276606003900294606004100333606002900374710003800403801003000441801002300471802000700494856003000501856005600531955005900587992002500646992001200671139572074000118490320130319051727.01 a2104-2195 aissn21042195 a0001184903 a20100106a20099999k y0frey0103 ba0 afre aFR ay  ar aaju uu 10aPoliepolitique de l'image 1aN°1 (juin 2009)- aPariscPoli éd.d2009- aSemestriel10aPolib(Paris) aPolitique et culturexPériodiques aCommunication visuellexPériodiques aTraitementxPériodiques02aPoli-politique de l'image (Paris) 3aFRbAbesc20100202gAFNOR 3aFRbISSNc20100202 a074 uhttp://www.poli-revue.fr/ zContenu : sommaires des n°s depuis le no. 1 (2009)1 bno. 1 (2009) -....cParisdMagasins/AnnexeeP 8° 7118 aGEO RA4.06 France 01 aDEW 30600924nls 2200289 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000074001642100043002383260016002816060025002976060039003228010013003618560101003748560108004759550005005839920032005889920014006200001180933000118093320130319051727.0 a1752-4520 a0001180933 a a20079999k fre 01 ba0 aeng aGB ar aah z  adr 10aPolicingb[Ressource électronique]ea journal of policy and practice aOxfordcOxford University Pressd2007- aTrimestriel aPolicexPériodiques aSécurité nationalexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=713463 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4. 02 Grande-Bretagne aDEW 363.200937nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001341350018001502000082001682100053002502300024003033000084003273000074004113260015004856060025005007120042005258010013005678560038005809550029006180000311830000031183020130319051727.0 a0000311830 a a19969999k fre ba0 aeng aCH a 0  az aau z 0  adr 10aPolicy papers - Bank for International Settlementsb[Ressource électronique] aBaslecBank for International Settlementsd1996- aDonnées textuelles aAccès au 18/04/2000 : World Wide Web. URL : http://www.bis.org/publ/ind ex.htm aTexte intégral au format pdf, télédéchargeable avec Adobe Acrobat aCollection aPolitique monétaire02aBanque des règlements internationaux 0aFRbFNSP4 uhttp://www.bis.org/publ/index.htm1 rconsultable sur Internet01024nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210005000185326001500235606004400250607005600294710003700350801002100387856003300408856007100441955007800512955007600590972000900666992002300675992001200698039090434000005100820130319051728.01 a0146-5945 aFNSP248221 a0000051008 a19900101a19779999 ba0 aeng aUS aagu 10aPolicy review (Washington) aWashiongton, D.C.cHeritage Foundationd1977- aBimestriel aRelations internationalesxPériodiques aEtats-UnisxPolitique et gouvernementxPériodiques02aHeritage Foundation (Etats-Unis) 3aFRbCCN0146-59454 uhttp://www.policyreview.org/ zContenu : sommaires depuis le n°72, print. 1995 ; texte intégral1 bno. 25 (ete-1983) -no. 118 (avr-2003)cParisdMagasins/AnnexeeP 4° 51171 bno. 1 (ete-1977) -no. 24 (pri-1983)cParisdMagasins/AnnexeeP 8° 3977 aZSAB aGEO RC2 Etats-Unis aDEW 32400778nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210004400174326001600218606003700234801002100271856004500292856005400337955006600391972000900457991001800466992001600484038773805000003226620130319051728.01 a0032-2687 aFNSP189709 a0000032266 a19900101a19709999 ba0 aeng aNL aahu 10aPolicy sciences aDordrechtcKluwer Academic Publ.d1970- aTrimestriel aPolitique publiquexPériodiques 3aFRbCCN0032-26874 uhttp://www.wkap.nl/jrnltoc.htm/0032-2687 zContenu : sommaires depuis le vol. 27, n°1, 19941 bvol. 1 no. 1 (1970) -....cParisdMagasins/AnnexeeP 8° 2986 aZSAB aexempb200910 aDEW 350-35401345nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210002800173326001600201606003600217606003700253710003500290856005700325856005900382856012800441856010800569856010900677856010800786955007100894972000900965991001700974992001600991039084752000023840720130319051728.01 a0144-2872 aFNSP841837 a0000238407 a19900101a19809999 ba0 aeng aGB aaha 10aPolicy studies aAbingdoncCarfaxd1980- aTrimestriel aPolitique socialexPériodiques aPolitique publiquexPériodiques02aPolicy Studies Institutec(GB)4 uhttp://www.tandf.co.uk/journals/carfax/01442872.html zContenu : sommaires depuis le vol. 17, n°1, mars 19964 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=56W&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713442426db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 18 no. 1 (mar-1997) -....cParisdMagasins/AnnexeeP 8° 6378 aZSAB aexemp$201301 aDEW 320-32101589nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002700139210006200166300007200228300008700300326001600387452005000403530002700453606004900480710004400529801002100573856023300594856020600827955008301033957005701116972000901173991001801182992002301200992001601223039141799000003226720131219170514.01 a0190-292X aFNSP189710 a19900101a19722011 ba0 aeng aUS aahu 10aPolicy studies journal aPSJaUrbana, Ill.cPolicy Studies Organizationd1972-2011 aNouvelle adresse bibliographique : Malden,Ma : Blackwell Publishing aDernière édition papier 2011 ; à partir de 2012 uniquement en version en ligne. aTrimestriel 1tPolicy studies journal (Online)‎x1541-007200aPolicy studies journal aPolitique publiqueyEtats-UnisxPériodiques02aPolicy Studies Organizationc(New York) 3aFRbCCN0190-292X4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=PSJ&site=ehost-livezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=110270zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1972) -vol. 39, no. 4 (2011)cParisdMagasins/AnnexeeP 8° 31991 b(1986) -(2009)cParisdMagasins/AnnexeeP Index 0771 aZCAD aexempb201004 aGEO RC2 Etats-Unis aDEW 350-35401221nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002600139210005700165326001600222440004500238452004700283517000800330530002600338606004900364606003700413710004400450801002100494856012800515955009000643957007200733972000900805991001800814992002300832992001600855039343170000003226820131119153756.01 a0278-4416 aFNSP189711 a19900101b19812001 ba0 aeng aUS aahu 10aPolicy studies review aUrbana, Ill.cPolicy Studies Organizationd1981-2001 aTrimestriel 1tThe Review of policy researchx1541-132X 1tPolicy studies review (online),x2162-630810aPSR aPolicy studies review aPolitique publiqueyEtats-UnisxPériodiques aPolitique publiquexPériodiques02aPolicy Studies Organizationc(New York) 3aFRbCCN0278-44164 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=PYW&site=ehost-live1 bvol. 1 no. 1 (aut-1981) -vol. 18 no. 4 (hiv-2001)cParisdMagasins/AnnexeeP 8° 44431 bvol. 6 (1986) -vol. 12 (1993)cParisdMagasins/AnnexeeP Index 0771 aZCAD aexempb201106 aGEO RC2 Etats-Unis aDEW 350-35401033nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001000154210002800164326001500192430004800207606003600255606003600291606004400327606004400371676001000415710002400425856003100449955006800480955005900548972000900607992003900616992001200655992001600667040212440000005528720130319051728.01 a1026-9487 aFNSP259305 a0000055287 a19900101a19919999 ca0 arus aRU aaga 10aPolis aMoskvacProgressd1991- aBimestriel 1aRabočij klass i sovremennyi mirx0321-2017 aSciences socialesxPériodiques aScience politiquexPériodiques aScience politiqueyRussiexPériodiques aSciences socialesyRussiexPériodiques a943.702aAkademiâ nauk SSSR4 uhttp://www.politstudies.ru1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 943.71 bno. 1 (1991) -....cParisdMagasins/AnnexeeP 8° 2965 aZCAD aGEO RA7.21 Russie (depuis 1991-92) aDEW 300 aDEW 320-32100916nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006100154210002700215326001700242530001900259606003600278607005200314856007600366856004100442955007000483972000900553991001800562992002200580992001200602036253227000003433820140108102758.01 a1120-9488 aFNSP199045 a0000034338 a19900101a19879999 ba0 aita aIT aaia 00aPolisericerche e studi su società e politica in Italia aBolognacMulinod1987- a3 nos par an00aPolisbBologna aScience politiquexPériodiques aItaliexPolitique et gouvernementxPériodiques4 uhttp://www.mulino.it/edizioni/riviste/scheda_rivista.php?issn=1120-9488 zSommaires depuis le n°1, avril 19971 bvol. 1 no. 1 (avr-1987) -....cParisdMagasins/AnnexeeP 8° 5143 aZSAB aexempb201011 aGEO RA6.03 Italie aDEW 94501104nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210003900193326001600232607002600248710006400274801002100338830005400359856004900413856006400462955006700526957015100593972000900744992002300753992001400776038774062000003228420130319051728.01 a0032-2970 aFNSP189760 a0000032284 a19900101a19569999 ba0 aeng aUS aahu 14aThe Polish review (New York. 1956) aNew York, NYcPolish reviewd1956- aTrimestriel aPolognexPériodiques02aPolish Institute of Arts and Sciences in America (New York) 3aFRbCCN0032-2970 aVol.1, n°1, 1956---> vol.29, 1984 < P 8° 1760 >4 uhttp://www.piasa.org/polishreview/infopr.htm4 zContenu : accès aux sommaires depuis le vol. 1, n°1, 19421 bvol. 30 no. 1 (1985) -....cParisdMagasins/AnnexeeP 8° 17601 z(1956) -(1966) ; vol. 1 (1956) -vol. 26 (1981) dans le vol. 26 no. 4 (1981) ; vol. 26 (1981) -vol. 40 (1995)cParisdMagasins/AnnexeeP Index 0120 aZPAY aGEO RA5.11 Pologne aDEW 943.801169nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004400139210005300183326002200236326002200258530001300280606005400293607005800347710004800405801002100453856013300474955009300607957007200700972000900772991001800781992002800799992001600827039376850000003247420130607140244.01 a0303-9757 aFNSP190233 a19900101a19729999 ba0 aspa aVE aaju 10aPoliteiaerevista de ciencias politicas aCaracascInstituto de estudios políticosd1972- aSemestrielb2000- aAnnuelb1989-199900aPoliteia aScience politiqueyAmérique latinexPériodiques aAmérique latinexPolitique économiquexPériodiques02aInstituto de estudios políticosc(Caracas) 3aFRbCCN0303-97574 uhttp://www2.scielo.org.ve/scielo.php?script=sci_issues&pid=0303-9757&lng=es&nrm=isozAccès libre au texte intégral depuis 20011 bvol. 1 (1972) -vol. 11 (1982) ; vol. 13 (1989) -....cParisdMagasins/AnnexeeP 8° 31471 bvol. 1 (1972) -vol. 20 (1997)cParisdMagasins/AnnexeeP Index 0809 aZGRA aexempb200910 aGEO RD Amérique latine aDEW 320-32100883nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210002700179326001600206606003100222606005000253801002100303856007600324856005000400955007000450972000900520991001800529992002200547992001200569038774151000005055720130319051728.01 a0032-3063 aFNSP247250 a0000050557 a19900101a19709999 ba0 aita aIT aahu 10aPolitica del diritto aBolognacMulinod1970- aTrimestriel aDroityItaliexPeriodiques aInstitutions politiquesyItaliexPériodiques 3aFRbCCN0032-30634 uhttp://www.mulino.it/edizioni/riviste/scheda_rivista.php?issn=0032-3063 zContenu : sommaires depuis le n°1, mars 19901 bvol. 1 no. 1 (jul-1970) -....cParisdMagasins/AnnexeeP 8° 2842 aZCAD aexempb200910 aGEO RA6.03 Italie aDEW 34900879nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002300139210004800162326001800210530004800228606003700276606004500313856005800358856004200416955007000458972000900528991001800537992002200555992001200577036253251000003250020131029115517.01 a1120-9496 aFNSP190278 a19910522a19859999 ba0 aita aIT aaia 00aPolitica economica aBolognacSocietà Editrice il Mulinod1985- a3 n°s par an 0aPolitica economicabBologna. Testo stampato aEconomie politiquexPériodiques aEconomie politiqueyItaliexPériodiques4 uhttp://www.mulino.it/edizioni/riviste/politicaeco.htm zContenu : sommaire du dernier numéro1 bvol. 3 no. 1 (avr-1987) -....cParisdMagasins/AnnexeeP 8° 5157 aZCAD aexempb201011 aGEO RA6.03 Italie aDEW 33001121nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210005000177326002200227326002700249606004400276607005000320676000800370710007400378856003600452856006600488955006700554955006700621972000900688991001800697992002300715992002100738992001200759039203093000005295020130319051728.01 a0213-6856 aFNSP252859 a0000052950 a19900101a19879999 ba0 aspa aES aaga 10aPolítica exterior aMadridcEstudios de política exteriord1987- aBimestrielb1994- aTrimestrielb1987-1993 aRelations internationalesxPériodiques aEspagnexRelations extérieuresxPériodiques a32702aInstituto de cuestiones internacionales y política exterior (Madrid)4 uhttp://www.politicaexterior.com zContenu : sommaires et résumés depuis le vol. 1, n°1, 19871 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 5 no. 22 (1991) -....cParisdMagasins/AnnexeeP 8° 5780 aZSAB aexempb201111 aGEO RA6.02 Espagne aGEO RQ Universel aDEW 32701169nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002100163210003900184326001600223530003500239606004400274676000800318710008000326801001300406856005200419856010000471955006700571955018400638972000900822992001200831048888028000058305720130731143806.01 a1518-6660 a0000583057 a a19929999k fre ba0 apor aBR a 0  ar aah z 0 10aPolitica externa aSão PaulocEd. Paz e Terrad1992- aTrimestriel00aPolitica externab(São Paulo) aRelations internationalesxPériodiques a32702aUniversidade de São PaulobPrograma de política internacional e comparada 0aFRbFNSP4 uhttp://www.politicaexterna.com.br/Principal.htm zContenu : sommaires depuis le volume 1, n°1, juin 1992 et quelques articles en texte intégral1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bVol. 8 no. 1 (1999) ; vol. 8 no. 3 (2000) ; vol. 11 no. 1 (2002) ; vol. 11 no. 4 (2003) ; vol. 12 no. 1 (2003) ; vol. 12 no. 3 (dec-2003) -....cParisdMagasins/AnnexeeP 8° 6724 aZPAY aDEW 32701063nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002800139210002800167326001600195530004200211606004400253607004900297710010800346801002100454856002700475856004000502955006700542955006700609972000900676991001800685992002200703992001200725038774186000003260320131017150822.01 a0032-3101 aFNSP190528 a19900101b19692005 ba0 amul aIT aayu 10aPolitica internazionale aRomacIPALMOd1969-2005 aIrrégulier 0aPolitica internazionalebEd. italiana aRelations internationalesxPériodiques aItaliexRelations extérieuresxPériodiques02aIstituto per le relazioni tra l'Italia e i paesi dell' Africa, America latina e Medio Orientec(Italie) 3aFRbCCN0032-31014 uhttp://www.ipalmo.com/ zContient le sommaire du dernier no.1 bno. 1 (1995) -no. 5 (2001)cParisdMagasins/AnnexeeP 4° 65791 bno. 2 (1969) -no. 4 (1994)cParisdMagasins/AnnexeeP 8° 2770 aZGRA aexempb201310 aGEO RA6.03 Italie aDEW 32701012nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210007400179326001500253606003600268606004500304710006300349856004300412856011800455955007400573972000900647991001800656992002000674992001600694071424768000015872920130925161105.01 a1405-1060 aFNSP613910 a0000158729 a19900101a19949999 ba0 aspa aMX aaja 10aPolítica y gobierno aMéxicocCIDE, Centro de investigación y docencia económicasd1994- aSemestriel aScience politiquexPériodiques aScience politiqueyMexiquexPériodiques02aCentro de investigación y docencia económicasc(Mexique)4 uhttp://www.politicaygobierno.cide.edu/ zContenu : sommaires, résumés et texte intégral depuis le vol.1, n°1, 1994 (à l'exception du dernier numéro)1 bvol. 1 no. 1 (jan/jun-1994) -....cParisdMagasins/AnnexeeP 8° 6130 aZSAB aexempb201202 aGEO RD1 Mexique aDEW 320-32101211nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210009000188326001800278606004500296606005400341606005400395606004500449710008500494856008100579856007900660955007400739972000900813992002800822992002300850992001200873036308129000007901720130319051728.01 a1130-8001 aFNSP354558 a0000079017 a19900101a19889999 ba0 aspa aES aaia 10aPolítica y sociedad (Madrid) aMadridcUniversidad complutense. Facultad de ciencias políticas y sociologíad1988- a3 n°s par an aSciences socialesyEspagnexPériodiques aScience politiqueyAmérique latinexPériodiques aSciences socialesyAmérique latinexPériodiques aScience politiqueyEspagnexPériodiques02aUniversidad complutense de MadridbFacultad de ciencias políticas y sociología4 uhttp://www.ucm.es/BUCM/revistasBUC/portal/modulos.php?name=Revistas2&id=POSO zContenu : sommaires, résumés et texte intégral depuis le volume 1, 19881 bno. 1 (1988) ; no. 9 (1991) -....cParisdMagasins/AnnexeeP 4° 6165 aZSAB aGEO RD Amérique latine aGEO RA6.02 Espagne aDEW 30001133nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001322000022001392100047001613260012002086010066002206060048002866060037003347100052003718010021004238560037004448560078004819550092005599550092006519720009007439910018007529920023007709920014007930000032605000003260520130319051728.01 a0032-3128 aFNSP190531 a0000032605 a19900101b19452008 ba0 aeng aUS10aPolitical affairs aNew York, NYcPolitical affairsd1945-2008 aMensuel02aCommunist party of the United States of AmericaxPériodiques aPartis politiquesyEtats-UnisxPériodiques aPartis communistesxPériodiques02aCommunist Party of the United States of America 3aFRbCCN0025/293X4 uhttp://www.politicalaffairs.net/ zContenu : texte intégral des articles depuis 2004, sommaires depuis 20021 bvol. 78 no. 2 (fev-1999) - vol. 86 no 11 (dec-2007)cParisdMagasins/AnnexeeP 4° 68171 bvol. 31 no. 10 (oct-1952) -vol. 78 no. 1 (jan-1999)cParisdMagasins/AnnexeeP 8° 1142 aZCAD aexempb201201 aGEO RC2 Etats-Unis aDEW 320.500973nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000230015421000340017732600160021160600420022760600390026980100210030885600900032985601080041995500700052797200090059799100180060699200330062499200140065703914254X000003260620130319051728.01 a0190-9320 aFNSP190533 a0000032606 a19900101a19799999 ba0 aeng aUS aahu 10aPolitical behavior aNew YorkcPlenum Pressd1979- aTrimestriel aParticipation politiquexPériodiques aSociologie politiquexPériodiques 3aFRbCCN0190-93204 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01909320.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (pri-1979) -....cParisdMagasins/annexeeP 8° 4312 aZSAB aexempb201103 aGEO RS Sans aspect régional aDEW 306.201242nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210003800182326001600220430005500236606003600291606005700327606005700384856005100441856005900492856010900551856010800660955007400768972000900842991001800851992002300869992001200892040284433000006408920130319051728.01 a1058-4609 aFNSP293669 a0000064089 a19900101a19929999 ba0 aeng aUS aaha 00aPolitical communication aLondoncTaylor and Francisd1992- aTrimestriel 1aPolitical communication and persuasion,x0195-7473 aLangage politiquexPériodiques aCommunication en politiqueyEtats-UnisxPériodiques aHommes politiquesyEtats-UnisxLangagexPériodiques4 uhttp://www.tandf.co.uk/journals/listings/p.asp zContenu : table des matières depuis (1997)vol.14:n°14 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713774515db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 9 no. 1 (jan/mar-1992) -....cParisdMagasins/AnnexeeP 8° 4599 aZSAB aexempb201010 aGEO RC2 Etats-Unis aDEW 30201374nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002500139210003900164300004400203326002200247326002700269452004600296530002500342606004000367710005000407801002100457856012800478856010800606856009000714856010800804955007100912972000900983991001800992992001401010039106403000003262220130910121817.01 a0162-895X aFNSP190569 a19900101a19799999 ba0 aeng aUS aagu 10aPolitical psychology aCambridge, Mass.cBlackwelld1979- aPublié par Plenum Press puis Blackwell aBimestrielb2004- aTrimestrielb1979-2003 1tPolitical psychology (Online),x1467-9221 aPolitical psychology aPsychologie politiquexPériodiques02aInternational Society of Political Psychology 3aFRbCCN0162-895X4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=BS5&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0162895X.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (prin-1979) -....cParisdMagasins/AnnexeeP 8° 4241 aZSAB aexempb201106 aDEW 306.201096nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210003900178326001600217530004500233607006100278676000800339801002100347856005100368856007800419955006700497955009700564957005700661972000900718992003100727992001200758038774224000000507220130319051731.01 a0032-3179 aFNSP107262 a0000005072 a19900101a19309999 ba0 aeng aGB aahu 10aPolitical quarterly aLondoncPolitical Quarterlyd1930- aTrimestriel 0aPolitical quarterlybLondon. 1930. Print aGrande-BretagnexPolitique et gouvernementxPériodiques a320 3aFRbCCN0032-31794 uhttp://www.blackwell-synergy.com/toc/poqu/78/3 zContenu : sommaires et résumés depuis le vol. 68, n°1, janv.-mars 19971 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 b(1930) -(1940) ; vol. 14 no. 1 (jan-1943) -....cParisdMagasins/AnnexeeP 8° 0041wLacunes1 b(1930) -(1978)cParisdMagasins/AnnexeeP Index 0330 aZSAB aGEO RA4.02 Grande-Bretagne aDEW 32401307nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210004600187326001600233430004800249606004800297710004800345856009000393856010800483856008100591955006900672955007100741955009100812972000900903991001800912992002300930992001600953040299813000009512420131219170550.01 a1065-9129 aFNSP415868 a0000095124 a19900101a19939999 ba0 aeng aUS aaha 10aPolitical research quarterly aSalt Lake CitycUniversity of Utahd1993- aTrimestriel 1aWestern political quarterlyxISSN 0043-4078 aScience politiqueyEtats-UnisxPériodiques02aUniversity of UtahbInstitute of Government4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/10659129.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://prq.sagepub.com/current.dtl1 bL'année en courscParisdBibliothèque de rechercheeP 4° 70071 bvol. 56 no. 1 (mar-2003) -....cParisdMagasins/AnnexeeP 4° 70071 bvol. 46 no. 1 (mar-1993) -vol. 55 no. 4 (dec-2002)cParisdMagasins/AnnexeeP 8° 0524 aZCAD aexempb201111 aGEO RC2 Etats-Unis aDEW 320-32101680nas 2200421 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154207002500186210005000211326001600261606003600277606004800313676000800361710004500369801002100414856002900435856006500464856009000529856010800619856010100727856010800828955006700936955006901003955006301072957005701135972000901192991001801201992002301219992001601242038774267000000507820131219170640.01 a0032-3195 aFNSP107268 a0000005078 a19900101a18869999 ba0 aeng aUS aahu 10aPolitical science quarterly 1avol.1 no. 1 (1886) - aNew YorkcAcademy of Political Scienced1886- aTrimestriel aScience politiquexPériodiques aScience politiqueyEtats-UnisxPériodiques a32002aAcademy of Political Sciencec(New York) 3aFRbCCN0032-31954 uhttp://www.psqonline.org zContenu : sommaires et résumés depuis le n°1, print. 19764 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00323195.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=108802 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bL'année en courscParisdBibliothèque de rechercheeP 8° 00391 bno. 1 (mar-1886) -....cParisdMagasins/AnnexeeP 8° 00391 b(1886) -(1930)cParisdMagasins/AnnexeeP Index 0090 aZCAD aexempb201103 aGEO RC2 Etats-Unis aDEW 320-32101390nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005300154207001700207210002900224326001600253606003600269676000800305710005600313801002100369856007400390856007200464856010100536856010800637955006700745955006900812955007000881957005200951972000901003992001601012038774313000000510020131219170838.01 a0032-3217 aFNSP107320 a0000005100 a19900101a19539999 ba0 aeng aGB aahu 10aPolitical studiesfPolitical Studies Association 1aFeb.1953---> aOxfordcBlackwelld1953- aTrimestriel aScience politiquexPériodiques a32002aPolitical Studies Association of the United Kingdom 3aFRbCCN0032-32174 uhttp://www.blackwellpublishers.co.uk/journal.asp?ref=0032-3217&site=1 zContenu : sommaires et résumés depuis le vol. 45, n°1, mars 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100909 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bL'année en courscParisdBibliothèque de rechercheeP 8° 11741 bvol. 1 no. 1 (fev-1953) -....cParisdMagasins/AnnexeeP 8° 11741 b1953-1962cParisdMagasins/AnnexeeP Index 0228 aZCAD aDEW 320-32101181nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002100139210003800160326002200198326002700220530002100247606004000268801002100308856017500329856019500504955006900699955007000768972000900838991001800847992001400865038892146000003284220131219170925.01 a0090-5917 aFNSP191080 a19900101a19739999 ba0 aeng aUS aagu 10aPolitical theory aNewbury Park, Calif.cSaged1973- aBimestrielb1997- aTrimestrielb1973-199600aPolitical theory aPhilosophie politiquexPériodiques 3aFRbCCN0090-59174 uhttps://acces-distant.sciences-po.fr/fork?http://ptx.sagepub.com/zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00905917.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bL'année en courscParisdBibliothèque de rechercheeP 8° 33741 bvol. 1 no. 1 (fev-1973) -....cParisdMagasins/AnnexeeP 8° 3374 aZCAD aexempb201005 aDEW 320.501233nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002200163210005500185326002200240326002700262430004600289517002400335530003900359606004400398607005600442710004200498801001300540856006000553856011400613955007100727957001700798972000900815992002300824992001200847094889708000042977220130319051732.01 a1555-5623 a0000429772 a a20019999k fre ba0 aeng aUS a 0  ar aag z 0 10aPolitics & policy aStatesboro, GAcGeorgia Southern Universityd2001- aBimestrielb2008- aTrimestrielb2001-2007 1tSoutheastern political review,x0730-217710aPolitics and policy00aPolitics & policybStatesboro, Ga. aRelations internationalesxPériodiques aEtats-UnisxPolitique et gouvernementxPériodiques02aGeorgia Political Science Association 0aFRbFNSP4 uhttp://class.georgiasouthern.edu/pap/Pages/volumes.html zContient : sommaires, résumés et texte intégral (sauf dernier volume) depuis le volume 29, n°1, mars 20011 bvol. 29 no. 1 (mar-2001) -....cParisdMagasins/AnnexeeP 8° 32691 eP Index 0806 aZSAB aGEO RC2 Etats-Unis aDEW 97300933nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154207003100177210003800208326001600246517002500262606003600287801002100323856007000344856010800414955007000522972000900592991001800601992001200619038774372000003297620131025110548.01 a0032-3292 aFNSP195492 a0000032976 a19900101a19709999 ba0 aeng aUS aahu 10aPolitics & society 1aVol. 1, no. 1 (Nov. 1970)- aNewbury Park, Calif.cSaged1970- aTrimestriel10aPolitics and society aSciences socialesxPériodiques 3aFRbCCN0032-32924 uhttps://acces-distant.sciences-po.fr/fork?http://pas.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (nov-1970) -....cParisdMagasins/AnnexeeP 8° 2921 aZSAB aexempb201004 aDEW 30001218nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210002900180326001800209517002200227517006100249606005300310710005600363801002100419856007100440856007300511856010500584856010800689955007000797972000900867992001600876039315215000003294420130319051732.01 a0263-3957 aFNSP195414 a0000032944 a19900101a19819999 ba0 aeng aGB aaju 10aPolitics (Manchester) aOxfordcBlackwelld1981- a3 n°s par an10aPolitics (Oxford)10aPoliticsesurveys, debates and controversies in politics aScience politiqueyGrande-BretagnexPériodiques02aPolitical Studies Association of the United Kingdom 3aFRbCCN0263-39574 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0263-3957 zContenu : sommaires et résumés depuis le vol. 17, n°1, fév. 19974 uhttps://acces-distant.sciences-po.fr/fork?http://www-fr.ebsco.com/online/direct.asp?JournalID=100910 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (avr-1981) -....cParisdMagasins/AnnexeeP 4° 5196 aZCAD aDEW 320-32101179nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200012400163210005600287326002300343326002900366517003900395517000800434606004600442606004000488710007100528801001300599856002800612856010800640955007000748972000900818992001400827067775381000050512820130319051732.01 a1470-594X a0000505128 a a20029999k fre ba0 aeng aGB a 0  ar aai z 0 10aPolitics, philosophy & economicsePPEfin association with the Murphy Institute of Political Economy, Tulane University aLondonaThousand Oaks, CAcSage publicationsd2002- aTrimestriel$d2008- a3 n°s par an$d2002-200710aPolitics, philosophy and economics10aPPE aSciences sociales et moralexPériodiques aPhilosophie politiquexPériodiques02aMurphy Institute of Political Economyc(La Nouvelle-Orléans, La.) 0aFRbFNSP4 uhttp://ppe.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (fev-2002) -....cParisdMagasins/AnnexeeP 8° 6669 aZSAB aDEW 320.501168cas0 2200337 450 001001000000002001100010005001700021011001400038035001500052100004100067101001300108102000700121105001800128106000600146110001600152200003400168207003100202210003100233326002300264430006200287606003200349606004000381606003200421606003500453801003000488856008400518856010800602955007100710992001600781992003300797153374586000121873220130319051732.01 a2156-7689 a0001218732 a20110630a20119999k y0frey50 ba0 aenggeng aGB ay 0  ar aaha 0uu010aPolitics, religion & ideology 0aVol. 12, no.1 (mars 2011)- aAbingdoncRoutledged2011- aTrimestrielb2011- 1tTotalitarian movements and political religionsx1469-0764 aTotalitarismexPériodiques aReligion et politiquexPériodiques aAutoritarismexPériodiques aReligion et EtatxPériodiques 3aFRbAbesc20110927gAFNOR4 uhttps://acces-distant.sciences-po.fr/fork?http://www.tandfonline.com/loi/ftmp21 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 12 no. 1 (mar-2011) -....cParisdMagasins/AnnexeeP 8° 6579 aDEW 320-321 aGEO RS Sans aspect régional01163nls 2200253 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281350018001342000097001522100063002493300252003126060063005646060055006278010013006828300010006958560125007058560079008300000769581000076958120130319051732.0 a0000769581 a d20009999k fre 01 0 aeng aUS ay z y  az adr 10aPolitics and international relationsb[Ressource électronique]ea SAGE full-text collection aThousand OakscSage:aBethesdacdistributed by CSAd2000?- aContient plus de 18.000 articles en texte intégral provenant de 23 revues en science politique, relations internationales et area studies. Possibilité de chercher par titre de revue, par auteur d'articles ou par sujet. Mise à jour hebdomadaire. aRelations internationalesxPériodiquesxBases de données aScience politiquexPériodiquesxBases de données 0aFRbFNSP amf/dm4 uhttps://acces-distant.sciences-po.fr/fork?http://uk1.csa.com/ids70/quick_search.php?SID=8f3214203a2b614e76affff56c5909be4 zConsultation : uniquement à partir des postes publics de la Bibliothèque01035cas0 2200325 450 001001000000002001100010005001700021011001400038035002100052035001700073100004100090101000800131102000700139105001800146106000600164110001600170200002600186207003300212210005200245326002300297606004000320801003000360801002300390802000700413856006400420856010800484955007000592992001400662992003300676131883992000124922520131007170149.01 a1755-0483 a(OCoLC)224948885 aissn17550483 a20090311a20089999u y0frey50 ba0 aeng aGB ay 0  ar aaia 0uu 00aPolitics and religion 0aVol. 1, No 1 ( avril 2008 -) aCambridge [u.a.]cCambridge Univ. Pressdc2008- aTrimestrielb2008- aReligion et politiquexPériodiques 3aFRbAbesc20130129gAFNOR 3aFRbISSNc20130121 a024 uhttp://journals.cambridge.org/action/displayJournal?jid=RAP zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 1 (avr-2012) -....cParisdMagasins/AnnexeeP 8° 7216 aDEW 20-29 aGEO RS Sans aspect régional01097nas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101001800125102000700143105001800150106000600168110001600174200008200190210007300272510002600345510003000371530002800401606002700429606004000456801003000496801002300526856004700549856006200596955006600658992002100724992001400745140689729000118458720131007131700.01 a1820-6581 aissn18206581 a0001184587 a20100218a20079999 0frey0103 ba0 asccaengafre aRS ay  ar aaj 10aPolitikologija religijed= Politics and religiond= Politologie des religions aBeogradcCentar za proučavanje religije i versku tolerancijud2007-10aPolitics and Religion10aPolitologie des religions10aPolitikologija religije aReligionxPériodiques aReligion et politiquexPériodiques 3aFRbAbesc20100218gAFNOR 3aFRbISSNc200806014 uhttp://www.politicsandreligionjournal.com/ zContient le sommaire des n°s et le résumé des articles1 bvol. 2 no. 1 (2008) -....cParisdMagasins/AnnexeeP 8° 7123 aGEO RQ Universel aDEW 20-2901335nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000580015421000610021232600240027332600260029760600520032360600360037571000500041180100210046185601030048285601080058585601090069385601080080295500700091097200090098099100200098903930227X000003299120130319051735.01 a0258-9346 aFNSP195519 a0000032991 a19900101a19749999 ba0 amul aGB aaju 10aPolitikoneSouth African journal of political studies aPretoriacStaatkundige Vereniging van Suid-Afrikad1974- a3 nos par anb2006- aSemestrielb1974-2005 aScience politiqueyAfrique du SudxPériodiques aScience politiquexPériodiques02aPolitical Science Association of South Africa 3aFRbCCN0258-93464 uhttps://acces-distant.sciences-po.fr/fork?http://eJournals.ebsco.com/Journal2.asp?JournalID=104654 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713442999db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jun-1974) -....cParisdMagasins/AnnexeeP 8° 3967 aZCAD aexempb201009xx01096cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200001400174210003200188326001500220517003200235530002700267606004700294606004600341607004700387801003000434801002300464802000700487856005300494856009700547955006500644992002500709992001200734068804083000117929820130319051735.01 a1372-908X aissn1372908X a0001179298 a20020530a19979999 0fre 0103 ba0 afre aBE ay  aag 10aPolitique aBruxellescPolitiqued1997- aBimestriel10aPolitique, revue de débats10aPolitiqueb(Bruxelles) aVie intellectuelleyBelgiquexPériodiques aIdées politiquesyBelgiquexPériodiques aBelgiquexVie intellectuellexPériodiques 3aFRbAbesc20080130gAFNOR 3aFRbISSNc20020530 a0m4 uhttp://politique.eu.org/archives/1997/index.html zContient : sommaires plus ou moins détaillés et résumés d'articles depuis le no. 1, 19971 bno. 58 (fev-2009) - ….cParisdMagasins/AnnexeeP 4° 7261 aGEO RA4. 04 Belgique aDEW 94001207nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154207003300178210002700211326001600238530003100254607002600285676000800311710006300319711007600382801002100458856005800479856012200537955006600659955006200725972000900787991001800796992001900814992001200833039385663000000510120131219171007.01 a0244-7827 aFNSP107324 a0000005101 a19900101a19819999 ba0 afre aFR aahu 10aPolitique africaine 1a1ère an., no 1(janv. 1981)- aPariscKarthalad1981- aTrimestriel10aPolitique africainebParis aAfriquexPériodiques a96002aCentre d'études et de recherches internationalesc(Paris)02aCentre de recherche et d'étude sur les pays d'Afrique orientalec(Pau) 3aFRbCCN0244-78274 uhttp://www.politique-africaine.com/numeros/liste.html zContenu : texte intégral du n°1, janv. 1981 au n°81, mars 2001 ; sommaires et résumés depuis le n°82, juin 20011 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9601 bno 1 (jan-1981) -....cParisdMagasins/AnnexeeP 8° 4357 aZCAD aexempb201104 aGEO RE Afrique aDEW 96001275cas0 2200385 450 00100100000000200110001000500170002101100140003803500170005203500150006910000410008410100080012510200070013310600060014011000160014620000260016220700280018821000300021621000410024632600180028760700560030560700530036167600080041471000840042280100300050680100230053680200070055985600800056685600700064695500660071695500630078297200090084599200230085499200120087708711237X000087687520131014181831.01 a1771-8848 aissn17718848 a0000876875 a20050513a20059999 y0frey0103 ba0 afre aFR ar aaiu uu 10aPolitique américaine 0aN°1 (2005, printemps)- aPariscL'Harmattand2012- aPariscChoiseul éditionsd2005-2011 a3 n°s par an aEtats-UnisxPolitique et gouvernementxPériodiques aEtats-UnisxRelations extérieuresxPériodiques a97002aInstitut Choiseul pour la politique internationale et la géoéconomiec(Paris) 3aFRbAbesc20050905gAFNOR 3aFRbISSNc20050601 a074 uhttp://www.editions-harmattan.fr/index.asp?navig=catalogue&obj=revue&no=881 zSommaires des n°s et résumés des articles depuis le n°1, 20051 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9701 bno. 1 (pri-2005) -....cParisdMagasins/AnnexeeP 8° 6835 aZPAY aGEO RC2 Etats-Unis aDEW 97001406nas 2200373 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000280015421000660018232600250024832600260027343000550029960600360035460600640039067600080045471000480046285602030051085600360071385600580074985600360080795500670084395500600091097200090097099100180097999200190099799200160101603643762X000019686620130319051736.01 a1203-9438 aFNSP722405 a0000196866 a19900101a19959999 ba0 afre aCA aaia 10aPolitique et sociétés aMontréalcSociété québécoise de science politiqued1995- a3 n°s par anb1997- aSemestrielb1995-1996 1aRevue québécoise de science politiquex1189-9565 aScience politiquexPériodiques aScience politiqueyCanadayQuébec (province)xPériodiques a32002aSociété québécoise de science politique4 uhttps://acces-distant.sciences-po.fr/fork?http://web.ebscohost.com/ehost/detail?sid=162696fd-2a61-4576-9562-2ed1d2d286cc%40sessionmgr14&vid=1&hid=13&bdata=JnNpdGU9ZWhvc3QtbGl2ZQ%3d%3d#db=poh&jid=LT1 zAccès libre au texte intégral4 uhttp://www.erudit.org/revue/ps/2012/v31/n1/index.html zAccès libre au texte intégral1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 28 (1995) -....cParisdMagasins/AnnexeeP 8° 4562 aZSAB aexempb201003 aGEO RC1 Canada aDEW 320-32101925nas 2200481 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154207004200180210006400222210006400286210007100350210003700421210004900458300003400507326002300541326002600564488009200590530003300682606004400715606003200759676000800791710005300799801002100852856009900873856010800972856002601080856006201106955006701168955008801235955006901323972000901392992002101401992001201422992000901434039226662000000510420131219171226.01 a0032-342X aFNSP107327 a0000005104 a19900101a19369999 ba0 afre aFR aahu 10aPolitique étrangère 1aa[1ère année], no. 1 (févr. 1936)- aPariscCentre d'études de politique étrangèred1936-1940 aPariscCentre d'études de politique étrangèred1945-1979 aPariscInstitut français des relations internationalesd1979-2004 aPariscIFRIcA. Colind2005-2008 aPariscIFRIcDocumentation Françaised2009- aN' a pas paru de 1941 à 1944 aTrimestrielb1980- aBimestrielb1936-1979 1aLettre d'information - Institut français des relations internationalesxISSN 0754-535510aPolitique étrangèrebParis aRelations internationalesxPériodiques aGéopolitiquexPériodiques a32702aInstitut français des relations internationales 3aFRbCCN0032-342X4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-politique-etrangere.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr/ zContenu : accès libre au texte intégral de 1936 à 20051 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bno. 1 (1936) -no. 2 (1940) ; no. 1 (1945) -....cParisdMagasins/AnnexeeP 8° 00071 bL'année en courscParisdBibliothèque de rechercheeP 8° 0007 aZCAD aGEO RQ Universel aDEW 327 aPBUL01152nas 2200313 i 450 002001100000005001700011011001400028100004100042101000800083102000700091105001800098106000600116110001600122200005800138207002400196210003100220326001700251601003600268607007300304676001200377710007500389801001300464856020500477955006500682955005900747972000900806992001400815992000900829000031610020140106134453.01 a1623-6297 a a20009999k fre ba0 afre aFR a 0  ar aai z 0 10aPolitique européennefPôle européen de Sciences-po 1ano 1 (avril 2000) - aPariscL' Harmattand2000- a3 nos par an02aUnion européennexPériodiques aPays de l'Union européennexPolitique et gouvernementxPériodiques a327.06502aFondation nationale des sciences politiquesc(France)bPôle européen 0aFRbFNSP uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-politique-europeenne.htm?zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, 1er étageeDEW 327.0651 bno. 1 (2000) -....cParisdMagasins/AnnexeeP 8° 6525 aZCAD aDEW 341.2 aPBUL01072nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000290015421000430018332600160022653000420024260600440028467600080032880100210033685600440035785601370040195500670053895500630060595500690066897200090073799200120074603932964X000000511920131220095719.01 a0221-2781 aFNSP107344 a0000005119 a19900101a19789999 ba0 afre aFR aahu 10aPolitique internationale aPariscPolitique internationaled1978- aTrimestriel00aPolitique internationalebParis. 1978 aRelations internationalesxPériodiques a327 3aFRbCCN0221-27814 uhttp://www.politiqueinternationale.com/ zContenu : Sommaires depuis le vol. 1,no 1, automne 1978.Texte intégral (sauf les trois derniers numéros parus) depuis n°90, 2001.1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bno. 1 (aut-1978) -....cParisdMagasins/AnnexeeP 8° 40861 bL'année en courscParisdBibliothèque de rechercheeP 8° 4086 aZPAY aDEW 32701465nas 2200349 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200010800148210002300256300011700279326002100396326002200417430005900439452007300498530004400571606005300615710006700668801001300735856021800748955005500966972000901021991001801030992001601048992005101064040238024000031394420131011111622.01 a1029-4317 a a19979999k fre ba0 afre aFR a 0  ar aak z 0 10aPolitiques agricoles des pays de l'OCDEfOrganisation de coopération et de développement économiques aPariscOCDEd1997- aPublié un an sur deux en alternance avec "Politiques agricoles des pays de l'OCDE : panorama" à partir de 2004 aBisannuelb2004- aAnnuelb1997-2003 1tPolitiques, marchés et échanges agricolesx1015-1001 1tLes politiques agricoles des pays de l'OCDE (En ligne)‎x1999-117700aPolitiques agricoles des pays de l'OCDE aPolitique agricoleyPays de l'OCDExPériodiques02aOrganisation de coopération et de développement économiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://titania.sourceocde.org/vl=969017/cl=25/nw=1/rpsv/home.htmzzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1999) -(2007)cParisdMagasins/AnnexeeP 4° 6466 aZPAY aexempb201306 aDEW 338.1-3 aGEO RN1 Pays industrialisés, pays occidentaux01120nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200007000163210002700233326001100260430006400271606006800335606005400403712011700457801001300574856005300587955004600640972000900686992005100695992003200746992001600778048859079000042643420130319051737.0 a1563-0420 a0000426434 a b19982001k fre ba0 afre aFR a 0  ar aa z 0 10aPolitiques agricoles économies émergentes et pays en transition aPariscOCDEd1998-2001 aAnnuel 1tPolitiques agricoles dans les pays en transitionx1029-4295 aPolitique agricoleyNouveaux pays industrialisésyPériodiques aPolitique agricoleyEurope de l'EstxPériodiques02aOrganisation de coopération et de développement économiquesbCentre pour la coopération avec les non-membres 0aFRbFNSP uhttp://www.sourceoecd.org/content/html/index.htm1 b(2001)cParisdMagasins/AnnexeeP4° 6900 aZPAY aGEO RN1 Pays industrialisés, pays occidentaux aGEO RA2.02 Europe orientale aDEW 338.1-301219cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118106000600125110001600131200008600147210003400233517009900267530008600366606003100452606002800483710006000511801003000571801002300601801003000624802000700654856007200661856006000733955006800793972000900861992001100870068809174000082295620131028120631.01 a1377-3488 aissn13773488 a20020530a20019999u y0frey0103 ba0 afre aBE ar aaiu uu 10aPolitiques d'éducation et de formationiAnalyses et comparaisons internationales aBruxellescDe Boeck & Larcier10aCollection "Politiques d'éducation et de formation. Analyses et comparaisons internationales"10aPolitiques d'éducation et de formation. Analyses et comparaisons internationales aEnseignementxPériodiques aEducationxPériodiques02aInstitut européen d'éducation et de politique sociale 3aFRbAbesc20060104gAFNOR 3aFRbISSNc20030203 3aFRbAbesc20050329gAFNOR a0m4 uhttp://www.e-education-europe.org/fr/rubriques/journal/polef/02.asp zContenu : sommaires et éditoriaux depuis le n°1, 20011 bno. 1 (2001) -no. 15 (2005)cParisdMagasins/AnnexeeP 8° 6823 aZPAY aDEW37001643nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200019900163207004000362210002700402300012100429326001800550430005600568453006700624606004200691606007700733710013900810801001300949856011500962856010801077955008301185972000901268992001601277060853883000045408320130319051737.01 a1682-346X a0000454083 a b20022007k fre ba0 afre aFR a 0  ar aai z 0 10aPolitiques et gestion de l'enseignement supérieurerevue du programme sur la gestion des établissements d'enseignement supérieurfOrganisation de coopération et de développement économique 1aVol.14 no.1(2002)-vol.19 no.3(2007) aPariscOCDEd2002-2007 aA partir de 2008, la version française de Higher education management and policy est accessible uniquement en ligne a3 n°s par an 1tGestion de l'enseignement supérieurxISSN1013-8501 1tHigher education management and policy (Print)xISSN 1682-3451 aEnseignement supérieurxPériodiques aEnseignement supérieurxAspect économiqueyPays del'OCDExPériodiques02aOrganisation de coopération et de développement économiquesbProgramme sur la gestion des établissements d'enseignement supérieur 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/1682346X/gestionenseignementsup zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 14 no. 1 (2002) -vol. 19 no. 3 (2007)cParisdMagasins/AnnexeeP 8° 6599 aZECH aDEW 370-37901202nas0 2200325 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101106000600108110001600114200008300130210002600213326001600239430005000255452006100305530003800366606003600404606003800440607004400478710005800522801003000580856009100610955006400701957007000765992002500835992001600860132454300000116587320131218105625.01 a2101-8081 a20090402a20099999m y0frey0103 ba0 afre aFR ar aaha uu 10aPolitiques sociales et familialesfCaisse nationale des allocations familiales aPariscCNAFd2009-... aTrimestriel 1tRecherches et prévisions (Paris),x1149-1590 1tPolitiques sociales et familiales (En ligne),x2107-0210 aPolitiques sociales et familiales aPolitique socialexPériodiques aPolitique familialexPériodiques aFrancexPolitique socialexPériodiques02aCaisse nationale des allocations familialesc(France) 3aFRbAbesc20090402gAFNOR4 uhttp://www.caf.fr/etudes-et-statistiques/publicationszAccès libre au texte intégral1 bno. 95 (mar-2009) -....cParisdMagasins/AnnexeeP 4° 64461 bno. 0 (1985) -no. 98 (2009)cParisdMagasins/AnnexeeP index 0875 aGEO RA4.06 France 01 aDEW 360-36301122nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001200154207002400166210002600190326001700216421003600233430004900269606002900318606005300347607002500400856002700425856008700452955006900539955006500608955007400673992002500747992001200772045069077000026487320130319051738.01 a1290-5550 aFNSP918695 a0000264873 a19990127a19999999 ba0 afre aFR aa a 10aPolitis 1ano. 532 (jan-1999)- aPariscPolitisd1999- aHebdomadaire 1tPolitis, le magazinex1296-3178 1aLe Nouveau Politis (Hebdomadaire)x1155-2794 aActualitéxPériodiques aGauche (science politique)yFrancexPériodiques aFrancexPériodiques4 uhttp://www.politis.fr/ zcontenu : sommaire et sélection d'articles en texte intégral du dernier numéro.1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 69341 bno. 682 (jan-2002) -....cParisdMagasins/AnnexeeP 4° 69341 bno. 532 (jan-1999) -no. 680/681 (dec-2001)cParisdAnnexeeP F° 0487 aGEO RA4.06 France 01 aDEW 05000801nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000230015421000290017732600120020660700550021867600080027380100210028185600340030285600360033695500590037297200090043199100180044099200250045899200160048303877447X000003299420140110121507.01 a0032-3446 aFNSP195523 a0000032994 a19900101a19569999 ba0 ager aDE aagu 10aPolitische Meinung aOsnabrückcFrommd1956- aMensuel aAllemagnexPolitique et gouvernementxPériodiques a320 3aFRbCCN0032-34464 uhttp://www.kas.de/wf/de/34.6/ zAccès libre au texte intégral1 bno. 1 (1956) -....cParisdMagasins/AnnexeeP 8° 1480 aZGRA aexempb201102 aGEO RA5.01 Allemagne aDEW 320-32100970nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210002800177326001500205421004700220421003600267430004600303606004400349607005500393801002100448856003300469856003600502955006000538972000900598992002500607992001200632038774496000003299620130319051738.01 a0032-3462 aFNSP195526 a0000032996 a19900101a19549999 ba0 ager aDE aagu 10aPolitische Studien aMünchencPflaumd1954- aBimestriel 1aPolitische Studien. Sonderheft,x0477-2784 1tPolitische studien. Themenheft$ 1aPolitische Bildung (München),x0721-8869 aRelations internationalesxPériodiques aAllemagnexPolitique et gouvernementxPériodiques 3aFRbCCN0032-34624 uhttp://www.hss.de/2956.shtml zAccès libre au texte intégral1 bno. 48 (1954) -....cParisdMagasins/AnnexeeP 8° 1230 aZSAB aGEO RA5.01 Allemagne aDEW 94301153nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003500139210003900174326001600213422003400229430005700263440003500320530003500355607005500390801002100445856016800466955014100634972000900775991001800784992002500802992001200827039621553000003299920130729110040.01 a0477-2784 aFNSP195529 a19900101a19559999 ba0 ager aDE abzu 10aPolitische Studien. Sonderheft aGrünwaldcAtwerb-Verl.d1955-2003 aIrrégulier 1aPolitische Studienx0032-3462 1aPolitische Bildung. Sonderheft (München)x0721-8893 1tPolitische Studien. Themenheft00aPolitische Studien. Sonderheft aAllemagnexPolitique et gouvernementxPériodiques 3aFRbCCN0477-27844 uhttp://www.hss.de/suche/?cx=009700709337596038292%3Ae5wq8fe1no4&cof=FORID%3A9&ie=UTF-8&q=Politische+Studien+SonderheftzAccès libre au texte intégral depuis 19981 bno. 1 (1977) -no. 2 (1982) ; no. 1 (1986) -no. 3 (1986) ; vol. 43 no. 1 (1992) -vol. 54 no. 3 (2003)cParisdMagasins/AnnexeeP 8° 4275 aZSAB aexempb201304 aGEO RA5.01 Allemagne aDEW 94301080nas0 2200313 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102110001600109200005800125207001900183210003800202300009500240301004200335301005100377326001100428422003500439430004600474606003600520710003600556801003000592856003300622856003900655955006300694972000900757080468837000069978320130319051738.0 a0000699783 a20040921a20049999 0frey0103 ba0 ager aDE aaj 10aPolitische StudieniThemenheftfHanns Seidel Stiftung 1ano. 1 (2004) - aMünchencAtwerb-Verlag KGd2004- aLe premier numéro accompagne le numéro 55. Jahrgang, August 2004 de "Politische Studien" aDEMANDE DE NUMEROTATION ISSN EN COURS a0032-3462 : ISSN mentionné sur la publication aAnnuel 1tPolitische Studien,x0032-3462 1tPolitische Studien. Sonderheftx0477-2784 aScience politiquexPériodiques02aHanns-Seidel-Stiftungc(Munich) 3aFRbAbesc20040921gAFNOR4 uhttp://www.hss.de/2957.shtml zContenu : texte intégral en ligne1 bno. 1 (aou-2004) -....cParisdMagasins/AnnexeeP 8° 6782 aZSAB01161nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154210004100190326001600231421005900247421002900306434002900335606003600364676000800400710008600408801002100494856011700515856004600632955010200678972000900780991001800789992001600807013738267000003300020140110121020.01 a0032-3470 aFNSP195530 a0000033000 a19900101a19609999 ba0 ager aDE aahu 10aPolitische Vierteljahresschrift aOpladencWestdeutscher Verlagd1960- aTrimestriel 1aPolitische Vierteljahresschrift. Sonderheftx0720-480901tPVS-Literaturx0720-7182 1tPVS-Literaturx0720-7182 aScience politiquexPériodiques a32002aDeutsche Vereinigung für Politische WissenschaftbSektion Internationale Politik 3aFRbCCN0032-34704 uhttp://www.vsjournals.de/index.php?do=viewmag&site=pvs&lng=de&area=pol&id=2&sid=d840c0ed9560cdde66e75c577777402f zContenu : sommaires depuis le n° 1, 20001 bvol. 1 no. 1 (1960) -....cParisdMagasins/AnnexeeP 8° 1845wManquants : 2003, 2004, 2005, 2006 aZPAY aexempb200910 aDEW 320-32101091nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000048001552100041002033260022002443260022002664220047002885170053003356760008003887100086003968010021004828560113005038560047006169550059006639720009007229910018007319920016007490000007838000000783820140110120636.01 a0720-4809 aFNSP113375 a0000007838 a19900101a19699999 ba0 ager aDE aajy 10aPolitische Vierteljahresschrift. Sonderheft aOpladencWestdeutscher Verlagd1969- aSemestrielb2006- aAnnuelb1969-2005 1aPolitische Vierteljahresschriftx0032-347010aPVS. Politische Vierteljahresschrift. Sonderheft a32002aDeutsche Vereinigung für Politische WissenschaftbSektion Internationale Politik 3aFRbCCN0720-48094 uhttp://www.vsjournals.de/index.php;do=specials/sid=d840c0ed9560cdde66e75c577777402f/site=pvs/lng=de/area=pol zContenu : sommaires depuis le n° 30, 19991 bno. 1 (1969) -....cParisdMagasins/AnnexeeP 8° 2696 aZPAY aexempb201105 aDEW 320-32101594nas 2200421 i 450 001001000000002001100010005001700021011001400038035001300052035001500065100004100080101000800121102000700129110001600136200001200152210008000164210002500244210008000269210003500349210003800384210003100422210003100453326001600484606004400500606003600544676000800580856002600588856006200614856008700676856010800763955006700871955010900938955006901047972000901116992002201125992001601147992000901163002449072000000204020131220095758.01 a0295-2319 aFNSP7794 a0000002040 a19900101a19879999 ba0 afre aFR aaha 10aPolitix aPariscUniversité de Paris I, Département de science politiqued1987-1988 aPariscPolitixd1989 aPariscPresses de la Fondation nationale des sciences politiquesd1989-1996 aaPariscL'Harmattand1997-1999 aPariscHermès scienced2000-2004 aPariscA. Colind2005-2008 aBruxellescDe Boeckd2009- aTrimestriel aScience politiqueyFrancexPériodiques aScience politiquexPériodiques a3204 uhttp://www.persee.fr/ zContenu : accès libre au texte intégral de 1988 à 20044 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-politix.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 1 (1987) -....cParisdMagasins/AnnexeeP 4° 5209wnos manquants : 31>32, 1995 ; 44>45, 46>47, 19991 bL'année en courscParisdBibliothèque de rechercheeP 4° 5209 aZCAD aGEO RA4.06 France aDEW 320-321 aPBUL01151cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200009500174210003800269326001600307430007300323606003600396607002700432710006800459801003000527802000700557856005300564856008600617955008600703992001200789992002400801036916528000113375320130319051738.01 a1392-1681 accn1392-1681 a0001133753 a19961223a19939999 0frey0103 ba0 alit aLT ay  aah 10aPolitologijafVilniaus universitetas. Tarptautiniu santykiu ir politikos mokslu institutas aVilniuscPolibijaus fondasd1993- aTrimestriel 1tLietuvos universiteto Matematikos gamtos fakulteto darbaix1392-205X aScience politiquexPériodiques aLituaniexPériodiques02aTarptautiniu santykiu ir politikos mokslu institutasc(Vilnius) 3aFRbAbesc20080130gAFNOR a384 uhttp://www.leidykla.eu/en/journals/politologija/ zContenu: sommaires et texte intégral des n°s à partir du vol. 1 no. 21 de 20011 bno.1 (2004), no. 1 (2006), no. 4 (2006) -....cParisdMagasins/AnnexeeP 8° 7019 aDEW 320 aGEO RA7.14 Lituanie01062cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200002600174207005400200210006700254326001600321440002300337606003600360607002700396710004500423801003000468801002300498801003000521802000700551856004000558955008900598972000900687992001600696074939939000097353420130319051738.01 a1398-523X aissn1398523X a0000973534 a20030523b19982003k y0frey0103 ba0 adan aDK ay 0  aayu 0uu 10aPolitologiske studier 0aNr. 1, april 1998-6. årg., nr. 4 (december 2003) a[København]cInstitut for Statskundskab Københavnd1998-2003 aTrimestriel 1tPolitikx1604-0058 aScience politiquexPériodiques aDanemarkxPériodiques02aInstitut for statskundskabc(Copenhague) 3aFRbAbesc20080304gAFNOR 3aFRbISSNc20030523 3aFRbAbesc20031110gAFNOR a0h4 uhttp://www.politologiske.dk/alt.htm1 bvol. 6 no. 1 (mar-2003) -vol. 6 no. 4 (dec-2003)cParisdMagasins/AnnexeeP 8° 6890 aZSAB aDEW 320-32101355nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001100154210006300165326001600228606004800244710006100292801002100353856010500374856007500479856009000554856010800644955006600752957013300818972000900951991001800960992002300978992001601001038774534000003313120130319051738.01 a0032-3497 aFNSP196158 a0000033131 a19900101a19689999 ba0 aeng aUS aahu 10aPolity aAmherstcNortheastern Political Science Associationd1968- aTrimestriel aScience politiqueyEtats-UnisxPériodiques02aNortheastern Political Science Associationc(Etats-Unis) 3aFRbCCN0032-34974 uhttps://acces-distant.sciences-po.fr/fork?http://www.palgrave-journals.com/polity/archive/index.html zContenu : sommaires et résumés des n°s depuis le vol.37, n°1, 20054 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00323497.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1968) -....cParisdMagasins/AnnexeeP 8° 25791 bvol. 1 (1968) -vol. 3 (1971) ; vol. 4 (1971) -vol. 6 (1974) ; vol. 7 (1974) -vol. 9 (1977)cParisdMagasins/AnnexeeP Index 0183 aZSAB aexempb200904 aGEO RC2 Etats-Unis aDEW 320-32101123nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210004300183326001600226430005200242606004100294710007700335801002100412830006500433856022000498955006100718972000900779992002100788992001200809039226689000003313820130522095025.01 a0032-3632 aFNSP196178 a0000033138 a19900101a19649999 ba0 afre aFR aahu 10aPollution atmosphérique aPariscPollution atmosphériqued1964- aTrimestriel 1aRevue de la pollution atmosphériquex0245-9140 aAtmosphèrexPollutionxPériodiques02aAssociation pour la prévention de la pollution atmosphériquec(France) 3aFRbCCN0032-3632 ano. 53, 1972 --->1983 collection donnée au CTL en juin 20024 uhttp://www.revuepollutionatmospherique.fr/zL'ensemble des articles parus depuis 1993 sont accessibles en ligne : consultables à la bibliothèque à l'aide d'un mot de passe à demander à l'accueil bibliographique1 bno. 101 (1984) -....cParisdMagasins/AnnexeeP 4° 3200 aZPAY aGEO RQ Universel aDEW 33301149cas0 2200385 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147105001800154110001600172200006300188210002300251326001100274410006500285512003200350530002600382712005200408801003000460801002300490801003000513802000700543856005800550856003600608955005300644972000900697991001800706992002500724992001400749094675872000091659320130319051739.0 a1760-9046 a131723170 aissn17609046 a0000916593 a20060106a19999999k y0frey50 ba0 afre aFR ay  azku uu 13aLa Polynésie françaisefInstitut d'émission d'Outre-mer aPariscIEOMd1999- aAnnuel 1tRapport annuel - Institut d'émission d'Outre-merx1635-226210aPolynésie française en...00aPolynésie française02aInstitut d'émission d'Outre-merc(France)4340 3aFRbAbesc20090422gAFNOR 3aFRbISSNc20090225 3aFRbAbesc20060106gAFNOR a074 uhttp://www.ieom.fr/agence_polynesie_publication_3.asp4 zAccès libre au texte intégral1 b(1999) -....cParisdMagasins/AnnexeeP 8° 6849 aZGRA aexempb201212 aGEO RA4.06 France 01 aDEW 330.901697nas 2200421 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006000154207004200214210002300256326002300279326002600302606003100328606002900359676000800388710005800396801002100454856009000475856010800565856009000673856010800763856002600871856003700897955006600934955008601000955005901086957009101145972000901236991001801245992001201263039226727000000521920130319051739.01 a0032-4663 aFNSP107643 a0000005219 a19900101a19469999 ba0 afre aFR aagu 10aPopulationfInstitut national d'études démographiques 1a1ère année, no 1 (janv./mars 1946)- aPariscINEDd1946- aTrimestrielb2007- aBimestrielb19??-2006 aDémographiexPériodiques aPopulationxPériodiques a30402aInstitut national d'études démographiquesc(France) 3aFRbCCN0032-46634 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-population.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00324663.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr/ zAccès libre au texte intégral.1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3041 bno. 1 (1946) -vol. 63 no. 4 (2008)cParisdBibliothèque de rechercheeP 8° 01801 bno. 1 (1946) -....cParisdMagasins/AnnexeeP 8° 01801 b(1946) -(1959) ; (1960) -(1969) ; (1970) -(1979)cParisdMagasins/AnnexeeP Index 0047 aZPAY aexempb201010 aDEW 30400992nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000061001502100023002113000098002343260011003323360058003433370063004014520046004646060031005106060029005418010013005708560090005839550005006739920012006780000486676000048667620130319051739.0 a0000486676 a a19899999k fre 01 ba0 aeng aFR az aak z  adr 10aPopulation. English selectionb[Ressource électronique] aPariscINEDd1989- aAccès au texte intégral (réservé aux sites de Sciences Po) jusqu'aux 2 dernières années aAnnuel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tPopulation.English selectionx(1169-1018) aDémographiexPériodiques aPopulationxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00324663.html1 r aDEW 30401710nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154210004000192326001600232606004500248606002900293606005500322710002900377801002100406856009000427856010800517856010100625856010800726856012800834856010800962955009001070957013701160972000901297991001801306992001201324013569570000003315420131202112234.01 a0098-7921 aFNSP196214 a0000033154 a19900101a19759999 ba0 aeng aUS aahu 10aPopulation and development review aNew YorkcPopulation Councild1975- aTrimestriel aDéveloppement économiquexPériodiques aPopulationxPériodiques aAssistance en matière de populationxPériodiques02aConseil de la population 3aFRbCCN0098-79214 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00987921.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=108781 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=PDV&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (sep-1975) -vol. 38 no. 4 (dec-2012)cParisdMagasins/AnnexeeP 8° 39101 bvol. 1 (1975) -vol. 10 (1984) ; vol. 11 (1985) -vol. 15 (1989) ; vol. 1 (1975) -vol. 20 (1994)cParisdMagasins/AnnexeeP Index 0572 aZPAY aexempb201001 aDEW 30401139nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210002300183326001200206488004200218606003100260606002900291676000800320710005800328801002100386856005800407856012300465955006300588957014100651972000900792992001200801039316718000000522220130319051739.01 a0184-7783 aFNSP107646 a0000005222 a19900101a19689999 ba0 afre aFR aafu 10aPopulation et sociétés aPariscINEDd1968- aMensuel 1aPopulation (0032-4663) < P 8° 0180 > aDémographiexPériodiques aPopulationxPériodiques a30402aInstitut national d'études démographiquesc(France) 3aFRbCCN0184-77834 uhttp://www.ined.fr/publications/pop_et_soc/index.html zContenu : tous les numéros en texte intégral depuis le n°1, 1968 ; recherches par thèmes et par auteur, sommaires.1 bno. 2 (avr-1968) -....cParisdMagasins/AnnexeeP 4° 25441 bno. 2 (1968) -no. 86 (1975) : se trouve dans le no. 87 (jan-1976) ; no. 87 (1976) -no. 153 (1981) : se trouve dans le no. 154 (jan-1982) aZPAY aDEW 30401069nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000021001552100063001763260016002395300021002556060046002766060044003227120038003668010021004048560090004258560108005159550087006239920021007109920012007319920012007430000050565000005056520130319051739.0 a0032-4701 aFNSP247271 a0000050565 a19900101b19371999 ba0 aeng aUS aahu 10aPopulation index aPrinceton, N.J.cOffice of Population Researchd1937- 1999 aTrimestriel00aPopulation index aDémographiexBibliographiexPériodiques aPopulationxBibliographiexPériodiques02aPopulation Association of America 3aFRbCCN0032-47014 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00324701.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 13 no. 1 (jan-1947) -vol. 65 no. 4 (1999)cParisdMagasins/AnnexeeP 8° 0190 aGEO RQ Universel aDEW 010 aDEW 30401194nls 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000053001502100067002032300007002703000119002773260016003963360058004123370063004704400047005334520039005806060046006196060059006658010013007248560090007379550005008279920012008329920012008440000487127000048712720130319051739.0 a0000487127 a b19351936k fre 01 ba0 aeng aUS az aah z  adr 10aPopulation literatureb[Ressource électronique] aWashington, D.C.cPopulation Association of Americad1935-1936 aa$ aAccès au texte intégral (réservé aux sites de Sciences Po) à partir du vol. 1 de 1935 jusqu'au vol. 2 de 1936 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tPopulation index [Ressource électronique] 1tPopulation literaturex(1523-8431) aDémographiexBibliographiexPériodiques aEmigration et immigrationxBibliographiexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/15238431.html1 r aDEW 010 aDEW 30400991nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004200154210004400196326001600240606002900256606003100285801002100316856012800337856010800465955011900573972000900692992001200701039113523000003316820130319051739.01 a0167-5923 aFNSP196249 a0000033168 a19900101a19829999 ba0 aeng aNL aahu 10aPopulation research and policy review aDordrechtcKluwer Academic Publ.d1982- aTrimestriel aPopulationxPériodiques aDémographiexPériodiques 3aFRbCCN0167-59234 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=4KJ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1982) -vol. 21 no. 6 (2002) ; vol. 27 no. 1 (fev-2008) -....cParisdMagasins/AnnexeeP 8° 4512 aZSAB aDEW 30401712nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210005400177326001800231606003100249712005000280801002100330856010300351856010800454856012800562856010800690856010900798856010800907955006701015955008601082957007801168972000901246991002001255991001801275992002101293992001201314038775409000003334420130319051739.01 a0032-4728 aFNSP196672 a0000033344 a19900101a19479999 ba0 aeng aGB aaiu 10aPopulation studies aLondoncPopulation Investigation Committeed1947- a3 n°s par an aDémographiexPériodiques02aPopulation Investigation Committeec(Londres) 3aFRbCCN0032-47284 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00324728.html?&cookieSet=1 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=PPU&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713689546db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 51 no. 1 (1997) -....cParisdMagasins/AnnexeeP 4° 66781 bvol. 1 no. 1 (jun-1947) -vol. 50 no. 3 (1996)cParisdMagasins/AnnexeeP 8° 01811 bvol. 1 no. 1 (1947) -vol. 50 (1996)cParisdMagasins/AnnexeeP Index 0792 aZPAY aPériobTP01 P8 aexempb201101 aGEO RQ Universel aDEW 30401646cas0 2200457 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035002500100035002000125035002100145035001500166100004100181101000800222102000700230105001800237106000600255110001600261200011500277207003900392210005200431517004900483517004300532517003200575517003200607530004700639540004400686606004200730710003900772801003000811801002900841802000700870856014400877856008301021945001401104955005501118991001501173039083101000112087920130319051740.0 a2018-0365 a088218880 accn7112/6341 aissn20180365 aFRBNF328414510000009 aPR040400320001J a(OCoLC)491805829 a0001120879 a19890214b18331842m y0frey50 ba0 afre aFR ay  ar aah y 10aPortraits et histoire des hommes utiles...fpubliés et propagés pour et par la Société Montyon et Franklin 0a1re année (1833)-9e année (1841) aPariscSociété Montyon et Franklind1833-184110aAnnuaire de la Société Montyon et Franklin10aAnnuaire... Bulletin des hommes utiles10aChronique des hommes utiles10aAnnuaire de la bienfaisance00aPortraits et histoire des hommes utiles...10aPortraits et histoire des hommes utiles aOeuvres de bienfaisancexPériodiques02aSociété Montyon et Franklin4070 3aFRbAbesc20071120gAFNOR 0aFRbBNFc19970701gAFNOR a004 uhttp://gallica.bnf.fr/ark:/12148/cb328414513/date.r=.langFRzAccès libre au texte intégral. Années 1836 à 1838 numérisées sur Gallica4 zAccès libre au texte intégral. Autres années numérisées sur Google Livres bCOL8*07791 b(1837) -(1840)cParisdMagasins/AnnexeeCOL8°0779 aPériobTZ00985nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004000154210002500194326001200219530001800231606002600249801002100275856002800296856004300324955006500367955009800432957007000530972000900600991001800609992002100627992001100648039237141000003334720130319051740.01 a0048-4911 aFNSP196676 a0000033347 a19900101a19529999 ba0 afre aFR aafu 10aPositiferevue mensuelle de cinéma aLyoncPositifd1952- aMensuel 0aPositifbLyon aCinémaxPériodiques 3aFRbCCN0048-49114 uhttp://www.jmplace.com/ zContenu : sommaire du dernier numéro.1 bno. 425 (jul-1996) -....cParisdMagasins/AnnexeeP 4° 66371 bno. 69 (mai-1965) ; no. 73 (fev-1966) -no. 424 (jun-1996)cParisdMagasins/AnnexeeP 8° 22111 bno. 1 (1952) -no. 34 (1972)cParisdMagasins/AnnexeeP Index 0273 aZPAY aexempb201105 aGEO RQ Universel aDEW 7901677nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154207003200183210002800215326001600243430006300259607004900322607006800371710004900439856010300488856010800591856012800699856010800827856010900935856010801044955009101152972000901243991001801252992001901270992001401289045044724000027034620140107141656.01 a1463-1377 aFNSP934521 a0000270346 a19990413a19999999 ba0 aeng aGB aaha 10aPost-communist economies 1avol. 11, no. 1 (mar-1999) - aAbingdoncCarfaxd1999- aTrimestriel 1aCommunist economies and economic transformationx1351-4393 aEx-URSSxPolitique économiquexPériodiques aEurope de l'EstxPolitique économiquez1989-....xPériodiques02aCentre for Research into Communist Economies4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=102230 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=53T&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713440896db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 11 no. 1 (mar-1999) -vol. 25 no. 4 (dec-2013)cParisdMagasins/AnnexeeP 8° 5618 aZPAY aexempb201110 aGEO RA7.03 CEI aDEW 338.901125nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002400139210004300163326001600206430005200222607006300274607005300337607006300390710005200453711005000505856015700555955007000712972000900782992002000791992001200811040289540000018959520140108104639.01 a1060-586X aFNSP700668 a19900101a19929999 ba0 aeng aUS aaha 10aPost-Soviet affairs aSilver Spring, MDcV.H. Winstond1992- aTrimestriel 1aSoviet economy (Silver Spring, Md.),x0882-6994 aRussiexPolitique et gouvernementz1991-2000xPériodiques aEx-URSSxPolitique et gouvernementxPériodiques aRussiexPolitique et gouvernementz2000-....xPériodiques02aJoint Committee on Soviet Studiesc(Etats-Unis)02aSocial Science Research Councilc(Etats-Unis)4 uhttp://www.vhwinston.com/psa/zAccès libre au texte intégral du vol. 18, no. 3, 2002 au vol. 27, no. 1, 2011; sommaires et résumés à partir de 20111 bvol. 8 no. 3 (sep-1992) -....cParisdMagasins/AnnexeeP 8° 4941 aZPAY aGEO RA7.01 URSS aDEW 94700893cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200002600180210002600206606004600232606002900278801003000307801002300337802000700360856004700367856005000414955007800464992001200542992002500554121354288000115895020130319051741.01 a1958-8704 aissn19588704 a0001158950 a20080208b20072007k y0frey0103 ba0 afre aFR ay  ar accu uu 13aLa Poule déchaînée aLyoncLyond2007-2007 aSatire politique françaisexPériodiques aActualitéxPériodiques 3aFRbAbesc20081015gAFNOR 3aFRbISSNc20081014 a074 uhttp://www.lapouledechainee.fr/?page_id=40 zContenu : no. 0 (fev-2007) en texte intégral1 bno. 0 (fev-2007) -no. 0bis (jun-2007)cParisdMagasins/AnnexeeP F° 1366 aDEW 050 aGEO RA4.06 France 0100904nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000230015421000220017732600120019960600490021160600360026071001150029685600420041185600510045395500630050497200090056799200220057699200160059804013475X000009502620130319051741.01 a1246-077X aFNSP415624 a0000095026 a19900101a19939999 ba0 afre aFR aafy 10aPour (Paris, 1993) aPariscFSUd1993- aMensuel aEnseignantsxSyndicatsyFrancexPériodiques aEducationyFrancexPériodiques02aFédération syndicale unitaire de l'enseignement, de l'éducation, de la recherche et de la culturec(France)4 uhttp://www.fsu.fr/spip.php?rubrique44 zContenu : texte intégral des n°s depuis 20041 bno. 1 (avr-1993) -....cParisdMagasins/AnnexeeP 4° 6250 aZGRA aGEO RA4.06 France aDEW 370-37901294cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200013200180210004900312326001500361530003900376606004900415606005300464607005100517710007400568801003000642801002300672802000700695856008400702856004700786955005900833992002400892992001600916114704317000118885020130319051741.01 a1955-9550 aissn19559550 a0001188850 a20070523a20069999k y0frey0103 ba0 afre aFR ay  ar aaju uu 10aPour mémoireerevue du Comité d'histoire du MinistèrefMinistère des transports, de l'équipement, du tourisme et de la mer aParis-La DéfensecComité d'histoired2006- aSemestriel10aPour mémoireb(Paris-La Défense) aEquipements collectifsyFrancexPériodiques aAménagement du territoireyFrancexPériodiques aFrancexAdministrationxHistoirexPériodiques12aFrancebConseil général des ponts et chausséesbComité d'histoire 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20080429 a074 uhttp://www.developpement-durable.gouv.fr/Pour-memoire-la-revue-du-Comite-d.html4 zContient : sommaires depuis le no. 1, 20061 bno. 3 (2007) -....cParisdMagasins/AnnexeeP 8° 7134 aGEO RA4 . 06 France aDEW 900-90701307nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001300154207001800167210005100185326001600236606003900252606004400291606003600335676000800371801002100379856004900400856014000449856008800589856010800677955006700785955005900852972000900911992001600920992000900936001013491000000522720131220095939.01 a0152-0768 aFNSP107651 a0000005227 a19900101a19779999 ba0 afre aFR aahu 10aPouvoirs 1ano. 1 (1977)- aPariscPresses universitaires de Franced1977- aTrimestriel aDroit publicyFrancexPériodiques aScience politiqueyFrancexPériodiques aScience politiquexPériodiques a320 3aFRbCCN0152-07684 uhttp://www.revue-pouvoirs.fr/-La-revue-.html zContenu : sommaires, index des auteurs et texte intégral des numéros à partir du no 68, 1994 à l'exception des 3 dernières années4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-pouvoirs.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 1 (1977) -....cParisdMagasins/AnnexeeP 8° 3913 aZCAD aDEW 320-321 aPBUL00970nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210002800200326001100228430005700239607003500296676000800331710009100339856006800430955006100498955006600559972000900625992002200634992001200656036654671000022974220131003162921.01 a1279-8657 aFNSP817080 a0000229742 a19900101a19969999 ba0 afre aFR aaka 10aPouvoirs dans la Caraïbeerevue du CRPLC aSchoelcher:CRPLCd1996- aAnnuel 1aLes Cahiers de l'administration Outre-merx1143-1865 aRégion caraïbexPériodiques a98002aCentre de recherche sur les pouvoirs locaux dans la Caraïbec(Schoelcher, Martinique)4 uhttp://plc.revues.org/59zAccès au texte intégral depuis 19971 bLa dernière annéecParis, 30, Salle 2e étageeDEW 9801 bno. 8/9 (1996/1997) -....cParisdMagasins/AnnexeeP 4° 6089 aZCAD aGEO RD3 Caraïbes aDEW 97200971nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210005500191326001200246606004400258801002100302856005600323856004800379955005900427955012200486972000900608991001700617992002300634992001200657038775905000003335620130319051744.01 a0032-6186 aFNSP196687 a0000033356 a19900101a19599999 ba0 apol aPL aafu 10aPraca i Zabezpieczenie Spoleczne aWarszawacPanstwowe Wydawnictwo Ekonomiczned1959- aMensuel aDroit du travailyPolognexPériodiques 3aFRbCCN0032-61864 uhttp://www.pwe.com.pl/czasopismo.xml?group_id=10686 zSommaires et résumés depuis le n°7, 20041 bno. 1 (1997) -....cParisdMagasins/AnnexeeP 4° 66701 bvol. 9 no. 2 (1967) -no. 11/12 (1989) ; vol.34 no. 1 (1992) -vol. 38 no. 6 (1996)cParisdMagasins/AnnexeeP 8° 2372 aZPAY aexemp$201103 aGEO RA5.11 Pologne aDEW 34401681nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005300139210005700192300011100249326001700360436004000377436004600417440003100463452008000494606004500574606006000619710015700679830019700836856021701033955004701250991001801297992001201315992001601327040237710000019634920140108150302.01 a1253-1545 aFNSP720433 a19900101b19962010 ba0 afre aXX aaua 10aPremières informations et Premières synthèses aParis‎cMinistère du travail, DARES‎d1996-2010 aLes fascicules portent soit l'un ou l'autre titre, soit les deux titres mais ont une numérotation unique. aHebdomadaire 1aPremières informations,x0298-430X 1tPremières synthèses (Paris),x0999-565X 1tDares analyses,x2109-4128 1tPremières informations et Premières synthèsesb[Ressource électronique] aMarché du travailyFrancexPériodiques aEconomie du travailyFrancexStatistiquesxPériodiques02aFrancebMinistère du travail, de l'emploi et de la formation professionnellebDirection de l'animation de la recherche, des études et des statistiques aDésherbé à partir de 1997 (campagne 2013 ) ; pour des raisons de reliure (2 titres en même temps) les nos de 1996 sont avec le vol. 1996 de Premières informations ( no document : 1010771)4 uhttp://travail-emploi.gouv.fr/etudes-recherches-statistiques-de,76/etudes-et-recherches,77/publications-dares,98/dares-analyses-dares-indicateurs,102/?annee=2004zAccès libre au texte intégral à partir de 19981 b(1996)cParisdMagasins/AnnexeeP 4° 6196 aexempb201312 aDEW 331 aDEW 310-31901071nls 2200265 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200008000124210002400204230002400228326001700252606004500269606006000314710015700374801001300531856020900544992001200753992001600765992002400781000116131920130517112804.0 a a19979999k fre 01 ba0 afre aFR ar aac z  adr 10aPremières informations et Premières synthèsesb[Ressource électronique] aPariscDARESd1997- aRevue électronique aHebdomadaire aMarché du travailyFrancexPériodiques aEconomie du travailyFrancexStatistiquesxPériodiques02aFrancebMinistère du travail, de l'emploi et de la formation professionnellebDirection de l'animation de la recherche, des études et des statistiques 0aFRbFNSP4 uhttp://www.travail-emploi.gouv.fr/etudes-recherches-statistiques-de,76/etudes-et-recherches,77/publications-dares,98/dares-analyses-dares-indicateurs,102zAccès libre au texte intégral à partir de 1997 aDEW 331 aDEW 310-319 aGEO RA4.06 France 102187nas 2200469 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154207005000188210002900238210009500267210006500362210005000427326001600477517006600493607005800559607006200617607003500679676000800714710005300722711008400775830002600859830011600885856010601001856010801107856009301215856005701308955006601365955010401431957011501535972000901650991001801659992002801677992001201705013451154000000485420130516135021.01 a0765-1333 aFNSP106800 a0000004854 a19900228a19659999 ba0 afre aFR aaha 10aProblèmes d'Amérique latine 1ano 1 (1965) - no 99 (1991)an.s, no 1 (1991)- a[Paris]cChoiseuld2004- a[Paris]cInstitut Choiseul pour la politique internationale et la géoéconomied2003-2004 a[Paris]cIEG, Institut européen de géoéconomied2002-2003 aPariscLa Documentation françaised1965-2001 aTrimestriel10aNotes et études documentaires. Problèmes d'Amérique latine aAmérique latinexPolitique économiquexPériodiques aAmérique latinexPolitique et gouvernementxPériodiques aAmérique latinexPériodiques a98002aFrancebDirection de la documentation française02aInstitut Choiseul pour la politique internationale et la géoéconomiec(Paris) a1965-->1999 : au 13 U aune autre collection des nos 1 à 98 est également reliée avec les Notes et études documentaires, P 4° 01214 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-problemes-d-amerique-latine.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.choiseul-editions.com/revues-geopolitique-Problemes-d'Amerique-latine-17.html zContenu : sommaires à partir du n°54, automne 20041 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9801 bno. 1 (jan-1965) -no. 99 (mar-1991) ; n.s. no. 1 (avr-1991) -....cParisdMagasins 13 UeP 8° 57681 bno. 1 (1965) -no. 62 (1981)cParisdMagasinseP 4° 0121zcet index se trouve dans le no. 62, 1981 de la revue aZPAY aexempb201111 aGEO RD Amérique latine aDEW 98001071nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154207002700190210004600217326002100263326002800284606003700312606005000349676001000399710005300409801002100462856003900483856005600522955006900578955006300647972000900710992001400719039226859000000522920131205151949.01 a0032-9304 aFNSP107653 a0000005229 a19900101a19489999 ba0 afre aFR aaeu 10aProblèmes économiques (Paris) 1aN°1, 6 janv. 1948---> aPariscLa Documentation françaised1948- aBimensuelb2004- aHebdomadaireb1948-2003 aEconomie politiquexPériodiques aHistoire économiquez1945-....xPériodiques a330.902aFrancebDirection de la documentation française 3aFRbCCN0032-93044 uhttp://www.ladocfrancaise.gouv.fr/ zContenu : index depuis 1993 ; résumés depuis 19991 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 330.91 bno. 1 (jan-1948) -....cParisdMagasins/AnnexeeP 4° 0053 aZPAY aDEW 330.901082nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003700139210005000176326002300226326002500249326002800274430005000302606003600352606003600388676000800424710005300432801002100485856006600506856008400572955007900656972000900735992001200744001012614000000523120131029103125.01 a0015-9743 aFNSP107656 a19900101b19702011 ba0 afre aFR aa a 10aProblèmes politiques et sociaux aPariscLa Documentation françaised1970-2011 aMensuelb2002-2011 aBimensuelb1975-2001 aHebdomadaireb1970-1974 1aArticles et documents (Paris)xISSN 0992-9207 aSciences socialesxPériodiques aScience politiquexPériodiques a30002aFrancebDirection de la documentation française 3aFRbCCN0015-97434 uhttp://www.ladocumentationfrancaise.fr/revues/pps/index.shtml zContenu : sommaires depuis le premier n°, résumés à partir du no. 850, 20011 bno. 1/2 (jan-1970) -no. 991 (dec-2011)cParisdMagasins/AnnexeeP 4° 0112 aZCAD aDEW 30001411nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003600139210003200175326001200207430003800219452005700257530003600314607007000350607006800420856012800488856010800616856010100724856010800825955006700933972000901000991001801009992003201027992001401059040290638000008763320131017160443.01 a1061-1991 aFNSP387578 a19900101a19929999 ba0 aeng aUS aafa 10aProblems of economic transition aArmonk, N.Y.cSharped1992- aMensuel 1aProblems of economics,x0032-9436 1tProblems of economic transition (Online),x1557-931X10aProblems of economic transition aEurope de l'EstxConditions économiquesz1989-....xPériodiques aEurope de l'EstxPolitique économiquez1989-....xPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=1M6&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=106047 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 35 no. 1 (1992) -....cParisdMagasins/AnnexeeP 8° 2701 aZPAY aexempb201004 aGEO RA2.02 Europe orientale aDEW 338.901278nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002600139210003600165326001200201440004600213451003400259530002600293606004300319606005400362801002100416856012800437856010800565955009200673955009100765991001800856992003200874992002000906992001400926036440396000003375920131017153129.01 a0032-9436 aFNSP197650 a19900101b19581992 ba0 aeng aUS aafa 10aProblems of economics aArmonk, N.Y.cSharped1958-1992 aMensuel 1aProblems of economic transitionx1061-1991 1aVoprosy ekonomiki,x0042-8736 aProblems of economics aEconomie politiqueyURSSxPériodiques aEconomie politiqueyEurope de l'EstxPériodiques 3aFRbCCN0032-94364 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=1M6&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 12 no. 1 (mai-1969) -vol. 34 no. 12 (avr-1992)cParisdMagasins/AnnexeeP 8° 27011 bVol. 1 no. 1 (mai-1958) -vol. 11 no. 12 (avr-1969)cParisdMagasins/AnnexeeP 4° 1696 aexempb201105 aGEO RA2.02 Europe orientale aGEO RA7.01 URSS aDEW 338.901164nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005200154210007500206326001100281430008700292606003600379606004700415712004500462801002100507856009000528856010800618955006900726991001800795992002100813992001600834001042181000000748220130319051751.0 a0065-0684 aFNSP112596 a0000007482 a19900101b19101991 ba0 aeng aUS aaku 10aProceedings of the Academy of Political Science aNew YorkcAcademy of Political Science, Columbia Universityd1928-1991 aAnnuel 1tProceedings of the Academy of Political Science in the City of New Yorkx1548-7237 aScience politiquexPériodiques aScience politiquexRecherchexPériodiques02aAcademy of Political Sciencec(New York) 3aFRbCCN0065-06844 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00650684.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1928) -vol. 38 no. 2 (1991)cParisdMagasins/AnnexeeP 8° 0042 aexempb201105 aGEO RQ Universel aDEW 320-32102629cas0 2200457 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200007600179210006300255215001000318304009800328311051100426326002500937421005300962517010701015517007001122517011601192517006401308530008601372531004901458545005501507545003201562606004301594606006901637712005401706712001801760801003001778802000701808856014501815955019401960991001702154038102595000107609520130319051751.0 a1111-4363 accn1111-4363 zccn7126/7999 a0001076095 a19930304b18691939 0frey0103 ba0 afre aDZ ar aak 10aProcès-verbaux des délibérationsfConseil supérieur de gouvernement aMustaphacGiraltaAlgercImpr. admin. V. Heintzd1869-1904 a25 cm aPorte en tête : "Algérie" ou "République française, Gouvernement général de l'Algérie" aDe 1881 à 1899, l'exposé de la situation générale de l'Algérie est joint aux délibérations du Conseil supérieur de gouvernement. A partir de 1902, l'exposé devient une publication encartée : "Exposé de la situation générale de l'Algérie". A partir de 1906, la publication encartée "Exposé de la situation générale de l'Algérie" est publiée indépendamment des sessions ordinaires du Conseil supérieur de gouvernement. En 1893, il y une publication en janvier et une autre en décembre. aAnnuel (irrégulier) |tExposé de la situation générale de l'Algérie10aProcès-verbaux des délibérations et exposé de la situation générale de l'Algérieesession de...10aProcès-verbaux des délibérationsesession extraordinaire de...10aExposé de la situation générale de l'Algérie et procès verbaux des délibérationsesession ordinaire de..10aSession ordinaire de...- Conseil supérieur de gouvernement10aProcès-verbaux des délibérations - Conseil supérieur de gouvernementb(Alger) 0aP.-v. délib. - Cons. supér. gouv.b(Alger)1 aProcès verbaux des séances du Conseil Supérieur1 aRapport général du budget aFrancexColoniesxPériodiques2rameau aAlgériez1830-1871 (Conquête française)xPériodiques2rameau01aAlgériebConseil supérieur de gouvernement434001aAlgérie4340 3aFRbAbesc20070322gAFNOR a254 uhttp://gallica.bnf.fr/ark:/12148/cb327832014/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1869-1939)1 b(1873) ; (1876) -(1880) ; (1882) -(1890) ; (1893) ; (1896) ; (1907) ; (1908) ; (1910) ; (1912) -(1914) ; (1917) -(1925) ; (1927) -(1933) ; (1936) -(1939)cParisdMagasins/AnnexeeCOL8°1322 aPériobTP0200691nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001300154210002700167326001600194606002500210606002900235856004800264955006300312972000900375992002500384992001600409040564002000024984220130319051752.01 a1283-162X aFNSP874360 a0000249842 a19900101a19979999 ba0 afre aFR aaga 10aProchoix aPariscProchoixd1997- aTrimestriel aFemmesxPériodiques aFéminismexPériodiques4 uhttp://www.prochoix.org/cgi/blog/index.php/1 bno. 1 (dec-1997) -....cParisdMagasins/AnnexeeP 4° 6768 aZPAY aGEO RA4.06 France 01 aDEW 305-30600665nas 2200241 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000024001552100024001793260017002038560026002208560074002469550067003209920024003879920012004110000253301000025330120130319051752.01 a1022-2111 aFNSP884030 a0000253301 a19900101b19709999 ba0 ager aAT aa a 10aProfil (Wien, 1970) aWiencProfild1970- aHebdomadaire4 uhttp://www.profil.at/ zContenu : sommaire et articles en texte intégral du dernier numéro.1 bno. 1/2 (jan-1998) -(2006)cParisdMagasins/AnnexeeP 4° 6774 aGEO RA5.13 Autriche aDEW 05001286nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001100154207002800165210002500193326002200218326002700240430005000267530002100317606003700338606003700375607004500412676000800457801002100465856008500486856010800571955006300679957009700742972000900839991001800848992002200866992001200888039226891000000528020140109155237.01 a0033-0884 aFNSP107803 a0000005280 a19900101a19669999 ba0 afre aFR aagu 10aProjet 1an.s.[no.] 1 (jan-1966)- aPariscProjetd1966- aBimestrielb2004- aTrimestrielb1966-2003 1aRevue de l'Action populaire (1950)x1149-267810aProjetb(Vanves) aProblèmes sociauxxPériodiques aVie intellectuellexPériodiques aFrancexVie intellectuellexPériodiques a001 3aFRbCCN0033-08844 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-projet.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (jan-1966) -....cParisdMagasins/annexeeP 8° 01521 b(1966) -(1975)cParisdMagasins/AnnexezTables décennales dans le n° 100, 1975 de la revue aZPAY aexempb201011 aGEO RA4.06 France aDEW 00100914nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000058001502070047002082100005002552300024002603260005002846060045002896060043003348010013003778560072003908560108004629550005005709920012005759920025005870000994392000099439220130319051754.0 a0000994392 a a20049999k fre 01 ba0 afre aFR ar aaz z  adr 10aPropriété intellectuelleb[Ressource électronique] 1aParis :$cLexisNexis Jurisclasseur :$c2004- a aRevue électronique a aPropriété intellectuellexPériodiques aPropriété industriellexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aDEW 340 aGEO RA4.06 France 0101190cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200010800162207002200270210003000292326001600322606004500338606003300383676000800416710007900424801003000503801002300533802000700556856002900563856008400592955006700676955006400743972000900807992001200816059439289000105004720130319051754.01 a1632-0298 aissn16320298 a0001050047 a20020116a20019999k y0frey0103 ba0 afre aFR ar aaha 10aPropriétés intellectuellesfInstitut de recherche en propriété intellectuelle Henri Desbois (Paris) 0aN°1 (Oct. 2001)- aPariscTransactived2001- aTrimestriel aPropriété intellectuellexPériodiques aDroit d'auteuryPériodiques a34602aInstitut de recherche en propriété intellectuelle Henri Desboisc(Paris) 3aFRbAbesc20060223gAFNOR 3aFRbISSNc20020108 a074 uhttp://www.irpi.ccip.fr/ zContenu : sommaires des n°s et résumés d'articles parus depuis le n°1, 20011 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 3461 bno. 18 (jan-2006)- ....cParisdMagasins/AnnexeeP 4° 7158 aZPAY aDEW 34601178nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009100154210006800245326001700313517004700330530009200377607002500469710003300494856010400527856003700631955006800668957008900736972000900825991001800834992001200852039634299000018004120130319051755.01 a0522-9138 aFNSP671632 a0000180041 a19900101a19629999 ba0 ager aDE aaia 10aProtokollfBergedorfer Gesprächskreis zu Fragen der Freien Industriellen Gesellschaft aHamburg-BergedorfcBuchhandlung Werner Nordmann Vertriebd1962- a3 nos par an10aMinutes of meeting - Bergedorf Round Table 0aProtokoll - Bergedorfer Gesprächskreis zu Fragen der Freien Industriellen Gesellschaft aEuropexPériodiques02aKörber-Stiftungc(Hambourg)4 uhttp://www.koerber-stiftung.de/internationale_verstaendigung/bergedorfer_gespraechskreis/index.html zAccès libre au texte intégral.1 bno. 1(1962) -no. 137 (2007)cParisdMagasins/AnnexeeP 8° 24581 bno. 1 (1962) -no. 127 (2003) : cet index se trouve dans le no. 128, 2003 de la revue aZGRA aexempb201004 aDEW 94001442nas 2200373 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000650013921000720020432600160027644000480029245200350034053000320037560600360040760600290044360600480047271200430052080100210056385600480058485600920063285600590072485601340078395500850091797200090100299100180101199200230102999200160105203642255X000000803620130518172826.01 a0030-8269 aFNSP113849 a19900101b19681987 ba0 aeng aUS aaha 10aPSeNewsletter of the American Political Science Association aWashington, D.C.cAmerican Political Science Associationd1968-1987 aTrimestriel 1tPS, Political science & politicsx1049-0965 1tPS (Washington, D.C. : Online)00aPSb(Washington, D.C. 1968) aScience politiquexPériodiques aPolitologuesyEtats-Unis aScience politiqueyEtats-UnisxPériodiques02aAmerican Political Science Association 3aFRbCCN0030-82694 uhttp://www.jstor.org/journals/10490965.html zAccès au texte intégral réservé aux lecteurs inscrits à la Bibliothèque via JSTOR4 uhttp://ejournals.ebsco.com/direct.asp?JournalID=108999 zAccès au texte intégral réservé aux lecteurs inscrits à la Bibliothèque via Ebsco Host depuis le volume 34, n°1, mars 20011 bvol. 1 no. 1 (1968)- vol. 20 no.4 (dec-1987)cParisdMagasins/AnnexeeP 8° 2566 aZCAD aexempb200905 aGEO RC2 Etats-Unis aDEW 320-32101601cas0 2200421 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200007700197207003400274210006800308326001600376430004400392434004500436517003500481517000700516710004800523801003000571801003000601801002300631802000700654856020800661955010700869955009100976955006901067972000901136991001801145992001601163040270092000102036320131220100325.01 a1049-0965 accn1049-0965 aissn10490965 a0001020363 a19890404a19889999k y0frey0103 ba0 aeng aUS a 0  ar aaha 0uu 10aPS, Political science & politicsfAmerican Political Science Association 0aVol. 21, no. 1 (winter 1988)- aWashington, D.CcAmerican Political Science Associationdc1988- aTrimestriel 1tPS (Washington, D.C. : 1968)x0030-8269 1tThe Political science teacherx0896-082810aPolitical science and politics10aPS02aAmerican Political Science Association4070 3aFRbAbesc20060915gAFNOR 3aFRbAbesc20060915gAFNOR 3aFRbISSNc20051021 a014 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=108999zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 23 no. 1 (mar-1990) -....cParisdMagasins/AnnexeeP 4° 5909wManque : vol. 36, nos 1 à 4, 20031 bvol. 21 no. 1 (hiv-1988) -vol. 22 no. 4 (dec-1989)cParisdMagasins/AnnexeeP 8° 25661 bL'année en courscParisdBibliothèque de rechercheeP 4° 5909 aZCAD aexempb200905 aDEW 320-32101360cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157110001600175200002600191207002900217210004800246326001200294421006000306606003000366710005600396801003000452801002300482802000700505856012800512856007600640856007000716856007600786955007100862972000900933992002100942992001100963040087735000119120220130319051756.01 a0956-7976 accn0956-7976 aissn09567976 a0001191202 a19900620a19909999k y0frey50 ba0 aeng aUS ay 0  aafa 0uu 10aPsychological science 0aVol.1, no.1 (Jan. 1990)- aNew YorkcCambridge University Pressd1990- aMensuel 1tPsychological science in the public interestx1529-1006 aPsychologiexPériodiques02aAssociation for psychological scienceb(Etats-Unis) 3aFRbAbesc20090308gAFNOR 3aFRbISSNc20090225 a024 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=PYS&site=ehost-live zContenu: sommaires et texte intégral depuis le vol. 1 no. 1 (jan-1990)4 uhttps://acces-distant.sciences-po.fr/fork?http://pss.sagepub.com/ zContenu: sommaires et texte intégral depuis le vol. 1 no. 1 (jan-1990)1 bvol. 21 no. 1 (jan-2010) -....cParisdMagasins/AnnexeeP 4° 7281 aZSAB aGEO RQ Universel aDEW 1501671nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154207003000180210002900210326001600239430004600255530003300301606004200334606005300376607005000429710005000479801002100529856012800550856010800678856010100786856010800887955006700995957013701062972000901199991001801208992003101226992001601257038779226000003623820130319051756.01 a0033-3298 aFNSP205354 a0000036238 a19900101a19269999 ba0 aeng aGB aaha 10aPublic administration 1aVol. 4, no. 1 (jan-1926)- aOxfordcBlackwelld1926- aTrimestriel 1tJournal of public administration (London) 0aPublic administrationbPrint aAdministration publiquexPériodiques aFonction publiqueyGrande-BretagnexPériodiques aGrande-BretagnexAdministrationxPériodiques02aRoyal Institute of Public Administration (GB) 3aFRbCCN0033-32984 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=PAD&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100914 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 22 no. 1 (1944) -....cParisdMagasins/AnnexeeP 8° 00561 bvol. 1 (1923) -vol. 20 (1942) ; vol. 15 (1937) -vol. 34 (1956) ; vol. 1 (1923) -vol. 55 (1977)cParisdMagasins/AnnexeeP Index 0139 aZCAD aexempb201011 aGEO RA4.02 Grande-Bretagne aDEW 350-35401075nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004200154207002700196210002900223326003400252430005500286606004200341607006500383856010700448856006000555955008200615991001800697992004200715992001600757039331040000003507020130319051756.01 a0271-2075 aFNSP202350 a0000035070 a19900101a19819999 ba0 aeng aGB aaha 10aPublic administration and development 1aVol. 1, no. 1 (1981) - aChichestercWileyd1981- aTrimestriel puis 5 nos par an 1aJournal of administration overseasxISSN 0021-8472 aAdministration publiquexPériodiques aPays en voie de développementxAdministrationxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www3.interscience.wiley.com/cgi-bin/issuetoc?ID=18677 zContenu : sommaires depuis le vol. 16, n°1, fév. 19961 bvol. 1 no. 1 (1981) -vol. 18 no. 3 (1998)cParisdMagasins/AnnexeeP 8° 0961 aexempb201101 aGEO RO Pays en voie de développement aDEW 350-35401154nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210006700185326001600252517003300268606003700301606003700338606004900375607006500424801002100489856005400510856006000564955011900624991001700743992002100760992002300781992001200804039336972000003505620130319051756.01 a0275-1100 aFNSP202328 a0000035056 a19900101a19819999 ba0 aeng aUS aaha 10aPublic budgeting & finance aNew Brunswick, N.J.cTransaction Periodicals Consortiumd1981- aTrimestriel10aPublic budgeting and finance aBudgetyEtats-UnisxPériodiques aFinances publiquesxPériodiques aFinances publiquesyEtats-UnisxPériodiques aEtats-UnisxCrédits budgétaires et dépensesxPériodiques 3aFRbCCN0275-11004 uhttp://www.uky.edu/RGS/MartinSchool/abfm/pb&f.htm zContenu : sommaires et résumés depuis le vol. 1, 19811 bvol. 1 no. 2 (ete-1981) -vol. 19 no. 4 (1999) ; vol. 27 no. 1 (pri-2007) -....cParisdMagasins/AnnexeeP 8° 4744 aexemp$201106 aGEO RQ Universel aGEO RC2 Etats-Unis aDEW 33600949nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001800154210004400172326002600216606004900242606003400291607005600325801002100381856004500402856006200447955006000509972000900569991001800578992002300596992001600619038830418000003506820130319051756.01 a0048-5829 aFNSP202348 a0000035068 a19900101a19669999 ba0 aeng aNL aafa 10aPublic choice aDordrechtcKluwer Academic Publ.d1966- a8 n°s doubles par an aPolitique publiqueyEtats-UnisxPériodiques aChoix collectifxPériodiques aEtats-UnisxPolitique et gouvernementxPériodiques 3aFRbCCN0048-58294 uhttp://www.wkap.nl/jrnltoc.htm/0048-5829 zContenu : sommaires depuis le vol. 82, n°1-2, janv. 19951 bvol. 4 (1968) -....cParisdMagasins/AnnexeeP 8° 2756 aZSAB aexempb201105 aGEO RC2 Etats-Unis aDEW 350-35401110nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210007000173210004500243326001700288606003600305606003200341712005700373856012800430856010800558955007000666972000900736991001800745992002100763992001200784040004503000011720420130319051756.01 a0899-2363 aFNSP486862 a0000117204 a19900101a19889999 ba0 aeng aUS aaia 10aPublic culture aPhiladelphia, PAcProject [University of Pennsylvania]d1988-1996 aDurham, NCcDuke University Pressd1997- a3 nos par an aSciences socialesxPériodiques aAnthropologiexPériodiques02aSociety for Transnational Cultural Studies (Chicago)4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=6Z1&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 9 (aut-1992) -....cParisdMagasins/AnnexeeP 8° 6012 aZSAB aexempb201211 aGEO RQ Universel aDEW 30000979nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210003900180326001500219430004100234517000800275606004900283856010800332856010800440955006700548972000900615991001800624992002300642992001200665040389707000021229820130319051756.01 a1091-1421 aFNSP766751 a0000212298 a19900101a19979999 ba0 aeng aUS aaga 00aPublic finance review aThousand Oaks, Calif.cSaged1997- aBimestriel 1aPublic finance quarterly,x0048-585310aPFR aFinances publiquesyEtats-UnisxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 25 no. 1 (1997) -....cParisdMagasins/AnnexeeP 8° 3596 aZPAY aexempb201010 aGEO RC2 Etats-Unis aDEW 33601108nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007400154210002700228326001600255434004200271530001500313606003100328606003600359801002100395856016900416856010800585955009200693972000900785992001200794038779366000003507220130319051756.01 a0033-3565 aFNSP202352 a0000035072 a19900101a19569999 ba0 aeng aGB aaha 10aPublic laweconstitutional and administrative law of the Commonwealth aLondoncStevensd1956- aTrimestriel 1aBritish journal of administrative law00aPublic law aDroit publicxPériodiques aScience politiquexPériodiques 3aFRbCCN0033-35654 uhttps://acces-distant.sciences-po.fr/fork?http://www.westlaw.com/signon/default.wl?RS=UKIS1.0&VR=1.0&sp=intiep-000&MDP-WSSO-SESSION=9bade534eab0e86afa185fefd9abe17e zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (pri/ete-1956) -(ete-2002) ; (aut-2008) -....cParisdMagasins/AnnexeeP 8° 1500 aZSAB aDEW 34001369nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210002900184326001500213430002900228606005400257606006100311606004400372710003600416856012800452856010800580856010100688856010800789955007800897972000900975992003100984992001601015040083977000005111020130319051756.01 a0954-0962 aFNSP248633 a0000051110 a19900101a19889999 ba0 aeng aGB aaha 10aPublic money & management aOxfordcBlackwelld1988- aBimestriel 1aPublic money,x0261-1252 aFinances publiquesyGrande-BretagnexPériodiques aServices publicsyGrande-BretagnexGestionxPériodiques aServices publicsxGestionxPériodiques02aPublic Finance Foundationc(GB)4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=1MD&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100915 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 8 no. 1/2 (pri/été-1988) -....cParisdMagasins/AnnexeeP 4° 4717 aZPAY aGEO RA4.02 Grande-Bretagne aDEW 350-35401983nas 2200445 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154207003100183210005700214210005900271210005100330210004800381210004200429210005500471210004300526326001600569606004700585606003500632606003700667710005300704801002100757856012800778856010800906856009001014856010801104856010301212856010801315955007001423972000901493992002301502992001201525038779404000003594420131025130014.01 a0033-362X aFNSP204526 a0000035944 a19900101a19379999 ba0 aeng aUS aaha 10aPublic opinion quarterly 1aVol. 1, no. 1 (jan-1937) - aPrinceton, N.J.cPublic Opinion Quarterlyd1937-1946 aPrinceton, N.J.cPrinceton University Pressd1946-1968 aNew YorkcColumbia University Pressd1968-1978 aNew YorkcElsevier North-Hollandd1978-1982 aNew YorkcElsevier Scienced1982-1985 aChicago, Ill.cChicago University Pressd1986-2003 aOxfordcOxford University Pressd2004- aTrimestriel aOpinion publiqueyEtats-UnisxPériodiques aOpinion publiquexPériodiques aSondages d'opinionxPériodiques02aAmerican Association for Public Opinion Research 3aFRbCCN0033-362X4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=POQ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0033362X.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=1045194 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1937) -....cParisdMagasins/AnnexeeP 8° 0048 aZCAD aGEO RC2 Etats-Unis aDEW 30300959nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004900163207002800212210004900240300002900289326001600318530003100334606004200365801001300407856004700420856008300467955007000550972000900620992001600629108562735000053982320130319051757.01 a1566-7170 a0000539823 a a20019999k fre ba0 aeng aNL a 0  ar aah z 0 10aPublic organization reviewea global journal 1avol.1,n°1(march 2001)- aDordrechtcKluwer Academic Publishersd2001- atitre-clé non vérifié aTrimestriel00aPublic organization review aAdministration publiquexPériodiques 0aFRbFNSP4 uhttp://www.kluweronline.com/issn/1566-7170 zContenu : sommaires et résumés des articles depuis le vol.1,n°1, March 20011 bvol. 2 no. 1 (mar-2002) -....cParisdMagasins/AnnexeeP 8° 6688 aZSAB aDEW 350-35401508cas0 2200421 450 001001000000002001100010005001700021011001400038020002000052035001700072035001500089100004100104101000800145102000700153105001800160106000600178110001600184200003700200207003300237210007700270326002300347326002900370430004600399606004200445606005500487607006100542710009900603801003000702801001500732801001700747801002300764802000700787856007000794856010800864955007100972992003101043992001201074076686701000113352920130319051757.01 a0952-0767 aUSbsn 87040066 aissn09520767 a0001133529 a20040304a19869999k y0frey0103 ba0 aeng aGB ay 0  ar aaha 0uu 00aPublic policy and administration 0aVol. 1, no. 1 (spring 1986)- aLondoncJoint University Council, Public Administration Committeed1986- aTrimestrielb1996- a3 n°s par anb1986-1995 1tPublic administration bulletinx0144-2171 aAdministration publiquexPériodiques aTechniques de décision en politiquexPériodiques aGrande-BretagnexPolitique et gouvernementxPériodiques02aJoint University Council for Social and Public AdministrationbPublic Administration Committee 3aFRbAbesc20080306gAFNOR 2bWaUgAACR2 0bAzTeSgAACR2 3aFRbISSNc20070901 a024 uhttps://acces-distant.sciences-po.fr/fork?http://ppa.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 22 no. 1 (jan-2007) -....cParisdMagasins/AnnexeeP 8° 7016 aGEO RA4.02 Grande-Bretagne aDEW 35101303cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200002700180207003400207210003300241326001600274430003600290440002400326606004900350606003700399710005200436801003000488801002300518802000700541856010300548856010800651955010000759972000900859992001600868992003300884090031350000092882920130628122625.01 a1744-5396 aissn17445396 a0000928829 a20040701b20052012k y1fre 01 ba0 aeng aGB a 0  ar aaha 0uu 10aPublic policy research 0aVol. 12, issue 1 (Mar. 2004)- aOxfordcBlackwelld2005-2012 aTrimestriel 1tNew economy (London)x1070-3535 1tJuncturex2050-5868 aPolitique publiqueyEtats-UnisxPériodiques aPolitique publiquexPériodiques02aInstitute for Public Policy Researchc(Londres) 3aFRbAbesc20060113gAFNOR 3aFRbISSNc20050901 a024 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=113107 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 12 no. 1 (mar-2005) -vol. 18 no. 4 (dec-2011/fev-2012)cParisdMagasins/AnnexeeP 8° 6216 aZPAY aDEW 350-354 aGEO RS Sans aspect régional00864nls 2200301 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000072001502100041002222300028002633260031002913360024003223370024003466070049003706760017004197100032004368010013004688300007004818560038004888560036005260000559790000055979020130319051757.0 a0000559790 a a20019999k fre 01 ba0 afre aFR ar aby z  adr 14aLes publications de l'Institut Montaigneb[Ressource électronique] aPariscInstitut Montaigned2001-.... aDonnées électroniques aCollection de monographies aDonnées textuelles aAccès par internet aFrancexPolitique et gouvernementz2002-2007 a320.944v21a02aInstitut Montaignec(Paris) 0aFRbFNSP aET4 uhttp://www.institutmontaigne.org/ zAccès libre au texte intégral02023cas0 2200481 450 001001000000002001100010005001700021011001400038035001400052035001400066035001700080035001700097035001500114035001700129035001500146100004100161101000800202102000700210105001800217106000600235110001600241200009600257210004700353210008100400312008100481423012000562440005000682488006200732510009000794517003200884530009500916531005801011606007701069710004801146801003001194801001801224801002301242802000701265856007601272955006901348955010901417991001501526013392484000114982720130319051757.0 a0073-3903 a036611506 a060622806 accn0073-3903 zccn0212/842X asib0096591 aissn00733903 a0001149827 a19880421b19611996k f0frey0103 ba0 amul aFR ay  ar aau 10aPublications de la Cour européenne des droits de l'hommehSérie A,iArrêts et décisions0 aStrasbourgcConseil de l'Europed1961-19711 aStrasbourgcConseil de l'EuropeaKölnaBerlinaBonncC. Heymannsd1971-1996 aPublication citée : Cour eur. D. H., Affaire... ; Cour eur. D. H., arrêt A 1tPublications de la Cour européenne des droits de l'homme. Série B, Mémoires, plaidoiries et documentsx0073-3911 1tReports of judgments and decisionsx1682-7449 1tCour européenne des droits de l'homme. Arrêtx1023-461610aPublications of the European Court of Human Rights. Series A, Judgments and decisions10aCour eur. D. H., Affaire...10aPublications de la Cour européenne des droits de l'homme. Série A, Arrêts et décisions 0aPubl. Cour eur. droits homme, Sér. A Arrêts décis. aDroits de l'homme (droit européen)xJurisprudencexPériodiques2rameau02aCour européenne des droits de l'homme4070 3aFRbAbesc20070626gAFNOR 3aFRbSFgAFNOR 3aFRbISSNc20020308 a00 uhttp://www.echr.coe.int/echr/fr/hudoczAccès libre au texte intégral.1 bno. 1 (1961) -no. 126 (1988)cParisdMagasins/AnnexeeCOL8°30751 bno. 127 (1988) -no. 338 (1996)cParisdMagasins/Annexeecotes diversesw(voir détail en notices liées) aPériobTZ01562cas0 2200361 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164105001800171106000600189110001600195200019500211210005800406440011200464447011700576510010000693530009600793531005800889710005100947801003000998801002301028802000701051856005701058955007001115991001501185036768286000112836620130319051757.0 a1812-0199 a080068936 accn0110/6864 aissn18120199 a0001128366 a19830101b19231930k z0frey0103 ba0 amul aNL ay 0  ar aaua 0 10aPublications de la Cour permanente de justice internationalehSérie AiRecueil des arrêtsd= Publications of the Permanent Court of International JusticehSeries AiCollection of judgments aLeydecSociété d'éditions A.W. Sijthoffd1923-1930 1tCour permanente de justice internationale. Série A/B. Arrêts, ordonnances et avis consultatifsx1812-0210 1tPublications de la Cour permanente de justice internationale. Série B. Recueil des avis consultatifsx1812-020210aPublications of the Permanent Court of International JusticehSeries AiCollection of judgments10aPublications de la Cour permanente de justice internationale. Série A. Recueil des arrêts 0aPubl. Cour perm. justice int., Sér. A, Recl. arrêts02aCour permanente de justice internationale4070 3aFRbAbesc20050531gAFNOR 3aFRbISSNc20030523 a00 uhttp://www.icj-cij.org/pcij/index.php?p1=9&p2=1&p3=01 bno. 1 (1923) -no. 24 (1930)cParisdMagasins/AnnexeeCOL8°1074 A aPériobTZ01616cas0 2200373 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164105001800171106000600189110001600195200021500211210005700426440011200483447010700595510010800702530010600810531006400916710005100980801003001031801002301061802000701084830000901091856005701100955007001157991001501227080068944000112837020130319051757.0 a1812-0202 a036839418 aissn18120202 accn0119/0156 a0001128370 a20030523b19221930k z0frey0103 ba0 amul aNL ay 0  ar aaua 0 10aPublications de la Cour permanente de justice internationalehSérie B,iRecueil des avis consultatifsd= Publications of the Permanent Court of International justicehSeries B,iCollection of advisory opinions aLeydecSociété d'éditions A.W.Sijthoffd1922-1930 1tCour permanente de justice internationale. Série A/B. Arrêts, ordonnances et avis consultatifsx1812-0210 1tPublications de la Cour permanente de justice internationale. Série A. Recueil des arrêtsx1812-019910aPublications of the Permanent Court of International justice. Series B. Collection of advisory opinions10aPublications de la Cour permanente de justice internationale. Série B. Recueil des avis consultatifs 0aPubl. Cour perm. justice int., Sér. B, Recl. avis consult.02aCour permanente de justice internationale4070 3aFRbAbesc20050531gAFNOR 3aFRbISSNc20030523 a00 asdy0 uhttp://www.icj-cij.org/pcij/index.php?p1=9&p2=2&p3=11 bno. 1 (1922) -no. 18 (1930)cParisdMagasins/AnnexeeCOL8°1074 B aPériobTZ01647cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086040001000101100004100111101000800152102000700160105001800167106000600185110001600191200015200207210004700359440008500406510015800491517004500649517008000694530015200774531008800926710005101014801003001065801002301095802000701118830000901125856005701134955005501191991001501246037953397000112749020130319051757.0 a1011-8462 accn1011-8462 aissn10118462 a0001127490 aNU022 a19890418b192219 k z0frey0103 ba0 amul aNL ay 0  ar aaua 0 10aPublications de la Cour permanente de justice internationalehSérie CiActes et documents relatifs aux arrêts et aux avis consultatifs de la Cour aLeydecSociété d'éditions A.W. Sijthoff 1tPleadings, oral arguments, documents (International Court of Justice)x0074-443310aPublications of the Permanent Court of International Justice. Series C. Acts and documents relating to judgments and advisory opinions given by the Court10aPlaidoiries, exposés oraux et documents10aActes et documents relatifs aux arrêts et aux avis consultatifs de la Cour10aPublications de la Cour permanente de justice internationale. Série C. Actes et documents relatifs aux arrêts et aux avis consultatifs de la Cour 0aPubl. Cour perm. justice int., Sér. C Actes doc. relat. arrêts avis consult. Cour02aCour permanente de justice internationale4070 3aFRbAbesc20051021gAFNOR 3aFRbISSNc20030523 a00 asdy0 uhttp://www.icj-cij.org/pcij/index.php?p1=9&p2=4&p3=31 b(1922) -(1939)cParisdMagasins/AnnexeeCOL8°1075 aPériobTZ01168cas0 2200265 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200027100180210004200451510014100493530007500634710005100709801003000760856005700790955005500847038608278000112749120130319051757.0 a1574-4779 accn9024/2513 a0001127491 a19830101b192619 f0frey0103 ba0 amul aNL ay 0  ar aau 0 10aPublications de la Cour permanente de justice internationalehSérie DiActes et documents relatifs à l'organisation de la CourdPublications of the Permanent Court of International JusticehSeries DiActs and documents concerning the organization of the Courtzeng aLeyde (NL)cA. W. Sijthoffd1926-19??10aPublications of the Permanent Court of International JusticehSeries DiActs and documents concerning the organization of the Courtzeng10aPublications de la Cour permanente de justice internationale. Série D02aCour permanente de justice internationale4070 3aFRbAbesc20061011gAFNOR uhttp://www.icj-cij.org/pcij/index.php?p1=9&p2=5&p3=41 b(1931) -(1938)cParisdMagasins/AnnexezCOL8°107601570cas0 2200373 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164105001800171106000600189110001600195200027900211210003600490326001100526440005700537510013900594517006700733530013900800710004600939801003000985801002301015802000701038830000901045856005701054955007001111991001501181038608286000112749220130319051757.01 a1574-4760 a089959361 accn9024/2521 aissn15744760 a0001127492 a19830101b19251945k y1frey0103 ba0 amul aNL ay  ar aaku uu 10aPublications de la Cour permanente de justice internationalehSérie E,iRapport annuel de la Cour permanente de justice internationaled= Publications of the Permanent Court of International JusticehSéries E,iAnnual report of the Permanent Court of International Justice aLeydecA.W. Sijthoffd1925-1945 aAnnuel 1tAnnuaire - Cour internationale de justicex0251-066910aPublications of the Permanent Court of International Justice, séries E, annual report of the Permanent Court of International Justice10aRapport annuel de la Cour Permanente de Justice Internationale10aPublications de la Cour Permanente de Justice Internationale. Série E, Rapport annuel de la Cour Permanente de Justice Internationale02aCour permanente de justice internationale 3aFRbAbesc20060113gAFNOR 3aFRbISSNc20050901 a0j asdy0 uhttp://www.icj-cij.org/pcij/index.php?p1=9&p2=6&p3=51 bno. 1 (1925) -no. 16 (1945)cParisdMagasins/AnnexeeCOL 8° 1077 aPériobTZ01464cas0 2200301 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200014900180210004200329327041200371510007500783530007500858710005100933801003000984830000901014856005701023955006701080991001501147038608294000112749320130319051757.0 a1574-4752 accn9024/253X a0001127493 a19830101b19271938 f0frey0103 ba0 amul aNL ay 0  ar aau 0 10aPublications de la Cour permanente de justice internationalehSérie Fd= Publications of the Permanent Court of International JusticehSeries F aLeyde (NL)cA. W. Sijthoffd1927-19381 aN.1 : Premier index général des publications de la Cour, Séries A, B et C, 1e-11e sessions (1922-1926)aN.2 : Deuxième index général des publications de la Cour, Séries A, B et C, 12e-19e sessions (1927-1930)aN. 3 : Troisième index général des publications de la Cour, Séries A, B et C, 25e-35e sessions (1931-1935)aN.4 : Index du statut et du règlement (élaboration et révision - 1920-1936)10aPublications of the Permanent Court of International JusticehSeries F10aPublications de la Cour permanente de justice internationale. Série F02aCour permanente de justice internationale4070 3aFRbAbesc20071011gAFNOR asdy0 uhttp://www.icj-cij.org/pcij/index.php?p1=9&p2=7&p3=61 bno. 1 (1927) -no. 4 (1938)cParisdMagasins/AnnexezCOL8°1078 aPériobTZ01194nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000081001502100062002313000122002933260016004153360058004313370063004894400070005524520067006226060037006897120034007268010013007608560090007739550005008639920012008680000467820000046782020130319051757.0 a0000467820 a b18861907k fre 01 ba0 aeng aUS az aah z  adr 10aPublications of the American Economic Associationb[Ressource électronique] aBaltimore, Md.c:American Economic Associationd1886-1907 aAccès au texte intégral (réservé aux sites de Sciences Po) du vol. 1, 3rd series, de 1886 jusqu'au vol. 8 de 1907 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tAmerican Economic Association quarterly [Ressource électronique] 1tPublications of the American Economic Associationx(1049-7498) aEconomie politiquexPériodiques02aAmerican Economic Association 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/10497498.html1 r aDEW 33001019nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001200139210003100151326001600182452003500198530001200233606006000245606004100305710006000346801002100406856006500427955006600492957006300558972000900621991001800630992002900648992001600677038830515000003507120130725121907.01 a0048-5950 aFNSP202351 a19900101a19719999 ba0 aeng aUS aaha 10aPublius aDenton, TXcPubliusd1971- aTrimestriel 1tPublius (Online)‎x1747-710700aPublius aGouvernement fédéralyAmérique du NordxPériodiques aGouvernement fédéralxPériodiques02aCenter for the Study of Federalismc(Philadelphie, Pa.) 3aFRbCCN0048-59504 uhttp://www.oxfordjournals.org/our_journals/pubjof/index.html1 bvol. 1 no. 1 (1971) -....cParisdMagasins/AnnexeeP 8° 33041 b(1973) -(1998)zse trouve dans le vol. 29 no. 1 (hiv-1999) aZSAB aexempb200905 aGEO RC Amérique du Nord aDEW 350-35401366nas 2200385 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012310600060014111000160014720000140016321000260017732600150020351701150021851701090033353000270044260600520046960600420052160600370056360600470060067600080064771000830065580100130073885600540075195500670080595500590087297200090093199200160094099200240095605820153X000050088720130319051758.01 a1376-098X a0000500887 a a20009999k fre ba0 afre aBE a 0  ar aaj z 0 10aPyramides aBruxellescULBd2000- aSemestriel10aRevue du Laboratoire d'études et de recherches en administration publique de l'Université libre de Bruxelles10aRevue du Centre d'Etudes et de recherches en Administration Publique de l'Université Libre de Bruxelles10aPyramidesb(Bruxelles) aAdministration publiqueyBelgiquexPériodiques aAdministration publiquexPériodiques aPolitique publiquexPériodiques aPolitique publiqueyBelgiquexPériodiques a35102aLaboratoire d'études et de recherches en administration publiquec(Bruxelles) 0aFRbFNSP4 uhttp://www.ulb.ac.be/soco/cerap/pyramides_num.htm1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3511 bno. 1 (2000) -....cParisdMagasins/AnnexeeP 8° 6665 aZCAD aDEW 350-354 aGEO RA4.04 Belgique01110nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009300154207001700247210002500264326001700289517004300306530002000349606003200369606002600401676000800427710009200435856005300527856003900580955007300619955005900692972000900751992001200760039844293000000592120130319051758.01 a0987-1381 aFNSP109429 a0000005921 a19900329a19879999 ba0 afre aFR aaia 10aQUADERNIf[Centre de recherche et d'étude sur la décision administrative et politique] 1ano 1 (1987)- aPariscCredapd1987- a3 nos par an10aQuaderniela revue de la communication00aQuadernibParis aCommunicationxPériodiques aMédiasxPériodiques a07002aCentre de recherches et d'études sur la décision administrative et politiquec(Paris)4 uhttp://panoramix.univ-paris1.fr/CREDAP/quaderni/ zContenu : sommaires depuis le n°21 bLes 3 dernières annéescParisd27, Salle Rez-de-chausséeeDEW 0701 bno. 1 (1987) -....cParisdMagasins/AnnexeeP 4° 5894 aZPAY aDEW 30200927nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002800139210005400167326001600221452004900237530004700286606004800333801002100381856010800402955006600510972000900576991001800585992002200603992001200625039590399000003519820130911122656.01 a0392-6664 aFNSP202628 a19900101a19819999 ba0 aita aIT aaha 10aQuaderni costituzionali aBologna‎cSocietà editrice il Mulino‎d1981- aTrimestriel 1tQuaderni costituzionali (Online),x1973-818810aQuaderni costituzionali‎bTesto stampato aDroit constitutionnelyItaliexPériodiques 3aFRbCCN0392-66644 uhttp://www.rivisteweb.it/issn/0392-6664zAccès libre aux sommaires et resumés à partir du no 1, 19971 bvol. 1 no. 1 (1981) -....cParisdMagasins/AnnexeeP 8° 4406 aZCAD aexempb201106 aGEO RA6.03 Italie aDEW 34201118nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210003700188326001600225440005000241517000800291606004400299606003700343801002100380856004100401856005700442955015100499957009300650972000900743991001800752992002200770037480553000003578420130319051758.01 a0392-6656 aFNSP204128 a0000035784 a19900101b19811994 ba0 aita aIT aahu 10aQuaderni del Circolo Rosselli aMilanocFranco Angelid1981-1994 aTrimestriel 1tQCR. Quaderni del Circolo Rossellix1123-970010aQCR aSciences socialesyItaliexPériodiques aSocialismeyItaliexPériodiques 3aFRbCCN0392-66564 uhttp://www.rosselli.org/Quaderni.asp zContenu : sommaires depuis 1997 et index depuis 19811 bvol. 1 no. 1 (1981) -vol. 14, no. 3/4 (1994)cParisdMagasins/AnnexeeP 8° 4407zManque vol. 5, no 2, 3 et 4 (1985) et vol. 6, no 1,2 et 3 (1986)1 bno. 1 (1981) -no. 4 (2001)zCet index se trouve dans le vol. 21 no. 4 (2001) de la revue aZCAD aexempb201010 aGEO RA6.03 Italie01114nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004200139210004500181326001500226530004200241606002800283710006900311711007200380801002100452856012300473955006300596957011000659972000900769991001800778992001600796039590542000003578820130911145656.01 a0392-6753 aFNSP204132 a19900101a19779999 ba0 aita aIT aahu 10aQuaderni dell'Osservatorio elettorale aFirenzecGiunta regionale toscanad1977- aSemestriel10aQuaderni dell'Osservatorio elettorale aElectionsxPériodiques02aIstituto regionale per la programmazione economica della Toscana02aGruppo di studio sul comportamento elettorale in Toscana (Florence) 3aFRbCCN0392-67534 uhttp://ius.regione.toscana.it/elezioni/Quaderni/indicqua.htmzAccès libre au texte intégral à partir du no 36, 19961 bno. 1 (oct-1977) -....cParisdMagasins/AnnexeeP 8° 44091 bno. 1 (1977) -no. 38 (1997)cParisdMagasins/Annexezcet index se trouve dans le no. 39, 1998 de la revue aZGRA aexempb201106 aDEW 324.6-900818nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210002800187326001800215606004700233606004400280856003100324856006000355955008200415972000900497991001800506992001600524036270237000013737120130319051758.01 a1124-7959 aFNSP548676 a0000137371 a19941004a19949999 ba0 aita aIT aaia 00aQuaderni di scienza politica aMilanocGiuffrèd1994- a3 n°s par an aScience politiquexRecherchexPériodiques aScience politiqueyItaliexPériodiques4 uhttp://www.unipv.it/quasp/4 zContenu : accès aux sommaires et résumés depuis 19941 bvol. 1 no. 1 (1994) -vol. 12 no. 2 (2005)cParisdMagasins/AnnexeeP 8° 6067 aZSAB aexempb201212 aDEW 320-32101265nas 2200361 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000079001502070017002292100074002463260016003204300062003365170070003986010075004686060036005436070051005797100061006308010013006918560076007048560060007809550005008409720009008459920014008549920012008689920023008800000539796000053979620130319051759.0 a0000539796 a a20039999k fre ba0 aeng aIE a 0  ar aah z 0 10aQuarterly bulletinfCentral Bank & Financial Services Authority of Ireland 1aSummer 2003- aDublincCentral Bank & Financial Services Authority of Irelandd2003- aTrimestriel 1tQuarterly bulletin - Central Bank of Irelandx(0332-2645)10aBulletin - Central Bank & Financial Services Authority of Ireland00aCentral Bank and Financial Services Authority of IrelandxPériodiques aFinancesyIrlandexPériodiques aIrlandexConditions économiquesxPériodiques02aCentral Bank and Financial Services Authority of Ireland 0aFRbFNSP4 uhttp://www.centralbank.ie/frame_main.asp?pg=pub_annu.asp&nv=pub_nav.asp zContient : texte intégral deouis le n° de Spring 20041 a aZGRA aDEW 330.9 aDEW 332 aGEO RA4.01 Irlande01329nls 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005100154210004800205326001600253430006600269517004700335601004500382606004300427607005800470710003100528830013500559856013700694856003600831955000500867957003000872972000900902992003000911992001400941992001200955038799146000005052720130319051759.01 a0038-2620 aFNSP247210 a0000050527 a19900101a19669999 ba0 aeng aZA aaha 10aQuarterly bulletinfSouth African Reserve Bank aPretoriacSouth African Reserve Bankd1966- atrimestriel 1aQuarterly bulletin of statistics - South African Reserve Bank10aKwartaalblad - Suid-Afrolaanse Reserwzbank02aSouth African Reserve BankxPériodiques aFinancesyAfrique du SudxPériodiques aAfrique du SudxConditions économiquesxPériodiques02aSouth African Reserve Bank a< P 4° 3330 > N° 106, Dec. 1972--->n° 154, 1984 collection donnée au CTL en juin 2002, 1985-2005 : collection donnée au CTLes4 uhttp://www.reservebank.co.za/internet/Publication.nsf/WTV/QuarterlyBulletins6AF7920302C489BB42256B440046F4F2?OpenDocument&AutoFramed zAccès libre au texte intégral1 r1 r1948/1996 < P Index 780 > aZGRA aGEO RF3.19 Afrique du Sud aDEW 330.9 aDEW 33201814nas 2200457 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154207002600193210004300219210005300262210004100315210004400356210004300400326001600443517000800459606003700467676000800504710002300512801002100535856005900556856008000615856010100695856010800796856009000904856010800994955006701102955007001169957005701239972000901296991001801305992002101323992001201344038779927000003580520130319051759.01 a0033-5533 aFNSP204167 a0000035805 a19900101a18869999 ba0 aeng aUS aahu 14aThe Quarterly journal of economics 1avol. 1, no 1 (1886) - aBoston, Mass.cG. H. Ellisd1886-1909? aCambridge, Mass.cHarvard Universityd1909?-1976 aNew YorkcJ. Wiley & Sonsd1976-1986 aaCambridge, Mass.cMIT pressd1987-2010 aOxfordcOxford University Pressd2011- aTrimestriel10aQJE aEconomie politiquexPériodiques a33002aHarvard University 3aFRbCCN0033-55334 uhttp://mitpress.mit.edu/journal-home.tcl?issn=00335533 zContenu : sommaires et résumés à partir du vol. 109, n°1, février 19944 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101818 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00335533.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3301 bvol. 1 no. 4 (Jul-1887) -....cParisdMagasins/AnnexeeP 8° 01251 b(1886) -(1936)cParisdMagasins/AnnexeeP Index 0092 aZPAY aexempb201101 aGEO RQ Universel aDEW 33001307nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200009300139210002700232326001600259430005300275452005000328510005600378530004800434606006600482710012300548856022000671955006700891972000900958992002200967992001600989039275930000005021620130701155438.01 a0255-3627 aFNSP246692 a19900101b19832005 f ba0 amul aFR aaha 10aQuarterly labour force statisticsd= Statistiques trimestrielles de la population active aPariscOCDEd1983-2005 aTrimestriel 1aLabour force statistics. Supplement ,x0304-3312 1tQuarterly labour force statisticsxa1609-760210aStatistiques trimestrielles de la population active10aQuarterly labour force statistics‎bPrint aPopulation activeyPays de l'OCDExStatistiquesxPériodiques02aOrganisation de coopération et de développement économiquesbDépartement des affaires économiques et statistiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/02553627/stattrimestpopulactivezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1983) -no. 1 (2003)cParisdMagasins/AnnexeeP 4° 3800 aZECH aGEO RA4.06 France aDEW 310-31901262nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007900154210002300233326001600256430005200272517009800324606005800422710012300480856011000603856010800713955006700821972000900888992001200897992005100909070233802000005021720130319051759.01 a0257-7801 aFNSP246695 a0000050217 a19900101a19839999 f ba0 amul aFR aaha 10aQuarterly national accounts - OECD, Department of Economics and Statistics aPariscOCDEd1983- aTrimestriel 1aQuarterly national accounts bulletinx0304-373810aComptes nationaux trimestriels - Département des affaires économiques et statistiques, OCDE aComptabilité nationaleyPays de l'OCDExPériodiques02aOrganisation de coopération et de développement économiquesbDépartement des affaires économiques et statistiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/02577801/comptesnattrimest zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1983) -no. 4 (2002)cParisdMagasins/AnnexeeP 4° 3878 aZECH aDEW 336 aGEO RN1 Pays industrialisés, pays occidentaux01427nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005000154210006500204326002300269326002900292430006300321606003700384606002700421710006000448711004800508711004600556856010000602856009000702955007100792955009100863957007200954972000901026991001801035992001201053040293378000006754320130319051759.01 a1062-9769 aFNSP313516 a0000067543 a19900101a19929999 ba0 aeng aUS aaha 14aThe Quarterly review of economics and finance aUrbana, IllcBureau of Economic and Business Researchd1992- aTrimestrielb2008- a5 n°s par anb1992-2007 1aThe Quarterly review of economics and business,x0033-5797 aEconomie politiquexPériodiques aFinancesxPériodiques02aBureau of Economic and Business Research (Urbana, Ill.)02aMidwest Economics Associationc(Etats-Unis)02aMidwest Finance Associationc(Etats-Unis)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/10629769 zContenu : accès aux sommaires et aux résumés de la revue depuis le volume 33, 19931 bvol. 50 no. 1 (fev-2010) -....cParisdMagasins/AnnexeeP 4° 72731 bvol. 32 no. 1 (pri-1992) -vol. 49 no. 4 (nov-2009)cParisdMagasins/AnnexeeP 8° 20051 bvol. 1 (1961) -vol. 40 (2000)cParisdMagasins/AnnexeeP Index 0835 aZPAY aexempb201302 aDEW 33000838nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210004600176326001600222606003600238606004400274710003500318801002100353856003700374955006700411972000900478991001800487992001900505992001200524038780054000003593620130319051800.01 a0033-6041 aFNSP204517 a0000035936 a19900101a18939999 ba0 aeng aCA aahu 10aQueen's quarterly aKingston, Ont.cQueen's Universityd1893- aTrimestriel aSciences socialesxPériodiques aSciences socialesyCanadaxPériodiques02aQueen's University at Kingston 3aFRbCCN0033-60414 uhttp://www.queensu.ca/quarterly/1 bvol. 70 no. 4 (1964) -....cParisdMagasins/AnnexeeP 8° 2051 aZCAD aexempb200910 aGEO RC1 Canada aDEW 30000983cas0 2200313 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200006900163210004000232326001100272606003900283606004500322606003100367801003000398856005100428856005700479955008600536972000900622992002400631992001400655167129333000105981420130319051802.01 a1768-4579 a0001059814 a20040909b20042006k y frey0103 ba0 afre aFR a 0  ar aauu 0 13aLa question socialeerevue libertaire de réflexion et de combat aPariscLibrairie Publicod2004-2006 aAnnuel aMouvement libertairexPériodiques aGauche (science politique)xPériodiques aSyndicalismexPériodiques 3aFRbAbesc20041027gAFNOR4 uhttp://www.laquestionsociale.org/sommaires.htm zContenu : texte intégral à partir du n° 1 de 20041 bno. 1 (pri/été-2004) -no. 3 (hiv-2005/2006)cParisdMagasins/AnnexeeP 8° 6933 aZGRA aGEO RA4 . 06 France aDEW 320.501159cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200016800162207001700330210005000347326001500397530004000412606003200452606003700484801003000521801002300551802000700574856004800581856009700629955007400726972000900800992001200809073871915000089989420130319051803.01 a1633-5961 aissn16335961 a0000899894 a20030523a20029999 0fre 0103 ba0 afre aFR ar aaj 10aQuestions de communicationfpublié avec le soutien du Centre de recherche sur les médiations et du Groupe de recherche en information, communication, propagandes 0aN°1 (2002)- aNancycPresses Universitaires de Nancyd2002- aSemestriel10aQuestions de communicationb(Nancy) aCommunicationxPériodiques aMediasxSociologiexPériodiques 3aFRbAbesc20050608gAFNOR 3aFRbISSNc20030523 a074 uhttp://questionsdecommunication.revues.org/ zContenu : texte intégral depuis le n°8 2005, à l'exception des numéros les plus récents1 bno. 1 (2002) ; no. 4 (2003) -....cParisdMagasins/AnnexeeP 8° 6842 aZPAY aDEW 30200933nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000077001502100023002272300005002503000050002553260016003053360056003213370017003776060044003946060044004387100063004828010013005458560068005589550005006260000497686000049768620130319051803.0 a0000497686 a a20019999k fre 01 ba0 afre aFR az aay z  adr 10aQuestions de recherche = Research in questionb[Ressource électronique] aPariscCERId2001- a aTexte intégral depuis le n°1, novembre 2001 airrégulier aDonnées textuelles accessibles uniquement en ligne aFichiers PDF aRelations internationalesxPériodiques aRelations internationalesxPériodiques02aCentre d'études et de recherches internationalesc(Paris) 0aFRbFNSP4 uhttp://www.ceri-sciencespo.com/cerifr/publica/question/menu.htm1 r00894cas0 2200253 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200011600148210002900264530004200293700002200335801003000357856014500387955005500532991002000587991003300607036866830000109456220130319051803.0 accn0123/2088 a0001094562 a19830101c18971914 0frey0103 zz0 afre aFR ar aau 10aQuestions diplomatiques et colonialeserevue de politique extérieure paraissant le 1er et le 15 de chaque mois aParisc[s.n.]d1897-191400aQuestions diplomatiques et coloniales 1aPensabHenri4651 3aFRbAbesc20060420gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb32846693s/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1897-1906)1 b(1897) -(1913)cParisdMagasins/AnnexeeP 8° 0805 aPériobTP02 P8 anumer0 (complément gallica)01235nas 2200349 i 450 00100100000000200110001000500170002101100140003810000410005210100080009310200070010110500180010810600060012611000160013220000590014820700160020721000460022332600150026953000430028460600320032760600440035967600080040371000530041180100130046485600650047785601180054295500670066095500630072795500740079097200090086499200120087307335810X000053867620131029103905.01 a1761-7146 a a20039999k fre ba0 afre aFR a 0  ar aag z 0 10aQuestions internationalesfLa Documentation française 1ano.1(2003)- aPariscLa Documentation françaised2003- aBimestriel00aQuestions internationalesbParis, 2003 aGéopolitiquexPériodiques aRelations internationalesxPériodiques a32702aFrancebDirection de la documentation française 0aFRbFNSP4 uhttp://www.ladocumentationfrancaise.fr/revues/qi/index.shtml zContient les résumés en anglais des articles du dossier, le glossaire et les sites internet pour chaque numéro1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bno. 1 (mai-2003) -....cParisdMagasins/AnnexeeP 8° 66971 bno. 1 (mai-2003) -....cParisdBibliothèque de rechercheeP 8° 6697 aZPAY aDEW 32700753cas0 2200253 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119105001800126106000600144110001600150200001700166210003500183326001400218530001700232801003000249856014500279955005500424991002000479039202518000109344520130319051803.0 accn9003/435X a0001093445 a19830101b18941907 0frey0103 ba0 afre aFR a 0  ar aaea 0 13aLa Quinzaine aPariscLa Quinzained1894-1907 aBimensuel03aLa Quinzaine 3aFRbAbesc20040702gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb328467901/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1902-1906)1 b(1905) -(1907)cParisdMagasins/AnnexeeP 8° 0709 aPériobTP02 P800814nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210004300183326001400226606005300240801002100293856004100314856003600355955005900391955006300450972000900513992001400522039237192000003621820130319051803.01 a0048-6493 aFNSP205313 a0000036218 a19900101a19669999 ba0 afre aFR aacu 13aLa Quinzaine littéraire aPariscLa Quinzaine littéraired1966- aBimensuel aLittératurexHistoire et critiquexPériodiques 3aFRbCCN0048-64934 uhttp://www.quinzaine-litteraire.net/ zAccès libre au texte intégral1 bL’année en courscParisd27, Salle Rez-de chaussée1 bno. 1 (mar-1966) -....cParisdMagasins/AnnexeeP F° 0248 aZPAY aDEW 80-8901399cas0 2200421 450 001001000000002001100010005001700021011001400038035001700052035002000069035001500089100004100104101000800145102000700153105001800160106000600178110001600184200001200200210010700212326001400319530003400333531002800367606005200395606004300447606006600490676000800556712001100564712010400575801003000679801003000709802000700739856004900746856007300795955007700868972000900945992001100954992001200965048867861000104942320130319051804.0 a1575-4227 accn1575-4227 a(OCoLC)46864278 a0001049423 a20000327a19999999k y0frey50 ba0 aspa aES ay 0  ar aaha 0 10aQuórum aAlcalá de HenarescCentro de Iniciativas de Cooperación al Desarrollo, Universidad de Alcalád1999- aTrimestr.10aQuórumb(Alcalá de Henares) 0aQuórumb(Alcalá Hen.) aRelations internationalesxPériodiques2rameau aAmérique latinexPériodiques2rameau aAmérique latinexPolitique économiquexPériodiques2rameau a98002aCICODE02aUniversidad de Alcalá de HenaresbCentro de Iniciativas de Cooperación al Desarrollo, CICODE4340 3aFRbAbesc20050623gAFNOR 3aFRbAbesc20050623gAFNOR a0U4 uhttp://dspace.uah.es/jspui/handle/10017/5328 zContenu : taccès au texte intégral du N°1 (2000) au N° 19 (2007)1 bno. 7 (2003) -no. 22 (hiv-2008/2009)cParisdMagasins/AnnexeeP 8° 6886 aZPAY aGEO RD aDEW 98000871nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000042001502100029001922300005002213000131002263260029003573360056003863370018004426060026004607100025004868010013005118560028005249550005005529920012005570000505689000050568920130319051804.0 a0000505689 a a20009999k fre 01 ba0 afre aFR ar aay z  adr 10aR de réelb[Ressource électronique] aParisbR de réeld2000- a aSommaires et sélection d'articles en texte intégral depuis le volume A, janvier 2000 (la revue s'achèvera avec le volume Z) a6 puis 5 numéros par an aDonnées textuelles uniquement disponibles en ligne aFichiers HTML aCulturexPériodiques02aR de réelc(France) 0aFRbFNSP4 uhttp://rdereel.free.fr/1 r aDEW 00101139nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001700154210004700171326001600218430002900234517001900263606003300282606002900315606002400344710004900368801002100417856010800438856010800546955007100654972000900725991001800734992002100752992001600773039396541000003594120130319051804.01 a0306-3968 aFNSP204523 a0000035941 a19900101a19749999 ba0 aeng aGB aahu 10aRace & class aLondoncInstitute of Race Relationsd1974- aTrimestriel 1aRace (London)x0033-727710aRace and class aDiscriminationxPériodiques aMinoritésxPériodiques aNoirsxPériodiques02aInstitute of race relations‎c(Oxford, GB) 3aFRbCCN0306-39684 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 16 no. 2 (oct-1974) -....cParisdMagasins/AnnexeeP 8° 1972 aZSAB aexempb200910 aGEO RQ Universel aDEW 305-30601525nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116200002700123210005300150210005700203210005400260210007700314300007700391326001700468430002100485452004800506530003700554606003900591606005200630710003700682801002100719856010100740856010800841955006400949955010001013972000901113991001701122992001201139039107612000003609220130911115406.01 a0163-6545 aFNSP205021 a19900101a19759999 ba0 aeng aUS10aRadical history review aDurham, N.C.‎cDuke University Press‎d2001- aNew York‎cCambidge University Press‎d1991-2000 aNew York‎cRadical History Review‎d1982-1990 aNew York‎cMid-Atlantic Radical Historians' Organization‎d1975-1981 aLes années 1973 à 1979 ont été numérotées a posteriori n° 1 à 21 a3 nos par an 1aMARHO newsletter 1tRadical history review (Online),x1534-1453 aRadical history review‎bPrint aHistoire universellexPériodiques aHistoire moderne et contemporainexPériodiques02aRadical Historian's Organization 3aFRbCCN0045/63734 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=111237 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 22 (hiv-1980) -....cParisdMagasins/AnnexeeP 8° 43861 bvol. 2 no. 4 (1975) -no. 21 (1978/1979) ed. en microfilmcParisdMagasins/AnnexeeP Mic 35 (20) aZPAY aexemp$201106 aDEW 90901074nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000074001502100055002243000102002793260014003813360058003953370063004534400049005164520055005656060032006208010013006528560090006659550005007559920012007600000462567000046256720130319051805.0 a0000462567 a b19741984k fre 01 ba0 aeng aGB az aae z  adr 10aRAIN. Royal Anthropological Institute newsb[Ressource électronique] aLondoncRoyal Anthropological Instituted1974-1984 aAccès au texte intégral (réservé aux sites de Sciences Po) du n°1, 1974 jusqu'au n°65, 1984 aBimensuel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tAnthropology today [Ressource électronique] 1tRAIN. Royal Anthropological Institutex(0307-6776) aAnthropologiexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03076776.html1 r aDEW 30101185nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005300154210004100207326002300248326002700271606003600298676000800334710008200342856009800424856010800522955006700630955005900697955006900756972000900825992001600834992000900850045073554000026292320131220100845.01 a1291-1941 aFNSP912912 a0000262923 a19981228a19989999 ba0 afre aFR aaja 10aRaisons politiqueseétudes de pensée politique aPariscPresses de Sciences-pod1998- aTrimestrielb2001- aIrrégulierb1998-2000 aScience politiquexPériodiques a32002aInstitut d'études politiquesc(Paris)bCycle supérieur d'études politiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-raisons-politiques.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 1 (1998) -....cParisdMagasins/AnnexeeP 8° 64441 bL'année en courscParisdBibliothèque de rechercheeP 8° 6444 aZCAD aDEW 320-321 aPBUL01018nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001100154530008200165606004400247676000800291710005300299856006500352856003600417955006700453955007100520955005300591972000900644991001800653992001200671992002100683001018698000000397920131220101337.01 a0290-7674 aFNSP104445 a0000003979 a19900130a19819999 ba0 afre aFR aaka 10aRAMSES10aRAMSES. Rapport annuel mondial sur le système économique et les stratégies aRelations internationalesxPériodiques a32702aInstitut français des relations internationales4 uhttp://www.ifri.org/frontDispatcher/ifri/publications/ramses zContenu : sommaires depuis 19981 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bLa dernière annéecParisdBibliothèque de rechercheeP 8° 43691 b(1981) -....cParisdMagasins/AnnexeeP 8° 4369 aZCAD aexempb200905 aDEW 327 aGEO RQ Universel01028nas 2200313 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200003400148210004800182326001600230430004600246710002100292801001300313856002400326856003700350856009000387856010800477955009000585972000900675991001800684992001200702039705757000046993720131202114128.01 a0741-6261 a a19849999k fre ba0 aeng aUS a 0  ar aah z 0 14aThe Rand journal of economics aLawrance, KSaMount Morris, ILcRandd1984- aTrimestriel 1tThe Bell journal of economics,x0361-915X02aRand Corporation 0aFRbFNSP4 uhttp://www.rje.org/ zContenu : sommaires et résumés4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/07416261.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 26 no. 1 (pri-1995) -vol.43 no. 4 (hiv-2012)cParisdMagasins/AnnexeeP 8° 6630 aZPAY aexempb201301 aDEW 33801228cas0 2200349 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102106000600109110001600115200005300131210004600184301004300230303005700273303005700330304004500387320003400432606004700466606003500513710004800548801003000596856006400626856004700690856003600737955005500773972000900828992002500837992001600862081688482000075092420130319051805.0 a0000750924 a20041116a20019999 0fre 0103 ba0 afre aFR ar abk 00aRapport ...fConseil d'orientation des retraites aPariscla Documentation françaised2001- aDemande de numérotation ISSN en cours aNotice établie d'après le deuxième rapport (2004) aLe premier rapport est paru en 2002 (= rapport 2001) aChaque volume porte un titre particulier aEn annexe, choix de documents aRégimes de retraiteyFrancexPériodiques aRetraiteyFrancexPériodiques01aFrancebConseil d'orientation des retraites 3aFRbAbesc20050105gAFNOR4 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml4 uhttp://www.cor-retraites.fr/rubrique3.html zAccès libre au texte intégral1 b(2001) -(2007)cParisdMagasins/AnnexeeP 8° 6812 aZPAY aGEO RA4.06 France 01 aDEW 360-36301360cas0 2200361 450 001001000000002001100010005001700021011001400038035002100052035001700073035001500090100004100105101000800146102000700154105001800161106000600179110001600185200008100201210004500282303004800327326001100375530008200386606007700468606005700545710008200602801001300684802000700697856018500704955005900889972000900948992002500957992001600982057975744000037108820130319051805.0 a1622-1389 a(OCoLC)473896530 aissn16221389 a0000371088 a20010831a20009999u y0frey50 ba0 afre aFR ay  ar aaku uu 10aRapport...fCommission nationale pour l'élimination des mines antipersonnel aPariscla Documentation francaised2000- aNotice réd. d'après un vol. publ. en 2003 aAnnuel10aRapport... - Commission nationale pour l'élimination des mines antipersonnel aMines (explosifs militaires)xLutte contreyFrancexPériodiques2rameau aSecours aux victimes de guerrexPériodiques2rameau02aFrancebCommission nationale pour l'élimination des mines antipersonnel4070 0aFRbFNSP a074 uhttp://www.diplomatie.gouv.fr/fr/enjeux-internationaux/desarmement-maitrise-des-armements/mines-antipersonnel/instances-de-concertation-et-de/article/la-commission-nationale-pour-l1 b(1999) -(2006/2007)cParisdMagasins/AnnexeeP 8°6544 aZGRA aGEO RA4.06 France 01 aDEW 355-35900943cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200003300156210003300189326001100222606003800233606006900271710002900340801003000369801003000399802000700429856006000436955005300496972000900549991001800558992002500576992001600601040557588000071380120130319051805.01 a1282-1713 accn1282-1713 a0000713801 a19970804a19979999 0frey0103 ba0 afre aFR aak 10aRapport ... sur l'homophobie aPariscSOS homophobied1997- aAnnuel aHomosexuelsyFrancexPériodiques aDiscrimination à l'égard des homosexuelsyFrancexPériodiques02aSOS homophobiec(France) 3aFRbAbesc20020117gAFNOR 3aFRbAbesc20020117gAFNOR a074 uhttp://www.france.qrd.org/assocs/sos/index_rapports.php1 b(1999) -....cParisdMagasins/AnnexeeP 8° 6785 aZGRA aexempb201212 aGEO RA4.06 France 01 aDEW 305-30601134nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210006000189326001100249430005400260601004000314606003800354606003600392606004000428676001100468710002600479856003300505856005200538955006900590955005300659972000900712991001800721992002100739992001200760039256200000007176020130319051805.01 a0252-8312 aFNSP328487 a0000071760 a19900101a19779999 f ba0 afre aFR aaka 10aRapportfAmnesty International aPariscAmnesty international, Section françaised1977- aAnnuel 1aRapport annuel - Amnesty Internationalx0252-832002aAmnesty internationalxPériodiques aViolence policièrexPériodiques aDroits de l'hommexPériodiques aRépression politiquexPériodiques a341.4802aAmnesty international4 uhttp://www.amnesty.fr/presse4 zContenu : synthèse du dernier rapport en ligne1 bLes 3 dernières annéescParisd30, Salle 3e étageeDEW 341.481 b(1977) -....cParisdMagasins/AnnexeeP 8° 3735 aZCAD aexempb200912 aGEO RQ Universel aDEW 32301201nas0 2200337 450 00100100000000200110001000500170002101100140003803500170005203500150006910000410008410100080012510200070013310500180014010600060015811000160016420000680018021000230024843001120027151700670038360600360045060600360048671000690052280100300059180100230062180200070064485601160065195500550076799200250082299200160084711228678X000111384520130515113401.01 a1777-7917 aissn17777917 a0001113845 a20070202a20069999 0frey0103 ba0 afre aFR ay  ar aak 10aRapportfAutorité de contrôle des assurances et des mutuelles aPariscACAMd2006- 1tRapport/Commission de contrôle des assurances, des mutuelles et des institutions de prévoyancex1777-052110aAutorité de contrôle des assurances et des mutuelles Rapport aAssuranceyFrancexPériodiques aMutuellesyFrancexPériodiques02aAutorité de contrôle des assurances et des mutuellesc(France) 3aFRbAbesc20070202gAFNOR 3aFRbISSNc20070101 a074 uhttp://www.acp.banque-france.fr/publications/rapports-annuels.htmlzAccès libre au texte intégral depuis 20061 b(2005) -(2009)cParisdMagasins/AnnexeeP 4° 6330 aGEO RA4.06 France 01 aDEW 360-36300981nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210003500184326001100219430004700230517003200277517004200309601003500351606003500386606003600421710002100457856003300478856003600511955005300547972000900600992002200609992001200631040195899000013264320140106175336.01 a1250-5242 aFNSP538236 a0000132643 a19940719a19939999 ba0 afre aFR aaka 10aRapportfBanque de France aPariscBanque de Franced1993- aAnnuel 1aCompte rendu - Banque de Francex0242-589010aExercice - Banque de France10aRapport annuel de la banque de France02aBanque de FrancexPériodiques aFinancesyFrancexPériodiques aMarché financierxPériodiques02aBanque de France4 uhttp://www.banque-France.fr/ zAccès libre au texte intégral1 b(1993) -....cParisdMagasins/AnnexeeP 4° 5690 aZGRA aGEO RA4.06 France aDEW 33201227nas 2200337 i 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102110001600109200004200125210002600167300004700193326001100240517011900251517004300370601004700413606003700460607005200497710003300549856004300582856005500625955005500680955009500735972000900830992002400839992001400863992001200877039738973000006381020131018120122.0 aFNSP293032 a19900101b18512006 ba0 afre aBE aaka 10aRapportfBanque nationale de Belgique aBruxellescBNBd1851- aEn version électronique à partir de 2007 aAnnuel10aRapports sur les opérations de l'année ... présentés à l'Assemblée générale - Banque nationale de Belgique10aRapports -Banque nationale de Belgique02aBanque nationale de BelgiquexPériodiques aFinancesyBelgiquexPériodiques aBelgiquexConditions économiquesxPériodiques02aBanque nationale de Belgique4 uhttp://www.bnb.be/sg/F/Publ/p4111f.htm4 zContenu : texte intégral des rapports depuis 18511 b(1980) -(2006)cParisdMagasins/AnnexeeP 4° 54601 b(1877)-(1900) ; (1902) ; (1904)-(1908) ; (1910)-(1979)cParisdMagasins/AnnexeeCOL4°0050 aZGRA aGEO RA4.04 Belgique aDEW 330.9 aDEW 33200974nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000100001502100026002502300024002763260011003006010047003116060037003586070052003957100033004478010013004808560043004938560057005369550005005939920024005989920014006229920012006360001134322000113432220130319051805.0 a0001134322 a a19989999k fre 01 ba0 afre aBE ar aak z  adr 10aRapport - Banque nationale de Belgiqueb[Ressource électronique]fBanque nationale de Belgique aBruxellescBNBd1998- aRevue électronique aAnnuel02aBanque nationale de BelgiquexPériodiques aFinancesyBelgiquexPériodiques aBelgiquexConditions économiquesxPériodiques02aBanque nationale de Belgique 0aFRbFNSP4 uhttp://www.bnb.be/sg/F/Publ/p4111f.htm z: Contenu : texte intégral des rapports depuis 19981 r aGEO RA4.04 Belgique aDEW 330.9 aDEW 33201105nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003300139210004200172326001100214430006800225517005600293601004800349606005200397606003400449710003400483856015700517955005600674972000900730991001800739992002200757992001200779039819388000006869120131210162603.01 a0984-5585 aFNSP317192 a19900101b19852009 ba0 afre aFR aaka 10aRapportfCommission bancaire aPariscCommission bancaired1985-2009 aAnnuel 1aRapport annuel - Commission de contrôle des banquesx0984-563110aRapport de la Commission bancaire pour l'année ...02aCommission bancairec(France)xPériodiques aEtablissements de crédityFrancexPériodiques aBanquesyFrancexPériodiques aCommission bancairec(France)4 uhttp://www.acp.banque-france.fr/publications/publications-anterieures-a-mars-2010/rapports-annuels.htmlzAccés libre au texte intégral de 1994 à 20091 b(1984) -(2007)cParisdMagasins/AnnexeseP 4° 5495 aZGRA aexempb201312 aGEO RA4.06 France aDEW 33201346cas0 2200397 450 001001000000002001100010005001700021011001400038035002500052035001700077035001500094100004100109101000800150102000700158106000600165110001600171200010200187207001800289210002900307326001100336430007600347440007800423606003600501606003600537710010200573801003000675801002900705801002300734802000700757856004600764856004100810955004700851972000900898992002500907992001600932104392266000102041920130319051805.01 a1777-0521 aFRBNF400701750000006 aissn17770521 a0001020419 a20051115b20052005m y0frey0103 ba0 afre aFR ar azku uu 10aRapportfCommission de contrôle des assurances, des mutuelles et des institutions de prévoyance 0a(2004)-(2004) aPariscCCAMIPd2005-2005 aAnnuel 1tRapport d'activité - Commission de contrôle des assurancesx1249-4518 1tRapport/Autorité de contrôle des assurances et des mutuellesx1777-7917 aAssuranceyFrancexPériodiques aMutuellesyFrancexPériodiques02aCommission de contrôle des assurances, des mutuelles et des institutions de prévoyance (France) 3aFRbAbesc20060717gAFNOR 3aFRbBnFc20060327gAFNOR 3aFRbISSNc20060706 a074 uhttp://www.ccamip.fr/info/Publications/05 zContenu : texte intégral du rapport1 b(2004)cParisdMagasins/AnnexeeP 4° 6330 aZGRA aGEO RA4.06 France 01 aDEW 360-36300839nas 2200265 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000057001412100027001983260011002255170021002365170064002576060055003217100047003768560041004238560042004649550055005069920012005610000102811000010281120130319051805.0 aFNSP441952 a0000102811 a19900101a00019999 ba0 afre aIN aaka 10aRapport - Fonds des Nations Unies pour la population aNew YorkcFNUAPd0001- aAnnuel10aRapport du FNUAP10aRapport annuel - Fonds des Nations Unies pour la population aAssistance en matière de populationxPériodiques aFonds des Nations Unies pour la population4 uhttp://www.unfpa.org/swp/swpmain.htm zContenu : texte intégral depuis 19971 b(1988) -(1998)cParisdMagasins/AnnexeeP 4° 6284 aDEW 30401113nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008000154210004900234300009800283326001100381517004200392530004500434601004500479606004000524606004600564710003100610856005200641955005500693972000900748991001800757992001200775040241556000009347320130829120201.01 a1029-6921 aFNSP411954 a0000093473 a19900101b1990200? ba0 afre aFR aaka 10aRapportela liberté de la presse dans le mondefReporters sans frontières aPariscReporters sans frontièresd19XX-200? aA partir de 2002, le rapport d'activité est en ligne uniquement à rechercher par continent. aAnnuel10aReporters sans frontières rapport...10aRapport ... - Reporters sans frontières02aReporters sans frontièresxPériodiques aLiberté de la pressexPériodiques aJournalistesxCrimes contrexPériodiques02aReporters sans frontières4 uhttp://www.rsf.org/rubrique.php3?id_rubrique=231 b(1990) -(2003)cParisdMagasins/AnnexeeP 8° 5947 aZCAD aexempb201210 aDEW 32301401cas0 2200373 450 001001000000002001100010005001700021011001400038035002100052035001700073100004100090101000800131102000700139105001800146106000600164110001600170200002200186207001000208210004700218423002500265430007800290517012100368530006500489601006100554676000800615710005200623801003000675801002300705802000700728856016800735955005300903992001400956992005700970159259975000124289220130419100742.0 a1831-8460 a(OCoLC)800084120 aissn18318460 a20120315a20099999u f0frey50 ba0 afre aZZ ay  ar azka uu 10aRapport annuel .. 0a2009- aLuxembourgcOffice des publicationsd2010- 1tCuria ...x1831-5399 1tRapport annuel (Cour de justice des Communautés européennes)x1680-833910aAperçu des travaux de la Cour de justice, du Tribunal et du Tribunal de la fonction publique de l'Union européenne10aRapport annuel ...b(Cour de justice de l'Union européenne)02aUnion européennebCour de justicexPériodiques2rameau a34002aCommunautés européennesbCour de justice4340 3aFRbAbesc20120725gAFNOR 3aFRbISSNc20120315 a0a4 uhttp://bookshop.europa.eu/fr/search/Filter?SearchParameter=%26%40QueryTerm%3Drapport%2Bannuel%2Bde%2Bla%2Bcour%2Bde%2Bjustice%26Languages%3Dfr_FR&SelectedLanguage=1 b(2009 ) -...cParisdMagasins/AnnexeeP 4° 7189 aDEW 341.2 aGEO RA1.01 Communautés européennes, Pays de la CEE00881nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006000154210002700214326001100241430001900252601003700271606003300308710005300341856005400394856005000448955005500498992002200553992001600575040049388000016520120130319051805.0 a1240-7569 aFNSP630683 a0000165201 a19900101a19939999 ba0 afre aFR aaka 10aRapport annuel...fPoste, Direction de la communication aPariscLa Posted1993- aAnnuel 1aLa Poste en...02aLa Postec(France)xPériodiques aPostesyFrancexPériodiques02aLa Poste (France). Direction de la communication4 uhttp://www.laposte.fr/rubrique.php3?id_rubrique=9 zContenu : texte intégral du dernier rapport.1 b(1992) -(1998)cParisdMagasins/AnnexeeP 4° 6499 aGEO RA4.06 France aDEW 383-38901487nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008300154210004500237300007300282326001100355451004200366517008500408530003700493606003600530606006400566676000800630710007000638801002100708856016900729856005600898955006200954955005501016972000901071992002101080992001201101039244989000000349920130319051805.01 a0251-5458 aFNSP102992 a0000003499 a19900101a19479999 f ba0 afre aUS aaku 10aRapport annuel fBanque mondiale, Association internationale de développement aWashington, D.C.cBanque mondialed1947- a2006, dernière éd. papier, à partir de 2007 version électronique aAnnuel 1aAnnual report - World Bankx0252-294210aRapport annuel Banque internationale pour la reconstruction et le développement00aRapport annuel - Banque mondiale aPrêts étrangersxPériodiques aAide économiquexCoopération internationalexPériodiques a33702aBanque internationale pour la reconstruction et le développement 3aFRbCCN0251-54584 uhttp://web.worldbank.org/WBSITE/EXTERNAL/EXTABOUTUS/EXTANNREP/EXTANNREP2K8/0,,contentMDK:21915384menuPK:5405477pagePK:64168445piPK:64168309theSitePK:5164354,00.html zContenu : texte du rapport en français depuis 20051 b(1960/1961) -(1979)cParisdMagasins/AnnexeeCOL 4° 00621 b(1980) -(2006)cParisdMagasins/AnnexeeP 4° 5463 aZGRA aGEO RQ Universel aDEW 33700752nas 2200253 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000031001412100024001723260011001966010034002076060047002417120074002888560029003629550070003919920022004619920015004830000116771000011677120130319051806.0 aFNSP485444 a0000116771 a19900101a00019999 ba0 afre aFR aaka 10aRapport annuelf44pe SAGEM aPariscSAGEMd0001- aAnnuel02aSAGEMc(France)xPériodiques aSociétésxRapportsyFrancexPériodiques02aSociété d'applications générales d'électricité et de mécanique uhttp://www.sagem.com/fr/1 rConservation limitée aux 5 dernières années < Coll. 4° 1487 > aGEO RA4.06 France aDEW 338.0601164nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005600139210002200195300007200217326001100289430006800300530005700368606004600425606004500471710004000516856014000556955005500696972000900751991001800760992002500778992002100803992001400824048771961000025480620140117162606.01 a1299-0094 aFNSP889364 a19900101a19979999 ba0 afre aFR aaka 10aRapport annuelfAgence française de développement aPariscAFDd1997- a2006, dernière édition papier, à partir de 2007 version en ligne aAnnuel 1aRapport annuel - Caisse française de développementx1240-653810aRapport annuel - Agence française de développement aAide économique françaisexPériodiques aDéveloppement économiquexPériodiques02aAgence française de développement4 uhttp://www.afd.fr/home/publications/Publications-institutionnelles/rapports-annuelszContenu : texte intégral des rapports depuis 20021 b(1997) -(2006)cParisdMagasins/AnnexeeP 4° 6777 aZGRA aexempb201401 aGEO RA4.06 France 01 aGEO RQ Universel aDEW 338.901003nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000121001502100022002712300028002933260011003216060046003326060045003787100040004238010013004638300008004768560140004849550005006249920025006299920021006549920014006750001241189000124118920130521162906.0 a0001241189 a a20029999k fre 01 ba0 afre aFR ar aak z  adr 10aRapport annuel - Agence française de développementb[Ressource électronique]fAgence française de développement aPariscAFDd2002- aRessource électronique aAnnuel aAide économique françaisexPériodiques aDéveloppement économiquexPériodiques02aAgence française de développement 0aFRbFNSP acdj4 uhttp://www.afd.fr/home/publications/Publications-institutionnelles/rapports-annuelszAccès au texte intégral des rapports depuis 20021 r aGEO RA4.06 France 01 aGEO RQ Universel aDEW 338.901059nas 2200265 i 450 002001100000005001700011035001500028100004100043101000800084102000700092110001600099200011000115210002400225326001100249451005500260517007500315601006300390606003700453710004900490856011300539955005600652955006400708972000900772992001200781000004514320140116155125.0 aFNSP232778 a19900101a19589999 f ba0 afre aAT aaka 10aRapport annuel à l'Assemblée générale des Nations UniesfAgence internationale de l'énergie atomique aViennecAIEAd1958- aAnnuel 1aAnnual report - International Atomic Energy Agency10aRapport annuel du Conseil des gouverneurs à la Conférence générale02aAgence internationale de l'énergie atomiquexPériodiques aEnergie nucléairexPériodiques02aAgence internationale de l'énergie atomique uhttp://www.cea.fr/le-cea/publications/rapports-annuelszAccès libre au texte intégral de l'année en cours1 b(2001) -(2008);cParisdMagasins/annexeeP 4° 69861 b(1960/1961) -(2000)cParisdMagasins/annexeeCOL4°1817 bis aZGRA aDEW 33302302cas0 2200481 450 001001000000002001100010005001700021011001400038035001400052035002100066035001800087035001700105100004100122101000800163102000700171105001800178106000600196110001600202200017600218207001400394210009300408326001100501423002500512430011600537440007500653517013300728517022300861530006801084601006101152601007601213676000801289710005201297711004401349801003001393801002301423802000701446856016801453955005501621955005501676991001801731992001401749992005701763058836934000124289120130419100751.0 a1680-8339 a04532848X a(OCoLC)717828561 afrBN023702354 aissn16808339 a20010829b19912008k f0frey50 ba0 afre aZZ ay  ar azka uu 00aRapport annueleaperçu des travaux de la Cour de justice et du Tribunal de première instance des Communautés européennesfCour de justice des Communautés européennes 0a1993-2008 aLuxembourgcOffice des publications officielles des Communautés européennesd1993-2008 aAnnuel 1tCuria ...x1831-5399 1tAperçu des travaux de la Cour de justice des Communautés européennes ... et audiences solennellesx1015-034X 1tRapport annuel ... (Cour de justice de l'Union européenne)x1831-846010aRapport annuel ..., Aperçu des travaux de la Cour de justice et du Tribunal de première instance des Communautés européennes10aRapport annuel ..., Aperçu des travaux de la Cour de justice des Communautés européennes, du Tribunal de première instance des Communautés européennes et du Tribunal de la fonction publique de l'Union européenne10aRapport annuelb(Cour de justice des Communautés européennes)02aUnion européennebCour de justicexPériodiques2rameau02aUnion européennebTribunal de première instancexPériodiques2rameau a34002aCommunautés européennesbCour de justice407002aUnion européennebCour de justice4070 3aFRbAbesc20120726gAFNOR 3aFRbISSNc20120315 a0a4 uhttp://bookshop.europa.eu/fr/search/Filter?SearchParameter=%26%40QueryTerm%3Drapport%2Bannuel%2Bde%2Bla%2Bcour%2Bde%2Bjustice%26Languages%3Dfr_FR&SelectedLanguage=1 b(2002) -(2008)cParisdMagasins/AnnexeeP 4° 71891 b(1991) -(2001)cParisdMagasins/AnnexeeP 8° 4396 aexempb201304 aDEW 341.2 aGEO RA1.01 Communautés européennes, Pays de la CEE01186cas0 2200361 450 001001000000002001100010005001700021011001400038020001700052035004000069035001500109100004100124101000800165102000700173105001800180106000600198110001600204200005400220207001200274210003900286326001100325606004400336606005500380606007200435710004600507801003000553801003800583856010500621955005200726972000900778992002500787992001200812150408013000120722520131002143452.01 a2112-7891 aFRb11100228 aFRBNF423538360000004zFRBNF42353836 a0001207225 a20110301a20109999m h0frey50 ba0 afre aFR ay 0  ar aakazz 0zx000aRapport annuelfAutorité de contrôle prudentiel 0a(2009)- aPariscACP Banque de Franced2010- aAnnuel aMarché financieryFrancexPériodiques aBanquesxContrôle de l'EtatyFrancexPériodiques aCompagnies d'assurancesxContrôle de l'ÉtatyFrancexPériodiques02aAutorité de contrôle prudentielcFrance 3aFRbAbesc20110302gAFNOR 0aFRbFR-751131015c20110119gAFNOR4 uhttp://www.acpr.banque-france.fr/publications/rapports-annuels.htmlzAccès libre au texte intégral1 b(2009-....)cParisdMagasins/AnnexeeP 4° 7297 aZGRA aGEO RA4.06 France 01 aDEW 33201263cas0 2200361 450 001001000000002001100010005001700021011001400038035001400052035001700066100004100083101000800124102000700132110001600139200005400155210005200209326001100261430009400272517005800366530002600424606004400450710004600494801003000540801002300570802000700593856008400600856003700684856008200721955005500803972000900858992002200867992001200889081760396000098489920131029103008.01 a1768-093X a079572863 aissn1768093X a20030523a20049999 0fre 0103 ba0 afre aFR azk 10aRapport annuelfAutorité des marchés financiers aPariscAutorité des marchés financiersd2004- aAnnuel 1tRapport au Président de la République - Commission des opérations de boursex0533-074210aRapport annuel de l'Autorité des marchés financiers10aRapport annuelb(AMF) aMarché financieryFrancexPériodiques02aFrancebAutorité des marchés financiers 3aFRbAbesc20050405gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.amf-france.org/affiche_plan.asp?IdSec=6&IdRub=12&IdPlan=136&Id_Tab=04 zAccès libre au texte intégral.4 uhttp://www.ladocumentationfrancaise.fr/rapports-publics/084000336/index.shtml1 b(2003) -(2007)cParisdMagasins/AnnexeeP 4° 6624 aZPAY aGEO RA4.06 France aDEW 33200841nas 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000026001502100023001763200011001994300061002106010033002716060047003047120019003518010013003708560044003839550066004279720009004939920022005029920015005240000341139000034113920130319051806.0 a0000341139 a a19999999k fre ba0 afre aFR a 0  ar aa z 0 10aRapport annuel - Azeo aPariscAzeod1999- aAnnuel 1tRapport annuel - Financière et industrielle Gaz et Eaux02aAzeoc(France)xPériodiques aSociétésxRapportsyFrancexPériodiques02aAzeoc(France) 0aFRbFNSP4 uhttp://www.gaz-et-eaux.com/default2.htm1 bno. 1 (1999)-no. 2 (1999)cParisdMagasins/AnnexeeP 4° 5402 aZGRA aGEO RA4.06 France aDEW 332.0600986nas 2200301 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000080001412100027002213260011002486010077002596060050003366060050003867100063004368560042004998560036005419550053005779720009006309920019006399920012006589920014006700000063201000006320120130319051806.0 aFNSP289697 a0000063201 a19900101a19769999 ba0 afre aSD aaka 10aRapport annuel - Banque arabe pour le développement économique en Afrique aKhartoumcBADEAd1976- aAnnuel02aBanque arabe pour le développement économique en AfriquexPériodiques aInvestissements arabesyAfriquexPériodiques aAide économique arabeyAfriquexPériodiques02aBanque arabe pour le développement économique en Afrique uhttp://www.bdeac.org/docrapannuel.php4 zAccès libre au texte intégral1 b(1975) -....cParisdMagasins/AnnexeeP 4° 3923 aZGRA aGEO RE Afrique aDEW 332 aDEW 338.900949nas 2200277 i 450 002001100000005001700011035001500028100004100043101000800084102000700092110001600099200005000115210005500165300004700220326001100267601004800278606003900326607006500365710003400430856009100464955005500555972000900610992002600619992001400645992001200659000020711920131023162613.0 aFNSP751510 a19900101a00019999 ba0 afre aMG aaka 10aRapport annuelfBanque centrale de Madagascar aAntananarivocBanque centrale de Madagascard0001- aEn version électronique à partir de 2005 aAnnuel02aBanque centrale de MadagascarxPériodiques aFinancesyMadagascarxPériodiques aMadagascarxConditions économiquesz1960-....xPériodiques02aBanque centrale de Madagascar4 uhttp://www.banque-centrale.mg/index.php?id=m6_4zAccès au texte intégral depuis 19981 b(1993) -(2004)cParisdMagasins/AnnexeeP 4° 6639 aZGRA aGEO RF4.02 Madagascar aDEW 330.9 aDEW 33200993nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000109001502100055002592300024003143260011003386010048003496060039003976070065004367100034005018010013005358560052005488560053006009920026006539920012006790001135271000113527120130319051806.0 a0001135271 a a19989999k fre 01 ba0 afre aMG ar aak z  adr 10aRapport annuel - Banque centrale de Madagascarb[Ressource électronique]fBanque centrale de Madagascar aAntananarivocBanque centrale de Madagascard1998- aRevue électronique aAnnuel02aBanque centrale de MadagascarxPériodiques aFinancesyMadagascarxPériodiques aMadagascarxConditions économiquesz1960-....xPériodiques02aBanque centrale de Madagascar 0aFRbFNSP4 uhttp://www.banque-centrale.mg/index.php?id=m6_4 zContenu : texte intégral du rapport depuis 1998 aGEO RF4.02 Madagascar aDEW 33201009nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000109001502100053002592300024003123260011003366010048003476060039003956070054004347100034004888010013005228560064005358560053005999550005006529920026006579920012006830001137275000113727520130319051806.0 a0001137275 a a20059999k fre 01 ba0 afre aMR ar aak z  adr 10aRapport annuel - Banque centrale de Mauritanieb[Ressource électronique]fBanque centrale de Mauritanie aNouakchottcBanque centrale de Mauritanied2005- aRevue électronique aAnnuel02aBanque centrale de MauritaniexPériodiques aFinancesyMauritaniexPériodiques aMauritaniexConditions économiquesxPériodiques02aBanque centrale de Mauritanie 0aFRbFNSP4 uhttp://www.bcm.mr/bcm/fr/index1.php?numrub=31&categ=rapport zContenu : texte intégral du rapport depuis 20051 r aGEO RF1.21 Mauritanie aDEW 33200910nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000103001502100047002532300024003003260011003246010045003356060036003807100031004168010013004478560059004608560049005199550005005689920023005739920012005960001135058000113505820130319051806.0 a0001135058 a a20069999k fre 01 ba0 afre aTN ar aak z  adr 10aRapport annuel - Banque centrale de Tunisieb[Ressource électronique]fBanque centrale de Tunisie aTunis::cBanque centrale de Tunisied2006- aRevue électronique aAnnuel02aBanque centrale de TunisiexPériodiques aFinancesyTunisiexPériodiques02aBanque centrale de Tunisie 0aFRbFNSP4 uhttp://www.bct.gov.tn/bct/siteprod/francais/index1.jsp zContenu : texte intégral du dernier rapport1 r aGEO RG1.14 Tunisie aDEW 33200983nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000109001502100053002592300024003123260011003366010048003476060051003956060039004467100034004858010013005198560041005328560053005739550005006269920026006319920012006570001137278000113727820130905103547.0 a0001137278 a a19989999k fre 01 ba0 afre aLU ar aak z  adr 10aRapport annuel - Banque centrale du Luxembourgb[Ressource électronique]fBanque centrale du Luxembourg aLuxembourgcBanque centrale du Luxembourgd1998- aRevue électronique aAnnuel02aBanque centrale du Luxembourgxpériodiques aPolitique monétaireyLuxembourgxPériodiques aFinancesyLuxembourgxPériodiques02aBanque centrale du Luxembourg 0aFRbFNSP4 uhttp://www.bcl.lu/html/fr/index.html zContenu : texte intégral du rapport depuis 19981 r aGEO RA4.05 Luxembourg aDEW 33201099nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004800139210006200187326001100249517002900260517005300289530004900342601004600391606006800437676001200505710003200517856010300549955005500652972000900707992005700716992001200773045022720000027148320140110144423.01 a1561-4581 aFNSP937461 a19990429a19999999 ba0 afre aDE aaka 10aRapport annuelfBanque centrale européenne aFrancfort sur le MaincBanque centrale européenned1999- aAnnuel10aRapport annuel de la BCE10aRapport annuel de la Banque Centrale Européenne01aRapport annuel - Banque centrale européenne02aBanque centrale européennexPériodiques aPolitique monétaireyPays de l'Union européennexPériodiques a332.49402aBanque centrale européenne4 uhttp://www.ecb.int/pub/annual/html/index.en.htmlzAccès au texte intégral du rapport depuis 19921 b(1998) -(2009)cParisdMagasins/AnnexeeP 4° 6815 aZGRA aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 33200993nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000105001502100062002552300024003173260011003416010046003526060068003987100032004668010013004988560053005118560053005649550005006179920057006229920012006790001212599000121259920130319051805.0 a0001212599 a a19999999k fre 01 ba0 afre aDE ar aak z  adr 10aRapport annuel - Banque centrale européenneb[Ressource électronique]fBanque centrale européenne aFrancfort sur le MaincBanque centrale européenned1999- aRevue électronique aAnnuel02aBanque centrale européennexPériodiques aPolitique monétaireyPays de l'Union européennexPériodiques02aBanque centrale européenne 0aFRbFNSP4 uhttp://www.ecb.int/pub/annual/html/index.en.html4 zContenu : texte intégral du rapport depuis 19981 r aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 33201230nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005400139210006000193300004700253326001100300452008300311530006500394606003500459607005000494710003700544801002100581830005300602856006900655955008100724972000900805991001800814992002200832992001400854992001200868039291758000010107820131009120107.01 a0257-4357 aFNSP435467 a19900101a00019999 ba0 afre aHT aaku 10aRapport annuelfBanque de la République d'Haïti aPort-au-PrincecBanque de la République d'Haitid0001- aEn version électronique à partir de 2005 aAnnuel 1tRapport annuel - Banque de la République d'Hai͏̈ti (En ligne)‎x1683-302310aRapport annuel - Banque de la République d'HaïtibImprimé aFinancesyHaïtixPériodiques aHaïtixConditions économiquesxPériodiques02aBanque de la République d'Haiti 3aFRbCCN0257-4357 a1985-1997 : collection encoyée au CTles en 20134 uhttp://www.brh.net/zAccès libre au texte intégral depuis 19981 b(1985/1986) -(1992/1993) ; (1996)-(1997)cParisdMagasins/AnnexeeP 4° 5318 aZGRA aexempb201307 aGEO RD3.03 Haïti aDEW 330.9 aDEW 33200916nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000115001502100060002652300024003253260011003496060035003606070050003957100037004458010013004828560024004958560054005199550005005739920022005789920014006000001132901000113290120130319051806.0 a0001132901 a a19989999k fre 01 ba0 afre aHT ar aak z  adr 10aRapport annuel - Banque de la République d'Haitib[Ressource électronique]fBanque de la République d'Haiti aPort-au-PrincecBanque de la République d'Haitid1998- aRevue électronique aAnnuel aFinancesyHaïtixPériodiques aHaïtixConditions économiquesxPériodiques02aBanque de la République d'Haiti 0aFRbFNSP4 uhttp://www.brh.net/ zContenu : textye intégral du rapport depuis 19981 r aGEO RD3.03 Haïti aDEW 330.901201nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005800154210005600212326001100268451006700279601005600346606004300402676000800445710004200453856006800495955006500563955005800628955006500686957007700751972000900828992001400837992001200851038668041000000390320130422115430.01 a1021-2493 aFNSP104338 a0000003903 a19900126a19319999 f ba0 afre aCH aaka 10aRapport annuelfBanque des règlements internationaux aBâlecBanque des règlements internationauxd1931- aAnnuel 1aAnnual report - Bank for International Settlements,x1021-247702aBanque des règlements internationauxxPériodiques aFinances internationalesxPériodiques a33202aBanque des règlements internationaux4 uhttp://www.bis.orgzAccès libre au texte intégral depuis 19311 bLa dernière annéecParisdSalle du 27, 1er étageeDEW 3321 b(1980/1981) -....cParisdMagasins/AnnexeeP 4° 54461 b(1930/1931) -(1979/1980)cParisdMagasins/AnnexeeCOL4°00091 b(1930/31-1949/50), (1950/51-1954/55)cParisdMagasins/AnnexeeCOL4°0009 aZGRA aDEW 341.2 aDEW 33200994nas 2200301 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000083001412100024002243260011002486010081002596060052003406060053003927100067004458560025005128560036005379550052005739720009006259920032006349920012006669920014006780000159847000015984720130319051806.0 aFNSP616732 a0000159847 a19900101a00019999 ba0 aeng aGB aaka 10aRapport annuelfBanque européenne pour la reconstruction et le développement aLondoncBERDd0001- aAnnuel02aBanque européenne pour la reconstruction et le développementxPériodiques aAide économiqueyEurope de l'EstxPériodiques aPrêts étrangersyEurope de l'EstxPériodiques aBanque européenne pour la reconstruction et le développement4 uhttp://www.ebrd.com/ zAccès libre au texte intégral1 b(1993) -...cParisdMagasins/AnnexeeP 4° 6470 aZGRA aGEO RA2.02 Europe orientale aDEW 332 aDEW 338.901447nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006200139210007100201300007300272326001100345452007400356530006300430601006000493606006400553606005400617606005300671676001000724710004600734856012300780955005500903955006400958972000901022992002801031992001401059992001201073039263274000006349620130717094636.01 a0253-603X aFNSP292361 a19900101a19609999 ba0 afre aUS aaka 10aRapport annuelfBanque interaméricaine de développement aWashington, D.C.cBanque interaméricaine de développementd1960- a2007, dernière éd.papier, à partir de 2008, version électronique aAnnuel 1tAnnual report (Inter-American Development Bank. Online)‎x1811-220X10aRapport annuel - Banque interaméricaine de développement02aBanque interaméricaine de développementxPériodiques aAide économiquexCoopération internationalexPériodiques aPrêts étrangersyAmérique latinexPériodiques aAide économiqueyAmérique latinexPériodiques a338.902aBanque interaméricaine de développement4 uhttp://www.iadb.org/fr/a-propos-de-la-bid/rapports-annuels,6293.htmlzContenu : texte intégral du rapport depuis 20001 b(1999) -(2007)cParisdMagasins/AnnexeeP 4° 70011 b(1963) ; (1965) -(1998)cParisdMagasins/AnnexeeCOL4°2790 aZGRA aGEO RD Amérique latine aDEW 338.9 aDEW 33201116nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000081001502100045002312300024002763260011003006010084003116060036003956060064004317100070004958010013005658560147005788560056007259920021007819920012008020001204274000120427420130319051806.0 a0001204274 a a20059999k fre 01 ba0 afre aUS ar aak z  adr 10aRapport annuel - Banque mondialeb[Ressource électronique]fBanque mondiale aWashington, D.C.cBanque mondialed2005- aRevue électronique aAnnuel02aBanque internationale pour la reconstruction et le développementxPériodiques aPrêts étrangersxPériodiques aAide économiquexCoopération internationalexPériodiques02aBanque internationale pour la reconstruction et le développement 0aFRbFNSP4 uhttp://web.worldbank.org/WBSITE/EXTERNAL/ACCUEILEXTN/EXTABTUSFRENCH/0,,contentMDK:20146554pagePK:64094163piPK:64094165theSitePK:328614,00.html4 zContenu : texte du rapport en français depuis 2005 aGEO RQ Universel aDEW 33700923nas 2200277 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000044001412100041001853260011002266010051002376100046002887120027003348300097003618560054004589550087005129720009005999920022006089920015006300000064283000006428320130319051806.0 aFNSP294667 a0000064283 a19900101a00019999 ba0 afre aXX aaka 10aRapport annuel - Banque Scalbert Dupont aLillecBanque Scalbert Dupontd0001- aAnnuel02aBanque Scalbert Dupontc(France)xPériodiques0 a* BanquesxRapportsyFrancexPériodiques02aBanque Scalbert Dupont aToute la collection a été transférée au CTLes en mars 2004 (temporairement indisponible)4 uhttp://www.scalbertdupont.com/interact/index7.htm1 bConservation limitée aux 5 dernières annéescParisdMagasins/AnnexeeP 4° 4139 aZGRA aGEO RA4.06 France aDEW 332.0601075nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005800163207001000221210005600231326001100287517005900298606004500357606008100402710005000483801001300533856009200546955006100638972000900699992002500708992001600733120576848000060866920130319051806.01 a1760-933X a0000608669 a a20039999 fre 01 ba0 afre aFR a 0  ar aak z 0 10aRapport annuelfCommission nationale du débat public 1a2003- aPariscCommission nationale du débat publicd2003- aAnnuel10aRapport annuel - Commission nationale du débat public aDémocratie localeyFrancexPériodiques aAménagement du territoirexParticipation des citoyensyFrancexPériodiques01aFrancebCommission nationale du débat public 0aFRbFNSP4 uhttp://www.debatpublic.fr/cndp/rapports_activites.htmlzAccès libre au texte intégral1 b(2003) -(2008/2009)cParisdMagasins/AnnexeseP 4° 7027 aZGRA aGEO RA4.06 France 01 aDEW 350-35401316nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000074001552100023002293000128002523260011003805170117003915300074005086060051005827120057006338560081006909550052007719550062008239550062008859720009009479920018009569920016009740000071839000007183920130319051806.01 a1013-3836 aFNSP328645 a0000071839 a19900101a19559999 f ba0 afre aFR aaka 10aRapport annuel - Conférence européenne des ministres des transports aPariscOCDEd1955- aContient : Activité de la conférence et Résolutions du Conseil des ministres des transports et rapports approuvés en... aAnnuel10aActivités de la Conférence, résolutions du Conseil des ministres des transports et rapports approuvés en ...00aRapport annuel - Conférence européenne des ministres des transports aPolitique des transportsyEuropexPériodiques02aConférence européenne des ministres des transports4 uhttp://www1.oecd.org/cem/pub/pubannfr.htm#Activités%20de%20la%20Conférence1 b(1976) -...cParisdMagasins/AnnexeeP 4° 52301 b(1969)-(1975)cParisdMagasins/AnnexeeDoc. OCDE 4° 01441 b(1955)-(1968)cParisdMagasins/AnnexeeDoc. OECE 8° 0251 aZPAY aGEO RA Europe aDEW 383-38901341nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005600154207002500210210002200235300007200257300006800329326001100397430009400408517002500502517003200527517006500559601006200624606003800686676000800724710004800732856004500780856005300825955005500878992002200933992001200955039883566000000680620130319051806.0 a0999-0585 aFNSP111110 a0000006806 a19900419a1990 ba0 afre aFR aaka 10aRapport annuelfConseil supérieur de l'audiovisuel 1a1989 publié en 1990 aPariscCSAd1990- aPublication annuelle en 2 volumes ; le deuxième constitue l'index. a2008, dernière éd. papier. A partir de 2009, version en ligne aAnnuel 1aRapport annuel de la Commission nationale de la communication et des libertésx0984-572010aRapport annuel - CSA10aRapport d'activité...- CSA10aRapport d'activité... - Conseil supérieur de l'audiovisuel02aFrancebConseil supérieur de l'audiovisuelxPériodiques aAudiovisuelyFrancexPériodiques a07002aFrancebConseil supérieur de l'audiovisuel4 uhttp://www.csa.fr/Etudes-et-publications4 zContenu : texte intégral du rapport depuis 20091 b(1990) -(2008)cParisdMagasins/AnnexeeP 4° 5267 aGEO RA4.06 France aDEW 07000917nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000121001502100022002712300028002933260011003216010062003326060038003947100048004328010013004808560095004939550005005889920022005939920012006150001240678000124067820130521101004.0 a0001240678 a a20009999k fre 01 ba0 afre aFR ar aak z  adr 10aRapport annuel - Conseil supérieur de l'audiovisuelb[Ressource électronique]fConseil supérieur de l'audiovisuel aPariscCSAd2000- aRessource électronique aAnnuel02aFrancebConseil supérieur de l'audiovisuelxPériodiques aAudiovisuelyFrancexPériodiques02aFrancebConseil supérieur de l'audiovisuel 0aFRbFNSP4 uhttp://www.csa.fr/Etudes-et-publicationszAccès au texte intégral du rapport depuis 20091 r aGEO RA4.06 France aDEW 07001303nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200004800160210007900208300007600287326001100363510005100374517019300425606004200618710003200660856008500692955005500777955005500832955005500887992001400942992002100956036232300000004460220130319051806.01 a1021-2671 aFNSP230595 a0000044602 a19900101b19001999 f ba0 amul aNL ar aaka 10aRapport annuelfCour permanente d'arbitrage aLa HayecBureau international de la Cour permanente d'arbitraged1900-1999 aLe rapport est seulement diffusé sur internet à partir du n°99, 1999 aAnnuel10aAnnual report - Permanent Court of Arbitration10aRapport du conseil administratif de la Cour Permanente d'Arbitrage sur les travaux de la Cour, sur le fonctionnement des services administratifs et sur les dépenses pendant l'exercice ... aArbitrage internationalxPériodiques02aCour permanente d'arbitrage uhttp://www.pca-cpa.org/showpage.asp?pag_id=1120zAccès aux rapports depuis 19991 b(1990) -(1998)cParisdMagasins/AnnexeeP 4° 60551 b(1980) -(1990)cParisdMagasins/AnnexeeP 4° 56911 b(1901) -(1979)cParisdMagasins/AnnexeeCOL.F.0011 aDEW 341.2 aGEO RQ Universel01013nas 2200289 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000050001412100022001913260011002134300070002246010047002946100064003417120033004058300097004388560055005359550087005909720009006779920022006869920015007080000083024000008302420130319051806.0 aFNSP370463 a0000083024 a19900101a19179999 ba0 afre aFR aaka 10aRapport annuel - Crédit commercial de France aPariscCCFd1917- aAnnuel 1aRapport du conseil d'administration - Banque suisse et française02aCrédit commercial de FrancexPériodiques0 a* Etablissements de créditxRapportsyFrancexPériodiques02aCrédit commercial de France aToute la collection a été transférée au CTLes en mars 2004 (temporairement indisponible)4 uhttp://www.cob.fr/TxtInt/Rpdf/1999/1999-018500.pdf1 bConservation limitée aux 5 dernières annéescParisdMagasins/AnnexeeP 4° 5593 aZGRA aGEO RA4.06 France aDEW 332.0601031nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000027001552100024001823260011002064360114002176010024003316100075003557120034004308300097004648560067005619550052006289720009006809920025006899920015007140000221314000022131420130319051806.01 a1372-7400 aFNSP794858 a0000221314 a19900101a19979999 ba0 afre aFR aaka 10aRapport annuel - Dexia aPariscDexiad1997- aAnnuel 1aRapport d'activité - Crédit local de France

et de Rapport annuel - Crédit communal de Belgique02aDexiaxPériodiques0 a* Etablissements de créditxRapportsyEurope de l'OuestxPériodiques02aDexia-Crédit local de France aToute la collection a été transférée au CTLes en mars 2004 (temporairement indisponible) uhttp://www.dexia.com/francais/pdf_2000/rapport_99/Voletafr.pdf1 b(1996) -...cParisdMagasins/AnnexeeP 4° 3872 aZGRA aGEO RA4.06 France 01 aDEW 332.0600840nas 2200277 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000031001412100028001723260011002006010028002116060047002397120014002868300097003008560070003979550052004679720009005199920022005289920012005500000155386000015538620130319051806.0 aFNSP605987 a0000155386 a19900101a00019999 ba0 afre aFR aaka 10aRapport annuel - Framatome aPariscFramatomed0001- aAnnuel02aFramatomexPériodiques aSociétésxRapportsyFrancexPériodiques02aFramatome aToute la collection a été transférée au CTLes en mars 2004 (temporairement indisponible)4 uhttp://www.framatome.com/framatome.nsf/internet/GroupeChiffres_VF1 b(1993) -...cParisdMagasins/AnnexeeP 4° 6455 aZGRA aGEO RA4.06 France aDEW 33300932nas 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000068001502100046002183260011002646060046002756060044003217100059003658010013004248560029004378560064004669550054005309720009005849920025005939920012006180000502197000050219720130319051806.0 a0000502197 a a20019999k fre ba0 amul aFR a 0  ar aak z 0 10aRapport annuel - Haut Conseil de la coopération internationale aPariscLa Documentation françaised2001- aannuel aCoopération internationalexPériodiques aRelations internationalesxPériodiques aFrancebHaut Conseil de la coopération internationale 0aFRbFNSP4 uhttp://www.hcci.gouv.fr/4 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml1 b(2000)-(2006)cParisdMagasins/AnnexeeP 4° 7050 aZPAY aGEO RA4.06 France 01 aDEW 32701194cas0 2200325 450 001001000000002001100010005001700021011001400038035001400052035001700066100004100083101000800124102000700132105001800139106000600157110001600163200009200179210004300271606002100314606005500335710008400390801003000474801002300504802000700527856013500534856010300669955005500772992002500827992001600852112388760000111384620130920111154.0 a1957-5912 a116878371 aissn19575912 a20070207a20069999u y0frey0103 ba0 afre aFR ay  ar azku uu 00aRapport annuelfHaute autorité de lutte contre les discriminations et pour l'égalité aPariscDocumentation françaised2006- aEgalitéyFrance aDiscriminationxLutte contreyFrancexPériodiques01aFrancebHaute autorité de lutte contre les discriminations et pour l'égalité 3aFRbAbesc20071004gAFNOR 3aFRbISSNc20070808 a074 uhttp://www.halde.fr/-Publications-.htmlzAccès libre au texte intégralzAccès libre au texte intégral des 2 dernières années4 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtmlzAccés au texte intégral depuis 20051 b(2005) -(2006)cParisdMagasins/AnnexeeP 4° 7191 aGEO RA4.06 France 01 aDEW 305-30601091nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200006400160210002300224326001100247430006800258601007000326607004400396676000800440710005600448801002100504856006400525955005700589955006000646972000900706992002200715992001600737039921255000000807520130319051806.01 a1154-3515 aFNSP113904 a0000008075 a19900101a19669999 ba0 afre aFR ar aaku 10aRapport annuelfInspection générale des affaires sociales aPariscIGASd1966- aAnnuel 1aRapport annuel - Inspection générale de la Sécurité sociale02aFrancebInspection générale des affaires socialesxPériodiques aFrancexPolitique socialexPériodiques a360 aFrancebInspection générale des affaires sociales 3aFRbCCN0204/58694 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml1 b(1966) -(1979)cParisdMagasins/AnnexeeCOL4 ° 23841 b(1980) -(2007/2008)cParisdMagasins/AnnexeeP 4° 6481 aZGRA aGEO RA4.06 France aDEW 360-36301427nas 2200373 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200005300148210002300201326001100224430007000235530005400305607006500359607006000424607006300484607005100547607006700598710004700665801001300712856007000725955007200795955005500867972000900922992003500931992006200966992002501028073591653000067968720140102142334.02 a1635-2262 a a19909999 fre 01 ba0 afre aFR a 0  ar aak z 0 10aRapport annuelfInstitut d'émission d'Outre-mer aPariscIEOMd1990- aAnnuel 1tRapport d'activité - Institut d'émission d'Outre-merx0073-824710aRapport annuel - Institut d'émission d'Outre-mer aPolynésie françaisexConditions économiquesxPériodiques aWallis et FutunaxConditions économiquesxPériodiques aNouvelle-CalédoniexConditions économiquesxPériodiques aMayottexConditions économiquesxPériodiques aFrancexDépartements et territoires d'outre-merxPériodiques02aInstitut d'émission d'Outre-merc(France) 0aFRbFNSP4 uhttp://www.iedom.fr/zAccès libre au texte intégral depuis 20051 b(1998) -(1999) ; (2001) -(2012)cParisdMagasins/AnnexeeP 4° 70431 b(1990) -(1997)cParisdMagasins/AnnexeeCOL4°3369 aZGRA aGEO RJ Océanie, Pacifique Sud aGEO RJ7 Autres régions de l'Océanie et du Pacifique Sud aGEO RA4.06 France 0101299nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200007100139210002400210326001100234430008800245530007200333607004300405607002700448607002900475607002500504607008100529607002900610710006500639856007000704955005500774955004700829972000900876992002200885992001600907992001400923076231429000008618720140102141133.01 a1632-420X aFNSP382137 a19900101a20019999 ba0 afre aFR aaka 10aRapport annuelfInstitut d'émission des départements d'Outre-mer aPariscIEDOMd2001- aAnnuel 1tRapport d'activité - Institut d'émission des départements d'Outre-merx0534-071310aRapport annuel - Institut d'émission des départements d'Outre-mer aSaint-Pierre-et-MiquelonxPériodiques aRéunionxPériodiques aGuadeloupexPériodiques aGuyanexPériodiques aFrancexDépartements et territoires d'outre-merxStatistiquesxPériodiques aMartiniquexPériodiques02aInstitut d'émission des départements d'Outre-merc(France)4 uhttp://www.iedom.fr/zAccès libre au texte intégral depuis 20051 b(2002) -(2012)cParisdMagasins/AnnexeeP 4° 69881 b(2001)cParisdMagasins/AnnexeeCOL4°2192 aZGRA aGEO RA4.06 France aDEW 310-319 aDEW 330.900913nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000052001552100022002073260011002295300052002406010049002926060049003417120035003908560041004259550047004669550055005139720009005689920022005779920012005990000094926000009492620130319051806.01 a0073-8379 aFNSP415392 a0000094926 a19900101a19549999 ba0 afre aFR aaka 10aRapport annuel - Institut français du pétrole aPariscIFPd1954- aAnnuel00aRapport annuel - Institut français du pétrole02aInstitut français du pétrolexPériodiques aPétrolexExploitationyFrancexPériodiques02aInstitut français du pétrole uhttp://www.ifp.fr/INTF/IN531GF1.html1 b(2002)cParisdMagasins/AnnexeeP 4° 70131 b(1969) -(2001)cParisdMagasins/AnnexeeCOL4°3286 aZGRA aGEO RA4.06 France aDEW 33301014nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000057001552100023002123260011002354360092002466010052003386060047003907120038004378300097004758560042005729550052006149720009006669920022006759920015006970000090814000009081420130319051806.01 a1292-3737 aFNSP400318 a0000090814 a19900101a19879999 ba0 afre aFR aaka 10aRapport annuel - LVMH - Moët Hennessy Louis Vuitton aPariscLVMHd1987- aAnnuel 1aAssemblée générale - Moët-Hennessy < Coll. 4°3453 > et de Exercice - Louis Vuitton02aLVMH Moët-Hennessy Louis VuittonxPériodiques aSociétésxRapportsyFrancexPériodiques02aLVMH Moët-Hennessy Louis Vuitton aToute la collection a été transférée au CTLes en mars 2004 (temporairement indisponible)4 uhttp://www.lvmh.fr/comfi/l2k0001f.htm1 b(1987) -...cParisdMagasins/AnnexeeP 4° 5359 aZGRA aGEO RA4.06 France aDEW 338.0601327nas 2200349 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000053001502100050002033260011002534400115002646060053003796060053004326060055004857100046005408010013005868560080005998560059006798560071007388560059008099550059008689720009009279920025009369920016009610000448753000044875320130319051806.0 a0000448753 a b20012006k fre ba0 afre aFR a 0  ar aak z 0 10aRapport annuel - Observatoire de l'emploi public aPariscLa Documentation françaised2001-2006 aAnnuel 1tRapport annuel sur l'état de la fonction publique. Gestion prévisionnelle des ressources humainesx1960-2677 aFonction publiquexEmploisyFrancexPériodiques aFonctionnairesxEvaluationyFrancexPériodiques aFonctionnairesyFrancexStatistiquesyPériodiques02aObservatoire de l'emploi publicc(France) 0aFRbFNSP uhttp://www.fonction-publique.gouv.fr/fp/observatoire/observatoire_index.htm zContenu : texte intégral du rapport à partir de 20004 uhttp://www.ladocumentationfrancaise.fr/rapports/presentation.shtml zContenu : texte intégral du rapport à partir de 20001 b(2001)-(2004/2005)cParisdMagasins/AnnexeeP 4° 6911 aZCAD aGEO RA4.06 France 01 aDEW 350-35401207nas 2200289 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000119001412100087002603260011003474400129003586060062004876060073005497100110006228560045007328560036007779550054008139720009008679920025008769920016009010000210093000021009320130319051806.0 aFNSP760582 a0000210093 a19900101a19962007 ba0 afre aFR aaka 10aRapport annuel - Observatoire national de la sécurité des établissements scolaires et d'enseignement supérieur aPariscObservatoire national de la sécurité des établissements scolairesd1996- aAnnuel 1tRapport annuel - Observatoire national de la sécurité et de l'accessibilité des établissements d'enseignementx1969-7589 aConstructions scolairesxProtectionyFrancexPériodiques aEcolesyFrancexIncendies et prévention des incendiesxPériodiques02aFrancebObservatoire national de la sécurité des établissements scolaires et d'enseignement supérieur4 uhttp://ons.education.gouv.fr/publica.htm4 zAccès libre au texte intégral1 b(1996)-(2007)cParisdMagasins/AnnexeeP 4° 6664 aZGRA aGEO RA4.06 France 01 aDEW 370-37901537cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200013400180210011500314430013000429530012000559606006200679606007300741710012000814801003000934801002300964802000700987856009000994955005301084972000901137992002501146992001601171133135764000118826920130521172842.0 a1969-7589 aissn19697589 a0001188269 a20090427a20089999k y0frey0103 ba0 afre aFR ay  ar azku uu 10aRapport annuel - Observatoire national de la sécurité et de l'accessibilité des établissements d'enseignementbTexte imprimé aPariscObservatoire national de la sécurité et de l'accessibilité des établissements d'enseignementd2008- 1tRapport annuel - Observatoire national de la sécurité des établissements scolaires et d'enseignement supérieurx1772-157100aRapport annuel‎bObservatoire national de la sécurité et de l'accessibilité des établissements d'enseignement aConstructions scolairesxProtectionyFrancexPériodiques aEcolesyFrancexIncendies et prévention des incendiesxPériodiques02aFrancebObservatoire national de la sécurité et de l'accessibilité des établissements d'enseignement supérieur 3aFRbAbesc20090610gAFNOR 3aFRbISSNc20090602 a074 uhttp://ons.education.gouv.fr/publica.htmzAccès libre au texte intégral depuis 19961 b(2008) -....cParisdMagasins/AnnexeeP 4° 6664 aZGRA aGEO RA4.06 France 01 aDEW 370-37901464nas0 2200409 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109110001600127200010400143207001000247210004300257225003400300301004300334326001100377410004500388606006700433606003600500676001100536710007400547711005400621711004400675801003000719801003300749830000700782856005400789856004900843955006700892955005300959972000901012992002101021992001201042094150966000051810220130319051806.0 a0000518102 a20051209a20029999k y0frey0103 ba0 afre aFR a 0  aak 0 010aRapport annuelfObservatoire pour la protection des défenseurs des droits de l'homme, FIDH et OMCT 0a2002- aLa Tour d'AiguescEd. de l'Aubed2002-00aMonde en cours.iSérie Essai aDemande de numérotation ISSN en cours aAnnuel 1tMonde en cours. Série Essaisx1630-5612 aDéfenseurs des droits de l'hommexCrimes contrexPériodiques aDroits de l'hommexPériodiques a341.4802aObservatoire pour la protection des défenseurs des droits de l'homme02aFédération internationale des droits de l'homme02aOrganisation mondiale contre la torture 3aFRbAbesc20051209gAFNOR 3aFRbElectrec20030331gAFNOR adm4 uhttp://www.fidh.org/rubrique.php3?id_rubrique=336 zContenu : texte intégral du dernier rapport1 bLa dernière annéecParisdSalle des périodiqueseDEW 341.481 b(2002) -....cParisdMagasins/AnnexedP 8° 6859 aZPAY aGEO RQ Universel aDEW 32301401nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005400154210002500208300011400233326001100347436010700358436003100465488005300496517005800549530005600607601005200663606004400715606004100759676001300800710003800813856002300851856003600874955005600910992001200966992001600978992002100994040182401000020702020130319051806.0 a1020-5004 aFNSP751315 a0000207020 a19900101a1996 f ba0 afre aCH aaka 10aRapport annuelfOrganisation mondiale du commerce aLausannecOMCd1996- aEn 2 vol. de 1996 à 1999 ; le 2ème vol. s'intitule "Statistiques du commerce international" en 1998 et 1999 aAnnuel 1tLe Commerce international en ... (Accord général sur les tarifs douaniers et le commerce)x0414-8061 1tGATT activitésx0251-060X 11atStatistiques du commerce internationald2000-10aRapport annuel de l'Organisation mondiale du commerce10aRapport annuelb(Organisation mondiale du commerce)02aOrganisation mondiale du commercexPériodiques aStatistiques commercialesxPériodiques aCommerce internationalxPériodiques a382v22a02aOrganisation mondiale du commerce uhttp://www.wto.org zAccès libre au texte intégral1 b(1996) -(1999)cParisdMagasons/Annexe,eP 4° 6733 aDEW 337 aDEW 310-319 aGEO RQ Universel00943nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000048001552100026002033260011002294300056002405170049002966010045003456060032003906060047004227120031004698560048005009550031005489720009005799920025005889920016006130000276433000027643320130319051806.01 a1263-3445 aFNSP949716 a0000276433 a19990629a19979999 ba0 afre aFR aaka 10aRapport annuel - Port autonome de Marseille aMarseillecPAMd1997- aAnnuel 1aActivités - Port autonome de Marseillex(0758-649310aAnnual report - Port of Marseilles Authority02aPort autonome de MarseillexPériodiques aPortsyFrancexPériodiques aSociétésxRapportsyFrancexPériodiques02aPort autonome de Marseille uhttp://www.marseille-port.fr/site/index.htm1 r1996---> < Coll. 4°2905 > aZGRA aGEO RA4.06 France 01 aDEW 383-38900779nas 2200277 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000030001412100032001713260011002034300054002146010041002686060051003097120026003608560034003869550031004209720009004519920026004609920015004860000237967000023796720130319051806.0 aFNSP840465 a0000237967 a19900101a19979999 ba0 afre aLU aaka 10aRapport annuel - Quilvest aLuxembourgcQuilvestd1997- aAnnuel 1aExercice - Entreprises Quilmès < Coll. 4°1843 >02aQuilmèsc(Luxembourg)xPériodiques aSociétésxRapportsyLuxembourgxPériodiques02aQuilvest (Luxembourg) uhttp://www.quilvest.com/3.htm1 r1996---> < Coll. 4°1843 > aZGRA aGEO RA4.05 Luxembourg aDEW 338.0600846nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002900139210002200168326001100190530003000201601005700231606004700288710004800335712003000383856004500413955005500458972000900513992002200522992001200544039444309000010913920131217121552.01 a0291-9494 aFNSP461523 a19900101a19809999 ba0 afre aFR aaka 10aRapport d'activitéfTF1 aPariscTF1d1980- aAnnuel10aRapport d'activité - TF102aSociété de télévision française 1xPériodiques aSociétésxRapportsyFrancexPériodiques02aSociété de télévision française 1407002aTélévision française 14 uhttp://www.tf1.fr/groupe/index_infos.htm1 b(1992) -(2001)cParisdMagasins/AnnexeeP 4° 6309 aZGRA aGEO RA4.06 France aDEW 07001092nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000089001502100071002392300024003103260011003346010060003456060064004056060053004697100046005228010013005688560073005818560053006549550005007079920028007129920014007409920012007540001204278000120427820130319051806.0 a0001204278 a a20009999k fre 01 ba0 afre aUS ar aak z  adr 10aRapport annuelb[Ressource électronique]fBanque interaméricaine de développement aWashington, D.C.cBanque interaméricaine de développementd2000- aRevue électronique aAnnuel02aBanque interaméricaine de développementxPériodiques aAide économiquexCoopération internationalexPériodiques aAide économiqueyAmérique latinexPériodiques02aBanque interaméricaine de développement 0aFRbFNSP4 uhttp://www.iadb.org/fr/a-propos-de-la-bid/rapports-annuels,6293.html4 zContenu : texte intégral du rapport depuis 20001 r aGEO RD Amérique latine aDEW 338.9 aDEW 33201346nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200009000139207001800229210003900247300010100286326001100387517005600398517009600454517002700550517002500577606005200602676000800654710006300662711005300725856011400778955005400892991001600946992002200962992001200984053567765000016540820140114161734.0 a1153-2785 aFNSP631534 a19900101a19842009 ba0 afre aFR aa a 10aRapport annuel au Conseil national du créditfComité des établissements de crédit 1a(1984)-(2009) aPariscBanque de Franced1985-2010 ales 3 premiers rapports ont été publiés dans le Rapport annuel du Conseil national du crédit aAnnuel10aRapport annuel au Conseil national du crédit - CEC10aRapport annuel - Comité des établissements de crédit et des entreprises d'investissement10aRapport annuel - CECEI10aRapport annuel - CEC aEtablissements de crédityFrancexPériodiques a33202aBanque de France. Direction des établissements de crédit02aComité des établissements de créditc(France)4 uhttp://www.banque-france.fr/fr/publications/publications.htmzAccès libre au texte intégral de 1994 à 20091 b(1988) -(2008)cParisdMagasins/AnnexeeP 4° 6506 aexemp201401 aGEO RA4.06 France aDEW 33200940nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000065001552100059002203260011002796060041002906060043003317100053003748560088004278560036005159550053005519720009006049920025006139920012006380000194598000019459820130319051806.01 a1257-2640 aFNSP715807 a0000194598 a19900101a19909999 ba0 afre aFR aaka 10aRapport annuel de l'Inspection générale des bibliothèques aPariscInspection générale des bibliothèquesd1990- aAnnuel aBibliothèquesyFrancexPériodiques aBibliothécairesyFrancexPériodiques02aFrancebInspection générale des bibliothèques uhttp://www.enseignementsup-recherche.gouv.fr/cid21652/les-rapports-g-2000-2011.html zAccès libre au texte intégral1 b(1995) -....cParisdMagasins/AnnexeeP 4° 6615 aZGRA aGEO RA4.06 France 01 aDEW 02001080nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000033001552100025001883260011002134410132002245170089003566060045004456060028004907100107005188010021006258560054006469550055007009720009007559920014007640000102308000010230820130319051806.01 a0258-8145 aFNSP439204 a0000102308 a19900101a19859999 f ba0 afre aAT aaku 10aRapport annuel de l'ONUDI... aViennecONUDId1985- aAnnuel 1tRapport annuel de l'ONUDI. Rapport sur l'exécution du programme. Statistiques opérationnelles et autres appendicesx1020-766X10aRapport annuel de l'Organisation des Nations Unies pour le développement industriel aDéveloppement économiquexPériodiques aIndustriexPériodiques02aOrganisation des Nations Unies pour le développement industrielbConseil du développement industriel 3aFRbCCN0258-81454 uhttp://www.unido.org/doc/38944?language%5fcode=fr1 b(1985) -(2005)cParisdMagasins/AnnexeeP 4° 5857 aZGRA aDEW 338.401421nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200013600139207001000275210007000285300016800355326001100523488006500534510006800599607005400667710005100721801004100772856007300813955006400886955005600950972000901006991001801015992003401033992001601067040613429000009335020140102104608.01 a2024-9950 aFNSP411681 a19900101a1928 ba0 afre aFR aaka 10aRapport annuel de la Commission centrale pour la navigation du Rhind= Jahresbericht der Zentralkommission für die Rheinschiffahrt 1a1926- aStrasbourgcCommission centrale pour la navigation du Rhind1926- aaA partir de 1998, publie la 1ère partie du rapport annuel en avant-parution du rapport complet, sous le titre : "Evolution économique de la navigation rhénane" aAnnuel 11aEvolution économique de la navigation rhénanex1811-275710aJahresbericht der Zentralkommission für die Rheinschiffahrt... aRhin (cours d'eau)xRégularisationxPériodiques02aCommission centrale pour la navigation du Rhin 0aFRbAbesc20110623gAFNORh124304222 uhttp://www.ccr-zkr.org/zAccès libre au texte intégral depuis 19971 b(1980) -(1990) ; (1997)cParisdMagasins/AnnexeeP 4° 57001 b(1951) -(1979)cParisdMagasins/AnnexeeCOL.F°0121 aZGRA aexempb201312 aGEO RA2.01 Europe occidentale aDEW 383-38901297nas 2200349 i 450 001001000000002001100010005001700021011000600038035001500044100004100059101000800100102000700108105001800115106000600133110001600139200006800155207001600223210006400239326001100303430007000314447010400384601005900488606004400547710004500591801001300636856013500649856006200784955005500846972000900901992002500910992001200935090052684000100317220130524145729.01 ac a0001003172 a b20012007 fre 01 ba0 afre aFR a 0  ar aak z 0 10aRapport annuel de performancefDirection générale des impôts 1a(2001)-2007 aPariscMinistère de l'économie et des financesd2001-2007 aAnnuel 1tRapport d'activité - Direction générale des impôtsx1249-5220 1tRapport annuel de performance...(Paris)x1961-4756 pour former : Rapport annuel...(DGFIP)x210-544502aFrancebDirection générale des impôtsxPériodiques aPolitique fiscaleyFrancexPériodiques02aFrancebDirection générale des impôts 0aFRbFNSP4 uhttp://www.impots.gouv.fr/portal/dgi/public/quisommesnous;jsessionid=F5UHRPJ3DRQHDQFIEMPSFFWAVARXAIV1?pageId=quisommesnous&sfid=024 zContenu : texte intégral du rapport depuis l'année 20031 b(2001) -(2007)cParisdMagasins/AnnexeeP 4° 6537 aZGRA aGEO RA4.06 France 01 aDEW 33601454cas0 2200361 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147106000600154110001600160200018400176210004600360436007500406436010300481606005000584606004800634606003600682710006000718711009900778801003000877801002300907802000700930856006400937955005701001972000901058992002501067084560223000089778720130319051806.01 a1772-8363 a090068645 aissn17728363 a0000897787 a20050311a20059999 y0frey0103 ba0 afre aFR ar aaku uu 10aRapport annuel des Inspections généralesfInspection générale de l'éducation nationale, Inspection générale de l'administration de l'éducation nationale et de la recherche aPariscLa documentation françaised2005- 1tRapport de l'Inspection générale de l'Education nationalex1263-0950 1tRapport général - Inspection générale de l'administration de l'éducation nationalex1249-4828 aAdministration scolaireyFrancexPériodiques aInspection du travailyFrancexPériodiques aEducationyFrancexPériodiques01aFrancebInspection générale de l'éducation nationale01aFrancebInspection générale de l'administration de l'éducation nationale et de la recherche 3aFRbAbesc20050909gAFNOR 3aFRbISSNc20050901 a074 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml1 b(2004) -(2007)cParisdMagasins/Annexes:eP 8° 6548 aZPAY aGEO RA4.06 France 0101055cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200010800156210002700264326001100291606003500302606003100337710005600368801003000424801002300454802000700477856009700484856005400581955005200635972000900687992002100696992001200717068804369000071180020130319051806.01 a1373-0045 aissn13730045 a0000711800 a20020530a19979999 0fre 0103 ba0 afre aBE aak 10aRapport annuel des violations des droits syndicauxfConfédération internationale des syndicats libres aBruxellescCISLd1997- aAnnuel aSyndicatsxDroitxPériodiques aSyndicalismexPériodiques02aConfédération internationale des syndicats libres 3aFRbAbesc20041018gAFNOR 3aFRbISSNc20020530 a0m4 uhttp://www.icftu.org/list.asp?Type=Publication&Order=Date&Language=FR&STEXT=rapport%20annuel zContenu : texte intégral du rapport depuis 1996.1 a(2004) -...cParisdMagasins/AnnexeeP 4° 7051 aZPAY aGEO RQ Universel aDEW 33101100nas 2200313 i 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109106000600127110001600133200013600149207003200285210004300317326001100360601005900371606003600430710005900466801001300525856005700538856007900595955007100674972000900745992001800754992001400772161486223000044558420130319051806.0 a0000445584 a a20019999k f fre ba0 afre aFR a 0  ar aak z 0 10aRapport annuel du Commissaire aux droits de l'hommeeau Comité des Ministres et à l'Assemblée parlementairefConseil de l'Europe 1a15 oct. 1999/1er avr. 2001- aStrasbourgcConseil de l'Europed2001- aAnnuel02aConseil de l'EuropebCommissaire aux droits de l'homme aDroits de l'hommexPériodiques02aConseil de l'EuropebCommissaire aux droits de l'homme 0aFRbFNSP4 uhttp://www.coe.int/t/commissioner/WCD/Search_fr.asp#4 zAccés au texte intégral en français et en anglais depuis le 1er rapport1 bno 1 (1999/2001) ; no 3 (2002)cParisdMagasins/AnnexeeP 4° 7055 aZCAD aGEO RA EUROPE aDEW 341.201232nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200011700154210002700271326001100298430008700309454008700396601004900483676000800532710003500540856005300575856003600628955006000664955006700724955005900791972000900850992002100859992001400880039239055000001134220140116115930.01 a0250-7501 aFNSP124530 a0000011342 a19900806a19789999 f ba0 afre aUS aaka 10aRapport annuel du Conseil d'administration pour l'exercice financier clos le ...fFonds monétaire international aWashingtoncFMId1978- aAnnuel 1aRapport annuel des administrateurs... - Fonds monétaire internationalex0252-3000 1aAnnual report of the Executive Board... - International Monetary Fundx(0250-7528)02aFonds monétaire internationalxPériodiques a33202aFonds monétaire international4 uhttp://www.imf.org/external/pubs/ft/ar/index.htm zAccès libre au texte intégral1 b(1987) -(2009);cParisdMagasins/AnnexeeP 4° 5439 bis1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3321 b(1978) -(1986)cParisdMagasins/AnnexeeCOL4°2421 bis aZGRA aGEO RQ Universel aDEW 341.201124nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007000154210003700224210005100261225005000312326001100362517006900373606006000442710006000502856006400562856004700626955006000673972000900733991001800742992002200760992001600782053567803000014934820130319051806.01 a1249-5603 aFNSP585372 a0000149348 a19950210a19949999 ba0 afre aFR aaka 10aRapport annuel du Service central de prévention de la corruption aPariscJournaux officielsd1994- aPariscDirection des journaux officielsd1994-21aJournal officiel de la République française aAnnuel10aRapport annuel - Service central de prévention de la corruption aCorruption politiquexPréventionyFrancexPériodiques02aFrancebService central de prévention de la corruption4 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml4 zAccés au texte intégral depuis 1998-19991 b(1993/1994) -(2006)cParisdMagasins/AnnexeeP 8° 6107 aZPAY aexempb201211 aGEO RA4.06 France aDEW 364-36501458nas0 2200373 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118105001800125106000600143110001600149200007400165210004600239423011900285423010400404430004800508517008400556606004400640606005000684710008100734801003000815801002300845802000700868856005700875856003600932955005900968992002501027992001601052992001601068121356892000113089920131028141926.0 a1960-2669 aissn19602669 a20080208a20079999u y0frey0103 ba0 afre aFR ay  ar azku uu 10aRapport annuel sur l'état de la fonction publiqueiFaits et chiffres aPariscLa Documentation françaised2007- 1tRapport annuel sur l'état de la fonction publique. Gestion prévisionnelle des ressources humaines ...x1960-2677 1tRapport annuel sur l'état de la fonction publique. Rapport d'activité ministériel ...x1960-2685 1tRapport annuel Fonction publiquex1779-064610aRapport annuel sur l'état de la fonction publique. Volume 1, Faits et chiffres aFonction publiqueyFrancexPériodiques aFonction publiquexStatistiquesxPériodiques02aFrancebMinistère du budget, des comptes publics et de la fonction publique 3aFRbAbesc20080208gAFNOR 3aFRbISSNc20080208 a074 uhttp://www.fonction-publique.gouv.fr/statistiques-104 zAccès libre au texte intégral1 b(2006) -(2007)cParisdMagasins/AnnexeeP 8° 4603(01) aGEO RA4.06 France 01 aDEW 350-354 aDEW 310-31901510nas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200010400180210004600284423008900330423010400419430006400523517011800587606004400705606005000749710008100799801003000880801002300910802000700933856008200940955005701022992001601079992001601095992002501111121356906000113090020130319051806.0 a1960-2677 aissn19602677 a0001130900 a20080208a20079999u y0frey0103 ba0 afre aFR ay  ar azku uu 10aRapport annuel sur l'état de la fonction publiqueiGestion prévisionnelle des ressources humaines aPariscLa Documentation françaised2007- 1tRapport annuel sur l'état de la fonction publique. Faits et chiffres ...x1960-2669 1tRapport annuel sur l'état de la fonction publique. Rapport d'activité ministériel ...x1960-2685 1tRapport annuel - Observatoire de l'emploi publicx1631-820X10aRapport annuel sur l'état de la fonction publique. Volume 2, Gestion prévisionnelle des ressources humaines ... aFonction publiqueyFrancexPériodiques aFonction publiquexStatistiquesxPériodiques02aFrancebMinistère du budget, des comptes publics et de la fonction publique 3aFRbAbesc20080208gAFNOR 3aFRbISSNc20080208 a074 uhttp://www.ladocumentationfrancaise.fr/rapports-publics/074000491/index.shtml1 b(2006-2007)cParisdMagasins/AnnexeeP 8° 4603 (02) aDEW 350-354 aDEW 310-319 aGEO RA4.06 FRANCE 0101438cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118105001800125106000600143110001600149200008900165210004600254423008900300423011900389430004800508517010300556606004400659710008100703801003000784801002300814802000700837856008200844856003600926955005700962992001601019992001601035992002501051121356914000113090120131029094911.01 a1960-2685 aissn19602685 a20080208a20079999uuuy0frey0103 ba0 afre aFR ay  ar azku uu 10aRapport annuel sur l'état de la fonction publiqueiRapport d'activité ministériel aPariscLa Documentation françaised2007- 1tRapport annuel sur l'état de la fonction publique. Faits et chiffres ...x1960-2669 1tRapport annuel sur l'état de la fonction publique. Gestion prévisionnelle des ressources humaines ...x1960-2677 1tRapport d'activité ministérielx1763-638810aRapport annuel sur l'état de la fonction publique. Volume 3, Rapport d'activité ministériel ... aFonction publiqueyFrancexPériodiques02aFrancebMinistère du budget, des comptes publics et de la fonction publique 3aFRbAbesc20080213gAFNOR 3aFRbISSNc20080208 a074 uhttp://www.ladocumentationfrancaise.fr/rapports-publics/074000492/index.shtml4 zAccès libre au texte intégral1 b(2006-2007)cParisdMagasins/AnnexeeP 8° 4603 (03) aDEW 350-354 aDEW 310-319 aGEO RA4.06 France 0100881nas 2200241 i 450 002001100000005001700011035001500028100004100043101000800084102000700092110001600099200004800115210004300163326001100206517010300217606004000320710006300360856011900423955005400542972000900596992001800605992001600623000026369120130522151010.0 aFNSP915433 a19990111a19989999 ba0 afre aFR aaka 10aRapport annuel sur les activités de l'ECRI aStrasbourgcConseil de l'Europed1998- aAnnuel10aRapport annuel sur les activités de la Commission européenne contre le racisme et l'intolérance aRacismexLutte contrexPériodiques02aCommission européenne contre le racisme et l'intolérance uhttp://www.coe.int/t/dghl/monitoring/ecri/library/publications_fr.aspzAccés libre au texte intégral depuis 19971 b(1997) -(2003)cParisdMagasins/AnnexeeP 4° 679 aZGRA aGEO RA Europe aDEW 305-30600932nas 2200289 i 450 001001000000002001100010005001700021011001400038035000500052100004100057101000800098102000700106105001800113106000600131110001600137200004500153210008900198326001100287606006500298712003100363801001300394856009800407955005900505972000900564992005700573992001200630058837450000037366820130604155326.01 a1680-9750 a a a20009999k fre ba0 afre aFR a 0  ar aa z 0 10aRapport annuel sur les droits de l'homme aLuxembourgcOffice des publications officielles des Communautés européennesd2000- aAnnuel aDroits de l'hommeyPays de l'Union européennexPériodiques02aUnion européennebConseil 0aFRbFNSP4 uhttp://bookshop.europa.eu/eGetRecordszAccès libre au texte intégral à partir de 1998/19991 b(1998/1999)-(2001)cParisdMagasins/AnnexeeP 4° 6873 aZPAY aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 32301173nas 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000169001502100024003193260011003436060062003546060058004166070033004747100067005078010013005748560083005878560040006709550047007109720009007579920051007669920014008179920016008310000598545000059854520130319051806.0 a0000598545 a a20009999 fre 01 ba0 afre aFR a 0  ar aak z 0 10aRapport annuel sur les Principes directeurs de l'OCDE à l'intention des entreprises multinationalesfOrganisation de coopération et de développement économiques aPariscOCDEd2000?- aAnnuel aEntreprises multinationalesyPays de l'OCDExPériodiques aCorruptionxPréventionyPays de l'OCDExPériodiques aPays de l'OCDExPériodiques02aOrganisation de coopération et de développement économiques 0aFRbFNSP4 uhttp://www.oecd.org/document/13/0,2340,fr_2649_201185_20592525_1_1_1_1,00.html zContenu : résumé du rapport 2003.1 b(2003)cParisdMagasins/AnnexeeP 8° 6727 aZPAY aGEO RN1 Pays industrialisés, pays occidentaux aDEW 338.9 aDEW 364-36501043cas0 2200301 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200009700156210009500253606003900348710003800387801003000425801002300455802000700478856009500485856005500580955005600635972000900691992002500700992001600725059135891000100045920130319051806.01 a1629-4297 aissn16294297 a0001000459 a20011008a20019999k y0frey0103 ba0 afre aFR aauu uu 10aRapport au Parlement sur les exportations d'armement de la FrancefMinistère de la défense a[Paris]cDICOD, Délégation à l'information et à la communication de la Défensed2001- aArmesxVenteyFrancexPériodiques02aFrancebMinistère de la défense 3aFRbAbesc20060711gAFNOR 3aFRbISSNc20011008 a074 uhttp://www.defense.gouv.fr/defense/enjeux_defense/defense_au_parlement/rapports_d_activite zContenu : texte intégral des rapports depuis 19981 b(2000) -( 2006)cParisdMagasins/AnnexeeP 4° 7139 aZGRA aGEO RA4.06 France 01 aDEW 355-35900952nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000124001502100095002742300028003693260011003976060039004087100038004478010013004858300008004988560127005069920025006339920016006580001240692000124069220131202135454.0 a0001240692 a a 9999k fre 01 ba0 afre aFR ar aak z  adr 10aRapport au Parlement sur les exportations d'armement de la Franceb[Ressource électronique]fMinistère de la défense a[Paris]cDICOD, Délégation à l'information et à la communication de la Défensed2001- aRessource électronique aAnnuel aArmesxVenteyFrancexPériodiques02aFrancebMinistère de la défense 0aFRbFNSP acdj4 uhttp://www.defense.gouv.fr/portail-defense/mediatheque/publicationszAccès au texte intégral du dernier rapport en ligne aGEO RA4.06 France 01 aDEW 355-35901329cas0 2200337 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012311000160014120001280015721000460028530300450033153001180037660600250049460600470051971000290056671100950059580100300069085600340072085600530075485600640080795500720087197200090094399200250095299200140097709366513X000096982520130319051806.01 a1951-9044 a0000969825 a20051205a20059999 y0frey0103 ba0 afre aFR a 0  azku 0uu 00aRapport au Premier ministrefMission interministérielle de vigilance et de lutte contre les dérives sectaires (MIVILUDES) aPariscLa Documentation françaised2003- aNotice réd. d'après le rapport de 200310aRapport au Premier ministreb(Mission interministérielle de vigilance et de lutte contre les dérives sectaires) aSectesxPériodiques aSectesxLutte contreyFrancexPériodiques02aFrancebPremier ministre01aFrancebMission interministérielle de vigilance et de lutte contre les dérives sectaires 3aFRbAbesc20051209gAFNOR4 uhttp://www.miviludes.gouv.fr/ zContenu : texte intégral du rapport depuis 20054 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml1 b(2003) -(2007)cParisdMagasins/AnnexeeP 8° 6889wManquant : 2004 aZGRA aGEO RA4.06 France 01 aDEW 20-2900850nas 2200277 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000066001552100041002213260016002626060044002787100032003228560064003549550057004189550054004759720009005299920022005389920012005600000005120000000512020130319051806.0 a0097-4768 aFNSP107345 a0000005120 a19900307b19722005 ba0 afre aFR aaka 10aRapport au Président de la République - Conseil des impôts aPariscJournaux officielsd1972-2005 aIrrégulier aPolitique fiscaleyFrancexPériodiques02aFrancebConseil des impôts4 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml1 b(1980) -(2005)cParis :dMagasins/AnnexeeP 4° 54391 b(1972)-(1979)cParisdMagasins/AnnexeeCOL4°3938 aZGRA aGEO RA4.06 France aDEW 33601266nas 2200349 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000116001502100046002663260011003125170068003236010066003916060057004576060050005147120066005648010013006308560024006438560037006678560071007048560037007759550054008129720009008669920025008759920016009000000454175000045417520130319051806.0 a0000454175 a a20029999k fre ba0 afre aFR a 0  ar aak z 0 10aRapport au Président de la République et au Parlement - Commission nationale de déontologie de la sécurité aPariscLa Documentation françaised2002- aAnnuel10aRapport - Commission nationale de déontologie de la sécurité02aFrancebCommission nationale de déontologie de la sécurité aServices privés de sécuritéyFrancexPériodiques aPoliciersxDéontologieyFrancexPériodiques02aFrancebCommission nationale de déontologie de la sécurité 0aFRbFNSP uhttp://www.cnds.fr/ zAccès libre au texte intégral. uhttp://www.ladocumentationfrancaise.fr/rapports/presentation.shtml zAccès libre au texte intégral.1 b(2001)-(2006)cParisdMagasins/AnnexeeP 8° 6619 aZCAD aGEO RA4.06 France 01 aDEW 350-35400977nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123200009000141210004100231326001100272517005100283606003700334710004100371801001300412856010900425955005500534955005500589972000900644992002200653992001200675039300676000000404520130522154106.01 a0182-7502 aFNSP104564 a19900131b1974 fre 0 afre aFR ay z b 10aRapport au Président de la République et au ParlementfMédiateur de la République aPariscJournaux officielsd1974-2010 aAnnuel10aRapport annuel du Médiateur de la République aMédiateuryFrancexPériodiques aFrancebMédiateur de la République 0aFRbFNSP4 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtmlzAccès libre au texte intégral depuis 19991 b(1998) -(2008)cParisdMagasins/AnnexeeP 4° 68111 b(1988) -(1997)cParisdMagasins/AnnexeeP 8° 3396 aZCAD aGEO RA4.06 France aDEW 34202098nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200010200154210003700256225006600293300034900359300006600708423012700774430011100901512003801012517004901050517012701099601004301226607007701269676000801346710002901354856006101383955006701444955005601511955005701567972000901624991002101633992002201654992001201676036063320000000404620140117150009.01 a0242-5939 aFNSP104565 a0000004046 a19900131a19399999 ba0 afre aFR aaka 10aRapport au Président de la République suivi des réponses des administrationsfCour des comptes aPariscJournaux officielsd1939-20aJournal officiel de la République françaisexISSN 0767-4538 aA partir de 2001, publié en deux parties : " Les Observations des juridictions financières" et "Rapport d'activité", ou "Rapport d'activité des juridictions financières", ou "Les Suites données aux observations des juridictions financières". A partir de 2007, ajout du 3e volume intitutlé "Cour de discipline budgétaire et financière" a2009, dernière éd. papier voir ensuite en version en ligne. 11aRapport présenté au Président de la République par le Président de la Cour de discipline budgétaire et financière 1aRapport au roi et déclaration générale de la Cour des comptes sur les comptes de l'année...x1263-171X10aRapport public - Cour des comptes10aRapport public annuel de la Cour des comptes10aRapport au Président de la République suivi des réponses des administrations, collectivités, organismes et entreprises01aFrancebCour des comptesxPériodiques aFrancexAdministrationxCrédits budgétaires et dépensesxPériodiques a33601aFrancebCour des comptes4 uhttp://www.ccomptes.fr/zAccès libre au texte intégral1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3361 b(1980) -.(2009)cParisdMagasins/AnnexeeP 4° 56951 b(1940) -(1979)cParisdMagasins/AnnexeeCOL.F° 0055 aZGRA aPériobTP01 Fol aGEO RA4.06 France aDEW 33601015nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200011600154210003700270326001100307606005400318606005400372710008800426856004300514856003700557955005400594972000900648991001800657992002200675992001600697040403637000011761520130319051806.01 a1263-0918 aFNSP487989 a0000117615 a19940208a19939999 ba0 afre aFR aaka 10aRapport d'activité....f[CNCCFP = Commission nationale des comptes de campagne et des financements politiques] aPariscJournaux officielsd1993- aAnnuel aPartis politiquesyFrancexFinancesxPériodiques aCaisses électoralesxDroityFrancexPériodiques01aFrancebCommission nationale des comptes de campagne et des financements politiques uhttp://www.cnccfp.fr/index.php?art=6994 zAccès libre au texte intégral.1 b(1992)-(2006)cParisdMagasins/AnnexeeP 8° 6020 aZCAD aexempb201210 aGEO RA4.06 France aDEW 324.6-901243nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200011900154210005200273326001100325517014100336606006400477606004400541710007300585856009700658856003600755955007000791972000900861991001800870992002500888992001600913040513440000022064220130319051806.00 a1276-3632 aFNSP791950 a0000220642 a19900101b1997200. ba0 afre aFR aaka 10aRapport d'activité...erapport au Premier ministrefCommission de déontologie de la fonction publique de l'État aPariscLa Documentation françaised1997-[200.] aAnnuel10aAccès des agents publics au secteur privé : rapport au Premier ministre - Commission de déontologie de la fonction publique de l'Etat aFonctionnairesxEmploi dans le privéyFrancexPériodiques aFonction publiqueyFrancexPériodiques02aFrancebCommission de déontologie de la fonction publique de l'Etat4 uhttp://www.fonction-publique.gouv.fr/fonction-publique/carriere-et-parcours-professionnel-164 zAccès libre au texte intégral1 bno 1 (1995/1996) -no 9 (2003)cParisdMagasins/AnnexeeP 8° 6426 aZCAD aexempb201212 aGEO RA4.06 France 01 aDEW 350-35400973nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000076001552100023002313000072002543260011003264300098003376060052004357100055004878560043005429550055005859720009006409920012006499920022006610000061005000006100520130319051806.0 a1297-3750 aFNSP279385 a0000061005 a19900101a19849999 ba0 afre aFR aaka 10aRapport d'activitéfAssociation française des sociétés financières aPariscAFSFd1984- a2008, dernière édition papier, à partir de 2009 version en ligne aAnnuel 1aAssemblée générale - Association professionnelle des établissements financiersx1279-3752 aEtablissements de crédityFrancexPériodiques02aAssociation française des sociétés financières uhttp://www.asf-france.com/default.aspx1 b(1984) -(2008)cParisdMagasins/AnnexeeP 4° 3346 aZGRA aDEW 332 aGEO RA4.06 France00891nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000103001502070010002532100023002632300028002863260011003146060052003257100055003778010013004328560117004459550005005629920012005679920022005790001240870000124087020130521102505.0 a0001240870 a a19959999k fre 01 ba0 afre aFR ar aak z  adr 10aRapport d'activitéfAssociation française des sociétés financièresb[Ressource électronique] 1a1995- aPariscAFSFd1995- aRessource électronique aAnnuel aEtablissements de crédityFrancexPériodiques02aAssociation française des sociétés financières 0aFRbFNSP4 uhttp://www.asf-france.com/publications-asf/Pages/Rapports.aspxzAccès au texte intégral du rapport depuis 19951 r aDEW 332 aGEO RA4.06 France01297nas 2200349 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000076001552100024002313000047002553260011003024300083003135300076003966010068004726060048005406070063005887120054006518560026007058560053007319550055007849550055008399720009008949920032009039920012009350000063372000006337220130319051806.01 a0067-3897 aFNSP291664 a0000063372 a19900101a19589999 ba0 afre aSN aaka 10aRapport d'activité - Banque centrale des Etats de l'Afrique de l'Ouest aDakarcBCEAOd1958- aEn version électronique à partir de 2003 aannuel 1aRapport d'activité - Institut d'émission de l'Afrique occidentale et du Togo00aRapport d'activité - Banque centrale des Etats de l'Afrique de l'Ouest02aBanque centrale des Etats de l'Afrique de l'OuestxPériodiques aFinancesyAfrique occidentalexPériodiques aAfrique occidentalexConditions économiquesxPériodiques02aBanque centrale des Etats de l'Afrique de l'Ouest4 uhttp://www.bceao.int/ zContenu : texte intégral du rapport depuis 20001 b(2001) -(2002)cParisdMagasins/AnnexeeP 4° 69941 b(1959) -(2000)cParisdMagasins/AnnexeeCOL4°1550 aZGRA aGEO RF1 Afrique occidentale aDEW 33201051nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000154001502100024003042300024003283260011003526010068003636060048004316070063004797100054005428010013005968560026006098560053006359550005006889920032006939920012007250001134452000113445220130319051806.0 a0001134452 a a20009999k fre 01 ba0 afre aSN ar aak z  adr 10aRapport d'activité - Banque centrale des Etats de l'Afrique de l'Ouestb[Ressource électronique]fBanque centrale des Etats de l'Afrique de l'Ouest aDakarcBCEAOd2000- aRevue électronique aAnnuel02aBanque centrale des Etats de l'Afrique de l'OuestxPériodiques aFinancesyAfrique occidentalexPériodiques aAfrique occidentalexConditions économiquesxPériodiques02aBanque centrale des Etats de l'Afrique de l'Ouest 0aFRbFNSP4 uhttp://www.bceao.int/ zContenu : texte intégral du rapport depuis 20001 r aGEO RF1 Afrique occidentale aDEW 33201333nas 2200349 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000066001552100026002213000073002473260011003204300124003315300066004556010057005216060045005786070060006237120043006838560035007268560055007619550055008169550060008719720009009319920029009409920014009690000063330000006333020130319051806.01 a0339-6096 aFNSP291556 a0000063330 a19900101a19749999 ba0 afre aCM aaka 10aRapport d'activité - Banque des états de l'Afrique centrale aYaoundécBEACd1974- a2005 dernière édition papier voir ensuite en version électronique aannuel 1aRapport d'activité - Banque centrale des états de l'Afrique équatoriale et duCameroun (1017-1169) < Coll. 4° 1560 >00aRapport d'activité - Banque des états de l'Afrique centrale02aBanque des Etats de l'Afrique centralexPériodiques aFinancesyAfrique centralexPériodiques aAfrique centralexConditions économiquesxPériodiques02aBanque des Etats de l'Afrique centrale4 uhttp://www.beac.int/index.html zContenu : texte intégral des rapports depuis 20011 b(2001) -(2005)cParisdMagasins/AnnexeeP 4° 69961 b(1973/1974) -(2000)cParisdMagasins/AnnexeeCOL4°1560 aZGRA aGEO RF2 Afrique centrale aDEW 330.901013nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000134001502100026002842300024003103260011003346010057003456060045004026070060004477100043005078010013005508560035005638560053005989550005006519920029006569920014006850001134607000113460720130319051806.0 a0001134607 a a20019999k fre 01 ba0 afre aCM ar aak z  adr 10aRapport d'activité - Banque des états de l'Afrique centraleb[Ressource électronique]fBanque des états de l'Afrique centrale aYaoundécBEACd2001- aRevue électronique aAnnuel02aBanque des Etats de l'Afrique centralexPériodiques aFinancesyAfrique centralexPériodiques aAfrique centralexConditions économiquesxPériodiques02aBanque des Etats de l'Afrique centrale 0aFRbFNSP4 uhttp://www.beac.int/index.html zContenu : texte intégral du rapport depuis 20011 r aGEO RF2 Afrique centrale aDEW 330.901436nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200007000139210002700209326001100236517006900247517009000316517010100406530007100507601007300578606003600651606004700687710005900734856010700793955005500900955006500955972000901020991001801029992002501047992001401072039239284000010121520131220152218.01 a0071-8327 aFNSP435746 a19900101b19572003 ba0 afre aFR aaka 10aRapport d'activitéfCentre national de la recherche scientifique aPariscCNRSd1957-2003 aAnnuel10aRapport annuel - Centre national de la recherche scientifique‎10aRapport sur l'activité générale du Centre national de la recherche scientifique‎1 aRapport d'activité des secteurs scientifiques - Centre national de la recherche scientifique‎10aRapport d'activité - Centre national de la recherche scientifique02aCentre national de la recherche scientifiquec(France)xPériodiques aRechercheyFrancexPériodiques aCentres de rechercheyFrancexPériodiques02aCentre national de la recherche scientifiquec(France) uhttp://www.cnrs.fr/fr/organisme/presentation.htmzAccés au texte intégral du dernier rapport publié1 b(1980) -(2001)cParisdMagasins/AnnexeeP 4° 53631 b(1956/1957) -(1979/1980)cParisdMagasins/AnnexeeCOL4°2080 aZGRA aexempb201311 aGEO RA4.06 France 01 aDEW 001.400897nas 2200277 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000310015421000240018532600110020951700320022060100920025260600520034471000780039685600370047495500870051197200090059899200120060704504614X000020040420130319051806.01 a1563-1613 aFNSP731599 a0000200404 a19900101a00019999 ba0 afre aFR aaka 10aRapport d'activitéfCEPII aPariscCEPIId0001- aAnnuel10aRapport d'activité - CEPII02aCentre d'études prospectives et d'informations internationalesc(France)xPériodiques aHistoire économiquez20e sièclexPériodiques02aCentre d'études prospectives et d'informations internationalesc(France)4 uhttp://www.cepii.fr/DOCW0001.HTM1 bConservation limitée aux 2 dernières annéescParisdMagasins/AnnexeeP 8° 6278 aZGRA aDEW 33701085cas0 2200301 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102106000600109110001600115200007400131210005000205300006400255301006700319326001400386430005300400517006300453710006100516801003000577856004400607856003600651955005500687992002500742992001600767068028008000097800820130319051806.0 a0000978008 a20021022b19992001k a0frey0103 ba0 afre aFR ar aal 10aRapport d'activitéfCommission d'accès aux documents administratifs aPariscLa Documentation françaised1999-2001 aPublication uniquement en version électronique depuis 2001 aDemande de numérotation ISSN en cours par Cr27, le 29/09/2005 aBisannuel 1tL'Accès aux documents administratifsx0766-560110aRapport - Commission d'accès aux documents administratifs02aFrancebCommission d'accès aux documents administratifs 3aFRbAbesc20060517gAFNOR4 uhttp://www.cada.fr/fr/rapport/frame.htm4 zAccès libre au texte intégral1 a(1999) -(2000)cParisdMagasins/AnnexeeP 8° 4784 aGEO RA4.06 France 01 aDEW 350-35401031nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009200154210004600246326001100292606005400303606004700357712007800404856006400482856006300546955005900609972000900668991001800677992002200695992001200717040047644000009208620130319051806.01 a1240-6651 aFNSP406522 a0000092086 a19900101a19939999 ba0 afre aFR aaka 10aRapport d'activité - Commission nationale de contrôle des interceptions de sécurité aPariscLa Documentation françaised1993- aAnnuel aDroits civils et politiquesyFrancexPériodiques aSécurité nationaleyFrancexPériodiques02aFrancebCommission nationale de contrôle des interceptions de sécurité4 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml4 zAccés au texte intégral à partir du 9ème rapport, 20001 b(1991/1992)-(2007)cParisdMagasins/AnnexeeP 8° 5950 aZCAD aexempb201210 aGEO RA4.06 France aDEW 32301353nas 2200349 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000810015421000460023532600110028143000630029251701180035560100820047360600690055560600430062471000680066785600580073585600360079395500550082995500550088497200090093999100180094899200250096699200120099116435669X000000515120130319051806.01 a2261-8619 aFNSP107465 a0000005151 a19900308a19919999 ba0 afre aFR aaka 10aRapport d'activitéfCommission nationale de l'informatique et des libertés aPariscLa Documentation françaised1991- aAnnuel 1tRapport au Président de la République - CNIL,x1263-033010aRapport au Président de la République et au Parlement - Commission nationale de l'informatique et des libertés02aFrance. Commission nationale de l'informatique et des libertésxPériodiques aProtection de l'information (informatique)yFrancexPériodiques aInformatique et libertéxPériodiques02aFrancebCommission nationale de l'informatique et des libertés4 uhttp://www.cnil.fr/en-savoir-plus/rapports-dactivite/ zAccès libre au texte intégral1 b(2004) -(2007)cParisdMagasins/AnnexeeP 4° 70761 b(1991) -(2003)cParisdMagasins/AnnexeeP 8° 4350 aZPAY aexempb201301 aGEO RA4.06 France 01 aDEW 34201315nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005100154210004100205326001100246430006800257440005800325530005200383606004500435606005900480710003800539830005200577856011100629856010900740955005500849972000900904991001800913992002200931992001200953039819930000010066720131009115442.01 a0984-5976 aFNSP434556 a0000100667 a19900101b19872001 ba0 afre aFR aaka 10aRapport d'activitéfConseil de la concurrence aPariscJournaux officielsd1987-2001 aAnnuel 1aRapport pour l'année - Commission de la concurrencex0247-5898 1tRapport annuel - Conseil de la concurrencex1636-251910aRapport d'activité - Conseil de la concurrence aConcurrencexDroityFrancexPériodiques aConcurrencexDroityFrancexLégislationxPériodiques01aFrancebConseil de la concurrence a1987-1996 : collection donnée au CTles en 20134 uhttp://www.conseil-concurrence.fr/user/standard.php?id_rub=15zAccés libre au texte intégral depuis 19974 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtmlzAccés libre au texte intégral depuis 19971 b(1987) -(1996)cParisdMagasins/AnnexeeP 4° 5279 aZGRA aexempb201307 aGEO RA4.06 France aDEW 34301018nas 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000109001502070010002592100045002693260011003146060050003256060046003757100052004218010013004738560074004868560036005609550058005969720009006549920025006639920016006880000588617000058861720130319051807.0 a0000588617 a a20039999k fre ba0 afre aFR a 0  ar aak z 0 10aRapport d'activité - Haut Comité éducation-économie-emploifHaut Comité éducation-économie-emploi 1a2003- aPariscLa Documentaion françaised2003- aAnnuel aEnseignement supérieuryFrancexPériodiques aEducation et emploiyFrancexPériodiques01aFrancebHaut comité Education-économie-emploi 0aFRbFNSP4 uhttp://lesrapports.ladocumentationfrancaise.fr/BRP/034000654/0000.pdf zAccès libre au texte intégral1 b(2002/2003) -....cParisdMagasins/AnnexeeP 8° 6728 aZPAY aGEO RA4.06 France 01 aDEW 370-37901217cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200006200197210002400259517003300283517002500316517004400341517006300385517006700448517008400515710002700599801003000626801002300656802000700679856003600686856005700722955004600779991001800825040025780000119854220130319051807.01 a1169-159X accn1169-159X aissn1169159X a0001198542 a19960829c1946 k y0frey50 ba0 afre aFR ay  ar azku uu 10aRapport d'activité, comptes de gestion, exercice...fEDF aPariscEDFd1946? -10aRapport annuel du groupe EDF10aRapport annuel - EDF10aRapport annuel - Electricité de France10aGroupe EDF Rapport annuel ...- EDF, Electricité de France10aRapport de gestion des exercices .... - Electricité de France10aComptes de gestion et rapport d'activitéeexercice... - Electricité de France02aElectricité de France 3aFRbAbesc20090226gAFNOR 3aFRbISSNc20090225 a074 uhttp://www.edf.com/html/RA2009/ zContient : dernier rapport annuel en texte intégral1 b(1946) -(1979)cParisdAnnexeeCOL4°0033 aexempb20100900938nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210002900187326001100216517007300227530003600300606003800336710005800374856008600432955005500518972000900573991001600582992002200598992001600620076208427000016544920140113164705.01 a1263-0705 aFNSP631611 a0000165449 a19900101a00019999 ba0 afre aFR aaka 10aRapport d'activité...fCNIS aParis‎cCNIS‎d1992? aAnnuel10aRapport d'activité du Comité national de l'information statistique10aRapport d'activité .... - CNIS aStatistiqueyFrancexPériodiques02aFrancebConseil national de l'information statistique4 uhttp://www.cnis.fr/cmszAccès au sommaires et résumés des publications du CNIS1 b(1993) -(2006)cParisdMagasins/AnnexeeP 4° 6503 aZGRA aexemp201401 aGEO RA4.06 France aDEW 310-31901033nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005000154210006300204326001100267517005800278606006900336606005100405710002700456856006800483856005000551955007300601992005700674992001200731040153282000010043820130319051807.0 a1015-0196 aFNSP433956 a0000100438 a19900101a19729999 f ba0 afre aBE aaka 10aRapport d'activité du Fonds social européen aBruxellescCommission des communautés européennesd1972- aAnnuel10aRapport d'activité du nouveau Fonds social européen aPolitique de l'emploiyPays de l'Union européennexPériodiques aFonds structurels communautairesxPériodiques02aFonds social européen4 uhttp://www.travail.gouv.fr/fse/c_sinformer/c3_publications.html zContenu : texte intégral du dernier rapport.1 b(1973) ; (1976) ; (1979) -(1987)cParisdMagasins/AnnexeeP 4° 4533 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 33101020nas 2200277 i 450 002001100000005001700011100004100028101000800069102000700077105001800084106000600102110001600108200009400124207001000218210008600228326001100314606007000325606007300395710008100468801001300549856007900562955005500641972000900696992002500705992001200730000067858220131119155920.0 a a20039999 fre 01 ba0 afre aFR a 0  ar aak z 0 10aRapport d'activitésfInstitut du développement durable et des relations internationales 1a2002- aPariscInstitut du développement durable et des relations internationalesd2003- aAnnuel aDéveloppement durablexCoopération internationalexPériodiques aEnvironnementxProtectionxCoopération internationalexPériodiques02aInstitut du développement durable et des relations internationalesc(Paris) 0aFRbFNSP4 uhttp://www.iddri.org/L'iddri/zAccès libre au texte intégral depuis 20021 b(2002) -(2008)cParisdMagasins/AnnexeeP 4° 7044 aZGRA aGEO RA4.06 France 01 aDEW 33301440cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118105001800125110001600143200009500159210004600254430011300300530009500413606005500508606007100563710008900634801003000723801002300753802000700776856022000783955005201003991001801055992001601073992002501089073601918000117600520131213164202.01 a1636-4473 aissn16364473 a20030523a19999999 0fre 0103 ba0 afre aFR ay  aam 10aRapport d'ensemble du Comité d'enquête sur le coût et le rendement des services publics aPariscLa Documentation françaised1999- 1tRapport général - Comité central d'enquête sur le coût et le rendement des services publics,x0994-942910aRapport d'ensemble du Comité d'enquête sur le coût et le rendement des services publics aServices publicsxEvaluationyFrancexPériodiques aProductivité dans l'administration publiqueyFrancexPériodiques01aFrancebComité central d'enquête sur le coût et le rendement des services publics 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.ladocumentationfrancaise.fr/ezexalead/search?SearchText=rapport+d%27ensemble+sur+le+cout+et+le+rendement+des+services+publics++&cat%5BGroupeThematique%5D=&n=slDocFrancaisezAccés libre au texte intégral1 b(1999/2001)cParisdMagasins/AnnexeeP 4° 5716 aexempb201312 aDEW 350-354 aGEO RA4.06 France 0100964nls 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116106000600123110001600129135001800145200010200163210004200265230002400307326001100331601004200342606003500384607005000419710002800469801001300497856003600510856005300546955000500599992002200604992001200626116244321000113346220131120171428.01 a1662-1743 a0001133462 a a19969999k fre 01 ba0 afre aCH ar aak z  adr 10aRapport de gestion - Banque nationale suisseb[Ressource électronique] /fBanque nationale suisse aBernecBanque nationale suissed1996- aRevue électronique aAnnuel02aBanque nationale suissexPériodiques aFinancesySuissexPériodiques aSuissexConditions économiquesxPériodiques02aBanque nationale suisse 0aFRbFNSP4 uhttp://www.snb.ch/f/index3.html zContenu : texte intégral du rapport depuis 19961 r aGEO RA5.14 Suisse aDEW 33201154nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005300139210004200192326001100234452007400245530005300319601004200372606003500414607005000449710002800499856011300527955005500640955007200695972000900767991001800776992002200794992001200816114554625000006215720140103105101.01 a1421-5500 aFNSP284599 a19900101a00019999 ba0 afre aCH aaka 10aRapport de gestion de la Banque nationale suisse aBernecBanque nationale suissed0001- aAnnuel 1ttRapport de gestion (Banque nationale suisse. En ligne)‎x1662-174300aRapport de gestion de la Banque nationale suisse02aBanque nationale suissexPériodiques aFinancesySuissexPériodiques aSuissexConditions économiquesxPériodiques02aBanque nationale suisse4 uhttp://www.snb.ch/fr/iabout/pub/annrep/id/pub_annrepzContenu : texte intégral du rapport à partir de 19961 b(1980) -(2005)cParisdMagasins/AnnexeeP 4° 54961 b(1914) -(1936) ; (1938) -(1979)cParisdMagasins/AnnexeeCOL4°0175 aZGRA aexempb201312 aGEO RA5.14 Suisse aDEW 33200948nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000081001642100046002453260011002916060028003026060044003307100078003748010013004528560071004659550060005369720009005969920025006059920016006300000385030000038503020130319051807.01 a1626-7206 a0000385030 a a20009999k fre ba0 afre aFR a 0  ar aak z 0 10aRapport de l'Observatoire national de la pauvreté et de l'exclusion sociale aPariscLa documentation françaised2000- aAnnuel aPauvretéxPériodiques aExclusion socialeyFrancexPériodiques aObservatoire national de la pauvreté et de l'exclusion socialec(France) 0aFRbFNSP4 uhttp://www.ladocumentationfrancaise.fr/brp/notices/044000149.shtml1 b(2000) -(2007/2008)cParisdMagasins/AnnexeeP 8° 6557 aZPAY aGEO RA4.06 France 01 aDEW 360-36301374nls 2200373 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000205001502070011003552100085003662300005004513000020004563260011004763360056004873370074005436060046006176060063006636060036007267100063007628010013008258560071008388560041009099550005009509720009009559920025009649920011009890000796025000079602520130319051807.0 a0000796025 a a20049999k fre 01 ba0 afre aFR az aak z  adr 10aRapport de l'Observatoire national des zones urbaines sensiblesb[Ressource électronique]fMinistère de l'emploi, du travail, et de la cohésion socialefDélégation interministérielle de la ville 1a2004 - aLa Plaine Saint DeniscObservatoire national des zones urbaines sensiblesd2004- a aTexte intégral aAnnuel aDonnées textuelles accessibles uniquement en ligne aEn raison de son poids, le rapport est découpé en deux fichiers PDF aVillesxRénovationyFrancexPériodiques aQuartiers (urbanisme)xAspect socialyFrancexPériodiques aBanlieuesyFrancexPériodiques02aFrancebObservatoire national des zones urbaines sensibles 0aFRbFNSP4 uhttp://www.ladocumentationfrancaise.fr/brp/notices/054000037.shtml zContenu : texte intégral du rapport1 r aZGRA aGEO RA4.06 France 01 aDEW 7100895nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001391100016001452000076001612100035002373260011002726060040002837100055003238560051003788560042004299550057004719550052005289720009005809920016005890000090253000009025320130319051807.0 a0257-3725 aFNSP397501 a0000090253 a19900101a19689999 f ba0 afre aUS ar aaka 10aRapport de l'Organe international de contrôle des stupéfiants pour... aNew YorkcNations Uniesd1968- aAnnuel aDroguesxLutte contrexPériodiques aOrgane international de contrôle des stupéfiants4 uhttp://www.incb.org/incb/fr/ungass_report.html4 zAccés au texte intégral depuis 19951 b(1968)-(2004)cParisdMagasins/AnnexeeNU 4° 00.7551 b(2005)- ...cParisdMagasins/AnnexeeP 4° 7238 aZGRA aDEW 364-36501272nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200007700163210004300240326001600283601008500299606005800384710007100442801001300513856019400526856007100720856005300791955005200844972000900896992002500905992001600930059699833000061712820130319051807.01 a1632-0271 a0000617128 a a20019999 fre 01 ba0 afre aFR a 0  ar aay z 0 10aRapport de la Commission consultative du secret de la défense nationale aPariscDocumentation françaisee2001- aIrrégulier01aFrancebCommission consultative du secret de la défense nationalexPériodiques aSecret de la défense nationaleyFrancexPériodiques02aFrancebCommission consultative du secret de la défense nationale 0aFRbFNSP4 uhttp://larecherche.service-public.fr/df/oxide?criteriaContent=rapport+de+la+commission+consultative+du+secret&page=resultsdfA&action=launchsearch&DynRubrique=&DynCorpus=&DynDomain=DFgeneral4 uhttp://www.ladocumentationfrancaise.fr/rapports/presentation.shtml zContenu : texte intégral du rapport depuis 20011 a(2001-2005)cParisdMagasins/AnnexeeP 8° 6759 aZPAY aGEO RA4.06 France 01 aDEW 350-35401201nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000880013921000500022732600110027743000990028844001140038760100670050160600360056871000530060485601470065795500600080497200090086499200220087399200160089504018403X000014062420131220142907.01 a1249-4518 aFNSP559668 a19941107b19942003 ba0 afre aFR aaka 10aRapport de la Commission de contrôle des assurances pour la période du ... au ... aPariscLa Documentation françaised1994-2003 aAnnuel 1tRapport de la Commission de contrôle des assurances pour la période du ... au ...x1250-6583 1tRapport - Commission de contrôle des assurances, des mutuelles et des institutions de prévoyancex1777-052102aCommission de contrôle des assurancesc(France)xPériodiques aAssuranceyFrancexPériodiques02aCommission de contrôle des assurancesc(France)4 uhttp://www.acp.banque-france.fr/publications/publications-anterieures-a-mars-2010/rapports-annuels.htmlzAccés au texte intégral depuis 19941 b(1990/1992) -(2003)cParisdMagasins/AnnexeeP 4° 6330 aZGRA aGEO RA4.06 France aDEW 360-36301112nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154207003000190210004600220326001100266517004600277601004400323606004700367710003000414856005500444856005300499856006400552955005500616955006000671972000900731992002200740992001200762036030635000000510720130319051807.01 a0984-5925 aFNSP107332 a0000005107 a19900307a19709999 ba0 afre aFR aaka 10aRapport de la Cour de cassation 1a1968/1969 publié en 1970 aPariscLa Documentation françaised1970- aAnnuel10aRapport annuel... de la Cour de cassation02aFrancebCour de cassationxPériodiques aDroityFrancexJurisprudencexPériodiques02aFrancebCour de cassation4 uhttp://www.courdecassation.fr/_rapport/rapport.htm zContenu : texte intégral depuis le rapport 19974 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml1 b(1980) -(2007)cParisdMagasins/AnnexeeP 4° 57771 b(1968/1969) -(1979)cParisdMagasins/AnnexeeCOL4°3213 aZPAY aGEO RA4.06 France aDEW 34701038cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200005500174210005600229517003100285530005600316710004300372801003000415801002300445801001300468802000700481856004600488856006400534955005900598972000900657992001200666992002200678073565237000047700920130319051807.01 a1629-5684 aissn16295684 a0000477009 a20030523a20029999k y0frey0103 ba0 afre aFR ay  abuu uu 00aRapport de recherchefCentre d'études de l'emploi aNoisy-le-GrandcCentre d'études de l'emploid2002-10aRapport de recherche - CEE10aRapport de recherche - Centre d'études de l'emploi02aCentre d'études de l'emploic(France) 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20081014 0aFRbFNSP a074 uhttp://www.cee-recherche.fr/fr/c_pub1.htm zContenu : texte intégral des rapports depuis le n°1, 20021 bno. 1 (2002) -....cParisdMagasins/AnnexeeP 4° 6938 aZECH aDEW 331 aGEO RA4.06 France00812nls 2200253 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200010200124210003700226230002400263326001100287601004300298710002900341801001300370856013600383955000500519992002200524992001200546000124515820130611120927.0 a a20119999k fre 01 ba0 afre aFR ar aak z  adr 10aRapport public annuel de la Cour des comptesb[Ressource électronique]fFrance. Cour des comptes aPariscJournaux officielsd2011- aRevue électronique aAnnuel02aFrancebCour des comptesxPériodiques02aFrancebCour des comptes 0aFRbFNSP4 uhttp://www.ccomptes.fr/Publications/Publications/Rapport-public-annuel-2013zAccès au texte intégral du rapport à partir de 20111 r aGEO RA4.06 France aDEW 33601205nas 2200265 i 450 001001000000002001100010005001700021011000500038035001500043100004100058101000800099102000700107110001600114200014600130210006600276326001600342530014600358606007100504710006000575856017600635955008100811972000900892992002200901992001600923039769070000009702120130528112549.0 a aFNSP422786 a19900101a19839999 ba0 afre aFR aaya 10aRapport du Gouvernement au Parlement sur le contrôle a posteriori des actes des collectivités locales et des établissements publics locaux aPariscDirection générale des collectivités localesd1983- airrégulier00aRapport du Gouvernement au Parlement sur le contrôle a posteriori des actes des collectivités locales et des établissements publics locaux aContrôle juridictionnel de l'administrationyFrancexPériodiques02aFrancebDirection générale des collectivités locales4 uhttp://www.collectivites-locales.gouv.fr/rapports-triennaux-au-parlement-sur-lexercice-controle-legalite-et-budgetairezAccés au texte intégral du rapport 2007/2008/20091 bno 3 (1982) ; no 6 (1989) - no 21 (2009)cParisdMagasins/AnnexeeP 4° 6260 aZGRA aGEO RA4.06 France aDEW 350-35401161nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002600163210002200189326001100211430010700222530009100329601006600420606006800486710005200554801001300606856005900619856005200678955005400730972000900784992001800793992001200811149537549000046660720130319051807.0 a1563-2598 a0000466607 a a19999999k fre ba0 afre aFR a 0  ar aa z 0 10aRapport du gouverneur aPariscCEBd1999- aAnnuel 1tRapport du gouverneur. Exercice ... (Fonds de développement social du Conseil de l'Europe)x1025-390410aRapport du Gouverneur ...b(Banque de développement du Conseil de l'Europe. Imprimé)02aBanque de développement du Conseil de l'EuropexPériodiques aDéveloppement économiquexAspect socialyEuropexPériodiques02aBanque de développement du Conseil de l'Europe 0aFRbFNSP uhttp://www.coebank.org/rap_annuel.asp?arbo=107&theme=34 zContenu: texte intégral du rapport depuis 19981 b(2000) - ....cParisdMagasins/AnnexeeP 4° 6706 aZGRA aGEO RA Europe aDEW 33301090cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200007700174210008000251326001100331607006200342607006000404710005700464801003000521801002300551802000700574856004500581856005600626955005300682992001400735992001500749081966865000117559320140108155319.01 a1816-9902 aissn18169902 a0001175593 a20041129a199 9999 0frey0103 ba0 afre aZZ ay  aak 10aRapport économique sur l'AfriquefCommission économique pour l'Afrique aAddis AbébacNations Unies, Commission économique pour l'Afriqued[199.]- aAnnuel aAfriquexConditions économiquesz1990-....xPériodiques aAfriquexPolitique économiquez1960-....xPériodiques02aNations UniesbCommission économique pour l'Afrique 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20070706 a004 uhttp://www.uneca.org/fr/publication-list zContient : texte intégral des rapports depuis 20021 b(2005) -....cParisdMagasins/AnnexeeP 8° 7104 aDEW 330.9 aRE Afrique01122nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000850015421000890023932600110032843000790033948800550041860100360047371000460050985600500055585600520060595500530065797200090071099100180071999200570073799200140079404021317X000015338920130319051807.01 a1027-1546 aFNSP598380 a0000153389 a19900101a19959999 ba0 afre aIN aaka 10aRapport général sur l'activité de l'Union européennefCommission européenne aLuxembourgcOffice des publications officielles des Communautés européennesd1995- aAnnuel 1aRapport général sur l'activité des Communautés européennesx0251-0731 1aRapport sur la politique de concurrencex0256-988402aUnion européennexPériodiques02aUnion européennebCommission européenne4 uhttp://europa.eu/generalreport/fr/welcome.htm zContenu : accés au texte intégral depuis 19971 b(1995) -....cParisdMagasins/AnnexeeP 8° 6485 aZGRA aexempb201301 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 341.201003cas0 2200337 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003900163210002500202300004100227430004800268532005600316606002800372606004000400606003600440710001600476801003000492856004000522955005300562972000900615992002500624992001600649091879213000108090320130319051807.01 a1818-6726 a0001080903 a20051013a200 9999k z0frey0103 ba0 afre aZZ a 0  ar aak 0 10aRapport mondial de suivi sur l'EPT aPariscUNESCOd200?- aRapport publié en plusieurs langues 1tRapport mondial sur l'éducationx1020-046010aRapport mondial de suivi sur l'éducation pour tous aEducationxPériodiques aDroit à l'éducationxPériodiques aEducation de basexPériodiques02aUnesco4070 3aFRbAbesc20060405gAFNOR4 uhttp://www.unesco.org/fr/efareport/1 b(2006) -....cParisdMagasins/AnnexeeP 4° 6090 aZPAY aGEO RA4.06 France 01 aDEW 370-37901144nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200006600163210004100229210003300270210003100303326001900334606004200353606006800395606006400463676000800527710003100535801001300566856004000579955006100619955005600680972000900736992002100745992001600766081761554000055972120130319051807.01 a1768-6156 a0000559721 a a20019999k fre ba0 afre aDE a 0  ar aal z 0 10aRapport mondial sur la corruptionfTransparency International aPariscNouveau monde editionsd2009- aPariscÉconomicad2005-2009 aPariscKhartalad2003-2004 aTous les 2 ans aCorruptionxPréventionxPériodiques aEntreprises multinationalesxPratiques déloyalesxPériodiques aAdministration publiquexPratiques déloyalesxPériodiques a36002aTransparency International 0aFRbFNSP uhttp://www.transparency-france.org/1 bLa dernière annéecParisd27, Salle 4e étageeDEW 3601 b(2003) -...cParisdMagasins/AnnexeeP 8° 6673 bis aZGRA aGEO RQ Universel aDEW 364-36500842nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004900154210002800203326001100231606004900242606004000291710005500331856011600386955005300502972000900555992001200564040177459000001907820131025130547.01 a1019-4886 aFNSP151887 a0000019078 a19901201a19909999 ba0 afre aFR aaka 10aRapport mondial sur le développement humain aPariscEconomicad1990- aAnnuel aPopulationxAspect économiquexPériodiques aDéveloppement humainxPériodiques01aProgramme des Nations Unies pour le développement4 uhttp://hdr.undp.org/fr/rapports/mondial/rdh2013/zAccès intégral du rapport en plusieurs langues depuis 1990.1 b(1990) -....cParisdMagasins/AnnexeeP 4° 5959 aZPAY aDEW 30401202nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008200154210006300236210007300299210005500372326001100427422004500438606003900483606004100522676000800563710005000571856002800621856004200649955006700691955005300758972000900811992002100820992001100841040352188000013358420130319051807.01 a1260-4275 aFNSP540091 a0000133584 a19940803a19949999 ba0 afre aFR aaka 10aRapport moral sur l'argent dans le mondefAssociation d'économie financière aPariscAssociation d'économie financièrecÉd. PAUd1995 aPariscMontchrestiencAssociation d'économie financièred1996-2000 aaPariscAssociation d'économie financièred2001- aAnnuel 1tRevue d'économie financièrex0987-3368 aEthique des affairesxPériodiques aFinancesxAspect moralxPériodiques a33202aAssociation d'économie financièrec(France)4 uhttp://www.aef.asso.fr/ zContenu : texte intégral depuis 20011 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3321 b(1994) -....cParisdMagasins/AnnexeeP 4° 6406 aZPAY aGEO RQ Universel aDEW 1701128nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000620013921000340020132600110023543000610024651700630030751700700037060600340044060700490047471000200052385600630054395500550060695500550066197200090071699100180072599200210074399200140076499200120077803884253X000010181220140107114446.01 a0067-396X aFNSP437279 a19900101a19599999 ba0 afre aMA aaka 10aRapport présenté à Sa Majesté le RoifBanque du Maroc aRabatcBanque du Marocd1959- aAnnuel 1aAssemblée générale ordinaire - Banque d'Etat du Maroc10aRapport présenté à Sa Majesté le Roi - Bank Al-Maghrib10aRapport annuel présenté à sa Majesté le Roi - Bank Al-Magrhib aFinancesyMarocxPériodiques aMarocxConditions économiquesxPériodiques02aBanque du Maroc4 uhttp://www.bkam.ma/zAccès au texte intégral depuis 20001 b(1980) -(1999)cParisdMagasins/AnnexeeP 4° 53601 b(1959) -(1979)cParisdMagasins/AnnexeeCOL4°0362 aZGRA aexempb201311 aGEO RG1.11 Maroc aDEW 330.9 aDEW 33201028nls 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000107001502100034002572300024002913260011003155170063003266010034003896060034004236070049004577100020005068010013005268560046005398560053005859550005006389920021006439920014006649920012006780001115421000111542120130319051807.0 a0001115421 a a20009999k fre 01 ba0 afre aMA ar aak z  adr 10aRapport présenté à Sa Majesté le Roi - Banque du Marocb[Ressource électronique]fBanque du Maroc aRabatcBanque du Marocd2000- aRevue électronique aAnnuel10aRapport présenté à Sa Majesté le Roi - Bank Al-Maghrib02aBanque du MarocxPériodiques aFinancesyMarocxPériodiques aMarocxConditions économiquesxPériodiques02aBanque du Maroc 0aFRbFNSP4 uhttp://www.bkam.ma/Francais/Menu/Anex.asp zContenu : texte intégral du rapport depuis 20001 r aGEO RG1.11 Maroc aDEW 330.9 aDEW 33201282cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001700069100004100086101000800127102000700135110001600142200008200158210002200240517003700262530008300299606005300382606004700435710006900482801003000551801003000581801002300611802000700634856009200641955006400733955005500797972000900852991001800861992002500879992001600904045061637000089591720130709133138.01 a1289-3803 accn1289-3803 aissn12893803 a20000407a19989999 0fre 0103 ba0 afre aFR aak 10aRapport public d'activitéfAutorité de régulation des télécommunications aPariscARTd1998-10aRapport public d'activité - ART10aRapport public d'activité - Autorité de régulation des télécommunications aTélécommunicationsxAspect économiqueyFrance aTélécommunicationsyFrancexPériodiques02aAutorité de régulation des télécommunicationsc(France)4070 3aFRbAbesc20050107gAFNOR 3aFRbAbesc20050107gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.art-telecom.fr/zContenu : texte intégral du rapport depuis l'édition 19971 b(2000) ; (2002) -(2006)cParisdMagasins/AnnexeeP 8° 69381 b(1997) -(1999)cParisdMagasins/AnnexeeP 4° 6829 aZGRA aexempb201212 aGEO RA4.06 France 01 aDEW 383-38901148nas 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000109001502100026002593260011002855170100002966060061003966060066004577100088005238010013006118560096006249550052007209720009007729920021007819920016008029920016008180000692197000069219720130722145059.0 a0000692197 a a20009999 fre 01 ba0 afre aFR a 0  ar aak z 0 10aRapport statistique - CLEISS /fCentre des liaisons européennes et internationales de sécurité sociale aParis:cCLEISSd2000- aAnnuel10aRapport statistique - Centre des liaisons européennes et internationales de sécurité sociale aSécurité socialexFinancesxStatistiquesxPériodiques aSécurité socialeyPays de l'Union européennexPériodiques02aCentre des liaisons européennes et internationales de sécurité socialec(France) 0aFRbFNSP4 uhttp://www.cleiss.fr/docs/stats/rapportstat2001.htmlzAccés au texte intégral depuis 20011 b(2001) -...cParisdMagasins/AnnexeeP 4° 7049 aZGRA aGEO RQ Universel aDEW 360-363 aDEW 310-31901207nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008200154210005100236326001100287517004300298601004200341607006500383607006900448607007300517676001000590702003700600856003100637856003600668955005500704972000900759991001800768992005700786992001400843045100594000026451420130415143022.01 a1295-618X aFNSP917850 a0000264514 a19990121a19999999 ba0 afre aFR aaka 10aRapport sur l'état de l'Union européennefsous la dir.de Jean-Paul Fitoussi a[Paris]cFayardcPresses de Sciences Pod1999- aAnnuel12aL'État de l'Union européenne (2005-)02aUnion européennexPrise de décision aPays de l'Union européennexPolitique socialexPériodiques aPays de l'Union européennexPolitique économiquexPériodiques aPays de l'Union européennexPolitique et gouvernementxPériodiques a341.8 1aFitoussibJean-Paulf(1942-....)4 uhttp://www.sciences-po.fr/ zContenu : sommaires depuis 19991 b(1999) -(2007)cParisdMagasins/AnnexeeP 8° 6454 aZCAD aexempb201301 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 341.201068nls 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000087001502070010002372100062002472300024003093000032003333260014003653370017003796010046003966060081004427100032005238010013005558560046005688560042006149550005006569920057006619920012007180001020515000102051520130319051807.0 a0001020515 a a19989999k fre 01 ba0 afre aDE az aal z  adr 10aRapport sur la convergenceb[Ressource électronique]fBanque centrale européenne 1a1998- aFrancfort-sur-le-MaincBanque centrale européenned1998- aRevue électronique aTexte intégral depuis 1998 aBisannuel aFichiers PDF02aBanque centrale européennexPériodiques aConvergence (économie politique)yPays de l'Union européennexPériodiques02aBanque centrale européenne 0aFRbFNSP4 uhttp://www.ecb.int/pub/html/index.en.html zContenu : texte intégral depuis 19981 r aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 33601196nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000680013921000890020732600110029645200710030748800660037860600790044471000420052385601190056595500550068495500550073997200090079499100180080399200570082199200160087803928770X000010135620130604143950.01 a0256-9884 aFNSP436000 a19900101a19729999 f ba0 afre aLU aaka 10aRapport sur la politique de concurrencefCommission européenne aLuxembourgcOffice des publications officielles des Communautés européennesd1972- aAnnuel 1tRapport sur la politique de concurrence (En ligne), ISSN 1977-5393 1aRapport général sur l'activité des Communautésx0251-0731 aConcurrencexPolitique publiqueyPays de l'Union européennexPériodiques02aCommunautés européennesbCommission4 uhttp://ec.europa.eu/competition/publications/annual_report/index.htmlzAccès libre au texte intégral depuis 19711 b(1999) -(2005)cParisdMagasins/AnnexeeP 4° 68611 b(1971) -(1998)cParisdMagasins/AnnexeeP 8° 3802 aZGRA aexempb200912 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 380-38200879nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007600154210002400230326001100254601005300265606002500318710003900343856004000382856004300422955005300465972000900518991001800527992002100545992001100566040181596000024497520130319051807.01 a1020-332X aFNSP861018 a0000244975 a19900101a19959999 ba0 afre aCH aaka 10aRapport sur la santé dans le mondefOrganisation mondiale de la santé aGenèvecOMSd1995- aAnnuel02aOrganisation mondiale de la santéxPériodiques aSantéxPériodiques02aOrganisation mondiale de la santé4 uhttp://www.who.int/publications/fr/ zContenu : rapport en ligne depuis 19951 b(1997) -....cParisdMagasins/AnnexeeP 8° 6387 aZPAY aexempb201301 aGEO RQ Universel aDEW 6101084nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005600163210003400219326001100253430006900264440005700333512002600390517003800416606005500454676000800509710004300517801001300560856006400573955004700637972000900684992002500693992001600718048761303000030500320130319051807.01 a1297-207X a0000305003 a a19991999k fre ba0 afre aFR a 0  ar aak z 0 10aRapport sur la sécurité socialefCour des comptes aPariscCour des comptesd1999 aAnnuel 1tRapport annuel au Parlement sur la sécurité socialex1263-3704 1tLa Sécurité sociale /fCour des comptesx2106-744913aLa Sécurité sociale10aRapport public - Cour des comptes aSécurité socialeyFrancexFinancesxPériodiques a36001aFrancebCour des comptesxPériodiques 0aFRbFNSP4 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml1 b(1999)cParisdMagasins/AnnexeeP 4° 6570 aZCAD aGEO RA4.06 France 01 aDEW 360-36301112nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006400154210002700218326001100245451004400256601008500300606004100385676000800426710007100434856006700505856003600572955006200608955007000670972000900740992002100749992001600770039281272000010033220130319051807.01 a0256-0887 aFNSP433722 a0000100332 a19900101a19819999 ba0 aeng aII aak 10aRapport sur le commerce et le développementfNations Unies aGenèvecCNUCEDd1981- aAnnuel 1aTrade and development reportx0255-460702aConférence des Nations Unies sur le commerce et le développementxPériodiques aCommerce internationalxPériodiques a33702aConférence des Nations Unies sur le commerce et le développement4 uhttp://www.unctad.org/Templates/Page.asp?intItemID=2508&lang=2 zAccès libre au texte intégral1 bLa dernière annéecParisd27, Salle 1er étageeDEW 3371 b(1981) -(1988) ; (1999) -....cParisdMagasins/AnnexeeP 4° 4707 aZGRA aGEO RQ Universel aDEW 380-38201069cas0 2200337 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123110001600141200007100157207001100228210004200239326001100281606004100292606004400333676000800377710003800385801003000423856006900453856005300522955006200575955005200637972000900689992002100698992001200719078205638000085747520130319051807.01 a1813-811X a0000857475 a20040519a20039999k f0frey0103 ba0 afre aZZ a 0  aaka 0 010aRapport sur le commerce mondialfOrganisation mondiale du commerce 1a2003 - aGenèvecPublications de l'OMCd2003- aAnnuel aCommerce internationalxPériodiques aStatistiques commercialesxPériodiques a33702aOrganisation mondiale du commerce 3aFRbAbesc20050502gAFNOR4 uhttp://www.wto.org/french/res_f/reser_f/world_trade_report_f.htm zContenu : texte intégral du rapport depuis 20031 bLa dernière annéecParisd27, Salle 1er étageeDEW 3371 b(2003) -...cParisdMagasins/AnnexeeP 4° 7077 aZPAY aGEO RQ Universel aDEW 33701074nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006500154210004500219326001100264451004100275607007400316676001000390710007000400801002100470856003900491856003600530955006400566955005300630972000900683992004200692992001400734001957252000000508120130319051807.0 a0271-1710 aFNSP107271 a0000005081 a19900101a19789999 ba0 afre aUS aaka 10aRapport sur le développement dans le mondefBanque mondiale aWashington, D.C.cBanque mondialed1978- aAnnuel 1aWorld development report (0163-5085) aPays en voie de développementxConditions économiquesxPériodiques a338.9 aBanque internationale pour la reconstruction et le développement 3aFRbCCN0271-17104 uhttp://www.worldbank.org/wdr/2000/ zAccès libre au texte intégral1 bLa dernière annéecParisd27, Salle 1er étageeDEW 338.91 b(1978) -....cParisdMagasins/AnnexeeP 4° 4238 aZPAY aGEO RO Pays en voie de développement aDEW 338.900964nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008100154210005500235326001100290451003100301607005100332676001000383710003900393856006500432856003600497955008700533972000900620992001900629992001400648045046476000016626220130319051807.01 a1605-282X aFNSP634516 a0000166262 a19900101a19889999 ba0 afre aCI aaka 10aRapport sur le développement en AfriquefBanque africaine de développement aAbidjancBanque africaine de développementd1988- aAnnuel 1aAfrican development report aAfriquexConditions économiquesxPériodiques a338.902aBanque africaine de développement4 uhttp://www.afdb.org/fr/documents/publications/annual-report/ zAccès libre au texte intégral1 b7e éd (1995)- 8e éd. (1996) ; (1999) -(2010)cParisdMagasins/AnnexeeP 4° 6517 aZPAY aGEO RE Afrique aDEW 330.902177cas0 2200565 450 001001000000002001100010005001700021011001400038035001400052035001400066035001700080035001700097035001700114035001700131035001500148100004100163101000800204102000700212106000600219110001600225200009400241210002800335215003600363300012700399300007900526326001100605327010500616410004300721410005400764410002900818410007800847441005100925517002800976517004001004606004501044606006401089710007801153711002101231801003001252801003001282801003001312801002301342802000701365856008801372856004901460955005601509972000901565992002501574992001201599045067228000085771820130319051807.01 a1290-2969 a040619257 a073528137 accn1290-2969 zccn7204/0440 accn7204/0440 aissn12902969 a0000857718 a20000407b19 2004k a0frey0103 ba0 afre aFR ar aak 10aRapport sur les comptes de la NationfINSEE, Direction de la prévision, Banque de France aPariscINSEEd19??-2004 eCet ouvrage contient un CD-ROM. aL''édition 2000 compte une édition en francs et une édition en euros. La bibliothèque ne possède pas l'édition 2001. aA partir de janvier 2006, la collection est uniquement disponible en ligne aAnnuel11aA partir de 1993, la 1ère partie du rapport paraît à part, sous le titre "L'économie française" 1tINSEE résultats. Economie,x1635-8791 1tINSEE résultats. Economie générale,x0998-4712 1tINSEE étudesx1140-5252 1tLes Collections de l'INSEE. Série C, comptes et planificationx0533-0793 1tL'Economie française (Paris. 1993)x1638-209910aComptes de la Nation...10aComptes et indicateurs économiques1 aEconomie politiqueyFrancexPériodiques aComptabilité nationaleyFrancexStatistiquesxPériodiques02aInstitut national de la statistique et des études économiquesc(France)02aBanque de France 3aFRbAbesc20050627gAFNOR 3aFRbAbesc20050627gAFNOR 3aFRbAbesc20050627gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.insee.fr/fr/ppp/publications/collect_doc.asp?coll=4&paru=1&avis=1&pres=1 zContenu : texte intégral du dernier rapport1 a(1993)-(2003)cParis :dMagasins/AnnexeeP 4° 7079 aZPAY aGEO RA4.06 France 01 aDEW 33600852nas 2200277 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000024001412100030001653260011001956070046002067100059002528560088003119550061003999550053004609720009005139910018005229920022005409920012005620000060569000006056920140110111356.0 aFNSP277495 a0000060569 a19900101a00019999 ba0 aita aIT aaka 10aRapporto Italia ... aFirenzecVallecchid0001- aAnnuel aItaliexConditions socialesxPériodiques02aIstituto di studi politici economici e socialic(Rome)4 uhttp://www.eurispes.eu/content/rapporti1zAccès au sommaire depuis l'édition 19891 bLa dernière annéecParisd30, Salle 2e étageeDEW 9401 b(1990) -....cParisdMagasins/AnnexeeP 8° 5799 aZPAY aexempb201112 aGEO RA6.03 Italie aDEW 94500934nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154207003600190210002700226326001600253606002900269801002100298856007400319856003900393955006700432957009400499972000900593991001800602992001200620039623378000003618920130319051808.01 a0486-0349 aFNSP205260 a0000036189 a19900101a19609999 ba0 aita aIT aahu 10aRassegna italiana di sociologia 1avol. 1, no. 1 (gen./mar. 1960)- aBolognacMulinod1960- aTrimestriel aSociologiexPériodiques 3aFRbCCN0486-03494 uhttp://www.mulino.it/edizioni/riviste/scheda_fascicolo.php?isbn=11764 zContenu : sommaire dernier numéro1 bno. 1 (jan/mar-1960) -....cParisdMagasins/AnnexeeP 8° 19281 b(1994) -(1997)cParisdMagasins/Annexezse trouve dans le vol. 38 no. 4, 1997 de la revue aZPAY aexempb201002 aDEW 30100892nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154207002400182210003800206326001600244606002900260856010800289856010800397955007000505972000900575991001800584992001200602040260836000001077520130319051808.01 a1043-4631 aFNSP120517 a0000010775 a19900712a19899999 ba0 aeng aUS aaha 10aRationality and society 1aVol.1 no. 1 (1989)- aNewbury Park, Calif.cSaged1989- aTrimestriel aSociologiexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jul-1989) -....cParisdMagasins/AnnexeeP 8° 5653 aZSAB aexempb201205 aDEW 30101537cas0 2200409 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200008700180210005900267326001800326430004800344510005900392530007000451606002900521606004400550607002800594710005300622801003000675801002300705801001300728802000700741856012800748856010800876955006000984972000901044992005801053992001601111097572810000092408020130319051808.01 a0354-0286 aissn03540286 a0000924080 a20060303a19909999 0frey0103 ba0 aslv aSI ay  ar aai 10aRazprave in gradivoetreatises and documents/fInštitut za narodnostna vprašanja aLjubljanacInštitut za narodnostna vprašanja.d1990- a3 n°s par an 1tRevija za narodnostna vprašanjax0353-272010aTreatises and documents - Institute for Ethnic studies10aRazprave in gradivo - Inštitut za narodnostna vprašanjab(1990) aMinoritésxPériodiques aEmigration et immigrationxPériodiques aSlovéniexPériodiques02aInštitut za narodnostna vprašanjac(Ljubljana) 3aFRbAbesc20081202gAFNOR 3aFRbISSNc20060301 0aFRbFNSP a314 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=FXM&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 34 (1999) -....cParisdMagasins/AnnexeeP 8° 6861 aZSAB aGEO RA1. 01 Communautés européennes, Pays de la CEE aDEW 305-30601118cas0 2200337 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200002100148207002800169210003100197326001200228430003200240517001700272606002600289606003400315676000800349801003000357856021500387955006700602955006500669972000900734992002500743992001200768083745173000078328320131001141822.01 a1772-6638 a20050207a20059999k y0frey0103 ba0 afre aFR a 0  ar aafa 0 10aRBeRevue banque 1ano. 666 (févr., 2005)- aPariscRevue banqued2005- aMensuel 1tBanque magazine,x1299-317410aRevue banque aBanquesxPériodiques aBanquesyFrancexPériodiques a332 3aFRbAbesc20050325gAFNOR4 uhttp://www.revue-banque.frzSommaires et résumés des articles depuis le n° 577, janv.1997. Articles consultables à la bibliothèque à l'aide d'un mot de passe à demander à l'accueil bibliographique au 301 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3321 bno. 666 (fev-2005) -....cParisdMagasins/AnnexeeP 4° 0069 aZPAY aGEO RA4.06 France 01 aDEW 33201309nas0 2200373 450 001001000000002001100010005001700021011001400038035001500052100004100067101001300108102000700121105001800128110001600146200007200162207002800234210003900262326001200301430006300313517002400376517000800400530002900408606007400437606004400511606004500555702003800600801003000638856003400668856005200702955006900754955006500823992001400888992003300902155005898000121933620130319051808.0 a2118-5700 a0001219336 a20110920a20119999k y0frey50 ba0 afregfre aFR ay  aagu uu 10aRdl, la revue des livresf[directeur de publication Jérôme Vidal] 0aNo 1 (sept.-oct. 2011)- aPariscBV2N Revue et Livresd2011- aBimest. 1tLa Revue internationale des livres & des idéesx1959-675813aLa Revue des livres10aRdl00aRdl, la revue des livres aLittératurez21e sièclexHistoire et critiquexPériodiques2rameau aScience politiquexPériodiques2rameau aLivresxRecensionsxPériodiques2rameau 1aVidalbJérômef(1970-....)4651 3aFRbAbesc20110920gAFNOR4 uhttp://www.revuedeslivres.fr/4 zContenu : sommaire et présentation de la revue1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 73091 bno 1 (sep/oct-2011)-....cParisdMagasins/AnnexeeP 4° 7309 aDEW 320.5 aGEO RS Sans aspect régional01065nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210008200178326001800260606005500278606004800333606003700381710005400418856002700472856007800499955007000577972000900647991001800656992002500674992002800699992001200727039431452000013745320130319051809.01 a0325-1926 aFNSP548861 a0000137453 a19941005a19719999 ba0 aspa aAR aafa 10aRealidad económica aBuenos AirescInstituto Argentino para el Desarrollo Económico (IADE)d1971- a8 n°s par an aEconomie politiqueyAmérique latinexPériodiques aEconomie politiqueyArgentinexPériodiques aEconomie politiquexPériodiques02aInstituto argentino para el desarrollo económico4 uhttp://www.iade.org.ar zContenu : Sélection d'articles en texte intégral depuis le n°167, 19991 bno. 121 (1994) -no 231 (2007)cParisdMagasins/AnnexeeP 8° 6068 aZECH aexempb201211 aGEO RD4.11 Argentine aGEO RD Amérique latine aDEW 33000952nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004500154210002300199326001600222488007100238517004800309606004700357856003100404856009600435955008600531972000900617992002200626992001400648039905837000008592920130319051809.01 a1148-7941 aFNSP381506 a0000085929 a19900101a19899999 ba0 afre aFR aaha 10aRéalités industrielles (Saint-Etienne) aPariscEskad1989- aTrimestriel 1aGérer et comprendre. Annales des mines (0295-4397) < P 4° 5108 >10aAnnales des mines. Réalités industrielles aGestion d'entrepriseyFrancexPériodiques4 uhttp://www.annales.org/ri/ zContenu : sommaires et résumés depuis 1997 ; texte intégral des articles de 1998 à 20051 b(avr-1992) -(jul/aou-1992) ; (jan-1993) -....cParisdMagasins/AnnexeeP 4° 6200 aZPAY aGEO RA4.06 France aDEW 338.400900nas 2200289 i 450 001001000000002001100010005001700021035001500038035001500053100004100068101000800109102000700117110001600124200002300140210006700163326001200230606003500242606005300277606003000330710005000360711001300410856003700423856004000460955007800500991001800578992001400596037421387000019236020130319051809.0 aFNSP709258 a0000192360 a19900101a19939999 ba0 aeng aBE aala 14aThe Reality of aid aBruxellescEUROSTEP;aGenevacICVA,;aLondoncEarthscand1993- aBiennal aAide économiquexPériodiques aOrganisations non gouvernementalesxPériodiques aBénévolatxPériodiques02aConseil international des agences bénévoles02aEUROSTEP4 uhttp://www.routledge.com/search/ zContenu : sommaires de 1996 à 20001 b(1996) -(1998/1999) ; (2004) -(2006)cParisdMargasins/AnnexeeP 8° 6281 aexempb201301 aDEW 338.901074nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116200001700123210003100140326001200171421004400183430003100227452004400258517003400302517004900336530003000385606004200415606002800457606003000485801002100515830005300536856003100589955006300620972000900683991001800692992001400710039225763000003619520131127121856.01 a0029-5671 aFNSP205269 a19900101a19709999 ba0 afre aFR13aLa Recherche aPariscLa Recherched1970- aMensuel04tLes dossiers de la recherchex1772-3809 1tAtomes (Paris),x0365-7515 1tLa œRecherche (En ligne)‎x1625-995513aLa Recherche. Atomes, Nucleus13aLa Recherche. Science, progrès, découverte13aLa Recherche‎bImprimé aSciencesxVulgarisationxPériodiques aRecherchexPériodiques aInnovationsxPériodiques 3aFRbCCN0029-5671 a1946-2010 : collection envoyée au CTles en 20134 uhttp://www.larecherche.fr/1 bno. 1 (mai-1970) -....cParisdMagasins/AnnexeeP 4° 2231 aZPAY aexempb201305 aDEW 50-5901315nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200008000139210006600219210006100285326001600346517000800362517005000370530004300420606002800463710004000491856021700531955008700748957008400835972000900919991001600928992003300944992001200977001031309000018034620140114170036.01 a0767-3701 aFNSP673058 a19900101a19869999 ba0 afre aFR aaha 10aRecherche et applications en marketingfAssociation française du marketing aGrenoble‎cPresses universitaires de Grenoble‎d1993-2012 aParis‎cPresses universitaires de France‎d1986-1992 aTrimestriel10aRAM10aR.A.M. Recherche et applications en marketing10aRecherche et applications en marketing aMarketingxPériodiques02aAssociation française du marketing4 uhttp://www.afm-marketing.org/1-afm-association-francaise-du-marketing/124-activites/142-recherche-et-applications-en-marketing-ram.aspxzAccès libre aux sommaires des derniers nos et à une sélection d'articles1 bvol. 10 no. 3 (1995) -vol. 26 no. 4 (dec-2011)cParisdMagasins/AnnexeeP 4° 65811 bvol. 1 no. 1 (1986) -vol. 13 no. 2 (1998)cParisdMagasins/AnnexeeP Index 0811 aZPAY aexemp201401 aGEO RS Sans aspect régional aDEW 65901183nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101001300123102000700136110001600143200003900159210003900198326001600237430008700253510002800340606005200368710009000420801002100510830002900531856011300560856010800673955006700781972000900848992001200857039720403000003642520130319051810.01 a0770-4518 aFNSP205836 a0000036425 a19900101a19619999 ba0 afreaeng aBE aahu 10aRecherches économiques de Louvain aBruxellescDe Boeck-Wesmaeld1961- aTrimestriel 1aBulletin de l'Institut de recherches économiques et sociales (Louvain)x1373-971910aLouvain economic review aHistoire économiquez20e sièclexPériodiques02aUniversité catholique de Louvain (1970-....)bDépartement des sciences économiques 3aFRbCCN0770-4518 a1961--1979 donné au CTL4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-recherches-economiques-de-louvain.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 46 no. 1 (1980) -....cParisdMagasins/AnnexeeP 8° 0143 aZPAY aDEW 30001093nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200007500139210003300214326002700247326002700274440005000301530004000351606004900391607004400440710005800484856009100542955007800633972000900711991001800720992002500738992001600763039906914000015259220140115174544.01 a1149-1590 aFNSP595938 a19900101b19852008 ba0 afre aFR aaha 10aRecherches et prévisionsfCaisse nationale des allocations familiales aParis‎cCNAF‎d1985-2008 aTrimestrielb1997-2008 aIrrégulierb1994-1996 1tPolitiques sociales et familiales,x2101-8081 aRecherches et prévisions‎bParis aAllocations familialesyFrancexPériodiques aFrancexPolitique socialexPériodiques02aCaisse nationale des allocations familialesc(France)4 uhttp://www.caf.fr/etudes-et-statistiques/publicationszAccès libre au texte intégral1 bno. 38 (déc-1994) -no. 94 (dec-2008)cParisdMagasins/AnnexeeP 4° 6446 aZGRA aexempb012014 aGEO RA4.06 France 01 aDEW 360-36301129nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210002600181326001500207606003300222606002900255710006400284856003600348856010000384856004900484856014200533955006600675972000900741991001800750992001900768992001600787039800822000003643520130319051810.01 a0838-4479 aFNSP205858 a0000036435 a19900101a19889999 ba0 afre aCA aaja 10aRecherches féministes aQuébeccGREMFd1988- aSemestriel aFemmesyCanadaxPériodiques aFéminismexPériodiques02aGroupe de recherche multidisciplinaire féministe (Québec)4 uhttp://www.erudit.org/revue/rf/ zContenu : sommaires et texte intégral depuis le volume 15, n°1, 2002 (sauf derniers numéros)4 uhttp://www.fss.ulaval.ca/lef/revue/index.htm zContenu : sommaires du volume 1, n°1, 1988 au volume 13, n°1, 2000, puis uniquement les thèmes des dossiers pour les années suivantes1 bvol. 1 no. 1 (1988) -....cParisdMagasins/AnnexeeP 8° 5565 aZPAY aexempb201210 aGEO RC1 Canada aDEW 305-30601501nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007800154210002900232210002600261210004900287210004800336210005000384300006300434326001600497430008500513517005000598606004800648710004700696801002100743856004600764856005700810955010800867957010100975972000901076991001801085992001201103039464695000003654720130430134949.01 a0294-3069 aFNSP206262 a0000036547 a19900101a19819999 ba0 afre aFR aahu 10aRecherches internationalesecahiers de l'Institut de recherches marxistes aPariscSEPIRMd1981-1990 aPariscIRMd1991-1995 aPariscRecherches internationalesd1996-1997 aaPariscAssociation "64 Blanqui"d1997-2006 aSaint-DeniscAssociation Paul Langevind2006- aPublication interrompue du printemps 1993 à l' hiver 1995 aTrimestriel 1aRecherches internationales à la lumière du marxisme (0486-1345) < P 8° 1554 >10aCahiers de l'Institut de recherches marxistes aSciences sociales et marxismexPériodiques02aInstitut de recherches marxistesc(France) 3aFRbCCN0294-30694 uhttp://www.recherches-internationales.fr/ zContenu : accès aux sommaires depuis le n°76, 20061 bno. 1 (1981) -no. 40 (1992/1993) ; no. 41/42 (pri/été-1995) -....cParisdMagasins/AnnexeeP 8° 15541 bno. 41 (1995) -no. 62 (2000) ; no. 1 (1981) -no. 80 (2007)cParisdMagasins/AnnexeeP Index 0833 aZCAD aexempb201102 aDEW 30001032nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210004700185326002200232606003700254710006900291801002100360856006700381856006700448856003600515856006800551955005900619972000900678992001900687992001200706038782472000003643720130319051810.01 a0034-1282 aFNSP205862 a0000036437 a19900101a19609999 ba0 afre aCA aaiu 10aRecherches sociographiques aQuébeccDépartement de sociologied1960- a3 numéros par an aSociologieyCanadaxPériodiques02aUniversité Lavalc(Québec, Canada)bDépartement de sociologie 3aFRbCCN0034-12824 uhttp://www.soc.ulaval.ca/recherchessociographiques/default.asp zContenu : sommaires et résumés depuis le vol. 31, n°1, 19904 uhttp://www.erudit.org/revue/rs/4 zContenu : texte intégral depuis le vol.43, n°1 (janvier 2002)1 bno. 1 (1960) -....cParisdMagasins/AnnexeeP 4° 1823 aZSAB aGEO RC1 Canada aDEW 30101001nas 2200337 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000019001412100025001603260017001854300036002025170022002385170014002605170006002745300025002806060032003056060047003376760008003848560067003928560108004599550053005679720009006209920022006299920012006510000208684000020868420130319051811.0 aFNSP756609 a0000208684 a19900101a19979999 ba0 afre aFR aaca 10aRecueil Dalloz aPariscDallozd1997- aHebdomadaire 1aRecueil Dalloz Sireyx0034-183510aRecueil Le Dalloz13aLe Dalloz10aD 0aRecueil Dallozb1997 aDroityFrancexPériodiques aDroityFrancexJurisprudencexPériodiques a3404 uhttps://acces-distant.sciences-po.fr/fork?http://www.dalloz.fr zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1997)-....cParisd30, Salle 3e étageeDEW 340 aZPAY aGEO RA4.06 France aDEW 34801193nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000025001552100029001803260017002094360120002264400026003465170074003726060047004466060032004938010021005258560067005468560108006139550056007219550056007779920022008339920012008550000005283000000528320130319051811.01 a0034-1835 aFNSP107806 a0000005283 a19900101b19651996 ba0 afre aFR aa u 10aRecueil Dalloz Sirey aPariscDallozd1965-1996 aHebdomadaire 1aRecueil Dalloz de doctrine, de jurisprudence et de législationxISSN 0242-6919 et de Recueil SireyxISSN 0242-6900 1aRecueil Dalloz (1997)10aRecueil Dalloz Sirey de doctrine, de jurisprudence et de législation aDroityFrancexJurisprudencexPériodiques aDroityFrancexPériodiques 3aFRbCCN0034-18354 uhttps://acces-distant.sciences-po.fr/fork?http://bu.dalloz.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1965) -(1989)cParisd30, Salle 3e étageeDEW 3401 b(1990) -(1996)cParisd30, Salle 3e étageeDEW 340 aGEO RA4.06 France aDEW 34801250cas0 2200337 450 001001000000002001100010005001700021035001500038035001500053100004100068101000800109102000700117105001800124106000600142110001600148200004300164207009300207210002900300215003400329517006300363710004700426801003000473801001800503801003000521830000900551856014500560945001400705955014200719991001500861991003600876013303988000112639520130319051811.0 asib0035591 a0001126395 a19990310a19219999 0frey0103 ba0 afre aFR ay  ar aau 10aRecueil de l'Académie de législation 1a4e série, t.1(1920/21)-5e série, t.19(1949) ; 5e série, t.1(1951)-6e série,t.7(1981) aToulousec[s. n.]d1921- d28 cm, puis 25 cm, puis 24 cm10aRecueil de l'académie de législation fondée à Toulouse02aAcadémie de législationc(Toulouse)4340 3aFRbAbesc20080213gAFNOR 3aFRbSFgAFNOR 3aFRbAbesc20070115gAFNOR asdy04 uhttp://gallica.bnf.fr/ark:/12148/cb34410463t/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1920-1937) bCOL8*08421 b4eme série vol. 7 (1926) -vol. 11 (1935) ; vol. 14 (1938) ; 6eme série vol. 4 (1963) -vol. 4 (1966)cParisdMagasins/AnnexeeCOL8°0842 aPériobTZ anumer0 (compléments gallica ?)02549cas0 2200517 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147105001800154106000600172110001600178200017600194207001000370210002600380301013100406301010400537326001100641327021600652430011400868512012700982512012601109517010901235517011001344606002701454606004801481606002601529676000801555710006801563711009901631801003001730801002301760801003001783802000701813856005501820955005301875972000901928992002501937992001201962992005701974113163592000108639020130319051811.01 a1955-0502 a113163223 aissn19550502 a0001086390 a20070312a20079999k y0frey50 ba0 afre aFR ay  ar aaku uu 10aRecueil de la réglementation relative à l'exercice des activités bancaires et financièresfService de la réglementation bancaire et financière de la Banque de France 1a2006- a[Paris]cCCLRFd2007- aUn seul ISSN est attribué à cette publication en 2 volumes qui ne sont ni publiés ni vendus séparément (Europe et France) aISSN mentionné sur la dernière page : 1169-8470 (correspond à la période de parution 198X-2000) aAnnuel1 aRecueil de la réglementation européenne relative à l'exercice des activités bancaires et financièresaRecueil de la réglementation française relative à l'exercice des activités bancaires et financières 1tRecueil des textes réglementaires relatifs à l'exercice des activités bancaires et financièresx1628-127610aRecueil de la réglementation relative à l'exercice des activités bancaires et financièreseréglementation européenne10aRecueil de la réglementation relative à l'exercice des activités bancaires et financièreseréglementation française10aRecueil de la réglementation française relative à l'exercice des activités bancaires et financières10aRecueil de la réglementation européenne relative à l'exercice des activités bancaires et financières aBanquesxDroityFrance aBanquesxDroityPays de l'Union européenne aEntreprisesxFinances a34602aComité de la réglementation bancaire et financièrec(France)02aBanque de FrancebComité consultatif de la législation et de la réglementation financières 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20080909 3aFRbAbesc20071026gAFNOR a074 uhttp://www.banque-france.fr/fr/supervi/supervi.htm1 b(2007) -....cParisdMagasins/AnnexeeP 4° 6508 aZGRA aGEO RA4.06 France 01 aDEW 346 aGEO RA1.01 Communautés européennes, Pays de la CEE01711cas0 2200433 450 001001000000002001100010005001700021011001400038035001400052035001400066035001800080035001700098035001700115035001500132100004100147101000800188102000700196105001800203106000600221110001600227200017600243210003200419300006300451430011200514510008800626530008900714531005800803601005700861606004600918710004000964801003001004801001801034801002301052802000701075856008201082955005501164955004301219991001501262003008428000112747320130319051811.0 a0074-4441 a038859637 a060622822 afrBN015920645 accn0074-4441 aissn00744441 a0001127473 a19931018a19479999 0fre 0103 ba0 amul aNL ay  ar aak 10aRecueil des arrêts, avis consultatifs et ordonnancesfCour internationale de justice =dReports of judgments, advisory opinions and ordersfInternational Court of Justice aLeydecA.W. Sijthoffd1947- aFascicules constituant un volume annuel, pourvu d'un index 1tCour permanente de justice internationale. Série A/B. Arrêts, ordonnances et avis consultatifsx1812-021010aReports of judgments, advisory opinions and orders / International Court of Justice10aReports of judgments, advisory opinions and ordersb(International Court of Justice) 0aRep. judgm. advis. opin. ordersb(Int. Court Justice)02aCour internationale de justicexPériodiques2rameau aDroit internationalxPériodiques2rameau02aCour internationale de justice4070 3aFRbAbesc20080122gAFNOR 3aFRbBNgAFNOR 3aFRbISSNc20020308 a004 uhttp://www.icj-cij.org/docket/index.php?p1=3zAccès libre au texte intégral1 b(1947) -(1987)cParisdMagasins/AnnexeeCOL8°10881 b()cParisdMagasins/AnnexeeCOL8°7140 aPériobTZ02207nas 2200433 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200004200160207005300202210003100255300016700286326001600453430006900469440005600538517001800594517014300612517016800755517012100923601005401044710004001098801003001138801002301168830010801191830005801299856013301357955005501490957017601545991001801721992002201739992001201761037670433000108558620130319051811.01 a0242-5483 aFNSP159690 a0000022069 a19910117b18481954 ba0 afre aFR ar aafa 10aRecueil des arrêts du Conseil d'Etat 1a2e série, t. 18 (1848)-t. 116 (1946)a1947-1954 aPariscDelhommed1848-1954 aLe numéro et la date inscrits sur la page de titre du premier volume sont erronés : dix-huitième en 1848. Ce volume correspond en fait au dix-septième de 1847 aIrrégulier 1tRecueil des arrêts du Conseil ou ordonnances royalesx1164-6330 1aRecueil des décisions du Conseil d'Etatx0249-727110aRecueil Lebon10aRecueil des arrêts du Conseil d'Etat statuant au contentieux, des décisions du Tribunal des conflits et de la Cour des Comptes 1880-192010aRecueil des arrêts du Conseil d'Etat statuant au contentieux, des décisions du Tribunal des conflits, de la Cour des Comptes et du Conseil des prises (1921-1946)10aRecueil des arrêts du Conseil d'Etat statuant au contentieux et des décisions du Tribunal des conflits (1947-1954)02aFrancebConseil d'Etatc(1799-....)xPériodiques02aFrancebConseil d'Etatc(1799-....) 3aFRbAbesc20050726gAFNOR 3aFRbISSNc20030523 amanque les 2 premières notices du recueil Lebon pour les années 1799-1847à récupérer dans le SUDOC aLa collection à partir de 1900 est conservée au 13U4 uhttp://gallica.bnf.fr/ark:/12148/cb343630608/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 b(1848) -(1954)cParisdMagasins/AnnexeeP 8° 03851 b(1849) -(1858) ; (1859) -(1874) ; (1875) -(1884) ; (1885) -(1894) ; (1895) -(1904) ; (1905) -(1924) ; (1925) -(1934) ; (1935) -(1954)cParisdMagasins/AnnexeeP index 0842 aexempb201103 aGEO RA4.06 France aDEW 34802139nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116106000600123110001600129200004200145207005600187210003100243300016700274326001600441430006900457440005600526517001800582517014300600517017100743517012400914601005401038710004001092830010801132830005801240856010001298955004801398955005501446957017601501991001801677992002201695992001201717037670433000002206920130313091818.01 a0242-5483 aFNSP159690 a19910117b18481954 ba0 afre aFR ar aafa 10aRecueil des arrêts du Conseil d'Etat 1a2e série, t. 18 (1848)-t. 116 (1946)‎a1947-1954 aPariscDelhommed1848-1954 aLe numéro et la date inscrits sur la page de titre du premier volume sont erronés : dix-huitième en 1848. Ce volume correspond en fait au dix-septième de 1847 aIrrégulier 1tRecueil des arrêts du Conseil ou ordonnances royalesx1164-6330 1aRecueil des décisions du Conseil d'Etatx0249-727110aRecueil Lebon10aRecueil des arrêts du Conseil d'Etat statuant au contentieux, des décisions du Tribunal des conflits et de la Cour des Comptes 1880-192010aRecueil des arrêts du Conseil d'Etat statuant au contentieux, des décisions du Tribunal des conflits, de la Cour des Comptes et du Conseil des prises‎ (1921-1946)10aRecueil des arrêts du Conseil d'Etat statuant au contentieux et des décisions du Tribunal des conflits‎ (1947-1954)02aFrancebConseil d'Etatc(1799-....)xPériodiques02aFrancebConseil d'Etatc(1799-....) amanque les 2 premières notices du recueil Lebon pour les années 1799-1847à récupérer dans le SUDOC aLa collection à partir de 1900 est conservée au 13U4 zPériodique numérisé sur Gallicauhttp://gallica.bnf.fr/ark:/12148/cb343630608/date.r=.langFR1 b(1900) -(1954)cParisdMagasinseP 8° 03851 b(1800) -(1899)cParisdMagasins/AnnexeeP 8° 50751 b(1849) -(1858) ; (1859) -(1874) ; (1875) -(1884) ; (1885) -(1894) ; (1895) -(1904) ; (1905) -(1924) ; (1925) -(1934) ; (1935) -(1954)cParisdMagasins/AnnexeeP index 0842 aexempb201103 aGEO RA4.06 France aDEW 34801437cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200005800179207006600237210005700303440005300360517014400413601005400557606006500611710004000676801003000716801002300746802000700769856014500776955005500921991002000976991005400996992002501050038674432000108559620130319051812.0 a1164-6330 accn1164-6330 aissn11646330 a0001085596 a19911126b18211847 0fre 0103 ba0 afre aFR ar aaj 10aRecueil des arrêts du Conseil ou ordonnances royales 1aT. 1 (1821)-t. 12 (1830)a2e série, t. 1 (1831)-t. 17 (1847) aPariscBureau d'administration du Recueild1821-1847 1tRecueil des arrêts du Conseil d'Etatx0242-548310aRecueil des arrêts du Conseil ou ordonnances royales rendues en Conseil d'Etat sur toutes les matières du contentieux de l'administration01aFrancebConseil d'Etatc(1799-....)xPériodiques aContentieux administratifyFrancexPériodiquesz19e siècle02aFrancebConseil d'Etatc(1799-....) 3aFRbAbesc20050616gAFNOR 3aFRbISSNc20030523 a074 uhttp://gallica.bnf.fr/ark:/12148/cb344487605/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1821-1847)1 b(1839) -(1847)cParisdMagasins/AnnexeeP 8° 0385 aPériobTP01 P8 anumer0 (1839 1840 1841 en complément de gallica) aGEO RA4.06 France 0101284nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005400154207002500208210002500233210003800258326001100296517010300307606006300410676000800473710003600481830006100517856004300578856003700621955006700658955004600725957008700771972000900858992002200867992001200889992000900901039610691000002206320130319051812.01 a0532-3940 aFNSP159680 a0000022063 a19910117a19609999 ba0 afre aFR aaka 10aRecueil des décisions du Conseil constitutionnel 1a1958 publié en 1960 aPariscDallozd1993- aPariscImpr. nationaled1960-1992 aAnnuel10aRecueil des décisions du Conseil constitutionnel et de la Commission constitutionnelle provisoire aDroit constitutionnelyFrancexJurisprudencexPériodiques a34202aFrancebConseil constitutionnel aToute la collection est conservée au 13 U jusqu'en 19994 uhttp://www.conseil-constitutionnel.fr/ zAccès libre au texte intégral.1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 3421 b(1958) -....cParisdMagasinseP 8° 54711 b(1959-1988), (1989-1993)zIndex intitulé Jurisprudence du Conseil constitutionnel aZCAD aGEO RA4.06 France aDEW 342 aPBUL01702nas 2200445 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004500154210002400199320011900223326001500342430005300357517001800410601004800428601005400476606005100530676000800581712004000589830005900629830003200688856006700720856010800787856006100895856003700956955006900993955004601062957007801108972000901186991001801195992002201213992001201235992000901247039419649000002206820130319051812.01 a0249-7271 aFNSP159688 a0000022068 a19910117a19559999 ba0 afre aFR aaga 10aRecueil des décisions du Conseil d'Etat aPariscSireyd1955- aEn supplément paraissent les Tables décennales de la Jurisprudence du Conseil d'Etat et du Tribunal des conflits aBimestriel 1aRecueil des arrêts du Conseil d'Etatx0242-548310aRecueil Lebon01aFrancebTribunal des conflitsxPériodiques01aFrancebConseil d'Etatc(1799-....)xPériodiques aTribunaux administratifsyFrancexPériodiques a34002aFrancebConseil d'Etatc(1799-....) aToute la collection est conservée rue Saint-Guillaume a1955-1999 conservé au 13 U4 uhttps://acces-distant.sciences-po.fr/fork?http://www.dalloz.fr zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.conseil-etat.fr/cde/fr/base-de-jurisprudence/ zAccès libre au texte intégral.1 bLes 3 dernières annéescParisdSalle des périodiqueseDEW 3401 b(1955) -....cParisdMagasinseP 8° 03851 b1955-1964, 1965-1974, 1975-1984, 1985-1994cParisdMagasinseP Index 0842 aZCAD aexempb201103 aGEO RA4.06 France aDEW 348 aPBUL01309nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001391100016001452000046001612100028002073000073002353260012003084400042003205300046003626060032004086060047004406760008004878560149004959550098006449570207007429920022009499920012009710000134671000013467120130319051812.0 a0242-6897 aFNSP542285 a0000134671 a19940824b18011949 ba0 afre aFR ar aafa 10aRecueil général des lois et des arrêts aPariscSireyd1801-1949 ales années 1914 à 1923 ne contiennent pas la section Lois annotés amensuel 1aRecueil Sirey (0242-6900)

00aRecueil général des lois et des arrêts aDroityFrancexPériodiques aDroityFrancexJurisprudencexPériodiques a3404 uhttp://gallica.bnf.fr/ark:/12148/cb34363188x/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé de 1791 à 1900 sur Gallica1 bTome 1/2, 1791/1801 ----> tome 113, 1913, 1914 ----> 1949cParisdMagasins/AnnexeeP 4° 52231 b1791/1850, 1851/1860, 1861/1870, 1871/1880, 1881/1890, 1891/1900,1901/1910, 1911/1915, 1916/1920, 1921/1925, 1926/1935, 1936/1940, 1941/1945, 1946/1950 et 1941/1950cParisdMagasins/AnnexeeP Index 0732 aGEO RA4.06 France aDEW 34801333cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118105001800125106000600143110001600149200001900165210002300184210003200207326001100239430004200250452003900292514007400331514005700405606003600462606004000498710007700538801003000615801002400645802000700669856013200676955009300808972000900901992001600910992002100926170074293000124780220140114173209.01 a2308-0906 aissn23080906 a20130617a20049999u y0frey50 ba0 aeng aDE ay 0  ar aakah 0uu 10aRedescriptions aOslocSoPhid2004-1 aMünstercLIT Verlagd2005- aAnnuel 1tFinnish yearbook of political thought 1tRedescriptions (Online)x2308-091410aYearbook of political thought, conceptual history and feminist theory10aYearbook of political thought and conceptual history2 aScience politiquexPériodiques2 aPhilosophie politiquexPériodiques02aUniversity of JyväzskyläbDepartment of Social Sciences and Philosophy 3aFRbAbesc20130904gAFNOR 3aFRbISSNc201300617 a004 uhttp://www.jyu.fi/yhtfil/redescriptions/zAccès au texte intégral de 2005 à 2009 et uniquement au sommaire pour 2010 et 20111 bVol. 9 (2005) -vol. 12 (2008) ; vol. 15 (2011) -....cParisdMagasins/AnnexeeP 8° 7215 aZSAB aDEW 320-321 aGEO RQ Universel01351cas0 2200361 450 00100100000000200110001000500170002101100140003803500170005203500170006903500150008604000110010110000410011210100080015310200070016110500180016811000160018620000280020220700320023021000350026232600150029760600440031280100300035680100230038680200070040985601610041685600790057785601090065685601080076595500830087399200120095699200210096803933922X000114390820130319051813.01 a0276-3877 accn0276-3877 aissn02763877 a0001143908 aRELBD6 a19810429a19819999k y0frey0103 ba0 aeng aUS ay 0  aaja 0uu 14aThe Reference librarian 0aNo. 1/2 (fall/winter 1981)- aNew YorkcHaworth Pressd1981- aSemestriel aSciences de l'informationxPériodiques 3aFRbAbesc20080123gAFNOR 3aFRbISSNc20051021 a014 uhttps://acces-distant.sciences-po.fr/fork?http://www.haworthpress.com/store/product.asp?sid=1QV7E6J82FNW9PQBGC4V1JRUBL5UCTSA&sku=J120&detail=TOCList#TOCList zContenu: sommaires et résumés des n°s depuis le vol. 1, n° 1/2 de 19824 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t792306953db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 47 no. 1 (2007) -vol. 49 no. 2 (2008)cParisdMagasins/AnnexeeP 8° 7033 aDEW 020 aGEO RQ Universel01223nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005000154210006900204326002300273326002600296606003700322606005200359801002100411830010100432856012400533856010800657955006700765972000900832991001800841992001400859992002400873013307657000003677720140106164233.01 a0034-2971 aFNSP206873 a0000036777 a19900101a19619999 ba0 afre aBE aahu 10aReflets et perspectives de la vie économique aaBruxellescRecherche et diffusion économiquescDe Boeckd1961- aTrimestrielb1997- aBimestrielb1961-1996 aEconomie politiquexPériodiques aHistoire économiquez20e sièclexPériodiques 3aFRbCCN0034-2971 aVol. 1, no. 1, 1961---> vol. 23, 1984 < P 8° 1962 > : collection donnée au CTL en juillet 20014 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-reflets-et-perspectives-de-la-vie-economique.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 24 no. 1 (1985) -....cParisdMagasins/AnnexeeP 8° 1962 aZPAY aexempb201001 aDEW 330.9 aGEO RA4.04 Belgique01203nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004300154210008200197326002400279326002600303606005400329606006000383710006800443856009900511856011200610955009600722972000900818991001800827992002800845992001600873132489074000015583320130319051813.01 a1315-2378 aFNSP606969 a0000155833 a19900101a19949999 ba0 aspa aVE aaia 10aReforma y democraciaerevista del CLAD aCaracascCentro Latinoamericano de Administración para el Desarrollodc1994- a3 nos par anb1997- aSemestrielb1994-1996 aScience politiqueyAmérique latinexPériodiques aInstitutions politiquesyAmérique latinexPériodiques02aCentre latinoaméricain d'administration pour le développement4 uhttp://www.clad.org.ve/portal/publicaciones-del-clad/revista-clad-reforma-democracia/articulos zContenu : sommaires, résumés et texte intégral (à l'exception du dernier n°) depuis le n°1, nov. 19941 bno. 1 (jan-1994) -....cParisdMagasins/AnnexeeP 8° 6114wManquant : nos 22, 23, 24, 2002 aZCAD aexempb201212 aGEO RD Amérique latine aDEW 320-32101681cas0 2200433 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200005500179210005200234215001000286305003300296326001400329421009300343423005900436430005500495434009300550447004800643447005100691530003300742531002600775606005600801702004200857712005300899801003000952801002300982802000701005856014501012955007001157991002001227038591448000109459020130319051814.0 a1153-9941 accn1153-9941 aissn11539941 a0001094590 a19921112b18811930uuuy0frey0103 ba0 afre aFR ar aagu uu 13aLa Réforme socialefSociété d'économie sociale aPariscSociété d'économie socialed1881-1930 d24 cm aRevue fondée par F. Le Play aBimensuel |tBulletin - Société internationale des études pratiques d'économie socialex1153-995X 1tAnnales de la charité et de la prévoyancex1153-9992 1tAnnuaire de l'économie sociale (Tours)x1153-9933 |tBulletin - Société internationale des études pratiques d'économie socialex1153-995X 1tRevue d'économie rurale (Paris)x1153-9968 1tRevue d'économie sociale et ruralex1153-997613aLa Réforme socialeb(Paris) 0aReform. soc.b(Paris) aEconomie sociale et solidairexPériodiques2rameau 1aLe PlaybFrédéricf(1806-1882)434002aSociété internationale de science sociale4340 3aFRbAbesc20070402gAFNOR 3aFRbISSNc20070222 a074 uhttp://gallica.bnf.fr/ark:/12148/cb344378422/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1881-1934)1 bvol. 1 (1881) -vol. 50 (1930)cParisdMagasins/AnnexeeP 8° 0757 aPériobTP02 P800961nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200008900163210004700252326001500299530003900314606002900353710004100382801001300423856003500436856007600471955009100547972000900638992001200647115374205000047686120130319051815.01 a0229-5113 a0000476861 a a19819999k fre ba0 aeng aCA a 0  ar aag z 0 10aRefugeeCanada's periodical on refugeesfCentre for Refugee Studies, York University aTorontocCentre for Refugee Studiesd1981- aBimestriel10aRefugeb(Toronto, English edition) aRéfugiésxPériodiques02aCentre for Refugee Studies (Toronto) 0aFRbFNSP4 uhttp://www.yorku.ca/crs/refuge ztexte intégral des articles à partir du vol. 19, n° 3, December 20001 bvol. 19 no. 2 (jan-2001) -vol. 20 no. 4 (aou-2002)cParisdMagasins/AnnexeeP 4° 6937 aZSAB aDEW 32501357nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200007500139207006400214210008000278326003000358326002600388326002400414421003600438430007700474530003700551606002900588710005700617856015500674955007100829955007700900972000900977992002100986992001201007040150267000003693920130529142042.01 a1014-0905 aFNSP207199 a19900101b19812007 f ba0 afre aCH aaga 10aRéfugiés‎fHaut commissariat des Nations Unies pour les réfugiés 1ano. 3 (1981)-no. 24(1983) ; n.s. no. 1(1984)-no. 148 (2007) aGenèvecHaut Commissariat des Nations Unies pour les réfugiésd1981-2007 aTrimestriel‎b1992-2007 aMensuel‎b1982-1991 aBimestriel‎b1981 1aRéfugiés magazine (0254-5691) 1aHCR. Haut Commissariat des Nations Unies pour les réfugiés,x0251-645410aRéfugiés‎bGenève. Imprimé aRéfugiésxPériodiques02aNations UniesbHaut commissariat pour les réfugiés4 uhttp://www.unhcr.ch/publikationen/zeitschrift-fluechtlinge.htmlzAccès libre en texte intégral à leurs nombreuses études, rapports et publications1 bno. 118 (2000) -no. 148 (2007)cParisdMagasins/AnnexeeP 4° 68631 bno. 3 (mai-1981) -no. 117 (oct-1999)cParisdMagasins/AnnexeeP F° 0362 aZGRA aGEO RQ Universel aDEW 32501007nls 2200373 i 450 0010011000000020011000110050017000220110005000390350015000441000041000591010008001001020007001081060006001151100016001211350018001372000048001552070005002032100005002082300005002133000101002183260022003193300005003413360056003463370017004026070034004196070026004538010013004798300005004928560031004979550005005289920032005339920056005659920012006210000405091000040509120130319051816.0 a a0000405091 a a19969999k fre 01 ba0 afre aFR az aag z  adr 10aRegard sur l'Estb[Ressource électronique] 1a a a aSommaires depuis le n°1 1996 et texte intégral de la revue depuis le n°14, février-mars 1999 a5 numéros par an a aDonnées textuelles accessibles uniquement en ligne aFichiers HTM aEurope de l'EstxPériodiques aEx-URSSxPériodiques 0aFRbFNSP a4 uhttp://www.regard-est.com/1 r aGEO RA2.02 Europe orientale aGEO RA7.02 Etats successeurs de l'Union soviétique aDEW 94701052nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210002600191326001600217430004500233436003900278436004100317530002700358606002900385607002500414710003000439856002700469955010800496955006700604972000900671992002200680992001200702040383318000015545020131015172813.01 a1262-0092 aFNSP606120 a0000155450 a19900101a19959999 ba0 afre aFR aafa 00aRegardsele mouvement des idées aPariscRegardsd1995- aTrimestriel 1tRegards :epolitique, société, culture 1aAvancées (Paris. 1994)x1257-872X 1tRévolution (Paris. 1980)x0246-940510aRegardsb(Paris, 1995) aActualitéxPériodiques aFrancexPériodiques02aParti communiste francais4 uhttp://www.regards.fr/1 bno. 86 (jan-2003) -no. spécial (nov-2003) ; no. 1 (jan-2004) -....cParisdMagasins/AnnexeeP 4° 69491 bno. 1 (avr-1995) -no. 85 (dec-2002)cParisdAnnexeeP F° 0533 aZPAY aGEO RA4.06 France aDEW 05001122nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009200154210005200246326001500298530009200313606004500405676000800450710007500458856002500533856004800558955006600606955005900672972000900731991001800740992002200758992001600780039849082000000807620130319051816.01 a0988-6982 aFNSP113905 a0000008076 a19900523a19879999 ba0 afre aFR aaja 10aREGARDSeRencontres enseignement gestion actions recherches dossiers sécurité sociale aSaint-EtiennecCNESSSaPariscÉconomicad1987- aSemestriel00aREGARDS. Rencontres enseignement gestion actions recherches dossiers sécurité sociale aSécurité socialeyFrancexPériodiques a36002aCentre national d'études supérieures de sécurité socialec(France)4 uhttp://www.cnesss.fr zsommaires de la revue depuis le n°14, 19981 bLes 3 dernières annéescParisd27, Salle 4e étageeDEW 3601 bno. 1 (1987) -....cParisdMagasins/AnnexeeP 8° 5121 aZGRA aexempb201011 aGEO RA4.06 France aDEW 360-36301069nas0 2200301 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003700139207002200176210005200198301005600250326001500306606004000321606003900361606003600400801003000436856011000466856010800576955006200684972000900746992001200755113477767000107887020140106121303.01 a1956-7413 a0001078870 a20070323a20079999 frey0103 ba0 afre aFR aaj 10aRegards croisés sur l'économie 0aN°1 (mars 2007)- a[S.l.]cRegards Croisés sur l'Économied2007- aDemande de numérotation ISSN en cours par le CR 18 aSemestriel aPolitique économiquexPériodiques aSociologie politiquexPériodiques aPolitique fiscalexPériodiques 3aFRbAbesc20070323gAFNOR4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-regards-croises-sur-l-economie.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno.1 (mar-2007) -....cParisdMagasins/AnnexeeP 8° 6949 aZPAY aDEW 33001010nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200008200163210004600245326001500291606002900306710010600335801001300441856004200454856010600496955006000602972000900662992001200671992002500683039973549000057390920131008113832.01 a1164-0871 a0000573909 a a19919999k fre ba0 afre aFR a 0  ar aaj z 0 10aRegards sociologiquesfUniversité Marc Bloch, Faculté des sciences sociales aStrasbourgcUniversité Marc Blochd1991- aSemestriel aSociologiexPériodiques02aUniversité Marc Blochc(Strasbourg)bUFR des sciences sociales, pratiques sociales et développement 0aFRbFNSP4 uhttp://www.regards-sociologiques.com/ zContenu : texte intégral des articles gratuit à partir de 1991 à l'exception des derniers numéros1 bno. 22 (2001) -....cParisdMagasins/AnnexeeP 4° 7003 aZPAY aDEW 301 aGEO RA4.06 France 0101258nas 2200349 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000710013921000500021032600120026053000360027260700250030860700460033367600080037971000530038780100210044085600650046185600520052695500780057895701340065697200090079099100180079999200220081799200570083999200120089603292139X000000528520131029104045.01 a0337-7091 aFNSP107808 a19900101a19742011 ba0 afre aFR aafu 10aRegards sur l'actualitéfDirection de la Documentation française aPariscLa Documentation françaised1974-2011 aMensuel10aRegards sur l'actualitébParis aFrancexPériodiques aPays de l'Union européennexPériodiques a00102aFrancebDirection de la documentation française 3aFRbCCN0337-70914 uhttp://www.ladocumentationfrancaise.fr/revues/ra/index.shtml zContenu : sommaires depuis le n° 271, 2001 -->1 bno. 1 (1974) -no. 375 (nov/déc-2011)cParisdMagasins/AnnexeeP 8° 34721 bno. 1 (1974) -no. 23 (1976) ; no. 24 (1976) -no. 53 (1979) ; no. 176 (1991) -no. 210 (1995)cParisdMagasins/AnnexeeP Index 0290 aZPAY aexempb200911 aGEO RA4.06 France aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 94001269nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820001060015421000240026032600180028451700340030253000450033660700530038171000810043485600460051585600510056185601110061285601080072395500640083197200090089599200250090499200140092903993022X000008665920140106173039.01 a1156-8992 aFNSP383860 a0000086659 a19900101a19919999 ba0 afre aFR aaga 10aRegards sur l'économie allemandefCentre d'information et de recherche sur l'allemagne contemporaine aPariscCIRACd1991- a5 n°s par an10aBulletin économique du CIRAC 0aRegards sur l'économie allemandebParis aAllemagnexConditions économiquesxPériodiques02aCentre d'information et de recherche sur l'Allemagne contemporainec(France)4 uhttp://www.cirac.u-cergy.fr/sommaires.php zContenu : sommaires depuis le n° 1, Mars 19914 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-regards-sur-l-economie-allemande.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 5 (fév-1992) -....cParisdMagasins/AnnexeeP 4° 6210 aZPAY aGEO RA5.01 Allemagne aDEW 330.900919nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154210002200190300006200212326001600274430005500290606002600345606002500371710006600396856002900462955008400491972000900575992002100584992001200605045064024000025976020130319051816.01 a1289-740X aFNSP903593 a0000259760 a19981116a19989999 ba0 afre aFR aaha 10aRegards sur les taux et changes aPariscBNPd1998- apublié seulement sur internet à partir du 2e trim. 2000 aTrimestriel 1aRegards sur les changes (0766-5326) < P 4° 4877 > aMonnaiexPériodiques aChangexPériodiques02aBanque nationale de ParisbDirection des études économiques40uhttp://www.bnpgroup.com/1 bno. 62 (3e tri-1998) -no. 68 (1er tri-2000)cParisdMagasins/AnnexeeP 4° 4877 aZGRA aGEO RQ Universel aDEW 33201246nas 2200313 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000061001412100074002023260011002765170081002875170099003686060054004677100080005218300042006018560084006438560053007279550053007809550052008339720009008859920022008949920016009160000107588000010758820130319051816.0 aFNSP455789 a0000107588 a19900101a00019999 ba0 afre aFR aaka 10aRégime spécial de la sécurité sociale dans les mines aPariscCaisse autonome de la sécurité sociale dans les minesd0001- aannuel10aRapport de gestion - Caisse autonome de la sécurité sociale dans les mines10aRapport d'activité du régime minier -Caisse autonome de la sécurité sociale dans les mines aSécurité socialexMineursyFrancexPériodiques aCaisse autonome nationale de la sécurité sociale dans les minesc(France) a1985-2005 Collection donnée au CTLES4 uhttp://www.secumines.org/index.php?option=com_content&task=view&id=45&Itemid=67 zContenu : texte intégral du rapport depuis 20051 b(1964-1979)cParisdMagasins/AnnexeeCOL.F°11661 b(1980-1984)cParisdMagasins/AnnexeeP 4° 5741 aZGRA aGEO RA4.06 France aDEW 360-36301238nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210002800185326002400213326002700237326002800264430004500292517003300337606003200370606003800402856004200440856007800482856010900560856010800669955007000777972000900847991001800856992001400874036747742000017240420130319051817.01 a1359-7566 aFNSP651570 a0000172404 a19900101a19959999 ba0 aeng aGB aaga 10aRegional & federal studies aLondoncCassd1995-.... a5 nos par anb2008- aTrimestrielb2002-2007 a3 nos par anb1995-2001 1aRegional politics and policy,x0959-231810aRegional and federal studies aRégionalismexPériodiques aEconomie régionalexPériodiques4 uhttp://www.frankcass.com/jnls/rfs.htm zContenu : sommaires depuis le vol. 5, n°1 ; résumé du n° à paraître4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713636416db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 1 (pri-1995) -....cParisdMagasins/AnnexeeP 8° 5686 aZSAB aexempb201210 aDEW 338.900988nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000037001552100028001923260011002205300037002316070034002687120054003028560128003568560108004849550057005929720009006499920028006589920012006860000148464000014846420130319051817.01 a0218-3056 aFNSP582975 a0000148464 a19950203a19929999 ba0 aeng aSG aaka 10aRegional outlook. Southeast Asia aSingaporecISEASd1992- aAnnuel00aRegional outlook. Southeast Asia aAsie du Sud-EstxPériodiques02aInstitute of Southeast Asian Studiesc(Singapour)4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=JZJ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1993/1994)-....cParisdMagasins/annexeeP 4° 6429 aZPAY aGEO RI2 Asie du Sud-Est aDEW 95901266nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210004900175326001900224606003700243606004200280606003200322710004400354801002100398856010300419856010800522856010900630856010800739955007000847972000900917992001400926038783207000003687820131220120949.01 a0034-3404 aFNSP207067 a0000036878 a19900101a19679999 ba0 aeng aGB aafu 10aRegional studies aCambridgecCambridge University Pressd1967- a10 n°s par an aEtudes régionalesxPériodiques aGéographie économiquexPériodiques aRégionalismexPériodiques02aRegional Studies Associationc(Londres) 3aFRbCCN0034-34044 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=104661 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713393953db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mai-1967) -....cParisdMagasins/AnnexeeP 4° 3022 aZPAY aDEW 330.901012nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154207002600175210005200201326001600253530003200269607003000301710004600331801002100377856002700398856005100425955014700476972000900623991001800632992002400650992001200674039270572000003685820130319051817.01 a0254-7988 aFNSP207023 a0000036858 a19900101a19829999 ba0 aeng aPK aahu 10aRegional studies 1avol. 1, no. 1 (1982)- aIslamabadcInstitute of Regional Studiesd1982- aTrimestriel 0aRegional studiesbIslamabad aAsie du SudxPériodiques02aInstitute of Regional Studies (Islamabad) 3aFRbCCN0254-79884 uhttp://www.irs.org.pk/ zContient le dernier numéro en texte intégral1 bvol. 1 no. 1 (jan-1982) -....cParisdMagasins/AnnexeeP 8° 4701zManquant : vol. 6, no. 3, 1988 ; vol. 7, no. 4, 1989 ; vol. 17, no. 3, 1999 aZSAB aexempb201104 aGEO RI1 Asie du Sud aDEW 95401395nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003500163210008200198326001100280437005200291453006500343517007800408517004400486607011000530607005600640710001300696801001300709856012400722856005000846955005500896972000900951992005700960992001601017059603453000066535520130319051817.01 a1681-9314 a0000665355 a a20019999 fre 01 ba0 amul aLU a 0  ar aak z 0 10aRégionseannuaire statistique aLuxembourgcOffice des publications officielles des Communautés européennes aAnnuel 1tRegionen : statistisches jahrbuch...x1609-5057 1tRegionen : statistisches jahrbuch...(2001. Print)x1681-929210aPanorama de l'Union européenne. Régions : annuaire statistique...(2001)10aAnnuaire régional d'Eurostat... (2007) aPays de l'Union européennexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques aPays de l'Union européennexRégionsxPériodiques10aEUROSTAT 0aFRbFNSP4 uhttp://epp.eurostat.cec.eu.int/portal/page?_pageid=1073,46587259&_dad=portal&_schema=PORTAL&p_product_code=KS-AF-04-001 zContenu : texte intégral du dernier annuaire1 b(2001) -(2007)cParisdMagasins/AnnexeeP 4° 4688 aZPAY aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 310-31900960nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000150015421000510016932600160022053000470023660600490028360600640033271000390039680100210043585600580045695501000051497200090061499200230062399200120064603909166X000003688120130319051818.01 a0147-0590 aFNSP207072 a0000036881 a19900101a19779999 ba0 aeng aUS aahu 10aRegulation aWashingtoncRegulation Foundation, etc.d1977- aTrimestriel10aRegulationb(Washington, D.C. 1977. Print) aDéréglementationyEtats-UnisxPériodiques aRèglements (droit administratif)yEtats-UnisxPériodiques02aCato Institutec(Washington, D.C.) 3aFRbCCN0147-05904 uhttp://www.cato.org/pubs/regulation/regultn-arch.html1 bvol. 1 no. 1 (jul/aou-1977) -....cParisdMagasins/AnnexeeP 4° 4338wManquant: vol. 11 (1987) aZPAY aGEO RC2 Etats-Unis aDEW 34301001cas0 2200301 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116106000600123110001600129200008000145207003200225210002400257326001600281517000700297606004400304710005400348801003000402856005100432856013200483955006300615972000900678992001200687103965378000099320520130319051819.01 a1645-9199 a0000993205 a20060628a20049999k y1frey0103 ba0 apor aPT ar aaha c 10aRelações internacionaisfInstituto português de relaçoes internacionais 0aVol.1, n° 1 (março 2004)- aLisboacIPRId2004- aTrimestriel10aRI aRelations internationalesxPériodiques02aInstituto português de relações internacionais 3aFRbAbesc20070203gAFNOR4 uhttp://www.ipri.pt/publicacoes/publicacoes.php zContenu : sommaires et résumés depuis le n°1, mars 2004, sélection d'articles en texte intégral depuis le n°17, mars 20081 bno. 1 (mar-2004) -....cParisdMagasins/AnnexeeP 8° 6907 aZSAB aDEW 32701500nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005000154210003800204326001600242430005700258510002500315606005000340606006100390606004700451710008300498801002100581856003600602856009700638856003600735856006000771955012300831957010200954972000901056991001801065992001901083992001201102038783363000003688620130319051821.01 a0034-379X aFNSP207078 a0000036886 a19900101a19509999 ba0 amul aCA aahu 10aRelations industrielled=Industrial relations aQuébeccUniversité Lavald1950- aTrimestriel 1aBulletin des relations industriellesxISSN 0380-751710aIndustrial relations aRelations industriellesyCanadaxPériodiques aRelations industriellesyAmérique du NordxPériodiques aSyndicatsyAmérique du NordxPériodiques02aUniversité Lavalc(Québec, Canada)bDépartement des relations industrielles 3aFRbCCN0034-379X4 uhttp://www.rlt.ulaval.ca/ri-ir/ zContenu : sommaires et résumés depuis le vol. 51, n°4, 1996 ; texte intégral depuis 19984 uhttp://www.erudit.org/revue/ri/ zContenu : texte intégral depuis le vol.53, no.1 (1998)1 bvol. 6 no. 1 (dec-1950) -vol. 10 no. 4 (sep-1955) ; vol. 30 no. 1 (avr-1975) -....cParisdMagasins/AnnexeeP 8° 16601 bvol. 36 (1981) -vol. 45 (1990)cParisdMagasins/Annexezse trouve dans le no. 4, 1990 de la revue aZPAY aexempb201102 aGEO RC1 Canada aDEW 33101593nas 2200421 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154207001800184210002900202210005200231326001600283606004400299676000800343710007200351712007800423712008900501712003800590801002100628830002200649856010500671856010800776955006700884955005600951957009501007972000901102991001801111992002101129992001201150992000901162039523365000000528820130319051821.01 a0335-2013 aFNSP107811 a0000005288 a19900101a19749999 ba0 afre aFR aahu 10aRelations internationales 1ano. 1 (1974)- aPariscSoliecd1974-2004 aaPariscPresses universitaires de Franced2005- aTrimestriel aRelations internationalesxPériodiques a32702aInstitut universitaire de hautes études internationalesc(Genève)02aInstitut d'histoire des relations internationales contemporainesc(Paris)02aSociété d'études historiques des relations internationales contemporaines (Paris)02aInstitut Pierre Renouvinc(Paris) 3aFRbCCN0335-2013 a1974-1999 au 13 U4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-relations-internationales.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bno. 1 (mai-1974) -....cParisdMagasinseP 8° 34561 bno. 1 (1974) -no. 76 (1993) ; no. 77 (1994) -no. 116 (2003)cParisdMagasinseP Index 0749 aZCAD aexempb201001 aGEO RQ Universel aDEW 327 aPBUL01057nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000087001502100037002372300024002743260011002986010036003096060037003456070052003827100022004348010013004568560120004698560087005899550005006769920024006819920012007059920014007170001134316000113431620130319051821.0 a0001134316 a a19969999k fre 01 ba0 apor aPT ar aak z  adr 10aRelatório Anual- Banco de Portugalb[Ressource électronique] /fBanco de Portugal aLisboacBanco de Portugald1996- aRevue électronique aAnnuel02aBanco de PortugalyPériodiques aFinancesyPortugalxPériodiques aPortugalxConditions économiquesxPériodiques02aBanco de Portugal 0aFRbFNSP4 uhttp://www.bportugal.pt/pt-PT/EstudosEconomicos/Publicacoes/RelatorioAnual/RelAnuaisAnteriores/Paginas/default.aspx zContenu : texte intégral du rapport en version portugaise et anglaise depuis 19961 r aGEO RA6.01 Portugal aDEW 332 aDEW 330.901536nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006500139210004100204326001100245441008000256441008100336452008700417530006800504601003600572606003700608607005200645710002200697856016500719955005500884955009100939955005501030972000901085991001801094992002401112992001201136992001401148039958248000006270920140106124107.01 a0870-0060 aFNSP286817 a19900101b18622011 ba0 apor aPT aaka 10aRelatório do Conselho de AdministraçãofBanco de Portugal aLisboacBanco de Portugald1862-2011 aAnnuel 1tRelatório do Conselho de Administração : a economia portuguesx2182-5874 1tRelatório do Conselho de Administração‎ : Atividade e contasx2182-5890 1tRelatorio do Conselho de Administração (Banco de Portugal. Em linha),x1646-508310aRelatório do conselho de administração‎bBanco de Portugal02aBanco de PortugalyPériodiques aFinancesyPortugalxPériodiques aPortugalxConditions économiquesxPériodiques02aBanco de Portugal4 uhttp://www.bportugal.pt/pt-PT/EstudosEconomicos/Publicacoes/RelatorioAnual/RelAnuaisAnteriores/Paginas/default.aspxzAccès libre au texte intégral depuis 19961 b(1980) -(1995)cParisdMagasins/AnnexeeP 4° 56961 b(1935) -(1936) ; (1938) ; (1948) ; (1950) -(1979)cParisdMagasins/AnnexeeCOL.F°00941 b(1893) -(1898)cParisdMagasins/AnnexeeCOL8°0698 aZGRA aexempb201312 aGEO RA6.01 Portugal aDEW 332 aDEW 330.901575nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210002800184326001600212430004300228517003200271606004300303606005200346606004100398606006400439710002100503856012800524856010800652856010900760856010800869955008300977972000901060991001801069992005601087992003201143992001401175040098729000014542720130319051822.01 a0963-7494 aFNSP574246 a0000145427 a19950106a19929999 ba0 aeng aGB aaha 10aReligion, state & society aAbingdoncCarfaxd1992- aTrimestriel 1aReligion in communist landsx0307-597410aReligion, state and society aReligion et EtatyRussiexPériodiques aReligion et EtatyEurope de l'EstxPériodiques aReligion et EtatyURSSxPériodiques aChristianisme et politiquexEglise catholiquexPériodiques02aKeston Institute4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=55P&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713444726db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 22 no. 1 (1994) -vol. 36 no. 4 (2008)cParisdMagasins/AnnexeeP 8° 6089 aZSAB aexempb201202 aGEO RA7.02 Etats successeurs de l'Union soviétique aGEO RA2.02 Europe orientale aDEW 20-2901054nas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200001000180210008300190326001100273532005900284607005200343610005400395801003000449801002300479802000700502856004000509856006700549955006300616992001200679992002500691133111075000118973720130319051824.01 a1969-9824 aissn19699824 a0001189737 a20090427a20089999k y0frey0103 ba0 afre aFR ay  ar aauu uu 10aREPAP a[Paris]cRevue d'étude politique des assistants parlementaires (REPAP)d2008- aAnnuel10aRevue d'étude politique des assistants parlementaires aFrancexPolitique et gouvernementxPériodiques0 a* Assistants parlementairesyFrancexPériodiques 3aFRbAbesc20090427gAFNOR 3aFRbISSNc20090427 a074 uhttp://www.repap.fr/telechargez.php zContenu : accès au texte intégral depuis le n° 1 (oct-2008)1 bno. 2 (avr-2009) -....cParisdMagasins/AnnexeeP 8° 7140 aDEW 320 aGEO RA4.06 France 0101590cas0 2200433 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200009400180207001000274210010800284215001000392300003500402326001100437430009100448517000900539606004300548606005300591606005200644606002800696710014700724801003000871801002300901802000700924856010900931955005301040992000901093992002201102992001601124992001601140058866434000112707720130319051824.0 a1635-9089 aissn16359089 a0001127077 a20011113a19999999k a0frey0103 ba0 afre aFR ay 0  ar aakahi 0zz010aRepères et références statistiques sur les enseignements, la formation et la recherche 1a1999- aVanvescMinistère de l'éducation nationale, Direction de la programmation et du développementd1999- d25 cm aChaque n°porte un ISBN propre aAnnuel 1tRepères et références statistiques sur les enseignements et la formationx0761-342310aRERS aSciences de l'éducationxPériodiques aEnseignementyFrancexStatistiquesxPériodiques aFormation professionnelleyFrancexPériodiques aRecherchexPériodiques02aFrancebMinistère de l'éducation nationale, de l'enseignement supérieur et de la recherchebDirection de l'évaluation et de la prospective 3aFRbAbesc20071127gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.education.gouv.fr/recherche.php?recMot=reperes+et+references&type=Simple&recPer=per&submit=OK1 b(1999) -...cParisdMagasins/Annexe:eP 8° 4858 aZGRA aGEO RA4.06 France aDEW 310-319 aDEW 370-37901367nas 2200349 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000080001552100026002353260011002614300186002724400105004586060036005636060053005996060052006527120098007048010021008028560053008239550060008769720009009369910018009459920022009639920016009859920016010010000103159000010315920130319051824.0 a0761-3423 aFNSP442746 a0000103159 a19900101b19841998 ba0 afre aFR aaku 10aRepères et références statistiques sur les enseignements et la formation aPariscDEPd1984-1998 aannuel 1aTableaux des enseignements et de la formation (0339-7556) < Coll. 12°1480 A > et de Tableaux des enseignements et de la formation. Statistiques rétrospectives < Coll. 12°1480 B > 1tRepères et références statistiques sur les enseignements, la formation et la recherchex1635-9089 aEducationyFrancexPériodiques aEnseignementyFrancexStatistiquesxPériodiques aFormation professionnelleyFrancexPériodiques02aFrancebMinistère de l'éducation nationalebDirection de l'évaluation et de la prospective 3aFRbCCN0761-3423 uhttp://www.education.gouv.fr/dpd/rers/repere.htm1 b(1982/1983) -(1998)cParisdMagasins/AnnexeeP 8° 4858 aZGRA aexempb200912 aGEO RA4.06 France aDEW 310-319 aDEW 370-37901588cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200016800162210002900330437007600359517003400435530016800469712004900637801003000686801003000716802000700746856015900753856015700912856016001069945001401229991001901243038760355000088646920130319051824.0 a1246-6859 accn1246-6859 a0000886469 a19960829b18821883 0frey0103 ba0 afre aFR ar aau 10aRépertoire des travaux historiques contenant l'analyse des publications faites en France et à l'étranger sur l'histoire, les monuments et la langue de la France aParisc[s.n.]d1882-1883 1tRevue des sociétés savantes de la France et de l'étrangerx0994-831710aRevue des travaux historiques00aRépertoire des travaux historiques contenant l'analyse des publications faites en France et à l'étranger sur l'histoire, les monuments et la langue de la France02aFrancebMinistère de l'instruction publique 3aFRbAbesc20050104gAFNOR 3aFRbAbesc20050104gAFNOR a074 uhttp://archive.org/stream/rpertoiredestra00publgoog#page/n9/mode/2upzAccès libre au texte intégral. 1ere année (1882) numérisée sur Internet Archive4 uhttp://archive.org/stream/rpertoiredestra02publgoog#page/n9/mode/2upzAccès libre au texte intégral. 3e année (1883) numérisée sur Internet Archive4 uhttp://archive.org/stream/rpertoiredestra01publgoog#page/n10/mode/2upzAccès libre au texte intégral. Supplément à 1883 numérisé sur Internet Archive b8*003.808 aSAFIGbTA055ca00820nls 2200265 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001251350018001412000066001592100027002252300024002526060035002768010013003118560070003248560108003949910018005029920022005209920012005420000941455000094145520130319051824.0 aFNSP207083 a0000941455 a19900101a19909999 ba0 afre aFR aaeu  adr 10aRépertoire du notariat Defrénoisb[Ressource électronique] aPariscLextensod1990- aRevue électronique aNotariatyFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lextenso.com zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aexempb201106 aGEO RA4.06 France aDEW 34600960nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000096001502100037002462300024002833260011003075170036003185300053003546010034004076060038004417100020004798010013004998560027005128560053005399550005005929920025005979920012006220001130114000113011420130319051824.0 a0001130114 a a20009999k fre 01 ba0 aeng aJM ar aak z  adr 10aReport & statement of accounts - Bank of Jamaicab[Ressouce électronique]fBank of Jamaica aKingstoncBank of Jamaicad2000- aRevue électronique aAnnuel10aAnnual report - Bank of Jamaica00aReport & statement of accounts - Bank of Jamaica02aBank of JamaicaxPériodiques aFinancesyJamaïquexPériodiques02aBank of Jamaica 0aFRbFNSP4 uhttp://www.boj.org.jm/ zContenu : texte intégral du rapport depuis 20001 r aGEO RD3.04 Jamaïque aDEW 33201079nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116106000600123110001600129200003700145210002900182326001100211452004800222512003200270530003800302601003000340710001600370830015100386856008300537955006700620972000900687991001800696992002400714992001500738038870037000009052220140103115543.01 a0078-1185 aFNSP398664 a19900101a18179999 ba0 aeng aNO ar aaka 10aReport and accountsfNorges Bank aOslocNorges Bankd1956- aAnnuel 1tAnnual report ... (Norges bank),x1504-51291 aAnnual report - Norges bank00aReport and accounts - Norges Bank02aNorges BankxPériodiques02aNorges Bank a(1919) -(1979) ;$cParis,$dMagasins/Annexe :$eCOL4°0311bis : état de collection pas conforme à celui du Sudoc pour qui le titre commence en 19564 uhttp://www.norges-bank.no/english/zAccès libre au texte intégral depuis 19981 b(1980) -(1997) ; (1999)cParisdMagasins/AnnexeeP 4° 5541bis aZGRA aexempb201312 aGEO RA3.03 Norvège aDEW 332.0601101nas 2200325 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000063001412100045002043000047002493260011002964300061003075170045003686010044004136060038004577100030004958560078005258560053006039550055006569720009007119910018007209920025007389920012007630000107587000010758720130319051824.0 aFNSP455788 a0000107587 a19900101a19609999 ba0 aeng aAU aaka 10aReport and financial statementsfReserve Bank of Australia aSydneycReserve Bank of Australiad1960- aEn version électronique à partir de 2006 aAnnuel 1aReport and balance sheets/Commonwealth Bank of Australia10aReserve Bank of Australia -Annual report02aReserve Bank of AustraliaxPériodiques aFinancesyAustraliexPériodiques02aReserve Bank of Australia4 uhttp://www.rba.gov.au/PublicationsAndResearch/RBAAnnualReports/index.html zContenu : texte intégral du rapport depuis 19981 b(1980) -(2005)cParisdMagasins/AnnexeeP 8° 5146 aZGRA aexempb201011 aGEO RJ3.01 Australie aDEW 33201005nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000118001502100045002682300024003133260011003375170045003486010044003936060038004377100030004758010013005058560078005188560053005969550005006499920025006549920012006790001133708000113370820130319051824.0 a0001133708 a a19989999k fre 01 ba0 aeng aAU ar aak z  adr 10aReport and financial statements - Reserve Bank of Australiab[Ressource électronique]fReserve Bank of Australia aSydneycReserve Bank of Australiad1998- aRevue électronique aAnnuel10aReserve Bank of Australia -Annual report02aReserve Bank of AustraliaxPériodiques aFinancesyAustraliexPériodiques02aReserve Bank of Australia 0aFRbFNSP4 uhttp://www.rba.gov.au/PublicationsAndResearch/RBAAnnualReports/index.html zContenu : texte intégral du rapport depuis 19981 a aGEO RJ3.01 Australie aDEW 33201041nas 2200277 i 450 002001100000005001700011035001500028100004100043101000800084102000700092110001600099200009100115210004800206326001100254601004500265606004300310710003100353830005300384856012100437955005500558955008100613972000900694991001800703992003000721992001200751000010769120131009095421.0 aFNSP456014 a19900101a19219999 ba0 aeng aZA aaka 10aReport of the ... ordinary general meeting of shareholdersfSouth African Reserve Bank aPretoriacSouth African Reserve Bankd1921- aAnnuel02aSouth African Reserve BankxPériodiques aFinancesyAfrique du SudxPériodiques02aSouth African Reserve Bank a1980-2000 : collection envoyée au CTles en 20134 uhttp://www.resbank.co.za/Publications/Reports/Pages/Annual-Reports.aspxzAccès libre au texte intégral depuis 20011 b(1980) -(2000)cParisdMagasins/AnnexeeP 4° 52601 b(1921) -(1924) ; (1930) ; (1932) -(1979)cParisdMagasins/AnnexeeCOL8°0511 aZGRA aexempb201307 aGEO RF3.19 Afrique du Sud aDEW 33201637cas0 2200445 450 001001000000002001100010005001700021011001400038035002100052035001700073035001700090100004100107101000800148102000700156105001800163110001600181200004200197210004700239423006000286430004900346440008600395512004400481517008200525517004200607517003700649530004200686710003300728801003000761801002300791802000700814856013500821955005500956955004701011955005701058972000901115991001801124992002301142992001201165992001401177038845997000022237120140110115115.0 a0069-1542 a(OCoLC)474115807 accn0069-1542 aissn00691542 a19811010b19432002u y1frey50 ba0 aeng aIE ay  aaku uu 10aReport of the Central Bank of Ireland aDublincCentral Bank of Irelandd1943-2002 1tQuarterly bulletin - Central Bank of Irelandx0332-2645 1tReport of the Currency Commissionx0332-2831 1tAnnual report (Central Bank & Financial Services Authority of Ireland)x1649-594210aAnnual report - Central Bank of Ireland10aAnnual report of the Central Bank and Financial Services Authority of Ireland10aTuarascáil - Central Bank of Ireland10aReport - Central Bank of Ireland00aReport of the Central Bank of Ireland02aCentral Bank of Ireland4340 3aFRbAbesc20130711gAFNOR 3aFRbISSNc20030523 a0n4 uhttp://www.centralbank.ie/Pages/SearchResults.aspx?k=central%20bank%20annual%20reportzAccés libre au texte intégral depuis 19991 b(1995) -(2005)cParisdMagasins/AnnexeeP 4° 67071 b(1985)cParisdMagasins/AnnexeeP 8° 54041 b(1948) -(1979)cParisdMagasins/AnnexeeCOL 8° 2048 aZGRA aexempb201306 aGEO RA4.01 Irlande aDEW 332 aDEW 330.901199nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000126001552100029002813260011003104300077003215170090003986060051004886060042005397100074005818560050006559550065007059550065007709720009008359920025008449920016008690000050014000005001420130319051824.0 a1321-4837 aFNSP246365 a0000050014 a19900101a00019999 ba0 aeng aAU aaka 10aReport of the Council of the Australian Institute of Aboriginal and Torres Strait Islander Studies for the year ended.... aCanberracAIATSISd0001- aAnnuel 1aReport of the Austalian Institute of Aboriginal Studies for the period..11aAnnual report - Australian Institute of Aboriginal and Torres Strait Islander Studies aInsulaires du détroit de TorresxPériodiques aAborigènes d'AustraliexPériodiques02aAustralian Institute of Aboriginal and Torres Strait Islander Studies uhttp://www.aiatsis.gov.au/corporate/info.html1 b(1966/1967) -(1979/1980)cParisdMagasins/AnnexeeCOL8°41461 b(1980/1981) -(2006/2007)cParisdMagasins/AnnexeeP 8° 5568 aZGRA aGEO RJ3.01 Australie aDEW 305-30601205nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210003100181326001500212430005600227440005600283607003500339607005800374607005800432712004500490856002600535856016800561955008700729992002300816992002800839992001200867038035979000002899020130319051824.01 a1058-5397 aFNSP180289 a0000028990 a19900101b19901993 ba0 aeng aUS aaga 10aReport on the Americas aNew YorkcNACLAd1990-1993 aBimestriel 1aNACLA report on the Americas (1977)xISSN 0149-1598 1aNACLA report on the Americas (1993)xISSN 1071-4839 aAmérique latinexPériodiques aEtats-UnisxRelationsyAmérique latinexPériodiques aAmérique latinexRelationsyEtats-UnisxPériodiques02aNorth American Congress on Latin America4 uhttp://www.nacla.org/ ztexte intégral de l'introduction du rapport ainsi que d'une sélection d'articles (pour les autres articles, extraits disponibles) depuis le vol. 25, n° 1, 1991.1 bvol. 24 no. 4 (1990/1991) -vol. 26 no. 4 (1993)cParisdMagasins/AnnexeeP4° 3725 aGEO RC2 Etats-Unis aGEO RD Amérique latine aDEW 98001027cas0 2200301 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200010200139207001200241210005600253326001100309517001600320710006900336801003000405856008800435856005300523955005300576972000900629992005700638992001400695992001600709075128209000099052720130319051824.01 a1611-311X a0000990527 a20031124a20029999k y0frey0103 ba0 aeng aDE aaka 10aReport on the European economyfInstitute for Economic Research, European Economic Advisory Group 0a(2002)- aMunichcIfo, Institute for Economic Researchd2002- aAnnuel10aEEAG report02aIFO-Institut für Wirtschaftsforschungc(Munich, Allemagne)4070 3aFRbAbesc20070202gAFNOR4 uhttp://www.cesifo-group.de/portal/page?_pageid=36,286932&_dad=portal&_schema=PORTAL4 zContenu : texte intégral du rapport depuis 20021 b(2004) -....cParisdMagasins/AnnexeeP 4° 7107 aZSAB aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 330.9 aDEW 310-31901324nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116106000600123110001600129200015700145210010800302326001200410430010800422510003800530601005700568606005900625710004300684856012800727955007200855972000900927991001800936992001800954992001200972992001400984040617548000023137220140115193253.01 a1682-7449 aFNSP822006 a19900101a19969999 f ba0 amul aFR ar aaua 10aReports of judgments and decisions‎fEuropean Court of Human Rights‎d= Recueil des arrêts et décisions‎fCour européenne des droits de l'homme aStrasbourg‎cCouncil of Europe, Registry of the Court = Conseil de l'Europe, Greffe de la Courd1996- aMensuel 1aPublications de la Cour européenne des droits de l'homme.hSérie A,iArrêts et décisionsx0073-390310aRecueil des arrêts et décisions02aCour européenne des droits de l'hommexPériodiques aDroits de l'hommeyEuropexJurisprudencexPériodiques02aCour européenne des droits de l'homme4 uhttp://www.echr.coe.int/Pages/home.aspx?p=caselaw&c=fra#n1347455941453_pointerzAccès libre au texte intégral depuis 19991 bno. 1 (1996) -no. 12 (dec-2005)cParisdMagasins/AnnexeeP 8° 6363 aZCAD aexempb201211 aGEO RA Europe aDEW 323 aDEW 341.201000nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000560015421000430021032600160025360600280026960600440029771000370034185601090037885601080048795500730059597200090066899200210067799200120069811313987X000007162320130319051825.01 a0034-4893 aFNSP328202 a0000071623 a19900101c ba0 aeng aGB aaha 10aRepresentationejournal of representative democracy aLondoncArthur McDougall Libraryd0001 aTrimestriel aElectionsxPériodiques aReprésentation politiquexPériodiques02aArthur McDougall Fundc(Londres)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t741771152db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 30 no. 110 (ete-1991) -....cParisdMagasins/AnnexeeP 4° 6128 aZSAB aGEO RQ Universel aDEW 32400930nas 2200277 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000018001552100028001733260014002013270044002156060029002596070025002888560192003138560108005059550005006139920022006189920012006400000041492000004149220130319051825.01 a0390-1076 aFNSP222420 a0000041492 a19900101a19769999 ba0 aita aIT aaaa 13aLa Repubblica aRomacRepubblicad1976- aQuotidien10aVersion en ligne uniquement via Factiva aActualitéxPériodiques aItaliexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b aGEO RA6.03 Italie aDEW 05000830nas 2200277 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000310013921000290017032600160019943000460021553000310026160700250029285601090031795500650042697200090049199100180050099200120051899200220053004014464X000007826620130730145050.01 a1013-0942 aFNSP352796 a19900101a19899999 ba0 aeng aCN aaza 10aRepublic of China yearbook aTaipeicKwang Hwad1989- aIrrégulier 1aZhōnghuá mínguó niánjiànx0529-577700aRepublic of China yearbook aTaiwanxPériodiques4 uhttp://www.ey.gov.tw/en/cp.aspx?n=575A019C0A39897DzAccés libre au texte intégral de l'année en cours1 b(1983) ; (1989) ; (2000)cParisdMagasins/AnnexeeP 8° 5348 aZPAY aexempb201306 aDEW 951 aGEO RI3.02 Taiwan00892nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002700163210002700190326001600217430007200233606003000305710006700335801001300402856003500415856004000450955007700490972000900567992001400576040530094000043580720130319051826.01 a1278-6209 a0000435807 a b19952004k fre ba0 afre aFR a 0  ar aah z 0 10aRes publica (Créteil) aPariscPUFd1995?-2004 aTrimestriel 1tPerspectives philosophiques (Villeneuve-Saint-Georges)x(1277-3166) aPhilosophiexPériodiques02aUniversité de Paris-Val-de-MarnebDépartement de philosophie 0aFRbFNSP40uhttp://www.revuerespublica.com zSommaires et résumés des articles1 bno. 24 (mar-2001) -no. 39 (nov-2004)cParisdMagasins/AnnexeeP 4° 6908 aZCAD aDEW 10-1401080nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005100139210003100190300007900221326002500300326002200325606003600347606002600383606004300409801002100452856010000473856007800573955007600651972000900727991001800736992001200754039337553000000811720130909155858.01 a0275-5319 aFNSP114133 a19900101a19799999 ba0 aeng aUS aaiu 10aResearch in international business and finance aAmsterdamcElsevierd1979- aPublié par JAI Press de 1979 à 2003, puis par Elsevier à partir de 2004 a3 n°s par anb2004- aAnnuelb1979-2003 aMarché financierxPériodiques aBanquesxPériodiques aFinances internationalesxPériodiques 3aFRbCCN0275-53194 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/02755319 zContenu : accès aux sommaires et aux résumés depuis le volume 18, 20041 bvol. 1 (1979) -vol. 25 no. 3 (2011)cParisdMagasins/AnnexeeP 8° 4183 aZPAY aexempb201106 aDEW 33200959nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005100154210003900205326002300244326002200267606003600289606004100325801002100366856010000387856007800487955005300565972000900618991001800627992001200645039339351000000813320130319051826.01 a0276-5624 aFNSP114173 a0000008133 a19900101a19819999 ba0 aeng aUS aahu 10aResearch in social stratification and mobility aGreenwich, Conn.cJAI Pressd1981- aTrimestrielb2006- aAnnuelb1981-2005 aMobilité socialexPériodiques aStratification socialexPériodiques 3aFRbCCN0276-56244 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/02765624 zContenu : accès aux sommaires et aux résumés depuis le volume 18, 20011 b(1981) -....cParisdMagasins/AnnexeeP 8° 4536 aZPAY aexempb201106 aDEW 30100935nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200002000138210005000158326001900208606002800227606003000255801002100285856006400306856007200370955007100442955009100513972000900604991001800613992001400631038830779000003720320130925155724.01 a0048-7333 aFNSP207777 a0000037203 a19900101a19719999 ba0 aeng aNL00aResearch policy aAmsterdamcElsevier Science Publishersd1971- a10 n°s par an aRecherchexPériodiques aInnovationsxPériodiques 3aFRbCCN0027/657X4 uhttp://www.elsevier.nl/inca/publications/store/5/0/5/5/9/8/ zContenu : sommaires et résumés depuis le vol. 23, n°2, mars 19941 bvol. 38 no. 1 (fev-2009) -....cParisdMagasins/AnnexeeP 4° 72751 bvol. 1 no. 1 (nov-1971) -vol. 37 no. 10 (dec-2008)cParisdMagasins/AnnexeeP 8° 2999 aZSAB aexempb201106 aDEW 001.401551nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007200154210004100226210003800267210004300305210003300348326001500381530003400396606004700430606004100477676000800518710006500526856008700591856010800678856004800786856003700834955006400871955011600935972000901051991001801060991001801078992003301096992001201129039633616000002991120140109135323.01 a0751-7971 aFNSP183097 a0000029911 a19910416a19839999 ba0 afre aFR aaga 10aRéseauxfCNET [Centre national d'études des télécommunications] aIssy-les-MoulineauxcCNETd1983-1998 aPariscHermès scienced1999-2003 aCachanc[Hermès]-Lavoisierd2003-2008 aPariscLa Découverted2009- aBimestriel00aRéseauxbIssy-les-Moulineaux aTechnologie de l'informationxPériodiques aRéseaux d'informationxPériodiques a07002aCentre national d'études des télécommunicationsc(France)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-reseaux.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr/listIssues.do?key=reso zAccès libre au texte intégral.1 bno. 39 (jan-1990) -....cParisdMagasins/AnnexeeP 8° 57081 bno. 3 (dec-1983) - no. 19 (jui-1986) ; no. 25 (jui-1987) -no. 38 (dec-1989)cParisdMagasins/AnnexeeP 4° 6287 aZPAY aexempa201205 aexempb201304 aGEO RS Sans aspect régional aDEW 02001343nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200008000163207002400243210002700267326001600294423003600310423004000346437004000386517003700426517005400463606005500517606007500572676000800647801001300655856004100668856009600709955006700805955006400872972000900936992001200945036081310000053072120130319051827.01 a1268-4783 a0000530721 a a19969999k fre ba0 afre aFR a 0  ar aah z 0 10aResponsabilité & environnementesérie trimestrielle des Annales des mines 1ano. 1 (janv. 1996)- aParis&cEd. Eskad1996- aTrimestriel 1tGérer et comprendrex0295-4397 1tRéalités industriellesx1148-7941 1tAnnales des mines (1947)x0003-428210aResponsabilité et environnement11aAnnales des mines.Responsabilité & environnement aPolitique de l'environnementyFrancexPériodiques aResponsabilité pour dommages à l'environnementyFrancexPériodiques a333 0aFRbFNSP4 uhttp://www.annales.org/re/index.html zContenu : sommaires et résumés depuis 1996 ; texte intégral des articles de 1998 à 20031 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3331 bno. 29 (jan-2003) -....cParisdMagasins/AnnexeeP 4° 6973 aZPAY aDEW 33301194nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001700139210006400156326001900220326002600239326002300265530003000288606005400318606007200372710004600444801002100490856009700511955011400608955007500722972000900797991001800806991001800824992001400842039348717000003721020140102141719.01 a0223-5617 aFNSP207790 a19900101a19569999 ba0 afre aFR aafu 10aResponsables aParis‎cUnion sociale d'ingénieurs catholiques‎d1956- aMensuelb2008- aBimestrielb2006-2007 aMensuelb1956-200510aResponsablesbParis. 1956 aCadres (personnel)xMorale pratiquexPériodiques aGestion d'entreprisexAspect religieuxxChristianismexPériodiques02aMouvement des cadres chrétiensc(France) 3aFRbCCN0223-56174 uhttp://www.mcc.asso.fr/-Responsables-zAccés libre aux sommaires depuis le n°296, mai 19981 bno. 181 (dec-1986) - no. 311 (1999) ; no. 350 (2004) -no. 400 (janv-2010)cParisdMagasins/AnnexeeP 4° 51731 bno. 30 (1971) - no. 180 (nov-1986)cParisdMagasins/AnnexeeP 8° 3042 aZPAY aexempb201112 aexempb201311 aDEW 20-2901040cas0 2200325 450 001001000000002001100010005001700021011001400038035002500052035001500077100004100092101000800133102000700141106000600148110001600154200011500170210003600285326001600321606003600337606003600373801003000409801002900439802000700468856005200475856004600527955009500573972000900668992001200677992002500689104384654000106357320130319051827.01 a1775-0741 aFRBNF40031413000000X a0001063573 a20050907a200 9999k y0frey0103 ba1 afre aFR ar aa 10aRespublica Novaela politique a encore de l'avenirela revue politique des grandes écoles et des universités aPariscRespublica Novad[2004-] aTrimestriel aSciences socialesxPériodiques aScience politiquexPériodiques 3aFRbAbesc20060629gAFNOR 3aFRbBnFc20060327gAFNOR a074 uhttp://www.jeuneciceron.fr/principale/revue.php zContenu : sommaires depuis le n°1 [2004]1 bno. 5 (pri-2005) -no. 7 (hiv-2005) ; no. 18 (dec-2008)cParisdMagasins/AnnexeeP 4° 7170 aZPAY aDEW 320 aGEO RA4.06 France 0101062nls 2200313 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200013900124207001400263210002400277230002400301326001600325336001600341337004900357606005200406606004000458676001300498710006300511801001300574830000800587856012000595992002100715992001200736000125213520131204152226.0 a a20109999k fre 01 ba0 amul aFR ar aay z  adr 10aInfocus :b[Ressource électronique]erevue des affaires internationalesfAssociation Affaires Internationales de Sciences Po ( AAISP) 1aN°1-2010 aPariscAAISPd2010- aDonnées textuelles aIrrégulier aFichier PDF aNavigateur Internet ; lecteur de fichier PDF aRelations internationalesxPériodiques2rameau aGéopolitiquexPériodiques2rameau a327v22a02aAssociation Affaires Internationales de Sciences PocParis 0aFRbFNSP acdj4 uhttp://infocusrevue.com/2013/02/06/issue-six-is-here/zAccès au texte intégral de la revue depuis le n°1 de 2010 aGEO RQ Universel aDEW 32701183nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210002300180326002400203326002700227517002400254530003300278606003700311606003500348710005400383856009900437856010800536955006000644955006800704972000900772991001800781992001800799992001600817040005852000018967820130319051829.01 a1167-4687 aFNSP700872 a0000189678 a19900101a19929999 ba0 afre aFR aaia 10aRetraite et société aPariscCNAVd1992- a3 nos par anb2002- aTrimestrielb1992-200110aRetaite & société 0aRetraite et sociétébParis aRetraitésyFrancexPériodiques aRetraiteyFrancexPériodiques02aCaisse nationale d'assurance vieillessec(France)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-retraite-et-societe.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 18 (1997) -....cParisdMagasins/AnnexeeP 4° 67341 bno. 4 (1993) -no. 17 (1997)cParisdMagasins/AnnexeeP 8° 6233 aZPAY aexempb201211 aGEO RA Europe aDEW 360-36301089cas0 2200337 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123110001600141200006800157210002400225326001100249517003200260530006900292607006000361710006500421801003000486801003000516856005300546856003600599955005300635972000900688991001800697992001400715992002200729094684499000091919320130319051830.0 a1760-9003 a0000919193 a20060106a19999999k y0frey50 ba0 afre aFR ay 0  aakaih 0 13aLa RéunionfInstitut d'émission des départements d'Outre-mer aPariscIEDOMd1999- aAnnuel13aLa Réunionerapport annuel13aLa Réunion - Institut d'émission des départements d'Outre-mer aRéunionxConditions économiquesxPériodiques2rameau02aInstitut d'émission des départements d'Outre-merc(France) 3aFRbAbesc20100315gAFNOR 3aFRbAbesc20060112gAFNOR4 uhttp://www.iedom.fr/dom/reunion/publications.asp4 zAccès libre au texte intégral1 b(1999) -....cParisdMagasins/AnnexeeP 8° 6851 aZGRA aexempb201212 aDEW 330.9 aGEO RA4.06 France00895nas 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000016001502100037001663260014002036060046002177020026002638010013002898560193003029450016004959550083005119910011005949920012006050000472453000047245320131106152003.0 a0000472453 a b18681869k fre ba0 afre aFR a 0  ar aae z 0 13aLe Revenant aPariscTolra et Gatond1868-1869 aBimensuel aSatire politique françaisexPériodiques 1aGrenvillebE. de4070 0aFRbFNSP4 uhttp://books.google.fr/books?id=EZvSAAAAMAAJ&dq=%22Le%20Revenant%22&hl=fr&pg=PA1#v=onepage&q=%22Le%20Revenant%22&f=falsezAccès libre au texte intégral. N°1 numérisé sur Google Livres a12°009.5141 bn°1, 5 oct.1868 --> n° 28, 20 nov. 1869cParisdMagasins/Annexee12°009.514 anumer0 aDEW 05001692cas0 2200445 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101001300156102000700169105001800176106000600194110001600200200007200216210002300288300006600311302003800377326001100415430007700426510004700503510006700550532008000617606006700697606005200764710006700816801003000883801002300913802000700936856012300943856003601066955006501102992001201167992005101179992001601230037372815000111781020130319051830.01 a1560-3660 a058784640 accn1560-3660 aissn15603660 a0001117810 a19980902a19 9999k y0frey0103 ba0 aengafre aZZ ay  ar aauu uu 00aRevenue statisticsfOECD =Statistiques des recettes publiquesfOCDE aPariscOECDd1997- aChaque volume recouvre la période 1965 à l'année écoulée aTextes en français et en anglais aAnnuel 1tStatistiques de recettes publiques des pays membres de l'OCDEx0259-524910aStatistiques des recettes publiques - OCDE10aStatistiques des recettes publiques des pays membres de l'OCDE10aRevenue statistics - Organisation for Economic Co-operation and Development aFinances publiquesyPays de l'OCDExStatistiquesxPériodiques aRecettes fiscalesyPays de l'OCDExPériodiques02aOrganisation de coopération et de développement économiques 3aFRbAbesc20070904gAFNOR 3aFRbISSNc20010829 a004 uhttps://acces-distant.sciences-po.fr/fork?http://titania.sourceocde.org/vl=3932884/cl=32/nw=1/rpsv/outlook_annuals.htm zAccès libre au texte intégral1 b(1965/1996) -(1965-2005)cParisdMagasins/AnnexeeP 4° 5235 aDEW 336 aGEO RN1 Pays industrialisés, pays occidentaux aDEW 360-36901783cas0 2200469 450 00100100000000200110001000500170002101100140003803500140005203500170006603500210008303500150010410000410011910100080016010200070016810500180017511000160019320000530020920700110026221000240027322500910029722500280038830300910041632600110050741000920051841000360061051700430064660600750068960600690076460600570083360600590089067600150094971000830096480100300104780100230107780200070110085600930110795500600120099200160126099200120127699200250128811125728X000120878520130319051830.0 a2110-0888 a146435257 aissn21100888 a(OCoLC)493443528 a0001208785 a20061211a19959999k a0frey50 ba0 afre aFR ay 0  azkaii 0 014aLes Revenus et le patrimoine des ménagesfINSEE 1a1995 - aPariscINSEEd1995-20aSynthèsesfInstitut national de la statistique et des études économiquesx1262-806900aRéférencesx1639-4968 aNotice rédigée d'après l'édition 2006 et complétée d'après le numéro 1 de 1995 aAnnuel 1tSynthèses - Institut national de la statistique et des études économiquesx1262-8069 1tRéférences - INSEEx1639-496814aLes revenus et le patrimoine en France aÉpargne et investissementyFrancexStatistiquesxPériodiques2rameau aRevenuxRépartitionyFrancexStatistiquesxPériodiques2rameau aMénagesyFrancexStatistiquesxPériodiques2rameau aPatrimoineyFrancexStatistiquesxPériodiques2rameau a339.2v22a02aInstitut national de la statistique et des études économiquesc(France)4070 3aFRbAbesc20110323gAFNOR 3aFRbISSNc20100903 a074 uhttp://www.insee.fr/fr/publications-et-services/collection.asp?id=13&numpage=2&nombre=201 b(1995) -(2002/2003)cParisdMagasins/AnnexeeP 4° 7324 aDEW 310-319 aDEW 339 aGEO RA4.06 France 0101315nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210006000200326001500260530004700275606005200322606003900374606002700413710003800440801002100478856004900499856004200548856012800590856010800718955009500826972000900921992002300930992001200953038707403000001937020130319051830.01 a0014-9187 aFNSP152596 a0000019370 a19900101a19629999 ba0 aeng aUS aagu 10aReviewfFederal Reserve Bank of St. Louis aSt Louis, Mo.cFederal Reserve Bank of St. Louisd1962- aBimestriel00aReview - Federal Reserve Bank of St. Louis aBanques de la Réserve fédéralexPériodiques aFinancesyEtats-UnisxPériodiques aFinancesxPériodiques02aFederal Reserve Bank of St. Louis 3aFRbCCN0014-91874 uhttp://www.stls.frb.org/publications/review/ zContenu : texte intégral depuis 19744 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=FSL&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 47 no. 1 (jan-1965) -vol. 90 no. 6 (nov/dec-2008)cParisdMagasins/AnnexeeP 4° 2111 aZGRA aGEO RC2 Etats-Unis aDEW 33201196nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200010100154210005100255326001600306530010200322606003600424710011300460801002100573856003800594856007300632955006600705957007200771972000900843991001800852992001200870039093565000003726820130319051830.01 a0147-9032 aFNSP207899 a0000037268 a19900101a19779999 ba0 aeng aUS aahu 10aReviewfFernand Braudel Center for the Study of Economies, Historical Systems, and Civilizations aBinghampton, NYcFernand Braudel Centerd1977- aTrimestriel 0aReview - Fernand Braudel Center for the Study of Economies, Historical Systems, and Civilizations aSciences socialesxPériodiques02aFernand Braudel Center for the Study of Economies, Historical Systems, and Civilizationsc(Binghamton, N.Y.) 3aFRbCCN0147-90324 uhttp://fbc.binghamton.edu/rev.htm zContenu : sommaires et résumés depuis le vol. 1, no. 1, été 19771 bvol. 1 no. 1 (1977) -....cParisdMagasins/AnnexeeP 8° 40351 bvol. 1 (1977) -vol. 20 (1997)cParisdMagasins/AnnexeeP Index 0616 aZCAD aexempb201103 aDEW 30001296nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004000139210002800179326002300207326003300230452006300263606004500326606003600371606004600407606003700453801002100490856011400511856021400625955005900839972000900898991001800907992001900925992001400944039394158000003742620140108155624.01 a0305-6244 aFNSP208519 a19900101a19749999 ba0 aeng aGB aahu 10aReview of African political economy aSheffieldcROAPEd1974- aTrimestrielb1994- aTrois fois par anb1974-1993 1tReview of African political economy (Online)‎x1740-1720 aScience politiqueyAfriquexPériodiques aScience politiquexPériodiques aEconomie politiqueyAfriquexPériodiques aEconomie politiquexPériodiques 3aFRbCCN0305-62444 uhttp://www.tandf.co.uk/journals/carfax/03056244.htmlzContenu : sommaires depuis le vol. 23, n°67, mars 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713443496db=allzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1974) -....cParisdMagasins/AnnexeeP 8° 4051 aZSAB aexempb199912 aGEO RE Afrique aDEW 338.901361nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210004400198326002300242326002600265430004000291606004600331606004100377606005500418606003200473710006300505856012800568856010800696955008500804972000900889991001800898992003900916992003200955992001200987061149993000015818620130319051830.01 a0925-9880 aFNSP612431 a0000158186 a19900101a19929999 ba0 aeng aNL aaha 10aReview of Central and East European law aDordrechtcKluwer Academic Publ.d1992- aTrimestrielb1999- aBimestrielb1992-1998 1aReview of socialist law,x0165-0300 aDroityRussiexLégislationxPériodiques aDroityEurope de l'EstxPériodiques aDroityEurope de l'EstxLégislationxPériodiques aDroityRussiexPériodiques02aInstitute of East European Law and Russian Studies (Leyde)4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=MZ0&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 20 no. 4/5 (1994) -vol. 29 no. 4 (2004)cParisdMagasins/AnnexeeP 8° 6125 aZSAB aexempb201212 aGEO RA7.21 Russie (depuis 1991-92) aGEO RA2.02 Europe orientale aDEW 34901580nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154207003100185210002900216326001600245606003700261801002100298856010100319856010800420856009000528856010800618856012800726856010800854955012300962957010601085972000901191991001801200992001201218038783894000004940520130319051830.01 a0034-6527 aFNSP245139 a0000049405 a19900101a19339999 ba0 aeng aGB aahu 10aReview of Economic Studies 1avol. 1, no. 1 (jan-1933) - aOxfordcBlackwelld1933- aTrimestriel aEconomie politiquexPériodiques 3aFRbCCN0034-65274 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101101 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00346527.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=REM&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (oct-1933) -vol. 24 no. 3 (jun-1957) ; vol. 26 no. 3 (jun-1959) -....cParisdMagasins/AnnexeeP 8° 01171 bvol. 26 (1959) -vol. 48 (1981) ; vol. 47 (1980) -vol. 56 (1989)cParisdMagasins/AnnexeeP Index 0380 aZPAY aexempb201101 aDEW 33001787nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004300154210005000197326002500247326002700272430004900299530004300348606003700391710004800428801002100476856012800497856010800625856010100733856010800834856009000942856010801032955007101140955009501211957007401306972000901380992001201389038783916000003741020130812105515.01 a0034-6535 aFNSP208481 a0000037410 a19900101a19489999 ba0 aeng aUS aahu 14aThe Review of economics and statistics aAmsterdamcElsevier Science Publishersd1948- a5 n°s par anb2013- aTrimestrielb1948-2012 1aReview of economic statistics < P 4° 0046 >04aThe Review of economics and statistics aEconomie politiquexPériodiques02aHarvard UniversitybDepartment of Economics 3aFRbCCN0034-65354 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=RMS&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101819 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00346535.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 30 no. 1 (fev-1948) -....cParisdMagasins/AnnexeeP 4° 00461 bno. 74 (fev-1992) -vol. 84 no. 4 (nov-2002)cParisdBibliothèque de rechercheeP 4° 00461 b(1948) -(1978) ; (1979) -(1989)cParisdMagasins/AnnexeeP Index 0526 aZPAY aDEW 33000985nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000063001502100051002133000098002643260016003623360058003783370063004364520049004996060027005488010013005758560090005889550005006789920012006830000470131000047013120130319051830.0 a0000470131 a a19889999k fre 01 ba0 aeng aUS az aah z  adr 14aThe Review of financial studiesb[Ressource électronique] aNew-York, N.Y.cOxford University Pressd1988- aAccès au texte intégral (réservé aux sites de Sciences Po) jusqu'aux 3 dernières années aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tThe Review of financial studiesx(0893-9454) aFinancesxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/08939454.html1 r aDEW 33201194nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154210003100190326001600221430002200237606002500259606002900284710007200313801002100385856012800406856010300534856010800637955008400745972000900829991001800838992001200856038783991000003766120131202114253.01 a0034-6586 aFNSP209435 a0000037661 a19900101a19669999 ba0 aeng aUS aahu 14aThe Review of income and wealth aNew York, NYcIARIWd1966- aTrimestriel 1aIncome and wealth aRevenuxPériodiques aPatrimoinexPériodiques02aAssociation internationale de recherche sur le revenu et la fortune 3aFRbCCN0034-65864 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=2GZ&site=ehost-live4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=107607 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (mar-1966) -vol. 58 no. 4 (déc-2012)cParisdMagasins/AnnexeeP 8° 2961 aZPAY aexempb201106 aDEW 33901108nas 2200325 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200011900148210003000267320002300297326001600320517004900336606004400385606004400429676000800473710005300481801001300534856004200547856008300589955008900672972000900761992001200770070079846000048690220131028145812.01 a1475-3553 a a20019999k fre ba0 aeng aGB a 0  ar aah z 0 14aThe Review of international affairsfAvrasya Stratejik Arastirmalar MerkezifCenter for Eurasian Strategic Studies aLondoncFrank Cassd2001- aISSN non vérifié aTrimestriel14aThe Review of international affairs (London) aRelations internationalesxPériodiques aRelations internationalesxPériodiques a32702aAvrasya stratejik arastirmalar merkezic(Ankara) 0aFRbFNSP4 uhttp://www.frankcass.com/jnls/ria.htm zsommaires des numéros et résumés des articles depuis le vol. 1 no. 1 (2001)1 bvol. 1 no. 1 (aut-2001) -vol. 3 no. 4 (ete-2004)cParisdMagasins/AnnexeeP 8° 6651 aZSAB aDEW 32701311nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210002900200326002200229326002800251326002700279326002400306517000900330606003700339606005700376856012800433856010800561856010900669856010800778955006600886972000900952992001200961044740557000013071820140107132627.01 a0969-2290 aFNSP531176 a0000130718 a19940621a19949999 ba0 aeng aGB aaia 10aReview of international political economy aLondoncRoutledged1994- aBimestrielb2013- a5 nos par anb2004-2012 aTrimestrielb1995-2003 a3 n°s par anb199410aRIPE aEconomie politiquexPériodiques aRelations économiques internationalesxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=5C6&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713393878db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1994) -....cParisdMagasins/AnnexeeP 8° 6044 aZSAB aDEW 33701161nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154207003100190210004900221326001600270430006100286606004400347676000800391710004600399801002100445856010600466856010800572955007100680972000900751991001800760992003300778992001200811039309959000003752920140110152615.01 a0260-2105 aFNSP208753 a0000037529 a19900101a19819999 ba0 aeng aGB aahu 10aReview of international studies 1aVol. 7, no. 1 (Jan. 1981)- aCambridgecCambridge University Pressd1981- aTrimestriel 1aBritish journal of international studiesxISSN 0305-8026 aRelations internationalesxPériodiques a32702aBritish International Studies Association 3aFRbCCN0260-21054 uhttps://acces-distant.sciences-po.fr/fork?http://journals.cambridge.org/action/displayJournal?jid=RIS zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 27 no. 1 (jan-1981) -....cParisdMagasins/AnnexeeP 8° 3662 aZSAB aexempb201001 aGEO RS Sans aspect régional aDEW 32700869cas0 2200301 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200003400174210003200208606003100240801003000271801003000301802000700331856006500338856005400403955005300457991002000510992001200530992002500542039400247000110616220130319051830.01 a0307-7985 accn0307-7985 a0001106162 a19890115a19759999 0frey0103 ba0 aeng aGB ay  aau 10aReview of middle east studies aLondoncIthaca Pressd1975- aMoyen-OrientxPériodiques 3aFRbAbesc20081202gAFNOR 3aFRbAbesc20040914gAFNOR a024 uhttp://www.mesa.arizona.edu/publications/review_homepage.htm zContenu: sommaire des n°s depuis le no. 1 (2009)1 bno. 1 (1975)cParisdMagasins/AnnexeeP 8° 3788 aPériobTP06 P8 aDEW 956 aGEO RG2 Moyen-Orient01608nas 2200385 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200003400148210005500182300008500237326002600322326002700348430003800375452005500413530003400468606004900502606003700551710004400588801001300632856012800645856010800773856010100881856010800982955008401090972000901174992002301183992001601206076872106000048292720131119113803.01 a1541-132X a a20022011k fre ba0 aeng aUS a 0  ar aag z 0 14aThe Review of policy research aChampaign, ILLcPolicy Studies Organizationd2002- aDernière édition papier 2011 ; à partir de 2012, version en ligne uniquement. aBimestrielb2004-2011 aTrimestrielb2002-2003 1tPolicy studies review,x0278-4416 1tThe review of policy research (Online),x1541-133814aThe review of policy research aPolitique publiqueyEtats-UnisxPériodiques aPolitique publiquexPériodiques02aPolicy Studies Organizationc(New York) 0aFRbFNSP uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=MJJ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=110495 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 19 no. 1 (2002) -vol. 28, no. 6 (2011)cParisdMagasins/AnnexeeP 8° 4443 aZPAY aGEO RC2 Etats-Unis aDEW 350-35401348nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210002600186326001600212606003700228856012800265856010800393856010300501856010800604856010900712856010800821955006600929972000900995991001801004992001201022040083608000003834820130319051830.01 a0953-8259 aFNSP212739 a0000038348 a19900101a19899999 ba0 aeng aGB aaha 10aReview of political economy aLondoncArnoldd1989- aTrimestriel aEconomie politiquexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=RPE&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=102233 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713444532db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1989) -....cParisdMagasins/AnnexeeP 8° 5743 aZPAY aexempb201111 aDEW 33001245nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154207003200181210005400213326001600267606003600283606004800319710002900367801002100396856002700417856003600444856009000480856010800570955007000678955006900748972000900817991001800826992002300844992001600867038784122000003753120131220101910.01 a0034-6705 aFNSP208756 a0000037531 a19900101a19399999 ba0 aeng aUS aahu 14aThe review of politics 1aVol. 1, no. 1 (Jan. 1939) - aNotre Dame, Ind.cUniversity of Notre Damed1939- aTrimestriel aScience politiquexPériodiques aScience politiqueyEtats-UnisxPériodiques02aUniversity of Notre Dame 3aFRbCCN0034-67054 uhttp://www.nd.edu/rop/ zContenu : sommaires depuis 19924 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00346705.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 9 no. 1 (jan-1947) -....cParisdMagasins/AnnexeeP 8° 01951 bL'année en courscParisdBibliothèque de rechercheeP 8° 0195 aZCAD aexempb201101 aGEO RC2 Etats-Unis aDEW 320-32100914nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210003500200326001600235606003700251710005600288801002100344856007000365856010800435955007000543972000900613992001400622039623912000004941320130319051830.01 a0486-6134 aFNSP245156 a0000049413 a19900101a19699999 ba0 aeng aUS aahu 14aThe Review of radical political economics aRiverside, Calif.cURPEd1969- aTrimestriel aEconomie politiquexPériodiques02aUnion for Radical Political Economicsc(Etats-Unis) 3aFRbCCN0486-61344 uhttps://acces-distant.sciences-po.fr/fork?http://rrp.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 1 (pri-1971) -....cParisdMagasins/AnnexeeP 4° 3173 aZPAY aDEW 330.101534nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006200154210002900216326001600245606004100261606004800302710005100350856012800401856010800529856012800637856010800765856010900873856010800982955006701090972000901157991001801166992001201184038784165000019514720130319051830.01 a0034-6764 aFNSP717048 a0000195147 a19900101a19429999 ba0 aeng aGB aaha 10aReview of social economy Association for Social Economics aLondoncRoutledged1942- aTrimestriel aSociologie économiquexPériodiques aEconomie sociale et solidairexPériodiques02aAssociation for Social Economicsc(Etats-Unis)4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=RSY&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=RSY&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713708792db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 53 no. 1 (1995) -....cParisdMagasins/AnnexeeP 8° 6254 aZSAB aexempb201212 aDEW 33001091nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200009700163210003900260326001600299430004400315530004400359606003700403606005700440710005200497801001300549856004500562856006700607955006800674972000900742992001400751070699631000053958720130319051830.01 a1610-2878 a0000539587 a a20039999k fre ba0 aeng aDE a 0  ar aah z 0 10aReview of World Economics =dWeltwirtschaftliches ArchivfKiel Institute for World Economics aHeidelbergcSpringer-Verlagd2003- aTrimestriel 1tWeltwirtschaftliches Archiv,x0043-263600aReview of World Economicsb(Heidelberg) aEconomie politiquexPériodiques aRelations économiques internationalesxPériodiques02aInstitut für Weltwirtschaftc(Kiel, Allemagne) 0aFRbFNSP4 uhttp://www.uni-kiel.de/ifw/pub/wa/wa.htm zContenu : sommaires et résumés depuis le vol.138, n°1, 20021 bvol. 139 no. 1 (2003) -....cParisdMagasins/AnnexeeP 8° 0309 aZPAY aDEW 330.901007nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002600139210004700165326001600212452004900228530002600277606002900303606003800332710003200370801002100402856010800423955008300531972000900614991001800623992004000641992001200681039480542000003766520130725164132.01 a0350-154X aFNSP209446 a19900101a19719999 ba0 ascr aYU aahu 10aRevija za sociologiju aZagrebcSociolosko drustvo Hrvatsked1971- aTrimestriel 1tRevija za sociologiju (Online)‎x1846-795400aRevija za sociologiju aSociologiexPériodiques aSociologieyCroatiexPériodiques02aSociolosko drustvo Hrvatske 3aFRbCCN0350-154X4 uhttp://www.hsd.hr/revija/zAccès libre au texte intégral (format PDF) depuis le vol. 33, no 3/4, 20021 bvol. 1 no 1 (1971) -vol. 38 no. 3/4 (2007)cParisdMagasins/AnnexeeP 8° 3305 aZPAY aexempb201005 aGEO RA8.23 Croatie (depuis 1991-92) aDEW 30101078nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210003000198326001800228606004500246606003600291710008800327801002100415856009300436856004700529955009300576972000900669991001800678992002100696992002300717992001200740038976722000011001020130319051830.01 a0102-6909 aFNSP464039 a0000110010 a19900101a19869999 ba0 apor aBR aaia 10aRevista brasileira de ciências sociais aSão PaulocANPOCSd1986- a3 n°s par an aSciences socialesyBrésilxPériodiques aSciences socialesxPériodiques02aAssociação nacional de pós-graduação e pesquisa em ciências sociaisc(Bresil) 3aFRbCCN0102-69094 uhttp://www.scielo.br/scielo.php?script=sci_issuetoc&pid=0102-690920060002&lng=en&nrm=iso zContenu : accès aux sommaires depuis 19971 bvol. 12 no. 33 (fev-1997) -vol. 16 no. 47 (oct-2001)cParisdMagasins/AnnexeeP 8° 4971 aZSAB aexempb201003 aGEO RQ Universel aGEO RD4.13 Brésil aDEW 30001281nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154207002500189210005300214326001600267510000800283606004600291606005500337607005800392607004900450710004200499801002100541830003400562856008300596955006700679957005700746972000900803991001800812992002800830992002300858992001400881038784289000003766620130319051830.01 a0034-7140 aFNSP209447 a0000037666 a19900101a19479999 ba0 apor aBR aahu 10aRevista brasileira de economia 1avol. 1 no. 1 (1947)- aRio de JaneirocFundaçâo Getulio Vargasd1947- aTrimestriel10aRBE aEconomie politiqueyBrésilxPériodiques aEconomie politiqueyAmérique latinexPériodiques aAmérique latinexPolitique économiquexPériodiques aBrésilxPolitique économiquexPériodiques02aFundação Getúlio Vargasc(Brésil) 3aFRbCCN0034-7140 a1947 --> 1984 donné au CTLES4 uhttp://www.scielo.br/scielo.php?script=sci_serial&pid=0034-7140&lng=en&nrm=iso1 bvol. 39 no. 2 (1985) -....cParisdMagasins/AnnexeeP 8° 01141 b(1947) -(1976)cParisdMagasins/AnnexeeP Index 0312 aZPAY aexempb201101 aGEO RD Amérique latine aGEO RD4.13 Brésil aDEW 330.901323nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210002800195326001600223430003700239517003200276517010600308530004700414606005700461606004400518710007800562856008800640856003700728955006700765957010200832972000900934991001800943992001200961087943921000012082720130319051830.01 a1133-6595 aFNSP498245 a0000120827 a19940311a19859999 ba0 aspa aES aaja 10aRevista CIDOB d'afers internacionals aBarcelonacCIDOBd1985- aTrimestriel 1aAfers internacionals,x0212-178610aAfers internacionals (1985)10aRevista Centre d'Informació i Documentació Internacionals a Barcelona d'afers internacionals (1985)10aRevista CIDOB d'afers internacionalsb1985 aRelations économiques internationalesxPériodiques aRelations internationalesxPériodiques02aCentre d'informació i documentació internacionalsc(Barcelone, Espagne)4 uhttp://www.cidob.org/es/publicaciones/revistas/revista_cidob_d_afers_internacionals zAccès libre au texte intégral.1 bno. 7 (aut/hiv-1985) -....cParisdMagasins/AnnexeeP 8° 46571 bno. 0 (1982) -no. 23/24 (1992)cParisdMagasins/Annexezse trouve dans le n°25, 1993 de la revue aZSAB aexempb201003 aDEW 32701331nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200006900163210002600232225003600258326001500294430007200309512004400381532007100425606002400496606003300520710003600553801001300589830008400602856006500686856006900751955006000820972000900880992002300889992002100912992001200933038984172000043948020130319051830.01 a0104-3315 a0000439480 a a19689999k fre ba0 apor aBR a 0  ar aaj z 0 10aRevista da Faculdade de direito. Universidade Federal do Paranã aCuritibacUFPRd1968-20aColeção acadêmica de direito aSemestriel 1tRevista da Faculdade de direito, Universidade do Parañax0526-430810aRevista da Faculdade de direito da UFPR10aRevista da Faculdade de direito da Universidade Federal do Paraña aDroitxPériodiques aDroityBrésilxPériodiques02aUniversidade federal do Paraná 0aFRbFNSP aAño 11, n°11, 1968 ---> 1998 < P 8° 2752 > collection donnée au CTL en 20024 uhttp://ojs.c3sl.ufpr.br/ojs2/index.php/direito/issue/archive4 zAccès aux sommaires et texte intégral depuis le volume 1, 19531 bno. 32 (1999) -....cParisdMagasins/AnnexeeP 8° 2752 aZECH aGEO RD4.13 Brésil aGEO RQ Universel aDEW 34901298nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004000139210005300179326001600232430007100248452006100319517000800380530005300388606004600441607004200487710004200529801002100571856011800592955020500710991001800915992002300933992001600956038784599000003777920130524122331.01 a0034-7612 aFNSP209959 a19900101a19679999 ba0 apor aBR aahu 10aRevista de administração pública aRio de JaneirocFundaçâo Getulio Vargasd1967- aTrimestriel 1aBoletim do Centro de pesquisas administrativas da EBAP,x0101-1871 1tRevista de administração pública (Online),x1982-313410aRAP aRevista de administração pública‎bImpresso aPolitique publiqueyBrésilxPériodiques aBrésilxAdministrationxPériodiques02aFundação Getúlio Vargasc(Brésil) 3aFRbCCN0034-76124 uhttp://bibliotecadigital.fgv.br/ojs/index.php/rap$Accès libre au texte intégral à partir du vol. 1, no 1, 19671 bvol. 1 no. 2 (1967) -vol. 31 no. 3 (1997)cParisdMagasins/AnnexeeP 8° 2738wManquant : vol. 20, no 4, 1986 à vol. 22, no 1, 1988 ; vol. 23, no 1, 1989 à vol. 24, no. 4, 1990 ; vol. 31, no 2, 1997 aexempb201305 aGEO RD4.13 Brésil aDEW 350-35401358nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004000154210006800194326001600262530004800278606009400326606004700420607004200467710005000509801002100559856004800580856012200628955009600750957007200846972000900918991001800927992002300945992001600968992001200984038784610000003780720130319051830.01 a0034-7639 aFNSP210039 a0000037807 a19900101a19509999 ba0 aspa aES aaha 10aRevista de administración pública aMadridcCentro de Estudios Políticos y Constitucionalesd1950- aTrimestriel 0aRevista de administración públicabMadrid aAdministration localexDroityEspagnexCommunautés autonomesxPériodiquesxPériodiques aDroit administratifyEspagnexPériodiques aEspagnexAdministrationxPériodiques02aCentro de estudios constitucionalesc(Madrid) 3aFRbCCN0034-76394 uhttp://revistas.cepc.es/revistas.aspx?IDR=1 zContenu : accès aux sommaires depuis le n°1, enero-abril 1950 et texte intégral sauf pour les 4 dernières années1 bno. 1 (1950) -no. 135 (1994) ; no. 160 (jan-2003) -....cParisdMagasins/AnnexeeP 8° 08701 bno. 1 (1950) -no. 129 (1992);cParisdMagasins/AnnexeeP Index 0205 aZCAD aexempb201211 aGEO RA6.02 Espagne aDEW 350-354 aDEW 34201314nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000650013921001010020432600150030545200670032053000550038760600430044260600360048571000530052185600830057485601330065795500640079095700700085497200090092499100180093399200210095199200160097203967830X000003780820130917144505.01 a0716-1417 aFNSP210041 a19900101a19799999 ba0 aspa aCL aaha 10aRevista de ciencia políticafInstituto de Ciencia Política aSantiago‎cInstituto de Ciencia Política. Pontificia Universidad Católica de Chile‎d1979- aSemestriel 1tRevista de ciencia política (Santiago. En línea),x0718-090X aRevista de ciencia política‎bSantiago. Impresa aScience politiqueyChilixPériodiques aScience politiquexPériodiques02aInstituto de ciencia política (Santiago, Chili)4 uhttp://www.scielo.cl/scielo.php?script=sci_issues&pid=0718-090X&lng=es&nrm=iso zContenu: sommaires, résumés et texte intégral depuis le volume 22, n°2, 2002 ; recherche possible par titre, auteur ou sujet1 bvol. 6 no.2 (1984) -....cParis,Magasins/AnnexeeP 8° 49141 bvol.1 (1979) -vol. 20 (1999)cParis,Magasins/AnnexeeP Index 0843 aZCAD aexempb201002 aGEO RD4.14 Chili aDEW 320-32101534nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154207008000187210007200267326001500339530005300354606005400407606004800461710006600509801002100575856003700596856005300633856017000686856003700856955005900893957010300952972000901055991001801064992002801082992002601110992001201136038784769000004927220130319051830.01 a0034-7817 aFNSP244789 a0000049272 a19900101a19579999 ba0 aspa aPR aaju 10aRevista de ciencias sociales 1avol. 1 no. 1 (mar-1957) -vol. 30 no. 3/4 (mai-1995) ; n.s no. 1 (jun-1996)- aRio Piedras, Puerto RicocCentro de investigaciones socialesd1957- aSemestriel02aRevista de ciencias socialesbRío Piedras, P.R. aSciences socialesyAmérique latinexPériodiques aSciences socialesyPorto RicoxPériodiques02aCentro de investigaciones sociales (Rio Piedras, Puerto Rico) 3aFRbCCN0034-78174 uhttp://cis.uprrp.edu/revista.htm zContenu : sommaires et résumés depuis le n°134 uhttp://sala.clacso.org.ar/gsdl/cgi-bin/library?e=d-000-00---0prcisp--00-0-0Date--0prompt-10---4------0-1l--1-es-Zz-1---20-about---00031-001-0-0utfZz-8-00&a=p&p=about zAccès libre au texte intégral.1 bno. 1 (1957) -....cParisdMagasins/AnnexeeP 8° 18811 b(1957) -(2002)cParisdMagasins/Annexezcet index se trouve dans le no. 12, hiver 2003 de la revue aZPAY aexempb201009 aGEO RD Amérique latine aGEO RD3.32 Porto Rico aDEW 97201149nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000330015421000480018732600150023553000440025060600540029460600360034871000300038480100210041485601280043585601080056395500730067199100180074499200210076299200280078399200120081103962241X000003781320130319051831.01 a0482-5276 aFNSP210050 a0000037813 a19900101a19599999 ba0 aspa aCR aahu 10aRevista de ciencias sociales aSan JosécUniversidad de Costa Ricad1959- aSemestriel 0aRevista de ciencias socialesbSan José aSciences socialesyAmérique latinexPériodiques aSciences socialesxPériodiques02aUniversidad de Costa Rica 3aFRbCCN0482-52764 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=L1O&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 11 (avr-1976) -no. 44 (1989)cParisdMagasins/AnnexeeP 8° 4333 aexempb201101 aGEO RQ Universel aGEO RD Amérique latine aDEW 30001199nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004300154210006700197326002400264326002600288430005500314601004400369606003400413606004400447710006200491856003800553856010600591955006600697972000900763991001800772992005700790992001400847036356352000023665720130319051831.01 a1138-4026 aFNSP837005 a0000236657 a19900101a19979999 ba0 aspa aES aaia 10aRevista de derecho comunitario europeo aMadridcCentro de estudios politicos y constitucionalesd1997- a3 nos par anb2002- aSemestrielb1997-2001 1aRevista de instituciones europeas,xISSN 0210-092402aCommunautés européennesxPériodiques aDroit européenxPériodiques aInstitutions européennesxPériodiques02aCentro de estudios politicos y constitucionalesc(Madrid)4 uhttp://www.cepc.es/revistasre.asp zContient : sommaires depuis le n°1, janvier 1997, texte intégral sauf pour les 4 dernières années1 bvol. 1 no. 1 (1997) -....cParisdMagasins/AnnexeeP 8° 3497 aZSAB aexempb201006 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 341.201117nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210005200188326001600240606005500256607005800311607004900369712003300418856002700451856012600478955007100604972000900675991001800684992002800702992002300730992001200753992001400765038972131000010478120130319051831.01 a0101-3157 aFNSP446315 a0000104781 a19900101a19899999 ba0 apor aBR aaha 10aRevista de economia política aSão PaulocCentro de Economia Políticad1981- aTrimestriel aEconomie politiqueyAmérique latinexPériodiques aAmérique latinexPolitique économiquexPériodiques aBrésilxPolitique économiquexPériodiques02aCentro de economia política4 uhttp://www.rep.org.br/ zContenu : sommaires, résumés et texte intégral (sauf dernière année) depuis le volume 1, n°1, janvier-février 19811 bvol. 9 no. 1 = 33 (1989) -....cParisdMagasins/AnnexeeP 8° 5586 aZPAY aexempb201110 aGEO RD Amérique latine aGEO RD4.13 Brésil aDEW 330 aDEW 338.901203nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009500154210005400249326001500303430004600318517003100364530003500395606003700430606002800467710004800495801002100543830012100564856004000685856003600725955006500761992002300826992001600849038784955000006925320130319051831.01 a0034-8082 aFNSP320353 a0000069253 a19900101a19529999 ba0 aspa aES aagu 10aRevista de educaciónfMinisterio de educación y cienciagSecretaria general de educacion aMadridcMinisterio de educación y cienciad1952- aBimestriel 1aRevista nacional de educaciónx0210-226910aR.E. Revista de educación10aRevista de educación (Madrid) aEducationyEspagnexPériodiques aEducationxPériodiques02aEspagnebMinisterio de educación y ciencia 3aFRbCCN0034-8082 aVol. 7, n°88, 1958 -vol. 31, n°272, 1983 < P 4° 2284 > et < P Index 0444 > collection donnée au CTL en juin 20024 uhttp://www.revistaeducacion.mec.es/ zAccès libre au texte intégral1 bno. 339 (jan-2006) -....cParisdMagasins/AnnexeeP 8° 6997 aGEO RA6.02 Espagne aDEW 370-37901179nls 2200349 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000063001502070011002132100044002242300024002683260016002926060051003086060050003596060050004096060049004596060051005086060050005597120040006098010013006498560113006628560037007759550005008129920012008170001231658000123165820130319051831.0 a0001231658 a a19809999k fre 01 ba0 aspa aES ar aah z  adr 10aRevista de Estudios de Juventudb[Ressource électronique] 1a1980-1 aMadrid;cInstituto de la Juventud$1980- aRevue électronique aTrimestriel aJeunesseyEspagnexConditions sociales2rameau aJeunesseyEuropexConditions sociales2rameau aJeunessexPolitique publiqueyEspagne2rameau aJeunessexPolitique publiqueyEurope2rameau aJeunessexActivité politiqueyEspagne2rameau aJeunessexActivité politiqueyEurope2rameau02aInstituto de la juventudc(Espagne) 0aFRbFNSP4 uhttp://www.injuve.mtas.es/contenidos.type.action?type=1408152728&menuId=1408152728&mimenu=Revista%20Juventud zAccès libre au texte intégral.1 r aDEW 30001423nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210006700189326001500256606004500271606004000316606004900356606003600405676000800441710006200449711005000511801002100561801001300582856004800595856010900643955006700752955006600819957007400885972000900959991001800968992002300986992001601009038831104000000546120130319051831.01 a0048-7694 aFNSP108367 a0000005461 a19900101a19409999 ba0 aspa aES aagu 10aRevista de estudios políticos aMadridcCentro de estudios politicos y constitucionalesd1941- aBimestriel aScience politiqueyEspagnexPériodiques aDroit constitutionnelxPériodiques aDroit constitutionnelyEspagnexPériodiques aScience politiquexPériodiques a32002aCentro de estudios politicos y constitucionalesc(Madrid)02aCentro de estudios constitucionalesc(Madrid) 3aFRbCCN0048-7694 0aFRbFNSP4 uhttp://revistas.cepc.es/revistas.aspx?IDR=3 zContient : sommaires depuis le numéro 1, janvier/mars 1941 et texte intégral sauf 4 dernières années1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bvol. 1 no. 1 (1941) -....cParisdMagasins/AnnexeeP 8° 00471 b(1941) -(1955) ; (1956) -(1960)cParisdMagasins/AnnexeeP Index 0046 aZGRA aexempb201011 aGEO RA6.02 Espagne aDEW 320-32101072nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000107001642100054002713260015003256060045003406060038003856070026004237120069004498010013005188560026005318560063005579550078006209720009006989920016007079920023007230000476898000047689820130319051831.01 a0104-4478 a0000476898 a a19939999k fre ba0 apor aBR a 0  ar aaj z 0 10aRevista de sociologia e politicafDepartamento de Ciências sociais da Universidade Federal do Paranà aCuritibacDepartamento de ciencias sociaisd1993- aSemestriel aScience politiqueyBrésilxPériodiques aSociologieyBrésilxPériodiques aBrésilxPériodiques02aUniversidade federal do ParanabDepartamento de ciencias sociais 0aFRbFNSP4 uhttp://www.scielo.br/ zContenu : texte intégral de la revue depuis le n°1, 19931 bno. 12 (jun-1999) ; no. 14 (jun-2000)cParisdMagasins/AnnexeeP 4° 6939 aZSAB aDEW 320-321 aGEO RD4.13 Brésil01026nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003900139210004300178326001200221530003800233606003700271606006700308607005200375710008400427801002100511856007500532955007000607972000900677992002400686992001400710038673975000008998420131205161516.01 a0005-4828 aFNSP396573 a19900101a19279999 ba0 aspa aCO aafa 10aRevista del Banco de la República aBogotácBanco de la Repúblicad1927- aMensuel10aRevista del Banco de la Republica aFinancesyColombiexPériodiques aDroit public économiqueyColombiexLégislationxPériodiques aColombiexConditions économiquesxPériodiques02aBanco de la Repúblicac(Colombie)bDepartamento de investigaciones económicas 3aFRbCCN0005-48284 uhttp://www.banrep.gov.co/revista-banco$Accès libre au texte intégral1 bno. 698 (1985) -no 963 (2008)cParisdMagasins/AnnexeeP 4° 1217 aZPAY aGEO RD4.16 Colombie aDEW 330.901426nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005700154210006000211300025700271326001900528606006600547606004000613606004900653606004600702710005400748856005100802856003600853955006800889972000900957991001800966992002300984992005701007992001201064036343714000025664520130319051831.01 a1137-5868 aFNSP895101 a0000256645 a19980929a19979999 ba0 aspa aES aafa 10aRevista del Ministerio de trabajo y asuntos sociales aMadridcMinisterio de trabajo y asuntos socialesd1997- aLa revue comporte 5 séries qui paraissent avec une numérotation continue à raison de 2 n°s dans chacune des séries suivantes : Dercho del trabajo, Seguridad social, Derecho social internacional y comunitario, Economia y sociologia,Asuntos sociales a10 n°s par an aSécurité socialeyPays de l'Union européennexPériodiques aDroit socialyEspagnexPériodiques aDroit social (droit européen)xPériodiques aSécurité socialeyEspagnexPériodiques02aEspagnebMinisterio de trabajo y asuntos sociales4 uhttp://www.mtas.es/publica/revista/default.htm zAccès libre au texte intégral1 bno. 1 (1997) -no. 78 (2008)cParisdMagasins/AnnexeeP 8° 6428 aZPAY aexempb201212 aGEO RA6.02 Espagne aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 33101544nls 2200361 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000084001502100060002342300024002943000258003183260019005764370132005956060066007276060040007936060049008336060046008827100054009288010013009828560054009958560036010499550005010859920023010909920057011139920012011700001162060000116206020130319051831.0 a0001162060 a a20009999k fre 01 ba0 aspa aES ar aaf z  adr 10aRevista del Ministerio de trabajo y asuntos socialesb[Ressource électronique] aMadridcMinisterio de trabajo y asuntos socialesd2000- aRevue électronique aLa revue comporte 5 séries qui paraissent avec une numérotation continue à raison de 2 n°s dans chacune des séries suivantes : Dercho del trabajo, Seguridad social, Derecho social internacional y comunitario, Economia y sociologia, Asuntos sociales a10 n°s par an 1aEconomia y sociologia del trabajo (0214-6029)

et de Revista de trabajo y seguridad social (1132-8584)

 aSécurité socialeyPays de l'Union européennexPériodiques aDroit socialyEspagnexPériodiques aDroit social (droit européen)xPériodiques aSécurité socialeyEspagnexPériodiques02aEspagnebMinisterio de trabajo y asuntos sociales 0aFRbFNSP4 uhttp://www.mtas.es/es/publica/revista/default.htm zAccès libre au texte intégral1 r aGEO RA6.02 Espagne aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 33101446cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200009700162210010700259326001500366530003300381606005400414607005100468710009000519801003000609801002300639802000700662856008800669856009200757856006900849856005500918955007400973992001601047992002101063093357184000116776120130319051831.01 a0718-0241 aissn07180241 a0001167761 a20040609a20039999k y0frey0103 ba0 aspa aCL ar aaja uu 10aRevista enfoqueseciencia política y administración públicafUniversidad Central de Chile aSantiagocFacultad de ciencias politicas y administracion publica, Universidad Central de Chiled2003- aSemestriel10aRevista enfoquesb(Santiago) aScience politiqueyAmérique latinexPériodiques aAmérique latinexAdministrationxPériodiques02aUniversidad Central de ChilebFacultad de ciencias politicas y administracion publica 3aFRbAbesc20090427gAFNOR 3aFRbISSNc20090427 a134 uhttp://dialnet.unirioja.es/servlet/revista?tipo_busqueda=CODIGO&clave_revista=11361 zSommaire des n°s depuis le no. 5 (2004), résumé et/ou texte intégral selon les n°s4 uhttp://redalyc.uaemex.mx/src/inicio/HomRevRed.jsp?iCveEntRev=960 zSommaires et texte intégral depuis le n°3 (2004)1 bvol. 6 no. 8 (jan/jun-2008) -....cParisdMagasins/AnnexeeP 8° 7092 aDEW 320-321 aGEO RD4.14 Chili01055nas 2200313 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200010700148210002400255326001800279530004300297606003600340606004500376710007100421801001300492856004200505856008300547955006300630972000900693992001600702992002300718058381465000040601220130925161512.01 a1575-6548 a a19999999k fre ba0 aspa aES a 0  ar aaj z 0 10aRevista española de ciencia politicafAsociacion española de ciencia politica y de la administracion aMadridcPonsd1999- a3 n°s par an aRevista española de ciencia política aScience politiquexPériodiques aScience politiqueyEspagnexPériodiques02aAsociación española de ciencia política y de la administración 0aFRbFNSP4 uhttp://www.aecpa.es/revista/recp.html zContenu : Sommaires, résumés et texte intégral depuis le n°1, octobre 19991 bno. 1 (oct-1999) -....cParisdMagasins/AnnexeeP 8° 6585 aZSAB aDEW 320-321 aGEO RA6.02 Espagne01268nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004800154210005500202326001800257606004900275606009400324710005000418711006200468801002100530856004800551856011300599955007000712957008600782972000900868991001800877992002300895992001200918039196518000003800620130319051831.01 a0211-5743 aFNSP210877 a0000038006 a19900101a19819999 ba0 aspa aES aaiu 10aRevista española de derecho constitucional aMadridcCentro de estudios constitucionalesd1981- a3 n°s par an aDroit constitutionnelyEspagnexPériodiques aAdministration localexDroityEspagnexCommunautés autonomesxPériodiquesxPériodiques02aCentro de estudios constitucionalesc(Madrid)02aCentro de estudios politicos y constitucionalesc(Madrid) 3aFRbCCN0211-57434 uhttp://revistas.cepc.es/revistas.aspx?IDR=6 zContient : sommaires depuis le n 1, janvier-avril 1981 et texte intégral sauf pour les 4 dernières années1 bvol. 3 no. 7 (jan-1983) -....cParisdMagasins/AnnexeeP 8° 46711 bvol. 1 no. 1 (1981) -vol. 13 no. 39 (1993)cParisdMagasins/Annexe:eP Index 0725 aZSAB aexempb201003 aGEO RA6.02 Espagne aDEW 34201125nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004700154210010100201326001500302606003800317710011600355801002100471856005900492955006700551955008200618957007200700991001800772992001200790992002100802038785536000003801020130319051831.01 a0034-9380 aFNSP210881 a0000038010 a19900101a19489999 ba0 aspa aES aahu 10aRevista española de derecho internacional aaMadridcConsejo Superior de Investigaciones Científicas. Instituto Francisco de Vitoriad1948- aSemestriel aDroit internationalxPériodiques02aInstituto de ciencias jurídicas (Espagne). Departamento de derecho internacional "Francisco de Vitoria‎4070 3aFRbCCN0034-93804 uhttp://dialnet.unirioja.es/servlet/revista?codigo=12201 bvol. 58 no. 1 (2006) -....cParisdMagasins/AnnexeeP 8° 70181 bvol. 1 no. 1 (1948) -vol. 45 no. 2 (1993)cParisdMagasins/AnnexeeP 8° 08581 bvol. 1 (1948) -vol. 35 (1983)cParisdMagasins/AnnexeeP Index 0633 aexempb201101 aDEW 341 aGEO RQ Universel01522nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005500154210006400209326001600273430006100289517006100350530007200411606002900483606003800512676000800550710005500558801002100613856012800634856010800762955006600870955006800936957007001004972000901074991001801083992002301101992001201124039192202000003801220130319051831.01 a0210-5233 aFNSP210883 a0000038012 a19900101a19789999 ba0 aspa aES aahu 10aRevista española de investigaciones sociológicas aMadridcCIS, Centro de investigaciones sociológicasd1978- aTrimestriel 1aRevista española de la opinion públicaxISSN 0034-942910aREIS. Revista española de investigaciones sociológicas00aRevista española de investigaciones sociológicasbEd. en español aSociologiexPériodiques aSociologieyEspagnexPériodiques a30102aCentro de investigaciones sociológicasc(Espagne) 3aFRbCCN0210-52334 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=HHY&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3011 bno. 1 (jan-mar 1978) - ....cParisdMagasins/AnnexeeP 8° 40811 bno. 1 (1978) -no. 68 (1994)cParisdMagasins/AnnexeeP Index 0578 aZGRA aexempb201010 aGEO RA6.02 Espagne aDEW 30101327nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200012100139207001900260210002800279326001500307430006700322510006000389530006200449607003500511607003500546676000800581710007300589856011400662955006600776955006400842972000900906992002200915992002800937992001200965040035166000000795620130826162137.01 a0924-0608 aFNSP113642 a19900521a19899999 ba0 amul aNL aaja 10aRevista europea de estudios latinoamericanos y del Caribed= European review of Latin American and Caribbean studies 1ano. 47 (1989)- aAmsterdamcCEDLAd1989- aSemestriel 1aBoletín de estudios latinoamericanos y del Caribe,x0304-263410aEuropean review of latin american and caribbean studies00aRevista europea de estudios latinoamericanos y del caribe aRégion caraïbexPériodiques aAmérique latinexPériodiques a98002aCentrum voor studien en documentatie van Latijns Amerika (Amsterdam)4 uhttp://www.cedla.uva.nl/50_publications/erlacs_index.htmlzAccès libre au texte intégral depuis no 48, 19901 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9801 bno. 47 (dec-1989) -....cParisdMagasins/AnnexeeP 8° 3196 aZPAY aGEO RD3 Caraïbes aGEO RD Amérique latine aDEW 98001210nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200013200163210011100295326001700406517000900423606004400432606004400476607006600520710008800586801001300674856003400687955008900721972000900810991001800819992001200837992002300849058334319000048888520130319051831.01 a1516-5973 a0000488885 a a19999999k fre ba0 apor aBR a 0  ar aai z 0 10aRevista internacional de estudos politicosfUniversidade do Estado do Rio de Janeiro. Nucleo superior de estudos governamentais aRio de JaneirocUniversidade do Estado do Rio de Janeiro, Nucleo superior de estudos governamentaisd1999- a3 nos par an10aRIEP aRelations internationalesxPériodiques aRelations internationalesxPériodiques aBrésilxPolitique et gouvernementz20e sièclexPériodiques02aUniversidade do Estado do Rio de JaneirobNucleo superior de estudos governamentais 0aFRbFNSP4 uhttp://www.pep.nuseg.uerj.br/1 bvol. 1 no. 1 (avr-1999) -vol. 2 no. 2 (aou-2000)cParisdMagasins/AnnexeeP 8° 6657 aZSAB aexempb201212 aDEW 327 aGEO RD4.13 Brésil01298nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004000154210002400194326002800218326002700246517000800273606003800281606002900319710005500348801002100403856007200424856019500496955011000691957007000801972000900871992002300880992003300903992001200936038785684000003801820130319051831.01 a0034-9712 aFNSP210892 a0000038018 a19900101a19429999 ba0 aspa aES aaiu 10aRevista internacional de sociologia aMadridcCSICd1942- aTrois n° par anb1992- aTrimestrielb1942-198910aRIS aSociologieyEspagnexPériodiques aSociologiexPériodiques02aInstituto de estudios sociales avanzadosc(Madrid) 3aFRbCCN0034-97124 uhttp://revintsociologia.revistas.csic.es/index.php/revintsociologia zContenu : sommaires et résumés (en anglais et en espagnol) depuis le n°1, janvier-avril 1992 ; accès au texte intégral (à l'exception du dernier numéro) depuis le vol 64, n° 43, 20061 bvol. 43 no. 1 (1985) -vol. 47 no. 4 (1989) ; n.s., no. 1 (1992) -....cParisdMagasins/AnnexeeP 8° 00641 bno. 1 (1992) -no. 12 (1995)cParisdMagasins/AnnexeeP Index 0769 aZECH aGEO RA6.02 Espagne aGEO RS Sans aspect régional aDEW 30101178nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210006600176326001200242607002700254710004500281712003700326801002100363856006100384856005900445955007700504955012300581957007300704972000900777991001800786992002400804992001200828039011445000003810820130319051831.01 a0120-3088 aFNSP211307 a0000038108 a19900101a19329999 ba0 aspa aCO aafu 10aRevista javeriana aBogotacProvincia colombiana de la Compañia de Jesúsd1932- aMensuel aColombiexPériodiques02aCompagnie de Jésus. Province (Colombie)02aFundación escritores (Colombie) 3aFRbCCN0028/131X4 uhttp://www.javeriana.edu.co/revistajaveriana/revista.htm zSommaires et résumés depuis le n°691, février 20031 bvol. 70 no. 681 (jan/fev-2002) -....cParisdMagasins/AnnexeeP 4° 69411 bvol. 39 no. 192 (1953) ; vol. 63 no. 12 (mar-1965) -vol. 69 no. 680 (nov/dec-2001)cParisdMagasins/AnnexeeP 8° 21531 bvol. 83 (1975) -vol. 88 (1977)cParisdMagasins/AnnexeeP Index 0325 aZCAD aexempb201003 aGEO RD4.16 Colombie aDEW 98001562nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005500154210002500209326002400234326002700258430005800285606005400343606004500397607004200442607005100484710004600535801002100581856007700602856007100679955019300750957014200943972000901085991001801094992002001112992002801132992001601160039135063000003811320130319051831.01 a0185-1918 aFNSP211324 a0000038113 a19900101a19759999 ba0 aspa aMX aaiu 10aRevista mexicana de ciencias políticas y sociales aMéxicocUNAMd1975- a3 nos par anb2000- aTrimestrielb1975-1999 1aRevista mexicana de ciencia políticaxISSN 0034-9976 aScience politiqueyAmérique latinexPériodiques aScience politiqueyMexiquexPériodiques aMexiquexAdministrationxPériodiques aAmérique latinexAdministrationxPériodiques02aUniversidad nacional autónoma de México 3aFRbCCN0185-19184 uhttp://redalyc.uaemex.mx/redalyc/src/inicio/HomRevRed.jsp?iCveEntRev=421 zContenu : accès libre au texte intégral depuis le no. 183 (2001)1 bvol. 21 no. 81 (jul/sep-1975) -vol. 33 no. 129 (jul/sep-1987) ; vol. 37 no. 147 (jan/mar-1992) -no 190 (jan-2004)cParisdMagasins/AnnexeeP 8° 1676wManquant : no. 130, 1987 à 146, 19911 bno. 1 (1955) -no. 80 (1975)cParisdMagasins/AnnexeeP Index 0201zno. 81 (1975) -no. 159 (1995) : constitue le no. 160, 1995 de la revue aZSAB aexempb201102 aGEO RD1 Mexique aGEO RD Amérique latine aDEW 320-32101650nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200003600138210008700174326001600261606003800277606002900315606004500344606005400389606003600443606004700479710005200526801002100578856004200599856009100641856009000732856010800822856005700930856003700987955008401024957009101108972000901199992002801208992001601236039139255000003811820130319051831.01 a0188-2503 aFNSP211346 a0000038118 a19900101a19399999 ba0 aspa aMX10aRevista mexicana de sociología aInstituto de Investigaciones Sociales de la Universidad Nacional de Méxicod1939- aTrimestriel aSociologieyMexiquexPériodiques aSociologiexPériodiques aScience politiqueyMexiquexPériodiques aScience politiqueyAmérique latinexPériodiques aScience politiquexPériodiques aSociologieyAmérique latinexPériodiques02aInstituto de investigaciones socialesc(Mexico) 3aFRbCCN0028/15064 uhttp://132.248.82.108/rms/indice.html zContenu : résumés en espagnol depuis 1990 ; sommaires et texte intégral depuis 19984 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01882503.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.ejournal.unam.mx/cuadros2.php?r=24&liga=1 zAccès libre au texte intégral.1 bvol. 8 no. 1 (1946) -vol. 63 no. 3/4 (2001)cParisdMagasins/AnnexeeP 8° 00661 b(1939) -(1982) ; (1939) -(1991) ; (1991) -(1995)cParisdMagasins/AnnexeeP Index 0313 aZPAY aGEO RD Amérique latine aDEW 320-32101071nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210002600198326001500224606004700239606005400286710008800340856008900428856006900517955007500586972000900661991001800670992002500688992002800713992001600741039759954000008502120130319051831.01 a0798-9881 aFNSP377559 a0000085021 a19900101a19879999 ba0 aspa aVE aaja 10aRevista venezolana de ciencia política aMeridacCEPSALd1987- aSemestriel aScience politiqueyVenezuelaxPériodiques aScience politiqueyAmérique latinexPériodiques02aCentro de estudios políticos y sociales de la América latina (Mérida, Venezuela)4 uhttp://www.revencyt.ula.ve/scielo.php?script=sci_serial&pid=0798-9881&lng=es&nrm=iso zContenu : accès libre au texte intégral depuis 1987 via Scielo1 bvol. 1 no. 1 (1987) -no. 29 (2006)cParisdMagasins/AnnexeeP 8° 5912 aZSAB aexempb201206 aGEO RD4.20 Venezuela aGEO RD Amérique latine aDEW 320-32101592cas0 2200373 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200007300148207005900221210004600280215004300326314020300369320002900572326002300601326002400624530003000648607005800678676001100736702003600747702004900783712007100832712006500903801003000968856014500998955005501143991002001198037461389000108558220130319051831.0 accn0110/1978 a0001085582 a19830101b18811939k y frey0103 ba0 afre aFR ar aah 103aLa Révolution françaiseerevue d'histoire moderne et contemporaine 0at.1-87, no.4, [Juil. 1881]-1934; n.s. no.1-18, 1935-39 aPariscCharavay frères [etc.]d1881-1939 avol.cplanches, plans, facsims.d25 cm a1899-1934; 1937, no. 11-1938 publiées par La Société de l'histoire de la révolution; 1935-1937, no. 10 par Paris. Université. Faculté des lettres. Centre d'études de la révolution française aTable T.1-28 (1881-1895) aTrimest.bvol. 72- aMensuelbvol. 36-7103aLa Révolution française aFrancez1789-1799 (Révolution)xPériodiques2rameau a944.04 1aDidebAugustef(1839-1918)4340 1aAulardbFrançois-Alphonsef(1840-1928)434002aSociété de l'histoire de la Révolution françaisec(Paris)434002aUniversité de Parisc(1896-1968)bFaculté des lettres4340 3aFRbAbesc20060426gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb32856100s/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1881-1936)1 b(1887) -(1939)cParisdMagasins/AnnexeeP 8° 0474 aPériobTP01 P801292nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210002400179326001500203606004200218606004400260607004800304607004500352607005000397710004800447856004100495856004800536856010900584856010800693955007000801972000900871991001800880992002000898992001200918040085171000020900420130319051831.01 a0954-6545 aFNSP757766 a0000209004 a19900101a19889999 ba0 aeng aGB aaja 10aRevolutionary Russia aLondoncCassd1988- aSemestriel aRévolutionnairesyURSSxPériodiques aRévolutionnairesyRussiexPériodiques aURSSz1917-1921 (Révolution)xPériodiques aRussiez1917 (Révolution)xPériodiques aRussiez1905-1907 (Révolution)xPériodiques02aStudy Group on the Russian Revolutionc(GB)4 uhttp://www.frankcass.com/jnls/rr.htm zContenu : sommaires depuis le vol. 10, n°14 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713636440db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 1 (jun-1992) -....cParisdMagasins/AnnexeeP 8° 6314 aZSAB aexempb201210 aGEO RA7.01 URSS aDEW 94701262cas0 2200397 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012310600060014111000160014720000430016320700220020621000490022832600190027732600260029643000470032251700420036951700300041153000260044160600440046760600370051160600290054867600080057780100300058585600460061585600460066195500730070795500630078097200090084399200120085210896907X000107907520130319051831.01 a1951-1841 a0001079075 a20060922a20069999k y0frey0103 ba0 afre aFR a 0  ar aag 0 13aLa Revueepour l'intelligence du monde 1ano. 2 (mai-2006)- aPariscCIDCOM/Le groupe jeune Afriqued2006- aMensuelb2010- aBimestrielb2006-2009 1tLa Revue de l'intelligent,xISSN 1763-340013aLa Revue pour l'intelligence du monde13aLa Revue de l'intelligent13aLa RevuebParis. 2006 aRelations internationalesxPériodiques aVie intellectuellexPériodiques aActualitéxPériodiques a001 3aFRbAbesc20061010gAFNOR4 uhttp://www.larevue.info/quisommesnous.asp zContenu : sommaires depuis le no. 1, 20061 bLes 3 dernières annéescParisd27, Salle Rez-de-chausséeeDEW 0011 bno. 2 (mai-2006) -....cParisdMagasins/AnnexeeP 8° 6744 aZPAY aDEW 00101218nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210005800182210005600240210002800296326001500324430002900339530003200368607004100400676000800441801002100449830002800470856006100498856003600559955006700595955006300662957005100725972000900776992002200785992001600807992000900823039227405000000539220130319051831.01 a0035-0672 aFNSP108135 a0000005392 a19900101a19489999 ba0 afre aFR aagu 13aLa Revue administrative aPariscEditions de la Revue administratived1948-2005 aaPariscPresses universitaires de Franced2006-2008 aPariscEconomicad2010- aBimestriel 1aL'Administration moderne 0aRevue administrativebParis aFrancexAdministrationxPériodiques a351 3aFRbCCN0035-0672 aDe 1948 à 1999 au 13 U4 uhttp://www.puf.com/wiki/Revues:Revue_administrative_(la) zContenu : sommaires depuis 19991 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3511 bvol. 1 no. 1 (jan-1948) -....cParisdMagasinseP 4° 00241 b(1948) -(1952)cParisdMagasins:eP Index 0075 aZCAD aGEO RA4.06 France aDEW 350-354 aPBUL01117cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200008000197210006100277304002400338305005100362326001600413530002000429531001400449712004200463801003000505802000700535856014500542955007200687991002000759037966758000110423720130319051831.0 a1015-3551 accn1015-3551 accn7207/9452 a0001104237 a19900207b18561962 y0frey0103 ba0 afre aDZ ay 0  ar aaha o 0 010aRevue africaineejournal des travaux de la Société historique algérienne aAlgercOffice des publications universitairesd1856-1962 aLe sous-titre varie aL'année 1856 a donné lieu à une réédition aTrimestriel00aRevue africaine 0aRev. afr.02aSociété historique algérienne4340 3aFRbAbesc20060623gAFNOR a254 uhttp://gallica.bnf.fr/ark:/12148/cb328562033/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1856-1929)1 bno. 362 (1935) ; no. 368 (1936)cParisdMagasins/AnnexeeP 8° 2740 aPériobTP04 P801331cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200007200180210003300252215001000285326001500295327011000310430004900420440009400469530007200563531004300635710003100678801003000709802000700739856014500746955007000891991002000961037959964000108413520130319051831.0 a1013-2945 accn1013-2945 a0001084135 a19881220b18851912 y frey0103 ba0 afre aDZ a 0  ar aag 0 10aRevue algérienne et tunisienne de législation et de jurisprudence aAlgercA. Jourdand1885-1912 d24 cm aBimestriel| aDivisée en 3 parties : 1-Doctrine et légistlation, 2-jurisprudence, 3-lois, décrets, arrêtés etc.... 1tBulletin judiciaire de l'Algériex1013-2937 1tRevue algérienne, tunisienne et marocaine de législation et de jurisprudencex1013-295300aRevue algérienne et tunisienne de législation et de jurisprudence 0aRev. algér. tunis. légis. jurisprud.02aEcole de droitcAlger4070 3aFRbAbesc20050111gAFNOR a254 uhttp://gallica.bnf.fr/ark:/12148/cb32856287z/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1885-1912)1 bvol. 1 (1885) -vol. 28 (1912)cParisdMagasins/AnnexeeP 8° 0201 aPériobTP01 P800902nls 2200289 i 450 0010011000000020011000110050017000221000041000391010008000801020007000881060006000951100016001011350018001172000054001352100005001892300005001943000062001993260016002613360101002773370017003786060030003956070060004257100062004858010013005478560047005609550005006070000432336000043233620131023150524.0 a a20009999k fre 01 ba0 afre aFR az aay z  adr 10aRevue Amérique latineb[Ressource électronique] a a aTexte intégral de la revue depuis le n°1, février 2003 airrégulier aDonnées textuelles accessibles uniquement en ligne ou par abonnement par courrier électronique aFichiers PDF aRisque paysxPériodiques aAmérique du SudxConditions économiquesxPériodiques02aFrancebDirection des relations économiques extérieures 0aFRbFNSP4 uhttp://www.dree.org/publications/index.htm1 r01028nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210003100193326001500224517005100239517004000290606003800330710004300368801002100411856011100432856004500543955007500588991001800663992002100681992001200702038786338000003825020131104103213.01 a0035-0788 aFNSP211909 a0000038250 a19900101a19659999 ba0 afre aBE aaju 10aRevue belge de droit international aBruxellescBruylantd1965- aSemestriel10aBelgisch tijdschrift voor internationaal recht10aBelgian review of international law aDroit internationalxPériodiques02aSociété belge de droit international 3aFRbCCN0035-07884 uhttp://rbdi.bruylant.be/public/index.php?module_id=00000000009&rec_id=00000072572_00000011782#.UndpbTckQkQ zContenu : sommaires depuis le n°1, 19991 bno. 1 (1965) -vol. 31 no. 2 (1998)cParisdMagasins/AnnexeeP 8° 2110 aexempb200908 aGEO RQ Universel aDEW 34101194nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200007900139210005900218326001600277530007700293606004700370676000800417710005100425801002100476856018000497955006600677955007000743972000900813991001800822992002400840992001600864038786419000003825120131015164441.01 a0035-0834 aFNSP211912 a19900101a00019999 ba0 afre aBE aagu 10aRevue belge de sécurité sociale‎fMinistère de la prévoyance sociale aBruxellescMinistère de la prévoyance socialed1959- aTrimestriel 0aRevue belge de sécurité sociale - Ministère de la prévoyance sociale aSécurité socialeyBelgiquexPériodiques a36002aBelgiquebMinistère de la prévoyance sociale 3aFRbCCN0771-15304 uhttp://socialsecurity.fgov.be/fr/nieuws-publicaties/publicaties/btsz/belgisch-tijdschrift-voor-sociale-zekerheid.htmzAccès libre au texte intégral des nos à partir de 20001 bLes 3 dernières annéescParisd27, Salle 4e étageeDEW 3601 bvol. 1 no. 1 (jan-1959) -....cParisdMagasins/AnnexeeP 8° 1741 aZGRA aexempb201305 aGEO RA4.04 Belgique aDEW 360-36301533cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200013000180210007200310215001000382326001600392517015800408517014600566530013000712531008000842801003000922802000700952856014500959955008301104991002001187038834502000109509520130319051831.0 a1257-6298 accn1257-6298 a0001095095 a19941024b18941980k y0frey0103 ba0 afre aFR a 0  ar aaha 0 10aRevue bibliographique des ouvrages de droit, de jurisprudence, d'économie politique, de science financière et de sociologie aPariscLibrairie générale de droit et de jurisprudenced1894-1980 d23 cm aTrimestriel10aRevue bibliographique des ouvrages de droit, de jurisprudence, d'économie politique, de science financière, de sociologie, d'histoire et de philosophie10aRevue bibliographique des ouvrages de droit, de jurisprudence, d'économie politique, de science financière, de philosophie et de sociologie00aRevue bibliographique des ouvrages de droit, de jurisprudence, d'économie politique, de science financière et de sociologie 0aRev. bibliogr. ouvrages droit jurisprud. écon. polit. sci. financ. sociol. 3aFRbAbesc20050302gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb345189201/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1899-1937)1 bno. 1 (1936) -vol. 2 (1939) ; no. 1 (1954)cParisdMagasins/AnnexeeP 8° 0920 aPériobTP02 P801221cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200004600179210002900225326002300254421004100277430004400318434003400362434005100396444003800447517004600485530003600531801003000567801002300597802000700620856014500627955006700772991002000839038586002000109458920130319051831.0 a1153-4044 accn1153-4044 aissn11534044 a0001094589 a19920520b18911903uuuy1frey0103 ba0 afre aFR ar aafu uu 13aLa Revue blanchefdir. Alexandre Natanson aParisc[s.n.]d1891-1903 aMens. puis bimens. |tLe Chasseur de cheveluresx1153-6039 1tLa Revue blanche (Bruxelles)x0778-7375 |tLe Banquet (Paris)x0755-849X |tLa Revue franco-américaine (Paris)x1153-6047 |tLa Revue (Paris. 1900)x1153-601210aRevue blanche et Revue franco-américaine13aLa Revue blancheb(Paris. 1891) 3aFRbAbesc20061213gAFNOR 3aFRbISSNc20050826 a074 uhttp://gallica.bnf.fr/ark:/12148/cb344304470/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1891-1903)1 b(1894) -(1901)w1895, 1896cParisdMagasins/AnnexeeP 8° 0806 aPériobTP02 P801233cas0 2200301 450 00100100000000200110001000500170002103500170003803500150005510000410007010100080011110200070011910500180012610600060014411000160015020001080016621000940027430100550036851700220042353001080044560700470055367600080060080100300060885601340063885600840077295500550085699100200091103746521X000109457120130319051831.0 accn0116/3639 a0001094571 a19830101b18251901 y0frey0103 ba0 afre aFR a 0  ar aaua 0 z 10aRevue britannique ou choix d'articles traduits des meilleurs écrits périodiques de la Grande-Bretagne aPariscDondey-Dupré père et filscJules RenouardcMadame veuve Dondey-Dupréd1825-1901 aDemande de numérotation ISSN en cours par le CR2510aRevue britannique00aRevue britannique ou choix d'articles traduits des meilleurs écrits périodiques de la Grande-Bretagne aGrande-Bretagnez19e sièclezPériodiques a941 3aFRbAbesc20060922gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb32856514k/date.r=.langFRzAccès libre au texte intégral. Année 1887 numérisée sur Gallica4 zAccès libre au texte intégral. Nombreux volumes numérisés sur Google Livres1 b(1825) -(1901)cParisdMagasins/AnnexeeP 8° 0807 aPériobTP02 P801230nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200009500139210004900234326002400283326002600307510004400333530004900377606004600426606004500472710007400517801002100591856011200612955006600724972000900790991001800799992001900817992004200836992001400878039209822000003826020130910175626.01 a0225-5189 aFNSP211934 a19900101a19809999 ba0 amul aCA aaiu 10aRevue canadienne d'études du développement‎d= Canadian journal of development studies aOttawacEd. de l'Université d'Ottawad1980- a3 nos par anb1992- aSemestrielb1980-19911 aCanadian journal of development studies aRevue canadienne d'études du développement aAide économique canadiennexPériodiques aDéveloppement économiquexPériodiques02aInstitut de développement international et de coopérationc(Ottawa) 3aFRbCCN0225-51894 uhttp://www.tandfonline.com/loi/rcjd20zAccès libre aux sommaires et résumés depuis le vol. 1 no. 1, 19801 bvol. 1 no. 1 (1980) -....cParisdMagasins/AnnexeeP 8° 4374 aZSAB aexempb201106 aGEO RC1 Canada aGEO RO Pays en voie de développement aDEW 338.900968cas0 2200265 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200005000148210003900198301004600237303004700283530005000330606005600380801003000436856014500466955007100611991002000682036688592000108557220130319051831.0 accn0102/5694 a0001085572 a19830101c1873 frey0103 ba0 afre aFR ar aaf 10aRevue catholique des institutions et du droit aParisaGrenoblecLarosed1873-1939 aDemande de numérotation ISSN par le CR70 aNotice rev. d'après le n°1 publ. en 187300aRevue catholique des institutions et du droit aReligion et politiqueyFrancexPériodiques2rameau 3aFRbAbesc20060119gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb32856559j/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1872-1939)1 bvol. 27 (1899) -vol. 58 (1920)cParisdMagasins/AnnexeeP 8° 0505 aPériobTP01 P801169cas0 2200313 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119105001800126106000600144110001600150200011100166210006000277421002900337421003400366434002300400530005300423702004200476702003500518702003600553801003000589856014500619955007100764991002000835037457527000109456820130319051831.0 accn0103/4502 a0001094568 a19830101b18541926k y0frey0103 ba0 afre aFR a 0  ar aaf 0 10aRevue chrétiennefpublié sous la direction d'Edmond de Pressensé [puis] Frank Puaux [puis] John Viénot aPariscRevue chrétiennecLibr. Ch. Meyrueisd1854-1926 |tSupplément théologique |tPages de défense protestante |tLa Vie chrétienne10aRevue chrétienne (Ed. mensuelle)b(Paris. 1854) 1aPressensébEdmond def1824-18924651 1aPuauxbFrankf(1844-1922)4651 1aViénotbJohnf(1859-1933)4651 3aFRbAbesc20060502gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb328565942/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1876-1926)1 bvol. 20 (1873) -vol. 53 (1906)cParisdMagasins/AnnexeeP 8° 0808 aPériobTP02 P801077cas0 2200325 450 00100100000000200110001000500170002101100140003803500140005203500170006603500170008303500150010010000410011510100080015610200070016410600060017111000160017720000240019321000290021742100830024644700440032944700580037353000320043180100300046380100230049380200070051685601330052395500750065699100200073103863807X000109508420130319051831.0 a1160-8803 a07381489X accn1160-8803 aissn11608803 a0001095084 a19930708b18521856uuuy0frey0103 ba0 afre aFR ar aaeu uu 10aRevue contemporaine aParisc[s.n.]d1852-1856 |tRépertoire universel de la bibliographie française et étrangèrex1160-9001 1tL'Athenaeum français (1852)x1247-6269 1tRevue contemporaine et Athenaeum françaisx1160-974510aRevue contemporaineb(1852) 3aFRbAbesc20061016gAFNOR 3aFRbISSNc20030523 a074 uhttp://gallica.bnf.fr/ark:/12148/cb32856688d/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 bvol. 1 no. 1 (1852) -no. 60 (1854)cParisdMagasins/AnnexeeP 8° 0877 aPériobTP02 P801710cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200010800162210003100270210007200301320011500373321022500488333002900713436005700742436011100799530005500910606005400965606005501019801003001074856012701104955007601231991002001307991003301327037456504000109456720131015164501.0 a2015-0113 accn0102/5716 a0001094567 a19830101b18531939k y0frey0103 ba0 afre aFR ar aag 110aRevue critique de législation et de jurisprudencefpar MM. V.Marcadé, Paul Pont, Wolowski... [et al.]0 aPariscCotillond1853-19031 aPariscLibrairie générale de droit et de jurisprudenced1904-1939 aTables :1819-1859 (1 vol.) ; 1860-1870 (1 vol.) ; 1860-1899 (1 vol.) ; 1871-1881 (1 vol.) ; 1882-1899 (1 vol.)1 aTables analytiques de la Revue de législation et de la Revue critique de législation et de jurisprudence : précédées des tables de la Thémis, et de la Revue de droit français et étranger. - Paris : Cotillon, 1860 aSuspendu de 1915 à 1923 |tRevue de législation et de jurisprudencex2015-0016 |tRevue critique de la jurisprudence en matière civile administrative, commerciale et criminellex2015-000800aRevue critique de législation et de jurisprudence1 aDroitxLégislationyFrancexPériodiques2rameau1 aDroitxJurisprudenceyFrancexPériodiques2rameau 3aFRbAbesc20070530gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/bpt6k115299xzAccès libre au texte intégral. Années 1855-1939 numérisées sur Gallica1 bvol. 1 no. 1 (1851) -vol. 26 (1897)cParisdMagasins/AnnexeeP 8° 0830 aPériobTP02 P8 anumer0 (complément gallica)01360nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154207001800176210005200194326001600246430003800262517005400300530003400354607002800388607002500416607005600441607002700497676000800524710004900532856009400581856005400675955006600729955006300795972000900858991001800867992002500885992002800910992001200938039227499000000539720130319051831.01 a0035-0974 aFNSP108143 a0000005397 a19900314a19699999 ba0 afre aFR aaha 10aRevue d'Allemagne 1ano. 1 (1969)- aStrasbourgcCentre d'études germaniquesd1969- aTrimestriel 1tAllemagne (Paris)xISSN 0151-195510aRevue d'Allemagne et des pays de langue allemande10aRevue d'AllemagnebStrasbourg aAllemagnexPériodiques aSuissexPériodiques aAllemagne (République démocratique)xPériodiques aAutrichexPériodiques a94002aSociété d'études allemandesc(Strasbourg)4 uhttp://hsozkult.geschichte.hu-berlin.de/zeitschriften/id=114&count=1&recno=1&ausgabe=%2D1 zContenu : sommaires depuis le vol. 33, n°1, 20011 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 bno. 1 (jan-1969) -....cParisdMagasins/AnnexeeP 8° 2635 aZCAD aexempb201105 aGEO RA5.01 Allemagne aGEO RA5 Europe centrale aDEW 94301233nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004000154207001900194210005500213210003200268326001600300530004700316606004500363676001000408710009400418856010700512856010800619955006900727955005800796972000900854991001800863992001400881040131610000009431820130319051831.01 a1245-4060 aFNSP414073 a0000094318 a19900101a19939999 ba0 afre aFR aaha 10aRevue d'économie du développement 1ano. 1 (1993) - aÉvrycPresses universitaires de Franced1993-2001 aaBruxellescDe Boeckd2002- aTrimestriel 0aRevue d'économie du développementbParis aDéveloppement économiquexPériodiques a338.902aCentre d'études et de recherches sur le développement internationalc(Clermont-Ferrand)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-d-economie-du-developpement.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 338.91 bno 1 (1993) -....cParisdMagasins/AnnexeeP 8° 5952 aZPAY aexempb201210 aDEW 338.901304nas 2200361 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000340015420700230018821000510021130000750026232600320033742100560036960600360042560600260046160600270048767600080051471000500052285600270057285601780059995500670077795500590084497200090090399100180091299200120093003984465X000000540520130319051831.01 a0987-3368 aFNSP108159 a0000005405 a19900314a19879999 ba0 afre aFR aaga 10aRevue d'économie financière 1aN°1, (1987,juin)- aPariscPresses universitaires de Franced1987- aLes n°s hors série parus dans l'année sont conservés avec la revue aTrimestriel puis bimestriel 1tRapport moral sur l'argent dans le mondex1260-4275 aMarché financierxPériodiques aBanquesxPériodiques aFinancesxPériodiques a33202aAssociation d'économie financièrec(France)4 uhttp://www.aef.asso.fr zContenu : sommaires et résumés depuis le n°61, janv. 2001; articles consultables à la bibliothèque à l'aide d'un mot de passe à demander à l'accueil bibliographique.1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3321 bno. 1 (1987) -....cParisdMagasins/AnnexeeP 8° 5067 aZPAY aexempb201106 aDEW 33201061nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154207001900189210004900208326001600257606003600273606004000309676000800349856004200357856006000399856002600459856003700485955006700522955005900589972000900648991001800657992002200675992001400697013309447000000540720130319051831.01 a0154-3229 aFNSP108167 a0000005407 a19900314a19779999 ba0 afre aFR aaha 10aRevue d'économie industrielle 1ano. 1 (1977) - aPariscEd. techniques et économiquesd1977- aTrimestriel aIndustrieyFrancexPériodiques aEconomie industriellexPériodiques a3384 uhttp://www.editecom.com/index_rei.htm zContenu : sommaires depuis le n°91, 1er trimestre 20004 uhttp://www.persee.fr/ zAccès libre au texte intégral.1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3381 bno. 1 (1977) -....cParisdMagasins/AnnexeeP 8° 3954 aZPAY aexempb201001 aGEO RA4.06 France aDEW 338.401424nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200003200160207009200192210003900284210002500323326002300348326002300371326002600394530003900420606003700459676000800496856020500504856014500709955006700854955006600921957005400987972000901041992001201050013305379000000541020130319051831.01 a0373-2630 aFNSP108182 a0000005410 a19900314a18879999 ba0 afre aFR ar aaga 10aRevue d'économie politique 1avol. 1 no 1 (1887)-vol. 54 no 3 (mai 1940)avol. 54 nos 4 à 6 (juil. 1940-déc. 1944)- aPariscdivers éditeursd1887-1997 aPariscDallozd1998- a$Bimestrielb1911- aMensuelb1891-1910 aBimestrielb1887-189010aRevue d'économie politiquebParis aEconomie politiquexPériodiques a3304 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-d-economie-politique.htm?zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po uhttp://gallica.bnf.fr/ark:/12148/cb343785215/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1887-1939)1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3301 bvol. 1 no. 1 (1887) -....cParisdMagasins/AnnexeeP 8° 01351 b(1887-1906)cParisdMagasins/AnnexeeP Index 0091 aZPAY aDEW 33001408nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210003800198210003100236326001700267517000900284606003600293607007500329676000800404710011800412856003100530856006900561856011000630856010800740955006700848955005900915972000900974991001800983992002201001992001101023039283666000003849020130319051831.01 a0180-7307 aFNSP213018 a0000038490 a19900101a19789999 ba0 afre aFR aaga 10aRevue d'économie régionale et urbaine aPariscÉd. Économicad1978-2005 aPariscArmand Colind2006- a5 nos par an10aRERU aUrbanismeyFrancexPériodiques aFrancexConditions économiquesxDisparités régionalesxPériodiques a33302aAssociation des directeurs d'instituts et des centres universitaires d'études économiques régionalesc(France)4 uhttp://reru.u-bordeaux4.fr zContenu : sommaires et résumés des revues depuis le n°1, 19984 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-d-economie-regionale-et-urbaine.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3331 bno. 1 (1978) -....cParisdMagasins/AnnexeeP 8° 3999 aZPAY aexempb201001 aGEO RA4.06 France aDEW 7101486nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004300154210007500197210005500272210003500327210002800362326001600390430003100406607003400437607003500471676001000506710005900516856005600575856007400631856007100705856006200776955006800838955007000906972000900976991001800985992002901003992003201032992001201064039546659000003849220130611170831.01 a0338-0599 aFNSP213021 a0000038492 a19900101a19759999 ba0 afre aFR aaha 10aRevue d'études comparatives est-ouest aPariscÉd. du Centre national de la recherche scientifiqued1975-1999 aPariscPresses universitaires de Franced2000-2004 aPariscArmand Colind2005-2008 aVineuilcNecplusd2009- aTrimestriel 1aRevue de l'Est,x0035-1415 aEurope de l'EstxPériodiques aPays socialistesxPériodiques a943.702aCentre national de la recherche scientifiquec(France)4 uhttp://www.necplus.eu/action/displayJournal?jid=REC zContenu : sommaires et résumés depuis le volume 39, n°1, mars 20084 uhttp://www.armand-colin.com/revues_info.php?idr=19&par=1&attr=2007 zContenu : sommaires des n°s depuis le vol.36, n°1, 20051 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 943.71 bvol. 6 no. 1 (mar-1975) -....cParisdMagasins/AnnexeeP 8° 2811 aZPAY aexempb200908 aGEO RN2 Pays socialistes aGEO RA2.02 Europe orientale aDEW 94701494cas0 2200325 450 00100100000000200110001000500170002103500170003803500150005510000410007010100080011110200070011910600060012611000160013220000840014820700780023221000360031030000780034630000630042432600160048748802120050353000460071560600540076171000530081580100300086885601450089895500700104399100200111399100350113303745756X000108557820130319051831.0 accn0103/4588 a0001085578 a19830101b19231939k 0frey0103 ba0 afre aFR ar aaha 10aRevue d'histoire de la guerre mondiale...fSociété de l'histoire de la guerre 1a1re Année, N.1 (1923, Avril) - Dix-Septième Année, N.3 (1939, Juillet) aPariscAlfred Costesd1923-1939 aPorte en tête: "Publications de la Société de l'histoire de la guerre" a"Table décennale 1923-1932" contenue dans le vol. de 1933 aTrimestriel |tRevue d'histoire de la Guerre mondialeotable décennale, 1923-1932f[publ. par la] Société de l'histoire de la guerrecParisnA. Costeds.d.p37 p.sPublications de la Société de l'histoire de la guerre00aRevue d'histoire de la guerre mondiale... aGuerre mondiale (1914-1918)xPériodiques2rameau02aSociété de l'histoire de la guerrecParis4070 3aFRbAbesc20070424gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb328568628/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1923-1936)1 bvol. 1 (1923) -vol. 17 (1939)cParisdMagasins/AnnexeeP 8° 0414 aPériobTP01 P8 anumer0 (complément gallica ?)01074nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012310600060014111000160014720000430016321000720020621000720027821000420035032600150039251700090040760600460041680100130046285601090047585601080058495500680069299200120076005092141X000042969820131008112346.01 a1622-468X a0000429698 a b19992011k fre ba0 afre aFR a 0  ar aaj z 0 10aRevue d'histoire des sciences humaines aVilleneuve d'AscqcPresses universitaires du Septentriond1999-2011 aVilleneuve d'AscqcPresses universitaires du Septentriond1999-2003 aAuxerrecSciences humainesd2004-2011 aSemestriel10aRHSH aSciences humainesxHistoirexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-histoire-des-sciences-humaines.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 4 (2001) -no. 25 (2011)cParisdMagasins/AnnexeeP 8° 6607 aDEW 30001547nas 2200385 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000121001642070019002852100101003043000053004053260022004583260022004804300028005025300037005306070038005677100087006058010013006928560028007058560089007338560113008228560108009359550075010439720009011189920012011279920022011390000487193000048719320130319051831.01 a1265-1354 a0000487193 a a19959999k fre ba0 afre aFR a 0  ar aaj z 0 10aRevue d'histoire du XIXe sièclefSociété d'histoire de la Révolution de 1848 et des révolutions du XIXe siècle 1an°11, (1995)- aPariscSociété d'histoire de la Révolution de 1848 et des révolutions du XIXe siècled1995- aContient également des comptes rendus de livres aSemestrielb1996- aAnnuelb1985-1995 1t1848 (Paris)x0765-019100aRevue d'histoire du XIXe siècle aFrancez19e sièclexPériodiques02aSociété d'histoire de la révolution de 1848 et des révolutions du XIXe siècle 0aFRbFNSP4 uhttp://rh19.revues.org/ zContenu : sommaires et résumés en français et en anglais à partir du n° 1, 19854 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-d-histoire-du-dix-neuvieme-siecle.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 20/21 (= no. 1/2) (2000) -....cParisdMagasins/AnnexeeP 8° 6654 aZPAY aDEW 944 aGEO RA4.06 France01044nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200004600160210005100206210003100257326002300288326002600311326002700337606006400364710005000428856014500478955008300623992002200706992001400728046692347000013871020130319051831.01 a0035-2411 aFNSP551946 a0000138710 a19941017a18949999 ba0 afre aFR ar aaga 10aRevue d'histoire littéraire de la France aPariscPresses universitaires de Franced1998- aPariscA. Colind1894-1997 aTrimestrielb2003- aBimestrielb1968-2002 aTrimestrielb1894-1967 aLittérature françaisexHistoire et critiquexPériodiques02aSociété d'histoire littéraire de la France4 uhttp://gallica.bnf.fr/ark:/12148/cb343491539/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1894-2000)1 bno. 1 (jan/mar-1954) -no. 6 (nov/dec-1986)cParisdMagasins/AnnexeeP 8° 1348 aGEO RA4.06 France aDEW 80-8901050nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002900163207003200192210005100224326001600275430006900291440006300360606003900423712006000462801001300522856013300535955006800668992001200736038432862000042134620130319051831.01 a0996-2727 a0000421346 a b19261940k fre ba0 afre aFR a 0  ar aah z 0 10aRevue d'histoire moderne 1ano. 1 (1926) -no. 42 (1940) aPariscSociété d'histoire moderned1926-1940 atrimestriel 1tRevue d'histoire moderne et contemporaine (1899)xISSN 0996-2743 1tEtudes d'histoire moderne et contemporainexISSN 0996-2735 aHistoire universellexPériodiques02aSociété d'histoire moderne et contemporainec(France) 0aFRbFNSP4 uhttp://gallica.bnf.fr/ark:/12148/cb34417274m/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 bno. 1 (1926) -no. 42 (1940)cParisdMagasins/AnnexeeP 8° 0364 aDEW 90901254nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004600163207004900209210005100258326003700309440004200346530005200388606003900440712006000479801001300539856014500552955011300697957007300810991003300883992001200916038432870000042134420130319051831.01 a0996-2743 a0000421344 a b18991914k fre ba0 afre aFR a 0  ar aag z 0 10aRevue d'histoire moderne et contemporaine 1aT. 1 (mai/juin 1899) -t. 19 (mars/juin 1914) aPariscSociété d'histoire moderned1899-1914 a10 n°s par an puis 6 n° par an 1tRevue d'histoire modernex(0996-2727) 0aRevue d'histoire moderne et contemporaineb1899 aHistoire universellexPériodiques02aSociété d'histoire moderne et contemporainec(France) 0aFRbFNSP4 uhttp://gallica.bnf.fr/ark:/12148/cb34349502h/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1906-1907)1 bTome 5 no. 4 (1904) -Tome 19 no. 2/3 (1914)cParisdMagasins/AnnexeeP 8° 0364zFascicules en mauvais état1 bTome 1 ( 1899) -tome 12 (1909)cParisdMagasins/AnnexeeP Index 0609 anumer0 (complément gallica) aDEW 90901468nas 2200373 i 450 001001000000002001100010005001700021011001400038035001600052035001500068100004100083101000800124102000700132110001600139200009300155210002300248326001600271421006400287421003800351430006300389530005200452606003900504676001200543710006000555801002100615856011500636856010800751955006700859955006400926957007400990972000901064992001201073992000901085039237311000000541520130319051831.01 a0048-8003 aFNSPt108187 a0000005415 a19900101a19549999 ba0 afre aFR aaha 10aRevue d'histoire moderne et contemporainefSociété d'histoire moderne et contemporaine aPariscSHMCd1954- aTrimestriel 1tBulletin de la Société d'histoire modernexISSN 0991-1367 1tLe Bulletin de la SHMCx1243-8804 1tEtudes d'histoire moderne et contemporainexISSN 0996-273500aRevue d'histoire moderne et contemporaineb1954 aHistoire universellexPériodiques aDEW 90902aSociété d'histoire moderne et contemporainec(France) 3aFRbCCN0048-80034 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-d-histoire-moderne-et-contemporaine.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étage:eDEW 9091 bvol. 1 (jan-1954) -....cParisdMagasins/AnnexeeP 8° 03641 b(1899) -(1909) ; (1994) -(2002)cParisdMagasins/AnnexeeP Index 0609 aZPAY aDEW 909 aPBUL01380cas0 2200361 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164106000600171110001600177200008000193210003100273430009200304447004700396447005600443447004200499530008000541531005700621711006000678801003000738801002300768802000700791856014500798955005500943991002000998037457578000109324420130319051831.0 a1954-6564 a114560226 accn0103/4650 aissn19546564 a0001093244 a19830101b19011914uuuy0frey0103 ba0 afre aFR ar aafu uu 10aRevue d'histoire rédigée à l'État-major de l'armée, Section historique aPariscChapelotd1901-1914 1tRevue militaire rédigée à l'État-major de l'armée. Archives historiquesx1954-6580 1tJournal des sciences militairesx1954-6637 1tRevue militaire des armées étrangèresx1954-6610 1tRevue militaire françaisex1954-653X00aRevue d'histoire rédigée à l'État-major de l'armée, Section historique 0aRev. hist. rédigée État-major armée, Sect. hist.02aFrancebEtat-major des arméesbService historique4070 3aFRbAbesc20070529gAFNOR 3aFRbISSNc20070518 a074 uhttp://gallica.bnf.fr/ark:/12148/cb32856856b/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1901-1914)1 b(1901) -(1906)cParisdMagasins/AnnexeeP 8° 0627 aPériobTP02 P801675nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007200154210012300226326002500349326002700374326002900401440003600430510004100466601004400507607004400551676001000595710004700605801002100652856005600673856009700729856010900826856010800935955009001043972000901133991001801142992005701160992003401217992001401251039668940000003849420130319051831.01 a0703-6337 aFNSP213023 a0000038494 a19900101b19772006 ba0 amul aCA aagu 10aRevue d'intégration européenned= Journal of european integration aSaskatchewancConseil canadien des affaires européennesd1977-1999aAmsterdamcHarwood Academic Publishersd2000-2006 a5 n°s par anb2006- aTrimestrielb2000-2005 a3 n°s par anb1977-1999 1tJournal of European integration11aJournal of european integrationzeng02aCommunautés européennesxPériodiques aEurope de l'OuestxUnitéxPériodiques a341.802aConseil canadien des affaires européennes 3aFRbCCN0703-63374 uhttp://www.tandf.co.uk/journals/titles/07036337.asp zContenu : présentation de la revue ; sommaires et résumés depuis le volume 24, n°1, 20024 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713393849db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (sep-1977) -vol. 28 no. 5 (dec-2006)cParisdMagasins/AnnexeeP 8° 3952 aZSAB aexempb201001 aGEO RA1.01 Communautés européennes, Pays de la CEE aGEO RA2.01 Europe occidentale aDEW 341.200984nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200006500163210011300228326001500341517007400356606004500430710004100475801001300516856002900529856003600558955006700594972000900661992001200670127790292000055032220130319051832.01 a1962-3941 a0000550322 a b20032007k fre ba0 afre aFR a 0  ar aaj z 0 10aRevue de droit des affaires de l'Université Panthéon-Assas aPariscAssociation de droit des affaires de Panthéon-AssascUniversité Panthéon Assas-Paris IId2003-2007 aSemestriel10aRevue de droit des affaires de l'Université Paris II Panthéon-Assas aDroit des affairesyFrancexPériodiques02aUniversité Panthéon-Assasc(Paris) 0aFRbFNSP4 uhttp://www.rdaparis2.com zAccès libre au texte intégral1 bno. 1 (2003) -no. 3 (2005)cParisdMagasins/AnnexeeP 8° 6708 aZPAY aDEW 34601231nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101001300108102000700121110001600128200008900144210008100233326002200314326002900336430006200365510003900427530004800466606003700514710004000551801002100591856002400612856010500636955005900741957005100800972000900851992002100860992001200881039475883000004987420131002115458.01 a0295-5830 aFNSP246117 a19900101a19859999 ba0 afreaeng aFR aagu 10aRevue de droit des affaires internationales‎d= International business law journal aPariscParis‎cLibrairie générale de droit et de jurisprudence‎d1985- aBimestrielb2004- a8 n°s par anb1985-2003 1aJournal de droit des affaires internationales,x0753-275X1 aInternational business law journal aRevue de droit des affaires internationales aDroit des affairesxPériodiques02aForum européen de la communication 3aFRbCCN0295-58304 uhttp://www.iblj.com zSommaires de la revue depuis 1997 et numéros spéciaux depuis 1985. Certains articles sont gratuits1 bno. 4 (1985) -....cParisdMagasins/AnnexeeP 4° 50171 b(1985) -(2001)zse trouve dans le no. 8 (2001) aZPAY aGEO RQ Universel aDEW 34101030cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200003000162207002300192210002500215326001200240530003900252606004300291606003900334801003000373801002300403802000700426856006700433856010800500955006300608972000900671992001200680103674438000104705920140110135438.01 a1951-0152 aissn19510152 a0001047059 a20060619a20069999k y0frey0103 ba0 afre aFR ar aafu uu 10aRevue de droit du travail 0ano 1 (2006, juin)- aPariscDallozd2006- aMensuel10aRevue de droit du travailb(Paris) aDroit du travailyFrancexPériodiques aDroit socialyFrancexPériodiques 3aFRbAbesc20061005gAFNOR 3aFRbISSNc20060720 a074 uhttps://acces-distant.sciences-po.fr/fork?http://bu.dalloz.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (jun-2006) -....cParisdMagasins/AnnexeeP 4° 7149 aZPAY aDEW 34401145cas0 2200313 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200003300148207003300181210003800214215001000252301005200262304004600314326006000360530003300420702003500453801003000488856014500518955011500663991002000778991003300798036688673000108557320130319051832.0 accn0102/5791 a0001085573 a19830101c1927 0frey0103 ba0 afre aFR ar aaj 10aRevue de droit international 0a1ère année:tome 1er(1927)- aPariscEd. internationalesd1927- a26 cm aDEMANDE DE NUMEROTATION ISSN EN COURS PAR CR 27 aFondateur : A. de Geouffre de la Pradelle aLa périodicité passe de trimestrielle à semestrielle00aRevue de droit international 1aGeouffre de la PradellebA. de 3aFRbAbesc20070424gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb375752592/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1927-1936)1 b(1869) -(1914) ; (1920) -(1939) ; (1869) -(1877) ; (1878) -(1914) ; (1920)cParisdMagasins/AnnexeeP 8° 0372 aPériobTP01 P8 anumer0 (complément gallica)01703cas0 2200385 450 00100100000000200110001000500170002101100140003803500170005203500150006910000410008410100080012510200070013310500180014010600060015811000160016420000620018020701570024221001000039930400850049930500290058431100910061332000330070432600240073732600230076132600240078444000500080853000620085860600460092060600410096680100300100785601450103795501150118299100200129703668869X000108557420130319051832.0 a1782-6217 accn0102/5805 a0001085574 a19830101b18691940k y0frey0103 ba0 afre aBE a 0  ar aaha 0 10aRevue de droit international et de législation comparée 0aT.1(1869)-t.30(1898) ; T. [31] (1899)-t.[46] (1914) = 2ème sér.:t.1(1899)-t.16(1914) ; T. [47] (1920)-t.[67] (1940) = 3ème sér.:t.1(1920)-t.21(1940) aBruxellesaLa HayeaPariscRevue de droit international et de législation comparéed1869-1940 aSous la dir. de T.-M.-C.Asser, Ernest Nys, Alphonse Rivier... [et al.] (en 1893) aPas paru de 1915 à 1919 aParaît plus tard sous le titre : "Revue belge de droit international", ISSN 0035-0788 aTables 1869-1893 ; 1894-1914 aTrimest.b1929-1940 aBimest.b1881-1927 aTrimest.b1869-1880 1tRevue belge de droit internationalx0035-078800aRevue de droit international et de législation comparée aDroit internationalxPériodiques2rameau aDroit comparéxPériodiques2rameau 3aFRbAbesc20060406gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb375752639/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1869-1933)1 b(1869) -(1914) ; (1920) -(1939) ; (1869) -(1877) ; (1878) -(1914) ; (1920)cParisdMagasins/AnnexeeP 8° 0372 aPériobTP01 P801367nas 2200373 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000032001552100052001873260028002393260040002674300072003076060042003796060030004216070037004517100047004888010021005358560029005568560037005858560047006228560108006699550066007779570091008439720009009349920034009439920016009770000038623000003862320130319051832.01 a0035-1121 aFNSP213279 a0000038623 a19900101a19209999 ba0 afre aFR aahu 10aRevue de géographie alpine aGrenoblecInstitut de géographie alpined1920- aTrimestriel (1920-2008) aAnnuel à partir de l'édition 2009 1aRecueil des travaux de l'Institut de géographie alpine (0249-6178) aMontagnesxAménagementxPériodiques aGéographiexPériodiques aAlpesxGéographiexPériodiques02aInstitut de géographie alpinec(Grenoble) 3aFRbCCN0035-1121 uhttp://rga.revues.org/58 zAccès libre au texte intégral.4 uhttp://www.persee.fr/listIssues.do?key=rga zAccès libre au texte intégral à partir de 1913 à 1974 à l'exception des années les plus récentes1 bvol. 15 no. 1 (1927) -...cParisdMagasins/AnnexeeP 8° 00811 b(1923) -(1932) ; (1933) -(1942) ; (1953) -(1962)cParisdMagasins/AnnexeeP Index 0193 aZPAY aGEO RA2.01 Europe occidentale aDEW 914-91901734nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138200009000144210005200234326001600286430012600302440003600428517004700464606006100511606003000572607005500602710006000657801002100717856003300738856007000771856004900841856006500890955008300955955008301038957015801121991001801279992002501297992001401322039227588000003862620130319051832.01 a0035-113X aFNSP213288 a0000038626 a19900101b19491999 ba0 afre aFR ar10aRevue de Géographie de LyonfAssociation des amis de la Revue de géographie de Lyon aLyoncAssociation des amis de la RGLd1951-1999 aTrimestriel 1aRevue de géographie jointe au Bulletin de la Société de géographie de Lyon et de la région lyonnaisexISSN 1164-6284 1tGéocarrefour (Lyon)x1627-487310aRevue de géographie de Lyon Géocarrefour aUrbanismeyFranceyLyon (Rhône ; région)xPériodiques aGéographiexPériodiques aLyon (Rhône ; région)xGéographiexPériodiques02aAssociation des amis de la Revue de géographie de Lyon 3aFRbCCN0035-113X4 uhttp://www.geocarrefour.org/ zContenu : sommaires et résumés depuis le volume 73, no. 1, 19984 uhttp://www.persee.fr/listIssues.do?key=geoca zAccès libre au texte intégral des numéros de 1951 à 19991 bvol. 63 no. 1 (1988) -vol. 74 no. 4 (1999)cParisdMagasins/AnnexeeP 4° 56791 bvol. 26 no. 1 (1951) -vol. 62 no. 4 (1987)cParisdMagasins/AnnexeeP 8° 00841 b(1946) -(1955)cParisdMagasins/AnnexeeP Index 0043z(1955) -(1964) se trouve dans le vol. 52 no. 4 (1977) ; (1985) -(1994) dans le vol. 71 no. 2 (1996) aexempb201101 aGEO RA4.06 France 01 aDEW 330.901007nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004900139210002700188326001200215452006900227530004900296606006000345856018600405955007700591972000900668991001800677992002200695992001200717039928055000003603220131218160019.01 a1156-2935 aFNSP204871 a19900101a19919999 ba0 afre aFR aafa 00aRevue de jurisprudence de droit des affaires aPariscLefebvred1991- aMensuel 1tRevue de jurisprudence de droit des affaires (Online)x2115-979300aRevue de jurisprudence de droit des affaires aDroit des affairesyFrancexJurisprudencexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.efl.fr/si/hp/frm_hp.htmzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (jan-1991) - no. 12 (dec-2006)cParisdMagasins/AnnexeeP 4° 6009 aZPAY aexempb201312 aGEO RA4.06 France aDEW 34601302nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003500139207002200174210002700196326001200223430011000235452010800345517000800453530004800461606005400509856018600563955006800749955006800817972000900885991001800894991001800912992002200930992001200952039543862000000597020140108110911.01 a0337-7393 aFNSP109483 a19900330a19759999 ba0 afre aFR aafa 10aRevue de jurisprudence fiscale 1ano. 1(jan-1975) - aPariscLefebvred1975- aMensuel 1aBulletin des contributions directes, de la taxe à la valeur ajoutée et des impôts indirectsx0037-7385 1tRevue de jurisprudence fiscale‎bRessource électronique‎cParis‎nEd. Francis Lefebvre‎d2006-1 aRJF10aRevue de jurisprudence fiscale‎bImprimé aDroit fiscalyFrancexJurisprudencexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.efl.fr/si/hp/frm_hp.htmzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1990) -no. 12 (2005)cParisdMagasins/AnnexeeP 4° 58951 bno. 1 (1975) -no. 12 (1989)cParisdMagasins/AnnexeeP 8° 3243 aZPAY aexempb200911 aexempb201312 aGEO RA4.06 France aDEW 34301178nas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001800069035001700087035001400104035001500118100004100133101000800174102000700182110001600189200003500205207002700240210004100267326001200308517000800320606005400328676001200382801003000394801002800424801002300452802000700475856008100482856010800563955007500671972000900746992002500755992001200780001421131000074438820130530121257.01 a0997-7422 accn0997-7422 afrBN006778734 aissn09977422 aEvry26351 a0000744388 a19890320a19899999 0fre 0103 ba0 afre aFR aaf 10aRevue de jurisprudence sociale 0a1989, n° 1 (janvier)- aLevallois-PerretcF. Lefebvred1989- aMensuel10aRJS aDroit socialyFrancexJurisprudencexPériodiques aDEW 344 3aFRbAbesc20041008gAFNOR 3aFRbBNc20041008gAFNOR 3aFRbISSNc20011008 a074 uhttps://acces-distant.sciences-po.fr/fork?http://www.efl.fr/si/hp/frm_hp.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (jan-2005) -no. 1 (jan-2013)cParisdMagasins/AnnexeeP 4° 7064 aZPAY aGEO RA4.06 France 01 aDEW 34401235nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200009900163207004300262210003400305326001600339440005100355607007700406710004800483801001300531856013300544955005500677957011400732991002900846992001200875992002200887037984608000057256620130319051832.01 a0399-1377 a0000572566 a b19131931k fre ba0 afre aFR a 0  ar aah z 0 10aRevue de l'histoire des colonies françaisesfSociété de l'histoire des colonies françaises 1a1ère année(1913)-19ème année(1931) aPariscH. Championd1913-1931 aTrimestriel 1tRevue d'histoire des colonies,xISSN 0399-1385 aFrancexDépartements et territoires d'outre-merxHistoirexPériodiques02aSociété française d'histoire d'outre-mer 0aFRbFNSP4 uhttp://gallica.bnf.fr/ark:/12148/cb32857372f/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 b(1913) -(1931)cParisdMagasins/AnnexeeP 8° 00891 rtables bibliographiques (1913/2003) in : Société française d'histoire d'outre-mer : 90 ans de publications anumer0 (lacunes gallica) aDEW 909 aGEO RA4.06 France01772cas0 2200457 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200003800179207002900217210002500246210002900271210005500300210002700355215001000382304006000392320004000452326001600492327022700508423005300735423004000788517006400828530003800892531002200930606003800952801003000990801002301020802000701043856014501050955005501195991002001250991004401270039227723000109460820130319051832.0 a0035-1423 accn0035-1423 aissn00351423 a0001094608 a19910208a18809999u y0frey0103 ba0 afre aFR ar aahu uu 10aRevue de l'histoire des religions 1a1ère année:T. 1(1880)- aPariscLerouxd1880-0 aPariscLerouxd1880-19??0 aPariscPresses universitaires de Franced19??-20041 aPariscA. Colind2005- d24 cm aJusqu'en 19XX porte en tête "Annales du Musée Guimet" aTables des tomes 1 à 44(1880-1901) aTrimestriel1 aDe 1919 à 1938 contient les comptes-rendus de la Société Ernest Renan qui paraissent aussi séparément comme "Bulletin de la Société Ernest Renan" ; de 1952 à 1983 contient le "Bulletin de la Société Ernest Renan" 1tBulletin de la Société Ernest Renanx0765-6521 1tAnnales du Musée Guimetx1155-740010aAnnales du Musée Guimet. Revue de l'histoire des religions00aRevue de l'histoire des religions 0aRev. hist. relig. aReligionsxHistoirexPériodiques 3aFRbAbesc20070416gAFNOR 3aFRbISSNc20060706 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34349095z/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1880-1916)1 b(1880) -(1896)cParisdMagasins/AnnexeeP 8° 0835 aPériobTP02 P8 anumer0 (1882-1896, complément gallica)01050cas0 2200277 450 00100100000000200110001000500170002103500170003810000410005510100080009610200070010410500180011110600060012911000160013520000440015121000480019544700480024344700540029153000520034571000380039780100300043585601860046595500730065199100200072499100280074403860342X000109343720131015160925.0 accn9022/633X a19830101b18961910 0frey0103 ba0 afre aFR a 0  ar aau 0 10aRevue de l'Institut catholique de Paris aPariscLibrairie Ch. Poussielgued1896-1910 1tBulletin du denier de l'institut catholique 1tBulletin de l'Institut catholique de Paris (1910)10aRevue de l'institut catholique de parisb(1896)02aInstitut catholique de Paris4070 3aFRbAbesc20050127gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb32857408m/date.r=Revue+de+l%27Institut+catholique+de+Paris.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1896-1909)1 b(1898) -(1910)w1898, 1899, 1902cParisdMagasins/AnnexeeP 8° 0722 aPériobTP02 P8 anumer0 (seulement 1910)01136nas 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000047001502100028001973260016002254510049002415320105002906060037003957100067004328010013004998560111005128560108006239550082007319720009008139920012008220000421152000042115220130319051832.0 a0000421152 a b20012004k f fre ba0 afre aZZ a 0  ar aah z 0 10aRevue de l'OCDE sur la gestion budgétaire aPariscOCDEd2001- 2004 atrimestriel 1tOECD journal on budgeting (Print)x1608-714310aRevue de l'Organisation de coopération et de développement économiques sur la gestion budgétaire aFinances publiquesxPériodiques02aOrganisation de coopération et de développement économiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/16087151/revocdegestionbudg zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (2001) - vol. 3 no. 4 (2003)cParisdMagasins/AnnexeeP 8° 6600 aZECH aDEW 33601591cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200010600180207002500286210002300311301004900334326001600383327010100399430003500500606006400535606004500599710010100644801003000745801002300775802000700798856011900805856010800924955006901032955006601101992001201167992001401179098977911000117532920130319051832.01 a1992-0490 aissn19920490 a0001175329 a20060406a20069999k y0frey0103 ba0 afre aFR ay  ar aahu uu 10aRevue de l'OCDE sur le développementfOrganisation de coopération et de développement économiques 0avol. 7, n°1 (2006)- aPariscOCDEd2006- aISSN figurant sur la publication : 1816-9376 aTrimestriel0 aLa première livraison annuelle contient le "Rapport sur la coopération pour le développement" 1tLes dossiers du CADx1563-3144 aAide économiquexCoopération internationalexPériodiques aDéveloppement économiquexPériodiques02aOrganisation de coopération et de développement économiquesbComité d'aide au développement 3aFRbAbesc20090610gAFNOR 3aFRbISSNc20090602 a004 uhttps://acces-distant.sciences-po.fr/fork?http://oberon.sourceocde.org/vl=1415277/cl=35/nw=1/rpsv/journal_news.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 338.91 bvol. 7 no. 4 (2006) -....cParisdMagasins/AnnexeeP 4° 7256 aGEO RM4 aDEW 338.901362nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006700154210002300221320005200244326001600296440005600312517012400368606005000492606003700542710006700579856011700646856010800763955008100871972000900952991001800961992001200979992003300991045017832000027008020130319051832.01 a1560-7798 aFNSP933741 a0000270080 a19990409a19999999 ba0 afre aFR aaha 10aRevue de l'OCDE sur le droit et la politique de la concurrence aPariscOCDEd1999- aA partir de 2008, publié uniquement en anglais aTrimestriel 1tOECD journal of competition law & policyx1560-777110aRevue de l'Organisation de coopération et de développement économique sur le droit et la politique de la concurrence aConcurrencexPolitique publiquexPériodiques aConcurrencexDroitxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/15607798/revocdedroitpolitconcurr zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1999) -vol. 9 no. 3 (2007)cParisdMagasins/AnnexeeP 8° 6478 aZECH aexempb201212 aDEW 346 aGEO RS Sans aspect régional01430nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007400154207004600228210004100274326001600315430005600331488002100387606004200408676000800450710005700458856008900515856010800604856002600712856006500738856005800803856007600861955007800937972000901015991001801024992001401042040446263000013436420130903121950.01 a1265-9576 aFNSP541603 a0000134364 a19940817b19942011 ba0 afre aFR aaha 10aRevue de l'OFCEfObservatoire français des conjonctures économiques 1ano 49 (avril 1994) -no 119 (octobre 2011) aPariscPresses de la FNSPd1994-2011 aTrimestriel 1aObservations et diagnostics économiquesx0751-6614 1aLettre de l'OFCE aConjoncture économiquexPériodiques a33002aObservatoire français des conjonctures économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-de-l-ofce.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr/ zAccès libre au texte intégral des articles de 1982 à 20004 uhttp://www.ofce.sciences-po.fr/publications/revue.htm4 zAccès libre au texte intégral des articles à compter du no 120, 20111 bno. 49 (avr-1994) -no. 119 (oct-2011)cParisdMagasins/AnnexeeP 8° 4548 aZPAY aexempb201204 aDEW 330.901172cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118106000600125110001600131200004000147207002900187210002700216326001500243452006600258510003600324517000800360530004000368606006100408801003000469801002300499802000700522856021400529955007000743972000900813992001200822107982927000105589220131118121137.01 a1951-0187 aissn19510187 a20060904a20069999 y0frey0103 ba0 amul aFR ar aaj 10aRevue de l'organisation responsable 1avol. 1, no 1 (jun-2006)- aPariscEd. Eskad2006- aSemestriel 1tRevue de l'organisation responsable (En ligne)‎,x2105-302210aResponsible organization review10aROR00aRevue de l'organisation responsable aResponsabilité sociétale des entreprisesxPériodiques 3aFRbAbesc20060905gAFNOR 3aFRbISSNc20060801 a074 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-de-l-organisation-responsable.htm?zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jun-2006) -....cParisdMagasins/AnnexeeP 4° 7162 aZPAY aDEW 65001050nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210002700174326003200201430005100233517006000284601006300344606004400407710006300451801003000514801002300544856003900567856003600606955006100642972000900703992001200712039243613000111174920130319051832.01 a0251-3722 aFNSP222648 a0000041594 a19900101a19759999 ba0 afre aBE aahu 10aRevue de l'OTAN aBruxellescOTANd1975- aBimestriel puis trimestriel 1aNouvelles de l'OTAN (1010-2167) < P 4° 1330 >10aRevue de l'Organisation du Traité de l'Atlantique Nord02aOrganisation du traité de l'Atlantique NordxPériodiques aSécurité internationalexPériodiques02aOrganisation du traité de l'Atlantique NordxPériodiques 3aFRbAbesc20061212gAFNOR 3aFRbISSNc200012064 uhttp://www.nato.int/docu/revue.htm zAccès libre au texte intégral1 bvol. 23 no. 1 (1975)cParisdMagasins/AnnexeeP 4° 1330 aZGRA aDEW 32701060nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002000139210002700159326003200186430005100218517006000269601006300329606004400392710006300436801002100499856003900520856009500559955008300654972000900737992001200746039243613000004159420130313092225.01 a0251-3722 aFNSP222648 a19900101a19759999 ba0 afre aBE aahu 10aRevue de l'OTAN aBruxellescOTANd1975- aBimestriel puis trimestriel 1aNouvelles de l'OTAN (1010-2167) < P 4° 1330 >10aRevue de l'Organisation du Traité de l'Atlantique Nord02aOrganisation du traité de l'Atlantique NordxPériodiques aSécurité internationalexPériodiques02aOrganisation du traité de l'Atlantique NordxPériodiques 3aFRbCCN0251-37224 uhttp://www.nato.int/docu/revue.htm zContenu : sommaires le n°4, juil.-août 1996 ; texte intégral (pdf) depuis le n°3, 19981 bvol. 23 no. 1 (1975) -vol. 49 no. 4 (2001)cParisdMagasins/AnnexeeP 4° 1330 aZGRA aDEW 32701067nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004000154210005600194326001600250606003900266606004000305606003600345710003500381801002100416856021700437955006900654991001800723992001200741992001200753039555984000004153820130319051832.01 a0378-4606 aFNSP222521 a0000041538 a19900101a18959999 ba0 afre aBE aahu 10aRevue de l'Université de Bruxelles aBruxellescEd. de l'Université de Bruxellesd1895- aTrimestriel aArts et littératurexPériodiques aPhilosophie politiquexPériodiques aSciences socialesxPériodiques02aUniversité libre de Bruxelles 3aFRbCCN0378-46064 uhttp://digitheque.ulb.ac.be/fr/les-documents-numerises/classement-alphabetique-des-publications/index.html#c7905zAccès libre au texte intégral. Périodique numérisé par l'Université de Bruxelles (1896-1996)1 bno. 1 (1948) -no. 3/4 (1990)cParisdMagasins/AnnexeeP 8° 1048 aexempb201103 aDEW 001 aDEW 30002142cas0 2200433 450 00100100000000200110001000500170002103500140003803500170005203500150006910000410008410100080012510200070013310500180014010600060015811000160016420000390018020700500021921000600026921000600032921000600038930100560044930400600050530500320056530501110059742101110070851701930081951701960101253000960120860600470130460600490135170200260140080100300142680100170145680100150147385601450148895500550163399100200168807739755X000109462120130319051832.0 a036688754 accn0102/5902 a0001094621 a20040413b18841914k y0frey0103 ba0 afre aFR a 0  ar aauu 0 10aRevue de la législation des mines 0a1e année (1884)-31e année (1914,mars-avril) aPariscChevalier-MaresqaBruxellescMuquardtd1884-19140 aPariscChevalier-MaresqaBruxellescMuquardtd1884-19041 aLillecDanelaBruxellescMayolez et Audiarted1905-1914 aDemande de numérotation ISSN en cours par le CR 09 aA partir de 1886, publ. sous la dir. de Emile Delecroix aLe titre varie légèrement aA partir de 1890 publie annuellement et en annexe : "Statistique des houillères en France et en Belgique" 0tStatistique des houillères en France et en Belgique. Annexe annuelle de : Revue de législation des mines10aRevue de législation des mines en France & en Belgique : minières, Usines métallurgiques, Carrières et Sources d'eaux minérales, et statistique des houillères en France & en Belgique10aRevue de législation des mines en France & en Belgique : minières, Usines métallurgiques, Carrières et Sources d'eaux minérales. De la jurisprudence et du droit comparé en ces matières00aRevue de la législation des mines et statistiques des houillères en France et en Belgique aDroit minieryFrancexPériodiques2rameau aDroit minieryBelgiquexPériodiques2rameau 1aDelecroixbEmile4340 3aFRbAbesc20070531gAFNOR 0bNNC-LgAACR2 2bNNCgAACR24 uhttp://gallica.bnf.fr/ark:/12148/cb328576201/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1884-1914)1 b(1891) -(1914)cParisdMagasins/AnnexeeP 8° 0809 aPériobTP02 P801146nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200002100160207003800181210007400219326001200293430002800305444004000333606006700373606002300440710005500463856014500518955009100663991003300754992002100787992001200808037468294000011645920130319051832.01 a2022-8821 aFNSP484394 a0000116459 a19900101b19021909 ba0 afre aFR ar aafa 10aRevue de la paix 1a7e année, n° 1, 25 janvier 1902 aPariscSociété française pour l'arbitrage entre nationsd1902-1909 aMensuel 1aArbitrage entre nations 1aLa Paix par le droit < P 8° 0539 > aRèglement pacifique des conflits internationauxxPériodiques aPaixxPériodiques02aSocieté française pour l'arbitrage entre nations4 uhttp://gallica.bnf.fr/ark:/12148/cb328576650/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1902-1905)1 bvol. 7 no. 1 (jan-1902) -vol. 14 no. 12 (dec-1909)cParisdMagasins/AnnexeeP 8° 0848 anumer0 (complément Gallica) aGEO RQ Universel aDEW 32701568nas 2200421 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005400154207001700208210006700225300010900292326001600401423003900417430004600456517005400502606003200556606002400588676000800612710009000620801002100710856003600731856005600767955006600823955009200889957007100981972000901052991001801061992002201079992003301101992001201134001018426000004168420130319051832.01 a0249-8731 aFNSP222856 a0000041684 a19900101a19819999 ba0 afre aFR aahu 10aRevue de la recherche juridique, droit prospectif 1ano 8 (1981)- aAix-en-ProvencecPresses universitaires d'Aix-Marseilled1981- aLe supplément annuel, publié sous le titre Cahiers de méthodologie juridique est relié avec la revue aTrimestriel 1aCahiers de méthodologie juridique 1aRevue de droit prospectifxISSN 0396-366710aDroit prospectif, revue de la recherche juridique aDroityFrancexPériodiques aDroitxPériodiques a34002aUniversité Paul Cézannec(Aix-Marseille)bFaculté de droit et de science politique 3aFRbCCN0249-87314 uhttp://www.rrj.univ-cezanne.fr/ zContenu : accès aux sommaires depuis le no 2, 20061 bLes 3 dernières années ;Parisd30, Salle 3e étageeDEW 3401 bno. 8 (1979) -....cParisdMagasins/AnnexeeP 8° 4405wManquant : vol. 12, no 28, 19871 bvol. 1 (1976) -vol.19 (1994)cParisdMagasins/AnnexeeP Index 0767 aZPAY aexempb201010 aGEO RA4.06 France aGEO RS Sans aspect régional aDEW 34001049cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200013800180210003200318326001200350326002700362530002800389702005600417801003000473802000700503856012300510955007100633991002000704991001100724038294214000109325720130319051832.0 a0983-6322 accn0983-6322 a0001093257 a19870702b18831889 y0frey0103 ba0 afre aFR a 0  ar aan 0 10aRevue de la Révolutionehistorique, philosophique, économique, littéraire et artistiquefpubl. sous la dir. de Ch. d'Héricault... aPariscA. Sautond1883-1889 aMensuel aTrois fois par semaine00aRevue de la Révolution 1aHéricaultbCharles de Ricault d'f(1823-1899)4651 3aFRbAbesc20050629gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/bpt6k1258991zAccès libre au texte intégral. Janv-juin 1883 numérisés sur Gallica1 bvol. 61 (1888) -vol. 64 (1889)cParisdMagasins/AnnexeeP 8° 0618 aPériobTP02 P8 anumer000838nls 2200265 i 450 002001100000005001700011011001400028100004100042101000800083102000700091106000600098110001600104135001800120200006600138210006600204230002400270326001500294606003700309606003800346801001300384856013700397955000500534992001200539992002100551000118073520130604161034.0 a1637-4681 a a20029999k fre 01 ba0 afre aFR ar aaj z  adr 10aRevue de la stabilité financièreb[Ressource électronique] aPariscBanque de France, Direction de la communicationd2002- aRevue électronique asemestriel aFinances publiquesxPériodiques aQuestion monétairexPériodiques 0aFRbFNSP4 uhttp://www.banque-france.fr/publications/revue-de-la-stabilite-financiere.htmlzAccès livre au texte intégral depuis novembre 20021 r aDEW 336 aGEO RQ Universel01193cas0 2200337 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164105001800171106000600189110001600195200007300211210003200284430007100316440007300387530007300460606004200533801003000575801002300605802000700628856014500635955005500780991002000835038429608000109458320130319051832.0 a0995-8908 a070597081 accn0995-8908 aissn09958908 a0001094583 a19900528b18701876 y0frey0103 ba0 afre aFR a 0  ar aau 0 10aRevue de législation ancienne et moderne, française et étrangère aPariscE. Thorind1870-1876 1tRevue historique de droit français et étranger (1855)x0995-8894 1tNouvelle revue historique de droit français et étrangerx0995-892400aRevue de législation ancienne et moderne, française et étrangère aDroitxHistoirexPériodiques2rameau 3aFRbAbesc20060302gAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34416605n/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1870-1876)1 b(1873) -(1876)cParisdMagasins/AnnexeeP 8° 0801 aPériobTP02 P801425cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200008700180210002900267320003500296321022500331447011100556447006600667517001900733530004600752702006300798801003000861856013300891955005501024991002001079036688770000109455520130319051832.0 a2015-0016 accn0102/5910 a0001094555 a19830101b18351853k y0frey0103 ba0 afre aFR a 0  ar aau 0 10aRevue de législation et de jurisprudencefpubl. sous la dir. de M. L.Wolowski,... aParisc[s.n.]d1835-1853 aTables : 1835-1844 ; 1834-18531 aTables analytiques de la Revue de législation et de la Revue critique de législation et de jurisprudence : précédées des tables de la Thémis, et de la Revue de droit français et étranger. - Paris : Cotillon, 1860 1tRevue critique de la jurisprudence en matière civile administrative, commerciale et criminellex2015-0008 1tRevue critique de législation et de jurisprudencex2015-011310aRevue Wolowski00aRevue de législation et de jurisprudence 1aWolowskibLouis-François-Michel-Raymondf(1810-1876)4651 3aFRbAbesc20070321gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb328578390/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 b(1834) -(1853)cParisdMagasins/AnnexeeP 8° 0829 aPériobTP02 P800978cas0 2200301 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200002400179210004400203430004900247437006700296530003300363801003000396801002300426802000700449856014500456955005500601991002000656038553724000109458820130319051832.0 a1149-1922 accn1149-1922 aissn11491922 a0001094588 a19900320b18991911uuuy0frey0103 ba0 afre aFR ar aauu uu 10aRevue de Madagascar aPariscComité de Madagascard1899-1911 1tBulletin du Comité de Madagascarx1149-1914 1tNotes, reconnaissances et explorations (Tananarive)x1017-221110aRevue de Madagascarb(Paris) 3aFRbAbesc20060724gAFNOR 3aFRbISSNc20060706 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34425275p/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1899-1911)1 b(1899) -(1911)cParisdMagasins/AnnexeeP 8° 0837 aPériobTP02 P801263nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200004000160210002400200326001600224606002500240606003200265710004000297801002100337856021300358856014500571955009000716957009700806972000900903992001100912992001400923039227774000003772920130319051832.01 a0035-1571 aFNSP209836 a0000037729 a19900101a18939999 ba0 afre aFR ar aahu 10aRevue de métaphysique et de morale aPariscColind1893- aTrimestriel aMoralexPériodiques aMétaphysiquexPériodiques02aSociété française de philosophie 3aFRbCCN0035-15714 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-de-metaphysique-et-de-morale.htm?zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po uhttp://gallica.bnf.fr/ark:/12148/cb343491074/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1893-1940)1 b(1893) -(1949) (lac) ; vol. 56 no. 1 (1951) -....cParisdMagasins/AnnexeeP 8° 06701 b(1893) -(1992)cParisdMagasins/Annexezse trouve dans le no. 1/2 (jan/jun-1993) de la revue aZPAY aDEW 17 aDEW 10-1400871cas0 2200301 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164106000600171110001600177200002200193210004000215326001200255530002200267801003000289801002300319802000700342856014500349955005500494991002000549037619918000108412720130319051832.0 a0223-3274 a070535566 accn0223-3274 aissn02233274 a0001084127 a19971118b18941970uuuy0frey0103 ba0 afre aFR ar aafu uu 13aLa Revue de Paris aPariscLa Revue de Parisd1894-1970 aMensuel03aLa Revue de Paris 3aFRbAbesc20060718gAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34404247s/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1894-1940)1 b(1894) -(1970)cParisdMagasins/AnnexeeP 8° 0282 aPériobTP01 P801228nas 2200349 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012310600060014111000160014720000670016320700480023021000470027821000260032532000360035132600150038751700280040251700330043060600420046371000660050580100130057185601040058485601080068895500590079697200090085599200140086405786683X000041491720140106134753.01 a1376-0971 a0000414917 a a20009999k fre ba0 afre aBE a 0  ar aaj z 0 10aRevue de philosophie économiqueerevue semestrielle du GREQAM 1ano.1, 2000-no.14,2006 ; vol.8 (no.1), 2007- aBruxellescDe Boeck universitéd2000-2002 aPariscVuibertd2003- aChange de numérotation en 2007 aSemestriel10aPhilosophie économique10aRevue semestrielle du GREQAM aPhilosophie économiquexPériodiques02aGroupe de recherche en économie quantitative d'Aix-Marseille 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-de-philosophie-economique.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (2000) -....cParisdMagasins/AnnexeeP 8° 6589 aZPAY aDEW 10-1400898nas 2200289 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000028001412100023001693000035001923260012002276010077002396060037003167120063003538560056004168560031004729550062005039720009005659920022005749920012005960000174665000017466520130319051832.0 aFNSP657580 a0000174665 a19900101a19959999 ba0 afre aFR aaza 10aRevue de presse du CERI aPariscCERId1995- aN'est plus édité qu'en ligne aMensuel02aCentre d'études et de recherches internationalesc(Paris)xPériodiques aCoupures de pressexPériodiques02aCentre d'études et de recherches internationalesc(Paris)4 uhttp://10.107.113.100/communication/revue/revue.php zContient : Texte intégral1 b(nov-1995)-(oct-2005)cParisdMagasins/AnnexeeP 4° 6572 aZGRA aGEO RA4.06 France aDEW 32701163nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006000154210002400214326001600238517006500254606003100319606003100350676000800381710004000389801002100429856006700450856010800517955006000625955013100685972000900816992001200825039227847000004170220130319051832.01 a0035-1733 aFNSP222880 a0000041702 a19900101a19369999 ba0 afre aFR aahu 10aRevue de science criminelle et de droit pénal comparé aPariscSireyd1936- aTrimestriel10aRSC. Revue de science criminelle et de droit pénal comparé aCriminologiexPériodiques aDroit pénalxPériodiques a34002aInstitut de droit comparéc(Paris) 3aFRbCCN0035-17334 uhttps://acces-distant.sciences-po.fr/fork?http://www.dalloz.fr zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, 3e étageeDEW 3401 bno. 2 (1948) - no. 4 (1949) ; n. s. no. 1 (1959) - no. 3 (1963) ; n. s. no. 1 (1977) -....cParisdMagasins/AnnexeeP 8° 0585 aZPAY aDEW 34501434cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200005300174207004000227210003900267300003600306304005700342305008600399306010800485326001600593440004400609530005300653531003000706702003100736801003000767802000700797856014500804955005500949991002001004991003601024037714414000108371620130319051832.0 a0246-1617 accn0246-1617 a0001083716 a19900514b19031955k y0frey0103 ba0 afre aFR a 0  aah 0 10aRevue de science et de législation financières 0a1re année(1903) - 47e année(1955) aPariscGiard et Brièred1903-1955 aLa numérotation change en 1951 aFondateurs : Gaston Jèze (1869-1953) et Max Boucard aLa revue cesse de paraître après mai 1940 et reprend au deuxième semestre 1945 aNouvelle adresse bibliographique : Paris : Librairie générale de droit et de jurisprudence, 1935-1955 aTrimestriel 1tRevue de science financièrex0035-174100aRevue de science et de législation financières 0aRev. sci. légis. financ. 1aJèzebGastonf(1869-1953) 3aFRbAbesc20061212gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb34399443v/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1908-1931)1 b(1903) -(1955)cParisdMagasins/AnnexeeP 8° 0108 aPériobTP01 P8 anumer0 (complément de Gallica)01228nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200008500138210004100223210004600264210003500310326001600345430005400361530003000415606003000445710003800475801002100513856004600534856013700580955010500717957005700822972000900879992001400888039227871000004922520130522123318.01 a0035-1776 aFNSP244668 a0000049225 a19900101a19319999 ba0 afre aFR10aRevue de synthèsefFondation pour la science, Centre international de synthèse aPariscSpringer-Verlag Franced2007- aPariscENS éditions-rue d'Ulmd2002-2006 aPariscAlbin Micheld1931-2001 aTrimestriel 1aRevue de synthèse historique (Paris),x0997-054110aRevue de synthèsebParis aPhilosophiexPériodiques02aCentre international de synthèse 3aFRbCCN0101/56054 uhttp://www.revue-de-synthese.eu/index.htm4 zContenu : accès au texte intégral gratuit jusqu'à 2005. Années 1900 à 1935 accessibles en texte intégral gratuit dans Gallica.1 bvol. 1 no. 1 (mar-1931) -vol. 118 (1997) ; vol. 122 (2001) -....cParisdMagasins/AnnexeeP 8° 00921 b(1931) -(1985)cParisdMagasins/AnnexeeP Index 0611 aZPAY aDEW 10-1401899cas0 2200409 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200008800179207014400267210003600411305012600447306009700573311015600670321002200826326002600848446005600874446008100930530004301011531003101054702003401085710004301119801003001162801002301192802000701215856014501222955010201367991002001469038439743000108372320130319051832.0 a0997-0541 accn0997-0541 aissn09970541 a0001083723 a19920402b19001930uuuy0frey0103 ba0 afre aFR ar aahu uu 10aRevue de synthèse historiquefCentre international de synthèseg[dir. Henri Berr] 1a1ère série, tome 1 (1900)-1ère série, tome 26 (1913, juin). Nouvelle série [2e série], tome 27 (1913, août-décembre)-tome 50 (1930) aPariscLéopold Cerfd1900-1930 aEn 1900, seul le 2e semestre est paru ; la publication fut interrompue de 1915 à 1919 (pendant la 1ère Guerre mondiale) aEdité par Léopold Cerf de 1900 à 1922, puis par la Renaissance du livre à partir de 1923 aEn 1930, se scinde en 2 séries : une série générale "Synthèse historique" et une série intitulée "Sciences de la nature et synthèse générale"1 aTablesb1900-1910 aBimestrielb1900-1930 |tRevue de synthèse. Synthèse historiquex1164-6640 |tRevue de synthèse. Sciences de la nature et synthèse généralex1164-665910aRevue de synthèse historiqueb(Paris) 0aRev. synth. hist.b(Paris) 0aBerrbHenrif(1863-1954)465102aCentre international de synthèse4070 3aFRbAbesc20060710gAFNOR 3aFRbISSNc20060706 a074 uhttp://gallica.bnf.fr/ark:/12148/cb41163513g/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1900-1930)1 bvol. 1 (1900) -vol. 26 (1913) ; vol. 1 (1913) -vol. 24 (1930)cParisdMagasins/AnnexeeP 8° 0092 aPériobTP01 P801272cas0 2200361 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002900163207004800192210005800240326001200298430005900310606003800369606004400407607004500451710005300496801003000549856002700579856006500606955006700671955006500738955006900803992002200872992001600894139793313000118035220131219161558.01 a2105-7508 a0001180352 a20100114a20109999k y0frey0103 ba0 afre aFR ay 0  ar aafa 0 10aRevue Défense Nationale 0ano.726 [66ème année, no 1] (2010, janv.)- aPariscComité d'études de défense nationaled2010- aMensuel 1tDéfense nationale et sécurité collectivex1950-3253 aPolitique militairexPériodiques aRelations internationalesxPériodiques aFrancexDéfense nationalexPériodiques02aComité d'études de défense nationalec(Paris) 3aFRbAbesc20100115gAFNOR4 uhttp://www.defnat.com/ zContenu : sommaires et résumés depuis le numéro 726, 20101 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3551 bno. 726 (jan-2010) -....cParisdMagasins/AnnexeeP 8° 02091 bL'année en courscParisdBibliothèque de rechercheeP 8° 0209 aGEO RA4.06 France aDEW 355-35900768nls 2200253 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000050001502100027002002300024002276060035002518010013002868560070002998560108003699920025004779920012005020000941521000094152120130319051832.0 a0000941521 a a20039999k fre 01 ba0 afre aFR ar aaz z  adr 10aRevue des contratsb[Ressource électronique] aPariscLextensoc2003- aRevue électronique aContratsyFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lextenso.com zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aGEO RA4.06 France 01 aDEW 34001380cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200009900197207006400296210004000360326001700400440006300417530006700480606007400547607006600621702003600687801003000723801002300753802000700776856013300783955008200916991002000998037468308000110936920130319051832.0 a2017-6651 accn0119/2701 aissn20176651 a0001109369 a19830101b18631871uuuy0frey0103 ba0 afre aFR ay  ar aacu uu 10aRevue des cours littéraires de la France et de l'étranger...fréd. en chef, M. Odysse-Barot 0a1e année:n.1(1863, 5 déc.)-7e année:n.52(1871, 7 févr.) aPariscGermer Baillièred1863-1871 aHebdomadaire 1tLa Revue politique et littéraire (Paris. 1871)x2017-664300aRevue des cours littéraires de la France et de l'étranger... aLittératurexHistoire et critiquez19e sièclexPériodiques2rameau aFrancexVie intellectuellez19e sièclexPériodiques2rameau 1aBarotbOdyssef(1830-1907)4710 3aFRbAbesc20070823gAFNOR 3aFRbISSNc20070808 a004 uhttp://gallica.bnf.fr/ark:/12148/cb32858333s/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 bvol. 1 no. 1 (1863) -vol. 7 no. 52 (1871)cParisdMagasins/AnnexeeP 4° 0588 aPériobTP01 P401333nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154207002100180210004000201326001200241430005100253530003200304606003700336607004500373676000800418801002100426856003700447856013300484955007300617955011700690957009100807972000900898991001800907992002200925992001200947039624579000004170820130319051832.01 a0750-9278 aFNSP222890 a0000041708 a19900101a19829999 ba0 afre aFR abfu 10aRevue des deux mondes 1ano 5 (mai 1982)- aPariscRevue des deux mondesd1982- aMensuel 1aNouvelle revue des deux mondesxISSN 0151-914X10aRevue des deux mondesb1982 aVie intellectuellexPériodiques aFrancexVie intellectuellexPériodiques a001 3aFRbCCN0750-92784 uhttp://www.revuedesdeuxmondes.fr zContenu : sélection de titres d'articles de 1997 à 2003, puis sommaires et éditorial en texte intégral des six derniers mois1 bLes 3 dernières annéescParisd27, Salle Rez-de-chausséeeDEW 0011 bno. 5 (mai-1982) -....cParisdMagasins/AnnexeeP 8° 0295wManquant : Mai>Septembre, 1995 ; Mai>Septembre, 19961 b(1831) -(1874) ; (1886) -(1921) ; (1921) -(1931)cParisdMagasins/AnnexeeP Index 0041 aZCAD aexempb201011 aGEO RA4.06 France aDEW 00101274nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200003600160210004400196326004100240326004700281440006500328517002700393606003700420607004500457856013500502955017800637957010800815992002500923992001200948037446797000026743320130319051832.01 a0035-1962 aFNSP926125 a0000267433 a19990304b18291971 ba0 afre aFR ar aaea 13aLa Revue des deux mondes (1829) aPariscRevue des deux mondesd1829-1971 aBimensuel jusqu'en 1968 puis mensuel asuspendue entre 16 aout 1944 et déc. 1947 1ala Nouvelle Revue des deux mondes (0151-914X) < P 8° 0295 >13aLa Revue (Paris, 1948) aVie intellectuellexPériodiques aFrancexVie intellectuellexPériodiques uhttp://gallica.bnf.fr/ark:/12148/cb32858360p/datezAccès libre au texte intégral. Périodique numérisé sur Gallica (1829-1930)1 bvol. 20 vol. 15 (1852) -no. 12 (dec-1971)cParisdMagasins/AnnexeeP 8° 0295znnée manquante 1854) (lacunes pour les années 1852--1853, 1855, 1867, 1898 ,1925, 1937,1942)1 b(1831) -(1874) ; (1886) -(1893) ; (1911) -(1921) ; (1921) -(1931)cParisdMagasins/AnnexeeP Index 0041 aGEO RA4.06 France 01 aDEW 00101292nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006900139207005100208210002700259300007900286326001200365430004500377517004400422517003500466530002900501601005700530606005100587606004700638710004300685856008800728955007800816972000900894992002500903992001400928040560732000023968220131218140500.01 a1282-5247 aFNSP845383 a19900101b19972002 ba0 afre aFR aafa 13aLa Revue des entreprisesfConseil national du patronat français 1aN ° 594 (1997,sept./oct.)-n° 647(2002,déc.) aPariscCNPFd1997-2002 aEn nov. 1998 le CNPF devient le MEDEF, Mouvement des entreprises de France aMensuel 1aCNPF La Revue des entreprisesx0399-897510aCNPF Patronat, La Revue des entreprises10aMEDEF,la Revue des entreprises03aLa Revue des entreprises02aConseil national du patronat françaisxPériodiques aEmployeursxAssociationsyFrancexPériodiques aGestion d'entrepriseyFrancexPériodiques02aConseil national du patronat français4 uhttp://www.medef.fr/fr/I/Idoc/I_p-revue.htmzContenu : sommaires des 4 derniers n°1 bno. 589 (mar-1997)-no. 647 (nov-2002)cParisdMagasins/AnnexeeP 4° 0160 aZPAY aGEO RA4.06 France 01 aDEW 330.901611cas0 2200409 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200003200179210004600211326001600257423004600273423006100319423004300380437004600423517007400469517012200543530004400665531003300709606004400742710007600786711005900862801003000921801002300951802000700974856014500981955005501126991002001181039227944000109510120130319051832.0 a0035-2004 accn0035-2004 aissn00352004 a0001095101 a19960829a18999999uuuy0frey0103 ba0 afre aFR ar aahu uu 10aRevue des études anciennes aBordeauxaMarseilleaPariscFéretd1899- aTrimestriel 1tBulletin hispanique (Bordeaux)x0007-4640 1tRevue des lettres françaises et étrangèresx0184-7813 1tBulletin italien (Bordeaux)x0997-4385 1tRevue des universités du Midix0755-163010aAnnales de l'Université de Bordeaux IIIerevue des études anciennes10aAnnales de la Faculté des lettres de Bordeaux et des universités du Midi. 4ème série. Revue des études anciennes10aRevue des études anciennesb(Bordeaux) 0aRev. étud. anc.b(Bordeaux) aHistoire anciennexPériodiques2rameau02aUniversité de BordeauxbFaculté des lettres et sciences humaines407002aUniversité d'Aix-MarseillebFaculté des lettres4070 3aFRbAbesc20070416gAFNOR 3aFRbISSNc20070412 a074 uhttp://gallica.bnf.fr/ark:/12148/cb328584003/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1899-1940)1 b(1899) -(1923)cParisdMagasins/AnnexeeP 8° 0937 aPériobTP02 P801106cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200010800162207003100270210002900301300004900330447005800379530004400437801003000481801002800511802000700539856014500546955004600691991002000737991003500757001598074000108410020130319051832.0 a1149-8056 accn1149-8056 a0001084100 a19901115b19211947k y0frey0103 ba0 afre aFR ar aah 10aRevue des études coopérativeseProblèmes d'économie nationale et internationale. Questions sociales 1ano. 1 (1921) -no.79 (1947) aParisc[s.n.]d1921-1947 aN'a pas paru entre mars 1940 et juillet 1946 1tAnnée politique française et étrangèrex1149-015210aRevue des études coopérativesb(1921) 3aFRbAbesc20060626gAFNOR 3aFRbBNc19990127gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb344272933/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1920-1940)1 b(1921) -(1940)cParisdAnnexeeP 8° 0334 aPériobTP01 P8 anumer0 (complément gallica ?)01254nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200006100160210003100221326001500252434007300267434005100340606002800391606002400419710004200443856019400485955008700679957014200766991001800908992001400926039608778000004917020130319051832.01 a0484-8616 aFNSP244523 a0000049170 a19900101a18809999 ba0 afre aFR ar aaja 10aRevue des études juivesf[Société des études juives] aPariscA. Durlacherd1880- asemestriel 1aActes et conférences de la Société des études juives (1149-8684) 1tHistoria judaica (Moravska Ostrava)x1054-1330 aJudaïsmexPériodiques aJuifsxPériodiques02aSociété des études juives (France)4 uhttp://archive.org/search.php?query=title%3A%28Revue%20des%20%C3%A9tudes%20juives%29&page=1zAccès libre au texte intégral. Périodique numérisé sur Internet Archive (vol. 1--> vol. 77)1 bvol. 118 (1959/1960) - vol. 158 no. 3/4 (1999)cParisdMagasins/AnnexeeP 8° 19501 bvol. 101 (1937) -vol. 125 (1966), vol. 126 (1967) -vol. 131 (1972), vol.132 (1973) -vol. 138 (1979)cParisdMagasins/AnnexeeP Index 0318 aexempb201001 aDEW 20-2901429cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200005000180210010900230423004600339423004300385423005400428437004600482517014000528530005000668531002800718712007600746801003000822802000700852856014500859955005501004991002001059037577948000109506520130319051832.0 a0184-7813 accn0184-7813 a0001095065 a19960829b18991900k y0frey0103 ba0 afre aFR a 0  ar aah 0 10aRevue des lettres françaises et étrangères aBordeauxcFéretaLyoncHenri GeorgaPariscSociété française d'imprimerie et de librairied1899-1900 1tBulletin hispanique (Bordeaux)x0007-4640 1tBulletin italien (Bordeaux)x0997-4385 1tRevue des études anciennes (Bordeaux)x0035-2004 1tRevue des universités du Midix0755-163010aAnnales de la Faculté des lettres de Bordeaux et des universités du Midi. 4ème série. Revue des lettres françaises et étrangères00aRevue des lettres françaises et étrangères 0aRev. lett. fr. étrang.02aUniversité de BordeauxbFaculté des lettres et sciences humaines4340 3aFRbAbesc20070604gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb32858603p/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1899-1900)1 b(1899) -(1900)cParisdMagasins/AnnexeeP 8° 0938 aPériobTP02 P800956cas0 2200277 450 00100100000000200110001000500170002103500170003803500150005510000410007010100080011110200070011910500180012610600060014411000160015020000360016621000320020230500410023432600160027553000360029160600350032780100300036285601450039295501210053799100200065803745773X000108558020130319051832.0 accn0103/4995 a0001085580 a19830101b18661939k y0frey0103 ba0 afre aFR a 0  ar aah 0 10aRevue des questions historiques aPariscV. Palméd1866-1939 aCesse de paraitre entre 1914 et 1923 aTrimestriel00aRevue des questions historiques aHistoirexPériodiques2rameau 3aFRbAbesc20070119gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb32858757w/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1866-1937)1 b(1866) ; (1872) ; (1873) -(1914) ; (1922) -(1939)$73ème et 4ème trimestre 1903cParisdMagasins/AnnexeeP 8° 0477 aPériobTP01 P801180cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200005800179207001400237210004100251320006100292326001500353423003800368530003900406606005100445712002400496801003000520801002300550801001300573802000700586856003000593856005000623955006300673972000900736992001200745992002500757039797198000043592620130319051832.01 a0980-2797 accn0980-2797 aissn09802797 a0000435926 a19910820a19869999k y0frey0103 ba0 afre aFR ar aaju uu 13aLa Revue des revuesfpublié par Association Entrevue 0aN (1986)- aPariscAssociation Ent'revuesd1986- aLe no.21(1996) contient les tables des nos.1-20(1986/95) aSemestriel 1tLa Lettre d'Ent'revuesx0988-853513aLa Revue des revuesb(Paris. 1986) aPériodiques françaisxHistoirexPériodiques02aEnt'revuesc(Paris) 3aFRbAbesc20090429gAFNOR 3aFRbISSNc20080526 0aFRbFNSP a074 uhttp://www.entrevues.org/ zContenu : accès aux sommaires depuis le n°11 bno. 1 (pri-1986) -....cParisdMagasins/AnnexeeP 4° 6909 aZPAY aDEW 020 aGEO RA4.06 France 0101060nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000037001642070043002012100058002443260015003024300037003175170041003546060039003956060038004346060047004728010013005198560032005329550108005649720009006729920025006819920016007060000617099000061709920130319051832.01 a1160-7742 a0000617099 a a20009999 fre 01 ba0 afre aFR a 0  ar aag z 0 13aLa Revue des sciences de gestion 1aVol. 35, n° 182/183 (mars/juin 2000)- aEpinay-sur-OrgecRevue des sciences de gestiond2000- aBimestriel 1tDirection et gestion,x1291-290510aDirection et gestion des entreprises aGestion d'entreprisexPériodiques aEntreprisesyFrancexPériodiques aGestion d'entrepriseyFrancexPériodiques 0aFRbFNSP4 uhttp://larsg.over-blog.com/1 bvol. 35 no. 182/183 (mar/jun-2000) -vol. 43 no. 234 (nov/dec -2008)cParisdMagasins/AnnexeeP 8° 2844 aZPAY aGEO RA4.06 France 01 aDEW 650-65801281nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200009100160210003900251326001600290430012100306530004500427531002900472606003500501606004400536606003600580710005900616801002100675856008200696955007600778972000900854991001800863992002200881992001600903036060364000004176620130319051832.01 a0751-5804 aFNSP223029 a0000041766 a19900101b19822001 ba0 afre aFR ar aahu 10aRevue des sciences morales et politiquesfAcadémie des sciences morales et politiques aPariscGauthier-Villarsd1982-2001 aTrimestriel 1aRevue des travaux de l'Académie des sciences morales & politiques et comptes rendus de ses séancesxISSN 0400-3373 0aRevue des sciences morales et politiques 0aRev. sci. morales polit. aMorale politiquexPériodiques aScience politiqueyFrancexPériodiques aScience politiquexPériodiques02aAcadémie des sciences morales et politiquesc(France) 3aFRbCCN0751-58044 uhttp://www.puf.com/revue.php?revue=EVzSommaires du no.3, 1997 au no. 3, 20001 bvol. 137 no. 1 (1982) -no. 4 (2001)cParisdMagasins/AnnexeeP 8° 0437 aZCAD aexempb201101 aGEO RA4.06 France aDEW 320-32101183nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200004200160210002800202300004400230326001600274430006300290440005900353606003600412606004400448710004900492856014400541955008700685957004700772992002200819992001600841038500930000014159320130319051832.01 a1144-147X aFNSP563003 a0000141593 a19941116b19111936 ba0 afre aFR ar aaha 10aRevue des sciences politiques (Paris) aPariscAlcand1911-1936 acontient un supplément de 1919 à 1936 aTrimestriel 1aAnnales des sciences politiques (1144-1488) < P 8° 0377 > 1aSciences politiques (Paris) (1144-1461) < P 8° 0377 > aScience politiquexPériodiques aScience politiqueyFrancexPériodiques02aEcole libre des sciences politiquesc(Paris)4 uhttp://gallica.bnf.fr/ark:/12148/cb344222300/date.r=.langFRzAccès libre au texte intégral. Années 1911 à 1932 numérisées sur Gallica1 bvol. 26 (jan/fev-1911) -vol. 51 (oct/dec-1936)cParisdMagasins/AnnexeeP 8° 03771 rTable 1926/1935 reliée avec l'année 1935 aGEO RA4.06 France aDEW 320-32101188nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003200163210004600195326002200241326002200263430007000285530004600355606004400401606003600445710005200481801001300533856004800546856013800594955006000732972000900792992002500801992001200826050927183000045588720130319051832.01 a1623-6572 a0000455887 a a20009999k fre ba0 afre aFR a 0  ar aaj z 0 10aRevue des sciences sociales aStrasbourgcUniversité Marc Blochd2000- aSemestrielb2005- aAnnuelb2000-2004 1tRevue des sciences sociales de la France de l'EstxISSN 0336-157810aRevue des sciences socialesb(Strasbourg) aSciences socialesyFrancexPériodiques aSciences socialesxPériodiques02aUniversité des sciences humainesc(Strasbourg) 0aFRbFNSP4 uhttp://www.revue-des-sciences-sociales.com/ zContenu : accès libre au texte intégral d'une sélection d'articles depuis le n°2, 1973, à l'exception des deux derniers numéros1 bno. 27 (2000) -....cParisdMagasins/AnnexeeP 8° 3084 aZPAY aGEO RA4.06 France 01 aDEW 30001245nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004900154210002500203326001900228326002700247436004500274436006300319517003200382606004400414801002100458856006700479856010800546955006300654955007500717957005700792972000900849992002500858992001200883039373053000004207720130319051832.01 a0242-5424 aFNSP223660 a0000042077 a19900101a19759999 ba0 afre aFR aahu 10aRevue des sociétés, Journal des sociétés aPariscDallozd1975- aMensuelb2010- aTrimestrielb1975-2010 1aRevue des sociétés (Paris),x0240-8945 1tJournal des sociétés civiles et commerciales,x0242-541610aRevue des sociétés (1986) aSociétésxDroityFrancexPériodiques 3aFRbCCN0242-54244 uhttps://acces-distant.sciences-po.fr/fork?http://www.dalloz.fr zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (mar-2010) -....cParisdMagasins/AnnexeeP 4° 72311 bvol. 93 no. 1 (1975) -no. 4 (2009)cParisdMagasins/AnnexeeP 8° 28461 b(1970) -(1979)cParisdMagasins/AnnexeeP Index 0354 aZPAY aGEO RA4.06 France 01 aDEW 34601300nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200003300160210003800193326001200231436012400243440006000367606004400427801002100471856017200492856014500664955005500809955005500864991001800919992002500937992001200962037650009000004177020130319051832.01 a0240-8945 aFNSP223033 a0000041770 a19900101b18831974 ba0 afre aFR ar aafa 10aRevue des sociétés (Paris) aPariscMarchal-Billardd1883-1974 aMensuel 1aRevue des sociétés, Journal des sociétésx0242-5424 et de Journal des sociétés civiles et commercialesx0242-5416 1aRevue des sociétés, Journal des sociétésx0242-5424 aSociétésxDroityFrancexPériodiques 3aFRbCCN0240-89454 uhttps://acces-distant.sciences-po.fr/fork?http://bu.dalloz.fr/zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po uhttp://gallica.bnf.fr/ark:/12148/cb343617225/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1883-1928)1 b(1968) -(1974)cParisdMagasins/AnnexeeP 8° 28461 b(1883) -(1946)cParisdMagasins/AnnexeeP 8° 0637 aexempb201105 aGEO RA4.06 France 01 aDEW 34601259cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200003500174210006000209430006200269446006100331512009400392530003500486531002000521710007600541711005900617801003000676802000700706856014500713955005500858991002000913038078643000109506920130319051832.0 a0755-1630 accn0755-1630 a0001095069 a19960829b18951898k y0frey0103 ba0 afre aFR a 0  aaha 0 10aRevue des universités du Midi aPariscLibraires associésaBordeauxcFéretd1895-1898 1tAnnales de la Faculté des lettres de Bordeauxx0184-783X |tRevue des lettres françaises et étrangèresx0184-781310aAnnales de la Faculté des lettres de Bordeaux. 3e série. Revue des universités du Midi00aRevue des universités du Midi 0aRev. univ. Midi02aUniversité de BordeauxbFaculté des lettres et sciences humaines407002aUniversité d'Aix-MarseillebFaculté des lettres4070 3aFRbAbesc20060626gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb328589114/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1895-1898)1 b(1895) -(1898)cParisdMagasins/AnnexeeP 8° 0936 aPériobTP02 P801549nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200008100160207002400241210002300265326001500288517000800303517002600311606003100337606004400368606003900412606003600451676000800487801002100495856017600516856008600692856014500778955006100923955005400984957006701038972000901105992001601114992000901130039228223000000545420130319051832.01 a0035-2578 aFNSP108333 a0000005454 a19900101a18949999 ba0 afre aFR ar aagu 10aRevue du droit public et de la science politique en France et à l'étranger 1aVol.1 no.1 (1894) - aPariscLGDJd1894- aBimestriel10aRDP10aRevue du droit public aDroit publicxPériodiques aScience politiqueyFrancexPériodiques aDroit publicyFrancexPériodiques aScience politiquexPériodiques a320 3aFRbCCN0035-25784 uhttps://acces-distant.sciences-po.fr/fork?http://www.lextenso.com/zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.ucm.es/BUCM/compludoc/S/S/00352578.htmzSommaires depuis le n°1, 19944 uhttp://gallica.bnf.fr/ark:/12148/cb343491628/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1894-1923)1 bno. 1 (1945) -....cParisd30, Salle 1er étageeDEW 3201 bno. 1 (1894) -(1944)cParisdMagasinseP 8° 00341 b(1951) -(1964) ; (1965) -(1974)cParisdMagasinseP Index 0044 aZCAD aDEW 320-321 aPBUL01169nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008800154207001800242210003000260326001500290430003500305517001500340606003600355676000800391710006900399856008800468856010800556955006600664955006200730972000900792991001800801992001200819040155927000022023520130319051832.01 a1247-4819 aFNSP791067 a0000220235 a19900101a19939999 ba0 afre aFR aaja 10aRevue du MAUSS semestriellefMouvement anti-utilitariste dans les sciences sociales 1ano. 1 (1993)- aPariscDécouverted1993- aSemestriel 1aRevue du MAUSSxISSN 0990-564210aRecherches aSciences socialesxPériodiques a30002aMouvement anti-utilitariste dans les sciences socialesc(France)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-du-mauss.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3001 bn.s. no.1(1993) -....cParisdMagasins/AnnexeeP 8° 5125 aZPAY aexempb201206 aDEW 30001390nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200005200138210003200190210003900222326001600261430006800277517005600345517001000401607003400411607003100445607003400476676000800510710010000518856002900618856013200647955006600779955006300845972000900908991001800917992002700935992003000962992001200992039877175000004192620130319051832.00 a0997-1327 aFNSP223338 a0000041926 a19900101a19889999 0 afre aFR10aRevue du monde musulman et de la Méditerranée aAix-en-ProvencecPUPd2008- aAix-en-ProvencecEdisudd1988-2007 aTrimestriel 1aRevue de l'Occident musulman et de la Méditerranéex0035-147410aRevue des mondes musulmans et de la Méditerrannée10aREMMM aPays islamiquesxPériodiques aMoyen-OrientxPériodiques aAfrique du NordxPériodiques a939 aAssociation pour l'étude des sciences humaines en Afrique du Nord et au Proche-Orient (France)40uhttp://remmm.revues.org/ zContenu : sommaires et depuis le n°1, 1966 ; résumés depuis le n° 39, 1986. Index des comptes-rendus par titres ou auteurs.1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9391 bno. 48/49 (1988) -....cParisdMagasins/AnnexeeP 8° 2304 aZCAD aexempb201004 aGEO RL4 Méditerranée aGEO RG.12 Pays islamiques aDEW 90900866nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000062001502100005002122300005002173000061002223260016002833360101002993370017004006060032004177100062004498010013005118560047005249550005005710000432337000043233720130319051832.0 a0000432337 a a20019999k fre 01 ba0 afre aFR az aay z  adr 10aRevue du réseau environnementb[Ressource électronique] a a aTexte intégral de la revue depuis le n°15 janvier 2003 airrégulier aDonnées textuelles accessibles uniquement en ligne ou par abonnement par courrier électronique aFichiers PDF aEnvironnementxPériodiques02aFrancebDirection des relations économiques extérieures 0aFRbFNSP4 uhttp://www.dree.org/publications/index.htm1 r01762nas 2200421 i 450 001001000000002001100010005001700021011001400038035001300052035001500065100004100080101000800121102000700129110001600136200002200152210003100174210007700205326001500282530003500297606003700332676000800369710005800377711005900435711005900494801002100553856009000574856010800664856002600772856007600798856009000874856010800964955006701072955007001139955010101209972000901310992001201319992000901331039228371000000203420130319051832.01 a0035-2764 aFNSP7782 a0000002034 a19900101a19509999 ba0 afre aFR aagu 10aRevue économique aPariscA. Colind1950-1977 aaPariscPresses de la Fondation nationale des sciences politiquesd1978- aBimestriel 0aRevue économiquebParis. 1950 aEconomie politiquexPériodiques a33002aFondation nationale des sciences politiquesc(France)02aEcole des hautes études en sciences socialesc(Paris)02aCentre national de la recherche scientifiquec(France) 3aFRbCCN0035-27644 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-economique.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr/ zContenu : Accès libre au texte intégral des articles de 1950 à 2002.4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00352764.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3301 bvol. 1 no. 1 (mai-1950) -....cParisdMagasins/AnnexeeP 8° 04501 bvol. 1 no. 1 (mai-1950) -vol. 57 no. 6 (nov-2006)cParisdBibliothèque de rechercheeP 8° 0450 aZPAY aDEW 330 aPBUL01353nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009600154207004600250210002700296300003300323326001500356430002900371517009000400606005300490712006700543801002100610856010600631856010800737955006800845972000900913991001800922992005100940992001200991039424022000000547220130319051832.01 a0255-0830 aFNSP108387 a0000005472 a19900101b19832006 f ba0 afre aFR aaju 10aRevue économique de l'OCDEfOrganisation de coopération et de développement économiques 1aN°1, (automne 1983)-N°43 (automne 2006) aPariscOCDEd1983-2006 aN'a pas paru en 1998 et 1999 aSemestriel 1aEtudes spéciales - OCDE10aRevue économique de l'Organisation de coopération et de développement économiques aEconomie politiqueyPays de l'OCDExPériodiques02aOrganisation de coopération et de développement économiques 3aFRbCCN0255-08304 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/02550830/revueeconocde zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1983) -no. 43 (2006)cParisdMagasins/AnnexeeP 8° 4682 aZECH aexempb200911 aGEO RN1 Pays industrialisés, pays occidentaux aDEW 33001199cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200003700197210005500234300015000289434003800439517006600477517003700543801003000580801002300610802000700633856014400640955006900784991002000853039068137000110939120130319051832.0 a2017-9677 accn7109/4199 aissn20179677 a0001109391 a19880318b188019 k y0frey0103 ba0 afre aFR ay  ar aacu uu 10aRevue économique et financière aPariscRevue Économique et Financièred1880-1974 aLe titre devient : "La revue économique & financière et L'économiste français" le 5 novembre 1938 lorsqu'il absorbe "L'économiste français" 0tL'Economiste françaisx1774-246313aLa Revue économique & financière et L'économiste français10aRevue Financière et Économique 3aFRbAbesc20070828gAFNOR 3aFRbISSNc20070808 a004 uhttp://gallica.bnf.fr/ark:/12148/cb32859449p/date.r=.langFRzAccès libre au texte intégral. Années 1880 et 1881 numérisées sur Gallica1 bno. 45 (1938) -no. 23 (1940)cParisdMagasins/AnnexeeP 4° 0387 aPériobTP01 P400918nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000044001552100066001993260016002655300044002816060041003257120060003668010021004268560033004478560057004809550070005379720009006079920012006160000042110000004211020130319051832.0 a0035-2772 aFNSP223740 a0000042110 a19900101a19439999 ba0 amul aCH aahu 10aRevue économique et sociale (Lausanne) aLausannecSociété d'études économiques et socialesd1943- aTrimestriel00aRevue économique et sociale (Lausanne) aSociologie économiquexPériodiques02aSociété d'études économiques et sociales (Lausanne) 3aFRbCCN0035-27724 uhttp://www.hec.unil.ch/sees/4 zContenu : accès aux sommaires depuis décembre 20011 bvol. 5 no. 1 (jan-1947) - …cParisdMagasins/AnnexeeP 8° 0121 aZGRA aDEW 30001393cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001700069035001700086035001500103100004100118101000800159102000700167106000600174110001600180200003700196207007600233210005900309321009100368326001200459327006700471423005100538530003700589531002100626606006500647801003000712801002300742802000700765856013400772955007000906991002000976991001100996036688851000108557520130319051832.0 a1374-4615 accn0102/6046 accn1374-4615 aissn13744615 a0001085575 a19830101b19041940uuuy0frey0103 ba0 afre aBE ar aafu uu 10aRevue économique internationale 0aVol.1(1904, mars)-vol.11(1914, juil.) ; vol.12(1920)-vol.32(1940, mars) aBruxellescRevue économique internationaled1904-1940 aTables : 1904-1909 ; 1909-1914 dans "Collection de tables de revues belges", 1914-1924 aMensuel| aDe 1905 à 1914 contient "Bibliographia economica universalis" 1tBibliographia economica universalisx1378-026300aRevue économique internationale 0aRev. écon. int. aRelations économiques internationalesxPériodiques2rameau 3aFRbAbesc20061215gAFNOR 3aFRbISSNc20020530 a0m4 uhttp://gallica.bnf.fr/ark:/12148/cb32859465x/date.r=.langFRzAccès libre au texte intégral. Année 1924 numérisée sur Gallica1 bvol. 1 (1904) -vol. 32 (1940)cParisdMagasins/AnnexeeP 8° 0378 aPériobTP01 P8 anumer001227cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200009700180207002300277210004300300326001800343606002600361606003800387606003200425676000800457710003800465801003000503801002300533802000700556856002900563856006600592955007400658955006400732992003300796992001200829130918040000118578220130319051832.01 a1967-2756 aissn19672756 a0001185782 a20090203a20079999k y0frey0103 ba0 afre aFR ay  ar aaiu uu 13aLa Revue européenne des médiasfIREBS, Institut de recherche de l'European Business School 1ano. 1 (fev-2007) - aPariscEuropean Business Schoold2007- a3 n°s par an aMédiasxPériodiques aMédias numériquesxPériodiques aCommunicationxPériodiques a07002aEuropean Business Schoolc(Paris) 3aFRbAbesc20090408gAFNOR 3aFRbISSNc20090225 a074 uhttp://irec.u-paris2.fr/ zContient : sommaires et texte intégral depuis le no. 0, 20061 bLes 3 dernières années;cParisd27, Salle Rez-de-chausséeeDEW 0701 bno. 9 (2008/2009) -....cParisdMagasins/AnnexeeP 4° 7277 aGEO RS Sans aspect régional aDEW 07001681nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005300139207002600192210008200218210007300300210008400373326002300457326002800480452007600508517000900584530005300593606004400646676000800690710008400698801002100782856012100803856010800924856002601032856003701058955006701095955007001162972000901232991001801241992001201259039741419000000546320130916142153.01 a0765-0752 aFNSP108369 a19900101a19859999 ba0 afre aFR aaia 10aRevue européenne des migrations internationales 1avol. 1, no. 1 (1985)- aPoitiers‎cREMI, revue européenne des migrations internationales‎d1996- aPoitiers‎cMIGRINTER - CNRS, Université de Poitiers‎d1994-1995 aPoitiers‎cDépartement de géographie, Université de Poitiers‎d1985-1994 aTrimestrielb2012- a3 nos par anb1985-2011 1tRevue européenne des migrations internationales (En ligne),x1777-541810aREMI aRevue européenne des migrations internationales aEmigration et immigrationxPériodiques a32502aCentre national de la recherche scientifiquec(France)bUnité associée (1145) 3aFRbCCN0765-07524 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-europeenne-des-migrations-internationales.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr/ zAccès libre au texte intégral.1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3251 bvol. 1 no. 1 (sep-1985) -....cParisdMagasins/AnnexeeP 8° 4885 aZCAD aexempb201002 aDEW 32501300nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200007200163210002500235326001500260430004000275517002800315530005700343606003600400676000800436801001300444856011100457856010800568955006000676957017500736972000900911991001800920992001200938038831287000060092920131025111146.01 a0048-8046 a0000600929 a a19729999 fre 01 ba0 afre aCH a 0  ar aah z 0 10aRevue européenne des sciences sociales‎ecahiers Vilfredo Pareto aGenèvecDrozd1972- aSemestriel 1tCahiers Vilfredo Pareto,x0008-049710aCahiers Vilfredo Pareto aRevue européenne des sciences sociales‎bImprimé aSciences socialesxPériodiques a300 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-europeenne-des-sciences-sociales.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 27 (1972) -....cParisdMagasins/AnnexeeP 8° 20821 bvol. 1(1963) -vol. 25 (1967) ; vol. 26 (1988) -vol. 32 (1994)cParisdMagasins/Annexe ; ces deux index constituent respectivement les no 78, 1988 et 100, 1994 de la revue aZPAY aexempb201004 aDEW 30001061nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000040001552100038001953260017002334300079002505170028003296060047003576060044004048300096004488560029005448560058005739550091006319920025007229920012007470000256694000025669420130319051832.01 a0223-4718 aFNSP895209 a0000256694 a19980930a19989999 ba0 afre aFR aa a 13aLa Revue fiduciaire. Feuillet-hebdo aPariscLa Revue fiduciaired1998- aHebdomadaire 1aLa revue fiduciaire. Informations hebdomadaires (0223-4718) < P 8° 2743 >13aLa Revue fiduciaire. FH aSociétésyFrancexFinancesxPériodiques aSociétésxDroityFrancexPériodiques aCollection donnée au CTLes en 2008, mais ne semble pas avoir été conservée par le CTLes4 uhttp://www.GroupeRF.com/ zContenu : sommaires depuis le n° 2730, 30 janv. 19991 bLa Bibliothèque conserve les 2 dernières annéescParisdMagasins/AnnexeeP 8° 2743 aGEO RA4.06 France 01 aDEW 34601485nas 2200385 i 450 001001000000002001100010005001700021011001400038035001300052035001500065100004100080101000800121102000700129110001600136200004700152210006700199326001600266430008300282488004300365517000900408606004200417676000800459710006300467801002100530856011500551856010800666955006700774955006300841955006900904957007100973972000901044992002101053992001601074992000901090013304127000000236520140110114658.01 a0152-7401 aFNSP8472 a0000002365 a19900101a19779999 ba0 afre aFR aaha 10aRevue française d'administration publique aPariscInstitut international d'administration publiqued1977- aTrimestriel 1aBulletin de l'Institut international d'administration publiquexISSN 0020-2355 1aAdministration (Paris)xISSN 0244-453410aRFAP aAdministration publiquexPériodiques a35102aInstitut international d'administration publiquec(France) 3aFRbCCN0152-74014 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-francaise-d-administration-publique.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3511 bno. 1 (jan-1977) -....cParisdMagasins/AnnexeeP 8° 24841 bL'année en courscParisdBibliothèque de rechercheeP 8° 24841 bno. 1 (1977) -no. 100 (2001)cParisdMagasins/AnnexeeP Index 0848 aZCAD aGEO RQ Universel aDEW 350-354 aPBUL01036nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210004700187326001600234606005200250606003300302676000800335801002100343856006300364856010000427955006700527955006600594972000900660991001800669992001400687992000900701039785092000000547520130319051832.01 a0769-0479 aFNSP108390 a0000005475 a19900101a19869999 ba0 afre aFR aahu 10aRevue française d'économie aPariscRevue française d'économied1986- aTrimestriel aHistoire économiquez20e sièclexPériodiques aMacroéconomiexPériodiques a330 3aFRbCCN0769-04794 uhttp://www.persee.fr/web/revues/home/prescript/revue/rfeco zAccès libre au texte intégral à partir de 1986 à l'exception des années les plus récentes1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3301 bvol. 1 no. 1 (1986) -....cParisdMagasins/AnnexeeP 8° 4938 aZPAY aexempb201206 aDEW 338.9 aPBUL01162nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210005000198326001600248607004300264607002900307676000800336710005000344801002100394856011000415856010800525955006600633955006300699972000900762991001800771992002300789992001200812039588165000000595620130319051832.01 a0397-7870 aFNSP109467 a0000005956 a19900101a19769999 ba0 amul aFR aaha 10aRevue française d'études américaines aNancycPresses universitaires de Nancyd1976- aTrimestriel aEtats-UnisxCivilisationxPériodiques aEtats-UnisxPériodiques a97002aAssociation française d'études américaines 3aFRbCCN0397-78704 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-francaise-d-etudes-americaines.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9701 bno. 1 (avr-1976) -....cParisdMagasins/AnnexeeP 8° 3774 aZCAD aexempb201104 aGEO RC2 Etats-Unis aDEW 97301209nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004900154210006600203326002200269326002700291607006100318607004800379676000800427710007500435801002100510856005000531856007200581955006600653955007000719972000900789991001800798992003100816992001200847039410803000000548020130319051832.01 a0248-9015 aFNSP108395 a0000005480 a19900101a19809999 ba0 afre aFR aaju 10aRevue française de civilisation britannique aOrléanscRevue française de civilisation britanniqued1980- aSemestrielb1998- aTrimestrielb1980-1997 aGrande-BretagnexPolitique et gouvernementxPériodiques aGrande-BretagnexCivilisationxPériodiques a94002aGroupe de recherche en civilisation britannique contemporainec(Paris) 3aFRbCCN0248-90154 uhttp://www.lcdpu.fr/revues/?collection_id=544 zContient : sommaires et résumés à partir du vol. 11, no. 4, 20021 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 bvol. 1 no. 1 (oct-1980) -....cParisdMagasins/AnnexeeP 8° 4620 aZPAY aexempb201003 aGEO RA4.02 Grande-Bretagne aDEW 94101085nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210002800198210002500226326001500251517000900266606004600275676000800321801002100329830003200350856006700382856010800449955006600557955005600623972000900679992002200688992001600710992000900726039726266000000592520130319051832.01 a0763-1219 aFNSP109435 a0000005925 a19900101a19849999 ba0 afre aFR aaga 10aRevue française de droit administratif aPariscSireyd1984-1998 aPariscDallozd1999- aBimestriel10aRFDA aDroit administratifyFrancexPériodiques a342 3aFRbCCN0763-1219 a1984-1999 conservé au 13 U4 uhttps://acces-distant.sciences-po.fr/fork?http://www.dalloz.fr zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 3e étageeDEW 3421 bno. 1 (mai-1984) -....cParisdMagasinseP 4° 4966 aZCAD aGEO RA4.06 France aDEW 350-354 aPBUL01260nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004600139210005100185326001600236452007100252530004600323606004000369606004800409606006300457676000800520856021900528955006700747955005900814972000900873991001800882992002200900992001200922001643223000001117720130729114543.01 a1151-2385 aFNSP123964 a19900727a19909999 ba0 afre aFR aaha 00aRevue française de droit constitutionnel aPariscPresses universitaires de Franced1990- aTrimestriel 1tRevue française de droit constitutionnel (En ligne)‎x2105-286700aRevue française de droit constitutionnel aDroit constitutionnelxPériodiques aDroit constitutionnelyFrancexPériodiques aDroit constitutionnelyFrancexJurisprudencexPériodiques a3424 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-francaise-de-droit-constitutionnel.htm?zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 3421 bno. 1 (1990) -....cParisdMagasins/AnnexeeP 8° 5659 aZCAD aexempb201202 aGEO RA4.06 France aDEW 34201015nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004300154210006800197326001600265517000900281606003700290606004500327676000800372801002100380856003500401856005400436955006700490955005900557972000900616991001800625992002200643992001200665013302469000000565920130319051832.01 a0294-0833 aFNSP108788 a0000005659 a19900101a19839999 ba0 afre aFR aahu 10aRevue française de finances publiques aPariscLibrairie générale de droit et de jurisprudenced1983- aTrimestriel10aRFFP aFinances publiquesxPériodiques aFinances publiquesyFrancexPériodiques a336 3aFRbCCN0294-08334 uhttp://rffp.gerfip.org/som.php zContenu : sommaires des n°s depuis le n°1, 19831 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3361 bno. 1 (1983) -....cParisdMagasins/AnnexeeP 8° 4608 aZPAY aexempb201011 aGEO RA4.06 France aDEW 33600908nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003800139210003200177326001600209440003700225530003800262606004200300606005700342856004700399856006500446955006800511972000900579991001800588992001200606040577848000021478920130828182542.01 a1284-9340 aFNSP775159 a19900101b19972000 ba0 afre aFR aaha 00aRevue française de géoéconomie aPariscEconomicad1997-2000 aTrimestriel 1tGéoéconomie (Paris)x1620-9869 aRevue française de géoéconomie aGéographie économiquexPériodiques aRelations économiques internationalesxPériodiques4 uhttp://www.geoeconomie.org/rfg/default.htm zContenu : sommaires et résumés depuis le n°1, print. 19971 bno. 1 (1997) -no. 13 (2000)cParisdMagasins/AnnexeeP 8° 6331 aZPAY aexempb201301 aDEW 33701423nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210002400186326001500210434004600225434004400271434004100315437004100356606004700397606003900444676000800483710008400491801002100575856010000596856010800696955006600804955006300870957005700933972000900990992002200999992001601021039550117000000566020130319051832.01 a0338-4551 aFNSP108789 a0000005660 a19900101a19759999 ba0 afre aFR aagu 10aRevue française de gestion aPariscFNEGEd1975- aBimestriel 1aHommes et techniques (Puteaux)x0018-4381 1tFormation et gestion (Paris)x0765-7587 1tManagement France (Paris)x0542-4801 1aManagement France (Paris)x0542-4801 aGestion d'entrepriseyFrancexPériodiques aGestion d'entreprisexPériodiques a65002aFondation nationale pour l'enseignement de la gestion des entreprisesc(France) 3aFRbCCN0338-45514 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-francaise-de-gestion.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 4e étageeDEW 6501 bno. 1 (mai-1975) -....cParisdMagasins/AnnexeeP 4° 38391 b(1975) -(1985)cParisdMagasins/AnnexeeP Index 0502 aZPAY aGEO RA4.06 France aDEW 650-65800951cas0 2200253 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200008900148210002300237436004600260436005200306530008900358801003000447856014500477955005500622991002000677039210065000109327720130319051832.0 accn9021/3084 a0001093277 a19830101b188819 0frey0103 zz0 afre aFR ar aak 10aRevue française de l'étranger et des colonies et Exploration gazette géographique aPariscImpr. Chaix |tla Gazette géographique et l'exploration |tRevue française de l'étranger et des colonies00aRevue française de l'étranger et des colonies et Exploration gazette géographique 3aFRbAbesc20020116gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb413960740/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1890-1914)1 b(1887) -(1904)cParisdMagasins/AnnexeeP 8° 0673 aPériobTP02 P801047nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210005100191326001500242517000800257606003100265710003900296856009100335856010800426955007100534957005700605972000900662991001800671992003300689992001100722039228452000004226920130319051832.01 a0035-2942 aFNSP224063 a0000042269 a19900101a19709999 ba0 afre aFR aaga 10aRevue française de psychanalyse aPariscPresses universitaires de Franced1970- aBimestriel10aRFP aPsychanalysexPériodiques02aSociété psychanalytique de Paris4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue.php?ID_REVUE=RFP zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 34 no. 4 (jul-1970) -....cParisdMagasins/AnnexeeP 8° 29091 b(1926) -(2006)cParisdMagasins/AnnexeeP Index 0772 aZPAY aexempb201004 aGEO RS Sans aspect régional aDEW 1501495nas 2200397 i 450 001001000000002001100010005001700021011001400038035001300052035001500065100004100080101000800121102000700129105001800136110001600154200004200170210003700212326001500249606003600264606004400300676000800344710005800352711004800410801002100458856011000479856010800589856002600697856006700723955006700790955007000857955006900927957006700996972000901063992001601072992000901088039228460000000200920131220102150.01 a0035-2950 aFNSP7751 a0000002009 a19900101a19519999 fre ba0 afre aFR a 0  aag z 0 10aRevue française de science politique aPariscPresses de la FNSPd1951- aBimestriel aScience politiquexPériodiques aScience politiqueyFrancexPériodiques a32002aFondation nationale des sciences politiquesc(France)02aAssociation française de science politique 3aFRbCCN0035-29504 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-francaise-de-science-politique.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr/ zAccès libre au texte intégral du n°1, 1951 au n° 5-6, 20021 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bvol. 1 no. 1 (jan-1951) -....cParisdMagasins/AnnexeeP 8° 10091 bL'année en courscParisdBibliothèque de rechercheeP 8° 10091 b1951-1970 ; 1991-2000cParisdSalle d'actualitéeP Index 0190 aZCAD aDEW 320-321 aPBUL01483cas0 2200397 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101001800139102000700157105001800164106000600182110001600188200014500204207002700349210003800376326001500414517000900429606003700438676000800475712012700483801003000610801002300640801003000663802000700693856010700700856010800807955006600915955005900981992003301040992001201073130342084000115539320130319051832.01 a1966-6608 a127151850 aissn19666608 a0001155393 a20090113a20089999k 0frey0103 ba0 afredfredeng aFR ay  ar aaj 10aRevue française de socio-économief[Faculté des sciences économiques et sociales de l'Université des sciences et technologies de Lille] 0a01 (1er semest. 2008)- aPariscÉd. La Découverted2008- aSemestriel10aRFSE aEconomie politiquexPériodiques a30102aUniversité des sciences et technologies de LillebFaculté des sciences économiques et socialescVilleneuve-d'Ascq, Nord 3aFRbAbesc20090114gAFNOR 3aFRbISSNc20080601 3aFRbAbesc20080925gAFNOR a074 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-francaise-de-socio-economie.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3011 bno. 1 (2008) -....cParisdMagasins/AnnexeeP 8° 7062 aGEO RS Sans aspect régional aDEW 30101915nas 2200457 i 450 001001000000002001100010005001700021011001400038035001300052035001500065100004100080101000800121102000700129110001600136200003500152210004100187210002700228210003500255210003100290326001600321606002900337606003700366676000800403711005900411712007000470801002100540856010300561856010800664856009000772856010800862856004900970856010001019955006601119955006601185955006901251957008501320972000901405992002201414992001201436992000901448039228487000000222120131220102218.01 a0035-2969 aFNSP8018 a0000002221 a19900101a19609999 ba0 afre aFR aaha 10aRevue française de sociologie aPariscPresses de Sciences Pod2013- aGapcOphrysd1995-2012 aPariscÉd. du CNRSd1965-1994 aPariscJulliardd1960-1964 aTrimestriel aSociologiexPériodiques aSociologieyFrancexPériodiques a30102aCentre national de la recherche scientifiquec(France)02aInstitut de recherche sur les sociétés contemporainesc(France) 3aFRbCCN0035-29694 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-francaise-de-sociologie.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00352969.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr/listIssues.do?key=rfsoc zAccès libre au texte intégral à partir de 1960 à l'exception des années les plus récentes1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3011 bvol. 1 no. 1 (1960) -....cParisdMagasins/AnnexeeP 8° 17831 bL'année en courscParisdBibliothèque de rechercheeP 8° 17831 b(1960) -(1980) ; (1981) -(2000)cParisdBibliothèque de rechercheeP Index 0239 aZPAY aGEO RA4.06 France aDEW 301 aPBUL01973nas 2200445 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004300154207002700197210008800224326001800312326002700330421009500357421011700452430004300569606004500612607004600657676000800703710012400711711008300835801002100918856008400939856007601023856011001099856010801209955006601317955006701383972000901450991001801459992002201477992001601499992001201515039228509000000566620130319051832.01 a0035-2985 aFNSP108802 a0000005666 a19900101a19679999 ba0 afre aFR aahu 10aRevue française des affaires sociales 1avol. 21, no. 1 (1967)- aPariscMinistère du travail, de l'emploi et de la formation professionnelled1967- aAnnuelb2009- aTrimestrielb1967-2008 1aRevue française des affaires sociales. Cahier de jurisprudence. Emploi travailx0296-520801tRevue française des affaires sociales. Cahier de jurisprudence. Sécurité sociale aide sociale, ISSN 0296-5216 1aRevue française du travailx1153-6411 aMarché du travailyFrancexPériodiques aFrancexConditions socialesxPériodiques a36002aFrancebMinistère du travail, de l'emploi et de la formation professionnellebService des études et de la statistique02aFrancebMinistère de la solidarité, de la santé et de la protection sociale 3aFRbCCN0035-29854 uhttp://www.sante-sports.gouv.fr/revue-francaise-des-affaires-sociales,3716.html zContenu : sommaires depuis 1996 ; sélection de n°s en texte intégral4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-francaise-des-affaires-sociales.htm4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 4e étageeDEW 3601 bvol. 21 no. 1 (1967) -....cParisdMagasins/AnnexeeP 8° 0193 aZCAD aexempb201011 aGEO RA4.06 France aDEW 360-363 aDEW 33101154cas0 2200301 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200007200174210003800246517000800284530003800292606005400330702003700384710004400421801003000465856014500495955014300640991002000783991004900803037456520000108557720130319051832.0 a2015-0121 accn0102/6089 a0001085577 a19830101b18781928m y0frey0103 ba0 afre aFR a 0  aaza 0 10aRevue générale d'administrationfsous la dir. de M. Maurice Block aPariscBerger-Levraultd1878-192810aRGA00aRevue générale d'administration aDroit administratifyFrancexPériodiques2rameau 1aBlockbMauricef(1816-1901)465102aFrancebMinistère de l'intérieur4070 3aFRbAbesc20070321gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb32859773c/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1878-1928)1 b(1878) -(1928)w1892 (septembre-décembre)-1893 (janvier-avril)-1898 (mai, août)-1921 (mai-décembre)cParisdMagasins/AnnexeeP 8° 0475 aPériobTP01 P8 anumer0 (si de quoi compléter trous gallica)00980nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013110600060013811000160014420000510016020700250021121000250023632600160026160600380027767600080031580100210032385601450034495500670048995500530055697200090060999100360061899200120065403956603X000000566220130319051832.01 a0373-6156 aFNSP108791 a0000005662 a19900101a18949999 ba0 afre aFR ar aahu 10aRevue générale de droit international public 1avol. 1 no. 1 (1894)- aPariscPedoned1894- aTrimestriel aDroit internationalxPériodiques a341 3aFRbCCN0373-61564 uhttp://gallica.bnf.fr/ark:/12148/cb34378576f/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1894-1952)1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 3411 b(1894) -....cParisdMagasins/AnnexeeP 8° 0027 aZCAD anumer0 (complément de Gallica) aDEW 34100920nas 2200277 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000450015421000270019932600160022643000740024260600430031685600700035985601080042995500590053797200090059699200250060599200120063000393862X000018996420130319051832.01 a1273-3407 aFNSP701891 a0000189964 a19900101a19969999 ba0 afre aFR aaha 00aRevue générale du droit des assurances aPariscLextensod1996- aTrimestriel 1aRevue générale des assurances terrestres,x0035-3167 < P 8° 0361 > aAssurancexDroityFrancexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lextenso.com zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1996) -....cParisdMagasins/AnnexeeP 8° 0361 aZPAY aGEO RA4.06 France 01 aDEW 34600782nls 2200241 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001251350018001412000072001592100027002312300024002586060043002828560070003258560108003959920025005039920012005280000941458000094145820130319051832.0 aFNSP701891 a0000941458 a19900101a19959999 ba0 afre aFR aaha  adr 00aRevue générale du droit des assurancesb[Ressource électronique] aPariscLextensod1995- arevue électronique aAssurancexDroityFrancexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lextenso.com zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aGEO RA4.06 France 01 aDEW 34601255cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200002600179210003900205421004300244421006500287421004800352434004000400530004100440531003000481801003000511801002300541802000700564856014500571955018100716991002000897037486322000108558420130319051832.0 a0151-1882 accn0151-1882 aissn01511882 a0001085584 a19810121b18921939uuuy0frey0103 ba0 afre aFR ar aacu uu 13aLa Revue hebdomadaire aPariscE. Plon, Nourritd1892-1939 |tL'Instantané (Paris. 1897)x1764-7967 |tLe Supplément illustré de la Revue hebdomadairex1764-7991 |tCollection nouvelle de la France dramatique |tLe Monde moderne (Paris)x1764-798313aLa Revue hebdomadaireb(Paris. 1892) 0aRev. hebd.b(Paris, 1892) 3aFRbAbesc20070320gAFNOR 3aFRbISSNc20030523 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34350607j/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1892-1938)1 b(1905) ; (1939)wn°27, 1907; n°16, 23 1908 ; 1910 ; 1912 (n°43, 46, 50), 1914 (août-décembre), 1919, 1920, 1921 (n°21), 1926 (n°8, 9)cParisdMagasins/AnnexeeP 8° 0480 aPériobTP01 P801324nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200002100160210005100181326001600232530002800248606002700276607003500303676000800338856019500346856014500541955006700686955006100753955004600814957010500860972000900965992001200974039228649000004231620130319051832.01 a0035-3264 aFNSP224165 a0000042316 a19900101a18769999 ba0 afre aFR ar aaha 10aRevue historique aPariscPresses universitaires de Franced1876- aTrimestriel 0aRevue historiquebParis aHistoirexPériodiques aFrancexHistoirexPériodiques a9094 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-historique.htm?zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po uhttp://gallica.bnf.fr/ark:/12148/cb34349205q/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1876-2000)1 bLes 3 dernières annéescParisd30, Salle 2e étage:eDEW 9091 bno. 195 (1945) -....cParisdMagasins/AnnexeeP 8° 00821 b(1876) -(1944)cParisdAnnexeeP 8° 00821 b1876/1880 ; 1896/1910 ; 1911/1931 ; 1931/1935 ; 1936/1950cParisdSalle d’actualitéeP Index 0076 aZPAY aDEW 90901369cas0 2200349 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109106000600127110001600133200009500149210004800244301005600292303005500348326001600403430004400419606003700463606003500500607005600535710007300591801003000664856008600694856012600780955006600906972000900972992002200981992001601003104550880000119859420130319051832.0 a0001198594 a20060706a19749999k y0frey50 ba0 afre aFR ay 0  ar aaha z 0 10aRevue historique des arméesfMinistère de la Défense. Service historique de la Défense aVincennescMinistère de la défensed1974- aDemande de numérotation ISSN en cours par le CR 28 aNotice rédigée à partir de no.4 publié en 1977 aTrimestriel 1tRevue historique de l'arméex0035-3299 aHistoire militairexPériodiques aGuerrexHistoirexPériodiques aFrancexPolitique militairexHistoirexPériodiques02aFrancebMinistère de la défensebService historique de la Défense 3aFRbAbesc20091116gAFNOR4 uhttp://www.servicehistorique.sga.defense.gouv.fr/Revue-historique-des-armees.html zContient les sommaires et résumés des n°s à partir du no. 256 (2009) et l'index des articles publiés de 1960 à 20051 bno. 258 (mars-2010) -....cParisdMagasins/AnnexeeP 4° 7288 aZPAY aGEO RA4.06 France aDEW 355-35900934nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005000139210005900189326001500248517000900263530005000272606002400322710006700346801002100413856005100434856004900485955005900534972000900593991001800602992001200620039719952000004234620130910162409.01 a0770-2310 aFNSP224248 a19900101a19789999 ba0 afre aBE aaju 10aRevue interdisciplinaire d'études juridiques aBruxellescFacultés universitaires Saint-Louisd1978- aSemestriel1 aRIEJ aRevue interdisciplinaire d'études juridiques aDroitxPériodiques02aSéminaire interdisciplinaire d'études juridiques (Bruxelles) 3aFRbCCN0770-23104 uhttp://www.fusl.ac.be/Files/General/RIEJ0.html zContenu : sommaires à partir du no.29, 19921 bno. 1 (1978) -....cParisdMagasins/AnnexeeP 8° 4268 aZPAY aexempb201106 aDEW 34001031cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200009200174210003300266326001800299430004900317606002800366710005900394801003000453801003000483802000700513856003900520856005700559955006400616972000900680992001600689040261859000073256920130319051832.01 a1254-4590 accn1254-4590 a0000732569 a19940427a19949999m z0frey0103 ba0 afre aFR a 0  aaia 0 10aRevue internationale d'éducation SèvresfCentre international d'études pédagogiques aSèvrescCIEPcDidierd1994- a3 n°s par an 1tEducation & pédagogies (Sèvres)x0998-4356 aEducationxPériodiques02aCentre international d'études pédagogiquesc(France) 3aFRbAbesc20041103gAFNOR 3aFRbAbesc20041103gAFNOR a074 uhttp://www.ciep.fr/ries/ries50.php zContenu : résumes des articles depuis le n°1, 19941 bno. 35 (avr-2004) -....cParisdMagasins/AnnexeeP 8° 6792 aZPAY aDEW 370-37901330nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200004300138207004100181210005400222326001600276430007100292517000900363606003300372676000800405712004000413801002100453856004400474856008600518856002600604856012300630955006600753955006400819957006400883972000900947992001200956039228754000003773120130319051832.01 a0035-3337 aFNSP209839 a0000037731 a19900101a19499999 ba0 afre aFR10aRevue internationale de droit comparé 1a1ère année, no 1/2 (jan-jun 1949)- aPariscSociété de législation comparéed1949- aTrimestriel 1aBulletin de la Société de législation comparéexISSN 1247-974810aRIDC aDroit comparéxPériodiques a34002aSociété de législation comparée 3aFRbCCN0035-33374 uhttp://www.legiscompare.com/index1.html zContenu : sommaires et résumés en français et en anglais des derniers numéros4 uhttp://www.persee.fr/ zContenu : accès libre au texte intégral des articles à partir de 1949 à l'exception des années les plus récentes1 bLes 3 dernières annéescParisd30, Salle 3e étageeDEW 3401 bno. 1 (jan-1949) - ....cParisdMagasins/AnnexeeP 8° 00301 b(1999) -(2008)cPariscParisdMagasins/AnnexeeP Index 0873 aZCAD aDEW 34001212nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004600139210003900185326001600224452006700240517000900307530004600316606003700362676000800399710005200407801002100459856011400480856010800594955006700702955006600769972000900835991001800844992001200862040133664000004235220131002162916.01 a1010-8831 aFNSP224257 a19900101a19869999 f ba0 afre aBE aahu 10aRevue internationale de droit économique aBruxellescDe Boeck-Wesmaeld1986- aTrimestriel 1tRevue internationale de droit économique (Online),x1782-15251 aRIDE aRevue internationale de droit économique aDroit des affairesxPériodiques a34602aAssociation internationale de droit économique 3aFRbCCN1010-88314 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-internationale-de-droit-economique.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 3461 bvol. 1 no. 1 (1986) -....cParisdMagasins/AnnexeeP 8° 5021 aZPAY aexempb201106 aDEW 34601082nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007600154210002700230326002200257326002700279510003800306606003100344710004700375801002100422856010900443856010800552955006900660972000900729991001800738992001200756013305360000004235520140110123046.01 a0223-5404 aFNSP224261 a0000042355 a19900101a19249999 y ba0 afre aFR aaju 10aRevue internationale de droit pénaldInternational review of penal law aToulousecErèsd1924- aSemestrielb1979- aTrimestrielb1924-197812aInternational review of penal law aDroit pénalxPériodiques02aAssociation internationale de droit pénal 3aFRbCCN0223-54044 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-internationale-de-droit-penal.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 17 no. 1/2 (1946) -....cParisdMagasins/AnnexeeP 8° 0051 aZPAY aexempb201011 aDEW 34501117nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006500139210002500204326001600229451006100245530006500306606004800371710009800419801002100517856009300538856007600631955006600707972000900773992002100782992001200803039375854000004810420130930110548.01 a0303-8947 aFNSP242167 a19900101a19749999 f ba0 afre aAT aahu 10aRevue internationale de la vérification des comptes publics aWiencINTOSAId1974- aTrimestriel 1aInternational journal of government auditing,x0047-072410aRevue internationale de la vérification des comptes publics aFinances publiquesxContrôlexPériodiques02aOrganisation internationale des institutions supérieures de contrôle des finances publiques 3aFRbCCN0303-89474 uhttp://www.intosai.org/fr/sur-lintosai/international-journal-of-government-auditing.html zContenu : accès libre au texte intégral depuis le vol. 26, no 1, 19991 bvol. 2 no. 1 (1975) -....cParisdMagasins/AnnexeeP 4° 3663 aZGRA aGEO RQ Universel aDEW 33601239nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004800154210003900202326002300241326002800264606005300292606005800345676000800403856011600411856010800527955006700635955006900702955006600771972000900837991001800846992002100864992001600885036841498000012976920131220102510.01 a1370-0731 aFNSP528066 a0000129769 a19940613a19949999 ba0 afre aBE aaha 00aRevue internationale de politique comparée aBruxellescDe Boeck-Wesmaeld1994- aTrimestrielb2003- a3 nos par anb1994-2002 aInstitutions politiques comparéesxPériodiques aScience politiquexMéthode comparativexPériodiques a3204 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-internationale-de-politique-comparee.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bL'année en courscParisdBibliothèque de rechercheeP 8° 60391 bvol. 1 no. 1 (1994) -....cParisdMagasins/AnnexeeP 8° 6039 aZCAD aexempb201103 aGEO RQ Universel aDEW 320-32100857nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004700154210002900201326001600230430006800246606003700314712005600351801002100407856004300428955008300471972000900554992001600563039560759000000566320130319051832.01 a0379-0312 aFNSP108792 a0000005663 a19900101a19679999 f ba0 afre aCH aahu 10aRevue internationale de sécurité sociale aGenèvecAISSd1967-2007 aTrimestriel 1aBulletin de l' Association internationale de sécurité sociale aSécurité socialexPériodiques02aAssociation internationale de la sécurité sociale 3aFRbCCN0379-03124 uhttp://www.issa.int/fren/publ/revf.htm1 bvol. 1 no. 1 (1967) - vol. 60 no. 4 (2007)cParisdMagasins/AnnexeeP 8° 1031 aZPAY aDEW 360-36301312nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154207014800193210002800341300008100369326001700450510003800467710004500505856005700550856005300607856010900660856010800769955007000877972000900947991001800956992001200974039581837000023977520130319051832.01 a0390-6701 aFNSP845591 a0000239775 a19900101a18939999 ba0 aeng aGB aaia 10aRevue internationale de sociologie 0avol. 1 no 1(1893)-vol. 47 no 9/12 (1939) ; [2e sér., vol.1] no 1(1954)-vol.21, no 3 (1985) ; n.s. no 1(1987)-no 3 (1994) ; vol. 6, no 1(1996)- aAbingdoncCarfaxd1893- aTitre parallèle en anglais à partir de 1964, texte en différentes langues a3 nos par an10aInternational review of sociology02aAssociation internationale de sociologie4 uhttp://www.tandf.co.uk/journals/carfax/03906701.html zContenu : sommaires depuis le vol. 6, n°1, 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713427609db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 7 no. 1 (mar-1997) -....cParisdMagasins/AnnexeeP 8° 6380 aZSAB aexempb201211 aDEW 30101350cas0 2200397 450 001001000000002001100010005001700021011001400038035004000052035001700092035001500109100004100124101000800165102000700173105001800180106000600198110001600204200005200220207004900272210002700321326001500348440004500363517005300408606005300461606002600514801003000540801002900570801002300599802000700622856003100629856004900660955006900709955012700778992001400905992003300919120069644000115366120130319051832.01 a1959-6758 aFRBNF411610670000004zFRBNF41161067 aissn19596758 a0001153661 a20071217b20072009k y0frey0103 ba1 afre aFR a z 0 y  ar aagu uu 13aLa Revue internationale des livres & des idées 0aNo 1 (sept./oct. 2007)-no 14 (nov/déc 2009) aPariscRILId2007-2009 aBimestriel 1tRdl, la revue des livres, ISSN 2118-570013aLa Revue internationale des livres et des idées aLittératurexHistoire et critiquexPériodiques aCulturexPériodiques 3aFRbAbesc20080918gAFNOR 0aFRbBNFc20071124gAFNOR 3aFRbISSNc20080909 a074 uhttp://revuedeslivres.net/ zContient les sommaires depuis le no. 1, 20071 bL'année en courscParisd27, Salle Rez-de-chausséeeP F° 05561 bno 1 (sep/oct-2007) ; no 3 (jan/fev-2008) ; no 6 (jul/aou-2008) -no 14 (nov/déc 2009)cParisdMagasins/AnnexeeP F° 0556 aDEW 80-89 aGEO RS Sans aspect régional01482nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200005400138210007400192326001600266434005300282451006300335606003700398606004200435676000800477710005600485712005600541801002100597856005000618856007200668856008000740856010800820955006700928955006700995972000901062992002101071992001601092039376664000004266020130625142731.01 a0773-2961 aFNSP224870 a0000042660 a19900101a19579999 ba0 afre aBE10aRevue internationale des sciences administratives aBruxellescInstitut international des sciences administrativesd1928- aTrimestriel 1tProgrès de l'administration publiquex0478-4820 1aInternational review of administrative sciencesx0020-8523 aPolitique publiquexPériodiques aAdministration publiquexPériodiques a35102aInstitut international des sciences administratives02aInstitut international des sciences administratives 3aFRbCCN7104/59024 uhttp://www.iiasiisa.be/iisa/firisa/firisa.htm zContenu : les sommaires de la revue depuis le volume 64, n°1, 19984 uhttp://www.cairn.info/revue-internationale-des-sciences-administratives.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3511 bvol. 22 no. 1 (1957) -....cParisdMagasins/AnnexeeP 4° 1490 aZSAB aGEO RQ Universel aDEW 350-35401374aas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005500139210003900194210003500233326001600268430006100284451005300345606003600398676000800434710001100442801002100453856003200474856008600506856010900592856010600701955006600807955006700873972000900940991001800949992002100967992001200988013307193000004266420130626175424.01 a0304-3037 aFNSP224881 a19900101a19599999 f ba0 afre aFR aahu 10aRevue internationale des sciences socialesfUnesco aToulouse‎cÉd. Érès‎d1986- aParis‎cUnesco‎d1959-1985 aTrimestriel 1tBulletin international des sciences sociales,x1011-114X 1aInternational social science journal,x0020-8701 aSciences socialesxPériodiques a30002aUnesco 3aFRbCCN0304-30374 uhttp://www.unesco.org/issj/ zContenu : texte intégral (pour version en espagnol) depuis le n°149, sept. 19964 uhttps://acces-distant.sciences-po.fr/http/www.cairn.info/revue-internationale-des-sciences-sociales.htm? zAccès au texte intégral réservé aux lecteurs inscrits à la Bibliothèque, via Cairn, depuis 20011 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3001 bvol. 11 no. 1 (1959) -....cParisdMagasins/AnnexeeP 8° 0324 aZPAY aexempb201101 aGEO RQ Universel aDEW 30001408nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200006900160207003200229210002800261210002900289326002300318326002500341606003800366676000800404710004800412801002100460856002900481856005500510856014500565955006700710955005300777957007300830972000900903991001800912991003500930992002100965992001200986039556824000000567320131015144629.01 a0378-5599 aFNSP108826 a0000005673 a19900101a19219999 f ba0 afre aCH ar aahu 10aRevue internationale du travailfBureau international du travail 1avol. 1, no. 1 (janv. 1921)- aGenèvecBITd1921-2006 aOxfordcBlackwelld2007- aTrimestrielb1997- aBimensuelb1921-1996 aEconomie du travailxPériodiques a33102aOrganisation internationale du travail4070 3aFRbCCN0378-55994 uhttp://www.ilo.org/revue zContenu : sommaires depuis le vol. 135, n°2, 19964 uhttp://gallica.bnf.fr/ark:/12148/cb34470464d/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1921-1925)1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3311 b(1921) -....cParisdMagasins/AnnexeeP 8° 01881 bvol. 31 (1935) -vol. 73 (1956)cParisdMagasins/AnnexeeP Index 0468 aZECH aexempb201011 anumer0 (complément gallica ?) aGEO RQ Universel aDEW 33101277nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210003100198210002900229210003400258326001600292430005800308606003200366606004400398676000800442710009400450856010900544856010800653955006700761955006000828972000900888991001800897992001200915004386892000024427520130319051832.01 a1287-1672 aFNSP858162 a0000244275 a19900101a19989999 ba0 afre aFR aaha 13aLa Revue internationale et stratégique aPariscArmand Colind2010- aPariscDallozd2005-2009 aPariscIRIS pressed1998-2004 aTrimestriel 1aRelations internationales et stratégiquesx1157-5417 aGéopolitiquexPériodiques aRelations internationalesxPériodiques a32702aInstitut de relations internationales et stratégiquesc(Villetaneuse, Seine-Saint-Denis)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-internationale-et-strategique.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bno. 29 (1998) -....cParisdMagasins/AnnexeeP 8° 5703 aZCAD aexempb201111 aDEW 32700960nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210005500193326001600248606003900264676000800303801002100311856004700332856004500379955006700424955005900491957005700550972000900607991001800616992001200634039581543000004267220130319051832.01 a0397-0299 aFNSP224896 a0000042672 a19900101a19769999 ba0 afre aFR aahu 10aRevue juridique de l'environnement aLimogescRevue juridique de l'environnementd1976- aTrimestriel aEnvironnementxDroitxPériodiques a333 3aFRbCCN0397-02994 uhttp://www-sfde.u-strasbg.fr/sommaires.htm zContenu : sommaires depuis le n°1, 20021 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3331 bno. 1 (1976) -....cParisdMagasins/AnnexeeP 8° 39581 b(1976) -(1995)cParisdMagasins/AnnexeeP Index 0683 aZPAY aexempb201001 aDEW 34400903nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000067001502100034002172300024002513260005002756060044002806060041003248010013003658560085003788560108004639550005005719920025005769920012006010000969202000096920220130319051832.0 a0000969202 a a19999999k fre 01 ba0 afre aFR ar aaz z  adr 10aRevue juridique personnes & familleb[Ressource électronique] aPariscLamyline Reflexc1999- aRevue électronique a aPersonnes (droit)yFrancexPériodiques aFamillexDroityFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 34600858nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000071001502100034002212300024002553260005002796060048002848010013003328560085003458560108004309550005005389920025005439920012005680000969205000096920520130319051832.0 a0000969205 a a20049999k fre 01 ba0 afre aFR ar aaz z  adr 10aRevue Lamy collectivités territorialesb[Ressource électronique] aPariscLamyline Reflexc2004- aRevue électronique a aAdministration localeyFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 35101392cas0 2200397 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147105001800154106000600172110001600178200006400194207001900258210002300277326001600300430012600316452005600442517001600498517003800514606003700552801003000589801002300619801003000642802000700672856008500679856010800764955010100872972000900973992001200982082391165000079416820130319051832.0 a1770-9377 a090055748 aissn17709377 a0000794168 a20041210a20049999k y0frey0103 ba0 afre aFR ay  ar aahu uu 10aRevue Lamy de la concurrenceedroit, économie, régulation 0ano. 1 (2004) - aPariscLamyd2004- aTrimestriel 1tAvis de la Commission de la concurrence et de la Commission technique des ententes et des positions dominantesx1283-8691 1tRevue Lamy de la concurrence (Cédérom)x1956-189X10aConcurrence10aRLC. Revue Lamy de la concurrence aConcurrencexDroitxPériodiques 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20081014 3aFRbAbesc20050112gAFNOR a074 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (nov-2004) - no. 8 (sep-2006) ; no.19 (avr-2009) -....cParisdMagasins/AnnexeeP 4° 7070 aZPAY aDEW 34600831nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000054001502100034002042300024002383260005002626060038002678010013003058560085003188560108004039550005005119920025005169920012005410000969204000096920420130319051832.0 a0000969204 a a20049999k fre 01 ba0 afre aFR ar aaz z  adr 10aRevue Lamy droit civilb[Ressource électronique] aPariscLamyline Reflexc2004- aRevue électronique a aDroit civilyFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 34600881nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000065001502100034002152300024002493260005002736060054002788010013003328560112003458560108004579550005005659920021005709920012005910000969207000096920720130319051832.0 a0000969207 a a20059999k fre 01 ba0 afre aFR ar aaz z  adr 10aRevue Lamy droit de l'immatérielb[Ressource électronique] aPariscLamyline Reflexc2005- aRevue électronique a aInvestissements immatérielsxDroitxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/lamy/AccesBis.htm?acces=KoEjMqEjBeKq zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RQ Universel aDEW 34001710cas0 2200421 450 00100100000000200110001000500170002101100250003803500140006303500170007703500170009403500150011110000410012610100080016710200070017510600060018211000160018820000190020420701710022321000560039430401010045042100460055142100470059742100660064443000430071044700450075344700320079844700420083053000280087253100250090071000490092580100300097480100230100480200070102785601450103495500890117999100200126803787585X000108413220130319051832.0 a0335-380Xy0373-3688 a073787930 accn0335-380X aissn0335380X a0001084132 a19850608b18961971uuuy0frey0103 ba0 afre aFR ar aafu uu 10aRevue maritime 0aTome 129, n °415 (1896, avr.)-tome 202, n °633 (1914, sept./déc.) ; N.s., n °1 (1920, janv.)-n °236 (1939, août) ; N.s., n °1 (1946, mai)-n °293 (1971, déc.) aPariscLibrairie militaire de L. Baudoind1896-1971 aLe titre et la numérotation sont repris en 1974 par la "Revue maritime (1974)" = ISSN 0335-3796 |tBulletin des pêches maritimesx1245-978X |tBulletin de la marine marchandex1245-9798 |tBulletin de la navigation et des pêches maritimesx1245-9801 1tRevue maritime et colonialex1245-9755 1tForces aériennes françaisesx0015-6965 1tL'Armée (Paris)x0004-2234 1tForces armées françaisesx0338-351210aRevue maritimeb(Paris) 0aRev. marit.b(Paris)01aFrancebService historique de la marine4070 3aFRbAbesc20070212gAFNOR 3aFRbISSNc20030523 a074 uhttp://gallica.bnf.fr/ark:/12148/cb343749904/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1896-1914)1 b(1896) -(1919) ; (1920) -(1939) ; (1946) -(1965)cParisdMagasins/AnnexeeP 8° 0294 aPériobTP01 P801166cas0 2200361 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164106000600171110001600177200003200193210004700225326001000272421004600282430004600328440003800374530003200412531002300444710005700467801003000524801002300554802000700577856014500584955005500729991002000784038752719000108416420130319051832.0 a1245-9755 a070628920 accn1245-9755 aissn12459755 a0001084164 a19950421b18611896uuuy0frey0103 ba0 afre aFR ar aafu uu 10aRevue maritime et coloniale aPariscLibrairie de L. Hachetted1861-1896 aMens. |tBulletin des pêches maritimesx1245-978X 1tRevue algérienne et colonialex1245-9763 1tRevue maritime (Paris)x0335-380X00aRevue maritime et coloniale 0aRev. marit. colon.02aFrancebMinistère de la marine et des colonies4070 3aFRbAbesc20060724gAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/cb32860483w/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1861-1896)1 b(1872) -(1896)cParisdMagasins/AnnexeeP 8° 0294 aPériobTP01 P801155nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005500163207003100218210005600249326001200305430004400317517002900361530002700390606004400417606003300461710004600494801001300540856008500553856003700638955007500675972000900750992002200759992001200781079535240000059499620130319051832.01 a1767-848X a0000594996 a b20042009 fre 01 ba0 afre aFR a 0  ar aaf z 0 10aRevue mensuellefAutorité des marchés financiers 1ano. 1( 2004)-no. 54 (2009) aPariscAutorité des marchés financiersd2004-2009 aMensuel 1aBulletin mensuel - COB,xISSN 0999-647810aRevue mensuelle de l'AMF10aRevue mensuelleb(AMF) aMarché financieryFrancexPériodiques aBourseyFrancexPériodiques02aFrancebAutorité des marchés financiers 0aFRbFNSP uhttp://www.amf-france.org/affiche_plan.asp?IdSec=6&IdRub=143&IdPlan=216&Id_Tab=0 zAccès libre au texte intégral.1 bno. 1 (mar-2004)-no. 54 (jan-2009)cParisdMagasins/AnnexeeP 4° 5414 aZPAY aGEO RA4.06 France aDEW 33200811nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210003700173326001200210606004400222607004700266676000800313801002100321856003300342955007100375972000900446991001800455992002400473992001200497038786974000004271920140109161348.01 a0035-3809 aFNSP225221 a0000042719 a19900101a19459999 ba0 afre aBE aafu 10aRevue nouvelle aBruxellescRevue nouvelled1945- aMensuel aRelations internationalesxPériodiques aBelgiquexVie intellectuellexPériodiques a001 3aFRbCCN0035-38094 uhttp://www.revuenouvelle.be/1 bvol. 13 no. 1 (jan-1951) -....cParisdMagasins/AnnexeeP 8° 1047 aZECH aexempb201201 aGEO RA4.04 Belgique aDEW 00101113nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200005500160210005100215326001600266606003800282606003000320856012700350856014500477955007000622957007400692972000900766992002200775992001400797039228967000004791820130319051832.01 a0035-3833 aFNSP241591 a0000047918 a19900101a18769999 ba0 afre aFR ar aaha 10aRevue philosophique de la France et de l'étranger aPariscPresses universitaires de Franced1876- aTrimestriel aPhilosophieyFrancexPériodiques aPhilosophiexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-philosophique.htm?zAccès libre au texte intégral.4 uhttp://gallica.bnf.fr/ark:/12148/cb34349223n/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1876-1940)1 bvol. 1 no. 1 (jan-1876) -....cParisdMagasins/AnnexeeP 8° 02461 b(1876) -(1905) ; (1906) -(1912)cParisdMagasins/AnnexeeP Index 0028 aZPAY aGEO RA4.06 France aDEW 10-1401653cas0 2200433 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200003800197207011500235210003900350326001200389421001300401430007800414434003900492440005200531517001600583530005300599606007400652606007200726607006600798607006400864676000800928801003000936801002300966802000700989856013300996955007001129991002001199037457861000110936820130319051832.0 a2017-6643 accn0103/5320 aissn20176643 a0001109368 a19830101b18711933uuuy0frey0103 ba0 afre aFR ay  ar aafa uu 13aLa Revue politique et littéraire 0a2e s., I (1871)-XIX (1880)a3e s., I (1881)-LII (1893)a4e s., I (1904)-XX (1908)a5e s., I (1909)-LXXI (1933) aPariscGermer Baillèred1871-1933 aMensuel 1tCamarade 1tRevue des cours littéraires de la France et de l'étranger...x2017-6651 1tRevue des conférences et des arts 1tRevue bleue politique et littérairex2017-663510aRevue bleue13aLa Revue politique et littéraireb(Paris. 1871) aLittératurexHistoire et critiquez19e sièclexPériodiques2rameau aLittératurexHistoire et critiquez1900-1945xPériodiques2rameau aFrancexVie intellectuellez19e sièclexPériodiques2rameau aFrancexVie intellectuellez1900-1945xPériodiques2rameau a944 3aFRbAbesc20070823gAFNOR 3aFRbISSNc20070808 a004 uhttp://gallica.bnf.fr/ark:/12148/cb32861147f/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 bvol. 1 (1871) -vol. 71 (1933)cParisdMagasins/AnnexeeP 4° 0588 aPériobTP01 P401182nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200003700160207002900197210002400226326001600250517000800266607004500274607005200319676000800371801002100379856014500400955006700545955007000612957007400682972000900756991001800765992002500783992001200808045328307000000569320140113094212.01 a0035-385X aFNSP108879 a0000005693 a19900101a18949999 ba0 afre aFR ar aagu 10aRevue politique et parlementaire 1avol. 1 no. 1 (jul-1894)- aPariscColind1894- aTrimestriel10aRPP aFrancexVie intellectuellexPériodiques aFrancexPolitique et gouvernementxPériodiques a320 3aFRbCCN0035-385X4 uhttp://gallica.bnf.fr/ark:/12148/cb328611494/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1894-1940)1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 b(1894) -(1940) ; (1945) -....cParisdMagasins/AnnexeeP 8° 02401 b(1894) -(1933) ; (1934) -(1945)cParisdMagasins/AnnexeeP Index 0079 aZCAD aexempb201011 aGEO RA4.06 France 01 aDEW 32000912nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000062001502070047002122100005002592300024002646060043002886060046003318010013003778560082003908560108004729550005005809920012005859920025005970001147911000114791120130319051832.0 a0001147911 a a20049999k fre 01 ba0 afre aFR ar aaz z  adr 10aRevue Propriété industrielleb[Ressource électronique] 1aParis :$cLexisNexis Jurisclasseur :$c2004- a aRevue électronique aPropriété industriellexPériodiques aBrevets d'inventionyFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.com/fr/droit/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aDEW 340 aGEO RA4.06 France 0100946cas0 2200277 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119105001800126106000600144110001600150200007100166207002200237210002400259437005600283607005900339801003000398801003000428856011800458955008000576992001200656039167461000104508520130319051833.0 accn7136/9031 a0001045085 a19950710b18481848 0frey0103 ba0 afre aFR a 0  ar aauu 0 10aRevue rétrospective ou Archives secrètes du dernier gouvernement 0a1848 (n°1-32/33) aPariscPaulind1848 1tRevue rétrospective ou bibliothèque historique... aFrancexpolitique et gouvernementz1830-1848xArchives 3aFRbAbesc20060522gAFNOR 3aFRbAbesc20060522gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/bpt6k94732b/f3zAccès libre au texte intégral. Document numérisé sur Gallica1 bno. 1 (1848)-no. 31 (1848)cParisdMagasins/AnnexeeP 4° 7151zvol. relié aDEW 32000951nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101001300123102000700136110001600143200003000159210006700189326001500256607003700271710002100308801002100329830007400350856004500424856003600469955006700505972000900572991001800581992002400599992001400623039648656000004813720130319051833.01 a0556-8072 aFNSP242244 a0000048137 a19900101a19629999 ba0 afreaeng aRO aaju 10aRevue roumaine d'histoire aBucuresticEd. Academiei Republicii socialiste Româniad1962- aSemestriel aRoumaniexHistoirexPériodiques02aAcademia româna 3aFRbCCN0556-8072 aVol. 1, no 1, 1962 ---> vol. 23, no 4, 1984 collection donnée au CTL4 uhttp://www.ear.ro/3brevist/rv18/rv18.htm zAccès libre au texte intégral1 bvol. 24 no. 1 (1985) -....cParisdMagasins/AnnexeeP 8° 2395 aZGRA aexempb201203 aGEO RA8.13 Roumanie aDEW 949.800921nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210004400188326001600232430005600248606004000304606003000344710002100374856004500395856003600440955008700476991001800563992002400581992001400605036555096000005834420130319051833.01 a1220-5400 aFNSP269944 a0000058344 a19900101a19919999 ba0 amul aRO aaha 10aRevue roumaine de philosophie aBucuresticEd. Academiei româned1991- aTrimestriel 1aRevue roumaine de philosophie et logiquex1220-5486 aPhilosophieyRoumaniexPériodiques aPhilosophiexPériodiques02aAcademia româna4 uhttp://www.ear.ro/3brevist/rv75/rv75.htm zAccès libre au texte intégral1 bvol. 35 no. 1/2 (1991) -vol. 40 no. 3/4 (1996)cParisdMagasins/AnnexeeP 8° 2168 aexempb201203 aGEO RA8.13 Roumanie aDEW 10-1401104nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000730015421000440022732600180027132600260028943000860031551700290040160700500043060700520048071000210053285600450055385600360059895500670063497200090070199100180071099200240072899200140075203655507X000009032220130319051833.01 a1220-5397 aFNSP397951 a0000090322 a19900101a19899999 ba0 amul aRO aaja 10aRevue roumaine des sciences économiquesd= Romanian economic review aBucuresticEd. Academiei româned1989- aAnnuelb2004- aSemestrielb1989-2003 1aRevue roumaine des sciences sociales. Série des sciences économiquesx0035-404X10aRomanian economic review aRoumaniexPolitique économiquexPériodiques aRoumaniexConditions économiquesxPériodiques02aAcademia româna4 uhttp://www.ear.ro/3brevist/rv68/rv68.htm zAccès libre au texte intégral1 btome 33 no. 2 (1989) -....cParisdMagasins/AnnexeeP 8° 2504 aZGRA aexempb201203 aGEO RA8.13 Roumanie aDEW 338.901280cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200010500179210002900284434005100313440005100364517005100415530003900466710004100505711003600546712005100582801003000633801002300663802000700686856014500693955007200838991002000910037447874000108412120130319051833.0 a0035-4139 accn0035-4139 aissn00354139 a0001084121 a19890308b18851973uuuy0frey0103 ba0 afre aFR ar aafu uu 13aLa Revue socialistefEditée par le Parti socialiste et le Cercle d'études socialistes Jean-Jaurès aParisc[s.n.]d1885-1973 |tLa Revue syndicaliste (Paris. 1905)x1246-0001 1tLa Nouvelle revue socialiste (1974)x0222-428310aRevue socialiste, syndicaliste et coopérative13aLa Revue socialisteb(Paris. 1885)02aParti socialiste SFIOc(France)407002aParti socialistec(France)407002aCercle d'études socialistes Jean-Jaurès4340 3aFRbAbesc20070423gAFNOR 3aFRbISSNc20030523 a074 uhttp://gallica.bnf.fr/ark:/12148/cb32861464v/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1880-1914)1 b(1897) -(1913) ; (1946) -(1973)cParisdMagasins/AnnexeeP 8° 0242 aPériobTP01 P801172nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004600163207002800209210004000237326001600277430004800293517000900341601005700350606003600407676001100443801001300454856002400467856006800491955007000559955007200629957008800701972000900789992001200798039738264000057605320130319051833.01 a0777-3579 a0000576053 a a19909999k fre ba0 afre aBE a 0  ar aah z 0 10aRevue trimestrielle des droits de l'homme 1ano. 1 (1990, janvier) - aBruxellescNemesiscBruylantd1990- aTrimestriel 1tRevue des droits de l'hommexISSN 0035-198910aRTDH02aCour européenne des droits de l'hommexPériodiques aDroits de l'hommexPériodiques a341.48 0aFRbFNSP uhttp://www.rtdh.eu/ zContient : tables et sommaires de la revue depuis le n° 1,19901 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 341.481 bvol. 12 no. 45 (jan-2001) -....cParisdMagasins/AnnexeeP 8° 67211 bTable cumulative des matières 1990-2010cParisd30, Salle 3e étage:eP Index 0874 aZPAY aDEW 32300989nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003300163210004200196326001200238430003700250532004600287606003900333676000800372801001300380856002800393856005600421856004700477955008100524972000900605992002500614992001200639059383437000042192720130530155653.01 a1630-3873 a0000421927 a a20019999k fre ba0 afre aFR a 0  ar aaf z 0 10aRF social.iCahier juridique aPariscGroupe Revue Fiduciaired2001- aMensuel 1tLégi social. Dossierx1271-181010aRevue fiduciaire social. Cahier juridique aDroit socialyFrancexPériodiques a344 0aFRbFNSP uhttp://www.RFSocial.com4 uhttp://rfsocial.grouperf.com/catalogue/revue/00002/ zContenu : sommaires depuis le no. 49, 20061 bno. 1 (sep-2001) -no. 126 (jan-2013)cParisdMagasins/AnnexeeP 8° 3190 bis aZPAY aGEO RA4.06 France 01 aDEW 34400936nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003500163210004200198326001200240430004000252532004800292606003900340676000800379801001300387856002800400955007700428957005900505972000900564992002500573992001200598059383054000042192620130530155407.01 a1630-3865 a0000421926 a a20019999k fre ba0 afre aFR a 0  ar aaf z 0 10aRF social.iRevue d'actualité aPariscGroupe Revue Fiduciaired2001- aMensuel 1tLégi social. Actualitéx1271-180210aRevue fiduciaire social. Revue d'actualité aDroit socialyFrancexPériodiques a344 0aFRbFNSP uhttp://www.RFSocial.com1 bno. 1 (sep-2001)- no. 126 (jan-2013)cParisdMagasins/AnnexeeP 8° 62701 b2001-2008cParisdSalle des périodiqueseP Index 0801 aZPAY aGEO RA4.06 France 01 aDEW 34401195cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157110001600175200003000191207003300221210006100254326001600315517003200331517003900363606003600402606003800438710007300476801003000549801002300579802000700602856006500609856005400674955007000728992001200798992001100810044760515000113276320130319051833.01 a1094-8392 accn1094-8392 aissn10948392 a0001132763 a20000406a19989999k b1frey0103 ba0 aeng aUS ay 0  aaha 0uu 10aRhetoric & public affairs 0aVol. 1, no. 1 (spring 1998)- aEast Lansing, MIcMichigan State University Pressd1998- aTrimestriel10aRhetoric and public affairs10aRhetoric and public affairs series aLangage politiquexPériodiques aEloquence politiquexPériodiques10aBaylor university (Waco, Tex.)bDepartement of communication studies 3aFRbAbesc20080128gAFNOR 3aFRbISSNc20051021 a014 uhttp://msupress.msu.edu/journals/rpa/index.php?Page=contents zContenu : sommaires depuis le vol. 1 no. 1 (1998)1 bvol. 9 no. 1 (pri-2006) -....cParisdMagasins/AnnexeeP 8° 7014 aDEW 320 aDEW 4101172cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200003200162210003000194210005600224320002500280326002400305326002200329606003900351606004400390710005500434801003000489801003000519802000700549856007600556856006800632955005900700972000900759991001800768992001200786036253286000079414020130319051833.01 a1120-9526 accn1120-9526 a0000794140 a19920323a19869999 0frey0103 ba0 aita aIT ar aai 10aRicerche di storia politica aBolognacIl Mulinod1998- aBolognacCentro ricerche storia politicad1986-1996 aN'a pas paru en 1997 a3 nos par anb1998- aAnnuelb1986-1996 aHistoire universellexPériodiques aRelations internationalesxPériodiques02aCentro ricerche storia politicac(Bologne, Italie) 3aFRbAbesc20041004gAFNOR 3aFRbAbesc20041004gAFNOR a0D4 uhttp://www.mulino.it/edizioni/riviste/scheda_rivista.php?issn=0394-7297 zSommaires et résumés en anglais des n°s depuis le n°1, 19981 bno. 1 (1986) -....cParisdMagasins/AnnexeeP 8° 6816 aZGRA aexempb201301 aDEW 90901015nas 2200313 i 450 0010010000000020011000100050017000210110014000380350015000520350015000671000041000821010008001231020007001311100016001382000040001542070023001942100026002173260016002435170012002595170031002715300019003026060028003218560081003498560050004309550063004809570133005439720009006769920016006851152-9253000001759520140114101318.01 a1152-9253 aFNSP148053 a0000017595 a19901115a19909999 ba0 afre aFR aaha 10aRisqueseles cahiers de l'assurance 1ano 1 (1990, juin)- aPariscRisquesd1990- aTrimestriel10aRisques10aLes Cahiers de l'assurance00aRisquesbParis aAssurancexPériodiques4 uhttp://www.ffsa.fr/webffsa/webffsa.nsf/html/EB1862BCE6FCA967C1256DB000562301 zContenu : sommaires depuis le n°1, juin 19901 bno. 1 (jun-1990) -....cParisdMagasins/AnnexeeP 4° 59561 bno. 1 (1990) -no. 20 (1994)zMots clefs des textes publiés ; no. 25 (1996) -no. 30 (1997)cParisdMagasins/AnnexeeP Index 0747 aZPAY aDEW 360-36301097cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200003900174207003000213210003400243326001500277517004000292530003900332531002800371801003000399801002300429801003000452801002300482802000700505856008000512856004600592955007600638972000900714992001200723075929996000074574520130319051834.01 a1760-2009 aissn17602009 a0000745745 a20040115b20032005uuuy0frey0103 ba0 afre aFR ay  aaju uu 10aRisques & management international 0ano. 1 (2003)-no. 4 (2005) aPariscL'Harmattand2003-2005 aSemestriel10aRisques et management international00aRisques & management international 0aRisques management int. 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20081014 3aFRbAbesc20041011gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.editions-harmattan.fr/index.asp?navig=catalogue&obj=revue&no=1004 zContenu : sommaires depuis le no. 1 ,20031 bno. 1 (mai-2003) - no. 4 (sep-2005)cParisdMagasins/AnnexeeP 8° 6811 aZPAY aDEW 65000736nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001200154210002600166326001700192606002900209607002500238801002100263856002800284856004300312955006600355992002500421992001200446039229092000004322720130319051834.01 a0035-5666 aFNSP226715 a0000043227 a19900101a19519999 ba0 afre aFR aa u 10aRivarol aPariscRivarold1951- aHebdomadaire aActualitéxPériodiques aFrancexPériodiques 3aFRbCCN0035-56664 uhttp://www.rivarol.com/ zcontenu : sommaire du dernier numéro.1 bno. 1 (18 jan-1951) -....cParisdMagasins/AnnexeeP F° 1182 aGEO RA4.06 France 01 aDEW 05001000nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004500154210006100199326001600260606004400276801002100320856005200341856006900393955010200462957013700564972000900701992001200710038788225000004309220130319051834.01 a0035-6611 aFNSP226232 a0000043092 a19900101a19349999 ba0 aita aIT aahu 10aRivista di studi politici internazionali aFirenzecRivista di studi politici internazionalid1934- aTrimestriel aRelations internationalesxPériodiques 3aFRbCCN0035-66114 uhttp://padis2.uniroma1.it:81/ojs/index.php/rspi4 zContenu : sommaires et résumés depuis le Vol. 69, no 2 , 2002,1 bvol. 1 no. 1/2 (jan/jun-1934) -vol. 72 no. 288 (oct/dec-2005)cParisdMagasins/AnnexeeP 8° 00041 b(1934) -(1983)cParisdMagasins/AnnexeeP Index 0561zvol. 51 (1984) -vol. 60 (1993): se trouve dans le vol. 61 no. 1 (jan/mar-1994) aZSAB aDEW 32701009nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154210002700192326001600219437002800235606007700263607005600340710006400396856006400460856004500524955008400569991001800653992002200671992001400693036253308000009349020130319051834.01 a1120-9534 aFNSP411978 a0000093490 a19900101a19879999 ba0 aita aIT aaha 10aRivista economica del Mezzogiorno aBolognacMulinod1987- aTrimestriel 1aStudi SVIMEZx0393-3105 aAide au développement économique régionalyItalie (sud)xPériodiques aItalie (sud)xConditions économiquesxPériodiques02aAssociazione per lo sviluppo dell'industria nel Mezzogiorno4 uhttp://www.mulino.it/rivisteweb/riviste_list.php?type=alpha zContenu : sommaires des nos depuis 199901 bvol. 2 no. 1 (1988) -vol. 13 no. 3/4 (1999)cParisdMagasins/AnnexeeP 8° 5946 aexempb201112 aGEO RA6.03 Italie aDEW 330.901032cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200004400174210002700218326001800245517000900263606003700272710006600309801003000375801002300405802000700428856007600435856009400511955006300605992002200668992001600690070103186000118096820130319051834.01 a1722-1137 aissn17221137 a0001180968 a20030203a20029999k y0frey0103 ba0 aita aIT ay  aaiu uu 10aRivista italiana di politiche pubbliche aRomacIl mulinod2006- a3 n°s par an10aRIPP aPolitique publiquexPériodiques01aCentro di analisi delle politiche pubbliche (Bologne, Italie) 3aFRbAbesc20080630gAFNOR 3aFRbISSNc20030203 a0d4 uhttp://www.mulino.it/edizioni/riviste/scheda_rivista.php?issn=1722-1137 zContient : sommaires depuis le no. 1, 2002 ; sommaires et résumés depuis le no. 1, 20061 bno. 1 (avr-2009) -....cParisdMagasins/AnnexeeP 8° 7114 aGEO RA6.03 Italie aDEW 350-35400879nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004100139207002200180210002700202326001700229606003600246676000800282801002100290856005100311856004200362955006700404955006300471972000900534991001800543992001600561038831465000004310820131029115938.01 a0048-8402 aFNSP226273 a19900101a19719999 ba0 aita aIT aaiu 10aRivista italiana di scienza politica 1an. 1 (apr. 1971)- aBolognacMulinod1971- a3 n° par an aScience politiquexPériodiques a320 3aFRbCCN0048-84024 uhttp://www.mulino.it/edizioni/riviste/risp.htm zContenu : sommaire du dernier numéro1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 1 (avr-1971) -....cParisdMagasins/AnnexeeP 8° 2960 aZCAD aexempb201106 aDEW 320-32101008nas 2200301 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200005100160210002900211326001400240430004700254517002400301607006300325676000800388856014400396955005100540955005000591955005300641992001200694090054059000004655920130319051834.01 a1770-619X aFNSP237436 a0000046559 a19900101b18141944 ba0 afre aFR ar aaaa 03aJournal des débats politiques et littéraires aParisc[s.n.]d1814-1944 aQuotidien 1tJournal de l'Empire (1805), ISSN 1770-618110aJournal des débats aFrancexPolitique et gouvernementz1789-....xPériodiques a9444 uhttp://gallica.bnf.fr/ark:/12148/cb39294634r/date.r=.langFRzAccès libre au texte intégral. Années 1814 à 1944 numérisées sur Gallica1 b1816 (inc)cParisdMagasins/AnnexeeP F° 00271 b1840-1870cParisdMagasins/AnnexeeP F° 11221 b1914-1919cParisdMagasins/AnnexeeP MIC 35 (30) aDEW 05000956nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000050001502100005002002300024002053260014002296060029002436070025002728010013002978560192003108560108005029550005006109920012006159920039006270001145138000114513820130319051836.0 a0001145138 a a20029999k fre 01 ba0 arus aRU ar aaa z  adr 10aRossijskaâ gazetab[Ressource électronique] a aRevue électronique aquotidien aActualitéxPériodiques aRussiexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aDEW 050 aGEO RA7.21 Russie (depuis 1991-92)01009nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004500139210002800184326001700212440003500229601006200264606002900326606002900355607002500384710004800409801002100457856003000478856007200508955007800580992002500658992001200683039229130000006740420131029105135.01 a0035-8509 aFNSP312930 a19900101b19689999 ba0 afre aFR aa a 10aRougefLigue communiste révolutionnaire aPariscRouged1968-2009 aHebdomadaire 1tTout est à nous !,x1969-817802aLigue communiste révolutionnairec(France)xPériodiques aActualitéxPériodiques aTrotskismexPériodiques aFrancexPériodiques02aLigue communiste révolutionnairec(France) 3aFRbCCN0035-85094 uhttp://www.lcr-rouge.org/ zContenu : sommaire et articles en texte intégral depuis juin 1999.1 bno. 1 (sep-1968) -no. 2286 (fev-2009)cParisdMagasins/AnnexeeP F° 0286 aGEO RA4.06 France 01 aDEW 05001342nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001600154210002800170326002200198326002900220326002700249530002400276607005800300801002100358856015000379856004900529856010900578856010800687955007000795957005700865972000900922992004900931992001200980038788977000004313020130319051836.01 a0035-8533 aFNSP226325 a0000043130 a19900101a19109999 ba0 aeng aGB aagu 10aRound table aAbingdoncCarfaxd1910- aBimestrielb2007- a5 n°s par anb2000-2006 aTrimestrielb1945-1999 0aRound tablebLondon aCommonwealthxPolitique et gouvernementxPériodiques 3aFRbCCN0035-85334 uhttp://www.journalsonline.tandf.co.uk/(20wlxk45gp2kfuzqlnr3doiv)/app/home/journal.asp?referrer=parent&backto=linkingpublicationresults,1:102235,1 zContenu : sommaires n°349 / January 1, 19994 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713448095db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (nov-1910) -....cParisdMagasins/AnnexeeP 8° 00351 b(1910) -(1935)cParisdMagasins/AnnexeeP Index 0019 aZSAB aGEO RP Autres groupes de pays ou de régions aDEW 90901078nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004900163207002600212210002500238326001600263430005400279606003800333676000800371801001300379856006700392856010800459955006700567955006300634972000900697992001200706992002200718061054763000046782820130319051837.01 a1635-4273 a0000467828 a a20029999k fre ba0 afre aFR a 0  ar aah z 0 10aRTD civ.erevue trimestrielle de droit civil 1ano. 1 (jan/mar-2002)- aPariscDallozd2002- aTrimestriel 1tRevue trimestrielle de droit civilxISSN0397-9873 aDroit civilyFrancexPériodiques a346 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://bu.dalloz.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 3461 bno. 1 (jan-2002) -....cParisdMagasins/AnnexeeP 8° 2144 aZPAY aDEW 346 aGEO RA4.06 France01197nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200007800163207002600241210002500267326001600292430008300308606004300391606004400434676000800478801001300486856006700499856010800566955006700674955006300741972000900804992002200813992001200835061056901000046248920130319051837.01 a1635-3234 a0000462489 a a20029999k fre ba0 afre aFR a 0  ar aah z 0 10aRTD com.eRevue trimestrielle de droit commercial et de droit économique 1ano. 1 (jan/mar-2002)- aPariscDallozd2002- aTrimestriel 1tRevue trimestrielle de droit commercial et de droit économiquexISSN0244-9358 aDroit commercialyFrancexPériodiques aSociétésxDroityFrancexPériodiques a346 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.dalloz.fr zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 3461 bno. 1 (jan-2002) -....cParisdMagasins/AnnexeeP 8° 0281 aZPAY aGEO RA4.06 France aDEW 34600970nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001800154210003100172326001600203430006500219606003000284710005100314856009300365856010800458955007300566972000900639991001800648992001400666039895335000005958220140110143155.01 a1144-0821 aFNSP274026 a0000059582 a19900101a00019999 ba0 afre aFR aaha 10aRue Descartes aPariscAlbin Micheld0001- aTrimestriel 1aLe Cahier - Collège international de philosophiex0980-1626 aPhilosophiexPériodiques02aCollège international de philosophiec(Paris)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-rue-descartes.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1/2 (avr-1991) -no 70 (2010)cParisdMagasins/AnnexeeP 8° 5797 aZPAY aexempb201112 aDEW 10-1401390nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210002400173326003200197430006100229517006500290606002400355606003300379606004400412676000800456710006200464856002500526856006300551856010900614856010800723955006700831955007200898972000900970992002100979992001601000039398528000004323420130319051837.01 a0307-1847 aFNSP226728 a0000043234 a19900101a19729999 ba0 aeng aGB aaga 10aRUSI (Journal) aLondoncRUSId1972- aTrimestriel puis bimestriel 1aJournal of the Institute for Defence Studies (0953-3559)10aRoyal United Service Institute for Defence Studies (Journal) aArmesxPériodiques aForces arméesxPériodiques aArt et science militairesxPériodiques a35502aRoyal United Services Institute for Defence Studiesc(GB)4 uhttp://www.rusi.org/ zSommaires des numéros parus depuis le vol.145, n°1, 20004 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t777285713db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3551 bvol. 126 no. 1 (mar-1981) -....cParisdMagasins/AnnexeeP 4° 4841 aZCAD aGEO RQ Universel aDEW 355-35901222cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200002900156207001700185210004300202326001600245453004300261606004400304606003200348607004900380676000800429801003000437801002300467802000700490856004100497856006400538955006700602955007400669972000900743992003900752992003300791992001200824077583361000106785120130319051838.01 a1810-6374 aissn18106374 a0001067851 a20030523a20029999 0fre 0103 ba0 aeng aRU aah 10aRussia in global affairs 1aN°1 (2002)- aMoscowcGlobus Publishing Housed2002- aTrimestriel 1tRossiâ v globalʹnoj politike (Print) aRelations internationalesxPériodiques aGéopolitiquexPériodiques aRussiexRelations extérieuresxPériodiques a327 3aFRbAbesc20040428gAFNOR 3aFRbISSNc20030523 a004 uhttp://eng.globalaffairs.ru/numbers/ zContenu : texte intégral des articles depuis le n°1, 20021 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 3 no. 1 (jan/mar-2005) -....cParisdMagasins/AnnexeeP 8° 6945 aZPAY aGEO RA7.21 Russie (depuis 1991-92) aGEO RS Sans aspect régional aDEW 32701251nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210002900182300004100211326001600252421005900268607006100327710004700388711003900435856003900474856004700513856010100560856010800661955008200769972000900851992003900860992001400899040102033000008405920130319051838.01 a0967-0793 aFNSP374110 a0000084059 a19900101b19922002 ba0 aeng aGB aaha 10aRussian economic trends aLondoncWhurrd1992-2002 aRevue suspendue avec le vol.11, 2002 aTrimestriel 1aRussian economic trends. Monthly update < P 4° 6326 > aRussiexConditions économiquesz1991-....xPériodiques02aCentre for Economic Performancec(Londres)02aRussie. Centre for Economic Reform4 uhttp://www.hhs.se/site/ret/ret.htm zContenu : texte intégral depuis avr. 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=102581 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1992) -vol. 11 no. 4 (2002)cParisdMagasins/AnnexeeP 4° 6190 aZPAY aGEO RA7.21 Russie (depuis 1991-92) aDEW 330.901309nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154207000500177210005500182326001600237530002900253607002500282607002300307801002100330856010100351856010800452856009000560856010800650955009100758972000900849991001800858992003900876992002000915992001200935038789906000004831420131202115444.01 a0036-0341 aFNSP242642 a0000048314 a19900101a19419999 ba0 aeng aUS aahu 14aThe Russian review 1a aColumbus, OhiocOhio State University Pressd1941- aTrimestriel00aRussian reviewbStanford aRussiexPériodiques aURSSxPériodiques 3aFRbCCN0036-03414 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101808 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00360341.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 30 no. 3 (jul-1971) -vol. 71 no. 4 (oct-2012)cParisdMagasins/AnnexeeP 8° 3052 aZPAY aexempb200910 aGEO RA7.21 Russie (depuis 1991-92) aGEO RA7.01 URSS aDEW 94701118nas0 2200325 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123110001600141200007400157210002600231326001100257410009000268517003800358607008100396710006500477801003000542856005600572856003600628955005200664972000900716992002500725992002800750992001400778117681407000111156420130319051840.01 a2111-9007 a0001111564 a20070921j1999x k y frey0103 ba0 afre aFR ay 0  aakaih 0 10aSaint-BarthélemyfInstitut d'émission des départements d'Outre-mer aPariscIEDOMd[200.]- aAnnuel 1aRapport annuel - Institut d'émission des départements d'Outre-merxISSN 1632-420X10aSaint-Barthélemyerapport annuel aSaint-Barthélemy (Guadeloupe ; île)xConditions économiquesxPériodiques02aInstitut d'émission des départements d'Outre-merc(France) 3aFRbAbesc20070921gAFNOR4 uhttp://www.iedom.fr/dom/guadeloupe/publications.asp4 zAccès libre au texte intégral1 b(2006)-....cParisdMagasins/AnnexeeP 8° 6982 aZGRA aGEO RA4.06 France 01 aGEO RD3.71 Autres îles aDEW 330.901001nas0 2200313 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012311000160014120000690015721000260022632600110025251700330026360700760029671000650037280100300043785600560046785600360052395500520055997200090061199200250062099200280064599200140067311768645X000111157820130319051840.01 a2111-9015 a0001111578 a20070921a19999999k y frey0103 ba0 afre aFR ay 0  aaka h 0 10aSaint-MartinfInstitut d'émission des départements d'Outre-mer aPariscIEDOMd[200.]- aAnnuel10aSaint-Martinerapport annuel aSaint-Martin (Guadeloupe ; île)xConditions économiquesxPériodiques02aInstitut d'émission des départements d'Outre-merc(France) 3aFRbAbesc20070921gAFNOR4 uhttp://www.iedom.fr/dom/guadeloupe/publications.asp4 zAccès libre au texte intégral1 b(2006)-....cParisdMagasins/AnnexeeP 8° 6983 aZGRA aGEO RA4.06 France 01 aGEO RD3.71 Autres îles aDEW 330.901312cas0 2200397 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147105001800154110001600172200008100188210002400269326001100293410008300304512003500387517004500422530002900467607007600496712006500572801003000637801002300667801003000690802000700720856005400727856003600781955005200817972000900869992002200878992001400900094684758000091919620130319051840.0 a1760-9011 a131723146 aissn17609011 a0000919196 a20060106a19999999k y0frey50 ba0 afre aFR ay  azku uu 10aSaint-Pierre-et-MiquelonfInstitut d'émission des départements d'Outre-mer aPariscIEDOMd1999- aAnnuel 1tRapport annuel - Institut d'émission des départements d'Outre-merx1632-420X10aSaint-Pierre-et-Miquelon en...10aSaint-Pierre-et-Miquelonerapport annuel00aSaint-Pierre-et-Miquelon aSaint-Pierre et MiquelonxConditions économiquesxPériodiques2rameau02aInstitut d'émission des départements d'Outre-merc(France) 3aFRbAbesc20090422gAFNOR 3aFRbISSNc20090225 3aFRbAbesc20060112gAFNOR a074 uhttp://www.iedom.fr/dom/stpierre/publications.asp4 zAccès libre au texte intégral1 b(1999)-....cParisdMagasins/AnnexeeP 8° 6854 aZGRA aGEO RA4.06 France aDEW 330.901511nas 2200349 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000160013921001110015532600150026644000520028145200960033353000160042960600440044560600440048967600080053371000640054180100210060585601800062685601720080695501230097897200090110199100180111099200210112899200120114903879019X000011062020130725120156.01 a0036-0775 aFNSP467045 a19900101b19562003 ba0 aeng aUS aaju 10aSAIS review aWashington, D.C., etccSchool of Advanced International Studies of the Johns Hopkins Universityd1956-2003 aSemestriel 1tSAIS review of international affairsx1945-4716 1tSAIS review - Paul H. Nitze School of Advanced International Studies (Online)‎x1088-314200aSAIS review aRelations internationalesxPériodiques aRelations internationalesxPériodiques a32702aSchool of Advanced International Studies (Washington, D.C.) 3aFRbCCN0036-07754 uhttp://muse.jhu.edu/journals/sais_review/zContient : sommaires et résumés à partir du volume 15, automne 1995 (ce n° de 1995 est également disponible en texte intégral)4 uhttp://www.saisreview.orgzContient : thèmes des dossiers depuis le n° de l'hiver-printemps 1994, sommaires et résumés depuis le vol.20, n°1, hiver-printemps 20001 bvol.16 no. 2 (1972) - vol.19 no. 3 (1975) ; vol.6 no. 1 (1986) -vol.23 no 2 (2003)cParisdMagasins/AnnexeeP 8° 3286 aZSAB aexempb200905 aGEO RQ Universel aDEW 32701559nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200008000163207004100243210005200284326001500336430002700351606004400378606004400422676000800466710006300474801001300537856004600550856013700596856003000733856023400763955006700997955006701064972000901131992002101140992001201161123194377000067774720130319051840.01 a0036-0775 a0000677747 a a20049999 fre 01 ba0 aeng aUS a 0  ar aaj z 0 10aSAIS review of international affairsfJohn Hopkins Foreign Policy Institute 1aVol. 24, no. 1 (Winter/Spring-2004)- aBaltimorecJohn Hopkins University Pressd2004- aSemestriel 1tSAIS reviewx0036-0775 aRelations internationalesxPériodiques aRelations internationalesxPériodiques a32702aJohns Hopkins Foreign Policy Institutec(Washington, D.C.) 0aFRbFNSP4 uhttp://muse.jhu.edu/journals/sais_review/ zContient : sommaires et résumés à partir du volume 15, automne 1995 (ce n° de 1995 est également disponible en texte intégral)4 uhttp://www.saisreview.org zContient : thèmes des dossiers depuis le n° de l'hiver-printemps 1994, sommaires et résumés depuis le vol.20, n°1, hiver-printemps 2000, sélection d'articles en texte intégral depuis le vol. 24, n° 1, hiver-printemps 20041 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 24 no. 1 (2004) -....cParisdMagasins/AnnexeeP 8° 3286 aZSAB aGEO RQ Universel aDEW 32701270cas0 2200397 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147105001800154106000600172110001600178200009200194210003700286225002300323326001100346410003600357606003500393607006400428676000800492710007800500801003000578801002300608802000700631856007300638955006200711955005300773972000900826992002500835992001200860090231546000113841020130319051840.0 a1953-535X a112770223 aissn1953535X a0001138410 a20050913a20059999m y0frey0103 ba0 afre aFR ay 0  ar aakuii 0xx014aLes Salaires en FrancefInstitut national de la statistique et des études économiques aPariscInsee info serviced2005-20aINSEE références aAnnuel 1tRéférences - INSEEx1639-4968 aSalairesyFrancexPériodiques aFrancexConditions économiquesxStatistiquesxPériodiques a33102aInstitut national de la statistique et des études économiquesc(France) 3aFRbAbesc20080201gAFNOR 3aFRbISSNc20070222 a074 uhttp://www.insee.fr/fr/publications-et-services/collection.asp?id=131 bLa dernière annéecParisd27, Salle 1er étageeDEW 3311 b(2007) -....cParisdMagasins/AnnexeeP 8° 7021 aZGRA aGEO RA4.06 France 01 aDEW 33101268nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000530013921000620019232600160025445200340027060600360030471000550034080100210039585601190041685601080053585600740064385600760071795500870079397200090088099100180088999200230090799200120093003879067X000004127420131119114843.01 a0036-4037 aFNSP221310 a19900101a19649999 ba0 aeng aUS aaha 10aSan Diego law review‎fUniversity of San Diego aSan Diego, CalifcSan Diego Law Review Associationd1964- aTrimestriel 1tSan Diego law review (Online) aDroityEtats-UnisxPériodiques02aUniversity of California, San DiegobSchool of Law 3aFRbCCN0036-40374 uhttps://acces-distant.sciences-po.fr/fork?http://www.westlaw.com/signon/default.wl?RS=UKIS1.0&VR=1.0&sp=intiep-000 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.sandiego.edu/usdlaw/about/publications/journals/lawreview/4 zContenu : Accès aux sommaires et résumés depuis le vol.1, n°1, 19641 bvol. 17 no. 1 (dec-1979) -vol. 46 no. 4 (2009)cParisdMagasins/AnnexeeP 8° 4452 aZPAY aexempb201106 aGEO RC2 Etats-Unis aDEW 34901176nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210003900174326002200213326002700235530004300262606004200305676000800347710004400355856009400399856004200493955006600535955007600601955008800677972000900765991001800774992002200792992001200814039873099000017237620130823115656.01 a0995-3914 aFNSP651478 a0000172376 a19900101a19889999 ba0 afre aFR aaga 10aSanté publique aVandoeuvre-lès-NancycSFSPd1988- aBimestrielb2007- aTrimestrielb1988-200610aSanté publiquebVandoeuvre-lès-Nancy aSanté publiqueyFrancexPériodiques a36002aSociété française de santé publique4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-sante-publique.htm? zAccès aux sommaires et aux résumés1 bLes 3 dernières annéescParisd27, Salle 4e étageeDEW 3601 bvol. 25 no. 1 (jan/fév-2013) -....cParisdMagasins/AnnexeeP 4° 73361 bno. 1 (mar-1995) -vol. 24 no. 6 (nov/déc-2012)cParisdMagasins/AnnexeeP 8° 6188 aZPAY aexempb201211 aGEO RA4.06 France aDEW 36001136cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200007200180210005000252326001600302517001600318530002700334606004500361606004400406676000800450710001900458801003000477801002300507802000700530856003300537856004600570955006700616955006300683992001600746119524422000113294720130319051842.01 a1958-7856 aissn19587856 a0001132947 a20071123a20079999k y0frey0103 ba0 afre aFR ay  ar aahu uu 10aSavoir - agirerevue trimestrielle de l' Association Raisons d'agir aBellecombe-en-BaugescÉd. du Croquantd2007- aTrimestriel10aSavoir agir10aSavoir - agirb(Revue) aGauche (science politique)xPériodiques aIdées politiquesyFrancexPériodiques a32002aRaisons d'agir 3aFRbAbesc20071126gAFNOR 3aFRbISSNc20071123 a074 uhttp://www.raisonsdagir.org/ zContenu : sommaires depuis le no. 1, 20071 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 1 (sep-2007) -....cParisdMagasins/AnnexeeP 8° 7015 aDEW 320-32101445nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009200154207002700246210004500273210002900318326001600347430004400363606003700407710002700444801002100471830006100492856009000553856010800643856010100751856010800852955008400960972000901044991001801053992001201071002660350000004129620131202120018.01 a0347-0520 aFNSP221368 a0000041296 a19900101a19769999 ba0 aswe aSE aaha 14aThe Scandinavian journal of economicsfUniversity of Stockholm, Department of economics 1avol. 78, no 1 (1976) - aStockholmcAlmqvist & Wikselld1976-199X aOxfordcBlackwelld199X- aTrimestriel 1aSwedish journal of economicsx0039-7318 aEconomie politiquexPériodiques02aStockholms universitet 3aFRbCCN0347-0520 a1899 -->1979 : collection donnée au CTL (divers titres)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03470520.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100923 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 82 no. 1 (1980) -vol. 114 no. 4 (2012)cParisdMagasins/AnnexeeP 8° 0119 aZPAY aexempb201101 aDEW 33001198nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003500139210003800174326002800212452005600240530004500296606004900341607005700390676000800447710004600455801002100501856009600522955006700618955010400685972000900789991001900798992002700817992001600844002936410000004129520130703145007.01 a0080-6757 aFNSP221367 a19900101a19669999 ba0 aeng aNO aaha 10aScandinavian political studies aOslocUniversitetsforlagetd1966- aAnnuel puis trimestriel 1tScandinavian political studies (Online),x1467-947710aScandinavian political studies‎bPrint aScience politiqueyScandinaviexPériodiques aScandinaviexPolitique et gouvernementxPériodiques a32002aAssociation nordique de science politique 3aFRbCCN0080-67574 uhttp://nopsa.net/sps.htmlzAccès libre au texte intégral à partir du vol. 20, no 1, 19961 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bvol. 1 (1966) - vol. 12 (1977) ; n.s. vol. 1 no. 1 (1978) -....cParisdMagasins/AnnexeeP 8° 4062 aZSAB aexemplb201001 aGEO RA3 Europe du Nord aDEW 320-32100935nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002400163210003900187326001600226430006000242606003600302606003700338801001300375856007400388856004900462955006800511972000900579992002100588992001200609056714157000040430220130319051842.01 a1439-121X a0000404302 a a20009999k fre ba0 amul aDE a 0  ar aah z 0 10aSchmollers Jahrbuch aBerlincDuncker und Humblotd2000- aTrimestriel 1tZeitschrift für Wirtschafts- und- Sozialwissenschaften aSciences socialesxPériodiques aEconomie politiquexPériodiques 0aFRbFNSP4 uhttp://www.diw.de/deutsch/produkte/publikationen/schmoller/index.html zContenu : Sommaires et abstracts depuis 20001 bvol. 120 no. 1 (2000) -....cParisdMagasins/AnnexeeP 8° 1409 aZPAY aGEO RQ Universel aDEW 33001021nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000039001502070030001892100029002192300005002483000070002533260017003233360056003403370083003966060054004796060056005338010013005898560041006029550005006439920016006489920031006640000617367000061736720130319051842.0 a0000617367 a a19949999k fre 01 ba0 aeng aGB az aac z  adr 10aSchNEWSb[Ressource électronique] 1aN°0 (16 novembre 1994) - aBrightoncSchNEWSd1994- a aLettre d'information en texte intégral depuis le n°1, nov. 1994 aHebdomadaire aDonnées textuelles accessibles uniquement en ligne aFichiers PDF ou HTML. Il existe aussi la possibilité de s'abonner par e-mail. aMouvements sociauxyGrande-BretagnexPériodiques aJustice et politiqueyGrande-BretagnexPériodiques 0aFRbFNSP4 uhttp://www.schnews.org.uk/index.html1 r aDEW 324.2-5 aGEO RA4.02 Grande-Bretagne01383nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200009300163210004200256210003200298326001600330430007600346510003800422510003500460606004400495606003600539710004400575801001300619856008700632856006200719955006900781955008200850972000900932991001800941992002200959992001600981058226486000059513820140115104920.01 a1424-7755 a0000595138 a a19999999 fre 01 ba0 amul aCH a 0  ar aah z 0 10aSchweizerische Zeitschrift für PolitikwissenschaftfSwiss Political Science Association aHoboken, N.J.cWiley-Blackwelld2011- aZurichcRüeggerd1999-2010 aTrimestriel 1tSchweizerische Zeitschrift für Politische WissenschaftxISSN 1420-352910aRevue suisse de science politique10aSwiss political science review aScience politiqueySuissexPériodiques aScience politiquexPériodiques02aAssociation suisse de science politique 0aFRbFNSP4 uhttp://www.ingentaconnect.com/content/spsa/spsr;jsessionid=a4mlsnru811ra.henrietta zContenu : texte intégral gratuit depuis 1995 via Ingenta1 bL'année en courscParisdBibliothèque de rechercheeP 8° 54821 bvol. 5 no. 1 (1999) -vol. 18 no. 4 (2012)cParisdMagasins/AnnexeeP 8° 5482 aZCAD aexempb201110 aGEO RA5.14 Suisse aDEW 320-32101301nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009700154210003800251326001600289430002900305440006600334517003500400517003800435530006000473606004400533606003600577710004400613856006600657856008400723955008800807991001800895992002200913992001600935037082426000017136720131220102821.00 a1420-3529 aFNSP647961 a0000171367 a19900101b19951998 ba0 amul aCH aaha 10aSchweizerische Zeitschrift für Politische WissenschaftfSwiss Political Science Association aZürichcSeismo Verlagd1995-1998 aTrimestriel 1aSVPW-Jahrbuchx1420-4177 1tSchweizerische Zeitschrift fur Politikwissenschaftx1424-775510aSwiss political science review10aRevue suisse de science politique00aSchweizerische Zeitschrift für Politische Wissenschaft aScience politiqueySuissexPériodiques aScience politiquexPériodiques02aAssociation suisse de science politique4 uhttps://acces-distant.sciences-po.fr/fork?http://www.spsr.ch/ zContenu : texte intégral du vol.1, n°1, été 1995 au vol.4, n°4, hiver 19981 bvol.1 no.1 (été-1995) -vol.4 no. 4 (hiv-1998)cParisdMagasins/AnnexeeP 8° 5482 aexempb201110 aGEO RA5.14 Suisse aDEW 320-32101037nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004700154210006800201326001800269517003100287606002900318606003700347710003500384801002100419856006000440856008400500955006600584972000900650991001800659992002200677992001200699039563847000004726220130319051843.01 a0379-3664 aFNSP239973 a0000047262 a19900101a19799999 ba0 ager aCH aaiu 10aSchweizerische Zeitschrift für Soziologie aGrand-LancycSchweizerische Gesellschaft für Soziologied1979- a3 n°s par an10aRevue suisse de sociologie aSociologiexPériodiques aSociologieySuissexPériodiques02aSociété suisse de sociologie 3aFRbCCN0379-36644 uhttp://www.sociojournal.ch/index.php?page=start&lang=fr zContenu : Sommaires et résumés en français, anglais et allemand depuis 2000.1 bvol. 5 no. 1 (1979) -....cParisdMagasins/AnnexeeP 8° 4315 aZPAY aexempb201103 aGEO RA5.14 Suisse aDEW 30100825nas 2200241 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210005300184326001600237856010900253856010800362955008300470991001800553992001200571039992209000001490620130319051843.01 a0892-9882 aFNSP140988 a0000014906 a19901016a19899999 ba0 aeng aUS aaha 10aScience & global security aNew YorkcGordon and Breach Science Publ.d1989- aTrimestriel4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713618359db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1/2 (1989) -vol. 1 no. 4 (1989)cParisdMagasins/AnnexeeP 8° 5673 aexempb201110 aDEW 32701484nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210008200193210004300275210004100318210004800359210004500407326002200452326002700474517004100501710005600542856009000598856010800688856010800796856010800904955006901012972000901081991001801090992001401108039105628000000527720130319051843.01 a0162-2439 aFNSP107787 a0000005277 a19900312a19789999 ba0 aeng aUS aaga 10aScience, technology & human values aCambridge, Mass.cAiken Computation Laboratory, Harvard Universityd1978-1979 aCambridge, Mass.cMIT Pressd1979-1982 aNew YorkcJ. Wiley & Sonsd1983-1987 aNewbury Park, Calif.cSage Publ.d1987-1993 aThousand Oaks, Calif.cSage Publ.d1993- aBimestrielb2006- aTrimestrielb1978-200510aScience, technology and human values02aSociety for Social Studies of Sciencec(Etats-Unis)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01622439.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 13 no. 1/2 (1988) -....cParisdMagasins/AnnexeeP 8° 5622 aZSAB aexempb201204 aDEW 10-1400976nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154207004500178210003600223326001600259530004300275606002700318606004200345801002100387856004400408856006300452955007300515972000900588991001800597992001400615992002100629038792206000004168820130319051843.01 a0036-8237 aFNSP222862 a0000041688 a19900101a19369999 ba0 aeng aUS aaha 00aScience and society 1aVol.1, no.1 (1936) -vol. 54, no. 4(1991) aNew YorkcGuilford Pressd1936- aTrimestriel00aScience & societybNew York, N.Y. 1936 aMarxismexPériodiques aSciencesxAspect socialxPériodiques 3aFRbCCN0036-82374 uhttp://www.atypon-link.com/GPI/loi/siso zContenu : sommaires depuis le vol.65, n°1, printemps 20011 bvol. 13 no. 3 (été-1949) -....cParisdMagasins/AnnexeeP 8° 0522 aZSAB aexempb201104 aDEW 320.5 aGEO RQ Universel01608cas0 2200433 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200005700197210004300254215001000297303004300307326001200350421004900362421007400411423004600485447005100531447004400582517005400626517003700680530005700717606004400774801003000818801002300848802000700871856014500878955009301023991002001116991003801136038591480000109459320130319051843.0 a1153-9984 accn1153-9984 aissn11539984 a0001094593 a19930109b18861935k y0frey0103 ba0 afre aFR a 0  ar aaf 0 13aLa Science sociale suivant la méthode de F. Le Play aPariscla Science socialed1886-[1935] d23 cm aNotice réd d'après le n. de jan 1897 aMensuel |tLe Mouvement social (Paris. 1892)x1154-0141 |tBulletin de la Société internationale de science socialex1154-0133 1tJournal de l'École des Rochesx1154-015X 1tRevue d'économie sociale et ruralex1153-9976 1tLes Études sociales (Paris)x0014-220410aScience sociale suivant la méthode d'observation13aLa Science sociale (Paris. 1886)03aLa Science sociale suivant la méthode de F. Le Play0 aSciences socialesxPériodiques2rameau 3aFRbAbesc20051129gAFNOR 3aFRbISSNc20030523 a074 uhttp://gallica.bnf.fr/ark:/12148/cb32865965j/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1886-1931)1 bvol. 1 no. 1 (1886) -vol. 19 (1904) ; (1912) -(1915)cParisdMagasins/AnnexeeP 8° 0818 aPériobTP02 P8 anumer0 1915 (complément gallica)01346nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210003800176326001200214421005500226421004600281421005700327517002200384530003100406606003600437856003500473856004500508856010000553856010800653955006900761955006300830957007000893972000900963992001200972039875830000003492020130319051843.01 a0996-6994 aFNSP201996 a0000034920 a19900101a19899999 ba0 afre aFR aazb 10aSciences humaines aAuxerrecSciences humainesd1989- aMensuel 1tSciences humaines. Hors-série spécialx1778-056X 1tSciences humaines. Hors sériex1252-3429 1tLes Grands dossiers des sciences humainesx1777-375X10aSciences humaines00aSciences humainesbAuxerre aSciences humainesxPériodiques4 uhttp://www.scienceshumaines.fr zContenu : sommaires depuis le n°1, 19904 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/magazine-sciences-humaines.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 60061 bno. 1 (nov-1990) -....cParisdMagasins/AnnexeeP 4° 60061 bno. 1 (1990) -no. 32 (1993)cParisdMagasins/AnnexeeP Index 0734 aZPAY aDEW 30000932nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200003500160207004300195210004200238326001600280422004300296440005700339606003600396676000800432856003500440856004500475955007700520972000900597992001200606040224813000008725820130319051843.01 a1252-3429 aFNSP386236 a0000087258 a19900101b19932005 ba0 afre aFR ar aaia 10aSciences humaines. Hors série 1ano. 1 (févr-1993) -no. 50 (sept-2005) aAuxerrecSciences humainesd1993-2005 aTrimestriel 1tSciences humaines (Auxerre)x0996-6994 1tLes grands dossiers des sciences humainesx1777-375X aSciences humainesxPériodiques a3004 uhttp://www.scienceshumaines.fr zContenu : sommaires depuis le n°1, 19931 bno. 1 (fev-1993) -no. 50 (nov- 2005)cParisdMagasins/AnnexeeP 4° 6218 aZPAY aDEW 30001170nas 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000058001502070015002082100041002233260011002644370072002755170028003475170040003756010079004156760010004947100043005047110058005478010013006058560114006189550063007329920025007959920012008200001227071000122707120130319051843.0 a0001227071 a a20099999 fre 01 ba0 afre aFR a 0  ar aak z 0 10aSciences Poe[programmes d'enseignement]fSciences Po 1a2009/2010- aPariscPresses de Sciences Pod2009- aAnnuel 1tSciences Po : admissions, scolarités, programmes des enseignements12aL'annuel de Sciences Po10aLivret de l'étudiant - Sciences Po02aInstitut d'études politiquesc(Paris)xProgrammes d'étudesxPériodiques a378.102aInstitut d'études politiquesc(Paris)02aFondation nationale des sciences politiquesc(France) 0aFRbFNSP4 uhttp://www.sciencespo.fr/content/125/dipl%C3%B4mes-programmeszAccés au texte intégral de l'année en cours1 b(2009/2010) -....cParisdMagasins/AnnexeeFNSP P 4° 7323 aGEO RA4.06 France 01 aDEW 37001002nas 2200301 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000025001412100025001663260011001914300070002026010081002726060072003537100068004258560032004938560042005259550065005679720009006329910018006419920025006599920016006840000258869000025886920130319051843.0 aFNSP901478 a0000258869 a19981102a19979999 ba0 afre aFR aaka 10aSciences po Grenoble aGrenoblecIEPd1997- aAnnuel 1aLivret de l'étudiant - Institut d'études politiques de Grenoble02aInstitut d'études politiquesc(Saint-Martin-d'Hères, Isère)xPériodiques aEnseignement supérieuryFrancexProgrammes d'étudesxPériodiques02aInstitut d'études politiquesc(Saint-Martin-d'Hères, Isère )4 uhttp://www.iep-grenoble.fr/ zContenu : présentation de l'institut1 b(1996/1997) -(2002/2003)cParisdMagasins/AnnexeeP 8° 6436 aZGRA aexempb201301 aGEO RA4.06 France 01 aDEW 370-37901115nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210003800186326001600224606003400240710008300274801002100357856002800378856006900406955006300475957023600538972000900774991001800783992001200801039461920000004194420130319051843.01 a0294-0337 aFNSP223369 a0000041944 a19900101a19829999 ba0 amul aFR aaha 10aSciences sociales et santé aMontrougecLibbey Eurotextd1982- aTrimestriel aSanté publiquexPériodiques02aAssociation pour le développement des sciences sociales de la santé (France) 3aFRbCCN0294-03374 uhttp://www.revue-sss.fr4 zAccès libre aux sommaires et résumés des articles depuis 19971 bno. 1 (dec-1982) -....cParisdMagasins/AnnexeeP 8° 48401 bvol. 6 (1988) -vol. 9 (1991) ; vol. 10 (1992) -vol. 13 (1995) ; vol. 14 (1996) -vol. 17 (1999) ; vol. 18 (2000) -vol. 20 (2002) ; vol. 21 (2003) -vol. 23 (2005) ; vol. 24 (2006) -vol. 26 (2008)cParisdMagasins/AnnexeeP Index 0682 aZPAY aexempb200912 aDEW 36001036cas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002400139210004100163326001200204434004400216530002400260606004200284606003900326606004000365801002100405830005300426856002600479955007200505957005700577972000900634991001800643992002300661992001400684038792435000004199420130930152113.01 a0036-8733 aFNSP223474 a19900101a18459999 ba0 aeng aUS aafa 10aScientific American aNew YorkcScientific Americand1845- aMensuel 1aScientific American monthly,x0740-6495 aScientific American aSciencesxVulgarisationxPériodiques aSciencesyEtats-UnisxPériodiques aRechercheyEtats-UnisxPériodiques 3aFRbCCN0036-8733 a1967-2012 : collection envoyée au Ctles en 20134 uhttp://www.sciam.com/1 bvol. 216 no. 1 (jan-1967) -....cParisdMagasins/AnnexeeP 4° 23361 b(1948) -(1978)cParisdMagasins/AnnexeeP Index 0519 aZPAY aexempb201306 aGEO RC2 Etats-Unis aDEW 50-5901346nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004200154207002600196210002900222326002300251326002800274606005400302606003700356607005900393801002100452856007100473856007300544856010100617856010800718955008600826972000900912991001800921992003100939992001400970038792559000004194020131202120225.01 a0036-9292 aFNSP223364 a0000041940 a19900101a19549999 ba0 aeng aGB aaga 10aScottish journal of political economy 1avol. 1 no. 1 (1954) - aOxfordcBlackwelld1954- aTrimestrielb1986- a3 nos par anb1954-1985 aEconomie politiqueyGrande-BretagnexPériodiques aEconomie politiquexPériodiques aGrande-BretagnexConditions économiquesxPériodiques 3aFRbCCN0036-92924 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0036-9292 zContenu : sommaires et résumés depuis le vol. 44, n°1, fév. 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100926 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1954) -vol. 59 no. 5 (nov-2012)cParisdMagasins/AnnexeeP 8° 1345 aZPAY aexempb201102 aGEO RA4.02 Grande-Bretagne aDEW 330.901506cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200007400179210003500253320012800288440011600416530007400532531004500606606004400651606004400695710006400739801003000803801002300833802000700856856013300863955014000996991002001136038761203000108559920130319051843.0 a1246-6980 accn1246-6980 aissn12466980 a0001085599 a19931213b18421935uuuy0frey0103 ba0 afre aFR ar azku uu 10aSéances et travaux de l'Académie des sciences morales et politiques aPariscFélix Alcand1842-1935 aTable générale alphabétique et chronologique 1842-1874. Tables alphabétiques et bibliographiques 1860-1889 et 1889-1900 1tRevue des travaux de l'Académie des sciences morales & politiques et comptes rendus de ses séancesx0400-337300aSéances et travaux de l'Académie des sciences morales et politiques 0aSéances trav. Acad. sci. morales polit. aSciences socialesxPériodiques2rameau aScience politiquexPériodiques2rameau02aAcadémie des sciences morales et politiquesc(France)4070 3aFRbAbesc20061016gAFNOR 3aFRbISSNc20061002 a074 uhttp://gallica.bnf.fr/ark:/12148/cb344869126/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 b(1842) -(1935)wlacunes 1851, 1860, 1863-1880, 1886, 1889, 1891, 1892, 1897, 1898, 1899, 1900, 1928cParisdMagasins/AnnexeeP 8° 0437 aPériobTP01 P801201nas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200012500180210002300305326001500328532002900343606004900372606005300421606004000474710006400514801003000578801002300608802000700631856004400638856005700682955006300739992002100802992001600823135944600000118458620130319051845.01 a2101-4736 aissn21014736 a0001184586 a20090818a20099999k y0frey0103 ba0 afre aFR ay  ar aaju uu 10aSécurité & stratégieerevue des directeurs sécurité d'entreprisefClub des directeurs de sécurité des entreprises aPariscCDSEd2009- aSemestriel10aSécurité et stratégie aStratégiexAspect économiquexPériodiques aEntreprisesxMesures de sécuritéxPériodiques aEspionnage industrielxPériodiques02aClub des directeurs de sécurité des entreprisesc(France) 3aFRbAbesc20090818gAFNOR 3aFRbISSNc20090617 a074 uhttps://www.cdse.fr/spip.php?rubrique32 zContient le sommaire des n°s depuis le no. 1 (2009)1 bno. 1 (mar-2009) -....cParisdMagasins/AnnexeeP 8° 7122 aGEO RQ Universel aDEW 360-36301073nas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200002300180210003200203326001600235606004400251676000800295710008400303801003000387801002300417802000700440856008200447856003200529955006700561955005800628992002100686992001600707120569442000112731520130319051845.01 a1959-6782 aissn19596782 a0001127315 a20080115a20079999k y0frey0103 ba0 afre aFR ay 0  ar aah 0 10aSécurité globale aPariscChoiseul Éd.d2007- aTrimestriel aSécurité internationalexPériodiques a35502aInstitut Choiseul pour la politique internationale et la géoéconomiec(Paris) 3aFRbAbesc20080115gAFNOR 3aFRbISSNc20080101 a074 uhttp://www.choiseul-editions.com/revues-geopolitique-Securite-Globale-23.html zContenu : sommaire des n°s1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3551 bno. 1(2007) -....cParisdMagasins/AnnexeeP 8° 6991 aGEO RQ Universel aDEW 355-35901159nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000038001642100046002023000094002483260011003424300094003536060061004477100076005088010013005848560064005978560042006619550055007039720009007589920022007679920016007899920016008050000552768000055276820130319051845.01 a1631-3046 a0000552768 a a20019999k fre ba0 afre aFR a 0  ar aak z 0 13aLa sécurité routière en France aPariscLa Documentation françaised2001- aLe rapport est disponible en ligne depuis 2000 via le site de la Documentation française aAnnuel 1tBilan annuel - Observatoire national interministériel de sécurité routièrex1240-6074 aSécurité routièreyFrancexStatistiquesxPériodiques02aFrancebObservatoire national interministériel de sécurité routière 0aFRbFNSP4 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml4 zAccés au texte intégral depuis 20001 b(2000) -(2006)cParisdMagasins/AnnexeeP 4° 6358 aZPAY aGEO RA4.06 France aDEW 383-389 aDEW 310-31901454cas0 2200421 450 00100100000000200110001000500170002101100140003803500170005203500150006910000410008410100080012510200070013310500180014010600060015811000160016420000440018021000510022421000550027521000460033041000750037643000490045153000260050060600450052667600080057171000340057980100300061380100230064380200070066685600640067385600560073795500640079395500730085795500520093097200090098299200250099199200160101613908987X000123155520130319051845.0 a2106-7449 aissn21067449 a0001231555 a20091209a20009999k y0frey50 ba0 afre aFR ay  ar aaku uu 13aLa Sécurité socialefCour des comptes aPariscDirection des journaux officielsd2000-0 aPariscDirection des journaux officielsd2000-20051 aPariscLa Documentation françaised2006- 1tJournal officiel de la République française (Paris. 1953)x0767-4538 1tRapport sur la sécurité socialex1297-207X03aLa Sécurité sociale aSécurité socialexPériodiques2rameau a36002aFrancebCour des comptes4070 3aFRbAbesc20120705gAFNOR 3aFRbISSNc20101104 a074 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml zContenu : Sommaire des rapports depuis l'éd. 2000.1 bLa dernière année ; Paris, 27, Salle 4 e étage : DEW 3601 bLa dernière année ; Paris, Bibliothèque de recherche : P 4° 65701 b(2000)-....cParisdMagasins/AnnexeeP 4° 6570 aZCAD aGEO RA4.06 France 01 aDEW 360-36301032nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006200154210002400216326002200240326002700262430004300289606004400332676000800376710004300384856007000427856010800497955007100605972000900676991001700685992001600702040101819000007721420140110160551.01 a0967-0106 aFNSP350153 a0000077214 a19900101a19929999 ba0 aeng aGB aaha 10aSecurity dialoguefInternational Peace Research Institute aLondoncSaged1992- aBimestrielb2008- aTrimestrielb1992-2007 1aBulletin of peace proposalsx0007-5035 aSécurité internationalexPériodiques a35502aInternational Peace Research Institute4 uhttps://acces-distant.sciences-po.fr/fork?http://sdi.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 23 no. 3 (sep-1992) -....cParisdMagasins/AnnexeeP 8° 2766 aZSAB aexemp$201202 aDEW 355-35900987nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210002400175326001600199606004400215676000800259856010900267856010800376955006700484955007000551972000900621991001800630992002100648992001600669040098567000009605320130319051846.01 a0963-6412 aFNSP419787 a0000096053 a19900101a19919999 ba0 aeng aUS aaha 00aSecurity studies aLondoncCassd1991- aTrimestriel aSécurité internationalexPériodiques a3554 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713636712db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3551 bvol. 2 no. 1 (aut-1992) -....cParisdMagasins/AnnexeeP 8° 5956 aZSAB aexempb201210 aGEO RQ Universel aDEW 355-35900979nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000101001502100043002512300024002943260005003186060061003236060070003848010013004548560072004678560108005399550005006479920012006529920025006640000977517000097751720130319051846.0 a0000977517 a a20029999k fre 01 ba0 afre aFR ar aaz z  adr 13aLa Semaine juridique. Administrations et collectivités territorialesb[Ressource électronique] aPariscLexisNexis Jurisclasseurc2002- aRevue électronique a aDroit administratifyFrancexJurisprudencexPériodiques aAdministration localexDroityFrancexJurisprudencexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aDEW 342 aGEO RA4.06 France 0101266nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200004500160210004500205326001700250430004400267517003600311606004700347606003200394676000800426801002100434856018700455955005100642955005600693955010300749972000900852992002200861992001200883992000900895039373126000000536220130319051846.01 a0242-5777 aFNSP108023 a0000005362 a19900313a19429999 ba0 afre aFR ar aacu 13aLa Semaine juridique. Edition générale aPariscEditions du Juris-classeurd1942- aHebdomadaire 1aLa Semaine juridique (Paris)x0049-015610aJCP, Juris-classeur périodique aDroityFrancexJurisprudencexPériodiques aDroityFrancexPériodiques a340 3aFRbCCN0242-57774 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.com/fr/droit/zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b2000-....cParisd30, Salle 3e étageeDEW 3401 b(1945) -(1994)cParisd30, Salle 3e étageeDEW 3401 bno. 5 (jan-1995) -....cParisdMagasins/AnnexeeP 4° 0193wManquant : no. 1>4, 1995 (vol. relié) aZPAY aGEO RA4.06 France aDEW 348 aPBUL00919nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000072001502070047002222100005002692300024002743260005002986060047003036060032003508010013003828560072003958560108004679550005005759920025005809920012006050000977515000097751520130319051846.0 a0000977515 a a19959999k fre 01 ba0 afre aFR ar aaz z  adr 13aLa Semaine juridique. Edition généraleb[Ressource électronique] 1aParis :$cLexisNexis Jurisclasseur :$c1995- a aRevue électronique a aDroityFrancexJurisprudencexPériodiques aDroityFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 34801194nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004900154210004500203326001700248421009800265430010600363606004400469676000800513856007600521856010800597955006700705955006500772972000900837992002200846992001200868040609502000023696320130319051846.01 a1290-5119 aFNSP837738 a0000236963 a19900101a19989999 ba0 afre aFR aa a 13aLa Semaine juridique. Entreprise et affaires aPariscEditions du Juris-classeurd1998- aHebdomadaire 1aLa Semaine juridique. Entreprise et affaires. Cahiers de droit de l'entreprise < P 4° 3300 > 1aLa Semaine juridique. Cahiers de droit de l'entreprise, Edition entreprise (0758-458X) < P 4° 5877 > aSociétésxDroityFrancexPériodiques a3464 uhttps://acces-distant.sciences-po.fr/fork?http://www.juris-classeur.com zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 3461 bno. 1/2 (jan-1998) -....cParisdMagasins/AnnexeeP 4° 5877 aZPAY aGEO RA4.06 France aDEW 34600851nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000075001502100043002252300024002683260005002926060044002978010013003418560072003548560108004269550005005349920022005399920012005610000977516000097751620130319051846.0 a0000977516 a a19959999k fre 01 ba0 afre aFR ar aaz z  adr 13aLa Semaine juridique. Entreprise et affairesb[Resource électronique] aPariscLexisNexis Jurisclasseurc1995- aRevue électronique a aSociétésxDroityFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France aDEW 34601326nas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200007700180210006900257326001600326517002600342601004600368606004800414606005100462606004900513710007400562801003000636801002300666802000700689856008200696856005800778955007500836992001600911992002500927118106910000113392220130319051847.01 a1958-3176 aissn19583176 a0001133922 a20071003b20072008k y0frey0103 ba0 afre aFR ay  ar aahu uu 10aSénat & territoiresela revue du sénat au service de la gestion locale aPariscService des collectivités territoriales du Sénatd2007- aTrimestriel10aSénat et territoires02aFrancebSénatc(1958-....)xPériodiques aAdministration localeyFrancexPériodiques aAdministration communaleyFrancexPériodiques aCollectivités localesyFrancexPériodiques02aFrancebSénatc(1958-....)bService des collectivités territoriales 3aFRbAbesc20071003gAFNOR 3aFRbISSNc20071003 a074 uhttp://carrefourlocal.senat.fr/carrefourlocal/senat_et_territoires/index.html zContenu : texte intégral depuis le n° 1 de Mai 20071 bno. 1 (mai-2007) -no. 4 (jan-2008)cParisdMagasins/AnnexeeP 4° 7218 aDEW 350-354 aGEO RA4.06 France 0101210nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200006700163207001700230210003600247326001600283517002400299530002300323606003600346676000800382710003100390801001300421856003300434856008200467856009800549856010800647955007200755972000900827992001200836080063497000069187620130523105137.01 a1767-9397 a0000691876 a a20049999 fre 01 ba0 afre aFR a 0  ar aah z 0 10a[Sens] [public]fSens public-puzzlefParrainé par Sciences-po 1aN°1 (2004)- aLyoncSens public-puzzled2004- aTrimestriel10aCahiers Sens public00aSens publicbRevue aSciences socialesxPériodiques a30002aSens public-puzzlec(Lyon) 0aFRbFNSP4 uhttp://www.sens-public.org//4 zContenu : sommaires et résumés d' articles depuis 2004 (accès thématique)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-cahiers-sens-public.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (2004) -no. 13/14, (2010)cParisdMagasins/AnnexeeP 8° 6778 aZPAY aDEW 30000985nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000026001552100035001813260016002166060053002326060044002858010021003298560109003508560108004599550086005679720009006539920021006629920012006830000047379000004737920130319051847.01 a0361-526X aFNSP240236 a0000047379 a19900101a19769999 ba0 aeng aUS aahu 14aThe Serials librarian aNew YorkcHaworth Pressd1976- aTrimestriel aCatalogagexPublications en sériexPériodiques aSciences de l'informationxPériodiques 3aFRbCCN0361-526X4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t792306962db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (aut-1976) -vol. 43 no. 2 (2002)cParisdMagasins/AnnexeeP 8° 4070 aZPAY aGEO RQ Universel aDEW 02000988nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035000500067100004100072101000800113102000700121110001600128200001900144210005000163326001200213452004200225517001900267530003200286606004300318606004100361710009000402856005800492955007700550972000900627992002200636992001600658040004244000005997020131028142127.01 a1167-1688 aFNSP275133 a a19900101a19929999 ba0 afre aFR aafa 10aService public aParis‎cTemps public édition‎d1992-2009 aMensuel 1tService public (En ligne),x1630-770410aService public10aService public‎bImprimé aServices publicsyFrancexPériodiques aFonctionnairesyFrancexPériodiques02aFrancebMinistère de la fonction publique et de la modernisation de l'administration4 uhttp://www.fonction-publique.gouv.fr/rubrique254.html1 bno. 1 (jan-1992) -no. 147 (dec-2009)cParisdMagasins/AnnexeeP 4° 6083 aZGRA aGEO RA4.06 France aDEW 350-35401163cas0 2200373 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147106000600154110001600160200003400176207001500210210002400225304007600249326001100325430003800336606004900374710007800423801003000501801002300531802000700554856008900561856003600650955005500686972000900741992002500750992001400775096353279000107839220130319051848.01 a1779-0883 a104773626 aissn17790883 a0001078392 a20060216a20059999u y0frey0103 ba0 afre aFR ar azku uu 14aLes Services en FrancefINSEE 0a2005/2006- aPariscINSEEd2005- aINSEE = Institut national de la statistique et des études économiques aAnnuel 1tLa France des servicesx1274-8560 aServicesyFrancexStatistiquesxPériodiques02aInstitut national de la statistique et des études économiquesc(France) 3aFRbAbesc20060919gAFNOR 3aFRbISSNc20060706 a074 uhttp://www.insee.fr/fr/ppp/publications/collect_ref.asp?coll=13&paru=1&avis=2&pres=14 zAccès libre au texte intégral1 b(2006) -(2008)cParisdMagasins/AnnexeeP 8° 6788 aZPAY aGEO RA4.06 France 01 aDEW 338.401147nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003700163207002300200210004500223210003600268326001600304440003000320530001900350606003400369606003800403676000800441801001300449856009200462856010800554955007600662972000900738992002600747992001200773078577128000062166420130319051848.01 a1765-8888 a0000621664 a b20032008 fre 01 ba0 afre aFR a 0  ar aah z 0 10aSèveeles tribunes de la santé 1aN°1 (hiver 2003)- aPariscPresses de Sciences-Pod2007-2008 aPariscEd. de santéd2003-2006 aTrimestriel 1tLes tribunes de la santé10aSèveb(Paris) aSanté publiquexPériodiques aPolitique sanitairexPériodiques a360 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue.php?ID_REVUE=SEVE zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (hiv-2003) -no. 18 (pri-2008)cParisdMagasins/AnnexeeP 8° 6765 aZPAY aGEO RA4. 06 France 01 aDEW 36001058cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001700069035001700086035002000103035001500123100004100138101000800179102000700187105001800194110001600212200001600228207002400244210002400268452004400292530002600336606002900362801003000391801002300421802000700444856007800451856005200529955007000581992003300651992001200684037423061000121929520130319051848.01 a1363-4607 accn1363-4607 accn7204/1870 aissn13634607 a(OCoLC)38877323 a0001219295 a19980821a19989999u y0frey50 ba0 aeng aGB ay 0  aaha 0uu 10aSexualities 0aVol.1, no.1 (1998)- aLondoncSaged1998- 1tSexualities (London. Online)x1461-738210aSexualitiesb(London) aSexualitéxPériodiques 3aFRbAbesc20110224gAFNOR 3aFRbISSNc20070412 a024 uhttps://acces-distant.sciences-po.fr/fork?http://sexualities.sagepub.com/ zContenu : accès au texte intégral depuis 19981 bvol. 9 no. 5 (dec-2006) -....cParisdMagasins/AnnexeeP 8° 7175 aGEO RS Sans aspect régional aDEW 15501189cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200002000180210004000200326001200240606004600252606003600298607005400334710003300388801003000421801002300451802000700474856003400481856006400515955007300579955011600652972000900768992002400777992001400801089746325000119030120131112160644.01 a1221-6720 aissn12216720 a0001190301 a19930721a19929999k y0frey50 ba0 arum aRO ay  ar aafu uu 10aSfera politicii aBucuresticSocietatea civilad1992- aMensuel aScience politiqueyRoumaniexPériodiques aScience politiquexPériodiques aRoumaniexPolitique et gouvernementxPériodiques02aSocietatea civila (Bucarest) 3aFRbAbesc20081014gAFNOR 3aFRbISSNc20081014 a264 uhttp://www.sferapoliticii.ro/ zContenu : accès au texte intégral depuis le no. 78 (2000)1 bno. 131/132 (jan/fev-2009) -....cParisdMagasins/AnnexeeP 8° 71411 bvol. 1 no. 1 (dec-1992) -no. 26 (mar-1995)cParisdMagasins/AnnexeeP F° 0527wManquants: no. 14, 15, 16 et 18 aZSAB aGEO RA8.13 Roumanie aDEW 949.801069cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101001300125102000700138106000600145110001600151200005300167210004000220326001600260510002700276607002400303607004300327607003800370710002600408801003000434801002300464802000700487856004900494856005100543955007100594972000900665992002100674992001200695077582268000108387820130319051849.01 a1810-147X aissn1810147X a0001083878 a20030523a20049999k y0frec0103 ea0 achiaeng aMO ar aaha 10aShén zhōu jiāo liú =dChinese cross currents aMacaucMacau Ricci Instituted2004- aTrimestriel10aChinese cross currents aChinexPériodiques aChinexSciences socialesxPériodiques aChinexCivilisationxPériodiques02aMacau Ricci Institute 3aFRbAbesc20061009gAFNOR 3aFRbISSNc20030523 a004 uhttp://www.riccimac.org/eng/ccc/previous.htm zContenu : sommaires depuis vol. 1, no. 1, 20041 bvol. 1 no. 1 (jan-2004) -....cParisdMagasins/AnnexeseP 8° 6972 aZPAY aGEO RI3.01 Chine aDEW 95101181cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001700069035001700086035001500103100004100118101000800159102000700167105001800174110001600192200006000208207002700268210003800295320003300333326002200366430004000388530002200428607003600450607004600486801003000532801002300562802000700585856007400592856005900666955007000725992001200795036750050000113276220130319051849.01 a1361-7362 accn1361-7362 zccn7135/1256 aissn13617362 a0001132762 a19980709a19939999k y0frey0103 ba0 aeng aGB ay 0  aaja 0uu 10aSibiricaeinterdisciplanary journal of siberian studies 0aVol.1, no.1 (1993/94)- aOxfordaNew YorkcBerghahnd2002- aN'a pas paru de 1996 à 2001 aTrois n°s par an 1tSiberica (Portland, Or.)x1049-928810aSibiricab(Keele) aSibérie (Russie)xPériodiques aSibérie (Russie)xHistoirexPériodiques 3aFRbAbesc20080304gAFNOR 3aFRbISSNc20060706 a024 uhttp://berghahn.publisher.ingentaconnect.com/content/berghahn/sibiric zContenu : sommaires depuis le vol. 2 n° 1, April 20021 bvol. 5 no. 1 (pri-2006) -....cParisdMagasins/AnnexeeP 8° 7013 aDEW 95701046nas 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000145001502100032002953260011003276060047003386070046003857100083004318010013005148560028005278560059005559550053006149720009006679910018006769920016006949920022007100000329295000032929520130319051849.0 a0000329295 a a19 9999k fre ba0 ager aCH a 0  ar aak z 0 10aSicherheitfForschungstelle für Sicherheitspolitik und Konfliktanalyse der ETH Zürich und Militärische Führungsschule an der ETH Zürich aZürichcETH Zürichd198?- aAnnuel aSécurité nationaleySuissexPériodiques aSuissexPolitique militairexPériodiques02aForschungsstelle für Sicherheitspolitik und Konfliktanalysec(Zurich, Suisse) 0aFRbFNSP uhttp://www.fsk.ethz.ch/ z:Contenu : texte intégral du dernier rapport en ligne1 b(1999) -....cParisdMagasins/AnnexeeP 8° 6523 aZGRA aexempb201212 aDEW 355-359 aGEO RA5.14 Suisse01160nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000510013921000540019032600160024445200470026053000260030760600250033360600290035880100210038785602330040895500700064195701040071197200090081599100180082499200160084203896340X000004194920130920144136.01 a0097-9740 aFNSP223379 a19900101a19759999 ba0 aeng aUS aaha 10aSignsejournal of women in culture and society aChicago, Ill.cUniversity of Chicago Pressd1975- aTrimestriel 1tSigns (Chicago, Ill. Online)‎x1545-694310aSigns (Chicago, Ill.) aFemmesxPériodiques aFéminismexPériodiques 3aFRbCCN0097-97404 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=SIG&site=ehost-livezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 3 (pri-1978) -....cParisdMagasisn/AnnexeeP 8° 40311 bvol. 1 (1975) -vol. 10 (1985) ; vol. 1 (1975) -vol. 20 (1995)cParisdMagasins/AnnexeeP Index 0588 aZCAD aexempb201001 aDEW 305-30601380nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154207004500178210004200223326001500265430003500280517002600315606003700341606004300378710008700421711007000508711005300578856010800631856010800739955014400847972000900991991001801000992001201018040266702000000708220130319051850.01 a1046-8781 aFNSP111598 a0000007082 a19900426b19902009 ba0 aeng aUS aaha 10aSimulation & gaming 1aVol. 21 no 1 (1990)-vol. 40 no. 6 (2009) aNewbury Park, Calif.cSaged1990-2009 aBimestriel 1aSimulation & games,x0037-550010aSimulation and gaming aJeux, Théorie desxPériodiques aSimulation, Méthodes dexPériodiques02aAssociation for Business Simulation and Experiential Learningc(Winter Park, Fla.)02aAssociation internationale de simulation et de jeux d'entreprises02aNorth American Simulation and Gaming Association4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 21 no. 1 (mar-1990) -vol. 27 no. 1 (mar-1996) ; vol. 32 no. 1 (mar-2001) -vol. 40 no. 6 (dec-2009)cParisdMagasins/AnnexeeP 8° 2763 aZSAB aexempb201105 aDEW 30101092nls 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000109001502070010002592100032002692300024003013000032003253260011003573370017003686070050003856070064004357100019004998010013005188560094005318560077006259920022007029920014007249920016007380001046990000104699020130319051850.0 a0001046990 a a19979999k fre 01 ba0 aita aIT ar aa z  adr 10aSintesi delle note sull'andamento dell'economia delle regioni italiane nel...b[Ressource électronique] 1a1997- aRomacBanca d'Italiad1998- aRevue électronique aTexte intégral depuis 1997 aAnnuel aFichiers PDF aItaliexConditions économiquesxPériodiques aItaliexConditions économiquesxStatistiquesxPériodiques02aBanca d'Italia 0aFRbFNSP4 uhttp://www.bancaditalia.it/pubblicazioni;internal&action=_framecontent.action&Target=_top zContenu : texte intégral depuis 1997, existe aussi en version anglaise. aGEO RA6.03 Italie aDEW 330.9 aDEW 310-31901084nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001300154210010900167530002100276606005400297712009000351856006000441856004000501955008600541957010900627991001800736992002800754992001200782039203271000001083920130319051850.01 a0213-7577 aFNSP120768 a0000010839 a19900716b19872000 ba0 aspa aES aaub 10aSintesis aMadridcAIETI, Asociación de investigación y especialización sobre temas iberoamericanosd1987-[2000] 0aSintesisbMadrid aSciences socialesyAmérique latinexPériodiques02aAsociación de investigación y especialización sobre temas iberoamericanos (Madrid)4 uhttp://www.arce.es/din/AR_sumarios_esp.idc?IdRevista=58 zContenu : sommaires depuis le n°241 bno. 2 (1987) ; no. 6 (1988) -no. 27/28 (1997)cParisdMagasins/AnnexeeP 8° 52151 bno. 1 (1987)- no. 24 (1995)cParisdMagasins/Annexezcet index se trouve dans le n°25, 1996 de la revue aexempb201109 aGEO RD Amérique latine aDEW 98000895nls 2200301 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000050001502100071002002300024002713260031002953360024003263370024003506060041003746760013004157100054004288010013004828300007004958560055005028560036005570000756429000075642920130827154118.0 a0000756429 a a20029999k fre 01 ba0 aeng aSE ar aby z  adr 10aSIPRI policy paperb[Ressource électronique] aSolnacStockholm International Peace Research Instituted2002-.... aDonnées textuelles aCollection de monographies aDonnées textuelles aAccès par Internet aSécurité internationalez1990-.... a327v21a02aInstitut international de recherches pour la paix 0aFRbFNSP adm4 uhttp://books.sipri.org/index_html?c_category_id=50 zAccès libre au texte intégral01170nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210004300173326001100216430004900227517006200276530002700338606004400365606002800409606003100437676000800468710005400476801002100530856009400551955006700645955005300712972000900765991001800774992001600792040082709000000497120131202172833.01 a0953-0282 aFNSP107118 a0000004971 a19900101a19879999 ba0 aeng aSE aaku 10aSIPRI yearbook aOxfordcOxford University Pressd1987- aAnnuel 1aWorld armaments and disarmamentx(0347-2205)10aStockholm International Peace Research Institute yearbook00aSIPRI yearbookb(1987) aSécurité internationalexPériodiques aArmementsxPériodiques aDésarmementxPériodiques a35502aInstitut international de recherches pour la paix 3aFRbCCN0579-5508 uhttp://editors.sipri.se/pubs/yb01/pr01.htmlzContenu : sommaires et résumés depuis 19941 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3551 b(1987) -....cParisdMagasins/AnnexeeP 8° 5423 aZPAY aexempb200009 aDEW 355-35901414nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001200139210003700151326001500188530002000203606003600223606004500259676000800304710004700312801002100359856019100380856024600571955006600817955009400883972000900977991001800986992002101004992002301025992001601048039189295000006949020130904112404.01 a0210-0223 aFNSP321447 a19900101a19739999 ba0 aspa aES aagu 10aSistema aMadridcFundacion Sistemad1973- aBimestriel10aSistemabMadrid aScience politiquexPériodiques aScience politiqueyEspagnexPériodiques a94002aInstituto de técnicas socialesc(Espagne) 3aFRbCCN0210-02234 uhttp://www.fundacionsistema.comzContenu : sommaire du dernier numéro ; recherche par titre d'article, auteur, n°, date de parution sur tous les sommaires à partir du n°1, janv. 19734 uhttp://www.revistasculturales.com/revistas/83/sistema.htmlzContenu : sommaires des trois derniers numéros en page d'accueil ; recherche par titre d'article, auteur, n°, date de parution sur tous les sommaires à partir du n°1, janv. 19731 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 bno. 1 (1973) -no. 80/81 (1987) ; no. 112 (1993) -....cParisdMagasins/AnnexeeP 8° 3470 aZCAD aexempb200905 aGEO RQ Universel aGEO RA6.02 Espagne aDEW 320-32101285nls 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001341350018001502000125001682100027002932300024003203200103003443200089004473260015005366070059005516070051006106070068006616070049007297120061007788010013008398300008008528560058008609550029009180000314400000031440020130319051850.0 a0000314400 a a19909999k fre ba0 aeng aSE a 0  az aau z 0  adr 10aSITE working papers - Stockholm Institute of Transition Economics and East European Economiesb[Ressource électronique] aStockholmcSITEd1990- aDonnées textuelles aAccès au 21/04/2000 : World-Wide Web. URL : http://www.hhs.se/site/Publications/workingpapers.htm aTexte intégral en anglais, russe ou suédois télédéchargeable avec Adobe Acrobat aCollection aEurope de l'EstxConditions économiquesxPériodiques aEx-URSSxConditions économiquesxPériodiques aEurope de l'EstxPolitique économiquez1989-....xPériodiques aEx-URSSxPolitique économiquexPériodiques02aHandelshögskolan i StockholmbÖstekonomiska institutet 0aFRbFNSP amfo4 uhttp://www.hhs.se/site/Publications/workingpapers.htm1 rConsultable sur Internet00849nas 2200277 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000043001552100028001983260011002266060047002376060056002847100043003408560055003839550092004389720009005309920016005399920016005550000134059000013405920130319051850.0 a1020-2129 aFNSP540981 a0000134059 a19940810a19819999 f ba0 afre aUS aaka 13aLa Situation des enfants dans le monde aNew YorkcUNICEFd1981- aAnnuel aEnfantsxConditions socialesxPériodiques aEnfantsxProtection, assistance, etc.xPériodiques02aFonds des Nations Unies pour l'enfance uhttp://www.unicef.org/french/infores/pubstitle.htm1 b(1981/1982) -(1985) ; (1988) -(1990) ; (1993) -....cParisdMagasins/AnnexeeP 4° 6385 aZGRA aDEW 305-306 aDEW 360-36301324nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006400139210002100203215005700224225003200281326001100313452008400324530007700408606004600485606003000531676000800561710007200569801002100641856008400662955006200746955005500808955008600863972000900949992001600958039241742000012080120131018115244.01 a0251-1460 aFNSP497899 a19900101a19479999 f ba0 afre aIT aaku 13aLa Situation mondiale de l'alimentation et de l'agriculture aRomecFAOd1947- a+ disquette "Time series for SOFA" à partir de 199321aCollection FAO. Agriculture aAnnuel 1tSituation mondiale de l'alimentation et de l'agriculture (En ligne),x1564-336013aLa Situation mondiale de l'alimentation et de l'agriculture‎bImprimé aAlimentsxApprovisionnementxPériodiques aAgriculturexPériodiques a33802aOrganisation des Nations Unies pour l'alimentation et l'agriculture 3aFRbCCN0251-1460 uhttp://www.fao.org/publications/sofa/fr/zAccès au texte intégral depuis 19471 bLa dernière annéecParisd27, Salle 1er étageeDEW 3381 b(1947) -(1979)cParisdMagasins/AnnexeeCOL4°00401 b(1980) -(1990) ; (1992) -(1997) ; (2002) -...cParisdMagasins/AnnexeeP 4° 5455 aZPAY aDEW 338.1-301529nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008600154210008100240326001600321430006100337607002300398607003000421607002500451607003400476710006300510801002100573856009000594856010800684856008100792856009000873856003800963955007101001972000901072991001801081992003201099992001201131038794586000004240120140108104938.01 a0037-6779 aFNSP224339 a0000042401 a19900101a19619999 ba0 aeng aUS aaha 10aSlavic revieweAmerican quarterly of Russian, Eurasian, and East European studies a[Seattle]cAmerican Association for the Advancement of Slavic Studiesd1961- aTrimestriel 1aAmerican Slavic and East European reviewxISSN 0037-6779 aURSSxPériodiques aPays slavesxPériodiques aRussiexPériodiques aEurope de l'EstxPériodiques02aAmerican Association for the Advancement of Slavic Studies 3aFRbCCN0037-67794 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00376779.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po zPour American Slavic and East European review via JSTOR, voir URL ci-dessous uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/10497544.html4 uhttp://www.slavicreview.uiuc.edu/1 bvol. 20 no. 3 (oct-1961) -....cParisdMagasins/AnnexeeP 8° 1273 aZPAY aexempb201102 aGEO RA2.02 Europe orientale aDEW 94701247nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210006900182326001600251430004500267440004300312606003900355606005100394710007000445801002100515856004300536856006700579955009100646955009100737972000900828992002100837992002300858992001600881038724332000004241820130319051851.01 a0019-848X aFNSP224366 a0000042418 a19900101b19702000 ba0 aeng aUS aaha 10aSloan management review aCambridge, Mass.cSloan Management Review Associationd1970-2000 aTrimestriel 1aIndustrial management review (0884-8211) 1tMIT Sloan management reviewx1532-9194 aGestion d'entreprisexPériodiques aGestion d'entrepriseyEtats-UnisxPériodiques02aMassachusetts Institute of Technology. Sloan School of Management 3aFRbCCN0019-848X4 uhttp://mitsloan.mit.edu/smr/index.html zContenu : sommaires et résumés depuis le vol. 37, n°1, 19951 bvol. 20 no. 1 (aut-1978) -vol. 42 no. 1 (hiv-2000)cParisdMagasins/AnnexeeP 4° 44311 bvol. 15 no. 1 (aut-1973) -vol. 19 no. 3 (pri-1978)cParisdMagasins/AnnexeeP 8° 3367 aZPAY aGEO RQ Universel aGEO RC2 Etats-Unis aDEW 650-65801136nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000095001642100061002593260015003204400069003356070060004046070042004646070052005067100050005588010013006088560026006218560056006479550086007039720009007899920012007980000613877000061387720130319051851.01 a1335-6259 a0000613877 a b20002005 fre 01 ba0 aeng aSK a 0  ar aaj z 0 10aSlovak foreign policy affairsereview for international politics, security and integration aBratislavacSlovak Foreign Policy Associationd2000-2005 aSemestriel 1tInternational issues & Slovak foreign policy affairs,x1337-5482 aEurope de l'EstxIntégration économiquexPériodiques aEurope de l'EstxUnitéxPériodiques aSlovaquiexRelations extérieuresxPériodiques02aSlovenska spolocnost' pre zahranicnu politiku 0aFRbFNSP4 uhttp://www.ceeol.com/ zContenu: sommaires et résumés des n° depuis 20031 bvol. 3 no. 2 (aut-2002) -vol. 6 no. 2 (2005)cParisdMagasins/AnnnexeeP 8° 6753 aZPAY aDEW 32701072nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210004100178326002500219607002500244607002300269607002600292710005600318856008500374856006100459955006000520972000900580991001800589992003900607992002000646992005600666992001200722039305716000004669420130319051851.01 a0183-6080 aFNSP237969 a0000046694 a19900101a19789999 ba0 afre aFR aaky 10aSlovo (Paris, 1978) aPariscPublications Langues'Od1978- aUn n° double par an aRussiexPériodiques aURSSxPériodiques aEx-URSSxPériodiques02aCentre d'études russes et ex-soviétiquesc(Paris)4 uhttp://www.inalco.fr/ina_gabarit_rubrique.php3?pub=1&id_rubrique=1886&cat_rub=654 zContenu : sommaires en format Word depuis le n°14, 19941 bvol. 4 (1982) -....cParisdMagasins/AnnexeeP 8° 5761 aZPAY aexempb201111 aGEO RA7.21 Russie (depuis 1991-92) aGEO RA7.01 URSS aGEO RA7.02 Etats successeurs de l'Union soviétique aDEW 94701247nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154207002400184210002400208326002500232326002700257326002900284434005800313517003200371606002900403606003100432606002900463606004700492676000800539856010900547856010800656955006600764972000900830991001800839992001600857037392379000008264320140110161308.01 a0959-2318 aFNSP368527 a0000082643 a19900101a19909999 ba0 aeng aGB aaia 10aSmall wars & insurgencies 1aVol.1, no.1 (1990)- aLondoncCassd1990- a5 n°s par anb2011- aTrimestrielb2006-2010 a3 n°s par anb1990-2005 1tLow intensity conflict and law enforcementx0966-284710aSmall wars and insurgencies aTerrorismexPériodiques aRévolutionsxPériodiques aGuérillasxPériodiques aConflits de basse intensitéxPériodiques a3554 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713636778db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 1 (1992) -....cParisdMagasins/AnnexeeP 8° 5906 aZSAB aexempb201111 aDEW 355-35901091nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154207002400181210002400205326001600229517002900245606002400274856009500298856008200393856008500475856010800560955007000668972000900738991001800747992001200765040099326000019676820130319051852.01 a0964-6639 aFNSP722198 a0000196768 a19900101a19929999 ba0 aeng aGB aaha 10aSocial & legal studies 1aVol.1, no.1 (1992)- aLondoncSaged1992- aTrimestriel10aSocial and legal studies aDroitxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sagepub.co.uk/journal.aspx?pid=105776 zContenu : sommaires depuis le vol. 6, n°1, mars 1997 ; résumés depuis 19984 uhttps://acces-distant.sciences-po.fr/fork?http://sls.sagepub.com/content/by/year zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 1 (mar-1996) -....cParisdMagasins/AnnexeeP 8° 6269 aZPAY aexempb201301 aDEW 34001591nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009100154207001800245210007600263210002400339326002300363326002600386517006800412606004000480710009000520801002100610856007000631856010800701955011600809955010300925957009301028972000901121991002001130991001801150992002101168992001601189038795000000004238520140109172008.01 a0037-7686 aFNSP224312 a0000042385 a19900101a19539999 ba0 amul aBE aaha 10aSocial compasserevue des études socio-religieusesdreview of socio-religious studies 1ano. 1 (1953)- aLouvain, etc.cCentre de recherches socio-religieuses, etc.]d1953-1988 aLondoncSaged1989- aTrimestrielb1969- aBimestrielb1953-196810aSocial compasseinternational review of socio-religious studies aSociologie religieusexPériodiques02aFédération internationale des instituts de recherches sociales et socio-religieuses 3aFRbCCN0037-76864 uhttps://acces-distant.sciences-po.fr/fork?http://scp.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 17 no. 1 (1960) -....cParisdMagasins/AnnexeeP 8° 1915wManquant (épuisés) : vol. 36,1989 et 37, 19901 bvol. 2 no. 5 (1953) ; vol. 6 no. 1 (1959) -vol. 6 no. 6 (1959)cParisdMagasins/AnnexeeP 4° 19311 bvol. 11 (1964) -vol. 20 (1973)zIndex se trouve dans le vol. 21, no. 3, 1974 de la revue aZSAB aPériobTP03 P4 aexempb201009 aGEO RQ Universel aDEW 305-30601066nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210007400174326001500248606002900263606003800292710004400330801002100374856010900395856010800504955008200612972000900694991001800703992001900721992001200740039261697000004237820130319051852.01 a0253-3952 aFNSP224298 a0000042378 a19900101a19759999 ba0 aeng aZA aaja 10aSocial dynamics aRondeboschcUniversity of Cape Town, Faculty of Social Scienced1975- aSemestriel aSociologiexPériodiques aSociologieyAfriquexPériodiques02aCentre for African Studies (Rondebosch) 3aFRbCCN0253-39524 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t791476125db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jun-1975) -vol.33 no. 2 (dec-2007)cParisdMagasinseP 8° 4444 aZPAY aexempb200911 aGEO RE Afrique aDEW 30101514nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001800154210006500172210005000237326001600287606004100303801002100344856012800365856010800493856009000601856010800691955013300799957018200932972000901114991001801123992002301141992001201164038795051000004752820130319051852.01 a0037-7732 aFNSP240776 a0000047528 a19900101a19259999 ba0 aeng aUS aahu 10aSocial forces aChapel Hill, N.C.cUniversity of North Carolina Pressd1962- aBaltimore, Md.cWilliams & Wilkinsd1925-1962 aTrimestriel aSociologieyEtats-UnisxPériodiques 3aFRbCCN0037-77324 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=SFR&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00377732.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 4 no. 4 (1928) ; vol. 27 no. 1 (1948) -vol. 84 no. 4 (2006)cParisdMagasins/AnnexeeP 8° 0076wmanque vol. 36 (1957/1958)1 bvol. 1 (1922) -vol. 50 (1972)cParisdMagasins/AnnexeeP Index 0242zvol. 49 (1971) -vol. 63 (1985): années indexées dans Cumulative index of sociology journals (P Index 0614) aZSAB aexempb200906 aGEO RC2 Etats-Unis aDEW 30101479nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210003200176210003100208326002200239326002700261326002800288530002900316606003900345606004300384856005700427856005900484856012800543856010800671856010900779856010800888955006600996972000901062991001801071992001601089036737690000015465920130319051852.01 a1350-4630 aFNSP603575 a0000154659 a19900101a19959999 ba0 aeng aGB aaga 10aSocial identities aAbingdoncCarfaxd1995-2004 aAbingdoncRoutledged2005- aBimestrielb2004- aTrimestrielb1999-2003 a3 nos par anb1995-1998 0aSocial identitiesbPrint aIdentité collectivexPériodiques aRelations interethniquesxPériodiques4 uhttp://www.tandf.co.uk/journals/carfax/13504630.html zContenu : sommaires depuis le vol. 2, n°1, fév. 19964 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=SEN&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713445719db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1995) -....cParisdMagasins/AnnexeeP 8° 6111 aZSAB aexempb201212 aDEW 305-30601016nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210004500173326001600218430004000234606003600274606003600310801002100346856012800367856010800495955007200603972000900675991001800684992001200702040260283000001498520130319051852.01 a1043-1578 aFNSP141122 a0000014985 a19900101a19889999 ba0 aeng aUS aahu 00aSocial justice aSan Francisco, CacSocial justiced1988- aTrimestriel 1aCrime and social justicex0094-7571 aSciences socialesxPériodiques aScience politiquexPériodiques 3aFRbCCN7109/89334 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=JUS&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 15 no. 1 = 31 (1988) -....cParisdMagasins/AnnexeeP 8° 4739 aZPAY aexempb201106 aDEW 30001177nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200007400163210004900237326001600286606003600302606003600338607005300374710003600427801001300463856010100476856010800577955012000685972000900805992001600814992002100830067778429000048863520130319051853.01 a1474-7464 a0000488635 a a20029999k fre ba0 aeng aGB a 0  ar aah z 0 10aSocial policy and societyea journal of the Social Policy Association aCambridgecCambridge University Pressd2002- aTrimestriel aPolitique socialexPériodiques aChangement socialxPériodiques aGrande-BretagnexPolitique socialexPériodiques02aSocial Policy Associationc(GB) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=109371 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (2002) -....cParisdMagasins/AnnexeeP 8° 6655wlacunes: vol. 2 (2003), vol. 3 (2004), vol. 4 (2005) aZPAY aDEW 360-363 aGEO RQ Universel01056nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012310600060014111000160014720000710016321000490023432600160028344000420029960600360034171000440037780100130042185601090043485601080054395500820065197200090073399200120074207679136X000057774820130319051853.01 a1533-2942 a0000577748 a b20022005k fre ba0 aeng aUS a 0  ar aah z 0 14aThe social policy journalfSocial Policy and Policy Practice Group aBinghamton, NYcThe Haworth Pressd2002-2005 aTrimestriel 1tJournal of policy practicex1558-8742 aPolitique socialexPériodiques02aSocial Policy and Policy Practice Group 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t904096502db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no 1 (2002) -vol. 4 no 3/4 (2005)cParisdMagasins/AnnexeseP 8° 6692 aZSAB aDEW 36000755nas 2200253 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210004300174326001800217606003600235856004200271856007300313955008100386991001800467992001600485040313492000023151520130319051853.01 a1072-4745 aFNSP822365 a0000231515 a19900101a19949999 ba0 aeng aUS aaia 10aSocial politics aOxfordcOxford University Pressd1994- a3 n°s par an aPolitique socialexPériodiques4 uhttp://www.oup.co.uk/socpol/contents/ zContenu : sommaires et résumés depuis le vol. 4, no.1, print. 19971 bvol. 4 no. 2 (1997) -vol. 6 no. 3 (1999)cParisdMagasins/AnnexeeP 8° 6362 aexempb201301 aDEW 360-36301337nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200002000138210006000158326001600218606003300234606002900267710005900296801002100355856009000376856010800466856010300574856010800677955007000785957007200855972000900927991001800936992003300954992001200987038795124000004338120130319051853.01 a0037-7791 aFNSP227474 a0000043381 a19900101a19539999 ba0 aeng aUS10aSocial problems aBerkeley, Calif.cUniversity of California Pressd1953- aTrimestriel aDiscriminationxPériodiques aSociologiexPériodiques02aSociety for the Study of Social Problemsc(Etats-Unis) 3aFRbCCN0030/58474 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00377791.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=106449 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jun-1953) -....cParisdMagasins/AnnexeeP 8° 20331 bvol. 1 (1952) -vol. 17 (1970)cParisdMagasins/AnnexeeP Index 0258 aZPAY aexempb201105 aGEO RS Sans aspect régional aDEW 30101174nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210006300186326001600249430003300265606003800298710003800336856009000374856010800464856010100572856010800673955007100781972000900852992001100861039141748000004348520130319051853.01 a0190-2725 aFNSP227721 a0000043485 a19900101a19799999 ba0 aeng aUS aaha 10aSocial psychology quarterly aWashington, D.C.cAmerican Sociological Associationd1979- aTrimestriel 1aSocial psychologyx0147-829X aPsychologie socialexPériodiques02aAmerican Sociological Association4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01902725.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=111307 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 48 no. 1 (mar-1985) -....cParisdMagasins/AnnexeeP 8° 0072 aZPAY aDEW 1501292nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210005200174326001600226606003600242710009700278801002100375856012800396856010800524856012800632856010800760955007100868972000900939991001800948992001200966038795175000004748620131025111523.01 a0037-783X aFNSP240687 a0000047486 a19900101a19349999 ba0 aeng aUS aahu 10aSocial research aNew YorkcNew School for Social Researchd1934- aTrimestriel aSciences socialesxPériodiques02aNew School for Social Researchc(New York)bGraduate Faculty of Political and Social Science 3aFRbCCN0037-783X4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=SRE&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=SRE&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 14 no. 1 (mar-1947) -....cParisdMagasins/AnnexeeP 8° 0067 aZPAY aexempb201101 aDEW 30001084nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210004700181326001600228606004600244710003900290801002100329856004100350856007200391856009000463856010800553955007000661972000900731991001800740992001200758039087654000004332020130319051853.01 a0145-5532 aFNSP227333 a0000043320 a19900101a19769999 ba0 aeng aUS aaha 10aSocial science history aDurham, N.C.cDuke University Pressd1976- aTrimestriel aSciences socialesxHistoirexPériodiques02aSocial Science History Association 3aFRbCCN0145-55324 uhttp://www.pitt.edu/sshist/tocs.html zContenu : sommaires et résumés depuis le vol. 21, n°3, aut. 19974 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01455532.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 9 no. 1 (hiv-1985) -....cParisdMagasins/AnnexeeP 8° 4963 aZSAB aexempb201003 aDEW 30001327nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007200154210002400226326002300250326002600273326002700299530004900326606003600375801002100411856007000432856007400502856007800576856010800654955006900762957007400831972000900905991001800914992002100932992001200953039641899000004339020130319051853.01 a0539-0184 aFNSP227490 a0000043390 a19900101a19629999 ba0 amul aGB aaha 10aSocial science informationd= Information sur les sciences sociales aLondoncSaged1962- aTrimestrielb1985- aBimestrielb1967-1984 aTrimestrielb1962-1966 1aInformation sur les sciences socialesbParis aSciences socialesxPériodiques 3aFRbCCN0539-01844 uhttps://acces-distant.sciences-po.fr/fork?http://ssi.sagepub.com/ zContenu : sommaires et résumés depuis le volume 1, n°1, avril 19624 uhttps://acces-distant.sciences-po.fr/fork?http://ssi.sagepub.com/archive/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol.1 no. 1 (avr-1962) -....cParisdMagasins/AnnexeeP 8° 18961 b(1961) -(1965) ; (1967) -(1968)cParisdMagasins/AnnexeeP Index 0003 aZSAB aexempb201112 aGEO RQ Universel aDEW 30000949nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210004300187326001500230437005700245607004900302607002400351710004000375856003300415856006700448955008100515991001800596992002100614992001200635044837879000025537720130319051853.01 a1369-1465 aFNSP891336 a0000255377 a19900101a19989999 ba0 aeng aGB aaja 10aSocial science Japan journal aOxfordcOxford University Pressd1998- aSemestriel 1aAnnals of the Institute of Social Sciencex0563-8054 aJaponxConditions économiquesxPériodiques aJaponxPériodiques02aInstitute of Social Science (Tokyo)4 uhttp://www.oup.co.uk/ssjapj/ zContenu : sommaires et résumés depuis le vol. 1, no. 1, 19981 bvol. 1 no. 1 (1998) -vol. 1 no. 2 (1998)cParisdMagasins/AnnexeeP 8° 6422 aexempb199804 aGEO RI3.22 Japon aDEW 95201018nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210005100183326001600234606004800250710005800298801002100356856012800377856010800505955007100613972000900684992002300693992001200716038799944000004335020130319051853.01 a0038-4941 aFNSP227388 a0000043350 a19900101a19689999 ba0 aeng aUS aaha 10aSocial science quarterly aAustin, Tex.cUniversity of Texas Pressd1968- aTrimestriel aSciences socialesyEtats-UnisxPériodiques02aSouthwestern Social Science Associationc(Etats-Unis) 3aFRbCCN0038-49414 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=SSQ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 49 no. 1 (jun-1968) -....cParisdMagasins/AnnexeeP 8° 2439 aZSAB aGEO RC2 Etats-Unis aDEW 30001170nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154207003000183210003400213210005700247326001600304606004300320710003900363801002100402856010900423856010800532955012000640972000900760991001800769992004500787992001200832039257770000004752620140108152637.01 a0252-9203 aFNSP240774 a0000047526 a19900101a19809999 ba0 aeng aCN aahu 10aSocial sciences in China 1avol. 1, no. 1 (mar-1980)- aBasingstokecRoutledged2009- aBeijingcSocial Sciences Publishing Housed1980-2008 aTrimestriel aSciences socialesyChinexPériodiques02aChinese Academy of Social Sciences 3aFRbCCN0252-92034 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t792221890db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1980) -....cParisdMagasins/AnnexeeP 8° 4294wManquants : nos 1 à 4, 1988 et nos 1 à 4, 1989 aZPAY aexempb201010 aGEO RI3.03 Chine (République populaire) aDEW 30001617nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004000154210005400194326001600248606003300264710008200297801002100379856012800400856010800528856010100636856010800737856012800845856010800973955007101081957010201152972000901254992001601263036426830000004346820130319051853.01 a0037-7961 aFNSP227660 a0000043468 a19900101a19279999 ba0 aeng aUS aaha 14aThe Social service review (Chicago) aChicago, Ill.cUniversity of Chicago Pressd1927- aTrimestriel aService socialxPériodiques02aUniversity of ChicagobFaculty of the School of Social Service Administration 3aFRbCCN0037-79614 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=SSR&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=106569 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=SSR&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 24 no. 1 (mar-1950) -....cParisdMagasins/AnnexeeP 8° 07811 bvol. 1 (1927) -vol. 40 (1966)cParisdMagasins/Annexezse trouve dans le vol. 42 no. 1 (mar-1968) aZPAY aDEW 360-36301143nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210002400184326001500208430003100223606002800254606004200282856009500324856008400419856010800503856010800611955007100719972000900790991001800799992001200817039396304000016165420130319051853.01 a0306-3127 aFNSP621500 a0000161654 a19900101a19759999 ba0 aeng aGB aaha 10aSocial studies of science aLondoncSaged1975- aBimestriel 1aScience studiesx0036-8539 aRecherchexPériodiques aSciencesxAspect socialxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sagepub.co.uk/journal.aspx?pid=105780 zContenu : sommaires depuis le vol. 27, n°1, fév. 1997 ; résumés depuis 19984 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 25 no. 1 (fev-1995) -....cParisdMagasins/AnnexeeP 8° 6141 aZSAB aexempb201202 aDEW 30000869nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002700163207002700190210004300217326001500260532002900275606003400304801001300338856008400351856003700435955007000472972000900542992001600551074394770000059497620130319051853.01 a1477-8211 a0000594976 a a20039999 fre 01 ba0 aeng aGB a 0  ar aaj z 0 10aSocial theory & health 1aVol.1, n°1 (May 2003) aBasingstokecPalgrave Macmilland2003- aSemestriel12aSocial theory and health aSanté publiquexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.palgrave-journals.com/sth/ zContenu : sommaires et résumés1 bvol. 1 no. 1 (mai-2003) -....cParisdMagasins/AnnexeeP 8° 6735 aZSAB aDEW 360-36301075nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210004900185326002300234326002900257530003100286606003800317710005500355801002100410856023300431955007000664972000900734991001800743992001200761038795256000004333720130528171822.01 a0037-802X aFNSP227354 a0000043337 a19900101a19709999 ba0 aeng aUS aaha 10aSocial theory and practice aTallahasseecFlorida State Universityd1970- aTrimestrielb2001- a3 n°s par anb1970-200000aSocial theory and practice aPhilosophie socialexPériodiques02aFlorida State UniversitybDepartment of Philosophy 3aFRbCCN0037-802X4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=STP&site=ehost-livezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (pri-1970) -....cParisdMagasins/AnnexeeP 8° 3035 aZPAY aexempb201106 aDEW 30000833nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000018001552100024001733260011001975300018002086070055002267120048002818560064003298560036003939550058004299720009004879920031004969920016005270000119636000011963620130319051854.0 a0306-7742 aFNSP494318 a0000119636 a19940301a19709999 ba0 aeng aGB aaka 10aSocial trends aLondoncHMSOd1970- aAnnuel00aSocial trends aGrande-BretagnexConditions socialesxPériodiques02aGrande-BretagnebCentral Statistical Office4 uhttp://www.statistics.gov.uk/StatBase/Product.asp?vlnk=57484 zAccès libre au texte intégral1 bno. 1 (1970)-....cParisdMagasins/AnnexeeP 4° 3025 aZPAY aGEO RA4.02 Grande-Bretagne aDEW 360-36301232cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200003300180207003500213210003900248430004900287606005000336606004800386801003000434801002300464801003000487801002300517802000700540856010900547856010800656955006700764992002300831992001600854125010923000114507920130319051854.01 a1937-1918 aissn19371918 a0001145079 a20080618a20079999k y0frey0103 ba0 aeng aUS ay 0  ar aaga 0uu 10aSocial work in public health 0aBegan with v. 23, no. 1 (2007) aBinghamton, NYcHaworth Press, Inc 1tJournal of health & social policyx0897-7186 aPolitique sanitaireyEtats-UnisxPériodiques aMédecine socialeyEtats-UnisxPériodiques 3aFRbAbesc20090308gAFNOR 3aFRbISSNc20090225 3aFRbAbesc20080619gAFNOR 3aFRbISSNc20080618 a014 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t792306869db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 23 no. 1 (2007) -....cParisdMagasins/AnnexeeP 8° 5800 aGEO RC2 Etats-Unis aDEW 360-36301396nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002800139210006300167326001800230451005100248452005200299530002800351710005800379801002100437856040700458955006300865957012500928972000901053991001801062992001401080039976912000004331820131011161016.01 a0885-4300 aFNSP227329 a19900101a19859999 ba0 aeng aUS aaia 10aSocialism and democracy aNew YorkcResearch Group on Socialism and Democracyd1985- a3 n°s par an 1tSocialism and democracy (Online)‎x1745-2635 1ttSocialism and democracy (Online)‎x1745-263500aSocialism and democracy02aResearch Group on Socialism and Democracyc(New York) 3aFRbCCN0885-43004 uhttp://www.sdonline.orgzContenu : sommaires depuis le vol.11, n°1 = n°20, printemps-été 1997 ; sélection d'articles en texte intégral depuis le vol.16, n°1 = n°31, été-automne 2002uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713727607db=allzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (aut-1985) -....cParisdMagasins/AnnexeeP 8° 50191 bno. 11 (1990) -no. 22 (1997)cParisdMagasins/AnnexeeP 8° 5019wse trouve dans le vol. 11 no. 2 (aut-1997) de la revue aZSAB aexempb201007 aDEW 320.500793nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210003200177326001100209606002900220801002100249856003200270856003600302955007100338955005300409972000900462991001800471992001400489038877821000013177620130319051854.01 a0081-0606 aFNSP535637 a0000131776 a19900101a19649999 ba0 aeng aGB aaku 10aSocialist register aLondoncMerlin Pressd1964- aAnnuel aSocialismexPériodiques 3aFRbCCN0081-06064 uhttp://www.yorku.ca/socreg/ zContenu : sommaires depuis 19901 b(1964) -(1965) ; (1967)-(1979)cParisdMagasins/AnnexeeCOL8°33881 b(1980) -....cParisdMagasins/AnnexeeP 8° 5236 aZPAY aexempb201108 aDEW 320.500975nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002800163210002400191326001900215326002700234422004000261710007500301801001300376856004600389856010000435955007600535972000900611992001600620992002500636050893270000028775720130319051854.01 a1299-6734 a0000287757 a a19999999k fre ba0 afre aFR a 0  ar aau z 0 10aSociété civilefIFRAP aPariscIFRAPd1999- aMensuelb2003- aIrrégulierb1999-2002 1tLes Dossiers de l'IFRAP,x1166-821002aInstitut français pour la recherche sur les administrations publiques 0aFRbFNSP4 uhttp://www.ifrap.org/archives/listeSC.htm zContenu : accès à une séléction d'articles en texte intégral depuis le n°1, novembre 19991 bno. 1 (nov-1999) -no. 41 (nov-2004)cParisdMagasins/AnnexeeP 4° 6828 aZCAD aDEW 350-354 aGEO RA4.06 France 0101055cas0 2200289 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200003300162210005100195423006900246440006400315530004200379712006500421801003000486802000700516856014500523955007700668991002000745038459752000109343220130319051854.01 a0999-2529 accn0999-2529 a0001093432 a19890627b19011908 0frey0103 ba0 afre aFR ar aaf 10aSociété d'histoire moderne aPariscSociété d'histoire moderned1901-1908 1tRevue d'histoire moderne et contemporaine (1899)xISSN 0996-2743 1tBulletin de la Société d'histoire modernexISSN 0991-136710aSociété d'histoire moderneb(Paris)02aSociété d'histoire moderne et contemporainec(France)4340 3aFRbAbesc20070530gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb34417332z/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1901-1908)1 bno. 1 (1928) -no. 16 (1939) ; (1959)cParisdMagasins/AnnexeeP 8° 0728 aPériobTP02 P801034nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005600139210004300195210003200238210005600270326002300326326002800349530002200377606002900399801002100428856008800449856010800537955006600645972000900711992001200720039745805000004358920131007120302.01 a0765-3697 aFNSP227934 a19900101a19849999 ba0 afre aFR aahb 10aSociétéserevue des sciences humaines et sociales aBruxellescDe Boeck Universitéd1997- aMontrougecDunodd198?-1996 aPariscMassonaVineuilcESI publicationsd1984-198? aTrimestrielb1990- a5 nos par anb1984-1989 0aSociétésbParis aSociologiexPériodiques 3aFRbCCN0765-36974 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-societes.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1984) -....cParisdMagasins/AnnexeeP 4° 5353 aZPAY aDEW 30101142nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210004100183210003200224326001600256606002900272606003700301676000800338856010300346856010800449955006600557955006300623957005700686972000900743991001800752992002200770992001200792001600028000000931520131209092239.01 a1150-1944 aFNSP116517 a0000009315 a19900613a19909999 ba0 afre aFR aaha 00aSociétes contemporaines aPariscPresses de sciences-pod2007- aPariscHarmattand1990-2006 aTrimestriel aSociologiexPériodiques aSociologieyFrancexPériodiques a3014 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-societes-contemporaines.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3011 bno. 1 (mar-1990) -....cParisdMagasins/AnnexeeP 8° 56471 b(1990) -(1999)cParisdMagasins/AnnexeeP Index 0864 aZPAY aexempb201011 aGEO RA4.06 France aDEW 30101180nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006000139210005200199210004800251210004100299210004600340326001500386530003400401606002900435710010100464856021100565955006300776972000900839991001800848992001200866040389936000027694720130919122953.01 a1262-2966 aFNSP950852 a19990705a19959999 ba0 afre aFR aaja 10aSociétés et représentationseles cahiers du CREDHESS aPariscUniversité Paris I, CREDHESSd1997-2005 aPariscUniversité Paris I, ISORd2006-2007 aPariscNouveau monde éd.d2008-2010 aPariscPublications de la Sorbonned2011- aSemestriel00aSociétés & représentations aSociologiexPériodiques02aCentre de recherches et d'études en droit, histoire, économie et sociologie du socialc(Paris)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-societes-et-representations.htmzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 4 (mai-1997) -....cParisdMagasins/AnnexeeP 8° 6502 aZPAY aexempb201301 aDEW 30101187nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006000154210003600214210004800250326001500298430004300313434002500356530003500381606002900416606003600445607005000481801002100531856005000552856006400602955011900666992002100785992001900806992001200825039091988000004359420130319051854.01 a0147-2011 aFNSP227942 a0000043594 a19900101a19729999 ba0 aeng aUS aaga 10aSocietyetransactionesocial science and modern society aNew York, N.J.cSpringerd2007- aNew Brunswick, N.J.cTransactiond1972-2007 aBimestriel 1aTrans-action (Philadelphia)x0041-1035 1tWorldviewx0084-255910aSocietyb(New Brunswick, N.J.) aSociologiexPériodiques aSciences socialesxPériodiques aEtats-UnisxConditions socialesxPériodiques 3aFRbCCN0147-20114 uhttp://www.springerlink.com/content/0147-2011 zContenu : texte intégral depuis le vol. 1 no. 5 (jul-1964)1 bvol. 2 no. 2 (1965) -vol. 20 no. 1 (1982) ; vol. 44 no. 1 (nov/dec-2006) -....cParisdMagasins/AnnexeeP 4° 2141 aGEO RQ Universel aGEO RC1 Canada aDEW 30101180cas0 2200373 450 001001000000002001100010005001700021011001400038100004100052101001800093102000700111105001800118106000600136110001600142200001000158207002000168210006000188300007300248300004900321326002200370517001600392530005800408606002900466606003600495676000800531801003000539856003600569856003400605955006600639955005900705972000900764992001200773992002100785168120127000124297920140103172445.01 a2266-3134 a20130318a20139999k y0frey50 ba0 afredfreeeng aFR ay 0  ar aaia z 0xx010aSocio 0a01 (mars 2013)- aPariscÉd. de la Maison des sciences de l'hommed2013- aTexte en français avec résumés dans la même langue et en anglais aChaque livraison portera aussi sur un thème aTrois n°s par an10aRevue Socio10aSocio - Maison des sciences de l'hommeb(Paris. 2013) aSociologiexPériodiques aSciences socialesxPériodiques a301 3aFRbAbesc20130327gAFNOR40uhttp://socio.hypotheses.org/109 zContenu: sommaire de la revue1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3011 bno. 1 (2013) -....cParisdMagasins/AnnexeeP 8° 7204 aZPAY aDEW 301 aGEO RQ Universel01072nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200007400163210004300237326002300280326002900303452005400332606003600386606003700422710005100459801001300510856005600523856007800579955006600657972000900723992001400732074953648000057557020130319051855.01 a1475-1461 a0000575570 a a20039999k fre ba0 aeng aGB a 0  ar aah z 0 10aSocio-economic reviewfSociety for the Advancement of socio-economics aOxfordcOxford University Pressd2003- aTrimestrielb2007- a3 n°s par anb2003-2006 1tSocio-economic review ( on-line)xISSN 1475-147X) aPolitique socialexPériodiques aEconomie politiquexPériodiques02aSociety for the Advancement of Socio-Economics 0aFRbFNSP4 uhttp://www.ser.oupjournals.org/content/vol1/issue1/ zContenu : sommaires et résumés des articles depuis le vol.1, n°1, 20031 bvol. 1 no. 1 (2003) -....cParisdMagasins/AnnexeeP 8° 6719 aZPAY aDEW 338.901066nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210002800176326001800204430007100222606003700293710003400330856002600364856004600390955006700436955009800503957010800601972000900709992002200718992001200740038797690000004372520130319051855.01 a0038-0156 aFNSP228316 a0000043725 a19900101a19679999 ba0 aita aIT aaia 10aSociologia (Roma) aRomacSociologiad1967- a3 n°s par an 1aBolletino di sociologia dell' Istituto Luigi Sturzo < P 8° 1578 > aSociologieyItaliexPériodiques02aIstituto Luigi Sturzoc(Rome)4 uhttp://www.sturzo.it/ zContenu : sommaires des derniers numéros1 bvol. 33 no. 1 (1999) -....cParisdMagasins/AnnexeeP 4° 69831 bno. 1 (sep-1967) -vol. 32 no. 2/3 (1998)cParisdMagasins/AnnexeeP 8° 1578wManquant : 19871 b(1956) -(1961) ; (1967) -(1972) ; (1956) -(1993) ; (1956) -(2000)cParisdMagasins/AnnexeeP Index 0297 aZPAY aGEO RA6.03 Italie aDEW 30101417nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210002900177326001600206510005900222510007400281606003600355710004700391801002100438856012800459856010800587856011800695856007900813955006600892957007200958972000901030991001601039992001201055038797739000004371720130319051855.01 a0038-0199 aFNSP228266 a0000043717 a19900101a19609999 ba0 aeng aNL aaia 10aSociologia ruralis aAssencVan Gorcumd1960- aTrimestriel10aRevue de la Société Européenne de Sociologie Rurale10aZeitschrift der Europäischen Gesellschaft für Ländliche Soziologie aSociologie ruralexPériodiques02aSociété européenne de sociologie rurale 3aFRbCCN0038-01994 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=7QF&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=100930&Hide=100930_38 zContenu : articles en texte intégral depuis le vol. 38, n° 1, March 19981 bvol. 1 no. 1 (1960) -....cParisdMagasins/AnnexeeP 8° 21701 bvol. 1 (1960) -vol. 30 (1990)cParisdMagasins/AnnexeeP Index 0170 aZPAY aexemp201010 aDEW 30101503nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008500154210003700239326001600276430005700292440003700349517000700386530004400393606005400437606006600491606004100557710006000598801002100658801001300679856009000692856010800782955008200890957005700972991001801029992002301047992002101070992001401091036427640000004369920130319051855.01 a0038-0210 aFNSP228161 a0000043699 a19900101b19641992 ba0 aeng aUS aaha 10aSociological analysisfpublication of the American Catholic Sociological Society aWashington, D.C.cASRd1964-1992 aTrimestriel 1aThe American catholic sociological reviewx0362-515X 1aSociology of religionx1069-440410aSA00aSociological analysisbWorcester, Mass. aEglise catholiquexDoctrine socialexPériodiques aSociologiexAspect religieuxxEglise catholiquexPériodiques aSociologieyEtats-UnisxPériodiques02aAssociation for the Sociology of Religionc(Etats-Unis) 3aFRbCCN0038-0210 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00380210.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 30 no.1 (1964) -vol. 53 no. 4 (1992)cParisdMagasins/AnnexeeP 8° 27541 b(1940) -(1990)cParisdMagasins/AnnexeeP Index 0658 aexempb201010 aGEO RC2 Etats-Unis aGEO RQ Universel aDEW 20-2901238nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210005100179326001600230430002300246606002900269710004200298856012800340856010800468856010100576856010800677955006700785972000900852991001800861992002100879992001200900038797801000004366120130319051855.01 a0038-0245 aFNSP228077 a0000043661 a19900101a19619999 ba0 aeng aUS aaha 10aSociological inquiry aAustin, Tex.cUniversity of Texas Pressd1961- aTrimestriel 1aAlpha Kappa Deltan aSociologiexPériodiques02aInternational Sociology Honor Society4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=SIN&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=108650 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 45 no. 1 (1975) -....cParisdMagasins/AnnexeeP 8° 3646 aZPAY aexempb200912 aGEO RQ Universel aDEW 30101259nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000029001552100063001843260011002475300029002586060044002877120038003318560090003698560108004598560128005678560108006959550058008039720009008619910018008709920033008889920012009210000140237000014023720130319051855.01 a0081-1750 aFNSP558337 a0000140237 a19941102a19699999 ba0 aeng aGB aaka 10aSociological methodology aWashington, D.C.cAmerican Sociological Associationd1969- aAnnuel00aSociological methodology aSociologiexMéthodologiexPériodiques02aAmerican Sociological Association4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00811750.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=86F&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1(1969) -....cParisdMagasins/AnnexeeP 8° 3866 aZPAY aexempb201001 aGEO RS Sans aspect régional aDEW 30101254nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210003800184326001600222430004200238606005000280606002900330710003700359801002100396856004100417856006700458856009000525856010800615955012800723991001800851992003500869992001200904039691705000004364020130319051855.01 a0731-1214 aFNSP228038 a0000043640 a19900101a19839999 ba0 aeng aUS aaha 10aSociological perspectives aNewbury Park, Calif.cSaged1983- aTrimestriel 1aPacific sociological reviewx0030-8919 aSociologieyPacifique (région)xPériodiques aSociologiexPériodiques02aPacific Sociological Association 3aFRbCCN0731-12144 uhttp://www.ucpress.edu/journals/sop/ zContenu : sommaires et résumés depuis le vol. 42, n°1, 19994 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/07311214.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 26 no. 1 (1983) -vol. 31 no. 4 (1988) ; vol. 39 no. 1 (1996) -vol. 41 no. 4 (1998)cParisdMagasins/AnnexeeP 8° 2538 aexempb201001 aGEO RJ Océanie, Pacifique Sud aDEW 30101015nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000270015421000390018132600160022051700070023660600290024371000470027280100210031985601280034085601080046895500650057697200090064199100180065099200210066899200120068903879781X000004748820130319051855.01 a0038-0253 aFNSP240693 a0000047488 a19900101a19609999 ba0 aeng aUS aahu 10aSociological quarterly aGreenwich, Conn.cJAI Pressd1960- aTrimestriel10aSQ aSociologiexPériodiques02aMidwest Sociological Societyc(Etats-Unis) 3aFRbCCN0038-02534 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=SQR&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 8 no.1 (1967) -....cParisdMagasins/AnnexeeP 8° 2393 aZSAB aexempb200908 aGEO RQ Universel aDEW 30101315nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210002900178326001600207530003800223606002900261801002100290856012800311856010800439856010100547856010800648955010400756957005700860972000900917991001800926992002100944992001200965038797828000004359620130319051855.01 a0038-0261 aFNSP227945 a0000043596 a19900101a19089999 ba0 aeng aGB aaha 10aSociological review aLondoncRoutledged1908- aTrimestriel 0aSociological reviewbKeele. Print aSociologiexPériodiques 3aFRbCCN0038-02614 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=SOR&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100932 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 27 no. 2 (avr-1935) ; vol. 37 no. 1/4 (jan/oct-1945) -....cParisdMagasins/AnnexeeP 8° 00611 b(1953) -(1982)cParisdMagasins/AnnexeeP Index 0392 aZPAY aexempb200904 aGEO RQ Universel aDEW 30101019nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200003500138210005800173326001200231606003800243606002900281606003500310606003700345710005200382801002100434856003500455955006700490972000900557992002000566992005600586992003900642992001200681039049760000004374520130319051855.01 a0132-1625 aFNSP228373 a0000043745 a19900101a19759999 ca0 arus aRU10aSociologičeskie issledovaniâ aMoskvacInstitut sociologičeskih issledovanijd1975- aMensuel aSociologieyEx-URSSxPériodiques aSociologiexPériodiques aSociologieyURSSxPériodiques aSociologieyRussiexPériodiques02aInstitut sociologičeskih issledovanij (Moscou) 3aFRbCCN0132-16254 uhttp://www.isras.ru/socis.html1 bno. 4 (jul/aou-1988) -....cParisdMagasins/AnnexeeP 8° 5160 aZPAY aGEO RA7.01 URSS aGEO RA7.02 Etats successeurs de l'Union soviétique aGEO RA7.21 Russie (depuis 1991-92) aDEW 30101113cas0 2200349 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147105001800154106000600172110001600178200001500194207002900209210007600238326001600314530002400330676000800354801003000362802000700392856009000399856010800489955006600597955006600663992002200729992001200751145447901000119014020130319051855.0 a2108-8845 a143870653 aissn21088845 a0001190140 a20100629a20109999k y0frey50 ba0 afre aFR ay  ar aahu uu 10aSociologie 0aVol. 1 no. 1 (avr-2010)- aPariscPresses universitaires de France, Département des revuesd2010- aTrimestriel10aSociologieb(Paris) a301 3aFRbAbesc20100503gAFNOR a074 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-sociologie.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3011 bvol. 1 no. 1 (2010) -....cParisdMagasins/AnnexeeP 4° 7280 aGEO RA4.06 France aDEW 30101007nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154207003000183210006000213326001500273606002900288801002100317856005700338856003600395856004000431856004400471955007000515957005700585972000900642991001800651992001200669038797844000004386720130319051856.01 a0038-030X aFNSP228788 a0000043867 a19900101a19699999 ba0 afre aCA aaja 10aSociologie et sociétés 1aVol. 1, no 1 (mai-1969) - aMontréalcPresses de l'Université de Montréald1969- aSemestriel aSociologiexPériodiques 3aFRbCCN0038-030X4 uhttp://www.pum.umontreal.ca/revues/SocSoc/index.html zAccès libre au texte intégral4 uhttp://www.erudit.org/revue/socsoc/ zAccès libre aux sommaires et résumés1 bvol. 1 no. 1 (mai-1969) -....cParisdMagasins/AnnexeeP 8° 26631 b(1969) -(1977)cParisdMagasins/AnnexeeP Index 0309 aZSAB aexempb201103 aDEW 30101565nas 2200421 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200009000148207002300238210002300261210002700284210002600311210004100337326001500378452004900393530002600442606004700468606004000515606004200555676000800597710007400605801001300679856010100692856010800793955006600901955007400967955006301041972000901104991001801113992001201131045103240000038502620130902115034.01 a1295-9278 a a19999999k fre ba0 afre aFR a 0  ar aaj z 0 10aSociologies pratiquesf[Association des professionnels en sociologie de l'entreprise] 1ano. 1 (juin 1999)- aPariscAPSEd1999- aPariscAPSEd1999-2004 aPariscPUFd2005-2009 aPariscPresses de Sciences-Pod2010- aSemestriel 1tSociologies pratiques (En ligne),x2104-3787 aSociologies pratiques aSociologie des organisationsxPériodiques aSociologie du travailxPériodiques aEntreprisesxSociologiexPériodiques a30100aAssociation des professionnels en sociologie de l'entreprisec(Paris) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-sociologies-pratiques.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3011 bno. 1 (jun-1999) -....cParisdBibliothèque de rechercheeP 8° 65561 bno. 1 (jun-1999) -....cParisdMagasins/AnnexeeP 8° 6556 aZPAY aexempb201212 aDEW 30101021cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101001300142102000700155105001800162110001600180200003600196210006400232326001500296606002900311607002700340710004900367801003000416801002300446802000700469856005600476856006500532955005900597992001200656992001500668036918512000111605520130319051856.01 a1392-3358 accn1392-3358 aissn13923358 a0001116055 a19980721a19979999 0fre 0103 ba0 alitaeng aLT ay  aaj 10aSociologija. Mintis ir veiksmas aVilniuscVilniaus universiteto. Sociologijos katedrad1997- aSemestriel aSociologiexPériodiques aLituaniexPériodiques02aVilniaus universitetasbSociologijos katedra 3aFRbAbesc20050105gAFNOR 3aFRbISSNc20030523 a384 uhttp://www.ku.lt/smf/sociologija/zurnalas/index.php zContenu : texte intégral des n°s depuis le n° 3/4 de 20001 bno. 1 (2005) -....cParisdMagasins/AnnexeeP 4° 7204 aDEW 301 aGEO RA7.1401279nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000230015421000230017732600150020060600290021571000370024480100210028185601050030285601080040785601080051585601080062395500660073195700720079797200090086999100180087899200330089699200120092903879795X000004387120130319051856.01 a0038-0385 aFNSP228794 a0000043871 a19900101a19679999 ba0 aeng aGB aaga 10aSociology (Oxford) aLondoncBSAd1967- aBimestriel aSociologiexPériodiques02aBritish Sociological Association 3aFRbCCN0038-03854 uhttps://acces-distant.sciences-po.fr/fork?http://www-fr.ebsco.com/online/direct.asp?JournalID=103296 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1967) -....cParisdMagasins/AnnexeeP 8° 23671 bvol. 1 (1967) -vol. 10 (1987)cParisdMagasins/AnnexeeP Index 0634 aZSAB aexempb200910 aGEO RS Sans aspect régional aDEW 30101208nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210003300180326001600213430005300229606004000282710006000322856009000382856010800472856012800580856010800708955006700816972000900883992001400892040305740000009686420130319051856.01 a1069-4404 aFNSP422099 a0000096864 a19900101a19939999 ba0 aeng aUS aaha 10aSociology of religion aWashington, D.C.cASRd1993- aTrimestriel 1aSociological analysis (0038-0210) < P 8° 2754 > aSociologie religieusexPériodiques02aAssociation for the Sociology of Religionc(Etats-Unis)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/10694404.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=SOG&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 54 no. 1 (1993) -....cParisdMagasins/AnnexeeP 8° 2754 aZPAY aDEW 20-2900757nas 2200265 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181060006001251100016001312000024001472100030001713260014002016060029002156070027002448300096002718560026003679550062003939920024004559920012004790000071543000007154320130319051856.0 aFNSP328035 a0000071543 a19900101a18879999 ba0 afre aBE ar acaa 03aLe Soir (Bruxelles) aBruxellescLe Soird1887- aQuotidien aActualitéxPériodiques aBelgiquexPériodiques anumérisé par les Archives de la Ville de Bruxelles mais en intranet pour raisons de droit4 uhttp://www.lesoir.be/1 bLe mois en courscParisdSalle de référenceeP F° 1108 aGEO RA4.04 Belgique aDEW 05001023nls 2200337 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000039001642100005002032300005002083000053002133260011002663360056002773370018003336060032003516060030003836060047004136060044004607100096005048010013006008560067006139550005006800000432324000043232420130319051856.0 a1265-4876 a0000432324 a a19949999k fre 01 ba0 afre aFR az aak z  adr 10aSolarisb[Ressource électronique] a a aTexte intégral de la revue depuis le n°1, 1994 aannuel aDonnées textuelles accessibles uniquement en ligne aFichiers HTML aCommunicationxPériodiques aInformationxPériodiques aTechnologie de l'informationxPériodiques aSciences de l'informationxPériodiques02aGroupe Interuniversitaire de Recherches en Sciences de l'Information et de la Documentation 0aFRbFNSP4 uhttp://biblio-fr.info.unicaen.fr/bnum/jelec/Solaris/index.html1 r01038cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200006200180210006600242512000800308512003900316610003400355710006000389801003000449801002300479802000700502856002700509856004200536955005900578992001200637992001600649992002300665116930454000113173520130319051857.0 a1886-1598 aissn18861598 a0001131735 a20070807a20029999uuuy0frey0103 ba0 aspa aES ay  ar aaku uu 10aSondeo de opinión del Observatorio Político Autonómico aBarcelonacInstitut de Ciències Polítiques i Socialsd2002-10aOPA10aObservatorio Político Autonómico0 a* Sondages d'opinionyEspagne02aInstitut de ciències politiques i socialsc(Barcelone) 3aFRbAbesc20080201gAFNOR 3aFRbISSNc20070808 a0u4 uhttp://www.opa151.com/4 zAccés au texte intégral depuis 20011 bno. 5 (2006) -....cParisdMagasins/AnnexeeP 8° 7012 aDEW 303 aDEW 360-369 aGEO RA6.02 Espagne00903nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000026001642100026001903260011002164300028002276070033002557100040002888010013003288560047003418560042003889550074004309720009005049910018005139920030005319920016005610000367234000036723420130319051858.0 a1022-9515 a0000367234 a a19949999k fre ba0 aeng aZA a 0  ar aak z 0 10aSouth Africa yearbook aPretoriacGCISd1994- aAnnuel 1tSouth Africax0302-0681 aAfrique du SudxPériodiques02aSouth African Communication Service 0aFRbFNSP4 uhttp://www.info.gov.za/documents/index.htm4 zPublication en ligne depuis 1998/19991 b(1995) -(1999) ; (2004/2005)-....cParisdMagasins/AnnexeeP 8° 3618 aZGRA aexempb201108 aGEO RF3.19 Afrique du Sud aDEW 966-96901490cas0 2200409 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164105001800171110001600189200010500205210007400310326001800384436004600402436003800448517001000486606004400496607003300540607005700573710005300630801003000683802000700713856010900720856010800829955007100937972000901008992003001017992002101047992001201068037403958000120312320130319051858.01 a1022-0461 a040190129 accn1022-0461 accn7132/1101 a0001203123 a19941025a19939999 0frey50 ba0 aeng aZA ay  aai 14aThe South African journal of international affairsfSouth African Institute of International Affairs aJohannesburgcSouth African Institute of International Affairsd1993- a3 n°s par an 1tInternational affairs bulletinx0258-7270 1tSouthern Africa recordx0377-544510aSAJIA aRelations internationalesxPériodiques aAfrique du SudxPériodiques aAfrique du SudxRelations extérieuresxPériodiques02aSouth African Institute of International Affairs 3aFRbAbesc20081202gAFNOR a004 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t792221889db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 16 no. 1 (avr-2009) -....cParisdMagasins/AnnexeeP 8° 7153 aZSAB aGEO RF3.19 Afrique du Sud aGEO RQ Universel aDEW 32701060nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004200154210003700196326002300233326002900256530004200285606002600327606005200353712006800405801002100473856003700494856003600531955008600567972000900653991001800662992003000680992001200710039300625000004383620130319051858.01 a0258-7203 aFNSP228729 a0000043836 a19900101a19859999 ba0 aeng aZA aaia 10aSouth African journal on human rights aBraamfonteincRavan Pressd1985- aTrimestrielb1995- a3 n°s par anb1985-199400aSouth African journal on human rights aDroityAfrique du Sud aDroits de l'hommeyAfrique du SudxPériodiques02aCentre for Applied Legal Sudiesc(Johannesburg, Afrique du Sud) 3aFRbCCN0258-72034 uhttp://www.law.wits.ac.za/sajhr/ zAccès libre au texte intégral1 bvol. 1 no. 1 (mai-1985) -vol. 18 no. 4 (2002)cParisdMagasins/AnnexeeP 8° 4935 aZSAB aexempb201003 aGEO RF3.19 Afrique du Sud aDEW 32301189nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210002700177326001500204430003900219607003000258676000800288710004700296856010800343856010800451955006600559955007000625957009300695972000900788991001800797992002400815992001200839037407864000013757820130319051858.01 a0971-5231 aFNSP549101 a0000137578 a19941006a19949999 ba0 aeng aIN aaja 10aSouth Asian survey aNew DelhicSaged1994- aSemestriel 1tSouth Asia JournalxISSN 0970-4868 aAsie du SudxPériodiques a95002aIndian Council for South Asian Cooperation uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9501 bvol. 1 no. 1 (jan-1994) -....cParisdMagasins/AnnexeeP 8° 60701 bvol. 1 (1994) -vol. 4 (1997)zCet index se trouve dans le vol.4, n° 2, 1997 de la revue aZSAB aexempb201207 aGEO RI1 Asie du Sud aDEW 95401429nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154210002400192326002300216326002900239517004000268607003200308856008300340856007200423856012800495856010800623856010900731856010800840955006600948972000901014991001801023992002601041992001201067036749036000021338320140108102956.01 a1360-8746 aFNSP770820 a0000213383 a19900101a19969999 ba0 aeng aGB aaha 10aSouth European society & politics aLondoncCassd1996- aTrimestrielb2006- a3 n°s par anb1996-200510aSouth European society and politics aEurope du SudxPériodiques4 uhttp://taylorandfrancis.metapress.com/openurl.asp?genre=journal&issn=1360-8746 zContenu : sommaires et résumés depuis le vol. 6, n°1, été 20014 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=LUS&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713636479db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1996) -....cParisdMagasins/AnnexeeP 8° 6327 aZCAD aexempb201211 aGEO RA6 Europe du Sud aDEW 94001177nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210004300200326001600243436004100259436007000300607003400370710006200404801002100466856012800487856010800615955008200723991001800805992002800823992001200851039374777000004422220130319051859.01 a0303-8246 aFNSP229606 a0000044222 a19900101a19739999 ba0 aeng aSG aaha 10aSoutheast Asian journal of social science aSingaporecTimes Academic Pressd1973- aTrimestriel 1aSoutheast asian journal of sociology 1tSoutheast asian journal of economic development and social change aAsie du Sud-EstxPériodiques02aNational University of SingaporebDepartment of Sociology 3aFRbCCN0303-82464 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=C5J&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1973) -vol. 27 no. 2 (1999)cParisdMagasins/AnnexeeP 8° 3658 aexempb201001 aGEO RI2 Asie du Sud-Est aDEW 95901082nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000300015421000600018432600160024460700600026071000550032071100480037580100210042385600900044485601080053495500830064299100180072599200230074399200140076603649416X000004674620130319051859.01 a0038-4038 aFNSP238289 a0000046746 a19900101c ba0 aeng aUS aahu 10aSouthern economic journal aChapel Hill, N.CcSouthern Economic Associationd1933-? aTrimestriel aEtats-Unis (sud)xConditions économiquesxPériodiques02aSouthern Economic Associationc(Chapel Hill, N.C.)02aUniversity of North Carolina at Chapel Hill 3aFRbCCN0038-40384 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00384038.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 18 no. 1 (1951) -vol. 51 no. 3 (1985)cParisdMagasins/AnnexeeP 8° 1098 aexempb201103 aGEO RC2 Etats-Unis aDEW 330.901467nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200011700154207004700271210005200318210003300370326002700403326002700430326002100457440004000478607002300518607003400541607003500575710002600610801002100636856009000657856010800747955008600855991001800941991000500959992002900964992003200993992002001025992001201045036495352000004402320130319051859.01 a0038-5859 aFNSP229134 a0000044023 a19900101b19491992 ba0 aeng aGB aaga 10aSoviet studiesea quarterly review of the social and economic institutions of the U.S.S.RfUniversity of Glasgow 1avol. 1 no. 1 (1949) - vol. 44 no. 6 (1992) aGlasgowcUniversity of Glasgow Pressd1949-19?? aOxfordcBlackwelld19??-1992 aaBimestrielb1991-1992 aTrimestrielb1950-1990 aSemestrielb1949 1aEurope-Asia studiesxISSN 0966-8136 aURSSxPériodiques aEurope de l'EstxPériodiques aPays socialistesxPériodiques02aUniversity of Glasgow 3aFRbCCN0038-58594 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00385859.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jun-1949) -vol. 44 no. 6 (1992)cParisdMagasins/AnnexeeP 8° 0235 aexempb201101 a aGEO RN2 Pays socialistes aGEO RA2.02 Europe orientale aGEO RA7.01 URSS aDEW 94701015nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210002800173326002500201326002600226517002100252856005700273856005700330856010900387856010800496955006600604972000900670991001800679992001600697036743046000023186620130319051900.01 a1356-2576 aFNSP823421 a0000231866 a19900101a19979999 ba0 aeng aGB aaia 10aSpace & polity aAbingdoncCarfaxd1997- a3 n°s par anb2000- aSemestrielb1997-199910aSpace and polity4 uhttp://www.tandf.co.uk/journals/carfax/13562576.html zContenu : sommaires depuis le vol. 1, n°1, mai 19974 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713446924db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1997) -....cParisdMagasins/AnnexeeP 8° 6366 aZSAB aexempb201301 aDEW 320-32102392cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200003000180210005600210440005000266530003000316531001800346606003800364801003000402801001300432802000700445856018600452856018600638856018700824856018601011856019101197856018601388856019101574856018601765955005501951038085534000112006120130319051901.0 a1105-039X accn1105-039X a0001120061 a19891110b18531857 0frey0103 ba0 afre aGR ay  ar aay 13aLe Spectateur de l'Orient aAthènescC. Nikolaïdes de Philadelphied1853-18.. 1tBulletin du Spectateur de l'Orientx1105-125603aLe Spectateur de l'Orient 0aSpect. Orient aOrient, Question d'xPériodiques 3aFRbAbesc20030729gAFNOR 0aFRbFNSP a234 uhttp://books.google.fr/books?id=vudMAAAAcAAJ&dq=editions%3A9PRp42nLwPAC&hl=fr&pg=PP5#v=onepage&q&f=falsezAccès libre au texte intégral. Tome 1 (1853) numérisé sur Google Livres4 uhttp://books.google.fr/books?id=k-dMAAAAcAAJ&dq=editions%3A9PRp42nLwPAC&hl=fr&pg=PP5#v=onepage&q&f=falsezAccès libre au texte intégral. Tome 2 (1854) numérisé sur Google Livres4 uhttp://books.google.fr/books?id=YedMAAAAcAAJ&dq=editions%3A9PRp42nLwPAC&hl=fr&pg=PA67#v=onepage&q&f=falsezAccès libre au texte intégral. Tome 3 (1854) numérisé sur Google Livres4 uhttp://books.google.fr/books?id=5uZMAAAAcAAJ&dq=editions%3A9PRp42nLwPAC&hl=fr&pg=PP5#v=onepage&q&f=falsezAccès libre au texte intégral. Tome 4 (1855) numérisé sur Google Livres4 uhttp://books.google.fr/books?id=GJJMAAAAcAAJ&dq=editions%3A9PRp42nLwPAC&hl=fr&pg=PP7#v=onepage&q&f=falsezAccès libre au texte intégral. Tome 5 (1855-1856) numérisé sur Google Livres4 uhttp://books.google.fr/books?id=OedMAAAAcAAJ&dq=editions%3A9PRp42nLwPAC&hl=fr&pg=PP5#v=onepage&q&f=falsezAccès libre au texte intégral. Tome 6 (1856) numérisé sur Google Livres4 uhttp://books.google.fr/books?id=RZJMAAAAcAAJ&dq=editions%3A9PRp42nLwPAC&hl=fr&pg=PP7#v=onepage&q&f=falsezAccès libre au texte intégral. Tome 7 (1856-1857) numérisé sur Google Livres4 uhttp://books.google.fr/books?id=bJJMAAAAcAAJ&dq=editions%3A9PRp42nLwPAC&hl=fr&pg=PR3#v=onepage&q&f=falsezAccès libre au texte intégral. Tome 8 (1857) numérisé sur Google Livres1 b(1855) -(1857)cParisdMagasins/Annexee8°006.41002050cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200011100197210002400308300007100332453001500403517003200418530009200450607002200542676000800564700003600572801003000608801002300638801001300661802000700674856036500681856026801046856028201314955006801596039181766000112006220130422130202.0 a2018-8404 accn7140/4902 aissn20188404 a0001120062 a19961107b18141815m y0frey0103 ba0 afre aFR ay  ar aafu uu 13aLe Spectateur ou Variétés historiques, littéraires, critiques, politiques et moralesfpar M. Malte-Brun aPariscLibr. Poulet aContinué par la suite fermée "Minerve ou variétés historiques" 1tSpettatore13aLe Spectateur (Paris. 1814)03aLe Spectateur ou Variétés historiques, littéraires, critiques, politiques et morales aFrancez1814-1815 a944 1aMalte-BrunbConradf(1775-1826) 3aFRbAbesc20071004gAFNOR 3aFRbISSNc20071003 0aFRbFNSP a004 uhttp://books.google.fr/books?id=Wljm5HYKZagC&printsec=frontcover&dq=%22Le+Spectateur+ou+Vari%C3%A9t%C3%A9s+historiques,+litt%C3%A9raires,+critiques,+politiques+et+morales%22&hl=fr&ei=iem3ToqAHJPA8QOS15SFBQ&sa=X&oi=book_result&ct=book-preview-link&resnum=1&ved=0CC8QuwUwAA#v=onepage&q&f=falsezAccès libre au texte intégral. Numéros 1 à 10 sur Google Livres4 uhttp://books.google.fr/books?id=CsnrGd5Vb_4C&pg=PA241&dq=editions:p6MlMezHn6oC&hl=fr&ei=y-u3TvTnMozb8gPN5PjuBA&sa=X&oi=book_result&ct=book-thumbnail&resnum=6&ved=0CEMQ6wEwBQ#v=onepage&q&f=falsezAccès libre au texte intégral. Numéros 11 à 20 sur Google Livres4 uhttp://books.google.fr/books?id=CE-rndJN6I0C&printsec=frontcover&dq=editions:p6MlMezHn6oC&hl=fr&ei=H-u3TtStJ9D88QPo9cn9BA&sa=X&oi=book_result&ct=book-preview-link&resnum=2&ved=0CDMQuwUwAQ#v=onepage&q&f=falsezAccès libre au texte intégral. Numéros 21 à 30 sur Google Livres1 bno. 1 (1814) -no. 30 (1814)cParisdMagasins/Annexee8°006.41400943nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000026001552100044001813260017002256060029002426070028002718010021002998560027003208560074003479550071004219550124004929920025006169920012006410000037705000003770520130319051901.01 a0038-7452 aFNSP209588 a0000037705 a19900101a19479999 ba0 ager aDE aa u 14aDer Spiegel (Hamburg) aHamburgcSpiegel-Verlag Augsteind1947- aHebdomadaire aActualitéxPériodiques aAllemagnexPériodiques 3aFRbCCN0038-74524 uhttp://www.spiegel.de/4 zcontenu : sommaire et articles en texte intégral du dernier numéro.1 bLes 6 derniers moiscParisd27, Salle Rez-de-chausséeeP 4° 10541 bvol. 7 (no. 2 (jan-1953) -vol. 7 no. 24 (jun-1953) ; vol. 15 no. 1 (jan-1961) -....cParisdMagasins/AnnexeeP 4° 1054 aGEO RA5.01 Allemagne aDEW 05001127nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001400154210003900168326001600207421003500223606005100258607004400309801002100353856007600374856009900450955006500549957012300614972000900737991001800746992002500764992001200789038801086000004425220130319051901.01 a0038-884X aFNSP229654 a0000044252 a19900101a19629999 ba0 ager aDE aaha 14aDer Staat aBerlincDuncker und Humblotd1962- aTrimestriel 1aDer Staat. Beiheft (0720-6828) aDroit constitutionnelyAllemagnexPériodiques aAllemagnexAdministrationxPériodiques 3aFRbCCN0038-884X4 uhttp://www.duncker-humblot.de/?mnu=1000&cmd=1002&tid=1&pid=2#per_issues zContenu : Sommaires depuis 2003, Résumés et certains articles en texte intégral depuis 20081 bvol.1 no. 1 (1962) -....cParisdMagasins/AnnexeeP 8° 22501 bvol. 1 (1962) -vol. 35 (1996)cParisdMagasins/AnnexeeP Index 0822zCorrespond au n°13 spécial : Der Staat. Beiheft aZCAD aexempb200904 aGEO RA5.01 Allemagne aDEW 34201371nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154207004700200210006200247326001600309440003300325530004700358606003900405606006400444710003500508801002100543856005900564856020600623955008200829957005700911991001800968992001400986992002101000038728281000000570520130319051902.01 a0020-8027 aFNSP108892 a0000005705 a19900323b19501998 f ba0 aeng aUS aahu 10aStaff papersfInternational Monetary Fund 1avol. 1 no. 1 (1950) - vol. 45 no. 4 (1998) aWashington, D.C.cInternational Monetary Fundd1950- 1998 aTrimestriel 1tIMF Staff papers,x1020-763510aStaff papers - International Monetary Fund aPolitique monétairexPériodiques aAide économiquexCoopération internationalexPériodiques02aFonds monétaire international 3aFRbCCN0020-80274 uhttp://www.imf.org/external/pubs/ft/staffp/archive.htm4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=111793zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1950) -vol. 45 no. 4 (1998)cParisdMagasins/AnnexeeP 8° 04381 b(1950) -(1980)cParisdMagasins/AnnexeeP Index 0155 aexempb201111 aDEW 338.9 aGEO RQ Universel01197nls 2200349 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000051001642100048002152300005002633000058002683260015003263300056003413370071003976060036004688010013005048560090005178560108006078560035007158560057007509550005008079920023008129920012008350000801861000080186120130319051902.01 a0038-9765 a0000801861 a a19489999k fre 01 ba0 aeng aUS az aag z  adr 10aStanford law reviewb[Ressource électronique] aStanford, CalifcStanford law reviewd1948- a aTexte intégral depuis le vol. 1, n°1, November 1948 aBimestriel aDonnées textuelles accessibles uniquement en ligne aTéléchargement de fichiers TIFF, PDF (recommandé) et PostScript aDroityEtats-UnisxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00389765.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://lawreview.stanford.edu/ zContenu : sommaires en ligne depuis le vol. 54, n°11 r aGEO RC2 Etats-Unis aDEW 34901058nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154210005900192326002300251326002900274606004900303606005900352710005500411856005800466856006400524955012000588972000900708992002300717992001600740039102009000006071620130402120115.01 a0160-323X aFNSP278293 a0000060716 a19900101a19769999 ba0 aeng aUS aaia 10aState and local government review aAthens, GacCarl Vinson Institute of Governmentd1976- aTrimestrielb2013- a3 n°s par anb1976-2012 aPolitique publiqueyEtats-UnisxPériodiques aAdministration localeyEtats-UnisxEtatsxPériodiques02aCarl Vinson Institute of Governmentc(Athens, Ga.)4 uhttp://www.cviog.uga.edu/publications/slgr/issues.php zContenu : accès aux sommaires depuis le Vol.25, n°1, 19931 bvol. 20 no. 3 (aut-1988) -vol. 37 no. 3 (2005) ; vol. 43 no. 1 (avr-2011) -....cParisdMagasins/AnnexeeP 4° 6088 aZSAB aGEO RC2 Etats-Unis aDEW 350-35401187nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000201001502100039003512300024003903260011004146060044004256060071004697100081005407110068006218010013006898560080007028560053007829550005008359920021008409920012008610001239018000123901820130319051903.0 a0001239018 a a20109999k fre 01 ba0 aeng aFR ar aak z  adr 14aThe State of Environmental migrationb[Ressource électronique] / Institut du Développement Durable et des Relations Internationales (IDDRI) /Organisation Internationale pour les migrations (OMI) aPariscIddriaGenève:cOMId2010- aRevue électronique aAnnuel aEmigration et immigrationxPériodiques aEmigration et immigrationxAspect de l'environnementxPériodiques02aInstitut du développement durable et des relations internationalesc(Paris)02aOrganisation internationale pour les migrations (OMI)c(Suisse) 0aFRbFNSP4 uhttp://www.iddri.org/Publications/The-State-of-Environmental-Migration-20104 zContenu : texte intégral du rapport depuis 20101 r aGEO RQ Universel aDEW 32501070nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004500163210002800208326001100236451003700247606003200284606006700316676000800383710002500391801001300416856003000429856004900459955006200508955007800570972000900648991001800657992002100675992001200696039980707000061558820130319051903.01 a0887-364X a0000615588 a a19849999 fre 01 ba0 aeng aUS a 0  ar aak z 0 10aState of the worldfWorldwatch Institute aNew-YorkcNortond1984- aAnnuel 1tL'Etat de la planètex1157-7177 aEnvironnementxPériodiques aPolitique de l'environnementxAspect économiquexPériodiques a33302aWorldwatch Institute 0aFRbFNSP4 uhttp://www.worldwatch.org zContenu : résumés depuis le volume 1, 19841 bLa dernière annéecParisd27, Salle 1er étageeDEW 3331 b(1985)-(1986) ; (1988) ; (2004) -....cParisdMagasins/AnnexeeP 8° 4872 aZPAY aexempb201209 aGEO RQ Universel aDEW 33301145nas0 2200349 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109106000600127110001600133200007900149207001200228210005500240300007200295301004300367326001100410517005800421606002900479606003600508676001000544710002600554801003000580856008500610955005400695972000900749992002100758992001600779127660577000115276020130528122628.0 a0001152760 a20080925a20069999k y0frey0103 ba0 aeng aGB ay 0  ar aaka 0 10aState of the World's minoritiesfMinority Rights Group International (MRG) 0a(2006)- aLondoncMinority Rights Group Internationald2006- a2012, dernière éd. papier voir en suite en version électronique. aDemande de numérotation ISSN en cours aAnnuel10aState of the World's minorities and indigenous People aMinoritésxPériodiques aDroits de l'hommexPériodiques a305.802aMinority Rights Group 3aFRbAbesc20080925gAFNOR4 uhttp://www.minorityrights.org/zAccès au texte intégral du rapport depuis 20061 b(2007)-(2012)cParisdMagasins/AnnexeeP 8° 7051 aZPAY aGEO RQ Universel aDEW 305-30600817nls 2200265 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200010600124210005500230230002400285326001100309606002900320606003600349710002600385801001300411856008500424955000500509992002100514992001600535000124484020130528114037.0 a a20069999k fre 01 ba0 aeng aGB ar aak z  adr 10aState of the World's minoritiesb[Ressource électronique]fMinority Rights Group International (MRG) aLondoncMinority Rights Group Internationald2006- arevue électronique aAnnuel02aMinoritésxPériodiques02aDroits de l'hommexPériodiques02aMinority Rights Group 0aFRbFNSP4 uhttp://www.minorityrights.org/zAccès au texte intégral du rapport depuis 20061 r aGEO RQ Universel aDEW 305-30601153cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200011300174207003300287210005600320326001600376606005800392606005800450710007800508801003000586801002300616802000700639856003200646856004400678955006900722992001200791992001200803058777601000111415420130319051903.01 a1532-4400 aissn15324400 a0001114154 a20010521a20019999k y1frey0103 ba0 aeng aUS ay 0  aaha 0uu 10aState politics & policy quarterlyfAmerican Political Science Association. State politics and policy section 0aVol. 1, no. 1 (Spring 2001)- aChampaign, ILcUniversity of Illinois Pressdc2001- aTrimestriel aSociologie politiqueyEtats-UnisxEtatsxPériodiques aPratiques politiquesyEtats-UnisxEtatsxPériodiques02aAmerican Political Science AssociationbState Politics and Policy Section 3aFRbAbesc20060105gAFNOR 3aFRbISSNc20010521 a014 uhttp://sppq.press.uiuc.edu/ zContient: sommaire et résumé des n°s1 bvol.6 no. 1 (mar-2006) -....cParisdMagasins/AnnexeeP 8° 6984 aDEW 320 aGEO RC201043nas 2200301 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101110001600108200007400124210003600198326001200234517006700246530007200313606002700385606002700412712001800439801002100457830003700478856013200515955005500647972000900702991001800711992001200729039245853000005032820131008173119.01 a0251-7582 a19900101a19479999 f ba0 amul aUS aafu 10aStatement of treaties and international agreements‎fUnited Nations aNew YorkcUnited Nationsd1947- aMensuel10aRelevé des traités et accords internationaux - Nations Unies10aStatement of treaties and international agreements - United Nations aTraitésxPériodiques aTraitésxRépertoires02aNations Unies 3aFRbCCN0251-7582 aenvoyé au CTLES en juillet 20134 uhttp://treaties.un.org/Pages/Publications.aspx?pathpub=Publication/MS/Page1_fr.xmlzAccès libre au texte intégral depuis 19701 b(1985) -(2005)cParisdMagasins/AnnexeeP 4° 0452 aZECH aexempb201304 aDEW 34101114nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210005700185326001100242607003700253712004300290830007600333856025400409955010400663972000900767992002000776992001200796992001600808038857723000008048020130521144611.0 a0073-6155 aFNSP358358 a0000080480 a19900101a00019999 ba0 aeng aIN aaka 10aStatistical abstract India aNew DelhicCentral Statistical Organisationd[19..]- aAnnuel aIndexStatistiquesxPériodiques02aIndebCentral Statistical Organisation a1952/1953-1953/1954 ; 1957/1958 ; 1963/1964 ; 1969---> 1984 , P 4°38234 uhttp://delhi.gov.in/wps/wcm/connect/doit/Delhi+Govt/search+results/?cx=005353914135659445069%3Awt_bv4tf_ja&cof=FORID%3A9&ie=UTF-8&q=statistical+abstract+india&sa=GozAccès au texte intégral des rapports 2007, 2008, 2010 et dernier rapport en ligne1 bConservons les 2 dernières annéescParisdMagasins/AnnexeeP 4° 3823 plus rien à partir de 2008 aZPAY aGEO RI1.13 Inde aDEW 954 aDEW 310-31901042nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000093001502100055002432300028002983260011003266070037003377100043003748010013004178560169004308560088005999550005006879920020006929920012007129920016007240001241172000124117220130319051904.0 a0001241172 a a20079999k fre 01 ba0 aeng aIN ar aak z  adr 10aStatistical abstract Indiab[Ressource électronique]/fCentral Statistical Organisation aNew DelhicCentral Statistical Organisationd2007- aRessource électronique aAnnuel aIndexStatistiquesxPériodiques02aIndebCentral Statistical Organisation 0aFRbFNSP4 uhttp://delhi.gov.in/wps/wcm/connect/doit/Delhi+Govt/search+results/?cx=005353914135659445069%3Awt_bv4tf_ja&cof=FORID%3A9&ie=UTF-8&q=statistical+abstract+india&sa=Go4 zContenu : texte intégral des rapports 2007, 2008, 2010 et dernier rapport en ligne1 r aGEO RI1.13 Inde aDEW 954 aDEW 310-31901087nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003500139210005100174300004100225326001100266430003800277510003600315607004000351710004200391856006000433856006200493955006000555955005600615972000900671991001800680992002300698992001200721992001600733038879417000007825920130425121315.0 a0081-4679 aFNSP352773 a19900101a19499999 ba0 amul aIL aaka 10aStatistical abstract of Israel aJerusalemcCentral Bureau of Statisticsd1949- aPublication en hébreu et en anglais aAnnuel 1aStatistical abstract of Palestine12aŠnatôn statîstî le-Yisra'el aIsraëlxStatistiquesxPériodiques02aIsraëlbCentral Bureau of Statistics4 uhttp://www.cbs.gov.il/reader/archive/archive_e_new.html4 zContenu : texte intégral du rapport en ligne depuis 19961 b(1954/1955) -(1979)cParisdMagasins/AnnexeeCOL8°18221 b(1981) -.(2010)cParisdMagasins/AnnexeeP 8° 5246 aZPAY aexempb201109 aGEO RG2.15 Israël aDEW 956 aDEW 310-31900910nls 2200289 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200010000124210005100224230002400275300004100299326001100340607004000351710004200391801001300433830000800446856011000454955000500564992002300569992001200592992001600604000124339520130522152603.0 a a19969999k fre 01 ba0 amul aIL ar aak z  adr 10aStatistical abstract of Israelb[Ressource électronique]/fIsrael Central Bureau of Statistics aJerusalemcCentral Bureau of Statisticsd1996- aRevue électronique aPublication en hébreu et en anglais aAnnuel aIsraëlxStatistiquesxPériodiques02aIsraëlbCentral Bureau of Statistics 0aFRbFNSP acdj4 uhttp://www.cbs.gov.il/reader/archive/archive_e_new.htmlzAccès au texte intégral du rapport depuis 19961 r aGEO RG2.15 Israël aDEW 956 aDEW 310-31901200nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200004600138210003900184326001100223440005500234607004300289676000800332710003700340801002100377856005900398856006600457955006200523955005500585955018000640972000900820992002900829992001600858038879433000008318020130426094343.01 a0081-4741 aFNSP370808 a0000083180 a19900101a18782012 ba0 aeng aUS10aStatistical abstract of the United States aWashington, D.C.cUSGPOd1878-2012 aAnnuel 1tProquest Statistical abstract of the United States aEtats-UnisxStatistiquesxPériodiques a3170 aEtats-UnisbBureau of the Census 3aFRbCCN0081-47414 uhttp://www.census.gov/compendia/statab/past_years.html zContenu : texte intégral du rapport en ligne partir de 1878.1 bLa dernière annéecParisd27, Salle 1er étageeDEW 3171 b(1980) -(2012)cParisdMagasins/AnnexeeP 8° 52491 b(1883) ; (1887) ; (1890) ; (1895) ; (1899) ; (1900) ; (1904) -(1905) ; (1908) ; (1919) ; (1925) ; (1930) ; (1944) -(1945) ; (1947) -(1979);cParisdMagasins/AnnexeeCOL8°0136 aZPAY aGEO RC Amérique du Nord aDEW 310-31900827nls 2200265 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200010900124210003800233230002400271326001100295607004300306710003700349801001300386830000800399856010400407955000500511992002900516992001600545000124356020130522153355.0 a a20129999k fre 01 ba0 aeng aUS ar aak z  adr 10aStatistical abstract of the United Statesb[Ressource électronique] /fEtats-Unis.bBureau of the Census a;aWashington, D.C.cUSGPOd2012- aRevue électronique aAnnuel aEtats-UnisxStatistiquesxPériodiques02aEtats-UnisbBureau of the Census 0aFRbFNSP acdj4 uhttp://www.census.gov/compendia/statab/past_years.htmlzAccès au texte intégral à partir de 18781 r aGEO RC Amérique du Nord aDEW 310-31901341cas0 2200361 450 001001000000002001100010005001700021020002000038035001500058100004100073101000800114102000700122105001800129106000600147110001600153200006000169207006400229210005600293215001600349300008200365326001100447440008600458517006300544517005200607607003700659712003900696801003000735801001500765801001300780801001300793856004100806955013200847077151208000114786820130319051904.0 aUSbsn 85063935 a0001147868 a20040326b18651930 a0frey0103 ba0 aeng aGB ay 0  ar aakad# 0yy 00aStatistical abstract relating to British India from ... 1a[1st] no. (1840/65); ceased with 40th no. (1895-96/1904-05) aLondoncPrinted by Eyre and Spottiswooded1865-1905 avol.d24 cm a"Vols. for issued in the series of Parliamentary papers as Papers by command" aAnnuel 1tEast India (statistical abstract). Statistical abstract relating to British India10aEast India. Statistical abstract relating to British India10aStatistical abstract for British India from ... aIndexStatistiquesxPériodiques01aGrande-BretagnebIndia Office4070 3aFRbAbesc20080602gAFNOR 0bNcDgAACR2 2bNgAACR2 0aFRbFNSP uhttp://dsal.uchicago.edu/statistics/1 bvol. 1 (1840) -(1865) ; vol. 16 (1871) -vol. 20 (1885) ; vol. 22 (1877) -vol. 32 (1897)cParisdMagasins/AnnexeeCOL8°1628(BI)00995nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003400139210003600173326001100209530003400220607003800254676000800292710002900300856012300329856004900452955006200501955005400563972000900617991001800626992002100644992001600665036433950000010164520130903170900.01 a0081-4792 aFNSP436747 a19900101a19589999 ba0 aeng aJP aaka 10aStatistical handbook of Japan aTokyocStatistics Bureaud1958- aAnnuel00aStatistical handbook of Japan aJaponxStatistiquesxPériodiques a31502aJaponbStatistics Bureau4 uhttp://www.stat.go.jp/english/data/handbook/index.htmzAccés libre au texte intégral de la dernière année en cours4 zContenu : texte intégral du dernier rapport1 bLa dernière annéecParisd27, Salle 1er étageeDEW 3151 b(1972) -.....cParisdMagasins/AnnexeeP 8° 3436 aZGRA aexempb201303 aGEO RI3.22 Japon aDEW 310-31901010nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000042001642100027002064300042002334400037002755300042003126070053003547100088004078010013004958560056005088560039005649550055006039720009006589920029006670000448359000044835920130319051904.0 a0081-4806 a0000448359 a b19972002k a fre ba0 aeng aKR a 0  ar aak z 0 10aStatistical handbook of Koreab(1997) aSéoulbNSOd1997-2002 1tKorea statistical handbookx0256-8055 1tExplore Korea through statistics00aStatistical handbook of Koreab(1997) aCorée (République)xStatistiquesxPériodiques02aCorée (République)bNational Statistical OfficebStatistical Publication Division 0aFRbFNSP4 uhttp://www.nso.go.kr/eng/publications/pa-list.shtml zContenu : sommaire du rapport 20021 b(2000) -(2002)cParisdMagasins/AnnexeeP 8° 6614 aZGRA aGEO RI3.13 Corée du Sud00980nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004200139210003600181326001100217517004100228606005300269676000800322710004300330801002100373856008700394955006200481955005800543955005200601972000900653992001600662038883317000000542620131219142514.0 a0082-8459 aFNSP108242 a19900101a19499999 f ba0 amul aUS aaku 10aStatistical yearbook - United Nations aNew YorkcUnited Nationsd1949- aAnnuel10aAnnuaire statistique - Nations Unies aHistoire économiquexStatistiquesxPériodiques a31002aNations UniesbDivision de statistique 3aFRbCCN0082-84594 uhttp://unstats.un.org/unsd/syb/previous.htmzaccès au texte intégral depuis 20051 bLa dernière annéecParisd27, Salle 1er étageeDEW 3101 b(1948) -(2004);cParisdMagasins/AnnexeeNU 4°00.0511 b(2005) -...cParisdMagasins/AnnexeeP 4° 7236 aZGRA aDEW 310-31901017nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003900139210005300178326001100231530003900242607004300281710004400324856010700368955007200475955008700547972000900634991001800643992002600661992001200687992001600699036434264000008056420140107120311.01 a0857-9067 aFNSP358729 a19900101a19169999 ba0 amul aTH aaka 10aStatistical yearbook [of] Thailand aBangkokcStatistical Information Divisiond1916- aAnnuel aStatistical yearbook [of] Thailand aThaïlandexStatistiquesxPériodiques02aThaïlandebNational Statistical Office4 uhttp://web.nso.go.th/eng/en/pub/pub.htmzAccès libre au texte intégral pour les années 2004 et 20071 bno 32 (1976/1980) -no 48 (2001)cParisdMagasins/AnnexeeP 4° 54941 b(1937/1939) -(1956/1958) ; (1964) -(1974/1975)cParisdMagasins/AnnexeeCOL4°0170 aZGRA aexempb201312 aGEO RI2.16 Thaïlande aDEW 959 aDEW 310-31901453nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200017200154210009100326326001100417430006200428510005300490607005200543607003700595676000800632710008100640856005500721856004200776955006200818955005300880955005800933972000900991992001601000992003501016992001201051992001601063039252035000015721420130319051904.01 a0252-3655 aFNSP609971 a0000157214 a19900101a19739999 f ba0 amul aTH aaka 10aStatistical yearbook for Asia and the PacificdAnnuaire statistique pour l'Asie et le PacifiquefUnited Nations Economic and Social Commission for Asia and the Pacific aBangkokcUnited Nations Economic and Social commission for Asia and the Pacificd1973- aAnnuel 1aStatistical yearbook for Asia and the Far Eastx0085-671110aAnnuaire statistique pour l'Asie et le Pacifique aPacifique (région)xStatistiquesxPériodiques aAsiexStatistiquesxPériodiques a31502aNations UniesbCommission économique et sociale pour l'Asie et le Pacifique4 uhttp://www.unescap.org/stat/data/syb2011/index.asp zAccés au texte intégral depuis 20071 bLa dernière annéecParisd27, Salle 1er étageeDEW 3151 b(2011) -....cParisdMagasins/AnnexeeP 4° 73271 b(1973) -(2009)cParisdMagasins/AnnexeeNU 4° 00.805 aZGRA aGEO RH Asie aGEO RJ Océanie, Pacifique Sud aDEW 950 aDEW 310-31900892nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200006300163210003700226430005100263607004000314710003900354801001300393856004400406856003700450955005500487972000900542992002300551992001600574059239387000068050020130319051904.01 a1649-1408 a0000680500 a a20019999 fre 01 ba0 aeng aIE a 0  ar aak z 0 10aStatistical yearbook of IrelandfCentral Statistics Office aDublincStationery Officed2001- 1tStatistical abstract (Dublin, 1986)x0790-8970 aIrlandexStatistiquesxPériodiques02aIrlandebCentral Statistics Office 0aFRbFNSP4 uhttp://www.cso.ie/releasespublications/ zAccès libre au texte intégral.1 b(2002) -(2007)cParisdMagasins/annexeeP 8° 6775 aZPAY aGEO RA4.01 Irlande aDEW 360-36301011nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210002400198326001100222607004100233710004900274856006400323856003600387955006400423955005500487955011800542972000900660992002400669992001600693039373584000016388120130319051904.01 a0303-6448 aFNSP627155 a0000163881 a19900101a00019999 ba0 aeng aNL aaka 10aStatistical yearbook of the Netherlands aLa HayecSDUd0001- aAnnuel aPays-BasxStatistiquesxPériodiques02aPays-BasbCentraal bureau voor de statistiek4 uhttp://www.cbs.nl/en-GB/menu/publicaties/boeken/default.htm zAccès libre au texte intégral1 b(2000) ; (2004) -(2007)cParisdMagasins/AnnexeeP 8° 67661 b(1994) -(1999)cParisdMagasins/AnnexeeP 4° 55301 b(1943/1946) -(1947/1950) ; (1961/1962) -(1963/1964) ; (1971) ; (1975) -(1979)cParisdMagasins/AnnexeeCOL4°0267 aZPAY aGEO RA4.03 Pays-Bas aDEW 310-31901111nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005000139210005100189300008100240326001100321530005000332607003900382710005900421801002100480856018800501955005500689972000900744991001800753992002200771992001600793039286096000009044020131120100705.01 a0256-7857 aFNSP398197 a19900101a19759999 ba0 aeng aTW aaku 10aStatistical yearbook of the Republic of China aTaipeicBudget, Accounting & Statisticsd1975- a2009, dernière édition papier, à partir de 2010 en version électronique. aAnnuel00aStatistical yearbook of the Republic of China aTaiwanxStatistiquesxPériodiques02aChine (République)bBudget, Accounting and Statistics 3aFRbCCN0256-78574 uhttp://169.237.158.143/dvn/dv/ssds/faces/study/StudyPage.xhtml?globalId=hdl:IGA/10678&tab=files&studyListingIndex=0_15831e5259d251ecb92b541b3941zAccès au texte intégral depuis 20071 b(1975) -(2009)cParisdMagasins/AnnexeeP 4° 3960 aZGRA aexempb201311 aGEO RI3.02 Taiwan aDEW 310-31900885nls 2200253 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200013300124210005100257230000500308300002400313326001100337607003900348801001300387856018800400955000500588992002200593992001600615000124489220130529154828.0 a a20079999k fre 01 ba0 aeng aTW ar aak z  adr 10aStatistical yearbook of the Republic of Chinab[Ressource électronique]fChine (République). Budget, Accounting and Statistics aTaipeicBudget, Accounting & Statisticsd2007- a aRevue électronique aAnnuel aTaiwanxStatistiquesxPériodiques 0aFRbFNSP4 uhttp://169.237.158.143/dvn/dv/ssds/faces/study/StudyPage.xhtml?globalId=hdl:IGA/10678&tab=files&studyListingIndex=0_15831e5259d251ecb92b541b3941zAccès au texte intégral depuis 20071 r aGEO RI3.02 Taiwan aDEW 310-31901053nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000053001502100045002033000117002483260016003653360058003813370063004394300056005024520039005586060030005978010013006278560090006409550005007309920016007350000491582000049158220130319051904.0 a0000491582 a a19619999k fre 01 ba0 aeng aGB az aah z  adr 10aStatistician (London)b[Ressource électronique] aLondoncRoyal Statistical Societyd1961- aAccès au texte intégral (réservé aux sites de Sciences .Po) à partir de 1962 jusqu'aux 4 dernières années aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tIncorporated statistician [Ressource électronique] 1tStatistician (London)x(0039-0526) aStatistiquexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00390526.html1 r aDEW 310-31900974nas 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000044001502100051001943260011002454300038002566010062002946060093003568010013004498560055004629550085005179720009006029920016006119920014006279920031006410000286122000028612220130319051904.0 a0000286122 a a19989999k fre ba0 aeng aGB a 0  ar aak z 0 10aStatistics on international development aLondoncGovernement Statistical Serviced1998- aAnnuel 1tBritish aid statisticsx0068-121001aGrande-BretagnebDepartment for International Development aAide économique britanniqueyPays en voie de développementxStatistiquesxPériodiques 0aFRbFNSP4 uhttp://www.dfid.gov.uk/public/what/what_frame.html1 b(1994/1995-1998/1999) -(1995/1996-1999/2000)cParisdMagasins/AnnexeeP 4° 6826 aZPAY aDew 310-319 aDew 338.9 aGEO RA4.02 Grande-Bretagne01111cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200003400180207001800214210002900232440005100261530004300312710004500355801003000400801003000430856014500460955008900605991001900694991008400713036815748000108077420130319051904.01 a1962-5731 accn0116/5119 a0001080774 a19830101b18861960 y0frey0103 ba0 afre aFR ay 0  ar aak 0 10aStatistique agricole annuelle 0a(1885)-(1959) aParisc[s.n.]d1886-1960 1tStatistique agricole ... (Annuaire)x0243-682510aStatistique agricole annuelleb(Paris)02aFrancebMinistère de l'agriculture4070 3aFRbAbesc20070917gAFNOR 3aFRbAbesc20050830gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb328726954/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1885-1906)1 b(1890) -(1897) ; (1911) -(1914) ; (1916) -(1979)cParisdMagasins/AnnexeeCOL4°0042 aPériobTP01 4 anumer0 (complément de gallica : 1890, 1892 à 1897, 1911-1914, 1916 à 1938 ?)01736cas0 2200337 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200006600148210003800214301004600252303004700298440012800345517008100473517009000554517014200644517007700786517013100863530006600994712005701060801003001117856013301147955009901280991001901379039098958000108113820130319051904.0 accn7117/2386 a0001081138 a19900329b18531882k y0frey0103 ba0 afre aFR ar aaka 10aStatistique des prisons et établissements pénitentiaires... aPariscImpr. P. Dupontd1853-1882 aDemande de numérotation ISSN par le CR70 aNotice rev. d'après un vol. publ. en 1878 1tStatistique pénitentiaire pour l'année... Exposé général de la situation des services et des divers établissements...10aStatistique des prisons et établissements pénitentiaires pour l'année ...10aStatistique centrale des prisons et établissements pénitentiaires pour l'année ...10aStatistique centrale de l'administration des prisons, établissements pénitentiaires, colonies publiques et privées des jeunes détenus10aStatistique des prisons et établissements pénitentiaires pour l'année10aStatistique des prisons et établissements pénitentiaires et compte-rendu à M. le ministre de l'intérieur pour l'année ...00aStatistique des prisons et établissements pénitentiaires...02aFrancebMinistère de l'intérieurc(....-1981)4340 3aFRbAbesc20060921gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb41286428j/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 b(1853) -(1871) ; (1874) ; (1879) ; (1880) ; (1884) -(1888)cParisdMagasins/AnnexeeCOL4°0436 aPériobTP01 401997cas0 2200409 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200004600148210004300194301004200237305003200279311012500311423004100436441004000477441005000517441004200567441004000609441024000649441021000889530004801099607003501147676001001182712003301192712005201225801003001277856016301307955008901470991001701559991001101576050927140000107558020130319051904.0 accn7210/2012 a0001075580 a20000713b18 1899 frey0103 ba0 afre aFR ar aak 10aStatistiques coloniales pour l' année... aMeluncImpr. administratived18..-1899 aDEMANDE DE NUMEROTATION ISSN EN COURS aNon publié de 1891 à 1898 aLes statistiques coloniales des années 1892-1893-1894-1895 sont publiées dans : "Résumé des statistiques coloniales" 1tRésumé des statistiques coloniales 1tStatistiques coloniales... Commerce 1tStatistiques coloniales... Industrie minière 1tStatistiques coloniales... Navigation 1tStatistiques coloniales... Finances 1tStatistiques de la population dans les colonies françaises pour l'année...bTexte impriméosuivies du relevé de la superficie des colonies françaisesfMinistère des colonies, Office colonialcMelunnImp. administratived1909-1923 1tStatistiques des chemins de fer des colonies françaises jusqu'à l'année...bTexte impriméfOffice colonial, Ministère des coloniescParisnBureau de vente des publications coloniales officiellesd191100aStatistiques coloniales pour les années... aFrancexColoniesxStatistiques a325.301aFrancebOffice colonial434001aFrancebMinistère de la marine et des colonies 3aFRbAbesc20060516gAFNOR4 uhttp://archive.org/stream/statistiquescol00unkngoog#page/n2/mode/2upzAccès libre au texte intégral. Année 1904 (Commerce) numérisée sur Internet Archive1 b(1884) -(1889) ; (1897) -(1900) ; (1902) -(1905)cParisdMagasins/AnnexeeCOL8°0637 aPériobTP01 anumer001433cas0 2200409 450 00100100000000200110001000500170002101100140003803500170005203500150006910000410008410100080012510200070013310500180014010600060015811000160016420000780018020700250025821000240028332600110030748800660031851700640038451700500044860100520049860600440055060600410059467600130063571000380064880100300068680100230071685601160073995500670085595500520092299200210097499200160099599200120101107782167X000113793520131008150025.0 a1819-8147 aissn18198147 a0001137935 a20040504a20009999u y0frey0103 ba0 afre aZZ ay  ar aak 10aStatistiques du commerce internationalfOrganisation mondiale du commerce 0aRapport annuel 2000- aGenèvecOMCd2000- aAnnuel 1tRapport annuel - Organisation mondiale du commercex1020-500410aOMC. Rapport annuel. Statistiques du commerce international10aOMC... Statistiques du commerce international02aOrganisation mondiale du commercexPériodiques aStatistiques commercialesxPériodiques aCommerce internationalxPériodiques a382v22a02aOrganisation mondiale du commerce 3aFRbAbesc20080415gAFNOR 3aFRbISSNc200804014 uhttp://www.wto.org/french/res_f/statis_f/its2012_f/its12_toc_f.htmzAccès libre au texte intégral depuis 20011 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3371 b(2000) -...cParisdMagasins/AnnexeeP 4° 6733 aGEO RQ Universel aDEW 310-319 aDEW 33702127cas0 2200457 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035002500100035002000125035001500145100004100160101000800201102000700209105001800216106000600234110001600240200011400256210004700370517003100417517013100448517015800579530006100737607002900798607002900827710002000856801003000876801002300906801003000929801002900959802000700988830000900995856056201004945001501566955005501581991001501636991001801651039174212000112642120130319051904.0 a2021-1244 a119095505 accn7139/6225 aissn20211244 aFRBNF328727790000001 aPR049802590001J a0001126421 a19960723b190 190 0frey0103 ba0 afre aFR ay  ar aak 10aStatistiques généralesiSituation de la colonie au...fGouvernement général de Madagascar et dépendances aMeluncImpr. administratived[190.]-[190.]10aStatistiques de Madagascar10aStatistiques généraleseSituation de la Colonie au... Population, administration, agriculture, élevage, industrie, commerce10aStatistiques généraleseSituation de la Colonie au... Population, administration, justice, enseignement, agriculture, industrie, commerce et navigation10aStatistiques générales. Situation de la colonie au ... aMadagascarxStatistiques aMadagascarxPériodiques02aMadagascar4070 3aFRbAbesc20080911gAFNOR 3aFRbISSNc20080107 3aFRbAbesc20071112gAFNOR 0aFRbBNFc19970701gAFNOR a00 asdy04 uhttp://gallica.bnf.fr/Search?idArk=&n=15&p=1&lang=FR&adva=1&adv=1&reset=&urlReferer=%2Fadvancedsearch%3Flang%3DFR&enreg=&tri=&submit1=Lancer+la+recherche&catsel1=f_title&cat1=Statistiques+g%C3%A9n%C3%A9rales&ope2=MUST&catsel2=f_creator&cat2=madagascar&ope3=MUST&catsel3=f_tdm&cat3=&date=daTo&daFr=&daTo=&sel_provenance_Part=toutPartenaires&sel_provenance_Edist=toutSNE&sel_source=toutSources&dateMiseEnLigne=indexDateFrom&firstIndexationDateDebut=&firstIndexationDateFin=&tri=zAccès libre au texte intégral. Périodique numérisé sur Gallica (1905-1908) bCOL.F.01891 b(1904) -(1907)cParisdMagasins/AnnexeeCOL.F.0189 aPériobTZ anumer0 (1904)01477cas0 2200409 450 00100100000000200110001000500170002101100140003803500170005203500170006903500150008610000410010110100080014210200070015010500180015710600060017511000160018120000670019720700130026421000460027732600110032342300590033443000720039351000650046551700810053060700420061167600080065371000390066180100300070080100230073080200070075385601510076095500630091195500520097499200160102699200250104204006350X000119868620130827111146.0 a0943-5743 accn0943-5743 aissn09435743 a0001198686 a19930802a19929999k a0frey50 ba0 ager aDE ay 0  ar azka 0 10aStatistisches Jahrbuch ... für die Bundesrepublik Deutschland 1a1(1992)- aWiesbadencStatistisches Bundesamtd1992- aAnnuel 1tStatistisches Jahrbuch ... für das Auslandx0938-1376 1tStatistisches Jahrbuch ... für das vereinte Deutschlandx0941-377410aStatistical yearbook ... for the Federal Republic of Germany10aDeutschland : Statistisches Jahrbuch ... für die Bundesrepublik Deutschland aAllemagnexStatistiquesxPériodiques a31402aAllemagnebStatistisches Bundesamt 3aFRbAbesc20091021gAFNOR 3aFRbISSNc20000630 a064 uhttps://www.destatis.de/DE/Publikationen/StatistischesJahrbuch/StatistischesJahrbuch_AeltereAusgaben.htmlzTexte intégral ds rapports depuis 20061 bLa dernière annéecParisd27, Salle 1er étage:eDEW 3141 b(1992) -...cParisdMagasins/AnnexeeP 4° 5521 aDEW 310-319 aGEO RA5.01 Allemagne01179nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004100139210004100180326001100221452006500232510004600297510005100343530005600394607004100450710002400491856012400515955005700639955009000696972000900786991001800795992002400813992001600837038849143000008259220140107120958.01 a0070-3567 aFNSP368386 a19900101a18969999 ba0 amul aNL aaka 10aStatistisk arbogfDanmarks Statistik aKobenhavncDanmarks Statistikd1896- aAnnuel 1tStatistisk årbog (Danmarks Statistik. Online)‎x1601-104X10aStatistical yearbook - Danmarks Statistik10aAnnuaire statistique - Statistique de Danemark10aStatistisk årbog‎bDanmarks Statistik. Papirform aDanemarkxStatistiquesxPériodiques02aDanemarkbStatistik uhttp://www.dst.dk/en/Statistik/Publikationer/VisPub.aspx?cid=16251zAccés au texte intégral au format pdf depuis 20001 b(1980) - (1999);cParisdMagasins/AnnexeeP 4° 55321 b(1942) -(1958) ; (1966) ; (1969) ; (1973) -(1979)cParisdMagasins/AnnexeeCOL4°0282 aZPAY aexempb201312 aGEO RA3.04 Danemark aDEW 310-31901007nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004700154210004100201326001100242430004200253510003500295530005600330607004100386710003700427856004000464955005500504955005500559972000900614991001800623992002400641992001600665039552268000007826920130319051904.0 a0377-8908 aFNSP352801 a0000078269 a19900101a19649999 ba0 amul aNO aaka 10aStatistisk årbokfStatistisk sentralbyrå aOslocStatistisk sentralbyråd1964- aAnnuel 1aStatistisk arbok for Norgex0801-042010aStatistical yearbook of Norway10aStatistisk årbok - Statistisk sentralbyråb(Oslo) aNorvègexStatistiquesxPériodiques02aNorvègebStatistisk sentralbyra4 uhttp://www.ssb.no/english/yearbook/1 b(1964) -(1979)cParisdMagasins/AnnexeeCOL8°13121 b(1980) -(2006)cParisdMagasins/AnnexeeP 8° 5316 aZPAY aexempb201109 aGEO RA3.03 Norvège aDEW 310-31901090nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003500139210006100174326001100235517003500246607003900281676000800320710003700328801002100365856014300386955006200529955005300591955005500644972000900699991001800708992002200726992001600748000901148000007844920131119161802.01 a0081-5381 aFNSP353196 a19900101a19149999 ba0 amul aSE aaku 10aStatistisk arsbok för Sverige aaStockholm‎cSCB‎aÖrebro‎cSCB förlag‎d1914- aAnnuel10aStatistical yearbook of Sweden aSuèdexStatistiquesxPériodiques a31402aSuèdebStatistiska centralbyran 3aFRbCCN0081-53814 uhttp://www.scb.se/Pages/Product____30937.aspx?Produktkod=OV0904&displaypublications=truezAccès au texte intégral depuis l'édition 20021 bLa dernière annéecParisd27, Salle 1er étageeDEW 3141 b(1980) -....cParisdMagasins/AnnexeeP 8° 52681 b(1946) -(1974)cParisdMagasins/AnnexeeCOL8°0019 aZPAY aexempb201110 aGEO RA3.02 Suède aDEW 310-31900763nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210002700174326001800201606003700219801002100256856005900277856004200336955006600378972000900444991001800453992001400471039592227000004422420140106161226.01 a0392-9701 aFNSP229608 a0000044224 a19900101a19819999 ba0 aita aIT aaia 10aStato e mercato aBolognacMulinod1981- a3 n°s par an aEconomie politiquexPériodiques 3aFRbCCN0392-97014 uhttp://www.mulino.it/edizioni/riviste/statomercato.htm zContenu : sommaire du dernier numéro1 bvol. 1 no. 1 (1981) -....cParisdMagasins/AnnexeeP 8° 4474 aZPAY aexempb201106 aDEW 338.900831nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210004300177326001800220606004100238710002400279856003400303856006700337955006700404972000900471991001800480992003100498992001200529039084981000022237920130319051904.01 a0144-3593 aFNSP797180 a0000222379 a19900101a19809999 ba0 aeng aGB aaia 10aStatute law review aOxfordcOxford University Pressd1980- a3 n°s par an aDroityGrande-BretagnexPériodiques02aStatute Law Society4 uhttp://www3.oup.co.uk/stalaw/ zContenu : sommaires et résumés depuis le vol. 17, n°1, 19961 bvol. 17 no. 1 (1996) -....cParisdMagasins/AnnexeeP 8° 6342 aZSAB aexempb201301 aGEO RA4.02 Grande-Bretagne aDEW 34801275nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200007800139210002700217326001500244451004400259452003700303517004000340517006500380530001400445606003000459606002800489710006700517801002100584856009900605856010800704955007200812972000900884991001800893992001400911064228878000004425020131002164656.01 a1010-5239 aFNSP229649 a19900101b19862000 f ba0 afre aFR aaja 10aSTI revuefOrganisation de coopération et de développement économiques aPariscOCDEd1986-2000 aSemestriel 1aSTI review (English edition)x1010-5247 1tSTI revue (En ligne),x2225-646610aScience technologie industrie revue10aSTI revue de la science, de la technologie et de l'industrie10aSTI revue aTechnologiexPériodiques aIndustriexPériodiques02aOrganisation de coopération et de développement économiques 3aFRbCCN1010-52394 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/10105239/revsti zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (aut-1986) -no. 26 (2000)cParisdMagasins/AnnexeeP 8° 5025 aZECH aexempb201106 aDEW 60-6901188nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002300139210006500162326002200227326002300249606002900272606004400301607004700345710006000392856010900452856010800561955017600669972000900845992002000854992001200874040105679000004433620131121123201.01 a0970-0161 aFNSP229862 a19900101a19779999 ba0 aeng aIN aaga 10aStrategic analysis aNew DelhicInstitute for Defence Studies and Analysesd1977- aBimestrielb2002- aMensuelb1977-2001 aStratégiexPériodiques aSécurité internationalexPériodiques aIndexRelations extérieuresxPériodiques02aInstitute for Defense Studies and Analysesc(New Delhi)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t780586780db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (avr-1977) -vol. 9 no. 12 (mar-1986) ; vol. 12 no. 3 (jun-1988) -vol. 26 no. 1 (jan-2002) ; vol. 31 no. 1 (jan-2007) -....cParisdMagasins/AnnexeeP 8° 4024 aZSAB aGEO RI1.13 Inde aDEW 32701080nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003300163210005900196326001200255606003900267801001300306856010200319856006300421856009000484856010800574955007100682972000900753992001600762039081818000046398120130319051905.01 a0143-2095 a0000463981 a a19809999k fre ba0 aeng aUS a 0  ar aaf z 0 10aStrategic management journal aNew York, N.Y.aChichester (West Sussex)cWileyd1980- aMensuel aGestion d'entreprisexPériodiques 0aFRbFNSP uhttps://acces-distant.sciences-po.fr/fork?http://www3.interscience.wiley.com/cgi-bin/jtoc?ID=2144 zSommaires et résumés des articles depuis le vol.17, 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01432095.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 22 no. 1 (jan-2001) -....cParisdMagasins/AnnexeeP 4° 6927 aZPAY aDEW 650-65801217nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002100139210002900160326001100189606004400200606002900244676000800273710005100281856021400332856020800546955006000754955006200814972000900876991001800885992001200903039617661000010015020131018092442.0 a0459-7230 aFNSP433031 a19900101a19669999 ba0 aeng aGB aaka 10aStrategic survey aLondoncBrassey'sd1966- aAnnuel aSécurité internationalexPériodiques aStratégiexPériodiques a35502aInstitut international d'études stratégiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713697399db=allzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://eJournals.ebsco.com/Journal2.asp?JournalID=111408zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1984/1985) -(2013)cParisdMagasins/AnnexeeP 8° 64041 b(1966) -(1983/1984)cParisdMagasins/AnnexeeCOL 8° 4840 aZPAY aexempb201301 aDEW 32701327nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001600154210006000170300005900230326001700289421003700306530002300343606003700366606003400403606003600437606004800473856019200521856010800713955006900821955006500890992002200955992001200977013741012000000547320130319051906.01 a0180-6424 aFNSP108388 a0000005473 a19900316a19719999 ba0 afre aFR aa u 10aStratégies aPariscPublications professionnelles françaisesd1971- aLes n°s hors séries sont reliés avec le périodique aHebdomadaire 1aStratégies. Dossier / Guide ...10aStratégiesbParis aPublicitéyFrancexPériodiques aMédiasyFrancexPériodiques aMarketingyFrancexPériodiques aEntreprises de presseyFrancexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 42771 bno. 181 (fev-1979) -....cParisdMagasins/AnnexeeP 4° 4277 aGEO RA4.06 France aDEW 65901315nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001700154210005100171300007600222300006400298326002300362530002400385606002900409606004400438606004400482676000800526710004600534801002100580856002800601856008800629955006700717955009000784972000900874991001800883992001200901992001600913039351610000000546620130319051906.01 a0224-0424 aFNSP108379 a0000005466 a19900316a19799999 ba0 afre aFR aahu 10aStratégique aPariscInstitut de stratégie comparéed1979- aFondée en 1979 par la Fondation pour les études de défense nationale aN'a pas paru en 1993 et 1994 ainsi qu'en 2002, 2003 et 2004 a2 ou 3 n°s par an00aStratégiquebParis aStratégiexPériodiques aSécurité internationalexPériodiques aRelations internationalesxPériodiques a35502aInstitut de stratégie comparéec(Paris) 3aFRbCCN0224-04244 uhttp://www.stratisc.org zsommaire des numéros depuis le n° 1, 1979 et choix de numéros en texte intégral1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3551 bno. 1 (1979) -no. 56 (1992) ; no. 57 (1995) -....cParisdMagasins/AnnexeeP 8° 4146 aZCAD aexempb201103 aDEW 327 aDEW 355-35901193nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101001300108102000700121110001600128200002200144210004200166300006500208300000500273326001600278510002200294510003700316510003200353530002200385606004400407710002900451801002100480856003300501856010300534955007000637957008500707972000900792991001800801992001200819038802775000004461620130709172114.01 a0039-2936 aFNSP230637 a19900101a19649999 ba0 aitaafre aIT aaha 10aStudi emigrazione aRomacCentro studi emigrazioned1964- aTitre parallèle français, 1974-1992 : "Études migrations" a aTrimestriel10aEtudes migrations1 aÉtudes migrations‎j1974-19921 aMigration studies‎j1997- aStudi emigrazione aEmigration et immigrationxPériodiques02aCentro studi emigrazione 3aFRbCCN0039-29364 uhttp://www.cser.it/studi.htm zContenu : sommaires et souvent résumés des articles en italien, français et anglais depuis 19971 bvol. 1 no. 1 (oct-1964) -....cParisdMagasins/AnnexeeP 8° 21091 bno. 1 (1964) -no. 99 (1990)zse trouve dans le vol. 27 no. 100, 1990 de la revue aZPAY aexempb200908 aDEW 32501245nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210006700177326002300244326002600267430005500293530002300348606004400371676000800415712006100423801002100484856005000505856005500555955006700610955007400677957012300751972000900874992001200883039720209000004460420130319051907.01 a0770-2965 aFNSP230598 a0000044604 a19900101a19749999 ba0 amul aBE aaha 10aStudia diplomatica aBruxellescInstitut royal des relations internationalesd1974- atrimestrielb2006- abimestrielb1974-2005 1aChronique de politique étrangèrexISSN 0009-605900aStudia diplomatica aRelations internationalesxPériodiques a32702aInstitut royal des relations internationalesc(Belgique) 3aFRbCCN0770-29654 uhttp://www.egmontinstitute.be/FR/SD-irri.html zContenu : sommaires depuis le volume 2, no 1, 19491 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 27 no. 5/6 (nov-1974) - ....cParisdMagasins/AnnexeeP 8° 00061 bvol. 1(1948)-vol.44 (1991)cParisdMagasins/AnnexeeP Indexzcet index se trouve dans le vol.44 no.6, 1991 de la revue aZSAB aDEW 32701163nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004600139210004800185326005200233452006700285530004600352606003600398606004800434856007000482856005400552955007100606955010600677972000900783991001800792992002300810992001600833040003302000008167020131003170703.01 a0898-588X aFNSP363080 a19900101a19869999 ba0 aeng aUS aaja 10aStudies in American political development aNew YorkcCambridge University Pressd1986- aAnnuel puis semestriel à partir du vol.6, 1992 1tStudies in American political development (Online),x1469-8692 aStudies in American political development aScience politiquexPériodiques aScience politiqueyEtats-UnisxPériodiques4 uhttp://www.journals.cup.org/owa_dba/owa/ISSUES_IN_JOURNAL?JID=SAP zContenu : sommaires depuis le vol. 11, n°1, 19971 bvol. 14 no. 1 (pri-2000) -....cParisdMagasins/AnnexeeP 4° 69441 bvol. 1 (1986) ; vol. 6 no. 1 (pri-1992) -vol. 13 no. 2 (aut-1999)cParisdMagasins/AnnexeeP 8° 5095 aZSAB aexempb201106 aGEO RC2 Etats-Unis aDEW 320-32101298nas 2200301 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101110001600108200005300124210004400177326001600221452007300237530005300310606004500363607004900408801002100457856023300478955011500711955008700826972000900913991001800922992004200940992001400982038803496000004464520130607113906.01 a0039-3606 a19900101a19659999 ba0 aeng aUS aaha 10aStudies in comparative international development aNew Brunswick, N.J.cTransactiond1965- aTrimestriel 1tStudies in comparative international development (Online)x1936-616700aStudies in comparative international development aDéveloppement économiquexPériodiques aPays en voie de développementxPériodiques 3aFRbCCN0039-36064 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=CID&site=ehost-livezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 8 no. 1 (jan-1972) -vol. 38 no. 4 (2004) ; vol. 42 no. 1/2 (jun-2007)cParisdMagasins/AnnexeeP 8° 30931 bvol. 5 no. 1 (1969/1970) -vol. 7 no. 12 (1971)cParisdMagasins/AnnexeeP 4° 3154 aZSAB aexempb201004 aGEO RO Pays en voie de développement aDEW 338.901831nas 2200433 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154210003800192326001900230326002900249326002600278326002700304436002500331436004100356606002900397606002500426606002900451676000800480856010300488856010800591856012800699856010800827856010900935856010801044955006701152955007101219955006901290972000901359991001701368992001201385040282953000006333420131220102941.01 a1057-610X aFNSP291569 a0000063334 a19900101a19929999 ba0 aeng aGB aafa 10aStudies in conflict and terrorism aLondoncTaylor and Francisd1992- aMensuel$d2007- a8 n°s par an$d2006-2006 aBimestriel$d2001-2005 aTrimestriel$d1992-2000 1tTerrorismx0149-0389 1tConflict (New York. 1978)x0149-5941 aTerrorismexPériodiques aGuerrexPériodiques aGuérillasxPériodiques a3204 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=102492 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=CNF&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713742821db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bvol. 15 no. 1 (jan-1992) -....cParisdMagasins/AnnexeeP 8° 58071 bL'année en courscParisdBibliothèque de rechercheeP 8° 5807 aZCAD aexemp$201112 aDEW 32000987nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000370015421000440019132600160023543000410025160600530029260600360034560600400038185600490042185600610047095500690053197200090060099100180060999200320062799200140065903739827X000009746420130319051907.01 a0925-9392 aFNSP424062 a0000097464 a19900101a19939999 ba0 aeng aNL aaha 00aStudies in East-European thought aDordrechtcKluwer Academic Publ.d1993- aTrimestriel 1aStudies in Soviet thoughtx0039-3797 aScience politiqueyEurope de l'EstxPériodiques aScience politiquexPériodiques aPhilosophie politiquexPériodiques4 uhttp://www.wkap.nl/journalhome.htm/0925-9392 zContenu : sommaires depuis le vol. 47, n°1-2, juin 19951 bvol. 45 no. 1/2 (1993) -....cParisdMagasins/AnnexeeP 8° 1947 aZSAB aexempb201002 aGEO RA2.02 Europe orientale aDEW 320.501023nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210004000185326001500225606002900240606004500269710002900314801002100343856009000364856010800454955008600562957007300648992001200721038803550000004461020130319051907.01 a0039-3665 aFNSP230609 a0000044610 a19900101a19639999 ba0 aeng aUS aaga 10aStudies in family planning aNew YorkcPopulation Councild1963- aBimestriel aPopulationxPériodiques aRégulation des naissancesxPériodiques02aConseil de la population 3aFRbCCN0039-36654 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00393665.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 7 no. 5 (mai-1976) -vol. 22 no. 6 (1991)cParisdMagasins/AnnexeeP 4° 39421 bvol. 18 (1979) -vol. 21 (1990)cParisdMagasins/AnnexeeP Index 0665 aDEW 30401883cas0 2200445 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086040001100101100004100112101000800153102000700161105001800168106000600186110001600192200004900208207002400257210003900281210003800320210003300358300015400391326002700545326002600572326002300598517005600621517005700677606003700734606004300771801003000814801002300844802000700867830029600874856010301170856006201273955008401335991001801419038803577000120675520130319051907.01 a0039-3681 accn0039-3681 aissn00393681 a0001206755 aSHPSB5 a19770419a1970 u y0frey50 ba0 aeng aGB ay 0  ar aaha 0uu 10aStudies in history and philosophy of science 0aVol. 1, no.1(1970)- aAmsterdamcElsevier Scienced1999- aOxfordcPergamon Pressd1975-1998 aLondoncMacmilland1970-1974 aQuelques nos sont constitués par la section "Studies in history and philosophy of modern physics" qui devient publication indépendante en avr. 1995 aTrimestrielb1970-1992 aBimestrielb1993-1994 aTrimestrielb1995-10aStudies in history and philosophy of modern physics10aStudies in history and philosophy of science. Part A aSciencesxHistoirexPériodiques aPhilosophie des sciencesxPériodiques 3aFRbAbesc20090302gAFNOR 3aFRbISSNc20090225 a0j atraitement différent du Sudoc qui a fait des changements de titre ; les différentes séries sont regroupées sous ce titre car la pagination est continue toutes séries confondues (A, Studies in history and philosophy of modern physics) et l'ISSN qui figure sur les fascicules est le même4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/00393681/23 zContient : sommaires des nos depuis le vol. 1, no 1, 19701 bvol. 23 no. 2 (1992) -vol. 37 no 4 (2006)cParisdMagasins / AnnexeeP 8° 7162 aexempb20130100911nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210004800187326001500235606004500250606003700295801002100332856003200353955006400385957010000449972000900549991001800558992001900576992001400595039672727000004433320130319051907.01 a0707-8552 aFNSP229858 a0000044333 a19900101a19799999 ba0 aeng aCA aaja 10aStudies in political economy aOttawacStudies in political economyd1979- aSemestriel aEconomie politiqueyCanadaxPériodiques aEconomie politiquexPériodiques 3aFRbCCN0707-85524 uhttp://www.carleton.ca/spe/1 bno. 18 (aut-1985) -....cParisdMagasins/AnnexeeP 8° 49361 bno. 61 (2000) -no. 70 (2003)cParisdMagasins/Annexezse trouve dans le n°70, 2003 de la revue aZSAB aexempb201003 aGEO RC1 Canada aDEW 338.901053nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210009100182326001100273440002900284606002600313606004600339710005300385801002100438856004600459856004600505955006800551957005700619991001800676992001200694992002100706036441430000000946920130319051907.01 a0585-7325 aFNSP116777 a0000009469 a19900101b19631999 ba0 aeng aJP aaku 10aStudies of broadcasting aTokyocNHK. Radio & Culture Research Institute. Theoretical Research Centerd1963-1999 aAnnuel 1tNHK broadcasting studies aMédiasxPériodiques aCommunication audiovisuellexPériodiques02aBroadcasting Culture Research Institutec(Tokyo) 3aFRbCCN0032/18344 uhttp://www.nhk.or.jp/bunken/en/b46-e.html zContenu : sommaires depuis le n°31, 19951 bno. 1 (1963) -no. 34 (1999)cParisdMagasins/AnnexeeP 8° 25061 b(1963) -(1981)cParisdMagasins/AnnexeeP Index 0620 aexempb201204 aDEW 070 aGEO RI3.22 Japon01113cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157110001600175200002500191210004900216326001600265440004700281607003400328710005200362801003000414801002300444801003000467802000700497856007800504856005500582955008300637992003100720992001200751039685624000114945420130319051908.01 a0722-8821 accn0722-8821 aissn07228821 a0001149454 a19841109a19829999k y0frey0103 ba0 ager aDE ay  aagu uu 10aSüdostasien aktuell aHamburgcInstitut für Asienkunded1982-2008 aTrimestriel 1tJournal of current Southeast Asian affairs aAsie du Sud-EstxPériodiques02aInstitut für Asienkundec(Hambourg, Allemagne) 3aFRbAbesc20090703gAFNOR 3aFRbISSNc20090225 3aFRbAbesc20080819gAFNOR a064 uhttp://www.giga-hamburg.de/index.php?file=z_soa.html&folder=publikationen zContenu : sommaires depuis le vol. 25 no. 1 (2006)1 bvol. 26 no. 2 (2007) -vol. 27 no. 4 (2008)cParisdMagasins/AnnexeeP 8° 7044 aGEO RI2.02 Asie du Sud-Est aDEW 95901161nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210006700200320002500267326002300292326002300315430006000338517004100398607002600439676000800465710003000473801002100503856003700524856005200561955006600613955006700679972000900746992003000755992001400785039685039000004469920130319051908.01 a0722-480X aFNSP231041 a0000044699 a19900101a19829999 ba0 ager aDE aaha 10aSüdosteuropa (München, Südostinstitut) aMünchencOldenbourgaGilchingcVerlegerdienst Münchend1982- aN'a pas paru en 2004 aTrimestrielb2005- aMensuelb1982-2003 1aWissenschaftlicher Dienst SüdosteuropaxISSN 0043-695X10aSüdosteuropa (München, Oldenbourg) aBalkansxPériodiques a94002aSüdost-Institut (Munich) 3aFRbCCN0722-480X4 uhttp://www.oldenbourg.de/verlag/ zContenu : index annuels depuis le vol. 47, 19981 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 bvol. 31 no. 1 (1982) -....cParisdMagasins/AnnexeeP 8° 4499 aZSAB aGEO RA8 Europe du Sud-Est aDEW 949.601159nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210004800185326002200233326002700255430006400282607002600346676000800372710004400380856007400424856003600498955006600534955006700600957007200667972000900739991001700748992003000765992001400795039463443000007582420130319051908.01 a0340-174X aFNSP344727 a0000075824 a19900101a197?9999 ba0 ager aDE aaha 10aSüdosteuropa-Mitteilungen aMünchencSüdosteuropa-Gesellschaftd0001- aBimestrielb2002- aTrimestrielb197?-2001 1aMitteilungen der Südosteuropa GesellschaftxISSN 0039-4572 aBalkansxPériodiques a94002aSüdosteuropa-Gesellschaftc(Allemagne)4 uhttp://www.suedosteuropa-gesellschaft.com/index.cfm?page=mitteilungen zContenu : sommaires depuis 20031 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 bvol. 32 no. 1 (1992) -....cParisdMagasins/AnnexeeP 8° 58911 bvol. 1 (1961) -vol. 30 (1990)cParisdMagasins/AnnexeeP Index 0702 aZSAB aexemp$201201 aGEO RA8 Europe du Sud-Est aDEW 949.600936nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000026001502100005001762300024001813260017002056060029002226070034002518010013002858560192002988560108004909550005005989920012006039920031006150001145139000114513920130319051908.0 a0001145139 a a19819999k fre 01 ba0 aeng aGB ar aac z  adr 10aSunday times (London) a aRevue électronique ahebdomadaire aActualitéxPériodiques aGrande-BretagnexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aDEW 050 aGEO RA4.02 Grande-Bretagne01229nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000090001502100049002403000039002893260015003283360058003433370063004014400097004644520076005616060030006377100036006678010013007038560195007169920016009110000491572000049157220130319051909.0 a0000491572 a b19341947k fre 01 ba0 aeng aGB az aaj z  adr 10aSupplement to the Journal of the Royal Statistical Societyb[Ressource électronique] aLondoncRoyal Statistical Societyd1934-1947 aAucune parution entre 1942 et 1945 aSemestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tJournal of the Royal Statistical Society. Series B. Methodological [Ressource électronique] 1tSupplement to the Journal of the Royal Statistical Societyx(1466-6162) aStatistiquexPériodiques02aRoyal Statistical Societyc(GB) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/14666162.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aDEW 310-31901086nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210005400183326001100237601004400248606005200292710003800344801002100382856019500403955005500598955005700653972000900710991001800719992002300737992001200760038880563000010581720130319051909.01 a0081-9557 aFNSP449681 a0000105817 a19900101a19609999 ba0 aeng aUS aaku 14aThe Supreme Court review aChicago, Ill.cUniversity of Chicago Pressd1960- aAnnuel02aEtats-UnisbSupreme CourtxPériodiques aDroit constitutionnelyEtats-UnisxPériodiques02aUniversity of ChicagobLaw School 3aFRbCCN0081-9557 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/07369921.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1980) -(2009)cParisdMagasins/AnnexeeP 8° 55821 b(1964) -(1979)cParisdMagasins/AnnexeeCOL 8° 4265 aZCAD aexempb201110 aGEO RC2 Etats-Unis aDEW 34201261cas0 2200361 450 001001000000002001100010005001700021011001400038035004000052100004100092101001800133102000700151105001800158106000600176110001600182200005900198207002700257210004100284300004500325304004600370326001100416452010500427510002600532510002600558606003000584801003000614801003800644856010900682955006600791972000900857992002100866992001200887169283542000124537720140115165438.00 a2266-5579 aFRBNF435766530000002zFRBNF43576653 a20130516a20129999k y0frey50 ba0 afreaengapor aFR ay  ar aakah y 10aSur le journalismedAbout journalismdSobre jornalismo 0aVol. 1, n ̊ 1 (2012)- a[Lannion]cSur le journalismed2012- aTexte en français, anglais et portugais aDirecteur de la publication Denis Ruellan aAnnuel 1tPublication également disponible en ligne à l'adresse http://www.surlejournalisme.com (2013-04-22)10aAbout journalismzeng10aSobre jornalismozpor aJournalismexPériodiques 3aFRbAbesc20130613gAFNOR 0aFRbFR-751131015c20130422gAFNOR4 uhttp://surlejournalisme.com/rev/index.php/sljzAccès au texte intégral à partir du Vol. 1, n°1, 20121 bvol. 1 no. 1 (2012) -....cParisdMagasins/AnnexeeP 4° 7335 aZGRA aGEO RQ Universel aDEW 07001331nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000031001552100035001863260012002214210061002336060044002946070053003386070068003917100044004598010021005038560153005248560108006779550144007859720009009299920023009389920016009619920016009770000005476000000547620130319051910.01 a0039-6222 aFNSP108391 a0000005476 a19900316a19219999 ba0 aeng aUS aafu 10aSurvey of current business aWashington, D.C.cUSGPOd1921- aMensuel 1aBusiness statistics (Biennal),x0083-2545 < P 4° 5608 > aStatistiques commercialesxPériodiques aEtats-UnisxCommercexStatistiquesxPériodiques aEtats-UnisxConditions économiquesxStatistiquesxPériodiques02aEtats-UnisbBureau of Economic Analysis 3aFRbCCN0039-62224 uhttps://acces-distant.sciences-po.fr/fork?http://web.ebscohost.com/bsi/detail?vid=4&hid=109&sid=e8ce8a0d-2c83-49f1-ac60-eeff721d00d6%40sessionmgr102 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1927) -(1940) ; (1946) -vol. 85 no. 5 (mai-2005) ; vol. 87 no. 8 (aou-2007) -vol. 87 no. 12 (dec-2007)cParisdMagasins/AnnexeeP 4° 0051 aZPAY aGEO RC2 Etats-Unis aDEW 310-319 aDEW 380-38201055nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006700154210003600221326001100257430008100268517009800349607005600447710007700503856005400580955007900634972000900713992002900722992001400751039277364000015984520140108154728.01 a0255-5123 aFNSP616730 a0000159845 a19900101a00019999 ba0 aeng aIN aaka 10aSurvey of economic and social developments in the ESCWA region aNew YorkcUnited Nationsd0001- aAnnuel 1aSurvey of economic and social developments in the ECWA region < P 4° 6471 >10aSurvey of economic and social developments in the Economic Commission for Western Asia region aMoyen-OrientxConditions économiquesxPériodiques02aNations UniesbCommission économique et sociale pour l'Asie occidentale4 uhttp://www.escwa.org.lb/information/pubsearch.asp1 b(1981) ; (1985) -(1987) ; (1989) -....cParisdMagasins/AnnexeeP 4° 6471 aZPAY aGEO RG4 Asie occidentale aDEW 338.901071nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003100163210004600194326001600240430003100256440004100287607004100328801001300369856007700382856009500459955008300554957005800637972000900695992001400704992002700718078546257000052856720130319051910.01 a1451-477X a0000528567 a b20032006k fre ba0 aeng aYU a 0  ar aah z 0 10aSurvey Serbia & Montenegro aBeogradcJugoslovenski pregledd2003-2006 aTrimestriel 1tYugoslav surveyx0044-1341 1tSurvey Republic of Serbiax1452-709X aSerbie-et-MonténégroxPériodiques 0aFRbFNSP4 uhttp://www.yusurvey.co.yu/new/yusurvey_index_of_titles_subject.php?user= zContient les sommaires des numéros à partir de 2000 et index par sujet à partir de 19891 bvol. 44 no. 1 (2003)-vol. 47 no. 1 (2006)cParisdMagasins/AnnexeseP 8° 18131 b(2000) -(2004)cParisdMagasins/AnnexeseP Index 0005 aZCAD aDEW 949.7 aGEO RA8.11 Yougoslavie01561nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001300154207003600167210002900203326002200232326002700254530002700281606004400308606004400352676000800396710005100404801002100455856010900476856010800585856010300693856010800796955006700904955009600971957005701067972000901124991001801133992001201151038804492000004462720130319051910.01 a0039-6338 aFNSP230669 a0000044627 a19900101a19599999 ba0 aeng aGB aaha 10aSurvival 1aVol. 1, no. 1 (Mar./Apr. 1959)- aLondoncBrassey'sd1959- aBimestrielb2008- aTrimestrielb1959-2007 0aSurvivalbLondon. 1959 aRelations internationalesxPériodiques aSécurité internationalexPériodiques a32702aInstitut international d'études stratégiques 3aFRbCCN0039-63384 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713659919db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://eJournals.ebsco.com/Journal2.asp?JournalID=111409 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 4 no. 2 (mar-1962) ; vol. 7 no. 4 (jul-1965) -....cParisdMagasins/AnnexeeP 8° 21581 b(1959) -(1965)cParisdMagasins/AnnexeeP Index 0034 aZCAD aexempb201105 aDEW 32701153nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002100139210002600160326002200186326002300208430003500231452004300266530003300309606003600342606004400378606003600422606004400458856007700502856007700579955006500656972000900721991001800730992003900748992001600787044730217000005425520131016164556.01 a0869-4435 aFNSP255921 a19900101a19919999 y ca0 arus aRU aafa 00aSvobodnaâ mysl' aMoskvacPravdad1991- aBimestrielb2012- aMensuelb1991-2011 1aKommunist (Moskva),x0131-1212 1tSvobodnaâ mislʹ (Moskva),x0869-443500aSvobodnaâ mislʹ‎bMoskva aScience politiquexPériodiques aSciences socialesyRussiexPériodiques aSciences socialesxPériodiques aScience politiqueyRussiexPériodiques4 uhttp://www.postindustrial.net/content1/index.php?table=free&lang=russian zContient : sélection d'articles en texte intégral depuis le n°3, 20021 bno. 14 (sept-1991) -....cParisdMagasins/AnnexeeP 8° 0423 aZCAD aexempb201310 aGEO RA7.21 Russie (depuis 1991-92) aDEW 320-32101001nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116200002400123210006200147326001600209530004300225607005000268710003500318801002100353830007600374856006600450955005700516955006300573972000900636991001800645992002200663992001400685038804883000004612720140109163311.01 a0039-7296 aFNSP235733 a19900101a19609999 ba0 aeng aSE14aThe Swedish economy aStockholmcNational Institute of Economic Researchd1961- aTrimestriel14aThe Swedish economyb(Stockholm. 1961) aSuèdexConditions économiquesxPériodiques02aKonjunkturinstitutetc(Suède) 3aFRbCCN0032/6526 a1961--->1984 < P 8° 1888 > : collection donnée au CTL en juillet 20014 uhttp://www.konj.se/1414.htmlzAccès libre au texte intégral1 b(dec-1994) -....cParisdMagasins/AnnexeeP 4° 64481 b(avr-1985) -(aut-1994)cParisdMagasins/AnnexeeP 8° 1888 aZPAY aexempb200908 aGEO RA3.02 Suède aDEW 330.901127cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200003700162210008300199430003500282440005300317530003700370531001900407712006100426801003000487802000700517856009000524856010800614955007100722991002000793036503924000108370320130319051910.0 a0039-7318 accn0039-7318 a0001083703 a19880915b19651975 0frey0103 ba0 aeng aSE ar aah 14aThe Swedish journal of economics aStockholmcNationalekonomiska institutionen, Stockholms universitetd1965-1975 1tEkonomisk tidskriftx0284-7310 1tThe Scandinavian journal of economicsx0347-052004aThe Swedish journal of economics 0aSwed. j. econ.02aStockholms universitet. Nationalekonomiska institutionen 3aFRbAbesc20070417gAFNOR a0F4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00397318.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 67 (1965) -vol. 77 (1975)cParisdMagasins/AnnexeeP 8° 0119 aPériobTP01 P801011nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116200001800123210005300141326001600194437004500210517006000255530001800315606003900333710004800372801002100420856013800441955006700579972000900646991001800655992002400673992001200697040145158000004433020130911162245.01 a1013-1469 aFNSP229849 a19900101a19879999 ba0 ager aAT10aSWS-Rundschau aWiencÖsterreichischer Gewerkschaftsbundd1987- aTrimestriel 1tJournal für Sozialforschung,x0253-399510aSozialwissenschaftliche Studiengesellschaft - Rundschau10aSWS-Rundschau aSociologieyAutrichexPériodiques02aSozialwissenschaftliche Studiengesellschaft 3aFRbCCN7110/03694 uhttp://www.sws-rundschau.at/zAccès libre aux sommaires et résumés depuis 2000 et beaucoup de numéros en ligne en texte intégral1 bvol. 27 no. 1 (1987) -....cParisdMagasins/AnnexeeP 8° 5110 aZPAY aexempb201106 aGEO RA5.13 Autriche aDEW 30101146nls 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000057001502070021002072100086002282300005003143000070003193260016003893360056004053370017004616060070004786060073005487100081006218010013007028560062007159550005007779920014007829920012007960000622049000062204920130319051911.0 a0000622049 a a20039999k fre 01 ba0 amul aFR az aaz z  adr 14aLes synthèses de l'Iddrib[Ressource électronique] 1aN°1(mars 2003)- aPariscInstitut du développement durable et des relations internationalesd2003- a aSynthèse de 4 pages en texte intégral depuis le n°1, mars 2003 aIrrégulier aDonnées textuelles accessibles uniquement en ligne aFichiers PDF aDéveloppement durablexCoopération internationalexPériodiques aEnvironnementxProtectionxCoopération internationalexPériodiques02aInstitut du développement durable et des relations internationalesc(Paris) 0aFRbFNSP4 uhttp://www.iddri.org/iddri/html/publi/publi.htm#syntheses1 r aDEW 330.9 aDEW 32700966nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200014500154210012700299326001100426601003200437710007700469856005800546955005500604972000900659991001800668992001400686053567986000015974020130319051912.01 a1291-2522 aFNSP616535 a0000159740 a19900101a00019999 ba0 afre aFR aaka 13aLe Système des Nations-Unies en ...fMinistère des affaires étrangères, Direction des Nations-Unies et des organisations internationales aPariscMinistère des affaires étrangères, Direction des Nations-Unies et des organisations internationalesd0001-[200.] aAnnuel02aNations UniesxPériodiques02aFrancebDirection des Nations Unies et des organisations internationales uhttp://www.diplomatie.gouv.fr/frmonde/nuoi/index.html1 b(1995) -(2002)cParisdMagasins/AnnexeeP 8° 6229 aZGRA aexempb201301 aDEW 341.200959nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210002900198326001500227430003500242436008500277606004300362712005000405856010200455955009900557972000900656992001600665040409082000021930120130319051912.01 a1092-7026 aFNSP787541 a0000219301 a19900101a19979999 ba0 aeng aGB aaga 10aSystems research and behavioral science aChichestercWileyd1997- aBimestriel 1tBehavioral science (0005-7940) 1aSystems research (0731-7239) et de Behavioral science (0005-7940) < P 8° 1691 > aSciences du comportementxPériodiques02aInternational Federation for Systems Research4 uhttps://acces-distant.sciences-po.fr/fork?http://www3.interscience.wiley.com/cgi-bin/jtoc?ID=62531 bvol. 14 no. 1 (jan/fev-1997) -vol. 19 no. 6 (nov/dec-2002)cParisdMagasins/annexeeP 8° 1691 aZPAY aDEW 305-30601819nas 2200373 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200008100148210002700229300011200256326001400368430006600382440008800448530008100536532013800617606005800755606005800813606006000871710012900931801001301060856022901073955005301302972000901355992005101364992001401415992001601429048858781000043264020130618144526.01 a1562-9848 a a19992004k f fre ba0 afre aFR a 0  ar aal z 0 10aTableau de bord de l'OCDE de la science, de la technologie et de l'industrie aPariscOCDEd1999-2004 aPublié tous les 2 ans en alternance avec "Perspectives de la science, de la technologie et de l'industrie" aBisannuel 1tScience, technologie et industrie. Tableau de bordx1029-4279 1tScience, technologie et industrie : tableau de bord de l OCDE (Imprimé)x2074-720900aTableau de bord de l'OCDE de la science, de la technologie et de l'industrie11aTableau de bord de l'Organisation de coopération et de développment économiques de la science, de la technologie et de l'industrie aIndustrieyPays de l'OCDExStatistiquesxPériodiques aRechercheyPays de l'OCDExStatistiquesxPériodiques aTechnologieyPays de l'OCDExStatistiquesxPériodiques02aOrganisation de coopération et de développement économiquesbDirection de la science, de la technologie et de l'industrie 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://lysander.sourceocde.org/vl=6761407/cl=49/nw=1/rpsv/outlook_annuals.htmzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(2001) -(2003)cParisdMagasins/AnnexeP 4° 6500 aZPAY aGEO RN1 Pays industrialisés, pays occidentaux aDEW 338.4 aDEW 310-31901370nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154207001500193210005300208300006900261326001100330422004100341430006000382517000800442607008100450607006400531607002700595710010900622856012100731955006500852972000900917991001800926992002200944992001400966992001600980036646598000011373320130319051912.0 a1249-4305 aFNSP477871 a0000113733 a19900101a19929999 ba0 afre aRE aaka 10aTableau économique de La Réunion 1a1992/1993- aSte-ClotildecINSEE, Direction régionaled1992- aMise à jour annuelle des données dans chaque chapitre en ligne aAnnuel 1aL'Economie de La Réunionx0750-0769 1aEconomie de La Réunion, Tableau économiquex0994-415X10aTER aFrancexDépartements et territoires d'outre-merxStatistiquesxPériodiques aFrancexConditions économiquesxStatistiquesxPériodiques aRéunionxPériodiques02aInstitut national de la statistique et des études économiquesc(France)bService régionalc(Réunion)4 uhttp://www.insee.fr/fr/regions/reunion/default.asp?page=themes/dossiers/ter/ter.htmzAccès libre au texte intégral1 b(1992/1993) -(2006/2007)cParisdMagasins/AnnexeeP 8° 5736 aZPAY aexempb201111 aGEO RA4.06 France aDEW 330.9 aDEW 310-31901098nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004200154210008700196326001900283517004700302607008900349607003700438710010900475856006600584955005500650972000900705991001800714992002200732992001400754992001600768039785203000009049520130319051912.01 a0769-0630 aFNSP398609 a0000090495 a19900101a19809999 ba0 afre aFR aama 10aTableaux de l'économie bourguignonne aaDijoncInstitut national de la statistique et des études économiquesd1980-1996 aTous les 3 ans10aTEB. Tableaux de l'économie bourguignonne aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques aBourgogne (France)xPériodiques02aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Dijon)4 uhttp://www.insee.fr/fr/regions/bourgogne/collection.asp?id=551 b(1980) -(2006)cParisdMagasins/AnnexeeP 8° 4478 aZPAY aexempb200912 aGEO RA4.06 France aDEW 330.9 aDEW 310-31900999nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210005200191326001100243430003800254607008900292607003600381710011000417856004500527955006400572972000900636992002200645992001400667992001600681039819116000010636720130319051912.01 a0984-5402 aFNSP451233 a0000106367 a19900101b19879999 ba0 afre aFR aaka 10aTableaux de l'économie bretonne aINSEE, Direction régionale : Rennesd1987-2008 aAnnuel 1aBilan annuel. Bretagnex0984-5771 aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques aBretagne (France)xPériodiques02aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Rennes)4 uhttp://www.insee.fr/fr/regions/bretagne/1 b(1987) -(2003) ; (2008)cParisdMagasins/AnnexeeP 8° 4211 aZPAY aGEO RA4.06 France aDEW 330.9 aDEW 310-31901327nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131105001800138200011700156210004800273326001600321430003400337440005500371517000800426607004500434607008900479710010900568801001300677856012100690856003600811955006000847991001800907992002200925992001400947992001600961040406369000017739420130319051912.01 a1263-235X aFNSP664474 a0000177394 a19900101b1978199. fre 0 afre aXX ay z b 10aTableaux de l'économie champenoisefObservatoire économique Champagne-Ardenne ; [puis] INSEE Champagne-Ardenne aReimscINSEE Champagne-Ardenned1978-[199.] aIrrégulier 1aEconomie champenoise (annuel) 1tTableaux de l'économie champardennaisex1760-915110aTEC aChampagne-Ardenne (France)xPériodiques aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Reims) 0aFRbFNSP4 uhttp://www.insee.fr/fr/regions/champagne-ardenne/default.asp?page=publications/hors_collections/hors_collections.htm zAccès libre au texte intégral1 b(1978) -(2000/2001)cPariddMagasins/AnnexeeP 8° 3587 aexempb201006 aGEO RA4.06 France aDEW 330.9 aDEW 310-31901027nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210004800188326001600236517000800252607008900260607003300349710011100382856008600493955005500579972000900634991001800643992002200661992001400683992001600697059483415000005043320130319051912.01 a1630-6759 aFNSP247051 a0000050433 a19900101a19869999 ba0 afre aFR aaka 10aTableaux de l'économie corse aAjacciocINSEE, Direction régionaled1986- aIrrégulier10aTEC aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques aCorse (France)xPériodiques01aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Ajaccio)4 uhttp://www.insee.fr/fr/regions/corse/default.asp?page=publications/tabeco/tec.htm1 b(1986) -(2005)cParisdMagasins/AnnexeeP 8° 4994 aZPAY aexempb201106 aGEO RA4.06 France aDEW 330.9 aDEW 310-31901219nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004800154210005300202326001100255430005500266517004500321607008900366607004400455710011200499856009900611856003600710955005600746972000900802991001800811992002200829992001400851992001600865039812227000010744220130319051912.0 a0983-5725 aFNSP455438 a0000107442 a19900101b19842005 ba0 afre aFR aaka 10aTableaux de l'économie du Poitou-Charentes aPoitierscINSEE, Direction régionaled1984-2005 aAnnuel 1aRecueil statistique du Poitou-Charentesx0755-324210aTableaux de l'économie Poitou-Charentes aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques aPoitou-Charentes (France)xPériodiques02aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Poitiers)4 uhttp://www.insee.fr/fr/regions/poitou-charentes/default.asp?page=themes/dossiers/tepc/tepc.htm4 zAccès libre au texte intégral1 b(1984) -(2005);cParisdMagasins/AnnexeeP 8° 4850 aZPAY aexempb201011 aGEO RA4.06 France aDEW 330.9 aDEW 310-31901253nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200010600154210002400260225002800284300003200312326001100344517000800355607006400363676001100427710007800438856011800516955007000634955005300704955005500757972000900812991001800821992002200839992001400861992001600875003936902000000496020130319051912.01 a0039-8802 aFNSP107086 a0000004960 a19900305a19569999 ba0 afre aFR aaua 10aTableaux de l'économie françaisef[Institut national de la statistique et des études économiques] aPariscINSEEd1956-20aRéférencesx1639-4968 aPas de publication en 2009. aAnnuel10aTEF aFrancexConditions économiquesxStatistiquesxPériodiques a330.9402aInstitut national de la statistique et des études économiquesc(France)4 uhttp://www.insee.fr/fr/publications-et-services/collection.asp?id=13zMise à jour en ligne annuelle des tableaux1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 330.941 b(1980) -....cParisdMagasins/AnnexeeP 8° 54221 b(1956) -(1979)cParisdMagasins/AnnexeeCOL8°3009 aZPAY aexempb201111 aGEO RA4.06 France aDEW 330.9 aDEW 310-31901188nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210006000191326001100251430005100262530004300313607003600356607008900392710010900481856008600590856003600676955005900712972000900771991001800780992002200798992001400820992001600834032995997000002051520130319051912.0 a1152-4553 aFNSP155827 a0000020515 a19901218b19902007 ba0 afre aFR aaka 10aTableaux de l'économie lorraine aaNancycDirection régionale de l'INSEE-Lorrained1990- aAnnuel 1aAnnuaire statistique de la Lorrainex0762-1140 0aTableaux de l'économie lorraineb1990 aLorraine (France)xPériodiques aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Nancy)4 uhttp://www.insee.fr/fr/regions/lor/default.asp?page=publications/publications.htm4 zAccès libre au texte intégral1 b(1990)-(2004/2005)cParisdMagasins/AnnexeeP 8° 4798 aZPAY aexempb201106 aGEO RA4.06 France aDEW 330.9 aDEW 310-31901162nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000036001552100034001913260016002254300060002415170008003016070089003096070040003987100110004388560110005488560036006589550072006949910018007669920022007849920014008069920016008200000106369000010636920130319051912.0 a1140-6909 aFNSP451238 a0000106369 a19900101a19839999 ba0 afre aFR aa a 10aTableaux de l'économie picarde aAmienscINSEE Picardied1983- airrégulier 1aIndicateurs économiques et sociaux (Amiens)x1166-404510aTEP aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques aRhône-Alpes (France)yPériodiques02aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Amiens)4 uhttp://www.insee.fr/fr/regions/picardie/default.asp?page=publications/dossier/Insee_Picardie_Dossiers.htm4 zAccès libre au texte intégral1 b(1983) ; (1985) ; (1992)-(2007)cParisdMagasins/AnnexeeP 8° 4779 aexempb201106 aGEO RA4.06 France aDEW 330.9 aDEW 310-31901146nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000041001552100045001963260019002414300037002606070089002976070040003867100108004268560073005348560036006079550095006439720009007389910018007479920025007659920014007909920016008040000106371000010637120130319051912.0 a0755-3455 aFNSP451245 a0000106371 a19900101a19809999 ba0 afre aFR aaka 10aTableaux de l'économie Rhône-Alpes aLyoncINSEE, Direction régionaled1980- aTous les 2 ans 1aAnnuaire Rhône-Alpesx0755-3447 aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques aRhône-Alpes (France)xPériodiques aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Lyon)4 uhttp://www.insee.fr/fr/insee_regions/rhone-alpes/publi/pub_econo.htm4 zAccès libre au texte intégral1 b(1980) ; (1982) ; (1984) ; (1987) ; (1989)-(2006/2007)cParisdMagasins/AnnexeeP 8° 3588 aZPAY aexempb200911 aGEO RA4.06 France 01 aDEW 330.9 aDEW 310-31901149nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004500154210004500199326001100244430004400255517004100299607004300340607008900383710010800472856010300580955008200683991001800765992002200783992001600805992001400821040047776000010343220130319051912.01 a1240-6732 aFNSP443347 a0000103432 a19900101a1993 ba0 afre aFR aaka 10aTableaux économiques de Basse-Normandie aCaencINSEE, Direction régionaled1993- aAnnuel 1aBilan annuel Basse-Normandiex0762-092610aTableaux de l'économie bas-normande aBasse-Normandie (France)xPériodiques aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques02aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Caen)4 uhttp://www.insee.fr/fr/regions/basse-normandie/default.asp?page=publications/dossiers/dossiers.htm1 b(1992/1993) -(1993/1994) ; (1996) -(2006)cParisdMagasins/AnnexeeP 8° 6266 aexempb201203 aGEO RA4.06 France aDEW 310-319 aDEW 330.901352nas 2200361 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000150001642070010003142100068003243260016003924300054004085170009004626070089004716070042005607100113006028010013007158560110007288560037008389550054008759720009009299920022009389920014009609920016009740000597020000059702020130319051912.01 a1760-1916 a0000597020 a a20039999 fre 01 ba0 afre aFR a 0  ar aak z 0 10aTableaux économiques de Franche-ComtéfInstitut national de la statistique et des études économiques. Direction régionale de Franche-Comté. 1a2003- aBesançoncINSEE, Direction régionale de Franche-Comtéd2003- aIrrégulier 1tTableaux de l'économie franc-comtoisex0999-027510aTEFC aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques aFranche-Comté (France)xPériodiques02aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Besançon) 0aFRbFNSP4 uhttp://www.insee.fr/fr/regions/f-comte/default.asp?page=publications/multithemes/dossiers_multithemes.htm4 zAccès libre au texte intégral.1 b(2003)-(2007)cParisdMagasins/AnnexeeP 8° 5972 aZPAY aGEO RA4.06 France aDEW 330.9 aDEW 310-31901058nas 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000040001502100053001903260014002436070089002576070036003467100120003828010013005028560073005158560036005889550059006249720009006839920022006929920014007149920016007280000433771000043377120130319051912.0 a0000433771 a a20019999k a fre ba0 afre aFR a 0  ar aal z 0 10aTableaux économiques de l'Auvergne aChamalièrescINSEE, Direction régionaled2001- aBisannuel aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques aAuvergne (France)xPériodiques aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Clermont-Ferrand) 0aFRbFNSP4 uhttp://www.insee.fr/fr/insee_regions/auvergne/publi/tableaux_eco.htm4 zAccès libre au texte intégral1 b(2001)-(2007/2008)cParisdMagasins/AnnexeeP 8° 6609 aZPAY aGEO RA4.06 France aDEW 330.9 aDEW 310-31901301nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004800154210004600202326001100248430012100259517000900380530004800389607008900437607004300526710010900569856007900678856006000757955005500817972000900872991001800881992002200899992001400921992001600935039819639000016499620130910115215.01 a0984-5798 aFNSP630211 a0000164996 a19900101a19859999 ba0 afre aFR aaka 10aTableaux économiques de la Haute-Normandie aRouencINSEE, Direction régionaled1985- aAnnuel 1aDonnées - Institut national de la statistique et des études économiques, Direction régionale de Rouenx0984-580110aTEHN aTableaux économiques de la Haute-Normandie aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques aHaute-Normandie (France)xPériodiques02aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Rouen)4 uhttp://www.insee.fr/fr/regions/haute-normandie/faitsetchiffres/default.asp4 zActualisation en ligne de tableaux classés par thèmes1 b(1987) -(2006)cParisdMagasins/AnnexeeP 8° 4215 aZPAY aexempb201106 aGEO RA4.06 France aDEW 330.9 aDEW 310-31901155nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004500139210004300184300006900227326001600296517000900312530004500321607008900366607004300455710011200498856011500610955005500725972000900780992002200789992001400811992001600825039443426000011162020131104104740.0 a0291-8692 aFNSP471524 a19900101a19819999 ba0 afre aFR aaza 10aTableaux économiques de Midi-Pyrénées aToulousecINSEE Midi-Pyrénéesd1981- aMise à jour annuelle des données dans chaque chapitre en ligne aIrrégulier10aTEMP00aTableaux économiques de Midi-Pyrénées aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques aMidi-Pyrénées (France)xPériodiques02aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Toulouse)4 uhttp://www.insee.fr/fr/regions/midi-pyrenees/collection.asp?id=28zAccés libre au texte intégral depuis 20081 b(1981) -(2007)cParisdMagasins/AnnexeeP 8° 4523 aZPAY aGEO RA4.06 France aDEW 330.9 aDEW 310-31901124nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154210004800192326001600240430004400256530004400300607003600344607010300380710011100483856006500594955006000659972000900719991001800728992002200746992001400768992001600782040411206000000819820130319051913.01 a1263-4751 aFNSP114259 a0000008198 a19900529a19959999 ba0 afre aFR aaza 10aTableaux économiques du Limousin aLimogescINSEE, Direction régionaled1995- aIrrégulier 1aLe Limousin en chiffresxISSN 0995-4988 0aTableaux économiques du Limousinb1995 aLimousin (France)xPériodiques aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiquesxPériodiques02aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Limoges)4 uhttp://www.insee.fr/fr/regions/limousin/collection.asp?id=481 b(1994/1995) -(2007)cParisdMagasins/AnnexeeP 8° 3417 aZPAY aexempb201104 aGEO RA4.06 France aDEW 330.9 aDEW 310-31901073nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004500154210004600199326001600245517001500261607008100276607003500357710010700392856012000499955006100619972000900680991001800689992002200707992001400729992001600743040111768000003448420130319051913.0 a0999-128X aFNSP199381 a0000034484 a19900101a19889999 ba0 afre aGY aaka 10aTableaux économiques régionaux. Guyane aINSEE, Service régional : Cayenned1988- aIrrégulier10aTER Guyane aFrancexDépartements et territoires d'outre-merxStatistiquesxPériodiques aCayenne (Guyane)xPériodiques02aInstitut national de la statistique et des études économiquesc(France)bService régionalc(Guyane)4 uhttp://www.insee.fr/fr/regions/guyane/default.asp?page=publications/ter/ter_gy.htmzAccès libre au texte intégral1 b(1988) -(2007/2008);cParisdMagasins/AnnexeeP 8° 5732 aZPAY aexempb201111 aGEO RA4.06 France aDEW 330.9 aDEW 310-31901094nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004900154210005300203326001100256517001900267607008100286607002900367710011100396856012400507955007000631972000900701991001800710992002200728992001400750992001600764040111776000003521920130319051913.0 a0999-1409 aFNSP199369 a0000034479 a19900101a19889999 ba0 afre aMQ aaka 10aTableaux économiques régionaux. Martinique aINSEE, Service régional : Fort-de-Franced1988- aAnnuel10aTER Martinique aFrancexDépartements et territoires d'outre-merxStatistiquesxPériodiques aMartiniquexPériodiques02aInstitut national de la statistique et des études économiquesc(France)bService régionalc(Martinique)4 uhttp://www.insee.fr/fr/regions/martinique/default.asp?page=publications/ter/TER_ma.htmzAccès libre au texte intégral1 b(1988) -(2003) ; (2007/2008);cParisdMagasins/AnnexeeP 8° 5737 aZPAY aexempb201111 aGEO RA4.06 France aDEW 330.9 aDEW 310-31901118nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004900139210005300188326001100241517001900252607008100271607002900352710011100381856015700492955008800649972000900737991001800746992002200764992001400786992001600800040111776000003447920130313093146.0 a0999-1409 aFNSP199369 a19900101a19889999 ba0 afre aMQ aaka 10aTableaux économiques régionaux. Martinique aINSEE, Service régional : Fort-de-Franced1988- aAnnuel10aTER Martinique aFrancexDépartements et territoires d'outre-merxStatistiquesxPériodiques aMartiniquexPériodiques02aInstitut national de la statistique et des études économiquesc(France)bService régionalc(Martinique)4 uhttp://www.insee.fr/fr/regions/martinique/default.asp?page=publications/ter/TER_ma.htmzAccés au texte intégral au format pdf des 2 dernières années1 b(1988) -(1991) ; (1995) ; (2000) ; (2007/2008);cParisdMagasins/AnnexeeP 8° 5733 aZPAY aexempb201111 aGEO RA4.06 France aDEW 330.9 aDEW 310-31901360nas 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000154001502100124003043260014004284300056004426070089004986070041005877100109006288010013007378560067007508560069008179550084008869720009009709920025009799920014010049920016010180000461357000046135720130319051913.0 a0000461357 a a20029999k fre ba0 afre aFR a 0  ar aal z 0 10aTableaux économiques régionaux Ile-de-FrancefInstitut national de la statistique et des études économiques. Direction régionale d'Ile de France aSaint-Quentin-en-YvelinescInstitut national de la statistique et des études économiques, Direction régionaled2002- aBisannuel 1tTableaux économiques de l'Ile-de-Francex0983-5733 aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques aIle-de-France (France)xPériodiques aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Paris) 0aFRbFNSP4 uhttp://www.insee.fr/fr/regions/idf/faitsetchiffres/default.asp4 zActualisation annuelle en ligne de tableaux classés par thèmes1 b11éme éd. (2000/2001)-13 ème éd. (2006)cParisdMagasins/AnnexeeP 4° 4384 aZPAY aGEO RA4.06 France 01 aDEW 330.9 aDEW 310-31901370nas 2200325 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200015900148210010300307300005300410326001100463530005600474607008900530607004600619710010900665801001300774856013600787955005500923972000900978991001800987992001401005992002501019040048128000027809920130919143351.01 a1240-6929 a a19929999k fre ba0 afre aFR a 0  ar aak i 0 10aTableaux économiques régionaux Nord-Pas-CalaisfInstitut national de la statistique et des études économiques, Direction régionale Nord-Pas-de-Calais aLillecInstitut national de la statistique et des études économiques,Direction régionaled1992- aEdition 2005 uniquement disponible sur Cédérom aAnnuel00aTableaux économiques régionaux Nord-Pas-de-Calais aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques aNord Pas-de-Calais (France)xPériodiques aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Lille) 0aFRbFNSP40uhttp://www.insee.fr/fr/regions/nord-pas-de-calais/default.asp?page=themes/ouvrages/ter/ter_maj.htmzAccès libre au texte intégral1 b(1998) -(2002)cParisdMagasins/AnnexeeP 8° 6506 aZPAY aexempb201309 aDEW 330.9 aGEO RA4.06 France 0100779nls 2200265 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000059001502100052002092300024002616060030002856070050003158010013003658560041003788560056004199920022004759920016004970000984336000098433620130319051913.0 a0000984336 a a20059999k fre 01 ba0 aeng aTW ar aaj z  adr 10aTaiwan Journal of Democracyb[Ressource électronique] aTaipei:cTaiwan foundation for democracyd2005- aRevue électronique aDémocratiexPériodiques aAsiexPolitique et gouvernementxPériodiques 0aFRbFNSP4 uhttp://www.tfd.org.tw/HTML/0605.html zContenu : texte intégral depuis le numéro 1, 2005 aGEO RI3.02 Taiwan aDEW 320-32100999nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004100139210003300180326001100213530004100224607005600265676001200321702001800333830012000351856008800471955010000559972000900659992002500668992001600693038880954000008123520131104144332.01 a0082-1829 aFNSP361473 a19900101a19509999 ba0 ager aDE aaka 10aTaschenbuch des öffentlichen Lebens aBonncFestland Verlagd1950- aAnnuel00aTaschenbuch des öffentlichen Lebens aAllemagnexBiographiesxDictionnairesxPériodiques a320.943 1aOecklbAlbert a1 seul accés limité à la version en ligne, login : birgit.hallerberg@sciences-po.fr mot de passe : BibSciencesPo4 uhttp://www.oeckl-online.de.aPour les codes d'accès voir l'accueil bibliographique1 rConservation limitée à l'année en courscParisd30, Salle 1er étageeP 8° 5389 DEW 320.943 aZPAY aGEO RA5.01 Allemagne aDEW 920-92801414nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116200003100123210006000154300009300214326001100307606002500318606004800343710005500391801002100446856026600467856025800733955005900991972000901050991001801059992002301077992001201100032945523000008336120130605154506.0 a0892-8649 aFNSP371817 a19900101a19879999 ba0 aeng aUS10aTax policy and the economy aCambridge, MA‎cNBER and MIT Press Journals‎d1987- aA partir de l'édition 2002, périodique consultable en ligne pour les abonnés inscrits aAnnuel aImpôtxPériodiques aPolitique fiscaleyEtats-UnisxPériodiques02aNational Bureau of Economic Researchc(Etats-Unis) 3aFRbCCN0892-86494 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/direct.asp?db=bth&jid=88GC&scope=sitezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po, texte intégral à partir de2008 à il ya un an4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/direct.asp?db=bth&jid=TPE&scope=sitezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po, texte intégral à partir de1997 à 20071 bvol. 1 (1987) -...cParisdMagasins/AnnexeeP 8° 5122 aZPAY aexempb201011 aGEO RC2 Etats-Unis aDEW 33601045nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000079001642100054002433000062002973260015003595170028003745300036004026060031004386060039004698010013005088560048005218560045005699550084006149720009006989920012007070000574172000057417220130319051915.01 a1253-6032 a0000574172 a b19972005k fre ba0 afre aFR a 0  ar aaj z 0 10aTDPeTribune du droit publicerevue semestrielle de droit public général aTourscPresses universitaires de Toursd1997-2005 apubl.sous l'égide de l'Ecole doctorale de Droit de Tours asemestriel10aTribune du droit public10aTDP. La Tribune du droit public aDroit publicxPériodiques aDroit publicyFrancexPériodiques 0aFRbFNSP4 uhttp://www.univ-tours.fr/editions/droit.htm zContenu : sommaires depuis le n°1, 19971 bVol. 5 no. 10 (2002) - vol. 9 no. 18 (2005)cParisdMagasins/AnnexeeP 8° 6713 aZPAY aDEW 34200980nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004500154210004200199326001600241430004000257517000800297517004600305606003600351606004300387710003800430856006000468856005300528955006400581972000900645992001200654003067688000010747620130319051915.01 a1250-4165 aFNSP455512 a0000107476 a19900101a19939999 ba0 afre aFR aaha 10aTechniques financières & développement aPariscEpargne sans frontièred1993- aTrimestriel 1aEpargne sans frontière,x0765-745510aTFD10aTechniques financières et développement aMarché financierxPériodiques aFinances internationalesxPériodiques02aEpargne sans frontièrec(France)4 uhttp://esf.asso.fr/portail/rubrique.php3?id_rubrique=52 zContenu : sommaires et une sélection d'articles1 bno. 30 (mar-1993) -....cParisdMagasins/AnnexeeP 4° 6300 aZPAY aDEW 33200908nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004900154210003100203326001100234430006800245607003800313712004300351856010100394955005900495972000900554991001800563992002500581992001200606040046621000003847920130827112625.01 a0932-8408 aFNSP212993 a0000038479 a19900101a19879999 ba0 ager aDE aaka 10aTel Aviver Jahrbuch für deutsche Geschichte aGerlingencBleicherd1987- aAnnuel 1aJahrbuch des Instituts für deutsche GeschichtexISSN 0334-4606 aAllemagnexHistoirexPériodiques02aInstitute of German History (Tel Aviv)4 uhttp://www.tau.ac.il/GermanHistory/yearbook.htmlzContenu : sommaires et éditoriaux depuis 20021 bno. 16 (1987)-....cParisdMagasins/annexeeP 8° 3734 aZPAY aexempb201103 aGEO RA5.01 Allemagne aDEW 94300907nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001000154207001800164210003900182326001600221530002600237606003700263607004900300801002100349856003500370856005000405955006400455972000900519991001800528992002300546992001200569038892219000004615120130319051916.01 a0090-6514 aFNSP235781 a0000046151 a19900101a19689999 ba0 aeng aUS aahu 10aTelos 1ano. 1 (1968)- aNew York, N.Y.cTelos Pressd1968- aTrimestriel 0aTelosbNew York, N.Y. aVie intellectuellexPériodiques aEtats-UnisxVie intellectuellexPériodiques 3aFRbCCN0090-65144 uhttp://journal.telospress.com/4 zAccès aux sommaires et résumés depuis 19681 bno. 39 (pri-1979) -....cParisdMagasins/AnnexeeP 8° 4223 aZCAD aexempb201010 aGEO RC2 Etats-Unis aDEW 00101108nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200002500138210002500163326001200188517001000200607005100210607004700261607005300308676000800361856003700369856021500406955006600621955006300687972000900750992002300759992001200782037406507000016339120130319051916.01 a1134-6574 aFNSP626139 a0000163391 a19900101a19949999 0 aspa aES00aTemas para el debate aMadridcTemasd1994- aMensuel10aTemas aEspagnexConditions économiquesxPériodiques aEspagnexConditions socialesxPériodiques aEspagnexPolitique et gouvernementxPériodiques a9404 uhttp://www.fundacionsistema.com/ zContenu : sélection d'articles en texte intégral depuis le n°140, juillet 2006 ; sommaires et recherche par titre d'article, auteur, n°, date de parution sur tous les sommaires à partir du n°1, déc. 19941 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 bno. 1 (dec-1994) -....cParisdMagasins/AnnexeeP 4° 6487 aZPAY aGEO RA6.02 Espagne aDEW 94601103nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210004000180326001700220430004800237530003200285606002900317607002500346801002100371856003700392856008700429955006900516955006900585955008900654992002200743992001200765039382125000004373920130319051916.01 a0244-1462 aFNSP228351 a0000043739 a19900101a19809999 ba0 afre aFR aa u 10aTémoignage chrétien aPariscTémoignage chrétiend1980- aHebdomadaire 1aTC. Témoignage chrétien (1977)x0180-151110aTémoignage chrétienb1980 aActualitéxPériodiques aFrancexPériodiques 3aFRbCCN0244-14624 uhttp://www.temoignagechretien.fr4 zContenu : sommaire et sélection d'articles en texte intégral du dernier numéro.1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 68811 bno. 2961 (12 avr-2001) -....cParisdMagasins/AnnexeeP 4° 68811 bno. 1901 (15/21 dec-1980) -no. 2960 (5 avr-2001)cParisdMagasins/AnnexeeP F° 1102 aGEO RA4.06 France aDEW 05001096nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001700154210007800171326001500249606003800264606002900302710005900331856017800390856012800568955006600696972000900762992002300771992001200794038978520000014481320130530101801.01 a0103-2070 aFNSP571329 a0000144813 a19941221a19899999 ba0 apor aBR aaja 10aTempo social aSão PaulocUniversidade de São Paulo, Departamento de sociologiad1989- aSemestriel aSociologieyBrésilxPériodiques aSociologiexPériodiques02aUniversidade de São PaulobDepartamento de sociologia4 uhttp://www.fflch.usp.br/sociologia/temposocial_2/zContenu : sommaires, résumés et texte intégral depuis le vol. 1, n°1, mai 1989 (à l'exception de la dernière année)4 uhttp://www.scielo.br/scielo.php/script_sci_serial/pid_0103-2070/lng_en/nrm_isozAccès libre au texte intégral depuis 19971 bvol. 1 no. 1 (1989) -....cParisdMagasins/AnnexeeP 4° 6420 aZSAB aGEO RD4.13 Brésil aDEW 30101086nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001391100016001452000027001612100027001883260014002155170013002295300027002426060029002696070025002988560145003239550085004689570231005539920012007840000087407000008740720130319051916.0 a1150-1073 aFNSP386647 a0000087407 a19900101b18611942 ba0 afre aFR ar acaa 13aLe Temps (Paris, 1861) aPariscs.n.d1861-1942 aquotidien10aLe Temps03aLe Temps (Paris, 1861) aActualitéxPériodiques aFrancexPériodiques4 uhttp://gallica.bnf.fr/ark:/12148/cb34431794k/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1861-1942)1 bed. en microfilm : 1894 ---> 30 nov. 1942cParisdMagasins/AnnexeeP Mic 35 (24)1 bTables : vol.1,1861/1865, vol.2,1866/1870, vol. 3, 1871/1875, vol. 4, 1876/1880, vol. 5, 1881/1885, vol.6, 1886/1888, vol. 7, 1889/1891, vol.8, 1892/1894,vol.9, 1895/1897, vol. 10, 1898/1900cParisdMagasins/AnnexeeP Index 15 aDEW 05001182nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200008200163207001700245210004200262320013900304326001500443606003600458676000800494710005000502801001300552856009900565856010800664955006300772972000900835992001200844075228408000055973720140109140030.01 a1764-2507 a0000559737 a a20039999k fre ba0 afre aFR a 0  ar aaj z 0 13aLe Temps des médiaserevue d'histoirefSociété pour l'histoire des médias 1ano 1 (2003)- aPariscNouveau Monde éditionsd2003- aPublié avec le concours scientifique du groupe de recherche Temps, médias et société (Fondation nationale des sciences politiques) aSemestriel aMédiasxHistoirexPériodiques a07002aSociété pour l'histoire des médias (Paris) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-le-temps-des-medias.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (aut-2003) -....cParisdMagasins/AnnexeeP 8° 6711 aZPAY aDEW 07001210nas 2200277 i 450 0010011000000020011000110050017000220110018000390350015000570350015000721000041000871010008001281020007001361100016001432000045001592100023002044530038002276060061002657100067003268560305003938560108006989550054008069720009008609920051008699920012009200000182998000018299820130319051916.01 aSSN 1028-8171 aFNSP680528 a0000182998 a19900101a19959999 ba0 afre aFR aaya 10aTendance des impôts sur la consommation aPariscOCDEd1995- 1tConsumption tax trendsx1562-8752 aImpôt sur la consommationyPays de l'OCDExPériodiques aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://oberon.sourceocde.org/vl=1691227/cl=33/nw=1/rpsv/cgi-bin/jsearch_oecd?limittitles=&cheese=searchdb&oecd-select=home.htm&form=expert&search0=tendances+des+impots+sur+la+consommation&search=&field0=tka&system=oecd_all&sortresultsby=rev_timestamp&what=d14 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1995)-(2004)cParisdMagasins/AnnexeeP 4° 6597 aZPAY aGEO RN1 Pays industrialisés, pays occidentaux aDEW 33601222cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001700069035001700086100004100103101000800144102000700152106000600159110001600165200005200181210002300233452006900256453003800325530004600363606006100409710006700470801003000537801002300567802000700590856013900597955005500736991001800791992001200809992005100821040231925000116572820140115115917.0 a1028-8171 zccn7200/9853 accn1028-8171 aissn10288171 a19980115a19959999 0frey0103 ba0 afre aZZ ar aak 10aTendances des impôts sur la consommationfOCDE aPariscOCDEd1995- 1tTendances des impôts sur la consommation (En ligne),x1999-0987 1tConsumption tax trendsx1562-8752 aTendances des impôts sur la consommation aImpôt sur la consommationyPays de l'OCDExPériodiques02aOrganisation de coopération et de développement économiques 3aFRbAbesc20090106gAFNOR 3aFRbISSNc20080314 a004 uhttp://www.oecd-ilibrary.org/zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bb(1995)-(2004)cParisdMagasins/AnnexeeP 4° 6597 aexempb201401 aDEW 336 aGEO RN1 Pays industrialisés, pays occidentaux01206nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005600163210005200219326002200271326002700293517007500320606003200395606002200427606004400449710003800493801001300531856002700544856006600571955007000637955008700707972000900794992001600803992002500819039459616000053982020130319051916.01 a0293-8812 a0000539820 a a19819999k fre ba0 afre aFR a 0  ar aag z 0 10aTenou'afrevue du Mouvement juif libéral de France aPariscMouvement juif libéral de Franced1981- aBimestrielb2005- aTrimestrielb1981-200410aLe Mouvement = Tenou'a : la revue du mouvement juif libéral de France aJuifsyFrancexPériodiques aJudaïsmeyFrance aJuifsyFrancexEt IsraëlxPériodiques02aMouvement juif libéral de France 0aFRbFNSP uhttp://www.mjlf.col.fr zContenu : sommaires et résumés depuis le n° 92, déc. 19991 bno. 118 (fev/mar- 2006) -....cParisdMagasins/AnnexeeP 4° 71101 bno. 93 (avr-2000) -no. 117 (dec-2005/jan-2006)cParisdMagasins/AnnexeeP 8° 6704 aZCAD aDEW 305-306 aGEO RA4.06 France 0101199nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210003000174326003300204326002900237530003600266606004000302606003600342801002100378856006500399856005500464955000500519955008200524955005200606957006600658957007200724972000900796991001800805992001400823039597407000004353520130716152123.01 a0394-1248 aFNSP227862 a0000043535 a19900101b19852009 ba0 aita aIT aaku 10aTeoria politica aMilanocAngelid1985-2009 aQuadrimestriel jusqu'en 2009 aAnnuel à partir de 201100aTeoria politicabTesto stampato aPhilosophie politiquexPériodiques aScience politiquexPériodiques 3aFRbCCN0394-12484 uhttp://www.francoangeli.it/riviste/sommario.asp?IDRivista=61 zSommaires depuis 1990 ; avec résumés depuis 20001 a1 bvol. 1 no. 1 (1985) -vol. 25 no. 3 (2009)cParisdMagasins/AnnexeeP 8° 48221 b(2011)-....cParisdMagasins/AnnexeeP 8° 48221 bvol. 11 (1995) -vol. 15 (1999)zse trouve dans le no 1 (2000)1 bvol. 1 (1985) -vol. 10 (1994)cParisdMagasins/AnnexeeP Index 0757 aZPAY aexempb200912 aDEW 320.501036nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200002200138210006000160326001200220517000800232606003600240606005300276607002800329607003300357710005600390801002100446856004400467856003600511955006600547972000900613991001800622992004400640992001400684038807106000004353720130319051916.01 a0040-3598 aFNSP227864 a0000043537 a19900101a19649999 ba0 ascr aYU10aTeorija in praksa aLjubljanacUniverza Edvarda Kardelja v Ljubljanid1964- aMensuel10aTIP aScience politiquexPériodiques aScience politiqueyEurope de l'EstxPériodiques aSlovéniexPériodiques aEx-YougoslaviexPériodiques02aUniverza Edvarda Kardeljac(Ljubljana, Yougoslavie) 3aFRbCCN0033/17834 uhttp://www.uni-lj.si/fd_tip/index2.html zContenu : résumés depuis 19961 bvol. 1 no. 1 (1964) -....cParisdMagasins/AnnexeeP 8° 2104 aZSAB aexempb201302 aGEO RA8.22 Slovénie (depuis 1991-1992) aDEW 949.701140nas 2200361 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000130015420700220016721000230018921000300021232600160024243000360025853000280029460600470032267600080036971000720037785600390044985600890048885600380057785600590061595500710067497200090074599200120075499200120076603987866X000004354720140109141049.01 a0997-5551 aFNSP227875 a0000043547 a19900101a19879999 ba0 afre aFR aaha 10aTerminal 1aNo 35 (1987,oct)- aPariscCIIId1987- aPariscL'Harmattand1993- aTrimestriel 1tTerminal 19-84,xissn 0292-772110aTerminalb(Paris. 1987) aTechnologie de l'informationxPériodiques a07002aCentre d'information et d'initiative sur l'informatisationc(Paris)4 uhttp://www.revue-terminal.org/www/ zContenu : sommaires depuis le n°61, 1993 ; sélection d'articles en texte intégral4 uhttp://www.editions-harmattan.fr/ zContenu : sommaires et résumés depuis le n°61, 19931 bno. 35 (1987) -....cParisd27, Salle Rez-de-chausséeeP 4° 4593 aZPAY aDEW 020 aDEW 00401046cas0 2200337 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012310600060014111000160014720000140016320700220017721000350019932600120023443000310024660600410027760600270031860600440034580100300038985600370041985600730045695500710052995500630060099200120066399200330067513150049X000116444620130319051916.01 a2100-1472 a0001164446 a20090302a20099999m y0frey0103 ba0 afre aFR ay 0  ar aafa 0xy010aTerra eco 0aNo 1 (mars 2009)- aNantescTerra economicad2009- aMensuel 1tTerra economicax1766-4667 aDéveloppement durablexPériodiques aEcologiexPériodiques aEnvironnementxProtectionxPériodiques 3aFRbAbesc20090309gAFNOR4 uhttp://www.terra-economica.info/ zContenu : sommaires des n°s et texte intégral de certains articles1 bL’année en courscParisd27, Salle Rez-de chausséeeP 4° 71601 bno. 1 (mar-2009) -....cParisdMagasins/AnnexeeP 4° 7160 aDEW 333 aGEO RS Sans aspect régional01034cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200006200156210003800218326002300256326002500279326002800304440001400332606003700346606004100383801003000424801002300454802000700477856003700484856007300521955008100594972000900675992001200684078578256000105204320130319051916.01 a1766-4667 aissn17664667 a0001052043 a20030523b20049999k y0frey0103 ba0 afre aFR aaeu uu 10aTerra economicaeRemettez l'homme au coeur de l'économie aPariscTerra economicad2004-2009 aMensuelb2008-2009 aBimensuelb2005-2007 aHebdomadaireb2004-2005 1tTerra eco aEconomie politiquexPériodiques aDéveloppement durablexPériodiques 3aFRbAbesc20060920gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.terra-economica.info/ zContenu : sommaires des n°s et texte intégral de certains articles1 bno. 27 (oct/nov-2006) -no. 63 (fev-2009)cParisdMagasins/AnnexeeP 4° 7160 aZPAY aDEW 33001211nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008400154210006600238326001500304530002700319606003600346606003700382710004700419801002100466856003100487856005400518856008700572856010800659955006300767972000900830992002200839992001200861013662678000004355120131025125602.01 a0760-5668 aFNSP227880 a0000043551 a19900101a19839999 ba0 afre aFR aaju 10aTerrainecarnets du patrimoine ethnologiquefMission du patrimoine ethnologique aPariscMinistère de la CulturecMission du patrimoined1983- aSemestriel10aTerrainb(Paris, 1983) aArtisanatyFrancexPériodiques aEthnologieyFrancexPériodiques02aFrancebMission du patrimoine ethnologique 3aFRbCCN0760-56684 uhttp://terrain.revues.org/ zContenu : texte intégral depuis le le n°1, 19834 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-terrain.htm?4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 2 (mar-1984) -....cParisdMagasins/AnnexeeP 4° 5249 aZPAY aGEO RA4.06 France aDEW 30101150nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000062001552100028002173260012002454220073002575300031003306060053003616060048004147120090004628560026005528560061005789550062006399550073007019720009007749920025007839920016008080000203569000020356920130319051917.01 a0223-5951 aFNSP741704 a0000203569 a19900101b19962006 ba0 afre aFR aafa 10aTerritoiresela revue de la démocratie locale.icahier 1 aPariscADELSd1996-2006 aMensuel 1aTerritoiresela revue de la démocratie locale.icahier 2x0991-242810aTerritoiresb(Paris, 1996) aAménagement du territoireyFrancexPériodiques aAdministration localeyFrancexPériodiques02aAssociation démocratique d'élus et animateurs de la vie locale et socialec(France)4 uhttp://www.adels.org/4 zcontenu : sommaire et article du mois depuis janv. 2002.1 b(mai-1996) -no 413 (déc-2000)cParisdAnnexeeP F° 05361 bno 414 (janv-2001)-no 473 (dec-2006)cParisdMagasins 27eP F° 0536 aZGRA aGEO RA4.06 France 01 aDEW 350-35401162cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200002100162210005000183326001500233440002100248517005500269606004500324676000800369710008300377801003000460801002300490802000700513856009800520856005700618955007000675972000900745992003400754992001200788057915946000073306320130319051917.01 a1622-891X aissn1622891X a0000733063 a20001206b20002004 z0frey0103 ba0 afre aFR ar aaj 10aTerritoires 2020 aPariscla Documentation françaised2000-2004 aSemestriel 1tTerritoires 203010aTerritoire 2020erevue d'études et de prospective aAménagement du territoirexPériodiques a33301aFrancebDélégation à l'aménagement du territoire et à l'action régionale 3aFRbAbesc20041005gAFNOR 3aFRbISSNc20001206 a074 uhttp://www.datar.gouv.fr/datar_site/datar_framedef.nsf/webmaster/bib_framedef_vf?OpenDocument zContenu : texte intégral depuis le N° 1, Juin 20001 bno. 10 (2004) - no. 11 (2004)cParisdMagasins/AnnexeeP 4° 7060 aZGRA aGEO RA2.01 Europe occidentale aDEW 33301124nas0 2200349 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005600163207001700219210004600236326001500282430002100297517003400318606004500352676000800397710008300405801003000488856009800518856003600616955006700652972000900719992003400728992001200762088603695000090290320130319051917.01 a1777-6171 a0000902903 a20050713a20059999k y0frey0103 ba0 afre aFR a 0  ar aaja 0 10aTerritoires 2030erevue d'études et de prospective 1aNo.1 (2005)- aPariscla Documentation françaised2005- aSemestriel 1tTerritoires 202010aTerritoires deux mille trente aAménagement du territoirexPériodiques a33301aFrancebDélégation à l'aménagement du territoire et à l'action régionale 3aFRbAbesc20050713gAFNOR4 uhttp://www.datar.gouv.fr/datar_site/datar_framedef.nsf/webmaster/bib_framedef_vf?OpenDocument zAccès libre au texte intégral1 bno. 5 (2005) -no. 4 (2007)cParisdMagasins/AnnexeeP 4° 7060 aZGRA aGEO RA2.01 Europe occidentale aDEW 33300941nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154207002800191210002400219326001600243606002900259606003700288856010900325856010800434955007000542972000900612991001800621992001200639040085198000000594220140114173252.01 a0954-6553 aFNSP109452 a0000005942 a19900329a19899999 ba0 aeng aGB aaha 10aTerrorism and political violence 1aVol.1, no.1 (jan-1989)- aLondoncCassd1989- aTrimestriel aTerrorismexPériodiques aViolence politiquexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713636843db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 2 (avr-1989) -....cParisdMagasins/AnnexeeP 8° 5629 aZSAB aexempb201106 aDEW 32000878nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001800154210005000172326001500222606005500237606004700292801002100339856003400360856005000394955006900444972000900513991001800522992002200540992001400562038807378000004614220130319051918.01 a0040-3989 aFNSP235767 a0000046142 a19900101a19589999 ba0 aita aIT aafu 10aTestimonianze aSan Domenico di FiesolecTestimonianzed1958- aBimestriel aEglise et problèmes sociauxyItaliexPériodiques aThéologie de la libérationxPériodiques 3aFRbCCN0040-39894 uhttp://www.testimonianze.org/ zSommaires et résumés depuis le n°409, 20001 bvol. 12 no. 111 (1969) -....cParisdMagasins/AnnexeeP 8° 2642 aZPAY aexempb201105 aGEO RA6.03 Italie aDEW 20-2900986nls 2200289 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200011300124210000500237230002800242326001100270606007000281606005400351710005700405801001300462856010200475856005900577955000500636992002300641992001600664992001600680000124239820130522102711.0 a a20119999k fre 01 ba0 aeng aUS ar aak z  ad 10aThe Condition of educationb[Ressource électronique] / Etats-UnisbNational Center for Education Statistics a aRessource électronique aAnnuel aFormation professionnelleyEtats-UnisxStatistiquesxPériodiques aEducationyEtats-UnisxStatistiquesxPériodiques02aEtats-UnisbNational Center for Education Statistics 0aFRbFNSP4 uhttp://nces.ed.gov/programs/coe/zAccès au texte intégral des deux dernières édition en ligne4 zTexte intégral des deux dernières éditions en ligne1 r aGEO RC2 Etats-Unis aDEW 370-379 aDEW 310-31901372nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154207002600184210002400210326002500234326002600259326002700285517003200312606002900344606003900373710009500412856010100507856007700608856010800685856010800793955007000901972000900971991001800980992001200998013561154000007179320130319051919.01 a0263-2764 aFNSP328557 a0000071793 a19900101a19829999 ba0 aeng aGB aaga 10aTheory, culture & society 1aVol. 1, no. 1 (1982)- aLondoncSaged1982- a8 N°s par anb2006- aBimestrielb1999-2005 aTrimestrielb1982-199810aTheory, culture and society aSociologiexPériodiques aIdentité collectivexPériodiques02aTeesside Polytechnicc(Middlesbrough, GB)bDepartment of Administrative and Social Studies4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101644 zContenu : sommaires et résumés depuis le volume 15, n°3, octobre 19984 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 9 no. 1 (fev-1992) -....cParisdMagasins/AnnexeeP 8° 5873 aZSAB aexempb201112 aDEW 30100785nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210004400178326001500222606003600237801002100273856004500294856005900339955007000398972000900468991001800477992001200495038808307000004614720130319051919.01 a0040-5833 aFNSP235775 a0000046147 a19900101a19709999 ba0 aeng aNL aagu 10aTheory and decision aDordrechtcKluwer Academic Publ.d1970- aBimestriel aSciences socialesxPériodiques 3aFRbCCN0040-58334 uhttp://www.wkap.nl/jrnltoc.htm/0040-5833 zContenu : somaires depuis le vol. 38, n°1, janv. 19951 bvol. 1 no. 1 (oct-1970) -....cParisdMagasins/AnnexeeP 8° 2900 aZSAB aexempb200910 aDEW 30001258nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210004400177326001500221606002900236801002100265856004500286856006000331856009000391856010800481856012800589856010800717955006600825972000900891991001800900992001400918039379248000004614820130319051919.01 a0304-2421 aFNSP235776 a0000046148 a19900101a19749999 ba0 aeng aNL aagu 10aTheory and society aDordrechtcKluwer Academic Publ.d1974- aBimestriel aSociologiexPériodiques 3aFRbCCN0304-24214 uhttp://www.wkap.nl/jrnltoc.htm/0304-2421 zContenu : sommaires depuis le vol. 24, n°1, fév. 19954 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03042421.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=TSY&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1974) -....cParisdMagasins/AnnexeeP 8° 3594 aZSAB aexempb200911 aDEW 320.501236nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001800154210002400172326001600196606003800212606004000250606002900290801002100319856009500340856007800435856010800513856010800621955006000729957006800789972000900857991001800866992001400884039687651000004359020130319051919.01 a0725-5136 aFNSP227936 a0000043590 a19900101a19809999 ba0 aeng aGB aahu 10aThesis eleven aLondoncSaged1980- aTrimestriel aPhilosophie socialexPériodiques aPhilosophie politiquexPériodiques aSocialismexPériodiques 3aFRbCCN0725-51364 uhttps://acces-distant.sciences-po.fr/fork?http://www.sagepub.co.uk/journal.aspx?pid=105796 zContenu : sommaires depuis le vol. 48, fév. 1997 ; résumés depuis 19984 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 12 (1985) -....cParisdMagasins/AnnexeeP 8° 49621 bno. 1 (1980) -no. 63 (2000)cParisdMagasins/AnnexeeP 8° 4962 aZSAB aexempb201003 aDEW 320.501713nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210002800180326002500208606003500233607004900268676001000317710006800327801002100395856012800416856010800544856012800652856010800780856010900888856010800997955006901105955007001174972000901244991001801253992004201271992001401313039082946000000553220130319051920.01 a0143-6597 aFNSP108493 a0000005532 a19900319a19799999 ba0 aeng aGB aagu 10aThird world quarterly aAbingdoncCarfaxd1979- a8 n°s par anb2004- aAide économiquexPériodiques aPays en voie de développementxPériodiques a338.902aThird World Foundation for Social and Economic Studies (London) 3aFRbCCN0143-65974 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=TWQ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=TWQ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713448481db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 338.91 bvol. 1 no. 1 (jan-1979) -....cParisdMagasins/AnnexeeP 8° 4151 aZSAB aexempb201103 aGEO RO Pays en voie de développement aDEW 338.901329nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001600154210005500170326001600225440003300241530002300274606003500297607004900332710007100381801002100452856006300473856010000536856009000636856010800726955008000834972000900914992004200923992001400965013321374000000553520140103105648.01 a0040-7356 aFNSP108496 a0000005535 a19900319b19601996 ba0 afre aFR aaha 10aTiers monde aPariscPresses universitaires de Franced1960-1996 aTrimestriel 1tRevue tiers mondex1293-888210aTiers mondebParis aAide économiquexPériodiques aPays en voie de développementxPériodiques02aInstitut d'étude du développement économique et socialc(Paris) 3aFRbCCN0040-73564 uhttp://www.persee.fr/web/revues/home/prescript/revue/tiers zAccès libre au texte intégral à partir de 1960 à l'exception des années les plus récentes4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-tiers-monde.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1960) -no. 148 (dec-1996)cParisdMagasins/AnnexeeP 8° 1804 aZGRA aGEO RO Pays en voie de développement aDEW 338.901112cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200001300180210002700193326002100220326002600241517003100267530002200298606004600320606002900366801003000395801002300425802000700448856002900455955006900484955006300553955008500616992001200701992002500713104482826000117441720130319051920.01 a1778-9796 aissn17789796 a0001174417 a20060704a20069999m y0frey0103 ba0 afre aFR ay  ar accu uu 13aLe Tigre aPariscLe Tigred2006- aBimensuel$d2010- aBimestriel$d2006-200913aLe Tigreemagazine curieux13aLe Tigreb(Paris) aSatire politique françaisexPériodiques aActualitéxPériodiques 3aFRbAbesc20090312gAFNOR 3aFRbISSNc20080909 a074 uhttp://www.le-tigre.net/1 bL'année en courscParisd27, Salle Rez-de-chausséeeP F° 05591 bno. 1 (fev-2010) -....cParisdMagasins/AnnexeeP F° 05591 bno. 28 (nov/dec-2008) -no. 34 (nov/dec-2009)cParisdMagasins/AnnexeeP 4° 7254 aDEW 050 aGEO RA4.06 France 0101131nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210002400173326001800197517002100215606003800236606003600274856009500310856008800405856010800493856010800601955006900709972000900778991001800787992001200805040095681000005557020130319051920.01 a0961-463X aFNSP260125 a0000055570 a19900101a19929999 ba0 aeng aGB aaia 10aTime & society aLondoncSaged1992- a3 n°s par an10aTime and society aTemps (philosophie)xPériodiques aTempsxSociologiexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sagepub.co.uk/journal.aspx?pid=105797 zContenu : sommaires depuis le vol. 6, n°2, juil. 1997, résumés à partir de 19994 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no 1 (jan-1992) -....cParisdMagasins/AnnexeeP 8° 5788 aZSAB aexempb201111 aDEW 30100879nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210003600193300007200229326001700301422003000318430004800348606005300396801002100449856003000470955008700500992001400587039399524000003838420130919095729.01 a0307-661X aFNSP212806 a0000038384 a19900101a19699999 ba0 aeng aGB aa u 10aTLSethe Times literary supplement aLondoncTimes Newspapersd1969- aaPublication interrompue entre le 1er déc. 1978 et le 23 nov. 1979 aHebdomadaire 1aTimes (London)x0140-0460 1tTimes literary supplement (1902)x0040-7895 aLittératurexHistoire et critiquexPériodiques 3aFRbCCN0307-661X4 uhttp://www.the-tls.co.uk/1 bConservation limitée aux 5 dernières annéescParisdMagasins/AnnexeeP F° 1006 aDEW 80-8901041nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005100154207003100205210004000236326001500276517002200291606003600313676000800349710002600357801002100383856006700404856005600471955006700527955007000594972000900664991001800673992001200691039690717000001443920130319051921.01 a0730-479X aFNSP139537 a0000014439 a19900101a19799999 ba0 aeng aUS aaju 14aThe Tocqueville reviewd= La revue Tocqueville 1avol. 1, no. 1 (fall 1979)- aPariscSociété Tocquevilled1979- aSemestriel10aRevue Tocqueville aSciences socialesxPériodiques a32002aSociété Tocqueville 3aFRbCCN0730-479X4 uhttp://americancenter.sciences-po.fr/Research/Tocqueville1.htm zContient : sommaires depuis le vol. 13, no. 1, 19921 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bvol. 1 no. 1 (aut-1979) -....cParisdMagasins/AnnexeeP 8° 4256 aZSAB aexempb201104 aDEW 30000778nas 2200265 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000022001552100059001773260016002365300022002526070024002747120045002988560040003438560037003839550071004209920021004910000043649000004364920130319051921.01 a0916-3085 aFNSP228056 a0000043649 a19900101a19889999 ba0 aeng aJP aaha 10aTokyo Club papers aTokyocTokyo Club Foundation for Global Studiesd1988- aTrimestriel00aTokyo Club papers aJaponxPériodiques02aTokyo Club Foundation for Global Studies4 uhttp://www.tcf.or.jp/tcp/tcptop.htm zAccès libre au texte intégral.1 bno. 1 (1988) -no. 6 (2) (1993)cParisdMagasins/annexeeP 4° 5433 aGEO RI3.22 Japon01195nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005100163210003400214326002700248326002900275440004500304606005000349606003500399606004000434606003200474801001300506856010900519856010800628955009600736972000900832992001600841058262474000040231120130319051921.01 a1469-0764 a0000402311 a b20002010k fre ba0 aeng aGB a 0  ar aah z 0 10aTotalitarian movements and political religions aIlfordcFrank Cassd2000-2010 aTrimestrielb2006-2010 a3 n°s par anb2000-2005 1tPolitics, religion & ideologyx2156-7689 aTotalitarismexAspect religieuxxPériodiques aReligion et EtatxPériodiques aReligion et politiquexPériodiques aAutoritarismexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713636813db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (ete-2000) -vol. 11 no. 3/4 (sep/dec-2010)cParisdMagasins/AnnexeeP 8° 6579 aZSAB aDEW 320-32100975cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200003400156210004700190326001500237606003200252606003000284710007700314801003000391801002300421802000700444856004700451856007200498955006600570972000900636992001600645078925592000091296520130319051921.01 a1612-9008 aissn16129008 a0000912965 a20030523a20049999 0fre 0103 ba0 amul aDE aaj 10aTotalitarismus und Demokratie aGöttingencVandenhoeck u. Ruprechtd2004- aSemestriel aTotalitarismexPériodiques aDémocratiexPériodiques02aHannah-Arendt-Institut für Totalitarismusforschungc(Dresde, Allemagne) 3aFRbAbesc20040615gAFNOR 3aFRbISSNc20030523 a064 uhttp://www.v-r.de/de/zeitschriften/500056/ zAccès aux sommaires et résumés d'articles en anglais depuis 20051 bvol. 1 no. 1 (2004) -....cParisdMagasins/AnnexeeP 8° 6848 aZPAY aDEW 320-32101535cas0 2200433 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101001300125102000700138105001800145106000600163110001600169200006300185207002400248210007000272300003800342304007100380326002200451326002700473430007500500530002000575532005600595607004000651607005100691607002600742607003700768710006200805801003000867802000700897856005500904856004600959955006401005992002001069992001201089039136027000117423720130319051923.01 a0185-6286 accn0185-6286 a0001174237 a19980721a19849999k 0frey0103 ba0 aspaafre aMX ay  ar aay 10aTraceetravaux et recherches dans les amériques du centre 0aNo 7 (oct. [1984])- aMexicocCentre d'études mexicaines et centraméricainesd[1984]- aTexte en français et en espagnol aCoéd., jusqu'en 1986, par l'Institut français d'Amérique latine aSemestrielb1988- aIrrégulierb1984-1987 1tBulletin - Centre d'études mexicaines et centraméricainesx0185-413510aTraceb(Mexico)10aTravaux et recherches dans les amériques du centre aMexiquexCivilisationxPériodiques aAmérique centralexCivilisationxPériodiques aMexiquexPériodiques aAmérique centralexPériodiques02aCentro de estudios mexicanos y centroamericanosc(Mexico) 3aFRbAbesc20090304gAFNOR a0Q4 uhttp://www.cemca.org.mx/contenido.php?contenido=39 zContenu : sommaires des derniers numéros1 bno. 46 (dec-2004) -....cParisdMagasins/AnnexeeP 4° 7252 aGEO RD1 Mexique aDEW 97201440cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200009700180207001700277210002600294305010800320326001500428517001800443606003600461606003600497710006800533801003000601801002300631802000700654856004100661856004200702856008500744856010800829955006900937992001201006992002401018076270394000112783120130531142715.01 a1763-0061 aissn17630061 a0001127831 a20030523a20039999k y0frey0103 ba0 afre aFR ay  ar aaju uu 10aTracéserevue de sciences humainesfÉcole normale supérieure Lettres et sciences humaines 0aNo 3 (2003)-1 aLyoncENS éd.d2003- aLes numéros 1 et 2 ont été publiés uniquement sur le net à l'adresse : www.ens-lsh.fr/assoc/traces aSemestriel10aRevue Tracés aSciences humainesxPériodiques aSciences socialesxPériodiques02aÉcole normale supérieure-Lettres et sciences humainesc(Lyon) 3aFRbAbesc20071128gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.revues.org/index1973.html zContenu : texte intégral depuis 20044 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-traces.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 12 (2007) -no. 23 (2012)cParisdMagasins/AnnexeeP 8° 6992 aDEW 300 aGEO RA4 . 06 France01009nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210002600187326001100213451006000224601008500284606004100369710007100410801002100481856010000502955005900602972000900661992002100670992001600691039276996000010033320130417172402.01 a0255-4607 aFNSP433724 a0000100333 a19900101a19819999 f ba0 aeng aCH aaku 10aTrade and development report aGenevacUNCTADd1981- aAnnuel 1aRapport sur le commerce et le développementx0256-088702aConférence des Nations Unies sur le commerce et le développementxPériodiques aCommerce internationalxPériodiques02aConférence des Nations Unies sur le commerce et le développement 3aFRbCCN0255-46074 uhttp://www.unctad.org/Templates/Page.asp?intItemID=2508&lang=1zAccès libre au texte intégral1 b(1981) -(2006)cParisdMagasins/AnnexeeP 4° 4829 bis aZPAY aGEO RQ Universel aDEW 380-38201067nas 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000101001502070010002512100034002613260011002956060067003066060068003737100071004418010013005128560052005258560036005779550075006139720009006889920042006979920014007390000630860000063086020130319051923.0 a0000630860 a a20049999 fre 01 ba0 aeng aCH a 0  ar aak z 0 10aTrade and environment reviewfConférence des Nations Unies sur le commerce et le développement 1a2004- aGenèvecNations Uniesd2004- aAnnuel aPolitique de l'environnementxAspect économiquexPériodiques aCommerce internationalxAspect de l'environnementxPériodiques02aConférence des Nations Unies sur le commerce et le développement 0aFRbFNSP4 uhttp://r0.unctad.org/trade_env/test1/openF1.htm zAccès libre au texte intégral1 b(2003) ; (2006) ; (2009/2010)-....cParisdMagasins/AnnexeeP 4° 7038 aZGRA aGEO RO Pays en voie de développement aDEW 330.900914nas 2200301 i 450 0010011000000020011000110050017000220110014000390110005000530350015000580350015000731000041000881010008001291020007001371100016001442000071001602100035002313260011002664300115002776060027003926060027004197100018004468560051004649550055005159720009005709920012005799920021005910000134479000013447920130319051924.0 a0255-72581 a aFNSP541826 a0000134479 a19940819a19829999 f ba0 afre aUS aaka 10aTraités multilatéraux déposés auprès du Secrétaire général aNew YorkcNations Uniesd1982- aannuel 1aTraités multilatéraux pour lesquels le Secrétaire général exerce les fonctions de dépositairex0251-7876 aTraitésxRépertoires aTraitésxPériodiques aNations Unies4 uhttp://treaties.un.org/Pages/Home.aspx?lang=fr1 b(1981)-(2004)cParisdMagasins/AnnexeeNU 4° 0714 aZGRA aDEW 341 aGEO RQ Universel01003cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101001800125102000700143105001800150106000600168110001600174200006600190210003100256326001500287606003600302606004400338676000800382801003000390801002300420802000700443856006800450955006700518955005900585972000900644992001200653099272237000101177620130319051925.01 a1950-1684 aissn19501684 a0001011776 a20060419a20059999k y0frey0103 ba0 afredfredeng aFR a 0  ar aaj 0 10aTranscontinentalesesociétés, idéologies, système mondial aPariscArmand Colind2005- aSemestriel aSciences socialesxPériodiques aRelations internationalesxPériodiques a320 3aFRbAbesc20060727gAFNOR 3aFRbISSNc20060401 a074 uhttp://www.revues.msh-paris.fr/Modele2/perbook2.asp?id_perio=711 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 1 (2005) -....cParisdMagasins/AnnexeeP 8° 6911 aZPAY aDEW 32000751nls 2200265 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000046001502100065001962300024002616060051002858010013003368560034003498560051003839550005004349920012004399920034004510001166444000116644420130319051925.0 a0001166444 a a20099999k fre 01 ba0 afre aFR ar aaz z  adr 10aTranseo Reviewb[Ressource électronique] aPariscPour un espace des sciences sociales européend2009- aRevue électronique aSociologie de la culturexPériodiquesyEurope 0aFRbFNSP4 uhttp://www.transeo-review.eu/ zContenu : texte intégral depuis le n°1, 20091 r aDEW 301 aGEO RA2.01 Europe occidentale01182cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200008900180210003300269326001500302423004600317530002500363606004400388606004500432710002600477801003000503801002300533802000700556856007400563856007900637955005900716992001200775992003300787133934713000117084620130319051925.01 a2102-0663 aissn21020663 a0001170846 a20090602a200 9999k y0frey0103 ba0 afre aFR ay  ar aaju uu 10aTransform !erevue européenne pour une pensée alternative et un dialogue politique aPariscEspaces Marxd[200.]- aSemestriel 1tRevue Espaces Marx (Hellemmes)x1162-762X10aTransform !b(Paris) aIdées politiquesyFrancexPériodiques aGauche (science politique)xPériodiques02aEspaces Marx (France) 3aFRbAbesc20090702gAFNOR 3aFRbISSNc20090602 a074 uhttp://www.transform-network.net/en/home/journal-transformeurope.html zContenu : articles en texte intégral en anglais à partir du no. 2 (2008)1 bno. 2 (2008) -....cParisdMagasins/AnnexeeP 8° 7098 aDEW 320 aGEO RS Sans aspect régional00852nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210004000173326001700213530002700230607003300257856004900290856008200339955006800421972000900489991001800498992003000516992001600546039300919000008546620130531165131.01 a0258-7696 aFNSP379785 a0000085466 a19900101a19869999 ba0 aeng aZA aaia 10aTransformation aaDurbancUniversity of Natald1986- a3 nos par an10aTransformationbDurban aAfrique du SudxPériodiques4 uhttp://muse.jhu.edu/journals/transformation/ zContenu : accès aux sommaires et résumés des articles depuis le n°49,20021 bno. 7 (1988) -no. 69 (2009)cParisdMagasins/AnnexeeP 8° 5919 aZCAD aexempb201111 aGEO RF3.19 Afrique du Sud aDEW 966-96900886nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001200154210004200166326001500208530002300223606004000246710005000286856007800336856004700414955005900461972000900520991001800529992002500547992001200572040054926000008529020130319051926.01 a0938-2062 aFNSP379119 a0000085290 a19900101a19909999 ba0 ager aDE aaja 10aTransit aFrankfurt am MaincNeue Kritikd1990- aSemestriel 0aTransitbFrankfurt aSociologieyAllemagnexPériodiques02aInstitut für die Wissenschaften vom Menschen4 uhttp://www.iwm.at/index.php?option=com_content&task=view&id=63&Itemid=273 zContenu : sommaires depuis le n°1 en 19901 bno. 1 (1990) -....cParisdMagasins/AnnexeeP 8° 5916 aZCAD aexempb201202 aGEO RA5.01 Allemagne aDEW 30101594nas 2200385 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000720015421000680022630001080029430000720040232600110047443000250048560100810051060700510059160700700064260700680071260700490078067600100082971000670083985601180090695500550102497200090107999100180108899200560110699200320116299200140119404877989X000020929620140117121816.0 a1151-3713 aFNSP758438 a0000209296 a19900101a19949999 ba0 aeng aGB aaka 10aTransition reportfEuropean Bank for Reconstruction and Development aLondoncEuropean Bank for Reconstruction and Developmentd1994- aMises à jour entre 2 éditions appelées : Transition report update, et conservées sous la même cote a2009 dernière édition papier, à partir de 2010 version en ligne. aAnnuel 1aEBRD economic review02aBanque européenne pour la reconstruction et le développementxPériodiques aEx-URSSxConditions économiquesxPériodiques aEurope de l'EstxConditions économiquesz1989-....xPériodiques aEurope de l'EstxPolitique économiquez1989-....xPériodiques aEx-URSSxPolitique économiquexPériodiques a338.902aBanque européenne pour la reconstruction et le développement4 uhttp://www.ebrd.com/pages/research/publications/flagships/transition.shtmlzAccès au texte intégral depuis 19981 b(1994) -(2009)cParisdMagasins/Annexe :P 4° 6661 aZPAY aexempb201401 aGEO RA7.02 Etats successeurs de l'Union soviétique aGEO RA2.02 Europe orientale aDEW 338.901357nls 2200349 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000099001502100069002492300024003183260011003426010081003536070051004346070070004856070068005556070049006236760010006727100067006828010013007498560138007629550005009009920056009059920032009619920014009930001239076000123907620130521100717.0 a0001239076 a a19989999k fre 01 ba0 aeng aGB ar aak z  adr 10aTransition reportb[Ressource électronique]fEuropean Bank for Reconstruction and Development aaLondoncEuropean Bank for Reconstruction and Developmentd1998- aRevue électronique aAnnuel02aBanque européenne pour la reconstruction et le développementxPériodiques aEx-URSSxConditions économiquesxPériodiques aEurope de l'EstxConditions économiquesz1989-....xPériodiques aEurope de l'EstxPolitique économiquez1989-....xPériodiques aEx-URSSxPolitique économiquexPériodiques a338.902aBanque européenne pour la reconstruction et le développement 0aFRbFNSP4 uhttp://www.ebrd.com/pages/research/publications/flagships/transition.shtmlzaccès au texteintégral du rapport en ligne depuis 1998.1 r aGEO RA7.02 Etats successeurs de l'Union soviétique aGEO RA2.02 Europe orientale aDEW 338.901243nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001600154210003000170300003200200326001500232430003900247530003300286607003400319607007200353676001000425710012200435856006300557856005400620955006800674955006800742972000900810991001800819992003200837992001200869039741877000008920420130319051926.01 a0779-3812 aFNSP393272 a0000089204 a19900101a19939999 ba0 afre aBE aaja 10aTransitions aBruxellescCRITEMEd1993- aArrive avec 2 ans de retard aSemestriel 1aRevue des pays de l'Estx0303-961710aTransitionsbBruxelles. 1993 aEurope de l'EstxPériodiques aEurope de l'EstxPolitique et gouvernementz1989-....xPériodiques a943.702aCentre de recherches interdisciplinaires sur la transition vers l'économie de marché des pays de l'Estc(Bruxelles)4 uhttp://www.ulb.ac.be/soco/cevipol/GASSPECO/Transitions.htm zContenu : sommaires depuis le vol. 34, no 2, 19931 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 943.71 bvol. 34, no. 1 (1993) -....cParisdMagasins/AnnexeeP 8° 2006 aZPAY aexempb201004 aGEO RA2.02 Europe orientale aDEW 30001033nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004700154210003500201326001700236430003200253606004600285676000800331710006400339856006700403856007300470955006700543955007000610972000900680991001800689992001200707040152928000008612120130319051926.01 a1014-9562 aFNSP381996 a0000086121 a19900101a19929999 f ba0 aeng aUS aaia 10aTransnational corporationsfUnited Nations aNew YorkcNations Uniesd1992- a3 nos par an 1aCTC reporterxISSN0255-4216 aEntreprises multinationalesxPériodiques a33802aCentre des Nations Unies sur les sociétés transnationales4 uhttp://www.unctad.org/Templates/Page.asp?intItemID=2926&lang=1 zContient : texte intégral des articles depuis le vol. 1 no. 1, 19921 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3381 bvol. 1 no. 1 (fev-1992) -....cParisdMagasins/AnnexeeP 8° 5923 aZSAB aexempb201202 aDEW 33800748nas 2200253 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210002400188326001600212606003400228856004200262856007300304955008300377991001800460992001600478110659554000018147320130319051927.01 a1357-7387 aFNSP675860 a0000181473 a19900101a19959999 ba0 aeng aGB aaha 10aTransnational organized crime aIlfordcCassd1995- aTrimestriel aCrime organiséxPériodiques4 uhttp://www.frankcass.com/jnls/toc.htm zContenu : sommaires depuis le vol. 1, n°1 ; résumés du n° actuel1 bvol. 1 no. 1 (1995) -vol. 4 no. 3/4 (1998)cParisdMagasins/AnnexeeP 8° 6215 aexempb201211 aDEW 364-36501226nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210004500187210003100232210003300263326001500296430003600311606003400347606004700381676000800428710009200436856010500528856010800633955006700741955005900808972000900867992001200876045092052000027283720130319051927.01 a1294-6303 aFNSP941337 a0000272837 a19990518a19999999 ba0 afre aFR aaja 10aTravail, genre et sociétés aParisaMontréalcL'Harmattand1999-2004 aPariscA. Colind2005-2008 aPariscLa Découverted2009- aSemestriel 1aLes Cahiers du MAGE,x1269-0236 aFemmesxTravailxPériodiques aDivision sexuelle du travailxPériodiques a33102aCentre national de la recherche scientifiquec(France)bGroupement de recherchec(1176)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-travail-genre-et-societes.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3311 bno. 1 (1999) -....cParisdMagasins/AnnexeeP 8° 6237 aZPAY aDEW 33101372cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200009400180210009000274300009200364430003500456517000800491517002900499530005200528540002000580710008100600801003000681801002300711801001300734802000700747856003600754856007000790955006900860972000900929992002400938992001200962055391605000040531020130319051927.01 a1377-4573 aissn13774573 a0000405310 a20010427b20002005k y0frey0103 ba0 afre aBE ay  ar aahu uu 10aTravail emploi formationfCentre de sociologie du travail, de l'emploi et de la formation aBruxellescCentre de sociologie du travail, de l'emploi et de la formationd2000-2005 aLa version papier s'arrête en 2005. Elle est remplacée par une version électronique. 1tCritique régionalex0770-007510aTEF10aTravail emploi formation00aCahiers de sociologie et d'économie régionale10atef (Bruxelles)02aCentre de sociologie du travail, de l'emploi et de la formationc(Bruxelles) 3aFRbAbesc20091020gAFNOR 3aFRbISSNc20020530 0aFRbFNSP a0m4 uhttp://www.ulb.ac.be/socio/tef/ zContenu : texte intégral depuis le n° 18 de Critique Régionale1 bno. 1/2 (2000) -no. 3 (2004)cParisdMagasins/AnnexeeP 8° 4419 aZPAY aGEO RA4.04 Belgique aDEW 30301313nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006800154210006400222326001600286606004800302606004500350606005200395710008200447801002100529856014600550856006600696955006300762957007000825957003700895972000900932992002200941992001200963013304461000000553720140106174822.01 a0224-4365 aFNSP108499 a0000005537 a19900319a19799999 ba0 afre aFR aahu 10aTravail et emploifMinistère du travail et de la participation aaPariscMinistère du travail et de la participationd1979- aTrimestriel aPolitique de l'emploiyFrancexPériodiques aMarché du travailyFrancexPériodiques aFormation professionnelleyFrancexPériodiques02aFrancebMinistère du travail, de l'emploi et de la formation professionnelle 3aFRbCCN0224-43654 uhttp://travail-emploi.gouv.fr/etudes-recherches-statistiques-de,76/etudes-et-recherches,77/publications-dares,98/revue-travail-et-emploi,103/ zcontenu : accès au texte intégral depuis le n°1, juin 19791 bno. 1 (jun-1979) -....cParisdMagasins/AnnexeeP 4° 43991 bno. 1 (1979) -no. 78 (1999)cParisdMagasins/AnnexeeP Index 04571 zvoir aussi BALISESeP Index 0752 aZPAY aGEO RA4.06 France aDEW 33100839nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000061001502100043002112300024002543260005002786060043002838010013003268560072003398560108004119550005005199920025005249920012005490000977514000097751420130319051927.0 a0000977514 a a20049999k fre 01 ba0 afre aFR ar aaz z  adr 10aTravail et protection socialeb[Ressource électronique] aPariscLexisNexis Jurisclasseurc2004- aRevue électronique a aDroit du travailyFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 34400906nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008200154210005100236326001600287606004000303606003700343801002100380856009700401856004200498955006700540972000900607992001200616039235750000004403720130319051928.01 a0041-1868 aFNSP229166 a0000044037 a19900101a19339999 ba0 afre aFR aahu 13aLe Travail humainea bilingual and multidisciplinary journal in human factors aPariscPresses universitaires de Franced1933- aTrimestriel aConditions de travailxPériodiques aMarché du travailxPériodiques 3aFRbCCN0041-18684 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-le-travail-humain.htm? zAccès aux sommaires et aux résumés1 bvol. 48 no. 1 (1985) -....cParisdMagasins/AnnexeeP 8° 0168 aZPAY aDEW 33101169cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118110001600125200008500141207001000226210004600236326001600282423009200298517003400390606004400424606002800468710007800496801003000574801002300604802000700627856008200634955006500716972000900781992002500790992001600815058809945000083055420131029095921.01 a1626-7192 aissn16267192 a20010721a20009999 0fre 0103 ba0 afre aFR aau 14aLes Travaux de l'Observatoire national de la pauvreté et de l'exclusion sociale 0a2000- aPariscla Documentation françaised2000- aIrrégulier 1tRapport de l'Observatoire national de la pauvreté et de l'exclusion socialex1626-720614aLes Travaux de l'Observatoire aExclusion socialeyFrancexPériodiques aPauvretéxPériodiques02aObservatoire national de la pauvreté et de l'exclusion socialec(France) 3aFRbAbesc20050315gAFNOR 3aFRbISSNc20010721 a074 uhttp://www.ladocumentationfrancaise.fr/rapports-publics/084000261/index.shtml1 b(2003/2004) -(2007/2008)cParisdMagasins/AnnexeeP 8° 6829 aZCAD aGEO RA4.06 France 01 aDEW 360-36301002nas 2200289 i 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102110001600109200005700125207001100182210004100193422005300234430004200287606005100329606007300380710005800453856007800511955005500589991001800644992002200662992001200684992001600696167146955000010502220131104104526.0 aFNSP447278 a19900101b19922000 ba0 afre aFR aaka 10aTravaux universitaires inédits de science politique 1aAnnuel aPariscPresses de la FNSPd1992-2000 1tRevue française de science politiquex0035-2954 1aTravaux inédits de science politique aScience politiquexBibliographiexPériodiques aThèses et écrits académiquesyFrancexBibliographiexPériodiques02aFondation nationale des sciences politiquesc(France) uhttp://tuisp.online.fr/sommaire.phpzAccés libre au sommaire depuis 19621 b(1992) -(1999)cParisdMagasins/AnnexeeP 8° 5540 aexempb201306 aGEO RA4.06 France aDEW 010 aDEW 320-32101150nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001400154210004700168326002200215326002700237517004800264601004200312606004400354606005700398710002800455801002100483856005900504856007800563955006600641972000900707992005100716992002100767992001200788039337626000004404520130319051928.0 a0275-5351 aFNSP229188 a0000044045 a19900101b19732002 ba0 aeng aUS aaku 10aTrialogue aNew YorkcTrilateral Commissiond1973-2002 aAnnuelb1985-2002 aTrimestrielb1973-198410aAnnual meeting of the Trilateral Commission02aCommission trilatéralexPériodiques aRelations internationalesxPériodiques aRelations économiques internationalesxPériodiques02aCommission trilatérale 3aFRbCCN0275-53514 uhttp://www.trilateral.org/annmtgs/trialog/trlglist.htm zsommaire de la réunion annuelle de la Commission trilaterale depuis 19731 rno 2 (1973) -no 55 (2001)cParisdMagasins/AnnexeeP 4° 4212 aZGRA aGEO RN1 Pays industrialisés, pays occidentaux aGEO RQ Universel aDEW 32701248nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001200139207007000151210004100221210004300262300004800305326001700353430003700370530002500407856002900432856019200461856010800653955006900761955006700830992002500897992001200922040521427000020331820131126151926.01 a1277-2380 aFNSP741133 a19900101a19962012 ba0 afre aFR acaa 00aTribune 1aNo 1027 (nov1996)- no 4903 ( janv. 2012) ; No 001 (13 avr. 2012)- aPariscTribune Desfossésd1996-2012 aPariscLa Tribune nouvelle, SASd2012- aHebdomadaire (2012-).-Quotidien (1996-2012) aHebdomadiare 1aLa Tribune Desfossésx1277-238010aTribunebParis. 19964 uhttp://www.latribune.fr/4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bL'année en courscParisd27, Salle Rez-de-chausséeeP F° 12881 bNo 001 (13 avr. 2012-....)cParisdMagasins/AnnexeeP F° 1288 aGEO RA4.06 France 01 aDEW 05000978nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001800139210005100157326002300208326002800231422005400259430002700313530003400340606002800374606003200402801002100434856002200455955011400477972000900591992002200600992001400622992001600636039323161000004407220131015114240.01 a0220-4398 aFNSP229257 a19900101b19782010 ba0 afre aFR aafu 10aTribune juive aPariscPublications juives réuniesd1978-2010 aMensuelb2004-2010 aHebdomadaireb1978-2003 1aTribune des étudiants amis d'Israël,x0244-4615 1aT.J. hebdo,x0220-4851 aTribune juive‎bParis. 1978 aJudaïsmexPériodiques aJuifsyFrancexPériodiques 3aFRbCCN0220-43984 uhttp://www.col.fr1 bno 535 (sep-1978) -no 1751 (mai-2003) ; no 1 (oct-2004) -no 59 (aou-2010)cParisdMagasins/AnnexeeP 4° 2535 aZPAY aGEO RA4.06 France aDEW 20-29 aDEW 305-30601068nas0 2200289 i 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102110001600109200002600125207002300151210006500174326001600239430003900255606003400294606003800328801003000366856010400396856010800500955006600608955006600674992002600740992001200766132450259000116573620130319051928.0 a0001165736 a20090402a2008 k 1frey0103 ba0 afre aFR aaha 10aTribunes de la santé 0aN°19 (Eté 2008)- aPariscles Editions de santécPresses de Sciences Pod2008- aTrimestriel 1tSève :eles tribunes de la santé aSanté publiquexPériodiques aPolitique sanitairexPériodiques 3aFRbAbesc20090402gAFNOR4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-les-tribunes-de-la-sante.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 4e étageeDEW 3601 bno. 19 (été-2008) -....cParisdMagasins/AnnexeeP 8° 6765 aGEO RA4. 06 France 01 aDEW 36001060nls 2200253 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000108001502100131002582300024003893260033004133370112004468010013005588300007005718560053005789550175006310000708960000070896020130319051929.0 a0000708960 a a19949999k fre 01 ba0 ager aDE ar aau z  adr 10aTübinger Arbeitspapiere zur internationalen Politik und Friedensforschungb[Ressource électronique]f aTübingencInstitut für Politikwissenschaft, Abteilung Internationale Beziehungen, Friedens- und Konfliktforschungd1994-.... aDonnées textuelles aCollection de working papers aTexte intégral au format pdf, télédéchargeable à partir du n° 23, 1994 avec Adobe Acrobat sur le site 0aFRbFNSP aBH4 uhttp://www.uni-tuebingen.de/uni/spi/tapliste.htm1 rLa bibliothèque possède la collection papier des n° parus en 1996 et 2003, à rechercher dans l'index Collection. A partir de 2004, consultable uniquement sur Internet01161nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001300154210005900167210003400226210002900260326001500289530002000304606003900324606003700363607004500400710008300445856008900528856010800617955005900725972000900784991001800793992001200811040092836000012992020130319051929.01 a1243-549X aFNSP528380 a0000129920 a19940614a19929999 ba0 afre aFR aaja 10aTumultes aPariscCSPRP, Université Paris VII Diderotd1992-1994 aPariscL'Harmattand1994-1997 aPariscÉd. Kiméd1998- aSemestriel00aTumultesbParis aSociologie politiquexPériodiques aVie intellectuellexPériodiques aFrancexVie intellectuellexPériodiques02aCentre de sociologie des pratiques et des représentations politiquesc(Paris)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/accueil.php?PG=START zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1992) -....cParisdMagasins/AnnexeeP 8° 6040 aZCAD aexempb201201 aDEW 00101222nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002000163210003000183326002500213326002600238607005000264607005300314801001300367856010300380856006800483856010900551856010800660955007000768972000900838992001400847992002300861058261117000040516620130319051930.01 a1468-3849 a0000405166 a a20009999k fre ba0 aeng aGB a 0  ar aai z 0 10aTurkish studies aIlfordcFrank Cassd2000- a3 n°s par anb2003- aSemestrielb2000-2002 aTurquiexRelations extérieuresxPériodiques aTurquiexPolitique et gouvernementxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713636933 zContenu : sommaires et résumés depuis le volume 1, n°1, 20004 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713636933db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (pri-2000) -....cParisdMagasins/AnnexeeP 8° 6563 aZSAB aDEW 956.1 aGEO RA6.06 Turquie00966nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200001200138210006100150326001800211607003200229710004800261801002100309856005400330856004000384955008900424957007200513972000900585991001800594992003600612992001600648036520462000004422720130319051931.01 a0041-5715 aFNSP229614 a0000044227 a19900101b19702008 ba0 aeng aUS10aUfahamu aLos Angeles, Calif.cUniversity of Californiad1970-2008 a3 n°s par an aAfrique noirexPériodiques02aAfrican Activities Association (Etats Unis) 3aFRbCCN0048/08514 uhttp://www.international.ucla.edu/africa/ufahamu/ zContenu : informations sur la revue1 bvol. 1 no. 1 (1970) -vol. 34 no. 1/2 (2007/2008)cParisdMagasins/AnnexeeP 8° 27911 bvol. 1 (1970) -vol. 29 (2003)cParisdMagasins/AnnexeeP Index 0857 aZCAD aexempb201105 aGEO RF Afrique au sud du Sahara aDEW 966-96900791nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210003300182326001600215607002600231710004400257801002100301856004300322955008700365972000900452992004000461992001200501038811251000004422820130530164817.01 a0041-6010 aFNSP229615 a0000044228 a19900101a19449999 ba0 aeng aUS aahu 14aThe Ukrainian quarterly aNew York, N.Y.cUKCCAd1944- aTrimestriel aUkrainexPériodiques02aUkrainian Congress Committee of America 3aFRbCCN0041-60104 uhttp://ucca.org/en/ukrainian-quarterly1 bvol. 8 no. 4 (1952) -vol. 66 no 3/4 (win-2010)cParisdMagasins/AnnexeeP 8° 1219 aZPAY aGEO RA7.32 Ukraine (depuis 1991-92) aDEW 94700963nas0 2200301 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123110001600141200003000157210009600187326001600283606004400299606004400343607002600387801003000413856004200443856006600485955007200551972000900623992001200632992001700644113737246000107928520130319051932.01 a1304-7310 a0001079285 a20070403a20049999k y0frey0103 ba0 atur aTR a 0  aahan 0 10aUluslararası İlişkiler aAnkaracBaşkent Üniversitesi Siyaset Bilimi ve Uluslararası İlişkiler Bölümüd2004- aTrimestriel aRelations internationalesxPériodiques aRelations internationalesxPériodiques aTurquiexPériodiques 3aFRbAbesc20070403gAFNOR4 uhttp://www.uidergisi.com/sayilar.html4 zContenu : sommaires et résumés depuis le vol. 1, no 1, 20041 bvol. 1 no. 1 (mar-2004) - ....cParisdMagasins/AnnexeseP 8° 6955 aZSAB aDEW 327 aGEO RA6 . 0601957cas0 2200457 450 001001000000002001100010005001700021011001400038020001700052035001400069035001500083100004100098101001300139102000700152105001800159106000600177110001600183200019300199207001900392210003600411430009100447452025500538510004000793517007800833606003900911606004500950676000800995710007101003801003001074801001501104801001501119801001601134801003001150856009801180856005101278955006201329955006201391972000901453992002101462992001601483088099369000071381620130319051933.01 a0251-9461 aUSb00224716 a073461040 a0000713816 a20050630a20009999k f0undy0103 ba0 aengafre aUS a 0  ar azkai# 0yy 00aUNCTAD handbook of statisticsfUnited Nations Conference on Trade and Developmentd= Manuel de statistiques de la CNUCEDfConférence des Nations unies sur le commerce et le développement 0aNo. 25 (2000)- aNew YorkcUnited Nationsd2000- 1tHandbook of international trade and development statistics - United Nationsx0251-9461 |tUNCTAD handbook of statistics on CD-RombRessource electroniquel= Manuel de statistiques de la CNUCED sur CD-RomfUnited NationscNew YorknUnited Nations conference on trade and developmentd2002p1 disque optique numérique (CD-ROM)y92-1-012047-710aManuel de statistiques de la CNUCED10aUnited Nations Conference on Trade and Development handbook of statistics aCommercial statisticsxPeriodicals aCommercexStatistiquesxPériodiques2lc a33700aConférence des Nations Unies sur le commerce et le développement 3aFRbAbesc20060222gAFNOR 0bNICgAACR2 1bDLCgAACR2 2bMH-LgAACR2 3aFRbAbesc20040119gAFNOR4 uhttp://www.unctad.org/Templates/webflyer.asp?docid=4324&intItemID=1397&lang=1&mode=highlights zAccés au texte intégral de l'année en cours1 bLa dernière annéecParisd27, Salle 1er étageeDEW 3371 b(2000) ; (2002) -....cParisdMagasins/AnnexeeP 4° 7056 aZGRA aGEO RQ Universel aDEW 310-31901068nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000390013921000240017832600110020251700180021353000390023160600570027071000520032771100480037985601730042795500550060095500550065597200090071099200310071999200160075003646306X000013799920130717151815.0 a0950-7558 aFNSP550139 a19941011a19489999 ba0 aeng aGB aaka 10aUnited Kingdom balance of payments aLondoncHMSOd1948- aAnnuel10aThe Pink book00aUnited Kingdom balance of payments aBalance des paiementsyGrande-BretagnexPériodiques02aGrande-BretagnebGovernment Statistical Service02aGrande-BretagnebCentral Statistical Office4 uhttp://www.ons.gov.uk/ons/publications/index.html?pageSize=50&sortBy=none&sortDirection=none&newquery=pink+book&content-type=BookzAccés au texte intégral depuis 20011 b(2002) -(2007)cParisdMagasins/AnnexeeP 4° 70101 b(1963) -(2001)cParisdMagasins/AnnexeeCOL4°1668 aZPAY aGEO RA4.02 Grande-Bretagne aDEW 380-38201246nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116200004300123210003900166326001100205430011500216436005300331440010100384530004300485606004900528710004300577801002100620830005300641856011000694955005500804972000900859991001700868992002300885992001200908039974987000010024920131008111212.01 a0884-1063 aFNSP433553 a19900101b19842001 ba0 aeng aUS10aUnited States government annual report aWashington, D.C.cUSGPOd1984-2001 aAnnuel 1aTreasury combined statement of receipts, expenditures, and balances of the United States Governmentx0191-2062 1tUnited States government annual report. Appendix 1tCombined statement of receipts, outlays, and balances of the United States governmentx1936-001000aUnited States government annual report aFinances publiquesyEtats-UnisxPériodiques01aEtats-UnisbDepartment of the Treasury 3aFRbCCN0884-1063 a1985-1994 : collection envoyée au CTles en 20134 uhttp://www.fms.treas.gov/annualreport/backissues.htmlzAccés au texte intégral des rapports depuis 19951 b(1985) -(1994)cParisdMagasins/AnnexeeP 4° 5175 aZCAD aexemp$201306 aGEO RC2 Etats-Unis aDEW 33601318nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154210013100190300003800321326001100359430006000370530004200430607004500472710004700517856017100564856006500735955006000800955005400860972000900914991001800923992002300941992001600964038895366000007444820140115110302.01 a0092-1904 aFNSP339764 a0000074448 a19900101a19739999 ba0 aeng aUS aaka 10aUnited States government manual aWashington, D.CcOffice of the Federal Register, National Archives and Records Service, General Services Administrationd1974- aA partir de 2012 version en ligne aAnnuel 1aUnited States government organization manualx0083-117400aUnited States government manualb1974 aEtats-UnisxAdministrationxPériodiques02aEtats-UnisbOffice of the Federal Register4 uhttp://www.gpo.gov/fdsys/browse/collection.action?collectionCode=GOVMAN&browsePath=1995-1996%3BGOVMAN-1995-07-01%3B&isCollapsed=false&leafLevelBrowse=false&ycord=18194 zContenu : texte intégral du rapport en ligne depuis 1995-961 b(1979/1980) -(2011)cParisdMagasins/AnnexeeP 8° 52861 b(1973/1974)cParisdMagasins/AnnexeeCOL 8° 0355 aZCAD aexempb201109 aGEO RC2 Etats-Unis aDEW 350-35401044nls 2200265 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200010700124210013100231230002400362326001100386607004500397710004700442801001300489830000800502856022400510955000500734992002300739992001600762000124367420130522153526.0 a a19969999k fre 01 ba0 aeng aUS ar aak z  adr 10aUnited States government manualb[Ressource électronique]fEtats-Unis. Office of the Federal Register aWashington, D.CcOffice of the Federal Register, National Archives and Records Service, General Services Administrationd1996- aRevue électronique aAnnuel aEtats-UnisxAdministrationxPériodiques02aEtats-UnisbOffice of the Federal Register 0aFRbFNSP acdj4 uhttp://www.gpo.gov/fdsys/browse/collection.action?collectionCode=GOVMAN&browsePath=1995-1996%3BGOVMAN-1995-07-01%3B&isCollapsed=false&leafLevelBrowse=false&ycord=1819zAccès au texte intégral du rapport depuis 1995-961 r aGEO RC2 Etats-Unis aDEW 350-35401222nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000066001502100058002163000124002743260016003983360058004143370063004724400083005354520052006186060027006706060027006977120048007248010013007728560090007859550005008759920016008800000470117000047011720130319051936.0 a0000470117 a b19221927k fre 01 ba0 aeng aUS az aah z  adr 14aThe University journal of businessb[Ressource électronique] aChicago, Ill.cUniversity of Chicago Pressd1922-1927 aAccès au texte intégral (réservé aux sites de Sciences Po) à partir du vol.1 de 1922 jusqu'au vol.5, n°1, de 1927 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tThe Journal of business of the University of Chicago [Ressource électronique] 1tThe University journal of businessx(1525-6979) aAffairesxPériodiques aFinancesxPériodiques02aGraduate School of Business (Chicago, Ill.) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/15256979.html1 r aDEW 650-65801268nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200013800139210002300277326001200300452006500312530002700377710004800404711004900452801002100501830005300522856020600575955005500781972000900836991001800845992001600863992001200879992005100891039257754000007752820131008172606.0 a0252-9173 aFNSP350988 a19900101a19699999 f ba0 afre aFR aalu 10aUraniumeressources, production et demandefAgence de l'OCDE pour l'énergie nucléairegAgence internationale de l'énergie atomique aPariscOCDEd1969- aBiennal 1tUranium ...: ressources, production et demande‎x2072-532910aUranium‎b(Imprimé)02aAgence de l'OCDE pour l'énergie nucléaire02aAgence internationale de l'énergie atomique 3aFRbCCN0252-9173 a1977-1997 : collection envoyée au CTles en 20134 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/1605959X/aeninfoszAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1977) -(1997)cParisdMagasins/AnnexeeP 4° 5234 aZPAY aexempb201307 aDEW 310-319 aDEW 333 aGEO RN1 Pays industrialisés, pays occidentaux01073nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154207004600182210004200228326001600270440006500286606003700351606002800388606002500416801002100441856007000462856010800532955009000640991001800730992001100748036528323000004423320130319051937.01 a0042-0816 aFNSP229620 a0000044233 a19900101b19651994 ba0 aeng aUS aaha 10aUrban affairs quarterly 1avol. 1 no. 1 (1965) -vol. 30 no. 2 (1994) aNewbury Park, Calif.cSaged1965-1994 aTrimestriel 1aUrban affairs review (Thousand Oaks, Calif.)xISSN 1078-0874 aSociologie urbainexPériodiques aUrbanismexPériodiques aVillesxPériodiques 3aFRbCCN0042-08164 uhttps://acces-distant.sciences-po.fr/fork?http://uar.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (sep-1965) -vol. 30 no. 2 (dec-1994)cParisdMagasins/AnnexeeP 8° 2682 aexempb201009 aDEW 7101036nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210003900179326001500218430004400233530004800277606002500325606002800350606003700378856007000415856010800485955009100593972000900684991001800693992001100711040325466000015491220130319051937.01 a1078-0874 aFNSP604103 a0000154912 a19900101a19959999 ba0 aeng aUS aaga 10aUrban affairs review aThousand Oaks, Calif.cSaged1995- aBimestriel 1aUrban affairs quarterlyxISSN 0042-0816 0aUrban affairs reviewbThousand Oaks, Calif. aVillesxPériodiques aUrbanismexPériodiques aSociologie urbainexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://uar.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 30 no. 3 (jan-1995) -vol. 38 no. 2 (nov-2002)cParisdMagasins/AnnexeeP 8° 2682 aZSAB aexempb201009 aDEW 7100892nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200002000138207002800158210004300186326001800229606003800247606002800285801002100313856009200334856006800426955007000494972000900564991001800573992001100591039333167000004423420140107130050.01 a0272-3638 aFNSP229622 a0000044234 a19900101a19809999 ba0 aeng aUS10aUrban geography 1a[Vol. 1, no. 1] (1980)- aSilver Spring, MDcV.H. Winstond1980- a8 n°s par an aGéographie urbainexPériodiques aUrbanismexPériodiques 3aFRbCCN0123/35484 uhttps://acces-distant.sciences-po.fr/fork?http://bellwether.metapress.com/home/main.mpx zContient : sommaires et résumés depuis le vol. 1, no. 4, 19801 bvol. 1 no. 1 (jan-1981) -....cParisdMagasins/AnnexeeP 8° 4342 aZSAB aexempb201011 aDEW 7101726nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001800154210002800172326001800200517008700218530002600305606003700331606003600368710002600404801002100430856012800451856010800579856012800687856010800815856010900923856010801032955009001140957007201230972000901302991001801311992001101329038812797000004423620130319051937.01 a0042-0980 aFNSP229624 a0000044236 a19900101a19649999 ba0 aeng aGB aauu 10aUrban studies aAbingdoncCarfaxd1964- a7 n°s par an10aUrban studies : an international journal of research in urban and regional studies00aUrban studiesbHarlow aSociologie urbainexPériodiques aPolitique urbainexPériodiques02aUniversity of Glasgow 3aFRbCCN0042-09804 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=UST&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=UST&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713449163db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mai-1964) -vol. 42 no. 8 (jul-2005)cParisdMagasins/AnnexeeP 8° 21601 bvol. 1 (1964) -vol. 30 (1993)cParisdMagasins/AnnexeeP Index 0754 aZGRA aexempb201105 aDEW 7101171nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001400154210006100168326002300229326002600252326002300278421003800301430005400339517005000393530002000443606003600463676000800499856002800507856010000535955006700635955006500702972000900767992002200776992001100798013803522000007490720130429104407.01 a1240-0874 aFNSP341586 a0000074907 a19900101a19929999 ba0 afre aFR aaha 00aUrbanisme aPariscPublications d'architecture et d'urbanismed1992- aTrimestrielb2013- aBimestrielb????-2012 aMensuelb1992-???? 1tUrbanisme.Hors série,x1246-2233 1aUrbanismes & Architecture (Paris)xISSN 1145-518711aRevue urbanismeevilles, sociétés, cultures00aUrbanismeb1992 aUrbanismeyFrancexPériodiques a3334 uhttp://www.urbanisme.fr zContenu : sommaires depuis le n°324, mai/juin 2002 et sélection d'articles en texte intégral1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3331 bno. 256 (sep-1992) -....cParisdMagasins/AnnexeeP 4° 0538 aZPAY aGEO RA4.06 France aDEW 7101150nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200006600138210007100204326001700275532008300292606004900375606003600424710006700460801002100527856002500548955006100573955007500634955007700709992002200786992001200808992001600820039631680000006740620130319051938.01 a0751-5839 aFNSP312934 a0000067406 a19900101a19679999 ba0 afre aFR12aL'US.il'Université syndicaliste classique moderne technique aPariscSyndicat national des enseignements de second degréd1967- aHebdomadaire00aUniversité syndicaliste :université syndicaliste classique moderne technique aEnseignantsxSyndicatsyFrancexPériodiques aEducationyFrancexPériodiques02aSyndicat national des enseignements de second degréc(France) 3aFRbCCN0114/57624 uhttp://www.snes.edu/1 bno. 580 (13 jan-2003) -....cParisdMagasinseP 4° 69551 bno. 550 (27 aou-2001) -no. 579 (4 dec-2002)cParisdAnnexeeP F° 05421 bno. 1 (sep-1967) -no. 549 (jun-2001)cParisdMagasins/AnnexeeP 4° 0367 aGEO RA4.06 France aDEW 331 aDEW 370-37901034nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002700139210005200166326001900218326002800237436002300265436003300288517003100321517003600352606002900388607002900417801002100446856002600467856008700493955007200580972000900652992002300661992001200684038811154000004429720131129142914.01 a0041-5537 aFNSP229777 a19900101a19489999 ba0 aeng aUS aa a 10aUS news & world report aWashington, D.C.cUS news & world reportd1948- aMensuelb2009- aHebdomadaireb1948-2008 1tUnited States news 1tWorld reportxISSN 0363-115X10aU.S. news and world report10aUnited States news world report aActualitéxPériodiques aEtats-UnisxPériodiques 3aFRbCCN0041-55374 uhttp://www.usnews.com zContenu : sommaire et sélection d'articles en texte intégral du dernier numéro.1 bvol. 24 no. 12 (mar-1948) -....cParisdMagasins/AnnexeeP 4° 0759 aZPAY aGEO RC2 Etats-Unis aDEW 05000682nas 2200241 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002000139210002700159326001600186530002700202606004400229856008700273955005900360972000900419992001200428040161315000012025820130523155158.01 a1247-8989 aFNSP496106 a19940307a19939999 ba0 afre aFR aaha 00aUtopie critique aPariscSyllepsed1993- aTrimestriel10aUtopie critiquebParis aRelations internationalesxPériodiques4 uhttp://www.utopie-critique.fr/zsommaires et résumés des nos depuis janvier 20101 bno. 1 (1993) -....cParisdMagasins/AnnexeeP 8° 6019 aZCAD aDEW 32700876nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200002000138210002600158326001600184606002900200607002500229607005200254676000800306856002700314856005100341955007300392955006300465972000900528992002500537992001200562040239160000023911820130319051940.01 a1253-2479 aFNSP844102 a0000239118 a19900101a19979999 0 afre aFR10aVacarme (Paris) aPariscVacarmed1997- aTrimestriel aActualitéxPériodiques aFrancexPériodiques aFrancexPolitique et gouvernementxPériodiques a0014 uhttp://vacarme.eu.org/ zsommaires et extraits d'articles par rubriques1 bLes 3 dernières annéescParisd27, Salle Rez-de-chausséeeDEW 0011 bno. 0 (mai-1996) -....cParisdMagasins/AnnexeeP 4° 6738 aZPAY aGEO RA4.06 France 01 aDEW 05000918nas 2200253 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004500139210008900184326001100273601007200284710004200356856013300398955005500531972000900586992005700595992001200652040164330000000695320130321141925.0 a1016-7889 aFNSP111316 a19900424a19889999 ba0 afre aFR aaka 10aVade-mecum budgétaire de la Communauté aLuxembourgcOffice des publications officielles des Communautés européennesd1988- aAnnuel02aUnion européennexCrédits budgétaires et dépensesxPériodiques02aCommunautés européennesbCommission4 uhttp://www.europarl.europa.eu/transl_nl/docs/budget/vade-mecum_budgetaire_2000.pdfzAccés au texte intégral pour l'année 20001 b(1988) -(2000)cParisdMagasins/AnnexeeP 4° 5951 aZPAY aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 33601292cas0 2200385 i 450 001001000000002001100010005001700021035002500038035002000063035001500083100004100098101000800139102000700147105001800154106000600172110001600178200001700194210002500211215002700236300005300263300005000316301003500366326001700401482001600418606004600434676000800480801003000488801002900518801003000547801001300577856020200590945001500792955008700807992001200894119206803000112002020130319051941.0 aFRBNF328871400000000 aPR054401130001J a0001120020 a20071114b18681868m y0frey0103 ba0 afre aFR ay z 0  ar aau y 13aLa Veilleuse aParisc[s.n.?]d1868 a1 vol. (317 p.)d15 cm aNuméros 1 à 5 (15 juillet 1868- 15 août 1868) arelié avec l'Eteignoir par Hardi de Ragefort aDemande d'ISSN en cours (FNSP) aHebdomadaire 1tL'Eteignoir aSatire politique françaisexPériodiques a944 3aFRbAbesc20071120gAFNOR 0aFRbBNFc19970701gAFNOR 3aFRbAbesc20071114gAFNOR 0aFRbFNSP4 uhttp://books.google.fr/books?id=p04WAAAAYAAJ&dq=%22La%20Veilleuse%22&hl=fr&pg=PP3#v=onepage&q=%22La%20Veilleuse%22&f=falsezAccès libre au texte intégral. Périodique numérisé sur Google Livres b12*009.4871 bn°1, 15 juil. 1868 ---> n° 5, 15 août 1868cParisdMagasins/Annexee12°009.487 aDEW 05001196nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101001300123102000700136110001600143200003700159210003000196326001600226517005500242606004900297606005800346606004600404710006900450801002100519856006000540856006600600955006600666972000900732991001800741992002800759992001900787992001600806992001200822039628221000004446820130319051941.01 a0506-7286 aFNSP230265 a0000044468 a19900101a19689999 ba0 ageraeng aDE aahu 10aVerfassung und Recht in Übersee aBaden-BadencNomosd1968- aTrimestriel10aLaw and politics in Africa, Asia and Latin America aDroit constitutionnelyAfriquexPériodiques aDroit constitutionnelyAmérique latinexPériodiques aDroit constitutionnelyAsiexPériodiques02aHamburger Gesellschaft für Völkerrecht und Auswärtige Politik 3aFRbCCN0506-72864 uhttp://www.verfassung-und-recht.de/vrue/vrue_heft.lasso zContenu : Sommaires depuis 2000, texte intégral 2000 à 20041 bvol. 1 no. 1 (1968) -....cParisdMagasins/AnnexeeP 8° 2521 aZSAB aexempb199901 aGEO RD Amérique latine aGEO RE Afrique aGEO RH Asie aDEW 34200961nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210003900182326001600221607004400237801002100281856004300302856010800345955006600453957007200519972000900591991001800600992002500618992001600643038813947000004447220130319051942.01 a0042-4498 aFNSP230271 a0000044472 a19900101a19689999 ba0 ager aDE aahu 14aDie Verwaltung (Berlin) aBerlincDuncker und Humblotd1968- aTrimestriel aAllemagnexAdministrationxPériodiques 3aFRbCCN0042-44984 uhttp://www.atypon-link.com/DH/loi/verw4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1968) -....cParisdMagasins/AnnexeeP 8° 25091 bvol. 1 (1968) -vol. 25 (1992)cParisdMagasins/AnnexeeP Index 0724 aZCAD aexempb200910 aGEO RA5.01 Allemagne aDEW 350-35400808nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210002500191326001200216430005800228606003600286710003100322856005200353955006300405972000900468992003900477992001400516039957691000007159120130319051942.01 a0869-5873 aFNSP328148 a0000071591 a19900101a19929999 ca0 arus aRU aafa 10aVestnik rossijskoj Akademii nauk aMoskvacNaukad1992- aMensuel 1aVestnik Akademii nauk SSSR,x0002-3442 < P 4° 0340 > aRechercheyRussiexPériodiques02aRossijskaâ akademiâ nauk uhttp://www.maik.ru/cgi-bin/list.pl?page=vestnik1 bno. 2 (fev-1992) -....cParisdMagasins/AnnexeeP 4° 0340 aZECH aGEO RA7.21 Russie (depuis 1991-92) aDEW 001.400960cls0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200002200156210004800178326001200226422004100238606003700279710003600316801003000352801002300382801003000405802000700435856003300442856008400475955007500559992001200634080064981000084749420130319051942.01 a1768-4390 aissn17684390 a0000847494 a20030523b20022007k y1frey0103 ba0 afre aFR aagu uu 13aLa Vie des idées aPariscLa République des idéesd2002-2007 aMensuel 1tLa République des idéesx1636-9440 aVie intellectuellexPériodiques02aRépublique des idéesc(Paris) 3aFRbAbesc20061208gAFNOR 3aFRbISSNc20030523 3aFRbAbesc20040901gAFNOR a074 uhttp://www.laviedesidees.fr/ zContenu : accès libre au texte intégral des articles à partir d'octobre 20071 bno. 1 (avr-2005) -no.24 (jul-2007)cParisdMagasins/AnnexeeP 8° 6832 aDEW 00101042nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210003700176326001700213421006200230430006000292440002300352606004400375606004800419606003500467801002100502830006300523856002500586955007100611992002200682992001200704039324540000004447820130319051942.01 a0220-5858 aFNSP230281 a0000044478 a19900101b19781999 ba0 afre aFR aa u 13aLa Vie française aPariscVie françaised1978-1999 aHebdomadaire 1aValeurs clés de la bourse (0755-2815) < Coll. 4° 2910 > 1aLa Vie Française, l'Opinion (0151-2382) < P 4° 3679 > 1tLa Vie financière aMarché financieryFrancexPériodiques aEntreprisesyFrancexFinancesxPériodiques aFinancesyFrancexPériodiques 3aFRbCCN0220-5858 a1985-->n°2836, 16 oct. 1999 : collection donnée au CTLes4 uhttp://www.lavf.com/1 bno. 1716 (29 avr-1978) -(1984)cParisdMagasins/AnnexeeP 4° 3679 aGEO RA4.06 France aDEW 33201355nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004700154207014800201210003900349326001700388440004700405530003600452712005200488801002100540856014100561955004600702955023500748955008200983037984357000004485420130319051942.01 a0399-1164 aFNSP231552 a0000044854 a19900101b19091993 ba0 afre aFR aa u 13aLa Vie ouvrièreel'hebdomadaire de la CGT 1a(1909)-(1914) ; n.s. no.1 (1919) -no. 1052 (1939) ; no. 1053 (1940) -no. 1056 (1940) ; no. 1(1940 )-no. 221(1944) ; no. 1(1944) -no. 2561(1993) aPariscLa Vie ouvrièred1909-1993 aHebdomadaire 1aL'Hebdo de l'actualité socialex1250-387803aLa Vie ouvrièreb(Paris. 1909)02aConfédération générale du travailc(France) 3aFRbCCN0399-11644 uhttp://gallica.bnf.fr/ark:/12148/cb32889252n/date.r=.langFRzAccès libre au texte intégral. Années 1940-1944 numérisées sur Gallica1 b(1909) -(1914)cParisdAnnexeeP 4° 12691 bno. 125 (1947) -no. 287 (1950) ; no. 378 (1951) -no. 503 (1954) ; no. 602 (1956) -no. 637 (1957) ; no. isolés 1959 ; no. 841 (1960) -no. 954 ( 1962) ; nos isolés 1963 ; no. 1062 (1965) -no. 2561 (1993)cParisdAnnexeeP F° 00631 b(avr-1919) -(sep-1939)cParisdMagasinseP MIC 35 (29)zEdition sur microfilm01311cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118106000600125110001600131200004200147210003100189326001100220512008200231530004200313607005100355607005400406676000800460801003000468802000700498856013900505856013900644955017400783991001700957991001100974038724987000107556120131007175223.0 a1241-8323 accn1241-8323 a19921211b19081922 frey0103 ba0 afre aFR ar aak 13aLa Vie politique dans les deux mondes aPariscF. Alcand1908-1922 aAnnuel10aBibliothèque d'histoire contemporaine, la vie politique dans les deux mondes03aLa Vie politique dans les deux mondes aEuropexPolitique et gouvernementz20e siècle aAmériquexPolitique et gouvernementz20e siècle a320 3aFRbAbesc20041214gAFNOR a074 zAccès libre au texte intégral. 1906-1907 sur Internet Archiveuhttp://archive.org/stream/laviepolitiqued00caudgoog#page/n11/mode/2up4 zAccès libre au texte intégral. 1912-1913 sur Internet Archiveuhttp://archive.org/stream/laviepolitiq191213pariuoft#page/n5/mode/2up1 b(1906) -(1907) ; (1907) -(1908) ; (1908) -(1909) ; (1909) -(1910) ; (1910) -(1911) ; (1911) -(1912) ; (1912) -(1913) ; (1914) -(1918)cParisdMagasins/AnnexeeCOL8°0659 aPériobTP01 anumer001316nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004200154210003200196300016400228326001600392421004900408606002700457676000800484710006100492801002100553856005600574856006200630955006700692955005900759957010500818972000900923991001800932992001600950038814544000004455820130319051944.01 a0042-5702 aFNSP230476 a0000044558 a19900101a19539999 ba0 ager aDE aahu 10aVierteljahrshefte für Zeitgeschichte aMünchencOldenbourgd1953- ajusqu'en 1988 la bibliographie est publiée à la fin de chaque n° de la revue , à partir de 1989 la bibliographie forme un supplément annuel (P8°1162 bis) aTrimestriel 1aBibliographie zur Zeitgeschichte (0523-2759) aHistoirexPériodiques a90902aInstitut für Zeitgeschichtec(Munich-Berlin, Allemagne) 3aFRbCCN0042-57024 uhttp://www.ifz-muenchen.de/heftarchiv.html?&L=00997 zContenu : texte intégral en accès libre de 1953 à 20051 bLes 3 dernières annéescParisd30, Salle 2e étage:eDEW 9091 bno. 1 (1953) -....cParisdMagasins/AnnexeeP 8° 11621 bvol. 1 (1953) -vol. 22 (1974) ; vol. 35 (1987) -vol. 36 (1988)cParisdMagasins/AnnexeeP Index 0276 aZSAB aexempb201102 aDEW 900-90701396nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200009200139210003900231326001600270430004600286517002800332517006800360606004800428606003700476607005100513710004900564801002100613830011300634856012900747856006400876955006000940972000901000992002501009992001201034039463400000010909220130518175143.01 a0340-1707 aFNSP461110 a19900101a19379999 ba0 ager aDE aaha 10aVierteljahrshefte zur WirtschaftsforschungfDeutsches Institut fur Wirtschaftsforschung aBerlincDuncker und Humblotd1937- aTrimestriel 1aVierteljahrshefte zur Konjunkturforschung10aVierteljahresheft - DIW10aVierteljahrsheft - Deutsches Institut für Wirtschaftsforschung aEconomie politiqueyAllemagnexPériodiques aEconomie politiquexPériodiques aAllemagnexPolitique économiquexPériodiques02aDeutsches Institut für Wirtschaftsforschung 3aFRbCCN0340-1707 a1937/38-1938/1939 ; 1952-1969 (P8°1066) et 1970-1984 (P 4° 2898) : années cédées au CTL en juillet 20014 uhttp://www.diw.de/de/diw_01.c.100405.de/publikationen_veranstaltungen/publikationen/vierteljahrshefte/vierteljahrshefte.html zContenu : accés intégral à certains numéros depuis 19951 bno. 1 (1985) -.....cParisdMagasins/AnnexeeP 4° 2898 aZPAY aGEO RA5.01 Allemagne aDEW 33001464nas 2200385 i 450 001001000000002001100010005001700021011001400038035001300052035001500065100004100080101000800121102000700129110001600136200004100152210003700193326001600230517002000246606003900266607003500305676000800340801002100348856011300369856010800482856002600590856008600616856009000702856010800792955006700900955005900967972000901026992002201035992001201057992000901069001020196000000203220131220103022.01 a0294-1759 aFNSP7777 a0000002032 a19900101a19849999 ba0 afre aFR aahu 10aVingtième siècle, revue d'histoire aPariscPresses de la FNSPd1984- atrimestriel10a20 ème siècle aHistoire universellexPériodiques aFrancexHistoirexPériodiques a909 3aFRbCCN0294-17594 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-vingtieme-siecle-revue-d-histoire.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr/ zContenu : Accès libre au texte intégral depuis le 1er n° jusqu'au n° 72, 20014 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/02941759.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étage:eDEW 9091 bno. 1 (1984) -....cParisdMagasins/AnnexeeP 8° 4685 aZCAD aGEO RA4.06 France aDEW 909 aPBUL01033nas0 2200265 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108200013200116207003900248210007700287326001500364607003500379710010400414801003000518856004200548856005300590955007500643972000900718992001200727992002800739113692668000107908520130319051946.01 a1954-9237 a0001079085 a20070402b20042004k frey0103 ba0 afre10aVisages d'Amérique latinefProjet collectif Visages d'Amérique latine du premier cycle ibéro-américain de Sciences-po Paris 0ano. 1 (juin 2004)-no. 6 (nov-2008) aPoitierscPremier cycle ibéroaméricain de Sciences Po Parisd2004-2008 aSemestriel aAmérique latinexPériodiques02aProjet collectif Visages d'Amérique latine du premier cycle ibéro-américain de Sciences-po Paris 3aFRbAbesc20070402gAFNOR4 uhttp://www.visagesameriquelatine.org/ zContenu : texte intégral depuis le n°1 de 20041 bno. 1 (jun-2004) -no.6 (nov-2008)cParisdMagasins/AnnexeseP 8° 6928 aZGRA aDEW 980 aGEO RD Amérique latine01063cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200008800156210004500244320006600289326001500355530002800370606004400398606004400442710006100486801003000547801002300577802000700600856003400607955007500641972000900716992001200725077567609000098688420130319051946.01 a1762-5157 aissn17625157 a0000986884 a20030523b20032006 0fre 0103 ba0 afre aFR aaj 10aVoltaireeactualité internationalefRéseau Voltaire pour la liberté d'expression aSaint-DeniscEd. Thomas Pained2003-2006 aSélection d'articles parus dans Voltaire, magazine quotidien aSemestriel10aVoltaireb(Saint-Denis) aRelations internationalesxPériodiques aRelations internationalesxPériodiques02aRéseau Voltaire pour la liberté d'expressionc(France) 3aFRbAbesc20050426gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.voltairenet.org/fr1 bno. 1 (mar/avr-2005) -no. 3 (2006)cParisdMagasins/AnnexeeP 8° 6901 aZPAY aDEW 32700859nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001400139210003800153326001600191530001400207606003700221607002800258801002100286856013100307955006700438972000900505991001800514992002500532992001200557039628655000004479620130726155423.01 a0507-4150 aFNSP231234 a19900101a19629999 ba0 ager aDE aahu 10aVorgänge aOpladencLeske und Budrichd1962- aTrimestriel00aVorgänge aProblèmes sociauxxPériodiques aAllemagnexPériodiques 3aFRbCCN0507-41504 uhttp://www.humanistische-union.de/publikationen/vorgaenge/zContenu : sommaires depuis 1969 grand choix d'articles TI en ligne1 bvol. 12 no. 1 (1973) -....cParisdMagasins/AnnexeeP 8° 3315 aZCAD aexempb201005 aGEO RA5.01 Allemagne aDEW 30101021nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210003000186326001400216606002900230606005200259607002900311856019200340856010800532955006800640992002300708992001200731040033325000007148820130319051948.01 a0921-9986 aFNSP327931 a0000071488 a19900101a19839999 ba0 aeng aNL acaa 10aWall Street journal. Europe aHeerlencDow Jonesd1983- aQuotidien aActualitéxPériodiques aHistoire économiquez20e sièclexPériodiques aEtats-UnisxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLe mois en courscParisd27, Salle Rez-de-chausséeeP F° 1329 aGEO RC2 Etats-Unis aDEW 05001289cas0 2200409 450 001001000000002001100010005001700021011001400038035001400052035001700066100004100083101000800124102000700132105001800139110001600157200005500173210002300228326001100251410006500262512002700327517003700354530002100391607006800412710004700480801003000527801002300557801003000580802000700610856004500617856003600662955005300698972000900751991001800760992001400778992002500792992006200817094685118000091919920131028154707.0 a1760-9089 a131723219 aissn17609089 a20060106a19999999k y0frey50 ba0 afre aFR ay  azku uu 10aWallis et FutunafInstitut d'émission d'Outre-mer aPariscIEOMd1999- aAnnuel 1tRapport annuel - Institut d'émission d'Outre-merx1635-226210aWallis et Futuna en...10aWallis et Futunaerapport annuel00aWallis et Futuna aWallis et FutunaxConditions économiquesxPériodiques2rameau02aInstitut d'émission d'Outre-merc(France) 3aFRbAbesc20090423gAFNOR 3aFRbISSNc20090225 3aFRbAbesc20060112gAFNOR a074 uhttp://www.ieom.fr/ieom/publications-24/4 zAccès libre au texte intégral1 b(1999) -....cParisdMagasins/AnnexeeP 8° 6857 aZGRA aexempb201212 aDEW 330.9 aGEO RA4.06 France 01 aGEO RJ7 Autres régions de l'Océanie et du Pacifique Sud01121nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210004600181326001200227607005600239801002100295856003800316856004800354955013300402955022200535972000900757991001800766992002300784992001200807038815893000008905120130319051949.01 a0043-0633 aFNSP392714 a0000089051 a19900101a19699999 ba0 aeng aUS aafu 14aThe Washington monthly aWashingtoncWashington Monthly Co.d1969- aMensuel aEtats-UnisxPolitique et gouvernementxPériodiques 3aFRbCCN0043-06334 uhttp://www.washingtonmonthly.com/ zContenu : sélection d'articles depuis 20021 bvol. 35 no. 1/2 (2003) -vol. 36 no. 3 (2004) ; vol. 37 no. 1 (2005) -vol. 43 no. 9/10 (2011)cParisdMagasins/AnnexeeP 4° 71811 bvol. 2 no 11 (1971) -vol. 17 no. 11 (1985) ; vol. 18 no. 5 (1986) -vol. 18 no. 6/7 (1986) ; vol. 19 no. 1 (1987) -vol. 21 no. 9 (1989) ; vol. 25 no. 12 (1993) -vol. 34 no. 12 (2002)cParisdMagasins/AnnexeeP 8° 2799 aZCAD aexempb201105 aGEO RC2 Etats-Unis aDEW 32400945nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000051001502100005002012300024002063260014002306060029002446070029002738010013003028560192003158560108005079550005006159920023006209920012006430001131866000113186620130319051949.0 a0001131866 a a19849999k fre 01 ba0 aeng aUS ar aaa z  adr 14aThe Washington postb[Ressource électronique] a aRevue électronique aquotidien aActualitéxPériodiques aEtats-UnisxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RC2 Etats-Unis aDEW 05001217nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002900139210003900168326001600207430007600223452005400299530003000353606004400383606004400427676000800471710007100479801002100550856021400571955006700785972000900852991001800861992001200879039107620000000565820140110153348.01 a0163-660X aFNSP108787 a19900323a19799999 ba0 aeng aUS aahu 14aThe Washington quarterly aCambridge, Mass.cMIT Pressd1979- aTrimestriel 1aThe Washington review of strategic and international studiesx0147-1465 1tThe œWashington quarterly (Online)‎x1530-917704aThe @Washington quarterly aRelations internationalesxPériodiques aSécurité internationalexPériodiques a32702aCenter for Strategic and International Studiesc(Washington, D.C.) 3aFRbCCN0163-660X4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t794176680db=allzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol . 2 no. 1 (1979) -....cParisdMagasins/AnnexeeP 8° 4050 aZSAB aexempb200302 aDEW 32701207cas0 2200397 450 001001000000002001100010005001700021011001400038035002100052035001700073100004100090101000800131102000700139105001800146106000600164110001600170200004800186207002300234210005200257530001400309606003400323606003800357606003700395606006400432676001100496801003000507801002300537802000700560856002800567856004900595955006900644955005400713972000900767992001200776992002100788161404901000124312720131105191623.0 a2259-0242 a(OCoLC)793489983 aissn22590242 a20120529a20129999m y0frey50 ba0 afre aFR ay 0  ar aahu 0uu 10aWe demaineune revue pour changer d'époque 0aN° 1 (avril 2012) aIssy-les-MoulineauxcWe demain Groupe GSd2012-00aWe demain aUtopiesxPériodiques2rameau aInnovationsxPériodiques2rameau aPrévisionxPériodiques2rameau aVingt et unième sièclexPrévisionsxPériodiques2rameau a303.49 3aFRbAbesc20130418gAFNOR 3aFRbISSNc20120529 a074 uhttp://www.wedemain.fr/4 zContenu : texte intégral du dernier numéro1 bL'année en courscParisd27, salle Rez-de-chausséeeP 4° 73321 bno. 1(avr 2012)-....dMagasins/AnnexeeP 4° 7332 aZPAY aDEW 303 aGeo RQ Universel01547nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002700139210002400166326002500190326002700215326003000242326003100272530002700303607006300330676000800393801002100401856012300422856005400545856010900599856010800708955006700816955006900883955007000952957005401022972000901076991001801085992003401103992001201137039075354000000554620131220103111.01 a0140-2382 aFNSP108510 a19900319a19789999 ba0 aeng aGB aahu 10aWest European politics aLondoncCassd1978- aBimestriel‎b2008- a5 par an‎b2004-2007 aTrimestriel‎b1982-2003 a3 nos par an‎b1978-1981 aWest European politics aEurope de l'OuestxPolitique et gouvernementxPériodiques a320 3aFRbCCN0140-23824 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titledb=allcontent=t713395181tab=issueslist zContenu : sommaires depuis le vol. 25, n°1, 20024 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713395181db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bL'année en courscParisdBibliothèque de rechercheeP 8° 41761 bvol. 1 no. 1 (fev-1978) -....cParisdMagasins/AnnexeeP 8° 41761 b(1978-2002)cParisdMagasins/AnnexeeP Index 0860 aZCAD aexempb200302 aGEO RA2.01 Europe occidentale aDEW 94001205cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200006700180207004000247210011800287430007500405801003000480801002300510801001300533802000700546856012300553856010800676955007400784972000900858992001200867113877641000088702820130319051953.01 a1936-3419 aissn19363419 a0000887028 a20070412a20059999k y0frey0103 ba0 aeng aUS ay 0  ar aaja 0uu 14aThe Whitehead journal of diplomacy and international relations 0aVol. 6, no. 1 (winter/spring 2005)- aSouth Orange, NJcJohn C. Whitehead School of Diplomacy and International Relations, Seton Hall Universityd2005- 1tSeton Hall journal of diplomacy and international relationsx1538-6589 3aFRbAbesc20080514gAFNOR 3aFRbISSNc20070412 0aFRbFNSP a014 uhttps://acces-distant.sciences-po.fr/fork?http://www.heinonline.org/HOL/Index?index=journals/whith&collection=journals zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 6 no. 1 (hiv/pri-2005) -....cParisdMagasins/AnnexeeP 8° 6646 aZSAB aDEW 32701259nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210003800179326001100217607005600228676000800284856015900292955006000451955013400511955017700645955008900822972000900911992002100920992001600941038885379000008277320130319051953.01 a0083-9396 aFNSP369321 a0000082773 a19900101a19009999 ba0 aeng aUS aaka 10aWho's who in America aChicagocMarquis Who's Whod1900- aAnnuel aAmériquexBiographiesxDictionnairesxPériodiques a9274 uhttp://www.archive.org/stream/whoswhoinamerica02marq#page/n5/mode/2upzAccès libre au texte intégral. Le volume 1901-1902 est numérisé sur Archive.org1 bLa dernière annéecParisd30,Salle 2e étageeDEW 9271 b(1980/1981) ; (1984/1985) ; (1989/1990) ; (1995) ; (2000) ; (2005)cParisdMagasins/AnnexeeP 4° 5851zconservons tous les 5 ans1 b(1930/1931) ; (1934/1935) ; (1944/1945) ; (1948/1949) ; (1958/1959) ; (1964/1965) ; (1970/1971) ; (1974/1975)cParisdMagasins/AnnexeeCOL4°0010zconservons tous les 5 ans1 b(1899) -(1902)-(1910) -(1911) ; (1920) -(1921)cParisdMagasins/AnnexeeCOL 8° 0015 aZPAY aGEO RB Amérique aDEW 920-92801303nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210002600178326011600204607005300320676000900373856019200382856010800574955006100682955007400743955006700817955005800884972000900942992002200951992001600973032915853000001121220130319051953.01 a0083-9531 aFNSP124104 a0000011212 a19900730a19539999 ba0 afre aFR aaka 10aWho's who in France aPariscLafitted1953- aTous les 2 ans de la 1ère éd. 1953/54 à la 19ème éd. 1987/1988, annuel à partir de la 20ème éd. 1988/89 aFrancexBiographiesxDictionnairesxPériodiques a/9244 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLa dernière annéecParisd30, Salle 2e étageeDEW 9241 bL' année précédentecParisdBibliothèque de rechercheeP 4° 58021 b(1953/1954) -(1979/1980)cParisdMagasins/AnnexeeCOL 8° 05271 b(1981/1982) -....cParisdMagasins/AnnexeeP 4° 5802 aZPAY aGEO RA4.06 France aDEW 920-92800842nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001600154210003100170326001500201530002500216606003700241607004500278856003100323856005700354955006800411972000900479991001800488992002200506992001200528139889957000019197420130319051954.01 a1420-0945 aFNSP708437 a0000191974 a19900101a19819999 ba0 ager aCH aaja 10aWiderspruch aZurichcWiderspruchd1981- aSemestriel 0aWiderspruchbZürich aVie intellectuellexPériodiques aSuissexVie intellectuellexPériodiques4 uhttp://www.widerspruch.ch/ zContenu : sommaires et abstracts depuis janvier 20001 bvol. 15 no. 29 (1995) -....cParisdMagasins/AnnexeeP 8° 6244 aZPAY aexempb201301 aGEO RA5.14 Suisse aDEW 00101151nls 2200325 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281350018001342000039001522100032001912150005002232250057002282300005002853000196002906070062004866070062005486070062006106760008006727100026006807120047007068010013007538300008007668560051007740001168713000116871320130319051954.0 a0001168713 a d1990 k a fre 01 0 aeng aUS ay z y  ar adr 10a[William J. Clinton, G.W. Bush...] aWashingtoncUSGPOd1990-... a20aPublic papers of the Presidents of the United States a aA partir de George Bush (1991-1993), les Public papers of the Presidents of the United States sont consultables en ligne sur le site GPO Access, a service of the US Government Printing Office aEtats-UnisxPolitique et gouvernementz1989-1993xSources aEtats-UnisxPolitique et gouvernementz1993-2001xSources aEtats-UnisxPolitique et gouvernementz2001-2009xSources a97301aEtats-UnisbPresident01aEtats-UnisbOffice of the Federal Register 0aFRbFNSP asdy4 uhttp://www.gpoaccess.gov/pubpapers/search.html01055nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200002900138210003900167326001200206421011400218607005300332710003900385801002100424856009000445856004200535955014000577972000900717992002500726992001400751038817799000004576320130603145638.01 a0043-6143 aFNSP234866 a0000045763 a19900101a19219999 ba0 ager aDE10aWirtschaft und Statistik aStuttgartcMetzler-Poescheld1921- aMensuel 1aStatistischer Wochendienst - Statistisches Bundesamt Wiesbaden (0177-2554) et Wirtschaftskalender (0435-7957) aAllemagnexConditions économiquesxPériodiques02aAllemagnebStatistisches Bundesamt 3aFRbCCN0043-61434 uhttps://www.destatis.de/DE/Publikationen/WirtschaftStatistik/WirtschaftStatistik.html zAccés au texte intégral depuis 20011 bvol.10 no. 1 (jan-1930) -vol. 24 no. 3 (mai-1944) ; n.s. vol. 1 no. 2 (mai-1949) -no. 12 (dec-2012)cParisdMagasins/AnnexeeP 4° 0766 aZPAY aGEO RA5.01 Allemagne aDEW 330.901028nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210003100176326001200207530003300219607005100252607005300303710006700356801002100423856004600444856005000490955012600540972000900666992002500675992001400700038817845000004570420130319051955.01 a0043-6275 aFNSP234758 a0000045704 a19900101a19169999 ba0 ager aDE aafa 10aWirtschaftsdienst aHamburgcWeltarchivd1916- aMensuel10aWirtschaftsdienstb(Hamburg) aAllemagnexPolitique économiquexPériodiques aAllemagnexConditions économiquesxPériodiques02aHWWA-Institut für Wirtschaftsforschungc(Hambourg, Allemagne) 3aFRbCCN0043-62754 uhttp://www.wirtschaftsdienst.eu/index.php zContenu : texte intégral gratuit depuis 19981 bvol. 24 no. 27 (jul-1939) -vol. 25 no. 16 (avr-1940) ; vol. 39 no. 1 (jun-1949) -....cParisdMagasins/AnnexeeP 4° 0230 aZPAY aGEO RA5.01 Allemagne aDEW 330.900834nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002100139210004700160326001700207434003400224607005300258801002100311856002800332955008200360955008700442992002500529992001400554038815338000004573020140106161136.01 a0042-8582 aFNSP234794 a19900101a19709999 ba0 ager aDE aa a 10aWirtschaftswoche aDüsseldorfcVerl.-Gruppe Handelsbld1970- aHebdomadaire 1aPlus (Düsseldorf)x0032-1702 aAllemagnexConditions économiquesxPériodiques 3aFRbCCN0042-85824 uhttp://www.wiwo.de/news1 bLes six derniers mois de l'année en courscParisd27, Salle Rez-de chaussée1 bConservation limitée aux 5 dernières annéescParisdMagasins/AnnexeeP 4° 0724 aGEO RA5.01 Allemagne aDEW 330.901410nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002100139207004900160210003900209326001600248440005200264452004200316517002300358530002100381606002900402606002500431606004600456676000800502801002100510856004300531856006100574856010900635856010800744955008400852972000900936991001800945992003300963992001600996039150291000004520120130910173622.01 a0195-7732 aFNSP232940 a19900101b19802004 ba0 aeng aUS aaha 10aWomen & politics 1aVol. 1, no. 1 (1980)-vol. 26, no. 3/4 (2004) aNew YorkcHaworth Pressd1980-2004 aTrimestriel 1tJournal of women, politics & policy,x1554-477X 1tWomen & politics (Online),x1540-947310aWomen and politics aWomen & politics aFéminismexPériodiques aFemmesxPériodiques aFemmesxActivité politiquexPériodiques a320 3aFRbCCN0195-77324 uhttp://www.american.edu/oconnor/wandp/ zContenu : sommaires et résumés depuis le vol. 15, n°34 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t904098947db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1980) -vol. 26 no. 3/4 (2004)cParisdMagasins/AnnexeeP 8° 4371 aZSAB aexempb201106 aGEO RS Sans aspect régional aDEW 305-30601337nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210005200187326001500239517003000254606005900284606005400343710003700397856010100434856010800535856010800643856010800751955007000859972000900929991001800938992003100956992001200987040077152000003152320130319051956.01 a0950-0170 aFNSP187564 a0000031523 a19910513a19879999 ba0 aeng aGB aaha 10aWork, employment and society aLondoncBritish Sociological Associationd1987- aBimestriel10aWork employment & society aRelations industriellesyGrande-BretagnexPériodiques aMarché du travailyGrande-BretagnexPériodiques02aBritish Sociological Association4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=108807 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 1 (mar-1991) -....cParisdMagasins/AnnexeeP 8° 5717 aZPAY aexempb201111 aGEO RA4.02 Grande-Bretagne aDEW 33100888nls 2200301 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000076001502100056002262300024002823000085003063260015003915170029004066060054004356760016004897120032005058010013005378300007005508560024005579550005005810000412118000041211820130319051957.0 a0000412118 a a19999999k f fre 01 ba0 aeng aDE az aby z  adr 10aWorking paper series - European Central Bankb[Ressource électronique] aFrankfurt am MaincEuropean Central Bankd1999-.... aDonnées textuelles aRésumé. - Texte intégral au format pdf télédéchargeable avec Adobe Acrobat aCollection10aECB working paper series aPolitique monétaireyPays de l'Union européenne a332.46v21a02aBanque centrale européenne 0aFRbFNSP adm4 uhttp://www.ecb.int/1 r00976nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001341350018001502000083001682100053002512300024003043000083003283000109004113260015005206060029005357120042005648010013006068560038006199550029006570000311802000031180220130319051957.0 a0000311802 a a19809999k fre ba0 aeng aCH a 0  az aau z 0  adr 10aWorking papers - Bank for International Settlementsb[Ressource électronique] aBaslecBank for International Settlementsd1980- aDonnées textuelles aAccès au 18/04/2000 : World Wide Web. URL : http://www.bis.org/publ/index.htm aTexte intégral à partir du n° 35, juillet 1996, au format pdf, télédéchargeable avec Adobe Acrobat aCollection aFinances internationales02aBanque des règlements internationaux 0aFRbFNSP4 uhttp://www.bis.org/publ/index.htm1 rConsultable sur Internet00940nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010013000951020007001081060006001151100016001211350018001372000148001552100041003032300024003443260034003683370093004025170025004957100032005208010013005528300007005658560050005729550040006220000550341000055034120130319051957.0 a0000550341 a a20019999k fre 01 ba0 afreager aDE az abu z  adr 10aWorking papers =dDocuments de travailb[Ressource électronique]fCentre franco-allemand de recherches en sciences sociales, Centre Marc Bloch aBerlincCentre Marc Blochd2001-.... aDonnées textuelles aCollection de working papers. aTexte intégral au format pdf, télédéchargeable à partir de 2001 avec Adobe Acrobat.10aDocuments de travail02aCentre Marc Blochc(Berlin) 0aFRbFNSP aBH4 uhttp://www.cmb.hu-berlin.de/publi/index1.html1 rConsultable uniquement sur Internet00887nas 2200241 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000074001502100055002243260015002795170023002947120046003178010013003638560042003769550227004180000380019000038001920130319051957.0 a0000380019 a a19949999k fre ba0 aeng aIT a 0  ar aay z 0 10aWorking papers - European University Institute, Robert Schuman Centre aFlorencecEuropean University Instituted1994-.... aCollection10aEUI Working papers02aCentre Robert Schumanc(Florence, Italie) 0aFRbFNSP4 uhttp://www.eui.eu/RSCAS/Publications/1 rCette collection, depuis 1995, est conservée dans la Salle de 3e cycle. A partir de 2002, les EUI Working papers in economics sont publiés uniquement sous forme électronique sur le site du European University Institute.00913nls 2200301 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000091001642100070002552300028003253260031003533360024003843370024004086760013004327100060004458010013005058300007005188560050005258560036005750000579578000057957820130319051957.0# a1133-8962 a0000579578 a a19899999k fre 01 ba0 amul aES ar aby z  adr 10aWorking papersb[Ressource électronique]fInstitut de ciències polítiques i socials aBarcelonacInstitut de ciències polítiques i socialsd1989-.... aDonnées électroniques aCollection de monographies aDonnées textuelles aAccès par Internet a300v21a02aInstitut de ciències politiques i socialsc(Barcelone) 0aFRbFNSP aET uhttp://www.diba.es/icps/working_papers/wp.htm zAccès libre au texte intégral01278nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001800139210005200157326001600209452006000225530003300285606004400318710002700362801004600389856030800435955006800743955009300811972000900904991001800913992002100931992001200952038818337000004568820130725120532.01 a0043-8200 aFNSP234733 a19900101a19329999 ba0 aeng aUS aaha 10aWorld affairs aWashington, D.C.cAmerican Peace Societyd1932- aTrimestriel 1tWorld affairs (Washington, D.C. : Online)‎x1940-158210aWorld affairs‎bWashington aRelations internationalesxPériodiques02aAmerican Peace Society 3aFRbCCN0043-8200cAmerican Peace Society.4 uhttps://acces-distant.sciences-po.fr/fork?http://web.ebscohost.com/ehost/detail?hid=14&sid=883feaa6-636a-42bb-b78e-e8031b96c985%40sessionmgr14&vid=1&bdata=JnNpdGU9ZWhvc3QtbGl2ZQ%3d%3d#db=poh&jid=WAFzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 148 no. 1 (1986) -....cParisdMagasins/AnnexeeP 4° 51241 bvol. 135 no. 1 (ete-1972) -vol. 147 no. 4 (pri-1985)cParisdMagasins/AnnexeeP 8° 3303 aZSAB aexempb200905 aGEO RQ Universel aDEW 32701075nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003600139210003900175326001100214430006100225530003800286606004400324607002900368676001000397830007300407856012300480955007200603972000900675991001800684992002300702992001200725992001200737038885697000014501320131121113030.01 a0084-1382 aFNSP571795 a19941226a19239999 ba0 aeng aUS aaka 10aWorld almanac and book of facts aMahwah, N.J.cWorld Almanacd1923- aAnnuel 1aWorld almanach [and encyclopedia ; and book of facts]...14aThe World almanac & book of facts aRelations internationalesxPériodiques aEtats-UnisxPériodiques a320.9 aManquants : (1923)-(1979) ;$cParis,$dMagasins/Annexe :$eCOL 8° 00164 uhttp://www.worldalmanac.com/world-almanac.aspxzAccés à la table des matières et index de la dernière année parue1 b(1980) -(1991) ; (2008) -(2012)cParisdMagasins/AnnexeeP 8° 5224 aZPAY aexempb201306 aGEO RC2 Etats-Unis aDEW 973 aDEW 90901426nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003100139207003200170210004900202210005000251326001700301452005200318530004100370606004500411606004000456710007000496856003300566856006800599856010300667856010800770955007000878972000900948991001800957992002100975992004200996992001401038039300471000014214020140107142552.01 a0258-6770 aFNSP564269 a19941122a19869999 f ba0 aeng aUS aaia 10aWorld Bank economic review 1aVol. 1, no. 1 (Sept. 1986)- aOxford‎cOxford University Press‎d199X- aWashington, D.C.‎cWorld Bank‎d1986-199X a3 nos par an 1tWorld Bank economic review (Online),x1564-698X aWorld Bank economic review‎bPrint aDéveloppement économiquexPériodiques aPolitique économiquexPériodiques02aBanque internationale pour la reconstruction et le développement4 uhttp://wber.oupjournals.org/ zContenu : sommaires et résumés depuis le volume 1, no 1, 19864 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=106103 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (sep-1986) -....cParisdMagasins/AnnexeeP 8° 5030 aZPAY aexempb201106 aGEO RQ Universel aGEO RO Pays en voie de développement aDEW 338.901502nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003700139207003200176210004300208210004400251326001500295452005400310530004700364606004500411607007400456710007000530801002100600856006100621856005300682856010100735856010800836955010100944972000901045991001801054992004201072992001401114039290654000010247220140107143113.01 a0257-3032 aFNSP440114 a19900101a19869999 f ba0 aeng aUS aaju 14aThe World Bank research observer 1aaVol. 1, no. 1 (Jan. 1986)- aOxfordcOxford University Pressd199?- aWashington, D.C.cWorld Bankd1986-199? aSemestriel 1tWorld Bank research observer (Online),x1564-697114aThe World Bank research observer‎bPrint aDéveloppement économiquexPériodiques aPays en voie de développementxConditions économiquesxPériodiques02aBanque internationale pour la reconstruction et le développement 3aFRbCCN0257-30324 uhttp://www.worldbank.org/html/extpb/observer/obscont.htm zContenu : sommaires et résumés de 1992 à 19984 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=106104 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1986) -....cParisdMagasins/AnnexeeP 8° 4902wManque no. 2 (1986), no. 1 (1989) aZPAY aexempb200301 aGEO RO Pays en voie de développement aDEW 338.901160nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200012400139207003100263210002800294326001200322606004500334607004900379801002100428856005800449856006000507955007100567955009200638972000900730991001800739992004200757992002100799992001400820039394700000004520420140107143410.01 a0305-750X aFNSP232950 a19900101a19739999 ba0 aeng aGB aafa 10aWorld developmentethe multi-disciplinary international journal devoted to the study and promotion of world development 1avol. 1 no. 1/2, Feb. 1973- aOxfordcPergamond1973- aMensuel aDéveloppement économiquexPériodiques aPays en voie de développementxPériodiques 3aFRbCCN0305-750X4 uhttp://www.elsevier.nl/inca/publications/store/3/8/6/ zContenu : sommaires depuis le vol. 23, n°1, janv. 19951 bvol. 37 no. 1 (jan-2009) -....cParisdMagasins/AnnexeeP 4° 72401 bvol. 10 no. 1 (jan-1982) -vol. 36 no. 12 (dec-2008)cParisdMagasins/AnnexeeP 8° 4578 aZPAY aexempb201003 aGEO RO Pays en voie de développement aGEO RQ Universel aDEW 338.900957nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200012700154210004500281326001100326510003900337517003200376606002900408710003400437856010100471955005300572972000900625992002100634992001200655168600447000001094120130410144354.0 a1013-0365 aFNSP121082 a0000010941 a19900718a19799999 f ba0 amul aCH aaka 10aWorld directory of parliaments/fInter-Parliamentary Uniond= Répertoire mondial des parlementsfUnion interparlementaire aGenèvecUnion interparlementaired1979- aAnnuel10aRépertoire mondial des parlements10aParliaments world directory aParlementsxPériodiques02aUnion interparlementaire40704 uhttp://www.ipu.org/english/perdcls.htm#DirectoryzAccés au texte intégral de l'année en cours1 b(1990) -....cParisdMagasins/AnnexeeP 4° 5929 aZGRA aGEO RQ Universel aDEW 32800891nas 2200277 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000022001412100043001633260016002064530036002226060040002587100076002988560058003748560042004329550055004749550059005299720009005889920016005970000242968000024296820130912133418.0 aFNSP855169 a0000242968 a19900101a19979999 ba0 aeng aGB aaka 10aWorld drug report aOxfordcOxford University Pressd1997- aIrrégulier 1tRapport mondial sur les drogues aDroguesxLutte contrexPériodiques02aProgramme des Nations Unies pour le contrôle international des drogues4 uhttp://www.unodc.org/unodc/data-and-analysis/WDR.html4 zAccés au texte intégral depuis 19971 b(1997) -(2000)cParisdMagasins/AnnexeeP 8° 63501 b(2004) -(2006)cParisdMagasins/AnnexeeP 4° 7148 bis aZPAY aDEW 364-36501321nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004000154210005700194225005000251225004100301300004200342300008900384326001500473451006000488530004000548606004200588606003900630710003500669801002100704856009400725955009600819972000900915992002100924992001400945039285154000000497520130605135523.01 a0256-6877 aFNSP107122 a0000004975 a19900101a19809999 f ba0 aeng aUS aaju 10aWorld economic outlook (Washington) aWashington, D.C.cInternational Monetary Fundd1980-21aOccasional paperfInternational Monetary Fund21aWorld economic and financial surveys aVoir aussi la collection en français a2009 dernière éd. papier, à partir de 2010 voir ensuite en version électronique. aSemestriel 1aPerspectives de l'économie mondiale < P 4° 4857 bis >00aWorld economic outlook (Washington) aConjoncture économiquexPériodiques aHistoire économiquexPériodiques02aFonds monétaire international 3aFRbCCN0256-68774 uhttp://www.imf.org/external/ns/cs.aspx?id=29zAccès libre au texte intégral depuis 19931 b(1980) ; (dec-2001) -(sep-2003) ; (avr-2007)-(oct-2009)cParisdMagasins/AnnexeeP 4° 4857 aZPAY aGEO RQ Universel aDEW 330.900953nls 2200301 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200006700124210005700191225005000248225004100298230002400339326001500363606004200378606003900420710003500459801001300494830000800507856009600515955000500611992002100616992001400637000124508520130605135505.0 a a19939999k fre 01 ba0 aeng aUS ar aaj z  adr 10aWorld economic outlook (Washington)b[Ressource électronique] aWashington, D.C.cInternational Monetary Fundd1993-21aOccasional paperfInternational Monetary Fund21aWorld economic and financial surveys aRevue électronique aSemestriel aConjoncture économiquexPériodiques aHistoire économiquexPériodiques02aFonds monétaire international 0aFRbFNSP acdj4 uuhttp://www.imf.org/external/ns/cs.aspx?id=29zAccès libre au texte intégral depuis 19931 r aGEO RQ Universel aDEW 330.901309nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001800154207003100172210003000203326001900233326005500252606003700307801002100344856012800365856010800493856010400601856010800705955013100813972000900944991001800953992001200971039557065000004519920131202121905.01 a0378-5920 aFNSP232937 a0000045199 a19900101a19779999 ba0 aeng aGB aafa 10aWorld economy 1avol. 1, no. 1 (Oct. 1977)- aOxford:cBlackwelld1977- aMensuelb2006- aTrimestriel puis 8 n°s, 10 n°s et 11 n°s par an aEconomie politiquexPériodiques 3aFRbCCN0378-59204 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=WEC&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www3.interscience.wiley.com/journal/117965403/home zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (oct-1977) -vol. 35 no. 12 (dec-2012)cParisdMagasins/AnnexeeP 8° 4006wManquants : vol. 15, nos 4, 5, 6, 1992 aZPAY aexempb201001 aDEW 33700841nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000270013921000490016632600110021543000380022660600430026471000410030785600680034895500550041697200090047199100180048099200160049899200160051499200210053004021852X000015028220140107152711.01 a1027-6467 aFNSP588157 a19950217c19919999 ba0 aeng aGB aaka 10aWorld grain statistics aLondoncInternational Wheat Councild[19..]- aAnnuel 1aWorld wheat statisticsx0512-3844 aCéréalesxStatistiquesxPériodiques02aConseil international des céréales4 uhttp://www.igc.org.uk/en/publications/worldgrainstatistics.aspx1 b(1991) -(2007)cParisdMagasins/AnnexeeP 4° 6435 aZPAY aexempb201401 aDEW 310-319 aDEW 338.1-3 ageo rq uNIVERSEL01008nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154207001000198210003600208326001100244606004600255606004500301676000800346710007100354856005900425856003600484955006700520955005300587972000900640992001200649992002100661040180891000020088820130319051957.01 a1020-2218 aFNSP732767 a0000200888 a19900101a19919999 ba0 aeng aUS aaka 10aWorld investment reportfUnited Nations 1a1991- aNew YorkcUnited Nationsd1991- aAnnuel aEntreprises multinationalesxPériodiques aInvestissements étrangersxPériodiques a33202aConférence des Nations Unies sur le commerce et le développement4 uhttp://www.unctad.org/wir/contents/wir01content.en.htm zAccès libre au texte intégral1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3321 b(1991) -....cParisdMagasins/AnnexeeP 4° 6644 aZGRA aDEW 332 aGEO RQ Universel00907nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200002500138207002600163210004400189326001600233606004400249606004400293710002700337856004000364856010400404955007000508972000900578991001800587992001200605039703541000004519420130319051957.01 a0740-2775 aFNSP232930 a0000045194 a19900101a19839999 0 aeng aUS10aWorld policy journal 1aVol. 1, no. 1 (1983)- aNew YorkcWorld Policy Instituted1983- aTrimestriel aRelations internationalesxPériodiques aRelations internationalesxPériodiques02aWorld Policy Institute4 uhttp://www.worldpolicy.org/journal/ zContenu : sommaires depuis le vol 15, n°1, Spring 1998 et sélection d'articles en texte intégral1 bvol. 1 no. 1 (aut-1983) -....cParisdMagasins/AnnexeeP 8° 4700 aZSAB aexempb201104 aDEW 32701228nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210005800173326001600231606004400247676000800291710005500299801002100354856004900375856005900424856009000483856010800573955006700681955007000748972000900818991001800827992002100845992001200866038818655000004516020131220103626.01 a0043-8871 aFNSP232852 a0000045160 a19900101a19489999 ba0 aeng aUS aaha 10aWorld politics aBaltimore, Md.cJohns Hopkins University Pressd1948- aTrimestriel aRelations internationalesxPériodiques a32702aCenter of International Studiesc(Princeton, N.J.) 3aFRbCCN0043-88714 uhttp://muse.jhu.edu/journals/world_politics/ zContenu : sommaires depuis le vol. 48, n°1, oct. 19954 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00438871.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 1 no. 1 (oct-1948) -....cParisdMagasins/AnnexeeP 8° 0009 aZCAD aexempb201010 aGEO RQ Universel aDEW 32701056nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000160015421000600017032600220023032600230025243000470027560600440032271000510036680100210041785600490043885600510048795500670053895500830060597200090068899200210069799200120071803881871X000004568620130319051957.01 a0043-9134 aFNSP234731 a0000045686 a19900101a19459999 ba0 aeng aGB aafa 10aWorld today aLondoncRoyal Institute of International Affairsd1945- aBimestrielb2012- aMensuelb1985-2011 1tBulletin of international news,x2044-3986 aRelations internationalesxPériodiques02aRoyal Institute of International Affairsc(GB) 3aFRbCCN0043-91344 uhttp://www.chathamhouse.org/publications/twt zrésumés et sélection d'articles depuis 19981 bvol. 41 no. 1 (1985) -....cParisdMagasins/AnnexeeP 4° 49761 bvol. 1 no. 1 (1945) -vol. 40 no. 12 (1984)cParisdMagasins/AnnexeeP 8° 0019 aZSAB aGEO RQ Universel aDEW 32701044nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200009300163207003000256210004900286326001600335601005200351606004100403710003800444801001300482856006400495856007800559955007000637972000900707992001400716067229794000061043020140107133040.01 a1474-7456 a0000610430 a a20029999 fre 01 ba0 aeng aGB a 0  ar aai z 0 10aWorld trade revieweeconomics, law, international institutionsfWorld Trade Organization 1avol. 1, no 1 (mars 2002)- aCambridgecCambridge University Pressd2002- aTrimestriel02aOrganisation mondiale du commercexPériodiques aCommerce internationalxPériodiques02aOrganisation mondiale du commerce 0aFRbFNSP4 uhttp://journals.cambridge.org/action/displayJournal?jid=WTR zcontient : sommaires et résumés d'articles depuis le vol. 1 no. 1, 20021 bvol. 1 no. 1 (mar-2002) -....cParisdMagasins/AnnexeeP 8° 6749 aZPAY aDEW 341.201352nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210003000175326002500205326002300230430004800253517006700301517008900368606003900457607005300496607004900549710008900598801002100687856007800708856008700786955007100873972000900944992002500953992001200978039470253000004572020130918130023.01 a0342-300X aFNSP234783 a0000045720 a19900101a19729999 ba0 ager aDE aafa 10aWSI-Mitteilungen aKölncBund-Verlagd1972- a8 n°s par an$d2012- aMensuel$d1972-2011 1aWWI-Mitteilungen (0042-9872) < P 4° 0370 >10aWirtschafts-und-Sozialwissenschaftliches-Institut-Mitteilungen10aWirtschafts - und Sozialwissenschaftliches Institut : WSI-Mitteilungen aSyndicatsyAllemagnexPériodiques aAllemagnexConditions économiquesxPériodiques aAllemagnexConditions socialesxPériodiques02aWirtschafts und Sozialwissenschaftlichen Instituts des Deutschen Gewerkschaftsbundes 3aFRbCCN0342-300X4 uhttp://www.boeckler.de/rde/xchg/SID-3D0AB75F-5F281CC1/hbs/hs.xsl/119.html zContenu : sommaires et abstracts depuis 1999, certains articles en texte intégral1 bvol. 25 no. 4 (avr-1972) -....cParisdMagasins/AnnexeeP 4° 0370 aZPAY aGEO RA5.01 Allemagne aDEW 33101054nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000051001502100049002013000098002503260015003483360058003633370063004214520037004846060064005216070045005858010013006308560090006439550005007339920014007380000480110000048011020130319051958.0 a0000480110 a a19489999k fre 01 ba0 aeng aUS az aaj z  adr 10aYale French studiesb[Ressource électronique] aNew Haven, Conn.cYale French studiesd1948- aAccès au texte intégral (réservé aux sites de Sciences Po) jusqu'aux 2 dernières années aSemestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tYale French studiesx(0044-0078) aLittérature françaisexHistoire et critiquexPériodiques aFrancexVie intellectuellexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00440078.html1 r aDEW 80-8901065nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000250015421000460017932600180022560600360024380100210027985600320030085600670033285600900039985601080048995500920059797200090068999100180069899200230071699200120073903881921X000004518820130319051958.01 a0044-0094 aFNSP232919 a0000045188 a19900101a18919999 ba0 aeng aUS aafa 14aThe Yale law journal aNew Haven, Conn.cYale law journald1891- a8 n°s par an aDroityEtats-UnisxPériodiques 3aFRbCCN0044-00944 uhttp://www.yale.edu/yalelj/ zContenu : sommaires et résumés depuis le vol. 101, 1991-19924 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00440094.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 79 no. 8 (jul-1970) -vol. 116 no. 3 (dec-2006)cParisdMagasins/AnnexeeP 8° 2880 aZPAY aexempb201106 aGEO RC2 Etats-Unis aDEW 34901060nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210005300178326001100231430004600242530002400288607002800312712003600340856010400376955006000480955013800540972000900678991001800687992002500705992001600730143713396000009585620130522101608.0 a0810-8633 aFNSP419069 a0000095856 a19900101a19789999 ba0 aeng aAU aaka 10aYear book Australia aCanberracAustralian Bureau of Statisticsd1977- aAnnuel 1aOfficial yearbook of Australiax0312-474600aYear book Australia aAustraliexPériodiques02aAustraliebBureau of Statistics4 uhttp://www.abs.gov.au/ausstats/abs@.nsf/mf/1301.0zAccès au texte intégral du rapport depuis 19081 bvol. 62 (1977/1978)cParisdMagasins/AnnexeeCOL8°01131 bvol. 64 (1980)-vol. 65 (1981) ; vol. 70 (1986)-vol. 73 (1990) ; vol. 75 (1992)-vol. 91(2009/2010)cParisdMagasins/AnnexeeP 8° 5243 aZPAY aexempb201109 aGEO RJ3.01 Australie aDEW 990-99600852nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000084001502100053002342300024002873260011003116070028003227100036003508010013003868560054003998560063004539550005005169920025005219920016005460001241627000124162720130319051958.0 a0001241627 a a20129999k fre 01 ba0 aeng aAU ar aak z  adr 10aYear book Australiab[Ressource électronique]fAustralian Bureau of Statistics aCanberracAustralian Bureau of Statisticsd2012- aRevue électronique aAnnuel aAustraliexPériodiques02aAustraliebBureau of Statistics 0aFRbFNSP4 uhttp://www.abs.gov.au/ausstats/abs@.nsf/mf/1301.04 zContenu : texte intégral du rapport en ligne depuis 1908.1 r aGEO RJ3.01 Australie aDEW 990-99601407nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200014400139210002700283300011700310326001100427510004100438510004100479517003400520530003400554606005100588676000800639710004300647801002100690830005300711856009700764955009600861972000900957991001800966992002100984992001201005992001601017038886472000000286020131008112311.01 a0084-3857 aFNSP101575 a19900101b19352009 f ba0 aeng aCH aaku 10aYear-book of labour statisticsd= Annuaire des statistiques du travaild= Anuario de estadisticas del trabajosfInternational Labour Office aGenevacILOd1935-2009 ale 1er vol est tout en français, les vols suivants en français et anglais, puis français, anglais et espagnol aAnnuel10aAnnuaire des statistiques du travail10aAnuario de estadisticas del trabajos10aYearbook of labour statistics00aYearbook of labour statistics aMarché du travailxStatistiquesxPériodiques a33102aOrganisation internationale du travail 3aFRbCCN0084-3857 a1935-2009 : collection envoyée au CTles en 20134 uhttp://www.ilo.org/stat/Publications/Yearbook/WCMS_CON_TXT_STA_PUB_YRB_EN/lang--fr/index.htm1 b1ère ed. (1935/1936) ; (1937) -(1942)- (2006) ; (2009)cParisdMagasins/AnnexeeP 4° 5214 aZECH aexempb201306 aGEO RQ Universel aDEW 331 aDEW 310-31901153nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000064001552100027002193000051002463260011002975170059003085300064003676060051004316060051004827120051005338560069005848560059006539550056007129550005007689720009007739920021007829920012008030000135080000013508020130319051958.0 a0074-4387 aFNSP543217 a0000135080 a19940902b19542002 f ba0 aeng aFR aaka 10aYear book of the International Council of Scientific Unions aPariscICSUd1954-2002 aA partir de 2005, version en ligne uniquement. aannuel10aYear book - International Council of Scientific Unions00aYear book of the International Council of Scientific Unions aSociétés savantes et institutsxRépertoires aSociétés savantes et institutsxPériodiques02aConseil international des unions scientifiques4 uhttp://www.icsu.org/2_resourcecentre/Resource.php4?rub=11&id=166 zContenu : texte intégral du dernier rapport en ligne.1 b(2000) ; (2002)cParisdMagasins/AnnexeeP 8° 43021 b aZGRA aGEO RQ Universel aDEW 50701117nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000056001502100077002063000087002833260011003703360058003813370063004394400051005024520042005536060032005957120056006278010013006838560090006969550005007869920012007910000463642000046364220130319051958.0 a0000463642 a b19551955k fre 01 ba0 aeng aUS az aak z  adr 10aYearbook of anthropologyb[Ressource électronique] aNew-YorkcWenner-Gren Foundation for Anthropological Researchd1955-1955 aAccès au texte intégral (réservé aux sites de Sciences Po) pour le n° de 1955 aAnnuel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tCurrent anthropology [Ressource électronique] 1tYearbook of anthropologyx(1524-4555) aAnthropologiexPériodiques02aWenner-Gren Foundation for Anthropological Research 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/15244555.html1 r aDEW 30101026nas 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000087001502100064002373260011003014300037003126070047003496070051003967100044004478010013004918560072005048560044005769550047006209720009006679920024006769920012007000000518692000051869220130319051958.0 a0000518692 a a20029999k fre ba0 aeng aFI a 0  ar aak z 0 10aYearbook of Finnish foreign policyfThe Finnish Institute of International Affairs aHelsinkicFinnish Institute of International Affairsd2002- aAnnuel 1tNorthern dimensionsx(1456-1255) aFinlandexDéfense nationalexPériodiques aFinlandexRelations extérieuresxPériodiques02aUlkopoliittinen instituuttic(Finlande) 0aFRbFNSP uhttp://www.upi-fiia.fi/english/navigation/publications_frameset.htm zsommaires des volumes à partir de 19991 b(2002)cParisdMagasins/AnnexeeP 8° 3462 aZGRA aGEO RA3.01 Finlande aDEW 32700955nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210003800176326001600214530002000230606003900250856010800289856010800397955012400505972000900629992002300638992001600661038819457000007471620130319051958.01 a0044-118X aFNSP341169 a0000074716 a19900101a19699999 ba0 aeng aUS aaha 00aYouth and society aNewbury Park, Calif.cSaged1969- aTrimestriel00aYouth & society aJeunesseyEtats-UnisxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 23 no. 3 (mar-1992) -vol. 30 no. 3 (mar-1999) ; vol. 32 no. 3 (mar-2001) -....cParisdMagasins/AnnexeeP 8° 5886 aZSAB aGEO RC2 Etats-Unis aDEW 305-30601317nas 2200361 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000200015420700500017421000530022432600160027744000420029345400370033560700660037260700530043860700300049180100210052185600400054285600930058295501200067595700920079597200090088799100180089699200270091499200140094103881949X000002617120130319051958.01 a0044-1341 aFNSP169797 a0000026171 a19900101b19602002 ba0 aeng aYU aahu 10aYugoslav survey 1avol. 1, no. 1 (1960) - vol. 43, no. 4 ( 2002) aaBeogradcJugoslavia Publishing Housed1960-2002 aTrimestriel 1tSurvey Serbia & Montenegrox1451-477X 1tJugoslovenski pregledx0022-6114 aYougoslaviexPolitique et gouvernementxSourcesxPériodiques aYougoslaviexHistoirexChronologiexPériodiques aYougoslaviexPériodiques 3aFRbCCN0044-1341 uhttp://www.yusurvey.co.yu/index.php zcontenu : sommaires des numéros à partir de 2000 et index des sujets à partir de 20001 bvol. 1 no. 1 (apr-1960) -vol. 43 no. 4 (2002)cParisdMagasins/AnnexeseP 8° 1813wManquant : vol. 32, no. 1, 19911 b(1960) -(1970) ; (1971) -(1976) ; (1989) -(2000)cParisdMagasins/AnnexeseP Index 0005 aZCAD aexempb201102 aGEO RA8.11 Yougoslavie aDEW 949.701003nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001300154210002900167326001700196421003100213606002900244607002800273856019200301856010800493955008700601992002500688992001200713038819856000006736920130319051959.01 a0044-2070 aFNSP312862 a0000067369 a19900101a19469999 ba0 ager aDE aa a 14aDie Zeit aHamburgcDie Zeitd1946- aHebdomadaire 1aDas Zeitmagazinx0720-5023 aActualitéxPériodiques aAllemagnexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bConservation limitée aux 3 dernières annéescParisdMagasins/AnnexeeP F° 1205 aGEO RA5.01 Allemagne aDEW 05000927cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200003200156210004000188326001700228510004900245606002700294801003000321801002300351802000700374856004700381856006200428955006500490972000900555992003300564992001600597080045243000073308020140107172456.01 a1612-6033 aissn16126033 a0000733080 a20030523a20049999 0fre 0103 ba0 amul aDE aai 10aZeithistorische Forschungen aGöttingencVandenhoeck u. Ruprecht a3 nos par an10aStudies in contemporary history (Göttingen) aHistoirexPériodiques 3aFRbAbesc20040901gAFNOR 3aFRbISSNc20030523 a064 uhttp://www.zeithistorische-forschungen.de/ zContenu : texte intégral disponible depuis le n°1, 20041 bvol. 1 no 1 (2004) -....cParisdMagasins/AnnexeeP 8° 6798 aZPAY aGEO RS Sans aspect régional aDEW 900-90701140nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007300154210003300227326001600260517001100276606003800287801002100325856003500346856014200381955007100523955008500594957010500679972000900784992002100793992001200814038820048000004522120130319051959.01 a0044-2348 aFNSP232996 a0000045221 a19900101a19299999 ba0 ager aDE aaha 10aZeitschrift für ausländisches öffentliches Recht und Völkerrecht aStuttgartcKohlhammerd1929- aTrimestriel10aZaöRV aDroit internationalxPériodiques 3aFRbCCN0044-23484 uhttp://www.zaoerv.de/index.cfm zContenu : sommaires des deux dernières années et de l'année en cours, texte intégral depuis le début de la collection (Vol. 1, 1929)1 bvol. 13 no. 1 (fev-1950) -....cParisdMagasins/AnnexeeP 8° 11761 bvol. 1 no. 1 (1929) -vol. 9 no. 4 (fev-1940)cParisdMagasins/AnnexeeP 4° 07691 bvol. 1 (1929) -vol. 20 (1960) ; vol. 41 (1981) -vol. 50 (1990)cParisdMagasins/AnnexeeP Index 0296 aZCAD aGEO RQ Universel aDEW 34101244cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200005200162210004800214326001600262517001700278530006100295606004400356606004400400606005000444676000800494801002800502801002300530802000700553856007600560856006000636955006700696955007000763992001200833992002500845131674390000116916420130319051959.01 a1866-2188 aissn18662188 a0001169164 a20090223a20089999k y0frey0103 ba0 ager aDE ar aazu uu 10aZeitschrift für Aussen- und Sicherheitspolitik aWiesbadencVerlag für Sozialwissenschaften aTrimestriel10aZFAS (Print)10aZeitschrift für Aussen- und Sicherheitspolitikb(Print) aRelations internationalesxPériodiques aSécurité internationalexPériodiques aSécurité nationaleyAllemagnexPériodiques a327 3abAbesc20090308gAFNOR 3aFRbISSNc20090225 a064 uhttp://www.vsjournals.de/index.php;sid=5272211adc4f81cf14fc6b783e7033be zContient : sommaires et résumés depuis le no. 1, 20081 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 1 no. 1 (oct-2008) -....cParisdMagasins/AnnexeeP 8° 7094 aDEW 327 aGEO RA5.01 Allemagne00969nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210005500198326001200253517000800265606002700273607003800300801002100338856004900359856003600408955006100444957007400505972000900579991001800588992002500606992001200631038820285000004523720130319051959.01 a0044-2828 aFNSP233027 a0000045237 a19900101a19539999 ba0 ager aDE aafa 10aZeitschrift für Geschichtswissenschaft aBerlincDeutscher Verlag der Wissenschaftend1953- aMensuel10aZfG aHistoirexPériodiques aAllemagnexHistoirexPériodiques 3aFRbCCN0044-28284 uhttp://www.metropol-verlag.de/pp/zfg/zfg.htm zContenu : sommaires depuis 19941 b(jan/fev-1956) -....cParisdMagasins/AnnexeeP 8° 14251 b(1953) -(1962) ; (1963) -(1972)cParisdMagasins/AnnexeeP Index 0057 aZPAY aexempb201103 aGEO RA5.01 Allemagne aDEW 90900991nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004800154210003000202326001500232606004400247607005200291676000800343710008600351856003200437856007400469955007000543972000900613991001800622992002500640992001200665069435758000019560020140110153836.01 a0946-7165 aFNSP718619 a0000195600 a19900101a19949999 ba0 ager aDE aaja 10aZeitschrift für Internationale Beziehungen aBaden-BadencNomosd1994- aSemestriel aRelations internationalesxPériodiques aAllemagnexRelations extérieuresxPériodiques a32702aDeutsche Vereinigung für Politische WissenschaftbSektion Internationale Politik4 uhttp://www.zib-online.info/ zContenu : sommaires depuis le vol. 1, 1994 ; résumés du dernier n°1 bvol. 1 no. 1 (dec-1994) -....cParisdMagasins/AnnexeeP 8° 6265 aZSAB aexempb201212 aGEO RA5.01 Allemagne aDEW 32701066nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000380013921000410017732600160021845200630023451700480029751700330034553000380037853200210041660100390043771000470047685600870052395500660061097200090067699100180068599200250070399200120072803946346X000004561120131024170438.01 a0340-1758 aFNSP234341 a19900101a19709999 ba0 ager aDE aaha 10aZeitschrift für Parlamentsfragen aOpladencWestdeutscher Verlagd1970- aTrimestriel 1tZeitschrift für Parlamentsfragen (Internet)‎x1862-253410aZeitschrift für Parlamamentsfragen (Print)10aParlamentsfragen (Wiesbaden)00aZeitschrift für Parlamentsfragen10aParlamentsfragen02aAllemagnebBundestagxPériodiques02aDeutsche Vereinigung für Parlamentsfragen4 uhttp://www2.politik.uni-halle.de/zparl/zContenu : Sommaires depuis le Nr. 0, 19691 bvol. 1 no. 1 (1970) -....cParisdMagasins/AnnexeeP 8° 2872 aZSAB aexempb201105 aGEO RA5.01 Allemagne aDEW 32801127nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210004800183210003000231300004400261326001600305606004700321607005500368801002100423856006200444856007500506955015200581972000900733991001800742992002500760992001600785038820471000004521920130319051959.01 a0044-3360 aFNSP232990 a0000045219 a19900101a19079999 ba0 ager aDE aaha 10aZeitschrift für Politik aKölnaBerlin [etc]cC. Heymannsd1907-2003 aBaden-BadencNomosd2003- aPublication interrompue de 1945 à 1953 aTrimestriel aScience politiqueyAllemagnexPériodiques aAllemagnexPolitique et gouvernementxPériodiques 3aFRbCCN0044-33604 uhttp://www.zeitschrift-fuer-politik.de/zfp/zfp_heft.lasso zContenu : Sommaires et abstracts en allemand et en anglais depuis 20041 bvol. 31 no. 10 (oct-1941) -vol. 31 no. 12 (dec-1941) ; vol. 34 no.3/4 et 5/6 (1944) ; n.s. no. 1/2 (1954) -....cParisdMagasins/AnnexeeP 8° 0982 aZGRA aexempb201101 aGEO RA5.01 Allemagne aDEW 320-32101053nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210003000195326001600225430005300241517003300294517000900327607006100336607005500397856002400452856005700476955008200533972000900615991001800624992003200642992002500674992001600699037135686000021103120130319051959.01 a1430-6387 aFNSP763149 a0000211031 a19900101a19969999 ba0 ager aDE aaha 10aZeitschrift für Politikwissenschaft aBaden-BadencNomosd1996- aTrimestriel 1aJahrbuch für Politik,x0940-8673 < P 8° 5861 >10aJournal of political science10aZPol aEurope de l'EstxPolitique et gouvernementxPériodiques aAllemagnexPolitique et gouvernementxPériodiques4 uhttp://www.zpol.de/ zContenu : accès au sommaire du dernier numéro paru1 bvol. 6 no. 1 (1996) -vol. 15 no. 4 (2005)cParisdMagasins/AnnexeeP 8° 5861 aZSAB aexempb201201 aGEO RA2.02 Europe orientale aGEO RA5.01 Allemagne aDEW 320-32101047nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003700139210006400176326001600240430004600256530003700302606005900339710006200398711004100460801002100501856007500522955007200597972000900669991001800678992002500696992001200721039683214000004564120131021145909.01 a0721-0752 aFNSP234415 a19900101a19799999 ba0 ager aDE aaha 10aZeitschrift für Sozialökonomie aHann.-MündencFachverlag für Sozialökonomie Gauked1979- aTrimestriel 1aMensch, Technik, Gesellschaft,x0342-1163 aZeitschrift für Sozialökonomie aEconomie sociale et solidaireyAllemagnexPériodiques02aStiftung für persönliche Freiheitund soziale Sicherheit02aSozialwissenschaftliche Gesellschaft 3aFRbCCN0721-07524 uhttp://www.sozialoekonomie-online.de/zAccès libre au texte intégral1 bvol. 21 no. 60 (mar-1984) -....cParisdMagasins/AnnexeeP 8° 4733 aZPAY aexempb201310 aGEO RA5.01 Allemagne aDEW 33001154nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002400139210005400163326001100217452004100228512003600269517005800305530002400363606004300387710005000430711002100480856015000501955005500651955005500706972000900761991001800770992001600788992001200804039607259000009223620140108134649.01 a0429-338X aFNSP407225 a19900101a19539999 ba0 afre aFR aaka 13aLa Zone franc en... aPariscComité monétaire de la zone francd1953- aAnnuel 1tLa Zone franc (En ligne),x2263-364210aRapport annuel de la zone franc10aRapport annuel du Comité monétaire de la zone franc13aLa Zone franc en... aZone francxStatistiquesxPériodiques02aComité monétaire de la zone francc(France)02aBanque de France uhttp://www.banque-france.fr/eurosysteme-et-international/zone-franc/rapports-annuels-de-la-zone-franc.htmlzAccès au texte intégral depuis 19941 b(1980) -(1993)cParisdMagasins/AnnexeeP 4° 55861 b(1953) -(1979)cParisdMagasins/AnnexeeCOL4°0500 aZGRA aexempb201312 aDEW 310-319 aDEW 332 \ No newline at end of file diff --git a/datastructures-io/src/main/java/org/xbib/datastructures/io/BufferedSeparatorInputStream.java b/datastructures-io/src/main/java/org/xbib/datastructures/io/BufferedSeparatorInputStream.java new file mode 100644 index 0000000..d68e380 --- /dev/null +++ b/datastructures-io/src/main/java/org/xbib/datastructures/io/BufferedSeparatorInputStream.java @@ -0,0 +1,189 @@ +package org.xbib.datastructures.io; + +import java.io.BufferedInputStream; +import java.io.IOException; +import java.io.InputStream; +import java.io.UncheckedIOException; +import java.nio.charset.Charset; +import java.util.Arrays; +import java.util.Iterator; +import java.util.NoSuchElementException; +import java.util.Spliterator; +import java.util.Spliterators; +import java.util.function.Consumer; +import java.util.stream.Stream; +import java.util.stream.StreamSupport; + +/** + * A buffered input stream for iterating over data streams with information + * separators. + * + * The information separators of the C0 control group are defined in: + * - ANSI X3.4-1967 (ASCII) + * - IETF RFC 20 (Vint Cerf, 1969) + * - ISO-646:1972 + * - ECMA-6 3rd revision August 1973 + * - ECMA-48 + * - ISO/IEC 6429 + * - CCITT International Telegraph Alphabet Number 5 (ITA-5) + * + * From ASCII-1967: + * "Can be used as delimiters to mark fields of data structures. + * If used for hierarchical levels, US is the lowest level (dividing + * plain-text data items), while RS, GS, and FS are of increasing level + * to divide groups made up of items of the level beneath it." + * + * Form IETF RFC 20: + * "Information Separator: A character which is used to separate + * and qualify information in a logical sense. There is a group of four + * such characters, which are to be used in a hierarchical order." + * + * From ECMA-48 (ISO/IEC 6429): + * + * "Each information separator is given two names. The names, + * INFORMATION SEPARATOR FOUR (IS4), INFORMATION SEPARATOR THREE (IS3), + * INFORMATION SEPARATOR TWO (IS2), and INFORMATION SEPARATOR ONE (IS1) + * are the general names. The names FILE SEPARATOR (FS), GROUP SEPARATOR (GS), + * RECORD SEPARATOR (RS), and UNIT SEPARATOR (US) are the specific names and + * are intended mainly for applications where the information separators are + * used hierarchically. The ascending order is then US, RS, GS, FS. + * In this case, data normally delimited by a particular separator cannot + * be split by a higher-order separator but will be considered as delimited by + * any other higher-order separator. + * In ISO/IEC 10538, IS3 and IS4 are given the names PAGE TERMINATOR (PT) + * and DOCUMENT TERMINATOR (DT), respectively and may be used to reset + * presentation attributes to the default state." + */ +public class BufferedSeparatorInputStream extends BufferedInputStream implements Iterable { + + private final ByteOutput byteOutput; + + private final int buffersize; + + private final Charset charset; + + private int begin; + + private int end; + + private byte separator; + + private final Information information; + + private Consumer consumer; + + /** + * Create a buffered information separator stream. + * @param in the underlying input stream + * @param inputBuffersize the buffer size for the input stream + * @param outputBufferSize the buffer size for the output buffer stream + */ + public BufferedSeparatorInputStream(InputStream in, + int inputBuffersize, + int outputBufferSize, + Charset charset) { + super(in, inputBuffersize); + this.buffersize = inputBuffersize; + this.charset = charset; + this.begin = 0; + this.end = -1; + this.separator = InformationSeparator.FS; + this.byteOutput = new BytesStreamOutput(outputBufferSize); + this.information = new Information(); + } + + public void setConsumer(Consumer consumer) { + this.consumer = consumer; + } + + @Override + public Iterator iterator() { + return new Iterator<>() { + Information information = null; + + @Override + public boolean hasNext() { + if (information != null) { + return true; + } else { + try { + information = nextInformation(); + return information != null; + } catch (IOException e) { + throw new UncheckedIOException(e); + } + } + } + + @Override + public Information next() { + if (information != null || hasNext()) { + Information data = information; + information = null; + return data; + } else { + throw new NoSuchElementException(); + } + } + }; + } + + public Stream stream() { + return StreamSupport.stream(Spliterators.spliteratorUnknownSize(iterator(), + Spliterator.ORDERED | Spliterator.NONNULL), false); + } + + public ByteOutput byteOutput() { + return byteOutput; + } + + public byte getByte(int i) { + return byteOutput.bytes()[i]; + } + + public int count() { + return information.getCount(); + } + + public byte[] informationBytes() { + return Arrays.copyOf(byteOutput.bytes(), information.getCount()); + } + + public String informationString() { + return new String(byteOutput.bytes(), 0, information.getCount(), charset); + } + + private Information nextInformation() throws IOException { + while (true) { + if (end - begin <= 0) { + begin = 0; + end = super.read(buf, begin, buffersize); + } + if (end == -1) { + return null; + } + for (int i = begin; i < end; i++) { + byte b = buf[i]; + switch (b) { + case InformationSeparator.US: + case InformationSeparator.RS: + case InformationSeparator.GS: + case InformationSeparator.FS: + pos = i; + separator = b; + byteOutput.write(buf, begin, pos - begin); + information.setSeparator(separator); + information.setCount(byteOutput.count()); + if (consumer != null) { + consumer.accept(information); + } + byteOutput.reset(); + begin = pos + 1; + return information; + } + } + byteOutput.write(buf, begin, buffersize - begin); + begin = buffersize; + } + } +} diff --git a/datastructures-io/src/main/java/org/xbib/datastructures/io/ByteOutput.java b/datastructures-io/src/main/java/org/xbib/datastructures/io/ByteOutput.java new file mode 100644 index 0000000..96b6430 --- /dev/null +++ b/datastructures-io/src/main/java/org/xbib/datastructures/io/ByteOutput.java @@ -0,0 +1,14 @@ +package org.xbib.datastructures.io; + +public interface ByteOutput { + + void writeByte(byte b); + + void write(byte[] b, int offset, int count); + + int count(); + + byte[] bytes(); + + void reset(); +} diff --git a/datastructures-io/src/main/java/org/xbib/datastructures/io/BytesStreamOutput.java b/datastructures-io/src/main/java/org/xbib/datastructures/io/BytesStreamOutput.java new file mode 100644 index 0000000..29221fd --- /dev/null +++ b/datastructures-io/src/main/java/org/xbib/datastructures/io/BytesStreamOutput.java @@ -0,0 +1,136 @@ +package org.xbib.datastructures.io; + +import java.io.IOException; +import java.io.OutputStream; +import java.util.Arrays; + +/** + * A growable stream of bytes, with random access methods. + */ +public class BytesStreamOutput extends OutputStream implements ByteOutput { + + /** + * The buffer where data is stored. + */ + private byte[] buf; + + /** + * The number of valid bytes in the buffer. + */ + private int count; + + public BytesStreamOutput() { + this(1024); + } + + /** + * Create a new {@code BytesStreamOutput} with given buffer size. + * @param size size + */ + public BytesStreamOutput(int size) { + this.buf = new byte[size]; + } + + /** + * Write a byte. + * + * @param b the byte + */ + @Override + public void writeByte(byte b) { + int newcount = count + 1; + if (newcount > buf.length) { + buf = Arrays.copyOf(buf, oversize(newcount)); + } + buf[count] = b; + count = newcount; + } + + @Override + public void write(int i) { + byte [] b = new byte[] { + (byte)((i >> 24) & 0xff), + (byte)((i >> 16) & 0xff), + (byte)((i >> 8) & 0xff), + (byte)((i) & 0xff), + }; + write(b, 0, 4); + } + + /** + * Append byte array to this output stream. + * + * @param b byte array + * @param offset offset + * @param length length + */ + @Override + public void write(byte[] b, int offset, int length) { + if (length == 0) { + return; + } + int newcount = count + length; + if (newcount > buf.length) { + buf = Arrays.copyOf(buf, oversize(newcount)); + } + System.arraycopy(b, offset, buf, count, length); + count = newcount; + } + + @Override + public int count() { + return count; + } + + @Override + public byte[] bytes() { + return buf; + } + + @Override + public void reset() { + count = 0; + } + + @Override + public void flush() throws IOException { + // nothing to do there + } + + @Override + public void close() throws IOException { + // nothing to do here + } + + /** + * Returns an array size >= minTargetSize, generally + * over-allocating exponentially to achieve amortized + * linear-time cost as the array grows. + * NOTE: this was originally borrowed from Python 2.4.2 + * listobject.c sources (attribution in LICENSE.txt), but + * has now been substantially changed based on + * discussions from java-dev thread with subject "Dynamic + * array reallocation algorithms", started on Jan 12 + * 2010. + * + * @param minTargetSize Minimum required value to be returned. + * @return int + */ + private static int oversize(int minTargetSize) { + if (minTargetSize < 0) { + throw new IllegalArgumentException("invalid array size " + minTargetSize); + } + if (minTargetSize == 0) { + return 0; + } + int extra = minTargetSize >> 3; + if (extra < 3) { + extra = 3; + } + int newSize = minTargetSize + extra; + if (newSize + 7 < 0) { + return Integer.MAX_VALUE; + } + return (newSize + 7) & 0x7ffffff8; + } +} diff --git a/datastructures-io/src/main/java/org/xbib/datastructures/io/FilteredSeparatorInputStream.java b/datastructures-io/src/main/java/org/xbib/datastructures/io/FilteredSeparatorInputStream.java new file mode 100644 index 0000000..ce00596 --- /dev/null +++ b/datastructures-io/src/main/java/org/xbib/datastructures/io/FilteredSeparatorInputStream.java @@ -0,0 +1,115 @@ +package org.xbib.datastructures.io; + +import java.io.FilterInputStream; +import java.io.IOException; +import java.io.InputStream; +import java.io.UncheckedIOException; +import java.nio.charset.Charset; +import java.util.Iterator; +import java.util.NoSuchElementException; +import java.util.Spliterator; +import java.util.Spliterators; +import java.util.function.Consumer; +import java.util.stream.Stream; +import java.util.stream.StreamSupport; + +/** + * An unbuffered separator stream which reads character by character. This is a very slow implementation. + */ +public class FilteredSeparatorInputStream extends FilterInputStream implements Iterable { + + private final ByteOutput byteOutput; + + private final Information information; + + private final Charset charset; + + private Consumer consumer; + + /** + * Create separator stream. + * @param in the underlying input stream + */ + public FilteredSeparatorInputStream(InputStream in, + int outputBufferSize, + Charset charset) { + super(in); + this.charset = charset; + this.byteOutput = new BytesStreamOutput(outputBufferSize); + this.information = new Information(); + } + + public void setConsumer(Consumer consumer) { + this.consumer = consumer; + } + + @Override + public Iterator iterator() { + return new Iterator<>() { + Information information = null; + + @Override + public boolean hasNext() { + if (information != null) { + return true; + } else { + try { + information = nextInformation(); + return information != null; + } catch (IOException e) { + throw new UncheckedIOException(e); + } + } + } + + @Override + public Information next() { + if (information != null || hasNext()) { + Information data = information; + information = null; + return data; + } else { + throw new NoSuchElementException(); + } + } + }; + } + + public Stream stream() { + return StreamSupport.stream(Spliterators.spliteratorUnknownSize(iterator(), + Spliterator.ORDERED | Spliterator.NONNULL), false); + } + + public String informationString() { + return new String(byteOutput.bytes(), 0, information.getCount(), charset); + } + + /** + * Read next chunk. This is slow, it uses the {@code read()} method. + * @return the next chunk + * @throws IOException if chunk reading fails + */ + private Information nextInformation() throws IOException { + while (true) { + int ch = super.read(); + if (ch == -1) { + return null; + } + switch (ch) { + case InformationSeparator.US: + case InformationSeparator.RS: + case InformationSeparator.GS: + case InformationSeparator.FS: + information.setSeparator((byte) ch); + information.setCount(byteOutput.count()); + if (consumer != null) { + consumer.accept(information); + } + byteOutput.reset(); + return information; + default: + byteOutput.writeByte((byte) ch); + } + } + } +} diff --git a/datastructures-io/src/main/java/org/xbib/datastructures/io/Information.java b/datastructures-io/src/main/java/org/xbib/datastructures/io/Information.java new file mode 100644 index 0000000..5d021e4 --- /dev/null +++ b/datastructures-io/src/main/java/org/xbib/datastructures/io/Information.java @@ -0,0 +1,24 @@ +package org.xbib.datastructures.io; + +public class Information { + + private byte separator; + + private int count; + + public void setSeparator(byte separator) { + this.separator = separator; + } + + public byte getSeparator() { + return separator; + } + + public void setCount(int count) { + this.count = count; + } + + public int getCount() { + return count; + } +} diff --git a/datastructures-io/src/main/java/org/xbib/datastructures/io/InformationSeparator.java b/datastructures-io/src/main/java/org/xbib/datastructures/io/InformationSeparator.java new file mode 100644 index 0000000..1aec6c6 --- /dev/null +++ b/datastructures-io/src/main/java/org/xbib/datastructures/io/InformationSeparator.java @@ -0,0 +1,32 @@ +package org.xbib.datastructures.io; + +/** + * An interface for Information separators. + * Also known as control characters group 0 ("C0"), ASCII-1967 + * defines units, records, groups and files as separable hierarchically + * organized data structures. The structures are separated not by protocol, + * but by embedded separator codes. + * Originally, these codes were used to simulate punch card data on magnetic + * tape. Trailing blanks on tape could be saved by using separator characters + * instead. + */ +public interface InformationSeparator { + + /** + * FILE SEPARATOR. + */ + byte FS = 0x1c; + /** + * RECORD TERMINATOR / GROUP SEPARATOR / Satzende (SE). + */ + byte GS = 0x1d; + /** + * FIELD TERMINATOR / RECORD SEPARATOR / Feldende (FE). + */ + byte RS = 0x1e; + /** + * SUBFIELD DELIMITER / UNIT SEPARATOR / Unterfeld (UF). + */ + byte US = 0x1f; + +} diff --git a/datastructures-io/src/main/java/org/xbib/datastructures/io/InfostreamGenerator.java b/datastructures-io/src/main/java/org/xbib/datastructures/io/InfostreamGenerator.java new file mode 100644 index 0000000..c9166ce --- /dev/null +++ b/datastructures-io/src/main/java/org/xbib/datastructures/io/InfostreamGenerator.java @@ -0,0 +1,222 @@ +package org.xbib.datastructures.io; + +import java.io.Closeable; +import java.io.Flushable; +import java.io.IOException; +import java.io.OutputStream; +import java.util.Collection; +import java.util.Map; +import java.util.Objects; + +public class InfostreamGenerator implements Flushable, Closeable { + + private static final String TRUE_STRING = "1"; + + private static final String FALSE_STRING = "0"; + + private final OutputStream outputStream; + + private final ByteOutput byteOutput; + + private final int limit; + + private boolean inArray; + + public InfostreamGenerator(OutputStream outputStream) { + this(outputStream, 512); + } + + public InfostreamGenerator(OutputStream outputStream, int limit) { + this.outputStream = outputStream; + this.byteOutput = new BytesStreamOutput(limit * 2); + this.limit = limit; + } + + @Override + public void close() throws IOException { + byteOutput.writeByte(InformationSeparator.FS); + outputStream.write(byteOutput.bytes(), 0, byteOutput.count()); + byteOutput.reset(); + outputStream.close(); + } + + @Override + public void flush() throws IOException { + outputStream.write(byteOutput.bytes(), 0, byteOutput.count()); + byteOutput.reset(); + outputStream.flush(); + } + + public void writeNull() throws IOException { + byteOutput.writeByte(InformationSeparator.US); + byteOutput.writeByte(Types.NULL); + flushIfNeeded(); + } + + public void writeString(String string) throws IOException { + internalWrite(inArray ? null : Types.STRING, string); + } + + public void writeChar(char ch) throws IOException { + internalWrite(inArray ? null : Types.CHAR, Character.toString(ch)); + } + + public void writeBoolean(boolean bool) throws IOException { + internalWrite(inArray ? null : Types.BOOLEAN, bool ? TRUE_STRING : FALSE_STRING); + } + + public void writeByte(byte number) throws IOException { + internalWrite(inArray ? null : Types.BYTE, Byte.toString(number)); + } + + public void writeShort(short number) throws IOException { + internalWrite(inArray ? null : Types.SHORT, Short.toString(number)); + } + + public void writeInt(int number) throws IOException { + internalWrite(inArray ? null : Types.INT, Integer.toString(number)); + } + + public void writeLong(long number) throws IOException { + internalWrite(inArray ? null : Types.LONG, Long.toString(number)); + } + + public void writeFloat(float number) throws IOException { + internalWrite(inArray ? null : Types.FLOAT, Float.toString(number)); + } + + public void writeDouble(double number) throws IOException { + internalWrite(inArray ? null : Types.DOUBLE, Double.toString(number)); + } + + public void writeObject(Object object) throws IOException { + if (object == null) { + writeNull(); + return; + } + if (object instanceof String) { + writeString((String) object); + return; + } + if (object instanceof Boolean) { + writeBoolean((Boolean) object); + return; + } + if (object instanceof Integer) { + writeInt((int) object); + return; + } + if (object instanceof Long) { + writeLong((long) object); + return; + } + if (object instanceof Byte) { + writeByte((byte) object); + return; + } + if (object instanceof Character) { + writeChar((char) object); + return; + } + if (object instanceof Short) { + writeShort((short) object); + return; + } + if (object instanceof Float) { + writeFloat((float) object); + return; + } + if (object instanceof Double) { + writeDouble((double) object); + return; + } + // fall back + internalWrite(Types.OBJECT, object.getClass().getName() + " " + object.toString()); + } + + public void writeCollection(Collection collection) throws IOException { + writeCollection(collection, true); + } + + private void writeCollection(Collection collection, boolean typeControl) throws IOException { + Objects.requireNonNull(collection); + if (typeControl) { + byteOutput.writeByte(Types.ARRAY); + inArray = false; + } + for (Object object : collection) { + writeObject(object); + if (typeControl) { + inArray = true; + } + } + if (typeControl) { + inArray = false; + } + byteOutput.writeByte(InformationSeparator.RS); + } + + public void writeMap(Map map) throws IOException { + Objects.requireNonNull(map); + writeCollection(map.keySet(), true); + writeCollection(map.values(), false); + byteOutput.writeByte(InformationSeparator.GS); + } + + private void flushIfNeeded() throws IOException { + if (byteOutput.count() > limit) { + outputStream.write(byteOutput.bytes(), 0, byteOutput.count()); + byteOutput.reset(); + } + } + + private void internalWrite(Byte type, CharSequence charSequence) throws IOException { + if (type != null) { + byteOutput.writeByte(type); + if (type == Types.STRING) { + encodeUtf8(charSequence, byteOutput); + } else { + encodeAscii(charSequence, byteOutput); + } + } else { + encodeUtf8(charSequence, byteOutput); + } + byteOutput.writeByte(InformationSeparator.US); + flushIfNeeded(); + } + + private static void encodeAscii(CharSequence charSequence, ByteOutput byteOutput) { + int len = charSequence.length(); + for (int i = 0; i < len; i++) { + byteOutput.writeByte((byte) charSequence.charAt(i)); + } + } + + private static void encodeUtf8(CharSequence charSequence, ByteOutput byteOutput) { + int c; + int bytePos = 0; + int charPos = 0; + byte[] buffer = new byte[4]; + int charAbsLength = charSequence.length(); + for (; charPos < charAbsLength; charPos++) { + c = charSequence.charAt(charPos); + if (!(c <= 0x007F)) + break; + buffer[bytePos++] = (byte) c; + } + for (; charPos < charAbsLength; charPos++) { + c = charSequence.charAt(charPos); + if (c <= 0x007F) { + buffer[bytePos++] = (byte) c; + } else if (c > 0x07FF) { + buffer[bytePos++] = (byte) (0xE0 | ((c >> 12) & 0x0F)); + buffer[bytePos++] = (byte) (0x80 | ((c >> 6) & 0x3F)); + buffer[bytePos++] = (byte) (0x80 | (c & 0x3F)); + } else { + buffer[bytePos++] = (byte) (0xC0 | ((c >> 6) & 0x1F)); + buffer[bytePos++] = (byte) (0x80 | (c & 0x3F)); + } + } + byteOutput.write(buffer, 0, bytePos); + } +} diff --git a/datastructures-io/src/main/java/org/xbib/datastructures/io/InfostreamParser.java b/datastructures-io/src/main/java/org/xbib/datastructures/io/InfostreamParser.java new file mode 100644 index 0000000..98fb569 --- /dev/null +++ b/datastructures-io/src/main/java/org/xbib/datastructures/io/InfostreamParser.java @@ -0,0 +1,31 @@ +package org.xbib.datastructures.io; + +import java.io.InputStream; +import java.nio.charset.StandardCharsets; +import java.util.Iterator; + +public class InfostreamParser { + + private final BufferedSeparatorInputStream bufferedSeparatorInputStream; + + private final Iterator iterator; + + public InfostreamParser(InputStream inputStream) { + this.bufferedSeparatorInputStream = inputStream instanceof BufferedSeparatorInputStream ? + (BufferedSeparatorInputStream) inputStream : new BufferedSeparatorInputStream(inputStream, 8192, 8192, StandardCharsets.UTF_8); + this.iterator = bufferedSeparatorInputStream.iterator(); + } + + public Information nextInformation() { + return iterator.next(); + } + + public String nextString() { + Information information = nextInformation(); + if (information.getSeparator() == InformationSeparator.US) { + return new String(bufferedSeparatorInputStream.byteOutput().bytes(), 0, information.getCount()); + } else { + return null; + } + } +} diff --git a/datastructures-io/src/main/java/org/xbib/datastructures/io/Types.java b/datastructures-io/src/main/java/org/xbib/datastructures/io/Types.java new file mode 100644 index 0000000..8fb9f07 --- /dev/null +++ b/datastructures-io/src/main/java/org/xbib/datastructures/io/Types.java @@ -0,0 +1,29 @@ +package org.xbib.datastructures.io; + +public interface Types { + + byte BYTE = 'B'; + + byte SHORT = 'S'; + + byte INT = 'I'; + + byte LONG = 'L'; + + byte FLOAT = 'F'; + + byte DOUBLE = 'D'; + + byte CHAR = 'C'; + + byte BOOLEAN = 'b'; + + byte NULL = '*'; + + byte STRING = '$'; + + byte OBJECT = '@'; + + byte ARRAY = '['; + +} diff --git a/datastructures-io/src/test/java/org/xbib/datastructures/io/test/BufferedSeparatorInputStreamTest.java b/datastructures-io/src/test/java/org/xbib/datastructures/io/test/BufferedSeparatorInputStreamTest.java new file mode 100644 index 0000000..e7f3eb7 --- /dev/null +++ b/datastructures-io/src/test/java/org/xbib/datastructures/io/test/BufferedSeparatorInputStreamTest.java @@ -0,0 +1,171 @@ +package org.xbib.datastructures.io.test; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.fail; +import org.junit.jupiter.api.Test; +import org.xbib.datastructures.io.BufferedSeparatorInputStream; +import org.xbib.datastructures.io.Information; +import org.xbib.datastructures.io.InformationSeparator; +import org.xbib.datastructures.io.FilteredSeparatorInputStream; +import java.io.InputStream; +import java.nio.charset.StandardCharsets; +import java.util.LinkedHashMap; +import java.util.Map; +import java.util.concurrent.atomic.AtomicInteger; +import java.util.concurrent.atomic.AtomicLong; +import java.util.function.Consumer; + +public class BufferedSeparatorInputStreamTest { + + private int dataCount = 0; + private int unitCount = 0; + private int recordCount = 0; + private int groupCount = 0; + private int fileCount = 0; + + private void incDataCount(int len) { + dataCount += len; + } + + private void incUnitCount() { + unitCount++; + } + + private void incRecordCount() { + recordCount++; + } + + private void incGroupCount() { + groupCount++; + } + + private void incFileCount() { + fileCount++; + } + + @Test + public void testStreamSpearators() throws Exception { + String s = "/sequential.groupstream"; + InputStream in = getClass().getResourceAsStream(s); + BufferedSeparatorInputStream bufferedSeparatorInputStream = + new BufferedSeparatorInputStream(in, 8192, 1024, StandardCharsets.ISO_8859_1); + + Consumer consumer = information -> { + switch (information.getSeparator()) { + case InformationSeparator.US: + incUnitCount(); + break; + case InformationSeparator.RS: + incRecordCount(); + break; + case InformationSeparator.GS: + incGroupCount(); + break; + case InformationSeparator.FS: + incFileCount(); + break; + } + String string = bufferedSeparatorInputStream.informationString(); + incDataCount(string.length()); + }; + for( Information information : bufferedSeparatorInputStream) { + consumer.accept(information); + } + in.close(); + assertEquals(0, fileCount); + assertEquals(10, groupCount); + assertEquals(356, recordCount); + assertEquals(23, unitCount); + assertEquals(9307, dataCount); + } + + @Test + public void testGroupStream() throws Exception { + String s = "/sequential.groupstream"; + InputStream in = getClass().getResourceAsStream(s); + final AtomicInteger count = new AtomicInteger(0); + BufferedSeparatorInputStream bufferedSeparatorInputStream = + new BufferedSeparatorInputStream(in, 8192, 1024, StandardCharsets.ISO_8859_1); + Consumer consumer = information -> count.incrementAndGet(); + for (Information information: bufferedSeparatorInputStream) { + consumer.accept(information); + } + in.close(); + assertEquals(389, count.get()); + } + + @Test + public void testSpeed() throws Exception { + String s = "/periouni.mrc"; + Map map2 = new LinkedHashMap<>(); + InputStream in2 = getClass().getResourceAsStream(s); + final AtomicInteger count2 = new AtomicInteger(0); + BufferedSeparatorInputStream bufferedSeparatorInputStream = + new BufferedSeparatorInputStream(in2, 8192, 1024, StandardCharsets.ISO_8859_1); + Consumer informationConsumer = + information -> map2.put(count2.incrementAndGet(), information.getCount()); + for (Information information: bufferedSeparatorInputStream) { + informationConsumer.accept(information); + } + in2.close(); + + // compare to slow FilteredSeparatorInputStream + Map map = new LinkedHashMap<>(); + InputStream in = getClass().getResourceAsStream(s); + final AtomicInteger count = new AtomicInteger(0); + FilteredSeparatorInputStream filteredSeparatorInputStream = + new FilteredSeparatorInputStream(in, 1024, StandardCharsets.ISO_8859_1); + Consumer consumer = + information1 -> map.put(count.incrementAndGet(), information1.getCount()); + for (Information information1: filteredSeparatorInputStream) { + consumer.accept(information1); + } + in.close(); + + assertEquals(map.size(), map2.size()); + for (int i = 1; i <= map.size(); i++) { + if (!map.get(i).equals(map2.get(i))) { + fail("diff: " + i + " " + map.get(i) + " != " + map2.get(i)); + } + } + } + + @Test + public void testInformationStreamInformation() { + String s = "/periouni.mrc"; + InputStream in = getClass().getResourceAsStream(s); + BufferedSeparatorInputStream bufferedSeparatorInputStream = + new BufferedSeparatorInputStream(in, 8192, 1024, StandardCharsets.ISO_8859_1); + AtomicLong l = new AtomicLong(); + bufferedSeparatorInputStream.stream().forEach(information -> l.addAndGet(bufferedSeparatorInputStream.informationString().length())); + assertEquals(3400860, l.get()); + } + + @Test + public void testInformationStreamCount() { + String s = "/periouni.mrc"; + InputStream in = getClass().getResourceAsStream(s); + BufferedSeparatorInputStream bufferedSeparatorInputStream = + new BufferedSeparatorInputStream(in, 8192, 1024, StandardCharsets.ISO_8859_1); + long l = bufferedSeparatorInputStream.stream().count(); + assertEquals(192247, l); + } + + @Test + public void testMARC() throws Exception { + String s = "/summerland.mrc"; + Map map = new LinkedHashMap<>(); + InputStream in = getClass().getResourceAsStream(s); + final AtomicInteger count = new AtomicInteger(0); + BufferedSeparatorInputStream bufferedSeparatorInputStream = + new BufferedSeparatorInputStream(in, 8192, 1024, StandardCharsets.ISO_8859_1); + Consumer consumer = information -> map.put(count.incrementAndGet(), information.getCount()); + for (Information information: bufferedSeparatorInputStream) { + consumer.accept(information); + } + assertEquals("{1=204, 2=8, 3=16, 4=40, 5=2, 6=11, 7=2, 8=18, 9=2, 10=4, 11=4, 12=4, 13=2, 14=17, 15=2, " + + "16=13, 17=16, 18=2, 19=8, 20=2, 21=11, 22=43, 23=7, 24=2, 25=9, 26=7, 27=2, 28=171, 29=2, 30=9, " + + "31=2, 32=9, 33=9, 34=2, 35=6, 36=9, 37=0}", map.toString()); + in.close(); + } +} diff --git a/datastructures-io/src/test/java/org/xbib/datastructures/io/test/InfostreamGeneratorTest.java b/datastructures-io/src/test/java/org/xbib/datastructures/io/test/InfostreamGeneratorTest.java new file mode 100644 index 0000000..1e08441 --- /dev/null +++ b/datastructures-io/src/test/java/org/xbib/datastructures/io/test/InfostreamGeneratorTest.java @@ -0,0 +1,110 @@ +package org.xbib.datastructures.io.test; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import org.junit.jupiter.api.Test; +import org.xbib.datastructures.io.BytesStreamOutput; +import org.xbib.datastructures.io.Information; +import org.xbib.datastructures.io.InfostreamGenerator; +import org.xbib.datastructures.io.InfostreamParser; +import java.io.ByteArrayInputStream; +import java.io.IOException; +import java.nio.charset.StandardCharsets; +import java.util.Arrays; +import java.util.Map; +import java.util.logging.Level; +import java.util.logging.Logger; + +public class InfostreamGeneratorTest { + + private static final Logger logger = Logger.getLogger(InfostreamGenerator.class.getName()); + + @Test + public void writeString() throws IOException { + BytesStreamOutput output = new BytesStreamOutput(); + InfostreamGenerator generator = new InfostreamGenerator(output); + generator.writeString("a"); + generator.close(); + byte[] b = output.bytes(); + assertEquals(4, output.count()); + for (int i = 0; i < output.count(); i++) { + logger.log(Level.INFO, Integer.toHexString(b[i])); + } + } + + @Test + public void writeBoolean() throws IOException { + BytesStreamOutput output = new BytesStreamOutput(); + InfostreamGenerator generator = new InfostreamGenerator(output); + generator.writeBoolean(true); + generator.close(); + byte[] b = output.bytes(); + assertEquals(4, output.count()); + for (int i = 0; i < output.count(); i++) { + logger.log(Level.INFO, Integer.toHexString(b[i])); + } + } + + @Test + public void writeLong() throws IOException { + BytesStreamOutput output = new BytesStreamOutput(); + InfostreamGenerator generator = new InfostreamGenerator(output); + generator.writeLong(1L); + generator.close(); + byte[] b = output.bytes(); + assertEquals(4, output.count()); + for (int i = 0; i < output.count(); i++) { + logger.log(Level.INFO, Integer.toHexString(b[i])); + } + } + + @Test + public void writeSet() throws IOException { + BytesStreamOutput output = new BytesStreamOutput(); + InfostreamGenerator generator = new InfostreamGenerator(output); + generator.writeCollection(Arrays.asList("a","b","c")); + generator.close(); + byte[] b = output.bytes(); + logger.log(Level.INFO, "a,b,c: count = " + output.count()); + for (int i = 0; i < output.count(); i++) { + logger.log(Level.INFO, Integer.toHexString(b[i])); + } + } + + @Test + public void writeSimpleMap() throws IOException { + BytesStreamOutput output = new BytesStreamOutput(1024); + InfostreamGenerator generator = new InfostreamGenerator(output); + generator.writeMap(Map.of("a", "b")); + generator.close(); + byte[] b = output.bytes(); + logger.log(Level.INFO, "{a:b} count = " + output.count()); + for (int i = 0; i < output.count(); i++) { + logger.log(Level.INFO, Integer.toHexString(b[i])); + } + int l = "{\"a\":\"b\"}".getBytes(StandardCharsets.UTF_8).length; + logger.log(Level.INFO, "{a:b} json length = " + l); + } + + @Test + public void writeDoubleMap() throws IOException { + BytesStreamOutput output = new BytesStreamOutput(1024); + InfostreamGenerator generator = new InfostreamGenerator(output); + generator.writeMap(Map.of("a", "b", "c", "d")); + generator.close(); + byte[] b = output.bytes(); + logger.log(Level.INFO, "{a:b,c:d} count = " + output.count()); + for (int i = 0; i < output.count(); i++) { + logger.log(Level.INFO, Integer.toHexString(b[i])); + } + int l = "{\"a\":\"b\",\"c\":\"d\"}".getBytes(StandardCharsets.UTF_8).length; + logger.log(Level.INFO, "{a:b,c:d} json length = " + l); + + ByteArrayInputStream inputStream = new ByteArrayInputStream(b, 0, output.count()); + InfostreamParser parser = new InfostreamParser(inputStream); + logger.log(Level.INFO, "string = " + parser.nextString()); + logger.log(Level.INFO, "string = " + parser.nextString()); + logger.log(Level.INFO, "string = " + parser.nextString()); + logger.log(Level.INFO, "string = " + parser.nextString()); + logger.log(Level.INFO, "string = " + parser.nextString()); + } +} diff --git a/datastructures-io/src/test/resources/periouni.mrc b/datastructures-io/src/test/resources/periouni.mrc new file mode 100644 index 0000000..dcfed83 --- /dev/null +++ b/datastructures-io/src/test/resources/periouni.mrc @@ -0,0 +1 @@ +00856nls 2200253 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200017500124210003500299230002400334326001100358606004900369710004300418801001300461856008800474955000500562992002300567992001200590000124676420130722161531.0 a a20019999k fre 01 ba0 aeng aUS ar aak z  adr 10aCombined statement of receipts, outlays, and balances of the United States governmentb[Ressource électronique]fDepartment of the Treasury, Financial management Service aWashington, D;C;cUSGPOd2001- aRevue électronique aAnnuel aFinances publiquesyEtats-UnisxPériodiques02aEtats-UnisbDepartment of the Treasury 0aFRbFNSP4 uhttp://fms.treas.gov/annualreport/index.htmlzAccès au texte intégral depuis 20011 r aGEO RC2 Etats-Unis aDEW 33600976nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210004300185326002300228326002800251517003800279607004700317710005700364856003400421856007100455955006600526972000900592991001800601992003100619992001200650040085864000001921020130319051019.01 a0955-2359 aFNSP152225 a0000019210 a19901203a19909999 ba0 aeng aGB aaha 10a20 century British history aOxfordcOxford University Pressd1990- aTrimestrielb1999- a3 nos par anb1990-199810aTwentieth century British history aGrande-Bretagnez20e sièclexPériodiques02aInstitute of Contemporary British Historyc(Londres)4 uhttp://www3.oup.co.uk/tweceb/ zContenu : sommaires et résumés depuis le vol. 7, n°1, avr. 19961 bvol. 1 no. 1 (1990) -....cParisdMagasins/AnnexeeP 8° 5683 aZCAD aexempb201111 aGEO RA4.02 Grande-Bretagne aDEW 94100951nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210006000183326001500243440004100258517003400299606004500333710004300378856004600421856006000467955007600527972000900603992002500612992001200637040214699000014428820130319051020.01 a1251-8107 aFNSP570084 a0000144288 a19941214b19949999 ba0 afre aFR aaga 10a4 pages (Noisy-le-Grand) aNoisy-le-GrandcCentre d'études de l'emploid1994-2004 aBimestriel 1tConnaissance de l'emploi,x1767-335610aQuatre pages (Noisy-le-Grand) aMarché du travailyFrancexPériodiques02aCentre d'études de l'emploic(France)4 uhttp://www.cee-recherche.fr/fr/c_pub7.htm zContenu : texte intégral depuis le n°31, janvier 19991 bno. 1 (jan-1994) -no. 61 (jan-2004)cParisdMagasins/AnnexeeP 4° 6418 aZGRA aGEO RA4.06 France 01 aDEW 33101058nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000023001552100024001783260012002025170020002145170046002345300024002806060036003047120051003408560170003919550073005619570065006349720009006999920022007089920014007300000082280000008228020130514135418.01 a1241-1515 aFNSP366210 a0000082280 a19900101a19929999 ba0 afre aFR aaea 13aLe 4 pages (Paris) aPariscSESSId1992- aMensuel13aLe quatre pages13aLe 4 pages des statistiques industrielles14ales 4 pages (Paris) aIndustrieyFrancexPériodiques02aFrancebService des statistiques industrielles4 uhttp://www.dgcis.redressement-productif.gouv.fr/files/files/archive/www.industrie.gouv.fr/p3e/4pages/so_4pages_tout.htmlzAccès libre au texte intégral depuis 20081 bno. 5 (jun-1992) -no. 163 (2002)cParisdMagasins/AnnexeeP 4° 61781 bno. 69-86 (1996/1998 )cParisdMagasins/AnnexeeP Index 0804 aZGRA aGEO RA4.06 France aDEW 338.400963cas0 2200337 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083035001500098100004100113101000800154102000700162105001800169110001600187200002000203210003400223326001700257532002100274606002900295801003000324801001800354802000700372856007000379856007400449955006500523992001200588992002500600039249972000118096720130319051021.01 a0151-2439 a013855638 accn0151-2439 asib0632581 a0001180967 a19850426a19769999 0frey0103 ba0 afre aFR ay  abu 14aLes 4 vérités aPariscLes 4 véritésd1976- aHebdomadaire10aQuatre vérités aActualitéxPériodiques 3aFRbAbesc20100121gAFNOR 3aFRbSFgAFNOR a074 uhttp://www.les4verites.com/les4verites/lesnumeros/4verites336.htm zContient : sommaires et sélection d'articles depuis le no. 176, 19981 bno. 718 (nov-2009) -....cParisdMagasins/AnnexeeP 4° 7266 aDEW 050 aGEO RA6.06 France 0101140nas 2200301 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200006300148207004600211210005000257300013600307326001700443530002900460606003600489801001300525856009100538856010800629955008000737972000900817992001200826078992079000060256220130910161651.01 a1660-7880 a b20032008 fre 01 ba0 afre aCH a 0  ar aaj z 0 10aA contrarioerevue interdisciplinaire de sciences sociales 1aVol. 1, no. 1 (2003)-vol. 5, no. 2 (2008) aLausanne‎cEditions Antipodes‎d2003-2008 aA dater de 2009, la revue imprimée cesse de paraître et fait place à une revue numérique consultable via le site www.cairn.info a2 nos par an aA contrario‎bLausanne aSciences socialesxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue.php?ID_REVUE=ACO zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (2003)-vol. 5 no. 2 (2008)cParisdMagasins/AnnexeeP 8° 6739 aZPAY aDEW 00101305nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200001500163210002900178326001600207606003900223606003700262606004000299606004000339606003800379606004100417801001300458856002900471856007900500856006800579856006200647955005800709972000900767992001600776992002000792992005600812992003900868153073918000037409620140108103300.01 a2166-4072 a0000374096 a a20009999k fre ba0 amul aRU a 0  ar aah z 0 10aAb imperio aKazancAb imperiod2000- aTrimestriel aNationalismeyRussiexPériodiques aNationalismeyURSSxPériodiques aNationalismeyEx-URSSxPériodiques aNationalitésxRussiexPériodiques aNationalitésxURSSxPériodiques aNationalitésxEx-URSSxPériodiques 0aFRbFNSP4 uhttp://www.abimperio.net zContenu : sommaires en anglais, russe et allemand depuis le n°1, mai 20004 uhttps://acces-distant.sciences-po.fr/fork?http://abimperio.net/ zContient les sommaires et résumés depuis le no. 1, 20001 bno.1 (2000) -....cParisdMagasins/AnnexeeP 8° 6546 aZPAY aDEW 305-306 aGEO RA7.01 URSS aGEO RA7.02 Etats successeurs de l'Union soviétique aGEO RA7.21 Russie (depuis 1991-92)01237nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210003800191326001600229517000800245606003900253712003900292856009000331856010800421856012800529856010800657955009100765991001800856992003300874992001600907039511855000008717120130319051025.01 a0363-7425 aFNSP385928 a0000087171 a19900101a19769999 ba0 aeng aUS aaha 14aThe Academy of management review aAdacAcademy of Managementd1976- aTrimestriel10aAMR aGestion d'entreprisexPériodiques02aAcademy of Managementc(Ada, Ohio)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03637425.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=AMX&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 16 no. 4 (oct-1991) -vol. 19 no. 4 (oct-1994)cParisdMagasins/AnnexeeP 8° 5929 aexempb201210 aGEO RS Sans aspect régional aDEW 650-65801342nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000026001552100066001813260016002474210068002636060032003316060044003637120036004078010021004438300057004648560090005218560108006118560129007198560108008489720009009569920023009659920016009880000050707000005070720130319051027.01 a0001-4826 aFNSP247493 a0000050707 a19900101a19269999 ba0 aeng aUS aaha 14aThe Accounting review aSarasota, Fla., etc.cAmerican Accounting Association.d1926- aTrimestriel 1aCommittee reports - American Accounting Association (0587-2863) aComptabilitéxPériodiques aComptabilitéyEtats-UnisxPériodiques02aAmerican Accounting Association 3aFRbCCN0001-4826 avol. 27 no. 4 (oct-1952) -vol. 82 no. 5 (oct-2007) ;4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00014826.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?authtype=ip,uid&profile=ehost&defaultdb=buh4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aZPAY aGEO RC2 Etats-Unis aDEW 650-65801165nas 2200313 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101110001600108200009900124210004200223210004300265326001600308517002100324530002800345606004600373606003600419710005100455801002100506856019800527955005900725972000900784991001800793992002400811992001600835038657619000000632820131008133937.01 a0001-6810 a19900101a19659999 ba0 adut aNL aahu 10aActa politicaeinternational journal of political sciencefDutch Political Science Association aMeppelcJ. A. Boom en Zoond1965-2002 aBasingstokecPalgrave Macmilland2003- aTrimestriel10aAP Acta politica00aActa politicab(Meppel) aScience politiqueyPays-BasxPériodiques aScience politiquexPériodiques02aNederlandse Kring voor Wetenschap der Politiek 3aFRbCCN0001-68104 uhttps://acces-distant.sciences-po.fr/fork?http://www.palgrave-journals.com/ap/index.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1965) -....cParisdMagasins/AnnexeeP 8° 2251 aZSAB aexempb200910 aGEO RA4.03 Pays-Bas aDEW 320-32101416nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154207002600175210003800201210003200239210002400271326001600295530003300311606002900344710004200373801002100415856012800436856010800564856010800672856010800780955006600888957004900954972000901003991001801012992001201030038657856000000630020130319051027.01 a0001-6993 aFNSP110022 a0000006300 a19900101a19559999 ba0 aeng aNO aahu 10aActa sociologica 1avol. 1, no. 1 (1955)- aCopenhagencMunksgaardd1955-1976 aDivers éditeursd1977-2002 aLondoncSaged2003- aTrimestriel 0aActa sociologicabTrykt utg. aSociologiexPériodiques02aScandinavian Sociological Association 3aFRbCCN0001-69934 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=ACT&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1955) -....cParisdMagasins/AnnexeeP 8° 19421 b(1955) -(1995): dans le vol. 38 no. 2 (1995) aZSAB aexempb201001 aDEW 30101202nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200010500163210006500268326001700333530003100350606002900381606003800410710007600448801001300524856006000537856007000597955013800667972000900805991001800814992001200832992002000844039136795000050513420130319051027.01 a0186-6028 a0000505134 a a19889999k fre ba0 aspa aMX a 0  ar aai z 0 10aActa sociologicafUniversidad nacional autonoma de Mexico. Facultad de ciencias politicas y sociales aMéxicocFacultad de ciencias políticas y socialesd[19..]- a3 nos par an10aActa sociológicabMéxico aSociologiexPériodiques aSociologieyMexiquexPériodiques02aUniversidad nacional autónoma de MéxicobCoordinación de sociología 0aFRbFNSP40uhttp://www.journals.unam.mx/index.php/ras/issue/archive zContenu : accès aux sommaires et résumés depuis le n°39, 20091 bno. 14 (1995) ; no. 25 (1999) -no. 26/27 (1999) ; no. 30 (2000) ; no. 32 (2001) -no. 41/42 (2004)cParisdMagasins/AnnexeeP 8° 6670 aZSAB aexempb201212 aDEW 301 aGEO RD1 Mexique01189nls 2200349 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000068001642100085002323000043003173260011003603360056003713370040004276060044004676070062005117100051005738010013006248560053006378560074006909550005007649920025007699920033007949920012008270000776607000077660720130319051027.01 a1630-7356 a0000776607 a a20009999k fre 01 ba0 afre aFR az aak z  adr 10aActes de l'histoire de l'immigrationb[Ressource électronique] aPariscEcole Normale Supérieure, Equipe Réseaux, Savoirs, & Territoiresd1999- aTexte intégral depuis le Vol. 0, 2000 aAnnuel aDonnées textuelles uniquement accessibles en ligne aFichiers HTML et version imprimable aEmigration et immigrationxPériodiques aFrancexEmigration et immigrationxHistoirexPériodiques02aEquipe Réseaux, savoirs, territoiresc(Paris) 0aFRbFNSP4 uhttp://barthes.ens.fr/clio/revues/AHI/index.html zContenu : texte intégral consultable en ligne depuis le Vol. 0, 20001 r aGEO RA4.06 France 01 aGEO RS Sans aspect régional aDEW 32500950nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000048001552100025002033000032002283260012002605300048002726010025003207120011003458560089003568560058004459550064005039570079005679920014006460000151929000015192920130319051027.0 a0251-9860 aFNSP593294 a0000151929 a19900101a19469999 f ba0 afre aFR aaka 10aActes de la Conférence générale - UNESCO aPariscUnescod1946- aPublication en 5 fascicules abiennal00aActes de la Conférence générale - UNESCO02aUnescoxPériodiques02aUnesco4 uhttp://portal.unesco.org/fr/ev.php-URL_ID=39841&URL_DO=DO_TOPIC&URL_SECTION=201.html zContenu : texte intégral du dernier rapport en ligne1 b1re Session (1946) -...cParisdMagasins/AnnexeeCOL4°10951 rIndex to the resolutions of the General Conference 1946/1989

 aDEW 341.201359nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004700154210005900201326001600260421003800276606003600314606002900350676000800379801002100387856012200408856010800530856002500638856006100663955006600724955006300790955006900853972000900922992003300931992001200964992000900976039525821000000341720131219154359.01 a0335-5322 aFNSP102884 a0000003417 a19900101a19759999 ba0 afre aFR aahu 10aActes de la recherche en sciences sociales aPariscEd. de la Maison des sciences de l'hommed1975- aTrimestriel 1aLiber (Ed. française)x1144-5858 aSciences socialesxPériodiques aSociologiexPériodiques a301 3aFRbCCN0335-53224 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-actes-de-la-recherche-en-sciences-sociales.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr zAccès libre au texte intégral des années 1975 à 20031 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3011 bno. 1 (jan-1975) -....cParisdMagasins/AnnexeeP 4° 36131 bL'année en courscParisdBibliothèque de rechercheeP 4° 3613 aZCAD aGEO RS Sans aspect régional aDEW 301 aPBUL01441nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200010300154210003400257300004400291326001100335440007700346606004600423607003500469710009100504711006100595856025900656955007300915955007200988991001801060992002501078992001201103039239306000000693120130319051027.0 a0071-8440 aFNSP111275 a0000006931 a19900423b19502002 ba0 afre aFR aaka 10aActes du ...Congrès national des sociétés savantes. Section d'histoire moderne et contemporaine aPariscEd. du CTHSd1950-2002 aPour la suite voir au titre particulier aAnnuel 1tActes des congrés nationaux des sociétés historiques et scientifiques aHistoirexRechercheyFrancexPériodiques aFrancexHistoirexPériodiques02aCongrès national des sociétés savantesbSection d'histoire moderne et contemporaine02aFrancebComité des travaux historiques et scientifiques4 uhttp://gallica.bnf.fr/Search?lang=FR&ArianeWireIndex=index&q=Actes+du+Congr%C3%A8s+national+des+soci%C3%A9t%C3%A9s+savantes&n=15&p=1&pageNumber=579zAccès libre au texte intégral. Texte intégral numérisé en libre accès des actes 77-80, 83-85, 87-941 bvol. 105 (1980) -vol. 116 (1991)cParisdMagasins/AnnexeeP 8° 54291 bvol. 75 (1950) -vol. 104 (1979)cParisdMagasins/AnnexeeCOL8°2095 aexempb201111 aGEO RA4.06 France 01 aDEW 94401039nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210002500175326001800200517008900218606004900307606005300356710010500409830006100514856007700575955007600652972000900728992001200737039802566000013209220130522145055.01 a0981-5597 aFNSP537021 a0000132092 a19940707a19869999 ba0 afre aFR aaia 10aActes du GERPISA aEvrycGERPISAd1986- a3 n°s par an10aActes du Groupe d'études permanent sur l'industrie et les salariés de l'automobile aAutomobile, Travailleurs de l'xPériodiques aAutomobilesxIndustrie et commercexPériodiques02aGroupe d'études et de recherches permanent sur l'industrie et les salariés de l'automobilef(Evry) aDésherbé , 1993-->2004 : décision et fait en mai 20134 uhttp://gerpisa.org/node/662zAccès libre au texte intégral depuis 19921 bno. 8 (nov-1993) -no. 37 (sep-2004)cParisdMagasins/AnnexeeP 4° 6364 aZGRA aDEW 33801181nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210007000180326001500250517002100265606003900286606003200325710005600357856007500413856005700488955006600545957021000611972000900821992002500830992001200855039288579000014726020130319051028.01 a0181-2874 aFNSP579553 a0000147260 a19950120a19789999 ba0 afre aFR aaga 10aAction juridique CFDT aPariscConfédération française démocratique du travaild1978- aBimestriel10aAction juridique aDroit socialyFrancexPériodiques aDroityFrancexPériodiques02aConfédération française démocratique du travail4 uhttp://www.cfdt.fr/cfdt_a_z/connaitre/publication/action_juridique.htm zContenu : accès au sommaire du dernier numéro paru1 bno 4 (jul/aou-1978) -....cParisdMagasins/AnnexeeP 4° 46371 bno. 69 (1988) -no. 99 (1993): suppl. au no. 99 (mar-1993) ; (1988) -(1997): suppl. au no. 129 (mar-1998) ; no. 115 (1995) -no. 158 (2002): suppl. au no. 158 (jan-2003)cParisdMagasins/AnnexeeP Index 0697 aZCAD aGEO RA4.06 France 01 aDEW 34001255nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210004700177326001800224606006900242606005900311607009900370710003900469856003900508856016300547955007100710957008800781972000900869991001800878992001900896992001400915038658178000008603120140110120345.01 a0001-7469 aFNSP381777 a0000086031 a19900101a19339999 ba0 afre aCA aafa 12aL'Action nationale aMontréalcLigue d'action nationaled1933- a10 nos par an aPolitique linguistiqueyCanadayQuébec (province)xPériodiques aNationalismeyCanadayQuébec (province)xPériodiques aQuébec (Canada ; province)xHistoirexAutonomie et mouvements indépendantistesxPériodiques02aLigue d'action nationale (Québec)4 uhttp://www.action-nationale.qc.ca/ zContenu : Sommaires, index et texte intégral depuis le volume 90, n°1, janvier 2000 (vol. 89, 1999 pour les débats) (sauf une partie des derniers numéros)1 bvol. 82 no. 1 (jan-1992) -....cParisdMagasins/AnnexeeP 8° 59221 b(1917) -(1994)cParisdMagasins/Annexezse trouve dans le vol. 84 no. 10 (dec-1994) aZCAD aexempb201308 aGEO RC1 Canada aDEW 320.501073nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005300154210006000207326001600267430006800283440004000351606005600391606005700447710008200504856003800586856003600624955008300660992001600743992001200759040179419000005773420130319051029.01 a1019-9187 aFNSP268051 a0000057734 a19900101b19921998 f ba0 afre aCH aaha 10aActivité bancaire et financière internationale aBâlecBanque des règlements internationauxd1992-1998 aTrimestriel 1aEvolution de l'activité bancaire et financière internationale 1tRapport trimestriel BRI,x1683-0180 aBanques internationalesxStatistiquesxPériodiques aFinances internationalesxStatistiquesxPériodiques02aBanque des règlements internationauxbDépartement monétaire et économique4 uhttp://www.bis.org/publ/index.htm zAccès libre au texte intégral1 b1er tri. (fev-1992) -3ème tri. (aou-1998)cParisdMagasins/AnnexeeP 4° 5339 aDEW 310-319 aDEW 33200845nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006200154210002600216326001100242530005900253606004500312710004200357856006700399955007900466992002200545992001200567039408558000006061820130319051029.01 a0248-661X aFNSP277632 a0000060618 a19900101b19800001 ba0 afre aFR aaka 10aActivité scientifique du Centre de sociologie urbaine... aPariscCSUd1980-0001 aAnnuel10aActivité scientifique du Centre de sociologie urbaine aSociologie urbaineyFrancexPériodiques02aCentre de sociologie urbainec(Paris)4 uhttp://www.csu.cnrs.fr/zAccés au dernier rapport d'activité1 b(1987/1991) ; (1995/1997) -(2001/2004)cParisdMagasins/AnnexeeP 8° 5801 aGEO RA4.06 France aDEW 30701140cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200003100174210006500205326001600270430007400286440003500360530003100395531001800426710004700444801003000491802000700521856009000528856010800618955006800726991002000794037980491000109569120130319051029.0 a0398-8120 accn0398-8120 a0001095691 a19860904b19531960k y0frey0103 ba0 afre aFR a 0  aah 0 12aL'Actualité de l'histoire aCourbevoiecInstitut français d'histoire socialed1953-1960 aTrimestriel 1tBulletin annuel de l'Institut français d'histoire socialex0398-8147 1tLe Mouvement socialx0027-267102aL'Actualité de l'histoire 0aActual. hist.02aInstitut français d'histoire sociale4070 3aFRbAbesc20060505gAFNOR a074 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03988120.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 4 (1953) -no. 32 (1960)cParisdMagasins/AnnexeeP 8° 1233 aPériobTP02 P801047nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000420015420700480019621000470024432600150029160600520030671000270035880100210038585600670040685600520047395500870052595700740061297200090068699200220069599200160071703958416X000000635920130419103501.01 a0397-331X aFNSP110121 a0000006359 a19900101b19722010 ba0 afre aFR aagu 10aActualité de la formation permanente 1aN° 1, mai 1972-n° 226/227, mai/août 2010 aParis la DéfensecCentre Inffod1972-2010 aBimestriel aFormation professionnelleyFrancexPériodiques02aCentre Inffoc(France) 3aFRbCCN0397-331X4 uhttp://www.centre-inffo.fr/Actualite-de-la-Formation,2109.html zContenu : accès aux thèmes depuis numéro 1941 bno. 1 (mai-1972) -no. 226/227 (mai/août-2010)cParisdMagasins/AnnexeeP 4° 32741 b(1972) -(1989) ; (1972) -(2000)cParisdMagasins/AnnexeeP Index 0524 aZPAY aGEO RA4.06 France aDEW 370-37900858nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210004700183326001200230430005400242440002700296606002700323606003600350856003600386856004300422955008000465972000900545992001400554045075115000027214620130319051029.01 a1291-4746 aFNSP939865 a0000272146 a19990507b19992003 ba0 afre aFR aafa 10aActualité des religions aPariscMalesherbes-Publicationsd1999-2003 aMensuel 1aL'Actualité religieuse (Paris, 1995),x1265-6240 1tLe Monde des religions aReligionxPériodiques aEglise catholiquexPériodiques uhttp://www.lavie.presse.fr/MDR/ zcontenu : sommaire du dernier numéro.1 bno. 1 (jan-1999) -no. 49 (mai/jun-2003)cParisdMagasins/AnnexeeP 4° 4827 aZPAY aDEW 20-2901242nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210002700181326001600208606003700224607004800261607005000309710004700359711005400406801002100460856004900481856008000530856003600610856003600646955013500682972000900817992002100826992001900847992001400866038658267000001094020130319051030.01 a0001-771X aFNSP121078 a0000010940 a19900101a19259999 ba0 afre aCA aaha 10aActualité économique aMontréalcSCSEd1925- aTrimestriel aEconomie politiquexPériodiques aCanadaxPolitique économiquexPériodiques aCanadaxConditions économiquesxPériodiques02aSociéte canadienne de science économique02aEcole des hautes études commerciales (Montréal) 3aFRbCCN0001-771X4 uhttp://canarie.hec.ca/iea/actueco/actgen.htm zContenu : sommaires ; résumés ; depuis le volume 71, numéro 2, juin 19954 uhttp://www.erudit.org/revue/ae/ zAccès libre au texte intégral1 bvol. 56 no.1 (1980) -vol. 70 no. 3 (1994) ; vol. 73 no. 1/2/3 (1997) -vol. 85 no. 4 (dec-2009)cParisdMagasins/AnnexeeP 8° 0141 aZPAY aGEO RQ Universel aGEO RC1 Canada aDEW 338.900986nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001341350018001502000169001682100062003372300024003993000081004233260016005046060038005207120059005588010013006178560038006309550040006680000307140000030714020130319051030.0 a0000307140 a a19989999k fre ba0 afre aFR a 0  az aau z 0  adz 10aActualité et droit internationalb[Ressource électronique]erevue d'analyse juridique de l'actualité internationalefRéseau Internet pour le droit international aS.l.cRéseau Internet pour le droit internationald1998- aDonnées textuelles aAccès au 18/04/2000 World Wide Web. URL : http://www.ridi.org/adi/home.html aIrrégulier aDroit internationalxPériodiques02aRéseau Internet pour le droit internationalc(France) 0aFRbFNSP4 uhttp://www.ridi.org/adi/home.html1 rConsultable uniquement sur Internet01396nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004700139210002500186210005800211326002400269326002300293430004400316488006200360517000900422606003200431606006100463676000800524801002100532830003300553856006700586856010800653955006600761955006000827955005000887972000900937991001800946992002200964992001200986039219208000000377020130903151604.01 a0001-7728 aFNSP103942 a19900101a19559999 ba0 afre aFR aacu 10aActualité juridique.iDroit administratif aPariscDallozd2001- aPariscEd. du Moniteur des travaux publicsd1955-2000 aHebdomadaireb2002- aMensuelb1955-2002 1aActualité juridique.Travauxx1145-7376 1aActualité juridique. Propriété immobilièrex0001-773610aAJDA aDroit administratifyFrance aDroit administratifyFrancexJurisprudencexPériodiques a342 3aFRbCCN0001-7728 a1956 -1999 conservé au 13 U4 uhttps://acces-distant.sciences-po.fr/fork?http://bu.dalloz.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 3e étageeDEW 3421 bvol. 13 no. 1 (1957) -....cParisdMagasinseP 4° 15491 b(1945) -(1989)cParisdMagasinseP Mic 16 (1) aZCAD aexempb201002 aGEO RA4.06 France aDEW 34201014nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004700154210004700201210002500248326001500273517000900288606004400297676000800341856006700349856010800416955006700524955006300591972000900654992002500663992001200688040489434000019085220130319051030.01 a1272-9116 aFNSP705546 a0000190852 a19900101a19969999 ba0 afre aFR aa a 00aActualité juridique.iFonctions publiques aPariscPublications du Moniteurd1996-2000 aPariscDallozd2000- aBimestriel10aAJFP aFonction publiqueyFrancexPériodiques a3424 uhttps://acces-distant.sciences-po.fr/fork?http://www.dalloz.fr zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 3421 bno. 1 (mai-1996) -....cParisdMagasins/AnnexeeP 4° 6606 aZPAY aGEO RA4.06 France 01 aDEW 34201134nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001600139207001700155210005700172210006100229210003500290326001500325452003900340530001600379606002700395676000800422856009100430856010800521955006700629955005900696972000900755991001800764992001400782001294997000000640620130918173727.01 a0994-4524 aFNSP110179 a19900406a19879999 ba0 afre aFR aaja 10aActuel Marx 1ano. 1(1987)- aParis‎cPresses universitaires de France‎d2001- aÉvry‎cPresses universitaires de France‎d1988-2000 aParis‎cL'Harmattan‎d1987 aSemestriel 1tActuel Marx (En ligne),x1969-6728 aActuel Marx aMarxismexPériodiques a3204 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-actuel-marx.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 1 (1987) -....cParisdMagasins/AnnexeeP 8° 5009 aZCAD aexempb201106 aDEW 320.501434nas 2200361 i 450 001001000000002001100010005001700021011001400038035001300052035001500065100004100080101000800121102000700129110001600136200001900152207003100171210011200202326001600314530003200330606003500362607004100397676000800438710010600446801002100552856007500573856004200648955006700690955010300757957016500860972000901025992002201034992001601056039348547000000236120130319051031.01 a0223-5439 aFNSP8466 a0000002361 a19900101a19629999 ba0 afre aFR aaha 10aAdministration 1avol. 16 no. 45 (mar-1962)- aPariscAssociation du corps préfectoral et des administrateurs civils du Ministère de l'intérieurd1962- aTrimestriel 0aAdministrationbParis. 1962 aPréfetsyFrancexPériodiques aFrancexAdministrationxPériodiques a35102aAssociation du corps préfectoral et des hauts fonctionnaires du Ministère de l'intérieurc(France) 3aFRbCCN0223-54394 uhttp://www.ladocfrancaise.gouv.fr/cgi-bin/multitel/CATALDOC/accueil_df zContenu : sommaire des 3 derniers n°1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3511 bvol. 16 no. 46 (aou-1962) -....cParisdMagasins/AnnexeeP 4° 1979wmanquants no 148 et 149, 19901 bno. 45 (1962) -no. 60 (1967) ; no. 61 (1967) -no. 74 (1971) ; no. 75 (1972) -no. 86 (1974) ; no. 87 (1975) -no. 109 (1980)cParisdMagasins/AnnexeeP Index 0470 aZCAD aGEO RA4.06 France aDEW 350-35401149nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210003800183326002200221326002700243430005300270517003100323606004200354801002100396856007000417856010800487955015200595972000900747991001800756992003300774992001600807038899736000000636420130319051031.01 a0095-3997 aFNSP110127 a0000006364 a19900101a19749999 ba0 aeng aUS aagu 10aAdministration & society aNewbury Park, Calif.cSaged1974- aBimestrielb1998- aTrimestrielb1974-1997 1aJournal of comparative administrationx0021-993210aAdministration and society aAdministration publiquexPériodiques 3aFRbCCN0095-39974 uhttps://acces-distant.sciences-po.fr/fork?http://aas.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 6 no. 1 (mai-1974) -vol. 34 no. 6 (jan-2003) ; vol. 39 no. 1 (2007) -....cParisdMagasins/AnnexeeP 8° 2675wManquant : vol. 34, no. 4, 2002 aZSAB aexempb201105 aGEO RS Sans aspect régional aDEW 350-35401672nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210010000191326001600291517000800307606002600315606003900341710005600380801002100436856012800457856010800585856009000693856010800783856012800891856010801019955006601127957001701193972000901210991001801219992003301237992001601270038658445000000640820130319051032.01 a0001-8392 aFNSP110181 a0000006408 a19900101a19569999 ba0 aeng aUS aaha 10aAdministrative science quarterly aaIthaca, N.Y.cGraduate School of Business and Public Administration, Cornell Universityd1956- aTrimestriel10aASQ aGestionxPériodiques aGestion d'entreprisexPériodiques02aSamuel Curtis Johnson Graduate School of Management 3aFRbCCN0001-83924 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=ASQ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00018392.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=ASQ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1956) -....cParisdMagasins/AnnexeeP 8° 15291 eP Index 0456 aZSAB aexempb201102 aGEO RS Sans aspect régional aDEW 650-65801150cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200005100180210004300231326001600274430005600290606004200346606002500388676000800413710004700421801003000468801002300498802000700521856006100528856003600589955006600625955006400691972000900755992001200764089908287000098491220130319051032.01 a1771-7450 aissn17717450 a0000984912 a20050906a19989999 a0frey0103 ba0 afre aFR a 0  ar aahu 0uu 10aADSPeactualité et dossier en santé publique aPariscDocumentation françaised1998- aTrimestriel 1tActualité et dossier en santé publiquex1243-275X aSanté publiqueyFrancexPériodiques aSantéxPériodiques a36001aFrancebHaut comité de la santé publique 3aFRbAbesc20060313gAFNOR 3aFRbISSNc20050901 a074 uhttp://hcsp.ensp.fr/hcspi/explore.cgi/accueil?ae=accueil zAccès libre au texte intégral1 bLes 3 dernières annéescParisd27, Salle 4e étageeDEW 3601 bno. 50 (mar-2005) -....cParisdMagasins/AnnexeeP 4° 7113 aZPAY aDEW 36000941nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116200003000123210003600153326001100189452005300200530003000253606004400283606003600327801002100363856013700384955007000521972000900591991001800600992002100618992001200639002928612000005859720130725094619.01 a0065-2830 aFNSP271240 a19900101a19709999 ba0 aeng aUS10aAdvances in librarianship aNew YorkcAcademic Pressd1970- aAnnuel 1tAdvances in librarianship (Online)‎x2162-793200aAdvances in librarianship aSciences de l'informationxPériodiques aBibliothèconomiexPériodiques 3aFRbCCN0065-28304 uhttp://www.emeraldinsight.com/products/books/series.htm?id=0065-2830zAccés libre à la table des matières depuis le vol. 16, 19921 bvol. 1 (1970) -vol. 34 (2011)cParisdMagasins/AnnexeeP 8° 3252 aZPAY aexempb200911 aGEO RQ Universel aDEW 02001116cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200008300162210006500245440004400310454003200354530002600386607006000412676000800472712004900480801003000529802000700559856014600566955007000712991002000782037461842000108412620130319051033.0 a0381-4882 accn0381-4882 a0001084126 a19870330b19481971 0frey0103 ba0 afre aCA ar aaf 10aAffaires extérieureseun mensuelfpar le ministère des Affaires extérieures aOttawa, OntcMinistère des affaires extérieuresd1948-1971 1tPerspectives internationalesx0381-4890 1tExternal affairsx0381-486600aAffaires extérieures aCanadaxRelations extérieuresz1945-....xPériodiques a97102aCanadabMinistère des affaires extérieures 3aFRbAbesc20020116gAFNOR a044 uhttp://dfait-aeci.canadiana.ca/zAccès libre au texte intégral. Périodique numérisé par le ministère canadien des Affaires extérieures1 bvol. 1 (1948) -vol. 23 (1971)cParisdMagasins/AnnexeeP 8° 0214 aPériobTP01 P800806nas 2200277 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000034001552100026001893260016002156060044002318010021002758560064002968560044003609550085004049720009004899910018004989920012005160000006457000000645720130319051033.01 a0390-1181 aFNSP110418 a0000006457 a19900101a19739999 ba0 aita aIT aaha 10aAffari sociali internazionali aMilanocAngelid1973- aTrimestriel aRelations internationalesxPériodiques 3aFRbCCN0390-11814 uhttp://www.francoangeli.it/riviste/sommario.asp?IDRivista=1 zContenu : sommaires depuis no. 1 (1990)1 bvol. 1 no. 1 (mar-1973) -vol. 34 no.4 (2006)cParisdMagasins/AnnexeeP 8° 3458 aZCAD aexempb200911 aDEW 30100841nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001100154210002400165326001600189517001800205607002600223710002800249856003500277856004700312955005500359955005500414972000900469991001800478992001900496992001200515038658844000000646120131126174407.01 a0001-9747 aFNSP110431 a0000006461 a19900101a19469999 ba0 amul aIT aaha 10aAfrica aRomacAfricad1946- aTrimestriel10aAfrica (Roma) aAfriquexPériodiques02aIstituto italo-africano4 uhttp://www.isiao.it/storia.php zContenu : accès au site Web de l'éditeur1 b(1965) -(2010)cParisdMagasins/AnnexeeP 8° 21491 b(1951) -(1964)cParisdMagasins/AnnexeeP 4° 0920 aZGRA aexempb201105 aGEO RE Afrique aDEW 96001114nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005900154210004900213210005500262326001600317517001100333530002700344607003200371710003600403801002100439856007500460856006300535955006700598972000900665991002000674991001800694992003600712992001600748038658828000000645920140108154945.01 a0001-9720 aFNSP110420 a0000006459 a19900101a19289999 ba0 aeng aGB aahu 10aAfricaejournal of the international African institute aCambridgecCambridge University Pressd2011- aManchestercManchester University Pressd1928-2010 aTrimestriel10aAfrica00aAfricab(London. 1928) aAfrique noirexPériodiques02aInstitut africain international 3aFRbCCN0001-97204 uhttp://www.eup.ed.ac.uk/journals/content.aspx?pageId=2&journalId=11659 zContenu : sommaires des n°s depuis le vol. 67, n°1, 19971 bvol. 15 no. 1 (1945) -....cParisdMagasins/AnnexeeP 8° 1371 aZCAD aPériobTP03 P8 aexempb201102 aGEO RF Afrique au sud du Sahara aDEW 966-96901120nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210002700177300003200204326001600236517003000252606004500282607004500327607004900372676000800421710008500429801002100514856002900535856005400564955008000618972000900698991001800707992001900725992001400744039806693000000652720130319051034.01 a0850-3907 aFNSP110610 a0000006527 a19900101a19769999 ba0 amul aSN aaha 10aAfrica development aDakarcCODESRIAd1976- aArrive avec 2 ans de retard aTrimestriel10aAfrique et développement aDéveloppement économiquexPériodiques aAfriquexPolitique socialexPériodiques aAfriquexPolitique économiquexPériodiques a96002aConseil pour le développement de la recherche économique et sociale en Afrique 3aFRbCCN0378-30064 uhttp://www.codesria.org/ zContenu : sommaires depuis le vol. 23, no 1, 19981 bvol. 1 no. 1 (mai-1976) -no. 1/2 (2010)cParisdMagasins/AnnexeeP 8° 3895 aZCAD aexempb201001 aGEO RE Afrique aDEW 338.900974nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000340015421000400018832600110022843000520023960700650029167600100035671000700036685601230043695500550055997200090061499200190062399200140064299200160065604018126X000019178520130716100359.01 a1020-2927 aFNSP707788 a0000191785 a19900101a19929999 ba0 aeng aUS aaka 10aAfrica development indicators aWashington, D.C.cWorld Bankd1992- aAnnuel 1aAfrican economic and financial data (1020-2919) aAfriquexConditions économiquesxStatistiquesxPériodiques a338.902aBanque internationale pour la reconstruction et le développement4 uhttp://data.worldbank.org/data-catalog/africa-development-indicatorszAccès au texte intégral du rapport depuis 20061 b(1996) -(2011)cParisdMagasins/AnnexeeP 4° 6617 aZPAY aGEO RE Afrique aDEW 330.9 aDEW 310-31900828nls 2200265 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200007300124210000500197230002400202326001100226607006500237710007000302801001300372856012300385955000500508992001900513992001400532992001600546000124666120130716100128.0 a a20069999k fre 01 ba0 aeng aUS ar aak z  adr 10aAfrica development indicatorse{Ressource électronique]fWorld Bank a aRevue électronique aAnnuel aAfriquexConditions économiquesxStatistiquesxPériodiques02aBanque internationale pour la reconstruction et le développement 0aFRbFNSP4 uhttp://data.worldbank.org/data-catalog/africa-development-indicatorszAccès au texte intégral du rapport depuis 20061 r aGEO RE Afrique aDEW 330.9 aDEW 310-31901391nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001700154210005000171326001600221607002600237607005300263801002100316856012800337856010800465856012800573856010800701955009100809955009500900972000900995991001801004992001901022992001201041038658917000000724120131126174232.01 a0001-9887 aFNSP111967 a0000007241 a19900101a19549999 ba0 aeng aUS aaha 10aAfrica today aDenver, Colo.cAfrica Today Associatesd1954- aTrimestriel aAfriquexPériodiques aAfriquexPolitique et gouvernementxPériodiques 3aFRbCCN0001-98874 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=ATD&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=poh&jid=ATD&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 17 no. 1 (jan-1970) -.vol. 58 no 2 (jan-2011)cParisdMagasins/AnnexeeP 8° 27511 bvol. 15 no. 1 (fev/mar-1968) -vol. 16 no. 6 (dec-1969)cParisdMagasins/AnnexeeP 4° 2550 aZCAD aexempb201105 aGEO RE Afrique aDEW 96001536nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004300154210004400197326001600241430005200257530002800309607002600337676000800363710003100371801002100402856004200423856012000465856009000585856010800675856008000783856010800863955006600971955007301037972000901110992001901119992001201138038658933000000737320130319051035.01 a0001-9909 aFNSP112319 a0000007373 a19900101a19019999 ba0 aeng aGB aahu 10aAfrican AffairsfRoyal African Society aaLondoncOxford University Pressd1945- aTrimestriel 1tJournal of the Royal African Societyx0368-401610aAfrican AffairsbLondon aAfriquexPériodiques a96002aRoyal African Society (GB) 3aFRbCCN0001-99094 uhttp://www.oup.co.uk/afrafj/contents/ zContenu : sommaires ; résumés ; recherche par sujets avec Excite ; depuis le volume 95, numéro 378, janvier 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00019909.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://afraf.oxfordjournals.org/? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9601 bvol. 46 no. 185 (oct-1947) -....cParisdMagasins/AnnexeeP 8° 0012 aZSAB aGEO RE Afrique aDEW 96001094nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000260015420700220018021000300020232600160023260100480024860600290029660700330032571000340035880100210039285601010041385600710051495501020058597200090068799100180069699200300071499200120074403615766X000000750020130319051035.01 a0001-9976 aFNSP112648 a0000007500 a19900101a19609999 ba0 aeng aGB aaha 14aThe African communist 1ano. 1 (oct-1959)- aLondoncInkululekod1959- aTrimestriel02aSouth African Communist PartyxPériodiques aActualitéxPériodiques aAfrique du SudxPériodiques02aSouth African Communist Party 3aFRbCCN0000/69984 uhttp://www.sacp.org.za/index.php?option=com_content&task=category§ionid=20&id=102&Itemid=1234 zContenu : accès libre au texte intégral des articles depuis 19591 bno. 7 (sep-1961)-no. 166/167 (2004)cParisdMagasins/AnnexeeP 8° 2001wManquant : no. 162, 2003 aZGRA aexempb201103 aGEO RF3.19 Afrique du Sud aDEW 05001109cas0 2200325 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123110001600141200002300157207002300180210003100203326002300234326002900257326002600286517006500312607003200377801003000409856010900439856010800548955007000656972000900726992003600735992001200771081417284000094058020130319051035.01 a1472-5843 a0000940580 a20041102a20039999k y0frey0103 ba0 aeng aGB a 0  aaia 0 10aAfrican identities 0aVol.1, n°1(2003)- aAbingdoncRoutledged2003- aTrimestrielb2008- a3 n°s par anb2007-2007 aSemestrielb2003-200610aAfrican identitiesea journal of economics culture & society aAfrique noirexPériodiques 3aFRbAbesc20050124gAFNOR4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713611520db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (avr-2003) -....cParisdMagasins/AnnexeeP 8° 6873 aZSAB aGEO RF Afrique au sud du Sahara aDEW 96001050nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012310600060014111000160014720000190016321000620018232600150024443000390025953000400029860700260033860700490036460700490041371000460046280100130050885600900052195500920061197200090070399200120071205547358X000048037320130319051035.01 a1548-4505 a0000480373 a b20002004k fre ba0 aeng aUS a 0  ar aaj z 0 10aAfrican issues aNew Brunswick, NJcAfrican Studies Associationd2000-2004 aSemestriel 1tIssue (Waltham, Mass.),x0047-160710aAfrican issuesbNew Brunswick, N.J. aAfriquexPériodiques aAfriquexRelationsyEtats-UnisxPériodiques aEtats-UnisxRelationsyAfriquexPériodiques02aAfrican Studies Associationc(Etats-Unis) 0aFRbFNSP uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/15484505.html1 bvol. 29 no. 1/2 (2001) -vol. 32 no. 1/2 (2003/2004)cParisdMagasins/AnnexeeP 4° 3114 aZPAY aDEW 96001176cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200002100180207004800201210006300249326001800312606004800330607003600378607005000414801003000464801002300494802000700517856010900524856007500633955006600708972000900774992001200783992001900795131689290000117922720130319051035.01 a1939-2206 aissn19392206 a0001179227 a20090223a20089999k y0frey0103 ba0 aeng aUS ay 0  ar aaja 0uu 10aAfrican security 0aBegan with vol. 1, issue 1 (Jan./June 2008) aPhiladelphia, PAcRoutledge, Taylor & Francis Groupd2008- a3 n°s par an aSécurité nationaleyAfriquexPériodiques aAfriquexDéfensexPériodiques aAfriquexRelations extérieuresxPériodiques 3aFRbAbesc20090308gAFNOR 3aFRbISSNc20090225 a014 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t901392701db=all zContient sommaires et résumés des n°s depuis le vol. 1 no. 1 (2008)1 bvol. 1 no. 1 (2008) -....cParisdMagasins/AnnexeeP 8° 7108 aZSAB aDEW 327 aGEO RE Afrique01362nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210005600189326002200245430004500267606004700312801002100359856012800380856010800508856010900616856010800725955006700833955008600900972000900986992002900995992001201024038659239000000737920130319051035.01 a0002-0184 aFNSP112326 a0000007379 a19900101a19429999 ba0 aeng aAF aaia 10aAfrican studies (Johannesburg) aJohannesburgcWitwatersrand University Pressd1942- aTrois n°s par an 1aBantu studies (0256-1751) < P 8° 2156 > aEthnologieyAfrique australexPériodiques 3aFRbCCN0002-01844 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=35L&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713405746db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 40 no. 1 (1981) -....cParisdMagasins/AnnexeeP 4° 46341 bvol. 1 no. 1 (mar-1942) -vol. 39 no. 2 (1980)cParisdMagasins/AnnexeeP 8° 2156 aZCAD aGEO RF3 Afrique australe aDEW 30101290nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210002900181326001800210430002900228530002700257607002600284712004600310801002100356856012800377856010800505856009000613856010800703955007100811972000900882991001800891992001900909992001200928038659247000000641020130319051035.01 a0002-0206 aFNSP110183 a0000006410 a19900101a19709999 ba0 aeng aUS aaia 10aAfrican studies review aAtlanta, Ga.cASAd1970- a3 n°s par an 1aAfrican studies bulletin00aAfrican studies review aAfriquexPériodiques02aAfrican Studies Associationc(Etats-Unis) 3aFRbCCN0002-02064 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=poh&jid=ASR&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00020206.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 13 no. 1 (avr-1970) -....cParisdMagasins/AnnexeeP 8° 2258 aZCAD aexempb200908 aGEO RE Afrique aDEW 96001062nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000200013921000240015930000320018332600180021551700190023353000310025260700510028360700530033471000420038780100210042985601390045095500590058997200090064899100180065799100180067599200190069399200120071203865928X000000722420130725165248.01 a0002-0397 aFNSP111928 a19900101a19669999 ba0 amul aDE aaia 10aAfrika Spectrum aHamburgcIAKd1966- aArrive avec un an de retard a3 n°s par an10aAfrikaspectrum10aAfrikaspectrum‎bHamburg aAfriquexConditions économiquesxPériodiques aAfriquexPolitique et gouvernementxPériodiques02aInstitut für Afrika-Kunde (Hambourg) 3aFRbCCN0002-03974 uhttp://hup.sub.uni-hamburg.de/giga/afsp/zAccès libre au texte intégral des articles en anglais depuis le volume 44, numéro 1, 20091 bno. 1 (1972) -....cParisdMagasins/AnnexeeP 8° 3309 aZSAB aexempb200911 aexempb201005 aGEO RE Afrique aDEW 96001090cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118105001800125110001600143200004500159207002300204210003000227326001500257517002400272530003200296607003600328801003000364801002300394801003000417802000700447856009200454856010800546955006700654992001900721992001200740074597043000094103720130522165446.01 a1764-1977 aissn17641977 a20031023a20039999k y0frey0103 ba0 afre aFR ay  aaju uu010aAfrique & histoireerevue internationale 0aN.1 (2003, sept.)- aPariscEd. Verdierd2003- aSemestriel10aAfrique et histoire10aAfrique & histoireb(Paris) aAfriquexHistoirexPériodiques 3aFRbAbesc20080227gAFNOR 3aFRbISSNc20030523 3aFRbAbesc20060227gAFNOR a074 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue.php?ID_REVUE=AFHI zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (2003) -no. 6 (2006)cParisdMagasins/AnnexeeP 8° 6874 aGEO RE Afrique aDEW 96000826cas0 2200313 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012311000160014120000170015721000250017432600120019943000460021153000250025760700230028260700260030580100300033185600320036195500630039397200090045699200190046599200160048499200120050009500940X000092610020130319051036.01 a1779-0042 a0000926100 a20060113a20059999m y0frey0103 ba0 afre aFR a 0  aafa 0 10aAfrique Asie aPariscAFRIAMd2005- aMensuel 1tLe Nouvel Afrique Asie (Paris)x1141-994610aAfrique Asieb(2005) aAsiexPériodiques aAfriquexPériodiques 3aFRbAbesc20060118gAFNOR4 uhttp://www.afrique-asie.fr/1 bno. 1 (dec-2005) -....cParisdMagasins/AnnexeeP 4° 3144 aZCAD aGEO RE Afrique aGEO RH Asie aDEW 96001394nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009300154210004700247210010000294210005000394326001600444607002600460676000800486710008000494801002100574856010100595856010800696955006600804955006200870957007200932972000901004992001901013992001201032039219224000000349520130319051036.01 a0002-0478 aFNSP102978 a0000003495 a19900101a19629999 ba0 afre aFR aahu 10aAfrique contemporainefCentre d'études et de documentation sur l'Afrique et l'Outre-mer aPariscDocumentation françaised1962-2002 aPariscAgence française de DéveloppementaPariscDiff. La Documentation françaised2003-2004 aLouvain-la-NeuvecDe Boeck Universitéd2005- aTrimestriel aAfriquexPériodiques a96002aCentre d'études et de documentation sur l'Afrique et l'Outre-merc(France) 3aFRbCCN0002-04784 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-afrique-contemporaine.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9601 bno 1 (avr-1962) -....cParisdMagasins/AnnexeeP 4° 19821 bno. 173 (1995)-no. 186 (1998)cParisdMagasins/AnnexeeP Index 0816 aZCAD aGEO RE Afrique aDEW 96001387nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200009700163207001000260210002900270225003000299326001100329411004200340607007100382607007500453607007700528676000800605710008000613801001300693856002600706856005200732955006100784955007200845972000900917991001800926992002900944992001600973069923124000065374820130319051036.01 a1636-208X a0000653748 a a19979999 fre 01 ba0 afre aFR a 0  ar aak z 0 12aL'Afrique des grands lacseannuairefCentre d'étude de la région des grands lacs d'Afrique 1a1997- aParis:cHarmattand1997-21aL'Afrique des grands lacs aAnnuel 0aL'Afrique des grands lacs,x1285-3356 aGrands lacs africains (région)xConditions socialesxPériodiques aGrands lacs africains (région)xConditions économiquesxPériodiques aGrands lacs africains (région)xPolitique et gouvernementxPériodiques a96002aCentre d'étude de la région des Grands Lacs d'Afriquec(Anvers, Belgique) 0aFRbFNSP4 uhttp://www.gralac.org zContenu : sommaires depuis l'annuaire 1996-19971 bLa dernière annéecParisd30, Salle 2e étageeDEW 9601 b(1996/1997) ; (2002/2003) -....cParisdMagasins/AnnexeeP 8° 6769 aZPAY aexempb201212 aGEO RF2 Afrique centrale aDEW 966-96901103nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210004900177326002500226326002400251606003600275801002100311856004200332856006000374856010100434856010800535955007000643972000900713991001800722992002100740992001600761039085546000000728120130319051038.01 a0144-686X aFNSP112076 a0000007281 a19900101a19819999 ba0 aeng aGB aafa 10aAgeing and society aCambridgecCambridge University Pressd1981- a8 n°s par anb2008- aBimestriel1981-2007 aPersonnes âgéesxPériodiques 3aFRbCCN0144-686X4 uhttp://uk.cambridge.org/journals/aso/ zContenu : sommaires depuis le vol. 15, n°3, sept. 19954 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101500 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1981) -....cParisdMagasins/AnnexeeP 8° 4503 aZPAY aexempb200911 aGEO RQ Universel aDEW 305-30601445cas0 2200457 450 001001000000002001100010005001700021011001400038035001700052035002100069035001500090100004100105101000800146102000700154105001800161106000600179110001600185200003900201207002900240210005500269210003300324210003000357326001700387410003200404606003000436676000800466712004000474712003900514801003000553801002300583801003000606801003000636801002300666802000700689856004500696856005600741955014600797972000900943992001400952992002100966114719926000111719620130319051038.01 a1950-330X aissn1950330X a(OCoLC)122381255 a0001117196 a20070524b20052011k y0frey50 ba0 afre aFR ay 0  ar aaia 0uu010aAgenda de la pensée contemporaine 0a[No 1] (printemps 2005)- aPariscPresses universitaires de Franced2005-2006 aPariscFlammariond2006-2009 aPariscHermannd2010-2011 a3 nos par an 1tLibelles (Paris)x1767-2163 aPhilosophiexPériodiques a10002aCentre Roland Barthesc(Paris)434002aCentre Marcel Granetc(Paris)4340 3aFRbAbesc20090116gAFNOR 3aFRbISSNc20080909 3aFRbAbesc20081203gAFNOR 3aFRbAbesc20071026gAFNOR 3aFRbISSNc20070501 a074 uhttp://agenda.ipc.univ-paris-diderot.fr/ zContenu: sommaires des n°s depuis le no. 1 de 20051 bno. 1 (pri-2005) ; no. 7 (pri-2007) ; no. 9 (hiv-2007/2008) -no. 15 (2009) ; no. 19 (2010) -no. 20 (2011)cParisdMagasins/AnnexeeP 8° 7073 aZPAY aDEW 10-14 aGEO RQ Universel01038nas 2200325 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200006600148210004200214326002300256530002300279606002900302676000800331710003600339801001300375856004500388856010500433955006700538955006400605972000900669991001800678992001600696048760420000046648720130902155551.01 a1296-9915 a a19999999k fre ba0 afre aFR a 0  ar aah z 0 10aAgirerevue générale de stratégiefSociété de stratégie aPariscSociété de stratégied1999- a3 ou 4 n°s par an00aAgir (Paris, 1999) aStratégiexPériodiques a35502aSociété de stratégie (Paris) 0aFRbFNSP4 uhttp://www.societe-de-strategie.asso.fr/ zContenu : sommaires de la revue à partir du n°4, résumés et quelques articles en texte intégral1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3551 bno. 1 (sept-1999) -....cParisdMagasins/AnnexeeP 8° 6628 aZCAD aexempb201212 aDEW 355-35901039cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200004500197210002800242326001500270530002300285606004400308606002600352606002700378801003000405801002300435802000700458856003400465856009400499955006300593972000900656992001200665039933393000073086020130319051039.01 a1157-6790 accn1157-6790 aissn11576790 a0000730860 a19910221a19909999 0fre 0103 ba0 afre aFR a 0  ar aaj 0 10aAgoneehistoire, politique et sociologie aMarseillecAgoned1990- aSemestriel10aAgoneb(Marseille) aRelations internationalesxPériodiques aCulturexPériodiques aHistoirexPériodiques 3aFRbAbesc20040630gAFNOR 3aFRbISSNc20030523 a074 uhttp://revueagone.revues.org/ zContenu : texte intégral via revues.org depuis 2003 à l'exception des derniers numéros1 bno. 31/32 (2004) -....cParisdMagasins/AnnexeeP 8° 6790 aZPAY aDEW 00101238nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210004800181326001600229517001000245606003500255676000800290710007600298856005300374856005800427856010200485856010800587955006600695955005900761972000900820991001800829992002500847992001600872040463567000021810920130319051039.01 a1268-5666 aFNSP784536 a0000218109 a19900101a19959999 ba0 afre aFR aaha 10aAgora débats/jeunesse aPariscHarmattand1995-aPariscINJEPd1995 aTrimestriel10aAgora aJeunesseyFrancexPériodiques a30502aInstitut national de la jeunesse et de l'éducation populairec(France)4 uhttp://www.injep.fr/-Agora-debats-jeunesse-.html zContenu : sommaires et résumés depuis le numéro 114 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-agora-debats-jeunesses.htm?4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3051 bno. 1 (1995) -....cParisdMagasins/AnnexeeP 8° 6336 aZPAY aexempb201210 aGEO RA4.06 France 01 aDEW 305-30601293nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000037001552100084001923260011002764300112002874400066003996060037004656060051005026060041005537120077005948560086006718560037007579550056007949550055008509720009009059920025009149920016009390000121759000012175920130319051039.02 a0170-2785 aFNSP501697 a0000121759 a19940321b19712002 ba0 ager aDE aaka 10aAgrarbericht der Bundesregierung aBonncBundesministerium für Ernährung, Landwirstschaft und Forstend1971-2002 aAnnuel 1aBericht der Bundesregierung uber die Lage der Landwirtschaft und Massnahmen der Bundesregierung (0170-2866) 1tErnährungs-und agrar politischer Bericht der Bundesregierung aPêchesyAllemagnexPériodiques aPolitique forestièreyAllemagnexPériodiques aAgricultureyAllemagnexPériodiques02aAllemagnebBundesministerium für Ernährung, Landwirtschaft und Forsten4 uhttp://www3.verbraucherministerium.de/index-00020338684910229F2F6521C0A8D816.html zAccès libre au texte intégral.1 b(1971) -(1979)cParisdMagasins/AnnexeeCOL.F°02971 b(1980) -(2001)cParisdMagasins/AnnexeeP 4° 5710 aZGRA aGEO RA5.01 Allemagne aDEW 338.1-301152nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008900154210003500243326001100278437004500289530004600334606005600380710004200436856006600478856002500544955010800569955005500677972000900732991001800741992002300759992001600782992001600798038883538000013511920130319051040.01 a0082-9714 aFNSP543329 a0000135119 a19940905a19369999 ba0 aeng aUS aaka 10aAgricultural statisticscThe Department$cFor sale by the Supt. of Docs., U.S. G.P.O aWashington, D.C.cUSGPOd1936- aAnnuel 1aYearbook of agriculture (1926)x0084-3628 0aAgricultural statisticsbWashington, D.C. aAgricultureyEtats-UnisxStatistiquesxPériodiques01aEtats-UnisbDepartment of Agriculture4 uhttp://www.nass.usda.gov/Publications/Ag_Statistics/index.asp4 zEn ligne depuis 19941 b(1942) ; (1945 ) -(1950) ; (1952) ; (1954) -(1956) ; (1968) -(1979)cParisdMagasins/AnnexeeCOL8°01881 b(1980) -(1994)cParisdMagasins/AnnexeeP 8° 5257 aZPAY aexempb201109 aGEO RC2 Etats-Unis aDEW 338.1-3 aDEW 310-31901044nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006500139210002400204225003300228326001600261430002200277606003800299606005200337712009500389856010600484955005600590972000900646991001800655992002500673992001600698992001600714074054570000025887220131114103233.01 a1763-7023 aFNSP901484 a19981102a19969999 ba0 afre aFR aaya 12aL'Agriculture, la forêt et les industries agro-alimentaires aPariscSCEESd1996-21aCollection Graph agri France aIrrégulier 1aGraph agri France aAgricultureyFrancexPériodiques aAgricultureyFrancexStatistiquesxPériodiques02aFrancebMinistère de l'agriculturebService central des enquêtes et études statistiques4 uhttp://agreste.agriculture.gouv.fr/publications/graphagri/article/graphagri-france-2012zAccès aux s1 b(1996 ) -(2011)cParisdMagasins/AnnexeeP 8° 6437 aZPAY aexempb201301 aGEO RA4.06 France 01 aDEW 338.1-3 aDEW 310-31900847nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000042001502100025001922300024002173260012002415170033002536060041002868010013003278560067003408560108004079550005005159920025005209920012005450001007442000100744220130319051041.0 a0001007442 a a20019999k fre 01 ba0 afre aFR ar aaf z  adr 10aAJ familleb[Ressource électronique] aPariscDallozd2001- aRevue électronique aMensuel10aActualité juridique Famille aFamillexDroityFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.dalloz.fr zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 34600843nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000041001502100025001912300024002163260012002405170032002526060039002848010013003238560067003368560108004039550005005119920025005169920012005410001007443000100744320130319051041.0 a0001007443 a a20039999k fre 01 ba0 afre aFR ar aaf z  adr 10aAJ Pénalb[Ressource électronique] aPariscDallozd2003- aRevue électronique aMensuel10aActualité juridique Pénal aDroit pénalyFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.dalloz.fr zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 34501226cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200001500180207003000195210008100225326001500306430002300321517001300344606003400357606003800391710007500429801003000504801002300534802000700557856004900564856009000613955009000703972000900793992002200802992001600824146925637000120154620130319051043.01 a2110-4867 aissn21104867 a0001201546 a20100928a20109999k y0frey50 ba0 afre aFR ay  ar aagu uu 10aAlim' agri 1aN° 1543 (mar/avr-2010) - aPariscMinistère de l'alimentation, de l'agriculture et de la pêched2010- aBimestriel 1tBimagrix2110-485910aAlimagri aPêchesyFrancexPériodiques aAgricultureyFrancexPériodiques02aFrancebMinistère de l'alimentation, de l'agriculture et de la pêche 3aFRbAbesc20101104gAFNOR 3aFRbISSNc20101104 a074 uhttp://agriculture.gouv.fr/alim-agri-bimagri zContenu: sommaire des n°s depuis le no 1539 (jul/aou-2009) de Bimagri (ancien titre)1 bno. 1543 (mar/avr-2010) - no. 1544 (mai/jun-2010)cParisdMagasins/AnnexeeP 4° 2370 aZPAY aGEO RA4.06 France aDEW 338.1-301661nas 2200433 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200013300154207002200287210002300309300013700332326002500469326002200494430006800516517002900584530003600613607005600649607002800705676000800733710007600741801002100817856004900838856003500887955006600922955006200988957008201050972000901132991001801141992002501159992003101184992001201215039219321000000349120130319051043.01 a0002-5712 aFNSP102974 a0000003491 a19900101a19669999 ba0 afre aFR aahu 10aAllemagne d'aujourd'huiepolitique, économie, société, culturefAssociation pour la connaissance de l'Allemagne d'aujourd'hui 1an.s. no 1 (1966)- aPariscACAAd1966- aAvant la réunification (1990) le titre était : "Allemagnes d'aujourd'hui : revue française d'information sur les deux Allemagnes" aBimestriel 1966-1979 aTrimestriel 1980- 1tAllemagne d'aujourd'hui, Réalités allemandes,xISSN 0223-336310aAllemagnes d'aujourd'hui10aAllemagne d'aujourd'huib(1966) aAllemagne (République démocratique)xPériodiques aAllemagnexPériodiques a94002aAssociation pour la connaissance de l'Allemagne d'aujourd'huic(France) 3aFRbCCN0002-57124 uhttp://allemagne-aujourdhui.septentrion.com/ zIndex et résumés depuis 19991 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 bno 1 (jan-1966) -....cParisdMagasins/AnnexeeP 8° 12041 b1967-1968 ; 1968-1969cParisdMagasins/AnnexeeP Index 0222zTable analytique aZCAD aexempb201102 aGEO RA5.01 Allemagne aGEO RA5.03 Allemagne (RDA) aDEW 94300979nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000041001552100026001963260016002224300050002386060046002887120042003348560058003768560036004349550067004709550064005379720009006019910018006109920025006289920012006530000095134000009513420130319051044.01 a0175-9191 aFNSP415897 a0000095134 a19900101a19769999 ba0 ager aDE aaka 10aAllensbacher Jahrbuch der Demoskopie aMünchencSaurd1976- aIrrégulier 1aJahrbuch der öffentlichen Meinungx0075-2347 aOpinion publiqueyAllemagnexPériodiques02aInstitut für Demoskopie (Allensbach)4 uhttp://www.ifd-allensbach.de/Seiten/jahrb_inhalt.html zContenu : Sommaires depuis 19981 b(1978/1983) -no. 11 (2002)cParisdMagasins/AnnexeeP 8° 55071 b(1974/1976)-(1976/1977)cParisdMagasins/AnnexeeCOL8°3013 aZPAY aexempb201109 aGEO RA5.01 Allemagne aDEW 30300888cas0 2200265 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200007500148210001800223440003700241530002400278712004500302801003000347856014300377955007200520991001900592991001100611037462415000107904820130319051044.0 accn0115/110X a0001079048 a19830101b18891914 0frey0103 zz0 afre aFR ar aak 10aAlmanach de la paixfPublié par l'Association de la paix par le droit aParisc[s.n.] 1tAlmanach de la paix par le droit00aAlmanach de la paix02aAssociation de la paix par le droit4340 3aFRbAbesc20070402gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb32687258w/date.r=.langFRzAccès libre au texte intégral. Années 1912 et 1913 numérisée sur Gallica1 b(1889) -(1904) ; (1909) -(1917)cParisdMagasins/AnnexeeCOL8°3953 aPériobTP03 8 anumer000807nas 2200253 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002200163210003800185430004600223606004800269801001300317856014500330955004500475991003300520038718219000119470420130506130352.01 a1241-0799 a0001194704 a a18721919 fre 01 ba0 afre aFR a 0  ar aa z 0 10aAlmanach national aPariscBerger-Levraultd1872-1919 1tAlmanach impérial (1853), ISSN 1241-0780 aAlmanachs français‎z20e siècle2rameau 0aFRbFNSP4 uhttp://gallica.bnf.fr/ark:/12148/cb34454123j/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1872-1900)1 b1913cParisdMagasins/AnnexeeCOL8°0085 anumer0 (complément gallica)01169nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200001900163210002800182306024300210423005200453430003600505440004800541606005100589702004300640801001300683856013700696955004600833038704226000119470320130319051044.01 a1169-047X a0001194703 a a17009999 fre 01 ba0 afre aFR a 0  ar aa z 0 10aAlmanach royal aPariscHouryd1700-1792 aNouvelles adresses bibliographiques : Paris : chez la Veuve d'Houry, 1726-1745 ; Paris : chez la Veuve d'Houry et Le Breton, 1746-1750 ; Paris : Le Breton, 1751-1779 ; Paris : Laurent-Charles d'Houry, 1780-1786 ; Paris : Debure, 1786-1791 1aAlmanach royal (Éd. abrégée), ISSN 1958-6434 1tAlmanac (Paris), ISSN 1169-0461 1tAlmanach national de France, ISSN 1169-0488 aAlmanachs français‎z18e siècle‎2rameau 1aHourybLaurent d'f(1644-1725)‎4650 0aFRbFNSP4 uhttp://gallica.bnf.fr/ark:/12148/cb34454105m/date.r=.langFRzAccès libre au texte intégral. Texte intégral numérisé sur Gallica1 b1789cParisdMagasins/AnnexeeRCOL8°008501017cas0 2200337 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164110001600171200002700187210004100214326001200255606003900267606004500306607004600351801003000397801002300427802000700450856004200457856005400499955010700553972000900660992001000669039934276000106420620131105185105.01 a1157-8661 a070873305 accn1157-8661 aissn11578661 a0001064206 a19910411a19919999m y0frey0103 ba0 afre aFR aaf 10aAlternative libertaire aPariscAlternative libertaired1991- aMensuel aMouvement libertairexPériodiques aMouvements sociauxyFrancexPériodiques aFrancexConditions socialesxPériodiques 3aFRbAbesc20050324gAFNOR 3aFRbISSNc20030203 a074 uhttp://www.alternativelibertaire.org/ zContenu : sommaires et texte integral depuis 20031 bno. 125 ( jan-2004) -no. 168 (dec-2007) ; no. 178 (nov-2008) -....cParisdMagasins/AnnexeeP 4° 7171 aZPAY a320.501455nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004300139207003100182210003500213326001600248452004100264517003400305517002900339530003000368606003600398607007500434710003100509711006200540711007000602801002100672856023300693955007000926972000900996991001801005992004201023992001601065067270379000000750220140114170543.01 a0304-3754 aFNSP112658 a19900101a19759999 ba0 aeng aNL aaha 10aAlternativeseglobal, local, political 1aVol. 1, no. 1 (Mar. 1975)- aBoulder, Colo.cRiennerd1990- aTrimestriel 1ttAlternatives (Online)‎x2163-315010aAlternatives (Boulder, Colo.)10aAlternatives (Guildford)10aAlternativesb(Amsterdam) aScience politiquexPériodiques aPays en voie de developpementxPolitique et gouvernementxPériodiques02aWorld Order Models Project02aCentre for the Study of Developing Societiesc(New Delhi)02aInternational Peace Research Institute Meigakuc(Yokohama, Japon) 3aFRbCCN0304-37544 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=poh&jid=FXD&site=ehost-livezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1975) -....cParisdMagasins/AnnexeeP 8° 4017 aZSAB aexempb200301 aGEO RO Pays en voie de développement aDEW 320-32101638nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200010200154210004400256326001900300326002600319421006700345434003900412530004100451606005200492606003700544801002100581856019200602856010800794856010700902856010801009955006901117955006701186972000901253992001401262039397629000000751220130319051045.01 a0247-3739 aFNSP112673 a0000007512 a19900101a19809999 ba0 afre aFR aaga 10aAlternatives économiquesejournal d'information critique sur l'actualité économique et sociale aDijoncAlternatives économiquesd1980- aMensuelb1986- aBimestrielb1980-1985 1tAlternatives économiques. Hors-sérieb(Quétigny)x1252-4999 1aL'Economie en questionsx0221-130010aAlternatives économiquesbQuétigny aHistoire économiquez20e sièclexPériodiques aEconomie politiquexPériodiques 3aFRbCCN0247-37394 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/magazine-alternatives-economiques.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 47371 bno. 3 (mar/avr-1981) -....cParisdMagasins/AnnexeeP 4° 4737 aZPAY aDEW 330.901006nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154207002200198210004800220326001600268422005900284430005200343606005200395606003700447676001000484856004400494955006900538955006200607972000900669992001400678040226360000000952520130319051045.01 a1252-4999 aFNSP116887 a0000009525 a19900615a19889999 ba0 afre aFR aaha 00aAlternatives économiques.iHors-série 1a(1982, février)- aQuétignycAlternatives économiquesd1982- aTrimestriel 1tAlternatives économiquesb(Quétigny)xISSN 0247-3739 1aAlter éco l'Economie en questions. Hors série aHistoire économiquez20e sièclexPériodiques aEconomie politiquexPériodiques a330.94 uhttp://www.alternatives-economiques.fr/1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 330.91 bno 6 (avr-1988) -....cParisdMagasins/AnnexeeP 4° 5240 aZPAY aDEW 330.901563nls 2200325 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000057001502100129002072150048003362300038003843260011004223300311004333370039007445300042007836060048008257120039008737120066009128010013009788300008009918560225009999450013012240000580240000058024020130319051045.0 a0000580240 a a19979999 ba0 afre aFR az azka  avo 10aAlternatives économiquesb[Ressource électronique] aMontpelliercCentre régional de documentation pédagogique du Languedoc-RoussillonaDijoncAlternatives économiquesd1997- a1 disque optique numérique (CD-ROM)d12 cm aDonnées textuelles et graphiques aAnnuel aLe Cédérom rassemble les articles parus dans Alternatives économiques de janvier 1993 à août 2006, les numéros hors-série (41) et la revue trimestrielle L'Economie Politique de janvier 1999 à septembre 2006. Il contient aussi des graphiques, schémas et tableaux et un dictionnaire de définitions. aConfiguration requise : PC Pentium10aAlternatives économiques (Cédérom) aHistoire économiquez1990-2008xCédéroms02aAlternatives économiquesc(Paris)02aCentre régional de documentation pédagogiquec(Montpellier) 0aFRbFNSP amfo4 uhttp://ebiblio.sciences-po.fr/index.php?search=ok&selCategorie=-Default-&selTheme=-Default-&selTypeRess=2&catval=-Default-&themeval=-Default-&typeval=2zAccessible en réseau 27/30 rue St-Guillaume par la e-bibliothèque bCDR.010101397nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003300163210004700196326002200243326002300265326002600288421005800314606003200372606004400404606005700448676000800505801001300513856004800526856006700574856011100641856010800752955006700860955006300927972000900990992001200999061112216000044826620130319051045.01 a1634-6386 a0000448266 a a20029999k fre ba0 afre aFR a 0  ar aah z 0 10aAlternatives internationales aPariscAlternatives internationalesd2002- aTrimestrielb2006 aMensuelb2004-2005 aBimestrielb2002-2004 1tAlternatives internationales. Hors série,x1763-5357 aGéopolitiquexPériodiques aRelations internationalesxPériodiques aRelations économiques internationalesxPériodiques a327 0aFRbFNSP4 uhttp://www.alternatives-internationales.fr/ zContenu : sommaires et résumés depuis le no. 1, janvier 20054 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/magazine-alternatives-internationales.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bno. 1 (mar-2002) -....cParisdMagasins/AnnexeeP 4° 6910 aZPAY aDEW 32700965nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000310015421000530018532600160023860600310025460600310028560600480031680100210036485600470038585600990043295500590053197200090059099100180059999200220061799200120063903934861X000000751120130319051045.01 a0223-5498 aFNSP112672 a0000007511 a19900101a19739999 ba0 afre aFR aaha 10aAlternatives non violentes aSaint-EtiennecAlternatives non violentesd1973- aTrimestriel aDésarmementxPériodiques aNon-violencexPériodiques aMouvements pacifistesyFrancexPériodiques 3aFRbCCN0223-54984 uhttp://www.irnc.org/ANV/Archives/index.htm zContenu : Bibliographie intégrale des articles publiés dans la revue depuis 1973 (numéro 1)1 bno. 2 (1973) -....cParisdMagasins/AnnexeeP 8° 3527 aZCAD aexempb200911 aGEO RA4.06 France aDEW 30301051nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210006900175326001600244606003700260606004500297676001000342710003800352856004800390856006900438955006900507955006600576972000900642991001800651992004200669992001400711040209261000013565520130319051045.01 a1026-2253 aFNSP544581 a0000135655 a19940912a19949999 ba0 afre aFR aaha 10aAlternatives Sud aPariscHarmattanaLouvain-la-NeuvecCentre tricontinentald1994- aTrimestriel aEconomie politiquexPériodiques aDéveloppement économiquexPériodiques a338.902aCentre tricontinentalc(Belgique)4 uhttp://www.cetri.be/Exploreur4/Numeros.html zContenu : sommaires et résumés depuis le volume 1, no. 1, 19941 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 338.91 bvol. 1 no. 1 (1994) -....cParisdMagasins/AnnexeeP 8° 6059 aZPAY aexempb201203 aGEO RO Pays en voie de développement aDEW 338.900939nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002300139210002500162326001800187452004700205530002300252607006200275712009300337856007700430955007500507972000900582991001800591992002800609992001200637036306126000007199720131220131016.01 a1130-2887 aFNSP329768 a19900101a19899999 ba0 aspa aES aaia 10aAmerica latina hoy aMadridcSEPLAd1989- a3 n°s par an 1tAmérica Latina hoy (Internet),x2340-439600aAmerica latina hoy aAmérique latinexPolitique et gouvernementxPériodiques02aUniversidad complutense de MadridbSeminario de estudios políticos sobre Latinoamérica4 uhttp://campus.usal.es/revistas_trabajo/zAccès libre au texte intégral1 bno. 2 (nov-1991) -no 49 (aou-2008)cParisdMagasins/AnnexeeP 4° 6138 aZGRA aexempb201312 aGEO RD Amérique latine aDEW 98001510nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210003200182210006700214210006400281210003500345210003200380326001600412606003200428710004100460801002100501856009000522856010800612856010300720856010800823955007100931955009501002972000901097991001801106992001201124038661454000000804920130319051048.01 a0002-7294 aFNSP113863 a0000008049 a19900101a18889999 ba0 aeng aUS aaha 10aAmerican anthropologist aDivers éditeursd1888-1919 aMenasha, Wis.cAmerican Anthropological Associationd1920-2003 aBerkeley, Calif.cUniversity of California Pressd2004-2007 aMalden, Mass.cBlackwelld2008 aHoboken, N.J.cWileyd2008- aTrimestriel aAnthropologiexPériodiques02aAmerican Anthropological Association 3aFRbCCN0002-72944 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00027294.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=711456 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 97 no. 1 (mar-1995) -....cParisdMagasins/AnnexeeP 4° 64641 bvol. 50 no. 1 (jan/mar-1948) -vol. 96 no. 4 (dec-1994)cParisdMagasins/AnnexeeP 8° 0077 aZPAY aexempb201101 aDEW 30101523nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154207003100183210005900214326002500273326003900298606004900337606003700386676000800423710003400431801002100465856019500486856021600681955006700897955010200964972000901066991001801075992002301093992002101116992001201137013301578000000349720130708100708.01 a0002-8282 aFNSP102990 a0000003497 a19900101a19119999 ba0 aeng aUS aagu 10aAmerican economic review 1avol. 1, no. 1 (mar-1911) - aNashville, Tenn.cAmerican Economic Associationd1911- a7 fois par anb2011- aPériodicités diversesb1911-2010 aEconomie politiqueyEtats-UnisxPériodiques aEconomie politiquexPériodiques a33002aAmerican Economic Association 3aFRbCCN0002-8282 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00028282.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/direct.asp?db=bth&jid=AER&scope=sitezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3301 bvol. 1 no. 1 (mar-1911) -....cParisdMagasins/AnnexeeP 8° 0129wManquant : vol. 89, no 3, 1999 aZPAY aexempb201105 aGEO RC2 Etats-Unis aGEO RQ Universel aDEW 33001142nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154207002200181210005000203326001500253530005000268606003700318606004900355710002600404801002100430856012800451856010800579955009000687972000900777991001800786992001200804039654966000000816620130319051049.01 a0569-4345 aFNSP114217 a0000008166 a19900101a19609999 ba0 aeng aUS aaja 14aThe American Economist 1aVol.4 (1960,May)- aTuscaloosa, AlacOmicron Delta Epsilond1960- aSemestriel14aThe American Economistb(New York, N.Y. 1960) aEconomie politiquexPériodiques aEconomie politiqueyEtats-UnisxPériodiques02aOmicron Delta Epsilon 3aFRbCCN0569-43454 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=AEC&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 14 no. 2 (oct-1970) -vol. 52 no.2 (aut-2008)cParisdMagasins/AnnexeeP 8° 2913 aZPAY aexempb201004 aDEW 33001236nls 2200337 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000112001642100065002762300005003413000058003463260016004043360056004203370071004766060040005477100046005878010013006338560090006468560108007369550005008449920033008499920016008820000801859000080185920130319051049.01 a0002-8312 a0000801859 a a19649999k fre 01 ba0 aeng aUS az aah z  adr 10aAmerican educational research journalb[Ressource électronique]fAmerican Educational Research Association aWashingtoncAmerican Educational Research Associationd1964- a aTexte intégral depuis le vol. 1, n° 1, January 1964 aTrimestriel aDonnées textuelles accessibles uniquement en ligne aTéléchargement de fichiers TIFF, PDF (recommandé) ou PostScript aEducationyEtats-UnisxPériodiques02aAmerican Educational Research Association 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00028312.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RS Sans aspect régional aDEW 370-37900988nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000052001502100066002023000098002683260016003663360058003823370066004404520038005067120034005448010013005788560090005919550005006819920012006860000528344000052834420130319051049.0 a0000528344 a a19749999k fre 01 ba0 aeng aUS az aah z  adr 10aAmerican ethnologistb[Ressource électronique] aWashington, D.C.cAmerican Anthropological Associationd1974- aAccès au texte intégral (réservé aux sites de Sciences-Po) jusqu'aux 7 dernières années aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou télédéchargement 1tAmerican ethnologistx(0094-0496)02aAmerican Ethnological Society 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00940496.html1 r aDEW 30101636cas0 2200421 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200003800174207003200212210003900244303006000283326001500343430005000358530004700408606004400455607005300499710006400552801003000616801002300646801003000669802000700699856010300706856006700809856010900876856010800985955007101093972000901164992001201173992002901185090868269000107577220130319051049.01 a1080-3920 aissn10803920 a0001075772 a20050923a19949999k y1frey0103 ba0 aeng aUS ay 0  aaga 0uu 10aAmerican foreign policy interests 0aVol. 16, no. 1 (Feb. 1994)- aNew York, NYcThe Committeed1994- aNotice réd. d'après le N. 1, vol. 27 (février 2005)- aBimestriel 1tAmerican foreign policy newsletterx0738-316910aAmerican foreign policy interestsb(Print) aRelations internationalesxPériodiques aEtats-UnisxRelations extérieuresxPériodiques02aNational Committee on American Foreign Policyc(Etats-Unis) 3aFRbAbesc20081202gAFNOR 3aFRbISSNc20051021 3aFRbAbesc20051205gAFNOR a014 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713768419 zContenu : sommaires et résumés depuis le vol. 23, n°1, 20014 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713768419db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 28 no. 1 (fev-2006) -....cParisdMagasins/AnnexeeP 4° 7183 aZSAB aDEW 327 aGEO RC Amérique du Nord01290nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006800154210005500222326001800277606002700295607003900322710003600361801002100397856003200418856004500450856009000495856010800585955006500693955009100758957001700849972000900866991001800875992002300893992001200916038662248000005198420130319051049.01 a0002-8762 aFNSP250714 a0000051984 a19900101a18959999 ba0 aeng aUS aaza 14aThe American historical reviewfAmerican Historical Association aWashingtoncAmerican Historical Associationd1895- a5 n°s par an aHistoirexPériodiques aEtats-UnisxHistoirexPériodiques02aAmerican Historical Association 3aFRbCCN0002-87624 uhttp://www.indiana.edu/ahr/ zContenu : sommaires depuis février 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00028762.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 54 (oct-1948) -....cParisdMagasins/AnnexeeP 8° 00691 bvol. 17 no. 2 (jan-1912) -vol. 26 no. 1 (oct-1920)cParisdMagasins/AnnexeeP 4° 03151 eP Index 0111 aZPAY aexempb201011 aGEO RC2 Etats-Unis aDEW 90901079nas0 22003493 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200002600174207003300200210005000233326001500283452003100298606003700329606004400366607004900410801003000459801002300489802000700512856007000519856004900589955007000638972000900708992001200717103612920000098781420140115124148.01 a1556-5777 aissn15565777 a0000987814 a20060616a20059999 y0frey0103 ba0 aeng aUS a 0  aagb 0yy 14aThe American interest 0aVol. 1, no. 1 (autumn 2005)- aWashington, DCcAmerican Interest LLCdc2005- aBimestriel 0tAmerican interest (online) aVie intellectuellexPériodiques aRelations internationalesxPériodiques aEtats-UnisxVie intellectuellexPériodiques 3aFRbAbesc20060616gAFNOR 3aFRbISSNc20060601 a014 uhttp://www.the-american-interest.com/ai2/article.cfm?Id=170&MId=5 zContient : sommaires et résumés d'articles1 bvol. 1 no. 1 (aut-2005) -....cParisdMagasins/AnnexeeP 4° 7114 aZPAY aDEW 00101583nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009400154207002800248210007000276326001700346430004100363606004200404606003000446606004900476710004800525801002100573856012800594856010800722856009000830856010800920955008301028972000901111991001701120992002301137992002101160992001601181013301705000000818120130319051049.01 a0002-9092 aFNSP114235 a0000008181 a19900101a19689999 ba0 aeng aUS aaga 10aAmerican journal of agricultural economicsf[American Agricultural Economics Association] 1aVol. 50, no. 1 (1968) - aMenasha, Wis.cAmerican Agricultural Economics Associationd1968- a5 nos par an 1aJournal of farm economicsx1071-1031 aAgricultureyEtats-UnisxPériodiques aAgriculturexPériodiques aPolitique agricoleyEtats-UnisxPériodiques02aAmerican Agricultural Economics Association 3aFRbCCN0002-90924 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=AJA&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00029092.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 50 no. 1 (1968) -vol. 89 no. 5 (2007)cParisdMagasins/AnnexeeP 8° 0944 aZPAY aexemp$201101 aGEO RC2 Etats-Unis aGEO RQ Universel aDEW 338.1-301543nls 2200385 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000108001642070035002722100075003072300005003823000065003873260016004523360056004683370071005246060033005956060036006287100040006648010013007048560090007178560108008078560077009158560115009929550005011079920033011129920012011450000802734000080273420130319051049.01 a0002-919X a0000802734 a a19529999k fre 01 ba0 aeng aUS az aah z  adr 14aThe American journal of comparative lawb[Ressource électronique]fAmerican Society of Comparative Law 1aN°1/2 ( Winter/Spring, 1952)- aBerkeleycAmerican Association for the Comparative Study of lawd1952- a aTexte intégral depuis le vol. 1, n°1/2, Winter/Spring 1952 aTrimestriel aDonnées textuelles accessibles uniquement en ligne aTéléchargement de fichiers TIFF, PDF (recommandé) ou PostScript aDroit comparéxPériodiques aDroityEtats-UnisxPériodiques02aAmerican Society of Comparative Law 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0002919x.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.comparativelaw.org/ zContenu : recherche par auteur, titre, volume, année... sur les index cumulatifs des vol. 1 à 52 (1952-2004)1 r aGEO RS Sans aspect régional aDEW 34001524nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005200154207002600206210006900232210003600301300005000337326001700387517000900404606004100413606004900454801002100503856009000524856010800614856012800722856010800850955010600958972000901064991001801073992002301091992001201114992001201126038662477000000818720130319051049.01 a0002-9246 aFNSP114241 a0000008187 a19900101a19419999 ba0 aeng aUS aaha 14aThe American journal of economics and sociology 1aVol. 1, no. 1 (1941)- aNew YorkcAmerican Journal of Economics and Sociologyd1941-1999 aMalden, Mass.cBlackwelld2000- aUn numéro à thème par an à partir de 1997 a5 nos par an10aAJES aSociologieyEtats-UnisxPériodiques aEconomie politiqueyEtats-UnisxPériodiques 3aFRbCCN0002-92464 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00029246.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=AES&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 8 no. 1 (oct-1948) -....cParisdMagasins/AnnexeeP 8° 0376zManquant: vol. 16 no. 1 (oct-1956) aZSAB aexempb201101 aGEO RC2 Etats-Unis aDEW 301 aDEW 33001396nls 2200373 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000084001642070035002482100041002832300005003243000059003293260016003883360056004043370071004606060028005317100051005598010013006108560090006238560108007138560042008218560105008639550005009689920033009739920016010060000802804000080280420130319051049.01 a0195-6744 a0000802804 a a19799999k fre 01 ba0 aeng aUS az aah z  adr 10aAmerican journal of educationb[Ressource électronique]fUniversity of Chicago 1aVol. 88, N°1 (November 1979)- aChicagocUniversity of Chicago Press a aTexte intégral depuis le vol. 88, n°1, November 1979 aTrimestriel aDonnées textuelles accessibles uniquement en ligne aTéléchargement de fichiers TIFF, PDF (recommandé) ou PostScript aEducationxPériodiques02aUniversity of ChicagobDepartment of Education 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01956744.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.journals.uchicago.edu/AJE/ zContenu : sommaires à partir du vol. 104, n° 1, November 1995 jusqu'au vol. 109, n°4, August 20011 r aGEO RS Sans aspect régional aDEW 370-37901252nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004200154210003400196326001600230421007500246606003800321606005000359710004200409801002100451856003500472856007500507856009000582856010800672955009000780972000900870992002300879992001200902038662574000000841220130417183536.01 a0002-9300 aFNSP114672 a0000008412 a19900101a19079999 ba0 aeng aUS aaha 10aAmerican journal of international law aWashington, D.C.cASILd1907- aTrimestriel 1aAmerican journal of international law. Supplement : official documents aDroit internationalxPériodiques aDroit internationalyEtats-UnisxPériodiques02aAmerican Society of International Law 3aFRbCCN0002-93004 uhttp://www.asil.org/Abtajo.htm zContenu : sommaires et résumés depuis le vol. 91, n°1, janvier 19974 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00029300.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1907) -....cParisdMagasins/AnnexeeP 4° 0012wManquant: no. 3 (1989) aZSAB aGEO RC2 Etats-Unis aDEW 34101440nls 2200361 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000109001642070040002732100107003133000057004203260015004773360056004923370071005484440056006196060031006756060048007067100059007548010013008138560090008268560108009169550005010249920033010299920016010620000796022000079602220130319051049.01 a1547-6154 a0000796022 a a19301932k fre 01 ba0 aeng aUS az aag z  adr 14aThe American journal of police scienceb[Ressource électronique]fScientific Crime Detection Laboratory 1aVol. 1, n°1, (January 1930) - 1932 aChicagocPrinted for the Scientific Crime Detection Laboratory by Northwestern University Pressd1930- aTexte intégral depuis le vol. 1, n°1, January 1930 aBimestriel aDonnées textuelles accessibles uniquement en ligne aTéléchargement de fichiers TIFF, PDF (recommandé) ou PostScript 1tJournal of Criminal Law and Criminology (1931-1951) aCriminologiexPériodiques aPolicexRechercheyEtats-UnisxPériodiques02aScientific Crime Detection Laboratoryc(Chicago, III.) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/15476154.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RS Sans aspect régional aDEW 364-36501581nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004200154210006000196210005500256210006000311210003600371326001600407430005700423517000900480606003600489606004800525710005600573801002100629856005300650856005000703856009000753856010800843955006700951955008701018972000901105991001801114992002301132992001601155038895846000000842620130319051049.01 a0092-5853 aFNSP114689 a0000008426 a19900101a19739999 ba0 aeng aUS aaha 10aAmerican journal of political science aDetroit, Mich.cWayne State University Pressd1973-1977 aAustin, Tex.cUniversity of Texas Pressd1978-1994 aMadison, Wis.cUniversity of Wisconsin Pressd1995-2002 aMalden, Mass.cBlackwelld2003- aTrimestriel 1aMidwest journal of political sciencexISSN 0026-339710aAJPS aScience politiquexPériodiques aScience politiqueyEtats-UnisxPériodiques02aMidwest Political Science Associationc(Etats-Unis) 3aFRbCCN0092-58534 uhttp://psweb.sbs.ohio-state.edu/ajps/content.htm zContenu : sommaires ; résumés ; depuis 19954 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00925853.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 44 no. 1 (2000) -....cParisdMagasins/AnnexeeP 4° 68521 bvol. 17 no. 1 (fev-1973) -vol. 43 no. 4 (1999)cParisdMagasins/AnnexeeP 8° 1632 aZPAY aexempb201102 aGEO RC2 Etats-Unis aDEW 320-32101305nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154207002900188210005400217326001500271517000800286606004100294606002900335710002600364801002100390856012800411856010800539856009000647856010800737955007100845972000900916991001800925992001200943038662914000000844120131025111831.01 a0002-9602 aFNSP114706 a0000008441 a19900101a18959999 ba0 aeng aUS aaga 10aAmerican journal of sociology 1avol. 1 no. 1 (jul-1895)- aChicago, Ill.cUniversity of Chicago Pressd1895- aBimestriel10aAJS aSociologieyEtats-UnisxPériodiques aSociologiexPériodiques02aUniversity of Chicago 3aFRbCCN0002-96024 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=AJS&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00029602.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 32 no. 4 (jan-1927) -....cParisdMagasins/AnnexeeP 8° 0062 aZPAY aexempb201106 aDEW 30101873nas 2200433 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000820015421000740023621000480031032600160035860600360037460600480041060700560045867600080051471000430052280100210056585600900058685601080067685601010078485601080088595500670099395500690106095500730112995500830120295500670128597200090135299100180136199200230137999200210140299200160142301330173X000000321720131219154757.01 a0003-0554 aFNSP102551 a0000003217 a19900101a19069999 ba0 aeng aUS aahu 14aThe American political science reviewfAmerican Political Science Association aWashington, D.C.cAmerican Political Science Association,$d1906-2001 aNew YorkcCambridge University Pressd2002- aTrimestriel aScience politiquexPériodiques aScience politiqueyEtats-UnisxPériodiques aEtats-UnisxPolitique et gouvernementxPériodiques a32002aAmerican Political Science Association 3aFRbCCN0003-05544 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00030554.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=108860 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bL'année en courscParisdBibliothèque de rechercheeP 4° 63131 bvol. 1 no. 1 (1906) -vol. 15 no. 1 (1920)cParisdAnnexeeP 4° 06931 bvol. 15 no. 2 (1920) -vol. 85 no. 4 (1991)cParisdMagasins/AnnexeeP 8° 00381 bvol. 86 no. 1 (1992) -....cParisdMagasins/AnnexeeP 4° 6313 aZCAD aexempb201011 aGEO RC2 Etats-Unis aGEO RQ Universel aDEW 320-32101100nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003100163207003300194210003500227326001500262430004400277606005300321607005600374801001300430856010800443856010800551955007100659972000900730992002300739992001200762058363688000062204320130319051050.01 a1532-673X a0000622043 a a20019999 fre 01 ba0 aeng aUS a 0  ar aag z 0 10aAmerican politics research 1aVol.29, n°1 (January 2001)- aThousand Oaks, CAcSaged2001- aBimestriel 1tAmerican politics quarterly,x0044-7803 aSociologie électoraleyEtats-UnisxPériodiques aEtats-UnisxPolitique et gouvernementxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 29 no. 1 (jan-2001) -....cParisdMagasins/AnnexeeP 8° 3204 aZSAB aGEO RC2 Etats-Unis aDEW 97300803nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002600139210003900165326002200204326003900226607005600265856006600321955006400387972000900451991001800460992002300478992001200501992001200513040270955000018384720140115164633.01 a1049-7285 aFNSP682843 a19900101a19909999 ba0 aeng aUS aafa 14aThe American prospect aCambridge, MacNew prospectd1990- aBimestrielb2013- apériodicités diversesb1990-2011 aEtats-UnisxPolitique et gouvernementxPériodiques4 uhttp://prospect.org/magazinezAccès libre au texte intégral1 bno. 21 (pri-1995) -....cParisdMagasins/AnnexeeP 4° 6589 aZCAD aexempb201401 aGEO RC2 Etats-Unis aDEW 973 aDEW 32401322nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210008200198326001600280430003200296607002500328710005800353801002100411856004100432856007100473856010900544955007000653957011700723957007200840972000900912991002000921992001900941992001200960039333043000000848220130319051051.01 a0272-2011 aFNSP114750 a0000008482 a19900101a19739999 ba0 aeng aUS aahu 14aThe American review of Canadian studies aaBellingham, WAcAssociation for Canadian Studies in the United Statesd1973- aTrimestriel 1aACSUS newsletterx0193-6093 aCanadaxPériodiques02aAssociation for Canadian Studies in the United States 3aFRbCCN0272-20114 uhttp://www.acsus.org//pubs/index.htm zContenu : sommaires depuis le volume 24, numéro 1, printemps 19944 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t906519462db=all1 bvol. 9 no. 2 (aut-1979) -....cParisdMagasins/AnnexeeP 8° 43581 bvol. 19 (1989) -vol. 27 (1997)cParisdMagasins/Annexe :zse trouve dans le vol. 27 no. 4 (hiv-1997) de la revue1 bvol. 1 (1971) -vol. 18 (1988)cParisdMagasins/AnnexeeP Index 0641 aZCAD aexempb20102010 aGEO RC1 Canada aDEW 97101381nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004500154210006800199326002200267326002700289430005600316517000900372607004500381801002100426856007000447856010800517856010800625856010800733955012400841972000900965991001800974992002300992992001601015039336875000000849120130319051051.01 a0275-0740 aFNSP114769 a0000008491 a19900101a19819999 ba0 aeng aUS aagu 10aAmerican review of public administration aSt. Louis, Mo.cAmerican review of public administrationd1981- aBimestrielb2009- aTrimestrielb1981-2008 1aMidwest review of public administration,x0026-346X10aARPA aEtats-UnisxAdministrationxPériodiques 3aFRbCCN0275-07404 uhttps://acces-distant.sciences-po.fr/fork?http://arp.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 15 no. 1 (pri-1981) -vol. 33 no. 1 (mar-2003) ; vol. 37 no. 1 (mar-2007) -….cParisdMagasins/AnnexeeP 8° 2683 aZSAB aexempb201105 aGEO RC2 Etats-Unis aDEW 350-35400862nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210004400179326001600223606004800239801002100287856003900308856011700347955007600464972000900540992002300549992001200572038663643000000854020130319051051.01 a0003-0937 aFNSP114940 a0000008540 a19900101a19329999 ba0 aeng aUS aaha 14aThe American scholar aWashington, D.C.cPhi Beta Kappad1932- aTrimestriel aSciences socialesyEtats-UnisxPériodiques 3aFRbCCN0003-09374 uhttp://www.theamericanscholar.org/ zContenu : accès aux sommaires depuis 2004 et accès à une sélection d'articles en texte intégral depuis 20061 bvol. 28 no. 1 (hiv-1958/1959) -....cParisdMagasins/AnnexeeP 8° 1708 aZPAY aGEO RC2 Etats-Unis aDEW 30001463nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210006300187326001500250517000800265606002900273710003800302801002100340856012800361856010800489856009000597856010800687856010100795856010800896955007001004972000901074991001801083992001201101038663783000000854520130319051051.01 a0003-1224 aFNSP114945 a0000008545 a19900101a19369999 ba0 aeng aUS aaga 10aAmerican sociological review aWashington, D.C.cAmerican Sociological Associationd1936- aBimestriel10aASR aSociologiexPériodiques02aAmerican Sociological Association 3aFRbCCN0003-12244 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=ASC&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00031224.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=111197 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (fev-1936) -....cParisdMagasins/AnnexeeP 8° 0063 aZPAY aexempb201011 aDEW 30101471nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210006700183210007100250210003000321326001600351606004100367606002900408801002100437830011800458856012800576856010800704955008100812955007300893955011100966972000901077992002301086992001201109038663791000000854820130319051051.01 a0003-1232 aFNSP114957 a0000008548 a19900101a19659999 ba0 aeng aUS aahu 14aThe American sociologist aWashington, D.C.cAmerican Sociological Associationd1965-1982 aNew Brunswick, N.J.cTransaction Periodicals Consortiumd1987-2006 aNew YorkcSpringerd2007- aTrimestriel aSociologieyEtats-UnisxPériodiques aSociologiexPériodiques 3aFRbCCN0003-1232 ales années 1971/1982 sont indexées dans Cumulative index of sociology journals

désherbé en 20084 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=ACN&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1965) -vol. 6 no. 4 (1971)cParisdMagasins/AnnexeeP 4° 28651 bvol. 7 no. 1 (1972) -vol. 7 no. 10 (1972)cParisdAnnexeeP F° 03551 bvol. 8 no. 1 (1973) -vol. 37 no. 2 (2006) ; vol. 41 no. 1 (2010) -....cParisdMagasins/AnnexeeP 4° 2865 aZPAY aGEO RC2 Etats-Unis aDEW 30101012nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000057001502100056002072300005002633000098002683260016003663360058003823370066004404520043005067120037005498010013005868560090005999550005006899920016006940000532965000053296520130319051051.0 a0000532965 a a19479999k fre 01 ba0 aeng aUS az aah z  adr 14aThe American Statisticianb[Ressource électronique] aWashingtoncAmerican Statistical Associationd1947- a aAccès au texte intégral (réservé aux sites de Sciences-Po) jusqu'aux 5 dernières années aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou télédéchargement 1tThe American Statisticianx(0003-1305)02aAmerican Statistical Association 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00031305.html1 r aDEW 310-31901242cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157110001600175200009800191210005000289326001600339430005300355434004600408530003300454607002900487607003900516712006300555801003000618801003000648801002300678802000700701856003300708955007100741972000900812992002300821992001200844038752727000095513920130319051051.01 a0026-3079 accn0026-3079 aissn00263079 a0000955139 a19740301a19719999k y1frey0103 ba0 aeng aUS a 0  aaha 0uu 10aAmerican studiesfsponsored by University of KansasfMid-America American Studies Association aLawrence, Kan.cUniversity of Kansasd[1971]- aTrimestriel 1tMidcontinent American studies journalx0544-0335 1tAmerican studies internationalx0883-105X10aAmerican studiesb(Lawrence) aEtats-UnisxPériodiques aEtats-UnisxHistoirexPériodiques02aMid-America American Studies Associationc(Lawrence, Kan.) 3aFRbAbesc20051124gAFNOR 3aFRbAbesc20051124gAFNOR 3aFRbISSNc20051021 a014 uhttp://www2.ku.edu/amerstud/1 avol. 46 no. 1 (mar-2005) -....cParisdMagasins/AnnexeeP 8° 5964 aZPAY aGEO RC2 Etats-Unis aDEW 97300977nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000170013921000270015632600170018353000280020060700410022871000680026980100210033785601210035895501430047997200090062299100180063199200220064999200160067103882227X000005198120130705130530.01 a0044-8141 aFNSP250709 a19900101a19639999 ba0 aita aIT aaia 10aAmministrare aBolognacMulinod1963- a3 nos par an 0aAmministrareb(Bologna) aItaliexAdministrationxPériodiques02aIstituto per la scienza dell'amministrazione pubblicac(Italie) 3aFRbCCN0044-81414 uhttp://www.mulino.it/edizioni/riviste/scheda_rivista.php?issn=0044-8141zAccès libre au sommaire du dernier numéro1 bno. 1 (jun-1963) -no. 40 (dec-1972) ; no. 1 (jan-1975) -no 3/4 (jul/dec-1979) ; no. 1 (avr-1986) -....cParisdMagasins/AnnexeeP 8° 2052 aZCAD aexempb200908 aGEO RA6.03 Italie aDEW 350-35401284cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052100004100069101001300110102000700123105001800130106000600148110001600154200007300170207001700243210005000260300003400310326001100344452006300355510005700418530004300475531003300518606004700551711004800598801003000646801002300676802000700699856007300706955005200779972000900831992001600840992004200856104797444000124763320131128135044.0 a1845-6707 aissn18456707 a20050922a20059999k y0frey50 ba0 ascraeng aHR ay 0  ar aakahh 0uu 10aAnali Hrvatskog politološkog društvafHrvatsko politolosko drustvo 0aGod.1(2004)- aZagrebcHrvatsko politološko društvod2005- aTexte en croate et en anglais aAnnuel 1tAnali Hrvatskog politološkog društva (Online)x1847-529910aAnnals of the Croatian Political Science Association00aAnali Hrvatskog politološkog društva 0aAnali Hrvat. politol. druš. aSociologie politiquexPériodiques2rameau02aHrvatsko politolosko drustvoc(Zagreb)4070 3aFRbAbesc20130903gAFNOR 3aFRbISSNc20100412 a304 uhttp://hrcak.srce.hr/analihpdzAccès au texte intégral depuis 20041 b(2011)-....cParisdMagasins/AnnexeeP 8° 7213 aZSAB aDEW 320-321 aGEO RA8.23 Croatie (depuis 1991-1992)01278nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008900154210005000243326001600293607002700309710004700336801002100383856006100404856005500465856012800520856010800648955006600756957008300822972000900905992002400914992001400938038664348000005197620140107173557.01 a0003-2573 aFNSP250700 a0000051976 a19900101a19639999 ba0 apor aPT aaha 10aAnálise socialeRevista do Instituto de Ciências Sociais da Universidade de Lisboa aLisboacInstituto de ciências sociaisd1963- aTrimestriel aPortugalxPériodiques02aInstituto de ciências sociaisc(Lisbonne) 3aFRbCCN0003-25734 uhttp://www.ics.ul.pt/publicacoes/analisesocial/index.htm zContenu : sommaires depuis le volume 1, n°1, 19634 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=KZ9&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1963) -....cParisdMagasins/AnnexeeP 8° 15331 b(1963) -(1999)zcet index se trouve dans le vol. 34, no. 150, 1999 de la revue aZSAB aGEO RA6.01 Portugal aDEW 946.900952nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000067001502100041002172300024002583260012002826060044002946060046003387100080003848010013004648560080004778560055005579550005006129920012006179920021006290001166220000116622020130319051053.0 a0001166220 a a20029999k fre 01 ba0 aspa aES ar aaf z  adr 10aAnálisis del Real Instituto Elcanob[Ressource électronique] aMadridcReal Instituto Elcanod2002- aRevue électronique amensuel aRelations internationalesxPériodiques aCoopération internationalexPériodiques02aReal instituto Elcano de estudios internacionales y estratégicosc(Madrid) 0aFRbFNSP4 uhttp://www.realinstitutoelcano.org/wps/portal/rielcano/Pub_AnalisisRIElcano zContenu : texte intégral des articles depuis 20021 r aDEW 327 aGEO RQ Universel01271nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000085001552100026002403260018002665300032002846060046003166060054003626060036004167120077004528560087005298560069006169550072006859570099007579720009008569920024008659920028008899920016009170000009577000000957720130319051053.01 a0121-4705 aFNSP117004 a0000009577 a19900615a19879999 ba0 aspa aCO aaia 10aAnalisis politicofInstituto de estudios políticos y relaciones internacionales aBogotácIEPRId1987- a3 n°s par an10aAnalisis politicob(Bogota) aScience politiqueyColombiexPériodiques aScience politiqueyAmérique latinexPériodiques aScience politiquexPériodiques02aInstituto de estudios políticos y relaciones internacionalesc(Bogotá)4 uhttp://www.scielo.org.co/scielo.php?script=sci_serial&pid=0121-4705&lng=pt&nrm=iso zContenu : accès libre au texte intégral depuis 2005 via Scielo1 bno. 1 (1987) -no. 42 (jan-2001)cParisdMagasins/AnnexeeP 4° 56851 bno. 1 (1987) -no. 8 (1989) ; no. 1 (1987) -no. 25 (1995)cParisdMagasins/AnnexeeP Index 0646 aZSAB aGEO RD4.16 Colombie aGEO RD Amérique latine aDEW 320-32101414nas 2200325 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200022600148210002300374326001100397430005000408452006200458530004000520606004400560606005200604710006500656801001300721856021700734955005500951972000901006992005701015992001601072048884553000065374120131220162405.01 a1607-1328 a a19989999 fre 01 ba0 afre aFR a 0  ar aak z 0 10aAnalyse des politiques d'éducationfOrganisation de coopération et de développement économiques, Centre pour la recherche et l'innovation dans l'enseignementCentre pour la recherche et l'innovation dans l'enseignement aPariscOCDEd1998- aAnnuel 1tAnalyse des politiques éducativesx1560-4810 1tAnalyse des politiques d'éducation (En ligne)x1999-152500aAnalyse des politiques d'éducation aEducationyPays de l'OCDExPériodiques aEducation et EtatyPays de l'OCDExPériodiques02aCentre pour la recherche et l'innovation dans l'enseignement 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://lysander.sourceocde.org/vl=392424/cl=26/nw=1/rpsv/home.htmzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(2001) -(2003)cParisdMagasins/AnnexeeP 4° 7042 aZPAY aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 370-37901466cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200015100180210002100331215001000352422006300362517007200425530006200497801003000559830000900589856020900598856020900807955009801016991001501114991001101129036869694000112548420130319051053.0 a2021-0515 accn0123/5982 a0001125484 a19830101b184018 m c0frey0103 ba0 afre aFR ay 0  ar aakazz 0zz 10aAnalyse des voeux des Conseils généraux de départementesur divers objets d'administration et d'utilité publique, soit locale, soit générale aPariscP. Dupont d23 cm 1tBulletin officiel du Ministère de l'intérieurx0151-078910aAnalyse des voeux émis par les Conseils généraux de département00aAnalyse des voeux des Conseils généraux de département 3aFRbAbesc20071207gAFNOR asdy04 uhttp://books.google.fr/books?id=29tCAAAAcAAJ&dq=%22Analyse%20des%20voeux%22&hl=fr&pg=PR1#v=onepage&q=%22Analyse%20des%20voeux%22&f=falsezAccès libre au texte intégral. 1841 numérisé sur Google Livres4 uhttp://books.google.fr/books?id=isTK1ZdFbOcC&dq=%22Analyse%20des%20voeux%22&hl=fr&pg=PR1#v=onepage&q=%22Analyse%20des%20voeux%22&f=falsezAccès libre au texte intégral. 1845 numérisé sur Google Livres1 b(1868) ; (1871) -(1874) ; (1878) -(1879) ; (1882) -(1890)cParisdMagasins/AnnexeeCOL8°0616 aPériobTZ anumer001017nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200010500139207002300244210009800267326001700365530003900382607005000421710010800471801002100579856002300600955005900623972000900682992002200691992001400713039659372000000852420130930151157.01 a0755-3471 aFNSP114881 a19900101a19829999 ba0 afre aFR aaia 10aAnalyses et documents économiquesfCentre confédéral d'études économiques et sociales de la CGT 1ano. 1 (juin-1982)- aCentre confédéral d'études économiques de la Confédération générale du travaild1982- a3 nos par an10aAnalyses et documents économiques aFrancexConditions économiquesxPériodiques02aConfédération générale du travailc(France)bCentre confédéral d'études économiques et sociales 3aFRbCCN0755-34714 uhttp://www.cgt.fr/1 bno. 1 (1982) -....cParisdMagasins/AnnexeeP 4° 4788 aZPAY aGEO RA4.06 France aDEW 330.901404cas0 2200397 450 001001000000002001100010005001700021011001400038035002000052035001700072100004100089101000800130102000700138105001800145106000600163110001600169200004800185207002600233210004200259300009200301326001100393452006900404512000900473530004800482606004500530606004500575606004600620710007600666801001300742802000700755856012600762955008100888972000900969992001200978992001600990076862186000069140820130828104257.01 a1529-7489 a(OCoLC)43877218 aissn15297489 a20000630a20019999k y0frey50 ba0 aeng aUS ay 0  ar azka 0uu 10aAnalyses of social issues and public policy 0aVol. 1, no. 1 (2001)- aMalden, Mass.cBlackwell Publ.d2001- a2012, dernière édition papier, voir ensuite uniquement en version en ligne via Wiley. aAnnuel 1tAnalyses of social issues and public policy (Online),x1530-241510aASAP00aAnalyses of social issues and public policy aPolitique publiquexPériodiques2rameau aProblèmes sociauxxPériodiques2rameau aPsychologie socialexPériodiques2rameau02aSociety for the Psychological Study of Social Issuesc(Etats-Unis)4070 0aFRbFNSP a014 uhttp://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1530-2415zAccès libre au texte intégral à partir du vol. 1, 20011 bvol. 2 no. 1 (2002) -vol.12 no. 6 (2012)cParisdMagasins/annexeeP 8° 6776 aZGRA aDEW 300 aDEW 320-32101056nas0 2200337 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109106000600127110001600133200004600149210002400195301005100219301004300270326001500313530002100328606003600349606003600385607002600421710005600447801003000503856004700533856003600580955007000616992002000686992001200706121408159000113057920130319051056.0 a0001130579 a20080212a20049999k y0frey0103 ba0 aspa aMX ay  ar aaju 10aAndamioseRevista de investigacion social aMexicocUCAMd2004- a1870-0063 : ISSN mentionné sur la publication aDemande de numérotation ISSN en cours aSemestriel10aAndamios$eMexico aSciences socialesxPériodiques aSciences humainesxPériodiques aMexiquexPériodiques02aColegio de humanidades y ciencas socialesc(Mexico) 3aFRbAbesc20080212gAFNOR4 uhttp://www.uacm.edu.mx/andamios/index.html zAccès libre au texte intégral1 bvol. 1 no. 1 (aut-2004) -....cParisdMagasins/AnnexeeP 8° 6999 aGEO RD1 Mexique aDEW 30001658nas 2200445 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005100154207004100205210002800246210009200274326002300366326002600389430004900415517004200464517001600506517001600522530001900538606002700557676000800584710005900592801002100651856002600672856006500698856008700763856010800850955006600958955006601024957009201090972000901182992001201191992000901203039569667000000368420130523093946.01 a0395-2649 aFNSP103640 a0000003684 a19900101a19469999 ba0 afre aFR aagu 10aAnnaleseéconomies, sociétés, civilisations 1a1ère année, no 1 (jan-mars 1946) - aPariscColind1946-1997 aaPariscÉd. de l'École des hautes études en sciences socialescdiff. A. Colind1998- aTrimestrielb2011- aBimestrielb1998-2010 1aAnnales d'histoire sociale (1945)x1243-258X10aAnnales : histoire, sciences sociales10aAnnales HSS10aAnnales ESC 0aAnnalesbParis aHistoirexPériodiques a90902aEcole des hautes études en sciences socialesc(Paris) 3aFRbCCN0395-26494 uhttp://www.persee.fr/ zAccès libre au texte intégral via Persée de 1945 à 2002.4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-annales.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9091 bvol. 1 no. 1 (1946) -....cParisdMagasins/AnnexeeP 8° 00931 b(1929) -(1948) ; (1949) -(1968)cParisdMagasins/AnnexeeP Index 0037zTable analytique aZPAY aDEW 909 aPBUL01652cas0 2200409 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102106000600109110001600115200009800131207003200229210002800261301005500289302004000344303004800384304003700432305005800469305008100527326002900608447005500637447003600692451005500728517004800783530002700831700002400858702002800882710002600910801003000936856014100966955008201107991002001189991003301209069186375000109511120131015172755.0 a0001095111 a20021218b19001949m y0frey0103 ba0 afre aFR ar acay 14aLes Annales ColonialesfOrgane de la France coloniale modernefMarcel Ruedel, L.-G. Thébault 0aVol.1(1900)-vol.49(5 sept.) aParisc[s.n]d1900-1949 aDemande de numérotation issn en cours par le CR03 aLa périodicité varie fréquemment aNotice réd. d'après le n°du 8 août 1918 aLe sous-titre varie fréquemment aEd en alternance à Paris, puis Casablanca puis Paris aIl semble qu'il y ait eu interruption du 8 juin 1940 au 31 sept. 1948 inclus aQuotid. puis irrégulier 1tClimatsohebdomadaire de la Communauté française 1tClimats. Les Annales coloniales 1tLes Annales coloniales, revue mensuelle illustrée10aAnnales de l'Empire, les Annales coloniales04aLes Annales Coloniales 1aRuedelbMarcel4651 1aThébaultbL. - G.465102aFrance coloniale4070 3aFRbAbesc20060111gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb32693410p/date.r=.langFRzAccès libre au texte intégral. Années 1903-1939 numérisées sur Gallica1 bvol. 5 no. 1 (1904) -vol. 6 no. 24 (1905)cParisdMagasins/AnnexeeP 8° 0921 aPériobTP02 P8 anumer0 (complément Gallica)01236nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004200154210002400196326001600220436003400236436005300270606003800323606003100361710009600392711007800488801002100566856002900587856003600616955006300652957007000715972000900785991001800794992002200812992001600834992001200850039791289000000380020130319051056.01 a0769-489X aFNSP104035 a0000003800 a19900101a19869999 ba0 afre aFR aahu 10aAnnales d'économie et de statistique aPariscINSEEd1986- aTrimestriel 1aAnnales de l'INSEEx0019-0209 1tCahiers du Séminaire d'économétriex0071-8343 aStatistiqueyFrancexPériodiques aEconométriexPériodiques02aAssociation pour le développement de la recherche en économie et en statistiquec(France)02aInstitut national de la statistique et des études économiquesc(France) 3aFRbCCN0769-489X4 uhttp://annales.ensae.fr/ zAccès libre au texte intégral1 bno. 1 (jan-1986) -....cParisdMagasins/AnnexeeP 8° 49391 bno. 1 (1986) -no. 36 (1994)cParisdMagasins/AnnexeeP Index 0741 aZGRA aexempb201003 aGEO RA4.06 France aDEW 310-319 aDEW 33001455nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003900139210003000178210003900208326002500247326002500272430006200297452006200359530004900421606003900470606004200509710005100551801002100602856011300623856010800736955005300844955005500897957005700952972000901009991001801018992002101036992001201057039237818000006993320130828173224.01 a0066-2062 aFNSP322745 a19900101a19669999 ba0 afre aFR aaku 10aAnnales de démographie historique aParis‎cBelin‎d2000- aPariscdivers éditeursd1966-2000 aSemestriel‎b1998- aAnnuel‎b1965-1997 1aEtudes et chronique de démographie historiquex1147-1832 1tAnnales de démographie historique (En ligne),x1776-277410aAnnales de démographie historique‎bParis aPopulationxHistoirexPériodiques aDémographie historiquexPériodiques02aSociété de démographie historiquec(France) 3aFRbCCN0066-20624 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-annales-de-demographie-historique.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1980) -....cParisdMagasins/AnnexeeP 8° 55711 b(1965) -(1979)cParisdMagasins/AnnexeeCOL8°41121 b(1964) -(1982)cParisdMagasins/AnnexeeP Index 0637 aZPAY aexempb201111 aGEO RQ Universel aDEW 30401048cas0 2200361 450 00100100000000200110001000500170002101100140003803500140005203500170006603500150008310000410009810100080013910200070014710500180015411000160017220000250018820700180021321000810023132600110031251700250032351700280034860600240037660600380040080100300043880100230046880200070049185600370049885600610053595500570059699200120065399200210066511272955X000118578120130319051056.0 a1955-0855 a120402335 aissn19550855 a0001185781 a20070221a20079999u y0frey0103 ba0 afre aFR ay  aaku uu 14aLes Annales de droit 0aNo 1 (2007) - aMont-Saint-AignancPublications des universités de Rouen et du Havred2007- aAnnuel10aADDMont-Saint-Aignan10aADD (Mont-Saint-Aignan) aDroitxPériodiques aDroit internationalxPériodiques 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20081014 a074 uhttp://www.lesannalesdedroit.fr/4 zContenu : sommaires et résumés du dernier numéro paru1 bno 1 (2007) -...cParisdMagasins/AnnexeeP 8° 7127 aDEW 340 aGEO RQ Universel01134nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200002700138210002400165326001500189606003000204676000800234710003900242801002100281856010700302856010100409955006600510955006300576957014200639972000900781991001800790992001200808039219461000000377220130319051056.01 a0003-4010 aFNSP103944 a0000003772 a19900101a18919999 ba0 afre aFR10aAnnales de géographie aPariscColind1891- aBimestriel aGéographiexPériodiques a91002aSociété de géographiec(France) 3aFRbCCN0003-40104 uhttp://www.persee.fr/zAccès libre au texte intégral. Périodique numérisé sur Persée (1892-1936)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-annales-de-geographie.htm?1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9101 bno. 1 (oct-1891) -....cParisdMagasins/AnnexeeP 8° 00801 b(1891) -(1931) ; (1932) -(1951) ; (1952) -(1961) ; (1962) -(1971) ; (1972) -(1981) ; (1982) -(1991)cParisdMagasins/AnnexeeP Index 0130 aZPAY aexempb201011 aDEW 91001189nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001391100016001452000053001612100028002143260015002424400061002575300053003186060044003716060036004157120049004518560145005009550069006459570039007149910072007539920022008259920016008470000140649000014064920130319051056.01 a1144-1496 aFNSP560115 a0000140649 a19941108b18861898 ba0 afre aFR ar aaga 10aAnnales de l'Ecole libre des sciences politiques aPariscAlcand1886-1898 aBimestriel 1aAnnales des sciences politiques, (1144-1488)

00aAnnales de l'Ecole libre des sciences politiques aScience politiqueyFrancexPériodiques aScience politiquexPériodiques02aEcole libre des sciences politiquesc(Paris)4 uhttp://gallica.bnf.fr/ark:/12148/cb34422234c/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1886-1898)1 bvol. 1 (1886) -vol.13 (1898)cParisdMagasins/AnnexeeP 8° 03771 bindex (1886/1895) relié avec 1895 anumer0 (gallica mélange le mode image seul et le mode texte/image) aGEO RA4.06 France aDEW 320-32101152nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000061001552100029002163260016002454300065002615170047003265170033003736060032004068010021004388560070004598560074005298560075006039550091006789570057007699920012008260000008538000000853820130319051056.01 a0379-3699 aFNSP114930 a0000008538 a19900101a19749999 ba0 afre aBE aaha 10aAnnales de l'économie publique, sociale et coopérative aOxfordcBlackwelld1974- aTrimestriel 1aAnnales de l'économie collective (0003-407X) < P 8° 0621 >10aAnnals of public and cooperative economics10aAnnalen der Gemeinwirtschaft aCoopérativesxPériodiques 3aFRbCCN0379-36994 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=13704788 zContenu : sommaires ; résumés ;depuis le volume 67, numéro 1, 1996 zContenu : sommaires ; résumés ; depuis le volume 67, numéro 1, 19961 bvol. 62 no. 1 (jan/mar-1974) -vol. 66 no. 1 (1995)cParisdMagasins/AnnexeeP 8° 06211 b(1925) -(1970)cParisdMagasins/AnnexeeP Index 0185 aDEW 33401022cas0 2200301 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200004700162210004500209530004700254531002800301606003600329710005300365711004500418801003000463802000700493856014500500955005500645991002000700037931709000109457620130319051056.0 a0373-0816 accn0373-0816 a0001094576 a19960829b18761970 0frey0103 ba0 afre aFR ar aau 10aAnnales de l'Institut national agronomique aParisaNancycBerger-Levraultd1876-197000aAnnales de l'Institut national agronomique 0aAnn. Inst. natl. agron. aAgronomiexPériodiques2rameau02aInstitut national agronomique Paris-Grignon407002aFrancebMinistère de l'agriculture4070 3aFRbAbesc20040813gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb32693668j/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1876-1936)1 b(1953) -(1970)cParisdMagasins/AnnexeeP 8° 0788 aPériobTP02 P800988cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001500069035001400084035001500098100004100113101000800154102000700162106000600169110001600175200007000191210002500261326001600286530007000302531002700372801003000399801001800429802000700447856014500454955005500599991002000654013301888000109528420130319051056.0 a1146-7266 accn1146-7266 asib0035307 aEvry32602 a0001095284 a19990310a18559999k y0frey0103 ba0 afre aFR ar aaha 10aAnnales de la propriété industrielle, artistique et littéraire aParisc[s.n.]d1855- aTrimestriel00aAnnales de la propriété industrielle, artistique et littéraire 0aAnn. propr. ind. litt. 3aFRbAbesc20050920gAFNOR 3aFRbSFgAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb34423003s/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1855-1932)1 b(1940) -(1948)cParisdMagasins/AnnexeeP 8° 1044 aPériobTP02 P801006nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004000154210004200194326002200236326002900258326002700287606003900314710002400353801002100377856004700398856003800445955007400483957007000557972000900627992003300636992001100669039285367000000854120140106180032.01 a0180-930X aFNSP114941 a0000008541 a19900101a19789999 ba0 amul aFR aaju 14aLes Annales de la recherche urbaine aMontrougecCentrale des revuesd1978- aSemestrielb2005- a3 n°s par anb2000-2004 aTrimestrielb1978-1999 aUrbanismexRechercheyPériodiques02aFrancebPlan urbain 3aFRbCCN0180-930X4 uhttp://www.annalesdelarechercheurbaine.fr/ zContenu : sommaire du dernier n°1 bno. 13 (1980) -no. 107 (dec-2010)cParisdMagasins/AnnexeeP 8° 45091 bno. 1 (1979) -no. 88 (2000)cParisdMagasins/AnnexeeP Index 0695 aZPAY aGEO RS Sans aspect régional aDEW 7100978nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210003900198326001600237517004400253606003900297676000800336801002100344856003100365856009600396955006600492955005900558972000900617992002200626992001600648039474658000000863920130319051056.01 a0295-4397 aFNSP115259 a0000008639 a19900101a19859999 ba0 afre aFR aaha 00aAnnales des mineseGérer et comprendre aPariscGérer et comprendred1985- aTrimestriel10aGérer et comprendre. Annales des mines aGestion d'entreprisexPériodiques a650 3aFRbCCN7003/39274 uhttp://www.annales.org/gc/ zContenu : sommaires et résumés depuis 1997 ; texte intégral des articles de 1998 à 20051 bLes 3 dernières annéescParisd27, Salle 4e étageeDEW 6501 bno. 1 (1985) -....cParisdMagasins/AnnexeeP 4° 5108 aZPAY aGEO RA4.06 France aDEW 650-65801819cas0 2200313 450 00100100000000200110001000500170002101100140003803500170005203500170006903500150008610000410010110100080014210200070015010600060015711000160016320002110017921000560039043002240044644002280067053002110089853101280110980100300123780100230126780200070129085601330129795500550143099100200148503751430X000109457320130319051056.0 a0153-6494 accn0153-6494 aissn01536494 a0001094573 a19890411b18491896uuuy0frey0103 ba0 afre aFR ar aauu uu 10aAnnales des ponts et chaussées. Mémoires et documents relatifs à l'art des constructions et au service de l'ingénieur. Lois, arrêtés et autres actes concernant l'administration des ponts et chaussées aPariscCarilian-Goeury et Victor Dalmontd1849-1896 1tAnnales des ponts et chaussées. Mémoires et documents relatifs à l'art des constructions et au service de l'ingénieur. Lois, ordonnances et autres actes concernant l'administration des ponts et chausséesx0153-6443 1tAnnales des ponts et chaussées. 2e partie. Lois, décrets, arrêtés et autres actes concernant l'administration et le personnel des ponts et chaussées et documents administratifs concernant les pays étrangersx0153-639710aAnnales des ponts et chaussées. Mémoires et documents relatifs à l'art des constructions et au service de l'ingénieur. Lois, arrêtés et autres actes concernant l'administration des ponts et chaussées 0aAnn. ponts chaussées. Mém. doc. relat. art constr. serv. ing. Lois, arrêtés autres actes concern. adm. ponts chaussées 3aFRbAbesc20070416gAFNOR 3aFRbISSNc20051021 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34348188q/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 b(1883) -(1893)cParisdMagasins/AnnexeeP 8° 0760 aPériobTP02 P801213nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001391100016001452000036001612100028001973260015002254300081002404400070003215300036003916060044004276060036004717120049005078560145005569550071007019910077007729920022008499920016008710000140652000014065220130319051056.01 a1144-1488 aFNSP560121 a0000140652 a19941108b18991910 ba0 afre aFR ar aaga 10aAnnales des sciences politiques aPariscAlcand1899-1910 abimestriel 1aAnnales de l'Ecole libre des sciences politiques, (1144-1496) < P 8° 0377 > 1aRevue des sciences politiques (Paris), (1144-147X) < P 8 °0377 >00aAnnales des sciences politiques aScience politiqueyFrancexPériodiques aScience politiquexPériodiques02aEcole libre des sciences politiquesc(Paris)4 uhttp://gallica.bnf.fr/ark:/12148/cb34422232p/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1899-1910)1 bvol. 14 (1899) -vol. 25 (1910)cParisdMagasins/AnnexeeP 8° 0377 anumer0 (sur gallica, mélange de mode image seul et de mode texte/image) aGEO RA4.06 France aDEW 320-32100967nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210005700186326001500243606004500258710008400303856006900387856006100456955007200517972000900589991001800598992004900616992001200665040337618000019199120130319051056.01 a1259-5098 aFNSP708470 a0000191991 a19900101b19952004 ba0 afre aFR aaja 10aAnnales du monde anglophone aInstitut de recherche du monde anglophoned1995-2004 aSemestriel aCivilisation anglo-saxonnexPériodiques02aInstitut de recherche du monde anglophonec(Aix-en-Provence, Bouches-du-Rhône)4 uhttp://www.harmattan.fr/index.asp?navig=catalogue&obj=revue&no=54 zContenu : accès aux sommaires depuis le n°3, juin 19961 bno. 1 (avr-1995) -no. 18 (2003)cParisdMagasins/AnnexeeP 8° 6245 aZPAY aexempb201301 aGEO RP Autres groupes de pays ou de régions aDEW 30000787cas0 2200241 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200003500148210002400183530003500207801003000242856014500272955005500417991001900472991005400491039115453000108113920131014142410.0 accn7124/3798 a0001081139 a19921214b18391848 0frey0103 zz0 afre aFR ar aak 10aAnnales du Parlement français aPariscFirmin Didot00aAnnales du Parlement français 3aFRbAbesc20070410gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb326944505/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1843-1849)1 b(1839) -(1848)cParisdMagasins/AnnexeeCOL4°0736 aPériobTP01 4 anumer0 (complément gallica soit les 4 1ers vols)01498nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005200154210003100206210006000237326001600297421007800313607005000391710005200441801002100493856004200514856014100556856012600697856010800823955006100931957011000992972000901102992002501111992001201136001012487000005195420130319051056.01 a0003-4436 aFNSP250670 a0000051954 a19900101a19249999 ba0 afre aFR aaha 10aAnnales historiques de la Révolution Francaise aPariscArmand Colind2008- aPariscSociété des études robespierristesd1924-2007 aTrimestriel 1aAnnales historiques compiègnoises modernes et contemporaines (0182-5461) aFrancez1789-1799 (Révolution)xPériodiques02aSociété des études robespierristesc(France) 3aFRbCCN0003-44364 uhttp://www.revues.org/ahrf/index.html zContenu : sommaires depuis le n°274, oct./déc. 1998, résumés à partir de 1998 et texte intégral des articles parus de 1999 à 20064 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-annales-historiques-de-la-revolution-francaise.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 91 (jan/fev-1939) -....cParisdMagasinseP 8° 04121 b(1923-1940) ; (1946-1962) ; (1963-1972) ; (1973-1987) ; (1988-1999)cParisdMagasins/AnnexeeP Index 0024 aZPAY aGEO RA4.06 France 01 aDEW 94400985nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210005900198326001500257510004000272510004300312606003100355710004500386801002100431856006800452856003000520955007800550972000900628991001800637992001600655039219623000005199420130319051056.01 a0003-4452 aFNSP250726 a0000051994 a19900101a19629999 ba0 afre aFR aaja 10aAnnales internationales de criminologie aPariscSociété internationale de criminologied1962- aSemestriel10aInternational annals of criminology10aAnales internacionales de criminologia aCriminologiexPériodiques02aSociété internationale de criminologie 3aFRbCCN0003-44524 uhttp://www.isc-sic.org/web/index.php/fr/annales-internationales zAcès libre aux sommaires1 b(jan/jun-1963) ; (jan/jun-1966) -....cParisdMagasins/AnnexeeP 8° 2324 aZPAY aexempb200904 aDEW 364-36501251cas0 2200385 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164105001800171106000600189110001600195200006000211210002900271305005500300326003200355421005200387421003500439444003500474512002400509512002100533530004300554801003000597801002300627802000700650856014500657955004800802991001500850038556030000113169920130319051056.0 a1149-4034 a07061962X accn1149-4034 aissn11494034 a0001131699 a19901204b18831939k y0frey0103 ba0 afre aFR ay  ar aae 14aLes Annales politiques et littéraireserevue populaire aParisc[s.n.]d1883-1939 aEst supplement de Conférencia avant de l'absorber aBimensuel puis hebdomadaire 1tJournal de l'Université des Annalesx1766-358X 1tConferencia (Paris)x1766-3598 1tConferencia (Paris)x1766-359814aLes Annales (Paris)14aLes AnnalesParis04aLes Annales politiques et littéraires 3aFRbAbesc20080206gAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34429261z/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1883-1928)1 b(1911)cParisdMagasins/Annexee12°009.560 aPériobTZ01010nas 2200301 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200004700160210003100207326001100238430005700249606003700306607004500343710003900388856005700427856011400484955007600598992002200674992001200696002942488000013311520130319051057.01 a0393-3954 aFNSP539110 a0000133115 a19940727a19769999 ba0 aeng aIT ar aaka 10aAnnalifFondazione Giangiacomo Feltrinelli aMilanocFeltrinellid1976- aAnnuel 1aAnnali - Istituto Giangiacomo Feltrinellix0544-1374 aVie intellectuellexPériodiques aItaliexVie intellectuellexPériodiques02aFondazione Giangiacomo Feltrinelli4 uhttp://www.fondazionefeltrinelli.it/feltrinelli-cms/4 zDétail des titres et tables des matières (Pubblicazioni --> Annali - cliquer sur le titre de chaque volume)1 bvol. 16 (1974/1975) -vol. 32 (1996)cParisdMagasins/AnnexeeCOL4°2135 aGEO RA6.03 Italie aDEW 00101374cas0 2200373 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164106000600171110001600177200004500193210004300238300024800281440005900529606002500588606003300613710003900646801003000685801002300715802000700738856005700745856007400802955007100876991002200947992000900969992002200978037553372000109153620130319051057.01 a0544-1374 a059225254 accn0544-1374 aissn05441374 a0001091536 a19860620b19581974k y1frey0103 ba0 amul aIT ar aaku uu 10aAnnalifIstituto Giangiacomo Feltrinelli aMilanocFeltrinelli Editored1958-1974 aÀ partir de la 23ème année (1983/84) publiée en 1985, chaque livraison porte aussi sur un thème. - Texte en italien, français et anglais (quelques articles en allemand) de 1976 à 1985 puis en italien ou anglais ou français par la suite 1tAnnali - Fondazione Giangiacomo Feltrinellix0393-3954 aSocialismexHistoire aSocialismeyItaliexHistoire02aFondazione Giangiacomo Feltrinelli 3aFRbAbesc20070521gAFNOR 3aFRbISSNc20011008 a0d4 uhttp://www.fondazionefeltrinelli.it/feltrinelli-cms/4 zDétail des titres et tables des matières (Pubblicazioni --> Annali)1 bvol. 1 (1958) - vol. 15 (1973)cParisdMagasins/AnnexeeCOL4°2135 aPériobTP02 Col4 aP320 aGEO RA6.03 Italie01670nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200007100138210003800209326001500247606003600262606003600298710007300334801002100407856007000428856010800498856009000606856010800696856010800804856010800912955007101020957015901091972000901250992002101259992001601280992001201296013589121000000380820130319051057.01 a0002-7162 aFNSP104044 a0000003808 a19900101a18909999 ba0 aeng aUS14aThe Annals of the American Academy of Political and Social Science aNewbury Park, Calif.cSaged1890- aBimestriel aSciences socialesxPériodiques aScience politiquexPériodiques02aAmerican Academy of Political and Social Science (Philadelphie, Pa.) 3aFRbCCN0002-71624 uhttps://acces-distant.sciences-po.fr/fork?http://ann.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00027162.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 10 no. 2 (sep-1897) -....cParisdMagasins/AnnexeeP 8° 00401 b(1890) -(1916) ; (1931) -(1935) ; (1956) -(1960) ; (1961) -(1966) ; (1966) -(1970) ; (1971) -(1975) ; (1981) -(1985)cParisdMagasins/AnnexeeP Index 0011 aZSAB aGEO RQ Universel aDEW 320-321 aDEW 30001242nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005400139210002700193326001600220606004200236710004000278801002100318830005900339856009000398856010800488856010900596856010800705955007100813972000900884992002100893992001400914038670518000000865420131217115022.01 a0004-5608 aFNSP115324 a19900101a19119999 ba0 aeng aUS aaha 10aAnnals of the Association of American Geographers aWashingtoncAAGd1911- aTrimestriel aGéographie économiquexPériodiques02aAssociation of American Geographers 3aFRbCCN0004-5608 a1947-->1953 et 1962-->1984 : collection donnée au CTL4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00045608.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t788352614db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 75 no. 1 (mar-1985) -....cParisdMagasins/AnnexeeP 4° 0840 aZSAB aGEO RQ Universel aDEW 330.900921cas0 2200277 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200009100148210003600239215002000275702003800295702002300333801003000356830000900386856014500395955005500540991001500595991003300610038985640000107165720130319051057.0 accn7002/3689 a0001071657 a19860917b18991903k y0frey0103 ba0 afre aFR ar aak 12aL'année colonialefpubliée sous la direction de MM. Ch. Mourey,..., Louis Brunel,... aPariscC. Tallandierd1899-1903 din-8 puis in-12 1aMoureybCharlesf(1872-19..)4340 1aBrunelbLouis4340 3aFRbAbesc20050816gAFNOR asdy04 uhttp://gallica.bnf.fr/ark:/12148/cb32694963w/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1899-1902)1 b(1899) -(1903)cParisdMagasins/AnnexeeCOL8°0751 aPériobTZ anumer0 (complément gallica)01242cas0 2200349 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164105001800171106000600189110001600195200018600211210004100397215001000438530003600448531002800484700004700512801003000559801002300589801001300612802000700625856017300632955005100805991003600856038743345000117815920130319051057.0 a1245-5342 a070628491 accn1245-5342 aissn12455342 a0001178159 a19930506b18631880k y0frey0103 ba0 afre aFR ay 0  ar aaku 0uu 12aL'Année géographiqueerevue annuelle des voyages de terre et de mer ainsi que des explorations... et publications diverses relatives aux sciences géographiques et ethnographiques aPariscLibrairie Hachetted1863-1880 d18 cm12aL'Année géographiqueb(Paris) 0aAnnée géogr.b(Paris) 1aVivien de Saint-MartinbLouisf(1802-1897) 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20030203 0aFRbFNSP a074 uhttp://gallica.bnf.fr/ark:/12148/cb326950044/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (sauf années 1868, 1871, 1876 et 1877)1 b(1862) -(1878)cParisdMagasins/AnnexeeG.0026 anumer0 (complément de gallica)01913cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200011100197210003100308326001100339517002400350530011100374607006300485607006300548676000800611801003000619801002300649801001300672802000700685856019200692856019000884856019001074856019001264945001101454955005001465039210790000111981520130319051057.0 a2015-8181 accn9023/6106 aissn20158181 a0001119815 a19830101b18601862m y0frey0103 ba0 afre aFR ay  ar aaku uu 12aL'Année historique ou revue annuelle des questions et des événements politiques en France, en Europe... aPariscHachetted1860-1862 aAnnuel12aL'Année historique02aL'Année historique ou revue annuelle des questions et des événements politiques en France, en Europe... aFrancexPolitique et gouvernementz1852-1870xPériodiques aEuropexPolitique et gouvernementz1848-1871xPériodiques a944 3aFRbAbesc20071019gAFNOR 3aFRbISSNc20070606 0aFRbFNSP a004 uhttp://books.google.fr/books?id=e2gMAAAAYAAJ&dq=editions%3AitgLpK7x3OIC&hl=fr&pg=PP9#v=onepage&q&f=falsezAccès libre au texte intégral. 1ere année (1860) numérisée sur Google Livres4 uhttp://books.google.fr/books?id=PmgMAAAAYAAJ&dq=editions%3AitgLpK7x3OIC&hl=fr&pg=PP9#v=onepage&q&f=falsezAccès libre au texte intégral. 2e année (1861) numérisée sur Google Livres4 uhttp://books.google.fr/books?id=TmUEAAAAQAAJ&dq=editions%3AitgLpK7x3OIC&hl=fr&pg=PP9#v=onepage&q&f=falsezAccès libre au texte intégral. 3e année (1862) numérisée sur Google Livres4 uhttp://books.google.fr/books?id=-ZTKHNucFNoC&dq=editions%3AitgLpK7x3OIC&hl=fr&pg=PP7#v=onepage&q&f=falsezAccès libre au texte intégral. 4e année (1863) numérisée sur Google Livres bT.16171 b(1861)-(1862)cParisdMagasins/AnnexeeT.161701061nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001391100016001452000023001612070028001842100035002124400046002475300029002936070076003226070049003988560145004479550100005929910033006929920022007259920012007470000002914000000291420130319051057.0 a0066-2356 aFNSP101772 a0000002914 a19891213b18751905 ba0 afre aFR ar aaka 12aL'année politique 1apublié de 1875 à 1906 aCharpentier : Parisd1875-1905 1aL'année politique (1944)xISSN 1149-346112aL'année politiqueb1875 aFrancexPolitique et gouvernementz1870-1914xChronologiexPériodiques aFrancez1870-1914xChronologiexPériodiques4 uhttp://gallica.bnf.fr/ark:/12148/cb34349554r/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1877-1905)1 bvol.1 (1874) -vol.17 (1890) ; vol.19 (1892) -vol.32 (1905)cPariddMagasins/AnnexeeCOL12°0011 anumer0 (complément gallica) aGEO RA4.06 France aDEW 94401056nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000028001552100063001833000090002463260011003365170027003476070025003746070052003997100057004518560051005089550085005599550053006449720009006979920022007069920014007280000104795000010479520130319051057.01 a0066-2372 aFNSP446344 a0000104795 a19900101a19669999 ba0 amul aCH aaka 10aAnnée politique suisse aBerncForschungszentrum für schweizerische Politikd1966- aLa première année a été publiée dans "Annuaire suisse de science politique" 1966 aAnnuel10aSchweizerische Politik aSuissexPériodiques aSuissexPolitique et gouvernementxPériodiques02aForschungszentrum für schweizerische Politik (Bern)4 uhttp://www.anneepolitique.ch/fr/aps-online.php1 b2e année (1966) ; (1970-1975) ; (1977-1984)cParisdMagasins/AnnexeeCOL8°45961 b(1985) -....cParisdMagasins/AnnexeeP 8° 6690 aZGRA aGEO RA5.14 Suisse aDEW 949.400962nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200002500160210002800185210005500213326001600268606003000284801002100314856010700335856009100442955008900533972000900622991001800631992001100649039219666000005141220130319051057.01 a0003-5033 aFNSP249444 a0000051412 a19900101a18949999 ba0 afre aFR ar aaha 10aAnnée psychologique aVineuilcNecPlusd2009- aPariscPresses universitaires de Franced1894-2008 aTrimestriel aPsychologiexPériodiques 3aFRbCCN0003-50334 uhttp://www.persee.fr/zAccès libre au texte intégral. Périodique numérisé sur Persée (1894-2005)4 uhttp://www.armand-colin.com/revues_info.php?idr=26zSommaires et résumés depuis 20061 bvol. 2 (1895) -vol. 8 (1901) ; (1942/1943) -....cParisdMagasins/AnnexeeP 8° 2307 aZPAY aexempb200908 aDEW 1501273nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210005100181300004500232326001800277436014000295530003200435606002900467676000800496801002100504856010000525856010800625955006600733955005300799972000900852991001700861992003300878992001200911039237915000000579520130319051057.01 a0066-2399 aFNSP109076 a0000005795 a19900101a19499999 ba0 afre aFR aaju 12aL' Année sociologique aPariscPresses universitaires de Franced1949- aSemestriel (1995-). - Annuel (1949-1994) a2 n°s par an 1aAnnales sociologiques, Série A, Série B, Série C, Série D, Série E. Toutes les séries sont conservés sous la cote < P 8° 2306 > 2aL'Année sociologiqueb1949 aSociologiexPériodiques a301 3aFRbCCN0066-23994 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-l-annee-sociologique.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3011 b(1949) -....cParisdMagasins/AnnexeeP 8° 2306 aZPAY aexemp$200904 aGEO RS Sans aspect régional aDEW 30100874nas 2200253 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001392000033001452100031001783000036002093260011002456060029002568300038002858560135003239550150004589920012006080000188852000018885220130319051057.01 a0245-9051 aFNSP699016 a0000188852 a19900101b18981927 0 afre aFR ar12aL'année sociologique (1896) aPariscF. Alcand1898-1927 aN'a pas paru entre 1912 et 1923 aAnnuel aSociologiexPériodiques aSudoc à jour (12 juin 2007 ; dm)4 uhttp://gallica.bnf.fr/ark:/12148/cb34404872n/datezAccès libre au texte intégral. Périodique numérisé sur Gallica (1896-1925)1 bvol. 1 (1898) -vol. 12 (1913) = (1896/97) -(1909/12) ; NS vol. 1 (1925) -vol. 2 (1927) = (1923/24) -(1924/25)cParisdMagasins/AnnexeeP 8° 2306 aDEW 30101041nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200004600160210002500206326001400231510005100245517005000296517000900346601005000355606003800405710003600443856004000479955006000519955005300579972000900632991001700641992002100658992001200679039239810000000591820130319051057.01 a0073-8182 aFNSP109426 a0000005918 a19900329a18779999 ba0 amul aFR ar aala 10aAnnuairefInstitut de droit international aPariscPedoned1877- aBisannuel10aYearbook of the Institute of International Law10aAnnuaire de l'Institut de droit international10aAIDI02aInstitut de droit internationalxPériodiques aDroit internationalxPériodiques02aInstitut de droit international4 uhttp://www.pedone.info/idi/idi.html1 b(1877) -(1979)cParisdMagasins/AnnexeeCOL 12° 0004 A1 b(1980) -....cParisdMagasins/AnnexeeP 8° 5368 aZPAY aexemp$201109 aGEO RQ Universel aDEW 34101398cas0 2200397 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164105001800171106000600189110001600195200006200211207001500273210002700288320008600315326001100401436005300412436006400465517005300529530006200582531003100644710004300675801003000718801002300748802000700771856013300778955007200911991001700983039598772000107610320130319051057.0 a0399-1350 a070854092 accn0399-1350 aissn03991350 a0001076103 a19900423a18639999k y0frey0103 ba0 afre aFR a 0  ar aaku 0uu110aAnnuaire-bulletin de la Société de l'histoire de France 0aT.1(1863)- aPariscRenouardd1863- aTable générale des matières :30e année(1863)-50e année(1884) ; (1885)-(1910) aAnnuel |tAnnuaire historique pour l'année ...x0399-1342 |tBulletin de la Société de l'histoire de Francex0399-133410aBulletin de la Société de l'histoire de France00aAnnuaire-bulletin de la Société de l'histoire de France 0aAnnu.-bull. Soc. hist. Fr.02aSociété de l'histoire de France4070 3aFRbAbesc20070131gAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34381800j/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 b(1864) -(1875) ; (1929) -(1944)cParisdMagasins/AnnexeeCOL8°1783 aPériobTP0200913nas0 22002891 450 001001000000002001100010005001700021035002500038035002000063035001500083100004100098101000800139102000700147106000600154110001600160200003700176210001900213215000800232300005500240711003400295801003000329801002900359856013600388955004700524991001900571991003300590113688539000107908220130319051057.0 aFRBNF326963150000002 aPR002806670001J a0001079082 a20070402b18871892 y0frey0103 ba afre aFR ar aau y 10aAnnuaire de la Bourse du travail aParisc[s.n.?] d8° aPorte en tête : Ville de Paris. Bourse du travail02aBourse du travailcParis4070 3aFRbAbesc20070402gAFNOR 0aFRbBNFc19970701gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/bpt6k56860349.image.langFRzAccès libre au texte intégral. Ed. 1887-1888 numérisée sur Gallica1 b(1892)cParisdMagasins/AnnexeeCOL8°3351 aPériobTP03 8 anumer0 (complément gallica)01238cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200011400197207001000311210001800321215002000339326001100359430005500370530007700425606003600502606004200538702006500580801003000645856014200675955005600817991001500873036672831000112054020130319051057.0 a2019-8086 accn0100/0594 zccn0115/2238 a0001120540 a19830101c1843 m y0frey0103 ba0 afre aFR ay 0  ar azk h 0 10aAnnuaire de la noblesse de France et des maisons souveraines de l'Europefpublié par M. Borel D'Hauterive... 1a1843- aParisc[s.n.] cPlanchesd18 cm aAnnuel 1tAnnuaire de la paierie et de la noblesse de France00aAnnuaire de la noblesse de France et des maisons souveraines de l'Europe aAnnuairesxPériodiques2rameau aNoblesseyFrancez20e siècle2rameau 1aBorel d'HauterivebAndré-François-Josephf(1812-1896)4651 3aFRbAbesc20071112gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb326964979/date.r=.langFRzAccès libre au texte intégral. Annuaire numérisé sur Gallica (1843-1937)1 b(1937) -(1938)cParisdMagasins/AnnexeeCOL12°0115 aPériobTZ01343cas0 2200373 450 00100100000000200110001000500170002101100140003803500170005203500180006903500170008703500200010403500150012410000410013910100080018010200070018810500180019510600060021311000160021920000740023520700330030921000290034232600110037143000700038244000630045260600330051567600080054880100300055680100180058680100230060480200070062785601440063495501910077803872913X000121373720130319051057.01 a1243-2393 accn1243-2393 afrBN015032228 aissn12432393 a(OCoLC)72852093 a0001213737 a19930325b19071964u y0frey50 ba0 afre aFR ay  ar azku uu 10aAnnuaire de la presse française et étrangère et du monde politique 0avol. 25(1907)-vol. 78 (1964) aParisc[s.n.]d1907-1964 aAnnuel 1tAnnuaire de la presse française et du monde politiquex1243-2385 1tAnnuaire de la presse française et étrangèrex1243-2407 aPressexPériodiques2rameau a070 3aFRbAbesc20110303gAFNOR 3aFRbBNgAFNOR 3aFRbISSNc20110131 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34458514n/date.r=.langFRzAccès libre au texte intégral. Années 1908 et 1909 numérisées sur Gallica1 b(1907) ; (1910) ; (1913) - (1914) ; (1920) ; (1922) ; (1926) ; (1928) ; (1931) ; (1937) - (1939) ; (1942) - (1943) ; (1946) - (1955) ; (1957) - (1964)cParisdMagasins/AnnexeeCOL8°005001273cas0 2200397 450 001001000000002001100010005001700021011001400038035001400052035001400066035001700080035001500097035001700112035001500129100004100144101000800185102000700193106000600200110001600206200004100222210003900263300002000302326001100322421005100333434005100384440006600435710004000501711003900541801003000580801001800610801002300628802000700651856014500658955005500803991001700858013304518000107504020130319051057.0 a1245-5350 a038743361 a07089731X accn1245-5350 asib0035678 aissn12455350 a0001075040 a19990310b18721956k y1frey0103 ba0 afre aFR ar azku uu 10aAnnuaire de législation étrangère aPariscCotillon et filsd1872-1956 aTable 1870-1900 aAnnuel 1tAnnuaire de législation françaisex1245-5369 1tAnnuaire de législation françaisex1245-5369 1tAnnuaire de législation française et étrangèrex0066-265802aSociété de législation comparée02aCentre français de droit comparé 3aFRbAbesc20060106gAFNOR 3aFRbSFgAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/cb344593010/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1872-1937)1 b(1871) -(1936)cParisdMagasins/AnnexeeCOL8°0181 aPériobTP0101107cas0 2200337 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164106000600171110001600177200004000193210003400233326001100267422005200278444005200330712004000382801003000422801002300452802000700475856014500482955005500627991001700682991007000699038743388000107510020130319051057.0 a1245-5369 a070897328 accn1245-5369 aissn12455369 a0001075100 a19930430b18821934k y1frey0103 ba0 afre aFR ar aaku uu 10aAnnuaire de législation française aPariscA. Cotillond1882-1934 aAnnuel 1tAnnuaire de législation étrangèrex1245-5350 1tAnnuaire de législation étrangèrex1245-535002aSociété de législation comparée 3aFRbAbesc20070314gAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/cb344592998/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1882-1934)1 b(1880) -(1933)cParisdMagasins/AnnexeeCOL8°0182 aPériobTP01 anumer0 (en complément de gallica : 1900, 1909, 1916, 1924, 1930)01003cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200004300197210003800240440006000278530004300338531002600381801003000407801001300437802000700450856014500457955004700602991004000649044692412000112005420130319051057.0 a1606-1179 accn1606-1179 accn7207/714X a0001120054 a20000406b18981901k a0frey0103 ba0 afre aMG ay  ar aak 10aAnnuaire de Madagascar et dépendances aTananarivecImprimerie officielle 1tGuide annuaire de Madagascar et dépendancesx1606-593X00aAnnuaire de Madagascar et dépendances 0aAnnu. Madag. dépend. 3aFRbAbesc20050727gAFNOR 0aFRbFNSP a004 uhttp://archive.org/stream/annuairedemadag00unkngoog#page/n6/mode/2upzAccès libre au texte intégral. 1899 numérisée sur Internet Archive1 b(1898)cParisdMagasins/Annexee8°004.993 anumer0 (guide-annuaire sur gallica)01014cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200006800179210004400247326001100291423004400302530002900346606006000375801003000435801002300465802000700488856013300495955005500628991001700683038752573000107609820130319051057.0 a1245-9666 accn1245-9666 aissn12459666 a0001076098 a19950413b18511868uuuy0frey0103 ba0 afre aFR ar azku uu 10aAnnuaire des deux mondesehistoire générale des divers états aPariscRevue des deux mondesd1850-1868 aAnnuel 1tRevue des deux mondes (1829)x0035-196200aAnnuaire des deux mondes aPolitique et culturez19e sièclexPériodiques2rameau 3aFRbAbesc20070212gAFNOR 3aFRbISSNc20060706 a074 uhttp://gallica.bnf.fr/ark:/12148/cb32697009b/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 b(1850) -(1867)cParisdMagasins/AnnexeeCOL8°1801 aPériobTP0200995nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005000139210008100189326001100270530005000281606003600331606006700367710007000434856003200504856005600536955004700592992002500639992001600664992002500680040265137000020042920131023142718.01 a1254-6003 aFNSP731642 a19900101b19931997 ba0 afre aFR aaka 10aAnnuaire des diplômes d'études approfondies aPariscMinistère de l'enseignement supérieur et de la recherched1993-1997 aAnnuel10aAnnuaire des diplômes d'études approfondies aDiplômesyFrancexPériodiques aUniversitésyFrancexEtudes des 2e et 3e cyclesxPériodiques02aFrancebDirection générale de la recherche et de la technologie4 uhttp://www.dr.education.fr/ zContenu : recherche géographique et par discipline1 b(1995)cParisdMagasins/AnnexeeP 4° 6636 aGEO RA4.06 France 01 aDEW 370-379 aGEO RA4.06 France 0101363nas 2200373 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001391100016001452000035001612100037001963260011002335120043002445120017002875300036003046010037003406060036003776060050004137100023004638560140004868560145006269550057007719550059008289550055008879720009009429920022009519920016009730000117186000011718620130715144745.01 a0069-5580 aFNSP486837 a0000117186 a19900101a19019999 ba0 afre aFR ar aaka 10aAnnuaire du Collège de France aPariscCollège de Franced1901- aAnnuel10aCours et travaux du Collège de France10aRésumés...00aAnnuaire du Collège de France]02aCollège de FrancexPériodiques aRechercheyFrancexPériodiques aEnseignement supérieuryFrancexPériodiques02aCollège de France4 uhttp://www.college-de-france.fr/default/EN/all/pub_tra/index.htmzAccès libre au texte intégral des éditions 2007/2008 et 2008/2009.4 uhttp://gallica.bnf.fr/ark:/12148/cb34349602s/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1911-1913)1 b(1980/1981)-....cParisdMagasins/AnnexeeP 8° 54801 b(1960)-(1979/1980)cParisdMagasins/AnnexeeCOL8°27511 b(1936)-(1959)cParisdMagasins/AnnexeeCOL12°0013 aZGRA aGEO RA4.06 France aDEW 370-37900942nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000062001502100042002122300024002543260011002786010037002896060036003266060050003627100023004128010013004358560069004488560068005179550005005859920022005909920016006120001191166000119116620130319051057.0 a0001191166 a a20059999k fre 01 ba0 afre aFR ar aak z  adr 10aAnnuaire du Collège de Franceb[Ressource électronique] aPariscCollège de Franced2005/2006- aRevue électronique aAnnuel02aCollège de FrancexPériodiques aRechercheyFrancexPériodiques aEnseignement supérieuryFrancexPériodiques02aCollège de France 0aFRbFNSP4 uhttp://www.college-de-france.fr/default/EN/all/pub_tra/index.htm4 zContenu : texte intégral des Cours et travaux depuis 2005/20061 r aGEO RA4.06 France aDEW 370-37901129cas0 2200301 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200007500148207001800223210006800241303003700309326001100346512005000357530007500407607004300482712006200525801003000587856015200617955004700769991001100816039144763000089697020130319051057.0 accn7132/0644 a0000896970 a19940902b19041922 0frey0103 ba0 afre aFR ar aak 10aAnnuaire du Gouvernement général de l'Afrique occidentale française 0a(1904)-(1922) aSaint-LouisaPariscImpr. du GouvernementcE. Larosed1904-1922 aCommence en 1904 ; cesse en 1922 aAnnuel10aAnnuaire du Gouvernement général de l'A.O.F00aAnnuaire du Gouvernement général de l'Afrique occidentale française aFrancexColoniesxPériodiques2rameau02aAfrique occidentale françaisebGouverneur général4340 3aFRbAbesc20040413gAFNOR4 uhttp://archive.org/stream/annuairedugouve00afrigoog#page/n8/mode/2upzAccès libre au texte intégral. Année 1906 numérisée sur Internet Archive1 b(1912)cParisdMagasins/AnnexeeCOL8°0683 anumer001188cas0 2200361 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147105001800154106000600172110001600178200006200194210006100256430007200317517005500389601005400444606005100498710004000549801003000589801002300619802000700642856005500649856003100704955005400735992002500789992001200814118773011000116480620130319051057.0 a1950-9405 a108455769 aissn19509405 a0001164806 a20071026a20069999uuuy0frey0103 ba0 afre aFR ay  ar azku uu 12aL' Annuaire du MEDEFfMouvement des entreprises de France aPariscÉd. et services techniques professionnelsd2006- 1tAnnuaire officiel - Mouvement des entreprises de France,x0999-983313aL' Annuaire du Mouvement des entreprises de France02aMouvement des entreprises de FrancexPériodiques aEmployeursxAssociationsyFrancexPériodiques02aMouvement des entreprises de France 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20081014 a074 uhttp://www.medef.com/medef-corporate/publications/ zAccès libre aux sommaires1 b(2006)-(2007)cParisdMagasins/AnnexeeP 4° 5533 aGEO RA4.06 France 06 aDEW 33101087nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005200163210003500215210004600250326001100296606004400307676000800351710008000359801001300439856013900452955006700591955006000658972000900718992001200727992002200739059714883000031957820131022145712.01 a1377-1280 a0000319578 a a20009999k fre ba0 afre aBE a 0  ar aak z 0 10aAnnuaire français de relations internationales aBruxellescBruylantd2000-2003 aPariscLa Documentation françaised2004- aAnnuel aRelations internationalesxPériodiques a32702aCentre Thucydide-Analyse et recherche en relations internationalesc(Paris) 0aFRbFNSP4 uhttp://www.diplomatie.gouv.fr/fr/actions-france_830/etudes-recherches_3119/annuaire-francais-relations-internationales_3123/index.html1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 1 (2000) -....cParisdMagasins/AnnexeeP 8° 6526 aZPAY aDEW 327 aGEO RA4.06 France01463nas0 2200385 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109110001600127200015900143207001200302210004200314300006800356301004300424326001100467517001000478606005400488606005100542607005900593676000800652710009500660801003000755856005100785856006000836955006700896955005200963972000901015992001601024992001601040992002101056165245972000123667020130319051057.0 a0001236670 a20121107b20122012k y frey50 ba0 afre aFR ay 0  aak hh 0zz 10aAnnuaire marocain de la stratégie et des relations internationalesfCentre Marocain Interdisciplinaire d'Etudes Stratégiques et Internationales (CMIESI) 0a(2012)- aPariscL'HarmattanaFescCMIESId2012 aPublication en 2 vols. Autres éditions en Arabe et en Anglais. aDemande de numérotation ISSN en cours aAnnuel10aAMSRI aStratégie politiqueyMarocxPériodiques2rameau aScience politiqueyMarocxPériodiques2rameau aMarocxRelations internationalesxPériodiques2rameau a32702aCentre Marocain Interdisciplinaire d'Etudes Stratégiques et Internationales (CMIESI)4070 3aFRbAbesc20121107gAFNOR4 uhttp://www.cmiesi.ma/acmiesi/fr/amsri_2012.php4 zContenu : introduction et table des matières en ligne.1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 b(2012)-....cParisdMagasins/AnnexeeP 8° 7189 aZPAY aDEW 961-965 aDEW 310-319 aGEO RG1.11 MAROC01321cas0 2200361 450 00100100000000200110001000500170002103500150003810000410005310100080009410200070010210500180010910600060012711000160013320000450014920700100019421000890020430000620029330100560035532600110041143000850042260600440050760600440055167600120059571000220060771100460062980100300067585601090070595500650081497200090087999200570088899200140094509164979X000090597620130524142832.0 a0000905976 a20051012a20059999k z0frey0103 ba0 afre aZZ a 0  ar aak hh 0 10aAnnuaire officiel de l'Union européenne 0a2005- aLuxembourgcOffice des publications officielles des Communautés européennesd2005- aParaît en trois langues : français, allemand et anglais aDemande de numérotation ISSN en cours par le CR 12 aAnnuel 1tAnnuaire interinstitutionnel. Qui fait quoi dans l'Union européenne?x1680-3728 aInstitutions européennesxRépertoires aInstitutions européennesxPériodiques a327.06502aUnion européenne02aUnion européennebCommission européenne 3aFRbAbesc20051104gAFNOR4 uhttp://europa.eu/whoiswho/public/index.cfm?lang=frzAccés libre au texte intégral de l'année en cours1 bLes 2 dernières annéescParisdMagasins/AnnexeeP 4° 6495 aZPAY aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 341.201328nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200015000160210009400310326001100404430005600415440005600471530003800527607006400565676000800629710008400637856014200721955008900863992002200952992001200974992001600986037481681000000322320130319051057.0 a0150-8822 aFNSP102561 a0000003223 a19900102b19011952 ba0 afre aFR ar aaka 10aAnnuaire statistiquefMinistère du commerce, de l'industrie, des postes et télégraphes, Office du travail, Statistique générale de la France aPariscMinistère du commerce, de l'industrie, des postes et des télégraphesd1901-1952 aAnnuel 1aAnnuaire statistique de la France (1878)x0150-8830 1aAnnuaire statistique de la France (1953)x0066-365400aAnnuaire statistiquebParis. 1901 aFrancexConditions économiquesxStatistiquesxPériodiques a31402aFrancebMinistère du commerce, de l'industrie, des postes et des télégraphes4 uhttp://gallica.bnf.fr/ark:/12148/cb34350395t/date.r=.langFRzAccès libre au texte intégral. Annuaire numérisé sur Gallica (1900-1935)1 b(1901) -(1946) ; (1948) -(1949) ; (1951) -(1952)cParisdMagasins/AnnexeeCOL4°0003 aGEO RA4.06 France aDEW 944 aDEW 310-31901357nas 2200349 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000540013921000280019332600110022148800920023251700980032451700310042253000550045360600730050860600730058171000760065483000530073085600950078395500480087897200090092699100180093599200220095399200160097599200160099103984997X000009146320131009144953.01 a0989-0025 aFNSP403739 a19900101b19842002 ba0 afre aFR aaka 10aAnnuaire statistiquefMutualité sociale agricole aPariscCCMSAd1984-2002 aAnnuel 1aStatistiques - Caisses centrales de mutualité sociale agricole. Résultats d' ensemble10aAnnuaire statistique - Caisses centrales de Mutualité sociale agricole. Résultats nationaux10aAnnuaire statistique - MSA10aAnnuaire statistique - Mutualité sociale agricole aAgriculteursxSanté et hygièneyFrancexStatistiquesxPériodiques aSécurité socialexAgriculteursyFrancexStatistiquesxPériodiques02aUnion des caisses centrales de la mutualité sociale agricolec(France) a1984-2001 : collection envoyée au CTles en 20134 uhttp://www.msa.fr/lfr/etudes-statistiques/annuaireszAccés au texte intégral depuis 20091 b(1984) -(2001)cParisdMagasinseP 4° 5329 aZGRA aexempb201306 aGEO RA4.06 France aDEW 360-363 aDEW 310-31901474cas0 2200433 450 001001000000002001100010005001700021011001400038035001700052035001700069035001700086035001500103100004100118101000800159102000700167110001600174200006600190210004300256300003600299326001100335510006000346510004800406517005500454606006900509606004800578676000800626710004400634801003000678801003000708801002300738802000700761856005000768856005300818955006800871955005800939972000900997992001601006992001801022040217736000025246520131108115725.01 a1027-5746 accn1027-5746 zccn7138/2399 aissn10275746 a0000252465 a19970108a19949999 0fre 0103 ba0 afre aZZ aak 00aAnnuaire statistiquefObservatoire européen de l'audiovisuel aStrasbourgcConseil de l'Europed1998- aManquent édtions 2008 et 2009. aAnnuel10aStatistical yearbook - European Audiovisual Observatory10aYearbook - European Audiovisual Observatory10aAnnuaire - Observatoire européen de l'audiovisuel aIndustrie cinématographiqueyEuropexStatistiquesxPériodiques aMédiasyEuropexStatistiquesxPériodiques a07002aObservatoire européen de l'audiovisuel 3aFRbAbesc20040524gAFNOR 3aFRbAbesc20040524gAFNOR 3aFRbISSNc20030523 a004 uhttp://www.obs.coe.int/oea_publ/index.html.fr zAccès libre au sommaire du dernier numéro paru1 bLa dernière annéecParisd27, Salle Rez-de chausséeeDEW 0701 b(1994/1995) -....cParisdMagasins/AnnexeeP 4° 6436 aZPAY aDEW 310-319 aGEO RA Europe01278nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200004000160210005300200326001100253440006900264530004600333607004100379710005100420801002100471856026800492955012300760991001500883992002400898992001600922992001400938036597376000007002420130319051057.0 a0066-3646 aFNSP322908 a0000070024 a19900101b18701910 ba0 afre aBE ar aaku 10aAnnuaire statistique de la Belgique aBruxellescMinistère de l'intérieurd1870-1910 aAnnuel 1aAnnuaire statistique de la Belgique et du Congo Belgex0770-222100aAnnuaire statistique de la Belgiqueb1870 aBelgiquexStatistiquesxPériodiques02aBelgiquebMinistère des affaires économiques 3aFRbCCN0066-36464 uhttp://books.google.fr/books?id=xZlIAAAAYAAJ&dq=%22Annuaire%20statistique%20de%20la%20Belgique%22&hl=fr&pg=PR4#v=onepage&q=%22Annuaire%20statistique%20de%20la%20Belgique%22&f=falsezAccès libre au texte intégral. 1ere année (1870) numérisée sur Google Livres1 b(1871) -(1873) ; (1875) -(1878) ; (1880) -(1898) ; (1900) -(1904) ; (1906) -(1910)cParisdMagasins/AnnexeeCOL4°0007 anumer0 (?) aGEO RA4.04 Belgique aDEW 310-319 aDEW 949.301033cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200006700174210002400241225002800265607004100293710003800334801003000372801003000402802000700432856009000439856004800529955005200577972000900629992002500638992001600663992001600679045103518000094650820130319051057.01 a1295-957X accn1295-957X a0000946508 a20000407a19989999m a0frey0103 ba0 afre aFR a 0  aak 0 10aAnnuaire statistique de la DéfensefMinistère de la défense aPariscDICODd1998-00aAnalyses et réferences aFrancexForces arméesxPériodiques02aFrancebMinistère de la défense 3aFRbAbesc20051221gAFNOR 3aFRbAbesc20051221gAFNOR a074 uhttp://213.139.102.176/sga/decouverte/statistiques/annuaire_statistique_de_la_defense zContient les sommaires des n°s depuis 20051 b(2005) -...cParisdMagasins/AnnexeeP 4° 7098 aZGRA aGEO RA4.06 France 01 aDEW 310-319 aDEW 350-35402094nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200003800160210006500198326001100263430005100274440005000325607006400375607003900439710005500478856012600533856012600659856012600785856012600911856012601037856012601163856013101289856012601420955005501546991003301601992002201634992001201656992001601668037481703000000322620130319051057.0 a0150-8830 aFNSP102567 a0000003226 a19900102b18781899 ba0 afre aFR ar aaka 10aAnnuaire statistique de la France aPariscMinistère de l'agriculture et du commerced1878-1899 aAnnuel 1tStatistique de la France. Statistique annuelle 1aAnnuaire statistique (Paris, 1901)x0150-8822 aFrancexConditions économiquesxStatistiquesxPériodiques aFrancexStatistiquesxPériodiques02aFrancebMinistère de l'agriculture et du commerce4 uhttp://gallica.bnf.fr/ark:/12148/bpt6k5505170r.imagezAccès libre au texte intégral. Vol. (1878) numérisé sur Gallica4 uhttp://gallica.bnf.fr/ark:/12148/bpt6k5500662c.imagezAccès libre au texte intégral. Vol. (1880) numérisé sur Gallica4 uhttp://gallica.bnf.fr/ark:/12148/bpt6k5505253k.imagezAccès libre au texte intégral. Vol. (1881) numérisé sur Gallica4 uhttp://gallica.bnf.fr/ark:/12148/bpt6k5505415k.imagezAccès libre au texte intégral. Vol. (1884) numérisé sur Gallica4 uhttp://gallica.bnf.fr/ark:/12148/bpt6k55029836.imagezAccès libre au texte intégral. Vol. (1890) numérisé sur Gallica4 uhttp://gallica.bnf.fr/ark:/12148/bpt6k55042464.imagezAccès libre au texte intégral. Vol. (1891) numérisé sur Gallica4 uhttp://gallica.bnf.fr/ark:/12148/bpt6k5503236f.imagezAccès libre au texte intégral. Vol. (1892-1894) numérisé sur Gallica4 uhttp://gallica.bnf.fr/ark:/12148/bpt6k5509059m.imagezAccès libre au texte intégral. Vol. (1899) numérisé sur Gallica1 b(1878) -(1899)cParisdMagasins/AnnexeeCOL4°0003 anumer0 (complément gallica) aGEO RA4.06 France aDEW 944 aDEW 310-31901461nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200014700160210007700307210008700384300012300471326001100594430005000605607006400655607003900719710007800758856008900836955005500925955007200980972000901052992002201061992001201083992001601095045233047000000322020130319051057.01 a0066-3654 aFNSP102554 a0000003220 a19900102b19532007 ba0 afre aFR ar aaka 10aAnnuaire statistique de la FrancefInstitut national de la statistique et des études économiques pour la métropole et la France d'Outre-mer aPariscImprimerie nationalecPresses universitaires de Franced1953-2007 aaPariscInstitut national de la statistique et des études économiquesd1966-2007 aA partir de l'édition de 2008, l'ensemble des informations sera uniquement disponible sur le site internet de l'Insee aAnnuel 1aAnnuaire statistique (Paris, 1901)x0150-8822 aFrancexConditions économiquesxStatistiquesxPériodiques aFrancexStatistiquesxPériodiques02aInstitut national de la statistique et des études économiquesc(France)4 uhttp://www.insee.fr/fr/publications-et-services/sommaire.asp?codesage=ASF08&nivgeo=01 b(1980) -(2007)cParisdMagasins/AnnexeeP 4° 54411 b(1953) -(1959) ; (1961) -(1979)cParisdMagasins/AnnexeeCOL4°0003 aZPAY aGEO RA4.06 France aDEW 944 aDEW 310-31901025nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321050018001392000039001572070025001962100046002213260011002674300115002786060051003937100037004448010013004818560103004949550055005979720009006529920022006619920012006839920016006950000072556000007255620130412120927.01 a0291-848X aFNSP333059 a0000072556 a19900101a1981 fre 0 afre aFR a z b 10aAnnuaire statistique de la justice 1a1978 publié en 1981 aPariscLa Documentation françaised1981- aAnnuel 1aCompte général de l'Administration de la justice criminelle et de la justice civile et commercialx0291-8528 aStatistiques judiciairesyFrancexPériodiques aFrancebMinistère de la justice 0aFRbFNSP4 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtmlzAccés au texte intégral depuis 20061 b(1978) -(2007)cParisdMagasins/AnnexeeP 4° 4584 aZPAY aGEO RA4.06 France aDEW 347 aDEW 310-31901063nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000039001552100030001943260011002246070043002356760008002787100094002868560090003809550062004709550099005329550053006319720009006849920026006939920014007199920016007330000080485000008048520130319051057.01 a0076-1575 aFNSP358366 a0000080485 a19900101a19559999 ba0 afre aLU aaka 10aAnnuaire statistique du Luxembourg aLuxembourgcSTATECd1955- aAnnuel aLuxembourgxStatistiquesxPériodiques a31402aLuxembourgc(Grand-duché)bService central de la statistique et des études économiques4 uhttp://www.statistiques.public.lu/fr/publications/series/annuaire-stat-lux/index.html1 bLa dernière annéecParisd27, Salle 1er étageeDEW 3141 b(1955) ; (1960) ; (1965) ; (1968) -(1973) ; (1975) -(1979)cParisdMagasins/AnnexeeCOL.F.02331 b(1980) -....cParisdMagasins/annexeeP 4° 5705 aZGRA aGEO RA4.05 Luxembourg aDEW 949.3 aDEW 310-31900932nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003900163210003000202326001100232606003800243606002900281607004100310710005500351801001300406856006000419856002200479955005500501972000900556992002500565992001600590073877069000048221820130319051058.01 a1638-3931 a0000482218 a b20022007k fre ba0 afre aFR a 0  ar aak z 0 10aAnnuaire stratégique et militaire aPariscO.Jacobd2002-2007 aAnnuel aPolitique militairexPériodiques aStratégiexPériodiques aFrancexForces arméesxPériodiques aFondation pour la recherche stratégiquec(France) 0aFRbFNSP4 uhttp://www.frstrategie.org/barreFRS/publications/fonds/ zsommaire en ligne1 b(2002) -(2007)cParisdMagasins/AnnexeeP 8° 6642 aZCAD aGEO RA4.06 France 01 aDEW 355-35901297nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116106000600123110001600129200003400145210002400179326001100203430004400214452006500258530004200323607004800365710004800413856022300461955007300684955011600757972000900873991001800882992003100900992001200931992001600943038855259000008257820140103111228.01 a0072-5730 aFNSP368370 a19900101a19489999 ba0 aeng aGB ar aaka 10aAnnual abstract of statistics aLondoncHMSOd1948- aAnnuel 1aStatistical abstract for United Kingdom 1tAnnual abstract of statistics (London. Online)‎x2040-163910aAnnual abstract of statisticsbLondon aGrande-BretagnexStatistiquesxPériodiques01aGrande-BretagnebCentral Statistical Office4 uhttp://www.ons.gov.uk/ons/search/index.html?newquery=annual+abstract+of+statistics&newoffset=0&pageSize=50&content-type=Book&sortBy=none&sortDirection=none&applyFilters=truezAccès libre au texte intégral depuis 20021 bvol. 116 (1980) -vol. 138 (2002)cParisdMagasins/AnnexeeP 4° 55261 bvol. 84 (1935-1946) ; vol. 88 (1938-1950) ; vol. 91 (1954) -vol. 115 (1979)cParisdMagasins/AnnexeeCOL4°0244 aZPAY aexempb201312 aGEO RA4.02 Grande-Bretagne aDEW 941 aDEW 310-31900921nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000074001552100050002293260011002794300075002906070040003657100040004058560048004459550070004939720009005639920027005729920016005999920016006150000157217000015721720130319051058.01 a1013-6061 aFNSP609977 a0000157217 a19900101a19859999 ba0 aeng aMU aaka 10aAnnual digest of statistics - Central Statistical Office (Port-Louis) aPort LouiscCentral Statistical Officed1985- aAnnuel 1aBi-annual digest of statistics - Central Statistical Officex0025-6056 aMauricexStatistiquesxPériodiques aMauricebCentral Statistical Office4 uhttp://www.gov.mu/portal/goc/cso/list_1.htm1 bvol. 30 (1985)- vol.51 (2006)cParisdMagasins/AnnexeeP 4° 3930 aZGRA aGEO RF4.03 Ile Maurice aDEW 966-969 aDEW 310-31901049nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000055001552100048002103260011002585300055002696010045003246060043003696070058004127120031004708010021005018560033005228560036005559550055005919720009006469920030006559920014006859920012006990000124814000012481420131114135905.01 a0081-2528 aFNSP511346 a0000124814 a19900101a19219999 ba0 aeng aZA aaku 10aAnnual economic reportfSouth African Reserve Bank aPretoriacSouth African Reserve Bankd1921- aAnnuel00aAnnual economic report. South African Reserve Bank02aSouth African Reserve BankxPériodiques aFinancesyAfrique du SudxPériodiques aAfrique du SudxConditions économiquesxPériodiques02aSouth African Reserve Bank 3aFRbCCN0081-25284 uhttp://www.reservebank.co.za zAccès libre au texte intégral1 b(2002) -(2006)cParisdMagasins/AnnexeeP 4° 6998 aZGRA aGEO RF3.19 Afrique du Sud aDEW 330.9 aDEW 33200953nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000111001502100047002613260011003086010045003196060043003646070058004077100031004658010013004968560033005098560036005429550005005789920030005839920014006139920012006270001125224000112522420130319051058.0 a0001125224 a a19969999k fre 01 ba0 aeng aZA ar aak z  adr 10aAnnual economic report. South African Reserve Bankb[Ressource électronique] /fSouth African Reserve Bank aPretoriacSouth African Reserve Bankd1996 aAnnuel02aSouth African Reserve BankxPériodiques aFinancesyAfrique du SudxPériodiques aAfrique du SudxConditions économiquesxPériodiques02aSouth African Reserve Bank 0aFRbFNSP4 uhttp://www.reservebank.co.za zAccès libre au texte intégral1 r aGEO RF3.19 Afrique du Sud aDEW 330.9 aDEW 33201308nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011620000250012321000460014832600110019443701130020545201450031853000460046360600560050960600580056560600520062371000500067580100210072585600890074695500570083597200090089299100180090199200230091999200160094299200120095803970369X000007003320140108104947.01 a0740-3909 aFNSP322923 a19900101a19829999 ba0 aeng aUS10aAnnual energy review aaWashington, D.C‎cThe Office‎d1982- aAnnuel 1aAnnual report to Congress - United States Department of Energy, Energy Information Administrationx0161-5807 1tAnnual energy review (Energy Information Administration, Office of Energy Markets and End Use, U.S. Dept. of Energy. Online), ISSN 2157-7684 aAnnual energy review‎bWashington, D.C. aRessources énergétiquesyEtats-UnisxPériodiques aRessources énergétiquesxStatistiquesxPériodiques aEnergiexConsommationyEtats-UnisxPériodiques02aEtats-UnisbEnergy Information Administration 3aFRbCCN0740-39094 uhttp://www.eia.doe.gov/emeu/aer/overview.htmlzAccés au texte intégral depuis 19951 b(1983) -(2007)cParisdMagasins/Annexes:eP 4° 6376 aZPAY aexempb201401 aGEO RC2 Etats-Unis aDEW 310-319 aDEW 33301400cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118105001800125106000600143110001600149200003400165210003400199430010700233452004600340517003300386517004200419517004800461530004300509601003500552606003500587607005000622711006100672801003000733801002300763802000700786856010500793955005500898991001800953992001200971992001900983118098594000124537520131217154955.01 a1914-5691 aissn19145691 a20071003a19949999uuuy0frey50 ba0 amul aCA ay  ar azku uu 10aAnnual reportfBank of Canada aOttawacBank of Canadad1994- 1tAnnual report of the Governor to the Minister of Finance and statement of accounts (Print),x0067-3587 1tAnnual report (Bank of Canada)x1487-045210aBank of Canada annual report10aRapport annuel de la Banque du Canada10aRapport annuel (Banque du Canada. Imprimé)10aAnnual reportb(Bank of Canada. Print)02aBanque du CanadaxPériodiques aFinancesyCanadaxPériodiques aCanadaxConditions économiquesxPériodiques02aBanque des règlements internationauxxPériodiques4070 3aFRbAbesc20080516gAFNOR 3aFRbISSNc20080429 a044 uhttp://www.banqueducanada.ca/fr/annuel/index.htmlzAccès libre au texte intégral à partir de 19961 b(1994) -(1995)cParisdMagasins/AnnexeeP 4° 5791 aexempb201312 aDEW 332 aGEO RC1 Canada01119nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004400139210004300183326001100226452009000237530004200327601004000369606003400409607004900443710002600492856007500518955005500593955005500648972000900703991001800712991001800730992002100748992001200769039657787000007178320140108162705.01 a0577-0653 aFNSP328536 a19900101a19689999 ba0 aeng aMT aaka 10aAnnual report‎fCentral Bank of Malta aVallettacCentral Bank of Maltad1968- aAnnuel 1tAnnual report and statement of accounts (Central Bank of Malta. Online)‎x1811-126210aAnnual report - Central Bank of Malta02aCentral Bank of MaltaxPériodiques aFinancesyMaltexPériodiques aMaltexConditions économiquesxPériodiques02aCentral Bank of Malta 4uhttp://www.centralbankmalta.orgzAccés au texte intégral depuis 19981 b(1993) -(2005)cParisdMagasins/AnnexeeP 4° 63541 b(1975) -(1992)cParisdMagasins/AnnexeeP 8° 3792 aZGRA aexempb201203 aexempb201401 aGEO RA6.04 Malte aDEW 33201030nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003500139210003700174300004700211326001100258430004200269530003600311601003200347606003700379712001800416856009700434955005500531955005500586972000900641991001800650992002400668992001200692036642150000021767420130529140243.01 a1239-9345 aFNSP783201 a19900101a19979999 ba0 aeng aFI aaka 10aAnnual reportfBank of Finland aHelsinkicBank of Finlandd1997- aEn version électronique à partir de 2006 aAnnuel 1aYearbook - Bank of Finlandx0081-946800aAnnual report - Bank of Finland02aSuomen PankkixPériodiques aFinancesyFinlandexPériodiques02aSuomen Pankki4 uhttp://www.bof.fi/en/julkaisut/index.htmzzAccès libre au texte intégral à partir de 19971 b(1999) -(2005)cParisdMagasins/AnnexeeP 4° 68541 b(1996) -(1998)cParisdMagasins/AnnexeeP 8° 5353 aZGRA aexempb201302 aGEO RA3.01 Finlande aDEW 33200843nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000080001502100037002302300024002673260011002916010032003026060037003347100018003718010013003898560045004028560053004479550005005009920024005059920012005290001134966000113496620130319051058.0 a0001134966 a a19979999k fre 01 ba0 aeng aFI ar aak z  adr 10aAnnual report - Bank of Finlandb[Ressource électronique]fBank of Finland aHelsinkicBank of Finlandd1997- aRevue électronique aAnnuel02aSuomen PankkixPériodiques aFinancesyFinlandexPériodiques02aSuomen Pankki 0aFRbFNSP4 uhttp://www.bof.fi/en/julkaisut/index.htm zContenu : texte intégral du rapport depuis 19971 r aGEO RA3.01 Finlande aDEW 33200946nas 2200289 i 450 002001100000005001700011011001400028035001500042100004100057101000800098102000700106110001600113200003300129210003200162300004700194326001100241601003200252606003400284607004900318710001800367856013300385955007800518972000900596991001800605992002100623992001200644000010758420131213125128.01 a0855-0972 aFNSP455785 a19900101a00019999 ba0 aeng aGH aaka 10aAnnual reportfBank of Ghana aAccracBank of Ghanad0001- aEn version électronique à partir de 2003 aAnnuel02aBank of GhanaxPériodiques aFinancesyGhanaxPériodiques aGhanaxConditions économiquesxPériodiques02aBank of Ghana4 uhttp://www.bog.gov.gh/index.php?option=com_content&view=article&id=113&Itemid=172zAccès texte intégral du rapport depuis 20041 b(1981/1982) ; (1986) ; (1992) -(2002)cParisdMagasins/AnnexeeP 4° 5406 aZGRA aexempb201312 aGEO RF1.15 Ghana aDEW 33201044nas 2200313 i 450 002001100000005001700011035001500028100004100043101000800084102000700092110001600099200003400115210003400149300004700183326001100230430006000241601003300301606003500334607005000369710002500419830005200444856010300496955005600599972000900655991001800664992002200682992001200704992001400716000025049420140117162654.0 aFNSP875837 a19900101a19969999 ba0 aeng aGR aaka 10aAnnual reportfBank of Greece aAthenscBank of Greeced1996- aEn version électronique à partir de 2006 aAnnuel 1aReport of Governor... for the year ... - Bank of Greece02aBank of GreecexPériodiques aFinancesyGrècexPériodiques aGrècexConditions économiquesxPériodiques02aTrapeza tès Ellados aC'est bien la banque centrale du pays (Martine)4 uhttp://www.bankofgreece.gr/en/publications/report.htmzAccès libre au texte intégral depuis 19981 b(1995) -(2005);cParisdMagasins/AnnexeeP 4° 6767 aZGRA aexempb201401 aGEO RA6.05 Grèce aDEW 332 aDEW 330.900943nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000078001502100034002282300024002623260011002866010033002976060035003306070050003657100025004158010013004408560058004538560053005119550005005649920022005699920012005919920014006030001131333000113133320130319051058.0 a0001131333 a a19989999k fre 01 ba0 aeng aGR ar aak z  adr 10aAnnual report - Bank of Greeceb[Ressource électronique]fBank of Greece aAthenscBank of Greeced1998- aRevue électronique aAnnuel02aBank of GreecexPériodiques aFinancesyGrècexPériodiques aGrècexConditions économiquesxPériodiques02aTrapeza tès Ellados 0aFRbFNSP4 uhttp://www.bankofgreece.gr/en/publications/report.htm zContenu : texte intégral du rapport depuis 19981 r aGEO RA6.05 Grèce aDEW 332 aDEW 330.901335nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210003700188300005000225300007500275300006900350326001100419601003300430606003600463607005100499710001900550856006500569856004800634955007200682955005500754955006400809972000900873991001800882992002300900992001200923992001400935038842416000006179320130319051058.01 a0067-365X aFNSP282320 a0000061793 a19900101a19559999 ba0 aeng aIL aaka 10aAnnual reportfBank of Israel aJerusalemcBank of Israeld1955- aA partir de 2001, publication en 6 fascicules aL'année 2004 se trouve uniquement sur le site (pas de version papier) a2006 dernière éd. papier voir ensuite en version électronique aAnnuel02aBank of IsraelxPériodiques aFinancesyIsraëlxPériodiques aIsraëlxConditions économiquesxPériodiques02aBank of Israel4 uhttp://www.bankisrael.gov.il/publeng/publeslf.php?misg_id=124 zContenu : texte intégral à partir de 19971 b(1996) -(1999) ; (2001) -(2006)cParisdMagasins/AnnexeeP 4° 67211 b(1980) -(1995)cParisdMagasins/AnnexeeP 8° 53341 b(1962) ; (1965) -(1979)cParisdMagasins/AnnexeeCOL8°0399 aZGRA aexempb201109 aGEO RG2.15 Israël aDEW 332 aDEW 330.900945nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000078001502100037002282300024002653260011002896010033003006060036003336070051003697100019004208010013004398560065004528560048005179550005005659920023005709920012005939920014006050001113928000111392820130319051058.0 a0001113928 a a19979999k fre 01 ba0 aeng aIL ar aak z  adr 10aAnnual report - Bank of Israelb[Ressource électronique]fBank of Israel aJerusalemcBank of Israeld1997- aRevue électronique aAnnuel02aBank of IsraelxPériodiques aFinancesyIsraëlxPériodiques aIsraëlxConditions économiquesxPériodiques02aBank of Israel 0aFRbFNSP4 uhttp://www.bankisrael.gov.il/publeng/publeslf.php?misg_id=12 zContenu : texte intégral à partir de 19971 r aGEO RG2.15 Israël aDEW 332 aDEW 330.900957nas 2200289 i 450 002001100000005001700011035001500028100004100043101000800084102000700092110001600099200003700115210004100152300004700193326001100240601003600251606003600287607005100323710002200374856009300396955005500489955005500544972000900599991001800608992002700626992001400653000005038320131021131214.0 aFNSP246967 a19900101a19689999 ba0 aeng aMU aaka 10aAnnual reportfBank of Mauritius aPort LouiscBank of Mauritiusd1968- aEn version électronique à partir de 2006 aAnnuel02aBank of MauritiusxPériodiques aFinancesyMauricexPériodiques aMauricexConditions économiquesxPériodiques02aBank of Mauritius uhttps://www.bom.mu/?id=40498&Archive=YzAccès libre au texte intégral depuis 1998/19991 b(1992) -(2005)cParisdMagasins/AnnexeeP 4° 63711 b(1986) -(1991)cParisdMagasins/AnnexeeP 8° 5170 aZGRA aexempb201010 aGEO RF4.03 Ile Maurice aDEW 330.900948nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000085001502100046002352300024002813260011003056010036003166060036003526070051003887100022004398010013004618560026004748560058005009550005005589910018005639920027005819920014006080001133459000113345920140106115744.0 a0001133459 a a19989999k fre 01 ba0 aeng aMU ar aak z  adr 10aAnnual report - Bank of Mauritiusb[Ressource électronique] /fBank of Mauritius aPort LouiscBank of Mauritiusd1998/1999- aRevue électronique aAnnuel01aBank of MauritiusxPériodiques aFinancesyMauricexPériodiques aMauricexConditions économiquesxPériodiques02aBank of Mauritius 0aFRbFNSP4 uhttp://bom.intnet.mu/ zContenu : texte intégral du rapport depuis 1998/19991 r aexempb201401 aGEO RF4.03 Ile Maurice aDEW 330.901083nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006800139210005200207326001100259530006900270601005500339606005100394710004100445856005700486856005400543955005500597955005500652972000900707991001800716992002300734992001200757039142221000005037620130527171449.01 a0190-6313 aFNSP246957 a19900101a19139999 ba0 aeng aUS aaka 10aAnnual reportfBoard of Governors of the Federal Reserve System aWashington, D.C.cFederal Reserve Systemd1913- aAnnuel00aAnnual report - Board of Governors of the Federal Reserve System02aFederal Reserve Systemc(Etats-Unis)xPériodiques aPolitique monétaireyEtats-UnisxPériodiques02aFederal Reserve Systemc(Etats-Unis)4 uhttp://www.federalreserve.gov/boarddocs/RptCongress/ zAccès libre au texte intégral à partir de 19941 b(1980) -(1993)cParisdMagasins/AnnexeeP 8° 52231 b(1975) -(1979)cParisdMagasins/AnnexeeCOL8°0010 aZGRA aexempb201304 aGEO RC2 Etats-Unis aDEW 33201220nas 2200325 i 450 002001100000005001700011100004100028101000800069102000700077105001800084106000600102110001600108200005100124210003600175326001100211437008600222517006500308606005100373606005400424606004000478607006600518710004800584801001300632830004500645856010000690955005600790972000900846992001600855992002300871000068028020140108101059.0 a a20029999 a fre 01 ba0 aeng aUS a 0  ar aak z 0 10aAnnual reportfBureau of Industry and Security aLanham, MdcBernan Pressd2002- aAnnuel 1tExport Administration annual report...and...Report on foreign policy export contr10aBureau of Industry and Security annual report fiscal year... aSécurité nationaleyEtats-UnisxPériodiques aExportationsxContrôleyEtats-UnisxPériodiques aIndustrieyEtats-UnisxPériodiques aEtats-UnisxRelations économiques extérieuresxPériodiques01aEtats-UnisbBureau of Industry and Security 0aFRbFNSP aNotice à désactiver car coll. à jeter4 uhttp://www.bis.doc.gov/news/indexnewsarchives.htmlzAccès libre au texte intégral depuis 19961 b(2002) -(2006);cParisdMagasins/AnnexeeP 4° 6145 aZPAY aDEW 380-382 aGEO RC2 Etats-Unis00882nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004400139210004800183326001100231530004500242601004300287606003600330710002900366856008000395955005500475972000900530991001800539992002300557992001200580039384012000001132820140108163928.01 a0304-6796 aFNSP124463 a19900803a19729999 ba0 aeng aZW aaka 10aAnnual reportfCentral Bank of Barbados aBridgetowncCentral Bank of Barbadosd1972- aAnnuel10aAnnual report - Central Bank of Barbados02aCentral Bank of BarbadosxPériodiques aFinancesyBarbadexPériodiques02aCentral Bank of Barbados4 uhttp://www.centralbank.org.bb/zAccés libre au texte intégral depuis 20011 b(1988) -(2000)cParisdMagasins/AnnexeeP 4° 5933 aZGRA aexempb201312 aGEO RD3.12 Barbade aDEW 33200875nls 2200289 i 450 002001100000005001700011035001500028100004100043101000800084102000700092106000600099110001600105135001800121200009700139210004800236230002400284326001100308601004300319606003600362710002900398801001300427856003500440856007000475955000500545992002300550992001200573000111186520131122133114.0 a0001111865 a a20019999k fre 01 ba0 aeng aZW ar aak z  adr 10aAnnual report - Central Bank of Barbadosb[Ressource electronique]fCentral Bank of Barbados aBridgetowncCentral Bank of Barbadosd2001- aRevue électronique aAnnuel02aCentral Bank of BarbadosxPériodiques aFinancesyBarbadexPériodiques02aCentral Bank of Barbados 0aFRbFNSP4 uhttp://www.centralbank.org.bb/ zContenu : texte intégral du dernier rapport en ligne depuis 20011 r aGEO RD3.12 Barbade aDEW 33201032nas 2200313 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101110001600108200004100124210004400165326001100209451005400220530004300274601004100317606003400358607004900392710002700441856011700468955005900585972000900644991001800653992002100671992001200692992001400704039678970000009320720140106123710.01 a0716-2901 a19900101a19269999 ba0 aeng aCL aaka 10aAnnual reportfCentral Bank of Chile aSantiagocBanco central de Chiled1926- aAnnuel 1aMemoria anual - Banco central de Chilex0716-244810aAnnual report - Banco Central de Chile02aBanco central de ChilexPériodiques aFinancesyChilixPériodiques aChilixConditions économiquesxPériodiques02aBanco central de Chile4 uhttp://www.bcentral.cl/eng/publications/norms/bcch05.htmzAccès libre au texte intégral du rapport depuis 19981 b(1986) -(1997)cParisdMagasins/AnnexeeP 4° 5641 bis aZGRA aexempb201312 aGEO RD4.14 Chili aDEW 332 aDEW 330.900891nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000069001502100044002192300024002633260011002876010041002986060034003396070049003737100027004228010013004498560106004629920021005689920012005890001135755000113575520130405111414.0 a0001135755 a a19989999k fre 01 ba0 aeng aCL ar aak z  adr 10aAnnual report - Central Bank of Chileb[Ressource électronique] aSantiagocBanco central de Chiled1998- aRevue électronique aAnnuel02aBanco central de ChilexPériodiques aFinancesyChilixPériodiques aChilixConditions économiquesxPériodiques02aBanco central de Chile 0aFRbFNSP4 uhttp://www.bcentral.cl/eng/publications/norms/bcch05.htmzAccès libre au texte intégral depuis 1998 aGEO RD4.14 Chili aDEW 33201070nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000041001552100041001963000047002373260011002846010040002956060035003356070050003707100035004208560051004558560053005069550055005599550055006149720009006699910018006789920022006969920014007180000046449000004644920130319051058.01 a1017-9674 aFNSP236950 a0000046449 a19900101a19619999 ba0 aeng aCN aaka 10aAnnual reportfCentral Bank of China aTaipeicCentral Bank of Chinad1961- aEn version électronique à partir de 2003 aAnnuel02aCentral Bank of ChinaxPériodiques aFinancesyTaiwanxPériodiques aTaiwanxConditions économiquesxPériodiques02aCentral Bank of China (Taiwan)4 uhttp://www.cbc.gov.tw/EngHome/publications.asp4 zContenu : texte intégral du rapport depuis 19991 b(1984) -(1996)cParisdMagasins/AnnexeeP 8° 48711 b(1997) -(2002)cParisdMagasins/AnnexeeP 4° 6868 aZGRA aexempb201002 aGEO RI3.02 Taiwan aDEW 330.900950nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000092001502100041002422300024002833260011003076010040003186060035003586070050003937100035004438010013004788560051004918560053005429550005005959920022006009920014006220001135273000113527320130319051058.0 a0001135273 a a19999999k fre 01 ba0 aeng aCN ar aak z  adr 10aAnnual report - Central Bank of Chinab[Ressource électronique]fCentral Bank of China aTaipeicCentral Bank of Chinad1999- aRevue électronique aAnnuel02aCentral Bank of ChinaxPériodiques aFinancesyTaiwanxPériodiques aTaiwanxConditions économiquesxPériodiques02aCentral Bank of China (Taiwan) 0aFRbFNSP4 uhttp://www.cbc.gov.tw/EngHome/publications.asp zContenu : texte intégral du rapport depuis 19991 r aGEO RI3.02 Taiwan aDEW 330.900975nas 2200313 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000043001412100043001843000047002273260011002746010041002856060035003266070050003617120027004118560058004388560053004969550055005499720009006049920022006139920014006359920012006490000068703000006870320130319051058.0 aFNSP317217 a0000068703 a19900101a19649999 ba0 aeng aCY aaka 10aAnnual report - Central Bank of Cyprus aNicosiacCentral Bank of Cyprusd1964- aEn version électronique à partir de 2004 aAnnuel02aCentral Bank of CyprusxPériodiques aFinancesyChyprexPériodiques aChyprexConditions économiquesxPériodiques02aCentral Bank of Cyprus4 uhttp://www.centralbank.gov.cy/nqcontent.cfm?a_id=25924 zContenu : texte intégral du rapport depuis 20011 b(1967) -(2003)cParisdMagasins/AnnexeeP 4° 3731 aZGRA aGEO RA6.07 Chypre aDEW 330.9 aDEW 33200978nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000094001502100043002442300024002873260011003116010041003226060035003636070050003987100027004488010013004758560058004888560053005469550005005999920022006049920012006269920014006380001135047000113504720130319051058.0 a0001135047 a a20019999k fre 01 ba0 aeng aCY ar aak z  adr 10aAnnual report - Central Bank of Cyprusb[Ressource électronique]fCentral Bank of Cyprus aNicosiacCentral Bank of Cyprusd2001- aRevue électronique aAnnuel02aCentral Bank of CyprusxPériodiques aFinancesyChyprexPériodiques aChyprexConditions économiquesxPériodiques02aCentral Bank of Cyprus 0aFRbFNSP4 uhttp://www.centralbank.gov.cy/nqcontent.cfm?a_id=2592 zContenu : texte intégral du rapport depuis 20011 r aGEO RA6.07 Chypre aDEW 332 aDEW 330.901111nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210004200195300004700237326001100284430008900295530004200384601004100426606003500467607005000502710002600552856004300578955006500621972000900686991001800695992002200713992001400735992001200749039301915000016015020130319051058.01 a0258-8706 aFNSP617402 a0000160150 a19900101a00019999 ba0 aeng aEG aaka 10aAnnual reportfCentral Bank of Egypt aCairocCentral Bank of Egyptdd1976- aEn version électronique à partir de 2005 aAnnuel 1aReport of the Board of directors for the year... - Central Bank of Egypt (1012-5604)00aAnnual report - Central Bank of Egypt02aNational Bank of EgyptxPériodiques aFinancesyEgyptexPériodiques aEgyptexConditions économiquesxPériodiques02aCentral Bank of Egypt4 uhttp://www.cbe.org.eg/Publications.htm1 b(1993/1994) -(2003/2004)cParisdMagasins/AnnexeeP 8° 6134 aZGRA aexempb201211 aGEO RG1.16 Egypte aDEW 330.9 aDEW 33200968nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000093001502100045002432300024002883260011003126010041003236060035003646070050003997100026004498010013004758560043004888560058005319550005005899920022005949920014006169920012006300001133702000113370220130319051058.0 a0001133702 a a20029999k fre 01 ba0 aeng aEG ar aak z  adr 10aAnnual report - Central Bank of Egyptb[Ressource électronique] /fCentral Bank of Egypt aCairocCentral Bank of Egyptd2002/2003- aRevue électronique aAnnuel02aNational Bank of EgyptxPériodiques aFinancesyEgyptexPériodiques aEgyptexConditions économiquesxPériodiques02aCentral Bank of Egypt 0aFRbFNSP4 uhttp://www.cbe.org.eg/Publications.htm zContenu : texte intégral du rapport depuis 2002/20031 r aGEO RG1.16 Egypte aDEW 330.9 aDEW 33200975nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000096001502100043002462300024002893260011003136010042003246060036003666070051004027100028004538010013004818560048004948560053005429550005005959920023006009920012006239920014006350001134320000113432020130319051058.0 a0001134320 a a19999999k fre 01 ba0 aeng aIE ar aak z  adr 10aAnnual report - Central Bank of Irelandb[Ressource électronique]fCentral Bank of Ireland aDublincCentral Bank of Irelandd1999- aRevue électronique aAnnuel02aCentral Bank of IrelandxPériodiques aFinancesyIrlandexPériodiques aIrlandexConditions économiquesxPériodiques02aCentral Bank of Ireland 0aFRbFNSP4 uhttp://www.centralbank.ie/publications.html zContenu : texte intégral du rapport depuis 19991 r aGEO RA4.01 Irlande aDEW 332 aDEW 330.901031nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004200139210004100181326001100222530004300233601004100276606003700317607005200354712002700406856006800433955007200501955005500573972000900628991001800637992002400655992001200679992001400691038846004000005038120140110153614.01 a0069-1550 aFNSP246965 a19900101a00019999 ba0 aeng aJO aaka 10aAnnual reportfCentral Bank of Jordan aAmmancCentral Bank of Jordand1964- aAnnuel10aAnnual report - Central Bank of Jordan02aCentral Bank of JordanxPériodiques aFinancesyJordaniexPériodiques aJordaniexConditions économiquesxPériodiques02aCentral Bank of Jordan4 uhttp://www.cbj.gov.jo/zAccès libre au dernier rapport publié1 b(1982) -(1989) ; (1993) -(1998)cParisdMagasins/AnnexeeP 8° 51351 b(1999) -(2003)cParisdMagasins/AnnexeeP 4° 6877 aZGRA aexempb201011 aGEO RG2.12 Jordanie aDEW 332 aDEW 330.900946nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000094001502100041002442300024002853260011003096010041003206060037003616070052003987100027004508010013004778560027004908560048005179550005005659920024005709920012005949920014006060001134611000113461120130319051058.0 a0001134611 a a20049999k fre 01 ba0 aeng aJO ar aak z  adr 10aAnnual report - Central Bank of Jordanb[Ressource électronique]fCentral Bank of Jordan aAmmancCentral Bank of Jordand2004- aRevue électronique aAnnuel02aCentral Bank of JordanxPériodiques aFinancesyJordaniexPériodiques aJordaniexConditions économiquesxPériodiques02aCentral Bank of Jordan 0aFRbFNSP4 uhttp://www.cbj.gov.jo/ zContenu : texte du dernier rapport en ligne1 r aGEO RG2.12 Jordanie aDEW 332 aDEW 330.900960nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000096001502100043002462300024002893260011003136010042003246060036003666070051004027100028004538010013004818560059004948560053005539550005006069920023006119920012006340001137477000113747720130319051058.0 a0001137477 a a20039999k fre 01 ba0 aeng aLS ar aak z  adr 10aAnnual report - Central Bank of Lesothob[Ressource électronique]fCentral Bank of Lesotho aMaserucCentral Bank of Lesothod2003- aRevue électronique aAnnuel02aCentral Bank of LesothoxPériodiques aFinancesyLesothoxPériodiques aLesothoxConditions économiquesxPériodiques02aCentral Bank of Lesotho 0aFRbFNSP4 uhttp://www.centralbank.org.ls/publications/default.htm zContenu : texte intégral du rapport depuis 20031 r aGEO RF3.13 Lesotho aDEW 33200926nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000092001502100043002422300024002853260011003096010040003206060034003606070049003947100026004438010013004698560036004828560056005189550005005749920021005799920012006000001133374000113337420130319051058.0 a0001133374 a a19989999k fre 01 ba0 aeng aMT ar aak z  adr 10aAnnual report - Central Bank of Maltab[Ressource électronique]fCentral Bank of Malta aVallettacCentral Bank of Maltad1998- aRevue électronique aAnnuel02aCentral Bank of MaltaxPériodiques aFinancesyMaltexPériodiques aMaltexConditions économiquesxPériodiques02aCentral Bank of Malta 0aFRbFNSP4 uhttp://www.centralbankmalta.org zContenu : texte intégral du rapport depuis de 19981 r aGEO RA6.04 Malte aDEW 33200928nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000100001502100046002502300024002963260011003206060038003316070064003697100030004338010013004638560055004768560053005319550005005849920025005899920012006140001173897000117389720130319051058.0 a0001173897 a a20059999k fre 01 ba0 aeng aLK ar aak z  adr 10aAnnual report - Central Bank of Sri Lankab[Ressource électronique]fCentral Bank of Sri Lanka aColombocCentral Bank of Sri Lankad2005- aRevue électronique aAnnuel aFinancesySri LankaxPériodiques aSri LankaxConditions économiquesz1948-....xPériodiques02aCentral Bank of Sri Lanka 0aFRbFNSP4 uhttp://www.cbsl.gov.lk/info/10_publication/p_1.htm4 zContenu : texte intégral du rapport depuis 20051 r aGEO RI1.16 Sri Lanka aDEW 33201011nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000112001502100051002622300024003133260011003376010050003486060040003986070055004387100036004938010013005298560058005428560053006009550005006539920027006589920012006850001137494000113749420130319051058.0 a0001137494 a a19999999k fre 01 ba0 aeng aPH ar aak z  adr 10aAnnual report - Central Bank of the Philippinesb[Ressource électronique]fCentral Bank of the Philippines aManilacCentral Bank of the Philippinesd1999- aRevue électronique aAnnuel02aCentral Bank of the PhilippinesxPériodiques aFinancesyPhilippinesxPériodiques aPhilippinesxConditions économiquesxPériodiques02aCentral Bank of the Philippines 0aFRbFNSP4 uhttp://www.bsp.gov.ph/publications/regular_annual.asp zContenu : Texte intégral du rapport depuis 19921 r aGEO RI2.14 Philippines aDEW 33201122nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005800139210005800197326001100255430006600266601005700332606003600389607005100425710004300476856008600519955005500605955005500660972000900715991001900724991001800743992002300761992001200784040147649000005522820140103144911.01 a1013-6193 aFNSP258980 a19900101a19699999 ba0 aeng aTR aaka 10aAnnual reportfCentral Bank of the Republic of Turkey aAnkaracCentral Bank of the Republic of Turkeyd1969- aAnnuel 1aRapport annuel - Banque centrale de la République de Turquie02aCentral Bank of the Republic of TurkeyxPériodiques aFinancesyTurquiexPériodiques aTurquiexConditions économiquesxPériodiques02aCentral Bank of the Republic of Turkey4 uhttp://www.tcmb.gov.tr/yeni/eng/index.htmlzAccès au texte intégral depuis 19961 b(1980) -(1995)cParisdMagasins/AnnexeeP 4° 55831 b(1962) -(1979)cParisdMagasins/AnnexeeCOL4°0487 aZGRA aPériobTP01 4 aexempb201312 aGEO RA6.06 Turquie aDEW 33201012nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000126001502100058002762300024003343260011003586010057003696060036004266070051004627100043005138010013005568560037005698560052006069550005006589920023006639920012006860001114519000111451920130319051058.0 a0001114519 a a19969999k fre 01 ba0 aeng aTR ar aak z  adr 10aAnnual report - Central Bank of the Republic of Turkeyb[Ressource électronique]fCentral Bank of the Republic of Turkey aAnkaracCentral Bank of the Republic of Turkeyd1996- aRevue électronique aAnnuel02aCentral Bank of the Republic of TurkeyxPériodiques aFinancesyTurquiexPériodiques aTurquiexConditions économiquesxPériodiques02aCentral Bank of the Republic of Turkey 0aFRbFNSP4 uhttp://www.tcmb.gov.tr/yeni/eng/ zContenu : accès au texte intégral depuis 19961 r aGEO RA6.06 Turquie aDEW 33201097nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000540013921000570019332600110025045200980026151700580035953000860041760600490050371000480055285601050060095500600070597200090076599200190077499200140079305798171X000010126420131218141427.01 a0382-1161 aFNSP435844 a19900101a19779999 ba0 amul aCA aaka 10aAnnual reportfCommissioner of Official Languages aOttawacApprovisionnements et services Canadad1977- aAnnuel 1ttAnnual report - Canada. Office of the Commissioner of Official Languages (Online)x1495-996810aRapport annuel - Commissariat aux langues officielles10aAnnual report - Canada. Office of the Commissioner of Official Languagesb(Print) aPolitique linguistiqueyCanadaxPériodiques02aCanadabCommissaire aux langues officielles4 uhttp://www.ocol-clo.gc.ca/html/reports_rapports_e.php#ARzAccés au texte intégral depuis 1999/20001 b(1991) -(2006/2007)cParisdMagasins/AnnexeeP 4° 6288 aZGRA aGEO RC1 Canada aDEW 42-4901169nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004100139210002600180326001100206452006200217530004400279601003700323610004800360710002300408856012300431955005500554955006900609955009900678972000900777991001800786992002400804992001500828039118940000009068020140103114556.01 a0169-0922 aFNSP399632 a19900101a18649999 ba0 aeng aNL aaka 10aAnnual reportfDe Nederlandsche Bank aAmsterdamcDNBd1864- aAnnuel 1tAnnual report (De Nederlandsche Bank. Online),x1573-978310aAnnual report‎bDe Nederlandsche Bank02aNederlandsche BankxPériodiques0 a* BanquesxRapportsyPays-BasxPériodiques02aNederlandsche Bank4 uhttp://www.dnb.nl/en/publications/dnb-publications/annual-report/index.jspzAccè libre au texte intégral depuis 19981 b(1980) -(1997)cParisdMagasins/AnnexeeP 4° 55391 b(1919) -(1939) ; (1944/1945)cParisdMagasins/AnnexeeCOL8°05121 b(1877) -(1894) ; (1941/1942) -(1943/1944) ; (1946) -(1979)cParisdMagasins/AnnexeeCOL4°0308 aZGRA aexempb201312 aGEO RA4.03 Pays-Bas aDEW 332.0600965nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010013000951020007001081060006001151100016001211350018001372000093001552100026002482300024002743260011002986010037003096060037003466070052003837100023004358010013004588560074004718560062005459550005006079920024006129920015006360001173821000117382120130319051058.0 a0001173821 a a19989999k fre 01 ba0 adutaeng aNL ar aak z  adr 10aAnnual report - De Nederlandsche Bankb[Ressource électronique] /fDe Nederlandsche Bank aAmsterdamcDNBd1998- aRevue électronique aAnnuel02aNederlandsche BankxPériodiques aFinancesyPays-BasxPériodiques aPays-BasxConditions économiquesxPériodiques02aNederlandsche Bank 0aFRbFNSP4 uhttp://www.dnb.nl/en/news-and-publications/dnb-publications/index.jsp4 zContenu : texte intégral du rapport en ligne depuis 19981 r aGEO RA4.03 Pays-Bas aDEW 332.0601113nas 2200349 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000040001552100050001953000047002453260011002924510073003036010038003766060038004146060050004526070053005027120024005558560029005798560036006089550059006449720009007039920025007129920014007379920012007510000128062000012806220130319051058.01 a0949-1090 aFNSP522342 a0000128062 a19940530a00019999 ba0 aeng aDE aaka 10aAnnual report - Deutsche Bundesbank aFrankfurt am MaincDeutsche Bundesbankd0001- aEn version électronique à partir de 2007 aAnnuel 1aGeschäsftbericht der Deutschen Bundesbank (0070-394X) < P 4°5471 >02aDeutsche BundesbankxPériodiques aFinancesyAllemagnexPériodiques aPolitique monétaireyAllemagnexPériodiques aAllemagnexConditions économiquesxPériodiques02aDeutsche Bundesbank4 uhttp://www.bundesbank.de zAccès libre au texte intégral1 b(1999) -(2006)cParisdMagasins/AnnexeeP 4° 5471 bis aZGRA aGEO RA5.01 Allemagne aDEW 330.9 aDEW 33201118nls 2200349 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000088001502100050002382300024002883260011003124510047003236010038003706060038004086060050004466070053004967100024005498010013005738560073005868560053006599550005007129920025007179920014007429920012007560001130232000113023220130319051058.0 a0001130232 a a19969999k fre 01 ba0 aeng aDE ar aak z  adr 10aAnnual report - Deutsche Bundesbankb[Ressource électronique]fDeutsche Bundesbank aFrankfurt am MaincDeutsche Bundesbankd1996- aRevue électronique aAnnuel 1tGeschäsftbericht der Deutschen Bundesbank02aDeutsche BundesbankxPériodiques aFinancesyAllemagnexPériodiques aPolitique monétaireyAllemagnexPériodiques aAllemagnexConditions économiquesxPériodiques02aDeutsche Bundesbank 0aFRbFNSP4 uhttp://www.bundesbank.de/volkswirtschaft/vo_geschaeftsbericht.en.php zContenu : texte intégral du rapport depuis 19961 r aGEO RA5.01 Allemagne aDEW 330.9 aDEW 33200881nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004800154210006000202300004000262326001100302530004800313606004000361712004400401856004400445955005400489972000900543992002300552992001600575160192463000007105720130319051058.01 a0145-7284 aFNSP325750 a0000071057 a19900101a19762006 ba0 aeng aUS aaka 10aAnnual report - Federal Election Commission aWashinton, D.C.cFederal Election Commissiond1976-2006 a2005 disponible uniquement en ligne aAnnuel00aAnnual report - Federal Election Commission aElectionsyEtats-UnisxPériodiques02aEtats-UnisbFederal Election Commission4 uhttp://www.fec.gov/pages/anreport.shtml1 b(1975)-(2006)cParisdMagasins/AnnexeeP 4° 4050 aZPAY aGEO RC2 Etats-Unis aDEW 324.6-900889nas 2200265 i 450 002001100000005001700011035001500028100004100043101000800084102000700092110001600099200005300115210002200168326001100190430005400201601006100255606004500316710004700361856009800408955005500506972000900561991001800570992002100588992001400609000013441720131017153541.0 aFNSP541708 a19940818a00019999 ba0 aeng aJP aaka 10aAnnual reportfInstitute of Developing Economies aTokyocIDEd0001- aAnnuel 1aOrganization - Insitute of Asian Economic Affairs02aInstitute of Developing Economiesc(Japon)xPériodiques aAide économique japonaisexPériodiques02aInstitute of Developing Economiesc(Japon)4 uhttp://www.ide.go.jp/English/Info/Profile/Nenpo/zAccés libre au texte intégral depuis 20031 b(1985) -(2002)cParisdMagasins/AnnexeeP 8° 6492 aZGRA aexempb201310 aGEO RI3.22 Japon aDEW 338.900984nas 2200277 i 450 002001100000005001700011035001500028100004100043101000800084102000700092110001600099200005100115210002600166300005200192326001100244606003800255606005000293710003600343830006300379856012100442955007900563972000900642991001800651992002500669992001200694000004788020131009152033.0 aFNSP241523 a19900101a00019999 ba0 aeng aSG aaka 10aAnnual reportfMonetary Authority of Singapore aSingaporecMASd0001- aEn version électronique à partir de 2000/2001 aAnnuel aFinancesySingapourxPériodiques aPolitique monétaireySingapourxPériodiques02aMonetary Authority of Singapore a1981/1982-1996/1997 : collection envoyée au CTles en 2013 uhttp://www.mas.gov.sg/About-MAS/Reporting/Annual-Reports.aspxzContenu : texte intégral du rapport depuis 1997/19981 b(1981/1982) ; (1983/1984) -(1996/1997)cParisdMagasins/AnnexeeP 4° 5332 aZGRA aexempb201307 aGEO RI2.15 Singapour aDEW 33200962nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000112001502100026002622300024002883260011003126060038003236060050003617100036004118010013004478560070004608560058005309550005005889910018005939920025006119920012006360001173896000117389620130627111322.0 a0001173896 a a19979999k fre 01 ba0 aeng aSG ar aak z  adr 10aAnnual report - Monetary Authority of Singaporeb[Ressource électronique]fMonetary Authority of Singapore aSingaporecMASd1997- aRevue électronique aAnnuel aFinancesySingapourxPériodiques aPolitique monétaireySingapourxPériodiques02aMonetary Authority of Singapore 0aFRbFNSP4 uhttp://www.mas.gov.sg/about_us/annual_reports/annual_reports.html4 zContenu : texte intégral du rapport depuis 1997/19981 r aexempb201306 aGEO RI2.15 Singapour aDEW 33200914nas 2200265 i 450 002001100000005001700011035001500028100004100043101000800084102000700092110001600099200004400115210004500159300004600204326001100250601004200261606004600303712002800349856011900377955005500496955005400551972000900605992002200614992001200636000007829220140110141147.0 aFNSP352844 a19900101a00019999 ba0 aeng aGR aaka 10aAnnual report - National Bank of Greece aAthènescNational Bank of Greeced0001- aA partir de 2006 en version électronique aAnnuel02aNational Bank of GreecexPériodiques a* BanquesxRapportsyGrècexPériodiques02aNational Bank of Greece4 uhttp://www.bankofgreece.gr/Pages/en/Publications/GovReport.aspx?Filter_By=8zContenu : texte intégral depuis 19981 b(1980) -(2005)cParisdMagasins/AnnexeeP 4° 56421 b(1953)-(1979)cParisdMagasins/AnnexeeCOL4°0895 aZGRA aGEO RA6.05 Grèce aDEW 33201113nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000440013921000460018332600110022945200590024053000450029960100380034460600360038260700510041871000290046983000500049885600960054895500550064497200090069999100180070899200230072699200120074999200140076104480623X000004788220131009155201.01 a1216-6197 aFNSP241532 a19900101a00019999 ba0 aeng aHU aaka 10aAnnual reportfNational Bank of Hungary aBudapestcNational Bank of Hungaryd0001- aAnnuel 1tNational Bank of Hungary annual report, ISSN 1585-4604 0aAnnual report - National Bank of Hungary02aMagyar Nemzeti BankxPériodiques aFinancesyHongriexPériodiques aHongriexConditions économiquesxPériodiques02aNational Bank of Hungary a1983-1999 : collection envoyée au CTles 20134 uhttp://english.mnb.hu/Kiadvanyok/mnben_evesjelzAccès libre au texte intégral depuis 20001 b(1983) -(1999)cParisdMagasins/AnnexeeP 4° 5334 aZGRA aexempb201307 aGEO RA8.12 Hongrie aDEW 332 aDEW 330.900989nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000098001502100046002482300024002943260011003186010038003296060036003676070051004037100029004548010013004838560060004968560053005569550005006099920023006149920012006379920014006490001132896000113289620130319051058.0 a0001132896 a a20009999k fre 01 ba0 aeng aHU ar aak z  adr 10aAnnual report - National Bank of Hungaryb[Ressource électronique]fNational Bank of Hungary aBudapestcNational Bank of Hungaryd2000- aRevue électronique aAnnuel02aMagyar Nemzeti BankxPériodiques aFinancesyHongriexPériodiques aHongriexConditions économiquesxPériodiques02aNational Bank of Hungary 0aFRbFNSP4 uhttp://english.mnb.hu/engine.aspx?page=mnben_kiadvanyok zContenu : texte intégral du rapport depuis 20001 r aGEO RA8.12 Hongrie aDEW 332 aDEW 330.900990cas0 2200301 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118110001600125200004300141210004300184300004700227430007400274601003900348610004700387710002500434801003000459801003000489802000700519856007200526955005500598992001200653992002300665044879563000020491720131018155514.01 a1427-0285 accn1427-0285 a20000407a19959999 0frey0103 ba0 aeng aPL aak 10aAnnual ReportfNational Bank of Poland aWarsawcNational Bank of Polandd1995- aEn version électronique à partir de 2005 1tInformation Bulletin - Narodowy Bank Polski (Yearly. 1991)x1230-6282 aNarodowy Bank PolskixPériodiques a* BanquesxRapportsyPolognexPériodiques02aNarodowy Bank Polski 3aFRbAbesc20040927gAFNOR 3aFRbAbesc20040927gAFNOR a574 uhttp://www.nbp.pl/zContenu : accès au texte intégral depuis 19971 b(1999) -(2004)cParisdMagasins/AnnexeeP 4° 6023 aDEW 332 aGEO RA5.11 Pologne00918nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000096001502100043002462300024002893260011003136010039003246060036003636070051003997100025004508010013004758560023004888560053005119550005005649920023005699920012005920001133711000113371120130319051058.0 a0001133711 a a19979999k fre 01 ba0 aeng aPL ar aak z  adr 10aAnnual Report - National Bank of Polandb[Ressource électronique]fNational Bank of Poland aWarsawcNational Bank of Polandd1997- aRevue électronique aAnnuel02aNarodowy Bank PolskixPériodiques aFinancesyPolognexPériodiques aPolognexConditions économiquesxPériodiques02aNarodowy Bank Polski 0aFRbFNSP4 uhttp://www.nbp.pl/ zContenu : texte intégral du rapport depuis 19971 r aGEO RA5.11 Pologne aDEW 33200772nas 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000031001502100029001813260011002104880035002216010030002566060049002867120016003358010013003518560026003649550035003909720009004259920012004349920024004460000316493000031649320130319051058.0 a0000316493 a a199?9999k fre ba0 aeng aNO a 0  ar aak z 0 10aAnnual reportfNorsk Hydro aOslocNorsk Hydroc199?- aAnnuel 11aRapport annuel - Norsk Hydro02aNorsk HydroxPériodiques aSociétésxRapportsyNorvègexPériodiques02aNorsk Hydro 0aFRbFNSP uhttp://www.hydro.com/1 r1997---> < Coll. 4°1643 bis > aZGRA aDEW 333 aGEO RA3.03 Norvège00935nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000109001502100023002592300024002823260011003066010048003176060047003656060037004127100034004498010013004838560042004968560042005389550005005809920024005859920012006090001133494000113349420130319051058.0 a0001133494 a a19989999k fre 01 ba0 aeng aAT ar aak z  adr 10aAnnual report - Oesterreichische Nationalbankb[Ressource électronique] /fOesterreichische Nationalbank aViennacONBd1998- aRevue électronique aAnnuel02aÖsterreichische NationalbankxPériodiques aMarché monétaireyAutricheyPériodiques aFinancesyAutrichexPériodiques02aÖsterreichische Nationalbank 0aFRbFNSP4 uhttp://www.oenb.at/english/engl_p.htm zContenu : texte intégral depuis 19981 r aGEO RA5.13 Autriche aDEW 33200952nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210002400179326001100203430004700214601006500261606005300326710005100379856005700430856003600487955005300523972000900576992002700585992001200612992001400624039289753000004749420130319051058.01 a0257-1617 aFNSP240705 a0000047494 a19900101a19799999 f ba0 aeng aAT aaka 10aAnnual report - OPEC aViennacOPECd1979- aAnnuel 1aAnnual review and record - OPECx0474-631702aOrganisation des pays exportateurs de pétrolexPériodiques aPétrole‎xIndustrie et commercexPériodiques02aOrganisation des pays exportateurs de pétrole4 uhttp://www.opec.org/opec_web/en/publications/337.htm4 zAccès libre au texte intégral1 b(1977) -....cParisdMagasins/AnnexeeP 4° 4096 aZGRA aGEO RO3 Pays de l'OPEP aDEW 333 aDEW 341.200980nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004300154210004500197326001100242517005000253530004400303601004200347606003900389607003500428712002800463856004300491955005500534972000900589991001800598992002200616992001600638039286878000006163820130319051058.01 a0256-9396 aFNSP281998 a0000061638 a19900101a19809999 ba0 aeng aPA aaka 10aAnnual reportfPanama Canal Commission aPanamacPanama Canal Commissiond[19..]- aAnnuel10aAnnual report of the Panama Canal Commisssion10aAnnual report - Panama Canal Commission02aPanama Canal CommissionxPériodiques aTransports maritimesxPériodiques aPanama, Canal dexPériodiques02aPanama Canal Commission uhttp://www.pancanal.com/eng/index.html1 b(1980) -(1999)cParisdMagasins/AnnexeeP 8° 5252 aZGRA aexempb201109 aGEO RD2.07 Panama aDEW 383-38901151nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000048001552100051002033000047002543260011003014300091003125300048004036010046004516060046004977120032005438010021005758560056005968560053006529550054007059720009007599920033007689920012008010000069908000006990820130319051058.01 a0110-7070 aFNSP322696 a0000069908 a19900101a19789999 ba0 aeng aNZ aaku 10aAnnual report - Reserve Bank of New Zealand aWellingtoncReserve Bank of New Zealandd1978- aEn version électronique à partir de 2007 aAnnuel 1aAnnual report of the directors and statement of accounts - Reserve Bank of New Zealand00aAnnual report - Reserve Bank of New Zealand02aReserve bank of New ZealandxPériodiques aFinancesyNouvelle-ZélandexPériodiques02aReserve Bank of New Zealand 3aFRbCCN0110-70704 uhttp://www.rbnz.govt.nz/about/Whatwedo/0094054.html4 zContenu : texte intégral du rapport depuis 19971 b(1983)-(2007)cParisdMagasins/AnnexeeP 4° 5292 aZGRA aGEO RJ3.02 Nouvelle-Zélande aDEW 33200938nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000104001502100051002542300024003053260011003296010046003406060046003867100032004328010013004648560056004778560053005339550005005869920033005919920012006240001137569000113756920130319051058.0 a0001137569 a a19979999k fre 01 ba0 aeng aNZ ar aak z  adr 10aAnnual report - Reserve Bank of New Zealandb[Ressource électronique]fReserve Bank of New Zealand aWellingtoncReserve Bank of New Zealandd1997- aRevue électronique aAnnuel02aReserve bank of New ZealandxPériodiques aFinancesyNouvelle-ZélandexPériodiques02aReserve Bank of New Zealand 0aFRbFNSP4 uhttp://www.rbnz.govt.nz/about/Whatwedo/0094054.html zContenu : texte intégral du rapport depuis 19971 r aGEO RJ3.02 Nouvelle-Zélande aDEW 33201127nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000400015421000400019430000470023432600110028151000440029253000430033660600360037960700510041571000230046685601360048995500470062595500550067297200090072799100180073699200230075499200120077703965012X000004788720130918095943.01 a0559-2712 aFNSP241537 a0000047887 a19900101a19619999 ba0 aeng aIS aaka 10aAnnual reportfSeđlabanki Íslands aReykjavikcSedlabanki Islandd1961- aEn version électronique à partir de 2006 aAnnuel10aAnnual report - Central Bank of Iceland10aAnnual report‎bSeðlabanki Íslands aFinancesyIslandexPériodiques aIslandexConditions économiquesxPériodiques02aSedlabanki Islands uhttp://www.cb.is/publications-news-and-speeches/publications/annual-report/zContenu : texte intégral du rapport à partir de 19971 b(2005)cParisdMagasins/AnnexeeP 4° 71551 b(1982) -(2004)cParisdMagasins/AnnexeeP 8° 5124 aZGRA aexempb201011 aGEO RA3.05 Islande aDEW 33200993nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000091001502100040002412300024002813260011003055100044003166060036003606070051003967100023004478010013004708560103004838560053005869550005006399920023006449920012006670001133377000113337720130319051058.0 a0001133377 a a19979999k fre 01 ba0 aeng aIS ar aak z  adr 10aAnnual report - Seđlabanki Íslandsb[Ressource électronique] /fSeđlabanki Íslands aReykjavikcSedlabanki Islandd1997- aRevue électronique aAnnuel10aAnnual report - Central Bank of Iceland aFinancesyIslandexPériodiques aIslandexConditions économiquesxPériodiques02aSedlabanki Islands 0aFRbFNSP4 uhttp://www.sedlabanki.is/interpro/sedlabanki/sedlabanki.nsf/pages/F59CDB8A90532154002568E00041BE8E zContenu : texte intégral du rapport depuis 19971 r aGEO RA3.05 Islande aDEW 33200954nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000092001502100044002422300024002863260011003106010041003216060037003626070052003997100027004518010013004788560050004918560058005419550005005999920024006049920012006280001174110000117411020130319051058.0 a0001174110 a a19999999k fre 01 ba0 aeng aPK ar aak z  adr 10aAnnual report - State bank of Pakistan[Ressource électronique]fState bank of Pakistan aaKarachicState Bank of Pakistand1999- aRevue électronique aAnnuel02aState Bank of PakistanxPériodiques aFinancesyPakistanxPériodiques aPakistanxConditions économiquesxPériodiques02aState Bank of Pakistan 0aFRbFNSP4 uhttp://www.sbp.org.pk/publications/index2.asp4 zContenu : texte intégral du rapport depuis 1999/20001 r aGEO RG4.03 Pakistan aDEW 33201153nas 2200349 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000038001552100040001933000047002333260011002804300047002915300038003386010036003766100046004127120022004588560061004808560052005419550054005939550053006479550057007009720009007579920022007669920015007880000123888000012388820130410091224.01 a0347-5042 aFNSP509443 a0000123888 a19940413a19719999 ba0 aeng aSE aaka 10aAnnual report - Sveriges Riksbank aStockholmcSveriges Riksbankd1971- aEn version électronique à partir de 2006 aAnnuel 1aArsbok - Sveriges riksbank 00aAnnual report - Sveriges Riksbank02aSveriges RiksbankxPériodiques0 a* BanquesxRapportsySuèdexPériodiques02aSveriges Riksbank4 uhttp://www.riksbank.com/templates/YearList.aspx?id=106334 zContenu : accès au texte intégral depuis 19971 b(1971)-(1979)cParisdMagasins/AnnexeeCOL8°05081 b1980)-(1993)cParisdMagasins/AnnexeeP 8° 53511 b(b(1994) -(2005)cParisdMagasins/AnnexeeP 4° 6456 aZGRA aGEO RA3.02 Suède aDEW 332.0600884nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000085001502100040002352300024002753260011002996010036003106060046003467100022003928010013004148560061004278560052004889550005005409920022005459920015005670001133364000113336420130319051058.0 a0001133364 a a19979999k fre 01 ba0 aeng aSE ar aak z  adr 10aAnnual report - Sveriges Riksbankb[Ressource électronique] /sfSveriges Riksbank aStockholmcSveriges Riksbankd1997- aRevue électronique aAnnuel02aSveriges RiksbankxPériodiques0 a* BanquesxRapportsySuèdexPériodiques02aSveriges Riksbank 0aFRbFNSP4 uhttp://www.riksbank.com/templates/YearList.aspx?id=106334 zContenu : accès au texte intégral depuis 19971 r aGEO RA3.02 Suède aDEW 332.0601030nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000065001552100033002203260011002534300087002645300065003516060057004167120047004738560054005209550052005749550054006269720009006809920023006899920016007120000071067000007106720130319051058.01 a0147-5568 aFNSP325772 a0000071067 a19900101a19759999 ba0 aeng aUS aaka 10aAnnual report - United States International Trade Commission aWashington, D.C.cITCd1975- aAnnuel 1aAnnual report of the United States Tariff Commission (0083-3428) < Coll. 8°0279 >00aAnnual report - United States International Trade Commission aCommerce extérieurxDroityEtats-UnisxPériodiques01aEtats-UnisbInternational Trade Commission uhttp://www.usitc.gov/press_room/annual_report.htm1 b(1980) -…cParisdMagasins/AnnexeeP 4° 57661 b(1976)-(1979)cParisdMagasins/AnnexeeCOL8°0279 aZGRA aGEO RC2 Etats-Unis aDEW 380-38200900nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000075001502100032002252300024002573260011002816010032002926060034003246070049003587100018004078010013004258560027004388560053004659550005005189910018005239920021005419920012005620001173832000117383220131118142313.0 a0001173832 a a19969999k fre 01 ba0 aeng aGH ar aak z  adr 10aAnnual report -Bank of Ghanab[Ressource électronique]fBank of Ghana aAccracBank of Ghanad1996- aRevue électronique aAnnuel02aBank of GhanaxPériodiques aFinancesyGhanaxPériodiques aGhanaxConditions économiquesxPériodiques02aBank of Ghana 0aFRbFNSP4 uhttp://www.bog.gov.gh/4 zContenu : texte intégral du rapport depuis 20041 r aexempb201311 aGEO RF1.15 Ghana aDEW 33200968nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000092001502100035002422300024002773260011003016010034003126060044003466070059003907100020004498010013004698560071004828560053005539550005006069920031006119920012006420001134321000113432120130319051058.0 a0001134321 a a20009999k fre 01 ba0 aeng aGB ar aak z  adr 10aAnnual report and account - Bank of Englandb[Ressource électronique]fBank of England aLondoncBank of Englandd2000- aRevue électronique aAnnuel02aBank of EnglandxPériodiques aFinancesyGrande-BretagnexPériodiques aGrande-BretagnexConditions économiquesxPériodiques02aBank of England 0aFRbFNSP4 uhttp://www.bankofengland.co.uk/publications/annualreport/index.htm zContenu : texte intégral du rapport depuis 20001 r aGEO RA4.02 Grande-Bretagne aDEW 33201029nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006600154210002300220326001100243437003500254530007200289601002200361606005600383606004300439710000800482856009900490955006500589991001800654992003100672992001200703040090981000025860420130328113041.01 a0958-6083 aFNSP900079 a0000258604 a19981028a19869999 ba0 aeng aGB aaka 10aAnnual report and accounts / British Broadcasting Corporation aLondoncBBCd1986- aAnnuel 1tBBC handbook (1986)x2048-005910aAnnual report and accounts - British Broadcasting Corporationb198702aBBCxPériodiques aSociétésxRapportsyGrande-BretagnexPériodiques aMédiasyGrande-BretagnexPériodiques02aBBC4 uhttp://www.bbc.co.uk/search/?q=annual%20reportzAccès au texte intégral de l'année en cours1 b(1986/1987) -(1998/1999)cParisdMagasins/AnnexeeP 4° 5930 aexempb201303 aGEO RA4.02 Grande-Bretagne aDEW 07001056nas 2200301 i 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102110001600109200006600125210004500191300004700236326001100283601003900294606004100333607005600374710002500430856009900455955005500554955007800609972000900687991001800696992002800714992001200742037450204000006209320130620161948.0 aFNSP283947 a19900101a19659999 ba0 aeng aSL aaka 10aAnnual report and statement of accountsfBank of Sierra Leone aFreetowncBank of Sierra Leoned1965-... aEn version électronique à partir de 2006 aAnnuel02aBank of Sierra LeonexPériodiques aFinancesySierra LeonexPériodiques aSierra LeonexConditions économiquesxPériodiques02aBank of Sierra Leone4 uhttp://www.bsl.gov.sl/articles_publications.htmlzContenu : texte intégral du dernier rapport1 b(1999) -(2005)cParisdMagasins/AnnexeeP 4° 68701 b(1981) - (1988) ; (1993) -(1997/1998)cParisdMagasins/AnnexeeP 8° 4742 aZGRA aexempb201106 aGEO RF1.25 Sierra Leone aDEW 33200958nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000116001502100042002662300024003083260011003326010039003436060041003826070056004237100025004798010013005048560050005178560049005679920028006169920012006440001110313000111031320130319051058.0 a0001110313 a a20069999k fre 01 ba0 aeng aSL ar aak z  ad 10aAnnual report and statement of accounts - Bank of Sierra Leoneb[Ressource électronique]fBank of Sierra Leone aFreetowncBank of Sierra Leoned2006- aRevue électronique aAnnuel02aBank of Sierra LeonexPériodiques aFinancesySierra LeonexPériodiques aSierra LeonexConditions économiquesxPériodiques02aBank of Sierra Leone 0aFRbFNSP4 uhttp://www.bankofsierraleone-centralbank.org/ zContenu : texte intégral du dernier rapport aGEO RF1.25 Sierra Leone aDEW 33200911nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000104001502100034002542300024002883260011003126010033003236060035003566070050003917100019004418010013004608560023004738560053004969920022005499920014005719920012005850001170794000117079420130319051058.0 a0001170794 a a20049999k fre 01 ba0 aeng aZM ar aak z  adr 10aAnnual report and statement of accounts - Bank of Zambiab[Ressource électronique]fBank of Zambia aLusakacBank of Zambiad2004- aRevue électronique aAnnuel02aBank of ZambiaxPériodiques aFinancesyZambiexPériodiques aZambiexConditions économiquesxPériodiques02aBank of Zambie 0aFRbFNSP4 uhttp://www.boz.zm/ zContenu : texte intégral du rapport depuis 2004 aGEO RF3.17 Zambie aDEW 330.9 aDEW 33200986nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000122001502100042002722300024003143260011003386010042003496060036003916070051004277100028004788010013005068560058005198560053005779550005006309920023006359920014006580001137562000113756220130319051058.0 a0001137562 a a19999999k fre 01 ba0 aeng aNG ar aak z  adr 10aAnnual report and statement of accounts - Central Bank of Nigeriab[Ressource électronique]fCentral Bank of Nigeria aLagoscCentral Bank of Nigeriad1999- aRevue électronique aAnnuel02aCentral Bank of NigeriaxPériodiques aFinancesyNigeriaxPériodiques aNigeriaxConditions économiquesxPériodiques02aCentral Bank of Nigeria 0aFRbFNSP4 uhttp://www.cenbank.org/documents/cbnannualreports.asp zContenu : texte intégral du rapport depuis 19991 r aGEO RF1.23 Nigeria aDEW 330.901092nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005600139210005000195326001100245430006000256517005100316606005800367710005200425856012900477955005500606955005500661972000900716991001800725992003100743992001600774039325733000005037320140108153337.01 a0269-3100 aFNSP246945 a19900101a19789999 ba0 aeng aGB aaka 10aAnnual report of the Commission for Racial Equality aLondoncCommission for Racial Equalityd1978- aAnnuel 1tReport of the Commission for Racial Equalityx0142-087910aAnnual report - Commission for Racial Equality aDiscrimination racialeyGrande-BretagnexPériodiques02aGrande-BretagnebCommission for Racial Equality uhttp://www.equalityhumanrights.com/about-us/corporate-reporting/annual-reports/zAccés libre au texte intégral depuis 20061 b(1982) -(2007)cParisdMagasins/AnnexeeP 4° 60671 b(1977) -(1981)cParisdMagasins/AnnexeeP 8° 4128 aZPAY aexempb201401 aGEO RA4.02 Grande-Bretagne aDEW 305-30601188nas 2200289 i 450 002001100000005001700011011001400028035001500042100004100057101000800098102000700106106000600113110001600119200010300135210005700238326001100295430011600306451012900422601005900551710003500610856009800645955005600743955005500799972000900854992002100863992001400884000007167020140116115927.01 a0250-7498 aFNSP328291 a19900101a19789999 f ba0 aeng aUS ar aaka 10aAnnual report of the Executive Board for the financial year ended ...fInternational Monetary Fund aWashington, D.C.cInternational Monetary Fundd1978- aAnnuel 1aAnnual report of the Executive Directors for the fiscal year ended ... - International Monetary Fundx0085-2171 1aRapport annuel du Conseil d'administration pour l'exercice financier clos le ... - Fonds monétaire internationalx0250-750102aFonds monétaire internationalxFinancesxPériodiques02aFonds monétaire international uhttp://www.imf.org/external/pubs/ft/ar/index.htmzAccés libre au texte intégral depuis 19961 b(1985) -(2009);cParisdMagasins/AnnexeeP 4° 69601 b(1978) -(1984)cParisdMagasins/AnnexeeCOL4°2421 aZGRA aGEO RQ Universel aDEW 341.201175nas 2200313 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000112001412100046002533000047002993260011003464300110003576010044004676060038005116070064005497100030006138560055006438560053006989550055007519910018008069920025008249920012008490000071065000007106520130319051059.0 aFNSP325766 a0000071065 a19900101a19859999 ba0 aeng aLK aaka 10aAnnual report of the Monetary board to the Hon. Minister of Finance and PlanningfCentral Bank of Sri Lanka aColombocCentral Bank of Sri Lankad1985- aEn version électronique à partir de 2005 aAnnuel 1aAnnual report of the Monetary board to the Hon. Minister of Finance and planning - Central Bank of Ceylon02aCentral Bank of Sri LankaxPériodiques aFinancesySri LankaxPériodiques aSri LankaxConditions économiquesz1948-....xPériodiques02aCentral Bank of Sri Lanka4 uhttp://www.cbsl.gov.lk/info/10_publication/p_1.htm4 zContenu : texte intégral du rapport depuis 20051 b(1985) -(1989)cParisdMagasins/AnnexeeP 8° 5137 aexempb201011 aGEO RI1.16 Sri Lanka aDEW 33200932nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005600154210003500210326001100245606005400256710004700310856006500357856003600422955005500458955005500513972000900568991001800577992002300595992001200618038883945000008889120130319051059.01 a0083-2200 aFNSP391774 a0000088891 a19900101a19369999 ba0 aeng aUS aaka 10aAnnual report of the National Labor Relations Board aWashington, D.C.cUSGPOd1936- aAnnuel aRelations industriellesyEtats-UnisxPériodiques aEtats-UnisbNational Labor Relations Board4 uhttp://www.nlrb.gov/publications/reports/annual_reports.aspx4 zAccès libre au texte intégral1 b(1953) -(1977)cParisdMagasins/AnnexeeCOL8°18151 b(1980) -(2005)cParisdMagasins/AnnexeeP 8° 5266 aZPAY aexempb201110 aGEO RC2 Etats-Unis aDEW 33101023nas 2200289 i 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102110001600109200006000125210003900185326001100224440008300235601006500318606004400383710005100427856009100478955004700569955005500616972000900671991001800680992002300698992001200721036166871000007113920131120115843.0 aFNSP326314 a19900101b19342004 ba0 aeng aUS aaka 10aAnnual report of the Securities and Exchange Commission aWashington, D.C.cUSGPOd1934-2004 aAnnuel 1tPerformance and accountability reportfU.S. Securities and Exchange Commission02aEtats-UnisbSecurities and Exchange CommissionxPériodiques aBoursexDroityEtats-UnisxPériodiques02aEtats-UnisbSecurities and Exchange Commission4 uhttp://www.sec.gov/about/secreports.shtmlzaccés libre au texte intégral depuis 20011 b(2003)cParisdMagasins/AnnexeeP 4° 70971 b(1985) -(2002)cParisdMagasins/AnnexeeP 8° 5539 aZPAY aexempb201109 aGEO RC2 Etats-Unis aDEW 33201012nas 2200301 i 450 002001100000005001700011100004100028101000800069102000700077105001800084106000600102110001600108200005600124210003700180326001100217430002900228517006100257606004400318607004900362712001900411801001300430856015100443955006000594972000900654992002100663992001400684992001200698000047227720131125152456.0 a b20012008k a fre ba0 aeng aJP a 0  ar aak z 0 10aAnnual report on Japan's economy and public finance aTokyocCabinet Officed2001-2008 aAnnuel 1tEconomic survey of Japan10aAnnual report on the japanese economy and public finance aFinances publiquesyJaponxPériodiques aJaponxConditions économiquesxPériodiques02aJaponbCabinet 0aFRbFNSP4 uhttp://nsearch.cao.go.jp/cao/search.x?q=annual+report+on+japan%27s+economy+and+public+finance&mode_ja_cao=ja_cao&page=1&ie=UTF-8&tmpl=en&x=29&y=201 b(2000/2001) -(2007)cParisdMagasins/AnnexeeP 8° 6638 aZPAY aGEO RI3.22 Japon aDEW 330.9 aDEW 33200962nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000076001502100032002262300024002583260011002826010032002936060034003256060046003596070049004057100018004548010013004728560060004858560053005459550005005989920021006039920012006240001114503000111450320130319051059.0 a0001114503 a a19999999k fre 01 ba0 aeng aJP ar aak z  adr 10aAnnual review - Bank of Japanb[Ressource électronique]fBank of Japan aTokyocBank of Japand1999- aRevue électronique aAnnuel02aBank of JapanxPériodiques aFinancesyJaponxPériodiques aPolitique monétaireyJaponxPériodiques aJaponxConditions économiquesxPériodiques02aBank of Japan 0aFRbFNSP4 uhttp://www.boj.or.jp/en/type/release/teiki/ar/index.htm zContenu : texte intégral du rapport depuis 19991 r aGEO RI3.22 Japon aDEW 33201133nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006400139210006400203300004700267326001100314530006500325601003900390606003300429607004800462710002500510830005600535856007100591955006000662972000900722991001800731992002000749992001200769992001400781037374354000006175320131218120606.01 a1560-4764 aFNSP282245 a19900101a00019999 ba0 aeng aIR aaka 10aAnnual reviewfCentral Bank of the Islamic Republic of Iran aTehrancCentral Bank of the Islamic Republic of Irand0001- aEn version électronique à partir de 2000 aAnnuel10aAnnual review - Central Bank of the Islamic Republic of Iran02aCentral Bank of IranxPériodiques aFinancesyIranxPériodiques aIranxConditions économiquesxPériodiques02aCentral Bank of Iran a1990/1991-2005 collection envoyée au CTLES en 20134 uhttp://www.cbi.ir/default_en.aspxzAccés libre au texte intégral1 b(1990/1991) -(2005)cParisdMagasins/AnnexeeP 4° 6457 aZGRA aexempb201306 aGEO RG4.02 Iran aDEW 332 aDEW 330.900994nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000137001502100064002872300024003513260011003756010039003866060033004256070048004587100025005068010013005318560038005448560067005829550005006499920012006549920014006660001131193000113119320130319051059.0 a0001131193 a a20009999k fre 01 ba0 aeng aIR ar aak z  adr 10aAnnual review - Central Bank of the Islamic Republic of Iranb[Ressource electronique]fCentral Bank of the Islamic Republic of Iran aTehrancCentral Bank of the Islamic Republic of Irand2000- aRevue électronique aAnnuel02aCentral Bank of IranxPériodiques aFinancesyIranxPériodiques aIranxConditions économiquesxPériodiques02aCentral Bank of Iran 0aFRbFNSP4 uhttp://www.cbi.ir/default_en.aspx4 zContenu : texte intégral du rapport depuis l'édition 2000/011 r aDEW 332 aDEW 330.901304nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210004900188326001100237430004700248530004100295606003200336801002100368856012800389856010800517856009000625856010800715955005200823955005200875972000900927991001800936992001200954036635359000000595920130319051059.0 a0084-6570 aFNSP109470 a0000005959 a19900101a19729999 ba0 aeng aUS aaku 10aAnnual review of anthropology aPalo Alto, CalifcAnnual Reviews Inc.d1972- aAnnuel 1aBiennial review of anthropologyx0067-8503 0aAnnual review of anthropologybPrint aAnthropologiexPériodiques 3aFRbCCN0084-65704 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=AOA&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00846570.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1972-1979)cParisdMagasins/AnnexeeCOL8°31261 b(1980)-....cParisdMagasins/AnnexeeP 8° 5486 aZPAY aexempb201109 aDEW 30101277nas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200008900180207001000269210005000279532002800329606005200357606005300409606004400462676000800506710005200514801003000566801002300596802000700619856006600626856005100692955006200743955005300805992002100858992001200879113969449000110316420130319051059.01 a1932-5819 aissn19325819 a0001103164 a20070419a20069999k y0frey0103 ba0 aeng aUS ay 0  ar azka 0uu 10aAnnual review of global peace operations /fCenter on International Cooperation (CIC) 0a2006- aBoulder, COcLynne Rienner Publishersdc2006-10aGlobal peace operations aMaintien de la paixxStatistiquesxPériodiques aGestion des conflitsxStatistiquesxPériodiques aSécurité internationalexPériodiques a32702aCenter on International Cooperationc(New York) 3aFRbAbesc20070419gAFNOR 3aFRbISSNc20070419 a014 uhttp://www.cic.nyu.edu/internationalsecurity/globalpeace.html zContenu : sommaire du dernier rapport en ligne1 bLa dernière annéecParisd30, Salle 1er étageeDEW 3271 b(2006) -....cParisdMagasins/AnnexeeP 4° 7200 aGEO RQ Universel aDEW 32700929nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005600154207003200210210003800242326001100280517001000291606004400301712004500345801002100390856003800411856003700449955005400486957005400540972000900594992001200603032914091000000603920130611162344.01 a0066-4200 aFNSP109568 a0000006039 a19900101a19669999 ba0 aeng aUS aaku 10aAnnual review of information science and technology 1aVol.1 (1966)-vol. 45 (2011) aWashington, D.C.cASISd1966-2011 aannuel10aARIST aSciences de l'informationxPériodiques02aAmerican Society for Information Science 3aFRbCCN0066-42004 uhttp://www.interscience.wiley.com zAccès libre au texte intégral.1 b(2007)-(2011)cParisdMagasins/annexeeP 8° 64871 b(1966/1975)cParisdMagasins/AnnexeeP Index 0645 aZPAY aDEW 02001001nas0 2200313 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109110001600127200004400143207001900187210004200206301004200248301004000290326001100330452005500341606003600396606002400432801003000456856010000486955005900586972000900645992002100654992001200675095324062000096266220131202173412.0 a0000962662 a20060126a20059999 y0undy0103 ba0 aeng aUS a 0  azka 0yy 00aAnnual review of law and social science 0aVol. 1 (2005)- aPalo Alto, CAcAnnual Reviewsdc2005- aDemande de numerotation ISSN en cours aISSN sur la publication : 1550-3585 aAnnuel 0tAnnual review of law and social sciencex1550-3631 aSciences socialesxPériodiques aDroitxPériodiques 3aFRbAbesc20060126gAFNOR4 uhttp://www.annualreviews.org/catalog/2005/ls01.aspzAccès aux sommaires depuiq le vol. 1, 20051 bvol. 1 (2005)-....cParisdMagasins/AnnexeeP 8° 6882 aZSAB aGEO RQ Universel aDEW 30000940nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154207002400193210004900217326001100266530006600277606003600343856009400379856009400473955007000567972000900637992001600646060335432000024920420130319051059.01 a1094-2939 aFNSP872759 a0000249204 a19900101a19989999 ba0 aeng aUS aaka 10aAnnual review of political science 1aVol. 1 no. 1(1998)- aPalo Alto, CalifcAnnual Reviews Inc.d1998- aAnnuel00aAnnual review of political scienceb(Palo Alto, Calif. Print) aScience politiquexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://arjournals.annualreviews.org/loi/polisci zContenu : sommaires ; résumés ; index auteurs et mots-clés ; depuis le numéro 1, 19981 bno. 1 (1998) -....cParisdBibliothèque de rechercheeP 8° 6464 aZPAY aDEW 320-32101129nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210004900185326001100234606002900245801002100274856012800295856010800423856009000531856010800621955005900729972000900788991001800797992001200815039504158000000602920131025113515.01 a0360-0572 aFNSP109556 a0000006029 a19900101a19759999 ba0 aeng aUS aaku 10aAnnual review of sociology aPalo Alto, CalifcAnnual Reviews Inc.d1975- aAnnuel aSociologiexPériodiques 3aFRbCCN0360-05724 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=ASO&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03600572.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1975) -....cParisdMagasins/AnnexeeP 8° 3748 aZPAY aexempb201103 aDEW 30101168nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200010000139210002400239326001100263517003900274530010100313601006500414606006700479710005100546856010300597955005500700955007400755972000900829992001600838992001200854044717989000007856920140117102223.01 a0475-0608 aFNSP353557 a19900101a00019999 f ba0 aeng aAT aaka 10aAnnual statistical bulletinfOrganization of the Petroleum Exporting Countries. Statistics Unit aViennacOPECd0001- aAnnuel10aAnnual statistical bulletin - OPEC00aAnnual statistical bulletin - Organization of the Petroleum Exporting Countries. Statistics Unit02aOrganisation des pays exportateurs de pétrolexPériodiques aPétrole‎xIndustrie et commercexStatistiquesxPériodiques02aOrganisation des pays exportateurs de pétrole uhttp://www.opec.org/opec_web/en/publications/202.htm/zAccés libre au texte intégral depuis 19991 b(2002) -(2008)cParisdMagasins/AnnexeeP 4° 70161 b(1967) -(1969) ; (1971) -(2000)cParisdMagasins/AnnexeeCOL 4° 3316 aZPAY aDEW 310-319 aDEW 33301111nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000560013921000480019532600110024353000570025460600500031160700740036160700650043571000290050080100210052985600920055095500550064297200090069799100180070699200230072499200220074799200160076903927991X000001132620131213125015.01 a0255-8440 aFNSP124461 a19900101a19729999 ba0 aeng aZW aaku 10aAnnual statistical digestfCentral Bank of Barbados aBridgetowncCentral Bank of Barbadosd1972- aAnnuel10aAnnual statistical digest - Central Bank of Barbados aFinancesyBarbadexStatistiquesxPériodiques aRégion caraïbexConditions économiquesxStatistiquesxPériodiques aBarbadexConditions économiquesxStatistiquesxPériodiques02aCentral Bank of Barbados 3aFRbCCN0255-84404 uhttp://www.centralbank.org.bb/zAccè libre texte intégral du dernier rapport en ligne1 b(1988) -(2006)cParisdMagasins/AnnexeeP 4° 5394 aZGRA aexempb201312 aGEO RD3.12 Barbade aGEO RD3 Caraïbes aDEW 310-31901059nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000110001502100048002602300024003083260011003326060050003436070065003936070074004587100029005328010013005618560035005748560058006099550005006679920023006729920022006959920016007170001131327000113132720130319051059.0 a0001131327 a a20069999k fre 01 ba0 aeng aZW ar aak z  adr 10aAnnual statistical digest - Central Bank of Barbadosb[Ressource électronique]fCentral Bank of Barbados aBridgetowncCentral Bank of Barbadosd2006- aRevue électronique aAnnuel aFinancesyBarbadexStatistiquesxPériodiques aBarbadexConditions économiquesxStatistiquesxPériodiques aRégion caraïbexConditions économiquesxStatistiquesxPériodiques02aCentral Bank of Barbados 0aFRbFNSP4 uhttp://www.centralbank.org.bb/ zContenu : texte intégral du dernier rapport en ligne1 r aGEO RD3.12 Barbade aGEO RD3 Caraïbes aDEW 310-31900970nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210002700188326001600215422006900231606003600300710003900336801002100375856004200396856004600438955005200484955006700536991001800603992002300621992001200644038839725000000864420130319051059.01 a0066-4413 aFNSP115271 a0000008644 a19900101a19429999 ba0 aeng aUS aaha 10aAnnual survey of American law aNew YorkcNYUSLd1942- aTrimestriel 1aNew York University law review (1950) (0028-7881) < P 8° 2482 > aDroityEtats-UnisxPériodiques02aNew York UniversitybSchool of Law 3aFRbCCN0066-44134 uhttp://www.nyu.edu/pubs/annualsurvey/ zContenu : sommaires, numéros 2 et 3,19961 b(1961-1967)cParisdMagasins/AnnexeeCOL8°46311 bno. 1 (1982) -no. 4 (1996)cParisdMagasins/AnnexeeP 8° 4637 aexempb201106 aGEO RC2 Etats-Unis aDEW 34901206nas 2200349 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000033001552100049001883260011002375300033002486070039002816760008003207120047003288010021003758560025003969550055004219550053004769550203005299550065007329720009007979920022008069920012008289920016008400000070385000007038520131023105243.01 a0066-4545 aFNSP323624 a0000070385 a19900101a18789999 ba0 aita aIT aaku 10aAnnuario statistico italiano aRomacIstituto centrale di statisticad1878- aannuel00aAnnuario statistico italiano aItaliexStatistiquesxPériodiques a31402aIstituto nazionale di statisticac(Italie) 3aFRbCCN0066-45454 uhttp://www.istat.it/1 bLa dernière annéecParisd27, 1er EtageeDEW 3141 b(1980) -....cParisdMagasins/AnnexeeP 4° 54931 b(1886) -(1890) ; (1892) ; (1895) ; (1897) ; (1904) -(1907) ; (1911) ; (1915) ; (1928) ; (1930) -(1939) ; (1942) ; (1944) -(1951) ; (1953) -(1970) ; (1972) -(1979)cParisdMagasins/AnnexeeCOL4°01661 b(1878) ; (1881) ; (1884)cParisdMagasins/AnnexeeCOL8°0234 aZGRA aGEO RA6.03 Italie aDEW 945 aDEW 310-31900916nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004900163210005900212326001800271606003700289606003200326710008800358801001300446856005100459856003300510955007400543972000900617073879681000051970420130319051059.01 a1638-8437 a0000519704 a b20022003k fre ba0 afre aFR a 0  ar aai z 0 10aAnthropoliserevue d'anticipation culturelle aPariscEditions des Archives contemporainesd2002-2003 a3 n°s par an aVie intellectuellexPériodiques aAnthropologiexPériodiques02aLaboratoire d'anthropologie des institutions et des organisations socialesc(Paris) 0aFRbFNSP uhttp://www.laios.msh-paris.fr/anthropolis.html zsommaires à partir du n° 11 bvol. 1 no. 1 (2002) -no. 2 (2003)cParisdMagasins/AnnexeeP 4° 6961 aZPAY01183nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000032001552100048001873260022002356060029002576060032002867100071003188010021003898560046004108560093004568560036005498560036005859550093006219570092007149720009008069910018008159920012008330000008646000000864620130319051059.01 a0702-8997 aFNSP115278 a0000008646 a19900101a19779999 ba0 afre aCA aaia 10aAnthropologie et sociétés aQuébeccAnthropologie et sociétésd1977- aTrois fois par an aSociologiexPériodiques aAnthropologiexPériodiques02aUniversité Lavalc(Québec, Canada)bDépartement d'anthropologie 3aFRbCCN0702-89974 uhttp://www.fss.ulaval.ca/ant/revuant.html zContenu : sommaires ; index par auteurs et thèmes ; depuis 1979 ; résumés depuis 19904 uhttp://www.erudit.org/revue/as/ zAccès libre au texte intégral1 bvol. 1 no. 2 et 3 (1977) ; vol. 3 no. 1 (1979) -....cParisdMagasins/AnnexeeP 8° 46801 b(1977) -(1979) ; (1977) -(1987) ; (1977) - (1997)cParisdMagasins/AnnexeeP Index 0388 aZPAY aexempb201003 aDEW 30101337nls 2200337 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000104001642100114002683000056003823260016004383360056004543370071005106060067005816060045006487100041006938010013007348560090007478560108008379550005009459920033009509920016009830000800495000080049520130319051100.01 a0161-7761 a0000800495 a a19769999k fre 01 ba0 aeng aUS az aah z  adr 10aAnthropology & education quarterlyb[Ressource électronique]fAmerican Anthropological Association aWashingtoncCouncil on Anthropology and EducationaArlington, VAcAmerican Anthropological Associationd1976- aTexte intégral depuis le Vol. 7, n°3, August 1976 aTrimestriel aDonnées textuelles accessibles uniquement en ligne aTéléchargement de fichiers TIFF, PDF (recommandé) ou PostScript aAnthropologiexEtude et enseignementyEtats-UnisxPériodiques aSociologie de l'éducationxPériodiques02aAmerican Anthropological Association 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01617761.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RS Sans aspect régional aDEW 370-37901281nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000050001502100051002003000005002513260014002563360024002703370063002944300073003574520034004306060032004648010013004968560090005098560108005998560128007078560108008359920012009430000462576000046257620130319051100.0 a0000462576 a a19859999k fre 01 ba0 aeng aGB az aae z  adr 10aAnthropology todayb[Ressource électronique] aLondoncRoyal Anthropological Instituted1985- a aBimensuel aRevue électronique aFichiers images et PDF en consultation ou téléchargement 1tRAIN. Royal Anthropological Institute news [Ressource électronique] 1tAnthropology todayx0268-540X aAnthropologiexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0268540X.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=AOY&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aDEW 30100869cas0 2200301 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200001200156207002300168210004600191326001600237606004400253801003000297801002300327802000700350856005100357856006300408955007100471972000900542992001600551076263835000073089620130319051100.01 a1761-9610 aissn17619610 a0000730896 a20030523b20032004 0fre 0103 ba0 afre aFR aah 10aAnticor 1aN°1 (avril 2003)- aLatresnecEd. Le Bord de l'eaud2003-2004 aTrimestriel aIdées politiquesyFrancexPériodiques 3aFRbAbesc20040204gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.c6r.org/article.php3?id_article=4784 zContenu : accès aux sommaires du n°1, 2003 au n°3, 20041 bno. 1 (avr-2003) -no. 3 (2004)cParisdMagasins/AnnexeeP 8° 6791 aZCAD aDEW 320-32101026nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210004800177326001600225606003700241856012800278856010800406955009000514957010500604972000900709991001800718992001200736038665832000000931020130319051101.01 a0003-603X aFNSP116501 a0000009310 a19900101a19559999 ba0 aeng aUS aaha 10aAntitrust bulletin aNew YorkcFederal Legal Publicationsd1955- aTrimestriel aConcurrencexDroitxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=ATT&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 14 no. 1 (pri-1969) -vol. 54 no.4 (hiv-2009)cParisdMagasins/AnnexeeP 8° 26861 bvol. 1 (1955) -vol. 20 (1975) ; vol. 21 (1976) -vol. 30 (1985)cParisdMagasins/AnnexeeP Index 0603 aZPAY aexempb201105 aDEW 34301114cas0 2200349 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164110001600171200005400187210007500241430006200316606004400378710005100422801003000473801003000503801002300533802000700556856005800563856004600621955005500667972000900722992002100731992001200752037418300000090496720130319051101.01 a1139-5222 a05868798X accn7202/576X aissn11395222 a0000904967 a19980825a19929999 0fre 0103 ba0 aspa aES azk 10aAnuario CIPfCentro de Investigación para la Paz aBarcelonacIbariaaMadridcCentro de Investigación para la Pazd1992- 1tAnuario - Centro de Investigación para la Pazx1575-0108 aRelations internationalesxPériodiques02aCentro de investigación para la pazc(Madrid) 3aFRbAbesc20040912gAFNOR 3aFRbAbesc20040912gAFNOR 3aFRbISSNc20010829 a0u4 uhttp://www.fuhem.es/libreria/coleccion.aspx?c=40&a=244 zContenu : sommaires depuis le n° de 19971 b(2003)-(2004)cParis,bMagasins/AnnexeeP 8° 6843 aZPAY aGEO RQ Universel aDEW 32701092nas 2200325 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000023001412100068001643260012002324300061002446060035003056060042003406060054003827120062004368560040004988560062005389550074006009720009006749910018006839920025007019920028007269920012007540000269661000026966120130319051101.0 aFNSP932858 a0000269661 a19990406a19989999 ba0 aspa aVE aala 10aAnuario de derecho aMérida, VenezuelacCentro de investigaciones jurídicasd1998- aBiennal 1aAnuario de la Facultad de ciencias juridicas y politicas aDroityVenezuelaxPériodiques aDroityAmérique latinexPériodiques aScience politiqueyAmérique latinexPériodiques02aCentro de investigaciones jurídicas (Mérida, Venezuela)4 uhttp://saber.ula.ve/anuarioderecho/ zContenu : accès au texte intégral depuis le n°23, 20011 bno. 20 (1997/1998) -no. 24 (2002)cParisdMagasins/AnnexeeP 8° 2926 aZECH aexempb200904 aGEO RD4.20 Venezuela aGEO RD Amérique latine aDEW 34900926nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005400154210006400208326001100272606004900283710003000332711002600362856006300388856004500451955006700496972000900563991001700572992002300589992001200612036306584000001832820130319051101.01 a1130-4243 aFNSP150048 a0000018328 a19901123a19899999 ba0 aspa aES aaka 10aAnuario de derecho constitucional y parlamentario aMurciacAsamblea Regional, Servicio de Publicacionesd1989- aAnnuel aDroit constitutionnelyEspagnexPériodiques02aMurcie. Asamblea regional02aUniversidad de Murcia4 uhttp://www.um.es/dp-fundamentos/constitucional/anuario.php zContenu : sommaires depuis le n°1, 19891 bno. 1 (1989) -no 15 (2003)cParisdMagasins/AnnexeeP 8° 5680 aZGRA aexemp$201110 aGEO RA6.02 Espagne aDEW 34201242nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005600139210003700195326001100232430005500243517006100298607004900359607004900408710008300457856019900540955010200739972000900841992002800850992002200878992001200900992001600912040150208000009033720131217120131.01 a1014-0697 aFNSP397980 a19900101a19859999 f ba0 aspa aCL aaka 10aAnuario estadístico de América latina y el Caribe aSantiago de ChilecCEPALCd1985- aAnnuel 1aAnuario estadístico de América latinax0251-944510aStatistical yearbook for Latin America and the Caribbean aRégion caraïbexStatistiquesxPériodiques aAmérique latinexStatistiquesxPériodiques02aNations UniesbCommission économique pour l'Amérique latine et les Caraïbes40uhttp://www.eclac.org/cgi-bin/getProd.asp?xml=/deype/agrupadores_xml/aes250.xml&xsl=/agrupadores_xml/agrupa_listado.xslzAccés au texte intégral en espagnol et en anglais depuis l'édition 19971 b(1985) ; (1990) -(1998) ; (2001) -(2002) ; (2004) -(2006)cParisdMagasins/AnnexeeP 4° 1712 bis aZPAY aGEO RD Amérique latine aGEO RD3 Caraïbes aDEW 980 aDEW 310-31901167nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116200003600123210005400159326001100213452005900224530004300283607004000326676000800366710005000374801002100424856008700445955008100532955015000613972000900763991001800772992002300790992001200813992001600825038840162000007039220131220155244.01 a0066-5177 aFNSP323637 a19900101a18599999 ba0 aspa aES10aAnuario estadístico de España aMadridcInstituto nacional de estadísticad1859- aAnnuel 1tAnuario estadístico de España (Internet),x2255-039910aAnuario estadísticobEdición extensa aEspagnexStatistiquesxPériodiques a31402aInstituto nacional de estadísticac(Espagne) 3aFRbCCN0066-51774 uhttp://www.ine.es/inebaseweb/25687.dozAccès libre au texte intégral depuis 18581 b(1980) -(1988) ; (1995) ; (1999) -(2004)cParisdMagasins/AnnexeeP 4° 54611 b(1916) ; (1918) -(1920) ; (1925) -(1928) ; (1946) -(1948) ; (1956) ; (1959) -(1965) ; (1968) ; (1972) -(1979)cParisdMagasins/AnnexeeCOL4°0059 aZPAY aexempb201312 aGEO RA6.02 Espagne aDEW 946 aDEW 310-31901238cas0 2200373 450 00100100000000200110001000500170002101100140003803500140005203500170006603500170008303500150010010000410011510100080015610200070016410500180017111000160018920000540020521000580025932600110031742300610032853000500038960600400043971000500047980100300052980100230055980200070058285600550058985600370064495500550068195500910073699100200082799100170084703919325X000110685720130319051101.0 a0210-7120 a068783388 accn0210-7120 aissn02107120 a0001106857 a19800312b19411988 b0frey0103 ba0 aspa aES ay  azk 10aAnuario estadístico de España.iEdición manual aMadridcInstituto Nacional de Estadísticad1941-1988 aAnnuel 1tAnuario estadístico de España (Ed. extensa)x0066-517710aAnuario estadístico de Españab(Ed. manual) aEspagnexStatistiquesxPériodiques02aInstituto nacional de estadísticac(Espagne) 3aFRbAbesc20070319gAFNOR 3aFRbISSNc20020530 a0u4 uhttp://www.ine.es/prodyser/pubweb/anuarios_mnu.htm zAccès libre au texte intégral.1 b(1980) -(1987)cParisdMagasins/AnnexeeP 8° 52021 b(1950) -(1955) ; (1957) ; (1960) ; (1971) -(1979)cParisdMagasins/AnnexeeCOL12°0028 aPériobTP07 P8 aexemp$20111101092cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200005400156210004800210531003400258606005800292606004300350710005000393801003000443801003000473802000700503856004800510856008900558955007000647972000900717992002800726992001200754036357448000083007120130319051101.01 a1138-4824 accn1138-4824 a0000830071 a19980721a19979999 0frey0103 ba0 aspa aES azk 10aAnuario iberoamericano de justicia constitucional aMadridcCentro de Estudios Constitucionales 0aAnu. iberoam. justicia const. aDroit constitutionnelyAmérique latinexPériodiques aCours constitutionnellesxPériodiques02aCentro de estudios constitucionalesc(Madrid) 3aFRbAbesc20040926gAFNOR 3aFRbAbesc20040926gAFNOR a0U4 uhttp://revistas.cepc.es/revistas.aspx?IDR=8 zSommaires depuis le n°1, 1997 et texte intégral sauf pour les 4 dernières années1 avol. 6 (2002) -vol. 11 (2007)cParisdMagasins/AnnexeeP 8° 6828 aZCAD aGEO RD Amérique latine aDEW 34201018nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000032001552100028001873260011002156060042002266060044002686070050003127120078003628560079004408560068005199550052005879720009006399920021006489920023006699920012006920000038447000003844720130319051101.01 a1133-2743 aFNSP212925 a0000038447 a19900101a19909999 ba0 aspa aES aaka 10aAnuario internacional CIDOB aBarcelonacCIDOBd1990- aAnnuel aGéographie économiquexPériodiques aRelations internationalesxPériodiques aEspagnexRelations extérieuresxPériodiques02aCentre d'informació i documentació internacionalsc(Barcelone, Espagne)4 uhttp://www.cidob.org/es/publicaciones/anuarios/anuario_internacional_cidob zContenu : accès au texte intégral depuis 1998 (édition 1999)1 b(1989)-....cParisdMagasins/AnnexeeP 4° 6026 aZSAB aGEO RQ Universel aGEO RA6.02 Espagne aDEW 32701540nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200010500139210009300244326001600337436008800353436009000441440007900531530010500610601006800715601005300783710005200836856016800888955006001056972000901116991001801125992005701143992001401200040153460000014276220131112110656.01 a1015-034X aFNSP565653 a19941129b19861991 f ba0 afre aLU aaka 10aAperçu des travaux de la Cour de justice des Communautés européennes ... et audiences solennelles aLuxembourgcOffice des publications officielles des Communautés européennesd1986-1991 aIrrégulier 1aAperçu des travaux de la Cour de justice des Communautés européennes,x1013-4018 1tAudiences solennelles de la Cour de justice des Communautés europeénnes,x1013-4026 1tRapport annuel (Cour de justice des Communautés européennes),x1680-833900aAperçu des travaux de la Cour de justice des Communautés européennes ... et audiences solennelles02aUnion européennebTribunal de première instancexPériodiques02aUnion européennebCour de justicexPériodiques02aCommunautés européennesbCour de justice4070 uhttp://bookshop.europa.eu/fr/search/Filter?SearchParameter=%26%40QueryTerm%3Drapport%2Bannuel%2Bde%2Bla%2Bcour%2Bde%2Bjustice%26Languages%3Dfr_FR&SelectedLanguage=1 b(1986/1987) -(1990)cParisdMagasins/AnnexeeP 8° 4396 aZGRA aexempb201304 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 341.201129cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200002200180210003600202326001000238421004900248423004000297452004200337530003100379531002500410801003000435802000700465856010900472856010800581955008200689991002000771038666170000110424020130319051102.0 a0003-6846 accn0003-6846 a0001104240 a19770419a19699999k y0frey0103 ba0 aeng aGB ay 0  ar aaf 0 10aApplied economics aLondoncChapman and Halld1969- aMens. |tApplied economics letters (Print)x1350-4851 1tApplied financial economics (Print) 1tApplied economics (Online)x1466-428310aApplied economicsb(Print) 0aAppl. econ.b(Print) 3aFRbAbesc20051202gAFNOR a024 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713684000db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1969) -vol. 16 no. 6 (1984)cParisdMagasins/AnnexeeP 8° 2698 aPériobTP04 P800848nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003200163210003900195326001600234421005500250430003400305606004200339801001300381856002700394856003500421955006700456972000900523992001400532074148540000055443320130705112708.01 a1611-6607 a0000554433 a a20039999k fre ba0 aeng aDE a 0  ar aah z 0 10aApplied economics quarterly aBerlincDuncker und Humblotd2003- aTrimestriel 1tApplied economics quarterly supplement,x1612-2127 1tKonjunkturpolitik,x0023-3498 aConjoncture économiquexPériodiques 0aFRbFNSP4 uhttp://aeq.diw.de/aeq/ zContenu: sommaires depuis 20001 bvol. 49 no. 1 (2003) -....cParisdMagasins/AnnexeeP 8° 1882 aZPAY aDEW 330.900961nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000050001502100045002003000098002453260017003433360058003603370063004184520036004816060030005178010013005478560090005609550005006509920016006550000487130000048713020130319051102.0 a0000487130 a a19529999k fre 01 ba0 aeng aGB az aai z  adr 10aApplied statisticsb[Ressource électronique] aLondoncRoyal Statistical Societyd1952- aAccès au texte intégral (réservé aux sites de Sciences Po) jusqu'aux 4 dernières années a3 n° par an aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tApplied statisticsx(0035-9254) aStatistiquexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00359254.html1 r aDEW 310-31901191cas0 2200337 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123110001600141200007200157210006300229326001100292606005300303607005500356607005100411710005500462711006100517801003000578801001300608856009700621856003600718955005200754972000900806992002600815992001200841099523752000061684920130319051104.01 a1992-7622 a0000616849 a20060424a20029999k y0engy0103 ba0 aeng aUS a 0  aakaih 0 10aArab human development reportfUnited Nations Development Programme aNew York, NYcUNDP, Regional Bureau for Arab Statesd2002- aAnnuel aDéveloppement humainyPays arabesxPériodiques aPays arabesxConditions économiquesxPériodiques aPays arabesxConditions socialesxPériodiques02aProgramme des Nations Unies pour le développement02aFonds arabe pour le développement économique et social 3aFRbAbesc20060425gAFNOR 0aFRbFNSP4 uhttp://hdr.undp.org/xmlsearch/reportSearch?y=*&c=r%3AArab+States&t=*&lang=en&k=&orderby=year zAccès libre au texte intégral1 b(2002) -...cParisdMagasins/AnnexeeP 4° 7037 aZPAY aGEO RG.11 Pays arabes aDEW 95601153cas0 2200361 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109106000600127110001600133200006400149207001700213210004000230301004300270326001100313607005500324607003000379607005700409710002500466801003000491801003000521801003000551856005600581856006000637955004500697972000900742992002600751992001400777116291974000110431420130319051104.0 a0001104314 a20070712a20039999k y0frey0103 ba0 aeng aGB ay 0  ar aaka 0 14aThe Arab world competitiveness reportfWorld economic Forum 0a(2002-2003)- aNew YorkcPalgrave MacMilland2003- aDemande de numérotation ISSN en cours aAnnuel aPays arabesxConditions économiquesxPériodiques aPays arabesxPériodiques aPays arabesxpolitique et gouvernementxPériodiques02aWorld Economic Forum 3aFRbAbesc20070716gAFNOR 3aFRbAbesc20070713gAFNOR 3aFRbAbesc20070712gAFNOR4 uhttp://www.weforum.org/en/initiatives/gcp/index.htm zContenu : sommaires et résumés depuis l'édition 20031 b2005cParisdMagasins/annexeeP 4° 7188 aZPAY aGEO RG.11 Pays arabes aDEW 338.900840nls 2200289 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000054001642100054002182300024002723260011002966060033003076060036003408010013003768560074003898560042004639920033005059920012005380001026567000102656720130319051105.01 a1778-0772 a0001026567 a a20049999k fre 01 ba0 afre aFR ar aak z  adr 10aArabenerevue du GREPHb[Ressource électronique] aLyoncInstitut d'études politiques, GREPHd2004- aRevue électronique aAnnuel aEpistémologiexPériodiques aScience politiquexPériodiques 0aFRbFNSP4 uhttp://greph.univ-lyon2.fr/index.php?page=Araben-les-cahiers-du-GREPH zContenu : texte intégral depuis 2004 aGEO RS Sans aspect régional aDEW 32000848nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001200154210002600166326001200192607003000204607003400234856002800268856010900296955006300405972000900468992004300477992002600520992001200546039810739000001125620130319051105.01 a0983-1509 aFNSP124153 a0000011256 a19900730a19879999 ba0 afre aFR aafa 10aArabies aPariscArabiesd1987- aMensuel aPays arabesxPériodiques aAfrique du NordxPériodiques4 uhttp://www.arabies.com/ zContenu : sommaire et sélection d'articles du dernier numéro, un article par numéro depuis avr. 2003.1 bno. 1 (jan-1987) -....cParisdMagasins/AnnexeeP 4° 5179 aZCAD aGEO RG Afrique du Nord et Moyen-Orient aGEO RG.11 Pays arabes aDEW 95600916nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004800154210002400202326001200226530001900238606003200257606002400289710004000313801002100353856010300374955006400477972000900541992002200550992001400572992001600586039609359000000633420130319051105.01 a0518-2840 aFNSP110067 a0000006334 a19900101a19579999 ba0 afre aFR aafa 12aL'Archeerevue du Fonds social juif unifié aPariscArched1957- aMensuel12aL'ArchebParis aJuifsyFrancexPériodiques aJuifsxPériodiques02aFonds social juif unifiéc(France) 3aFRbCCN0518-28404 uhttp://www.arche-mag.info/zContenu : sommaire du dernier numéro, accès aux articles par thèmes1 bno. 28 (avr-1959) -....cParisdMagasins/AnnexeeP 4° 1682 aZCAD aGEO RA4.06 France aDEW 20-29 aDEW 305-30601155nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008100154210008600235326001900321421003700340430003400377434005400411530002400465606004400489801002100533856003500554856009100589955010300680972000900783992001200792992002500804039786056000000898720130319051105.01 a0769-0975 aFNSP115916 a0000008987 a19900101a19869999 ba0 afre aFR aafa 00aArchimagele magazine des nouvelles technologies en documention et archivage aPariscGIE Editions des nouvelles techniques en documentation et archivaged1986- a10 n°s par an 1aArchimag. Hors sériex1242-1367 1aArchibald magazinex0769-4547 1aLeMagazine de l'imagerie électroniquex0987-153510aArchimagbVincennes aSciences de l'informationxPériodiques 3aFRbCCN7014/72484 uhttp://www.archimag.presse.fr/ zContenu : sommaires depuis le numéro 90, janvier 1996 ; index thématique depuis 19981 bConservation limitée aux 2 dernières annéescParisdFonds professionnel (4e étage)eP 4° 5258 aZPAY aDEW 020 aGEO RA4.06 France 0101013nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154210002700190326001600217517003600233606004200269801003000311802000700341830012600348856004400474856003600518955006700554972000900621991002000630992002500650992001200675038667029000000930120130319051106.01 a0003-8911 aFNSP116470 a0000009301 a19900101a18869999 ba0 ager aDE aaha 10aArchiv des öffentlichen Rechts aTübingencMohrd1886- aTrimestriel10aArchiv für öffentliches Recht aDroit publicyAllemagnexPériodiques 3aFRbAbesc20040702gAFNOR a06 aVol.1, no.1, 1885 ---> vol.22, no.3/4, 1907; 1948/1949 (lac.), vol.78, no. 1, 1952 --->vol. 109, no 4, 1984 donné au CTL4 uhttp://www.mohr.de/jrnl/aoer/inhalt.htm zContenu : Sommaires depuis 20011 bvol. 110 no. 1 (1985) -...cParisdMagasins/AnnexeeP 8° 0557 aZCAD aPériobTP01 P8 aGEO RA5.01 Allemagne aDEW 34200910nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210002700183326001600210606003800226801002100264856010200285856003600387955006900423957007400492972000900566992003300575992001200608038667017000000930320130319051106.01 a0003-892X aFNSP116485 a0000009303 a19900101a19489999 ba0 ager aDE aahu 10aArchiv des Völkerrechts aTübingencMohrd1948- aTrimestriel aDroit internationalxPériodiques 3aFRbCCN0003-892X4 uhttp://www.mohr.de/zeitschriften/rechtswissenschaft/archiv-des-voelkerrechts-avr/zeitschrift.html zContenu : sommaires depuis 20001 bvol. 23 no. 1/2 (1985) -....cParisdMagasins/AnnexeeP 8° 00291 b(1948) -(1949) ; (1962) -(1963)cParisdMagasins/AnnexeeP Index 0129 aZCAD aGEO RS Sans aspect régional aDEW 34101210nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210003500188300004300223326001100266530003300277606005800310607002800368710002900396801002100425856012600446955009800572955005500670957007100725972000900796991001800805992002500823992001200848038840472000001000620130725151917.01 a0066-6505 aFNSP117783 a0000010006 a19900101a19619999 ba0 ager aDE aaku 10aArchiv für Sozial geschichte aBonncNeue Gesellschaftd1961- aVol.34, 1994 - vol.37, 1997 épuisés. aAnnuel00aArchiv für Sozialgeschichte aSciences socialesxRechercheyAllemagnexPériodiques aAllemagnexPériodiques02aFriedrich-Ebert-Stiftung 3aFRbCCN0066-65054 uhttp://library.fes.de/afs-online/index.htmlzAccès au texte intégral en ligne depuis 1961 avec un embargo de trois ans.1 b(1980) -....cParisdMagasins/AnnexeeP 8° 5535wManque no. 34, 1994 à 37, 1997 : épuisés1 b(1962) -(1979)cParisdMagasins/AnnexeeCOL8°33961 bVerzeichnis : (1961) -(1980)cParisdMagasins/AnnexeeP Index 0651 aZPAY aexempb201109 aGEO RA5.01 Allemagne aDEW 30001057nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210003400182210004500216300005600261326001600317606003000333856010300363856010800466955006700574957007300641972000900714991001800723992001400741039219720000000998720140109161626.01 a0003-9632 aFNSP117754 a0000009987 a19900620a19239999 ba0 afre aFR aaha 10aArchives de philosophie aaPariscBeauchesned1923-2001 aPariscAssociation Centre Sèvresd2002- aSuspendu entre le vol. 18, 1952 et le vol. 19, 1955 aTrimestriel aPhilosophiexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-archives-de-philosophie.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 41 no. 1 (1978) -....cParisdMagasins/AnnexeeP 8° 40361 bvol. 19 (1956) -vol. 54 (1991)cParisdMagasins/AnnexeeP Index 0688 aZPAY aexempb201103 aDEW 10-1400973nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210002800191210002500219326001100244606003700255676000800292801002100300856004200321856005000363955006300413955006100476955007200537972000900609991001700618992001200635001012770000000603120130319051106.01 a0066-6564 aFNSP109558 a0000006031 a19900101a19529999 ba0 afre aFR aaku 10aArchives de philosophie du droit aPariscSireyd1952-1999 aPariscDallozd2000- aAnnuel aDroitxPhilosophiexPériodiques a340 3aFRbCCN0066-65644 uhttp://www.philosophie-droit.asso.fr/ zAccès aux sommaires et résumés depuis 19911 bLes 3 dernières annéescParisd30, 3ème étageeDEW 3401 bvol. 25 (1980) -....cParisdMagasins/AnnexeeP 8° 51931 bvol. 1 (1952) -vol. 24 (1979)cParisdMagasins/AnnexeeCOL 4° 0211 aZPAY aexemp$201106 aDEW 34001045nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210002500191326001100216606003900227606004700266710005800313801002100371856011200392856010800504955005800612972000900670991001800679992002200697992001200719013307320000000603420140110122110.01 a0242-5637 aFNSP109561 a0000006034 a19900101a19759999 ba0 afre aFR aaku 10aArchives de politique criminelle aPariscPedoned1975- aAnnuel aDroit pénalyFrancexPériodiques aPolitique criminelleyFrancexPériodiques02aCentre de recherches de politique criminellec(Paris) 3aFRbCCN0242-56374 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-archives-de-politique-criminelle.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno.1 (1975) -....cParisdMagasins/AnnexeeP 8° 3849 aZPAY aexempb201001 aGEO RA4.06 France aDEW 34001627nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004800154210002300202300004900225326001600274430005700290606002700347606003600374710005900410711005900469801002100528856002600549856007500575856002800650856013600678856012300814856010800937955007201045957007101117972000901188991001801197992001401215039526550000000944520140109162703.01 a0335-5985 aFNSP116753 a0000009445 a19900101a19739999 ba0 amul aFR aahu 10aArchives de sciences sociales des religions aPariscCNRSd1973- aChange de numérotation en cours de parution aTrimestriel 1aArchives de sociologie des religionsxISSN 0003-9659 aReligionxPériodiques aSciences socialesxPériodiques02aEcole des hautes études en sciences socialesc(Paris)02aCentre national de la recherche scientifiquec(France) 3aFRbCCN0335-59854 uhttp://www.persee.fr/ zContenu : Accès libre au texte intégral des numéros de 1956 à 19994 uhttp://assr.revues.org/ zContenu : texte intégral depuis 2000, sommaires et résumés pour les numéros les plus récents ; index auteurs et par mots-clés4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-archives-de-sciences-sociales-des-religions.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 18 no. 35 (jan-1973) -....cParisdMagasins/AnnexeeP 8° 14711 bno. 53 (1982) -no. 64 (1987)cParisdMagasins/AnnexeeP Index 0211 aZCAD aexempb201202 aDEW 20-2900882cas0 2200241 450 00100100000000200110001000500170002103500170003803500150005510000410007010100080011110200070011910600060012611000160013220001140014821000370026251700640029953000270036380100300039085601450042095500550056599100200062003746650X000109457220130319051106.0 accn0117/5998 a0001094572 a19830101b18611914 0frey0103 zz0 afre aFR ar aau 10aArchives diplomatiqueserecueil mensuel de diplomatie, d'histoire et de droit internationalfdir. Louis Jacob aPariscH. Championc[puis] Amyot10aArchives diplomatiqueserecueil de diplomatie et d'histoire00aArchives diplomatiques 3aFRbAbesc20070531gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb32701365h/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1861-1913)1 b(1861) -(1914)cParisdMagasins/AnnexeeP 8° 0832 aPériobTP02 P801412nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200011300154207002500267210002700292210004700319326002500366326002600391510004100417510003400458606002900492801002100521856004200542856006100584856010300645856010800748955006600856957007700922972000900999991001801008992001201026039219763000000982520131025114632.01 a0003-9756 aFNSP117337 a0000009825 a19900101a19609999 ba0 amul aFR aaia 10aArchives européennes de sociologied= European journal of sociologyd= Europäisches Archiv für Soziologie 1aVol. 1, no.1 (1960)- aPariscPlond1960-1976 aaLondoncCambridge University Pressd1977- a3 n°s par anb2001- aSemestrielb1960-200010aEuropäisches Archiv für Soziologie10aEuropean journal of sociology aSociologiexPériodiques 3aFRbCCN0003-97564 uhttp://uk.cambridge.org/journals/eur/ zContenu : sommaire, depuis le volume 37, numéro 1, 19914 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=1092624 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1960) -....cParisdMagasins/AnnexeeP 8° 18891 b1960-1999zTable générale : se trouve à la fin du vol.40, no. 2, 1999 aZPAY aexempb201010 aDEW 30101345cas0 2200361 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002000139210006700159210003300226210003700259305011900296326002200415517005800437606004200495710004600537801003000583801003000613801002300643802000700666856009500673856010800768955007100876972000900947992001500956992001200971039219771000105573420130319051106.01 a0003-9837 a0001055734 a19890110a19659999k y0frey0103 ba0 afre aFR aaja uu 10aArchives juives aPariscCommission française des archives juivesd1965-[1993?] aPariscLiana Levid1994-1997 aPariscLes Belles Lettresd1998- aPubliée de 1965 à 1991 sous forme d'un bulletin ; a été rénovée dans sa présentation et son contenu en 1994 aSemestrielb1994-10aArchives juiveserevue d'histoire des Juifs de France aJuifsyFrancexHistoirexPériodiques02aCommission française des archives juives 3aFRbAbesc20060719gAFNOR 3aFRbAbesc20060719gAFNOR 3aFRbISSNc20050729 a074 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-archives-juives.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 39 no. 1 (jan-2006) -....cParisdMagasins/AnnexeeP 8° 6930 aZPAY aGEO RA4.06 aDEW 90901163cas0 2200289 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200009300148210003500241215003100276530009300307607003800400676000800438712007600446801003000522856028000552945001400832955000900846991001800855039125629000081968820130319051107.0 accn7128/7078 a0000819688 a19930326b18XX18XX 0frey0103 zz0 afre aFR ar aak 10aArchives statistiques du Ministère des travaux publics, de l'agriculture et du commerce aPariscImprimerie royaled1837 a1 vol. (XVI-306 p.)d35 cm00aArchives statistiques du Ministère des travaux publics, de l'agriculture et du commerce aFrancexStatistiquesz19e siècle a33001aFrancebMinistère des travaux publics, de l'agriculture et du commerce 3aFRbAbesc20020116gAFNOR4 uhttp://books.google.fr/books?id=G8lMAAAAcAAJ&dq=%22Archives%20statistiques%20du%20Minist%C3%A8re%20des%20travaux%20publics%2C%20de%20l'agriculture%20et%20du%20commerce%22&hl=fr&pg=PR5#v=onepage&q&f=falsezAccès libre au texte intégral. Document numérisé sur Google Livres bRFOL.04531 r1837 aSAFIGbTA006C01029nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002600139210004900165326002300214530002600237606004400263607003500307710002700342856005200369856007500421955006800496955006000564972000900624991001800633992002800651992001200679992001200691059715502000020801920140108155917.01 a0328-3151 aFNSP754604 a19900101a19959999 ba0 aspa aAR aaha 10aArchivos del presente aBuenos AirescFundación Foro del surd1995- aTrimestrielb1995-10aArchivos del presente aRelations internationalesxPériodiques aAmérique latinexPériodiques02aFundacion Foro del sur4 uhttp://www.forosur.com.ar/pag_publicaciones.htm zContient : sommaires et résumés depuis le no.1, 1995 au no. 41, 20061 bno. 1 (1995) -no. 38 (2005)cParisdMagasins/AnnexeeP 8° 63001 bno. 39 (2006) -....cParisdMagasins/AnnexeeP 4° 7147 aZPAY aexempb201309 aGEO RD Amérique latine aDEW 980 aDEW 32701074nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171100016001242000057001402100033001973260015002305300028002456060040002736070028003136760008003418010021003498560098003709550069004689550078005379570069006159720009006849910018006939920025007119920012007360000009827000000982720140110114519.01 a0004-1157 aFNSP117339 a19900101a19599999 ba0 ager aDE aaga 14aDas ArgumenteBerliner Hefte für Politik und Kultur aHamburgcDas Argumentd1959- aBimestriel01aDas Argument‎bBerlin aSociologieyAllemagnexPériodiques aAllemagnexPériodiques a301 3aFRbCCN0004-11574 uhttp://www.argument.de/wissen_index_inhalt.htmlzContenu : Sommaires depuis le n°249 en 20031 bLes 3 dernières annéescParisd27, Salle 5ème étageeDEW 3011 b14 ème an. no 11/12 (dec-1972) -....cParisdMagasins/AnnexeeP 8° 31761 bno 22 (1962) -no 86 (1974)cParisdMagasins/AnnexeeP Index 0244 aZCAD aexempb200905 aGEO RA5.01 Allemagne aDEW 94301672nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002900139210005300168326001600221452005200237517002700289530002900316606003900345606003300384606006000417676000800477710007100485801002100556856017500577856021300752856023200965955007001197972000901267991001801276992001601294038899639000000994120140110154959.01 a0095-327X aFNSP117607 a19900101a19749999 ba0 aeng aUS aaha 10aArmed forces and society aCabin John, M.DcArmed forces and societyd1974- aTrimestriel 1tArmed forces and society (Online)‎x1556-084810aArmed forces & society00aArmed forces and society aSociologie militairexPériodiques aForces arméesxPériodiques aRelations pouvoir civil-pouvoir militairexPériodiques a35502aInter-University Seminar on Armed Forces and Societyc(Etats-Unis) 3aFRbCCN0095-327X4 uhttps://acces-distant.sciences-po.fr/fork?http://afs.sagepub.com/zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=availablezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=AFS&site=ehost-livezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (nov-1974) -....cParisdMagasins/AnnexeeP 8° 4044 aZSAB aexempb200301 aDEW 355-35901428nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210003200182300005100214326001800265440004100283601006300324607005900387607005700446710008300503801002100586856012800607856010800735955009000843957006400933972000900997991001801006992002801024992001401052039207501000000974420130826124730.01 a0217-4472 aFNSP117219 a0000009744 a19900101b19842012 ba0 aeng aSG aaia 10aAsean economic bulletin aSingaporecISEASd1984-2012 aASEAN = Association of Southeast Asian Nations a3 n°s par an 1tJournal of Southeast Asian economies02aAssociation des nations de l'Asie du Sud-EstxPériodiques aAsie du Sud-EstxConditions économiquesxPériodiques aAsie du Sud-EstxPolitique économiquexPériodiques02aInstitute of Southeast Asian Studies. ASEAN Economic Research Unit (Singapour) 3aFRbCCN0217-44724 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=AEB&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jul-1984) -vol. 29 no. 3 (dec-2012)cParisdMagasins/AnnexeeP 8° 48561 bvol. 1/10 (1984/1994)cParisdMagasins/AnnexeeP Index 0735 aZPAY aexempb201011 aGEO RI2 Asie du Sud-Est aDEW 330.901176nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210002700193326002300220326002800243326002600271606004500297606003900342710007300381856010300454856010800557955007000665972000900735991001800744992003900762992002100801992001600822039207528000007036620130319051111.01 a0217-4561 aFNSP323598 a0000070366 a19900101a19839999 ba0 aeng aSG aaha 10aAsia Pacific journal of management aLondoncLongmand1983- aTrimestrielb2001- a3 n° par anb1999-2000 aSemestrielb1983-1998 aGestion d'entrepriseyAsiexPériodiques aGestion d'entreprisexPériodiques02aNational University of SingaporebFaculty of Business Administration4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=1065894 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 9 no. 1 (avr-1992) -....cParisdMagasins/AnnexeeP 8° 5863 aZPAY aexempb201112 aGEO RI Asie (sans Asie de l'Ouest) aGEO RQ Universel aDEW 650-65801129nas 2200337 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200002400148210002800172326001500200530003300215607002300248607003800271676000800309710005600317801001300373856021400386955006600600955007000666972000900736991001800745992001200763992001600775036732508000040201020130926162616.01 a1343-9006 a a20009999k fre ba0 aeng aJP a 0  ar aaj z 0 10aAsia-Pacific review aAbingdoncCarfaxd1994- aSemestriel00aAsia-Pacific reviewb(Tokyo) aAsiexPériodiques aPacifique (région)xPériodiques a67602aInstitute for International Policy Studiesc(Japon) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713405589db=allzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9901 bvol. 6 no. 1 (mai-1999) -....cParisdMagasins/AnnexeeP 8° 6577 aZSAB aexempb201309 aDEW 950 aGEO RH Asie01263nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210002900181326001800210430003400228530003600262607003800298710006300336856007400399856007400473856012800547856010800675955006400783972000900847991001800856992003500874992001600909036748897000020040120130319051112.01 a1360-7456 aFNSP731595 a0000200401 a19900101a19969999 ba0 aeng aNZ aaia 10aAsia Pacific viewpoint aOxfordcBlackwelld1996- a3 n°s par an 1aPacific viewpoint,x0030-8978 0aAsia Pacific viewpointb(Print) aPacifique (région)xPériodiques02aVictoria University of WellingtonbDepartment of Geography4 uhttp://www.blackwellpublishers.co.uk/journal.asp?ref=1360-7456&site=1 zContenu : sommaires et résumés depuis le Vol. 38, n°1, August 19974 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=D80&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 37 no. 1 (avr-1996) -....cParisdMagasinseP 8° 1938 aZSAB aexempb201002 aGEO RJ Océanie, Pacifique Sud aDEW 990-99601193cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200007300180207002300253210006600276326001500342606004200357607005000399607002300449710005200472801003000524801002300554802000700577856008600584856007000670955006300740992001600803992001200819113634552000113075220130319051112.01 a1559-0968 aissn15590968 a0001130752 a20070329a20069999k y0frey0103 ba0 aeng aUS ay 0  ar aaja 0uu 10aAsia policyfNational Bureau of Asian Research (Seattle, Washington) 0aNo. 1 (Jan. 2006)- aSeattleaWashingtoncNational Bureau of Asian Researchd2006- aSemestriel aScience politiqueyAsiexPériodiques aAsiexPolitique et gouvernementxPériodiques aAsiexPériodiques02aNational Bureau of Asian Researchc(Etats-Unis) 3aFRbAbesc20080212gAFNOR 3aFRbISSNc20070329 a014 uhttps://acces-distant.sciences-po.fr/fork?http://asiapolicy.nbr.org/archives.html zContenu : accés au texte intégral depuis le n° 1, Janvier 20061 bno. 1 (jan-2006) -....cParisdMagasins/AnnexeeP 8° 7007 aGEO RH Asie aDEW 95001263nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005500154210005000209210006100259210003800320326001600358430004400374530003400418607005000452607002300502710005800525801002100583856002800604856014400632955007000776972000900846991001800855992001600873992001200889038896001000000944420140108121114.01 a0092-7678 aFNSP116752 a0000009444 a19900101a19739999 ba0 aeng aUS aaha 10aAsian affairsfAmerican-Asian Educational Exchange aWashington, D.C.cHeldref Publicationsd1979- aNew YorkcAmerican-Asian Educational Exchanged1974-1979 aNew YorkcCrane Russakd1973-1974 aTrimestriel 1aSoutheast Asian perspectivesx0042-577X 0aAsian affairsbNew York, N.Y. aAsiexPolitique et gouvernementxPériodiques aAsiexPériodiques02aHelen Dwight Reid Educational Foundation (Washington) 3aFRbCCN0092-76784 uhttp://www.heldref.org/ zInformations sur la revue et recherche possible par mot-clé, auteur, titre. L'accès au texte intégral depuis 1994 est un service payant.1 bvol. 1 no. 1 (sep-1973) -....cParisdMagasins/AnnexeeP 8° 3342 aZSAB aexempb201302 aGEO RH Asie aDEW 95001129nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004700154210002400201326001700225430005900242530002600301607002300327710004100350801002100391856010900412856010800521856003700629955007000666972000900736991001800745992001600763992001200779039397750000000995420140108120458.01 a0306-8374 aFNSP117626 a0000009954 a19900101a19709999 ba0 aeng aGB aaia 10aAsian affairsfRoyal central Asian society aLondoncRSAAd1970- a3 nos par an 1aJournal of the Royal Central Asian Society,x0035-8789 0aAsian affairsbLondon aAsiexPériodiques02aRoyal Society for Asian Affairs (GB) 3aFRbCCN0306-83744 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713686128db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.cdrb.org/archives.php1 bvol. 1 no. 1 (fev-1970) -....cParisdMagasins/AnnexeeP 8° 1110 aZSAB aexempb201302 aGEO RH Asie aDEW 95001045nas 2200301 i 450 002001100000005001700011011001400028035001500042100004100057101000800098102000700106110001600113200004100129210004200170326001100212517004300223601005300266607004800319710003900367856012100406955005500527955005500582955005500637972000900692992001600701992001400717992001200731000006165320130717095030.01 a0116-1164 aFNSP282044 a19900101a19689999 ba0 aeng aPH aaka 10aAsian Development Bank annual report aManilacAsian Development Bankd1968- aAnnuel10aAnnual report - Asian Development Bank02aBanque asiatique de développementxPériodiques aAsiexConditions économiquesxPériodiques02aBanque asiatique de développement4 uhttp://www.adb.org/Documents/Reports/Annual_Report/default.asp#contentszAccès libre au texte intégral depuis 19681 b(1999) -(2004)cParisdMagasins/AnnexeeP 4° 70021 b(1985) -(1998)cParisdMagasins/AnnexeeP 8° 66711 b(1970) -(1984)cParisdMagasins/AnnexeeCOL4°3372 aZGRA aGEO RH Asie aDEW 330.9 aDEW 33200904nas 2200265 i 450 002001100000005001700011011001400028035001500042100004100057101000800098102000700106110001600113200003000129210004200159300007500201326001100276530003000287607004800317712003900365856010800404955008700512972000900599992001600608992001400624000000855920130530100555.01 a0117-0481 aFNSP115024 a19900605a19899999 f ba0 aeng aPH aaka 10aAsian development outlook aManilacAsian Development Bankd1989- a2012, dernière édition papier, voir ensuite en version électronique aAnnuel00aAsian development outlook aAsiexConditions économiquesxPériodiques02aBanque asiatique de développement4 uhttp://www.adb.org/publications/series/asian-development-outlookzAccès au texte intégral depuis 19971 b(1989)-(2009) ; (2012)cParisdMagasins/AnnexeeP 4° 5916wManquants : 2010, 2011 aZPAY aGEO RH Asie aDEW 338.900811nls 2200265 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200009300124210004200217230002400259326001100283607004800294710003900342801001300381830000800394856010800402955000500510992001600515992001400531000124490120130530102754.0 a a19979999k fre 01 ba0 aeng aPH ar aak z  adr 10aAsian development outlookb[Ressource électronique]fBanque asiatique de développement aManilacAsian Development Bankd1997- aRevue électronique aAnnuel aAsiexConditions économiquesxPériodiques02aBanque asiatique de développement 0aFRbFNSP acdj4 uhttp://www.adb.org/publications/series/asian-development-outlookzAccès au texte intégral depuis 19971 r aGEO RH Asie aDEW 338.901402nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210002900181326001600210517005100226530003400277607005900311607005800370710003600428856012800464856010800592856010100700856010800801955009000909972000900999992004201008992001401050058481583000019201520131127152532.01 a1351-3958 aFNSP708514 a0000192015 a19900101a19879999 ba0 aeng aHK aaha 10aAsian economic journal aOxfordcBlackwelld1987- aTrimestriel10aJournal of the East Asian Economic Association 0aAsian economic journalbPrint aAsie du Sud-EstxConditions économiquesxPériodiques aAsie orientalexConditions économiquesxPériodiques02aEast Asian Economic Association4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=BM4&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101070 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 8 no. 3 (nov-1994) -vol. 26 no. 4 (dec-2012)cParisdMagasins/AnnexeeP 8° 6246 aZPAY aGEO RI3 Asie orientale, Asie centrale aDEW 330.901269nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002000163210006000183326002000243326002600263606003400289801001300323856020300336856010800539856010900647856010800756955007000864972000900934992001200943048883476000038796820130319051112.01 a1463-1369 a0000387968 a a20009999k fre ba0 aeng aGB a 0  ar aai z 0 10aAsian ethnicity aBasingstokecCarfax Publishing, Taylor & Francisd2000- a3 n°/anb2003- aSemestrielb2000-2002 aMinoritesyAsiexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://web.ebscohost.com/ehost/detail?vid=1&hid=14&sid=481f1f1b-5b56-4f63-9361-de40bb0a0fea%40sessionmgr12&bdata=JnNpdGU9ZWhvc3QtbGl2ZQ%3d%3d#db=sih&jid=B85 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713402859db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-2000) -....cParisdMagasins/AnnexeeP 8° 6565 aZSAB aDEW 95001103nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210004300193326001500236530003900251606004200290607005000332712007000382856010900452856010800561955008100669991001900750992001600769992001600785039208109000011337520130319051112.01 a0218-5377 aFNSP477053 a0000113375 a19900101a19939999 ba0 aeng aSG aaja 10aAsian journal of political science aSingaporecTimes Academic Pressd1993- aSemestriel00aAsian journal of political science aScience politiqueyAsiexPériodiques aAsiexPolitique et gouvernementxPériodiques02aNational University of SingaporebDepartment of Political Science4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t741771145db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1993) -vol. 7 no. 1 (1999)cParisdMagasins/AnnexeeP 8° 5999 aexempb2012/11 aGEO RH Asie aDEW 320-32101048nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007800154210007300232326002200305326002800327326002600355607003300381710004700414856005300461856007200514955006700586972000900653991001800662992004200680992001200722039302180000017532520140108121545.01 a0258-9184 aFNSP658982 a0000175325 a19900101a19779999 ba0 aeng aKR aaja 10aAsian perspectivefInstitute for Far Eastern Studies, Kyungnam University aSeoulcInstitute for Far Eastern Studies, Kyungnam Universityd1977- aTrimestrielb1999 a3 nos par anb1997-1998 aSemestrielb1977-1996 aAsie orientalexPériodiques02aInstitute for Far Eastern Studies (Séoul)4 uhttp://www.asianperspective.org/past-issues.html zContenu : articles en texte intégral depuis le vol. 27, no 1, 20031 bvol. 18 no. 2 (1994) -....cParisdMagasins/AnnexeeP 8° 6200 aZSAB aexempb201211 aGEO RI3 Asie orientale, Asie centrale aDEW 95001335cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200002800180207005700208210004300265300008500308326001600393517003000409517000800439606004200447607005000489607002300539801003000562801002300592802000700615856010400622856010800726955008700834992001600921992001200937136978444000117930120130319051112.01 a1943-0779 aissn19430779 a0001179301 a20091001a20092011k y0frey0103 ba0 aeng aUS ay 0  ar aaha 0uu 10aAsian politics & policy 0aVol. 1, no. 1 (Jan./Mar. 2009)-vol.3 no.4 (oct-2011) aBoston, MAcWiley-Blackwelld2009-2011 aDernière édition papier 2011 ; à partir de 2012, version en ligne uniquement. aTrimestriel10aAsian politics and policy10aAPP aScience politiqueyAsiexPériodiques aAsiexPolitique et gouvernementxPériodiques aAsiexPériodiques 3aFRbAbesc20091117gAFNOR 3aFRbISSNc20091105 a014 uhttps://acces-distant.sciences-po.fr/fork?http://www3.interscience.wiley.com/journal/122351904/home zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-2009) -vol.3 no.4 (oct-2011)cParisdMagasins/AnnexeeP 8° 7109 aGEO RH Asie aDEW 95000876nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000180015421000450017232600150021760700230023271000400025580100210029585600570031685600800037395500960045397200090054999200160055899200120057403939087X000000999820130319051112.01 a0304-8675 aFNSP117769 a0000009998 a19900101a19739999 ba0 aeng aHK aaga 10aAsian profile aHong KongcAsian Research Serviced1973- aBimestriel aAsiexPériodiques02aAsian Research Servicec(Hong Kong) 3aFRbCCN0304-86754 uhttp://www.asianresearchservice.com/Asianprofile.htm zContenu : sommaires depuis le n° 1, 1973, jusqu' aux articles à paraître1 bvol. 1 no. 1 (aug-1973) ; vol. 5 no. 1 (fev-1977) -....cParisdMagasins/AnnexeeP 4° 4094 aZPAY aGEO RH Asie aDEW 95000977nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001900139210003300158326001100191530001900202607003300221710005500254856010900309856010800418955007800526972000900604991001800613992001600631992001600647992001200663040021459000002398520130911120708.01 a0911-3843 aFNSP163771 a19910205b19792000 ba0 aeng aGB aaka 10aAsian security aLondoncBrassey'sd1979-2000 aAnnuel00aAsian security aAsiexDéfensexPériodiques02aResearch Institute for Peace and Securityc(Tokyo)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713727944db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1979)-(2000)cParisdMagasins/AnnexeeP 8° 4400wManquants : 1986, 1987 aZCAD aexempb201106 aGEO RH Asie aDEW 355-359 aDEW 32701281nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210002400179326002300203326002900226430006800255607002300323710004300346856010300389856010800492856010900600856010800709955007100817972000900888991001800897992001600915992001200931040248232000001327920130319051112.01 a1035-7823 aFNSP134189 a0000013279 a19900919a19909999 ba0 aeng aAU aaha 10aAsian studies review aSydneycASAAd1990- aTrimestrielb1998- a3 n°s par anb1990-1997 1aReview - Asian Studies Association of AustraliaxISSN 0314-7533 aAsiexPériodiques02aAsian Studies Association of Australia4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=109895 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713613499db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 13 no. 3 (avr-1990) -....cParisdMagasins/AnnexeeP 8° 4831 aZCAD aexempb201010 aGEO RH Asie aDEW 95001495nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001700154210006000171326002200231326002300253430003400276607002300310676000800333801002100341856010300362856010800465856009000573856010800663856006100771856009000832955006600922955006600988972000901054991001801063992001601081992001201097038670151000000321420130319051112.01 a0004-4687 aFNSP102548 a0000003214 a19900101a19619999 ba0 aeng aUS aagu 10aAsian survey aBerkeley, Calif.cUniversity of California Pressd1961- aBimestrielb1999- aMensuelb1961-1998 1aFar Eastern surveyx0362-8949 aAsiexPériodiques a950 3aFRbCCN0004-46874 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=106438 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00044687.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po zPour Far Eastern survey , via JSTOR, voir URL ci-dessous uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03628949.html1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9501 bvol. 1 no. 1 (1961) -....cParisdMagasins/AnnexeeP 8° 1932 aZCAD aexempb201009 aGEO RH Asie aDEW 95001306nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000048001552100046002033260011002494300091002605170083003516060051004347120056004857120055005418560182005968560085007789550054008639720009009179920022009269920016009489920016009640000107936000010793620130319051112.01 a0758-6523 aFNSP456756 a0000107936 a19900101a19819999 ba0 afre aFR aaka 10aAspects de la criminalité en France en ... aPariscLa Documentation françaised1981- aAnnuel 1aLa criminalité en France d'après les statistiques de la police judiciairex0766-563610aAspects de la criminalité et de la délinquance constatées en France en..... aStatistiques criminellesyFrancexPériodiques02aFrancebDirection générale de la police nationale02aFrancebDirection centrale de la police judiciaire4 uhttp://larecherche.service-public.fr/df/oxide?criteriaContent=aspects+de+la+criminalite+en+france&page=resultsdfA&action=launchsearch&DynRubrique=&DynCorpus=&DynDomain=DFgeneral4 zAccés au texte intégral via le site de la Documentation française depuis 20041 b(1982)-(2002)cParisdMagasins/AnnexeeP 4° 3446 aZPAY aGEO RA4.06 France aDEW 310-319 aDEW 364-36501372cas0 2200373 450 00100100000000200110001000500170002101100140003803500140005203500170006603500170008303500150010010000410011510100080015610200070016410600060017111000160017720000290019321001840022232600120040643500710041844000430048951200460053251700470057853000380062571000590066380100300072280100230075280200070077585601260078295500550090899100200096399100150098303855433X000109531120130319051114.0 a1149-2708 a070619514 accn1149-2708 aissn11492708 a0001095311 a19900417b18761908uuuy0frey0103 ba0 afre aFR ar aafu uu 12aL'Association catholique aPariscSecrétariat général de l'Oeuvre des cercles catholiques d'ouvriersd1876-1908aParisc[s.n.]d1891-1897aPariscX. Rondelet et Cied1898-1901aPariscE. Vitted1901-1908 aMensuel |tBulletin de l'Oeuvre des cercles catholiques d'ouvriersx1149-2740 1tLe Mouvement social (Reims)x1149-271610aRevue des questions sociales & ouvrières10aRevue des questions sociales et ouvrières12aL'Association catholiqueb(Paris)02aOeuvre des cercles catholiques d'ouvrierscFrance4070 3aFRbAbesc20070416gAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/bpt6k1153963zAccès libre au texte intégral. Juillet-déc. 1890 numérisé sur Gallica1 b(1891) -(1908)cParisdMagasins/AnnexeeP 8° 0980 aPériobTP02 P8 anumer0 (?)01050nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003300139210008000172326001100252530003300263606005000296710005600346801002100402830005200423856012200475955005500597972000900652991001800661992002500679992001600704992001600720039840034000007040020131217095844.01 a0986-1580 aFNSP323648 a19900101b19832009 ba0 afre aFR abku 12aL'Assurance française en... aParis‎cFédération française des sociétés d'assurances‎d1983-2009 aAnnuel02aL'Assurance française en... aAssuranceyFrancexStatistiquesxPériodiques02aFédération française des sociétés d'assurances 3aFRbCCN0986-1580 a1983-1998: collection envoyée au CTles en 20134 uhttp://www.ffsa.fr/sites/jcms/fp_8800/le-rapport-annuel-ffsazAccès au texte intégral du rapport annuel depuis 19951 b(1983) -(1998)cParisdMagasins/AnnexeeP 4° 5333 aZGRA aexempb201306 aGEO RA4.06 France 01 aDEW 360-363 aDEW 310-31901095cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200001800180207003300198210003500231326001800266452003800284606003700322801003000359801002300389802000700412856010900419856010800528955007000636972000900706992001200715992001800727105727326000108115320130319051114.01 a1477-7622 aissn14777622 a0001081153 a20040405a20039999k y0frey0103 ba0 aeng aGB a 0  ar aaia 0uu 10aAstropolitics 0aVol. 1, no. 1 (summer 2003)- aLondoncFrank Cass & Cod2003- a3 n°s par an 1tAstropolitics (Online)x1557-2943 aPolitique spatialexPériodiques 3aFRbAbesc20060719gAFNOR 3aFRbISSNc20060706 a024 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713634457db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 4 no. 1 (mar-2006) -....cParisdMagasins/AnnexeeP 8° 6959 aZSAB aDEW 327 aGEO RR Espace01053nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210004700179326001200226430005500238530002700293856003200320856008600352856010300438856010800541955009300649972000900742992001200751060380152000011011920130319051115.01 a1072-7825 aFNSP464786 a0000110119 a19900101a19939999 ba0 aeng aUS aafa 04aThe Atlantic monthly aBoston, Mass.cAtlantic Monthly Co.d1993- aMensuel 1aThe Atlantic (Boston, Mass. 1981),xISSN 0276-907710aAtlantic monthlyb19934 uhttp://www.TheAtlantic.com/ zContenu : texte intégral depuis 1995 ; édition différente de l'édition papier4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=7113354 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 272 no. 5 (nov-1993) -vol. 302 no. 5 (dec-2008)cParisdMagasins/AnnexeeP 4° 1662 aZPAY aDEW 00100690nas 2200385 i 450 002001100000005001700011011000500028100004100033101000500074102000500079106000600084110001600090135001800106200003200124207000500156210000500161230000500166300000500171326000500176330000500181336000500186337000500191600000500196601000500201606000500206607000500211676000500216710000500221712000500226801001300231830000500244856004500249955000500294992000500299000124536720130613162810.0 a a a 9999k fre 01 ba0 a a ar aa z  ad 10aAtlas of global development 1a a a a a a a a a a a a a a a 0aFRbFNSP a4 uhttp://data.worldbank.org/products/atlas1 r a01347cas0 2200385 450 00100100000000200110001000500170002103500150003810000410005310100080009410200070010210500180010910600060012711000160013320001380014921000280028730100430031532600110035843000320036960600430040160600430044460600380048760600590052567600100058471000700059480100300066480100150069480100150070985601220072495500550084697200090090199200210091099200140093199200160094511572981X000110619620130619101641.0 a0001106196 a20070627a20079999 f0frey0103 ba0 aeng aUS ay  ar aak 00aAtlas of global developmentea visual guide to the world's greatest challengesfInternational Bank for Reconstruction and Development aGlasgowcCollinsd2007- aDemande de numérotation ISSN en cours aAnnuel 1tWorld Bank atlasx0085-8293 aPopulationxStatistiquesxPériodiques aIndicateurs économiquesxPériodiques aIndicateurs sociauxxPériodiques aDéveloppement économiquexStatistiquesxPériodiques a338.902aBanque internationale pour la reconstruction et le développement 3aFRbAbesc20070719gAFNOR 0bCGQgAACR2 2bNICgAACR24 uhttp://issuu.com/world.bank.publications/docs/9780821385838zdernière édition accessible en texte intégral gratuit1 b(2007) -(2009)cParisdMagasins/AnnexeeP 4° 4027 aZPAY aGEO RQ Universel aDEW 338.9 aDEW 310-31901098nls 2200301 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200016500124210002800289230002400317326001100341606004300352606004300395606003800438606005900476710007000535801001300605856012200618955000500740992002100745992001400766992001600780000124561120130619135626.0 a a20079999k fre 01 ba0 aeng aUS ar aak z  adr 10aAtlas of global developmentb[Ressource électronique]ea visual guide to the world's greatest challengesfInternational Bank for Reconstruction and Development aGlasgowcCollinsd2007- aRevue électronique aAnnuel aPopulationxStatistiquesxPériodiques aIndicateurs économiquesxPériodiques aIndicateurs sociauxxPériodiques aDéveloppement économiquexStatistiquesxPériodiques02aBanque internationale pour la reconstruction et le développement 0aFRbFNSP4 uhttp://issuu.com/world.bank.publications/docs/9780821385838zdernière édition accessible en texte intégral gratuit1 r aGEO RQ Universel aDEW 338.9 aDEW 310-31900718nls 2200241 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200008600124210002500210230002400235326001100259606004000270710005100310801001300361856007800374992001200452992001200464000124181320130517122615.0 a a19959999k fre 01 ba0 aeng aUS ar aak z  adr 10aAttacks on the pressb[Ressource électronique]fCommittee to Protect Journalists aNew YorkcCPJd1995- aRevue électronique aAnnuel aLiberté de la pressexPériodiques02aCommittee to Protect Journalistsc(Etats-Unis) 0aFRbFNSP4 uhttp://cpj.org/attacks/2013/zAccès libre au texte intégral depuis 1995 aDEW 323 aDEW 07001230cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200014800180207002700328210004300355326001600398601005800414606004200472606002900514710003600543801003000579801002300609802000700632856005200639856007100691955006700762992002500829992001400854137224540000117760820130319051116.01 a2101-6135 aissn21016135 a0001177608 a20091015a20099999k y0frey0103 ba0 afre aFR ay  ar aauu uu 10aAu clair de la lutteebulletin de la Tendance CLAIRE du NPA pour le Communisme, la Lutte Auto-organisée, Internationaliste et RévolutionnairE 0aN°1 (mars/avril 2009) a[Paris]cTendance CLAIRE du NPAd2009- aTrimestriel02aNouveau parti anticapitalistec(France)xPériodiques aExtrême gaucheyFrancexPériodiques aActualitéxPériodiques02aTendance CLAIRE du NPA (France) 3aFRbAbesc20091105gAFNOR 3aFRbISSNc20091105 a074 uhttp://tendanceclaire.npa.free.fr/bulletins.php zContenu : accès au texte intégral depuis le no. 1 (mar/avr-2009)1 bno. 1 (mar/avr-2009) -....cParisdMagasins/AnnexeeP 4° 7259 aGEO RA4.06 France 01 aDEW 320.501099cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118105001800125106000600143110001600149200010000165207002400265210003200289517001200321530002700333606003700360676000800397801003000405801002300435802000700458856010600465955007100571955006500642972000900707992002100716992001200737170643948000125188120131128145456.0 a2267-0750 aissn22670750 a20130715a20139999k y0frey50 ba0 afre aFR ay 0  ar aafazz 0uu 10aAu faiteune enquête, un entretien, des enjeuxf[directeur de la publication Xavier Delacroix] 0aN° 001 (mai 2013)- a[Paris]cBW Conseilsd2013-10aAu fait10aAu faitb(Paris. 2013) aActualitéxPériodiques2rameau a001 3aFRbAbesc20131127gAFNOR 3aFRbISSNc20130719 a074 uhttp://www.au-fait.fr/les-numeros/zAccès aux sommaires et aux extraits des numéros depuis le no. 11 bL'année en cours ; Paris, 27, Salle Rez-de-chaussée : P 4° 73381 bno. 1 (mai 2013) -.... ; Paris, Magasins/Annexe : P 4° 7338 aZPAY aGEO RQ Universel aDEW 05001248nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003500139210005600174300006400230326001700294422002900311606004400340607005500384710005600439801002100495856004800516856005200564955009200616955006900708957005700777972000900834991001800843992002500861992001200886039621766000001110420140107173831.01 a0479-611X aFNSP122836 a19900101a19519999 ba0 ager aDE aaca 10aAus Politik und Zeitgeschichte aBonncBundeszentrale für Politische Bildungd1951- aLe kardex donne le détail des volumes reliés par semestre aHebdomadaire 1aDas Parlamentx0031-2258 aRelations internationalesxPériodiques aAllemagnexPolitique et gouvernementxPériodiques02aBundeszentrale für politische Bildungc(Allemagne) 3aFRbCCN0479-611X4 uhttp://www.bpb.de/publikationen/BKRM30.html zContenu : accès au texte intégral depuis 20001 bno. 1 (jan-1963) -no. 4 (1965) ; no. 3 (1972) -....cParisdMagasins/AnnexeeP 8° 19791 bno. 47 (nov-1953) - no. 52 (dec-1962)cParisdAnnexeeP F° 01641 b(1953) -(1992)cParisdMagasins/AnnexeeP Index 0745 aZSAB aexempb201105 aGEO RA5.01 Allemagne aDEW 94301023nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210002900175326001600204606005700220710008600277801002100363856012500384856010000509955007000609972000900679992003300688992001200721038671603000001105220130319051117.01 a0004-8216 aFNSP122151 a0000011052 a19900101a19469999 ba0 amul aCH aaha 10aAussenwirtschaft aGrüschcRüeggerd1946- aTrimestriel aRelations économiques internationalesxPériodiques02aSchweizerisches Institut für Aussenwirtschafts-, Struktur- und Regionalforschung 3aFRbCCN0004-82164 uhttp://www.siaw.unisg.ch/org/siaw/web.nsf/c2d5250e0954edd3c12568e40027f306/479b573ee825c1adc1256a310023726c?OpenDocument zContenu : sommaires depuis 1994 ; résumés en anglais et en allemand depuis le numéro 4, 19961 bvol. 5 no. 1 (mar-1950) -....cParisdMagasins/AnnexeeP 8° 0955 aZPAY aGEO RS Sans aspect régional aDEW 33700984nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210002600188326001500214430003400229607003800263710002800301856010900329856010800438955009000546991001700636992002500653992001600678040245691000001108920130319051117.01 a1031-461X aFNSP122508 a0000011089 a19900724a19889999 ba0 aeng aAU aaja 10aAustralian historical studies aParkvillecAHSd1988- aSemestriel 1aHistorical studiesx0018-2559 aAustraliexHistoirexPériodiques02aUniversity of Melbourne4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t786314679db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 23 no. 90 (avr-1988) -vol. 29 no. 110 (1998)cParisdMagasins/AnnexeeP 8° 1201 aexemp$201102 aGEO RJ3.01 Australie aDEW 990-99601118nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000069001502100051002193000102002703260015003723360058003873370063004454400044005084520055005526070024006077120042006318010013006738560044006869550005007309920045007359920012007800000463643000046364320130319051117.0 a0000463643 a b19791995k fre 01 ba0 aeng aAU az aaj z  adr 10aAustralian journal of Chinese affairsb[Ressource électronique] aCanberracContemporary China Centred1979-1995 aAccès au texte intégral (réservé aux sites de Sciences Po) du n°1, 1979 jusqu'au n°33, 1995 aSemestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tChina journal [Ressource électronique] 1tAustralian journal of Chinese affairsx(0156-7365) aChinexPériodiques02aContemporary China Centrec(Canberra) 0aFRbFNSP4 uhttp.//jstor.org/journals/01567365.html1 r aGEO RI3.03 Chine (République populaire) aDEW 95101491nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004800154210002600202326002500228326002700253326002900280430003500309606004400344607005200388710005000440856006600490856006700556856002800623856004700651856010900698856010800807955007100915957007300986972000901059992002501068992001201093040248224000001557020130319051117.01 a1035-7718 aFNSP142363 a0000015570 a19901023a19909999 ba0 aeng aAU aaha 10aAustralian journal of international affairs aCanberracAIIAd1990- a5 n°s par anb2010- aTrimestrielb2004-2009 a3 n°s par anb1990-2003 1aAustralian outlook,x0004-9913 aRelations internationalesxPériodiques aAustraliexRelations extérieuresxPériodiques02aAustralian Institute of International Affairs4 uhttp://www.journals.tandf.co.uk/journals/carfax/10357718.html zContenu : sommaires depuis le volume 50, numéro 1, avril 19964 uhttp://www.aiia.asn.au/ zContenu : résumés d'articles depuis 20014 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713404203db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 44 no. 1 (avr-1990) -....cParisdMagasins/AnnexeeP 4° 48401 bvol. 27 (1973) -vol. 50 (1996)cParisdMagasins/AnnexeeP Index 0829 aZSAB aGEO RJ3.01 Australie aDEW 32701408nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210002600198326002300224326002800247430003300275606003600308606004700344607005500391710004700446856005700493856005400550856010900604856010800713955007100821957007400892972000900966991001800975992002500993992001601018040248488000002240220130319051117.01 a1036-1146 aFNSP160130 a0000022402 a19910118a19909999 ba0 aeng aAU aaha 10aAustralian journal of political science aCanberracAPSAd1990- aTrimestrielb2005- a3 nos par anb1990-2004 1aPolitics (Sydney)x0032-3268 aScience politiquexPériodiques aScience politiqueyAustraliexPériodiques aAustraliexPolitique et gouvernementxPériodiques02aAustralasian Political Studies Association4 uhttp://www.tandf.co.uk/journals/carfax/10361146.html zContenu : sommaires depuis le vol. 1, no. 1, 19664 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713404457db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 25 no. 2 (nov-1990) -....cParisdMagasins/AnnexeeP 8° 23331 b(1966) -(1978) ; (1966) -(1991)cParisdMagasins/AnnexeeP Index 0143 aZSAB aexempb201009 aGEO RJ3.01 Australie aDEW 320-32100825nas 2200277 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000200015420700640017421000390023832600170027760600290029460700260032385600400034995501150038999200190050499200120052399200120053504024864X000021967320130319051118.01 a1253-6911 aFNSP789825 a0000219673 a19900101b19972002 ba0 afre aFR aa a 02aL'Autre Afrique 1ano. 1 (1997)-n.104 (2000)ano. 1 (juil. 2001)-no. 25 (2002) aPariscContinental newsd1997-2002 aHebdomadaire aActualitéxPériodiques aAfriquexPériodiques4 uhttp://www.autre-afrique.presse.fr/1 bno. 1 (mai-1997) -no. 104( janv-2000) ; no. 1 (jul-2001)- no. 11/12 (2002)cParisdMagasins/AnnexeeP 4° 6696 aGEO RE Afrique aDEW 050 aDEW 96001274nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004500139210002900184210003500213210006600248326001600314430005300330530003200383606003200415607004900447676000800496710002100504856019300525955006600718955005900784972000900843991001800852992004200870992001200912040528170000026572420130828155804.01 a1278-3986 aFNSP921386 a19990205a19979999 ba0 afre aFR aaha 10aAutrepartecahiers des sciences humaines aBondycORSTOMd1997-2004 aPariscArmand Colind2004-2008 aPariscPresses de Sciences Poa[Montpellier]cIRD éd.d2009- aTrimestriel 1aCahiers des sciences humaines (Paris)x0768-982910aAutrepartbLa Tour d'Aigues aAnthropologiexPériodiques aPays en voie de développementxPériodiques a30102aORSTOMc(France)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-autrepart.htmzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3011 bno. 1 (1997) -....cParisdMagasins/AnnexeeP 8° 6458 aZPAY aexempb201307 aGEO RO Pays en voie de développement aDEW 30101072nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210004200178326001600220601006400236607005200300710005000352856003100402955006700433955007900500955007700579955007600656992002200732992001600754039615383000005603220130319051119.01 a0750-0467 aFNSP262287 a0000056032 a19900101a19699999 ba0 afre aFR aafa 10aAvant-garde (Paris) aBagnoletcEd. de l'Avant garded1969- aTrimestriel02aMouvement de la jeunesse communistec(France)xPériodiques aFrancexPolitique et gouvernementxPériodiques02aMouvement de la jeunesse communistec(France)4 uhttp://www.lavantgarde.org1 bno. 1 (avr/jun-2009) -....cParisdMagasins/AnnexeeP F° 05601 bno. 129 (fev-2007) -no. 137 (nov-2007)cParisdMagasins/AnnexeeP 4° 72101 bno. 40 (nov-1974) -no. 108 (dec-2004)cParisdMagasinsAnnexeeP F° 03761 bno. 1 (dec-1969) -no. 39 (aou-1973)cParisdMagasins/AnnexeeP 4° 2848 aGEO RA4.06 France aDEW 944.08300719nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000041001502100028001912300024002193360013002436060046002568010013003028560030003158560051003459550005003969920028004019920012004290001182451000118245120130319051120.0 a0001182451 a a20099999k fre 01 ba0 afre aFR ar aau z  adr 10aAverroèsb[Ressource électronique] aPariscAverroèsd2009- aRevue électronique aSite Web aGéopolitiqueyMoyen-OrientxPériodiques 0aFRbFNSP4 uhttp://revueaverroes.com/ zContenu : texte intégral depuis le n°1, 20091 r aGEO RG1 Afrique du Nord aDEW 95601076nas0 2200361 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118105001800125106000600143110001600149200001900165207004000184210003800224326001700262452002900279517002600308530001900334606004600353606002900399801003000428801002300458802000700481856004900488856006400537955007600601992001200677992002500689139212507000117966620130903164210.01 a2104-7979 aissn21047979 a20091214b20092011 0frey0103 ba1 afre aFR ay  ar aac 10aBakchich hebdo 1ano. 1 (sept-2009)-no. 52 (jan-2011) aPariscGroupe Bakchichd2009-2011 aHebdomadaire 1tBakchich.infox2100-082410aBakchich hebdomadaire10aBakchich hebdo aSatire politique françaisexPériodiques aActualitéxPériodiques 3aFRbAbesc20091214gAFNOR 3aFRbISSNc20080601 a074 uhttp://www.bakchich.info/-Hebdos,00020-.html zContenu : sommaires des numéros depuis le no. 1 (sep-2009)1 bno. 1 (sep-2009) -no. 51 (dec-2010)cParisdMagasins/AnnexeeP F° 0558 aDEW 050 aGEO RA4.06 France 0101437nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004200154210003500196300033100231326001100562430008500573517006600658606004800724710006700772711003300839801002100872856006500893856006200958955005301020992002201073992001601095001019384000000348920140107134711.01 a0292-6733 aFNSP102969 a0000003489 a19900101a1982 ba0 afre aFR aaku 13aLa Balance des paiements de la France aPariscBanque de Franced1982- a1985-1991 : publié en 2 vol. : Rapport annuel ; annexes. Depuis 1996, comporte 3 vol. : Rapport annuel ; annexes ; dossier : "Les grands traits de la balance des paiements et de la position extérieure" (1996-1997) , "Vue d'ensemble" (1998-). - Paraît également dans : "Statistiques et études financières", ISSN 0015-9654 aAnnuel 1aBalance des paiements de l'année ... entre la France et l'extérieurx0071-889010aBalance des paiements et la position extérieure de la France aBalance des paiementsyFrancexPériodiques02aBanque de FrancebDirection générale des services étrangers02aFrancebDirection du Trésor 3aFRbCCN0292-67334 uhttp://www.banque-france.fr/fr/publications/catalogue/2c.htm4 zContenu : texte intégral du rapport de l'année en cours1 b(1981) -....cParisdMagasins/AnnexeeP 4° 5564 aGEO RA4.06 France aDEW 380-38201399nas0 22003251 450 001001000000002001100010005001700021020002000038035001500058100004100073101000800114102000700122105001800129110001600147200014300163210003400306215002400340301005000364311007900414430007100493440004500564500008500609606005600694712005300750801003000803801001400833856012800847955008100975991001701056113292236000107526320130319051121.0 aUSbsn 88028613 a0001075263 a20070315b19 19 a0engy0103 ba0 aeng aUS a 0  azuu 0yy 14aThe Balance of international payments of the United Statesfprepared in the Office of Business Economics, International Economics Division aWashingtoncU.S. G.P.O.d1950 a1 vol.cill.d23 cm aDemande de numérotation ISSN en cours (FNSP) aContinues : International transactions of the United States during the war 1tInternational transactions of the United States during the war ... 1tBalance of payments of the United States1|aBalance of international payments of the United States (Washington, D.C. : 1948) aBalance of paymentsyUnited StatesxPeriodicals2lc01aUnited StatesbOffice of Business Economics4340 3aFRbAbesc20070315gAFNOR 0bLCgAACR24 uhttp://catalog.hathitrust.org/Record/001719421zAccès libre au texte intégral. Texte intégral numérisé en libre accès1 b(1933) -(1935) ; (1946) -(1948) ; (1950)cParisdMagasins/AnnexeeCOL8°0205 aPériobTP0101021nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000170015420700420017121000490021321000710026232600150033360600390034860700260038760700340041385600360044785600580048395500900054197200090063199100180064099200230065899200140068104053877X000022552420130319051121.01 a1279-7952 aFNSP805707 a0000225524 a19900101b19972005 ba0 afre aFR aaja 10aBalkanologie 1aVol. 1 no 1 (1997)-vol. 9 no 2 (2005) aPoigny-la-ForêtcHomo Balkanicusd1997-1999 aPariscAssociation française d'études sur les Balkansd2000-2005 aSemestriel aIdentité collectivexPériodiques aBalkansxPériodiques aEurope de l'EstxPériodiques4 uhttp://balkanologie.revues.org/ zContenu : sommaires depuis le numéro 1, juillet 19971 bVol. 1 no 1 (juil-1997) -vol. 9 no 1/2 (dec-2005)cParisdMagasins/AnnexeeP 8° 6353 aZPAY aexempb201207 aGEO RA8.01 Balkans aDEW 949.600904nls 2200313 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000044001642100067002082300024002753260015002996060039003146070026003536070034003798010013004138560036004268560086004629550005005489920023005539920014005760001167114000116711420130319051121.0 a1965-0582 a0001167114 a a19979999k fre 01 ba0 afre aFR ar aaj z  adr 10aBalkanologieb[Ressource électronique] aPariscAssociation française d'études sur les Balkansd1997- aRevue électronique asemestriel aIdentité collectivexPériodiques aBalkansxPériodiques aEurope de l'EstxPériodiques 0aFRbFNSP4 uhttp://balkanologie.revues.org/ zContenu : texte intégral d'une sélection de numéros via revues.org depuis 19971 r aGEO RA8.01 Balkans aDEW 949.601130cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200003400156210003500190326001500225410006200240430006900302606004400371607003000415710002800445801003000473801002300503802000700526856007200533856005800605955006900663972000900732992002700741992001200768083125485000096803620130319051122.01 a1736-1834 aissn17361834 a0000968036 a20041123a20049999u y1frey0103 ba0 aeng aEE aaju uu 10aBaltic HorizonsfEuroülikool aTallinncEuroUniversityd2004- aSemestriel 1tEuroUniversity series. International relationsx1406-4812 1tThe Monthly survey of Baltic and post-Soviet politicsx1406-6165 aRelations internationalesxPériodiques aPays baltesxPériodiques02aEuroülikoolc(Tallinn) 3aFRbAbesc20060113gAFNOR 3aFRbISSNc20041123 a424 uhttp://www.euroakadeemia.ee/et/raamatupood/ajakiri-baltic-horizons/ zContenu : accès aux sommaires depuis le n°100, 20041 bno. 1 = 100 (may-2004) -....cParisdMagasins/AnnexeeP 8° 6887 aZPAY aGEO RA7.11 Pays baltes aDEW 94701034nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000146001502100036002962300024003323260011003565170038003676010035004056060035004406070050004757100021005258010013005468560054005598560059006139550005006729920019006779920012006960001132899000113289920130319051122.0 a0001132899 a a19969999k fre 01 ba0 amul aCA ar aak z  adr 10aBank of Canada. Annual report of the Governor to the Minister of Finance and statement of accountsb[Ressource électronique]fBank of Canada aOttawacBanque du Canadad1996- aRevue électronique aAnnuel10aRapport annuel - Banque du Canada02aBanque du CanadaxPériodiques aFinancesyCanadaxPériodiques aCanadaxConditions économiquesxPériodiques02aBanque du Canada 0aFRbFNSP4 uhttp://www.banqueducanada.ca/fr/annuel/index.html zContenu : texte intégral du rapport à partir de 19961 r aGEO RC1 Canada aDEW 33200948nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000034001642100035001983000047002333260011002804300053002916010034003447100020003788010013003988560116004119550055005279720009005829920012005919920031006030000329259000032925920130417104714.01 a1467-016X a0000329259 a a19999999k fre ba0 aeng aGB a 0  ar aak z 0 10aBank of England annual report aLondoncBank of Englandd1999- aA partir de 2008, en version électronique aAnnuel 1tReport and accounts - Bank of Englandx0308-527902aBank of EnglandxPériodiques02aBank of England 0aFRbFNSP4 uhttp://www.bankofengland.co.uk/publications/annualreport/index.htmzAccès libre au texte intégral depuis 20001 b(1999) -(2007)cParisdMagasins/AnnexeeP 4° 5538 aZGRA aDEW 332 aGEO RA4.02 Grande-Bretagne01224nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210003500193300006000228326001600288606005300304606005400357710002000411801002100431830012700452830004200579830003000621856004800651856003600699955008700735972000900822992003100831992001200862038674033000001125520130528110409.01 a0005-5166 aFNSP124152 a0000011255 a19900101a19609999 ba0 aeng aGB aahu 10aBank of England quarterly bulletin aLondoncBank of Englandd1960- aConsultable gratuitement en texte intégral depuis 1998 aTrimestriel aMarché financieryGrande-BretagnexPériodiques aMarché monétaireyGrande-BretagnexPériodiques02aBank of England 3aFRbCCN0005-5166 aVol. 5, no. 1, 1965--->vol. 13, no. 4, 1973 < P 8°2318 > et vol.14, no. 1, 1974--> vol.24, 1984 collection donnée au CTL a1985-2004 : coll. jetée car en ligne aCollection jetée en 20134 uhttp://www.bankofengland.co.uk/qb/index.htm zAccès libre au texte intégral1 bvol. 40 no. 4 (2000) -vol. 44 no. 4 (hiv-2004)cParisdMagasins/AnnexeeP 4° 3447 aZPAY aGEO RA4.02 Grande-Bretagne aDEW 33200873nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001100154210006300165326001200228421002400240530001900264606002600283801002100309856003000330856007200360955009700432972000900529992002100538992001200559038674130000000340120130319051122.01 a0005-5395 aFNSP102866 a0000003401 a19900101a19269999 ba0 aeng aGB aafu 10aBanker aLondoncFinancial Times Business Publishing Limitedd1926- aMensuel01tEurofilex0951-0796 0aBankerbLondon aBanquesxPériodiques 3aFRbCCN0005-53954 uhttp://www.thebanker.com/ zContenu : sélection d'articles en texte intégral depuis mai 1999.1 bvol. 123 no. 563 (jan-1973) -vol. 158 no. 994 (dec-2008)cParisdMagasins/AnnexeeP 4° 3179 aZPAY aGEO RQ Universel aDEW 33201004nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009300154210006400247210002600311326001500337530002900352606004100381710005000422801002100472856003500493856005600528955006800584972000900652991001800661992001100679039238628000001135720130319051123.01 a0067-3951 aFNSP124549 a0000011357 a19900101a19719999 ba0 afre aFR aaju 13aLa Banque des motserevue de terminologie françaisefConseil international de la langue aPariscConseil international de la langue françaised1982- aPariscPUFd1971-1981 aSemestriel10aBanque des motsb(Paris) aTerminologie (science)xPériodiques02aConseil international de la langue française 3aFRbCCN0103/72264 uhttp://www.cilf.org/bm.fr.html4 zContenu : accès aux sommaires depuis le numéro 601 bno. 1 (1971) -no. 78 (2008)cParisdMagasins/AnnexeeP 8° 2979 aZPAY aexempb201106 aDEW 4101181nas 2200361 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000150015421000440016932600150021353000280022860600370025660600440029360700450033767600080038271000710039085600500046185600460051195500730055795500690063095500590069997200090075899100180076799200220078599200120080703997913X000007428720131219155051.01 a1164-7590 aFNSP338995 a0000074287 a19900101a19929999 ba0 afre aFR aaia 13aLe Banquet aPariscCERAPd1992-aPariscPlumed1992 aSemestriel13aLe BanquetbParis. 1992 aVie intellectuellexPériodiques aIdées politiquesyFrancexPériodiques aFrancexVie intellectuellexPériodiques a00102aCentre d'étude et de réflexion pour l'action politiquec(France)4 uhttp://www.revue-lebanquet.com/rubrique5.html zContenu : sommaires depuis le no. 1, 19921 bLes 3 dernières annéescParisd27, Salle Rez-de-chausséeeDEW 0011 bL'année en courscParisdBibliothèque de rechercheeP 8° 58831 bno. 1 (1992) -....cParisdMagasins/AnnexeeP 8° 5883 aZCAD aexempb201112 aGEO RA4.06 France aDEW 00100947cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200004000156207001700196210006600213326001400279530003400293606003600327710006000363801003000423801002300453802000700476856002400483856003400507955005900541972000900600992001200609077553241000098447620130319051125.01 a1696-0947 aissn16960947 a0000984476 a20030523a20039999 0fre 0103 ba0 aeng aES aal 10aBCN political science debatesfICPS 0aN°1 (2003)- aBarcelonacInstitut de Ciències Polítiques i Socialsd2003- aBisannuel00aBCN political science debates aScience politiquexPériodiques02aInstitut de ciències politiques i socialsc(Barcelone) 3aFRbAbesc20050216gAFNOR 3aFRbISSNc20030523 a0u4 uhttp://www.icps.es/ zContient le sommaire des n°s1 bno. 1 (2003) -....cParisdMagasins/AnnexeeP 8° 6897 aZSAB aDEW 32000997nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210004000183326002600223326002300249430003200272606003700304607005500341710008100396856003500477856003600512955005900548972000900607991001800616992002500634992001200659039951669000011173720130319051127.01 a0863-4564 aFNSP471766 a0000111737 a19900101a19919999 ba0 ager aDE aaga 10aBerliner Debatte Initial aBerlincInter abo Betreuungsd1991- aBimestrielb1991-2008 aTrimestrielb2009- 1aInitial (Berlin)x086362707 aProblèmes sociauxxPériodiques aAllemagnexPolitique et gouvernementxPériodiques02aGesellschaft für Sozialwissenschaftliche Forschung und Publizistik (Berlin)4 uhttp://www.berlinerdebatte.de/ zContenu : sommaires depuis 19901 bno. 1 (1991) -....cParisdMagasins/AnnexeeP 8° 2161 aZPAY aexempb201210 aGEO RA5.01 Allemagne aDEW 94300890nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000370015421000350019132600160022660600400024285601180028285600340040085600360043495500660047097200090053699100180054599200250056399200120058803995126X000007029120131025120230.01 a0863-1808 aFNSP323457 a0000070291 a19900101a19919999 ba0 ager aDE aaha 00aBerliner Journal für Soziologie aBerlincAkademie-Verlagd1991- aTrimestriel aSociologieyAllemagnexPériodiques4 uhttp://www.vsjournals.de/index.php?do=viewmag&site=bjs&lng=de&area=soz&id=28&sid=f83a39389dded8f5d79b8741d1f048fa uhttp://www2.hu-berlin.de/bjs/4 zContenu : Sommaires depuis 19911 bvol. 1 no. 2 (1991) -....cParisdMagasins/AnnexeeP 8° 5862 aZPAY aexempb201112 aGEO RA5.01 Allemagne aDEW 30101277nas 2200241 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181060006001251100016001312000031001472100052001783000050002303260017002804400071002977120038003688560556004069550073009620000009489000000948920130319051129.0 aFNSP116797 a0000009489 a19900615b18111989 ba0 afre aFR ar aa a 10aBibliographie de la France aPariscEd. du Cercle de la librairied1811-1989 aLes suppl. sont conservés sous la même cote aHebdomadaire 1aBibliographie nationale française. Livres (1142-3250)

02aBibliothèque nationalec(France)4 uhttp://gallica.bnf.fr/Search?idArk=&n=15&p=1&lang=FR&adva=1&adv=1&reset=&urlReferer=%2Fadvancedsearch%3Flang%3DFR&enreg=&tri=&submit1=Lancer+la+recherche&catsel1=f_title&cat1=Bibliographie+de+la+France&ope2=MUST&catsel2=f_creator&cat2=&ope3=MUST&catsel3=f_tdm&cat3=&date=daTo&daFr=&daTo=&t_typedoc=periodiques&sel_provenance_Part=toutPartenaires&sel_provenance_Edist=toutSNE&sel_source=toutSources&dateMiseEnLigne=indexDateFrom&firstIndexationDateDebut=&firstIndexationDateFin=&tri=zAccès libre au texte intégral. Périodique numérisé sur Gallica1 b(1909) -no. 51/52 (20 déc-1989)cParisdMagasins/AnnexeeP 8° 030800849nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000067001502100063002172300024002803260016003045100032003206010056003528010013004088560051004218560061004729920026005339920012005590000984343000098434320130319051129.0 a0000984343 a a19999999k fre 01 ba0 afre aTZ ar aah z  adr 10aBibliographie trimestrielle du TPIRb[Ressource électronique] aArusha:cInternational Criminal Tribunal for Rwandad1999- aRevue électronique aTrimestriel10aICTR quarterly bibliography02aTribunal international pour le RwandaxPériodiques 0aFRbFNSP4 uhttp://69.94.11.53/FRENCH/library/biblioFR.htm zContenu : texte intégral depuis le numéro 1, juin 1999 aGEO RM1 Nations Unies aDEW 34100921nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000300015421000720018432600160025660600430027260700450031580100210036085600620038185600610044395500880050497200090059299100180060199200120061903867680X000001130520140113115413.01 a0006-1654 aFNSP124293 a0000011305 a19900101b19642008 ba0 aita aIT aahu 10aBiblioteca della libertà aTorinocCentro di ricerca e documentazione Luigi Einaudid1964-2008 aTrimestriel aLibéralisme économiquexPériodiques aItaliexVie intellectuellexPériodiques 3aFRbCCN0006-16544 uhttp://www.centroeinaudi.it/biblioteca-della-liberta.html zaccès au texte intégral des articles à partir de 20091 bvol. 4 no. 6 (jan-1967) -no. 193 (oct/dec-2008)cParisdMagasins/AnnexeeP 8° 2498 aZSAB aexempb200904 aDEW 00101827cas0 2200481 450 001001000000002001100010005001700021011001400038035001400052035001400066035001700080035001500097100004100112101000800153102000700161105001800168106000600186110001600192200007600208207001800284210006100302321002300363326001500386421008600401430008400487517008000571517002600651517009300677530003400770606005400804606006400858712005200922801003000974801002301004801001301027802000701040856005001047856010201097955010301199972000901302992002201311992001201333060119365000045392020130319051129.01 a1632-9201 a073572012 a073871869 aissn16329201 a0000453920 a20020319a20029999m y0frey0103 ba0 afre aFR ay 0  ar aag 0 10aBIBLIOthèque(s)erevue de l'Association des bibliothécaires français 1ano. 1 (2002)- aPariscAssociation des bibliothécaires françaisd2002- aSommaires en ligne aBimestriel |tLe Journal - Association des bibliothécaires français, Groupe Centrex1761-9718 1tBulletin d'informations - Association des bibliothécaires françaisx0004-536510aABF Bibliothèque(s)erevue de l'Association des bibliothécaires français10aBibliothèque (Paris)10aBibliothèque(s)erevue de l'Association des bibliothécaires de France et non français10aBibliothèquesb(Paris. 2002) aBibliothèquesz21e sièclexPériodiques2rameau aBibliothécairesyFrancez21e sièclexPériodiques2rameau02aAssociation des bibliothécaires français4340 3aFRbAbesc20091216gAFNOR 3aFRbISSNc20030523 0aFRbFNSP a0740uhttp://www.abf.asso.fr/publications/bulletin/ zContenu : sommaires des numéros disponibles depuis 1992, et quelques articles en texte intégral1 bConservation limitée aux 2 dernières annéescParisdFonds professionnel (4e étage)eP 4° 4467 aZPAY aGEO RA4.06 France aDEW 02001091nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000063001502100059002133000104002723260031003763360058004073370063004654400060005284520049005886060032006378010013006698560090006829550005007729920012007770000462467000046246720130319051130.0 a0000462467 a b19591971k fre 01 ba0 aeng aUS az aal z  adr 10aBiennial review of anthropologyb[Ressource électronique] aStanford, Calif.cStanford University Pressd1959-1971 aAccès au texte intégral (réservé aux sites de Sciences Po) du vol. 1, 1959 jusqu'au vol.7, 1971 aBisannuel (tous les 2 ans) aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tAnnual review of anthropology [Ressource électronique] 1tBiennial review of anthropologyx(0067-8503) aAnthropologiexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00678503.html1 r aDEW 30100984nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001800154210007800172326001600250517007200266606004600338606004400384710006400428856002600492856005800518955006700576972000900643991001800652992001200670040133923000017105920130319051130.01 a1010-9536 aFNSP647318 a0000171059 a19900101a19809999 ba0 aeng aBD aaha 10aBIISS journal aDhakacBangladesh Institute of International and Strategic Studiesd1980- aTrimestriel10aBangladesh Institute of International and Strategic Studies journal aCoopération en Asie du SudxPériodiques aRelations internationalesxPériodiques02aBangladesh Institute of International and Strategic Studies4 uhttp://www.biiss.org/ zContenu : sommaires, résumés depuis le vol. 1, 19991 bvol. 15 no. 1 (1994) -....cParisdMagasins/AnnexeeP 8° 6184 aZSAB aexempb201212 aDEW 32700943nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000420015420700250019621000460022132600110026760600390027871000510031783000530036885600820042195500730050397200090057699100180058599200220060399200160062504040210X000010322720130319051130.01 a1263-0314 aFNSP442925 a0000103227 a19900101a19859999 ba0 afre aFR aaka 13aLe Bilan de la vie associative en ... 1a1982 publié en 1985 aPariscLa Documentation françaised1985- aAnnuel aAssociationsyFrancexPériodiques aFrancebConseil national de la vie associative aSudoc à jour (04/02/2008, dm) + 23/03/2009 (mt)4 uhttp://www.ladocumentationfrancaise.fr/rapports-publics/034000022/index.shtml1 b(1985)-(2004/2007)=(1982)-(2007)cParisdMagasins/AnnexeeP 8° 4772 aZPAY aexempb201106 aGEO RA4.06 France aDEW 366-36701201nas0 2200337 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123110001600141200007200157207005200229210006600281326001500347430006600362440002500428606003400453606003800487710005600525801003000581856007200611856004800683955008500731972000900816992002200825992001600847124636896000110266820130319051131.01 a2110-4859 a0001102668 a20070702b20052010k a0frey0103 ba0 afre aFR ay  aaga 10aBimagriele magazine du Ministère de l'agriculture et de la pêche 0aN° 1517 (nov/dec-2005)- n°1542 (jan/fev-2010) aPariscMinistère de l'agriculture et de la pêched2005-2010 aBimestriel 1tBulletin d'information-Ministère de l'agriculturex0152-3295 1tAlim'agrix2110-4867 aPêchesyFrancexPériodiques aAgricultureyFrancexPériodiques01aFrancebMinistère de l'agriculture et de la pêche 3aFRbAbesc20070702gAFNOR4 uhttp://agriculture.gouv.fr/sections/mediatheque/periodiques/bimagri zContenu : sommaires depuis le n°1511, 20051 bno. 1518 (jan-2006) -no. 1542 (jan/fev-2010)cParisdMagasins/AnnexeeP 4° 2370 aZPAY aGEO RA4.06 France aDEW 338.1-301342cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118110001600125200002500141210005300166430007900219452004500298530003400343532006400377601005600441606004300497676000800540710004200548801003000590801002300620801003000643802000700673856007400680955010700754955001500861992006600876992001200942992001400954060686499000115514820140108152743.0 a1683-0121 aissn16830121 a20020308a19989999 0fre 0103 ba0 aeng aZZ aah 10aBIS quarterly review aBaslecBank for International Settlementsd1998- 1tInternational banking and financial market developments (Print)x1012-9979 1tBIS quarterly review (Online)x1683-013X10aBIS quarterly reviewb(Print)10aBank for International Settlements quarterly review (Print)02aBanque des règlements internationauxxPériodiques aFinances internationalesxPériodiques a33202aBanque des règlements internationaux 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20020308 3aFRbAbesc20080131gAFNOR a004 uhttp://www.bis.org/publ/about_qr.htmzAccès libre au texte intégral1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 332zLa Bibliothèque ne conserve que 3 ans1 bP 4° 7232 aGEO RM3 Autres organisations gouvernementales internationales aDEW 332 aDEW 341.201102nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005400139210003400193326001200227530005400239606004400293607005500337676000800392801002100400856012100421955006600542955009200608972000900700991001800709992002500727992001200752992001200764038678357000001131520131024152326.01 a0006-4416 aFNSP124352 a19900101a00019999 ba0 ager aDE aafa 10aBlätter für deutsche und internationale Politik aKölncPahl-Rugensteind0001- aMensuel00aBlätter für deutsche und internationale Politik aRelations internationalesxPériodiques aAllemagnexPolitique et gouvernementxPériodiques a940 3aFRbCCN0006-44164 uhttp://www.blaetter.dezContenu : sommaires ; résumés ; certains articles en texte intégral ; depuis juillet 19971 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 bno. 8 (1970) -....cParisdMagasins/AnnexeeP 8° 2866wManquants : no 1, 3, 4, 6, 1985 aZCAD aexempb201105 aGEO RA5.01 Allemagne aDEW 327 aDEW 94301045cas0 2200337 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001700100100004100117101000800158102000700166105001800173106000600191110001600197200005600213210003400269530002700303607006300330700003700393801003000430801002300460802000700483856013000490955005500620991002000675992001200695038291134000110402720130903173710.01 a0983-3471 a070582033 accn0983-3471 zccn7018/8092 aissn09833471 a19980709b19011902 0fre 0103 ba0 afre aFR ay  ar aac 13aLe Blocegazette hebdomadairefpar M. G. Clemenceau aPariscAlcan-Lévyd1901-190213aLe Blocb(Paris. 1901) aFrancexPolitique et gouvernementz1870-1914xPériodiques 1aClemenceaubGeorgesf(1841-1929) 3aFRbAbesc20030429gAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/bpt6k37310dzAccès libre au texte intégral. Périodique numérisé sur Gallica (1901-1902)1 b(1901) -(1902)cParisdMagasins/AnnexeeP 8° 2408 aPériobTP04 P8 aDEW 32400931nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004800139210004400187326001100231530004900242606003700291607005200328710003000380856009000410955007300500991001800573992002400591992001200615992001400627039266257000006472320130417154420.01 a0254-2102 aFNSP297182 a19900101a19789999 ba0 aspa aEC aaka 10aBoletín-anuariofBanco central del Ecuador aQuitocBanco central del Ecuadord1978- aAnnuel00aBoletín anuario - Banco central del Ecuador aFinancesyEquateurxPériodiques aEquateurxConditions économiquesxPériodiques02aBanco central del Ecuador4 uhttp://www.bce.fin.ec/frame.php?CNT=ARB0000006zAccès au texte intégral depuis 20071 bno. 1 (1978) -no. 12 (1989/1990)cParisdMagasins/AnnexeeP 8° 4131 aexempb201303 aGEO RD4.15 Equateur aDEW 332 aDEW 330.901142nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210005100191326001800242606003900260606004600299606003700345710005500382711007000437801002100507856005800528856005400586955010200640972000900742991001800751992002300769992001200792038678780000001131920130912115515.01 a0006-6249 aFNSP124376 a0000011319 a19900101a19469999 ba0 aspa aES aaia 10aBoletín de estudios económicos aBilbaocUniversidad Comercial de Deustod1946- a3 n°s par an aHistoire économiquexPériodiques aEconomie politiqueyEspagnexPériodiques aEconomie politiquexPériodiques02aAsociación de licenciados en ciencias económicas02aUniversidad de Deustoc(Bilbao)bFacultad de ciencias económicas 3aFRbCCN0006-62494 uhttp://dialnet.unirioja.es/servlet/revista?codigo=207 zContenu : sommaire depuis le vol. 35, no. 1, 19801 bno. 16 (jan-1949) -....cParisdMagasins/AnnexeeP 8° 1323wManquant : no 124, 1985 et 158, 1996 aZPAY aexempb201212 aGEO RA6.02 Espagne aDEW 33001096nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004900154210004600203326002300249326002300272530005600295607005000351710003300401801002100434856010300455856010300558955007600661972000900737992002200746992001400768036256374000001139420130319051134.01 a1121-7820 aFNSP124799 a0000011394 a19900101a19449999 ba0 aita aIT aafu 10aBollettino della Societa geografica italiana aRomacSocietà geografica italianad1944- aMensuelb1985-1992 aTrimestrielb1993- 0aBollettino della Società geografica italianab1944 aItaliexConditions économiquesxPériodiques02aSocietà geografica italiana 3aFRbCCN0037-87554 uhttp://www.societageografica.it/index.php?option=com_content&view=article&id=46&catid=46&Itemid=31 zContenu : texte intégral accessible gratuitement en ligne de 2000 à 2002 ; sommaires depuis 19651 bSérie 11 vol. 2 no. 1 (1985) -....cParisdMagasins/AnnexeeP 8° 0287 aZGRA aGEO RA6.03 Italie aDEW 330.901129nas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200004800180210002400228326001200252421003400264530001900298606002600317606005300343801003000396801002300426801001300449802000700462856003700469856006200506955006900568955007100637992003300708992001400741131445316000116274120130319051134.01 a1967-7375 aissn19677375 a0001162741 a20090226a20089999 0frey0103 ba0 afre aFR ay  ar aaf 10aBooksel'actualité par les livres du monde aPariscBooksd2008- aMensuel 1tBooks. Hors-sériex2105-798210aBooksb(Paris) aCulturexPériodiques aLittératurexHistoire et critiquexPériodiques 3aFRbAbesc20090226gAFNOR 3aFRbISSNc20080601 0aFRbFNSP a074 uhttp://www.booksmag.fr/magazine/ zContient les sommaires depuis le no 1 (dec-2008/jan-2009)1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 72431 bno 1 (dec-2008/jan-2009) -....cParisdMagasins/AnnexeeP 4° 7243 aGEO RS Sans aspect régional aDEW 80-8901036nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004200163210002200205326001100227430005900238530005000297606005800347606004400405712003000449801001300479856007500492856003900567955005500606972000900661992001600670992001200686064143376000055048420130319051135.01 a1475-858X a0000550484 a a20019999k fre ba0 aeng aGB a 0  ar aak z 0 10aBP statistical review of world energy aLondoncBP, 2001- aAnnuel 1tBP Amoco statistical review of world energyx1467-569210aBP statistical review of world energyb(2001) aRessources énergétiquesxStatistiquesxPériodiques aIndustries énergétiquesxPériodiques02aBritish Petroleum Company 0aFRbFNSP uhttp://www.bp.com/sectionbodycopy.do?categoryId=7500&contentId=7068481 ztexte intégral du dernier rapport1 b(2000) -(2002)cParisdMagasins/AnnexeeP 4° 4739 aZGRA aDEW 310-319 aDEW 33301583cas0 2200445 450 001001000000002001100010005001700021020002000038035001600058035001500074035001500089100004100104101000800145102000700153105001800160106000600178110001600184200009400200207001400294210004000308215001400348301003500362311011600397326001100513423007100524430003800595440003700633606004100670676000800711710005600719801003000775801002000805801002100825801001500846801001500861801003000876856015100906955006501057991001501122119338025000112073820130319051137.0 aUSbsn 88036036 aocm01772820 zocm7049616 a0001120738 a20071119b18291886m y0frey0103 ba0 aeng aGB ay 0  ar azka 0yy 14aThe British almanac of the Society for the Diffusion of Useful Knowledge for the year ... 0a1829-1886 aLondoncCharles Knightd[1829-1886] av.d19 cm aDemande d'ISSN en cours (FNSP) aIssues for 1829-1886 bound with: Companion to the almanac, or, Year-book of general information for <1829-1886> aAnnuel 1tCompanion to the almanac, or, Year-book of general information for 1tBritish almanac, for the year ... 1tBritish almanac for the year ... aAlmanachs britanniquesxPériodiques a05002aSociety for the Diffusion of Useful Knowledgec(GB) 3aFRbAbesc20071120gAFNOR 1aUSbOCLCgAACR2 2aFRbAUROCgAFNOR 0bMULgAACR2 2bNYGgAACR2 3aFRbAbesc20071119gAFNOR4 uhttp://www.archive.org/stream/britishalmanac00goog#page/n8/mode/2upzAccès libre au texte intégral. Année 1850 numérisée sur Internet Archive1 b(1844) -(1859) ; (1874)cParisdMagasins/AnnexeeCOL12°0170 aPériobTZ01311nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210002800195326001100223430005400234440006400288517003200352606005900384606005300443606005300496607007500549676000800624710005600632856005600688856004900744955007000793972000900863991001800872992003100890992001600921036827983000024685820130319051138.01 a1368-9886 aFNSP866535 a0000246858 a19900101b19972004 ba0 aeng aGB aaka 10aBritish elections and parties review aLondoncCassd1997-2004 aAnnuel 1aBritish elections and parties yearbookx0986-2481 1tJournal of elections, public opinion and partiesx1745-728910aBritish elections & parties aElectionsyGrande-BretagnexStatistiquesxPériodiques aPartis politiquesyGrande-BretagnexPériodiques aPartis politiquesyGrande-BretagnexRépertoires aGrande-BretagnexPolitique et gouvernementxStatistiquesxPériodiques a32002aPolitical Studies Association of the United Kingdom4 uhttp://www.tandf.co.uk/journals/titles/17457289.asp zContenu : sommaires depuis le volume 5, 19961 bvol. 7 (1997) -vol. 14 (2004)cParisdMagasins/AnnexeeP 8° 5934 aZSAB aexempb201202 aGEO RA4.02 Grande-Bretagne aDEW 324.2-501154nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004300154210005300197326001100250440004500261606005300306606005900359606005300418607007500471710005600546856004300602856004900645955006900694991001800763992003100781992001600812037936182000008185820130319051138.0 a0968-2481 aFNSP364085 a0000081858 a19900101b19921996 ba0 aeng aGB aaka 10aBritish elections and parties yearbook aHemel HempsteadcHarvester Wheatsheafd1992-1996 aAnnuel 1aBritish elections and partiesx1368-9886 aPartis politiquesyGrande-BretagnexRépertoires aElectionsyGrande-BretagnexStatistiquesxPériodiques aPartis politiquesyGrande-BretagnexPériodiques aGrande-BretagnexPolitique et gouvernementxStatistiquesxPériodiques02aPolitical Studies Association of the United Kingdom4 uhttp://www.frankcass.com/jnls/bepr.htm zContenu : sommaires depuis le volume 5, 19961 bvol. 2 (1992) -vol. 6 (1996)cParisdMagasins/AnnexeeP 8° 5934 aexempb201202 aGEO RA4.02 Grande-Bretagne aDEW 324.2-501305nls 2200361 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000070001642070034002342100035002682300005003033000058003083260016003663360056003823370071004386060028005098010013005378560090005508560108006408560072007488560069008209550005008899920033008949920016009270000802814000080281420130319051138.01 a0007-1005 a0000802814 a a19529999k fre 01 ba0 aeng aGB az aah z  adr 10aBritish journal of educational studiesb[Ressource électronique] 1aVol. 1, n°1 (November 1952)- aOxfordcBasil Blackwell & Mott a aTexte intégral depuis le vol. 1, n°1, November 1952 aTrimestriel aDonnées textuelles accessibles uniquement en ligne aTéléchargement de fichiers TIFF, PDF (recommandé) ou PostScript aEducationxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00071005.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.blackwellpublishing.com/journal.asp?ref=0007-1005&site=1 zContenu : sommaires en ligne depuis le vol. 45, n°1, March 19971 r aGEO RS Sans aspect régional aDEW 370-37901539nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210005000198210002900248326002300277326002800300517000900328606004200337606005900379801002100438856012800459856010800587856010100695856010800796955008600904957007200990972000901062991001801071992002101089992003101110992001201141038680521000001148420131127152911.01 a0007-1080 aFNSP125182 a0000011484 a19900101a19639999 ba0 aeng aGB aaha 10aBritish journal of industrial relations aLondoncLondon School of Economicsd1963-1984 aOxfordcBlackwelld1985- aTrimestrielb1991- a3 nos par anb1963-199010aBJIR aRelations industriellesxPériodiques aRelations industriellesyGrande-BretagnexPériodiques 3aFRbCCN0007-10804 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=BJI&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100816 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 4 no 1 (1966) -vol. 50 no. 4 (déc-2012)cParisdMagasins/AnnexeeP 8° 23441 bvol. 1 (1963) -vol. 19 (1981)cParisdMagasins/AnnexeeP Index 0385 aZPAY aexempb200904 aGEO RQ Universel aGEO RA4.02 Grande-Bretagne aDEW 33101430nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210002800200326002300228326002800251326002600279607003100305710004700336856005700383856006500440856010300505856010800608856010900716856010800825955007100933972000901004991001801013992002501031992001201056036740438000026954520130805121047.01 a1353-0194 aFNSP932598 a0000269545 a19990402a19919999 ba0 aeng aGB aaja 10aBritish journal of Middle Eastern studies aAbingdoncCarfaxd1991- aTrimestrielb2013- a3 nos par anb2006-2012 aSemestrielb1991-2005 aMoyen-OrientxPériodiques02aBritish Society for Middle Eastern Studies4 uhttp://www.tandf.co.uk/journals/carfax/13530194.html zContenu : sommaires, depuis le volume 23, numéro 1,mai 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/13530194.html?&cookieSet=1 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713407085db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 25 no. 1 (mai-1998) -....cParisdMagasins/AnnexeeP 8° 6471 aZSAB aexempb201212 aGEO RG2 Moyen-Orient aDEW 95601548nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210004600195326001600241606003600257606005300293676000800346801002100354856004200375856005400417856010500471856010800576856009000684856010800774955006700882955006900949955007001018972000901088991001801097992003101115992001601146002930021000001148020131219155224.01 a0007-1234 aFNSP125178 a0000011480 a19900101a19719999 ba0 aeng aGB aaha 10aBritish journal of political science aLondoncCambridge University Pressd1971- aTrimestriel aScience politiquexPériodiques aScience politiqueyGrande-BretagnexPériodiques a320 3aFRbCCN0007-12344 uhttp://uk.cambridge.org/journals/jps/ zContenu : sommaires depuis le vol. 28, n°1, 19984 uhttps://acces-distant.sciences-po.fr/fork?http://www-fr.ebsco.com/online/direct.asp?JournalID=102048 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00071234.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bL'année en courscParisdBibliothèque de rechercheeP 8° 28731 bvol. 1 no. 1 (jan-1971) -....cParisdMagasins/AnnexeeP 8° 2873 aZCAD aexempb201105 aGEO RA4.02 Grande-Bretagne aDEW 320-32101654nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200009100163207003100254210002900285326002300314326002800337517006000365606005300425607006100478710005600539801001300595856010100608856010800709856012800817856010800945955009001053955006901143972000901212992001601221992003101237044837887000039443520140110091527.01 a1369-1481 a0000394435 a a19999999k fre ba0 aeng aGB a 0  ar aai z 0 10aBritish journal of politics & international relationsf[Political Studies Association] 1aVol. 1, no. 1 (Apr. 1999)- aOxfordcBlackwelld1999- aTrimestrielb2003- a3 nos par anb1999-200210aBritish journal of politics and international relations aScience politiqueyGrande-BretagnexPériodiques aGrande-BretagnexPolitique et gouvernementxPériodiques02aPolitical Studies Association of the United Kingdom 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=102570 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=BML&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 2 no. 1 (avr-2000) -vol. 14 no. 4 (nov-2012)cParisdMagasins/AnnexeeP 8° 65691 bL'année en courscParisdBibliothèque de rechercheeP 8° 6569 aZCAD aDEW 320-321 aGEO RA4.02 Grande-Bretagne01470nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210002900187326001600216606002900232606004600261710005300307801002100360856012800381856010800509856009000617856010800707856004600815856007400861955007000935972000901005991001801014992003101032992002101063992001201084038680777000001148320131025120004.01 a0007-1315 aFNSP125181 a0000011483 a19900101a19509999 ba0 aeng aGB aaha 10aBritish journal of sociology aLondoncRoutledged1950- aTrimestriel aSociologiexPériodiques aSociologieyGrande-BretagnexPériodiques02aLondon School of Economics and Political Science 3aFRbCCN0007-13154 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=BJS&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00071315.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.blackwell-synergy.com/loi/bjos zContenu : sommaires et résumés depuis le volume 50, numéro 1, 19991 bvol. 1 no. 1 (mar-1950) -....cParisdMagasins/AnnexeeP 8° 0851 aZSAB aexempb201101 aGEO RA4.02 Grande-Bretagne aGEO RQ Universel aDEW 30101502nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000046001642100039002103260018002496060045002678010013003128560203003258560108005288560103006368560108007398560109008478560108009569550091010649720009011559920012011640000598689000059868920130319051138.01 a0142-5692 a0000598689 a a19809999 fre 01 ba0 aeng aGB a 0  ar aag z 0 10aBritish journal of sociology of education aAbingdoncCarfax Publishingd1980- a5 n°s par an aSociologie de l'éducationxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://web.ebscohost.com/ehost/detail?vid=1&hid=14&sid=b1d8d918-ce7e-4340-ab0c-dffa2c28af75%40sessionmgr14&bdata=JnNpdGU9ZWhvc3QtbGl2ZQ%3d%3d#db=sih&jid=BRT zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=102205 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713409002db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 24 no. 1 (fev-2003) -vol. 28 no. 6 (nov-2007)cParisdMagasins/AnnexeeP 8° 6737 aZPAY aDEW 30101458nas0 2200409 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200002100180207003100201210004300232326001800275606005300293607006100346676000800407801003000415801002300445802000700468856010700475856007600582856010300658856010800761955006600869955000500935955007000940972000901010992001701019992001201036109988353000104325820130716151803.01 a1746-918X aissn1746918X a0001043258 a20061013a20069999k y0frey0103 ba0 aeng aGB a 0  ar aaia 0uu 10aBritish politics 0aVol. 1, no. 1 (Apr. 2006)- aBasingstokecPalgrave Macmilland2006- a3 n°s par an aScience politiqueyGrande-BretagnexPériodiques aGrande-BretagnexPolitique et gouvernementxPériodiques a940 3aFRbAbesc20061013gAFNOR 3aFRbISSNc20061013 a024 uhttps://acces-distant.sciences-po.fr/fork?http://www.palgrave-journals.com/bp/journal/v2/n1/index.html zContenu : résumés et texte intégral depuis le vol.1, n°1,april 20064 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=1147424 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 a1 bvol. 1 no. 1 (avr-2006) -....cParisdMagasins/AnnexeeP 8° 6922 aZCAD aGEO RA4 . 02 aDEW 94100843nls 2200277 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101106000600108110001600114135001800130200008600148210004300234230002800277326001100305606003800316710005100354801001300405856010900418955000500527992002100532992001200553153476184000124148320131120153015.01 a2044-9437 a a19769999k fre 01 ba0 aeng aGB ar aak z  adr 10aBritish yearbook of international lawb[Ressource électronique]fOxford journals aOxfordcOxford University Pressd1976- aRessource électronique aAnnuel aDroit internationalxPériodiques02aRoyal Institute of International Affairsc(GB) 0aFRbFNSP4 uhttp://bybil.oxfordjournals.org/content/by/yearzAccès au texte intégral à partir de l'éditiion 19761 r aGEO RQ Universel aDEW 34101265nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200004200138210005100180326001500231441006900246606003700315710004000352801002100392856012800413856010800541856009000649856010800739955006500847972000900912991001800921992001200939038681048000000353520140106112033.01 a0007-2303 aFNSP103122 a0000003535 a19900101a19709999 ba0 aeng aUS10aBrookings papers on economic activity aWashington, D.C.cBrookings Institutiond1970- aSemestriel 1aBrookings papers on economic activity. Microeconomicsx1057-8641 aEconomie politiquexPériodiques02aBrookings Institutionc(Etats-Unis) 3aFRbCCN0007-23034 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=BPE&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00072303.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 2 (1970) -(aut-2011)cParisdMagasins/AnnexeeP 8° 2936 aZPAY aexempb201106 aDEW 33001135nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005900154210005500213326001100268437005300279606005200332606004900384712004000433856004200473856009000515856010800605955005600713991001700769992002300786992001200809040283356000010328020130319051138.01 a1057-8641 aFNSP443025 a0000103280 a19900101b19891998 ba0 aeng aUS aaja 10aBrookings papers on economic activity.iMicroeconomics aWashington, D.C.cBrookings Institutiond1989-1998 aAnnuel 1aBrookings papers on economic activityx0007-2303 aHistoire économiquez20e sièclexPériodiques aEconomie politiqueyEtats-UnisxPériodiques02aBrookings Institutionc(Etats-Unis)4 uhttp://www.brook.edu/pub/Journals.htm4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/10578641.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1989) - (1998)cParisdMagasins/AnnexeeP 8° 5971 aexemp$201111 aGEO RC2 Etats-Unis aDEW 33801378cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200011900180207003200299210005900331326001500390430005200405517001800457606004400475710008100519801003000600801002300630802000700653856012800660856010800788955009900896972000900995992001201004094071047000093119620130319051138.01 a1080-0786 aissn10800786 a0000931196 a19940922a19949999k y1fre 0103 ba0 aeng aUS a 0  ar aaja 0uu 14aThe Brown journal of world affairsfpublished in collaboration with the Watson Institute for International Studies 0aVol. 1, n°2 (Spring 1994)- aProvidence, RIcBrown Journal of World Affairsdc1994- aSemestriel 1tThe Brown journal of foreign affairsx1072-679910aWorld affairs aRelations internationalesxPériodiques02aThomas J. Watson Jr. Institute for International Studiesc(Providence, R.I.) 3aFRbAbesc20051209gAFNOR 3aFRbISSNc20051021 a014 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=JI8&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 10 no. 1 (ete/aut-2003) -vol. 11 no. 2 (hiv/pri-2005)cParisdMagasins/AnnexeeP 8° 6865 aZSAB aDEW 32701046nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101001300108102000700121105001800128110001600146200013900162207003400301210003600335326001600371430005000387606003700437710007200474801001300546856005300559856004700612955006400659972000900723992001200732073381527000060561820130319051139.01 a1379-9932 a0000605618 a a20029999 fre 01 ba0 afreaeng aBE a 0  aah z 0 10aBrussels economic reviewd= Cahiers économiques de BruxellesfDépartement d'économie appliquée de l'Université libre de Bruxelles 1aVol. 45, n° 3 (Autumn 2002)- aBruxellescEd. du DULBEAd2002- aTrimestriel 1tCahiers économiques de Bruxelles,x0008-0195 aEconomie politiquexPériodiques02aUniversité libre de BruxellesbDépartement d'économie appliquée 0aFRbFNSP4 uhttp://homepages.vub.ac.be/mcincera/BER/BER.html zContenu : accès aux sommaires depuis 19971 bvol. 45 no. 3 (aut-2002) -....cParisdMagasinseP 8° 2008 aZPAY aDEW 33001396nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004300139207002600182210003500208300008600243326001100329452005500340530004300395606003700438607006500475710004800540856020200588955006400790955014200854972000900996991001801005992002301023992001201046039106810000000834420131210171345.01 a0163-2000 aFNSP114492 a19900530a19369999 ba0 aeng aUS aaka 10aBudget of the United States Government 1a1935 publié en 1936- aWashington, D.C.cUSGPOd1936- aPublication en 2 volumes. - Vol. 1 s'intitule : Fiscal year, le vol. 2 : Appendix aAnnuel 1tBudget of the United States Government (Dept. ed.)00aBudget of the United States Government aBudgetyEtats-UnisxPériodiques aEtats-UnisxCrédits budgétaires et dépensesxPériodiques02aEtats-UnisbOffice of Management and Budget4 uhttp://search.whitehouse.gov/search?affiliate=wh&form_id=usasearch_box&m=false&page=1&query=fiscal+year+budget&submit.x=28&submit.y=13zAccès au texte intégral des 3 dernières éditions en ligne1 bno 1(1980) -no 2 (2011)cParisdMagasins/AnnexeeP 4° 55471 b(1935) -(1936) ; (1938) ; (1945) ; (1951) ; (1954) -(1955) ; (1966) -(1967) ; (1969) ; (1975) -(1979)cParisdMagasins/AnnexeeCOL4°0323 aZCAD aexempb201312 aGEO RC2 Etats-Unis aDEW 33601024nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000046001552100086002013260011002876060062002987100125003608560100004858560036005859550054006219720009006759920022006849920016007069920012007220000172337000017233720130319051139.0 a1152-5029 aFNSP651390 a0000172337 a19900101b00012007 ba0 afre aFR aaka 10aBudgets primitifs des départements en... aPariscService des statistiques, des études et des techniques localesd0001-2007 aAnnuel aBudgetyFrancexDépartementsxStatistiquesxPériodiques02aFrancebDirection générale des collectivités localesbService des statistiques, des études et des techniques locales4 uhttp://www.dgcl.interieur.gouv.fr/publications/collections/Collections/col_stat_fin_local_2.htm4 zAccès libre au texte intégral1 b(1994)-(2007)cParisdMagasins/AnnexeeP 4° 6559 aZGRA aGEO RA4.06 France aDEW 310-319 aDEW 33601079nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000041001552100086001963260011002825300044002936060057003377100125003948560100005198560036006199550063006559720009007189920022007279920012007499920016007610000172333000017233320130319051139.0 a1155-5629 aFNSP651383 a0000172333 a19900101b00012006 ba0 afre aFR aaka 10aBudgets primitifs des régions en... aPariscService des statistiques, des études et des techniques localesd0001-2006 aAnnuel00aBudgets primitifs des régions (France) aBudgetyFrancexRégionsxStatistiquesxPériodiques aFrancebDirection générale des collectivités localesbService des statistiques, des études et des techniques locales4 uhttp://www.dgcl.interieur.gouv.fr/publications/collections/Collections/col_stat_fin_local_2.htm4 zAccès libre au texte intégral1 b(1991) ; (1993)-(2006)cParisdMagasins/AnnexeeP 4° 6560 aZGRA aGEO RA4.06 France aDEW 336 aDEW 310-31901348nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200010700139210006400246300003200310326001600342430003300358510006000391530005300451601003900504606003300543607004800576710002500624830004200649830005800691856010000749955007800849972000900927991001800936992002000954992001200974039284271000006075320130930130424.01 a0256-5323 aFNSP278398 a19900101a19829999 ba0 aeng aIR aaha 10aBulletinfBank Markasi Islamic Republic of Iran‎f= the Central Bank of the Islamic Republic of Iran aTehrancCentral Bank of the Islamic Republic of Irand1981- aArrive avec 2 ans de retard aTrimestriel 1aBulletin - Bank Markazi Iran10aBulletin - Central Bank of the Islamic Republic of Iran10aBulletin - Bank Markasi Islamic Republic of Iran02aCentral Bank of IranxPériodiques aFinancesyIranxPériodiques aIranxConditions économiquesxPériodiques02aCentral Bank of Iran a1962--1984 donné au CTL en juin 2002 a1984/1985-2000 : collection envoyée au Ctles en 20134 uhttp://www.cbi.ir/SimpleList/Bulletin_en.aspxzAccès libre au texte intégral depuis 2001/20021 bno 113/114 (1985) -no. 177/178 (2000)cParisdMagasins/AnnexeeP 4° 2260 aZGRA aexempb201305 aGEO RG4.02 Iran aDEW 33201770cas0 2200469 450 001001000000002001100010005001700021011001400038035001400052035002000066035001700086035001700103035001500120100004100135101000800176102000700184105001800191106000600209110001600215200005500231207003100286210006300317300016700380326001100547432010100558440007700659517003100736530005600767531004100823532006300864606004500927606003900972710005901011801001301070802000701083856006301090856003701153955006801190972000901258992001201267992002101279050921711000031746320130517153557.0 a1624-6519 a057926697 a(OCoLC)48845001 accn7209/4818 aissn16246519 a0000317463 a20000614b20002009u y0frey50 ba0 afre aFR ay  ar aauu uu 00aBulletinfCentre d'histoire sociale du XXe siècle 0aN ° 23(2000)-N° 32(2009) aPariscCentre d'histoire sociale du XXe siècled2000-2009 aCesse de paraître au format papier avec le n° 32 de 2009. Les n° suivants sont accessibles directement sur le site Internet du Centre d'histoire du XXe siècle aAnnuel 0tBulletin du Centre de recherches d'histoire des mouvements sociaux et du syndicalismex0220-2018 1tBulletin (Centre d'histoire sociale du XXe siècle. En ligne)x2262-854110aBulletin - CHS XXe siècle10aBulletin - Centre d'histoire sociale du XXe siècle 0aBull. - Cent. hist. soc. XXe siècle10aBulletin - Centre d'histoire sociale du vingtième siècle aMouvements sociauxxPériodiques2rameau aSyndicalismexPériodiques2rameau02aCentre d'histoire sociale du XXe sièclec(Paris)4070 0aFRbFNSP a074 uhttp://histoire-sociale.univ-paris1.fr/spip.php?article4004 zAccès libre au texte intégral.1 bno.23 (2000) -no. 32 (2009)cParisdMagasins/AnnexeeP 8° 6056 aZGRA aDEW 303 aGEO RQ Universel00976nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000540015421000780020832600160028651700100030251700520031260600320036460600440039671000530044085600660049385600360055995500580059597200090065399200120066204031250X000024526920130319051140.01 a1071-9652 aFNSP862660 a0000245269 a19900101a19929999 ba0 aeng aUS aaya 10aBulletin - Cold War International History Project aWashington, D.C.cWoodrow Wilson International Center for Scholarsd1992- aIrrégulier10aCWIHP10aCold War International History Project Bulletin aGuerre froidexPériodiques aRelations internationalesxPériodiques02aWoodrow Wilson International Center for Scholars4 uhttp://www.wilsoncenter.org/publication-series/cwihp-bulletin4 zAccès libre au texte intégral1 bno. 2 (1992) -...cParisdMagasins/AnnexeeP 4° 6756 aZGRA aDEW 32701822cas0 2200385 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147105001800154106000600172110001600178200006300194207002900257210002400286304035100310306005500661440004800716512014500764530006500909710005800974711006101032712006301093801003001156801002301186802000701209856014501216955005501361991002001416078579759000109462220130319051140.0 a1766-8298 a03853777X aissn17668298 a0001094622 a20030523b18761911 y frey0103 ba0 afre aFR a 0  ar aau 0 10aBulletinfSociété de géographie commerciale de Bordeaux 0aN.1(1876=1874/75)-(1911) aBordeauxd1876-1911 aLe titre de couv. mentionné varie. En 1883, la couv. porte "Association française pour l'avancement des sciences. Groupe géographique du Sud-ouest. Société de géographie..... Bulletin" et à partir de 1900, la couv. porte "Groupe géographique et ethnographique du Sud-Ouest. Bulletin de la Société de géographie commerciale de Bordeaux" aNouvelle adresse bibliographique : Féret libraire 1tRevue de géographie commercialex1766-830110aAssociation française pour l'avancement des sciences. Groupe régional girondin. Société de géographie commerciale de Bordeaux. Bulletin10aBulletinb(Société de géographie commerciale de Bordeaux)02aSociété de géographie commerciale de Bordeaux407002aGroupe géographique et ethnographique du Sud-ouest407002aAssociation française pour l'avancement des sciences4340 3aFRbAbesc20070531gAFNOR 3aFRbISSNc20030523 a074 uhttp://gallica.bnf.fr/ark:/12148/cb328696274/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1874-1912)1 b(1891) -(1897)cParisdMagasins/AnnexeeP 8° 0819 aPériobTP02 P801050nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200004200160210007200202326001200274606004600286856014700332955008100479957009100560972000900651991001800660991003600678992002200714992001200736039220885000005685820130319051140.01 a0007-411X aFNSP265263 a0000056858 a19900101a18309999 ba0 afre aFR ar aafa 10aBulletin annoté des lois et décrets aPariscPublications périodiques de l'Imprimerie Paul Dupontd1830- aMensuel aDroityFrancexLégislationxPériodiques4 uhttp://gallica.bnf.fr/ark:/12148/cb34426061p/date.r=.langFRzAccès libre au texte intégral. Périodique partiellement numérisé sur Gallica1 bno. 1 (1830) -vol. 173 no. 12 (dec-2003)cParisdMagasins/AnnexeeP 8° 03821 b(1830) -(1860) ; (1870) -(1886) ; (1886) -(1900)cParisdMagasins/AnnexeeP Index 0094 aZPAY aexempb201104 anumer0 (complément de gallica) aGEO RA4.06 France aDEW 34801289cas0 2200361 450 00100100000000200110001000500170002101100140003803500170005203500170006903500150008610000410010110100080014210200070015010500180015710600060017511000160018120000630019721000650026032600110032544000420033651700560037853000630043453100370049771200470053480100300058180100230061180200070063485600900064185601080073195500680083999100200090703798053X000111362320130319051140.0 a0398-8147 accn0398-8147 aissn03988147 a0001113623 a19910110b19511952u y0frey0103 ba0 afre aFR ay  ar aaju uu 10aBulletin annuel de l'Institut français d'histoire sociale aCourbevoiecInstitut français d'histoire socialed1951-1952 aAnnuel 1tL'Actualité de l'histoirex0398-812010aBulletin de l'Institut français d'histoire sociale00aBulletin annuel de l'Institut français d'histoire sociale 0aBull. annu. Inst. fr. hist. soc.02aInstitut français d'histoire sociale4340 3aFRbAbesc20071003gAFNOR 3aFRbISSNc20071003 a074 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03988147.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 2 (1952) ; no. 3 (1952)cParisdMagasins/AnnexeeP 4° 1119 aPériobTP02 P401888cas0 2200433 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035002500100035001500125100004100140101000800181102000700189105001800196106000600214110001600220200008000236207006300316210007100379326001100450431012900461446012400590446011700714517007900831530008000910531004200990606003501032712006601067801003001133801002301163801002901186802000701215856014501222955006701367991002001434037453769000109456520130319051140.0 a0071-8394 a07051433X accn0071-8394 aissn00718394 aFRBNF327170950000005 a0001094565 a19960829b18831973 y0frey0103 ba0 afre aFR a 0  ar aaku 0uu 10aBulletin archéologique du Comité des travaux historiques et scientifiques 0a1883-1963/1964aN.s., vol. 1 (1965/66)-n.s., vol. 7 (1973) aPariscComité des travaux historiques et scientifiquesd1883-1973 aAnnuel |tBulletin du Comité des travaux historiques et scientifiques. Section d'histoire, d'archéologie et de philologiex0994-8325 |tBulletin archéologique du Comité des travaux historiques et scientifiques. Fasc. A, Antiquités nationalesx0997-5322 |tBulletin archéologique du Comité des travaux historiques et scientifiques. Fasc. B, Afrique du Nordx0997-530610aBulletin du Comité des travaux historiques et scientifiques. Archéologie00aBulletin archéologique du Comité des travaux historiques et scientifiques 0aBull. archéol. Com. trav. hist. sci. aHistoirexPériodiques2rameau02aFrancebComité des travaux historiques et scientifiques4340 3aFRbAbesc20070308gAFNOR 3aFRbISSNc20030203 3aFRbBnFc20060327gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb327170958/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1883-1935)1 bno. 2 (1883) -no. 2 (1905)cParisdMagasins/AnnexeeP 8° 0791 aPériobTP02 P801403nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200007500163207010600238210002900344326001700373441004700390530003100437601003900468601004500507606003700552710003000589801001300619856014100632955021700773991005900990992001601049038555875000047230220130319051140.0 a1149-381X a0000472302 a b19201933k fre ba0 afre aFR a 0  ar aa z 0 10aBulletin communisteeorgane du Comité de la Troisième internationale 1a1ère an., no. 1(1920)-5ème an., no. 46 (1924)a6ème an. no. 1 (1925)-14ème an., no. 32/322 (1933) aParisc[s.n.]d1920-1933 aHebdomadaire 1tCahiers du bolchévisme (Paris)x1149-827710aBulletin communistebParis02aInternationalec(03)xPériodiques02aParti communiste françaisxPériodiques aCommunismeyFrancexPériodiques02aParti communiste francais 0aFRbFNSP4 uhttp://gallica.bnf.fr/ark:/12148/cb34429127h/date.r=.langFRzAccès libre au texte intégral. Années 1922-1923 numérisées sur Gallica1 b1ère an., no. 17 (8 jul-1920)-6ème an. no. 46 (14 nov-1924)cParisdAnnexeeP P4° 2151wManquant : nos 1, 16, 22, 1920 ; nos 15, 16, 23, 25, 33/35, 44/45, 51, 57, 1921 ; nos 7, 11, 15, 22, 25, 31, 37, 40, 1922 anumer0 (complément gallica mais collection lacunaire) aDEW 324.2-501323cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001700069100004100086101000800127102000700135110001600142200011000158207004500268210007000313326001800383440003500401530003600436601003300472606004200505606003400547606003300581710005900614801003000673801003000703801002300733802000700756856007400763955008700837972000900924992001600933048750026000105575620131104153741.01 a1292-5497 accn1292-5497 aissn12925497 a20000228a19949999k y0frey0103 ba0 afre aFR aaiu uu 10aBulletin d'études de la MarinefMinistère de la Défense. Centre d'enseignement supérieur de la Marine 1ano. 11(fev-1994,fév.)-no. 50 (oct-2010) a[Paris]cCentre d'enseignement supérieur de la Marined1994-2010 a3 n°s par an 1tEtudes de la Marinex2119-775X02aBulletin d'études de la Marine02aFrancebMarinexPériodiques aLittorauxxAménagementxPériodiques aDroit de la merxPériodiques aDroit maritimexPériodiques02aCentre d'enseignement supérieur de la marinec(Paris) 3aFRbAbesc20060711gAFNOR 3aFRbAbesc20060711gAFNOR 3aFRbISSNc20010401 a074 uhttp://www.cesm.air.defense.gouv.fr/zAccès libre au texte intégral1 bConservation limitée aux 5 dernières annéescParisdMagasins/AnnexeeP 4° 7163 aZGRA aDEW 355-35901366cas0 2200361 450 001001000000002001100010005001700021011002500038035001700063035001700080035002500097035001500122100004100137101000800178102000700186105001800193110001600211200005400227207001900281210002700300326001600327440008700343710012200430711006600552801003000618801002300648801002900671802000700700856015300707955011600860991001700976991001100993038761238000107575020130319051140.0 a1246-7006y1155-7478 accn1246-7006 aissn12467006 aFRBNF327175500000000 a0001075750 a19931213b19111924uuuy1frey0103 ba0 afre aFR a 0  aahu 0uu 10aBulletin d'histoire économique de la Révolution 0a1911-1920/1921 aPariscCTHSd1911-1924 aTrimestriel 1tBulletin d'histoire économique et sociale de la Révolution françaisex0068-405802aFrancebCommission de recherche et de publication des documents relatifs à la vie économique de la Révolution407002aFrancebComité des travaux historiques et scientifiques4070 3aFRbAbesc20060703gAFNOR 3aFRbISSNc20050826 3aFRbBnFc20060327gAFNOR a074 uhttp://archive.org/stream/bulletindhistoi00frangoog#page/n11/mode/2upzAccès libre au texte intégral. Année 1907 numérisée sur Internet Archive1 b(1911) ; (1912) ; (1913) ; (1914) -(1916) ; (1917) -(1919) ; (1920) -(1921)cParisdMagasins/AnnexeeCOL8°0679 aPériobTP01 anumer000814nls 2200241 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200007800124210008000202230002400282326001400306601004400320712003000364801001300394856012800407992002500535992001200560000096118520131129142821.0 a a19959999k fre 01 ba0 afre aFR ar aae z  adr 10aBulletin d'information de la Cour de cassationb[Ressource électronique] aPariscService de documentation et d'études de la Cour de cassationd1995- aRevue électronique aBimensuel02aFrancebCour de cassationxPériodiques02aFrancebCour de cassation 0aFRbFNSP4 uhttp://www.courdecassation.fr/publications_cour_26/bulletin_information_cour_cassation_27/zAccès libre au texte intégral aGEO RA4.06 France 01 aDEW 34801149nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200019600154207004000350210004300390326001500433430006300448601003800511606003600549710005700585856009700642955008800739992001800827992001400845076642887000025574120130319051140.01 a1608-960X aFNSP892582 a0000255741 a19900101a19969999 f ba0 afre aFR aaja 10aBulletin d'information sur les droits de l'hommeeactivités du Conseil de l'Europe en matière de droits de l'hommefCouncil of Europef= Conseil de l'Europe, Direction des droits de l'homme 1aN° 39(juillet 1996-février 1997)- aStrasbourgcConseil de l'Europed1996- aSemestriel 1aFeuille d'information sur les droits de l'hommex0259-139102aConseil de l'EuropexPériodiques aDroits de l'hommexPériodiques02aConseil de l'EuropebDirection des droits de l'homme uhttp://www.humanrights.coe.int/Bulletin/fre/presenting.htmzAccès libre au texte intégral.1 bno. 39 (jul-1996-(fev-1997) -no. 42 (1997/1998)cParisdMagasins/AnnexeeP 4° 4627 aGEO RA Europe aDEW 341.201510nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007300154210002600227326001600253430007500269440003700344517003700381517007600418606004100494606004400535606004400579712004700623801002100670830020900691856005000900856008100950955006201031972000901093992002201102992001201124039219895000001143520130319051140.01 a0004-5365 aFNSP125011 a0000011435 a19900101b19462001 ba0 afre aFR aahu 10aBulletin d'informations - Association des bibliothécaires français aPariscABFd1946-2001 aTrimestriel 1tChronique - Association des bibliothécaires françaisxISSN 1256-2173 1tBIBLIOthèque(s)xISSN 1632-920110aBulletin d'informations - A.B.F.10aBulletin d'informations de l'Association des bibliothécaires français aBibliothèquesyFrancexPériodiques aBibliothéconomieyFrancexPériodiques aSciences de l'informationxPériodiques02aAssociation des bibliothécaires français 3aFRbCCN0004-5365 arN° 13, mars 1954 ----> n° 105, 1979 < P 8°1276 >, n° 106,1980 ---->1984 < P 4°4467 > : collection Locarchives à jeter ; conservons seulement Bibliothèque(s) 2 ans, notice désactivée janvier 20084 uhttp://www.abf.asso.fr/publications/bulletin/ zContenu : sommaires des numéros disponibles depuis 1992 ; texte depuis 19981 bConservation limitée aux 2 dernières années P 4° 4467 aZPAY aGEO RA4.06 France aDEW 02001009nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005200139210009800191300004600289326001600335422003400351530006100385606004800446710006000494856003800554955008000592972000900672992002200681992001600703039889920000005707220131007171804.01 a1141-5487 aFNSP265899 a19900101b19892004 ba0 afre aFR aaya 10aBulletin d'informations statistiques de la DGCL aPariscMinistère de l'intérieur, Direction générale des collectivités localesd1989-2004 aDevient consultable en ligne gratuitement aIrrégulier 1tDémocratie localex0183-559910aBulletin d'informations statistiques de la DGCLb(Paris) aAdministration localeyFrancexPériodiques01aFrancebDirection générale des collectivités locales4 uhttp://www.dgcl.interieur.gouv.fr1 bno. 1 (mai/jun-1989) -no. 46 (jul-2003)cParisdMagasins/AnnexeeP 4° 5803 aZGRA aGEO RA4.06 France aDEW 350-35401016nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210002300200326001500223422004000238606003500278710004800313856011100361856010800472955013700580972000900717992001200726036359122000025318720130319051140.01 a1148-7801 aFNSP883769 a0000253187 a19900101a19689999 f ba0 afre aFR aaja 10aBulletin de droit nucléaire. Supplément aPariscOCDEd1968- aSemestriel 1aDroit nucléaire (Paris)x1016-4995 aDroit nucléairexPériodiques02aAgence de l'OCDE pour l'énergie nucléaire4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043428/bulldroitnucleaire zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1968) -(2001)cParisdMagasins/AnnexeeP 4° 2500 biszde 1968 à 2001 le supplément est relié avec la revue < P 4° 2500 > aZPAY aDEW 34101708cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035002500069035001700094035001500111100004100126101000800167102000700175106000600182110001600188200008600204210002900290305013100319440009400450517009400544517009800638530008600736531004700822712007700869801003000946801002900976801002301005802000701028856014501035955006901180991002001249991005301269038430738000109507720131015165814.0 a0996-0201 accn0996-0201 aFRBNF327186290000007 aissn09960201 a0001095077 a19900906b18991921uuuy0frey0103 ba0 afre aFR ar aahu uu 10aBulletin de l'Alliance nationale pour l'accroissement de la population française aParisc[s.n.]d1899-1921 aBulletin mensuel à partir de février 1914 ; devient trimestriel en 1915 ; redevient mensuel dans le courant de l'année 1920 1tRevue de l'Alliance nationale pour l'accroissement de la population françaisex1149-985010aBulletin mensuel de l'Alliance nationale pour l'accroissement de la population française10aBulletin trimestriel de l'Alliance nationale pour l'accroissement de la population française10aBulletin de l'Alliance nationale pour l'accroissement de la population française 0aBull. Alliance natle. accroiss. popul. fr.02aAlliance nationale pour l'accroissement de la population française4340 3aFRbAbesc20070604gAFNOR 3aFRbBnFc20060327gAFNOR 3aFRbISSNc20070412 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34425170p/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1899-1915)1 b(1914) -(1921)wlacunes 20 %cParisdMagasins/AnnexeeP 8° 0873 aPériobTP02 P8 anumer0 (1908-1912 1916-1921 complément gallica)01027nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003900139210011000178300017200288326001700460530003900477601006000516712004600576856003900622955006600661992002200727992001200749001027603000006565120130906122036.01 a0755-2793 aFNSP303708 a19900101b19722005 ba0 afre aFR aaca 10aBulletin de l'Assemblée nationale aPariscSecrétariat général de l'Assemblée nationale, Service d'informations parlementairesd1972-2005 aLa publication papier est arrêtée à la fin des travaux de l'Assemblée, en Juillet 2005. Le bulletin sera consultable sur le site Internet de l'Assemblée nationale aHebdomadaire10aBulletin de l'Assemblée nationale02aFrancebAssemblée nationalec(1958-....)xPériodiques02aFrancebAssemblée nationalec(1958-....)4 uhttp://www.assemblee-nationale.fr/1 bno.1 (1972)-no.102 (2005)cParisdMagasins/AnnexeeP 4° 3221 aGEO RA4.06 France aDEW 32801288nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200005500160207002200215210005500237326001600292517001600308606004600324606004900370676000800419710004100427801002100468856007300489955006600562955008600628957005700714957006700771972000900838991001800847992002500865992001200890039219860000001147020130319051140.01 a0004-5322 aFNSP125105 a0000011470 a19900101a19249999 ba0 afre aFR ar aahu 10aBulletin de l'Association de géographes français 1ano. 1 (mar-1924)- aPariscAssociation de géographes françaisd1924- aTrimestriel10aGeographies aGéographie humaineyFrancexPériodiques aGéographieyFrancexRecherchexPériodiques a91002aAssociation de géographes français 3aFRbCCN0004-53224 uhttp://association-de-geographes-francais.fr/zSommaires depuis 20071 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9101 bno. 187 (jun-1947) ; no. 190 (jan-1948) -....cParisdMagasins/AnnexeeP 8° 00861 b(1955) -(1975)cParisdMagasins/AnnexeeP Index 02891 b(1986)-(1995)zcet index se trouve dans le vol. 73 no 3 (1996) aZPAY aexempb201110 aGEO RA4.06 France 01 aDEW 91001098cas0 2200289 450 001001000000002001100010005001700021035001700038100004100055101000800096102000700104106000600111110001600117200004700133210004200180326001200222430005100234434006600285440005900351530005500410710003800465801003000503856018900533955005500722991002000777991001100797039210405000109344620131015161225.0 accn9022/6321 a19830101b18901940 0frey0103 ba0 afre aFR ar aafa 10aBulletin de l'Institut catholique de Paris aPariscAncienne librairie Poussielgue aMensuel 1tRevue de l'institut catholique de paris (1896) |tBulletin du denier de l'institut catholique de Paris, en 1910 1tNouvelles de l'Institut catholique de Parisx0294-429410aBulletin de l'Institut catholique de Parisb(1910)02aInstitut catholique de Paris4070 3aFRbAbesc20040914gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb327208532/date.r=Bulletin+de+l%27Institut+catholique+de+Paris.langFRzAccès libre au texte intégral. Périodique numérisé sur gallica (1890-1940)1 b(1910) -(1940)cParisdMagasins/AnnexeeP 8° 0723 aPériobTP02 P8 anumerX01334nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005600154207003200210210002700242300010300269326002600372326002700398435004200425517006500467517002300532606004600555710005100601801002100652856002900673856012100702955007200823972000900895991001800904992002200922992001600944001017616000001132420130319051140.01 a0247-0101 aFNSP124409 a0000011324 a19900101b19802007 ba0 afre aFR aaja 10aBulletin de l'Institut d'histoire du temps présent 1ano. 1 (1980) -no. 87 (2007) aPariscIHTPd1980-2007 aÀ partir du no 88 de 2008, n'est plus accessible qu'en ligne sur le site$uhttp://www.ihtp.cnrs.fr aSemestrielb1998-2007 aTrimestrielb1980-1997 1tLes Cahiers de l'IHTPxISSN 0769-450410aBulletin trimestriel - Institut d'histoire du temps présent10aBulletin de l'IHTP aHistoirexRechercheyFrancexPériodiques02aInstitut d'histoire du temps présentc(Paris) 3aFRbCCN0247-01014 uhttp://www.ihtp.cnrs.fr/ uhttp://www.ihtp.cnrs.fr/spip.php%3Frubrique68&lang=fr.htmlzContenu : texte intégral à partir du n° 71, Juin 19981 bno. 1 (jun-1980) -no. 87 (2007)cParisdMagasins/AnnexeeP 4° 4503 aZGRA aexempb201201 aGEO RA4.06 France aDEW 900-90700995cas0 2200277 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119105001800126110001600144200003700160210006700197301005500264440004700319530003700366712002700403801003000430856012700460955006900587991002000656991004100676048882739000109461620131015162534.0 accn7208/6920 a0001094616 a20000323b18591918m y0frey0103 ba0 afre aEG a 0  aaub z 0 10aBulletin de l'institut égyptien aAlexandriecImprimerie française Mourès et Perrind1859-1918 aDemande de numérotation ISSN en cours par le CR25 1tBulletin de l'Institut d'Egyptex1110-193800aBulletin de l'institut égyptien02aInstitut d'Egypte4340 3aFRbAbesc20060622gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/bpt6k9336266zAccès libre au texte intégral. Années 1913-1918 numérisées sur Gallica1 b(1875) -(1895)wlacunes 20 %cParisdMagasins/AnnexeeP 8° 0792 aPériobTP02 P8 anumer0 (mode image seul sur gallica)01484cas0 2200409 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150110001600157200004300173210004700216300005000263326002300313430006400336606004400400606003200444676000800476710003800484801003000522801002300552802000700575856011800582856010800700856005000808856006800858955007600926972000901002991001801011992003301029992001201062040518280000070567020130319051140.01 a1276-8944 accn1276-8944 aissn12768944 a0000705670 a19970214b19962010 0fre 0103 ba0 afre aFR aaj 10aBulletin de l'Institut Pierre Renouvin aPariscInstitut Pierre Renouvind1996-2010 aA partir de 2010, publié uniquement en ligne a2 ou 3 n°s par an 1tTravaux et recherches - Institut Pierre Renouvinx0993-3298 aRelations internationalesxPériodiques aGéopolitiquexPériodiques a32702aInstitut Pierre Renouvinc(Paris) 3aFRbAbesc20040915gAFNOR 3aFRbISSNc20000701 a074 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-bulletin-de-l-institut-pierre-renouvin.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://ipr.univ-paris1.fr/spip.php?rubrique20 zContenu: sommaire des numéros, depuis le n° 1/2, automne 19961 bno. 8 (pri-1999) -no. 30 (aut-2009)cParisdMagasins/AnnexeeP 8° 6783 aZGRA aexempb201212 aGEO RS Sans aspect régional aDEW 32701358cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001700069035002500086035001500111100004100126101000800167102000700175106000600182110001600188200003600204207006900240210003800309440007800347530003600425531002100461606003300482712008400515712006400599801003000663801002300693801002900716802000700745856013400752955005500886991002000941991001100961038499932000108415020130319051140.0 a1143-9777 accn1143-9777 aissn11439777 aFRBNF327213040000003 a0001084150 a19930519b18941912 0fre 0103 ba0 afre aFR ar aaf 10aBulletin de l'Office du travail 0a1re année, n °1 (1894, janv.)-19e année, n °12 (1912, déc.) aPariscBerger-Levraultd1894-1912 1tBulletin du Ministère du travail et de la prévoyance socialex1143-978500aBulletin de l'Office du travail 0aBull. Off. trav. aEmploixPériodiques2rameau02aFrancebMinistère du commerce, de l'industrie, des postes et des télégraphes02aFrancebMinistère du commerce et de l'industriec1906-1913 3aFRbAbesc20060630gAFNOR 3aFRbISSNc20010521 3aFRbBnFc20060327gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb32721304q/date.r=.langFRzAccès libre au texte intégral. Année 1906 numérisée sur Gallica1 b(1894) -(1913)cParisdMagasins/AnnexeeP 8° 0367 aPériobTP01 P8 anumer001504nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154210003500190326002300225326002300248421006700271421007300338436005100411436006000462606004700522606004400569606003500613607005000648676000800698710002100706856012000727856015500847955007301002972000901075992002201084992001201106040196623000011671220130522121438.01 a1250-5765 aFNSP485309 a0000116712 a19900101a19949999 ba0 afre aFR aafa 10aBulletin de la Banque de France aPariscBanque de Franced1994- aTrimestrielb2009- aMensuelb1994-2008 1aBulletin de la Banque de France. Supplément Etudesx1250-5854 1tBulletin de la Banque de France. Supplément Statistiquesx1250-5846 1aBulletin mensuel - Banque de Francex1145-5535 1tBulletin trimestriel de la Banque de FrancexI0150-7583 aPolitique monétaireyFrancexPériodiques aMarché financieryFrancexPériodiques aFinancesyFrancexPériodiques aFrancexConditions économiquesxPériodiques a33202aBanque de France4 uhttp://www.banque-france.fr/publications/bulletins-de-la-banque-de-france/les-bulletins-de-la-banque-de-france.html zContenu : texte intégral des 3 derniers bulletins, texte intégral des éditoriaux parus depuis 2003, texte intégral des études parues depuis 1994.1 bno. 1 (jan-1994) -no. 190 (2012)cParisdMagasins/AnnexeeP 4° 6327 aZPAY aGEO RA4.06 France aDEW 33200891nls 2200289 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200006300124210003500187230002400222326002300246326002300269606004400292606003500336607005000371676000800421801001300429856012000442955000500562992002200567992001200589000124476720130522162554.0 a a19949999k fre 01 ba0 afre aFR ar aah z  adr 10aBulletin de la Banque de Franceb[Ressource électronique] aPariscBanque de franced1994- aRevue électronique aTrimestrielb2009- aMensuelb1994-2008 aMarché financieryFrancexPériodiques aFinancesyFrancexPériodiques aFrancexConditions économiquesxPériodiques a332 0aFRbFNSP4 uhttp://www.banque-france.fr/publications/bulletins-de-la-banque-de-france/les-bulletins-de-la-banque-de-france.html1 r aGEO RA4.06 France aDEW 33201498nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200006100163210006400224326001500288440006300303447006700366447008600433453005200519517009200571606005700663606004200720606004100762710003600803801001300839856006100852856005400913955009100967972000901058992001201067992003301079040167046000042986920130909162009.01 a1017-2831 a0000429869 a b19902010k f fre ba0 afre aFR a 0  ar aaj z 0 10aBulletin de la Cour internationale d'arbitrage de la CCI aPariscCour internationale d'arbitrage de la CCId1990-2010 aSemestriel 1tICC International Court of Arbitration bulletinx2304-7100 1tThe ICC international Court of Arbritation bulletinx1017-284X 1tThe ICC international Court of Arbritation bulletin (éd. multilingue)x2304-7100 1tICC International Court of Arbitration bulletin10aBulletin de la Cour internationale d'arbitrage de la Chambre de commerce internationale aDroit commercial (droit international)xPériodiques aArbitrage internationalxPériodiques aCommerce internationalxPériodiques02aCour internationale d'arbitrage 0aFRbFNSP uhttp://www.iccwbo.org/court/french/bulletin/bulletin.asp zContenu : sommaires en ligne depuis le n°1, 19901 bvol. 12 no. 1 (jan/mar-2001) -vol. 21 no. 2 (2010)cParisdMagasins/AnnexeeP 4° 6903 aZPAY aDEW 341 aGEO RS Sans aspect régional01480cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001700069035002500086035001500111100004100126101000800167102000700175105001800182110001600200200004200216207003400258210003600292326001100328430006500339441009400404517008900498530004200587531002400629606003800653710006600691801003000757801002300787801002900810802000700839856014500846955007200991991001901063037453904000108078320130319051140.0 a0071-8432 accn0071-8432 aissn00718432 aFRBNF327451200000001 a0001080783 a19960829b19131979 y0frey0103 ba0 afre aFR a 0  aaku 0uu 10aBulletin de la Section de géographie 0aTome 28 (1913)-tome 84 (1979) aPariscErnest Lerouxd1913-1979 aAnnuel 1tBulletin de géographie historique et descriptivex0994-835X |tActes du ... congrès national des sociétés savantes. Section de géographiex0071-842410aBulletin du Comité des travaux historiques et scientifiques. Section de géographie00aBulletin de la Section de géographie 0aBull. sect. géogr. aGéographiexPériodiques2rameau01aFrancebComité des travaux historiques et scientifiques4070 3aFRbAbesc20070123gAFNOR 3aFRbISSNc20050729 3aFRbBnFc20060327gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb32745120s/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1903-1938)1 b(1959) -(1963) ; (1965) -(1979)cParisdMagasins/AnnexeeCOL8°5345 aPériobTP03 801483nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004800139210005100187326001600238422006900254430005300323440003600376517005600412517004600468530004800514606003900562710006000601801002100661856014500682955015000827957005700977991003601034991001801070992001201088992002101100038373319000001153020130912144209.01 a0991-1367 aFNSP125360 a19900101b19011992 ba0 afre aFR aaha 10aBulletin de la Société d'histoire moderne aPariscSociété d'histoire moderned1908-1992 aTrimestriel 1aRevue d'histoire moderne et contemporaine (1954)xISSN 0048-8003 1tSociété d'histoire moderne (Paris),x0999-2529 1aBulletin de la SHMC,x1243-880410aBulletin mensuel de la Société d'histoire moderne10aRevue d'histoire moderne et contemporaine aBulletin de la Société d'histoire moderne aHistoire universellexPériodiques02aSociété d'histoire moderne et contemporainec(France) 3aFRbCCN0116/71974 uhttp://gallica.bnf.fr/ark:/12148/cb34412914g/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1908-1990)1 bvol. 27 no. 1 (jan-1928) -vol. 39 no. 16 (avr-1939) ; vol. 57 no. 8/9 (1959) -vol. 91 no. 3/4 (1992)cParisdMagasins/AnnexeeP 8° 0728wlacunes1 b(1925) -(1937)cParisdMagasins/AnnexeeP Index 0081 anumer0 (complément de gallica) aexempb201309 aDEW 909 aGEO RQ Universel01566cas0 2200397 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164106000600171110001600177200005500193207002800248210003400276300018000310326002900490440005400519512006700573512006300640530005500703531002900758606004100787710004500828801003000873801002300903802000700926856014500933955007001078991002001148038771594000108373620130319051140.0 a1247-9748 a070901023 accn1247-9748 aissn12479748 a0001083736 a19940511b18721948uuuy0frey0103 ba0 afre aFR ar aafu uu 10aBulletin de la Société de législation comparée 0aT.1(1869/72)-T.71(1948) aPariscA. Cotillond1872-1948 aPour certaines années, les numéros paraissent à partir de janvier, mais la tomaison portée sur la page de titre est à cheval sur l'année précédente et l'année réelle aMensuel puis trimestriel 1tRevue internationale de droit comparéx0035-333710aBulletin trimestriel de la Société de législation comparée10aBulletin mensuel de la Société de législation comparée00aBulletin de la Société de législation comparée 0aBull. Soc. légis. comp.1 aDroit comparéxPériodiques2rameau02aSociété de législation comparée4070 3aFRbAbesc20070226gAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/cb345086607/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1869-1937)1 bvol. 1 (1869) -vol. 71 (1948)cParisdMagasins/AnnexeeP 8° 0030 aPériobTP01 P801270cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086040001100101100004100112101000800153102000700161105001800168110001600186200005500202210007700257430007600334517006500410530005500475531003000530710005400560801003000614802000700644856014500651955012800796991002000924036487473000111342620130319051140.0 a0037-9239 accn0037-9239 zccn0005/9560 a0001113426 aAA0103 a19940307b18831975k y0frey0103 ba0 afre aVN ay 0  aay 0 10aBulletin de la Société des études indochinoises aSaigoncSociété des imprimeries et librairies indochinoisesd1883-1975 1tBulletin du Comité agricole et industriel de la Cochinchinex1022-722910aBulletin de la Société des études indochinoises de Saigon00aBulletin de la Société des études indochinoises 0aBull. Soc. étud. indoch.02aSociété des études indochinoisescSaïgon4070 3aFRbAbesc20070712gAFNOR a004 uhttp://gallica.bnf.fr/ark:/12148/cb32724362m/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1884-1929)1 bvol. 26 no. 1 (1951) -vol. 27 no. 1 (1952) ; vol. 46 no. 1 (1971) -vol. 46 no. 4 (1971)cParisdMagasins/AnnexeeP 4° 0979 aPériobTP02 P401645cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035002500069035001500094100004100109101000800150102000700158105001800165106000600183110001600189200009900205207005300304210002900357326001500386440006100401517011000462530009900572531005100671606007800722606008100800710007600881801003000957801002900987802000701016856014501023955007101168991002001239038588234000108415820130319051140.0 a1153-7272 accn1153-7272 aFRBNF327244270000007 a0001084158 a19910321b19101965k y0frey0103 ba0 afre aFR a 0  ar aag 0 10aBulletin de la Société des professeurs d'histoire et de géographie de l'enseignement public 0a1re année, n°1 (1910)-54e année, n°192(1965) aParisc[s.n.]d1910-1965 aBimestriel 1tHistoriens et géographes (Neuilly-sur-Seine)x0046-757X10aBulletin de la Société des professeurs d'histoire et de géographie de l'enseignement secondaire public00aBulletin de la Société des professeurs d'histoire et de géographie de l'enseignement public 0aBull. Soc. prof. hist. géogr. enseign. public aHistoirexÉtude et enseignementyFrancez1945-1970xPériodiques2rameau aGéographiexÉtude et enseignementyFrancez1945-1970xPériodiques2rameau02aAssociation des professeurs d'histoire et de géographiec(France)4070 3aFRbAbesc20060703gAFNOR 3aFRbBnFc20060327gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb32724427c/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1911-1939)1 bvol. 29 (1949) -vol. 54 (1965)cParisdMagasins/AnnexeeP 8° 0351 aPériobTP01 P800923nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101001300123102000700136110001600143200006700159210003300226326001200259606003400271606003600305710002800341830004800369856005700417856003600474955006300510972000900573992002300582992001600605039709914000005701220130319051140.01 a0761-1242 aFNSP265590 a0000057012 a19900101a19839999 ba0 afreaeng aFR aafa 10aBulletin de liaison et d'information - Institut Kurde de Paris aPariscInstitut Kurded1983- aMensuel aKurdesyTurquiexPériodiques aRéfugiés kurdesxPériodiques02aInstitut Kurde de Paris acollection arrêtée par St le 18 mars 20084 uhttp://www.institutkurde.org/publications/bulletins/4 zAccès libre au texte intégral1 bno. 5 (mar-1984) -....cParisdMagasins/AnnexeeP 4° 4946 aZCAD aGEO RA6.06 Turquie aDEW 305-30601311nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002800139210004800167210008600215326001500301430008500316452005300401530002800454606003000482710006400512801002100576830005300597856009700650955006600747955008500813972000900898991001800907992002500925992001100950039221008000001157520131125152642.01 a0007-4403 aFNSP125469 a19900101a19519999 ba0 afre aFR aagu 10aBulletin de psychologie aParis‎cBulletin de psychologie‎d1975- aParis‎cGroupe d'études de psychologie de l'Université de Paris‎d1951-1974 aBimestriel 1aBulletin du Groupe d'études de psychologie de l'Université de Parisx0242-5432 1tBulletin de psychologie (En ligne)‎x1968-376600aBulletin de psychologie aPsychologiexPériodiques02aUniversité Paris-SorbonnebGroupe d'études de psychologie 3aFRbCCN0007-4403 a1951-2010 : collection envoyée au CTles en 20134 uhttp://www.bulletindepsychologie.net/vente/articles.phpzSommaires des nos parus depuis 19511 bno. 294 (1971/1972) -....cParisdMagasins/AnnexeeP 4° 31851 bvol. 5 no. 1 (nov-1951) -no. 293 (1970/1971)cParisdMagasins/AnnexeeP 8° 1644 aZPAY aexempb201306 aGEO RA4.06 France 01 aDEW 1502066cas0 2200301 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119110001600126200003400142210003700176300007000213300105900283530002401342606005601366700003001422712004601452712004701498801003001545801003001575856012601605945001601731991001701747039192385000093639620130319051140.0 accn7203/2561 a0000936396 a19980416b18771877k 0frey0103 ba0 afre aFR aau 13aLe bulletin de vote. Par Gill aMeauxcimp. de A. Cochetc[1877] aPublié à l'occasion des élections législatives d'Octobre 1877 aPortraits de Léon Renault, Horace de Choiseul, De Marcère, Henri De Lacretelle, Louis Blanc, Ernest Duvergier de Hauranne, Devoucoux, Daniel Wilson, Albert Grévy, Paul de Rémusat, Charles Floquet, Léon Journault, Edouard Lockroy, Barodet, Andrieux, Jules Ferry, Alfred Naquet, Paul Duffo, François-Vincent Raspail, Henri Brisson, Denfert-Rochereau, Eugène Spuller, De Mahy, Even, Charles Lepère, Léon Gambetta, Bamberger, Talandier, Georges Perin, Greppo, Camille Sée, Jean-Casimir Périer, Carré-Kérisouet - De Janzé, Anatole Hugot, G. Loustalot, Farcy, Laisant, Armand Duportal, Jules Philippe, Adolphe Cochery, Albert Joly, Henry Liouville, Jules Grévy, Clémenceau, Saint-Martin, Allain-Targé, Germain Casse, Viette, Menier, Thourel, D'Osmoy, Rouvier, Edouard Millaud, Benjamin Raspail, Eugène Lisbonne, Souchu-Servinière, Antoine-Léonce Guyot-Montpayroux, Martin Nadaud, Marmottan, Félix Cantagrel, Tirard, Pascal Duprat, Ch. Lecomte, Leblond, Frébault, Emile Garran, Auguste Caubert, Anatole De La Forge, Brelay, Emile Deschanel03aLe Bulletin de vote aÉlectionsyFrancexPériodiques illustrés2rameau 1aGillbAndréf(1840-1885)02aFrancebAssemblée nationalec(1871-1875)02aFrancebChambre des députésc(1876-1940) 3aFRbAbesc20050407gAFNOR 3aFRbAbesc20050407gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/bpt6k2059733zAccès libre au texte intégral. Périodique numérisé sur Gallica (1877) b12°008.616 aSAFIGbTA06001594nas 2200481 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171100016001242000067001402100041002073260012002484640020002604640014002804640027002944640028003214640015003494640023003644640014003874640029004014640013004304640013004434640029004564640034004854640029005194640036005484640012005844640026005964640035006225300067006576010044007247100030007688560117007988560078009159550076009939720009010699920022010789920012011000000078359000007835920131023113921.01 a0242-5645 aFNSP353004 a19900101b19482007 ba0 afre aFR aafa 10aBulletin des arrêts de la Cour de cassation. Chambres civiles aPariscJournaux officielsd1948-2007 aMensuel 1aHumulus le muet 1aL'Hermine 1aY' avait un peisonnier 1aLe voyageur sans bagage 1aLa sauvage 1aLe bal des voleurs 1aLéocadia 1aLe rendez-vous de Senlis 1aEuricyde 1aAntigone 1aL'invitation au château 1aEpisode de la vie d'un auteur 1aArdèle ou la marguerite 1aLa répétition d'un amour puni 1aColombe 1aCécil des toréadors 1aCécile ou l'école des pères00aBulletin des arrêts de la Cour de cassation. Chambres civiles02aFrancebCour de cassationxPériodiques02aFrancebCour de cassation4 uhttp://www.courdecassation.fr/jurisprudence_publications_documentation_2/bulletin_information_cour_cassation_27/ zContient les bulletins et les hors-séries en texte intégral depuis 19951 bno. 1 (jan-1979) -no. 10 (dec-2007)cParisdMagasins/AnnexeeP 4° 4374 aZPAY aGEO RA4.06 France aDEW 34801214nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004200139210003400181326001500215530004200230606004400272606004100316710007900357801002100436856007100457955008100528955007100609955009100680957007400771972000900845992002200854992001200876039220680000001157820130531111605.01 a0006-2006 aFNSP125536 a19900101a19569999 ba0 afre aFR aafu 10aBulletin des bibliothèques de France aVilleurbannecENSB-BBFd1956- aBimestriel00aBulletin des bibliothèques de France aSciences de l'informationxPériodiques aBibliothèquesyFrancexPériodiques02aFrancebDirection de la programmation et de la documentation universitaire 3aFRbCCN0006-20064 uhttp://bbf.enssib.fr/zAccès libre au texte intégral depuis 19841 bLes 2 dernières annéescParisdFonds professionnel (4e étage)eP 4° 43201 bvol. 24 no. 1 (jan-1979) -....cParisdMagasins/AnnexeeP 4° 43201 bno. 1 (jan-1959) -vol. 23 no. 11/12 (nov/dec-1978)cParisdMagasins/AnnexeeP 8° 14321 b(1956) -(1982) ; (1956) -(1993)cParisdMagasins/AnnexeeP Index 0386 aZPAY aGEO RA4.06 France aDEW 02001810cas0 2200493 450 001001000000002001100010005001700021011001400038035001400052035001700066035002500083035001700108035001700125035001700142035001500159100004100174101000800215102000700223105001800230110001600248200006300264207001600327210002200343326001000365430006300375517003000438517004500468517005300513517007100566517006300637517007200700517007800772517006200850520003500912530005400947710005601001801003001057801002901087801002301116802000701139856013301146945001701279991002001296040489000000112430120130319051140.0 a1272-8152 a039016501 zccn7015/6840 aFRBNF327306260000006 accn1272-8152 accn7015/6867 aissn12728152 a0001124301 a19960829a18789999uuuy0frey0103 ba0 afre aFR ay  aafu uu 10aBulletin des postes, des télégraphes et des téléphones 0a(1878, mai) aPariscPTTd1878- aMens. 1tBulletin mensuel de l'Administration des postesx1272-816010aBulletin officiel des PTT10aBulletin des postes ou des télégraphes10aBulletin mensuel des postes ou des télégraphes10aBulletin mensuel des postes, des télégraphes et des téléphones10aBulletin des postes, des télégraphes et des téléphones10aBulletin officiel des postes, des télégraphes et des téléphones10aBulletin officiel du Ministère des postes, télégraphes et téléphones10aBulletin officiel des Postes, Télégraphes, Téléphones10aBulletin officiel des P. T. T.10aBulletin... - Postes, Télégraphes, Téléphones02aFrancebMinistère des postes et télégraphes4070 3aFRbAbesc20071128gAFNOR 3aFRbBnFc20060327gAFNOR 3aFRbISSNc20061002 a074 uhttp://gallica.bnf.fr/ark:/12148/cb32730626t/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica bMEL8*106(03) aPériobTP08 P400752cas0 2200241 450 00100100000000200110001000500170002101100140003803500170005210000410006910100080011010200070011810500180012510600060014311000160014920000340016521000730019953000340027280100300030685600990033695500550043599100200049003905523X000111174620130906122204.0 a2015-075X accn7105/2925 a19871010b19161918 0frey0103 ba0 afre aFR ay  ar aac 10aBulletin des usines de guerre aPariscSous-secrétariat de l'artillerie et des munitionsd1916-191800aBulletin des usines de guerre 3aFRbAbesc20070425gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb32726781g/datezAccès libre au texte intégral sur Gallica1 b(1916) -(1918)cParisdMagasins/AnnexeeP 4° 1390 aPériobTP03 P401016nls 2200313 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000126001642070030002902100059003202300028003793260011004076060045004186060039004637100059005028010013005618560090005749550005006649920012006699920021006810001240337000124033720130517155153.0 a2262-8541 a0001240337 a a20109999k fre 01 ba0 afre aFR ar aak z  adr 10aBulletin du Centre sociale d'histoire du XXe siècleb[Ressource électronique]fCentre d'histoire sociale du XXe siècle 1ano. 33/34, 2010/2011-.... aPariscCentre d'histoire sociale du XXe siècled2010- aRessource électronique aAnnuel aMouvements sociauxxPériodiques2rameau aSyndicalismexPériodiques2rameau02aCentre d'histoire sociale du XXe sièclec(Paris)4070 0aFRbFNSP4 uhttp://histoire-sociale.univ-paris1.fr/spip.php?article400zAccès au texte intégral1 r aDEW 303 aGEO RQ Universel01076nas 2200301 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000021001412100027001623260016001894300099002055170065003046060034003696060035004036060034004387120064004728560078005368560036006149550087006509920025007379920012007620000261000000026100020130319051140.0 aFNSP908005 a0000261000 a19981130a19989999 ba0 afre aFR aaha 10aBulletin du CIEC aPariscCIECd1998-1999 aTrimestriel 1aBulletin mensuel - Centre d'information sur l'épargne et le crédit (0755-6853) < P 8°4224 >10aBulletin du Centre d'information surl'épargne et le crédit aEpargneyFrancexPériodiques aFinancesyFrancexPériodiques aCrédityFrancexPériodiques02aCentre d'information sur l'épargne et le créditc(France)4 uhttp://www.paribas.com/SITE/HomeDb2.nsf/FrMain?ReadForm&level=600&lang=EN zAccès libre au texte intégral1 bno. 211 (4e trim-1998) -no. 213 (2e trim-1999)cParisdMagasins/AnnexeeP 8° 4224 aGEO RA4.06 France 01 aDEW 33201180cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200002500174210002700199430001300226517008600239517002200325532009700347606005600444710008300500801003000583802000700613856005600620856006200676955007100738992001400809992001900823039806812000116273520130319051140.01 a0850-8712 accn0850-8712 a0001162735 a19900806a19879999 0frey0103 ba0 afre aZZ ay  aah 10aBulletin du CODESRIA aDakarcCODESRIAd1987- 1tAfricana10aBulletin du Council for the Development of Economic and Social Research in Africa10aCODESRIA bulletin10aBulletin du Conseil pour le développement de la recherche économique et sociale en Afrique aSciences socialesxRechercheyAfriquexPériodiques02aConseil pour le développement de la recherche en sciences sociales en Afrique 3aFRbAbesc20081202gAFNOR a004 uhttp://www.codesria.org/spip.php?rubrique53&lang=fr zContenu : accès au texte intégral depuis le no 2 (2003)1 bno. 3/4 (2006) -no. 1/2 (2009)cParisdMagasins/AnnexeeP 4° 7244 aDEW 338.9 aGEO RE Afrique01372cas0 2200325 450 00100100000000200110001000500170002101100140003803500170005203500150006910000410008410100080012510200070013311000160014020000990015620700140025521000290026932600160029843001230031444000640043753000990050153100530060071200870065371200590074080100300079980200070082985601450083695500450098199100200102603798411X000108413820130319051140.0 a0399-0818 accn0399-0818 a0001084138 a19890811b19181938 0frey0103 ba0 afre aFR aak 10aBulletin du Comité d'études historiques et scientifiques de l'Afrique occidentale française 1a1918-1938 aPariscLarosed1918-1938 aTrimestriel 1tAnnuaire et mémoires du Comité d'études historiques et scientifiques de l'Afrique occidentale françaisex0378-570X 1tBulletin de l'Institut français d'Afrique noirex0399-080X00aBulletin du Comité d'études historiques et scientifiques de l'Afrique occidentale française 0aBull. Com. études hist. sci. Afr. Occident. fr.02aComité d'études historiques et scientifiques de l'Afrique occidentale française02aAfrique occidentale française. Gouvernement général 3aFRbAbesc20051010gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb34381764h/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1917-1937)1 b1917cParisdMagasins/AnnexeeP 8° 0362 aPériobTP01 P801416cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035002500069035001500094100004100109101000800150102000700158105001800165106000600183110001600189200004800205207004000253210005400293421010100347440005000448512005500498530004800553710007700601711003300678801003000711801002900741802000700770856014500777955005500922991002000977991004500997038780712000111286520131011101303.0 a1249-7991 accn1249-7991 aFRBNF327272200000009 a0001112865 a19931216b18911908 0frey0103 ba0 afre aFR ay  ar aau 10aBulletin du Comité de l'Afrique française 0a1re année (1891)-18e année (1908) aPariscComité de l'Afrique françaised1891-1908 |tRenseignements coloniaux et documents publiés par le Comité de l'Afrique françaisex1249-8017 1tL'Afrique française (Paris. 1909)x1249-800910aBulletin mensuel - Comité de l'Afrique française00aBulletin du Comité de l'Afrique française02aChambre de commerce internationalebComité de l'Afrique française407002aComité du MaroccParis4070 3aFRbAbesc20060703gAFNOR 3aFRbBnFc20060327gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb327272204/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1891-1908)1 b(1891) -(1908)cParisdMagasins/AnnexeeP 4° 0661 aPériobTP02 P4 anumer0 (1896, en complément de gallica)01173cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035002500069035001500094100004100109101000800150102000700158105001800165106000600183110001600189200004500205210005100250423004900301440004100350512005200391530004500443710003800488801003000526801002900556802000700585856014500592955005500737991002000792991001100812038636883000110938220130319051140.0 a1160-7440 accn1160-7440 aFRBNF327272230000000 a0001109382 a19910828b19011909 0frey0103 ba0 afre aFR ay  ar aaf 10aBulletin du Comité de l'Asie française aPariscComité de l'Asie françaised1901-1909 1t*Bulletin du Comité de l'Asie française... 1tL'Asie française (Paris)x1160-745910aBulletin mensuel - Comité de l'Asie française00aBulletin du Comité de l'Asie française02aComité de l'Asie française4070 3aFRbAbesc20070830gAFNOR 3aFRbBnFc20060327gAFNOR a074 uhttp://archive.org/stream/lasiefranaisebu00frangoog#page/n6/mode/2upzAccès libre au texte intégral. 1905 numérisée sur Internet Archive1 b(1901) -(1909)cParisdMagasins/AnnexeeP 4° 0567 aPériobTP01 P4 anumer001153cas0 2200349 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035002500100035001500125100004100140101000800181102000700189110001600196200003800212210002900250423004500279440004300324517004500367517002700412530003800439801003000477801002300507801002900530802000700559856014500566955007200711991002000783038553716000109458720130319051140.0 a1149-1914 a073811211 accn1149-1914 aissn11491914 aFRBNF327272400000001 a0001094587 a19900305b18951896 0fre 0103 ba0 afre aFR aau 10aBulletin du Comité de Madagascar aParisc[s.n.]d1895-1899 1tLa Quinzaine coloniale (1897)x1149-1833 1tRevue de Madagascar (Paris)x1149-192210aBulletin de l'Union coloniale française13aLa Quinzaine coloniale00aBulletin du Comité de Madagascar 3aFRbAbesc20060630gAFNOR 3aFRbISSNc20030523 3aFRbBnFc20060327gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb34425274b/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1895-1899)1 b(1895) -(1896) ; (1897) -(1899)cParisdMagasins/AnnexeeP 8° 0837 aPériobTP02 P801587cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001700069035002500086035001500111100004100126101000800167102000700175105001800182106000600200110001600206200010200222207001400324210007100338326001100409431012900420440010300549530010200652606003500754606003700789712006600826801003000892801002300922801002900945802000700974856013300981955005501114991002001169038418614000109507520130319051140.0 a0994-8333 accn0994-8333 aissn09948333 aFRBNF327291750000000 a0001095075 a19960829b18831884m y1frey0103 ba0 afre aFR a 0  ar aaku 0uu 10aBulletin du Comité des travaux historiques et scientifiquesiSection d'histoire et de philologie 0a1883-1884 aPariscComité des travaux historiques et scientifiquesd1883-1884 aAnnuel |tBulletin du Comité des travaux historiques et scientifiques. Section d'histoire, d'archéologie et de philologiex0994-8325 1tBulletin historique et philologique du Comité des travaux historiques et scientifiquesx0994-834100aBulletin du Comité des travaux historiques et scientifiques. Section d'histoire et de philologie aHistoirexPériodiques2rameau aPhilologiexPériodiques2rameau01aFrancebComité des travaux historiques et scientifiques4340 3aFRbAbesc20070309gAFNOR 3aFRbISSNc20050826 3aFRbBnFc20060327gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb32729175m/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 b(1883) -(1884)cParisdMagasins/AnnexeeP 8° 0847 aPériobTP02 P801694cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001700069035002500086035001500111100004100126101000800167102000700175105001800182106000600200110001600206200011200222207001900334210007100353326001100424431007600435440007600511530011200587531005600699710006600755801003000821801002300851801002900874802000700903856014500910955023601055991001701291038729393000107609720130319051140.0 a1243-2598 accn1243-2598 aissn12432598 aFRBNF327272730000002 a0001076097 a19960829b18831922 y0frey0103 ba0 afre aFR a 0  ar aaku 0uu 10aBulletin du Comité des travaux historiques et scientifiquesiSection des sciences économiques et sociales 0a1883-1921/1922 aPariscComité des travaux historiques et scientifiquesd1883-1922 aAnnuel |tRevue des sociétés savantes de la France et de l'étrangerx0994-8317 1tBulletin de la Section des sciences économiques et socialesx1243-260110aBulletin du Comité des travaux historiques et scientifiques. Section des sciences économiques et sociales 0aBull. Com. trav. hist. sci., Sect. sci. écon. soc.02aFrancebComité des travaux historiques et scientifiques4070 3aFRbAbesc20060703gAFNOR 3aFRbISSNc20050826 3aFRbBnFc20060327gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb32727273q/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1883-1922)1 b(1895) ; (1896) ; (1897) ; (1898) ; (1899) ; (1900) ; (1901) ; (1902) ; (1903) ; (1904) ; (1905) ; (1906) ; (1907) ; (1908) ; (1909) ; (1910) ; (1911) ; (1912) ; (1912) ; (1920) ; (1921) ; (1922)cParisdMagasins/AnnexeeCOL8°2094 aPériobTP0201053nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004000139210003500179300006600214326001600280452005400296530003100350606003300381606004500414710001100459801002100470830002900491856008500520955008300605972000900688991001800697992001200715001645285000001178520140110123051.01 a0304-2928 aFNSP126683 a19900101b19672000 f ba0 afre aFR aahu 10aBulletin du droit d'auteur/fUnesco aParis‎cUnesco‎d1967-2000 aA partir de 2001, publié uniquement en version électronique aTrimestriel 1tBulletin du droit d'auteur (En ligne),x1814-358X00aBulletin du droit d'auteur aDroit d'auteuryPériodiques aPropriété intellectuellexPériodiques02aUnesco 3aFRbCCN0304-2928 a1967--1984 donné au CTL4 uhttp://www.unesco.org/culture/copyrightbulletinzAccès libre au texte intégral1 bvol. 19 no. 1 (1985) -vol. 34 no. 4 (2000)cParisdMagasins/AnnexeeP 8° 0520 aZPAY aexempb201311 aDEW 34601479nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004000139210002700179326001200206436010100218436011800319452006700437452002900504488005100533517003700584606004400621606003300665801002100698830008800719856008100807856010800888955007800996972000901074992002201083992001201105039373193000000380220131106175100.01 a0242-5912 aFNSP104038 a19900101a19819999 ba0 afre aFR aafu 10aBulletin fiscal de Francis Lefebvre aPariscLefebvred1981- aMensuel 1tBulletin de documentation pratique des impôts directs et des droits d'enregistrementx0242-5556 1tBulletin de documentation pratique des taxes sur le chiffre d'affaires et des contributions indirectesx0242-5564 1tBulletin fiscal de Francis Lefebvre [Ressource électronique]. 1tNavis fiscal,x1273-0181 1aF.R. Feuillet rapide fiscal social,x0150-546710aBulletin fiscal Francis Lefebvre aPolitique fiscaleyFrancexPériodiques aImpôtyFrancexPériodiques 3aFRbCCN0242-5912 ano. 1, janv. 1981----> 1984 < P 4°4545 > collection donnée au CTL en juillet 20014 uhttps://acces-distant.sciences-po.fr/fork?http://www.efl.fr/si/hp/frm_hp.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (jan-1985) - no. 12 (dec. 2005)cParisdMagasins/AnnexeeP 4° 4545 aZPAY aGEO RA4.06 France aDEW 33601679cas0 2200421 450 001001000000002001100010005001700021011001400038035001700052035001700069035002500086035001500111100004100126101000800167102000700175105001800182106000600200110001600206200009200222207001400314210007100328320002100399326001100420430011300431440011700544512009000661530009200751606003500843710006600878801003000944801002300974801002900997802000701026856013401033955005501167991002001222991001501242038418649000109507620130319051140.0 a0994-8341 accn0994-8341 aissn09948341 aFRBNF327290880000003 a0001095076 a19960829b18851912uuuy1frey0103 ba0 afre aFR a 0  ar aaku 0uu 10aBulletin historique et philologique du Comité des travaux historiques et scientifiques 0a1885-1912 aPariscComité des travaux historiques et scientifiquesd1885-1912 aTables 1882-1915 aAnnuel 1tBulletin du Comité des travaux historiques et scientifiques. Section d'histoire et de philologiex0994-8333 1tBulletin philologique et historique jusqu'à 1715 du Comité des travaux historiques et scientifiquesx0399-556910aComité des travaux historiques et scientifiques. Bulletin historique et philologique00aBulletin historique et philologique du Comité des travaux historiques et scientifiques aHistoirexPériodiques2rameau02aFrancebComité des travaux historiques et scientifiques4070 3aFRbAbesc20060630gAFNOR 3aFRbISSNc20050826 3aFRbBnFc20060327gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb32729088p/date.r=.langFRzAccès libre au texte intégral. Année 1889 numérisée sur Gallica1 b(1885) -(1905)cParisdMagasins/AnnexeeP 8° 0847 aPériobTP02 P8 anumer0 (?)01238nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013110600060013811000160014420000790016020700540023921000490029332600250034232600260036751700430039360600500043671000290048680100210051585601450053695501590068197200090084099100180084999200210086799200120088803924346X000001174020130319051140.01 a0251-365X aFNSP126603 a0000011740 a19900101b19212000 ba0 afre aCH ar aaja 10aBulletin interparlementaireeorgane officiel de l'Union interparlementaire 1aaAnnée 1, no. 1 (1921) - année 80, no. 2 (2000) aGenèvecUnion interparlementaired1921-2000 aSemestriel 1996-2000 aTrimestriel 1955-199510aBulletin de l'Union interparlementaire aCoopération interparlementairexPériodiques02aUnion interparlementaire 3aFRbCCN0251-365X4 uhttp://gallica.bnf.fr/ark:/12148/cb344645513/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1921-1928)1 bvol. 1 no. 6 (nov/dec-1921) -vol. 20 no. 3 (mai/jun-1940) ; vol. 34 no. 4 (sep/oct-1954) -vol. 80 no. 2 (jul/dec-2000)cParisdMagasins/AnnexeeP 8° 0897 aZCAD aexempb201106 aGEO RQ Universel aDEW 32801570cas0 2200409 450 001001000000002001100010005001700021011001400038035001700052035002500069035001500094100004100109101000800150102000700158105001800165106000600183110001600189200002100205207004500226210007300271326001600344423006100360423005400421423004600475437004600521440004100567517011100608530003300719606004600752710007600798801003000874801002900904802000700933856014500940955005501085991002001140038443228000109507820130319051140.0 a0997-4385 accn0997-4385 aFRBNF327292350000000 a0001095078 a19960829b19011918k y0frey0103 ba0 afre aFR a 0  ar aahu 0 10aBulletin italien 0aTome 1 (1901, janv./mars)-tome 18 (1918) aBordeauxcFéretaLyoncHenri GeorgaMarseillecPaul Ruatd1901-1918 aTrimestriel 1tRevue des lettres françaises et étrangèresx0184-7813 1tRevue des études anciennes (Bordeaux)x0035-2004 1tBulletin hispanique (Bordeaux)x0007-4640 1tRevue des universités du Midix0755-1630 1tEtudes italiennes (Paris)x0997-439310aAnnales de la Faculté des lettres de Bordeaux et des universités du Midi. 4ème série. Bulletin italien10aBulletin italienb(Bordeaux) aLittérature romanexPériodiques2rameau02aUniversité de BordeauxbFaculté des lettres et sciences humaines4070 3aFRbAbesc20070319gAFNOR 3aFRbBnFc20060327gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb32729235n/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1901-1918)1 b(1901) -(1918)cParisdMagasins/AnnexeeP 8° 0939 aPériobTP02 P800767nls 2200253 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000052001502100027002022300024002296060032002538010013002858560070002988560108003689920025004769920012005010000941516000094151620130319051140.0 a0000941516 a a20009999k fre 01 ba0 afre aFR ar aaz z  adr 10aBulletin Joly Bourseb[Ressource électronique] aPariscLextensod2000- aRevue électronique aBoursexDroitxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lextenso.com zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aGEO RA4.06 France 01 aDEW 33200827nas 2200265 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000029001552100023001843260012002074300044002198560070002638560108003339550077004419720009005189920022005279920012005490000234161000023416120130319051140.01 a1285-0888 aFNSP829802 a0000234161 a19900101a19979999 ba0 afre aFR aafa 00aBulletin Joly sociétés aPariscJolyd1997- aMensuel 1aBulletin Joly (0997-5047) < P 8°1024 >4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lextenso.com zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 10 (oct-1997) -no. 12 (oct-2000)cParisdMagasins/AnnexeeP 8° 1024 aZGRA aGEO RA4.06 France aDEW 34600812nls 2200253 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001251350018001412000056001592100027002152300024002426060044002666060036003108560070003468560108004169920022005249920012005460000941447000094144720130319051140.0 aFNSP829802 a0000941447 a19900101a19869999 ba0 afre aFR aafa  adr 00aBulletin Joly sociétésb[Ressource électronique] aPariscLextensod1986- aRevue électronique aSociétésxDroityFrancexPériodiques aSociétésxDroitxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lextenso.com zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aGEO RA4.06 France aDEW 34601436cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200003500174210002900209304020700238326002500445421003300470440004600503517007500549517010300624517000800727517005300735530003500788531002500823801003000848802000700878856009900885955007000984991002001054038079534000108414020130319051140.0 a0755-2424 accn0755-2424 a0001084140 a19890418b19181982k y0frey0103 ba0 afre aFR a 0  aaea 0 13aLe Bulletin législatif Dalloz aPariscDallozd1918-1982 aS'est intitulé : "Bulletin législatif Dalloz et ordonnances des autorités d'occupation", de juillet 1940 à juillet 1944 ; "Bulletin législatif Dalloz et Recueil Duvergier", de 1956 à 1961 (inclus) aBimensuelb1918-1982 |tLa Gazette Dallozx0999-3843 1tActualité législative Dallozx0753-874X10aBulletin législatif Dalloz et ordonnances des autorités d'occupation10aBulletin législatif Dallozelois, décrets, arrêtés, circulaires, etc. Textes sans commentaires10aBLD10aBulletin législatif Dalloz et Recueil Duvergier03aLe Bulletin législatif Dalloz 0aBull. légis. Dalloz 3aFRbAbesc20070312gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb34387309q/datezAccès libre au texte intégral sur Gallica1 bvol. 1 (1918) -vol. 47 (1964)cParisdMagasins/AnnexeeP 8° 0339 aPériobTP01 P800959nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005000154210003800204326001200242451004500254601004600299606006800345710003200413856002400445856003600469955007400505972000900579992005700588992001200645045019606000026756220130319051140.01 a1561-0306 aFNSP926417 a0000267562 a19990308a19999999 f ba0 afre aDE aafa 10aBulletin mensuelfBanque centrale européenne aFrancfort sur le MaincBCEd1999- aMensuel 1aMonthly bulletin - European Central Bank02aBanque centrale européennexPériodiques aPolitique monétaireyPays de l'Union européennexPériodiques02aBanque centrale européenne4 uhttp://www.ecb.int/ zAccès libre au texte intégral1 b(jan-1999) -no. 11 (dec-2007)cParisdMagasins/AnnexeeP 4° 6798 bis aZGRA aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 33601255nas 2200361 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000027001552100026001823260012002084300080002205170024003005170060003245170085003846010063004696060033005326060044005657120049006098010021006588560048006798560078007279550045008059720009008509920022008599920012008810000057281000005728120130319051140.01 a0999-6478 aFNSP266743 a0000057281 a19900101b19899999 ba0 afre aFR aafa 10aBulletin mensuel - COB aPariscCOBd1989-2003 amensuel 1aBulletin mensuel de la Commission des opérations de boursexISSN 0245-942610aBulletin COB (1991)10aBulletin mensuel - Commission des opérations de bourse10aBulletin mensuel d'information de la Commission des opérations de bourse (1991)02aFrancebCommission des opérations de boursexPériodiques aBourseyFrancexPériodiques aMarché financieryFrancexPériodiques02aFrancebCommission des opérations de bourse 3aFRbCCN0245-9426 rPublication disponible en ligne depuis 1969 uhttp://www.amf-france.org/affiche_page.asp?urldoc=bm.htm&lang=fr&Id_Tab=01 bLa Bibliothèque ne conservait que 2 ans aZGRA aGEO RA4.06 France aDEW 33200918nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210006800195326001600263430003100279440003900310607004600349801002100395856003400416856004700450955008200497972000900579992001600588992001200604038681560000001190020130319051140.01 a0007-4810 aFNSP126956 a0000011900 a19900101b19692000 ba0 aeng aUS aaha 10aBulletin of concerned Asian scholars aBoulder, Colo.cBulletin of Concerned Asian Scholarsd1969-2000 aTrimestriel 1tCCAS newsletterx0898-7785 1tCritical Asian studies,x1467-2715 aAsiexEtude et enseignementxPériodiques 3aFRbCCN0007-48104 uhttp://csf.colorado.edu/bcas/ zContenu : sommaires depuis le vol. 1, 19681 bvol. 3 no. 1 (1971) -vol. 32 no. 4 (2000)cParisdMagasins/AnnexeeP 4° 3033 aZCAD aGEO RH Asie aDEW 95001722nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210006100198326001800259607005000277607005400327710007500381801002100456856010300477856010800580856012800688856010800816856010900924856010801033955006301141957007701204972000901281991001801290992002601308992001401334038681706000001174520130319051140.01 a0007-4918 aFNSP126608 a0000011745 a19900101a19659999 ba0 aeng aAU aaiu 10aBulletin of Indonesian economic studies aCanberracBulletin of Indonesian economic studiesd1965- a3 n°s par an aIndonésiexConditions socialesxPériodiques aIndonésiexConditions économiquesxPériodiques02aResearch School of Pacific Studies (Canberra)bDepartment of Economics 3aFRbCCN0007-49184 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=107889 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=B86&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713406865db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (jun-1965) -....cParisdMagasins/AnnexeeP 8° 28531 bno. 1 (1965) -vol. 30 no. 4 (1994)cParisdMagasins/AnnexeeP Index 0766 aZPAY aexempb201105 aGEO RI2.12 Indonésie aDEW 330.901302nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004000154210002800194326001500222607006200237607003500299710004500334801002100379856010100400856010800501856009000609856010800699955009000807972000900897991001800906992002800924992001200952039311791000001168320131127153137.01 a0261-3050 aFNSP126476 a0000011683 a19900101a19819999 ba0 aeng aGB aaju 10aBulletin of Latin American research aOxfordcPergamond1981- aSemestriel aAmérique latinexPolitique et gouvernementxPériodiques aAmérique latinexPériodiques02aSociety for Latin American Studiesc(GB) 3aFRbCCN0261-30504 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=106129 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/02613050.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (oct-1981) -vol. 31 no. 4 (oct-2012)cParisdMagasins/AnnexeeP 8° 4630 aZCAD aexempb201002 aGEO RD Amérique latine aDEW 98001848cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157110001600175200005000191207002200241210005700263430007200320440003500392452007000427530005000497712004600547801003000593801002300623802000700646856012100653856012200774856012100896856012201017856012201139856012201261955004701383991002001430036994979000109506120130319051140.0 a0190-5929 accn0190-5929 aissn01905929 a0001095061 a19760407b19011915uuuy0frey0103 ba0 aeng aUS a 0  aafa 0uu 10aBulletin of the American Geographical Society 0av. 33-47; 1901-15 aNew YorkcAmerican Geographical Societyd[1888]-1915 1tJournal of the American Geographical Society of New Yorkx1536-0407 1tGeographical reviewx0016-7428 1tBulletin of the American Geographical Society (Online)x1931-083810aBulletin of the American Geographical Society02aAmerican Geographical Society of New York 3aFRbAbesc20070604gAFNOR 3aFRbISSNc20051021 a014 uhttp://archive.org/details/bulletinamerica00unkngoogzAccès libre au texte intégral. Volume 1 sur Internet Archive4 uhttp://archive.org/details/bulletinamerica01yorkgoogzAccès libre au texte intégral. Volume 11 sur Internet Archive4 uhttp://archive.org/details/bulletinvolume00yorkgoogzAccès libre au texte intégral. Volume 22 sur Internet Archive4 uhttp://archive.org/details/bulletinamerica00yorkgoogzAccès libre au texte intégral. Volume 27 sur Internet Archive4 uhttp://archive.org/details/bulletinamerica04yorkgoogzAccès libre au texte intégral. Volume 33 sur Internet Archive4 uhttp://archive.org/details/bulletinamerica05yorkgoogzAccès libre au texte intégral. Volume 46 sur Internet Archive1 b(1915)cParisdMagasins/AnnexeeP 8° 0934 aPériobTP02 P800847nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000038001552100054001933260015002476060036002627100047002988010021003458560032003668560036003989550077004349720009005119920021005209920016005410000011895000001189520130319051140.01 a0096-3402 aFNSP126950 a0000011895 a19900101a19469999 ba0 aeng aUS aafu 10aBulletin of the atomic scientists aChicagocBulletin of the atomic scientistsd1946- aBimestriel aArmes nucléairesxPériodiques02aEducational Foundation for Nuclear Science 3aFRbCCN0096-34024 uhttp://www.thebulletin.org/ zAccès libre au texte intégral1 b(1985) -vol. 63 no. 6 (nov/dec-2007)cParisdMagasins/AnnexeeP 4° 0934 aZPAY aGEO RQ Universel aDEW 355-35901368nls 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000120001502100076002702300024003463260005003706060047003756060073004226060059004957100104005548010013006588560055006718560042007268560112007688560108008809550005009889920025009939920012010180000991174000099117420130319051140.0 a0000991174 a a19999999k fre 01 ba0 afre aFR ar aau z  adr 10aBulletin officiel de la Concurrence, de la Consommation et de la Répression des fraudesb[Ressource électronique] aPariscMinistère de l'Économie, des Finances et de l'Industried1999- aRevue électronique a aFraudeyFrancexLégislationxPériodiques aConsommateursxProtectionxDroityFrancexLégislationxPériodiques aConcurrencexDroityFrancexLégislationxPériodiques01aFrancebDirection générale de la concurrence, de la consommation et de la répression des fraudes 0aFRbFNSP4 uhttp://www.minefi.gouv.fr/DGCCRF/boccrf/index.html zContenu : texte intégral depuis 19994 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/lamy/AccesBis.htm?acces=KoEjMqEjBeKq zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 34701938cas0 2200397 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119105001800126106000600144110001600150200008400166210009000250215001800340300001000358301004200368327013300410430008700543440006300630530005800693607006000751676000800811710001300819711004100832801003000873830005900903856014600962856020101108856020101309945001501510991001501525048881953000114128520130319051140.0 accn7208/5878 a0001141285 a20000320b18341857k y0frey0103 ba0 afre aDZ ay  ar aau 10aBulletin officiel des actes du gouvernement,iAlgériefMinistère de la guerre aPariscImpr. royaleaAlgercImpr. royale [puis] Imprimerie du gouvernementd1834-1857 a3 vol.d22 cm aIndex aDEMANDE DE NUMEROTATION ISSN EN COURS1 aTome 1, 1er oct. 1834-1er janvier 1839 (n°1-61) ; tome 2, 13 oct.1838-30 déc.1841 (n°62-111) ; tome 3, 1842-1843 (n°112-165) 1tCollection des actes du gouvernement depuis l'occupation jusqu'au 1er octobre 1834 1tBulletin officiel de l'Algérie et des coloniesx2020-492210aBulletin officiel des actes du gouvernement. Algérie aAlgériexPolitique et gouvernementz1830-1962xSources a96501aAlgérie01aFrancebMinistère de la guerre4070 3aFRbAbesc20070910gAFNOR askp (transférée sur notice sudoc par sdy 18/07/2012)4 uhttp://archive.org/stream/algriebulletino01guergoog#page/n7/mode/2upzAccès libre au texte intégral. Tome 1 numérisé sur Internet Archive4 uhttp://books.google.fr/books?id=tnQIAAAAQAAJ&dq=editions%3AjMjURIkErU4C&hl=fr&pg=PP9#v=onepage&q=editions:jMjURIkErU4C&f=falsezAccès libre au texte intégral. Tome 2 numérisé sur Google Livres4 uhttp://books.google.fr/books?id=uIAIAAAAQAAJ&dq=editions%3AjMjURIkErU4C&hl=fr&pg=PP9#v=onepage&q=editions:jMjURIkErU4C&f=falsezAccès libre au texte intégral. Tome 3 numérisé sur Google Livres bR8*005.737 aPériobTZ00956nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000082001502100037002322300024002693260016002936070052003097120029003618010013003908560112004038560108005159550005006239920022006289920016006500000967897000096789720130319051140.0 a0000967897 a a19899999k fre 01 ba0 afre aFR ar aah z  adr 10aBulletin officiel des services du Premier ministreb[Ressource électronique] aPariscJournaux officielsd1989- aRevue électronique aTrimestriel aFrancexPolitique et gouvernementxPériodiques02aFrancebPremier ministre 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/lamy/AccesBis.htm?acces=KoEjMqEjBeKq zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France aDEW 350-35400976nls 2200313 i 450 0010011000000020011000110050017000220110005000390350015000441000041000591010008001001020007001081060006001151100016001211350018001372000105001552100023002603260012002833360056002953370017003515170020003686010073003886060056004617120059005178560042005769550005006189920025006239920014006480000583890000058389020130319051140.0 a a0000583890 a a19989999 ba0 afre aFR az aafaz  adr 10aBulletin officiel du Centre national de la recherche scientifique (Paris)b[Ressource électronique] aPariscCNRSd1998- aMensuel aDonnées textuelles accessibles uniquement en ligne aFichiers PDF10aCNRS BO (Paris)02aCentre national de la recherche scientifiquec(France)xPériodiques aRecherchexPolitique publiqueyFrancexPériodiques02aCentre national de la recherche scientifiquec(France)4 uhttp://www.dsi.cnrs.fr/bo/Default.htm1 r aGEO RA4.06 France 01 aDEW 001.401221nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000107001502100073002572300024003303260014003546010081003687100067004498010013005168560068005298560051005978560112006488560108007609550005008689920022008739920012008950000967903000096790320130319051140.0 a0000967903 a a19999999k fre 01 ba0 afre aFR ar aae z  adr 10aBulletin officiel du Ministère de l'écologie et du développement durableb[Ressource électronique] aPariscMinistère de l'écologie et du développement durabled1999- aRevue électronique aBimensuel02aFrancebMinistère de l'écologie et du développement durablexPériodiques02aFrancebMinistère de l'écologie et du développement durable 0aFRbFNSP4 uhttp://www1.environnement.gouv.fr/rubrique.php3?id_rubrique=532 zContenu : texte intégral depuis le n°1, 19994 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/lamy/AccesBis.htm?acces=KoEjMqEjBeKq zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France aDEW 34701078nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000079001502100045002292300024002743260016002986010053003147100039003678010013004068560061004198560042004808560112005228560108006349920022007429920012007640000969182000096918220130319051140.0 a0000969182 a a19929999k fre 01 ba0 afre aFR ar aah z  adr 10aBulletin officiel du Ministère de l'intérieurb[Ressource électronique] aPariscMinistère de l'intérieurd1992- aRevue électronique aTrimestriel02aFrancebMinistère de l'intérieurxPériodiques02aFrancebMinistère de l'intérieur 0aFRbFNSP4 uhttp://www.interieur.gouv.fr/rubriques/b/b5_lois_decrets zContenu : texte intégral depuis 19984 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/lamy/AccesBis.htm?acces=KoEjMqEjBeKq zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aGEO RA4.06 France aDEW 34001145nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000077001502100043002272300024002703260016002946010051003106060050003617100037004118010013004488560047004618560052005088560112005608560108006729550005007809920022007859920012008070000967895000096789520130319051141.0 a0000967895 a a19819999k fre 01 ba0 afre aFR ar aah z  adr 10aBulletin officiel du Ministère de la Justiceb[Ressource électronique] aPariscMinistère de la justiced1981- aRevue électronique aTrimestriel02aFrancebMinistère de la justicexPériodiques aJusticexAdministrationyFrancexPériodiques02aFrancebMinistère de la justice 0aFRbFNSP4 uhttp://www.justice.gouv.fr/actua/bo/bo.htm zContenu : texte intégral depuis le n°73, 19994 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/lamy/AccesBis.htm?acces=KoEjMqEjBeKq zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France aDEW 34701102nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003700139210002700176326001200203423005200215430010300267452006000370606003900430801002100469856008100490856010800571955007800679972000900757992002200766992001200788039373177000000393820131106121453.01 a0242-5874 aFNSP104390 a19900101a19819999 ba0 afre aFR aafu 10aBulletin social Francis Lefebvre aPariscLefebvred1981- aMensuel 11aFR. Feuillet rapide fiscal social,x0150-5467 1aBulletin de documentation pratique de sécurité sociale et de législation du travail,x0242-5548 1tBulletin social Francis Lefebvre (En ligne),x2115-9750 aDroit socialyFrancexPériodiques 3aFRbCCN0242-58744 uhttps://acces-distant.sciences-po.fr/fork?http://www.efl.fr/si/hp/frm_hp.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1( janv-1981) - no. 12 (dec-2005)cParisdMagasins/AnnexeeP 4° 4547 aZPAY aGEO RA4.06 France aDEW 34401190nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005200154210008600206326001100292430005600303510005100359606004700410607004600457710008300503856004200586856004200628856006400670955005300734972000900787991001800796992002200814992001600836040199606000012363520130319051141.01 a1024-0608 aFNSP508869 a0000123635 a19940411a19929999 ba0 ager aCH aaka 10aBulletin zur schweizerischen Sicherheitspolitik aZürichcETH, Forschungsstelle für Sicherheitspolitik und Konfliktanalysed1991- aAnnuel 1aETH-Bulletin zur schweizerischen Sicherheitspolitik10aBulletin sur la politique de sécurité suisse aSécurité nationaleySuissexPériodiques aSuissexPolitique militairexPériodiques02aForschungsstelle für Sicherheitspolitik und Konfliktanalysec(Zurich, Suisse)4 uhttp://www.fsk.ethz.ch/publ/bulletin/ zContenu : texte intégral depuis 1993 uhttp://www.fsk.ethz.ch/documents/bulletin/bulle_01/b_01.htm1 b(1993) -....cParisdMagasins/AnnexeeP 8° 6028 aZGRA aexempb201210 aGEO RA5.14 Suisse aDEW 355-35901063nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002300163210005200186326001600238517002500254606003900279606005100318710005500369801001300424856010800437856010800545955007100653972000900724992001600733038682354000048889820130319051142.01 a0007-6503 a0000488898 a a19609999k fre ba0 aeng aUS a 0  ar aah z 0 10aBusiness & society aThousand Oaks, Calif.cSage Publicationsd1960- aTrimestriel10aBusiness and society aGestion d'entreprisexPériodiques aGestion d'entrepriseyEtats-UnisxPériodiques02aInternational Association for Business and Society 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 39 no. 3 (sep-2000) -....cParisdMagasins/AnnexeeP 8° 6653 aZSAB aDEW 650-65800914nas 2200301 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200002600148210003500174326001800209452004700227530003600274606004000310801001300350856004700363856008100410955008000491972000900571991001800580992001400598048781371000028420320130919162545.01 a1369-5258 a b19992003k fre ba0 aeng aUS a 0  ar aai z 0 10aBusiness and politics aBasingstokecCarfaxd1999-2003 a3 n°s par an 1tBusiness and politics (Online),x1469-3569 aBusiness and politics‎bPrint aPolitique économiquexPériodiques 0aFRbFNSP4 uhttp://www.bepress.com/bap/all_issues.html zContenu : accès au texte intégral des articles depuis le vol 2, no 1, 20001 bvol.1 no. 1 (1999) -vol. 5 no. 1 (2003)cParisdMagasins/AnnexeeP 8° 6511 aZSAB aexempb201309 aDEW 338.901291nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210005800193326001600251430005500267606003900322606004200361801002100403856010300424856010800527856012800635856010800763955008100871972000900952992001600961038823462000001164720131127153322.01 a0045-3609 aFNSP126238 a0000011647 a19900101a19749999 ba0 aeng aUS aahu 10aBusiness and society review (1974) aBoston, MA [etc.]cBlackwell Publishers [etc.]d1974- aTrimestriel 1aBusiness and society review/Innovation,x0092-2706 aGestion d'entreprisexPériodiques aRelations industriellesxPériodiques 3aFRbCCN0045-36094 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=102521 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=BSR&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 11 (1974) -vol. 117 no. 4 (hiv-2012)cParisdMagasins/AnnexeeP 4° 3169 aZPAY aDEW 650-65801087nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210004400177326001600221530004000237606003300277606003700310710006200347801002100409856012800430856010800558955009800666972000900764992001200773038682397000001165320130319051142.01 a0007-666X aFNSP126299 a0000011653 a19900101a19659999 ba0 aeng aUS aahu 10aBusiness economics aCleveland, OhiocThe Associationd1965- aTrimestriel 0aBusiness economicsbCleveland, Ohio aMacroéconomiexPériodiques aEconomie politiquexPériodiques02aNational Association of Business Economistsc(Etats-Unis) 3aFRbCCN0007-666X4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=BEC&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 6 no. 1 (1971) -....cParisdMagasins/AnnexeeP 4° 3049wManquant: vol. 34 no. 1 (1999) aZPAY aDEW 33001211nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210005600182326001600238606004900254710006700303801002100370856002800391856005900419856009000478856010800568955007100676957009500747972000900842991001800851992001600869038682435000005813220130319051142.01 a0007-6805 aFNSP269542 a0000058132 a19900101a19549999 ba0 aeng aUS aaha 10aBusiness history review aBoston, Mass.cHarvard Business School Pressd1954- aTrimestriel aGestion d'entreprisexHistoirexPériodiques02aHarvard UniversitybGraduate School of Business Administration 3aFRbCCN0007-68054 uhttp://www.hbs.edu/bhr/ zContenu : sommaires et résumés depuis le n°28, 19544 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00076805.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 45 no. 1 (pri-1971) -....cParisdMagasins/AnnexeeP 8° 29171 bvol. 46 (1972) -vol. 50 (1976)cParisdMagasins/Annexezse trouve dans le no. 4 (hiv-1977) aZPAY aexempb200910 aDEW 650-65800971nas 2200277 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000320013921000310017132600160020245200530021853000320027160600420030360600440034585601080038985601080049795500670060597200090067299200120068103932026X000003834920131106161926.01 a0266-3821 aFNSP212741 a19900101a19849999 ba0 aeng aGB aaha 10aBusiness information review aClevelandcHeadlandd1984- aTrimestriel 1tBusiness information review (Online),x1741-6450 aBusiness information review aInformation économiqueyPériodiques aSciences de l'informationxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 13 no. 1 (1996) -....cParisdMagasins/AnnexeeP 4° 6628 aZPAY aDEW 02001123nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002000139210006800159326002300227326002600250452005900276530003700335606004900372710004100421801002100462830002900483856010700512955006100619955007100680972000900751992002300760992001400783036212148000001167620130604173523.01 a0007-7011 aFNSP126468 a19900101a19249999 ba0 aeng aUS aahu 10aBusiness review aPhiladelphia‎cFederal Reserve Bank of Philadelphia‎d1923- aTrimestrielb2001- aBimestrielb1968-2000 1tBusiness review (Philadelphia, Pa. Online),x2163-4440 aBusiness review‎bPhiladelphia aEconomie politiqueyEtats-UnisxPériodiques02aFederal Reserve Bank of Philadelphia 3aFRbCCN0007-7011 a1968--1984 donné au CTL4 uhttp://www.philadelphiafed.org/econ/br/index.htmlzAccès libre au texte intégral des nos depuis 19751 b(jan/mar-2001) -....cParisdMagasins/AnnexeeP 4° 68951 b(jan/fev-1985) -(nov/dec-2000)cParisdMagasins/AnnexeeP 8° 2576 aZGRA aGEO RC2 Etats-Unis aDEW 338.901110nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000018001552100033001733260017002064880094002236070054003178010021003718300122003928560033005148560073005479550163006209920023007839920014008060000003951000000395120130319051142.01 a0007-7135 aFNSP104406 a0000003951 a19900101a19299999 ba0 aeng aUS aacu 10aBusiness week aNew YorkcMcGraw-Hilld1929- aHebdomadaire 1aBusiness week (Industrial edition) (0739-8395) et International business week (0739-8409) aEtats-UnisxConditions économiquesxPériodiques 3aFRbCCN0007-7135 aA partir de 1981 la Bibliothèque reçoit : International business week. L'année en cours et l'année précédente ;4 uhttp://www.businessweek.com/ zContenu : sélection d'articles en texte intégral depuis oct. 1996.1 bno. 1065 (jan-1950) -no. 1478 (dec-1957) ; n°s isolés 1958-1961 ; no. 1801 (mar-1964) -no. 2669 (29 dec-1980/5 jan-1981)cParisdMagasins/AnnexeeP 4° 1211 aGEO RC2 Etats-Unis aDEW 330.901359cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200006900180207003300249210003500282326002900317326002600346440004300372517003300415530002700448606003600475710003700511801003000548801002300578802000700601856010300608856010800711955008800819972000900907992001200916992003300928111210887000107907620130319051142.01 a1745-0144 aissn17450144 a0001079076 a20061208a20069999k y0frey0103 ba0 aeng aGB a 0  ar aaia 0uu 10aC21st century societyejournal of the Academy of Social Sciences 0aVol. 1, issue 1 (June 2006)- aAbingdoncRoutledged2006-2010 a3 n°s par anb2007-2010 aSemestrielb2006-2006 1tContemporary social sciencex2158-204110aTwenty-first century society10aC21st societyb(Print) aSciences socialesxPériodiques02aAcademy of Social Sciencesc(GB) 3aFRbAbesc20070312gAFNOR 3aFRbISSNc20061208 a024 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=711212 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jun-2006) -vol. 5 no. 3 (nov-2010)cParis,Magasins/AnnexeeP 8° 6954 aZPAY aDEW 300 aGEO RS Sans aspect régional00921nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210004500186326001500231606003800246606002900284710003000313711003500343856003800378856006300416955006600479972000900545991001800554992002300572992001200595038975610000006048520130319051142.01 a0102-4248 aFNSP276855 a0000060485 a19900101a19859999 ba0 apor aBR aaja 10aCadernos de estudos sociais aRecifecFundação Joaquim Nabucod1985- aSemestriel aSociologieyBrésilxPériodiques aSociologiexPériodiques02aFundação Joaquim Nabuco02aInstituto de pesquisas sociais4 uhttp://www.campus-oei.org/br5.htm zContenu : sommaires depuis le vol. 11, n 1 janv./juin 19951 bvol. 1 no. 3 (1986) -....cParisdMagasins/AnnexeeP 8° 5214 aZPAY aexempb201109 aGEO RD4.13 Brésil aDEW 30101006nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001600154210002700170326001800197421002800215421003700243430003700280606004500317710010300362801002100465856003000486856005200516955006900568972000900637992002200646992001200668039592413000001167920130319051142.01 a0398-3145 aFNSP126471 a0000011679 a19900101a19769999 ba0 afre aFR aagu 10aCadres CFDT aPariscUCC-CFDTd1976- a5 n°s par an 1tCadres plus,x0980-9295 1tLe Bulletin de l'ODC,x1273-3199 1aCadres et profession,x0007-9472 aCadres (personnel)yFrancexPériodiques02aConfédération française démocratique du travailbUnion confédérale des ingénieurs et cadres 3aFRbCCN0398-31454 uhttp://www.cadrescfdt.fr/ zContenu : sommaire depuis le n° 367, mars 19951 bno. 275 (sep/oct-1975) -....cParisdMagasins/AnnexeeP 8° 2878 aZGRA aGEO RA4.06 France aDEW 33101069nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210004400189326001500233422004800248606002900296606004400325676000800369710009300377711004900470801002100519856003200540856005100572955007100623972000900694992001600703992001200719001029770000001187020130319051143.01 a0761-9510 aFNSP126886 a0000011870 a19900101a19839999 ba0 afre aFR aaju 10aCahier d'études stratégiques aPariscCIRPESd1983-aPariscGSDd1983- aSemestriel 1aPaix et conflits (0399-8630) < P 4° 4916 > aStratégiexPériodiques aSécurité internationalexPériodiques a35502aCentre interdisciplinaire de recherches sur la paix et d'études stratégiquesc(France)02aGroupe de sociologie de la défensec(Paris) 3aFRbCCN0761-95104 uhttp://www.ehess.fr/cirpes/ zContenu : résumé et sommaire de 1995 à 20021 bno. 1 (1983) -no. 40/41 (2006)cParisdMagasins/AnnexeeP 4° 4905 aZPAY aDEW 355-359 aDEW 32701080nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210006500187326001500252517001800267606003400285606002700319676000800346710005900354856003800413856013500451955006600586955005900652972000900711991001800720992001600738040153673000016229520130619162128.01 a1247-3189 aFNSP622802 a0000162295 a19900101a19939999 ba0 afre aFR aaja 10aCahier d'histoire immédiate aToulouseccGroupe de recherche en histoire immédiated1991- aSemestriel10aCahier - GRHI aHistoriographiexPériodiques aHistoirexPériodiques a90902aGroupe de recherche en histoire immédiatec(Toulouse)4 uhttp://w3.framespa.univ-tlse2.fr/ zContient : sommaires depuis le n° 1, octobre 1991et texte intégral d'une sélection d'articles à partir du n° 18, automne 20001 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9091 bno. 1 (1991) -....cParisdMagasins/AnnexeeP 8° 6144 aZPAY aexempb201207 aDEW 900-90701204nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000131001502070017002812100063002983260016003613360024003773370038004015170023004395170066004626060054005286060065005827100058006478010013007058560091007189920012008099920057008210000895804000089580420130319051143.0 a0000895804 a a20059999k fre 01 ba0 afre aFR az aay z  adr 10aCahier européen du pôle Ville/metropolis/cosmopolisb[Ressource électronique]fCentre d'études européennes de Sciences-po 1aN° 1(2005)- aPariscCentre d'études européennes de Sciences Pod2005- aIrrégulier aDonnées textuelles aFichiers PDF télédéchargeables10aCahier pôle Ville10aCahiers / Working papers du pôle Ville/metropolis/cosmopolis aVillesyPays de l'Union européennexPériodiques aPolitique urbaineyPays de l'Union européennexPériodiques02aCentre d'études européennes de Sciences Poc(Paris) 0aFRbFNSP4 uhttp://blogs.sciences-po.fr/recherche-villes/category/publications/cahiers-pole-ville/ aDEW 307 aGEO RA1.01 Communautés européennes, Pays de la CEE01242nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200011100154210004200265326001800307326002600325423006500351510005600416606003800472606005800510606004600568710003600614856003800650856007100688955007600759972000900835991001800844992001800862992001200880081376049000025544620130319051143.01 a1782-0707 aFNSP891489 a0000255446 a19900101a19989999 ba0 amul aBE aaka 10aCahier international sur le témoignage audiovisuel =dInternational journal on the audio-visual testimony aBruxellescFondation Auschwitzd1998- aAnnuelb2002- aSemestrielb1998-2001 11aBulletin trimestriel de la Fondation Auschwitz,x0772-652X10aInternational journal on the audio-visual testimony aMémoire collectivexPériodiques aGuerre mondiale (1939-1945)xAtrocitésxPériodiques aGuerre mondiale (1939-1945)xPériodiques02aFondation Auschwitz (Bruxelles) uhttp://www.auschwitz.be/index.php zcontenu : sommaires et texte integral de nos depuis le n° 1, 19981 bno. 1 (Jun-1998) -no. 14 (Jun-2008)cParisdMagasins/AnnexeeP 8° 6446 aZPAY aexempb201301 aGEO RA Europe aDEW 94001116nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210003000175300003600205300008500241326001500326517002300341606003600364712005800400856005600458856004900514955007500563955010600638972000900744992002100753992001600774040561062000016934220131125110733.01 a1282-5603 aFNSP641708 a0000169342 a19900101a19959999 ba0 afre aFR aaia 10aCahier politique aaPariscCREDEPd1995-2000 aN'a pas paru en 1998 et en 1999 aA partir de 2001, devient une collection de monographie éditée par l'Harmattan aSemestriel00aCahiers politiques aScience politiquexPériodiques02aCentre de recherches et d'études politiquesc(Paris)4 uhttp://www.dauphine.fr/credep/sommairescahiers.html zContenu : sommaires depuis le n°1, mai 19951 bno. 1 (mai-1995) -no. 6 (mai-2001)cParisdMagasins/AnnexeeP 4° 65391 bno. 1 (1995) -no. 2 (1995)cParisdBibliothèque de rechercheeP 4° 6539wManquant : no. 6, mai 2001 aZGRA aGEO RQ Universel aDEW 320-32100987cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118105001800125110001600143200004200159210004600201320003500247530004300282710004300325801003000368801002300398801003000421801002300451802000700474856004700481856004500528955006700573972000900640992001200649078574250000104341020131104160540.01 a1763-573X aissn1763573X a20030523b20032006k y0frey0103 ba0 afre aFR ay  aagu uu 14aLes CahiersfCercles des économistes aPariscCercle des économistesd2003-2006 aDevient une collection en 200714aLes Cahiersb(Cercle des économistes)02aCercle des économistesc(France)4070 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20081014 3aFRbAbesc20050426gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.lecercledeseconomistes.asso.fr/ zContenu : Sommaires depuis le n°1, 20031 bno. 4 (2003) -no. 9 (2006)cParisdMagasins/AnnexeeP 8° 6925 aZGRA aDEW 33001188nas 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000106001502100034002563260016002905170064003065170026003706060044003966060041004406060053004816060027005347120105005618010013006668560038006798560037007179550075007549720009008299920012008380000441439000044143920130319051143.0 a0000441439 a b20002004k fre ba0 afre aFR a 0  ar aay z 0 14aLes Cahiersescience, environnement, sociétéfPôle intégré de recherche et d'enseignement PROSES aPariscSciences Pod2000-2004 aIrrégulier14aLes Cahiers - Programme science, environnement et société14aLes Cahiers du PROSES aEnvironnementxProtectionxPériodiques aDéveloppement durablexPériodiques aAménagement du territoireyFrancexPériodiques aEcologiexPériodiques00aFondation nationale des sciences politiquesc(France)bProgramme Science, environnement et société 0aFRbFNSP4 uhttp://www.proses.sciences-po.fr/ zAccès libre au texte intégral.1 bno. 1 (2000) -no. 9 (mai/jun-2004)cParisdMagasins/AnnexeeP 8° 6612 aZGRA aDEW 33300954nls 2200301 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000059001502100040002092300024002493100135002733260031004083370024004396060041004636760015005047120029005198010013005488300007005618560048005688560036006160000769579000076957920130319051143.0 a0000769579 a a20029999k fre 01 ba0 afre aFR ar aby z  adr 14aLes cahiersb[Ressource électronique]fEn temps réel aSuresnescEn temps réeld2002-.... aDonnées textuelles aEgalement disponible sous forme imprimée ; voir le détail de la collection à "Cahiers / En temps réel" dans l'index Collection aCollection de monographies aAccès par Internet aRelations internationalesz1989-.... a320.9v21a02aEn temps réelc(France) 0aFRbFNSP adm4 uhttp://en.temps.reel.free.fr/activites.htm# zAccès libre au texte intégral01014nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210006300184326001500247440002600262510001500288601005400303606004500357710004000402801002100442856007200463856003600535955007800571972000900649992001800658992001200676039295184000001178720130319051143.01 a0257-7755 aFNSP126699 a0000011787 a19900101b19862002 f ba0 amul aLU aazu 10aCahiers BEId= EIB papers aLuxembourgcBanque européenne d'investissementd1986-2002 aSemestriel 1tEIB Papersx1830-367610aEIB papers02aBanque européenne d'investissementxPériodiques aInvestissements européensxPériodiques02aBanque européenne d'investissement 3aFRbCCN7103/00854 uhttp://www.eib.org/infocentre/efs/publications/eib-papers/index.htm zAccès libre au texte intégral1 bno. 1 (fev-1986) -vol. 7 no. 2 (2002)cParisdMagasins/AnnexeeP 4° 5107 aZGRA aGEO RA Europe aDEW 33201054cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200003200162210004900194430005300243606003600296606003600332710003200368801003000400801002300430801003000453801003000483802000700513856005300520856003600573955007400609972000900683992001200692113697074000107927120130319051143.01 a1953-0498 aissn19530498 a0001079271 a20070402a20059999k 0frey0103 ba0 afre aFR ar aau 14aLes Cahiers Bernard Brunhes aPariscles Publications du groupe BPId2005- 1tLes Cahiers du Groupe Bernard Brunhesx1289-3536 aChangement socialxPériodiques aEvolution socialexPériodiques02aBernard Brunhes consultants 3aFRbAbesc20070406gAFNOR 3aFRbISSNc20070301 3aFRbAbesc20070405gAFNOR 3aFRbAbesc20070403gAFNOR a074 uhttp://www.brunhes.com/publications/cahiers.html zAccès libre au texte intégral1 bno. 14 (mai-2005) -no. 19 (2008)cParisdMagasins/AnnexeseP 8° 6555 aZGRA aDEW 33801181nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210002700200326001600227440006400243606004700307606004400354710006000398856004900458856012600507955008800633957007000721972000900791991001800800992002500818992001200843001300571000004704220130319051143.01 a0755-9208 aFNSP239259 a0000047042 a19900101b19842007 ba0 afre aFR aaha 10aCahiers d'économie et sociologie rurales aPariscINRAd1984-2007 aTrimestriel 1tRevue d'études en agriculture et environnement,x1966-9607 aDéveloppement ruralyFrancexPériodiques aSociologie ruraleyFrancexPériodiques02aInstitut national de la recherche agronomiquec(France)4 uhttp://www.inra.fr/esr/publications/cahiers/ zContenu : sommaire et résumés depuis le n°1, juin 1984, texte intégral depuis le n° 46-47, 1er-2ème trimestres 19981 bno. 10 (jan/mar-1989) -no. 84/85 (jun/dec-2007)cParisdMagasins/AnnexeeP 8° 57661 bno. 1 (1984) -no. 29 (1993)cParisdMagasins/AnnexeeP Index 0730 aZPAY aexempb201111 aGEO RA4.06 France 01 aDEW 30700786nas 2200229 i 450 002001100000005001700011011001400028035001500042100004100057101000800098102000700106110001600113200003400129210002800163326001500191606003700206856021300243955005900456972000900515991001800524992001400542000000633320130904143314.01 a0339-3437 aFNSP110065 a19900406a19749999 ba0 afre aFR aaja 00aCahiers d'économie politique aPariscHarmattand1974- aSemestriel aEconomie politiquexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-cahiers-d-economie-politique.htm?zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 2 (1975) -....cParisdMagasins/AnnexeeP 8° 3939 aZPAY aexempb201005 aDEW 330.101174nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210003300187326001600220607002600236607003600262710005900298801002100357856010700378856010800485856002600593856009600619955006300715972000900778991001800787992001900805992001200824039221563000001179020140108155143.01 a0008-0055 aFNSP126702 a0000011790 a19900101a19609999 ba0 afre aFR aahu 10aCahiers d'études africaines aPariscEd. de l'EHESSd1960- aTrimestriel aAfriquexPériodiques aAfriquexHistoirexPériodiques02aEcole des hautes études en sciences socialesc(Paris) 3aFRbCCN0008-00554 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-cahiers-d-etudes-africaines.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr/ zContenu : accès au texte intégral via le portail Persée, du n° 1, 1960 au n°144, 1999.1 bno. 1 (jan-1960) -....cParisdMagasins/AnnexeeP 8° 1776 aZPAY aexempb201202 aGEO RE Afrique aDEW 96001078nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000230015421000360017732600160021343000720022951700360030151700500033753000300038760600270041760600430044471000470048785600670053485600360060195500600063797200090069799100180070699200160072404048243X000019064620130319051143.01 a1271-6669 aFNSP705050 a0000190646 a19900101a19969999 ba0 afre aFR aaha 10aCahiers d'histoire aPariscIRMcEspaces Marxd1996- aTrimestriel 1aCahiers d'histoire de l'Institut de recherches marxistesx0246-973110aCahiers d'histoire Espaces Marx10aCahiers d'histoireerevue d'histoire critique10aCahiers d'histoirebParis aHistoirexPériodiques aHistoriographie marxistexPériodiques02aInstitut de recherches marxistesc(France)4 uhttp://www.espaces-marx.org/revues/CahiersdHistoire/index.html zAccès libre au texte intégral1 bno. 62 (1996) -....cParisdMagasins/AnnexeeP 8° 2256 aZPAY aexempb201004 aDEW 900-90701147nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210005500178326001600233607004900249710007300298801002100371856010300392856010800495955006300603957013800666972000900804991001800813992001400831039565890000001187320130319051143.01 a0373-5834 aFNSP126890 a0000011873 a19900101a19489999 ba0 afre aFR aahu 10aCahiers d'Outre-mer aBordeauxcInstitut de la France d'Outre-merd1948- aTrimestriel aPays en voie de développementxPériodiques02aInstitut de géographie et d'études régionalesc(Talence, Gironde) 3aFRbCCN0373-58344 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-les-cahiers-d-outre-mer.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (jan-1948) -....cParisdMagasins/AnnexeeP 8° 00851 bTome 1 (1948) -tome 10 (1957) ; tome 11 (1958) -tome 20 (1967) ; tome 21 (1968) -tome 30 (1977)cParisdMagasins/AnnexeeP Index 0243 aZPAY aexempb201101 aDEW 330.901247nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210006000178320005200238326001600290451003000306517002300336601004800359607006000407676000800467710003400475711004600509856006600555856004900621955006700670955006300737972000900800991001800809992003400827992001200861040169030000004991520130319051143.01 a1017-7574 aFNSP246214 a0000049915 a19900101a19919999 f ba0 afre aFR aaza 10aCahiers de Chaillot aPariscInstitut d'études de sécurité de l'UEOd1991- aParaît tantôt en français tantôt en anglais aIrrégulier 1aChaillot paperx1017-756610aCahier de Chaillot02aUnion de l'Europe occidentalexPériodiques aEurope de l'OuestxRelations extérieuresxPériodiques a35502aUnion de l'Europe occidentale02aInstitut d'études de sécuritéc(Paris)4 uhttp://www.iss.europa.eu/fr/publications/cahiers-de-chaillot/ zContenu : texte intégral à partir du n° 11 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3551 bno. 1 (mar-1991) -....cParisdMagasins/AnnexeeP 8° 5772 aZSAB aexempb201111 aGEO RA2.01 Europe occidentale aDEW 32701080nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000054001502070023002042100024002272300024002513260015002753370017002904300146003076060039004537100101004928010013005938560042006068560060006489550005007089920025007139920016007380001182737000118273720130319051143.0 a0001182737 a a20109999k fre 01 ba0 afre aFR az aag z  adr 14aLes cahiers de l'ARCEPb[Ressource électronique] 1ano. 1 (jan-2010) - aPariscARCEPd2010- aRevue électronique aBimestriel aFichiers PDF 1tLa lettre de l'Autorité : lettre d'information bimestrielle de l'Autorité de régulation des télécommunications [Ressource électronique] aTélécommunicationsxPériodiques02aAutorité de régulation des communications électroniques et des postesc(France)xPériodiques 0aFRbFNSP4 uhttp://www.arcep.fr/index.php?id=2106 zContenu : texte intégral depuis le n° 1, janvier 20101 r aGEO RA4.06 France 01 aDEW 383-38901492nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008600154210002500240326001600265421010600281430009200387517002400479517002100503606007700524606006000601607004100661676000800702710007300710801002100783856006700804856006200871955006700933955006401000972000901064992002201073992001101095032929277000000395620130319051143.01 a0153-6184 aFNSP104411 a0000003956 a19900101a19769999 ba0 afre aFR aahu 10aCahiers de l'Institut d'aménagement et d'urbanisme de la région d'Ile-de-France aPariscIAURIFd1976- aTrimestriel 1tCahiers de l'Institut d'aménagement et d'urbanisme de la région d'Ile de France. Habitatx1241-7068 1aCahiers de l'Institut d'aménagement et d'urbanisme de la région parisiennex0020-220710aCahiers de l'IAURIF10aCariers - IAURIF aAménagement du territoireyFranceyIle-de-France (France)xPériodiques aUrbanismeyFranceyIle-de-France (France)xPériodiques aIle-de-France (France)xPériodiques a33302aInstitut d'aménagement et d'urbanisme de la région d'Ile-de-France 3aFRbCCN0153-61844 uhttp://www.iaurif.org/fr/ressources_doc/publications/index.htm zContenu : sommaires et résumés des 5 dernières années1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3331 bno. 42 (jul-1976) -....cParisdMagasins/AnnexeeP 4° 3706 aZPAY aGEO RA4.06 France aDEW 7101183nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009500154210002900249326001600278422009700294517003300391517002000424606005900444606003500503710007300538856006700611856006200678955007500740972000900815992002200824992001100846040062813000008226420130319051143.01 a1241-7068 aFNSP366177 a0000082264 a19900101b19922008 ba0 afre aFR aaha 10aCahiers de l'Institut d'aménagement et d'urbanisme de la région d'Ile de France. Habitat aPariscIAURIFd1992-2008 aTrimestriel 1aCahiers de l'Institut d'aménagement et d'urbanisme de la région d'Ile de Francex0153-618410aCahiers de l'IAURIF. Habitat10aCahiers habitat aLogementyFranceyIle-de-France (France)xPériodiques aLogementyFrancexPériodiques02aInstitut d'aménagement et d'urbanisme de la région d'Ile-de-France4 uhttp://www.iaurif.org/fr/ressources_doc/publications/index.htm zContenu : sommaires et résumés des 5 dernières années1 bno. 1 (avr-1992)-no. 43 (jan-2008)cParisdMagasins/AnnexeeP 4° 6177 aZPAY aGEO RA4.06 France aDEW 7100840nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210004800186326001600234530003200250607004600282712003400328856005700362856005900419955006300478972000900541992001200550039810844000001197820130319051143.01 a0983-1851 aFNSP127674 a0000011978 a19900823a19869999 ba0 afre aFR aaha 14aLes Cahiers de la Fondation aPariscFondation Europe et sociétéd1986- aTrimestriel04aLes Cahiers de la Fondation aPays de l'Union européennexPériodiques02aFondation Europe et société4 uhttp://www.europeetsociete.com/lescahiers/index.html4 zcontenu : accès aux sommaires depuis le n°, mai 19861 bno. 4 (jan-1987) -....cParisdMagasins/AnnexeeP 4° 5239 aZGRA aDEW 94001238nas 2200349 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012310600060014111000160014720000850016321000750024832600160032343000610033960600470040067600080044771000650045580100130052085600870053385600590062095500670067995500450074695500450079197200090083699200250084599200180087009300284X000087642720130430135454.01 a1774-475X a0000876427 a a20059999 fre 01 ba0 afre aFR a 0  ar aah z 0 14aLes Cahiers de la sécuritéfInstitut national des hautes études de sécurité aSaint-DeniscInstitut national des hautes études de sécuritéd2005- aTrimestriel 1tLes Cahiers de la sécurité intérieurexISSN 1150-1634 aSécurité nationaleyFrancexPériodiques a35502aInstitut national des hautes études de sécuritéc(France) 0aFRbFNSP4 uhttp://www.inhes.interieur.gouv.fr/publications_titres.php?choix=1&inhes=bienvenue4 zContenu : accès aux sommaires détaillés depuis 19891 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3551 bn. s. no. 1 (jul-2007) -....eP 4° 72061 bno. 56 (2005) -no. 63 (2006)eP 8° 5663 aZCAD aGEO RA4.06 France 01 aDEW 355 - 35901262nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200010800139207002300247210003700270210004100307300003600348326001100384517005900395530002700454606002400481606005300505710004400558856010300602856010800705955007200813972000900885991001800894992001200912040383962000020409020130916105528.01 a1262-0386 aFNSP742932 a19900101a19939999 ba0 afre aFR aaka 14aLes Cahiers de la Shoaheconférences et séminaires sur l'histoire de la ShoahfUniversité de Paris I 0ano. 1 (1993/1994)-1 aPariscles Belles lettresd2001- aPariscÉd. Liana Levid1993-[1997?] aN'a pas paru entre 1997 et 2001 aAnnuel10aConférences et séminaires sur l'histoire de la Shoah04aLesCahiers de la Shoah aShoahxPériodiques aGuerre mondiale (1939-1945)xJuifsxPériodiques02aUniversité Panthéon-Sorbonnec(Paris)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-les-cahiers-de-la-shoah.htm?4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1993/1994) -no. 9 (2007)cParisdMagasins/AnnexeeP 8° 6286 aZPAY aexempb201210 aDEW 94001032nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131105001800138110001600156200013100172207003000303210003900333326001500372440003200387606003000419712008000449801001300529856003100542856005600573955006800629972000900697992001200706040473430000018686220130319051143.01 a1270-0665 aFNSP691409 a0000186862 a19900101b19962004k fre ba0 afre aFR a z 0 b  aaj z 0 14aLes Cahiers de médiologie/fAssociation pour le développement de la recherche en médiologiegdir. de la publ. Régis Debray 1ano. 1(1996)-no. 18 (2004) aPariscGallimardcADREMd1996-2004 aSemestriel 1tMédium (Revue),x1771-3757 aMédiologiexPériodiques02aAssociation pour le développement de la recherche en médiologiec(France) 0aFRbFNSP4 uhttp://www.mediologie.com/ zContenu : texte intégral depuis le numéro 1, 19961 bno. 1 (1996) -no. 18 (2004)cParisdMagasins/AnnexeeP 8° 6226 aZPAY aDEW 30200970nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010013000951020007001081060006001151100016001211350018001372000222001552100070003772300024004473260013004716010061004846060036005458010013005818560036005948560036006309720005006669920021006710001227311000122731120130319051143.0 a0001227311 a a 9999k fre 01 ba0 aengafre aBE ar aaz z  adr 10aCahiers de sciences politiques de l'ULgb[Ressource électronique]etravaux réalisés par les chercheurs, enseignants-chercheurs et collaborateurs du département de science politique de l'ULg / Université de Liège aLiège:cUniversité de Liège, Département de science politique aRevue électronique ainconnue02aUniversité de LiègebDépartement de science politique aScience politiquexPériodiques 0aFRbFNSP4 uhttp://popups.ulg.ac.be/csp.htm ztexte intégral depuis le n° 1 a aGEO RQ Universel01014nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005200154210002800206326001500234436011600249606004100365606003500406710007700441801002100518856003200539955006300571957005700634972000900691992001200700039718573000001200320130319051143.01 a0761-9871 aFNSP127725 a0000012003 a19900101a19849999 ba0 afre aFR aaju 10aCahiers de sociologie économique et culturelle aLe HavrecINHEPPd1984- aSemestriel 1aEthno-psychologie (0046-2608) < P 8° 0074 > et de Cahiers de sociologie économique (0007-9987) < P 8° 1899 > aSociologie économiquexPériodiques aEthnopsychologiexPériodiques02aInstitut havrais de sociologie économique et de psychologie des peuples 3aFRbCCN0761-98714 uhttp://www.wmaker.net/isec/1 bno. 1 (jun-1984) -....cParisdMagasins/AnnexeeP 4° 49281 b(1984) -(2004)cParisdMagasins/AnnexeeP index 0870 aZPAY aDEW 30101185nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008600154210006900240326002400309326002700333430007900360530004400439607003500483710006300518856005700581856009000638955006400728972000900792991001800801992002800819992001200847039890295000001208120130320142516.01 a1141-7161 aFNSP127916 a0000012081 a19900827a19859999 ba0 afre aFR aaia 10aCahiers des Amériques latinesfInstitut des hautes études de l'Amérique Latine aPariscUniversité de la Sorbonne nouvelle Paris 3, IHEALd1985- a3 nos par anb1996- aIrrégulierb1985-1995 1aCahiers des amériques latines. Série Sciences de l'HommexISSN 0008-002010aCahiers des amériques latinesb(Paris) aAmérique latinexPériodiques02aInstitut des hautes études de l'Amérique latinec(Paris)4 uhttp://www.iheal.univ-paris3.fr/spip.php?rubrique358 zContenu : accès au texte intégral depuis le n° 1 (1985) sauf les derniers numéros1 bn.s. no. 1 (1985) -....cParisdMagasins/AnnexeeP 8° 2589 aZCAD aexempb201102 aGEO RD Amérique latine aDEW 98001177nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200011500154210002800269326001500297440005400312530006300366607003500429712006300464801002100527856006600548856006300614955015800677992002800835992001200863037436228000001202020130319051143.01 a0008-0020 aFNSP127786 a0000012020 a19900101b19681984 ba0 amul aFR aaju 10aCahiers des Amériques latines. Série Sciences de l'homme / Institut des hautes études de l'Amérique latine aPariscIHEALd1968-1984 aSemestriel 1aCahiers des amériques latines (Paris)x1141-716100aCahiers des Amériques latines. Série Sciences de l'homme aAmérique latinexPériodiques02aInstitut des hautes études de l'Amérique latinec(Paris) 3aFRbCCN0008-00204 uhttp://www.iheal.univ-paris3.fr/rubrique.php3?id_rubrique=359 zContenu : Sommaires depuis le numéro 1, janvier-juin 19681 bno. 1 (1968) -no. 29/30 (1984)cParisdMagasins/AnnexeeP 8° 2589zle no. 29/30 (1984) est relié avec le no. 1 (1985) de Cahiers des Amériques latines aGEO RD Amérique latine aDEW 98001199nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116106000600123110001600129200002800145210003500173326004600208421004800254437004400302440004500346530003800391601004500429606002900474710004800503830003400551856011100585955009000696991001800786992002200804992001400826992000900840038561239000004726920131015095554.01 a1149-8277 aFNSP239991 a19900101b19241942 ba0 afre aFR ar aafa 10aCahiers du bolchévisme aParis‎c[s.n.]‎d1924-1942 aHebdomadaire puis Bimensuel, puis Mensuel 0tBulletin colonial (Paris. 1933),x1149-8293 1tBulletin communiste (Paris),x1149-381X 1aCahiers du communisme (1944),x0008-013600aCahiers du bolchévisme‎bParis02aParti communiste françaisxPériodiques aCommunismexPériodiques02aParti communiste françaisbComité central a1924-1939 : conservé au 13 U4 zAccès libre au texte intégral sur Gallica (1924-1944)uhttp://gallica.bnf.fr/ark:/12148/cb327356292/date1 b(1924)-(1928) ; (1932)-(1939)cParisdMagasins/AnnexeeP 8° 0243wNombreuses lacunes aexempb201111 aGEO RA4.06 France aDEW 320.5 aPBUL01177nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154207003200190210002800222326001600250607002600266710004400292711006300336711006200399856006800461856011800529955014200647972000900789991001800798992002300816992001200839002436493000016443120130319051143.01 a0989-5191 aFNSP628719 a0000164431 a19900101b19872010 ba0 afre aFR aaha 10aCahiers du Brésil contemporain 1ano 1 (1987)-no 75/76 (2010) aPariscEHESSd1987-2010 aTrimestriel aBrésilxPériodiques02aMaison des sciences de l'hommec(Paris)02aInstitut des hautes études de l'Amérique latinec(Paris)02aCentre de recherches sur le Brésil contemporainc(Paris)4 uhttp://www.revues.msh-paris.fr/modele2/perbook2.asp?id_perio=56 zContenu : sommaires depuis le n°1, 1987 et une sélection d'articles accessibles en texte intégral gratuitement1 bno. 12 (1990) ; no. 20 (1993) ; no. 22 (1993) ; no. 27/28 (1995) ; no. 33/34 (1998) -no. 75/76 (2010)cParisdMagasins/AnnexeeP 8° 6149 aZGRA aexempb201209 aGEO RD4.13 Brésil aDEW 98001507nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101001300123102000700136110001600143200007400159210002600233300014600259326001600405517006600421530002900487606005800516606005800574606005300632606005300685710006500738801003000803856004300833856006200876955009700938991001801035992003201053992003601085992001201121013666142000014245720130319051143.01 a1805-0336 aFNSP564965 a0000142457 a19941124a19929999 y01 ba0 afreacze aCZ aaha 10aCahiers du CeFReSfCentre français de recherche en sciences sociales aPraguecCEFRESd1992- aLe n° 0 (no d'inauguration) s'intitule "Bulletin d'information du Centre français de recherche en sciences sociales" et porte la même cote aIrrégulier10aCahiers du Centre français de recherche en sciences sociales10aCahiers du CeFReSbPraha aScience politiqueyRépublique tchèquexPériodiques aSciences socialesyRépublique tchèquexPériodiques aSciences socialesyEurope de l'EstxPériodiques aScience politiqueyEurope de l'EstxPériodiques02aCentre français de recherche en sciences socialesc(Prague) 0aFRbAbesc20051209gAFNOR4 uhttp://www.cefres.cz/Cahiers-du-CEFRES zContenu : accès aux sommaires depuis le n°1, juin 1992.1 bno. 1 (jun-1992) -no. 16 (1999) ; no.26 (oct-2001) -....cParisdMagasins/AnnexeeP 8° 6084 aexempb201208 aGEO RA2.02 Europe orientale aGEO RA5.21 République tchèque aDEW 30000887nls 2200289 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010013001091020007001221060006001291100016001351350018001512000135001692070010003042100043003142300024003573260022003816060039004037100039004428010013004818560054004948560037005489550012005850001228436000122843620130319051143.0 a2116-5513 a0001228436 a a20119999k fre 01 ba0 afreaeng aFR ar aai z  adr 10aCahiers du Centre Émile Durkheimb[Ressource électronique]/Centre Émile Durkheim - Science politique et sociologie comparatives 1a2011- aPessac:cCentre Émile Durkheimd2011- aRevue électronique aTrois fois par an aSociologie politiquexPériodiques02aCentre Émile Durkheimc(Bordeaux) 0aFRbFNSP4 uhttp://www.centredurkheim.fr/Working%20Papers.htm zAccès libre au texte intégral.1 r2011-1101135cas0 2200361 450 001001000000002001100010005001700021011001400038035001400052035001700066035002500083035001700108035001500125100004100140101000800181102000700189105001800196110001600214200003100230207008500261210002900346215001000375530003100385710002500416801003000441801002900471801002300500802000700523856013400530955005500664991002000719991003400739038555883000110632720130319051143.0 a1149-3852 a070865094 accn1149-3852 aFRBNF327356520000009 aissn11493852 a0001106327 a19950203b19121914uuuy0frey0103 ba0 afre aFR ay  aauu uu 10aCahiers du Cercle Proudhon 0aN°1 (1912, janv./févr.)-n°5/6 (1913, juil.)a2e s., n°1 (1914, janv./févr.) aParisc[s.n.]d1912-1914 d23 cm00aCahiers du Cercle Proudhon02aCercle Proudhon4070 3aFRbAbesc20061009gAFNOR 3aFRbBnFc20060327gAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/cb32735652k/date.r=.langFRzAccès libre au texte intégral. Année 1912 numérisée sur Gallica1 b(1912) -(1976)cParisdMagasins/AnnexeeP 8° 3887 aPériobTP06 P8 anumer0 (compléments gallica)00924nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210002700178326001800205440007700223606004400300606003200344712006300376856007800439955007600517991001700593992001200610992001200622002513080000004674020130319051143.01 a1159-3733 aFNSP238277 a0000046740 a19900101b19911998 ba0 afre aFR aazb 14aLes Cahiers du CERI aPariscCERId1991-1998 a5 n°s par an 1tQuestions de recherche = Research in questionb[Ressource électronique] aRelations internationalesxPériodiques aGéopolitiquexPériodiques02aCentre d'études et de recherches internationalesc(Paris)4 uhttp://www.sciencespo.fr/ceri/fr/cahierzAccès libre au texte intégral.1 bno. 1 (oct-1991) -no. 20 (mai-1998)cParisdMagasins/AnnexeeP 8° 5762 aexemp$201111 aDEW 909 aDEW 32701204nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210002600177320011000203326001600313606004900329606005000378676000800428710007400436830004400510856007100554856003700625955006100662955007900723972000900802992002200811992001200833992000900845039900878000001316420131219160725.01 a1146-7924 aFNSP133847 a0000013164 a19900917a19889999 ba0 afre aFR aaha 10aCahiers du CEVIPOF aPariscCEVIPOFd1988- aCessent de paraître sur support papier avec le no 51, Septembre 2009 , continuent en ligne gratuitement. aTrimestriel aSociologie électoraleyFrancexPériodiques aParticipation politiqueyFrancexPériodiques a32002aCentre d'étude de la vie politique française contemporainec(Paris) aToute la collection se trouve au MAG 2740uhttp://www.cevipof.com/fr/les-publications/les-cahiers-du-cevipof/ zAccès libre au texte intégral.1 bno. 1 (1988) -no. 51 (2009)cParisdMagasinseP 8° 51301 bno. 1 (1988) -no. 51 (2009)cParisdBibliothèque de rechercheeP 8° 5130 aZGRA aGEO RA4.06 France aDEW 324 aPBUL00861nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210003700177326001200214606002600226801002100252856003500273856005300308945004400361955007300405957007300478972000900551992001100560001012509000001198820130319051143.01 a0008-011X aFNSP127687 a0000011988 a19900101a19519999 ba0 afre aFR aafa 10aCahiers du cinéma aPariscCahiers du cinémad1951- aMensuel aCinémaxPériodiques 3aFRbCCN0008-011X4 uhttp://www.cahiersducinema.com zExtraits de certains articles du dernier numéro a0000297083oL01lMAGAmbookd1992 05 181 bvol. 24 no. 139 (jan-1963) -....cParisdMagasins/AnnexeeP 4° 20901 bno. 200 (1968) -no. 399 (1987)cParisdMagasins/AnnexeeP Index 0639 aZPAY aDEW 7901284nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004300154210002900197326001500226440005200241601005000293606004000343606004300383606004800426676000800474710003600482856017000518856006500688955006700753955006800820972000900888992001200897992002500909004091833000020862320130319051143.01 a1253-2177 aFNSP756318 a0000208623 a19900101b19962010 ba0 afre aFR aaja 14aLes Cahiers du Conseil constitutionnel aPariscDallozd1996-2010 aSemestriel 1tLes Nouveaux cahiers du Conseil Constitutionnel02aFrancebConseil constitutionnelxPériodiques aDroit constitutionnelxPériodiques aCours constitutionnellesxPériodiques aDroit constitutionnelyFrancexPériodiques a34202aFrancebConseil constitutionnel4 uhttp://www.conseil-constitutionnel.fr/conseil-constitutionnel/francais/documentation-publications/cahiers-du-conseil/les-cahiers-du-conseil-constitutionnel.5069.html zContenu : texte intégral des Cahiers , sauf le n° en cours1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 3421 bno. 1 (1996) -no. 28 (2010)cParisdMagasins/AnnexeeP 4° 6657 aZCAD aDEW 342 aGEO RA4.06 France 0100890nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000050001502100034002002300024002343260005002586060043002636060046003068010013003528560085003658560108004509550005005589920025005639920012005880000969199000096919920130319051143.0 a0000969199 a a19999999k fre 01 ba0 afre aFR ar aaz z  adr 14aLes cahiers du DRHb[Ressource électronique] aPariscLamyline Reflexc1999- aRevue électronique a aDroit du travailyFrancexPériodiques aRessources humainesyFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 34401020nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002300163210003400186326001100220430002300231517008000254607003500334710007300369801001300442856007900455856004500534955006600579972000900645992002800654992001200682073604429000042661620130319051143.01 a1636-7103 a0000426616 a a20019999k fre ba0 afre aBE a 0  ar aak z 0 10aCahiers du GELA-IS aPariscL'Harmattand2002-2005 aAnnuel 1tCahiers du CELA-IS10aCahiers du Groupe d'études latino-américaines de l'Institut de sociologie aAmérique latinexPériodiques02aUniversité libre de BruxellesbGroupe d'études latino-américaines 0aFRbFNSP4 uhttp://www.editions-harmattan.fr/index.asp?navig=catalogue&obj=revue&no=58 zContenu : sommaires depuis le n°1, 20011 bno.1 (2001) - no 5 (2005)cParisdMagasins/AnnexeeP 8° 6319 aZSAB aGEO RD Amérique latine aDEW 98001136nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002100163210002800184326002200212326002400234430003500258606004700293606003800340606003400378801001300412856009500425856010800520955006000628957008900688972000900777992001200786048768596000027851120130319051143.01 a1298-6046 a0000278511 a a19999999k fre ba0 afre aFR a 0  ar aaj z 0 10aCahiers du genre aPariscHarmattand1999- aSemestrielb2000- a3 n°s par anb1999 1tCahiers du GEDISST,x1165-3558 aDivision sexuelle du travailxPériodiques aDivision du travailxPériodiques aFemmesxTravailxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-cahiers-du-genre.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 24 (1999) -....cParisdMagasins/AnnexeeP 4° 67751 bvol. 18 (1997) -vol. 35 (2003)zcet index se trouve dans le no. 35, 2003 de la revue aZPAY aDEW 33101119nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200009500139210009000234300007400324326001500398530003800413606003000451676000800481710006700489856004100556856007200597955007200669972000900741991001800750992002500768992001200793040540391000019547520130919105844.01 a1280-0082 aFNSP718141 a19900101b19962010 ba0 afre aFR aaja 14aLes Cahiers du journalismefEcole supérieure de journalisme de Lille, Centre de recherche aLillecCentre de recherche de l'École supérieure de journalisme de Lilled1996-2010 acesse de paraître sur support papier, continue en ligne gratuitement aSemestriel14aLes Cahiers du journalismebLille aJournalismexPériodiques a07002aEcole supérieure de journalismec(Lille)bCentre de recherche40uhttp://www.cahiersdujournalisme.net/ zContenu : accès libre au texte intégral depuis le numéro 1, 19961 bno. 1 (jun-1996) -no. 21 (2010)cParisdMagasins/AnnexeeP 8° 6262 aZPAY aexempb201309 aGEO RA4.06 France 01 aDEW 07001001nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210005400183210003400237326001600271430007800287606003200365606002400397710003600421856005400457856007000511955006300581972000900644991001800653992001600671040243737000024608220130319051143.01 a1029-8878 aFNSP864442 a0000246082 a19900101a19989999 ba0 afre aFR aaha 14aLes Cahiers du judaïsme aPariscAlliance israélite universelled1998-2009 aPariscEd. de l'éclatd2009- aTrimestriel 1aLes Nouveaux cahiers - Alliance israélite universelle (Paris)x0029-4705 aJuifsyFrancexPériodiques aJuifsxPériodiques02aAlliance israélite universelle4 uhttp://www.aiu.org/activites/editions/c_judaisme/ zContenu : informations sur la revue, sommaire du dernier n° paru1 bno. 1 (mar-1998) -....cParisdMagasins/AnnexeeP 8° 2197 aZPAY aexempb201004 aDEW 305-30601535nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210003300181326001600214430006900230607002600299607002300325607002500348710005900373856003400432856008800466856010200554856010800656856006100764856012100825955006700946972000901013992002001022992003901042992005601081992001201137040229599000014341020130319051143.01 a1252-6576 aFNSP567396 a0000143410 a19941205a19949999 ba0 afre aFR aaha 10aCahiers du monde russe aPariscEd. de l'EHESSd1994- aTrimestriel 1aCahiers du monde russe et soviétique (0008-0160) < P 8° 1742 > aEx-URSSxPériodiques aURSSxPériodiques aRussiexPériodiques02aEcole des hautes études en sciences socialesc(Paris)4 uhttp://monderusse.revues.org/ zContenu : sommaires et résumés de 1994 à 1998, texte intégral à partir de 19994 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-cahiers-du-monde-russe.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr/web/revues/home/prescript/revue/cmr zContenu : accès libre au texte intégral depuis le vol. 1, n°1, 1959 à l'exception des années les plus récentes1 bvol. 35 no. 1 (1994) -....cParisdMagasins/AnnexeeP 8° 1742 aZCAD aGEO RA7.01 URSS aGEO RA7.21 Russie (depuis 1991-92) aGEO RA7.02 Etats successeurs de l'Union soviétique aDEW 94701155nas 2200349 i 450 00100100000000200110001000500170002101100250003803500150006310000410007810100080011910200070012710500180013410600060015211000160015820000300017420700250020421000450022921000500027432000330032432600160035760600450037360600470041860600410046567600080050680100130051485601030052785600420063095501120067297200090078499200120079310423461X000034511720140109162020.01 a1622-1494y1469-3380 a0000345117 a a20002003k fre ba0 afre aFR a 0  ar aah z 0 14aLes Cahiers du numérique 1aVol. 1, n°1 (2000)- aPariscHermes Science Publicationsd2009 aPariscHermes Science Publicationsd2000-2003 aN'a pas paru de 2003 à 2009 aTrimestriel aSociété de l'informationxPériodiques aTechnologie de l'informationxPériodiques aRéseaux d'informationxPériodiques a070 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-les-cahiers-du-numerique.htm zAccès aux sommaires et aux résumés1 bvol. 1 no. 1 (2000) -vol. 4 no. 3/4 (2003) ; vol. 5 no. 1 (2009) - ….cParisdMagasins/AnnexeeP 8° 6536 aZPAY aDEW 07001227nls 2200409 i 450 0010011000000020011000110050017000220110005000390350015000441000041000591010008001001020007001081060006001151100016001211350018001372000065001552070005002202100050002252300005002753000053002803260016003333300005003493360056003543370038004106010036004486060005004846070073004896760005005627020021005677100058005888010013006468300005006598560077006649550005007419920014007469920057007600000401948000040194820130319051143.0 a a0000401948 a a20009999k fre 01 ba0 afre aFR az aay z  adr 10aCahiers européens de Sciences Pob[Ressource électronique] 1a aPariscCentre européen de Sciences Pod2000- a aTexte intégral de la revue depuis le n°1, 2000 airrégulier a aDonnées textuelles accessibles uniquement en ligne aFichiers PDF télédéchargeables02aUnion européennexPériodiques a aPays de l'Union européennexPolitique et gouvernementxPériodiques a 1aDehoussebRenaud02aCentre d'études européennes de Sciences Poc(Paris) 0aFRbFNSP a4 uhttp://www.cee.sciences-po.fr/fr/publications/les-cahiers-europeens.html1 r aDEW 341.2 aGEO RA1.01 Communautés européennes, Pays de la CEE01206nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002200139210004600161326001500207430005100222530003500273606005700308606004400365676000800409710005300417801002100470856006000491856006900551955007300620955005900693957007400752972000900826992001200835992000900847045233020000000400820131029101817.01 a0008-0217 aFNSP104524 a19900101a19569999 ba0 afre aFR aagu 10aCahiers français aPariscLa Documentation françaised1956- aBimestriel 1aLes Cahiers français d'informationx1149-181700aCahiers françaisbParis. 1956 aRelations économiques internationalesxPériodiques aRelations internationalesxPériodiques a00102aFrancebDirection de la documentation française 3aFRbCCN0008-02174 uhttp://www.ladocfrancaise.gouv.fr/revues/cf/index.shtml zContenu : sommaires et résumés depuis le n° 289, janvier 19991 bLes 3 dernières annéescParisd27, Salle Rez-de-chausséeeDEW 0011 bno. 1 (1956) -....cParisdMagasins/AnnexeeP 4° 00311 b(1971) -(1977) ; (1971) -(1986)cParisdMagasins/AnnexeeP Index 0508 aZPAY aDEW 909 aPBUL01179nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210003700195210005600232326001500288606002900303676000800332801002100340856011600361856010800477856009200585856005400677955008300731972000900814991001800823992001200841039221725000001222720131008114625.01 a0008-0276 aFNSP128239 a0000012227 a19900101b19462010 ba0 afre aFR aaja 10aCahiers internationaux de sociologie aaPariscÉd. du Seuild1946-1953 aaPariscPresses universitaires de Franced1954-2010 aSemestriel aSociologiexPériodiques a301 3aFRbCCN0008-02764 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-cahiers-internationaux-de-sociologie.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://doc-iep.univ-lyon2.fr/Ressources/Bases/Somrev/resultatSomrev.html?questionIDR=37 zContenu : sommaires depuis le n°98, janvier 19951 bvol. 1 (1946) -vol. 128/129 (jan/jun 2010)cParisdMagasins/AnnexeeP 8° 0060 aZSAB aexempb201011 aDEW 30101300cas0 2200373 450 00100100000000200110001000500170002101100140003803500170005203500150006910000410008410100080012510200070013310500180014010600060015811000160016420000920018020700170027221000240028932600150031353200830032860600440041160700390045571000810049471200940057580100300066980100230069980200070072285600260072985600820075595500590083799200180089699200120091413169815X000117835420140107174000.01 a1967-2713 aissn19672713 a0001178354 a20090223a20089999k y0frey0103 ba0 afre aFR ay  ar aaju uu 14aLes Cahiers Iricef[Identités, relations internationales et civilisations de l'Europe] 0aNo 1 (2008)- aPariscIRICEd2008- aSemestriel10aLes Cahiers Identités, relations internationales et civilisations de l'Europe aRelations internationalesxPériodiques aEuropexCivilisationxPériodiques02aIdentités, relations internationales et civilisations de l' Europec(Paris)02aCentre national de la recherche scientifiquec(France)bUnité mixte de recherchec(8138) 3aFRbAbesc20091001gAFNOR 3aFRbISSNc20091001 a074 uhttp://irice.cnrs.fr/ zContient : sommaires et texte intégral des articles à partir du no. 1, 20081 bno. 1 (2008) -....cParisdMagasins/AnnexeeP 8° 7106 aGEO RA Europe aDEW 94000872nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000054001502100034002042300024002383260005002626060055002678010013003228560085003358560108004209550005005289920025005339920012005589920012005700000969200000096920020130319051143.0 a0000969200 a a20029999k fre 01 ba0 afre aFR ar aaz z  adr 14aLes cahiers Lamy du CEb[Ressource électronique] aPariscLamyline Reflexc2002- aRevue électronique a aComités d'entreprisexDroityFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 344 aDEW 33101217nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002600139207004400165210004000209326001200249430007400261452007800335530003300413606003600446606002900482710005900511830001400570830003600584856009500620955008700715972000900802991001800811992002200829992001600851039221792000001410820131018152414.01 a0008-042X aFNSP138076 a19901004a19619999 ba0 afre aFR aafa 10aCahiers pédagogiques 1a17e année, n° 29 (1er octobre 1961) - aPariscCahiers pédagogiquesd1961- aMensuel 1tCahiers pédagogiques pour l'enseignement du second degréx1164-6691 1tLes Cahiers (Cercle de recherche et d'action pédagogiques)‎x2104-332910aCahiers pédagogiquesbRevue aEducationyFrancexPériodiques aPédagogiexPériodiques02aCercle de recherche et d'action pédagogiquesc(Paris) a1961-2012 a1961-->2010 : CTLES, juil. 20134 uhttp://www.cahiers-pedagogiques.com/zContenu : sommaires depuis le numéro 365, juin 19981 bVol. 17, no. 29 (1961) -vol. 67 no. 498 (2012)cParisdMagasins/AnnexeeP 4° 1591 aZPAY aexempb201305 aGEO RA4.06 France aDEW 370-37900780nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210005400191326001500245606004000260710004800300801002100348856003500369955005900404972000900463991001800472992001200490039590291000001222520130319051143.01 a0398-0677 aFNSP128237 a0000012225 a19900101a19759999 ba0 afre aFR aaja 10aCahiers pour l'analyse concrète aMontargiscCentre de sociologie historiqued1975- aSemestriel aSociologie historiquexPériodiques02aCentre de sociologie historique (Montargis) 3aFRbCCN0398-06774 uhttp://www.analyseconcrete.fr/1 bno. 2 (1976) -....cParisdMagasins/AnnexeeP 8° 4801 aZPAY aexempb201106 aDEW 30101097nas0 2200349 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006500139207001700204210004000221326001800261510002200279607002500301607002600326676001000352710006300362711003900425801003000464801001300494856008300507856005100590955006700641972000900708992001600717992001400733113887043000108399520130319051143.01 a1955-4397 a0001083995 a20070412b20062008k 0frey0103 ba0 amul aFR aau 10aCahiers Russiefpubl.par l'Observatoire de la Russie du CERI 0aN°1 (2006)- aPariscCeri, Sciences Pod2006-2008 a3 n°s par an14aThe Russia papers aRussiexPériodiques aEx-URSSxPériodiques a943.702aCentre d'études et de recherches internationalesc(Paris)02aObservatoire de la Russiec(Paris) 3aFRbAbesc20070412gAFNOR 0aFRbFNSP4 uhttp://www.ceri-sciences-po.org/cerifr/publica/cahier_russie/cahier_russie.php zContenu : texte intégral depuis le n°1, 20061 bno. 1 (2006) -no. 6 (2008)cParisdMagasins/AnnexeeP 8° 6971 aZGRA aGEO RA7. 21 aDEW 943.700868nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000080001502070011002302100038002412300024002793260013003036060041003166060038003577100033003958010013004288560058004418560041004999550005005409920021005450001227428000122742820130319051143.0 a0001227428 a a20089999k fre 01 ba0 afre aFR ar aaz z  adr 10aCahiers Sol et civilisationb[Ressource électronique] / Sol et civilsation 1a2008-1 aParis:cSol et civilisationd2008 aRevue électronique aInconnue aDéveloppement durablexPériodiques aAgricultureyFrancexPériodiques02aSol et civilisationc(Paris) 0aFRbFNSP4 uhttp://www.soletcivilisation.fr/category/les-cahiers/ ztexte intégral depuis le n°1, 20081 r aGEO RQ Universel00992nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210006000187326001600247606003900263710003900302801002100341856012800362856010800490955009100598972000900689992001600698038683741000001294320130523105956.01 a0008-1256 aFNSP132765 a0000012943 a19900101a19589999 ba0 aeng aUS aaha 10aCalifornia management review aBerkeley, Calif.cUniversity of California Pressd1958- aTrimestriel aGestion d'entreprisexPériodiques02aUniversity of California, Berkeley 3aFRbCCN0008-12564 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=CMW&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 11 no. 3 (pri-1969) -vol. 55 no. 1 (aut-2012)cParisdMagasins/AnnexeeP 4° 2798 aZPAY aDEW 650-65801050nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210003400189326001500223606003700238801002100275856009800296856003600394856010100430856010800531955007000639972000900709991001800718992001200736039404285000001334420130319051145.01 a0309-166X aFNSP134482 a0000013344 a19900101a19779999 ba0 aeng aGB aaga 10aCambridge journal of economics aLondoncAcademic Pressd1977- aBimestriel aEconomie politiquexPériodiques 3aFRbCCN0309-166X4 uhttps://acces-distant.sciences-po.fr/fork?http://cje.oupjournals.org/contents-by-date.0.shtml zAccès libre au texte intégral4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=102613 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1977) -....cParisdMagasins/AnnexeeP 8° 3890 aZPAY aexempb201001 aDEW 33001558nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210006400200326002300264326002900287326002600316606004400342710004900386856010300435856010800538856010900646856010800755856012800863856010800991955007001099972000901169991001801178992001201196040086437000003166020130319051145.01 a0955-7571 aFNSP187877 a0000031660 a19910514a19879999 ba0 aeng aGB aaia 10aCambridge review of international affairs aCambridgecCambridge review of international affairsd1987- aTrimestrielb2006- a3 n°s par anb2002-2005 aSemestrielb1990-2001 aRelations internationalesxPériodiques02aCentre for International Studies (Cambridge)4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=300201 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713409751db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=poh&jid=J1Y&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 4 no. 1 (pri-1990) -....cParisdMagasins/AnnexeeP 8° 5715 aZCAD aexempb201205 aDEW 32700999nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210002900179326001200208436003800220436001900258606003800277710003900315856006700354856008800421955006500509955006800574972000900642992002200651992001200673039823717000006071320130319051145.01 a0984-9181 aFNSP278285 a0000060713 a19900101a19879999 ba0 afre aFR aafa 10aCampagnes solidaires aPariscMedia Paysd1987- aMensuel 1aLe Travailleur paysan,x0293-5031 1tPays et paysan aPaysannerieyFrancexPériodiques02aConfédération paysannec(France)4 uhttp://www.confederationpaysanne.fr/campagnes_solidaires_5.php zContenu : sommaires, éditos et sélection d'articles depuis le no. 173, avril 20031 bno. 137 (jan-2000) -....cParisdMagasins/AnnexeeP 4° 68421 bno. 1 (sep-1987) -no. 136 (dec-1999)cParisdAnnexeeP F° 0463 aZPAY aGEO RA4.06 France aDEW 30700936nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001391100016001452000026001612100051001873260015002385170028002535300026002816060053003076060040003608010021004008560033004218560042004549550087004969920023005839920016006060000013346000001334620130319051145.01 a0197-0771 aFNSP134487 a0000013346 a19900101a19809999 ba0 aeng aUS ar aaga 10aCampaigns & elections aWashington, D.C.cCampaigns & electionsd1980- aBimestriel10aCampaigns and elections00aCampaigns & elections aCampagnes électoralesyEtats-UnisxPériodiques aElectionsyEtats-UnisxPériodiques 3aFRbCCN0197-07714 uhttp://www.campaignline.com/ zContenu : sommaire du dernier numéro1 bvol. 2 no. 1 (pri-1981) -vol. 18 no. 10 (1998)cParisdMagasins/AnnexeeP 4° 4650 aGEO RC2 Etats-Unis aDEW 324.6-901111nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000031001552100048001863260016002344300069002505300031003196070035003507120026003858010021004118300061004328560058004938560036005519550083005879570084006709920019007549920012007730000013421000001342120130319051146.01 a0008-3755 aFNSP134888 a0000013421 a19900101a19209999 ba0 aeng aCA aahu 10aCanadian historical review aTorontocUniversity of Toronto Pressd1920- aTrimestriel 1aReview of historical publications relating to Canada (0381-8055)00aCanadian historical review aCanadaxHistoirexPériodiques02aUniversity of Toronto 3aFRbCCN0008-3755 aCollection donnée au CTLes jusqu'au vol.81, n°4, 2000.4 uhttp://www.utpjournals.com/jour.ihtml?lp=CHR/CHR.html zContenu : sommaires depuis 19961 bvol. 82 no. 1 (2001) -vol. 83 no. 4 (2002)cParisdMagasins/AnnexeeP 8° 00831 rIndex des articles et des livres analysés 1950/1964 ; 1971/1990

 aGEO RC1 Canada aDEW 97101232nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004000154210007900194326002400273326002600297430005300323510004400376517004400420607002600464712005000490801002100540856009000561856010800651955008600759991001800845992001900863992001200882038684535000001350320130319051146.01 a0008-3968 aFNSP135139 a0000013503 a19900101a19679999 ba0 amul aCA aaia 10aCanadian journal of African studies aOttawa, Ont. [etc.]cCanadian Association of African Studies [etc.]d1967- a3 nos par anb1969- aSemestrielb1967-1968 1aBulletin of African studies in Canadax0525-137010aJournal canadien des études africaines10aRevue canadienne des études africaines aAfriquexPériodiques02aAssociation canadienne des études africaines 3aFRbCCN0008-39684 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00083968.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1967) -vol. 28 no. 3 (1994)cParisdMagasins/AnnexeeP 8° 3057 aexempb201001 aGEO RE Afrique aDEW 96001431nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210004800188326001600236437006800252517003500320607004800355607006100403801002100464856010100485856010800586856009000694856010800784955009000892972000900982991001800991992002901009992001901038992001201057038684691000001351120131127153521.01 a0008-4085 aFNSP135159 a0000013511 a19900101a19689999 ba0 amul aCA aaha 10aCanadian journal of economics aTorontocUniversity of Toronto Pressd1968- aTrimestriel 1aCanadian journal of economics and political science,x0315-489010aRevue canadienne d'économique aCanadaxPolitique économiquexPériodiques aAmérique du NordxConditions économiquesxPériodiques 3aFRbCCN0008-40854 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=104164 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00084085.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (fev-1968) -vol. 45 no. 4 (nov-2012)cParisdMagasins/AnnexeeP 8° 2730 aZPAY aexempb201105 aGEO RC Amérique du Nord aGEO RC1 Canada aDEW 33001422cas0 2200385 450 00100100000000200110001000500170002101100140003803500170005203500150006910000410008410100080012510200070013310600060014011000160014620000560016221000520021832600160027043000510028644600460033744600540038351000570043760700480049460700610054271000480060380100300065180200070068185600900068885601080077895500700088699100200095699200290097699200190100599200120102403728228X000108370820130319051146.01 a0315-4890 accn0315-4890 a0001083708 a19750925b19351967 frey0103 ba0 amul aCA ar aah 10aCanadian journal of economics and political science aTorontocUniversity of Toronto Pressd1935-1967 aTrimestriel 1tContributions to Canadian economicsx0383-6258 1tCanadian journal of economics,x0008-4085 1tCanadian journal of political science,x0008-423910aRevue canadienne d'économie et de science politique aCanadaxPolitique économiquexPériodiques aAmérique du NordxConditions économiquesxPériodiques02aCanadian Political Science Association4070 3aFRbAbesc20070417gAFNOR a044 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03154890.html4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 (1935) -vol. 33 (1967)cParisdMagasins/AnnexeeP 8° 0045 aPériobTP01 P8 aGEO RC Amérique du Nord aGEO RC1 Canada aDEW 33001786nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008300154210006000237210005800297326001600355437006700371510004200438606003600480606004400516710004800560711004800608801002100656856005200677856004900729856009000778856010800868856010300976856010801079955012701187972000901314991001801323992001901341992001601360038684888000001375120130319051146.01 a0008-4239 aFNSP136169 a0000013751 a19900101a19689999 ba0 amul aCA aaha 10aCanadian journal of political scienced= Revue canadienne de science politique aWaterloo, Ont.cWilfrid Laurier University Pressd1977- aToronto, Ont.cUniversity of Toronto Pressd1968-1976 aTrimestriel 1aCanadian journal of economics and political sciencex0315-489010aRevue canadienne de science politique aScience politiquexPériodiques aScience politiqueyCanadaxPériodiques02aSociété québécoise de science politique02aAssociation canadienne de science politique 3aFRbCCN0008-42394 uhttp://info.wlu.ca/wwwpress/jrls/cjps/cjps.html zContenu : sommaires et résumés depuis 19934 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03154890.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=113040 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1968) -....cParisdMagasins/AnnexeeP 8° 0045wManquant : vol. 22, no. 1, 1989 et vol. 23, no. 4, 1990 aZCAD aexempb201112 aGEO RC1 Canada aDEW 320-32101335nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210005500188326001600243517003600259606003700295606002900332801002100361856012800382856010800510856009000618856010800708955009000816972000900906991001800915992002100933992001900954992001200973039412563000001342420130319051146.01 a0318-6431 aFNSP134912 a0000013424 a19900101b19752007 ba0 amul aCA aaha 10aCanadian journal of sociology aEdmontoncCanadian journal of sociologyd1975-2007 aTrimestriel10aCahiers canadiens de sociologie aSociologieyCanadaxPériodiques aSociologiexPériodiques 3aFRbCCN0318-64314 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=7S8&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03186431.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 7 no. 4 (aut-1982) -vol. 32 no. 4 (hiv-2007)cParisdMagasins/AnnexeeP 8° 4625 aZCAD aexempb201003 aGEO RQ Universel aGEO RC1 Canada aDEW 30101056nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005000154210005200204326001600256510002600272606004500298607005200343801002100395856009000416856010800506955007000614972000900684991001800693992001900711992001200730039411168000001349620130319051146.01 a0317-0861 aFNSP135122 a0000013496 a19900101a19759999 ba0 amul aCA aaha 10aCanadian public policydAnalyse de politiques aToronto, ONcUniversity of Toronto Pressd1975- aTrimestriel10aAnalyse de politiques aPolitique publiqueyCanadaxPériodiques aCanadaxPolitique et gouvernementxPériodiques 3aFRbCCN0317-08614 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03170861.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 1 (hiv-1979) -....cParisdMagasins/AnnexeeP 8° 4166 aZGRA aexempb201104 aGEO RC1 Canada aDEW 97101324nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101001300123102000700136110001600143200005000159210005200209326001600261440007800277517005400355606002900409606003200438710005800470801002100528856012800549856010800677955009000785957007200875972000900947991001800956992001200974038685108000001358420130319051146.01 a0008-4948 aFNSP135490 a0000013584 a19900101b19642007 ba0 aengafre aCA aaha 10aCanadian review of sociology and anthropology aTorontocUniversity of Toronto Pressd1964-2007 aTrimestriel 1tCanadian review of sociology = revue canadienne de sociologie,x1755-617110aRevue canadienne de sociologie et d'anthropologie aSociologiexPériodiques aAnthropologiexPériodiques02aSociété canadienne de sociologie et d'anthropologie 3aFRbCCN0008-49484 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=CRS&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (fev-1964) -vol. 44 no. 4 (nov-2007)cParisdMagasins/AnnexeeP 8° 21001 bvol. 1 (1964) -vol. 10 (1973)cParisdMagasins/AnnexeeP Index 0251 aZPAY aexempb201105 aDEW 30101550nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210002300174326001800197430006600215517002200281606003600303606003700339606004800376710004500424801002100469856012800490856010800618856012800726856010800854955010300962957007001065972000901135991001801144992001401162039405753000001386420130319051147.01 a0309-8168 aFNSP136894 a0000013864 a19900101a19779999 ba0 aeng aGB aaiu 10aCapital & class aLondoncCSEd1977- a3 n°s par an 1aBulletin of the Conference of Socialist Economistsx0305-824710aCapital and class aEconomie marxistexPériodiques aEconomie politiquexPériodiques aCapitalismexAnalyse marxistexPériodiques02aConference of Socialist Economistsc(GB) 3aFRbCCN0309-81684 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=CAC&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=CAC&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (pri-1977) -....cParisdMagasins/AnnexeeP 8° 4560wManquant : no. 7, 1979 et no. 13, 19811 bno. 1 (1977) -no. 60 (1996)cParisdMagasins/AnnexeeP Index 0782 aZCAD aexempb201003 aDEW 330.100987nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210003100180326001200211606005200223607005000275830005700325856002600382856004300408955006900451955008700520972000900607992002100616992002200637992001400659039958280000004266720130319051147.01 a1162-6704 aFNSP224887 a0000042667 a19900101a19919999 ba0 afre aFR aafa 00aCapital (Paris, 1991) aPariscPrisma Pressd1991- aMensuel aHistoire économiquez20e sièclexPériodiques aFrancexConditions économiquesxPériodiques ano. 1 (oct-1991) -.... : collection donnée au CTLes4 uhttp://www.capital.fr zContenu : sommaire du dernier numéro.1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 60481 bConservation limitée aux 5 dernières annéescParisdMagasins/AnnexeeP 4° 6048 aZPAY aGEO RQ Universel aGEO RA4.06 France aDEW 330.901218nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210003600188326001600224517000800240606007200248606004700320856010300367856010800470856010900578856010800687955007000795972000900865991001800874992001200892040264793000019547020130319051147.01 a1045-5752 aFNSP718134 a0000195470 a19900101a19889999 ba0 aeng aUS aaha 10aCapitalism, nature, socialism aNew YorkcGuilford Pressd1988- aTrimestriel10aCNS aDéveloppement économiquexAspect de l'environnementxPériodiques aPolitique de l'environnementxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=110601 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713395259db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 6 no. 1 (mar-1995) -....cParisdMagasins/AnnexeeP 8° 6261 aZCAD aexempb201301 aDEW 33300775nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000068001502100048002182300024002663260015002906060036003058010013003418560035003548560069003899550005004589920012004639920022004750000980403000098040320130319051148.0 a0000980403 a a20019999k fre 01 ba0 afre aCH ar aaj z  adr 10aCarnets de bord en sciences humainesb[Ressource électronique] aGenèvecAssociation Carnets de bordd2001- aRevue électronique aSemestriel aSciences humainesxPériodiques 0aFRbFNSP4 uhttp://www.carnets-de-bord.ch/ zContenu : sommaires et texte intégral depuis le n°1, juin 20011 r aDEW 300 aGEO RA5.14 Suisse01400nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005400154210007900208326001800287606002400305606003800329710005700367801002100424856004700445856009100492856012800583856010800711955008600819957011900905972000901024991001701033992001201050038685833000001394320130319051149.01 a0008-7254 aFNSP137308 a0000013943 a19900101a19689999 ba0 aeng aUS aaiu 10aCase Western Reserve journal of international law aCleveland (Ohio)cCase Western reserve journal of international lawd1968- a3 n°s par an aDroitxPériodiques aDroit internationalxPériodiques02aCase Western Reserve School of Law (Cleveland, Ohio) 3aFRbCCN0008-72544 uhttp://law.case.edu/journals/jil/Home.aspx zContenu : texte intégral depuis le vol.31, n°1, 1998-1999 sauf pour les derniers n°4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=CWJ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (aut-1968) -vol. 41 no. 3 (2009)cParisdMagasins/AnnexeeP 8° 28071 bvol. 1 (1968) -vol. 10 (1978)cParisdMagasins/Annexezcet index se trouve dans le vol. 10 no. 3, 1978 de la revue aZCAD aexempb20105 aDEW 34101182cas0 2200409 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200003600197210003900233326001600272421003800288517002400326530002300350606003600373676000800409710003800417801003000455801002300485802000700508856003000515856004900545955006600594955006700660972000900727992002500736992001100761040459438000120998720130319051149.0 a1268-0478 accn1268-0478 aissn12680478 a0001209987 a19960207a19959999m y0frey50 ba0 afre aFR ay 0  ar aaha 0uu 10aCassandreel'art principe actif aPariscParoles de théâtred1995- aTrimestriel 0tCassandre. Hors-sériex1760-926710aCassandre Horschamp10aCassandreb(Paris) aArts du spectaclexPériodiques a79002aParoles de théâtrecFrance4340 3aFRbAbesc20110208gAFNOR 3aFRbISSNc20090225 a074 uhttp://www.horschamp.org/4 zContenu : sommaires en ligne depuis le n° 11 bLes 3 dernières annéescParisd27, salle 5e étageeDEW 7901 bno. 72 (hiv., 2008)-.... ; Paris, Magasins/Annexe : P 4° 7299 aZPAY aGEO RA4.06 France 01 aDEW 7901158nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210004400175326002200219606005500241606003600296710003900332801002100371856005500392856003600447856012800483856010800611955007000719972000900789991001800798992001600816039334988000001772320130319051150.01 a0273-3072 aFNSP148286 a0000017723 a19900101a19819999 ba0 aeng aUS aaia 14aThe Cato journal aWashington, D.C.cCato Instituted1981- aTrois fois par an aTechniques de décision en politiquexPériodiques aScience politiquexPériodiques02aCato Institutec(Washington, D.C.) 3aFRbCCN0273-30724 uhttp://www.cato.org/pubs/journal/cato_journal.html zAccès libre au texte intégral4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=CAO&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (pri-1981) -....cParisdMagasins/AnnexeeP 8° 4651 aZSAB aexempb201003 aDEW 320-32101119cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200006000180207001800240210005700258326001500315530003300330606004400363606003700407676000800444710002800452801003000480801002300510802000700533856002700540856006200567955006700629992003300696992001600729115427007000115490420130611121225.01 a1957-2166 aissn19572166 a0001154904 a20070614a20079999k y0frey0103 ba0 afre aFR ay  ar aaja uu 10aCause communeerevue citoyenne d'actualité réfléchie 1aN°1 (2007) - aParisaMeauxcLes Éd. du CerfcCause communed2007- aSemestriel10aCause communeb(Paris. 2007) aIdées politiquesyFrancexPériodiques aVie intellectuellexPériodiques a00102aCause communec(France) 3aFRbAbesc20080527gAFNOR 3aFRbISSNc20080526 a074 uhttp://www.causeco.fr/ zContient : sommaires et éditoriaux depuis le no. 1, 20071 bno. 1 (2007) -no. 3 (2008)cParisdMagasins/AnnexeeP 8° 7060 aGEO RS sans aspect régional aDEW 320-32100888nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210002500174326001600199606006400215606002900279710006100308856004400369856006800413955010600481972000900587992001400596040385906000018244020130515165840.01 a1262-1218 aFNSP679018 a0000182440 a19900101a19959999 ba0 afre aFR aaga 10aCauses communes aPariscCIMADEd1995- aTrimestriel aAide économiquexCoopération internationalexPériodiques aRéfugiésxPériodiques02aComité inter-mouvements auprès des évacuésc(France) 4uhttp://www.lacimade.org/causes_communes zContenu : sommaires depuis no. 1, 1995 et sélection d'articles1 bno. 1 (mar-1995) -no.67 (jan-2011)cParisdMagasins/AnnexeeP 4° 6584wManquant : nos 64 à 66, 2009 aZPAY aDEW 338.901240nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001200154210002900166326001900195326002800214430004400242517002600286606003400312606004800346606003700394856019200431856010800623955006900731955008000800992002200880992001200902059693738000017998520130319051151.01 a1623-4480 aFNSP671503 a0000179985 a19900101a19969999 ba0 afre aFR aaca 00aCB news aBoulognecCB newsd1996- aMensuelb2011- aHebdomadaireb1996-2011 1aCommunication & ... CB news,x0988-285110aCB news communication aMédiasyFrancexPériodiques aEntreprises de presseyFrancexPériodiques aPublicitéyFrancexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 73021 bno. 418 (jan-1996) -no. 1078 (mai-2011)cParisdMagasins/AnnexeeP F° 0524 aGEO RA4.06 France aDEW 65901081nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000300013921001250016932600110029444000310030553000290033660600420036571200550040783000390046285601620050195500550066397200090071899100180072799200220074599200120076700105919X000006239320131025170320.01 a0767-6964 aFNSP285521 a19900101a19852011 ba0 afre aFR aaka 10aCélébrations nationales aPariscMinistère de la culture, Direction des archives de France, Délégation aux célébrations nationalesd1985-2011 aAnnuel 1tCommémorations nationales10aCélébrations‎bParis aCommémorationsyFrancexPériodiques01aFrancebDélégation aux célébrations nationales aSudoc à jour : 25 avril 2007 (dm)4 uhttp://www.archivesdefrance.culture.gouv.fr/action-culturelle/celebrations-nationales/recueil-2011/zAccès libre au texte intégral des recueils depuis 19991 b(1986) -(2011)cParisdMagasins/AnnexeeP 8° 5805 aZGRA aexempb201112 aGEO RA4.06 France aDEW 00101460nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008800154210011600242326001500358430005500373440010900428606004100537606006400578607002600642710006300668801002100731856003000752856014700782955007300929972000901002992003001011992002301041992002001064992001401084001060694000001383120130319051151.01 a0764-9878 aFNSP136672 a0000013831 a19900101b19852005 ba0 afre aFR aaju 10aCEMOTI. Cahiers d'études sur la Méditerranée orientale et le monde turco-iranien aPariscAssociation française pour l'étude de la Méditerranée orientale et du monde turco-iraniend1985-2005 aSemestriel 1aEquipe de recherche sur la TurquiexISSN 0767-2365 1tAnatoli : de l'Anatolie à la Caspienne : territoires, politique, sociétésxISSN 0764-9878xP 8° 7156 aGéopolitiqueyTurquiexPériodiques aGéopolitiqueyMéditerranée (région ; est)xPériodiques aBalkansxPériodiques02aCentre d'études et de recherches internationalesc(Paris) 3aFRbCCN0764-98784 uhttp://cemoti.revues.org/ zContenu : sommaires et résumés depuis le n°1, quelques articles en texte intégral pour certains n°s ; texte intégral du n° 19 au n° 261 bno. 1 (1985) -no. 40 (déc-2005)cParisdMagasins/AnnexeeP 4° 5162 aZGRA aGEO RA8 Europe du Sud-Est aGEO RA6.06 Turquie aGEO RG4.02 Iran aDEW 956.101087nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210002800179326001600207607003200223710004800255801002100303856005700324856006600381856010900447856010800556955007000664972000900734991001800743992001200761039315312000001386820140108125050.01 a0263-4937 aFNSP136922 a0000013868 a19900101a19829999 ba0 aeng aGB aaha 10aCentral Asian survey aOxfordcPergamond1982- aTrimestriel aAsie centralexPériodiques02aSociety for Central Asian Studies (Londres) 3aFRbCCN0263-49374 uhttp://www.tandf.co.uk/journals/carfax/02634937.html zContenu : sommaires depuis le volume 15, numéro 1, mars 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713409859db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jul-1982) -....cParisdMagasins/AnnexeeP 8° 4646 aZSAB aexempb201003 aDEW 95801452nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000248001642100023004123260011004354520055004465100061005015300050005626060051006127100067006638010013007308560228007439550055009719720009010269920051010359920016010869920012011020000417610000041761020130918115945.01 a1994-9189 a0000417610 a a20019999k f fre ba0 amul aFR a 0  ar aak z 0 10aCentral government debt‎iStatistical yearbook‎‎fOrganisation for Economic Co-operation and Development‎d= Dette de l'administration centrale‎iAnnuaire statistique‎fOrganisation de coopération et de développement économiques aPariscOCDEd2001- aAnnuel 1ttSourceOECD. Central government debt‎x1684-000310aDette de l'administration centrale. Annuaire statistique10aCentral government debt. Statistical yearbook aDettes publiquesyPays de l'OCDExPériodiques aOrganisation de coopération et de développement économiques 0aFRbFNSP uhttps://acces-distant.sciences-po.fr/fork?http://titania.sourceocde.org/vl=3932884/cl=32/nw=1/rpsv/outlook_annuals.htmzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(2000) -(2007)cParisdMagasins/AnnexeeP 4° 7164 aZPAY aGEO RN1 Pays industrialisés, pays occidentaux aDEW 310-319 aDEW 33601053nas 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000126001502070010002762100072002863260011003586060050003696070048004197100049004678010013005168560047005298560066005769550058006429720009007009920018007099920012007270000818756000081875620130319051152.0 a0000818756 a a20019999 fre 01 ba0 afre aFR a 0  ar aak z 0 10aCentre d'histoire de l'Europe du vingtième siècle - Brochure d'informationfFondation nationale des sciences politiques 1a2001- aPariscCentre d'histoire de l'Europe du vingtième siècle :d2001- aAnnuel aHistoire universellexRecherchexPériodiques aEuropexEtude et enseignementxPériodiques02aCentre d'histoire de Sciences Po‎c(Paris) 0aFRbFNSP4 uhttp://www.chevs.sciences-po.fr/index.html zContenu : présentation des activités du centre de recherche1 b(2001/2002) -....cParisdMagasins/AnnexeeP 8° 6818 aZGRA aGEO RA Europe aDEW 94000878nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000060001502100059002102300024002693260033002935170029003265170060003556060040004157100040004558010013004958300007005088560085005150000464370000046437020130319051153.0 a0000464370 a a19849999k fre 01 ba0 aeng aGB az abu z  adr 10aCEPR discussion papersb[Ressource électronique]fCEPR aLondoncCentre for economic policy researchd1984-.... aDonnées textuelles aCollection de working papers10aDiscussion papers - CEPR10aDiscussion papers - Centre for economic policy research aPolitique économiquexPériodiques02aCentre for Economic Policy Research 0aFRbFNSP aBH4 uhttp://www.cepr.org/pubs/new-dps/dp_papers.htmzAccès libre au texte intégral.00851nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000056001502100059002062300024002653260033002895170025003225170049003476060040003967100040004368010013004768300007004898560077004960000464369000046436920130319051153.0 a0000464369 a a19999999k fre 01 ba0 aeng aGB az abu z  adr 10aCEPR policy papersb[Ressource électronique]fCEPR aLondoncCentre for economic policy researchd1999-.... aDonnées textuelles aCollection de working papers10aPolicy papers - CEPR10aPolicy papers - Centre for economic research aPolitique économiquexPériodiques02aCentre for Economic Policy Research 0aFRbFNSP aBH4 uhttp://www.cepr.org/pubs/PolicyPapers/zAccès libre au texte intégral.00900nls 2200289 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000055001502100031002052300024002363000074002603260015003346060023003496060026003726760010003987120101004088010013005098300007005228560081005290000412116000041211620130319051153.0 a0000412116 a a19749999k fre 01 ba0 amul aFR az aby z  adr 10aCEPREMAP working papersb[Ressource électronique] aPariscCEPREMAPd1974-.... aDonnées textuelles aTexte en anglais ou en français. Résumé en anglais et en français aCollection aEconomie politique aPolitique économique a330.102aCentre d'études prospectives d'économie mathématique appliquées à la planificationc(Paris) 0aFRbFNSP adm4 uhttp://www.cepremap.ens.fr/version/docume/zAccès libre au texte intégral.01123nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001500154210007900169326001200248430009400260517001500354606004900369606005800418710007100476830003500547856005100582856003600633955008200669972000900751992002500760992001200785039683850000005401120130319051153.01 a0758-1858 aFNSP255350 a0000054011 a19900101a19839999 ba0 afre aFR aafa 10aCEREQ Bref aPariscCentre d'études et de recherches sur les qualificationsd1983-2010 aMensuel 1aNote d'information - Centre d'études et de recherches sur les qualifications,x0291-806410aBref CEREQ aTravailxAspect socialyFrancexPériodiques aQualifications professionnellesyFrancexPériodiques02aCentre d'études et de recherches sur les qualificationsc(France) atraitement différent du Sudoc4 uhttp://www.cereq.fr/index.php/collections/Bref zAccès libre au texte intégral1 bno. 1 (mar/avr-1983) - no. 259 (dec-2008)cParisdMagasins/AnnexeeP 4° 3573 aZGRA aGEO RA4.06 France 01 aDEW 33101165nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000052001502070012002022100023002142300024002373260016002613300226002776060044005036060044005476060044005917100063006358010013006988560107007119920021008189920012008390001221928000122192820130319051153.0 a0001221928 a a20089999k fre 01 ba0 aeng aFR ar aau z  adr 10aCERI Strategy Papersb[Ressource électronique] 1a2008/1- aPariscCERId2008- aRevue électronique aIrrégulier aLes CERI Strategy Papers sont issus des séminaires stratégiques, réunions organisées avec le soutien du Commissariat à l'Energie Atomique et portant sur les questions de sécurité, défense et politique étrangère. aSécurité internationalexPériodiques aRelations internationalesxPériodiques aArt et science militairesxPériodiques02aCentre d'études et de recherches internationalesc(Paris) 0aFRbFNSP4 uhttp://www.sciencespo.fr/ceri/fr/papier/strategyzAccès libre au texte intégral depuis le n°1, 2008 aGEO RQ universel aDEW 35501397nls0 2200289 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109110001600127135001800143200004100161210006200202230002400264326001100288330052500299606005200824710006800876711007300944801003001017856003701047992001201084992001101096150015283000120610520130319051153.0 a0001206105 a2011 a20119999k y0frey50 ba0 afre aFR ay 0  aaka a 0  adr 10aCeriscopeb[Ressource électronique] aPariscCERI, Atelier de cartographie de Sciences Pod2011 aRevue électronique aAnnuel aLe Ceriscope est une publication scientifique en ligne du Centre d’études et de recherches internationales (CERI) réalisée en partenariat avec l’Atelier de cartographie de Sciences Po. Parution dynamique centrée sur un enjeu international, elle sera consacrée chaque année à un sujet différent. L’édition 2011 traite de la question des frontières.Réalisation collective, le Ceriscope offre une analyse qui s’appuie sur de multiples supports : textes, cartes, graphiques, photographies, diaporamas, etc aRelations internationalesxPériodiques2rameau02aCentre d'études et de recherches internationalesc(Paris)407002aInstitut d'études politiquesc(Paris)bAtelier de cartographie4070 3aFRbAbesc20110211gAFNOR4 uhttp://ceriscope.sciences-po.fr/ aDEW 327 aGEO RS01067nas0 2200289 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000600013921000550019930100430025432600160029760700690031360700710038271000640045371100530051780100300057085600860060095500700068697200090075699200120076507513019X000093052220130319051153.01 a1612-0663 a0000930522 a20031124a20039999k y frey0103 ba0 aeng aDE aaha 10aCESifo Dice reportfIfo Institute for economic research aMunichcIfo Institute for economic researchd2003- aDemande de numérotation issn en cours aTrimestriel aPays de l'Union européennexPolitique économiquexPériodiques aPays de l'Union européennexConditions économiquesxPériodiques02aIFO-Institut für Wirtschaftsforschungc(Munich, Allemagne)02aCenter for Economic Studiesc(Munich, Allemagne) 3aFRbAbesc20031124gAFNOR4 uhttp://www.cesifo-group.de/portal/page/portal/ifoHome/b-publ/b2journal/40publdice1 bvol. 1 no. 1 (pri-2003) -....cParisdMagasins/AnnexeeP 4° 7092 aZSAB aDEW 33001083nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000028001642070025001922100055002173260016002724300028002886060037003167100064003538010013004178560128004308560108005589550082006669720009007489920012007570000603138000060313820130319051153.01 a1610-241X a0000603138 a a20039999 fre 01 ba0 aeng aDE a 0  ar aah z 0 10aCesifo economic studies 1aVol.49, n°1 (2003)- aMunichcIfo Institute for economic researchd2003- aTrimestriel 1tIfo-Studien,x0018-9731 aEconomie politiquexPériodiques02aIFO-Institut für Wirtschaftsforschungc(Munich, Allemagne) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=RDV&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 49 no. 3 (2003) -vol. 52 no 1 (2006)cParisdMagasins/AnnexeeP 8° 2407 aZSAB aDEW 33001297nas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125105001800133106000600151110001600157200006700173210004900240326001600289517005800305517006300363606003600426606005300462606005300515710007700568801003000645801002300675856005700698856006800755955006900823972000900892992001600901992001800917139025952000117938920130319051153.01 a1992-3147 aissn19923147 a0001179389 a20091207a20069999 0frey0103 ba0 aeng ay  ar aah 10aCEU political science journalfDepartment of political science aBudapestcCentral European Universityd2006- aTrimestriel10aCentral European University political science journal10aCEU political science journal. The Graduate student review aScience politiquexPériodiques aScience politiqueyEurope de l'EstxPériodiques aScience politiqueyEurope centralexPériodiques02aCentral European UniversitybDepartment of political sciencec(Budapest) 3aFRbAbesc20091207gAFNOR 3aFRbISSNc200806014 uhttp://www.personal.ceu.hu/PolSciJournal/issues.html zContient les n°s en texte intégral depuis le no. 1 (jan-2006)1 bvol. 1 no 5 (dec-2006) -....cParisdMagasins/AnnexeeP 8° 7110 aZSAB aDEW 320-321 aGEO RA Europe00890nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000180015421000230017232600120019543000380020760600290024560700250027471000560029980100210035585600340037685600570041095500630046797200090053099200250053999200120056403957170X000001466820130319051153.01 a0395-5621 aFNSP140395 a0000014668 a19900101a19769999 ba0 afre aFR aafa 10aCFDT magazine aPariscCFDTd1976- aMensuel 1aSyndicalisme magazine,x0397-9512 aActualitéxPériodiques aFrancexPériodiques02aConfédération française démocratique du travail 3aFRbCCN0111/20234 uhttp://www.cfdt.fr/dexmag.htm zContenu : sommaires depuis le numéro 246, mars 19991 bno. 1 (dec-1976) -....cParisdMagasins/AnnexeeP 4° 3588 aZPAY aGEO RA4.06 France 01 aDEW 05001626nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005800139210004900197210008500246210008200331326001500413530003900428607005400467801002100521830005300542856011600595856020600711856024000917955006701157972000901224991001801233992002301251992001401274039657906000000410020131003151027.01 a0577-5132 aFNSP104809 a19900101a19549999 ba0 aeng aUS aagu 10aChallenge magazine:ethe Magazine of Economic Affairs aWhite Plains, N.Y.‎cM.E. Sharpe‎d1977- aWhite Plains, N.Y.‎cIASP, International Arts and Sciences Press‎d1973-1976 aNew York‎cInstitute of Economic Affairs, New York University‎d1952-1967 aBimestriel10aChallenge magazinebNew York, N.Y. aEtats-UnisxConditions économiquesxPériodiques 3aFRbCCN0577-5132 a1973-2010 : collection envoyée au CTles en 20134 uhttp://www.mesharpe.com/journals.aspzContenu : sommaires depuis le volume 44, numéro 1, janvier-février 20014 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=106043zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=CLG&site=bsi-livezContenu : accès au texte intégral via Business Source premier depuis 1964 à l'exception des six derniers mois1 bvol. 16 no. 3 (1973) -....cParisdMagasins/AnnexeeP 4° 3451 aZPAY aexempb201307 aGEO RC2 Etats-Unis aDEW 330.901006cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200002500162210003900187326001100226606004400237606003700281676000800318801003000326801002300356802000700379856004100386856008400427955007300511955006300584972000900647992001200656090062345000102126620130319051156.01 a1771-8627 aissn17718627 a0001021266 a20050222a20049999k y1frey0103 ba0 afre aFR ar aajy uu 10aChantiers politiques aPariscChantiers politiquesd2004- aAnnuel aRelations internationalesxPériodiques aVie intellectuellexPériodiques a001 3aFRbAbesc20060110gAFNOR 3aFRbISSNc20050901 a074 uhttp://www.chantiers-politiques.com/ zContenu : sommaires depuis le n° 1, Juin 2004 ; n°s 2 et 3 en texte intégral1 bLes 3 dernières annéescParisd27, Salle Rez-de-chausséeeDEW 0011 bno. 1 (avr-2004) -....cParisdMagasins/AnnexeeP 8° 6912 aZPAY aDEW 00101324cas0 2200409 450 001001000000002001100010005001700021011001400038035002100052035001700073100004100090101000800131102000700139105001800146106000600164110001600170200010600186207002700292210003200319326001600351530001200367606005500379606004300434676000800477702003100485702002800516801003000544801002300574802000700597856008600604856004800690955006800738955006200806972000900868992001200877992002500889160812909000124297720130416120001.0 a2258-7616 a(OCoLC)793599659 aissn22587616 a20120504a20129999m y0frey50 ba0 afre aFR aa 0  ar aahab 0uu 10aCharlese[revue littéraire]/f[directeurs de la publication Frédéric Houdaille & Alexandre Chabert] 0aN° 1 (printemps 2012) aPariscÉd. La Tengod2012- aTrimestriel00aCharles aPolitique-fiction françaisexPériodiques2rameau aSatire politiquexPériodiques2rameau a070 1aHoudaillebFrédéric4651 1aChabertbAlexandre4651 3aFRbAbesc20130412gAFNOR 3aFRbISSNc20120315 a074 uhttp://www.la-tengo.com/index.php?post/2013/03/18/Nouveaut%C3%A9-Charles-n%C2%B054 zContenu : sommaire des n°s depuis le n°1.1 bL'année en courscParisd27 Rez-de-chauséeeP 8° 7205 27 RDC1 bno. 1 (pri-2012)-....cParisdMagasins/AnnexeeP 8° 7205 aZPAY aDEW 324 aGEO RA4.06 France 0100983nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200002500160207001500185210003000200326001700230606004600247606002900293607002500322856005400347856010200401955006900503955006300572992002200635992001200657040037002000007124820130319051156.01 a1240-0068 aFNSP326721 a0000071248 a19900101a19929999 ba0 afre aFR ar aaca 00aCharlie hebdo (1992) 1aN.1(1992)- aPariscKalachnikofd1992- aHebdomadaire aSatire politique françaisexPériodiques aActualitéxPériodiques aFrancexPériodiques4 uhttp://www.multimania.com/hebdo/charlie/hebdo.htm zContenu : sélection d'articles en texte intégral du 19 nov. 1997 au 17 mars 1999 + caricatures.1 bL'année en courscParisd27, Salle Rez-de-chausséeeP F° 05141 bno. 1 (jul-1992) -....cParisdMagasins/AnnexeeP F° 0514 aGEO RA4.06 France aDEW 05000854nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004100163210005700204326001500261606003800276712003800314801001300352856003900365856007500404955006400479972000900543992001200552058346805000048865320140110125210.01 a1529-0816 a0000488653 a a20009999k fre ba0 aeng aUS a 0  ar aaj z 0 10aChicago journal of international law aChicago, ILcUniversity of Chicago Law Schoold2000- aSemestriel aDroit internationalxPériodiques02aUniversity of ChicagobLaw School 0aFRbFNSP4 uhttp://cjil.uchicago.edu/contents/ zsommaires et résumés des articles depuis le vol.1, n°1, Spring 20001 bvol.1 no.1 (2000) -....cParisdMagasins/AnnexeeP 8° 6658 aZSAB aDEW 34101266cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101001300142102000700155105001800162106000600180110001600186200001800202210004900220326001600269421003400285421004600319440003900365517002800404607002400432710005200456801003000508801002300538801003000561802000700591856007800598856007600676955008300752992002100835992001200856039468216000114945320130319051158.01 a0341-6631 accn0341-6631 aissn03416631 a0001149453 a19840421b19722008k y0frey0103 ba0 ageraeng aDE ay  ar aazu uu 10aChina aktuell aHamburgcInstitut für Asienkunded1972-2008 aTrimestriel 0tChina monthly datax0943-7533 0tChina aktuell. Data supplementx1867-8904 1tJournal of current chinese affairs10aChina aktuell (Hamburg) aChinexPériodiques02aInstitut für Asienkundec(Hambourg, Allemagne) 3aFRbAbesc20090703gAFNOR 3aFRbISSNc20090602 3aFRbAbesc20080410gAFNOR a064 uhttp://www.giga-hamburg.de/index.php?file=z_cha.html&folder=publikationen zContenu : sommaires depuis 2006, beaucoup d'articles en texte intégral1 bvol. 36 no. 1 (2007) -vol. 37 no. 4 (2008)cParisdMagasins/AnnexeeP 8° 7043 aGEO RI3.01 Chine aDEW 95101177nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210007600176326001800252430003300270607002400303710005500327856004700382856008200429856010800511856010800619955007000727972000900797992004500806992001200851040030008000002590320130319051159.01 a0920-203X aFNSP169096 a0000025903 a19910227a19869999 ba0 aeng aNL aaja 10aChina information aLeidencDocumentation and Research Centre for Contemporary Chinad1986- a3 n°s par an 1aChina informatie (0577-8832) aChinexPériodiques02aDocumentatiecentrum voor het Huidige China (Leyde)4 uhttp://www.chinainformation.leidenuniv.nl/ zContenu : sommaires depuis (1995) vol.10:n°1. - Abstracts du dernier numéro4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 4 no. 1 (ete-1989) -....cParisdMagasins/AnnexeeP 4° 5977 aZSAB aGEO RI3.03 Chine (République populaire) aDEW 95101378nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004900139210004700188326001500235430005400250452006000304530004500364607002400409607002500433710004200458856009000500856010800590856012800698856010800826955006400934972000900998992002101007992001201028036678341000017015420140108125326.01 a1324-9347 aFNSP643725 a19900101a19959999 ba0 aeng aAU aaja 14aThe China journalfContemporary China Centre aCanberracContemporary China Centred1995- aSemestriel 1aAustralian journal of Chinese affairs,x0156-7365 1tThe China journal (Canberra, A.C.T. Online),x1835-8535 aChina journal‎bCanberra, A.C.T. Print aChinexPériodiques aTaiwanxPériodiques02aContemporary China Centrec(Canberra)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/13249347.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=poh&jid=U7C&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 34 (jul-1995) -....cParisdMagasins/AnnexeeP 8° 5105 aZSAB aGEO RI3.01 Chine aDEW 95101366cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200002300180210007100203300013300274326001600407451005000423607004600473712007600519712007100595801003000666801002300696801003000719802000700749856005000756856007000806955005900876992004500935992001200980131275755000116274020130319051159.01 a2070-3449 aissn19964617 a0001162740 a20090218a19959999m y0frey0103 ba0 aeng aHK ay 0  ar aaha 0 10aChina perspectives aHong KongcFrench Centre for Research on Contemporary Chinad1995- aLa numérotation en couverture est celle de l'année en cours; la numérotation en continuité figure en deuxième de couverture aTrimestriel 1tPerspectives chinoises (Hong Kong)x1021-9013 aChinexCivilisationxPériodiques2rameau02aCentre d'études français sur la Chine contemporainec(Hong-Kong)434002aCentre d'études français sur la Chine contemporainec(Hong-Kong) 3aFRbAbesc20091201gAFNOR 3aFRbISSNc20080601 3aFRbAbesc20090218gAFNOR a224 uhttp://www.cefc.com.hk/perspectives.php?cat=2 zSommaires depuis le n°1, 1995 et index des auteurs et des sujets1 bno. 1 (2007) -....cParisdMagasins/AnnexeeP 4° 7242 aGEO RI3.03 Chine (République populaire) aDEW 95101132nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210004900174326001600223530003500239607002400274676000800298710005400306801002100360856009200381856010800473955006600581955006300647972000900710991001800719992004500737992001200782039394654000000410220130319051159.01 a0305-7410 aFNSP104811 a0000004102 a19900101a19609999 ba0 aeng aGB aahu 10aChina quarterly aCambridgecCambridge University Pressd1960- aTrimestriel 0aChina quarterlybLondon. Print aChinexPériodiques a95002aSchool of Oriental and African Studiesc(Londres) 3aFRbCCN0305-74104 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03057410.html?& zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9501 bno. 1 (jan-1960) -....cParisdMagasins/AnnexeeP 8° 1790 aZPAY aexempb201103 aGEO RI3.03 Chine (République populaire) aDEW 95101316nas 2200361 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000500015421000670020430000320027132600320030353000290033560700410036460700410040560700240044671000620047080100210053285600700055385601080062395501190073197200090085099100180085999200450087799200200092299200120094203868814X000006433520130403162413.01 a0009-4455 aFNSP295101 a0000064335 a19900101a19649999 ba0 aeng aIN aaha 10aChina reportea journal of east asian studies aNew DelhicCentre for the Study of Developing Societiesd1964- aArrive avec un an de retard aBimestriel puis Trimestriel10aChina report (New Delhi) aChinexRelationsyIndexPériodiques aIndexRelationsyChinexPériodiques aChinexPériodiques02aCentre for the Study of Developing Societiesc(New Delhi) 3aFRbCCN0009-44554 uhttps://acces-distant.sciences-po.fr/fork?http://chr.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 4 (1969) -vol. 22 no. 4 (1986) ; vol. 30 no. 1 (jan/mar-1994) -....cParisdMagasins/AnnexeeP 8° 3008 aZSAB aexempb201106 aGEO RI3.03 Chine (République populaire) aGEO RI1.13 Inde aDEW 95101146cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035002000069035001500089100004100104101000800145102000700153105001800160106000600178110001600184200001900200207003100219210005200250452003900302510002100341607004400362710004900406801003000455801002300485802000700508856003300515856009000548955008900638992001200727992001200739992002100751112769144000115365920130319051201.01 a1935-5564 aissn19355564 a(OCoLC)78900000 a0001153659 a20070222a20059999k y0frey50 ba0 aeng aUS ay 0  ar aaha 0uu 10aChina security 0aIssue no. 1 (Autumn 2005)- aWashington, DCcWorld Security Instituted2005- 1tChina security (Online)x1935-580710aZhongquo an quan aChinexDéfense nationalexPériodiques02aWorld Security Institutec(Washington, D.C.) 3aFRbAbesc20080514gAFNOR 3aFRbISSNc20070222 a014 uhttp://www.chinasecurity.us/ zContient le sommaire et le texte intégral des n°s depuis le vol. 1 no. 1 (aut-2005)1 bvol. 1 no. 1 (hiv-2005) -vol. 4 no. 4 (aut-2008)cParisdMagasins/AnnexeeP 8° 7053 aDEW 355 aDEW 951 aGEO RI3.01 Chine01228nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210003200174326001500206430004000221607004700261856010100308856010800409856012800517856010800645955007500753972000900828991001800837992004500855992001400900036163988000027308620130319051202.01 a1097-1475 aFNSP942068 a0000273086 a19990520a19979999 ba0 aeng aUS aaga 10aChinese economy aArmonk, N.Y.cSharped1997- aBimestriel 1aChinese economic studiesx0009-4552 aChinexPolitique économiquexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=110901 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=8CR&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 30 no. 1 (jan/fev-1997) -....cParisdMagasins/AnnexeeP 8° 2935 aZPAY aewempb201004 aGEO RI3.03 Chine (République populaire) aDEW 338.901264cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200007900174207002400253210004500277320005800322326002300380326002900403326002600432530005900458606003800517710005100555801003000606801002300636802000700659856004200666856006400708955007000772972000900842992001200851992001500863076801683000103501220130319051202.01 a1540-1650 aissn15401650 a0001035012 a20000630a20029999k y0frey0103 ba0 aeng aGB a 0  aaia 0uu 10aChinese journal of international lawfChinese society of international law 0aVol.1, no 1 (2002)- aBoulder, COcWorld Academy Pressdc2002- aPublié ensuite à Oxford par Oxford University Press aTrimestrielb2010- a3 n°s par anb2006-2009 aSemestrielb2002-200510aChinese journal of international lawb(Boulder, Colo.) aDroit internationalxPériodiques02aChinese Society of International Lawc(Pékin) 3aFRbAbesc20060710gAFNOR 3aFRbISSNc20000630 a024 uhttp://chinesejil.oxfordjournals.org/ zContient le sommaire des n°s depuis le vol.1, n°1 de 20021 bvol. 4 no. 1 (jun-2005) -....cParisdMagasins/AnnexeeP 8° 6916 aZSAB aDEW 341 aGEO R13.0101776cas0 2200445 450 001001000000002001100010005001700021011001400038035001700052035001700069035002500086035001500111100004100126101000800167102000700175106000600182110001600188200002800204207025700232210002900489215001000518308004900528326001500577421009900592421004100691430004500732440004800777517003700825530003700862531002600899606003500925710006100960801003001021801002301051801002901074802000701103856014501110955005501255991002001310038590522000108416020130319051204.0 a1153-9402 accn1153-9402 aissn11539402 aFRBNF327413920000003 a0001084160 a19910321b19091971uuuy1frey0103 ba0 afre aFR ar aafu uu 13aLe Christianisme social 0a22e année, n°1 (1909, 15 janv.)-27e année, n°6 (1914, juin)an.s., [1re année] (1920)-10e année (1929)an.s., 1re année (1930)-11e année, n°1 (1940, janv./mars)an.s., 54e année, n°1 (1946, janv./mars)-80e année, n°11/12 (1971, nov./déc.) aParisc[s.n.]d1909-1971 d17 cm aParution suspendue de mars 1940 à mars 1946 aBimestriel |tBulletin de l'Association protestante pour l'étude pratique des questions socialesx1153-9437 |tL'Avant-garde (Marseille)x1153-9461 1tRevue du christianisme socialx1154-0486 1tParole et société (Strasbourg)x0223-568413aLa Revue du christianisme social13aLe Christianisme socialb(Paris) 0aChrist. soc.b(Paris) aReligionxPériodiques2rameau02aMouvement français du christianisme socialcFrance4070 3aFRbAbesc20060630gAFNOR 3aFRbISSNc20030523 3aFRbBnFc20060327gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb327413927/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1909-1938)1 b(1897) -(1971)cParisdMagasins/AnnexeeP 8° 0163 aPériobTP01 P801436nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200010300154210006000257326001200317430007300329517004600402530005700448601004000505606003800545606004000583606003600623710004600659856006600705856013200771955010900903972000901012991002001021992002101041992001201062039718336000001395020130319051204.01 a0761-9359 aFNSP137329 a0000013950 a19901002a19849999 ba0 afre aFR aafa 13aLa Chroniqueele mensuel d'Amnesty international FrancefAmnesty international, Section française aPariscAmnesty international, Section françaised1984- aMensuel 1aChronique d'informations internationales (Ed. française),x0339-987713aChronique d'Amnesty international (Paris)10aChroniquebAmnesty International. Section française02aAmnesty internationalxPériodiques aViolence policièrexPériodiques aRépression politiquexPériodiques aDroits de l'hommexPériodiques02aAmnesty internationalbSection française4 uhttp://www.amnesty.fr/search/apachesolr_search/la%20chronique zContenu : sommaire du dernier numéro, sélection d'articles en texte intégral. Rapports et diverses informations depuis 1996.1 bno. 95 (jan-1984) -no. 128 (oct-1986) ; n. s. no. 1 (nov-1986) -....cParisdMagasins/AnnexeeP 4° 4261 aZCAD aPériobTP07 P4 aGEO RQ Universel aDEW 32301259cas0 2200373 450 00100100000000200110001000500170002101100140003803500170005203500210006903500150009010000410010510100080014610200070015410500180016111000160017920000440019521000550023932600110029443000740030553000560037960600360043560600370047171000290050880100300053780100230056780200070059085600520059785600700064995501100071999100180082999200210084799200170086812344697X000121626320130319051204.0 a1994-0955 aissn19940955 a(OCoLC)473629874 a0001216263 a20080423a19979999uuuy0frey50 ba0 afre aZZ ay  aaku uu 10aChronique des élections parlementaires aLe Grand-SaconnexcUnion interparlementaired1997- aAnnuel 1tChronique des élections et de l'évolution parlementairesx0256-540410aChronique des élections parlementairesb(Imprimé) aElectionsxPériodiques2rameau aParlementsxPériodiques2rameau02aUnion interparlementaire 3aFRbAbesc20101025gAFNOR 3aFRbISSNc20090617 a004 uhttp://www.ipu.org/french/perdcls.htm#Chronicle zContenu : texte intégral du rapport à partir de l'édition 20071 bVol. 30 (1995/1996) -vol. 31 (1997) ; vol. 33 (1999) ; vol 40, (2006)cParisdMagasins/AnnexeeP 8° 3117 aexempb201201 aGEO RQ Universel aDEW 324. 6-900895nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210003200193326001500225430005300240710008900293856009100382856006700473955006400540972000900604992001600613040579212000023848020140114094641.01 a1285-087X aFNSP842028 a0000238480 a19900101a19979999 ba0 afre aFR aaga 10aChronique internationale de l'IRES aNoisy-le-GrandcIRESd1997- aBimestriel 1aChronique internationale (Paris)xISSN 1145-140802aInstitut de recherches économiques et socialesc(Noisy-le-Grand, Seine-Saint-Denis)4 uhttp://www.ires-fr.org/files/publications/chronique%20internationale/chroniqueires.htm zContient : texte intégral des articles depuis le no. 48, 19971 bno. 48 (sep-1997) -....cParisdMagasins/AnnexeeP 4° 5975 aZPAY aDEW 360-36301052nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116200005000123210003500173326001600208430004300224452003200267530002600299532004500325601003200370710004900402830005300451856009900504955010600603972000900709991001800718992001400736040207145000019690420131003160817.01 a1025-8523 aFNSP722484 a19900101a19909999 f 0 afre aUS10aChronique ONUfOrganisation des Nations Unies aNew YorkcNations Uniesd1990- aTrimestriel 1aChronique des Nations Uniesx1013-5235 1tChronique ONU (1990.Online)10aChronique ONUb(1990)10aChronique Organisation des Nations Unies02aNations UniesxPériodiques02aNations UniesbDépartement de l'information a1990-2011 : collection envoyée au CTles en 20134 uhttp://www.un.org/french/pubs/chronique/zContenu : sélection d'articles publiés depuis 19991 bvol. 27 no. 1 (1990) -vol. 48 no 3 (2011)cParisdMagasins/AnnexeeP 4° 3630wManquant : no. 2, 1990 aZGRA aexempb201307 aDEW 341.201150nls 2200253 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281350018001342000075001522100048002273300358002755170042006336060049006758010013007248300010007378560070007478560079008170000769580000076958020130319051204.0 a0000769580 a d20009999k fre 01 0 aeng aUS ay z y  az adr 10aCIAOb[Ressource électronique]eColumbia International Affairs Online aNew YorkcColumbia University Pressd2000?- aAccès à des documents en texte intégral (working papers, actes de colloques, ouvrages, articles de revues, documents institutionnels, études de cas) sur les questions internationales. Mise à jour mensuelle. Possibilité de s'abonner à une liste de diffusion et d'interroger la base à distance pour les abonnés à la bibliothèque de Sciences Po.10aColumbia International Affairs Online aRelations internationalesxBases de données 0aFRbFNSP amf/dm4 uhttps://acces-distant.sciences-po.fr/fork?http://www.ciaonet.org/4 zConsultation : uniquement à partir des postes publics de la Bibliothèque01221nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210006500178326001500243430008800258606004500346606005700391607002600448710006100474801002100535856005300556856012600609955007400735972000900809992002800818992002500846992001200871039379493000001396020130319051204.01 a0304-2685 aFNSP137364 a0000013960 a19900101a19739999 ba0 apor aBR aaju 10aCiência e trópico aRecifecInstituto Joaquim Nabuco de pesquisas sociaisd1973- aSemestriel 1aBoletim do Instituto Joaquim Nabuco de pesquisas sociais (0100-1159) < P 8° 2392 > aSciences socialesyBrésilxPériodiques aSciences socialesyRégions tropicalesxPériodiques aBrésilxPériodiques02aInstituto Joaquim Nabuco de pesquisas sociaisc(Brésil) 3aFRbCCN0304-26854 uhttp://www.fundaj.gov.br/docs/publi/ema-rct.html zAccès aux sommaires depuis le volume 5, n°1, janvier-juin 1977 ; résumés depuis le volume 27, n°1, janvier-juin 19991 bvol. 1 no. 1 (jan/jun-1973) -....cParisdMagasins/AnnexeeP 8° 2392 aZGRA aGEO RD Amérique latine aGEO RD4.11 Argentine aDEW 98001222nas 2200337 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200002500148210012200173326001500295530002500310606003700335606004800372606004200420606005300462712007900515801001300594856008800607856008000695955005900775972000900834992001600843992002500859044817819000038851720130604171534.01 a1316-371X a a19979999k fre ba0 aspa aVE a 0  ar aaj z 0 10aCiencias de gobierno aMaracaibocInstituto Zuliano de Estudios Políticos. Económicos y Sociales y Gobernación del Estado Zulia‎d1996- aSemestriel10aCiencias de gobierno aPolitique publiquexPériodiques aPolitique publiqueyVenezuelaxPériodiques aAdministration publiquexPériodiques aAdministration publiqueyVenezuelaxPériodiques02aInstituto zuliano de estudios politicos, economicos y sociales (Maracaibo) 0aFRbFNSP4 uhttp://www2.scielo.org.ve/scielo.php/script_sci_serial/pid_1316-371x/lng_en/nrm_iso zContenu : accès au texte intégral du vol 9, nos 17 et 18, 2005 via Scielo1 bno. 1 (1997) -....cParisdMagasins/AnnexeeP 4° 6880 aZSAB aDEW 350-354 aGEO RD4.20 Venezuela00923nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004200154210004100196326001600237530001900253607002400272712007100296712004100367856008500408955006800493972000900561991001800570992002100588992001200609039977625000006944820130319051205.01 a1164-5857 aFNSP321375 a0000069448 a19900101a19929999 ba0 afre aFR aaua 10aCipangoecahiers d'études japonaises aPariscPublications Langues'Od1992- aIrrégulier 0aCipangobParis aJaponxPériodiques02aInstitut national des langues et civilisations orientalesc(Paris)02aCentre d'études japonaisesc(Paris)4 uhttp://www.inalco.fr/ina_gabarit_rubrique.php3?pub=1&id_rubrique=1882&cat_rub=611 bno. 1 (1992) -no. 11 (2004)cParisdMagasins/AnnexeeP 8° 5860 aZPAY aexempb201112 aGEO RI3.22 Japon aDEW 95201089cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200004000197210003400237326001200271447003900283447003600322517004100358530002800399710003200427801003000459801002300489802000700512856014500519955005500664991002000719038591537000111285820130319051205.0 a1154-0044 accn1154-0044 aissn11540044 a0001112858 a19911211b18961898uuuy1frey0103 ba0 afre aFR ay  ar aafu uu 10aCirculairehSérie AfMusée social aPariscA. Rousseaud1896-1898 aMensuel 1tMusée social. Série Bx1154-0052 1tMusée social (1899)x1154-006010aCirculaire - Musée social. Série A10aMusée social. Série A02aMusée socialc(Paris)4070 3aFRbAbesc20071002gAFNOR 3aFRbISSNc20030523 a074 uhttp://gallica.bnf.fr/ark:/12148/cb344379817/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1896-1898)1 b(1896) -(1898)cParisdMagasins/AnnexeeP 4° 0629 aPériobTP02 P401072cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157110001600175200004100191210003400232326001200266447003900278447003600317517004100353530002800394712003200422801003000454801002300484802000700507856014500514955005500659991002000714038591545000111285920130319051205.0 a1154-0052 accn1154-0052 aissn11540052 a0001112859 a19911211b18961898uuuy1frey0103 ba0 afre aFR ay  aafu uu 10aCirculairehSérie BfMusée social. aPariscA. Rousseaud1896-1898 aMensuel 1tMusée social. Série Ax1154-0044 1tMusée social (1899)x1154-006010aCirculaire - Musée social. Série B10aMusée social. Série B02aMusée socialc(Paris)4340 3aFRbAbesc20071002gAFNOR 3aFRbISSNc20030523 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34437983x/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1896-1898)1 b(1896) -(1898)cParisdMagasins/AnnexeeP 4° 0630 aPériobTP02 P400970nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001000154210003000164326001600194530002300210606003600233606004200269801002100311856003100332856004000363955013000403957011000533972000900643992001600652036515124000001396520130319051205.01 a0756-3205 aFNSP137371 a0000013965 a19900101b19822007 ba0 afre aFR aayu 00aCité aPariscCitéd1982-[2007] aIrrégulier00aCitébParis. 1982 aScience politiquexPériodiques aParticipation politiquexPériodiques 3aFRbCCN0756-32054 uhttp://www.revuecite.fr.st zContenu : sommaires depuis le n° 11 bno. 2 (1982) ; no.3 (1983) ; no. 13 (1986) - no. 26 (1992) ; no. 27 (1996) -no. 48 (2007)cParisdMagasins/AnnexeeP 4° 52661 bno. 1 (1982) -no. 26 (1992)cParisdMagasins/Annexezcet index se trouve dans le no. 27, 1996 de la revue aZCAD aDEW 320-32101066nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004500163207001700208210002200225326001600247530002600263606003000289606003600319676000800355801001300363856008500376856010800461955007300569955006300642972000900705992001400714048881759000030707820130319051205.01 a1299-5495 a0000307078 a a20009999k fre ba0 afre aFR a 0  ar aah z 0 10aCitésePhilosophie, politique, histoire 1aNo 1 (2000)- aPariscPUFd2000- aTrimestriel10aCitésb(Paris. 2000) aPhilosophiexPériodiques aSciences socialesxPériodiques a001 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-cites.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle Rez-de-chausséeeDEW 0011 bno. 1 (jan-2000) -....cParisdMagasins/AnnexeeP 8° 6521 aZPAY aDEW 10-1401263nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210002800178326002500206326002600231326002900257326002700286326002900313530003100342606004200373606003600415856005700451856006500508856011100573856010800684955006600792972000900858991001800867992001600885036751375000023325420130319051206.01 a1362-1025 aFNSP826733 a0000233254 a19900101a19979999 ba0 aeng aGB aaga 10aCitizenship studies aAbingdoncCarfaxd1997- a8 n°s par anb2011- aBimestrielb2008-2010 a5 n°s par anb2005-2007 aTrimestrielb2002-2004 a3 n°s par anb1997-2001 0aCitizenship studiesbPrint aParticipation politiquexPériodiques aDroits de l'hommexPériodiques4 uhttp://www.tandf.co.uk/journals/carfax/13621025.html zContenu : sommaires depuis le volume 1, no. 1, février 19974 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/openurl?genre=journal&issn=1362-1025 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1997) -....cParisdMagasins/AnnexeeP 8° 6368 aZSAB aexempb201301 aDEW 320-321008653as 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000029001552100028001843260011002126060064002237100052002878560042003398560067003819550055004489720009005039920031005129920016005439920016005590000113681000011368120130319051207.0 a0267-095X aFNSP477748 a0000113681 a19900101b19712005 ba0 aeng aGB aaka 10aCivil service statistics aLondoncHMSOd1971-2005 aAnnuel aFonctionnairesyGrande-BretagnexStatistiquesxPériodiques02aGrande-BretagnebGovernment Statistical Service zContenu : texte intégral du rapport.4 uhttp://www.civilservice.gov.uk/management/statistics/index.asp1 b(1971) -(2002)cParisdMagasins/AnnexeeP 4° 3986 aZPAY aGEO RA4.02 Grande-Bretagne aDEW 350-354 aDEW 310-31901231nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001500154210002400169300002500193326001600218606003200234606004400266856010900310856010800419856012800527856010800655955011500763972000900878991001800887992001200905036839094000026526520131007112030.01 a1369-8249 aFNSP920363 a0000265265 a19990201a19989999 ba0 aeng aGB aaha 10aCivil wars aIlfordcCassd1998- aN'a pas paru en 2004 aTrimestriel aGuerre civilexPériodiques aRelations internationalesxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713634578db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=poh&jid=IXN&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1998) -vol. 11 no. 1 (2009) ; vol. 15 no. 2 (jun-2013) -....cParisdMagasins/AnnexeeP 8° 6455 aZSAB aexempb201212 aDEW 32700772nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210003600177326001400213607005200227801002100279856003700300856004000337955007400377972000900451992002200460992001200482038689626000001501020130319051208.01 a0009-8167 aFNSP141197 a0000015010 a19900101a18509999 ba0 aita aIT aadu 10aCiviltà cattolica aRomacCiviltà cattolicad1850- aBimensuel aItaliexPolitique et gouvernementxPériodiques 3aFRbCCN0009-81674 uhttp://www.laciviltacattolica.it zContenu : informations sur la revue1 bvol. 99 no. 2342 (jan-1948) -....cParisdMagasins/AnnexeeP 8° 0165 aZSAB aGEO RA6.03 Italie aDEW 94501368nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210005900185326001200244517002000256606003700276606004400313856004300357856017600400856005400576856012000630955013600750957011200886972000900998992002301007992001201030036306347000016329220140115163450.01 a1130-3689 aFNSP625934 a0000163292 a19900101a19909999 ba0 aspa aES aafa 10aClaves de razón pràctica aMadridcProgresa, Promotera General de Revistasd1990- aMensuel10aClaves (Madrid) aVie intellectuellexPériodiques aRelations internationalesxPériodiques4 uhttp://claves.progresa.es/Sumarios.php zContenu : sommaires ; index auteurs ; depuis le numéro 1, 1990 jusqu'au numéro 126, 2002 ; accès au texte intégral depuis le n°82, mai 1998 jusqu'au numéro 126, 20024 uhttp://www.ucm.es/BUCM/compludoc/S/S/11303689.htm zContenu : sommaires depuis le numéro 20, 1992 sur le site de la Biblioteca de la Universidad Complutense de Madrid1 bno. 48 (déc-1994) -no. 72 (mai-1997) ; no. 135 (sep-2003) -....cParisdMagasins/AnnexeeP 4° 6485wManque : no. 136 et 138, 20031 bno. 1 (1990) -no. 180 (2008)cParisdMagasins/annexeeP Index 0773zIndex des auteurs, thèmes et sommaires aZPAY aGEO RA6.02 Espagne aDEW 00101371nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200018400154210010200338210003000440326001500470517004900485517003000534606003900564606004000603710013000643801002100773856005600794856008400850955005800934972000900992991001801001992001401019038114070000001515720130319051209.01 a0758-2412 aFNSP141566 a0000015157 a19900101a19839999 ba0 afre aFR aaja 10aCLESeCahiers lillois d'économie et de sociologiefUnité d'enseignement et de recherche de sciences économiques et sociales de Université des sciences et technologies de Lille aVilleneuve d'AscqcU.E.R. de Sciences économiques et sociales, Université de Lille Id1983-1997 aPariscL'Harmattand1998- aSemestriel10aCahiers lillois d'économie et de sociologie10aClés (Villeneuve-d'Ascq) aSociologie politiquexPériodiques aPolitique économiquexPériodiques02aUniversité des sciences et technologies de LillebUnité d'enseignement et de recherche de sciences économiques et sociales 3aFRbCCN0758-24124 uhttp://www.univ-lille1.fr/clerse/Sitecles/index.htm zContenu : accès aux sommaires et résumés des articles depuis le n° 31, 19981 bno 1 (1983) -....cParisdMagasins/AnnexeeP 8° 4659 aZPAY aexempb201003 aDEW 338.901092nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210005400195326001500249530001900264606003500283606002500318856002800343856011700371856008400488856010800572955005900680972000900739991001800748992001200766003695468000017240220131025132627.01 a1252-7017 aFNSP651564 a0000172402 a19900101a19959999 ba0 afre aFR aaja 00aClioehistoire, femmes et sociétés aToulousecPresses universitaires du Miraild1995- aSemestriel10aCliobToulouse aFemmesxHistoirexPériodiques aFemmesxPériodiques4 uhttp://clio.revues.org/ zContenu : sommaires et résumés depuis le n°1, 1995 et sélection d'articles en texte intégral, index auteurs4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-clio.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1995) -....cParisdMagasins/AnnexeeP 8° 6187 aZPAY aexempb201212 aDEW 30101298nls 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000041001502100079001912300005002703000151002753260016004263300131004423360056005733370027006294520025006566060036006817100116007178010013008338560048008468560047008949550005009419920014009460000505658000050565820130319051210.0 a0000505658 a a19959999k fre 01 ba0 afre aFR ar aay z  adr 10aCNRS Infob[Ressource électronique] aPariscCNRS, Délegation à l'information scientifique et techniqued1995- a aCommuniqués en texte intégral au format html de janv. 1995 au n°397, octobre-novembre 2001 ; puis au format pdf depuis le n°381, février 2000 airrégulier aLe département SHS (sciences de l'homme et de la société) correspond plus particulièrement aux thématiques de Sciences Po aDonnées textuelles uniquement accessibles en ligne aFichiers HTML puis PDF 1tCNRS Infox0750-7550 aRechercheyFrancexPériodiques02aCentre national de la recherche scientifiquec(France)bDélégation à l'information scientifique et technique 0aFRbFNSP4 uhttp://www.cnrs.fr/Cnrspresse/cnrsinfo.html4 uhttp://www.cnrs.fr/cw/fr/pres/infopres.htm1 r aDEW 001.401198nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002100163210003000184326002300214326002900237606003200266606004400298801001300342856010100355856010800456856010900564856010800673955007000781972000900851992001200860064130568000041495120130319051211.01 a1468-2745 a0000414951 a a20009999k fre ba0 aeng aGB a 0  ar aah z 0 10aCold war history aIlfordcFrank Cassd2000- aTrimestrielb2005- a3 n°s par anb2000-2004 aGuerre froidexPériodiques aRelations internationalesxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=108494 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713634851db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (aou-2000) -....cParisdMagasins/AnnexeeP 8° 6587 aZCAD aDEW 32701673nas 2200349 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001391100016001452000119001612070070002802100072003503000236004223050088006586060031007466060046007777020042008237120040008658300057009058560145009629550077011079570096011849720009012809920012012899920022013010000105724000010572420130422115852.0 a1762-4096 aFNSP449462 a0000105724 a19900101b18241949 ba0 afre aFR ar aafa 10aCollection complète des lois, décrets, ordonnances, réglements, avis du Conseil d'Etat ...fpar J. B. Duvergier 1aT. 1 (1824)-t. 108 (1908) ; Nouv. sér., t. 9 (1909)-t. 49 (1949) aPariscGuyot et Scribe,c[puis] L. Larose,c[puis] Sireyd1824-1949 aReprend les lois depuis 1788 ; les vol. 2 à 16, numérotés "ans 2 à 14" correspondent à 1794/1805 .-1ère éd. : vol. 1 à 24 couvrant les années 1788 à 1824, publiée en 1824, et continuée par un vol. annuel de 1825 à 1949 aAbsorbe en 1919 le fascicule annexe intitulé : "Législation de la guerre de 1914" aLoisyFrancexPériodiques aDroityFrancexLégislationxPériodiques 1aDuvergierbJean-Baptistef(1792-1877)02aFrancebConseil d'Etatc(1799-....) aces index se trouvaient dans la Salle de référence4 uhttp://gallica.bnf.fr/ark:/12148/cb375780597/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1811-1938)1 b(1788)-(1949)cParisdMagasins/AnnexeeP 8°0379wManquants : 1938, 19411 b1788-1830 (en 2 vols), 1831-1889 (en 4 vols), 1890-1899cParisdMagasins/AnnexeeP Index 88 aZGRA aDEW 348 aGEO RA4.06 France01441cas0 2200325 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119105001800126106000600144110001600150200008700166210002900253301004200282440005800324517009500382530008700477607006000564607005600624676000800680710004100688801003000729856032700759945001401086991001501100048881945000114128420130319051211.0 accn7208/586X a0001141284 a20000320b18301834k a0frey0103 ba0 afre aDZ ay  ar acu 10aCollection des actes du gouvernement depuis l'occupation jusqu'au 1er octobre 1834 aAlgerc[s.n.]d1830-1834 aDEMANDE DE NUMEROTATION ISSN EN COURS 1tBulletin officiel des actes du gouvernement. Algérie10aCollection des actes du gouvernement depuis l'occupation d'Alger jusqu'au 1er octobre 183400aCollection des actes du gouvernement depuis l'occupation jusqu'au 1er octobre 1834 aAlgériexPolitique et gouvernementz1830-1962xSources aAlgériez1830-1871 (Conquête française)xSources a96501aFrancebMinistère de la guerre4070 3aFRbAbesc20050729gAFNOR4 uhttp://books.google.fr/books?id=C2gPAAAAQAAJ&pg=PP9&dq=%22Collection+des+actes+du+gouvernement+depuis+l'occupation+jusqu'au+1er+octobre+1834%22&hl=fr&ei=XsKzTs6zMsGE8gPn_7DwBA&sa=X&oi=book_result&ct=result&resnum=1&ved=0CDAQ6AEwAA#v=onepage&q&f=falsezAccès libre au texte intégral. Document numérisé sur Google Livres b8*005.736 aPériobTZ01101nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123110001600141200009700157210004600254326001100300606006200311606004300373676000800416710006000424801001300484856007600497856005600573955005300629972000900682991001800691992002200709992001600731992001600747040402126000000427220140110154450.01 a1263-0322 aFNSP105243 a19900209a19909999k a fre ba0 afre aFR a z 0  aak 0 14aLes collectivités locales en chiffresfDirection générale des collectivité locales, DGCL aPariscLa Documentation françaised1990- aAnnuel aAdministration localeyFrancexStatistiquesxPériodiques aFinances localesyFrancexPériodiques a35102aFrancebDirection générale des collectivités locales 0aFRbFNSP4 uhttp://www.collectivites-locales.gouv.fr/collectivites-locales-chiffres4 zAccés au texte intégral en format pdf depuis 20011 b(1989) -....cParisdMagasins/AnnexeeP 8° 5764 aZGRA aexempb201202 aGEO RA4.06 France aDEW 350-354 aDEW 310-31900928nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000078001502100043002282300024002713260005002956060048003006060051003488010013003998560072004128560108004849550005005929920016005979920025006130000977511000097751120130319051212.0 a0000977511 a a20049999k fre 01 ba0 afre aFR ar aaz z  adr 10aCollectivités territoriales intercommunalitéb[Ressource électronique] aPariscLexisNexis Jurisclasseurc2004- aRevue électronique a aAdministration localeyFrancexPériodiques aAdministration communaleyFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aDEW 350-354 aGEO RA4.06 France 0101030nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000025001552100040001803260015002204300056002356060042002916060047003336070046003808560051004268560041004779550167005189720009006859920022006949920012007160000014932000001493220130319051212.01 a1124-1365 aFNSP141030 a0000014932 a19901016b19849999 ba0 aita aIT aaha 00aCollegamenti, Wobbly aMilanocCollegamenti, Wobblyd1984- aSemestriel 1aCollegamenti per l'organizzazione diretta di classe aExtrême gaucheyItaliexPériodiques aMouvement libertaireyItaliexPériodiques aItaliexConditions socialesxPériodiques4 uhttp://www.mercatiesplosivi.com/CW/default.htm zSommaires depuis le n° 1, mars 19771 bno. 13 (pri-1984) -no. 33 (1994) ; n.s. no. 1 (1995) -no. 10/11 (2000/2001) ; n.s. no. 1 (jan/jun-2002) -no. 13 (jan/jun-2008)cParisdMagasins/AnnexeeP 4° 5751 aZPAY aGEO RA6.03 Italie aDEW 94501108nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200009700163210003700260326001600297510003800313530002400351601004400375601003600419606003800455710004200493801001300535856002900548856010600577955006400683972000900747992001400756058475540000053982120130319051212.01 a1371-0346 a0000539821 a a19959999k fre ba0 amul aBE a 0  ar aah z 0 10aCollegiumeNews of College of Europed= Nouvelles du Collège de l'EuropefCollège d'Europe aBruggecCollege of Europed1995- aTrimestriel10aNouvelles du Collège de l'Europe10aCollegiumb(Brugge)02aCommunautés européennesxPériodiques02aUnion européennexPériodiques aDroit internationalxPériodiques02aCollège d'Europec(Bruges, Belgique) 0aFRbFNSP4 uhttp://www.coleurope.eu/4 zcontenu : sommaire des numéros depuis le n° 9, 1998, puis texte intégral à partir du n° 21, 20011 bno. 23 (mar-2002) -....cParisdMagasins/AnnexeeP 8° 6705 aZGRA aDEW 341.201004nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004200154210002700196326002200223430004200245606005000287606003800337710006800375801002100443856003600464856008500500955006600585972000900651991001800660992001200678038690918000001540420140110125516.01 a0010-1931 aFNSP142077 a0000015404 a19900101a19649999 ba0 aeng aUS aaia 10aColumbia journal of transnational law aNew YorkcCJTLAd1964- aTrois fois par an 1aInternational law bulletinx0734-3272 aDroit international économiquexPériodiques aDroit internationalxPériodiques02aColumbia Journal of Transnational Law Associationc(Etats-Unis) 3aFRbCCN0010-19314 uhttp://www.columbia.edu/cu/jtl/ zContenu : accès aux sommaires et résumés depuis le volume 42, numéro 1, 20041 bvol. 6 no. 1 (1967) -....cParisdMagasins/AnnexeeP 8° 2627 aZCAD aexempb201103 aDEW 34101004nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004300154210006000197326001600257440004100273606003000314710006500344801002100409856010000430856009000530955009000620992001600710036350052000001447420130319051213.01 a0022-5428 aFNSP139708 a0000014474 a19900101b19651996 ba0 aeng aUS aahu 14aThe Columbia journal of world business aNew YorkcColumbia journal of world businessd1965-1996 aTrimestriel 1aJournal of world businessx1090-9516 aEntreprisesxPériodiques02aColumbia Universityc(New York)bGraduate School of Business 3aFRbCCN0022-54284 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/00225428 zContenu : accès aux sommaires et aux résumés du volume 28, 1993 au volume 31, 19961 bvol. 1 no. 1 (aut-1965) -vol. 31 no. 4 (hiv-1996)cParisdMagasins/annexeeP 4° 2178 aDEW 650-65801058nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210002500185326001500210517000800225606003800233606003000271710006700301801002100368856004400389856009200433856003300525856008200558955007100640972000900711992001200720038690926000001447620130319051213.01 a0010-194X aFNSP139715 a0000014476 a19900101a19629999 ba0 aeng aUS aagu 10aColumbia journalism review aNew YorkcCJRd1962- aBimestriel10aCJR aMédiasyEtats-UnisxPériodiques aJournalismexPériodiques02aColumbia Universityc(New York)bGraduate School of Journalism 3aFRbCCN0010-194X4 uhttp://backissues.cjrarchives.org/year/ zContenu : accès libre au texte intégral de july august 1991 à november december 20014 uhttp://www.cjr.org/magazine/ zContenu : accès libre au texte intégral depuis le numéro de Jan./Feb. 20061 bvol. 9 no. 4 (1970/1971) -....cParisdMagasins/AnnexeeP 4° 3104 aZCAD aDEW 07001328nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006000154210004100214326001200255606003600267710003600303801002100339856009000360856010800450856012800558856010800686955014600794972000900940991001800949992002300967992001200990038690942000001447720130319051213.01 a0010-1958 aFNSP139719 a0000014477 a19900101a19019999 ba0 aeng aUS aafu 10aColumbia law reviewfColumbia University, School of Law aNew YorkcColumbia law reviewd1901- aMensuel aDroityEtats-UnisxPériodiques02aColumbia Universityc(New York) 3aFRbCCN0010-19584 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00101958.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=CAV&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 25 no. 1 (jan-1925) -vol. 28 no. 8 (dec-1928) ; vol. 63 no. 1 (jan-1963) -vol. 107 no. 8 (dec- 2007)cParisdMagasins/AnnexeeP 8° 1988 aZPAY aexempb201002 aGEO RC2 Etats-Unis aDEW 34901072nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002200139210005600161326001200217451006100229530004500290607004700335607005100382710005100433856005800484856011300542955007000655972000900725992002000734992001600754039134172000007208320131217115508.01 a0185-0601 aFNSP330662 a19900101a19519999 ba0 aspa aMX aafa 10aComercio exterior aMéxicocBanco nacional de comercio exteriord1951- aMensuel 1aComercio exterior de México (Ed. française)x0185-065212aComercio exteriorbEd. español. Impresa aMexiquexCommerce extérieurxPériodiques aMexiquexConditions économiquesxPériodiques02aBanco nacional de comercio exteriorc(Mexique)4 uhttp://revistas.bancomext.gob.mx/rce/sp/index_rev.jsp zContient sommaires, résumés et sélection d'articles en texte intégral depuis vol. 50, n°1, janvier 20001 bvol. 33 no. 1(jan-1983) -....cParisdMagasins/AnnexeeP 4° 1536 aZGRA aGEO RD1 Mexique aDEW 380-38201271cas0 2200325 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109106000600127110001600133200015600149207001000305210014100315301004300456326001800499430003800517606004200555712006000597801003000657856010400687856005900791955005200850972000900902992002200911992001200933157941213000122493120130319051214.0 a0001224931 a20120125a20119999k z0frey50 ba0 afre aFR ay 0  ar aakaz 0 a010aCommémorations nationales/fMinistère de la culture, Direction générale des patrimoines, Archives de France, Mission aux Commémorations nationales 1a2012- aPariscMinistère de la culture, Direction générale des patrimoines, Archives de France, Mission aux Commémorations nationalesd2011- aDemande de numérotation ISSN en cours aAnnuelb2012- 1tCélébrations (Paris)x0767-6964 aCommémorationsyFrancexPériodiques01aFrancebDélégation aux célébrations nationales4340 3aFRbAbesc20120126gAFNOR4 uhttp://www.archivesdefrance.culture.gouv.fr/action-culturelle/celebrations-nationales/recueil-2012/4 zContenu : texte intégral du dernier recueil en ligne.1 b(2011)-....cParisdMagasins/AnnexeeP 8° 5805 aZGRA aGEO RA4.06 France aDEW 00100891nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210002700181326001600208606003700224607004500261676000800306801002100314856003100335856006500366955006700431955001500498972000900513992002200522992001200544992000900556039284158000000415520130319051215.01 a0180-8214 aFNSP104984 a0000004155 a19900101a19789999 ba0 afre aFR aahu 10aCommentaire (Julliard) aPariscJulliardd1978- aTrimestriel aVie intellectuellexPériodiques aFrancexVie intellectuellexPériodiques a001 3aFRbCCN0180-82144 uhttp://www.commentaire.fr/ zContenu : sommaires depuis le volume 1, n°1, printemps 19781 bno. 1 (1978) -....cParisd27, Salle Rez-de-chausséeeDEW 0011 bP 8° 4030 aZCAD aGEO RA4.06 France aDEW 001 aPBUL01068nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210004800180326001200228430004300240606002400283606003600307710003000343801002100373856003900394856007400433955007100507955011600578972000900694992002300703992001600726038691167000001450720130319051215.01 a0010-2601 aFNSP139771 a0000014507 a19900101a19459999 ba0 aeng aUS aafu 10aCommentary (New York) aNew YorkcAmerican Jewish Committee.d1945- aMensuel 1aContemporary Jewish record (0363-6909) aJuifsxPériodiques aJuifsyEtats-UnisxPériodiques02aAmerican Jewish Committee 3aFRbCCN0010-26014 uhttp://www.commentarymagazine.com/ zContenu : sommaires depuis 1945 et texte intégral du dernier numéro1 bvol. 36 no. 1 (jul-1963) -....cParisdMagasins/AnnexeeP 4° 20201 bvol. 3 no. 3 (mar-1947) ; vol. 5 no. 1 (jan-1948) -vol. 35 no. 6 (jun-1963)cParisdMagasins/AnnexeeP 8° 0229 aZSAB aGEO RC2 Etats-Unis aDEW 305-30601314cas0 2200409 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147105001800154106000600172110001600178200005200194207001900246210002800265225002800293300008600321326001100407410003600418606004900454606003800503710007800541801003000619801002300649802000700672856007300679856004200752955006000794972000900854992002500863992001600888079005926000082296020130412151406.01 a1767-459X a080061656 aissn1767459X a0000822960 a20040616a20042010m z0frey0103 ba0 afre aFR a 0  ar aaka i 0 13aLe commerce en FrancefINSEE, Division Commerce 0a2003/2004-2010 aPariscINSEEd2004-201000aRéférencesx1639-4968 a2010, dernière édition papier, à partir de 2011 en version en ligne uniquement aAnnuel 1tRéférences - INSEEx1639-4968 aCommerceyFrancexStatistiquesxPériodiques aEntreprisesyFrancexPériodiques02aInstitut national de la statistique et des études économiquesc(France) 3aFRbAbesc20050513gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.insee.fr/fr/publications-et-services/collection.asp?id=134 zAccés au texte intégral depuis 20071 b(2004/2005) -(2010)cParisdMagasins/AnnexeeP 8° 6822 aZPAY aGEO RA4.06 France 01 aDEW 380-38201148nls 2200349 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000079001502070010002292100024002392250027002632300028002903000086003183260011004044100035004156060049004506060038004996760011005377100078005488010013006268560113006399550005007529920025007579920016007820001239092000123909220130517154912.0 a0001239092 a a20079999k fre 01 ba0 afre aFR ar aak z  adr 13aLe commerce en Franceb[Ressource électronique]fINSEE, Division Commerce 1a2007- aPariscINSEEd2007-20aInsee références web aRessource électronique a2010, dernière édition papier, à partir de 2011 en version en ligne uniquement aAnnuel 1tINSEE- Référencesx1639-4968 aCommerceyFrancexStatistiquesxPériodiques aEntreprisesyFrancexPériodiques a337.4402aInstitut national de la statistique et des études économiquesc(France) 0aFRbFNSP4 uhttp://www.insee.fr/fr/publications-et-services/collection.asp?id=13ztexte intégral du rapport depuis 20071 r aGEO RA4.06 France 01 aDEW 380-38201123cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200004600179210002200225517010900247517005200356530004600408531002500454712004800479801003000527802000700557856015600564955007200720991001700792038027658000107574820130319051216.0 a1052-1917 accn1052-1917 zccn7117/2548 a0001075748 a19880525b18801883 0frey0103 ba0 aeng aUS ar aau 10aCommercial relations of the United States aWashingtoncG.P.O10aReports from the consuls of the United States on the commerce, manufactures, of their consular districts10aConsular reports on commerce, manufactures, etc00aCommercial relations of the United States 0aCommer. relat. U. S.01aEtats-UnisbBureau of Foreign Commerce4340 3aFRbAbesc20070320gAFNOR a014 uhttp://archive.org/stream/commercialrelat03unkngoog#page/n6/mode/2upzAccès libre au texte intégral. 1894-1895 vol. 2 numérisé sur Internet Archive1 b(1884) -(1885) ; (1894) -(1895)cParisdMagasins/AnnexeeCOL8°0721 aPériobTP0101437nas 2200373 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000290015421000280018332600160021160600340022767600100026171000590027171100400033080100210037085600640039185600670045585601260052285601080064895500690075695500700082595700720089597200090096799100180097699200570099499200120105103910950X000000415820130319051216.01 a0165-0750 aFNSP104988 a0000004158 a19900101a19639999 ba0 aeng aNL aahu 10aCommon market law review aLa HayecNijhoffd1963- aTrimestriel aDroit européenxPériodiques a341.8 aBritish Institute of International and Comparative Law aEuropa instituutc(Leyde, Pays-Bas) 3aFRbCCN0165-07504 uhttp://www.kluwerlawonline.com/productinfo.php?pubcode=COLA zContenu : sommaires et résumés depuis le vol. 33, n°5, 19964 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=N0O&site=bsi-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 341.81 bvol. 1 no. 1 (jun-1963) -....cParisdMagasins/AnnexeeP 8° 20641 bvol. 1 (1963) -vol. 40 (2003)cParisdMagasins/AnnexeeP Index 0863 aZPAY aexempb201103 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 34101295nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004000154207002900194210002400223326002300247326002800270430006200298517004200360607005800402856004200460856006700502856010900569856010800678955007100786972000900857991001800866992004900884992001200933037426494000024749720130319051216.01 a1466-2043 aFNSP868348 a0000247497 a19900101a19989999 ba0 aeng aGB aaia 10aCommonwealth & comparative politics 1aVol. 36 no.1 (mar-1998)- aLondoncCassd1998- aTrimestrielb2007- a3 nos par anb1998-2006 1aJournal of Commonwealth & comparative politicsx0306-363110aCommonwealth and comparative politics aCommonwealthxPolitique et gouvernementxPériodiques4 uhttp://www.frankcass.com/jnls/ccp.htm zContenu : sommaires et résumés depuis le vol. 36, n°1, 19974 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713720447db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 36 no. 1 (mar-1998) -....cParisdMagasins/AnnexeeP 8° 2017 aZSAB aexempb201302 aGEO RP Autres groupes de pays ou de régions aDEW 90901401nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200010200139210009500241326002200336326002800358430004800386452011200434517006200546530008600608606003400694606002600728710008900754856010200843955008100945991001801026992001901044992001201063036394084000005755520130912114555.01 a1189-3788 aFNSP267329 a19900101a19919999 ba0 afre aCA aaja 10aCommunicationerevue québécoise des recherches et des pratiques en communication et information aSainte-Foy, QuébeccDépartement d'information et communication, Université Lavald1984- aSemestrielb1990- a3 nos par anb1984-1989 1tCommunication et information‎,x0382-7798 1tCommunication (Université Laval. Département d'information et de communication. En ligne), ‎x1920-734410aCommunication, information, médias, théories, pratiques10aCommunication - Université Laval. Département d'information et de communication aMédiasyCanadaxPériodiques aMédiasxPériodiques02aUniversité Lavalc(Québec, Canada)bDépartement d'information et de documentation4 uhttp://communication.revues.org/zAccès libre au texte intégral depuis le volume 23, no1 , 20041 bvol. 7 no. 1 (1985)-vol. 16 no. 1 (1995)cParisdMagasins/AnnexeeP 8° 4004 aexempb201207 aGEO RC1 Canada aDEW 30200926nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000069001502070047002192100005002662300024002716060056002956060040003518010013003918560082004048560108004869550005005949920012005999920025006110000994382000099438220130319051217.0 a0000994382 a a20049999k fre 01 ba0 afre aFR ar aaz z  adr 10aCommunication, commerce électroniqueb[Ressource électronique] 1aParis :$cLexisNexis Jurisclasseur :$c2004- a aRevue électronique aCommerce électroniquexDroityFrancexPériodiques aCommunicationyFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.com/fr/droit/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aDEW 340 aGEO RA4.06 France 0100970nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210002700184210003100211210002800242326001600270430004000286606003200326606002600358676000800384801002100392856005500413856006200468955006300530972000900593991001800602992001200620039531813000001468120140109115037.01 a0336-1500 aFNSP140417 a0000014681 a19900101a19699999 ba0 afre aFR aaha 10aCommunication et langages aPariscRetzd1969-1999 aPariscA. Colind2000-2008 aVineuilcNecplusd2009- aTrimestriel 1aCahiers de la publicitéx1268-7251 aCommunicationxPériodiques aMédiasxPériodiques a070 3aFRbCCN0336-15004 uhttp://www.armand-colin.com/revues_info.php?idr=18 zSommaires et résumés d'articles depuis le n° 126, 20001 bno. 1 (mar-1969) -....cParisdMagasins/AnnexeeP 8° 2347 aZPAY aexempb200908 aDEW 30201102cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200006600180207003000246210003300276326001600309606003200325606004600357710004400403801003000447801002300477802000700500856004600507856010800553955009100661992001200752093868529000112983420131127153711.01 a1050-3293 aissn10503293 a0001129834 a19900501a19919999k y0frey0103 ba0 aeng aUS ay 0  ar aaha 0uu 10aCommunication theoryfInternational Communication Association 0avol. 1, n. 1 (Feb. 1991)-1 aMalden, MAcBlackwelld1991- aTrimestriel aCommunicationxPériodiques aInformation, Théorie de l'xPériodiques02aInternational Communication Association 3aFRbAbesc20080111gAFNOR 3aFRbISSNc20051021 a024 uhttp://www.blackwell-synergy.com/loi/COMT zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 16 no. 1 (fev-2006) -vol. 22 no. 4 (nov-2012)cParisdMagasins/AnnexeeP 8° 6993 aDEW 30201174nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005600154210007900210326001500289530003200304606004400336606003400380676000800414710007800422801002100500856006300521856005400584955006600638955005900704972000900763991001800772992002200790992001200812013306014000001477020130319051217.01 a0588-8018 aFNSP140772 a0000014770 a19900101a19629999 ba0 afre aFR aaja 10aCommunicationsfÉcole pratique des hautes études, aPariscEd. du SeuilcÉcole pratique des hautes études, 6e sectiond1962- aSemestriel10aCommunicationsbParis. 1962 aSciences socialesyFrancexPériodiques aMédiasyFrancexPériodiques a30002aCentre d'études transdisciplinaires sociologie, anthropologie, politique 3aFRbCCN0103/18804 uhttp://www.ehess.fr/centres/cetsah/Communications/com.html zContenu : sommaires des n°s depuis le n°1, 19611 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3001 bno. 1 (1962) -....cParisdMagasins/AnnexeeP 8° 1922 aZCAD aexempb200910 aGEO RA4.06 France aDEW 30201098nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210009700187326001600284430003500300530004600335606003200381676000800413710007800421856005400499856005100553955005900604957007000663972000900733991001800742992001200760039934241000003303320140109120553.01 a1157-8637 aFNSP195907 a0000033033 a19910529a19919999 ba0 aeng aFR aaha 10aCommunications & stratégies aMontpelliercIDATE, [Institut de l'audiovisuel et des télécommunications en Europe]d1991- aTrimestriel 1aBulletin de l'IDATEx0249-257102aCommunications & stratégiesbMontpellier aCommunicationxPériodiques a07002aInstitut de l'audiovisuel et des télécommunications en Europec(France)4 uhttp://www.idate.fr/fr/publi/revu/pres/index.html zSommaires et résumés depuis le vol. 33, 19991 bno. 1 (1991) -....cParisdMagasins/AnnexeeP 8° 48361 bno. 1 (1991) -no. 32 (1998)cParisdMagasins/AnnexeeP Index 0718 aZPAY aexempb201011 aDEW 30201583nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006700154210004200221210004200263210003600305210004100341210003800382326002300420326002900443530003500472606002600507606003200533710005500565801002100620856010100641856010800742856010700850856010800957955006601065972000901131992003301140992001201173039466698000001467720130319051217.01 a0341-2059 aFNSP140408 a0000014677 a19900101a19769999 ba0 aeng aDE aaha 10aCommunicationsethe European journal of communication research aSankt AugustincH. Richarzd1976-1984 aFrankfurt am MaincP. Langd1985-1988 aMünchencK. G. Saurd1990-1994 aBerlincQuintessenz-Verl.d1995-2001 aaBerlincMouton de Gruyterd2002- aTrimestrielb1996- a3 n°s par anb1976-199510aCommunicationsbSankt Augustin aMédiasxPériodiques aCommunicationxPériodiques02aDeutsche Gesellschaft für Kommunikationsforschung 3aFRbCCN0341-20594 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=111084 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.degruyter.de/journals/communic/384_5346_DEU_h.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 7 no. 1 (1981) -....cParisdMagasins/AnnexeeP 8° 4526 aZPAY aGEO RS Sans aspect régional aDEW 30201247nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210004100195326001600236430004800252606002900300607003400329676001000363856010000373856006000473856005500533856007300588955006800661955007100729972000900800991001800809992003200827992001200859992001400871040101967000009522920130319051218.01 a0967-067X aFNSP416071 a0000095229 a19900101a19939999 ba0 aeng aGB aaha 10aCommunist and post-communist studies aOxfordcButterworth-Heinemannd1993- aTrimestriel 1aStudies in comparative communismx0039-3592 aCommunismexPériodiques aEurope de l'EstxPériodiques a943.74 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/0967067X zContenu : sommaires depuis le Vol. 26, n°1, March 19934 uhttp://www.ingentaconnect.com/content/els/0967067x zContenu : sommaires et résumés depuis le vol. 28, n°1, March 19951 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 943.71 bvol. 26 no. 1 (mar-1993) -....cParisdMagasins/AnnexeeP 8° 2664 aZSAB aexempb201001 aGEO RA2.02 Europe orientale aDEW 947 aDEW 320.501131nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210004100188326001600229606004700245801002100292856003000313856008400343856010100427856010800528955007000636957007200706972000900778991001800787992001200805038691531000001468020130319051218.01 a0010-3802 aFNSP140416 a0000014680 a19900101a19669999 ba0 aeng aGB aaha 10aCommunity development journal aOxoncOxford University Pressd1966- aTrimestriel aDéveloppement communautairexPériodiques 3aFRbCCN0010-38024 uhttp://www.oup.co.uk/cdj/ zContenu : sommaires ; recherche avec Excite depuis le vol. 31, n°1, janv. 19964 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=103040 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1966) -....cParisdMagasins/AnnexeeP 8° 24851 bvol. 1 (1966) -vol. 25 (1990)cParisdMagasins/AnnexeeP Index 0671 aZPAY aexempb200908 aDEW 30700911nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005900163210003700222326001600259607002900275607004300304801001300347856005700360856007600417955006600493972000900559992001200568992002900580078919819000057592120130319051218.01 a1477-5700 a0000575921 a a20039999k fre ba0 aeng aGB a 0  ar aah z 0 10aComparative American studiesean international journal aLondoncSage Publicationsd2003- aTrimestriel aEtats-UnisxPériodiques aEtats-UnisxCivilisationxPériodiques 0aFRbFNSP4 uhttp://www.maney.co.uk/search?fwaction=show&fwid=735 zcontenu : sommaires et résumés des articles depuis le vol.1,n°, 20031 bvol. 1 no. 1 (2003) -....cParisdMagasins/AnnexeeP 8° 6720 aZSAB aDEW 970 aGEO RC Amérique du Nord01050cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157110001600175200003700191210003000228326001500258423005000273606005200323710006800375801003000443801002300473802000700496856004800503856005200551955006400603992001200667992003300679039695204000117039720130319051218.01 a0733-4540 accn0733-4540 aissn07334540 a0001170397 a19820504a19799999k y1frey0103 ba0 aeng aUS a 0  aauu 0uu 10aComparative civilizations review a[Carlisle, PAcs.nd1979- aSemestriel 1tComparative civilizations bulletinx0734-0621 aCivilisationxEtudes comparativesxPériodiques01aInternational Society for the Comparative Study of Civilization 3aFRbAbesc20081202gAFNOR 3aFRbISSNc20051021 a014 uhttp://www.wmich.edu/iscsc/Journal.html#ccr zContenu : sommaires depuis le no. 25 (aut-1991)1 bno. 60 (pri-2009) -....cParisdMagasins/AnnexeeP 8° 7096 aDEW 900 aGEO RS Sans aspect régional01239nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154207003400187210007700221326001600298430002900314607006800343607007000411710004900481801002100530856010200551856010800653955006700761972000900828991001800837992003200855992001400887039983382000001467320130319051218.01 a0888-7233 aFNSP140404 a0000014673 a19900101a19859999 ba0 aeng aUS aaha 10aComparative economic studies 1avol. 27, no. 1 (spring 1985)- aa[Notre Dame, Ind.]cAssociation for Comparative Economic Studiesd1985- aTrimestriel 1aACES bulletinx0360-5930 aEurope de l'EstxPolitique économiquez1989-....xPériodiques aEurope de l'EstxConditions économiquesz1989-....xPériodiques02aAssociation for Comparative Economic Studies 3aFRbCCN0888-72334 uhttps://acces-distant.sciences-po.fr/fork?http://www.palgrave-journals.com/ces/archive/index.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 27 no. 1 (1985) -....cParisdMagasins/AnnexeeP 8° 4537 aZPAY aexempb200910 aGEO RA2.02 Europe orientale aDEW 338.901368nls 2200337 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000053001642070033002172100026002502300005002763000057002813260022003383360056003603370071004166060028004876060031005158010013005468560208005598560214007679920033009819920016010140000802818000080281820130319051218.01 a0305-0068 a0000802818 a a19649999k fre 01 ba0 aeng aGB ar aai z  adr 10aComparative educationb[Ressource électronique] 1aVol. 1, n°1 (October 1954)- aOxfordcCarfaxd1954- a aTexte intégral depuis le vol. 1, n°1, October 1954 aTrois fois par an aDonnées textuelles accessibles uniquement en ligne aTéléchargement de fichiers TIFF, PDF (recommandé) ou PostScript aEducationxPériodiques aEnseignementxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03050068.html?&cookieSet=1zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713410081db=allzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aGEO RS Sans aspect régional aDEW 370-37901231nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210005400187326001600241606002800257606003100285710005200316801002100368856005100389856012100440856009000561856010800651955007000759972000900829991001800838992002100856992001600877038691663000001467420130319051218.01 a0010-4086 aFNSP140405 a0000014674 a19900101a19579999 ba0 aeng aUS aaha 10aComparative education review aChicago, Ill.cUniversity of Chicago Pressd1957- aTrimestriel aEducationxPériodiques aEnseignementxPériodiques02aComparative and International Education Society 3aFRbCCN0010-40864 uhttp://www.journals.uchicago.edu/CER/home.html zContenu : sommaires ; index auteurs et sujets ; depuis le vol. 40, n°1, fév. 1996 ; Index vol. 1 à 42 (1957-1998)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00104086.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 19 no 1 (fev-1975) -....cParisdMagasins/AnnexeeP 8° 3573 aZPAY aexempb200911 aGEO RQ Universel aDEW 370-37901176nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003400163207002900197210004300226326002200269326002900291326002700320326002900347517000800376606003600384676000800420801001300428856010300441856010800544955006700652955007000719972000900789992001600798002124416000067964420131219160802.01 a1472-4790 a0000679644 a a20039999 fre 01 ba0 aeng aGB a 0  ar aai z 0 10aComparative European Politics 1aVol.1, no.1 (Mar. 2003)- aBasingstokecPalgrave Macmilland2003- aBimestrielb2013- a5 n°s par anb2011-2012 aTrimestrielb2005-2010 a3 n°s par anb2003-200410aCEP aScience politiquexPériodiques a320 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=110782 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bvol. 1 no. 1 (mar-2003) -....cParisdMagasins/AnnexeeP 8° 6773 aZCAD aDEW 320-32101559nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210003800188326001200226517000800238606005800246676000800304801002100312856007000333856010800403856010100511856010800612856010800720856010800828955006700936955006901003955007001072972000901142991001801151992001601169038691736000000423920131219161026.01 a0010-4140 aFNSP105204 a0000004239 a19900101a19689999 ba0 aeng aUS aafu 10aComparative political studies aNewbury Park, Calif.cSaged1968- aMensuel10aCPS aScience politiquexMéthode comparativexPériodiques a320 3aFRbCCN0010-41404 uhttps://acces-distant.sciences-po.fr/fork?http://cps.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101612 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bL'année en courscParisdBibliothèque de rechercheeP 8° 27021 bvol. 1 no. 1 (avr-1968) -....cParisdMagasins/AnnexeeP 8° 2702 aZCAD aexempb201103 aDEW 320-32101238nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210004200179326001600221606005300237606005800290676000800348710005900356801002100415856004200436856006200478856009600540856007200636955006700708955007000775972000900845991001800854992001600872038691744000000424220131219161059.01 a0010-4159 aFNSP105207 a0000004242 a19900101a19689999 ba0 aeng aUS aahu 10aComparative politics aNew YorkcComparative politicsd1968- aTrimestriel aInstitutions politiques comparéesxPériodiques aScience politiquexMéthode comparativexPériodiques a32002aCity University of New YorkbPolitical Science Program 3aFRbCCN0010-41594 uhttp://web.gc.cuny.edu/jcp/issues.htm zContenu : sommaires des n°s depuis le vol. 1, n°1, 19684 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/browse/00104159?config=jstor zContenu : texte intégral des articles des vol.31, 1998 à 34, 20011 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bvol. 1 no. 1 (oct-1968) -....cParisdMagasins/AnnexeeP 8° 2600 aZCAD aexempb201202 aDEW 320-32100910nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003200139210004400171326001100215430004900226530003200275606002900307801002100336856010300357856006200460955005900522972000900581991001800590992001200608039150135000000631120130909155357.01 a0195-6310 aFNSP110033 a19900101a19799999 ba0 aeng aUS aaku 10aComparative social research aGreenwich, Conn‎cJAI Press‎d1979- aAnnuel 1aComparative studies in sociology,x0164-124700aComparative social research aSociologiexPériodiques 3aFRbCCN0195-63104 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/bookseries/019563104 zContenu : accès aux sommaires depuis le numéro 19, 20001 bvol. 2 (1979)-....cParisdMagasins/AnnexeeP 8° 4182 aZPAY aexempb201106 aDEW 30100989nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002600163210003300189326001600222437006700238606002900305606003600334801001300370856012800383856010800511955006800619992001200687061047473000052612720131025120452.01 a1569-1322 a0000526127 a a20029999k fre ba0 aeng aNL a 0  ar aah z 0 10aComparative sociology aLeidenaBostoncBrilld2002- aTrimestriel 1tInternational journal of comparative sociologyxISSN 0020-7152 aSociologiexPériodiques aChangement socialxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=K0T&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 3/4 (2001) -....cParisdMagasins/AnnexeeP 8° 6876 aDEW 30101358nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210004000179326001800219606002900237606004400266676000800310801002100318856005400339856006000393856011900453856010800572856010900680856010800789955006800897972000900965991001800974992001600992039097153000001467520140110155352.01 a0149-5933 aFNSP140406 a0000014675 a19900101a19789999 ba0 aeng aUS aaga 10aComparative strategy aNew YorkcTaylor and Francisd1978- a5 n°s par an aStratégiexPériodiques aRelations internationalesxPériodiques a355 3aFRbCCN0149-59334 uhttp://www.ucm.es/BUCM/compludoc/S/S/01495933.htm zContenu : sommaires depuis le vol. 13, n°1, janv. 19944 uhttps://acces-distant.sciences-po.fr/fork?http://www.westlaw.com/signon/default.wl?RS=UKIS1.0&VR=1.0&sp=intiep-000 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713769613db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1/2 (1978) -....cParisdMagasins/AnnexeeP 8° 4144 aZSAB aexempb201104 aDEW 355-35901372nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004700154210004800201326001600249606002700265606002900292710007500321801002100396856004200417856004800459856010100507856010800608856009000716856010800806955006900914972000900983991001800992992001201010038691760000001477520130319051219.01 a0010-4175 aFNSP140777 a0000014775 a19900101a19589999 ba0 aeng aGB aahu 10aComparative studies in society and history aNew YorkcCambridge University Pressd1958- aTrimestriel aHistoirexPériodiques aSociologiexPériodiques02aSociety for the Comparative Study of Society and Historyc(Etats-Unis) 3aFRbCCN0010-41754 uhttp://uk.cambridge.org/journals/css/ zContenu : sommaires depuis le vol. 37, 19954 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=103286 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00104175.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no.1 (oct-1958) -....cParisdMagasins/AnnexeeP 8° 1769 aZSAB aexempb201102 aDEW 30101060nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000051001502100066002012300005002673000055002723260014003273360056003413370017003974520035004146060047004497100120004968010013006168560063006299550005006929920012006979920025007090000505418000050541820130319051220.0 a0000505418 a a20019999k fre 01 ba0 afre aFR ar aae z  adr 10aComplément d'objetb[Ressource électronique] aPariscMinistère de la culture et de la communicationd2001- a aTexte intégral depuis le n° 50 - 15 janvier 2001 abimensuel aDonnées textuelles accessibles uniquement en ligne aFichiers PDF 1tComplément d'objetx1626-2964 aPolitique culturelleyFrancexPériodiques01aFrancebMinistère de la culture et de la communicationbDélégation au développement et à l'action territoriale 0aFRbFNSP4 uhttp://www.culture.fr/culture/actualites/co-ddat/index.htm1 r aDEW 001 aGEO RA4.06 France 0101101nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200007000163207002900233210002600262326001100288530003000299606003000329606002900359801001300388856004200401856016400443955006700607955007800674972000900752992001400761057935645000040506920130319051221.01 a1626-4207 a0000405069 a b20002005k fre ba0 afre aFR a 0  ar aak z 0 10aComprendreerevue annuelle de philosophie et de sciences sociales 1ano 1 (2000) -no 6 (2005) aPariscPUFd2000-2005 aAnnuel00aComprendreb(Paris, 2000) aPhilosophiexPériodiques aSociologiexPériodiques 0aFRbFNSP4 uhttp://www.puf.com/revue.php?revue=HP zContenu : sélection de sommaires depuis le n°1, 2000 ; possibilité de chercher les autres publications aux PUF (articles ou monographies) pour chaque auteur1 bno. 1 (2000) -no. 6 (2005)cParisdMagasins/AnnexeeP 8° 65801 bno. 1 (2000) -no. 6 (2005)cParisdBibliothèque de rechercheeP 8° 6580 aZPAY aDEW 10-1401090nas0 22002891i 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109106000600127110001600133200009100149210002900240301002700269306003700296606006300333607005900396710004200455801003000497856014500527955008200672991001900754991002700773103008691000108115120130319051221.0 a0001081151 a20060601b186019 k a frey0103 ba0 afre aFR a 0  ar aakuzz 0yu 10aCompte définitif des dépenses de l'exercice...fGouvernement général de l'Algérie aParisc[s.n.]d1860-19.. aRétroconversion Cujas aImpr. impériale, puis nationale aFinances publiquesyFrancexColoniesxPériodiques2rameau aFrancexColoniesxAdministrationxPériodiques2rameau02aAlgériebGouvernement général4070 3aFRbAbesc20060601gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb41274569q/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1912-1937)1 b(1866) ; (1867) ; (1869) ; (1874) -(1879)cParisdMagasins/AnnexeeCOL4°0424 aPériobTP01 4 anumer0 (avant gallica)01044nas0 22002651 450 001001000000002001100010005001700021035001500038100004100053101000800094106000600102110001600108200015400124210003500278215001000313301005000323326001100373440007700384606005000461676000800511801003000519856013300549955007500682991002100757114227101000108624220130319051221.0 a0001086242 a20070430c1832 k y0frey0103 ba0 afre ar aa 10aCompte général de l'administration de la justice civileeprésenté...fGarde des Sceaux, Ministre Secrétaire d'Etat au Département de la justice aPariscImprimerie royaled1832 d34 cm aDemande de numérotation ISSN en cours (FNSP) aAnnuel 1tCompte général de l'administration de la justice civile et commerciale aJusticexAdministrationyFrancexPériodiques a340 3aFRbAbesc20070430gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb345304266/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 bvol. 1820 (1832) -vol. 1830 (1832)cParisdMagasins/AnnexeeCOL.F.0063 aPériobTP01 Fol01123nas0 22002291 450 001001000000002001100010005001700021035001500038100004100053101000800094106000600102110001600108200016900124210002900293215001000322301005000332326001100382801003000393856014500423955030400568991002100872114225788000108624120130319051222.0 a0001086241 a20070430c1833 k y0frey0103 ba afre ar aa 10aCompte général de l'administration de la justice civile et commercialeeprésenté...fGarde des Sceaux, Ministre Secrétaire d'Etat au Département de la justice aPariscImprimerie royale d34 cm aDemande de numérotation ISSN en cours (FNSP) aAnnuel 3aFRbAbesc20070430gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb345304266/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1820-1935)1 bvol. 1830 (1833) ; vol. 1831 (1833) ; vol. 1832 (1835) ; vol. 1833 (1835) ; vol. 1835 (1838) ; vol. 1836 (1838) ; vol. 1837 (1841) ; vol. 1838 (1841) ; vol. 1839 (1841) ; vol. 1840 (1842) ; vol. 1841 (1843) ; vol. 1842 (1844) ; vol. 1844 (1846) ; vol. 1845 (1847)cParisdMagasins/AnnexeeCOL.F.0063 aPériobTP01 Fol01151nas0 22002651 450 001001000000002001100010005001700021035001500038100004100053101000800094106000600102110001600108200014600124210003300270215001000303301005000313326001100363430007700374440008200451710004200533801003000575856014500605955011400750991002100864114225338000108623920130319051222.0 a0001086239 a20070430c1856 k y0frey0103 ba0 afre ar aa 10aCompte général de l'administration de la justice civile et commerciale en Franceeprésenté...fGarde des Sceaux, Ministère de la Justice aPariscImprimerie impériale d34 cm aDemande de numérotation ISSN en cours (FNSP) aAnnuel 1tCompte général de l'administration de la justice civile et commerciale 1tCompte général de la justice civile et commerciale en France et en Algérie02aFrancebMinistère de la justice4070 3aFRbAbesc20070430gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb345304266/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1830-1935)1 bvol. 1854 (1856) ; vol. 1860 (1862) ; vol. 1863 (1865) -vol. 1880 (1882)cParisdMagasins/AnnexeeCOL.F°0063 aPériobTP01 Fol01512cas0 2200301 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200007600148210006100224447007700285447010500362517009100467530007600558710004200634801003000676856014500706955015000851955007501001955011301076991002101189039084663000108622220130319051222.0 accn7113/1469 a0001086222 a19911212b182 193 0frey0103 ba0 afre aFR ar aak 10aCompte général de l'administration de la justice criminelle en France aPariscImprimerie impériale (puis nationale)d182?-193? 1tCompte général de l'administration de la justice civile et commerciale 1tCompte général de l'administration de la justice civile et commerciale et de la justice criminelle10aCompte général de l'administration de la justice criminelle en France et en Algérie00aCompte général de l'administration de la justice criminelle en France02aFrancebMinistère de la justice4070 3aFRbAbesc20051021gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb412790415/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1825-1932)1 bvol. 1900 (1902) -vol. 1911 (1913) ; vol. 1913 (1915) ; vol. 1920 (1926) -vol. 1929 (1932) ; vol. 1932 (1934)cParisdMagasins/AnnexeeCOL.F.00641 bvol. 1881 (1883) -vol. 1899 (1901)cParisdMagasins/AnnexeeCOL.F.00641 bvol. 1836 (1838) ; vol. 1837 (1840) ; vol. 1839 (1841) -vol. 1874 (1876)cParisdMagasins/AnnexeeCOL.F.0064 aPériobTP01 Fol01222nas 2200337 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200007700148210005000225225002500275300008600300326001100386430006200397606006000459606005400519710005100573801001300624856008500637856006100722955005500783972000900838992002500847992001200872073593907000047460220130514104646.01 a1635-4664 a b20022005k fre ba0 afre aFR a 0  ar aak z 0 14aLes comptes de l'intercommunalité et des établissements publics locaux aPariscLa Documentation françaised2002-200520aSecteur public local a2005 est la dernière édition en version papier après en version électronique. aAnnuel 1tLes comptes des établissements publics locauxx1624-4095 aFinances publiquesyFrancexComptabilitéxPériodiques aCoopération intercommunaleyFrancexPériodiques02aFrancebDirection de la comptabilité publique 0aFRbFNSP4 uhttp://www.colloc.minefi.gouv.fr/colo_struct_fina_loca/comp_coll/lint_epl_2.html4 zContenu : texte intégral du dernier rapport depuis 20001 b(2000) -(2005)cParisdMagasins/AnnexeeP 4° 6785 aZGRA aGEO RA4.06 France 01 aDEW 33601321cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001700069100004100086101000800127102000700135105001800142106000600160110001600166200004100182210011300223326001600336530005100352606005900403710006600462801003000528801002300558801003000581802000700611856010500618955006900723955006400792972000900856991001800865991001800883992002200901992001200923039874796000088493220131017160955.0 a0996-3979 accn0996-3979 aissn09963979 a19960402c1987 m h0frey0103 ba0 afre aFR ay  ar aakuzi uu 14aLes comptes de la protection sociale a[Paris]c[Direction de la recherche, des études, de l'évaluation et des statistiques]aPariscSESId1987?- aIrrégulier14aLes comptes de la protection sociale‎bParis aSécurité socialeyFrancexStatistiquesxPériodiques02aFrancebMinistère des affaires sociales et de la solidarité 3aFRbAbesc20080325gAFNOR 3aFRbISSNc20060706 3aFRbAbesc20041014gAFNOR a074 uhttp://www.ladocumentationfrancaise.fr/rapports-publicszAccés libre au texte intégral depuis 20011 b(1990/1995) ; (2002) -(2005)cParisdMagasins/AnnexeeP 8° 68361 b(1987) ; (1991) -(1994)cParisdMagasins/AnnexeeCOL4°3935 aZPAY aSAFIGbTC004i aexempb201310 aGEO RA4.06 France a360-36301382nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004100139207004400180210004600224300032900270326002200599326002200621430007300643517007100716606005500787710006000842856006400902955005500966972000901021992002201030992001601052032986815000005127720130313083302.01 a1263-0365 aFNSP249185 a19900101a19879999 ba0 afre aFR aaka 14aLes Comptes de la sécurité sociale 1aDécembre 1986 (prévisions 1986-1987)- aPariscLa Documentation françaised1987- aA partir de décembre 1986, deux rapports paraissent dans l'année : en mai ou en juin, les résultats de l'année précédente et les prévisions pour l'année en cours ; en septembre, les résultats de l'année et les prévisions pour l'année en cours et pour l'année suivante. - Semestriel (1996-). - Annuel (1987-1995) aSemestrielb1996- aAnnuelb1987-1995 1aRapport - Commission des comptes de la sécurité socialex0291-925710aRapport de la Commission des comptes de la sécurité sociale-CCSS aSécurité socialeyFrancexFinancesxPériodiques02aFrancebCommission des comptes de la Sécurité sociale4 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml1 b(1986) -(2007)cParisdMagasins/AnnexeeP 4° 4464 aZPAY aGEO RA4.06 France aDEW 360-36301088nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000029001552100064001843000084002483260011003326060060003436060058004037100051004618560079005128560061005919550060006529720009007129920025007219920016007469920012007620000180270000018027020130319051222.01 a1263-3089 aFNSP672911 a0000180270 a19900101b19959999 ba0 afre aFR aaka 14aLes Comptes des communes aPariscMinistère de l'économie et des financesd1995-2005 a2004 dernière édition en version papier voir ensuite en version électronique aAnnuel aFinances communalesyFrancexStatistiquesxPériodiques aBudgets communauxyFrancexStatistiquesxPériodiques02aFrancebDirection de la comptabilité publique4 uhttp://www.colloc.minefi.gouv.fr/colo_struct_fina_loca/comp_coll/comm.html4 zContenu : texte intégral du dernier rapport depuis 20001 b(1989/1992) -(2004)cParisdMagasins/AnnexeeP 4° 6698 aZGRA aGEO RA4.06 France 01 aDEW 310-319 aDEW 33601304nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000034001552100039001892250053002283000073002813260011003544300159003656060076005246060060006007120051006608560079007118560053007909550064008439720009009079920022009169920012009389920016009500000134639000013463920130319051222.01 a1263-3097 aFNSP542184 a0000134639 a19940823a19949999 ba0 afre aFR aaka 14aLes Comptes des départements aPariscMinistère du budgetd1994-21aSynthèses comptables des collectivités locales a2005 dernière édition papier voir ensuite en version électronique aAnnuel 1aStatistiques des comptes pour l'exercice...les communes, les départements, les régions, les établissements publics locaux (0767-1180) < Coll. 4°2244 > aBudgetyFrancexDépartementsxStatistiquesxPériodiquesxPériodiques aFinances publiquesyFrancexDépartementsxPériodiques02aFrancebDirection de la comptabilité publique4 uhttp://www.colloc.minefi.gouv.fr/colo_struct_fina_loca/comp_coll/depa.html4 zContenu : texte intégral depuis l'édition 20001 b(1989/1990/1991)-(2005)cParisdMagasins/AnnexeeP 4° 6393 aZGRA aGEO RA4.06 France aDEW 336 aDEW 310-31901328nas 2200337 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000050001412100060001912250059002513000073003103260011003834370092003944880073004866060060005596070061006197120051006808560084007318560056008159550057008719720009009289920025009379920016009629920012009780000215767000021576720130319051222.0 aFNSP777949 a0000215767 a19900101a19969999 ba0 afre aFR aaka 10aComptes des établissements publics de santé aPariscMinistère de l'économie et des financesd1996-21aSynthèses comptables du secteur hospitalier et social a2004 dernière édition papier voir ensuite en version électronique aAnnuel 1aStatistiques des comptes pour l'exercice... hôpitaux publics (0762-2961) < P 4°5030 > 1aLes établissements publics sociaux et médicaux-socio < P 4°6683 > aHôpitauxyFrancexFinancesxStatistiquesxPériodiques aFrancexCrédits budgétaires et dépensesxPériodiques02aFrancebDirection de la comptabilité publique4 uhttp://www.colloc.minefi.gouv.fr/colo_struct_fina_loca/comp_etab/comp_etab.html4 zContenu : texte intégral des rapports 2003 et 20041 b(1992/1993-2004)cParisdMagasins/AnnexeeP 4° 6682 aZGRA aGEO RA4.06 France 01 aDEW 310-319 aDEW 33601296nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210003900183225005300222300008400275326001600359430016000375606005500535606005700590712005100647856007900698856005300777955006900830972000900899992002200908992001200930992001600942040408124000014687120130319051222.01 a1263-3100 aFNSP578114 a0000146871 a19950118a19949999 ba0 afre aFR aaka 14aLes Comptes des régions aPariscMinistère du budgetd1994-21aSynthèses comptables des collectivités locales a2005 dernière édition en version papier voir ensuite en version électronique aIrrégulier 1aStatistiques des comptes pour l'exercice... les communes, les départements, les régions, les établissements publics locaux (0767-1180) < Coll. 4°2244 > aFinances publiquesyFrancexRégionsxPériodiques aBudgetyFrancexRégionsxStatistiquesxPériodiques02aFrancebDirection de la comptabilité publique4 uhttp://www.colloc.minefi.gouv.fr/colo_struct_fina_loca/comp_coll/regi.html zContenu : texte intégral depuis l'édition 20001 b(1989/1990/1991/1992)-(2005)cParisdMagasins/annexeeP 4° 6424 aZGRA aGEO RA4.06 France aDEW 336 aDEW 310-31901043nas 2200301 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000064001412100045002053000042002503260011002924300054003036060050003576060053004077100029004608560101004899550056005909550056006469720009007029910018007119920012007290000134312000013431220130516171815.0 aFNSP541521 a0000134312 a19940816a19819999 ba0 afre aFR aaka 10aComptes rendus analytiques - Conférence interparlementaire aGenèvecUnion interparlementaired1981- aPublication en 2 vol. de 1981 à 1983 aAnnuel 1aCompte rendu de la Conférence interparlementaire aCoopération interparlementairexPériodiques aRelations internationalesxSourcesxPériodiques02aUnion interparlementaire4 uhttp://www.ipu.org/strct-f/lstconf.htmzAccés au texte intégral depuis la 86ème session, 19911 b(2002) - (2006)cParisdMagasins/AnnexeeP 4° 69581 b(1981) - (2001)cParisdMagasins/AnnexeeP 8° 5229 aZPAY aexempb201305 aDEW 32801248nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005800154210005200212326002300264326003300287421006000320430008300380606003800463710003800501801002100539856005800560856004500618955008700663955008300750972000900833991001800842992002200860992001600882001254286000001477720130412110113.01 a0989-6988 aFNSP140779 a0000014777 a19900101a19879999 ba0 afre aFR aahu 10aComptes rendus de l'Académie d'agriculture de France aPariscAcadémie d'agriculture de Franced1987- aTrimestrielb2010- a5 à 8 nos par anb1987-2009 1tAnnuaire - Académie d'agriculture de Francex1294-4203 1aComptes rendus des séances de l'Académie d'agriculture de France,x0151-1335 aAgricultureyFrancexPériodiques02aAcadémie d'agriculture de France 3aFRbCCN7103/00504 uhttp://www.inra.fr/Internet/Hebergement/AAF/index.htm zContenu : sommaires depuis le n°4, 19951 bvol. 89 no. 1 (2003) -vol. 98 no. 3 (nov-2012)cParisdMagasins/AnnexeeP 4° 70041 bvol. 73 no. 1 (1987) -vol. 88 no. 8 (2002)cParisdMagasins/AnnexeeP 8° 0337 aZPAY aexempb201201 aGEO RA4.06 France aDEW 338.1-301222nls 2200337 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000055001552100037002103260012002474300073002596060047003326060101003796060073004807100104005538010021006578300060006788560061007388560037007999550005008369720009008419920022008509920012008720000061977000006197720130319051223.01 a0298-511X aFNSP283653 a0000061977 a19900101a19869999 ba0 afre aFR aafb 10aConcurrence, consommation, répression des fraudes aPariscJournaux officielsd1986- aMensuel 1aConcurrence et consommation (Paris, 1984) (0764-5325) < P 4° 1296 > aFraudeyFrancexLégislationxPériodiques aConsommateursxProtectionxDroityFrancexLégislationxPériodiquesxLégislationxPériodiques aConcurrencexDroityFrancexLégislationxPériodiquesxPériodiques02aFrancebDirection générale de la concurrence, de la consommation et de la répression des fraudes 3aFRbCCN0298-511X a< P 4° 1296 > 1955--2007 : collection donnée au CTLes4 uhttp://www.minefi.gouv.fr/DGCCRF/boccrf/index.html?ru=034 zAccès libre au texte intégral.1 r aZPAY aGEO RA4.06 France aDEW 34301376cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118106000600125110001600131200009200147207002400239210007700263320008500340326001600425452004000441517000900481606003700490676000800527710005000535801003000585801002300615802000700638856010200645856010800747955006700855955005900922972000900981992001200990085547026000101138820131021170028.01 a1773-9578 aissn17739578 a20050405a20049999u y0frey0103 ba0 afre aFR ar aahu uu 10aConcurrenceserevue des droits de la concurrencefInstitut des droits de la concurrence 0aN° 1 (2004,déc.)- aPariscInstitut des droits de la concurrencecThomson Transactived2004- aA partir de 2005, l'Institut est appelé 'Institut des droits de la concurrence" aTrimestriel 1tConcurrences (En ligne),x2116-009010aRDLC aConcurrencexDroitxPériodiques a34602aInstitut de droit de la concurrencec(France) 3aFRbAbesc20060711gAFNOR 3aFRbISSNc20060706 a074 uhttps://acces-distant.sciences-po.fr/fork?http://www.doctrinal.fr/doctrinal/LoginDoctrinalPlus.do zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 3461 bno. 1 (2005) -....cParisdMagasins/AnnexeeP 4° 7142 aZPAY aDEW 34601186nas 2200325 i 450 002001100000005001700011011001400028035001500042100004100057101000800098102000700106110001600113200003100129210003500160300007200195326001100267530003100278606007000309606005400379712005700433801002100490856003700511856005900548955013400607955005500741972000900796992002300805992001600828992001600844000010581520130328150227.01 a0098-4752 aFNSP449677 a19900101a19759999 ba0 aeng aUS aaku 14aThe Condition of education aWashington, D.C.cUSGPOd1975- a2011, dernière éd. papier, voir ensuite en version électronique. aAnnuel04aThe Condition of education aFormation professionnelleyEtats-UnisxStatistiquesxPériodiques aEducationyEtats-UnisxStatistiquesxPériodiques02aEtats-UnisbNational Center for Education Statistics 3aFRbCCN0098-47524 uhttp://nces.ed.gov/programs/coe/4 zTexte intégral des deux dernières éditions en ligne1 bvol. 1- 2 (1981) ; vol. 1-2 (1983) -(1987) ; vol. 2 (1988) ; vol. 1-2 (1989) -vol. 1-2 (1991)cParisdMagasins/AnnexeeP 8° 47961 b(1992) -(2011)cParisdMagasins/AnnexeeP 4° 6293 aZPAY aGEO RC2 Etats-Unis aDEW 370-379 aDEW 310-31901398nas0 2200337 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123110001600141200013100157210004700288300004300335326001500378530006200393606003600455606004400491606003900535607002600574710018100600801003000781856007600811856007100887955007000958992001201028992002001040121598942000113077820130319051224.01 a1870-3569 a0001130778 a20080218a20059999k y0frey0103 ba0 aspa aMX ay 0  aaja p 0 10aConfines de relaciones internacionales y ciencia politicafInstituto tecnologico y de estudios superiores (Monterey, Méxique) aMontereycTecnológico de Monterreyd2005- aDemande de numérotation ISSN en cours aSemestriel00aConfines de relaciones internacionales y ciencia politica aScience politiquexPériodiques aRelations internationalesxPériodiques aSociologie politiquexPériodiques aMexiquexPériodiques10aInstituto tecnológico y de estudios superioresc(Monterrey, Mexique)bDivision de humanides y ciencias socialesbDepartamento de relaciones internacionales y ciencia política 3aFRbAbesc20080218gAFNOR4 uhttps://acces-distant.sciences-po.fr/fork?http://confines.mty.itesm.mx/ zContenu : accès au texte intégral depuis le n° 1 (Janvier 2005)1 bvol. 1 no. 1 (jan-2005) -....cParisdMagasins/AnnexeeP 4° 7214 aDEW 327 aGEO RD1 Mexique01664cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200008100180207003100261210007300292300004500365326001800410430004000428606003900468606002500507710005600532801003000588801002300618802000700641856020100648856010800849856010900957856010801066955007101174972000901245992001201254093435525000096695120130319051225.01 a0738-8942 aissn07388942 a0000966951 a19820111a19809999k y1frey0103 ba0 aeng aUS a 0  ar aaha 0uu 10aConflict management and peace scienceejournal of thefPeace Science Society 0aVol. 5, no. 1 (Fall 1980)- aIthaca, N.YcWorld University Division, World Research Centerd1980- aPublié dorénavant par Taylor & Francis a5 n°s par an 1tJournal of peace sciencex0094-3738 aGestion des conflitsxPériodiques aGuerrexPériodiques02aSociété internationale pour la science de la paix 3aFRbAbesc20051205gAFNOR 3aFRbISSNc20051021 a014 uhttps://acces-distant.sciences-po.fr/fork?http://web.ebscohost.com/ehost/detail?vid=1&hid=6&sid=956db500-2ab9-434c-ae69-e69b2076c917%40sessionmgr4&bdata=JnNpdGU9ZWhvc3QtbGl2ZQ%3d%3d#db=sih&jid=A9P zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713669203db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 22 no. 1 (mar-2005) -....cParisdMagasins/AnnexeeP 8° 6885 aZSAB aDEW 32700796nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004700154210003900201326001500240606003700255606003500292856003600327856004500363955007100408972000900479991001800488992001200506040563677000023685920130605133446.01 a1283-1255 aFNSP837491 a0000236859 a19900101b19972009 ba0 afre aFR aaja 00aConflits actuelserevue d'étude politique aPariscConflits actuelsd1997-2009 aSemestriel aMouvements sociauxxPériodiques aConflits sociauxxPériodiques4 uhttp://www.conflits-actuels.com zContenu : sommaires depuis le n°1, 19971 bno. 1 (1997) -no. 23/24 (2009)cParisdMagasins/AnnexeeP 8° 6374 aZCAD aexempb201207 aDEW 30301146nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210002800188326001600216517003100232607004300263676000800306856023900314856008400553955006600637955006300703972000900766991001800775992002700793992001200820039904334000005239820130712091341.01 a1148-2664 aFNSP251748 a0000052398 a19900101a19919999 ba0 afre aFR aaha 00aConfluences en Méditerranée aPariscHarmattand1991- aTrimestriel10aConfluences Méditerranée aMéditerranée (région)xPériodiques a9394 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-confluences-mediterranee.htmzAccès local au texte intégral depuis 2001 pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.confluences-mediterranee.comzSommaires depuis le n°1, automne 19911 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9391 bno. 1 (aut-1991) -....cParisdMagasins/AnnexeeP 8° 5778 aZCAD aexempb201111 aGEO RL4 Méditerranée aDEW 90901141nas0 2200349 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123110001600141200003600157207001900193210004000212326001600252430005000268607006900318607006500387607003300452710002600485801003000511801002100541856005300562856006200615955006400677972000900741992002500750992001600775113271972000108115720130319051226.01 a1955-7337 a0001081157 a20070314a20079999k z0frey0103 ba0 afre aFR a 0  aahakz 0 010aConfrontations Europeela revue 0aN° 77 (2007)- aPariscConfrontations Europed2007- aTrimestriel 1tLa lettre de Confrontations Europex1771-3560 aPays de l'Union européennexPolitique économiquexPériodiques aPays de l'Union européennexPolitique socialexPériodiques aEuropexUnitéxPériodiques02aConfrontations Europe 3aFRbAbesc20070314gAFNOR 3aFRbBNc140320074 uhttp://www.confrontations.org/spip.php?rubrique9 zContenu: sommaires et texte intégral des 3 derniers n°s1 bno. 77 (jan-2007) -....cParisdMagasins/AnnexeeP 4° 6201 aZGRA aGEO RA4.06 France 01 aDEW 944.08301227nas 2200325 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101110001600108200003000124210004900154326002200203430003700225452005000262517003200312530003000344601003900374606004200413710007400455801002100529856021400550955007500764972000900839991001800848992002300866992001200889039696596000001480920130613171426.01 a0734-3469 a19900101a19829999 ba0 aeng aUS aaju 10aCongress & the Presidency aWashington, D.C.cAmerican Universityd1982- aTrois n°s par an 1aCongressional studiesx0194-4053 1tCongress & the presidency (Online)x1944-105310aCongress and the Presidency00aCongress & the presidency02aEtats-UnisbCongressxPériodiques aPrésidentsyEtats-UnisxPériodiques02aCenter for Congressional and Presidential Studiesc(Washington, D.C.) 3aFRbCCN0734-34694 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t905131667db=allzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 1 (hiv-1981/1982) -....cParisdMagasins/AnnexeeP 8° 3167 aZSAB aexempb201004 aGEO RC2 Etats-Unis aDEW 32800985nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004200154210005700196320005200253326001700305440002600322517004500348517002100393601003900414606004200453801002100495856002300516955009700539992002300636992001200659036239348000001487920130319051227.01 a0010-5910 aFNSP140939 a0000014879 a19900101b19561998 ba0 aeng aUS aa u 10aCongressional quarterly weekly report aWashington, D.C.cCongressional Quarterlyd1956-1998 aindexannuel relié avec l'année correspondante aHebdomadaire 1tCQ weekly,x1521-599710aCQ congressional quarterly weekly report10aCQ weekly report02aEtats-UnisbCongressxPériodiques aPrésidentsyEtats-UnisxPériodiques 3aFRbCCN0010-59104 uhttp://www.cq.com/1 bvol. 24 no. 1 (7 jan-1966) -vol. 56 no. 15 (11 avr-1998)cParisdMagasins/AnnexeeP 4° 2179 aGEO RC2 Etats-Unis aDEW 32801013nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000590015421000260021330000840023932600120032351700160033560600420035171000160039380100210040985601210043085600360055195500710058797200090065899100180066799200140068503955483X000000424420130319051227.01 a0338-9162 aFNSP105211 a0000004244 a19900101a19719999 ba0 afre aFR aafu 10aConjonctureeBulletin économique de la banque Paribas aPariscParibasd1971- an'a pas paru en avril et mai 2000 à la suite de la fusion entre BNP et Paribas aMensuel10aConjoncture aConjoncture économiquexPériodiques02aBNP Paribas 3aFRbCCN0338-91624 uhttp://economic-research.bnpparibas.com/applis/www/RechEco.nsf/navigation/FrameMainInter?OpenDocument&Lang=FR&Mode=6 zAccès libre au texte intégral1 bvol. 11 no. 1 (jan-1981) -....cParisdMagasins/AnnexeeP 8° 4459 aZGRA aexempb200911 aDEW 330.901057nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012310600060014111000160014720001030016320700220026621000570028832600120034543000290035760600450038667600080043171000430043980100130048285600460049585600560054195500760059797200090067399200250068299200120070707731333X000061999120130319051227.01 a1767-3356 a0000619991 a a20049999 fre 01 ba0 afre aFR a 0  ar aaf z 0 10aConnaissance de l'emploiele 4 pages du centre d'études de l'emploifCentre d'études de l'emploi 1aN°1 (mars 2004)- aNoisy -le-GrandcCentre d'études de l'emploid2004- aMensuel 1t4 pages (Noisy-le-Grand) aMarché du travailyFrancexPériodiques a33102aCentre d'études de l'emploic(France) 0aFRbFNSP4 uhttp://www.cee-recherche.fr/fr/c_pub2.htm zContenu : texte intégral depuis le n°1, mars 20041 bno. 1 (mar-2004) -no. 60 (dec-2008)cParisdMagasins/AnnexeeP 4° 6418 aZGRA aGEO RA4.06 France 01 aDEW 33100964nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000130001502070024002802100057003042300024003613260012003856060045003976760008004427100043004508010013004938560046005068560056005529550005006089920025006139920012006380001161289000116128920130319051227.0 a0001161289 a a20049999k fre 01 ba0 afre aFR ar aaf z  adr 10aConnaissance de l'emploib[Ressource électronique]ele 4 pages du Centre d'études de l'emploifCentre d'études de l'emploi 1aaN°1 (mars 2004)- aNoisy -le-GrandcCentre d'études de l'emploid2004- aRevue électronique aMensuel aMarché du travailyFrancexPériodiques a33102aCentre d'études de l'emploic(France) 0aFRbFNSP4 uhttp://www.cee-recherche.fr/fr/c_pub2.htm zContenu : texte intégral depuis le n°1, mars 20041 r aGEO RA4.06 France 01 aDEW 33101009nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009500154210002300249326001500272530002200287606003000309606002900339710006700368801002100435856009000456856004200546955006900588972000900657991001800666992001100684039541193000001761120130606144414.01 a0337-3126 aFNSP148081 a0000017611 a19900101a19729999 ba0 afre aFR aaja 10aConnexionsepsychosociologie, sciences humainese[revue trimestrielle publiée par l'ARIP] aPariscARIPd1972- aSemestriel10aConnexionsbParis aPsychologiexPériodiques aSociologiexPériodiques02aAssociation pour la recherche et l'intervention psychologiques 3aFRbCCN0337-31264 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-connexions.htm? zAccès aux sommaires et aux résumés1 bno. 26 (1978) -no. 98 (2012)cParisdMagasins/AnnexeeP 8° 4594 aZPAY aexempb201003 aDEW 1500922nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002700139210002400166326001100190530002700201606003800228710007400266801002100340856018300361955005900544972000900603991001800612992001400630039302687000001762420130528170136.01 a0251-3633 aFNSP148107 a19900101a19719999 ba0 afre aCH aaju 10aConscience et liberté aBernecAIDLRd1971- aAnnuel00aConscience et liberté aLiberté religieusexPériodiques02aAssociation internationale pour la défense de la liberté religieuse 3aFRbCCN0251-36334 uhttp://www.libertereligieuse.com/index.php?cat=consciencezContenu : Sommaire et texte intégral depuis le n°59, 2000 (sauf dernier numéro) (un fichier par numéro de la revue)1 bno. 1 (1971) -....cParisdMagasins/AnnexeeP 8° 3027 aZPAY aexempb201106 aDEW 20-2901433cas0 2200433 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164105001800171106000600189110001600195200006900211210002900280215003100309300007200340305006000412321004500472321001000517321008400527326000900611530002800620531001700648700004500665801003000710801002300740801001300763802000700776856011900783945001100902955005100913991003500964039087182000111983220130319051228.0 a2016-7741 a083050949 accn7113/7408 aissn20167741 a0001119832 a19890630b18491851m y0frey0103 ba0 afre aFR ay  ar aafu uu 13aLe Conseiller du peupleejournal mensuelfpar M. A. de Lamartine aParisc[s.n.]d1849-1851 a2 vol. (588, 456 p.)$25 cm aTous les n° comprennent une partie intitulée "Almanach politique" aEléments repris par "Les Foyers du peuple" (1851-1852) aCatalogue collectif des périodiques, II aHatin aTalvart & Place, Bibliographie des auteurs modernes de langue française, t. 11 aMens03aLe Conseiller du peuple 0aCons. peuple 1aLamartinebAlphonse def(1790-1869)4070 3aFRbAbesc20071003gAFNOR 3aFRbISSNc20070706 0aFRbFNSP a074 uhttp://gallica.bnf.fr/ark:/12148/bpt6k27867jzAccès libre au texte intégral. Année 1850 numérisée sur Gallica bE.14911 b(1849)-(1851)cParisdMagasins/AnnexeeRE.1491 anumer0 (complément gallica ?)01167cas0 2200373 450 001001000000002001100010005001700021011001400038035001400052035001400066035001700080035001800097035001700115035001500132100004100147101000800188102000700196105001800203106000600221110001600227200006100243207005900304210003800363530003500401607006300436676000800499801003000507801001800537801002300555801001300578802000700591856014400598955005100742038758075000114081620130319051229.0 a1246-6131 a094564639 a045328382 accn1246-6131 afrBN015779027 aissn12466131 a0001140816 a19931005b18181820uuuy0frey0103 ba0 afre aFR ay  ar aacu uu 13aLe Conservateurele roi, la charte et les honnêtes gens 0aVol. 1, n° 1 (1818, oct.)-vol. 6, n° 78 (1820, mars) aPariscLe Normant filsd1818-182013aLe Conservateurb(Paris. 1818) aFrancexPolitique et gouvernementz1814-1830xPériodiques a944 3aFRbAbesc20060707gAFNOR 3aFRbBNgAFNOR 3aFRbISSNc20051021 0aFRbFNSP a074 uhttp://gallica.bnf.fr/ark:/12148/cb32747421f/date.r=.langFRzAccès libre au texte intégral. Années 1818 à 1820 numérisées sur Gallica1 bvol. 1 (1818)cParisdMagasins/AnnexeeRH.015301714cas0 2200469 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150110001600157200001700173210008200190210002800272304007100300326001600371423004400387430006600431517004200497517002400539530002600563606005000589606005200639607005000691607004600741676001100787710008700798801003000885801003000915801002300945802000700968856006200975856003601037955007801073955005901151992002201210992001201232037437674000063249820130319051229.0 a0010-6593 accn0010-6593 aissn00106593 a0000632498 a19960207b19581986 0fre 0103 ba0 afre aFR aah 10aConsommation aPariscCentre de recherche et de documentation sur la consommationd1958-1986 aPariscDunodd1985-1986 aTitre à partir de 1980 : "Consommation : revue de socioéconomie" aTrimestriel 1tConsommation et modes de viex0295-9976 1tAnnales de recherches et de documentation sur la consommation10aConsommationerevue de socioéconomie10aCREDOC consommation10aConsommationb(Paris) aEnquêtes sociologiquesyFrancexPériodiques aCoût et niveau de la vieyFrancexPériodiques aFrancexConditions économiquesxPériodiques aFrancexConditions socialesxPériodiques a381.3202aCentre de recherche pour l'étude et l'observation des conditions de viec(France) 3aFRbAbesc20040606gAFNOR 3aFRbAbesc20040606gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.credoc.fr/publications/abstract.php?ref=CMV114 zAccès libre au texte intégral1 bvol. 5 no.1(1958)-vol. 31 no. 4 (1984)cParisdMagasins/AnnexeeP 8°16651 bno. 1 (1985)-no. 4 (1986)dMagasins/AnnexeeP 4 °5064 aGEO RA4.06 France aDEW 33901146nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200011500139210002500254326001200279606005000291606005100341607004600392710008700438856003500525856009100560955007700651957007000728972000900798992002500807992001200832039480844000001615420131002143237.01 a0295-9976 aFNSP144264 a19901029a19859999 ba0 afre aFR aafa 10aConsommation et modes de viefCREDOC, Centre de recherche pour l'étude et l'observation des conditions de vie aPariscCREDOCd1985- aMensuel aSociologie du quotidienyFrancexPériodiques aConsommateursyFrancexAttitudesxPériodiques aFrancexConditions socialesxPériodiques02aCentre de recherche pour l'étude et l'observation des conditions de viec(France) 4uhttp://www.credoc.fr/index.php zContenu : résumés depuis le no. 1, 1985 et texte intégral depuis le n° 111 de 19961 bno. 1 (mar-1985) -no. 214 (aou-2008)cParisdMagasins/AnnexeeP 4° 50771 bno. 1 (1985) -no. 52 (1990)cParisdMagasins/AnnexeeP Index 0655 aZGRA aGEO RA4.06 France 01 aDEW 33901425nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007900154210002900233300007600262326002300338326002800361530003400389606003600423606004000459856012800499856010800627856010100735856010800836955010000944972000901044991001801053992001601071036738719000012909720130319051229.01 a1351-0487 aFNSP525728 a0000129097 a19940607a19949999 ba0 aeng aGB aaha 10aConstellationsean international journal of critical and democratic theory aOxfordcBlackwelld1994- aReprend partiellement des éléments de Praxis international$x0260-8448 aTrimestrielb1998- a3 nos par anb1994-199710aConstellationsbOxford. Print aScience politiquexPériodiques aPhilosophie politiquexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=7QP&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100823 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (avr-1994) -....cParisdMagasins/AnnexeeP 8° 6034wManque : vol. 5, no. 2, 1998 aZCAD aexempb201207 aDEW 320-32101028nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210005800191326002300249326002900272606005000301606006000351606003700411710005400448856004500502856005800547955007000605972000900675991001800684992001200702040260771000005535020130319051231.01 a1043-4062 aFNSP259448 a0000055350 a19900101a19909999 ba0 aeng aUS aaha 10aConstitutional political economy aFairfax, VAcCenter for Study of Public Choiced1990- aTrimestrielb1996- a3 n°s par anb1990-1995 aEconomie politique et politiquexPériodiques aDroit constitutionnelxAspect économiquexPériodiques aEconomie politiquexPériodiques02aCenter for Study of Public Choicee(Fairfax, Va.)4 uhttp://www.wkap.nl/jrnltoc.htm/1043-4062 zContenu : sommaires depuis le vol. 6, n°1, hiv. 19951 bvol. 1 no. 1 (hiv-1990) -....cParisdMagasins/AnnexeeP 8° 5787 aZSAB aexempb201109 aDEW 33000924nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000109001502100055002592300024003143260022003386060037003606060037003976060044004348010013004788560031004918560072005229550005005949920012005999920011006110001162421000116242120130319051232.0 a0001162421 a a20029999k fre 01 ba0 afre aFR ar aai z  adr 10aConstructifb[Ressource électronique]eles contributions du Bâtiment aux grands débats de notre temps aPariscFédération française du bâtimentd2002- aRevue électronique atrois fois par an aProblèmes sociauxxPériodiques aVie intellectuellexPériodiques aRelations internationalesxPériodiques 0aFRbFNSP4 uhttp://www.constructif.fr/ zContenu : texte intégral des articles depuis le n°1, janvier 20021 r aDEW 300 aGEO RQ00808nls 2200253 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000057001502070047002072300024002546060046002788010013003248560072003378560108004099920012005179920025005290000994385000099438520130319051233.0 a0000994385 a a20049999k fre 01 ba0 afre aFR ar aaz z  adr 10aConstruction et urbanismeb[Ressource électronique] 1aParis :$cLexisNexis Jurisclasseur :$c2004- aRevue électronique aConstructionxDroityFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aDEW 340 aGEO RA4.06 France 0100905nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005600154210002700210326001600237517001800253530002900271606002700300607003500327856006000362856004200422955006600464972000900530991001800539992002200557992001200579013626833000024888720130319051233.01 a1127-3070 aFNSP871838 a0000248887 a19900101a19989999 ba0 aita aIT aaha 00aContemporaneaerivista di storia dell'800 e del'900 aBolognacMulinod1998- aTrimestriel10aContemporanea10aContemporaneab(Bologna) aHistoirexPériodiques aItaliexHistoirexPériodiques4 uhttp://www.mulino.it/edizioni/riviste/contemporanea.htm zContenu : sommaire du dernier numéro1 bvol. 1 no. 1 (1998) -....cParisdMagasins/AnnexeeP 8° 6395 aZECH aexempb201301 aGEO RA6.03 Italie aDEW 94501143nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210002400187326001600211430003500227607004700262607003400309856005600343856006000399856010900459856010800568955007100676972000900747991001800756992003100774992001200805036750743000020712720130319051234.01 a1361-9462 aFNSP751525 a0000207127 a19900101a19969999 ba0 aeng aGB aaha 10aContemporary British history aLondoncCassd1996- aTrimestriel 1aContemporary recordx0950-9224 aGrande-Bretagnez20e sièclexPériodiques aGrande-BretagnexPériodiques4 uhttp://www.tandf.co.uk/journals/titles/13619462.asp zContenu : sommaires et résumés depuis le vol.11, n°44 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713634559db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 10 no. 1 (mar-1996) -....cParisdMagasins/AnnexeeP 8° 6295 aZSAB aexempb201302 aGEO RA4.02 Grande-Bretagne aDEW 94101092nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000033001552100036001883260016002244300058002406060040002986070052003387100047003908560128004378560108005659550071006739720009007449920023007539920014007760000118430000011843020130319051234.01 a1074-3529 aFNSP490269 a0000118430 a19940216a19949999 ba0 aeng aUS aaha 10aContemporary economic policy aLong Beach, Calif.cWEAId1994- aTrimestriel 1aContemporary policy issues (0735-0007) < P 8° 4632 > aPolitique économiquexPériodiques aEtats-UnisxPolitique économiquexPériodiques02aWestern Economic Association International4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=CEY&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 12 no. 1 (jan-1994) -....cParisdMagasins/AnnexeeP 8° 4632 aZGRA aGEO RC2 Etats-Unis aDEW 338.901119nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210004900188326002300237326002800260607003600288607003800324856004200362856005300404856010100457856010800558955007000666972000900736991001800745992001800763992001200781040094820000006463720140107174216.01 a0960-7773 aFNSP296996 a0000064637 a19900101a19929999 ba0 aeng aGB aaia 00aContemporary European history aCambridgecCambridge University Pressd1992- aTrimestrielb2002- a3 nos par anb1992-2001 aEuropez1789-1900xPériodiques aEuropez20e sièclexPériodiques4 uhttp://uk.cambridge.org/journals/ceh/ zContenu : sommaires depuis le vol. 5, n°1, 19964 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=103531 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1992) -....cParisdMagasins/AnnexeeP 8° 5813 aZPAY aexempb201112 aGEO RA Europe aDEW 94001193nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002300139210004400162326001100206430004100217517003600258530004500294606003600339710007700375801002100452856027000473955007000743972000900813991001800822992002300840992001600863039091880000000631220131007172528.01 a0147-1694 aFNSP110034 a19900101a19779999 ba0 aeng aUS aaku 10aContemporary Jewry aNew Brunswick, N.J.cTransactiond1977- aAnnuel 1aJewish sociology and social research10aJournal of sociological inquiry10aContemporary Jewry (Online), $x1876-5165 aJuifsyEtats-UnisxPériodiques02aAssociation for the Social Scientific Study of Jewry (New London, Conn.) 3aFRbCCN0147-16944 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=LK1&site=ehost-livezAccès local au texte intégral à partir de 1976 pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 7 (1986) -vol. 28 (2008)cParisdMagasins/AnnexeeP 8° 5112 aZPAY aexempb201106 aGEO RC2 Etats-Unis aDEW 305-30600892nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003400163210004300197326002300240326002900263517000800292606003600300801001300336856008300349856006300432955007000495972000900565992001600574067775489000052359820130319051234.01 a1470-8914 a0000523598 a a20029999k fre ba0 aeng aGB a 0  ar aah z 0 10aContemporary political theory aBasingstokecPalgrave Macmilland2002- aTrimestrielb2005- a3 n°s par anb2002-200410aCPT aScience politiquexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.palgrave-journals.com/cpt zContenu : sommaires, résumés depuis le vol.1, n°1, 20021 bvol. 1 no. 1 (mar-2002) -....cParisdMagasins/AnnexeeP 8° 6676 aZSAB aDEW 320-32101048nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210002800180326001600208530004100224606003600265856005700301856005800358856010900416856010800525955007000633972000900703991001800712992001600730058169881000024573320130319051234.01 a1356-9775 aFNSP863695 a0000245733 a19900101a19959999 ba0 aeng aGB aaha 10aContemporary politics aAbingdoncCarfaxd1995- aTrimestriel 0aContemporary politicsbLondon. Print aScience politiquexPériodiques4 uhttp://www.tandf.co.uk/journals/carfax/13569775.html zContenu : sommaires depuis le vol. 3, n°1, mars 19974 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713411554db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 1 (mar-1997) -....cParisdMagasins/AnnexeeP 8° 6390 aZSAB aexempb201211 aDEW 320-32101030nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003300139210003600172326001700208430002900225530003300254606004400287606002800331606003800359856010900397856010800506955007100614972000900685991001800694992001600712036740055000013266620130911151947.01 a1352-3260 aFNSP538281 a19940720a19949999 ba0 aeng aGB aaia 10aContemporary security policy aLondon‎cFrank Cass‎d1994- a3 nos par an 1aArms control,x0144-038110aContemporary security policy aSécurité internationalexPériodiques aArmementsxPériodiques aPolitique militairexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713634773db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 15 no. 1 (avr-1994) -....cParisdMagasins/AnnexeeP 8° 4412 aZSAB aexempb201309 aDEW 355-35901265nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000067001502100063002173000098002803260014003783360058003923370063004504520053005136060029005668010013005958560090006088560128006988560108008269550005009349920012009390000487128000048712820130319051234.0 a0000487128 a a19729999k fre 01 ba0 aeng aUS az aae z  adr 10aContemporary sociology (Washington)b[Ressource électronique] aWashington, D.C.cAmerican sociological Associationd1972- aAccès au texte intégral (réservé aux sites de Sciences Po) jusqu'aux 5 dernières années aBimensuel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tContemporary sociology (Washington)x(0094-3061) aSociologiexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00943061.html4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=CSC&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aDEW 30101193nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210002800182320002600210326002300236326002800259607003000287856009600317856010800413856010900521856010800630955006600738972000900804991001800813992002400831992001200855040090760000007167720140108125642.01 a0958-4935 aFNSP328301 a0000071677 a19900101a19929999 ba0 aeng aGB aaha 10aContemporary South Asia aAbingdoncCarfaxd1992- aN' a pas paru en 2007 aTrimestrielb2003- a3 nos par anb1992-2002 aAsie du SudxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=tru zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713411866db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1992) -....cParisdMagasins/AnnexeeP 8° 5870 aZSAB aexempb201112 aGEO RI1 Asie du Sud aDEW 95401100nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003200139210002800171326002400199326002700223452004100250530003200291607003400323710005400357801002100411856010400432955006600536957010500602972000900707991001800716992002800734992001200762039031454000002061220140108125837.01 a0129-797X aFNSP156014 a19900101a19799999 ba0 aeng aSG aaia 10aContemporary Southeast Asia aSingaporecISEASd1979- a3 nos par anb1998- aTrimestrielb1979-1997 1tContemporary Southeast Asia (Online) aContemporary Southeast Asia aAsie du Sud-EstxPériodiques02aInstitute of Southeast Asian Studiesc(Singapour) 3aFRbCCN0129-797X4 uhttp://muse.jhu.edu/journals/csa/zAccès aux sommaires et résumés depuis le vol. 25, no. 1, 20031 bvol. 6 no. 4 (1985) -....cParisdMagasins/AnnexeeP 8° 49271 bvol. 1 (1979) -vol. 15 (1994) ; vol. 15 (1995) -vol. 20 (1998)cParisdMagasins/AnnexeeP Index 0652 aZSAB aexempb201106 aGEO RI2 Asie du Sud-Est aDEW 95901250nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200011200154210005200266300009600318326001100414423007200425606004600497606005500543676000800598710005000606856013300656856003600789955005300825972000900878992002500887992001200912092388809000020702520130319051234.01 a1958-4210 aFNSP751329 a0000207025 a19900101a19949999 ba0 afre aFR aaka 10aContentieux des réfugiésejurisprudence du Conseil d'État et de la Commission des recours des réfugiés aPariscCentre d'information contentieused1994- aContient la Jurisprudence du Conseil d' Etat et de la Commission des recours des réfugiés aAnnuel 11aContentieux des réfugiés (Montreuil-sous-Bois. 1998)x1958-4229 aDroit administratifyFrancexPériodiques aRéfugiésxStatut juridiqueyFrancexPériodiques a32502aFrancebCommission des recours des réfugiés4 uhttp://www.commission-refugies.fr/centre_recherche_18/jurisprudence_25/recueils_annuels_jurisprudence_162/recueil_2006_2172.html zAccès libre au texte intégral1 b(1993) -....cParisdMagasins/AnnexeeP 4° 6779 aZGRA aGEO RA4.06 France 01 aDEW 34201049nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004800163207003100211210005600242326001600298530003200314606003600346710003800382801001300420856010300433856010800536955007000644972000900714992001200723076794180000060116320130319051235.01 a1536-5042 a0000601163 a a20029999 fre 01 ba0 aeng aUS a 0  ar aah z 0 10aContextsfAmerican Sociological Association 1aVol.1, n°1 (Summer 2002)- aBerkeley, CAcUniversity of California Pressd2002- aTrimestriel00aContexts (Berkeley, Calif.) aSciences socialesxPériodiques02aAmerican Sociological Association 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=111065 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 1 (hiv-2004) -....cParisdMagasins/AnnexeeP 4° 7021 aZPAY aDEW 30000961nls 2200313 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000066001642100056002302300005002863000103002913260016003943360071004103370018004816060036004997100038005358010013005738560044005869550005006309920012006350000601166000060116620130319051235.02 a1537-6052 a0000601166 a a20029999k fre 01 ba0 aeng aUS az aah z  adr 10aContexts (Berkeley, Calif. Online)b[Ressource électronique] aBerkeley, CAcUniversity of California Pressd2002- a aSommaires, résumés et selection d'articles en texte intégral depuis le vol.1, n°1, Summer 2002 atrimestriel aDonnées textuelles ou numériques accessibles uniquement en ligne aFichiers HTML aSciences socialesxPériodiques02aAmerican Sociological Association 0aFRbFNSP4 uhttp://www.contextsmagazine.org/faq.php1 r aDEW 30000886nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210004400188326001600232430003000248606003000278856004900308856009400357955007100451972000900522991001800531992003300549992001400582036887072000025488220130319051235.01 a1387-2842 aFNSP889531 a0000254882 a19900101a19989999 ba0 aeng aNL aaha 10aContinental philosophy review aDordrechtcKluwer Academic Publ.d1998- aTrimestriel 1aMan and world,x0025-1534 aPhilosophiexPériodiques4 uhttp://www.wkap.nl/journalhome.htm/1387-2842 zContenu : texte intégral depuis le vol. 1 no. 1, 1968 et résumés pour les nos récents1 bvol. 31 no. 1 (jan-1998) -....cParisdMagasins/AnnexeeP 8° 2581 aZSAB aexempb201104 aGEO RS Sans aspect régional aDEW 10-1400867nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000065001502070047002152100005002622300024002673260005002916060046002968010013003428560072003558560108004279550005005359920012005409920025005520000994386000099438620130319051236.0 a0000994386 a a20049999k fre 01 ba0 afre aFR ar aaz z  adr 10aContrats concurrence consommationb[Ressource électronique] 1aParis :$cLexisNexis Jurisclasseur :$c2004- a aRevue électronique a aObligations (droit)yFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aDEW 340 aGEO RA4.06 France 0100910nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000060001502070046002102100005002562300024002616060050002856060050003358010013003858560072003988560108004709550005005789920012005839920025005950000994387000099438720130319051236.0 a0000994387 a a20049999k fre 01 ba0 afre aFR ar aaz z  adr 10aContrats et marchés publicsb[Ressource électronique] 1aParis :$cLexisNexis Jurisclasseur,$d2004- a aRevue électronique aContrats administratifsyFrancexPériodiques aMarchés publicsxDroityFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aDEW 342 aGEO RA4.06 France 0101159nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200009900163207004900262210003100311210003000342326002300372326002800395434004400423530003100467606004500498606002700543801001300570856005600583856007500639955007200714972000900786992001400795061095850000039805620130504114610.01 a1633-597X a0000398056 a a20019999k fre ba0 afre aFR a 0  ar aai z 0 10aContretempse[nouvelle revue thématique à la rencontre des courants de radicalité critique] 1ano 1 (2001)-no 21 (2008) ; n.s. no 1 (2009)- aPariscEd. Syllepsed2009- aPariscTextueld2001-2008 aTrimestrielb2009- a3 nos par anb2001-2008 1tCritique communiste (Paris),x0398-206810aContretempsb(Paris. 2001) aGauche (science politique)xPériodiques aMarxismexPériodiques 0aFRbFNSP4 uhttp://www.editionstextuel.com/index.php?cat=020362 zContenu : sommaires et présentation des thèmes depuis le no. 1, 20011 bno. 1 (mai-2001) -no. 20 (2007)cParisdMagasins/AnnexeeP 8° 6573 aZCAD aDEW 320.501596nas 2200373 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320001570013921000270029632600250032332600260034832600220037442101180039653000380051460600350055271000900058771100420067780100210071985601080074085601080084895501230095695500670107997200090114699100170115599100180117299200200119099200120121003884799X000001497720130703181236.01 a0069-9667 aFNSP141113 a19900101a19579999 ba0 aeng aIN aaiu 10aContributions to Indian sociologyfEcole pratique des hautes études, 6e sectiongInstitute of economic growthgfondée par Louis Dumont et David Pocock aNew DelhicSaged1957- a3 n°s par anb1999- aSemestrielb1975-1998 aAnnuelb1957-1972 1tContributions to Indian sociology. Occasional studiesbTexte imprimécNew DelhinVikas Publishing Housed[197?]-00aContributions to Indian sociology aSociologieyIndexPériodiques02aEcole pratique des hautes étudesc(Paris)bSection sciences économiques et sociales02aInstitute of Economic Growthc(Delhi) 3aFRbCCN0069-96674 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 9 no. 1 (jan-1975) -vol. 35 no. 3 (sep-2001) ; vol. 39 no. 1 (jan-2005) -....cParisdMagasins/AnnexeeP 8° 40661 bno. 1 (1967) -no. 8 (1974)cParisdMagasins/AnnexeeCOL8°2776 aZSAB aPériobTP02 aexempb201001 aGEO RI1.13 Inde aDEW 30101135nas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200010100162210003800263326001500301606004600316606004000362606003600402710013400438801003000572801002300602802000700625856003600632856003600668955007000704972000900774992001400783110206908000103507720130319051236.01 a1807-9326 aissn18079326 a0001035077 a20061024a20059999 0frey0103 ba0 apor aBR ar aaj 10aContributions to the history of conceptsfInstituto universitario de pesquisas do Rio de Janeiro aRio de Janeiro, RJcIUPERJd2005- aSemestriel aIdées politiquesxHistoirexPériodiques aPhilosophie politiquexPériodiques aScience politiquexPériodiques02aInstituto universitário de pesquisas do Rio de JaneirobGrupo de pesquisa em história dos conceitos e teoria política e social 3aFRbAbesc20061024gAFNOR 3aFRbISSNc20051001 a0k4 uhttp://contributions.iuperj.br/4 zAccès libre au texte intégral1 bvol. 1 no. 1 (mar-2005) -....cParisdMagasins/AnnexeeP 8° 6918 aZPAY aDEW 320.500767nas0 2200265 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003300139207002200172210003800194326001800232606003700250676000800287801003000295856009200325955006300417972000900480992001200489103481109000098493920140109150343.01 a1779-2355 a0000984939 a20060612a20069999k 1frey0103 ba0 afre aFR aaia k 10aControverseserevue d'idées 0aN°1 (mars 2006)- aPariscEditions de l'Eclatd2006- a3 n°s par an aVie intellectuellexPériodiques a001 3aFRbAbesc20060612gAFNOR4 uhttp://www.controverses.fr/articles/articles_index.htmzAccès libre au texte intégral1 bno. 1 (mar-2006) -....cParisdMagasins/AnnexeeP 8° 6898 aZPAY aDEW 00100748nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003000163210003400193326001500227712002900242801001300271856005400284856003600338955007500374972000900449992001200458057922993000038013920130319051238.01 a1623-9172 a0000380139 a b20002002k fre ba0 afre aFR a 0  ar aaj z 0 10aConvictions (Paris, 2000) aPariscConvictionsd2000-2002 aSemestriel02aClub Convictions (Paris) 0aFRbFNSP40uhttp://www.convictions.org/publications/index.htm zAccès libre au texte intégral1 bno. 1 (jun-2000) -no. 4 (fev-2002)cParisdMagasins/AnnexeeP 8° 6551 aZCAD aDEW 32401251nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200011900154210002400273326001600297606004600313676000800359710004500367801002100412856007000433856010800503856010800611856010800719955005900827972000900886991001800895992001200913038693356000001510220140110142747.01 a0010-8367 aFNSP141490 a0000015102 a19900101a19659999 ba0 aeng aGB aaha 10aCooperation and conflictf[published twice a year by the Nordic Committee for the Study of International Politics] aLondoncSaged1965- atrimestriel aCoopération internationalexPériodiques a32702aNordic International Studies Association 3aFRbCCN0010-83674 uhttps://acces-distant.sciences-po.fr/fork?http://cac.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1965) -....cParisdMagasins/AnnexeeP 8° 2171 aZSAB aexempb201105 aDEW 32701565nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004000139210002300179300034500202326001100547430007300558606003500631710010100666856030300767955005501070955005501125972000901180991001801189992004201207992001401249039300994000007722720131002185416.01 a0258-7742 aFNSP350182 a19900101a19729999 f ba0 afre aFR aaka 10aCoopération pour le développement aPariscOCDEd1972- aDe 2000 à 2005, appartient au périodique "Les Dossiers du CAD" dont il adopte la volumaison et dont il constitue une livraison annuelle portant le numéro 1 ; à partir de 2006, appartient au périodique "Revue de l'OCDE sur le développement" dont il adopte la volumaison et dont il constitue une livraison annuelle portant le numéro 1. aAnnuel 1aAide au développement (Comité d'aide au développement)x1727-5709 aAide économiquexPériodiques02aOrganisation de coopération et de développement économiquesbComité d'aide au développement4 uhttps://acces-distant.sciences-po.fr/fork?http://titania.sourceocde.org/vl=337820/cl=19/nw=1/rpsv/cgi-bin/jsearch_oecd?limittitles=&cheese=searchdb&oecd-select=home.htm&form=expert&search0=revue+de+l%27ocde+sur+le+developpement&search=&field0=tka&system=oecd_all&sortresultsby=rev_timestamp&what=d11 b(2005) -(2009)cParisdMagasins/AnnexeeP 4° 71561 b(1972) -(1998)cParisdMagasins/AnnexeeP 8° 5039 aZPAY aexempb201106 aGEO RO Pays en voie de développement aDEW 338.901053nas 2200253 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000029001552070110001842100029002943260012003235300029003358560133003649550086004979550131005839570085007140000098042000009804220130319051240.01 a0994-5563 aFNSP425648 a0000098042 a19900101b18431937 ba0 afre aFR aafa 13aLe Correspondant (Paris) 1aT.1-36, 1843-1855 , n.s. T.1-297, oct.1855-oct.1933 (série générale T.37-333) n.s. n° 1-38, 1935-1937 aPariscWailled1843-1937 aMensuel03aLe Correspondant (Paris)4 uhttp://gallica.bnf.fr/ark:/12148/cb34416007p/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 bvol. 89 no. 4 (nov-1872) -no. 1705 (oct-1933)cParisdMagasins/AnnexeeP 8° 04701 bvol.1 (1843) -vol. 26 (1850) ; (1857) -(1869)cParisdMagasins/AnnexeeP 8° 0470zEn dépôt au CEVIPOF, rue de l'Université1 b(1843/1874), (1875/1900) reliés en 1 vol.cParisdMagasins/AnnexeeP Index 008401525cas0 2200409 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150110001600157200002400173210004500197327004400242423005200286423004800338423004700386430004100433452004700474530004200521606002900563607002500592801003000617801003000647801002300677802000700700856006900707856019200776856010800968955000501076992002201081992001201103036251100000086488920130319051240.01 a1120-4982 accn1120-4982 aissn11204982 a0000864889 a19961217a19599999 y0frey0103 ba0 aita aIT abau uu 10aCorriere della sera aMilanocRCS Editoriale quotidianid1959-10aVersion en ligne uniquement via Factiva 1tLe Copertine del Corriere della serax1129-0870 1tI CD rom del Corriere della serax1129-0358 1tI Libri del Corriere della serax1129-0854 1tNuovo corriere della serax1128-255X 1tIl Corriere della sera (CD-ROM)x1128-256813aIl Corriere della serab(Print. 1959) aActualitéxPériodiques aItaliexPériodiques 3aFRbAbesc20050902gAFNOR 3aFRbAbesc20050902gAFNOR 3aFRbISSNc20000630 a0d4 uhttps://acces-distant.sciences-po.fr/fork?http://www.corriere.it4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b aGEO RA6.03 Italie aDEW 05001000cas0 2200301 450 001001000000002001100010005001700021035001700038035001500055100004100070101001800111102000700129105001800136106000600154110001600160200001500176207002000191210003100211300002500242301004300267530002400310607005800334607005600392801003000448856014500478955005500623991002000678050935763000109461720130319051241.0 accn0105/5704 a0001094617 a19830101b189619 m y0frey0103 ba0 afreaenggfre aFR a 0  ar aauu 0 10aCosmopolis 0aVol.1(1896)-... aPariscA. Colind1896-19?? aRevue internationale aDemande de numérotation ISSN en cours10aCosmopolisb(Paris) aFrancexVie intellectuellez19e sièclexPériodiques aFrancexVie intellectuellez1900-1945xPériodiques 3aFRbAbesc20060307gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb327493131/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1896-1898)1 b(1896) -(1898)cParisdMagasins/AnnexeeP 8° 0794 aPériobTP02 P800925nas 2200289 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200007100148210008400219326001700303530004100320606002900361710005200390801001300442856003900455856005200494955006800546972000900614992001200623069458790000048165920130918153912.01 a1761-5771 a b20022008k fre ba0 afre aFR a 0  ar aai z 0 10aCosmopolitiques‎ecahiers théoriques pour l'écologie politique aLa Tour d'Aigues‎cÉd. de l'Aube‎aParis‎cCosmopolitiques‎d2002-2008 a3 nos par an aCosmopolitiques‎bLa Tour d'Aigues aEcologismexPériodiques02aAssociation des Amis de Cosmopolitiques (Paris) 0aFRbFNSP4 uhttp://cosmopolitiques.phpnet.org/ zContenu : Texte intégral des articles publiés1 bno. 1 (2002) -no. 17 (2008)cParisdMagasins/AnnexeeP 8° 6639 aZCAD aDEW 32000818nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000047001502100034001973360047002316060036002787120052003148010013003668560063003798560070004429550005005129920012005179920011005290001159447000115944720130319051241.0 a0001159447 a a20089999k fre 01 ba0 afre aFR ar aaz z  adr 10aCosmopolitiquesb[Ressource électronique] aPariscCosmopolitiquesd2008- aSite web : accès thématique aux articles aEcologismexRessources Internet02aAssociation des Amis de Cosmopolitiques (Paris) 0aFRbFNSP4 uhttp://cosmopolitiques.phpnet.org/cosmopolitiques/spip.php zContenu : texte intégral d'une sélection d'articles depuis 20061 r aDEW 320 aGEO RQ01121nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200004600138210003500184300010800219326001100327430006800338530004600406606004600452606003600498712003600534801002100570856004200591856005300633955007000686972000900756991001800765992001200783039154777000007127220130329144129.0 a0198-9669 aFNSP326771 a0000071272 a19900101a00019999 ba0 aeng aUS10aCountry reports on human rights practices aWashington, D.C.cUSGPOd0001- aEd. 2006 disponible uniquement en ligne ; 2010 dernière éd. papier, voir ensuite en version en ligne. aannuel 1aReport on human rights pratices in countries receiving U.S. aid00aCountry reports on human rights practices aDroits civils et politiquesxPériodiques aDroits de l'hommexPériodiques02aEtats-UnisbDepartment of State 3aFRbCCN0198-96694 uhttp://www.state.gov/j/drl/rls/hrrpt/4 zContenu : texte intégral du rapport depuis 19991 b(1986)-(2005) ; (2007)-(2010)cParisdMagasins/AnnexeeP 8° 5181 aZPAY aexempb201106 aDEW 32300904nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000107001502070010002572100035002672300028003023260011003306060046003416060036003877100036004238010013004598560092004729550005005649920021005699920012005900001239085000123908520130517155603.0 a0001239085 a a19999999k fre 01 ba0 aeng aUS ar aak z  adr 10aCountry reports on human rights practicesb[Ressource électronique] /Etats-Unis.bDepartment of State 1a1999- aWashington, D.C.cUSGPOd1999- aRessource électronique aAnnuel aDroits civils et politiquesxPériodiques aDroits de l'hommexPériodiques02aEtats-UnisbDepartment of State 0aFRbFNSP4 uhttp://www.state.gov/j/drl/rls/hrrpt/zAccès au texte intégral du rapport depuis 19991 r aGEO RQ Universel aDEW 32301692cas0 2200385 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164105001800171106000600189110001600195200019900211210003600410436010700446436011700553440009900670510009800769530010100867531007400968710005101042801003001093801002301123802000701146830000901153856005701162955007201219991001501291036768316000112748920130319051242.0 a1812-0210 a080068952 accn0110/6872 aissn18120210 a0001127489 a19830101b1931194 k y0frey0103 ba0 amul aNL ay 0  ar aaua 0 10aCour permanente de justice internationalehSérie A/BiArrêts, ordonnances et avis consultatifsd= Permanent Court of International JusticehSeries A/B,iJudgments, orders and advisory opinions aLeydecA.W. Sijthoffd1931-194? 1tPublications de la Cour permanente de justice internationale. Série A. Recueil des arrêtsx1812-0199 1tPublications de la Cour permanente de justice internationale. Série B. Recueil des avis consultatifsx1812-0202 1tReports of judgments, advisory opinions and orders (International Court of Justice)x0074-444110aPermanent Court of International JusticehSeries A/BiJudgments, orders and advisory opinions10aCour permanente de justice internationale. Série A/B. Arrêts, ordonnances et avis consultatifs 0aCour perm. justice int., Sér. A/B, Arrêts ordonnances avis consult.02aCour permanente de justice internationale4070 3aFRbAbesc20050531gAFNOR 3aFRbISSNc20030523 a00 asdy0 uhttp://www.icj-cij.org/pcij/index.php?p1=9&p2=3&p3=21 bno. 40 (1931) -no. 79 (1939)cParisdMagasins/AnnexeeCOL8°1074 AB aPériobTZ00854nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002800139210002900167326003000196517002200226601002500248606002900273606002600302712001100328801002100339856003500360955007300395955006300468972000900531992001200540039379981000001521620130513165452.0 a0304-3118 aFNSP141690 a19900101b19482002 f ba0 afre aFR aafu 13aLe Courrier de l'Unesco aPariscUnescod1948-2001 aMensuel [puis] semestriel10aCourrier - Unesco02aUnescoxPériodiques aEthnologiexPériodiques aCulturexPériodiques02aUnesco 3aFRbCCN0304-31184 uhttp://www.unesco.org/courier/1 bvol. 1 no. 1 (1948) -(déc-1999)cParisdMagasins/AnnexeeP F° 00201 b(jan-2000) -(dec-2001)cParisdMagasins/AnnexeeP 4° 6897 aZECH aDEW 00101020cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001400069035001500083100004100098101000800139102000700147105001800154106000600172110001600178200004700194210006100241326001400302430004400316801003000360801001300390802000700403856003800410856009700448955008700545972000900632992001600641992002500657040221164000045129320130319051242.01 a1252-1574 accn1252-1574 aEvry24450 a0000451293 a19940202a19949999m h0frey0103 ba0 afre aFR a 0  ar aaea 0f 13aLe Courrier des maires et des élus locaux aPariscLe Courrier des maires et des élus locauxd1994- aBimensuel 1tLe Courrier du maire (Paris)x1249-6936 3aFRbAbesc20081203gAFNOR 0aFRbFNSP a074 uhttp://www.courrierdesmaires.com/ zContenu : archives juridiques depuis mars 2003, dossiers et guides et diverses informations.1 bConservation limitée aux 5 dernières annéescParisdMagasins/AnnexeeP 4° 6913 aZPAY aDEW 350-354 aGEO RA4.06 France 0101844nas 2200433 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210005000185300004800235300014100283326002600424326002300450440003000473607004700503607005500550607004800605607005900653607004400712607005100756710009300807801002100900856009100921856010801012955012201120957007401242972000901316992003201325992002001357992001901377992001401396039614905000000403820130319051242.01 a0590-0239 aFNSP104556 a0000004038 a19900101b19642008 ba0 afre aFR aafu 10aCourrier des pays de l'Est aPariscLa Documentation françaised1964-2008 aChange de système de numérotation en 2000 aA l'automne 2008, Le Courrier des pays de l'Est cesse de paraître pour faire place à Grande Europe, une revue exclusivement numérique aBimestrielb2004-2008 aMensuelb1964-2003 1aGrande Europe,x1760-5849 aEx-URSSxCommerce extérieurxPériodiques aEurope de l'estxCommerce extérieurxPériodiques aURSSxConditions économiquesxPériodiques aEurope de l'EstxConditions économiquesxPériodiques aURSSxCommerce extérieurxPériodiques aEx-URSSxConditions économiquesxPériodiques02aCentre d'études et de documentation sur l'URSS, la Chine et l'Europe de l'Estc(France) 3aFRbCCN0590-02394 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue.php?ID_REVUE=CPE zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 38 (sep-1965) -no. 445 (dec-1999) ; no. 1001 (jan-2000) - no. 1066 (mar-2008)cParisdMagasins/AnnexeeP 4° 21901 b(1977) -(1984) ; (1984) -(1988)cParisdMagasins/AnnexeeP Index 0546 aZPAY aGEO RA2.02 Europe orientale aGEO RA7.01 URSS aGEO RA7.03 CEI aDEW 330.901116cas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003000139210008600169326001600255452005600271530004900327606003000376710007800406801002100484830005300505856010100558955007900659972000900738991001800747992002100765992001600786039255468000001498320131004144125.01 a0151-9514 aFNSP141119 a19900101b19772009 ba0 afre aFR aahu 10aCourrier des statistiques aPariscInstitut national de la statistique et des études économiquesd1977-2009 aTrimestriel 1ttCourrier des statistiques (En ligne)‎x2107-090310aCourrier des statistiques‎bEd. française aStatistiquexPériodiques02aInstitut national de la statistique et des études économiquesc(France) 3aFRbCCN0151-9514 a1977-2000 : collection envoyée au CTles en 20134 uhttp://www.insee.fr/fr/ppp/collections.htmzContenu : texte intégral depuis le n°90, juin 19991 bno. 1 (jan-1977) -no. 95/96 (dec-2000)cParisdMagasins/AnnexeeP 4° 4079 aZPAY aexempb201306 aGEO RQ Universel aDEW 310-31901253nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200008100139210002800220326001700248517003400265530008300299606003700382607002700419712007100446801002100517856021500538955006300753957006700816991001800883992002400901992001400925036232556000001528220130921140350.01 a0577-148X aFNSP141845 a19900101a19589999 ba0 afre aBE aaca 10aCourrier hebdomadairefCentre de recherche et d'information socio-politiques aBruxellescCRISPd1958- aHebdomadaire10aCourrier hebdomadaire - CRISP10aCourrier hebdomadaire du Centre de recherche et d'information socio-politiques aProblèmes sociauxxPériodiques aBelgiquexPériodiques02aCentre de recherche et d'information socio-politiquesc(Bruxelles) 3aFRbCCN0009/03604 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-courrier-hebdomadaire-du-crisp.htm?zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 0 (dec-1958) -….cParisdMagasins/AnnexeeP 4° 19961 b(1959/1968), (1969/1978)cParisdMagasins/AnnexeeP Index 0527 aexempb201305 aGEO RA4.04 Belgique aDEW 949.301126nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210004100189326001700230421005800247421006700305606002900372856019200401856010800593955006900701955006600770992001200836001814850000002011920130319051242.01 a1154-516X aFNSP154467 a0000020119 a19901212a19909999 ba0 afre aFR aaca 00aCourrier international (Paris) aPariscCourrier internationald1990- aHebdomadaire 1aLes Dossiers de Courrier international < P 8° 6338 > 1aCourrier international. Hors-série (1169-114X) < P 4° 6087 > aActualitéxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bL'année en courscParisd27, Salle Rez-de-chausséeeP F° 04991 bno. 0 (25 oct-1990) -....cParisdMagasins/AnnexeeP F° 0499 aDEW 05001477nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005300163210003100216326002500247326002700272326002900299430004300328530001800371532002000389606003900409801001300448856005600461856005500517856010300572856010800675856010900783856010800892955007001000972000901070992001201079044758006000061500120130319051243.01 a1028-6632 a0000615001 a a19989999 fre 01 ba0 aeng aGB a 0  ar aai z 0 10aCPethe international journal of cultural policy aAbingdoncRoutledged1998- a5 n°s par an$d2011- aTrimestriel$d2007-2010 a3 n°s par an$d1998-2006 1tJournal of cultural policy,x1074-689700aCPbAmsterdam10aCultural policy aPolitique culturellexPériodiques 0aFRbFNSP4 uhttp://www.tandf.co.uk/journals/titles/10286632.asp zSommaires et résumés depuis le vol.8, n°1, 20024 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=300247 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713639985db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 9 no. 1 (mar-2003) -....cParisdMagasins/AnnexeeP 8° 6754 aZPAY aDEW 00100914nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200001400163207003700177210005300214326001700267430005400284517003500338601003900373606004200412801001300454856002300467955007500490992001200565992002300577037359339000028816220130319051243.0 a1521-5997 a0000288162 a a19989999k fre ba0 aeng aUS a 0  ar aac z 0 10aCQ weekly 1aVol. 56, no. 16 (Apr. 18, 1998)- aWashington, D.C.cCongressional Quarterlyd1998- aHebdomadaire 1tCongressional quarterly weekly report,x0010-591010aCongressional quarterly weekly02aEtats-UnisbCongressxPériodiques aPrésidentsyEtats-UnisxPériodiques 0aFRbFNSP uhttp://www.cq.com/1 bvol. 56 no. 16 (18 avr.1998) -....cParisdMagasins/annexeeP 4° 2179 aDEW 328 aGEO RC2 Etats-Unis01111cas0 2200361 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147105001800154110001600172200003400188207002300222210006100245326001600306430003700322517002200359530003000381801003000411801002300441801003000464801002300494802000700517856006400524856008100588955006600669992001400735074100254000113074920130319051243.01 a1532-687X a076863158 aissn1532687X a0001130749 a20030917a20019999k y0frey0103 ba0 aeng aUS a 0  aaia 0uu 10aCRethe new centennial review 1avol.1, no. (2001)- aEast Lansing, MIcMichigan State University Pressd2001- a3nos par an 1tThe Centennial reviewx0162-017710aCentennial review10aCRb(East Lansing, Mich.) 3aFRbAbesc20090308gAFNOR 3aFRbISSNc20090225 3aFRbAbesc20080130gAFNOR 3aFRbISSNc20000630 a014 uhttp://msupress.msu.edu/journals/cr/index.php?Page=subguide zContient le sommaire et le résumé des n°s depuis le vol. 1, n° 1 de 20011 bvol. 6 no. 1 (2006) -....cParisdMagasins/AnnexeeP 8° 7006 aDEW 320.501761nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200018600163210002300349300010800372326001500480430006900495510007000564530007100634606004900705712010100754801001300855830007000868856013000938856010801068955006701176972000901243992001401252992001601266992005101282992004201333145979040000050357020130319051244.01 a2218-0893 a0000503570 a a20009999k fre ba0 amul aII a 0  ar aag z 0 10aCreditor reporting system : aid activities =dSystème de notification des pays créanciers : activités d'aidefDevelopment Assistance Committee =fComité d'aide au développement aPariscOECDd2000- achaque n° est consacré à un ensemble de pays, mais le n° n'est pas constant d'une année à l'autre aBimestriel 1tQuarterly report on individual aid commitmentsx(ISSN 1023-8875)10aSystème de notification des pays créanciers : activités d'aide00aCreditor reporting system on aid activitiesb(Bilingual ed. Print) aAide économiquexStatistiquesxPériodiques02aOrganisation de coopération et de développement économiquesbComité d'aide au développement 0aFRbFNSP al'ISSN imprimé sur la publication est celui du titre précédent4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/10238875/statnotificationpayscreanciersactaide zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 3 ( 2000) -no 5 (2003)cParisdMagasins/annexeeP 4° 6419 aZGRA aDEW 338.9 aDEW 310-319 aGEO RN1 Pays industrialisés, pays occidentaux aGEO RO Pays en voie de développement01210nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003300139210003700172210004600209326002700255326003100282326002900313430003500342434003700377606003900414606003800453606003100491856012800522856010800650955007100758972000900829991001800838992001600856040037231000002889920140114095314.01 a0925-4994 aFNSP180076 a19910404a19919999 ba0 aeng aNL aaga 10aCrime, law and social change aDordrecht‎cSpringer‎d2004- aDordrecht [etc.]‎cKluwer‎d1991-2004 a10nos par an‎b2004- a8 nos par an‎b1993-2003 aBimestriel‎b1991-1992 1aContemporary crisesx0378-1100 1aCorruption and reformx0169-7528 aCorruption politiquexPériodiques aCrimes et criminelsxPériodiques aCriminologiexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=CRG&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 15 no. 1 (Jan-1991) -....cParisdMagasins/AnnexeeP 8° 3957 aZSAB aexempb201103 aDEW 364-36501243nls 2200361 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000072001642070017002362100046002532300005002993260020003043360056003243370071003806060031004517100026004828010013005088560090005218560108006118560050007198560058007699550005008279920033008329920016008650000802827000080282720130319051244.01 a0192-3234 a0000802827 a a19799999k fre 01 ba0 aeng aUS az aay z  adr 10aCrime and justiceb[Ressource électronique]fUniversity of Chicago 1aN°1 (1979)- aChicago, IIIcUniversity of Chicago Press a a1 ou 2 n° / an aDonnées textuelles accessibles uniquement en ligne aTéléchargement de fichiers TIFF, PDF (recommandé) ou PostScript aCriminologiexPériodiques02aUniversity of Chicago 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01923234.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.journals.uchicago.edu/CJ/home.html zContenu : accès aux sommaires depuis le vol. 1, 19791 r aGEO RS Sans aspect régional aDEW 364-36501285nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200006600163210003100229326001600260430005300276607004600329607002300375801001300398856010300411856010800514856010900622856010800731955007100839972000900910992001200919992001600931055762778000038518120130319051247.01 a1467-2715 a0000385181 a a20019999k fre ba0 aeng aGB a 0  ar aah z 0 10aCritical Asian studiesfCommittee of concerned Asian scholars aAbingdoncRoutledged2001- aTrimestriel 1tBulletin of concerned Asian scholars,x0007-4810 aAsiexEtude et enseignementxPériodiques aAsiexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=107513 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713695955db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 33 no. 1 (mar-2001) -....cParisdMagasins/AnnexeeP 4° 3033 aZCAD aDEW 950 aGEO RH Asie01350nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210005700174210003200231320002600263326001600289530003600305606004600341710004800387856005300435856008300488856010900571856010800680955014800788972000900936991001800945992002300963992001400986039988694000001090220130319051247.01 a0891-3811 aFNSP120950 a0000010902 a19900717a19879999 ba0 aeng aUS aaha 10aCritical review a[New YorkcLibertarian Review Foundation]d1987-2006 aaAbingdoncRoutledged2007- aN' a pas paru en 2002 aTrimestriel10aCritical reviewbNew York, N.Y. aLibertarianismeyEtats-UnisxPériodiques02aLibertarian Review Foundationc(Etats unis)4 uhttp://www.sevenbridgespress.com/cr/crindex.html zContenu : sommaires depuis le vol. 1, n°2, 1987 ; résumés à partir de 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t778142998db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 2 no. 4 (1988) -....cParisdMagasins/AnnexeeP 8° 5605wManquant : vol. 2, no. 1, 1988 ; vol. 8, no. 4, 1994 ; vol. 10, nos 1 à 4, 1996 aZSAB aexempb201204 aGEO RC2 Etats-Unis aDEW 320.501200nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006900154210002400223326002700247326002400274606004000298856012800338856010800466856010900574856010800683955006600791972000900857991001800866992001400884036839086000026641820130319051247.01 a1369-8230 aFNSP923855 a0000266418 a19990212a19989999 ba0 aeng aGB aaha 10aCritical review of international social and political philosophy aLondoncCassd1998- aTrimestrielb1998-2010 a5 nos par anb2011- aPhilosophie politiquexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=6ZQ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713634601db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1998) -....cParisdMagasins/AnnexeeP 8° 6459 aZSAB aexempb201301 aDEW 320.500940nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002300139210004300162326002200205326002700227326002900254430003700283606002900320856023300349955007100582972000900653992001200662040000184000001528120131017160853.01 a0896-9205 aFNSP141844 a19901019a19889999 ba0 aeng aUS aaha 10aCritical sociology aEugene, OrecCritical sociologyd1988- aBimestrielb2007- aTrimestrielb2005-2006 a3 n°s par anb1988-2004 1aInsurgent sociologistx0047-0384 aSociologiexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=C1O&site=ehost-livezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 15 no. 1 (pri-1988) -....cParisdMagasins/AnnexeeP 8° 3443 aZPAY aDEW 30101046nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007600154207002200230210003200252326001200284530002200296606005300318676000800371801002100379856008700400856010800487955006300595972000900658991001800667992001400685992002100699039222519000001545920140109151552.01 a0011-1600 aFNSP142167 a0000015459 a19900101a19469999 ba0 afre aFR aafa 10aCritiqueerevue générale des publications françaises et étrangères 1ano. 1 (jun-1946)- aPariscEd. de Minuitd1946- aMensuel10aCritiqueb(Revue) aLittératurexHistoire et critiquexPériodiques a001 3aFRbCCN0011-16004 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-critique.htm4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (jun-1946) -....cParisdMagasins/AnnexeeP 8° 0565 aZPAY aexempb201101 aDEW 80-89 aGEO RQ Universel01249nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007100154210007200225300006500297326002700362326002300389430003500412440004600447447004100493530003300534606002900567710004800596801002100644856004500665955008000710955007400790992002100864992001400885039591689000001518720130319051247.01 a0398-2068 aFNSP141617 a0000015187 a19900101a19759999 ba0 afre aFR aafa 10aCritique communistefrevue de la Ligue Communiste Révolutionnaire aPariscEditions de la Taupe Rouged1976-2009aMontreuilcLa Brèche aA la suite d'une erreur de l'éditeur le n°164 n'existe pas aTrimestrielb1994-2009 aMensuelb1976-1993 1aMarx ou crèvexISSN 0398-205X 1tContreTempserevue de critique communiste 1tContretemps (Paris. 2001)x1633-597X00aCritique communisteb(Paris) aCommunismexPériodiques02aLigue communiste révolutionnairec(France) 3aFRbCCN0398-20684 uhttp://orta.dynalias.org/critiqueco/home1 bno. 1 (avr/mai-1975) -no. 33 (oct-1980)cParisdMagasins/AnnexeeP 8° 37701 bno. 34 (jul-1981) -no. 173 (2004)cParisdMagasins/AnnexeeP 4° 4628 aGEO RQ Universel aDEW 320.501430nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210004100188320001700229326001600246530004100262606003200303606005500335606003600390676000800426710006300434856010300497856010800600856006300708856009900771955006700870955005900937972000900996991001801005992001201023992000901035004430697000025904720131219161427.01 a1290-7839 aFNSP901881 a0000259047 a19981104a19989999 ba0 afre aFR aaha 10aCritique internationalefCERI aPariscPresses de Sciences Pod1998- aIndex annuel aTrimestriel10aCritique internationalebParis. 1998 aGéopolitiquexPériodiques aRelations internationalesxRecherchexPériodiques aScience politiquexPériodiques a32702aCentre d'études et de recherches internationalesc(Paris)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-critique-internationale.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr/web/revues/home/prescript/revue/criti zAccès libre au texte intégral. Accès au texte intégral numérisé via Persée de 1998-20001 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bno. 1 (1998) -....cParisdMagasins/AnnexeeP 8° 6438 aZCAD aexempb201301 aDEW 327 aPBUL01250nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002900139210004700168326002300215326002100238452005000259530002900309606003200338801002100370856010100391856010800492856010800600856010800708955006900816972000900885991001800894992001200912039401677000001528920130911114518.01 a0308-275X aFNSP141859 a19900101a19749999 ba0 aeng aNL aahu 10aCritique of anthropology aAmsterdamcCritique of anthropologyd1974- aTrimestrielb1991- a3 nosb1974-1990 1tCritique of anthropology (Online),x1460-3721 aCritique of anthropology aAnthropologiexPériodiques 3aFRbCCN0308-275X4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101615 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 9/10 (1977) -....cParisdMagasins/AnnexeeP 8° 4383 aZPAY aexempb201106 aDEW 30101106cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200003000179210003600209421003800245430003800283440004500321530003000366531001800396801003000414801002300444802000700467856014400474955005500618991002000673991007500693037470000000109548220130319051247.0 a1770-6955 accn0124/8979 aissn17706955 a0001095482 a19830101b18721889 0frey0103 ba0 afre aFR ar aaf 13aLa Critique philosophique aPariscG. Baillièred1872-1889 |tLa Critique religieusex1770-6947 1tL'Année philosophiquex1770-6939 1tL'Année philosophique (1890)x1770-696303aLa Critique philosophique 0aCrit. philos. 3aFRbAbesc20061003gAFNOR 3aFRbISSNc20051001 a074 uhttp://gallica.bnf.fr/ark:/12148/bpt6k375765s.image.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1878-1885)1 b(1872) -(1885)cParisdMagasins/AnnexeeP 8° 1161 aPériobTP02 P8 anumer0 (?? d'après gallica on dirait une bibliographie, rien de plus)00986nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004400163210005700207326001600264517000900280606004400289607005000333710004500383801001300428856004600441856004500487955006700532972000900599992001200608992004000620036711020000052877620130319051247.01 a1331-1182 a0000528776 a a19959999k fre ba0 aeng aHR a 0  ar aah z 0 10aCroatian international relations review aZagrebcInstitute for international relationsd1995- aTrimestriel10aCIRR aRelations internationalesxPériodiques aCroatiexRelations extérieuresxPériodiques02aInstitut za medunarodne odnosec(Zagreb) 0aFRbFNSP4 uhttp://www.imo.hr/economics/publics/cirr/ zContenu : sommaires depuis le n°1, 19951 bvol. 5 no. 14 (1999) -....cParisdMagasins/AnnexeeP 4° 6974 aZSAB aDEW 327 aGEO RA8.23 Croatie (depuis 1991-92)00920nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001391100016001452000013001612100031001743260014002054400048002195300013002676060029002806070025003098010021003348560145003559550084005009920022005849920012006060000015447000001544720130319051248.0 a0242-6412 aFNSP142151 a0000015447 a19900101b18801968 ba0 afre aFR ar acau 13aLa Croix aPariscLa Croixd1880-1968 aquotidien 1aJournal La Croix (0242-6404)

03aLa Croix aActualitéxPériodiques aFrancexPériodiques 3aFRbCCN0242-64124 uhttp://gallica.bnf.fr/ark:/12148/cb343631418/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé par Gallica (1880-1944)1 béd. microfilm : 1 er fev.1945---> 31 déc. 1968cParisdMagasinseP Mic 35 (5) aGEO RA4.06 France aDEW 05001310nas 2200349 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000020001552100027001753260014002024300050002165170028002665300020002946060029003146070025003438010021003688560192003898560108005818560028006899550088007179550068008059550053008739920022009269920012009480000015424000001542420130319051248.01 a0242-6056 aFNSP142113 a0000015424 a19900101a19759999 ba0 afre aFR acaa 13aLa Croix (1975) aPariscLa Croixd1975- aQuotidien 1aJournal La Croix (0242-6404) < P Mic 35 (5) >10aLa Croix, l'évènement03aLa Croix (1975) aActualitéxPériodiques aFrancexPériodiques 3aFRbCCN0242-60564 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.la-croix.com1 bEd. en microfilm : (18 fév. 1975-1980)cParisdSalle des microformeseP Mic 35 (5)1 bLe mois en courscParisd27, Salle Rez-de-chausséeeP F° 12531 b(1981) -....cParisdMagasins/AnnexeeP F° 1253 aGEO RA4.06 France aDEW 05000972nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210003900182326001600221430004100237606003600278710004000314856010800354856010800462955006900570972000900639991001800648992001600666040305694000011226620130319051248.01 a1069-3971 aFNSP473402 a0000112266 a19900101a19939999 ba0 aeng aUS aaha 10aCross-cultural research aThousand Oaks, Calif.cSaged1993- aTrimestriel 1aBehavior science researchx0094-3673 aSciences socialesxPériodiques02aSociety for Cross-Cultural Research4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 27 no. 1/2 (1993) -....cParisdMagasins/AnnexeeP 8° 2218 aZSAB aexempb200908 aDEW 305-30601444nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210006200179326002200241326002600263606005400289607005400343607003500397607005400432710004600486801002100532856007000553856007300623856008700696856004700783955014300830972000900973991001800982992002801000992001801028992001201046013577654000001529020130319051248.01 a0011-2356 aFNSP141862 a0000015290 a19900101a19429999 ba0 aspa aMX aaha 10aCuadernos americanos aMéxicocUniversidad Nacional Autónoma de Méxicod1942- aTrimestrielb2006 aBimestrielb1942-2005 aSciences socialesyAmérique latinexPériodiques aEuropexRelationsyAmérique latinexPériodiques aAmérique latinexPériodiques aAmérique latinexRelationsyEuropexPériodiques02aUniversidad nacional autónoma de México 3aFRbCCN0011-23564 uhttp://w3.univ-tlse2.fr/ipealt/cedocal/revues/camericanos/cua.htm zContenu : sommaires du n°78, 1999 au n°103, 2004 (site du CEDOCAL)4 uhttp://dialnet.unirioja.es/servlet/revista?tipo_busqueda=CODIGO&clave_revista=5544 zContenu : sommaires depuis le n°103, 20041 bvol. 5 no. 3 (1946) ; vol. 11 no. 3 (1952) -vol. 45 no 3 (1986) ; nlle série vol. 1 no 1 (1987) -....cParisdMagasins/AnnexeeP 8° 1141 aZPAY aexempb201207 aGEO RD Amérique latine aGEO RA Europe aDEW 98001155nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006900154210004500223300003200268326001600300430006200316606004900378606004000427710006800467856008600535856008700621955005900708972000900767991001800776992002300794992001200817059854200000022563620130319051248.01 a1135-0679 aFNSP805916 a0000225636 a19900101a19949999 ba0 aspa aES aaha 10aCuadernos constitucionales de la Cátedra Fadrique Furió Ceriol aValenciacUniversidad de Valenciad1994- aArrive avec 4 ans de retard aTrimestriel 1aCuadernos de la Catedra Fadrique Furio Ceriol,x1133-7087 aDroit constitutionnelyEspagnexPériodiques aDroit constitutionnelxPériodiques02aUniversidad de ValenciabDepartamento de derecho constitucional4 uhttp://dialnet.unirioja.es/servlet/revista?tipo_busqueda=CODIGO&clave_revista=345 zContenu : sommaires depuis le n°1, automne 1992 ; quelques n° en texte intégral1 bno. 8 (1994) -....cParisdMagasins/AnnexeeP 8° 6354 aZSAB aexempb201301 aGEO RA6.02 Espagne aDEW 34201335cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200009300180207002700273210007200300326001600372606004400388607005300432676000800485710006700493801003000560801002300590802000700613856008400620856007600704955015600780992001600936992002100952076152448000115222420131217100358.01 a1696-8441 aissn16968441 a0001152224 a20040202a20039999k 0frey0103 ba0 aspa aES ay 0  ar aah 0 10aCuadernos de pensamiento políticofFundación para el análisis y los estudios sociales 0aN°1 (Octubre, 2003) - aMadridcFundación para el Análisis y los Estudios Socialesd2003- aTrimestriel aRelations internationalesxPériodiques aEspagnexPolitique et gouvernementxPériodiques a32002aFundación para el análisis y los estudios socialesc(Madrid) 3aFRbAbesc20080604gAFNOR 3aFRbISSNc20030523 a0u4 uhttp://www.fundacionfaes.org/es/publicaciones/cuadernos_de_pensamiento_politico zContient : sommaires et texte intégral des n°s depuis le no. 1 (2003)1 bno. 2 (mar-2004) -no. 3 (jun/sep-2004) ; no. 17 (jan/mar-2008) -no. 22 (avr/jun-2009) ; no. 30 (avr/jun-2011) -....cParisdMagasins/AnnexeeP 8° 7049 aDEW 320-321 aGEO RQ Universel01030nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210008800180326001500268606005400283607005100337710008300388856009000471856003700561955006000598972000900658991001700667992002800684992001600712037385348000001578020130319051249.01 a0798-1406 aFNSP143168 a0000015780 a19901025a19859999 ba0 aspa aES aaka 10aCuestiones políticas aMaracaibocCentro de investigaciones y estudios políticos y administrativosd1985- aSemestriel aScience politiqueyAmérique latinexPériodiques aAmérique latinexAdministrationxPériodiques02aCentro de investigaciones y estudios políticos y administrativosc(Maracaibo)4 uhttp://www.serbi.luz.edu.ve/scielo.php?script=sci_issues&pid=0798-1406&lng=en&nrm=iso zAccès libre au texte intégral.1 bvol. 1 (1985) -....cParisdMagasins/AnnexeeP 8° 5306 aZSAB aexemp$201111 aGEO RD Amérique latine aDEW 320-32101156cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101001300142102000700155110001600162200008400178207001900262210005400281326001500335530002200350606004600372606004000418606005000458710004600508801003000554801002300584802000700607856004200614856003600656955006400692992002400756992001400780039959716000115176020130319051249.01 a0870-4546 accn0870-4546 aissn08704546 a0001151760 a19870119a19829999k a0frec0103 ba0 aporaeng aPT az uu 10aCulturaerevista de historia e teoria das ideiasfCentro de historia da cultura 0aVol. 1 (1982)- aLisboacUNL, Centro de historia da culturad1982- aSemestriel10aCulturab(Lisboa) aIdées politiquesxHistoirexPériodiques aPhilosophie politiquexPériodiques aPhilosophie politiqueyPortugalxPériodiques02aCentro de historia da culturac(Lisbonne) 3aFRbAbesc20080124gAFNOR 3aFRbISSNc20071003 a184 uhttp://www.fcsh.unl.pt/chc/pg_pub.htm zAccès libre au texte intégral1 bvol. 16/17 (2003) -....cParisdMagasins/AnnexeeP 8° 7047 aGEO RA6.01 Portugal aDEW 320.501290nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210003100179326001600210517002600226517002700252530003200279606003700311606004400348676000800392710004200400856002900442856005300471856009900524856010800623955006700731955006400798972000900862992001200871992001200883992000900895039934837000003051220131219161500.01 a1157-996X aFNSP184800 a0000030512 a19910423a19909999 ba0 afre aFR aaha 10aCultures et conflits aaPariscL'Harmattand1991- aTrimestriel10aCulturas y conflictos10aCultures and conflicts10aCultures et conflitsbRevue aViolence politiquexPériodiques aRelations internationalesxPériodiques a32702aCentre d'étude des conflitsc(Paris)4 uhttp://www.conflits.org/ zContenu : texte intégral depuis le n°41, 2001.4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-cultures-et-conflits.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bno. 1 (1990/1991) -....cParisdMagasins/AnnexeeP 8° 5709 aZCAD aDEW 303 aDEW 327 aPBUL01521nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006500154210005400219326001600273452005100289606003200340710005600372801002100428856012800449856010800577856010100685856010800786856009000894856010800984955007001092972000901162992001201171038695332000001573620130319051251.01 a0011-3204 aFNSP142996 a0000015736 a19900101a19609999 ba0 aeng aUS aahu 10aCurrent anthropologyea world journal of the sciences of man aChicago, Ill.cUniversity of Chicago Pressd1960- aTrimestriel 1tCurrent anthropology [Ressource électronique] aAnthropologiexPériodiques02aWenner-Gren Foundation for Anthropological Research 3aFRbCCN0011-32044 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=CUA&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=104228 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00113204.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 2 (mar-1960) -....cParisdMagasins/AnnexeeP 4° 1977 aZPAY aDEW 30101210cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157110001600175200008700191210004800278326001500326606003000341710005600371801003000427801002300457802000700480856021800487856007600705955007100781992002100852992001100873048699039000120482520130319051251.01 a0963-7214 accn0963-7214 aissn09637214 a0001204825 a20000228a19929999k y0frey50 ba0 aeng aUS ay 0  aaga 0 10aCurrent directions in psychological sciencefAssociation for psychological science aNew YorkcCambridge University Pressd1992- aBimestriel aPsychologiexPériodiques02aAssociation for psychological scienceb(Etats-Unis) 3aFRbAbesc20081202gAFNOR 3aFRbISSNc19990923 a024 uhttps://acces-distant.sciences-po.fr/fork?http://cdp.sagepub.com/?&MDP-WSSO-SESSION=563f0690f746afb29bdc01d9eede8956&error=Votre%20session%20a%20expir%E9,%20merci%20de%20vous%20authentifier%20de%20nouveau&status=2 zContenu: sommaires et texte intégral depuis le vol. 1 no. 1 (fev-1992)1 bvol. 19 no. 4 (aou-2010) -....cParisdMagasins/AnnexeeP 4° 7296 aGEO RQ Universel aDEW 1501204nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000590015420700320021321000410024530000780028632600120036453000280037660600320040460600390043667600080047585600350048385601080051895500670062695500730069395500790076697200090084599200120085403869557X000000407820130319051251.01 a0011-3530 aFNSP104746 a0000004078 a19900101a19419999 ba0 aeng aUS aafu 10aCurrent historyethe monthly magazine of world affairs 1aVol. 1, no. 1 (Sept. 1941)- aNew York, N.YcEvents Pub. Cod1941- aArticles de 1941 à 1995 reproduits sur la base de données PCI Full Text aMensuel10aCurrent historyb(1941) aGéopolitiquexPériodiques aHistoire universellexPériodiques a3274 uhttp://www.currenthistory.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 62 no. 367 (mar-1972) -....cParisdMagasins/AnnexeeP 4° 06951 b(jul-1946) -vol. 62 no. 366 (fev-1972)cParisdMagasins/AnnexeeP 8° 0238 aZGRA aDEW 90901677nas 2200421 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005300154210002900207210003300236210003600269210003100305300021300336326002200549326002700571326002800598510002900626606002900655710004500684801002100729856003800750856006900788856010800857856010800965955007001073955005401143972000901197991001601206992002101222992001201243038695758000000891720130711152349.01 a0011-3921 aFNSP115816 a0000008917 a19900101a19529999 ba0 amul aUS aahu 10aCurrent sociologyd= La Sociologie contemporaine aPariscUnescod1952-1957 aLondoncBlackwelld1958-1965 aParis [etc.]cMoutond1966-1975 aLondon [etc.]cSaged1976- aLes nos 1 et 2/3 du vol. 1 (1952/53) ; 2/3 du vol. 2 (1953/54) ; 2/3 du vol. 3 (1954/55) et 2/3 du vol. 4 (1955) constituent : "International bibliography of sociology" qui paraîtra séparément par la suite aBimestrielb2001- aTrimestrielb1997-2000 a3 nos par anb1952-199610aSociologie contemporaine aSociologiexPériodiques02aAssociation internationale de sociologie 3aFRbCCN0011-39214 uhttp://www.ucm.es/info/isa/cs.htm zContenu : sommaires depuis 1996 ; grands thèmes de 1952 à 19954 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 28 no. 1 (pri-1980) -....cParis,Magasins/AnnexeeP 8° 55511 b(1952) -(1979)cParis,Magasins/AnnexeeCOL8°3835 aZSAB aexemp201111 aGEO RQ Universel aDEW 30101355nls 2200373 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000094001642100030002582300005002883000056002933260016003493360056003653370071004214300030004926060040005227100047005628010013006098560090006228560108007128560037008208560070008579550005009279920033009329920016009650000813723000081372320130319051251.01 a0362-6784 a0000813723 a a19769999k fre 01 ba0 aeng aUS az aah z  adr 10aCurriculum inquiryb[Ressource électronique]fOntario Institute for Studies in Education aNew YorkcJ. Wileyd1976- a aTexte intégral depuis le vol. 6, n°1, Autumn 1976 aTrimestriel aDonnées textuelles accessibles uniquement en ligne aTéléchargement de fichiers TIFF, PDF (recommandé) ou PostScript 1tCurriculum theory network aEducationyEtats-UnisxPériodiques01aOntario Institute for Studies in Education 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03626784.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://home.oise.utoronto.ca/ci/ zContenu : sommaires en ligne depuis le vol. 31, n°1, Spring 20011 r aGEO RS Sans aspect régional aDEW 370-37900877nls 2200301 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000075001642100037002393000086002763260016003623360056003783370017004346060030004518010013004818560028004948560036005229550005005589920012005630000405086000040508620130319051251.0 a1278-3366 a0000405086 a a19969999k fre 01 ba0 amul aFR az aay z  adr 10aCybergéoeRevue Européenne de Géographieb[Ressource électronique] aPariscGéographie-citésd1996- aSommaires, résumés et texte intégral de la revue depuis le n°1, 14 avril 1996 airrégulier aDonnées textuelles accessibles uniquement en ligne aFichiers HTM aGéographiexPériodiques 0aFRbFNSP4 uhttp://www.cybergeo.eu/4 zAccès libre au texte intégral1 r aDEW 91000768nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001800154210003300172326001500205607002500220856005200245856006000297955007000357972000900427991001800436992002200454992001400476040155188000000736620130319051251.01 a1015-2881 aFNSP112311 a0000007366 a19900510a19899999 ba0 aeng aCY aaja 00aCyprus review aNicosiacIntercolleged1989- aSemestriel aChyprexPériodiques4 uhttp://www.intercol.edu/nqcontent.cfm?a_id=1980 zContenu : sommaires depuis le vol. 1, n°1, print. 19891 bvol. 1 no. 1 (pri-1989) -....cParisdMagasins/AnnexeeP 8° 5637 aZSAB aexempb201205 aGEO RA6.07 Chypre aDEW 956.100952nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154210006500190326001600255530003500271606003700306606003200343676000800375712003100383856003600414856007800450955007100528972000900599991001800608992001200626045069018000025831920130319051251.01 a1290-5410 aFNSP899393 a0000258319 a19981022b19982001 ba0 afre aFR aaha 10aCyrèneerevue de géopolitique aVoisins le BretonneuxcL'Atelier de géopolitiqued1998-2001 aTrimestriel 0aCyrènebVoisins-le-Bretonneux aEtudes régionalesxPériodiques aGéopolitiquexPériodiques a32702aL'Atelier de géopolitique4 uhttp://www.oaric.com/cyrene.htm zContenu : sommaire du dernier n° ; résumés ; depuis le n°1, aut. 19981 bno. 1 (aut-1998) -no. 8 (2001)cParisdMagasins/AnnexeeP 8° 6431 aZPAY aexempb201207 aDEW 32701169nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001000154210004300164326002300207326002900230606004500259606003800304606005400342606002900396710006000425801002100485856003100506856008600537955006600623972000900689991001800698992002300716992002800739992001600767992001200783038696061000001827120130319051252.01 a0011-5258 aFNSP149928 a0000018271 a19900101a19669999 ba0 apor aBR aaha 10aDados aRio de JaneirocEspaço e tempod1966- aTrimestrielb1998- a3 n°s par anb1966-1997 aScience politiqueyBrésilxPériodiques aSociologieyBrésilxPériodiques aScience politiqueyAmérique latinexPériodiques aSociologiexPériodiques02aInstituto universitário de pesquisas do Rio de Janeiro 3aFRbCCN0009/35564 uhttp://www.scielo.br/dados zContenu : Sommaires, résumés et texte intégral depuis le volume 39, n°3, 19961 bno. 1 (2e sem-1966) -....cParisdMagasins/AnnexeeP 8° 2502 aZSAB aexempb200910 aGEO RD4.13 Brésil aGEO RD Amérique latine aDEW 320-321 aDEW 30101409nas 2200361 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000710015421000640022532600160028943000720030553000240037760600360040160600360043767600080047371000420048180100210052385601010054485601080064595500670075395501140082095700740093497200090100899100180101799200120103503869607X000006239720130319051252.01 a0011-5266 aFNSP285531 a0000062397 a19900101a19559999 ba0 aeng aUS aaha 10aDaedaluseproceedings of the American Academy of Arts and Sciences aBoston, Mass.cAmerican Academy of Arts and Sciencesd1955- aTrimestriel 1aProceedings of the American Academy of Arts and Sciencesx0199-9818 0aDaedalusbCambridge aSciences socialesxPériodiques aSciences humainesxPériodiques a32002aAmerican Academy of Arts and Sciences 3aFRbCCN0011-52664 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=111355 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bvol. 89 no. 1 (hiv-1960) -....cParisdMagasins/AnnexeeP 8° 1974zManquant : no. 4, 1987 ; no. 1 à 4, 19881 b(1958) -(1968) ; (1958) -(1998)cParisdMagasins/AnnexeeP Index 0175 aZCAD aexempb201002 aDEW 30001097nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200003600160210002900196326002800225606004700253606003200300856013300332955014800465957017200613992002200785992001200807038460378000013467820130319051252.01 a0999-2901 aFNSP542295 a0000134678 a19940824b18451944 ba0 afre aFR ar aafa 00aDalloz jurisprudence générale aPariscDallozd1845-1944 amensuel ou hebdomadaire aDroityFrancexJurisprudencexPériodiques aDroityFrancexPériodiques4 uhttp://gallica.bnf.fr/ark:/12148/cb344196239/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 b1845 ----> 1923, 1924 ----> 1944 ed. hebdomadaire et éd. mensuellecParisdMagasins/AnnexeeP 4°5224wmanque éd. mensuelle pour 1928 et 19331 b1845/1867, 1867/1877, 1877/1887, 1897/1907, 1907/1911, 1912/1916, 1917/1921, 1922/1926, 1927/1931, 1932/1936, 1937/1941, 1942/1946cParisdMagasins/AnnexeeP Index 443 aGEO RA4.06 France aDEW 34801471nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008300154210002300237300013700260300006600397326002300463326002300486326002700509421004000536517002500576517002300601606006900624606002800693606003800721606004400759710007900803856002700882856005800909955006000967972000901027992002101036992001601057039481506000010846720130319051252.01 a0296-1199 aFNSP458668 a0000108467 a19900101a19859999 ba0 afre aFR aaha 10aDamoclèsfCentre de documentation et de recherche sur la paix et les conflits aLyoncCDRPCd1985- aNouvelle formule à partir du n° 96 (mai 2003) : la revue devient une lettre mensuelle de 4 pages portant le sous-titre : la lettre aSuppl. irréguliers conservés avec la revue à la même cote aTrimestrielb2006- aMensuelb2003-2005 aTrimestrielb1985-2003 1tLes Cahiers de Damoclèsx0296-391410aDamoclèsela lettre10aBulletin Damoclès aForces arméesxCrédits budgétaires et dépensesxPériodiques aArmementsxPériodiques aPolitique militairexPériodiques aRelations internationalesxPériodiques02aCentre de documentation et de recherche sur la paix et les conflits (Lyon)4 uhttp://www.obsarm.org/ zContenu : sommaires à partir du no. 58 (3e tri-1993)1 bno. 37 (1989) -....cParisdMagasins/AnnexeeP 4° 6307 aZCAD aGEO RQ Universel aDEW 355-35901181nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002600139210004900165326001100214440007200225530003900297601004000336606003700376607005200413710002600465856016500491955005500656955005500711972000900766991001800775992002400793992001200817992001400829036746924000008403520140103141115.01 a0108-6995 aFNSP374055 a19900101b19471996 ba0 aeng aDK aaka 10aDanmarks Nationalbank aCopenhagencDanmarks Nationalbankd1947-1996 aAnnuel 1tReport and accounts for the year - Danmarks Nationalbankx1397-520X00aDanmarks NationalbankbEnglish ed.02aDanmarks NationalbankxPériodiques aFinancesyDanemarkxPériodiques aDanemarkxConditions économiquesxPériodiques02aDanmarks Nationalbank4 uhttp://www.nationalbanken.dk/DNUK/Publications.nsf/Publikationer.HTML?openview&RestrictToCategory=Report%20and%20AccountszAccès au texte intégral depuis 19901 b(1980) -(1989)cParisdMagasins/AnnexeeP 4° 55491 b(1935) -(1979)cParisdMagasins/AnnexeeCOL4°0325 aZGRA aexempb201312 aGEO RA3.04 Danemark aDEW 332 aDEW 330.901053nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000095001502100045002452300024002903260011003146010040003256060037003656070052004027100026004548010013004808560126004938560053006199550005006729920024006779920012007019920014007130001134314000113431420130319051252.0 a0001134314 a a19909999k fre 01 ba0 aeng aDK ar aak z  adr 10aDanmarks Nationalbank report and accountb[Ressource électronique]fDanmarks Nationalbank aCopenhagencDanmarks Nationalbankd1990- aRevue électronique aAnnuel02aDanmarks NationalbankxPériodiques aFinancesyDanemarkxPériodiques aDanemarkxConditions économiquesxPériodiques02aDanmarks Nationalbank 0aFRbFNSP4 uhttp://www.nationalbanken.dk/DNUK/Publications.nsf/Publikationer.HTML?openview&RestrictToCategory=Report%20and%20Accounts zContenu : texte intégral du rapport depuis 19901 r aGEO RA3.04 Danemark aDEW 332 aDEW 330.901087cas0 2200349 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147105001800154110001600172200005900188207002500247210004000272326001100312606002400323606003800347710004000385801003000425801002300455801003000478802000700508856006000515856006500575955008500640992001200725114206570000108611720130603161738.01 a1951-106X a127786376 aissn1951106X a0001086117 a20070427b20062011k y0frey0103 ba0 afre aFR ay  aahu uu 10aDe l'autre côtéfUnion juive française pour la paix 0aN.1 (printemps 2006) aPariscLa fabrique éditionsd2006- aAnnuel aJuifsxPériodiques aJuifsxAssociationsxPériodiques02aUnion juive française pour la paix 3aFRbAbesc20081118gAFNOR 3aFRbISSNc20080909 3aFRbAbesc20070427gAFNOR a074 uhttp://www.ujfp.org/modules/news/index.php?storytopic=9 zContenu : sommaires des n°s depuis le n° 1, Printemps 20061 bno. 1 (mar-2006) -no. hors-série (hiv-2011)cParisdMagasin/AnnexeseP 8° 6974 aDEW 32001233nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000054001502070026002042100044002303000074002743260015003483360056003633370109004196060032005286060044005607120093006048010013006978560032007109550165007429920012009070000619023000061902320130319051257.0 a0000619023 a a19989999k fre 01 ba0 afre aFR az aag z  adr 13aLe Débat stratégiqueb[Ressource électronique] 1aN° 39 (juillet 1998) aPariscCIRPESd1998-aPariscGSDd1998- aLettre d'information en texte intégral depuis le n°39, juillet 1998 aBimestriel aDonnées textuelles accessibles uniquement en ligne aFichiers HTML. Il existe la possibilité d'être tenu informé des publications en s'abonnant par e-mail aGéopolitiquexPériodiques aRelations internationalesxPériodiques02aCentre interdisciplinaire de recherches sur la paix et d'études stratégiquesc(France) 0aFRbFNSP4 uhttp://www.ehess.fr/cirpes/1 rConsultation de l'édition imprimée à la banque de prêt de la Salle d'actualité, 27 rue Saint-Guillaume ; conservation limitée aux deux dernières années. aDEW 32701255nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006400154210002800218326002500246326002600271530002700297607002800324607003400352856005700386856005700443856010900500856010800609955013600717972000900853991001800862992002500880992001200905045043477000022288220140107174432.01 a0965-156X aFNSP798359 a0000222882 a19900101a19939999 ba0 aeng aGB aaia 10aDebatteejournal of contemporary Central and Eastern Europe aAbingdoncCarfaxd1993- a3 n°s par anb2005- aSemestrielb1993-2004 0aDebattebOxford. Print aAllemagnexPériodiques aEurope de l'EstxPériodiques4 uhttp://www.tandf.co.uk/journals/carfax/0965156X.html zContenu : sommaires depuis le vol. 5, n°1, mai 19974 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713412549db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1993) ; vol. 3 no. 1 (1995) -....cParisdMagasins/AnnexeeP 8° 6343zLa bibliothèque n'a pas reçu le vol. 2, 1994 aZSAB aexempb201301 aGEO RA5.01 Allemagne aDEW 94301382nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002500139210006900164210007500233210003700308326002600345326003100371517002900402606003600431606002800467606003700495606002900532676000800561710004000569856012000609856007900729955006600808955006300874972000900937991001600946992002200962992001200984039742156000016322220140113141030.01 a0779-7389 aFNSP625786 a19900101a19939999 ba0 afre aFR aaia 10aDécisions marketing aParis‎cAssociation française de marketing c/o ESCP‎d200X- aBruxelles‎cCentre Européen d'Economie de l'Education‎d1993-199X aPontoise‎cEssec‎d199X-200X aTrimestriel‎b2002- a3 nos par an‎b1993-200110aDM. Décisions Marketing aMarketingyFrancexPériodiques aMarketingxPériodiques aPublicitéyFrancexPériodiques aPublicitéxPériodiques a65002aAssociation française du marketing4 uhttp://www.afm-marketing.org/1-afm-association-francaise-du-marketing/124-activites/143-decisions-marketing-dm.aspx zContenu : sommaires depuis 1993, recherche par mots-clés sur les articles1 bLes 3 dernières annéescParisd27, Salle 4e étageeDEW 6501 bno. 1 (mai-1993) -....cParisdMagasins/AnnexeeP 4° 6484 aZPAY aexemp201401 aGEO RA4.06 France aDEW 65900994cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200002100156210003300177326001900210326002600229430003100255606002900286606006100315606004300376710002800419801003000447801002300477802000700500856006300507955006500570972000900635992001200644078949599000107381520130319051300.01 a1767-0187 aissn17670187 a0001073815 a20030523a20049999k y0frey0103 ba0 afre aFR aafu uu 13aLa décroissance aLyoncCasseurs de pubd2004- aMensuelb2007- aBimestrielb2004-2006 1tCasseurs de pubx1299-944X aActualitéxPériodiques aMouvements alternatifs (politique)yFrancexPériodiques aDécroissance soutenablexPériodiques02aCasseurs de pubc(Lyon) 3aFRbAbesc20070226gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.ladecroissance.net/index.php?chemin=accueil.php1 bno. 32 (jun-2006) -....cParisdMagasins/AnnexeseP F° 0550 aZPAY aDEW 05001626nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210004600186326002200232326002700254430003300281606005100314606006900365606005800434856010300492856010800595856012800703856010800831856010900939856010801048955006601156972000901222991001701231992001601248040200450000019390120130319051300.01 a1024-2694 aFNSP714064 a0000193901 a19900101a19949999 ba0 aeng aGB aaha 10aDefence and peace economics as.l.cHardwood academic publishersd1994- aBimestrielb2000- aTrimestrielb1994-1999 1aDefence economicsx1043-0717 aDésarmementxAspect économiquexPériodiques aForces arméesxCrédits budgétaires et dépensesxPériodiques aPolitique militairexAspect économiquexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=300224 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=7VT&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713640174db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 1 (1994) -....cParisdMagasins/AnnexeeP 8° 5669 aZPAY aexemp$201111 aDEW 355-35901038nas 2200313 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200006200148210003000210326001700240530002000257606004400277606003800321676000800359710005300367801001300420856010400433856009600537955006600633972000900699992001600708064132072000057754120140110160132.01 a1470-2436 a a20019999k fre ba0 aeng aGB a 0  ar aai z 0 10aDefence studiesfJoint Services Command and Staff College aLondoncFrank Cassd2001- a3 nos par an00aDefence studies aSécurité internationalexPériodiques aPolitique militairexPériodiques a35502aJoint Services Command and Staff College (Wilts) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/http/www.informaworld.com/smpp/title~content=t713720481~db=all zAccès réservé aux lecteurs inscrits à la bibliothèque via Taylor & Francis depuis 20011 bvol. 1 no. 1 (2001) -....cParisdMagasins/AnnexeeP 8° 6693 aZSAB aDEW 355-35901067nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003200163210006700195326001600262430003300278517003400311606003800345606004400383801001300427856010900440856010800549955007100657972000900728992001600737067779069000046393720130319051300.01 a1475-1798 a0000463937 a a20029999k fre ba0 aeng aGB a 0  ar aah z 0 10aDefense & security analysis aBasingstoke, HantscCarfax Publishing, Taylor & Francisd2002- aTrimestriel 1tDefense analysis,x0743-017510aDefense and security analysis aPolitique militairexPériodiques aSécurité internationalexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713412200db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 18 no. 1 (mar-2002) -....cParisdMagasins/AnnexeeP 8° 4879 aZSAB aDEW 355-35901167nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210005000185326001600235430008200251532006700333607004100400607004500441710007200486711006700558856003700625856005200662955007700714972000900791992002500800992001600825039908046000016443220130523111747.01 a1150-4455 aFNSP628721 a0000164432 a19900101a19909999 ba0 afre aFR aaha 10aDéfense et citoyen-l'OSOR aParis‎cDefense et citoyen-l'OSOR‎d1990- aTrimestriel 1tL'Officier et le sous-officier de réserve de l'armée française,x0990-56501 aDéfense et citoyen-l'Officier et le sous-officier de réserve aFrancexForces arméesxPériodiques aFrancexHistoire militairexPériodiques02aFédération des sous-officiers de réserve républicainsc(France)02aFédération des officiers de réserve républicainsc(France)4 uhttp://republique.armee.free.fr/4 zAccès libre au texte intégral à quelques nos1 bno. 62 (jan-1994) -no 106 (avr-2007)cParisdMagasins/AnnexeeP 4° 6493 aZPAY aGEO RA4.06 France 01 aDEW 355-35901273nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210004100177326001200218430004300230440005900273530003600332606003800368606004400406607004500450676000800495801002100503856002600524856014500550955009200695955007700787972000900864992002200873992001600895039531805000000406020130319051300.01 a0336-1489 aFNSP104642 a0000004060 a19900101b19732004 ba0 afre aFR aafu 10aDéfense nationale aPariscDéfense nationaled1973-2004 aMensuel 1aRevue de défense nationalex0035-1075 1tDéfense nationale et sécurité collectivex1950-325300aDéfense nationalebParis. 1973 aPolitique militairexPériodiques aRelations internationalesxPériodiques aFrancexDéfense nationalexPériodiques a355 3aFRbCCN0336-14894 uhttp://www.defnat.com zContenu : sommaires depuis le numéro 1 de 1983 et résumés des articles pour les numéros récents ; moteur de recherche et nombreux liens1 bvol. 29 no. 1 (jan-1973) -vol. 60 no. 12 (dec-2004)cParisdMagasins/AnnexeeP 8° 02091 bLes 10 dernières annéescParisdBibliothèque de rechercheeP 8° 0209 aZCAD aGEO RA4.06 France aDEW 355-35901519cas0 2200409 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200008900162207007300251210006200324326001200386430004800398440002900446606003800475606004400513607004500557676000800602710005300610801003000663801002300693802000700716856002600723856011800749955009200867955010300959972000901062992002201071992001601093108065863000104168420130319051300.01 a1950-3253 aissn19503253 a0001041684 a20060906b20052009k y0frey0103 ba0 afre aFR ar aafu uu 10aDéfense nationale et sécurité collectivefComité d'études de défense nationale 0a61ème année, n° 1(2005, janv.)-65ème année, no 12 (2009, déc.) aPariscComité d'études de défense nationaled2005-2009 aMensuel 1tDéfense nationale (Paris. 1973)x0336-1489 1tRevue Défense Nationale aPolitique militairexPériodiques aRelations internationalesxPériodiques aFrancexDéfense nationalexPériodiques a35502aComité d'études de défense nationalec(Paris) 3aFRbAbesc20061016gAFNOR 3aFRbISSNc20060720 a074 uhttp://www.defnat.com zContenu : sommaires depuis le numéro 1 de 1953 et résumés des articles ; moteur de recherche et nombreux liens1 bvol. 61 no. 1 (jan-2005) -vol. 65 no. 12 (dec-2009)cParisdMagasins/AnnexeeP 8° 02091 bvol. 61 no. 1 (jan-2005) -vol. 65 no. 12 (dec-2009)cParisdBibliothèque de rechercheeP 8° 0209 aZPAY aGEO RA4.06 France aDEW 355-35901042nas 2200337 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200007400148210003500222326001800257430003500275452004400310517002500354530002300379606003000402606003600432801001300468856005100481856004000532955008900572972000900661991001800670992001600688040352889000028908220130830121757.01 a1085-5661 a b19952003k fre ba0 aeng aGB a 0  ar aai z 0 10aDemocracy & natureethe international journal of inclusiv e democracy aBasingstokecCarfaxd1995-2003 a3 n°s par an 1tSociety and nature,x1062-9599 1tDemocracy & nature (Online),x1469-372010aDemocracy and nature00aDemocracy & nature aDémocratiexPériodiques aScience politiquexPériodiques 0aFRbFNSP4 uhttp://www.inclusivedemocracy.org/dn/index.htm zContenu : sommaires de 1999 à 20031 bvol. 5 no. 1 (mar-1999) -vol. 9 no. 3 (nov-2003)cParisdMagasins/AnnexeeP 8° 6513 aZSAB aexempb201212 aDEW 320-32101138cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200002700180207003600207210003400243326001500277452004700292606003800339606003700377606002900414801003000443801002300473802000700496856010900503856005800612955007300670992001200743992002100755104756241000115651420130319051303.01 a1741-9166 aissn17419166 a0001156514 a20040524a20059999k y0frey0103 ba0 aeng aUS ay 0  ar azga 0uu 10aDemocracy and security 0aVol. 1, no. 1 (Jan./Jul. 2005)- aBasingstokecRoutledged2005- aSemestriel 1tDemocracy and security (Online)x1555-5860 aSûreté de l'étatxPériodiques aViolence politiquexPériodiques aTerrorismexPériodiques 3aFRbAbesc20081117gAFNOR 3aFRbISSNc20080526 a024 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t716100689db=all zContenu : sommaires depuis le vol. 1 no. 1 (jan-2005)1 bvol. 1 no 1 (jan/jul-2005) -....cParisdMagasins/AnnexeeP 8° 7063 aDEW 355 aGEO RQ Universel01028nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171100016001242000020001402100054001603260023002143260026002375300020002636060040002836060056003237100037003798010021004168560040004378560098004779550095005759720009006709920021006799920014007000000062198000006219820130930171947.01 a0164-3207 aFNSP284687 a19900101a19799999 ba0 aeng aUS aaha 10aDemocratic left aNew YorkcDemocratic socialists of Americad1979- aTrimestrielb1999- aBimestrielb1979-1998 aDemocratic left aSocialismeyAmériquexPériodiques aGauche (science politique)yAmériquexPériodiques02aDemocratic socialists of America 3aFRbCCN0164-32074 uhttp://www.dsausa.org/dl/index.html zContenu : accès libre au texte intégral des articles à partir du numéro de printemps 20001 bvol. 12 no. 3 (mai-jun-1984) -vol. 35 no. 3 (hiv-2008)cParisdMagasins/AnnexeeP 4° 4937 aZCAD aGEO RB Amérique aDEW 320.500891nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210002400183326001200207430004300219517003000262607005200292856006500344856007800409955006400487972000900551992002500560992001600585040457826000018934220130319051305.01 a1267-7817 aFNSP700090 a0000189342 a19900101a19959999 ba0 afre aFR aafa 10aDémocratie & socialisme aPariscD & Rd1995- aMensuel 1aDémocratie et révolution,x1265-549X10aDémocratie et socialisme aFrancexPolitique et gouvernementxPériodiques4 uhttp://www.democratie-socialisme.org./archives/newfile1.html zContenu : texte intégral des numéros à partir du n° 87/88, sept. 20011 bno. 29 (oct-1995) -....cParisdMagasins/AnnexeeP 4° 6602 aZGRA aGEO RA4.06 France 01 aDEW 944.08301038nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002300139210007000162300004600232326001600278421007200294421008900366606004500455710006500500801002100565856003800586955006500624972000900689992002200698992001600720039305309000006218720130513170255.01 a0183-5599 aFNSP284669 a19900101b19782004 ba0 afre aFR aazb 10aDémocratie locale aPariscDirection générale des collectivités localesd1978-2004 aDevient consultable gratuitement en ligne aIrrégulier 1tBulletin d'informations statistiques de la DGCL (Paris),x1141-5487 1tCollection Monographies - Direction générale des collectivités localesx0984-7057 aDémocratie localeyFrancexPériodiques02aFrancebDirection générale des collectivités locales4070 3aFRbCCN0183-55994 uhttp://www.dgcl.interieur.gouv.fr1 bno 15 (mai-1980) -(2004)cParisdMagasins/annexeeP 4° 4596 aZGRA aGEO RA4.06 France aDEW 350-35401271nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210002400174326002200198326002900220326002700249326002900276530002800305606003600333606003000369856005600399856005200455856010900507856010800616955007000724957007200794972000900866991001800875992001600893048779172000012995920140114170818.01 a1351-0347 aFNSP528471 a0000129959 a19940614a19949999 ba0 aeng aGB aaha 10aDemocratization aLondoncCassd1994- aBimestrielb2009- a5 n°s par anb2004-2008 aTrimestrielb1996-2003 a3 n°s par anb1994-1995 0aDemocratizationbLondon aScience politiquexPériodiques aDémocratiexPériodiques4 uhttp://www.tandf.co.uk/journals/titles/13510347.asp zContenu : sommaires depuis le vol. 8, n°1 20044 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713634863db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (pri-1994) -....cParisdMagasins/AnnexeeP 8° 60421 bvol. 1 (1994) -vol. 10 (2004)cParisdMagasins/AnnexeeP Index 0856 aZSAB aexempb201203 aDEW 320-32100947nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210002900179326001600208606003600224710003200260801002100292856006600313856005900379955017600438972000900614991001800623992001600641039603628000001546920130319051306.01 a0416-9565 aFNSP142179 a0000015469 a19900101a19609999 ba0 aita aIT aaha 10aDemocrazia e diritto aRomacEd. riunitid1960- aTrimestriel aScience politiquexPériodiques02aAssociazione CRS (Florence) 3aFRbCCN0416-95654 uhttp://www.francoangeli.it/riviste/sommario.asp?IDRivista=116 zContenu : accès aux sommaires de la revue depuis 20031 bno. 4 (oct-1966) -....cParisdMagasins/AnnexeeP 8° 2463wManquant : vol. 35, no 1,3,4, 1995 ; vol. 36, no 1 à 3, 1996 ; vol. 37, no 1, 1997 ; vol. 38, nos 1 à 4, 1998 aZCAD aexempb201103 aDEW 320-32101308nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005000139210006300189326001600252452003600268530001500304606003100319710003800350801002100388856009000409856010800499856012800607856010800735955006700843972000900910991001800919992002100937992001200958038848988000001597920130910112655.01 a0070-3370 aFNSP143824 a19900101a19649999 ba0 aeng aUS aaha 10aDemographyfPopulation Association of America aWashington, D.C.cPopulation Association of Americad1964- aTrimestriel 1tDemography (Online),x1533-779010aDemography aDémographiexPériodiques02aPopulation Association of America 3aFRbCCN0070-33704 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00703370.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=DEM&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 15 no. 1 (1978) -....cParisdMagasins/AnnexeeP 8° 4208 aZPAY aexempb201106 aGEO RQ Universel aDEW 30401151nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008300154207001800237210006700255326001600322510002000338530004100358607002600399710006500425711002400490856006300514856007500577955006600652972000900718991001800727992005600745992001200801075704234000022594220140108103447.01 a1074-6846 aFNSP807194 a0000225942 a19900101a19929999 ba0 aeng aUS aaha 10aDemokratizatsiya=dDemokratizaciâethe journal of post-soviet democratization 1ano. 1 (1992)- aWashington, D.CcQuality Press of the Southern Tier Incd1992- aTrimestriel10aDemokratizaciâ10aDemokratizatsiyab(Washington, D.C.) aEx-URSSxPériodiques02aMoskovskij gosudarstvennyj universitet imeni M.V. Lomonosova02aAmerican University4 uhttp://www.gwu.edu/~ieresgwu/programs/demokratizatsiya.cfm zContenu : accès libre au texte intégral depuis le vol. 1, n°1, 19921 bvol. 4 no. 2 (1996) -....cParisdMagasins/AnnexeeP 8° 6355 aZSAB aexempb201207 aGEO RA7.02 Etats successeurs de l'Union soviétique aDEW 94700963nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005100154210006100205326001500266606003800281710004100319801002100360856002600381955007000407957012400477972000900601991001800610992002100628992001200649039151239000001614220130319051307.01 a0196-2035 aFNSP144237 a0000016142 a19900101a19719999 ba0 aeng aUS aaju 10aDenver journal of international law and policy aDenver, ColocUniversity of Denver College of Lawd1971- aSemestriel aDroit internationalxPériodiques02aUniversity of DenverbCollege of Law 3aFRbCCN0196-20354 uhttp://www.djilp.org/1 bvol. 8 no. 1 (jan-1979) -....cParisdMagasins/AnnexeeP 8° 44751 b(1971) -(1981)cParisdMagasins/AnnexeeP Index 0382zvol. 11 (1982) -vol. 21 (1993): constitue le vol. 21 no. 3 (1993) aZSAB aexempb200911 aGEO RQ Universel aDEW 34101333nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005900139210007500198326001600273430003700289452008400326530004300410607006200453607005800515710006400573801002100637856009000658856010800748955007000856972000900926991001800935992002800953992001400981038824612000006209420140107135052.01 a0046-001X aFNSP283949 a19900101a19619999 ba0 aspa aAR aaha 10aDesarrollo económico‎erevista de ciencias sociales aBuenos Aires‎cInstituto de Desarrollo Económico y Social‎d1961- aTrimestriel 1aRevista de desarrollo económico 1tDesarrollo económico (Ciudad Autónoma de Buenos Aires. En línea),x1853-8185 aDesarrollo económico‎bBuenos Aires aAmérique latinexPolitique et gouvernementxPériodiques aAmérique latinexPolitique économiquexPériodiques02aInstituto de desarrollo económico y socialc(Buenos Aires) 3aFRbCCN0046-001X4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0046001X.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 3 (oct-1961) -....cParisdMagasins/AnnexeeP 8° 2003 aZPAY aexempb201002 aGEO RD Amérique latine aDEW 338.901116nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008300154210005000237326002300287326002600310326002300336430002700359607005500386607006600441801002100507856006500528856005800593955006300651972000900714991001800723992002500741992001200766038697688000001597820140107174820.01 a0012-1428 aFNSP143823 a0000015978 a19900101a19689999 ba0 ager aDE aafa 10aDeutschland ArchiveZeitschrift für Fragen der DDR und der Deutschlandpolitik aKölncVerlag Wissenschaft und Politikd1968- aTrimestriel$d2011- aBimestriel$d1996-2010 aMensuel$d1968-1995 1aSBZ-Archiv (0563-0894) aAllemagnexPolitique et gouvernementxPériodiques aAllemagne (République démocratique)xHistoirexPériodiques 3aFRbCCN0012-14284 uhttp://hsozkult.geschichte.hu-berlin.de/zeitschriften/id=257 zContenu : sommaires et résumés depuis le n°1, 20031 bno. 5 (aou-1968) -....cParisdMagasins/AnnexeeP 8° 2704 aZPAY aexempb201105 aGEO RA5.01 Allemagne aDEW 94301127cas0 2200325 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200007900139207003900218210006000257326001600317517000900333606003700342606004400379606006400423710004200487801003000529856004200559856008000601955007700681972000900758992002200767992001200789112324428000108602220130319051311.01 a1950-196X a0001086022 a20070205b20062008k frey0103 ba0 afre aFR aahakk 10aDeux mille cinquanteela revue de la Fondation pour l'innovation politique 1aN°1 (avr. 2006)-n° 10 (nov-2008) aPariscFondation pour l'innovation politiqued2006-2008 aTrimestriel10a2050 aVie intellectuellexPériodiques aIdées politiquesyFrancexPériodiques aPolitique publiquexInfluence de la recherchexPériodiques02aFondation pour l'innovation politique 3aFRbAbesc20070207gAFNOR4 uhttp://2050.fondapol.org/archives.jsp zContenu : sommaires des n°s et résumés des articles depuis le n°1, 20061 bno. 1 (avr-2006) -no. 10 (nov-2008)cParisdMagasins/Annexe : P 8° 6973 aZGRA aGEO RA4.06 France aDEW 00101163nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000860015421000520024032600160029260700720030871000470038080100210042785600460044885601140049495500860060895700720069497200090076699100180077599200420079399200140083503623690X000001599120131202124547.01 a0012-1533 aFNSP143843 a0000015991 a19900101a19639999 ba0 aeng aJP aahu 14aThe Developing economiesfthe journal of Institute of developing economies, Japan aTokyocInstitute of Developing Economiesd1963- aTrimestriel aPays en voie de développementxPolitique économiquexPériodiques02aInstitute of Developing Economiesc(Japon) 3aFRbCCN0009/85744 uhttp://www.blackwell-synergy.com/loi/DEVE zContenu : accès libre au texte intégral des articles depuis 1962 à l'exception des deux dernières années1 bvol. 1 no. 1 (1963) -vol. 50 no. 4 (dec-2012)cParisdMagasins/AnnexeeP 8° 21211 bvol. 1 (1963) -vol. 20 (1982)cParisdMagasins/AnnexeeP Index 0263 aZPAY aexempb201105 aGEO RO Pays en voie de développement aDEW 338.901593nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210002900181210002800210210003300238326002200271326002800293326002700321326003000348606004500378607007400423710003200497801002100529856007000550856007300620856010500693856010800798856012800906955006601034972000901100991001801109992004201127992001401169036771368000001614420130319051312.01 a0012-155X aFNSP144242 a0000016144 a19900101a19699999 ba0 aeng aGB aagu 10aDevelopment and change aOxfordcBlackwelld1994- aLondoncSaged1975-1993 aThe HaguecMoutond1969-1974 aBimestrielb2005- a5 nos par anb2000-2004 aTrimestrielb1975-1999 aQuadrimestrielb1969-1974 aDéveloppement économiquexPériodiques aPays en voie de développementxConditions économiquesxPériodiques02aInstitute of Social Studies 3aFRbCCN0012-155X4 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0012155X zContenu : sommaires et résumés depuis le vol. 28, n°1, janv. 19974 uhttps://acces-distant.sciences-po.fr/fork?http://www-fr.ebsco.com/online/direct.asp?JournalID=100829 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=7QQ&site=ehost-live1 bvol. 1 no. 1 (1969) -....cParisdMagasins/AnnexeeP 8° 2749 aZSAB aexempb201005 aGEO RO Pays en voie de développement aDEW 338.900938nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002500139210004900164326001500213606004500228606004600273606003500319710004300354801002100397856009600418955009300514972000900607991001800616992001400634039475107000001615920130903145626.01 a0345-2328 aFNSP144275 a19900101a19729999 ba0 aeng aSE aaju 10aDevelopment dialogue aUppsalacDag Hammarskjöld Foundationd1972- aSemestriel aDéveloppement économiquexPériodiques aAide économique scandinavexPériodiques aAide économiquexPériodiques02aDag Hammarskjöld Foundation (Uppsala) 3aFRbCCN0345-23284 uhttp://www.dhf.uu.se/publications.htmlzAccès libre au texte intégral depuis no 1/2, 19751 bno. 1 (1972) -sp. issue (2002) ; no. 47 (2006) -....cParisdMagasins/AnnexeeP 8° 3389 aZGRA aexempb201005 aDEW 338.901203nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210002500182326001500207606004500222606005300267856005700320856005900377856010900436856010800545955007000653957007100723972000900794991001800803992004200821992001400863040095657000017665520130319051312.01 a0961-4524 aFNSP662743 a0000176655 a19900101a19919999 ba0 aeng aGB aaha 10aDevelopment in practice aOxfordcOxfamd1991- aBimestriel aDéveloppement économiquexPériodiques aOrganisations non gouvernementalesxPériodiques4 uhttp://www.tandf.co.uk/journals/carfax/09614524.html zContenu : sommaires depuis le vol. 8, n°1, fév. 19984 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713412875db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 1 (fev-1995) -....cParisdMagasins/AnnexeeP 8° 62041 bvol. 1 (1991) -vol. 5 (1995)cParisdMagasins/AnnexeeP Index 0776 aZSAB aexempb201211 aGEO RO Pays en voie de développement aDEW 338.901096nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210002400184326001500208430002600223606004500249606007900294710004600373801002100419856007100440856006300511955007000574972000900644991001800653992003100671992004200702992001400744040078795000001600120130319051312.01 a0950-6764 aFNSP143858 a0000016001 a19900101a19839999 ba0 aeng aGB aagu 10aDevelopment policy review aLondoncSaged1983- aBimestriel 1aODI Reviewx0078-7116 aDéveloppement économiquexPériodiques aAide économique britanniqueyPays en voie de développementxPériodiques02aOverseas Development Institutec(Londres) 3aFRbCCN7105/72264 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0950-6764 zContenu : sommaires et résumés depuis le n°1, mars 19971 bvol. 1 no. 1 (mai-1983) -....cParisdMagasins/AnnexeeP 8° 3663 aZSAB aexempb201001 aGEO RA4.02 Grande-Bretagne aGEO RO Pays en voie de développement aDEW 338.900959nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210004200181326001600223606002800239606002900267676000800296801002100304856009900325856004200424955006600466955007000532972000900602991001800611992001600629002564378000001600820130319051314.01 a0378-7931 aFNSP143875 a0000016008 a19900101a19779999 ba0 afre aCH aahu 10aDéviance et société aGenèvecMédecine et hygièned1977- aTrimestriel aDéviancexPériodiques aSociologiexPériodiques a360 3aFRbCCN0378-79314 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-deviance-et-societe.htm? zAccès aux sommaires et aux résumés1 bLes 3 dernières annéescParisd27, Salle 4e étageeDEW 3601 bvol. 1 no. 1 (mai-1977) -....cParisdMagasins/AnnexeeP 8° 3994 aZPAY aexempb201001 aDEW 305-30600961nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000009001552100027001643260019001913260028002105170054002385300009002926070035003018560051003368560141003879550082005289720009006109920028006199920012006470000016012000001601220130319051314.01 a0399-6441 aFNSP143885 a0000016012 a19901026b19712006 ba0 afre aFR aafa 10aDIAL aPariscDIALd1971-2006 aMensuelb2006- aHebdomadaireb1971-200510aDiffusion de l'information sur l'Amérique latine00aDIAL aAmérique latinexPériodiques4 uhttp://www.alterinfos.org/spip.php?rubrique38/ zContenu : la revue cesse de paraître sur support papier, continue en ligne : accès libre au texte intégral à partir de novembre 20061 bno. 69 (dec-1972) -no. 2247 (jun/jul-2006)cParisdMagasinsAnnexeeP 4° 3901 aZPAY aGEO RD Amérique latine aDEW 98000871nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000090001502100018002402300005002583000047002633260016003103360056003263370018003826060036004007020036004367020026004728010013004988560053005119550005005640000505466000050546620130319051314.0 a0000505466 a a20019999k fre 01 ba0 afre aFR ar aay z  adr 10aDialogues politiqueserevue plurielle de science politiqueb[Ressource électronique] aslcsnd2001- a aTexte intégral depuis le n°0 de la revue airrégulier aDonnées textuelles accessibles uniquement en ligne aFichiers HTML aScience politiquexPériodiques 1aMabilon-BonfilsbBéatrice4340 1aSaadounbLaurent4340 0aFRbFNSP4 uhttp://www.la-science-politique.com/sommaire.php1 r01292nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200008200163210004800245326001800293530002500311606002900336606002800365606002800393801001300421856007800434856008900512856012800601856010800729955006600837972000900903991001800912992001200930083501428000066535220130319051314.01 a1044-2057 a0000665352 a a19919999 fre 01 ba0 aeng aCA a 0  ar aai z 0 10aDiasporaejournal of transnational studiesfsponsored by the Zoryan Institute aTorontocUniversity of Toronto Pressd1991- a3 n°s par an10aDiasporab(New York) aMinoritésxPériodiques aEtrangersxPériodiques aDiasporasxPériodiques 0aFRbFNSP4 uhttp://muse.jhu.edu/journals/diaspora_a_journal_of_transnational_studies/ zContenu : accès aux sommaires et résumés des articles depuis le vol.1, n°1, 19914 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=8QC&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 8 no. 1 (1999) -....cParisdMagasins/AnnexeeP 8° 6772 aZPAY aexempb201212 aDEW 32501000cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200004000156210005600196326001600252430005000268530003200318606003600350606002800386801003000414802000700444856003300451856009900484955007000583992002100653992001200674040514021000116705920131025131003.01 a1276-4248 accn1276-4248 a0001167059 a19980721a19979999 0frey0103 ba0 afre aFR aah 10aDiasporiquesecultures en mouvement aPariscDiasporiquescLigue de l'enseignementd1997- aTrimestriel 1tCahiers du cercle Gaston Crémieuxx0399-788X00aDiasporiquesb(Paris. 2008) aMulticulturalismexPériodiques aDiasporasxPériodiques 3aFRbAbesc20081203gAFNOR a074 uhttp://www.diasporiques.org/ zContient les sommaires à partir du no 1, 2008 et une sélection d'articles en texte intégral1 bn. s., no. 1 (mar-2008) -....cParisdMagasins/AnnexeeP 8° 7090 aGEO RQ Universel aDEW 30501172cas0 2200325 450 001001000000002001100010005001700021100004100038101000800079102000700087105001800094106000600112110001600118200004400134207003500178210005800213301005700271301007300328326002500401530002300426606003800449606004000487606003000527702003100557801003000588856011300618955007000731992001200801992003300813167099167000124570820140115163225.0 a20130131a20139999m y0frey50 ba0 aeng aGB ay 0  ar aaia 0 10aDigital journalismfeditor Bob Franklin 0aVol. 1, no. 1 (february 2013)- aAbingdoncRoutledge, Taylor & Francis groupd2013-... aDemande de numérotation ISSN par le CR70 (20130201) aISSN figurant sur la publication 2167-0811 mais pas dans ISSN online a3 fois par anb2013-00aDigital journalism aMédias numériquesxPériodiques aMédiasxInformatiquexPériodiques aJournalismexPériodiques 1aFranklinbBobf(1949-....) 3aFRbAbesc20130205gAFNOR4 uhttp://www.tandfonline.com/toc/rdij20/current#.Ue0gQNjHnWkzAccès intégral depuis depuis le vol. 1 de 20131 bvol. 1 no. 1 (fev-2013) -....cParisdMagasins/AnnexeeP 8° 7209 aDEW 070 aGEO RS Sans aspect régional01227nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005700154210003200211210002200243326001600265530003100281606003600312606002900348676000800377801003000385801001800415856008700433856010800520955005700628957007000685957010100755972000900856992001200865013868373000116660620130319051317.01 a0419-1633 aFNSP143887 a0000016013 a19900101a19529999 ba0 afre aFR aaha 10aDiogèneerevue internationale des sciences humaines aPariscGallimardd1952-1999 aPariscPUFd1999- aTrimestriel10aDiogèneb(Ed. française) aSciences humainesxPériodiques aEthnologiexPériodiques a306 3aFRbAbesc20090303gAFNOR 3aFRbSFgAFNOR4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-diogene.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1953)-....cParisdMagasins/AnnexeeP 8°12661 bno. 1 (1952) -no. 16 (1956)cParisdMagasins/AnnexeeP Index 02681 bno. 171 (1995) - no. 179 (1997)zcet index se trouve dans le no. 180, oct./déc.1997 de la revue aZPAY aDEW 00101138nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005700139210003200196210002200228326001600250530003100266606003600297606002900333801002100362856008000383856010600463955005900569957007000628957010100698972000900799992001600808013868373000001601320131025133928.01 a0419-1633 aFNSP143887 a19900101a19529999 ba0 afre aFR aaha 10aDiogèneerevue internationale des sciences humaines aPariscGallimardd1952-1999 aPariscPUFd1999- aTrimestriel10aDiogèneb(Ed. française) aSciences humainesxPériodiques aEthnologiexPériodiques 3aFRbCCN0419-16334 uhttps://acces-distant.sciences-po.fr/http/www.cairn.info/revue-diogene.htm? zAccès au texte intégral réservé aux lecteurs inscrits à la Bibliothèque, via Cairn, depuis 20011 bno. 1 (1953) -....cParisdMagasins/AnnexeeP 8° 12661 bno. 1 (1952) -no. 16 (1956)cParisdMagasins/AnnexeeP Index 02681 bno. 171 (1995) - no. 179 (1997)zcet index se trouve dans le no. 180, oct./déc.1997 de la revue aZPAY aDEW 305-30601162nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210002400183326002300207326002900230517002700259606002900286606004400315676000800359856004200367856008900409856010900498856010800607955007000715972000900785991001800794992001200812040091864000002592420140110143333.01 a0959-2296 aFNSP169142 a0000025924 a19910227a19909999 ba0 aeng aGB aaia 10aDiplomacy and statecraft aLondoncCassd1990- aTrimestrielb2001- a3 n°s par anb1990-200010aDiplomacy & statecraft aDiplomatiexPériodiques aRelations internationalesxPériodiques a3274 uhttp://www.frankcass.com/jnls/dip.htm zContenu : sommaires et résumés du n° actuel et à paraitre depuis le vol. 6, n°14 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713634951db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 2 (jul-1990) -....cParisdMagasins/AnnexeeP 8° 5701 aZSAB aexempb201112 aDEW 32701228nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002300139210004900162326002400211326002700235452004400262530002300306606004400329676000800373710007100381801002100452856010400473856010800577955006700685955006600752972000900818991001800827992002100845992001200866039086674000001603920130916164810.01 a0145-2096 aFNSP143953 a19900101a19779999 ba0 aeng aUS aaga 10aDiplomatic history aWilmington, Del.cScholarly Resourcesd1977- a5 nos par anb2005- aTrimestrielb1977-2004 1tDiplomatic history (Online),x1467-7709 aDiplomatic history aRelations internationalesxPériodiques a32702aSociety for Historians of American Foreign Relationsc(Etats-Unis) 3aFRbCCN0145-20964 uhttps://acces-distant.sciences-po.fr/fork?http://www3.interscience.wiley.com/journal/118503844/home zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 1 no. 1 (1977) -....cParisdMagasins/AnnexeeP 8° 4899 aZSAB aexempb201002 aGEO RQ Universel aDEW 32701079nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200006800163210006500231326001500296517002400311606003200335606004400367606002500411801001300436856003400449856005800483955005900541955008700600972000900687992001200696992003300708073903434000052848320130319051317.01 a1761-0559 a0000528483 a a20039999k fre ba0 afre aFR a 0  ar aag z 0 10aDiplomatieeaffaires stratégiques et relations internationales aSaint-CannatcDiplomatie magazinea[s.l.]cStrataegisd2003- aBimestriel10aDiplomatie magazine aGéopolitiquexPériodiques aRelations internationalesxPériodiques aGuerrexPériodiques 0aFRbFNSP4 uhttp://diplomatie-presse.com/ zContenu : sommaires et éditoriaux depuis janv. 2003.1 bL’année en courscParisd27, Salle Rez-de chaussée1 bConservation limitée aux 5 dernières annéescParisdMagasins/AnnexeeP 4° 6971 aZPAY aDEW 327 aGEO RS Sans aspect régional01269cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200003700180207002700217210002500244326001500269423004100284430003900325517001800364530003600382606003200418606004400450801003000494801002300524802000700547856004600554856009300600955006600693955006700759992001200826992003300838150689454000123209220130704120858.01 a2115-256X aissn2115256X a0001232092 a20110314a20119999u y0frey50 ba0 afre aFR ay  ar aagu uu 10aDiplomatie.iLes grands dossiers 0aN°1(2011,févr-mars)- aPariscAreiond2011- aBimestriel 1tDiplomatie (Saint-Cannat)x1761-0559 1tDiplomatie. Hors-sériex1959-453410aDiplomatie GD10aDiplomatie. Les grands dossiers aGéopolitiquexPériodiques aRelations internationalesxPériodiques 3aFRbAbesc20110514gAFNOR 3aFRbISSNc20110502 a074 uhttp://www.diplomatie-presse.com/?cat=223 zContenu : sommaires depuis le n° 1 (fev/mar-2011) à l'exception de la dernière année1 bLes 3 dernières annéesc30, ParisdMagasins/AnnexeeDEW 3271 bno. 8 (avr/mai-2012) -....cParisdMagasins/AnnexeeP 4° 7313 aDEW 327 aGEO RS Sans aspect régional01057nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101001300108102000700121105001800128106000600146110001600152200004700168210002900215320007300244326001600317510002600333530003000359606003100389606004400420710006900464801001300533856005600546856003700602955005900639972000900698992001200707044754671000042972520130319051318.01 a1020-7287 a0000429725 a a19999999k f fre ba0 aengafre aCH a 0  ar aah z 0 10aDisarmament forumd= Forum du désarmement aGenèvecUNIDIR :d1999- aTexte tête-bêche en anglais et en français pour l'édition papier aTrimestriel10aForum du désarmement00aDisarmament forum (Print) aDésarmementxPériodiques aSécurité internationalexPériodiques02aInstitut des Nations Unies pour la recherche sur le désarmement 0aFRbFNSP4 uhttp://www.unidir.org/html/en/disarmament_forum.php zAccès libre au texte intégral.1 bno. 4 (1999) -....cParisdMagasins/AnnexeeP 4° 6902 aZECH aDEW 34100990nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000740015421000320022821000330026021000290029332600160032253000210033860600310035985600720039085600490046295501050051197200090061699100180062599200210064399200120066403950669X000003834520130319051318.01 a0361-3666 aFNSP212736 a0000038345 a19900101a19779999 ba0 aeng aGB aaha 10aDisastersethe international journal of disaster studies and practice aOxfordcPergamond1977-1980 aFarnhamcFoxcombed1981-1987 aOxfordcBlackwelld1988- aTrimestriel 0aDisastersbPrint aCatastrophesxPériodiques4 uhttp://www.blackwellpublishing.com/journal.asp?ref=0361-3666&site=1 zContenu : sommaires et résumés depuis 19771 bvol. 13 no. 1 (1989) -....cParisdMagasins/AnnexeeP 8° 5742wManquant : vol. 13, nos 2 et 3, 1989 aZSAB aexempb201111 aGEO RQ Universel aDEW 33300951nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000240015421000240017832600220020232600270022451700260025160600360027785601080031385601080042195500700052997200090059999100180060899200120062699200110063804008986X000007670320130319051319.01 a0957-9265 aFNSP348289 a0000076703 a19900101a19909999 ba0 aeng aGB aaha 10aDiscourse & society aLondoncSaged1990- aBimestrielb2001- aTrimestrielb1990-200010aDiscourse and society aSociolinguistiquexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 1 (jan-1992) -....cParisdMagasins/AnnexeeP 8° 5894 aZSAB aexempb201112 aDEW 301 aDEW 4101254nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200009300139210002800232326001600260430003400276452003400310532008700344606005300431710007100484801002100555830006200576830005200638856009400690955006900784972000900853991001800862992002200880992001400902039243451000001694120131002151423.01 a0251-3625 aFNSP146309 a19900101a19659999 ba0 ager aCH aaha 10aDISPeDokumente und Informationen zur Schweizerischen Orts-, Regional- und Landesplanung aZürichcORL-ETHd1965- aTrimestriel 1tInformationen DISPx0579-7764 1tDISP (Online), ISSN 2166-860410aDokumente und Informationen zur Schweizerischen Orts-, Regional- und Landesplanung aAménagement du territoireySuissexPériodiques02aInstitut für Orts-, Regional-und Landesplanungc(Zürich, Suisse) 3aFRbCCN0251-3625 ano. 12, 1969--> no. 77, 1984 : donné au CTL en juin 2002 a1985-2009 : collection envoyée au CTles en20134 uhttp://www.nsl.ethz.ch/index.php/de/content/view/full/96zAccès libre au texte intégral1 bno. 78 (1985) -no 179 (2009)cParisdMagasins/AnnexeeP 4° 3064 aZGRA aexempb201306 aGEO RA5.14 Suisse aDEW 330.901081nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001200154210003500166326001600201530002200217606002900239606003700268801002100305856003600326856009300362955015100455957014300606991001800749992001200767038698641000001599220130319051320.01 a0012-3846 aFNSP143844 a0000015992 a19900101a19549999 ba0 aeng aUS aaha 10aDissent aNew York, N.Y.cDissentd1954- aTrimestriel00aDissentbNew York aSocialismexPériodiques aProblèmes sociauxxPériodiques 3aFRbCCN0012-38464 uhttp://www.dissentmagazine.org/ zContenu : sommaire ; texte intégral (sélection) ; depuis le vol. 43, n°2, print. 19961 bvol. 1 no. 1 (hiv-1954) -vol. 46 no. 4 (1999)cParisdMagasins/AnnexeeP 8° 1650wManquant : vol. 40, no 1à 4, 1993 et vol. 41, no. 1 à 4, 19941 bLes index cumulatifs (1972/1973), (1974/1975) sont respectivement dans le vol. 21 no. 1 (hiv-1974) et vol. 23 no. 1 (hiv-1976) de la revue aexempb201006 aDEW 30001253cas0 2200373 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147106000600154110001600160200013700176207002500313210006900338326001600407430003700423606004800460606003600508710006000544712006000604801003000664801002300694802000700717856002800724856003600752955006600788972000900854992001600863078960207000098688920130319051321.01 a1769-8502 a097914363 aissn17698502 a0000986889 a20040615a20049999k y1frey0103 ba0 afre aFR ar aah 10aDiversitéeville, école, intégrationf[publication du CNDP]gServices, culture, éditions, ressources pour l'éducation nationale 0a(N° 137) juin 2004- aMontrougecCentre de ressources Ville-école-intégrationd2004- aTrimestriel 1tVEI enjeux (Imprimé)x1299-085X aIntégration scolaireyFrancexPériodiques aEducationyFrancexPériodiques02aCentre national de documentation pédagogiquec(France)02aCentre de ressources Ville-école-integrationc(France) 3aFRbAbesc20060522gAFNOR 3aFRbISSNc20050901 a074 uhttp://www.cndp.fr/vei/4 zAccès libre au texte intégral1 bno. 137 (jun-2004) -....cParisdMagasins/AnnexeeP 8 ° 6902 aZPAY aDEW 305-30601005nls 2200301 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000105001502100027002552300024002823260031003065170031003376060040003686760015004087100057004238010013004808300107004938560061006008560037006619550005006980000442906000044290620130319051322.0 a0000442906 a a19979999k fre 01 ba0 afre aFR ar aby z  adr 10aDocument de travail -Observatoire français des conjonctures économiquesb[Ressource électronique] aPariscOFCEd1997-.... aDonnées textuelles aCollection de monographies10aDocument de travail - OFCE aPolitique économiquexPériodiques a338.9v21a02aObservatoire français des conjonctures économiques 0aFRbFNSP adm : avant 1997 voir dans l'index Collection "document de travail / OFCE" pour les documents imprimés4 uhttp://www.ofce.sciences-po.fr/publications/document.htm4 zAccès libre au texte intégral.1 r00960nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210002600178326001600204517000900220530003100229830008100260856009000341856008000431955008300511972000900594991001800603992002500621992001200646040536726000026728120130319051322.01 a1279-5127 aFNSP925808 a0000267281 a19990302a19979999 ba0 afre aFR aaha 10aDocument numérique aPariscHermèsd1997- aTrimestriel10aRSTI 0aDocument numériquebParis an'avons plus d'abonnement ; conservation 1997-1999 ; nos suivants déherbés4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue.php?ID_REVUE=DN zContient : sommaires, résumés et texte intégral des articles depuis 20011 bvol. 1 no. 1 (1997) -vol. 3 no. 3/4 (1999)cParisdMagasins/AnnexeeP 8° 6462 aZPAY aexempb201301 aGEO RA4.06 France 01 aDEW 02001496nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200013400139207006900273210002300342326001600365517004800381530002900429606004400458710008500502801002100587801001300608801001300621830005300634856022500687955008100912955007500993957005701068972000901125992001201134039222705000001671120131009140807.01 a0012-4508 aFNSP145556 a19900101a19649999 ba0 afre aFR aaga 10aDocumentaliste‎esciences de l'information‎fAssociation française des documentalistes et des bibliothécaires spécialisés 1aVol. 1, no. 1 (1964)-vol. 44, no. 6 (2007) ; n.s., no.1, (2008)- aPariscADBSd1964- aTrimestriel10aDocumentaliste sciences de l'information‎10aDocumentaliste‎bParis aSciences de l'informationxPériodiques02aAssociation française des documentalistes et des bibliothécaires spécialisés 3aFRbCCN0012-4508 0aFRbFNSP 0aFRbFNSP a1985-2010 : collection envoyée au CTles en 20134 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-documentaliste-sciences-de-l-information.htm?zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 2 dernières annéescParisdFonds professionnel (4e étage)eP 4° 24501 bno. 1 (1985) -....cParisdFonds professionnel (4e étage)eP 4° 24501 b(1964) -(1983)cParisdMagasins/AnnexeeP Index 0533 aZPAY aDEW 02001154nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200011300139207004700252210003200299326002600331326002700357326002600384530002600410607004900436607005500485801002100540856011400561955008800675972000900763991001900772992002500791992001200816001255622000001616420131022103630.01 a0151-0827 aFNSP144285 a19900101b19452009 ba0 afre aFR aagu 00aDocumentserevue des questions allemandesfCentre d'information et de documentation économiques et sociales 1avol. 1 no. 1 (1945) -vol. 64, no. 2 (2009) aPariscDocumentsd1945-2009 aBimestrielb2006-2009 aTrimestrielb2001-2005 aBimestrielb1945-200010aDocumentsbStrasbourg aAllemagnexConditions socialesxPériodiques aAllemagnexPolitique et gouvernementxPériodiques 3aFRbCCN7002/43084 uhttp://www.revuedocuments.comzRéférences des articles parus depuis 1945 et sommaires des numéros récents1 bvol. 2 no. 1(janv- 1947) -vol. 64, no 2 (2009);cParisdMagasins/AnnexeeP 8° 0161 aZGRA aaexempb201010 aGEO RA5.01 Allemagne aDEW 94301003nls 2200289 450 0010011000000020011000110050017000220350015000391000041000541010013000951020007001081050018001151060006001331100016001391350018001552000060001732100028002333000090002613000110003513260015004615170032004766060026005087120078005348010013006128560059006259550029006840000311907000031190720130319051322.0 a0000311907 a a19939999k fre ba0 afreaeng aFR a 0  az abu z 0  adz 10aDocuments de travail - CEPIIb[Ressource électronique] aPariscCEPIId1993-.... aAccès : World Wide Web. URL : http://www.cepii.fr/francgraph/doctravail/docw2001.htm aTexte en anglais ou en français. - Texte intégral au format pdf, télédéchargeable avec Adobe Acrobat aCollection10aDocument de travail - CEPII aPolitique économique02aCentre d'études prospectives et d'informations internationalesc(France) 0aFRbFNSP4 uhttp://www.cepii.fr/francgraph/doctravail/docw2001.htm1 rConsultable sur Internet01127nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000059001502100087002092300024002963260039003203370102003595170091004615170033005526060037005857100078006228010013007008300007007138560065007209550040007850000491754000049175420130319051322.0 a0000491754 a a19959999k fre 01 ba0 afre aFR az abu z  adr 10aDocuments de travailb[Ressource électronique]fINSEE aPariscInstitut national de la statistique et des études économiques d1995-.... aDonnées textuelles aCollection de documents de travail aTexte intégral au format pdf, télédéchargeable à partir de février 1995 avec Adobe Acrobat.10aDocuments de travail - Institut national de la statistique et des études économiques10aDocuments de travail - INSEE aEconomie politiquexPériodiques02aInstitut national de la statistique et des études économiquesc(France) 0aFRbFNSP aBH4 uhttp://www.insee.fr/fr/ppp/doc_travail/liste_doc_travail.asp1 rConsultable uniquement sur Internet01200cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200006700162210002100229530006700250531004200317606003800359606004200397676000800439801003000447801003000477802000700507856014300514856014600657945001900803991001900822991002100841037679201000085167720131216093432.0 a0777-1207 accn0777-1207 a0000851677 a19891214b18931914 0frey0103 ba0 afre aBE ar aak 10aDocuments relatifs à la répression de la traite des esclaves aBruxellescHayez00aDocuments relatifs à la répression de la traite des esclaves 0aDoc. relat. répress. traite esclaves aTraite des esclavesxPériodiques aEsclavagexLutte contrexPériodiques a326 3aFRbAbesc20050105gAFNOR 3aFRbAbesc20050105gAFNOR a0M4 uhttp://archive.org/stream/documentsrelati00trgoog#page/n4/mode/2upzAccès libre au texte intégral. 1896 numérisée sur Internet Archive4 uhttp://archive.org/stream/documentsrelati00belggoog#page/n11/mode/2upzAccès libre au texte intégral. 1905 numérisée sur Internet Archive bFOL.0641(1894) aSAFIGbTA040ca anumer1 lot folio01465nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101001300123102000700136110001600143200001400159210003700173320014900210326002300359326002600382326002700408326002600435517002000461530002100481607005500502607004900557676000800606710005900614801002100673856005000694856009300744955006600837955008800903972000900991991001801000992002501018992001201043038698927000001679420130329115730.01 a0012-5172 aFNSP145831 a0000016794 a19900101a19459999 ba0 agerafre aDE aaga 10aDokumente aBonncEuropa Union Verlagd1945- aEdition bilingue allemand/français, à partir du numéro spécial 3-4 de 2009, suite à la cessation de paraître de "Documents" ISSN 0151-0827 aTrimestrielb2010- aBimestrielb1986-2009 aTrimestrielb1971-1985 aBimestrielb1945-197010aDokumente(Bonn)10aDokumentebKöln aAllemagnexPolitique et gouvernementxPériodiques aAllemagnexConditions socialesxPériodiques a94002aGesellschaft für übernationale Zusammenarbeit (Bonn) 3aFRbCCN0012-51724 uhttp://www.zeitschrift-dokumente.de/index.php zContenu : sommaires depuis 1945, dossiers et chronologies depuis 2007 en texte intégral1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 bno. 1 (1952) -no. 6 (1953) ; no. 1 (1980) -....cParisdMagasins/AnnexeeP 8° 0447 aZCAD aexempb201204 aGEO RA5.01 Allemagne aDEW 94300992nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007200154210007900226326001600305607003600321710006700357801002100424856005100445856006100496955006600557972000900623991001800632992002800650992001200678038699001000006249220130319051324.01 a0012-5415 aFNSP286263 a0000062492 a19900101a19569999 ba0 ager aAT aaha 14aDer DonauraumeZeitschrift des Forschungs-Institutes für Donauraum aWiencFachverlag für Wirtschaft und Technik Ges. M. B. H. & Co. KGd1956- aTrimestriel aEurope danubiennexPériodiques02aForschungsinstitut für den Donauraum als Vierteljahresschrift 3aFRbCCN0012-54154 uhttp://www.idm.at/publikationen/der_donauraum/ zContenu : titres des numéros et couvertures depuis 19961 bvol. 1 no. 1 (1956) -....cParisdMagasins/AnnexeeP 8° 1415 aZCAD aexempb201102 aGEO RA5 Europe centrale aDEW 94301907cas0 2200541 450 00100090000000200110000900500170002001100140003702000170005102100200006803500140008803500160010203500150011803500170013303500170015003500180016703500150018510000410020010100130024110200070025410500180026110600060027911000160028520000470030121000280034830800670037632600230044341000360046660700460050260700370054860700440058567600080062971000780063780100300071580100200074580100210076580100180078680100230080480200070082783001940083485600730102885600360110195500610113795500710119895500550126999200250132499200160134932927126000075766220130319051324.01 a0758-6531 aFRb29601162 aFRbDL 96-13980 a101526180 aocm03903976 zocm1078556 accn0758-6531 aissn07586531 afrBN021219378 a0000757662 a19780517a19732006k z0frey0103 ba0 afreefre aFR ay 0  ar aamahi 0 010aDonnées socialesela société française aPariscINSEEd1973-2006 aA partir de 2002, appartient à la collection : "Références" aTous les trois ans 1tRéférences - INSEEx1639-4968 aFrancexConditions socialesxPériodiques aFrancexPopulationxPériodiques aFrancexPolitique socialexPériodiques a30102aInstitut national de la statistique et des études économiquesc(France) 3aFRbAbesc20070411gAFNOR 1aUSbOCLCgAACR2 2aFRbAUROCgAFNOR 3aFRbBNgAFNOR 3aFRbISSNc20030523 a07 adm : décotage : anciennes cotes : COL4*3194(024), COL4°3194(039), COL4°3194(062-063), 4°014.222(1981), 4°014.222(1984), 4°014.222(1987), 4°018.639, 4°021.517, 4°023.597, 4°027.3264 uhttp://www.insee.fr/fr/publications-et-services/collection.asp?id=134 zAccès libre au texte intégral1 bLa dernière annéecParisd27, Salle 4e étageeDEW 3011 bLa dernière annéecParisdBibliothèque de rechercheeP 4° 71901 b(1973) -(2006)cParisdMagasins/AnnexeeP 4° 7190 aGEO RA4.06 France 01 aDEW 360-36300851nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000043001502100057001932300024002506060055002747110053003298010013003828560068003958560072004639550005005359920022005409920011005620001162422000116242220130319051324.0 a0001162422 a a20059999k fre 01 ba0 afre aFR ar aaz z  adr 10aDossier CNCb[Ressource électronique] aPariscCentre national de la cinématographied2005- aRevue électronique aIndustrie cinématographiqueyFrancexPériodiques02aCentre national de la cinématographiec(France) 0aFRbFNSP4 uhttp://www.cnc.fr/Site/Template/F4.aspx?SELECTID=593&id=326&t=1 zContenu : texte intégral des articles depuis le n° 293, mars 20051 r aGEO RA4.06 France aDEW 7901193nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003000139210008800169326001500257430005200272440005900324530004700383606003800430606003000468676000800498710006200506856006100568856011000629955008500739972000900824992002200833992001200855001031384000000410920131017112811.01 a0767-4775 aFNSP104821 a19900101b19852003 ba0 afre aFR aagu 10aDossiers de l'audiovisuel aBry-sur-MarneaAubervillierscINA-publicationscDocumentation françaised1985-2003 aBimestriel 1aProblèmes audiovisuels (Paris)xISSN 0249-3756 1tLes Nouveaux dossiers de l'audiovisuelxISSN 1769-101X10aDossiers de l'audiovisuelb(Bry-sur-Marne) aAudiovisuelyFrancexPériodiques aAudiovisuelxPériodiques a07002aInstitut national de l'audiovisuelc(France ;c1986-....)4 uhttp://www.ina.fr/produits/publications/da/index.fr.html zContenu : sommaires depuis le n°1, 1985 et sommaires et résumés depuis le n°35, janvier-février 19911 bno. 1 (mai/jun-1985) -no. 112 (nov/dec-2003)cParisdMagasins/AnnexeeP 4° 4600 aZCAD aGEO RA4.06 France aDEW 30201278nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002900139210005000168320002600218326002700244430006200271606004600333606004500379712015700424830004000581856020800621955010100829972000900930992002500939992001200964040405680000018744520130521172014.01 a1263-1973 aFNSP694089 a19900101b19962006 ba0 afre aFR aafa 14aLes Dossiers de la DARES aPariscLa Documentation françaised1996-2006 aN' a pas paru en 2002 aSemestriel depuis 2003 1aPremières informations. Dossiers statistiquesx0298-430X aEconomie du travailyFrancexPériodiques aMarché du travailyFrancexPériodiques02aFrancebMinistère du travail, de l'emploi et de la formation professionnellebDirection de l'animation de la recherche, des études et des statistiques atraité en collection dans le Sudoc4 uhttp://travail-emploi.gouv.fr/etudes-recherche-statistiques-de,76/etudes-et-recherche,77/publications-dares,98/collections-archivees,1732/dossiers-de-la-dares,105/zliste des thèmes depuis le no 3, 19981 bno. 1 (jan-1996) -no. 6 (2001) ; no. 1 (2003) - no. 1 (2006)cParisdMagasins/AnnexeeP 4° 6402 aZPAY aGEO RA4.06 France 01 aDEW 33100761nls 2200229 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200005200124207001300176210002300189230002400212326001800236330021400254801001300468856004500481992000500526000124335520130429122224.0 a a20019999k fre 01 ba0 afre aFR ar aag z  adr 14aLes dossiers du Cerib[Ressource électronique] 1a(2011-1) aPariscCERId2001- aRevue électronique a6 n°s par an aDossier consacré à une actualité internationale souvent compliquée à décrypter : évènements mondiaux (échéances électorales, conflits, catastrophes, enjeux stratégiques, signatures d’accords…). 0aFRbFNSP4 uhttp://www.sciencespo.fr/ceri/fr/dossier a01448nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200015800163207004800321210005000369300005000419326001600469430005600485440005700541606005500598606004200653710013400695801001300829856005900842856003600901955007100937972000901008992002501017992001601042992001601058045105499000028192720130319051325.01 a1296-2120 a0000281927 a b19982006k fre ba0 afre aFR a 0  ar aah z 0 10aDossiers solidarité et santéfMinistère de l'emploi et de la solidarité, Direction de la recherche, des études, de l'évaluation et des statistiques 1ano. 4 (1998)no. 4 (2006, déc.) ; H.S. 2007 aPariscLa Documentation françaised1998-2007 aPublié uniquement en ligne à partir de 2007 aTrimestriel 1tSolidarité santé. Etudes statistiques,x0764-4493 1tDossiers solidarité et santé (En ligne)x1958-587X aService socialyFrancexStatistiquesxPériodiques aSanté publiqueyFrancexPériodiques02aFrancebMinistère de l'emploi et de la solidaritébDirection de la recherche, des études, de l'évaluation et des statistiques 0aFRbFNSP4 uhttp://www.sante.gouv.fr/drees/dossier-solsa/index.htm zAccès libre au texte intégral1 bno. 1 (1998) -no. 4 (dec-2006)cParisdMagasins/AnnexeeP 4° 3145 aZPAY aGEO RA4.06 France 01 aDEW 310-319 aDEW 360-36300924nls 2200313 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000045001642100005002092300005002143000059002193260016002783360101002943370017003956060030004126060041004427100062004838010013005458560047005589550005006050000432335000043233520130319051325.0 a1155-4142 a0000432335 a a20019999k fre 01 ba0 afre aFR az aay z  adr 10aDREE Dossiersb[Ressource électronique] a a aTexte intégral de la publication depuis février 2001 airrégulier aDonnées textuelles accessibles uniquement en ligne ou par abonnement par courrier électronique aFichiers PDF aRisque paysxPériodiques aCommerce internationalxPériodiques02aFrancebDirection des relations économiques extérieures 0aFRbFNSP4 uhttp://www.dree.org/publications/index.htm1 r01014nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210002300177326001200200430005100212517002400263606003900287606002900326856008500355856010800440955012100548972000900669992002200678992001200700039986365000008919420130319051325.01 a1165-4074 aFNSP393249 a0000089194 a19900101a19939999 ba0 afre aFR aafa 10aDroit & patrimoine aPariscLamyd1993- aMensuel 1aJournal des notaires et des avocatsx0751-645210aDroit et patrimoine aDroit privéyFrancexPériodiques aPatrimoinexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (jan-1993) -no. 40 (jul/aou-1996) ; no. 134 (fev-2005) -no. 148 (mai-2006)cParisdMagasins/AnnexeeP 4° 6233 aZPAY aGEO RA4.06 France aDEW 34600934nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002400139210003300163326001200196430005400208530003400262606004600296606003900342676000800381856003600389856010800425955009000533972000900623992001200632039606619000006209720130514112757.01 a0419-7461 aFNSP283957 a19900101a19629999 ba0 afre aFR aafa 10aDroit administratif aPariscEd. techniquesd1962- aMensuel 1aRevue pratique de droit administratif,x0482-833X10aDroit administratif‎bParis aDroit administratifyFrancexPériodiques aDroit publicyFrancexPériodiques a3424 uhttp://global.lexisnexis.com/fr zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1962) -vol. 43 no. 7 (jul-2004)cParisdMagasins/AnnexeeP 4° 1434 aZPAY aDEW 34200896nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000051001502070047002012100005002482300024002533260005002776060046002826060031003288010013003598560072003728560108004449550005005529920012005579920025005690000994389000099438920130319051325.0 a0000994389 a a20049999k fre 01 ba0 afre aFR ar aaz z  adr 10aDroit administratifb[Ressource électronique] 1aParis :$cLexisNexis Jurisclasseur :$c2004- a aRevue électronique a aDroit administratifyFrancexPériodiques aDroit publicxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aDEW 342 aGEO RA4.06 France 0100852nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000052001502070047002022100005002492300024002543260005002786060044002838010013003278560072003408560108004129550005005209920012005259920025005370000994390000099439020130319051326.0 a0000994390 a a20049999k fre 01 ba0 afre aFR ar aaz z  adr 10aDroit des sociétésb[Ressource électronique] 1aParis :$cLexisNexis Jurisclasseur :$c2004- a aRevue électronique a aSociétésxDroityFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aDEW 346 aGEO RA4.06 France 0100844nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210002300177326001800200606002400218856009600242856010800338955006000446972000900506991001800515992002100533992001200554001033603000003341320140110122529.01 a0769-3362 aFNSP196865 a0000033413 a19900101a19859999 ba0 afre aFR aaia 10aDroit et société aPariscLGDJd1985- a3 n°s par an aDroitxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-droit-et-societe.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 14 (1990) -....cParisdMagasins/AnnexeeP 8° 5729 aZCAD aexempb201111 aGEO RQ Universel aDEW 34000839nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000059001502100034002092300024002433260005002676060041002728010013003138560085003268560108004119550005005199920025005249920012005490000969208000096920820130319051327.0 a0000969208 a a19909999k fre 01 ba0 afre aFR ar aaz z  adr 13aLe droit maritime françaisb[Ressource électronique] aPariscLamyline Reflexc1990- aRevue électronique a aDroit maritimeyFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 34101203nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003100139210005200170326001500222430004400237452005800281530002100339606003500360710004800395830005300443856021600496955006800712957007000780972000900850991001800859992001200877040162192000001625020130930163448.01 a1016-4995 aFNSP144476 a19901030a19889999 f ba0 afre aFR aaza 10aDroit nucléaireeBulletin aPariscAgence pour l'énergie nucléaired1988- aSemestriel 1aBulletin de droit nucléairex0304-3428 1tBulletin de droit nucléaire (En ligne)‎x1684-356810aDroit nucléaire aDroit nucléairexPériodiques02aAgence de l'OCDE pour l'énergie nucléaire a1988-2001 : collection envoyée au CTles en 20134 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043428/bulldroitnucleairezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 41 (1988) -no. 2 (2001)cParisdMagasins/AnnexeeP 4° 25001 bno. 1 (1968) -no. 60 (1997)cParisdMagasins/AnnexeeP Index 0471 aZPAY aexempb201307 aDEW 34101207nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001100154210005100165326001500216517004300231606002400274676000800298710007800306801002100384856011500405856009900520955006600619955005900685957008600744972000900830991001800839992001200857039756521000000425120130319051327.01 a0766-3838 aFNSP105220 a0000004251 a19900101a19859999 ba0 afre aFR aaju 10aDroits aPariscPresses universitaires de Franced1985- aSemestriel10aRevue française de théorie juridique aDroitxPériodiques a34002aInstitut de recherches politiques, administratives et juridiquesc(Paris) 3aFRbCCN0766-38384 uhttp://www.puf.com/wiki/Droits,_Revue_fran%C3%A7aise_de_th%C3%A9orie,_de_philosophie_et_de_cultures_juridiques zContenu : sommaires du n°25, 1997 au n°32, 2000 ; thèmes des numéros depuis le n°22, 19951 bLes 3 dernières annéescParisd30, Salle 3e étageeDEW 3401 bno. 1 (1985) -....cParisdMagasins/AnnexeeP 8° 48291 bno. 1 (1985) -no. 20 (1994)zCet index se trouve dans le n° 20, 1994 de la revue aZCAD aexempb200912 aDEW 34000762nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002100163210003900184326001500223606003600238801001300274856003800287856006000325955007800385972000900463992001200472040414620000058230720130319051328.01 a1263-6223 a0000582307 a b19972007k fre ba0 afre aFR a 0  ar aaj z 0 10aDrôle d'époque aNancycDrôle d'époqued1997-2007 aSemestriel aSciences socialesxPériodiques 0aFRbFNSP4 uhttp://www.revuedroledepoque.com/ zsommaires et sélection d'articles depuis le n°1, 19971 bno. 10 (prin-2002) -no. 20 (aut-2007)cParisdMagasins/AnnexeeP 8° 6723 aZPAY aDEW 00100863nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000048001502100041001983000074002393260015003133360056003283370018003846060036004027100027004387110028004658010013004938560038005069550005005449920012005490000505671000050567120130319051328.0 a0000505671 a a19979999k fre 01 ba0 afre aFR ar aaj z  adr 10aDrôle d'époqueb[Ressource électronique] aNancycUniversité de Nancy 2d1997- aSélection d'articles en texte intégral depuis le n°1, automne 1997 asemestriel aDonnées textuelles uniquement disponibles en ligne aFichiers HTML aSciences socialesxPériodiques02aForum-Irts de Lorraine02aUniversité de Nancy II 0aFRbFNSP4 uhttp://www.revuedroledepoque.com/1 r aDEW 30001003nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154207005000185210003900235326001600274517002000290606004200310801002100352856010900373856010800482955008900590991001800679992001600697037431463000001654320130319051328.01 a8756-8233 aFNSP145220 a0000016543 a19900101b19862000 ba0 aeng aUS aahu 10aDrugs & society (New York) 1avol. 1, no. 1 (1986) -vol. 16, no. 1/2 (2000) aNew YorkcHaworth Pressd1986-2000 aTrimestriel10aDrugs & society aDrogues et criminalitéxPériodiques 3aFRbCCN8756-82334 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t904385151db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (aut-1986) -vol. 15, no. 1/2 (1999)cParisdMagasins/AnnexeeP 8° 5127 aexempb201011 aDEW 364-36501307cas0 2200385 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200004600148210002900194326001200223421003300235452003600268530001900304532004200323606004400365606004400409606003800453801003000491801002300521802000700544856011100551955006900662955006400731955007700795992001600872992001200888992002100900090068165000114503020131002115608.01 a1772-788X a20050221a20059999k y0frey0103 ba0 afre aFR ay  ar aafu uu 10aDSIedéfense & sécurité internationale aVentabrencAreiond2005- aMensuel 1tDSI. Hors-série,x1960-1514 1tDSI (Paris. 2010)‎x2115-187310aDSIbVentabren10aDéfense et sécurité internationale aSécurité internationalexPériodiques aRelations internationalesxPériodiques aPolitique militairexPériodiques 3aFRbAbesc20080407gAFNOR 3aFRbISSNc20080314 a074 uhttp://www.areion.fr/publishing/www_DSI/index.htmlzContenu: sommaires des n°s depuis le no. 1 (fev-2005)1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 72641 bno. 54 (dec-2009) -....cParisdMagasins/AnnexeeP 4° 72641 bno. 33 (jan-2008) -no. 53 (nov-2009)cParisdMagasins/AnnexeeP 8° 7036 aDEW 355-359 aDEW 327 aGEO RQ Universel01299nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005200154210005500206326002400261326002600285517005400311606003300365606003800398710005100436856011900487856010800606856004400714856006500758955006600823972000900889991001800898992002100916992001200937040276902000007250320130319051329.01 a1053-6736 aFNSP332927 a0000072503 a19900101a19919999 ba0 aeng aUS aaja 10aDuke journal of comparative & international law aDurham, N.C.cDuke University School of Lawd1991- a3 nos par an$d2009- aSemestriel$d1991-200810aDuke journal of comparative and international law aDroit comparéxPériodiques aDroit internationalxPériodiques02aDuke Universityc(Durham, N.C.)bSchool of Law4 uhttps://acces-distant.sciences-po.fr/fork?http://heinonline.org/HOL/Index?collection=journals&index=journals/djcil zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.law.duke.edu/journals/djcil/ zContenu : texte intégral depuis le vol.7, n°2, spring 19971 bvol. 1 no. 1 (1991) -....cParisdMagasins/AnnexeeP 8° 5880 aZSAB aexempb201112 aGEO RQ Universel aDEW 34101052nas0 2200301 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123200007600141207002500217210005400242326001800296606003800314606004700352606002900399801003000428856010900458856007500567955006600642972000900708992001200717992002100729139145958000117939020130319051330.01 a1746-7586 a0001179390 a20091210a20089999k frey0103 ba0 aeng aGB ay 10aDynamics of asymmetric conflictepathways toward terrorism and genocide 0aVol. 1 no. 1 (2008)- aAbingtoncRoutledge Taylor & Francis Groupd2008- a3 n°s par an aGuerre asymétriquexPériodiques aConflits de basse intensitéxPériodiques aTerrorismexPériodiques 3aFRbAbesc20091210gAFNOR4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t778749996db=all zContient sommaires et résumés des n°s depuis le vol. 1 no. 1 (2008)1 bvol. 1 no. 1 (2008) -....cParisdMagasins/AnnexeeP 8° 7112 aZSAB aDEW 909 aGEO RQ Universel00718nls 2200265 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000056001502100028002062300025002346060044002598010013003038560047003168560051003639550005004149920021004199920012004400001183491000118349120130319051330.0 a0001183491 a a20099999k fre 01 ba0 afre aFR ar aaj z  adr 10aDynamiques internationales[Ressource électronique] aBordeauxcSPIRITd2009- aaRevue électronique aRelations internationalesxPériodiques 0aFRbFNSP4 uhttp://www.dynamiques-internationales.com/ zContenu : texte intégral depuis le n°1, 20091 r aGEO RQ Universel aDEW 32701162nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003200139210006000171326003200231430004500263440004500308517003600353530003400389606005600423607004600479801002100525856004700546856004600593955007100639957006700710972000900777992002200786992001600808039389162000000439820131028120311.01 a0245-9132 aFNSP105541 a19900101b19641990 ba0 afre aFR aahu 10aE & H Economie et humanisme aCaluire‎cCentre Économie et humanisme‎d1964-1990 aBimestriel puis Trimestriel 1aEconomie et humanisme (1952),x0013-0516 1tEconomie et humanisme (1991),x1637-980210aE.H.‎eéconomie et humanisme aE. & H. Economie et humanisme aEconomie sociale et solidaireyFrancexPériodiques aFrancexConditions socialesxPériodiques 3aFRbCCN0245-91324 uhttp://www.economie-humanisme.org/EH4.html zContenu : sommaire depuis le n°311, 19901 bno. 155 (1964) -no. 315 (1990)cParisdMagasins/AnnexeeP 8° 01261 b(1960/1969), (1980/1989)cParisdMagasins/AnnexeeP Index 0156 aZPAY aGEO RA4.06 France aDEW 360-36301046nas 2200313 i 450 002001100000005001700011100004100028101000800069102000700077105001800084106000600102110001600108200003200124210004700156300002800203326001100231606004000242607003000282607004500312607002900357607004300386710005200429801001300481856014000494955005200634972000900686992002100695992001600716000061713320130919091838.0 a a19979999 fre 01 ba0 aeng aJP a 0  ar aa z 0 10aEast Asian strategic review aTokyocNIDSaTokyocThe Japan Timesd1997- aPublication en japonais aAnnuel aSécurite nationaleyAsie orientale aJaponxDéfense nationale aJaponxRelations extérieuresz1989-.... aAsie orientalexDéfense aAsie orientalexRelations extérieures02aNational Institute for Defense Studiesc(Japon) 0aFRbFNSP4 uhttp://www.nids.go.jp/english/publication/east-asian/zAccès aux résumés de 1996/1997à 2000 et au texte intégral à partir de 20011 a(2003)-....cParisdMagasins/AnnexeeP 8° 6761 aZPAY aGEO RI3.22 Japon aDEW 355-35901084nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131105001800138200004000156210005300196326001600249606004900265606005700314710003200371801001300403856003300416856011600449955009600565972000900661992005600670992003200726992001200758040320804000024901420130319051331.01 a1075-8402 aFNSP872139 a0000249014 a19900101b19922003 fre 0 aeng aHU ay z a 10aEast European constitutional review aBudapestcCentral European Universityd1992-2003 aTrimestriel aDroit constitutionnelyEx-URSSxPériodiques aDroit constitutionnelyEurope de l'EstxPériodiques02aCentral European University 0aFRbFNSP4 uhttp://www.law.nyu.edu/eecr/ zContenu : sommaires ; texte intégral ; recherche sur les mots du texte ; depuis le vol. 6, n°2/3, print. 19971 bvol. 6 no. 1 (hiv-1997) -vol. 12 no. 2/3 (pri/ete-2003)cParisdMagasins/AnnexeeP 4° 6765 aZCAD aGEO RA7.02 Etats successeurs de l'Union soviétique aGEO RA2.02 Europe orientale aDEW 34201128nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000330015421000470018732600180023443000370025260600320028960600410032171000430036285601090040585601080051495500660062297200090068899100180069799200390071599200320075499200160078603673716X000007231420130319051331.01 a1350-1674 aFNSP331933 a0000072314 a19900101a19929999 ba0 aeng aGB aaja 10aEast European Jewish affairs aLondoncInstitute of Jewish Affairsd1992- a3 n°s par an 1aSoviet Jewish affairsx0038-545X aJuifsyRussiexPériodiques aJuifsyEurope de l'EstxPériodiques02aInstitute of Jewish Affairsc(Londres)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713720502db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 22 no.1 (1992) -....cParisdMagasins/AnnexeeP 8° 3000 aZCAD aexempb201001 aGEO RA7.21 Russie (depuis 1991-92) aGEO RA2.02 Europe orientale aDEW 305-30601163cas0 2200337 450 00100100000000200110001000500170002101100140003803500170005203500150006910000410008410100080012510200070013310500180014010600060015811000160016420000270018021000590020743000680026660700420033467600100037680100300038680100230041680200070043985600920044685601080053895500640064695500710071099200120078199200320079316188072X000124043720130320102430.01 a2159-9165 aissn21599165 a0001240437 a20120621a20129999u y0frey50 ba0 aeng aGB ay 0  ar aaha 0uu 10aEast European politics aAbingdon, Oxon, UKcRoutledge, Taylor & Francisd2012- 1tJournal of communist studies and transition politicsx1352-3279 aEurope de l'EstxPériodiques2rameau a943.7 3aFRbAbesc20130211gAFNOR 3aFRbISSNc20121217 a014 uhttps://acces-distant.sciences-po.fr/fork?http://www.tandfonline.com/toc/fjcs20/current zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisdMagasins/AnnexeeDEW 943.71 bvol. 28 no. 1 (mar-2012) -....cParisdMagasins/AnnexeeP 8° 4930 aDEW 947 aGEO RA2.02 Europe orientale01147nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210003200185326002200217326002700239607007000266607006800336801002100404856010100425856010800526856004600634955006800680972000900748991001800757992003200775992001400807038699974000001668620140107135415.01 a0012-8775 aFNSP145507 a0000016686 a19900101a19629999 ba0 aeng aUS aagu 10aEastern European economics aArmonk, N.Y.cSharped1962- aBimestrielb1993- aTrimestrielb1962-1992 aEurope de l'EstxConditions économiquesz1989-....xPériodiques aEurope de l'EstxPolitique économiquez1989-....xPériodiques 3aFRbCCN0012-87754 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=106044 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.mesharpe.com/mall/results1.asp1 bvol. 9 no. 3/4 (1971) -....cParisdMagasins/AnnexeeP 8° 2982 aZPAY aexempb201106 aGEO RA2.02 Europe orientale aDEW 338.901427nas 2200373 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000440015420700260019821000560022432600230028032600280030351700090033151700410034051700540038160600530043560700340048885600700052285601080059285601080070085601080080895500660091697200090098299100180099199200320100999200120104103998284X000003822320140108103925.01 a0888-3254 aFNSP211827 a0000038223 a19900101a19909999 ba0 aeng aUS aaha 00aEastern European politics and societies 1aVol. 1, no. 1 (1987)- aBerkeley, CacUniversity of California Pressd1987- aTrimestrielb2003- a3 nos par anb1987-200210aEEPS10aEast European politics and societies10aEast European politics and societies and cultures aSciences socialesyEurope de l'EstxPériodiques aEurope de l'EstxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://eep.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1987) -....cParisdMagasins/AnnexeeP 8° 5034 aZSAB aexempb201210 aGEO RA2.02 Europe orientale aDEW 94701119nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007900154210006900233326002300302326002700325326002300352517002200375607002400397710003700421856005400458856005700512955006300569957008900632972000900721991001800730992002100748992001200769055063462000010750720130319051332.01 a1340-3656 aFNSP455614 a0000107507 a19900101a19939999 ba0 afre aFR aaja 10aEbisueétudes japonaisesfbulletin de la Maison franco-japonaise de Tokyo aTôkyôcMaison franco-japonaised1993-aPariscHarmattand1993- aIrrégulierb1997- aTrimestrielb1994-1996 a3 nos par anb199310aEtudes japonaises aJaponxPériodiques02aMaison franco-japonaisec(Tokyo)4 uhttp://www.mfj.gr.jp/publications/ebisu/index.php4 zContient : sommaires depuis le n°1, avril-juin 19931 bno. 1 (avr-1993) -....cParisdMagasins/AnnexeeP 8° 59791 bno. 1 (1993) -no. 20 (1999)cParisdMagasins/Annexezse trouve dans le no. 21 (1999) aZSAB aexempb201111 aGEO RI3.22 Japon aDEW 95201782nls 2200361 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281350018001342000226001522100053003783000028004313300339004594300203007985170077010015170054010786060022011326070035011546070024011896070027012136070026012406070027012666070033012936070027013268010013013538300008013668560046013740000844070000084407020130319051332.0 a0000844070 a d19919999k fre 01 0 amul aFR ay z y  az adr 10aEBSEES, European Bibliography of Slavic and East European Studiesb[Ressource électronique]d= Bibliographie européenne des travaux sur l'ex-URSS et l'Europe de l'Estd= Europäische Bibliographie zur Osteuropaforschung aPariscMaison des sciences de l'hommed1991-2005 aConsultation : gratuite aBase de données bibliographiques : contient les références des travaux (ouvrages, articles de périodiques, comptes rendus, thèses…) parus entre 1991 et 2005 sur l'ex-URSS et l’Europe de l’Est dans 8 pays d’Europe occidentale, et dans les champs suivants : sciences sociales et humaines, littérature, linguistique et arts 1tEuropean bibliography of Soviet, East European and Slavonic Studies < P 8° 4115 > puis < P 4° 5949 >, 1977-1989 ; European bibliography of Slavic and East European Studies < P 4°5949 >, 1990-199510aBibliographie européenne des travaux sur l'ex-URSS et l'Europe de l'Est10aEuropäische Bibliographie zur Osteuropaforschung aBases de données aEurope de l'EstxBibliographie aURSSxBibliographie aEx-URSSxBibliographie aRussiexBibliographie aBalkansxBibliographie aAsie centralexBibliographie aCaucasexBibliographie 0aFRbFNSP adln4 uhttp://ebsees.staatsbibliothek-berlin.de/00919nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200002000160207006200180210002900242326001400271444003000285530003400315606002900349607002500378856014500403955006900548992001200617038585499000008003620130319051332.0 a1153-3455 aFNSP356877 a0000080036 a19900101b18841938 ba0 afre aFR ag acaa 12aL'Echo de Paris 1aan. 1 no. 1 (12 mar-1884) -an. 54 no. 21371 (27 mar-1938) aParisc[s.n.]d1884-1938 aQuotidien 1tLe Jour (1933)x1256-030802aL'Écho de ParisbParis. 1884 aActualitéxPériodiques aFrancexPériodiques4 uhttp://gallica.bnf.fr/ark:/12148/cb34429768r/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1884-1938)1 béd. en microfilm (1914) -(1938)cParisdMagasinseP Mic 35 (21) aDEW 05000780nls 2200301 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000040001642100026002042300024002303260016002546060030002706060032003008010013003328560030003458560075003759550005004509920012004559920011004670001182511000118251120130319051332.0 a1963-1197 a0001182511 a a20079999k fre 01 ba0 afre aFR ar aah z  adr 10aEchoGéob[Ressource électronique] aPariscEchoGéod2007 aRevue électronique aTrimestriel aGéographiexPériodiques aGéopolitiquexPériodiques 0aFRbFNSP4 uhttp://echogeo.revues.org zContenu : texte intégral des articles depuis le n°1, juin/août 20071 r aDEW 910 aGEO RQ01326nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210002500189326001400214421002700228421004100255517004500296530002700341606002900368606005200397607005000449801002100499856002800520856019200548856010800740955006800848992002200916992001400938992001200952166260002000001674420130518171937.01 a0153-4831 aFNSP145645 a0000016744 a19900101a19289999 ba0 afre aFR acau 14aLes EchoseEdition quotidienne aParisc[s.n.]d1908- aQuotidien 1aDynasteurs,x0983-1517 1tEnjeux les Echos (Paris),x1167-219613aLe quotidien de l'économie [française]04aLes Échosb(Imprimé) aActualitéxPériodiques aHistoire économiquez20e sièclexPériodiques aFrancexConditions économiquesxPériodiques 3aFRbCCN0153-48314 uhttp://www.lesechos.fr/4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLe mois en courscParisd27, Salle Rez-de-chausséeeP F° 0104 aGEO RA4.06 France aDEW 330.9 aDEW 05000808nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000037001552100029001923260020002215300037002416060029002786070025003078010021003328560047003539550072004009920022004729920012004949920012005060000067011000006701120130319051332.01 a0255-9889 aFNSP311192 a0000067011 a19900101a19689999 ba0 afre aTW aaoa 10aEchos de la république de Chine aTaipeicKwang Hwad1968- a3 n°s par mois00aEchos de la république de Chine aActualitéxPériodiques aTaiwanxPériodiques 3aFRbCCN0255-98894 uhttp://www.gio.gov.tw/info/echos/index.htm1 bvol. 1 no. 1 (oct-1968) -(2002)cParisdMagasins/AnnexeeP F° 0291 aGEO RI3.02 Taiwan aDEW 951 aDEW 05000995nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001300154210004500167326001200212607004600224607005000270710006000320711007800380801002100458856003800479856005500517955006400572972000900636992002200645992001400667039484467000000432720130319051332.01 a0296-4449 aFNSP105384 a0000004327 a19900101a19859999 ba0 afre aFR aafu 10aEcoflash aPariscINSEEd1985-aPariscCNDPd1985-? aMensuel aFrancexConditions socialesxPériodiques aFrancexConditions économiquesxPériodiques02aCentre national de documentation pédagogiquec(France)02aInstitut national de la statistique et des études économiquesc(France) 3aFRbCCN0296-44494 uhttp://www.cndp.fr/REVUEECOFLASH/ zContenu : résumés depuis le n° 135, fév. 1999.1 bno. 25 (jan-1988) -....cParisdMagasins/annexeeP 4° 5273 aZPAY aGEO RA4.06 France aDEW 330.900877nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210002500178326001500203606002900218606004700247856003800294856012300332955005900455957006400514972000900578992001200587036307521000008557220130319051333.01 a1130-6378 aFNSP379993 a0000085572 a19900101a19919999 ba0 aspa aES aaja 10aEcología política aMadridcFUHEMd1991- aSemestriel aEcologismexPériodiques aPolitique de l'environnementxPériodiques4 uhttp://www.ecologiapolitica.info/ zContenu : sommaires et accès au texte intégral de depuis le n°1 (uniquement les résumés pour la dernière année)1 bno. 1 (1991) -....cParisdMagasins/AnnexeeP 4° 61971 bno. 1 (1991) -no. 8 (1994)zse trouve dans le no. 10 (1995) aZCAD aDEW 33301331nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210003200177210003600209210004100245300003300286326002200319326002700341517002600368606004700394606002900441676000800470856010000478856010800578955006700686955009500753957007000848972000900918991001800927992001200945039996972000005673120130319051333.01 a1166-3030 aFNSP265030 a0000056731 a19900101a19919999 ba0 afre aFR aaha 00aEcologie politique aPariscEcopressed1992-1998 aPariscÉd. Syllepsed2002-2010 aPariscPresses de Sciences Pod2011- aN'a pas paru de 1999 à 2002 aSemestrielb2002- aTrimestrielb1991-199810aEcologie et politique aPolitique de l'environnementxPériodiques aEcologismexPériodiques a3204 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-ecologie-et-politique.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 1 (1991/1992) -no. 23 (1998) ; no. 24 (2002) -....cParisdMagasins/AnnexeeP 8° 57911 bno. 1 (1991) -no. 12 (1995)cParisdMagasins/AnnexeeP Index 0756 aZCAD aexempb201111 aDEW 33300963nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001400154210003700168326001200205436002900217436003500246488002700281530002000308606002900328606004700357801002100404856003300425856006800458955009000526972000900616992001200625039311848000001675820130319051333.01 a0261-3131 aFNSP145681 a0000016758 a19900101b19799999 ba0 aeng aGB aazy 10aEcologist aWadebrigecEcosystemsd1979-2009 aMensuel 1aNew ecologistx0141-6952 1tEcologist quarterlyx0142-0399 11aL'Ecologiste (Paris) 0aEcologistb1979 aEcologismexPériodiques aPolitique de l'environnementxPériodiques 3aFRbCCN0261-31314 uhttp://www.theecologist.org/ zContenu : sélection d'articles en texte intégral depuis 2000.1 bvol. 9 no. 3 (jun-1979) -vol. 39 no. 6 (jul-2009)cParisdMagasins/AnnexeeP 4° 3170 aZPAY aDEW 33300896nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200001800163210003500181326002300216326002900239488002300268606002900291606004700320676000800367801001300375856003100388955006700419955006300486972000900549992001200558057801630000040395320130319051333.01 a1625-4732 a0000403953 a a20009999k fre ba0 afre aFR a 0  ar aah z 0 12aL' Ecologiste aPariscEcologist-Franced2000- aTrimestrielb2013- a3 n°s par anb2000-2012 11aEcologist (1979) aEcologismexPériodiques aPolitique de l'environnementxPériodiques a333 0aFRbFNSP4 uhttp://www.ecologiste.org/1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3331 bno. 1 (aut-2000) -....cParisdMagasins/AnnexeeP 4° 6890 aZPAY aDEW 33301578nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001700139210007300156326002100229326002700250606003700277606003100314710003000345801002100375856005500396856010400451856009000555856010800645856010100753856010800854955014200962957007301104972000901177991001801186992001201204038700255000006345720131127153844.01 a0012-9682 aFNSP292251 a19900101a19339999 ba0 amul aUS aaga 10aEconometrica aChicago, Ill.cEconometric Society, the University of Chicagod1933- aBimestrielb1970 aTrimestrielb1933-1969 aEconomie politiquexPériodiques aEconométriexPériodiques02aSociété d'économétrie 3aFRbCCN0012-96824 uhttp://www.econometricsociety.org/es/contents.html zContenu : sommaires ; recherche auteurs et titres ; depuis le vol. 61, 1993 ; 1933 à 1992 si JSTOR4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00129682.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101078 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 4 (oct-1933) -vol. 8 no. 3 (jul-1940) ; vol. 15 no. 1 (jan-1947) -vol. 86 no. 6 (nov-2012)cParisdMagasins/AnnexeeP 8° 01201 bvol. 21 (1953) -vol. 45 (1977)cParisdMagasins/AnnexeeP Index 0317 aZPAY aexempb201101 aDEW 33001158nls 2200337 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000056001642100029002202300005002493000090002543260005003443260015003493360091003643370017004556060037004726060031005097100033005408010013005738560101005868560128006879550005008150000452004000045200420130319051333.01 a1368-423X a0000452004 a a19989999k fre 01 ba0 aeng aGB az aaj z  adr 14aThe Econometrics Journalb[Ressource électronique] aOxfordcBlackwelld1998- a aTexte intégral de la revue via EBSCO Online depuis le volume 1, numéro 1, juin 1998 a asemestriel aDonnées textuelles accessibles uniquement en ligne à la bibliothèque de Sciences-Po aFichiers PDF aEconomie politiquexPériodiques aEconométriexPériodiques02aRoyal Economic Societyc(GB) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=1018074 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=BO9&site=ehost-live1 r01289nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000680015421000290022232600150025143000590026653000300032560600520035571000450040780100210045285600700047385600720054385601010061585601080071695500830082497200090090799200210091699200140093703931796X000001703220131127154309.01 a0265-0665 aFNSP146513 a0000017032 a19900101a19839999 ba0 aeng aGB aagu 10aEconomic affairseJournal offthe Institute of economic affairs aOxfordcBlackwelld1983- aBimestriel 1aJournal of economic affairs (0260-8359) < P 8° 4645 >10aEconomic affairs (Harlow) aHistoire économiquez20e sièclexPériodiques02aInstitute of Economic Affairsc(Londres) 3aFRbCCN0265-06654 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=02650665 zContenu : sommaires et résumés depuis le vol. 17, n°1, mars 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101079 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 4 no. 1 (oct-1983) -vol. 32 no. 3 (oct-2012)cParisdMagasinseP 4° 4864 aZPAY aGEO RQ Universel aDEW 330.901344nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003300163210005400196326001600250430004700266510003300313517007000346607005900416607006200475607006800537607006000605710004600665711003200711801001300743856004500756955007600801972000900877992001400886992002800900992003000928058384650000040385020130319051333.01 a1580-0466 a0000403850 a a19999999k fre ba0 aeng aSI a 0  ar aah z 0 10aEconomic and business review aLjubljanacUnion of economists of Sloveniad1999- aTrimestriel 1tSlovenska ekonomska revijaxISSN 0354-073110aEkonomska in poslovna revija10aEconomic and business review for Central and South-Eastern Europe aEurope de l'EstxConditions économiquesxPériodiques aBalkansxConditions économiquesz1990-....xPériodiques aEurope de l'EstxPolitique économiquez1989-....xPériodiques aBalkansxPolitique économiquez1990-....xPériodiques02aUniverza v LjubljanibEkonomska fakulteta02aZveza ekonomistov slovenije 0aFRbFNSP4 uhttp://miha2.ef.uni-lj.si/ebrweb/public/1 bvol. 1 no. 1/2 (oct/dec-1999) -....cParisdMagasins/AnnexeeP 8° 1057 aZPAY aDEW 330.9 aGEO RA5 Europe centrale aGEO RA8 Europe du Sud-Est01169nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003800139210002400177326001600201452005900217512004200276512004600318530003800364606005700402606004200459801002100501856010800522856010800630955006600738972000900804991001800813992001200831039083683000001715720130910163718.01 a0143-831X aFNSP146876 a19900101a19809999 ba0 aeng aGB aaha 10aEconomic and industrial democracy aLondoncSaged1980- aTrimestriel 1tEconomic and industrial democracy (Online),x1461-709910aEID economic and industrial democracy1 aEID‎eeconomic and industrial democracy aEconomic and industrial democracy aPersonnelxParticipation à la gestionxPériodiques aRelations industriellesxPériodiques 3aFRbCCN0143-831X4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1980) -....cParisdMagasins/AnnexeeP 8° 4276 aZSAB aexempb201106 aDEW 33100971nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001322000050001392100031001893260011002204300056002316070060002877100046003478010021003938560064004149550055004789550052005339550054005859920028006399920014006670000035272000003527220130319051334.01 a0095-2850 aFNSP202887 a0000035272 a19900101a19729999 f ba0 aeng aUS10aEconomic and social progress in Latin America aWashington, DCcBIDd1972- aAnnuel 1aSocio-economic progress in Latin Americax0160-4902 aAmérique latinexConditions économiquesxPériodiques02aBanque interaméricaine de développement 3aFRbCCN0095-28504 uhttp://www.iadb.org/Publications/index.cfm?language=English1 b(1994) -(2005)cParisdMagasins/AnnexeeP 4° 63801 b(1980/1981)cParisdMagasins/AnnexeeP 8° 55531 b1972) -(1979)cParisdMagasins/AnnexeeCOL8°3833 aGEO RD Amérique latine aDEW 330.900904nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210003700195326001600232530004200248607005200290710002200342856004200364955014300406972000900549991001800558992002400576992001400600148289207000018924120140116160502.01 a0872-9786 aFNSP699859 a0000189241 a19900101a19959999 ba0 aeng aPT aaha 10aEconomic bulletinfBanco de Portugal aLisboacBanco de Portugald1995- aTrimestriel00aEconomic bulletin - Banco de Portugal aPortugalxConditions économiquesxPériodiques02aBanco de Portugal4 uhttp://www.bportugal.pt/default_e.htm1 bvol. 1 no. 1 (mar-1995) -vol. 10 no. 3 (sep-2004)cParisdMagasins/AnnexeeP 4° 6601wManquant : vol. 8, no 1, 2002 à vol. 9, no 4, 2003 aZPAY aexempb201401 aGEO RA6.01 Portugal aDEW 330.901000nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210004100200326001600241606004700257606003400304710002700338801002100365830005600386856002700442856007600469955006900545972000900614991001700623992002200640992001200662039379531000005236420130319051334.01 a0304-274X aFNSP251682 a0000052364 a19900101a19489999 ba0 aeng aEG aahu 10aEconomic bulletinfNational Bank of Egypt aCairocNational Bank of Egyptd1948- aTrimestriel aPolitique monétaireyEgyptexPériodiques aBanquesyEgyptexPériodiques02aNational Bank of Egypt 3aFRbCCN0304-274X a1950-1984 : années cédées au CTL en juillet 20014 uhttp://www.nbe.com.eg/ zContenu : accès libre au texte intégral depuis le vol. 55, n°3, 20021 b(1985) -vol. 57 no. 2 (2004)cParisdMagasins/AnnexeeP 8° 1012 aZGRA aexemp$201101 aGEO RG1.16 Egypte aDEW 33201104cas0 2200301 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123110001600141200011200157207002600269210003100295326001600326430005100342530003800393606004000431606007100471801003000542856010300572856004600675955006700721992001400788108948633000111034220130319051334.01 a1573-9414 a0001110342 a20060921a20059999k y0frey0103 ba0 aeng aNL ay 0  aahakk 0 10aEconomic change and restructuringeempirical and policy research on the transitional and emerging economies 0an°1, vol. 38 (2005)- aDordrechtcSpringerd2005- aTrimestriel 1tEconomics of planning (Oslo. Print)x0013-045110aEconomic change and restructuring aEntreprisesxFinancesxPériodiques aPolitique économiqueyNouveaux pays industrialisésxPériodiques 3aFRbAbesc20070706gAFNOR4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/journal2.asp?journalid=113294 zContient: sommaire et résumé d'articles1 bvol. 38 no. 1 (2005) -....cParisdMagasins/AnnexeeP 8° 1984 aDEW 338.901384nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004500154210005400199326001600253606004500269606004000314606003600354801002100390856012800411856010800539856009000647856010800737955006400845957007200909972000900981991001800990992001401008992001201022036265586000001713920130319051334.01 a0013-0079 aFNSP146836 a0000017139 a19900101a19529999 ba0 aeng aUS aahu 10aEconomic development and cultural change aChicago, Ill.cUniversity of Chicago Pressd1952- aTrimestriel aDéveloppement économiquexPériodiques aPolitique économiquexPériodiques aChangement socialxPériodiques 3aFRbCCN0013-00794 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=EDC&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00130079.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (mars-1952) -....cParisdMagasins/AnnexeeP 8° 18511 bvol. 1 (1952) -vol. 15 (1967)cParisdMagasins/AnnexeeP Index 0137 aZPAY aexempb201003 aDEW 338.9 aDEW 30101126nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000230015421000460017732600160022360600420023967600080028171000410028980100210033085600900035185601080044195500670054995501550061697200090077199100180078099200140079803870059X000001714020130319051334.01 a0013-0095 aFNSP146837 a0000017140 a19900101a19259999 ba0 aeng aUS aahu 10aEconomic geography aWorcester, Mass.cClark Universityd1925- aTrimestriel aGéographie économiquexPériodiques a33002aClark Universityc(Worcester, Mass.) 3aFRbCCN0013-00954 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00130095.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3301 bvol. 10 no. 1 (jan-1934) -vol. 16 no. 3 (jul-1940) ; vol. 22 no. 1 (jan-1946) -....cParisdMagasins/AnnexeeP 8° 0274wManque : vol. 72 no. 4 (1996) aZPAY aexempb201101 aDEW 330.901989nas 2200421 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154207011900182210004400301210003100345210002900376326001600405606003900421710003500460801002100495801001300516856007100529856007300600856010100673856010800774856009000882856010800972856012801080856010801208955013801316957007401454972000901528991001801537992001201555038700611000006125220131127154653.01 a0013-0117 aFNSP280727 a0000061252 a19900101a19279999 ba0 aeng aGB aahu 10aEconomic history review 1aVol. 1, no. 1 (Jan. 1927)-vol. 18, nos. 1 & 2 (1948) ; 2nd ser., vol. 1, no. 1 (1948)-vol. 43, no. 4 (Nov. 1990) - aLondoncEconomic History Societyd1927- adivers editeursb1927-1987 aOxfordcBlackwelld1988- aTrimestriel aHistoire économiquexPériodiques02aEconomic History Societyc(GB) 3aFRbCCN0013-0117 0aFRbFNSP4 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0013-0117 zContenu : sommaires et résumés depuis le vol. 50, n°1, fév. 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=104600 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00130117.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=ECH&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 16 no. 1 (1946) -vol. 18 no. 1/2 (1948) ; n.s. vol. 1 no. 1 (1948) -vol. 65 no. 4 (nov-2012)cParisdMagasins/AnnexeeP 8° 03181 b(1927) -(1948) ; (1948) -(1970)cParisdMagasins/AnnexeeP Index 0036 aZPAY aexempb201101 aDEW 33001894nas 2200433 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007400154210005000228210002900278326002500307326002600332326003300358326002700391421005800418530003600476606003700512710003300549801002100582856007100603856007600674856010100750856010800851856009000959856010801049955015201157957009101309972000901400991001801409992002101427992001201448038700638000001738820131127155854.01 a0013-0133 aFNSP147371 a0000017388 a19900101a18919999 ba0 aeng aGB aafu 10aEconomic journalethe quarterly journal of the Royal Economic Society aLondoncCambridge University Pressd1891-1986 aOxfordcBlackwelld1987- a8 n°s par anb1999- aBimestrielb1991-1998 a5 numéros par anb1988-1990 aTrimestrielb1891-1987 1aConference papers - Royal Economic Societyx0269-400X10aEconomic journalbLondon. Print aEconomie politiquexPériodiques02aRoyal Economic Societyc(GB) 3aFRbCCN0013-01334 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0013-0133 zContenu : sommaires et résumés depuis le vol. 107, n°440, janv. 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100833 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00130133.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 24 no. 93 (mar-1914) -vol. 24 no. 94 (jun-1914) ; vol. 37 no. 145 (mar-1927) -vol. 122 no. 565 (déc-2012)cParisdMagasins/AnnexeeP 8° 01011 b(1921) -(1930) ; (1931) -(1980) ; (1981) -(1990)cParisdMagasins/AnnexeeP Index 0042 aZPAY aexempb201101 aGEO RQ Universel aDEW 33001427nas0 2200385 450 00100100000000200110001000500170002101100140003803500170005203500150006910000410008410100080012510200070013310500180014010600060015811000160016420000940018021000470027432600160032143001190033745200400045653000520049660600370054871000340058580100300061980100230064980200070067285601040067985601080078395500710089197200090096299200120097199200250098399200330100814258830X000118651620130319051335.01 a0812-0439 aissn08120439 a0001186516 a20100315a19829999 0frey0103 ba0 aeng aAU ay  ar aah 10aEconomic papersea journal of applied economics and policyfEconomic Society of Australia aRichmond,Victoria:cWiley-Blackwelld1982- aTrimestriel 1tEconomic papers - Economic Society of Australia and New Zealand, New South Wales and Victorian Branchesx0013-0354 1tEconomic papers (Online)x1759-344100aEconomic papers - Economic Society of Australia aEconomie politiquexPériodiques02aEconomic Society of Australia 3aFRbAbesc20100315gAFNOR 3aFRbISSNc20080601 a034 uhttps://acces-distant.sciences-po.fr/fork?http://www3.interscience.wiley.com/journal/122346824/home zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 28 no. 1 (mar-2009) -....cParisdMagasins/AnnexeeP 8° 7128 aZPAY aDEW 330 aGEO RJ3.01 Australie aGEO RJ3.02 Nouvelle-Zélande01964nas 2200433 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002000139210010700159326002300266326002600289326002900315452004100344530003000385606003700415676000800452710005900460711004000519856007100559856007300630856010100703856010800804856012800912856010801040856009001148856010801238955006701346955006401413972000901477991001801486992001401504992001201518039320413000000433020130917150921.01 a0266-4658 aFNSP105388 a19900101a19859999 ba0 aeng aGB aahu 10aEconomic policy aPariscEd. de la Maison des sciences économiquesd1985-aCambridgecCambridge University Pressd1985- aTrimestrielb2005- a3 nos par an‎b2004 aSemestriel‎b1985-2003 1tEconomic policy (Online),x1468-0327 aEconomic policy‎bPrint aEconomie politiquexPériodiques a33002aEcole des hautes études en sciences socialesc(Paris)02aCentre for Economic Policy Research4 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0266-4658 zContenu : sommaires et résumés depuis le vol. 12, n°24, avr. 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100835 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=1KO&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/02664658.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3301 bno. 1 (nov-1985) - ....cParisdMagasins/AnnexeeP 8° 4920 aZPAY aexempb201106 aDEW 338.9 aDEW 33001099nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006100139210005500200326001600255430006700271452004800338530006100386606004800447606003900495712003700534830006300571856010200634955000500736972000900741992002300750992001200773037416936000015570020131212111718.01 a1932-0426 aFNSP606697 a19900101a19959999 ba0 aeng aUS aaha 10aEconomic policy reviewfFederal reserve bank of New York aNew YorkcFederal Reserve Bank of New York.d1995- aTrimestriel 1aQuarterly review - Federal Reserve Bank of New Yorkx0147-6580 1tEconomic policy review (Online),x1932-0604 0aEconomic policy reviewbFederal Reserve Bank of New York aMarché financieryEtats-UnisxPériodiques aFinancesyEtats-UnisxPériodiques02aFederal Reserve Bank of New York adésherbé après 1995 car texte intégral en ligne (2013)4 uhttp://www.newyorkfed.org/research/publication_annuals/index.html$Accès libre au texte intégral1 b aZGRA aGEO RC2 Etats-Unis aDEW 33201555nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210006800174326001600242606005600258606004800314607005300362607006100415710003400476801002100510856010100531856010800632856012800740856010800868955013800976972000901114992002501123992003301148992001201181038700646000001739320131127160131.01 a0013-0249 aFNSP147378 a0000017393 a19900101a19259999 ba0 aeng aAU aahu 10aEconomic record aMelbournecEconomic Society of Australia and New Zealandd1925- aTrimestriel aEconomie politiqueyNouvelle-ZélandexPériodiques aEconomie politiqueyAustraliexPériodiques aAustraliexConditions économiquesxPériodiques aNouvelle-ZélandexConditions économiquesxPériodiques02aEconomic Society of Australia 3aFRbCCN0013-02494 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=106132 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=ERC&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 26 no. 51 (1950) -vol. 32 no. 63 (1956) ; vol. 35 no. 72 (1959) -vol. 88 no. 283 (déc-2012)cParisdMagasins/AnnexeeP 8° 1014 aZPAY aGEO RJ3.01 Australie aGEO RJ3.02 Nouvelle-Zélande aDEW 33001234nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171100016001242000084001402100064002243000047002883260011003354300059003465300085004056010039004906060033005296070048005627100025006108560122006359550054007579550054008119720009008659920020008749920014008940000061756000006175620140116171919.01 a0259-9902 aFNSP282250 a19900101a19809999 ba0 aeng aIR aaka 10aEconomic report and balance sheetfCentral Bank of the Islamic Republic of Iran aTehrancCentral Bank of the Islamic Republic of Irand1980- aEn version électronique à partir de 2005 aAnnuel 1aAnnual report and balance sheet - Central Bank of Iran00aEconomic report and balance sheet - Central Bank of the Islamic Republic of Iran02aCentral Bank of IranxPériodiques aFinancesyIranxPériodiques aIranxConditions économiquesxPériodiques02aCentral Bank of Iran4 uhttp://www.cbi.ir/category/EconomicReport_en.aspxzContenu : texte intégral du rapport à partir de l'éd. 2000/20011 b(1981)-(1999)cParisdMagasins/AnnexeeCOL4°27571 b(2000)-(2004)cParisdMagasins/AnnexeeP 4° 7000 aZGRA aGEO RG4.02 Iran aDEW 330.901043nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000158001502100064003082300024003723260011003966010039004076060033004466070048004797100025005278010013005528560054005658560071006199550005006909920020006959920014007150001131196000113119620130319051335.0 a0001131196 a a20009999k fre 01 ba0 aeng aIR ar aak z  adr 10aEconomic report and balance sheet - Central Bank of the Islamic Republic of Iranb[Ressource électronique]fCentral Bank of the Islamic Republic of Iran aTehrancCentral Bank of the Islamic Republic of Irand2000- aRevue électronique aAnnuel02aCentral Bank of IranxPériodiques aFinancesyIranxPériodiques aIranxConditions économiquesxPériodiques02aCentral Bank of Iran 0aFRbFNSP4 uhttp://www.cbi.ir/category/EconomicReport_en.aspx4 zContenu : texte intégral du rapport à partir de l'éd. 2000/20011 r aGEO RG4.02 Iran aDEW 330.901270nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006500154210003500219300006900254326001100323607005200334607005400386676001000440710004500450711002600495801002100521856007300542856003600615955006900651955005700720955005500777972000900832991001800841992002300859992001400882039146081000001477320130402144740.01 a0193-1180 aFNSP140775 a0000014773 a19900101a00019999 ba0 aeng aUS aaku 10aEconomic report of the President transmitted to the Congress aWashington, D.C.cUSGPOd0001- aContient : " Annual report of the Council of Economic Advisers " aAnnuel aEtats-UnisxPolitique économiquexPériodiques aEtats-UnisxConditions économiquesxPériodiques a330.902aEtats-UnisbCouncil of Economic Advisers02aEtats-UnisbPresident 3aFRbCCN0193-11804 uhttp://www.gpo.gov/fdsys/browse/collection.action?collectionCode=ERP zAccès libre au texte intégral1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 330.91 b(1946) -(1979)cParisdMagasins/AnnexeeCOL 8° 01631 b(1980) -(2010)cParisdMagasins/AnnexeeP 8° 5253 aZPAY aexempb201109 aGEO RC2 Etats-Unis aDEW 330.900965nls 2200277 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200013500124210003500259230002800294326001100322607005200333607005400385710004500439711002600484801001300510856012200523955000500645992002300650992001400673000124254220130522152112.0 a a19959999k fre 01 ba0 aeng aUS ar aa z  adr 10aEconomic report of the President transmitted to the Congressb[Ressource électronique] /Etats-Unis.bCouncil of Economlc Advisers aWashington, D.C.cUSGPOd1995- aRessource électronique aAnnuel aEtats-UnisxPolitique économiquexPériodiques aEtats-UnisxConditions économiquesxPériodiques02aEtats-UnisbCouncil of Economic Advisers02aEtats-UnisbPresident 0aFRbFNSP4 uhttp://www.gpo.gov/fdsys/browse/collection.action?collectionCode=ERPzAccès au texte intégral du rapport depis 19951 r aGEO RC2 Etats-Unis aDEW 330.901046nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210007000184326002800254326002200282434004500304451006200349607005000411710005600461801002100517856004000538856003600578955006500614972000900679992001800688992001400706038850516000000451520130319051336.01 a0070-8712 aFNSP105951 a0000004515 a19900101b19472005 f ba0 aeng aCH aaiu 10aEconomic survey of Europe aGenevacUnited Nations, Economic Commission for Europed1947-2005 a3 nos par anb1998-2005 aAnnuelb1947-1997 1tEconomic bulletion for Europex0041-2005 1aEtude sur la situation économique de l'Europex0251-0294 aEuropexConditions économiquesxPériodiques02aNations UniesbCommission économique pour l'Europe 3aFRbCCN0070-87124 uhttp://www.unece.org/ead/survey.htm4 zAccès libre au texte intégral1 b(1947) -no2, (2005)cParisdMagasins/AnnexeeNU 4° 0006 bis aZPAY aGEO RA Europe aDEW 330.901192nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005500154210003600209326001100245430004800256607006000304710008300364801002100447856012000468856004700588955005800635955010000693972000900793992002200802992002800824992001400852039290271000018476220140108160147.01 a0257-2184 aFNSP685857 a0000184762 a19900101a19829999 f ba0 aeng aCL aaku 10aEconomic survey of Latin America and the Caribbean aSantiagocUnited Nationsd1982- aAnnuel 1aEconomic survey of Latin Americax0070-8720 aAmérique latinexConditions économiquesxPériodiques02aNations UniesbCommission économique pour l'Amérique latine et les Caraïbes 3aFRbCCN0257-21844 uhttp://www.eclac.org/cgi-bin/getProd.asp?xml=/de/agrupadores_xml/aes252.xml&xsl=/agrupadores_xml/agrupa_listado.xsl4 zAccés au texte intégral depuis 1998/19991 b(2007/2008) -....cParisdMagasins/AnnexeeP 4° 72571 b(1982) -(1984) ; (1987) -(1989) ; (1992) -(2006/2007)cParisdMagasins/AnnexeeNU 4°00.165 bis aZPAY aGEO RD3 Caraïbes aGEO RD Amérique latine aDEW 330.901111nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210004200175210003900217326002300256326002600279430005000305607005900355710003200414856004000446856010500486856004200591955006700633972000900700991001800709992003200727992001400759040056961000003821820130319051336.01 a0939-3625 aFNSP211819 a0000038218 a19900101a19919999 ba0 aeng aDE aaha 10aEconomic systems aHeidelbergcPhysica-Verlagd1991-2000 aAmsterdamcElsevier Scienced2001- aTrimestrielb1993- aSemestrielb1991-1992 1aJahrbuch der Wirtschaft Osteuropasx0449-5225 aEurope de l'EstxConditions économiquesxPériodiques02aOsteuropa-Institut (Berlin)4 uhttp://www.lrz-muenchen.de/econsys/4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/web-editions/journal/09393625 zAccès aux sommaires et aux résumés1 bvol. 15 no. 1 (1991) -....cParisdMagasins/AnnexeeP 8° 5951 aZPAY aexempb201210 aGEO RA2.02 Europe orientale aDEW 330.101687nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009100154210002900245326001600274530002900290606003700319710005300356801002100409856007100430856007500501856010100576856010800677856009000785856010800875856012800983856010801111955008501219972000901304992001201313038700735000001745020131127160231.01 a0013-0427 aFNSP147613 a0000017450 a19900101a19219999 ba0 aeng aGB aaha 10aEconomicafpublished quarterly by the London school of economics and political science aOxfordcBlackwelld1921- aTrimestriel00aEconomicabLondon. Print aEconomie politiquexPériodiques02aLondon School of Economics and Political Science 3aFRbCCN0013-04274 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0013-0427 zContenu : sommaires et résumés depuis le vol. 64, n°253, fév. 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100836 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00130427.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=ECA&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (jan-1921) -vol. 79 no. 316 (oct-2012)cParisdMagasins/AnnexeeP 8° 0122 aZGRA aDEW 33001120nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004900139210006200188326001700250606004800267606003700315712005600352801002100408856016000429955008200589957007200671991002000743991001800763992002500781992001200806038700719000001743320130502115602.01 a0013-0419 aFNSP147575 a19900101a19549999 ba0 aspa aAR aaia 10aEconómicafUniversidad Nacional de La Plata aLa PlatacInstituto de investigaciones económicasd1954- a3 nos par an aEconomie politiqueyArgentinexPériodiques aEconomie politiquexPériodiques02aInstituto de investigaciones económicas (La Plata) 3aFRbCCN0013-04194 uhttp://economica.econo.unlp.edu.ar/zTexte intégral gratuit de la revue du vol. 1, 1954 au vol. 54, no. 2, 2008 ; Sommaires et résumés à partir de 20081 bvol. 1 no. 1 (1954) -vol. 45 no. 4 (1999)cParisdMagasins/AnnexeeP 8° 13591 bvol. 14 (1968)-vol. 18 (1972)cParisdMagasins/AnnexeeP Index 0235 aPériobTP03 P8 aexempb201305 aGEO RD4.11 Argentine aDEW 33001127nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210002900179326001700208517002700225606003600252606004000288856007100328856007100399856012800470856010800598955006600706972000900772991001800781992001400799040084329000005566820130319051336.01 a0954-1985 aFNSP260748 a0000055668 a19900101a19899999 ba0 aeng aGB aaia 10aEconomics & politics aOxfordcBlackwelld1989- a3 nos par an10aEconomics and politics aScience politiquexPériodiques aPolitique économiquexPériodiques4 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0954-1985 zContenu : sommaires et résumés depuis le vol. 9, n°3, nov. 19974 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=7QT&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1989) -....cParisdMagasins/AnnexeeP 8° 5574 aZSAB aexempl$102011 aDEW 338.901151nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003400139210002800173326002200201326002700223452005500250530003400305606006000339606004800399801002100447856006800468856005400536955007100590955008600661972000900747991001800756992002300774992001600797039334147000001744620131119173710.01 a0272-7757 aFNSP147605 a19900101a19819999 ba0 aeng aUS aagu 10aEconomics of education review aOxfordcPergamond1981- aBimestrielb2001- aTrimestrielb1981-2000 1tEconomics of education review (Online),x1873-7382 aEconomics of education review aEducationxAspect économiqueyEtats-UnisxPériodiques aEducationxAspect économiquexPériodiques 3aFRbCCN0272-77574 uhttp://www.journals.elsevier.com/economics-of-education-review/ zContenu : sommaires depuis le vol. 1, no. 1, 19811 bvol. 16 no. 1 (fev-1997) -....cParisdMagasins/AnnexeeP 4° 66551 bvol. 1 no. 1 (hiv-1981) -vol. 15 no. 4 (1996)cParisdMagasins/AnnexeeP 8° 4468 aZPAY aexempb201106 aGEO RC2 Etats-Unis aDEW 370-37901942nas 2200445 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210004700186210003300233210003600266326002300302326002800325326002600353607004900379607006800428607005100496607007000547676001000617710006700627856004600694856006600740856010100806856010800907856012801015856010801143955011601251972000901367991001801376992005601394992003201450992001401482040101983000010060720131127160747.01 a0967-0750 aFNSP434384 a0000100607 a19900101a19939999 ba0 aeng aGB aaia 14aThe Economics of transition aOxfordcOxford University Pressd1993-1998 aOxfordcBlackwelld1999-2008 aaOxfordcWiley-Blackwelld2008- aTrimestrielb2003- a3 nos par anb1999-2002 aSemestrielb1996-1998 aEx-URSSxPolitique économiquexPériodiques aEurope de l'EstxPolitique économiquez1989-....xPériodiques aEx-URSSxConditions économiquesxPériodiques aEurope de l'EstxConditions économiquesz1989-....xPériodiques a338.902aBanque européenne pour la reconstruction et le développement4 uhttp://www.blackwell-synergy.com/loi/ecot zContenu : sommaires et résumés depuis le vol. 9, n°3, 20014 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=102573 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=7QI&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1993) -vol. 20 no. 4 (2012)cParisdMagasins/AnnexeeP 8° 5965wManquants : vol. 3, 1995 (perdu) aZPAY aexempb201111 aGEO RA7.02 Etats successeurs de l'Union soviétique aGEO RA2.02 Europe orientale aDEW 338.901512nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008000154210004600234326001800280430006800298517002700366530003300393606003700426676000800463710006500471801002100536856010100557856010800658856005700766856004900823955006700872955006000939957008500999972000901084992002101093992001201114039416038000000447320130319051337.01 a0249-4744 aFNSP105872 a0000004473 a19900101a19819999 ba0 afre aFR aagu 10aEconomie & prévisionfMinistère de l'économie, des finances et du budget aPariscLa Documentation françaised1981- a5 n°s par an 1aStatistiques et études financières (Série orange)x0338-421710aEconomie et prévision00aEconomie & prévisionbParis aEconomie politiquexPériodiques a33002aFrancebMinistère de l'économie, des finances et du budget 3aFRbCCN0249-47444 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-economie-et-prevision.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://alize.finances.gouv.fr/prevision/revue/ep.htm zsommaires et résumés depuis le no 87, 19891 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3301 bno. 46 (1981) -....cParisdMagasins/AnnexeeP 4° 30081 b(1982/1987)cParisdMagasins/Annexezse trouve dans le no. 81, 1987 de la revue. aZPAY aGEO RQ Universel aDEW 33001197nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210005500178210002900233210006000262210003800322326001600360430007200376606003700448710007700485801002100562856004100583856005200624955006300676957006900739972000900808991001800817992001200835039222977000001742520140106113010.01 a0013-0494 aFNSP147548 a0000017425 a19900101a19489999 ba0 afre aFR aaha 10aEconomie appliquée aPariscPresses universitaires de Franced1948-1967 aGenèvecDrozd1968-1988 aGrenoblecPresses universitaires de Grenobled1989-1998 aPariscPresses de l'ISMÉAd1999- aTrimestriel 1aBulletin de l'Institut de science économique appliquéex1147-7423 aEconomie politiquexPériodiques02aInstitut de sciences mathématiques et économiques appliquéesc(Paris) 3aFRbCCN0013-04944 uhttp://www.ismea.org/ismea/eapp.html zContenu : sommaires depuis 1970 ; index auteurs1 bno. 1 (jan-1948) -....cParisdMagasins/AnnexeeP 8° 01231 bno. 2 (1968) -no. 3 (1991)cParisdMagasins/AnnexeeP Index 0679 aZPAY aexempb201101 aDEW 33000961nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000019001552100048001743260016002226070075002386070033003137120111003468010021004578560066004788560065005449550005006099720009006149920022006239920014006450000062897000006289720130319051337.01 a0150-7575 aFNSP287848 a0000062897 a19900101a19769999 ba0 afre aFR aaha 10aEconomie corse aAjacciocINSEE, Direction régionaled1976- aTrimestriel aFrancexConditions économiquesxDisparités régionalesxPériodiques aCorse (France)xPériodiques02aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Ajaccio) 3aFRbCCN0150-75754 uhttp://www.insee.fr/fr/insee_regions/corse/home/home_page.asp zLe contenu de la revue est dispersé sur le site Insee/Corse1 b aZPAY aGEO RA4.06 France aDEW 330.901373cas0 2200409 450 001001000000002001100010005001700021011001400038035002500052035001700077035001500094100004100109101000800150102000700158105001800165106000600183110001600189200009300205210006100298300004200359326001100401454003400412606004900446606005500495607004100550710004700591801003000638801002900668801002300697802000700720856008600727856005300813955004700866972000900913992002500922992001600947104394269000113841520130319051337.0 a1777-1021 aFRBNF400810310000004 aissn17771021 a0001138415 a20051207b200 2006u y0frey0103 ba1 afre aFR ay  ar azku uu 12aL'Economie de la défensefMinistère de la défense, Conseil économique de la défense a[Paris]cConseil économique de la défensed[200.]-2006 aNotice réd. d'après l'édition 2004 aAnnuel 1tDefence economy inx1777-103X aIndustries de défenseyFranceyPériodiques aDéfensexAspect économiqueyFrancexPériodiques aFrancexForces arméesxPériodiques02aFrancebConseil économique de la défense 3aFRbAbesc20080201gAFNOR 3aFRbBnFc20060327gAFNOR 3aFRbISSNc20070706 a074 uhttp://www.defense.gouv.fr/ced/votre_espace/publications/l_economie_de_la_defense zContenu : texte intégral du rapport depuis 20041 b(2006)cParisdMagasins/AnnexeeP 8° 7022 aZGRA aGEO RA4.06 France 01 aDEW 355-35901181cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118106000600125110001600131200002700147207005400174210004300228326001600271430004600287517002600333530003400359606005600393607004600449801003000495801002300525802000700548856005500555856005100610955008300661972000900744991001600753992002200769992001600791061783226000109266920131028120210.01 a1637-9802 aissn16379802 a20020718b19912007k y0frey0103 ba0 afre aFR ar aahu uu 10aÉconomie et humanisme 1ano. 316 (1991, janv./mars) - no. 382 (2007, oct.) aLyoncEconomie et humanismed1991-2007 aTrimestriel 1tE. & H. Economie et humanisme,x0245-913210aÉconomie & humanisme10aEconomie et humanismeb(1991) aEconomie sociale et solidaireyFrancexPériodiques aFrancexConditions socialesxPériodiques 3aFRbAbesc20061019gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.economie-humanisme.org/Publications.htm zContenu : Index des dossiers parus depuis 19831 bno. 316 (jan/mar-1991) -no. 382 (oct-2007)cParisdMagasins/AnnexeeP 8° 0126 aZPAY aexempb2013 aGEO RA4.06 France aDEW 360-36301297nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009300154210002400247326001200271430003700283517001000320517001100330607005000341676000800391710007800399801002100477856004700498856003600545955006700581955006400648957007100712957007400783972000900857992002200866992001400888992000900902013307509000000432020130319051338.01 a0336-1454 aFNSP105373 a0000004320 a19900101a19699999 ba0 afre aFR aafu 10aEconomie et statistiquefInstitut national de la statistique et des études économiques aPariscINSEEd1969- aMensuel 1aEtudes et conjoncturex0429-568410aE & S10aE et S aFrancexConditions économiquesxPériodiques a33002aInstitut national de la statistique et des études économiquesc(France) 3aFRbCCN0336-14544 uhttp://www.insee.fr/fr/ppp/collections.htm zAccès libre au texte intégral1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3301 bno. 1 (mai-1969) - ....cParisdMagasins/AnnexeeP 4° 01061 bno. 1 (1969) - no. 42 (1982)cParisdMagasins/AnnexeeP Index 04861 b(1982) -(1991)zcet index constitue le no. 250 (jan-1992) de la revue aZPAY aGEO RA4.06 France aDEW 330.9 aPBUL01720cas0 2200445 450 001001000000002001100010005001700021011001400038035001400052035002100066035001700087100004100104101000800145102000700153105001800160106000600178110001600184200016000200207001700360210002400377225002800401305006400429326001100493410003600504430005100540517004100591530004600632606007200678607007200750676001500822710008300837801003000920801002300950802000700973856012700980955007001107955005801177992001401235992002501249088588254000123886120131021095921.0 a1769-4035 a08120678X a(OCoLC)174245078 aissn17694035 a20050712a20049999k a0frey50 ba0 afre aFR ay 0  ar aak ii 0zz012aL'Économie françaiseecomptes et dossierserapport sur les comptes de la Nation de ...f[Institut national de la statistique et des études économiques] 0a(2004/2005)- aPariscINSEEd2004-00aRéférencesx1639-4968 aL'édition 2004/2005, parue en 2004, recouvre l'année 2003 aAnnuel 1tRéférences - INSEEx1639-4968 1tL'Economie française (Paris. 1993)x1638-209910aRapport sur les comptes de la nation02aL'Economie française comptes et dossiers aComptabilité nationaleyFrancexStatistiquesxPériodiques2rameau aFrancexConditions économiquesxStatistiquesxPériodiques2rameau a330.9v22a02aInstitut national de la statistique et des études économiquesc(France)4070 3aFRbAbesc20120613gAFNOR 3aFRbISSNc20081014 a074 uhttp://www.insee.fr/fr/publications-et-services/collection.asp?super_id=1zAccès libre au texte intégral depuis 2005/20061 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 330.941 b(2004/2005) -....cParisdMagasins/AnnexeeP 8° 6604 aDEW 330.9 aGEO RA4.06 France 0101267nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210005000182326001600232430005600248440003900304606004100343606003700384606005700421676000800478710007800486856010300564856010800667955007000775972000900845991001800854992001200872992003300884040050114000010083320130826120152.01 a1240-8093 aFNSP434937 a0000100833 a19900101b19932009 ba0 afre aFR aaha 10aEconomie internationale aPariscLa Documentation françaised1993-2009 aTrimestriel 1aEconomie prospective internationalexISSN 0242-7818 1tInternational economicsx2110-7017 aCommerce internationalxPériodiques aEconomie politiquexPériodiques aRelations économiques internationalesxPériodiques a33702aCentre d'études prospectives et d'informations internationalesc(France)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-economie-internationale.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 54 (1993) -no. 120 (2009)cParisdMagasins/AnnexeeP 8° 4264 aZPAY aexempb201303 aDEW 337 aGEO RS Sans aspect régional00978nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002500139210005500164326001600219530003500235606003700270676000800307856010000315856010800415955006700523955005900590972000900649991001800658992001200676045087261000026675920130828183706.01 a1293-6146 aFNSP924623 a19990217a19999999 ba0 afre aFR aaha 02aL'Economie politique aParis‎cScop-Alternatives économiques‎d1999- aTrimestriel12aL'Economie politique‎bParis aEconomie politiquexPériodiques a3304 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-l-economie-politique.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3301 bno. 1 (1999) -....cParisdMagasins/AnnexeeP 8° 6461 aZPAY aexempb200408 aDEW 33001197cas0 2200385 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001700100035001500117100004100132101000800173102000700181110001600188200007500204210004700279210005200326326002200378326002800400606003700428710004700465801003000512801003000542801002300572802000700595856003600602856007500638955005900713972000900772991001800781992001200799044839049000087512420140106114426.01 a1373-8496 a058731083 accn1373-8496 zccn7205/3364 aissn13738496 a0000875124 a20000407a19989999 0frey0103 ba0 afre aFR aaj 10aEconomie publique. Etudes et recherchesfInstitut d'économie publique aBruxellescDe Boeck Universitéd1998-2003 aMarseillecInstitut d'économie publiqued2003- aSemestrielb2002- a3 nos par anb1998-2001 aÉconomie publiquexPériodiques02aInstitut d'économie publiquec(Marseille) 3aFRbAbesc20050414gAFNOR 3aFRbAbesc20050414gAFNOR 3aFRbISSNc20010521 a0m4 uhttp://www.economie-publique.fr zContenu : accès au texte intégral des articles depuis le n° 1, 19981 bno. 1 (1998) -....cParisdMagasins/AnnexeeP 8° 6834 aZPAY aexempb201212 aDEW 33001158nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210002300174326001500197430007400212606003000286606005800316710004400374801002100418856009400439856010800533955007100641957007300712972000900785992002200794992001600816013302248000001853720130319051339.01 a0013-0559 aFNSP150505 a0000018537 a19900101a19539999 ba0 afre aFR aaga 10aEconomie rurale aPariscSFERd1953- aBimestriel 1aBulletin de la Société française d'économie rurale < P 4° 0903 > aAgriculturexPériodiques aAgriculturexAspect économiqueyFrancexPériodiques02aSociété française d'économie rurale 3aFRbCCN0013-05594 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-economie-rurale.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 15 (jan-1953) -....cParisdMagasins/AnnexeeP 4° 09031 bno. 111 (1976) -no. 122 (1977)cParisdMagasins/AnnexeeP Index 0512 aZPAY aGEO RA4.06 France aDEW 338.1-301192nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200012300163210004400286225003200330326001100362607006000373607005600433676001000489710006800499711005700567801001300624856002900637955006900666955005500735972000900790992002900799992001400828080065139000053979420130319051339.01 a1768-4560 a0000539794 a b20022009k fre ba0 afre aFR a 0  ar aa z 0 14aLes économies de l'Afrique centralefCommission économique des Nations Unies pour l'Afrique, Bureau Afrique centrale aPariscMaisonneuve et Larosed2002-200920aEconomies en développement aAnnuel aAfrique centralexConditions économiquesxPériodiques aAfrique centralexConditions socialesxPériodiques a330.902aCentre de développement sous-régional pour l'Afrique centrale02aNations UniesbCommission économique pour l'Afrique 0aFRbFNSP4 uhttp://www.uneca.org/ac/1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 330.91 b(2002) -(2009)cParisdMagasins/AnnexeeP 8° 6702 aZPAY aGEO RF2 Afrique centrale aDEW 330.901304nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009300154210005600247326001200303430006300315517005800378517006100436606003700497606005200534710007700586801002100663856002500684856005300709955006300762957005700825972000900882991001800891992002100909992001200930032921713000000459920140106115406.01 a0013-0567 aFNSP106080 a0000004599 a19900101a19679999 ba0 afre aFR aafu 10aEconomies et sociétésfInstitut de sciences mathématiques et économiques appliquées aGrenoblecPresses universitaires de Grenobled1967- aMensuel 1aCahiers de l'ISEAx0994-8287 (catalogués en monographies)10aÉconomies et sociétés : Cahiers de l'ISMEA (1975-)10aÉconomies et sociétés : Cahiers de l'ISEA (1967-1974) aEconomie politiquexPériodiques aHistoire économiquez20e sièclexPériodiques02aInstitut de sciences mathématiques et économiques appliquéesc(Paris) 3aFRbCCN0013-05674 uhttp://www.ismea.org zContenu : sommaires depuis le n°1, janvier 19701 bno. 1 (jan-1967) -....cParisdMagasins/AnnexeeP 8° 24311 b(1959) -(1991)cParisdMagasins/AnnexeeP Index 0679 aZPAY aexempb201009 aGEO RQ Universel aDEW 33001248nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210002900177326001700206451005900223517001800282606005200300606002900352607003400381801002100415856019200436856010800628955006900736955007400805992003100879992001200910038700859000000477520131014103214.01 a0013-0613 aFNSP106426 a0000004775 a19900101a18439999 ba0 aeng aGB accu 10aEconomist (London) aLondoncEconomistd1843- aHebdomadaire 1aEconomist. Edición para America latina < P 4° 2576 >10aThe Economist aHistoire économiquez20e sièclexPériodiques aActualitéxPériodiques aGrande-BretagnexPériodiques 3aFRbCCN0013-06134 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 01281 bvol. 30 no. 1527 (nov-1872) -....cParisdMagasins/AnnexeeP 4° 0128 aGEO RA4.02 Grande-Bretagne aDEW 05000857nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000053001502100052002032300024002553260005002796060037002846070054003218010013003758560031003888560108004199550005005279920023005329920012005550000995139000099513920130319051339.0 a0000995139 a a20049999k fre 01 ba0 aeng aUS ar aay z  adr 14aThe Economists' Voiceb[Ressource électronique] aBerkeley, CAcBerkeley Electronic Pressd2004 - aRevue électronique a aEconomie politiquexPériodiques aEtats-UnisxConditions économiquesxPériodiques 0aFRbFNSP4 uhttp://www.bepress.com/ev/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RC2 Etats-Unis aDEW 33001596nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210002900178326001600207606003700223606004100260801002100301801001300322856012800335856010800463856012800571856010800699856010900807856010800916955007001024957010101094972000901195991001801204992001201222013385054000001823520130319051339.01 a0308-5147 aFNSP149791 a0000018235 a19900101a19729999 ba0 aeng aGB aaha 10aEconomy and society aLondoncRoutledged1972- aTrimestriel aEconomie politiquexPériodiques aSociologie économiquexPériodiques 3aFRbCCN0308-5147 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=5B0&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=5B0&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713685159db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (fev-1972) -....cParisdMagasins/AnnexeeP 8° 30101 bvol.1 (1972) -vol. 5 (1976) ; vol.1 (1972) -vol. 10 (1981)cParisdMagasins/AnnexeeP Index 0310 aZSAB aexempb201106 aDEW 33000996nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005000163210002600213326001600239530002000255606002900275606005500304676000800359801001300367856002300380856008000403955007300483955005900556972000900615992001200624992002200636058823913000054485120130319051340.01 a1628-6391 a0000544851 a a20009999k fre ba0 afre aFR a 0  ar aah z 0 10aEcoRev'erevue critique d'écologie politique aPariscEcoRev'd2000- aTrimestriel10aEcoRev' (Paris) aEcologismexPériodiques aPolitique de l'environnementyFrancexPériodiques a001 0aFRbFNSP4 uhttp://ecorev.org/ zSélection d'articles en texte intégral depuis le n°0, 1er trimestre 20001 bLes 3 dernières annéescParisd27, Salle Rez-de-chausséeeDEW 0011 bno. 1 (2000) -....cParisdMagasins/AnnexeeP 4° 6984 aZCAD aDEW 001 aGEO RA4.06 France01050cas0 2200361 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147105001800154106000600172110001600178200005900194207002700253210003000280301005600310326001500366606002700381606003400408801003000442801002300472802000700495856004000502856004600542955006300588992001600651992002100667125204515000117708720130319051340.01 a1967-7499 a131745085 aissn19677499 a0001177087 a20080625a20089999k y0frey0103 ba0 afre aFR ay  ar aaju uu 10aEcrire l'histoireehistoire, littérature, esthétique 0aN.1 (2008, printemps)- aMarseillecGaussend2008- aDemande de numérotation ISSN en cours par le CR 57 aSemestriel aHistoirexPériodiques aHistoriographiexPériodiques 3aFRbAbesc20090309gAFNOR 3aFRbISSNc20090225 a074 uhttp://www.revueecrirelhistoire.fr/4 zAccès aux sommaires depuis le n°1, 20081 bno. 1 (pri-2008) -....cParisdMagasins/AnnexeeP 8° 7105 aDEW 900-907 aGEO RQ Universel01251cas0 2200325 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200004500148207005000193210009500243301004300338320005400381325006200435530004500497606002100542606004700563606005200610676000800662801003000670856014100700955006400841991002000905036831875000109341820130319051340.0 accn0118/2560 a0001093418 a19830101b18021929k y1frey0103 ba0 aeng aGB ar aah 114aThe Edinburgh review or Critical journal 0aVol.1:no1(1802,oct.)-vol.250:no510(1929,oct.) aEdinburghcArchibald Constable and companyaLondoncHurst, Rees, Orme and Brownd1802-1929 aDemande de numérotation ISSN en cours aIndex des vol.1-20, 21-50, 51-80, 81-110, 111-1401 aArticles reproduits sur la base de données PCI Full Text04aThe Edinburgh review or Critical journal aCritique2rameau aHistoire universellexPériodiques2rameau aRelations internationalesxPériodiques2rameau a900 3aFRbAbesc20050614gAFNOR4 uhttp://www.archive.org/search.php?query=edinburgh%20reviewzAccès libre au texte intégral. Périodique numérisé sur Internet Archive1 b(1846) -(1884)wlacunescParisdMagasins/AnnexeeP 8° 0708 aPériobTP02 P801584nls 2200361 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000066001502100043002162300021002593000259002803260005005393300100005444640042006444640017006864640017007034640029007206060037007496760008007867120030007948010013008248300168008378560064010058560148010699550005012170000909073000090907320130319051340.0 a0000909073 a a20049999k fre 01 ba0 afre aFR az aau z  adr 10aEditions Francis Lefebvre en ligneb[Ressource électronique] aLevallois-PerretcF. Lefebvred[2004]- aService en ligne aEn complément : Archives annuelles Navis sur cédéroms : 2005 et 2006 (Navis Droit des affaires Archives ; Navis Droit fiscal Archives ; Navis Droit social Archives), 2007 (Navis intégral : droit des affaires, social, fiscal, comptabilité-conso-ifrs) a aAccès à la base Mementis (14 memento) et aux bases Navis droit des affaires, fiscal et social 1tMémento pratique Francis Lefebvre... 1tNavis fiscal 1tNavis social 1tNavis droit des affaires aDroityFrancexBases de données a34002aEditions Francis Lefebvre 0aFRbFNSP aArchives (cédéroms version Nomade) Salle de référence - Avons 2005 et 2006 (= 6 cdr + 6 cdr d'installation - ET le 26/01/2007) + 2007 ("Navis intégral" 1 cdr)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.efl.fr4 zConsultation : Campus Sciences Po ; limité à trois utilisateurs simultanés.Dans la rubrique Abonnés, cliquez sur le lien multiutilisateurs.1 r01144nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000028001552070028001832100056002113000028002673000040002953260016003356060052003516060036004037120128004398010021005678560063005888560039006519550069006909720009007599920022007689920016007900000017656000001765620130319051340.01 a0294-0868 aFNSP148161 a0000017656 a19900101a1982 ba0 afre aFR aaha 10aEducation et formations 1aNo 1 (oct./déc. 1982)- aVanvescMinistère de l'éducation nationaled1982- aPas de parution en 1999 aLa revue parait désormais en ligne aTrimestriel aFormation professionnelleyFrancexPériodiques aEducationyFrancexPériodiques02aFrancebMinistère de l'éducation nationale, de la jeunesse et des sportsbDirection de l'évaluation et de la prospective 3aFRbCCN0294-08684 uhttp://www.education.gouv.fr/pid20674/sommaire-numero.html zcontient : texte intégral des nos1 bno. 1 (1982) - no. 66 (2003)cParisdMagasins/AnnexeeP 4° 4803 aZPAY aGEO RA4.06 France aDEW 370-37901148cas0 2200361 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001400100035001500114100004100129101000800170102000700178110001600185200009400201207001600295210004100311326001500352606004300367710005800410801003000468801003000498801002300528802000700551856010100558856004200659955006000701972000900761992001600770045044309000083007320130319051340.01 a1373-847X a058186409 accn7205/8749 aissn1373847X aEvry28619 a0000830073 a20000407a19989999k y0frey0103 ba0 afre aBE aaj 10aEducation et Sociétéserevue internationale de sociologie de l'éducationfINRPc(Lyon) 0an°1(1998)- aBruxellescDe Boeck & Larcierd1998- aSemestriel aSciences de l'éducationxPériodiques02aInstitut national de recherche pédagogiquec(France) 3aFRbAbesc20050518gAFNOR 3aFRbAbesc20050518gAFNOR 3aFRbISSNc20010401 a0m4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-education-et-societes.htm? zAccès aux sommaires et aux résumés1 bno. 11 (2003) -....cParisdMagasins/AnnexeeP 8° 6827 aZPAY aDEW 370-37901468nls 2200349 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000117001642070026002812100065003073000057003723260015004293360056004443370071005006060040005717100046006118010013006578560090006708560108007608560024008688560177008929920033010699920016011020000813729000081372920130319051341.01 a0162-3737 a0000813729 a a19799999k fre 01 ba0 aeng aUS az aag z  adr 10aEducational evaluation and policy analysisb[Ressource électronique]fAmerican Educational Research Association 1aN°1 (January 1979) - aWashingtoncAmerican Educational Research Associationd1979- aTexte intégral depuis le vol. 1, n°1, January 1979 aBimestriel aDonnées textuelles accessibles uniquement en ligne aTéléchargement de fichiers TIFF, PDF (recommandé) ou PostScript aEducationyEtats-UnisxPériodiques02aAmerican Educational Research Association 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01623737.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.aera.net zContenu : résumés en ligne depuis le vol. 26, n°3, Fall 2004 (site consulté le 13/05/2005) mais le projet affiché est, à terme, de mettre en ligne tous les résumés. aGEO RS Sans aspect régional aDEW 370-37901223cas0 22003853 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200004100180207002600221210004800247326001500295430002700310517003600337601005400373606004300427606004500470676000800515710004000523801003000563801002300593856007200616856003700688955008200725992001800807992001200825128292857000118708720130319051343.01 a1830-3676 aissn18303676 a0001187087 a20081016a20039999k f0frey0103 ba0 aeng aLU ay  ar aaj 10aEIB PapersfEuropean Investment Bank 0avol. 8, no. 1 (2003)- aLuxembourgcEuropean Investment Bankd2003- aSemestriel 1tCahiers BEIx0257-775510aEuropean Investment Bank Papers02aBanque européenne d'investissementxPériodiques aFinances internationalesxPériodiques aInvestissements européensxPériodiques a33202aBanque européenne d'investissement 3aFRbAbesc20090910gAFNOR 3aFRbISSNc200807014 uhttp://www.eib.org/infocentre/efs/publications/eib-papers/index.htm zAccès libre au texte intégral.1 bvol. 8 no. 1 (2003) -vol. 15 no. 2 (2010)cParisdMagasins/AnnexeeP 4° 5107 aGEO RA Europe aDEW 33201087nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000058001502100058002083000118002663260016003843360058004003370063004584520044005216060066005656060035006318010013006668560090006799550005007699920011007740000470135000047013520130319051343.0 a0000470135 a a19679999k fre 01 ba0 aeng aUS az aah z  adr 10aEighteenth-century studiesb[Ressource électronique] aBaltimore, Md.cJohns Hopkins University Pressd1967- aAccès au texte intégral (réservé aux sites de Sciences Po) à partir du vol.1 de 1967 jusqu'au vol.28 de 1995 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tEighteenth-century studiesx(0013-2586) aLittératurez18e sièclexHistoire et critiquexPériodiques aArtz18e sièclexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00132586.html1 r aDEW 7001151nas 2200313 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000023001412100039001643260017002034300053002205170028002736060052003016060029003536070061003826070048004438560192004919550069006839920039007529920020007919920014008119920012008250000010856000001085620130319051343.0 aFNSP120828 a0000010856 a19900716a19909999 ca0 arus aRU aaca 00aEkonomika i žizn' aMoskvacÈkonomika i žizn'd1990- aHebdomadaire 1aÈkonomiceskaâ gazeta (0013-3132) < P F°0228 >10aÈkonomičeskaâ gazeta aHistoire économiquez20e sièclexPériodiques aActualitéxPériodiques aRussiexConditions économiquesz1991-....xPériodiques aURSSxConditions économiquesxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA1 bno. 1 (jan-1990) -(dec-2004)cParisdMagasins/AnnexeeP F° 0228 aGEO RA7.21 Russie (depuis 1991-92) aGEO RA7.01 URSS aDEW 330.9 aDEW 05001000nas 2200277 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000032001552100028001873260014002154210035002296060029002646070026002938560192003198560108005119550068006199920023006879920012007100000071550000007155020130319051343.01 a0213-4608 aFNSP328047 a0000071550 a19900101a19839999 ba0 aspa aES acaa 10aEl Pais (Ed. internacional) aMadridcEl Paísd1983- aquotidien 1aEl Pais semanal < P 4° 4259 > aActualitéxPériodiques aEspagnexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLe mois en courscParisd27, Salle Rez-de-chausséeeP F° 0434 aGEO RA6.02 Espagne aDEW 05001067cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200002500174207002600199210003900225326001600264606004700280606004700327606005000374801003000424801002300454802000700477856004900484856007100533955006600604992001200670992001200682992002300694076791149000117938420130319051344.01 a1533-1296 aissn15331296 a0001179384 a20000630a20029999 0frey0103 ba0 aeng aUS ay  aah 10aElection law journal 0aVol. 1, no. 1 (2002)- aLarchmont, NYcM.A. Liebertd2002- aTrimestriel aDroit électoralyEtats-UnisxPériodiques aModes de scrutinyEtats-UnisxPériodiques aSystème électoralyEtats-UnisxPériodiques 3aFRbAbesc20090316gAFNOR 3aFRbISSNc20000630 a014 uhttp://www.liebertonline.com/elj?cookieSet=1 zContenu : sommaires des numéros depuis le vol. 1 no. 1 (mar-2002)1 bvol. 7 no. 2 (2008) -....cParisdMagasins/AnnexeeP 4° 7263 aDEW 973 aDEW 342 aGEO RC2 Etats-Unis01050cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101001300125102000700138110001600145200005100161210003600212326001500248517003000263530002200293606003600315606004300351710005700394801003000451802000700481856008500488856003600573955007000609972000900679992001200688992001200700044953046000109533220130319051345.01 a1488-3538 accn1488-3538 a0001095332 a20000407a19979999 0frey0103 ba0 aengafre aCA aaj 10aElectoral insight =dPerspectives électorales aOttawacElections Canadad1997- aSemestriel10aPerspectives électorales00aElectoral insight aElectionsyCanadaxPériodiques aDroit électoralyCanadaxPériodiques02aCanadabBureau du directeur général des élections 3aFRbAbesc20050420gAFNOR a044 uhttp://www.elections.ca/eca/eim/article_search/default.asp?textonly=false&lang=f zAccès libre au texte intégral1 bvol. 6 no. 1 (avr-2004) -....cParisdMagasins/AnnexeeP 4° 7195 aZSAB aGEO RC1 aDEW 97101016nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210004500176326003500221606002800256676000800284801002100292856010000313856005900413955006700472955009900539972000900638991001800647992002100665992001600686039312100000001801220130319051346.01 a0261-3794 aFNSP149261 a0000018012 a19900101a19829999 ba0 aeng aGB aahu 10aElectoral studies aGuildfordcButterworth Scientificd1982- a3 n°s par an puis trimestriel aElectionsxPériodiques a320 3aFRbCCN0261-37944 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/02613794 zContenu : sommaires et résumés depuis le vol.1, 19821 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bvol. 1 no. 3 (dec-1982) -....cParisdMagasins/AnnexeeP 8° 4621wManque : vol. 3 no. 3, 1984 aZSAB aexempb201003 aGEO RQ Universel aDEW 324.6-901299nas 2200289 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200006500148210008900213326001500302517008600317606005400403710001300457710004600470801001300516856037300529955006700902992001200969992002800981058784772000045586620131113155243.0 a1563-2113 a a19999999k fre ba0 afre aIN a 0  ar aaj z 0 10aEmploi et marché du travail dans les pays d'Europe centrale aLuxembourgcOffice des publications officielles des Communautés européennesd1999- aSemestriel11aEtudes et recherche. Emploi et marché du travail dans les pays d'Europe centrale aMarché du travailyEurope centralexPériodiques02aEUROSTAT02aUnion européennebCommission européenne 0aFRbFNSP4 uhttp://bookshop.europa.eu/fr/search/;pgid=y8dIS7GUWMdSR0EAlMEUUsWb0000nM_LU83m;sid=X07cXOyDRIjcUb4A0aNC-46mEi3CLutQWZ0=?webform-id=WFSimpleSearch&DefaultButton=findSimple&WFSimpleSearch_NameOrID=+Emploi+et+march%C3%A9+du+travail+dans+les+pays+d%27Europe+centrale&SearchConditions=&SearchType=1&findSimple.x=0&findSimple.y=0zAccès libre au texte intégral depuis 19991 bno. 1 (1999) -no. 1 (2003)cParisdMagasins/annexeeP 4° 6925 aDEW 331 aGEO RA5 Europe centrale01169cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200006500180207002200245210005400267326001100321452003500332517005400367530001500421606005500436606004400491801003000535801002300565802000700588856003700595856005400632955005800686972000900744992001800753992001200771123875080000122070920130319051349.0 a2030-5656 aissn20305656 a0001220709 a20080509a20089999k y0frey50 ba0 afre aBE ay 0  ar aaku 0zu 10aEmulationserevue des jeunes chercheurs en sciences sociales 0aN°1 (2007-2008)- aLouvaincPresses universitaires de Louvaind2008- aAnnuel 1tEmulations (Online)x1784-573410aEmulations, revue étudiante de sciences sociales10aEmulations0 aSciences socialesxRecherchexPériodiques2rameau0 aSciences socialesxPériodiques2rameau 3aFRbAbesc20080512gAFNOR 3aFRbISSNc20080509 a0m4 uhttp://www.revue-emulations.net/4 zContenu : texte intégral à partir du n°1, 20071 bno. 6 (2009)-....cParisdMagasins/AnnexeeP 8° 7177 aZPAY aGEO RA Europe aDEW 30000887nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000046001502100033001962300005002293000095002343260016003293360056003453370017004016060044004186060036004627100029004988010013005278560040005409550005005800000497683000049768320130827113128.0 a0000497683 a a20029999k fre 01 ba0 afre aFR az aay z  adr 10aEn temps réelb[Ressource électronique] aPariscEn temps réeld2000- a aTexte intégral depuis le n°1, février 2002 dans un délai de 3 mois suivant la parution airrégulier aDonnées textuelles accessibles uniquement en ligne aFichiers PDF aRelations internationalesxPériodiques aScience politiquexPériodiques02aEn temps réelc(France) 0aFRbFNSP4 uhttp://entempsreel.com/tag/cahiers/1 r01136nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200006700163207003200230210002200262326001200284430001600296517001000312607005200322607004100374710008500415801001300500856004700513856003600560955005900596955006900655972000900724992002500733992001600758112289215000059496720130319051349.01 a1956-922X a0000594967 a a20049999 fre 01 ba0 afre aFR a 0  ar aaf z 0 12aL'ENA hors les mursfAssociation des anciens élèves de l'ENA 1an°338 (janv./fév. 2004) - aPariscENAd2004- aMensuel 1tENA mensuel12aL'ENA aFrancexPolitique et gouvernementxPériodiques aFrancexAdministrationxPériodiques02aAssociation des anciens élèves de l'Ecole nationale d'administrationc(France) 0aFRbFNSP4 uhttp://www.aaeena.fr/publications/la-revue zSommaires des n°s précédents1 bL’année en courscParisd27, Salle Rez-de chaussée1 bno. 338 (jan/fev-2004) -....cParisdMagasins/AnnexeeP 4° 3975 aZCAD aGEO RA4.06 France 01 aDEW 350-35401186nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154207002400189210006600213326001600279607003700295607002300332856004300355856007600398856005400474856011600528955007700644957006800721972000900789991001800798992002000816992001200836036328758000020878020130319051350.01 a1136-6389 aFNSP756808 a0000208780 a19900101b19962009 ba0 aspa aES aaha 00aEncuentro de la cultura cubana 1a1(1996)-53/54(2009) aMadridcAsociación Encuentro de la Cultura Cubanad1996-2009 aTrimestriel aCubaxCivilisationxPériodiques aCubaxPériodiques4 uhttp://arch1.cubaencuentro.com/revista zContenu : sommaires et texte intégral du no.1, 1996 au no. 53/54, 20094 uhttp://www.cubaencuentro.com/es/revista-encuentro zContenu : accès libre aux sommaires et texte intégral des articles depuis le n°34-35 automne/hiver 2004-20051 bno. 1 (ete-1996) -no. 39 (2005/2006)cParisdMagasins/AnnexeeP 8° 63091 bno. 1(1996)-no. 24 (2002)cParisdMagasins/AnnexeeP Index 0849 aZGRA aexempb201210 aGEO RD3.05 Cuba aDEW 97201171nas 2200337 i 450 002001100000005001700011011001400028100004100042101000800083102000700091105001800098106000600116110001600122200004200138210002300180225001900203326001100222437006800233510004700301606005800348606005400406710004000460801001300500856008900513856010800602955006500710972000900775992002100784992001600805992001200821000043234220140115144959.0 a1606-8394 a a20019999k f fre ba0 amul aFR a 0  ar aak z 0 10aEnergy balances of non-OECD countries aPariscOCDEd2001-21aIEA statistics aAnnuel 1tEnergy statistics and balances of non-OECD countriesx1023-853010aBilans énergétiques des pays non-membres aRessources énergétiquesxStatistiquesxPériodiques aEnergiexConsommationxStatistiquesxPériodiques aAgence internationale de l'énergie 0aFRbFNSP4 uhttp://lysander.sourceoecd.org/vl=6109738/cl=13/nw=1/lg=fre/rpsv/outlook_annuals.htm4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1998/1999) -(1999/2000)cParisdMagasins/AnnexeeP 4° 4941 aZPAY aGEO RQ Universel aDEW 310-319 aDEW 33301053nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000043001552100084001983260011002825300043002936060073003366060058004097120052004678560054005198560036005739550057006099920057006669920012007239920016007350000276429000027642920130319051351.0 a1017-6705 aFNSP949708 a0000276429 a19990629a19919999 ba0 aeng aLU aaka 10aEnergy in Europe. Annual energy review aLuxembourgcOffice for Official Publications of the European Communitiesd1991- aAnnuel00aEnergy in Europe. Annual energy review aRessources énergétiquesyPays de l'Union européennexPériodiques aRessources énergétiquesxStatistiquesxPériodiques02aUnion européennebDirection générale Energie4 uhttp://www.europa.eu.int/en/comm/dg17/aerhome.htm zAccès libre au texte intégral1 b(1997)cParisdMagasins/AnnexeeP 4° 6820z+ CD-ROM aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 333 aDEW 310-31901096nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001800154210004300172326002600215326003000241326002700271326002700298606004200325606004400367801002100411856015100432856010800583955007000691972000900761992001200770039362264000001811720130319051351.01 a0301-4215 aFNSP149513 a0000018117 a19900101a19739999 ba0 aeng aGB aaeu 10aEnergy policy aGuilfordcButterworth-Heinemannd1973- a18 n°s par anb2004- a15 n°s par anb1997-2003 aIrrégulierb1985-1996 aTrimestrielb1973-1984 aPolitique énergétiquexPériodiques aRessources énergétiquesxPériodiques 3aFRbCCN0301-42154 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/03014215?&MDP-WSSO-SESSION=f82613f4083fe2b8c0afb5a35014ff78 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jun-1973) -....cParisdMagasins/AnnexeeP 4° 3324 aZPAY aDEW 33301402nas 2200361 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000044001642100023002082250019002313260011002504370069002615100052003306060058003826060054004407100040004948010013005348560263005478560108008109550064009189720009009829920021009919920016010129920012010280000432370000043237020130319051351.0 a1606-8686 a0000432370 a a20019999k f fre ba0 amul aFR a 0  ar aa z 0 10aEnergy statistics of non-OECD countries aPariscOCDEd2001-21aIEA statistics aAnnuel 1tEnergy statistics and balances of non-OECD countriesx(1023-853010aStatistiques de l'énergie des pays non-membres aRessources énergétiquesxStatistiquesxPériodiques aEnergiexConsommationxStatistiquesxPériodiques aAgence internationale de l'énergie 0aFRbFNSP4 uhttp://masetto.sourceoecd.org/vl=1144722/cl=24/nw=1/rpsv/cgi-bin/jsearch_oecd?limittitles=&cheese=searchdb&oecd-select=home.htm&form=expert&search0=energy+statistics+of+non-oecd+countries&search=&field0=tka&system=oecd_all&sortresultsby=rev_timestamp&what=d14 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1998/1999)-(2003/2004)cParisdMagasins/AnnexeeP 4° 6905 aZPAY aGEO RQ Universel aDEW 310-319 aDEW 33301355nas 2200325 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000040001412100023001813260011002044300036002155170050002516060058003016060054003596060058004137100040004718560258005118560108007699550064008779720009009419920051009509920012010019920016010130000047858000004785820130319051351.0 aFNSP241465 a0000047858 a19900101a19919999 f ba0 amul aFR aaka 10aEnergy statistics of OECD countries aPariscOCDEd1991- aAnnuel 1aEnergy statistics < P 4°5218 >10aStatistiques de l'énergie des pays de l'OCDE aRessources énergétiquesxStatistiquesxPériodiques aEnergiexConsommationxStatistiquesxPériodiques aRessources énergétiquesxStatistiquesxPériodiques aAgence internationale de l'énergie4 uhttp://oberon.sourceoecd.org/vl=2617097/cl=19/nw=1/rpsv/cgi-bin/jsearch_oecd?limittitles=&cheese=searchdb&oecd-select=home.htm&form=expert&search0=energy+statistics+of+oecd+countries&search=&field0=tka&system=oecd_all&sortresultsby=rev_timestamp&what=d14 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1980/1989)-(2003/2004)cParisdMagasins/AnnexeeP 4° 5218 aZPAY aGEO RN1 Pays industrialisés, pays occidentaux aDEW 333 aDEW 310-31901109nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210003100184210004300215326001500258606002700273607004400300801002100344856009000365856010800455856007700563955007300640972000900713991001800722992003100740992001200771038703645000005404320130319051352.01 a0013-8266 aFNSP255424 a0000054043 a19900101a18869999 ba0 aeng aGB aaha 10aEnglish historical review aHarlowcLongmand1886-1998 aOxfordcOxford University Pressd1998- aBimestriel aHistoirexPériodiques aGrande-BretagnexHistoirexPériodiques 3aFRbCCN0013-82664 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00138266.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ehr.oxfordjournals.org/1 bvol. 65 no. 254 (jan-1950) -....cParisdMagasins/AnnexeeP 8° 0850 aZPAY aexempb201101 aGEO RA4.02 Grande-Bretagne aDEW 90901192nas 2200349 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000100001552100036002553260012002914360064003034360052003675300029004196060032004486060040004807100044005208010021005648300069005858560025006548560046006799550072007259720009007979920022008069920014008280000018192000001819220130319051352.01 a0223-4866 aFNSP149692 a0000018192 a19900101a19809999 ba0 afre aFR aafu 10aEnjeuxenouveau mensuel de la normalisation françaisefAssociation française de normalisation aParis-La DéfensecAfnord1980- aMensuel 1aBulletin mensuel de la normalisation françaisex0300-1164) 1tCourrier de la normalisation (Paris)x0011-048510aEnjeuxb(Ed. française) aNormalisationxPériodiques aNormalisationyFrancexPériodiques02aAssociation française de normalisation 3aFRbCCN0223-4866 a1985-2006 : collection donnée au CTLes (envoi prévu pour 2008)4 uhttp://www.afnor.fr/ zContenu : sommaires des derniers numéros1 bno. 1 (mar-1980) -no. 53 (1984)cParisdMagasins/AnnexeeP 4° 4793 aZPAY aGEO RA4.06 France aDEW 60-6900957nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000078001502100005002282300005002333000058002383260014002963360056003103370018003666060032003846060030004166060044004467100093004908010013005838560042005969550005006380000432323000043232320130319051353.0 a0000432323 a a19989999k fre 01 ba0 afre aFR az aal z  adr 10aEnjeux de l'information et de la communicationb[Ressource électronique] a a aTexte intégral de la revue depuis le n°1, 1988-1999 abisannuel aDonnées textuelles accessibles uniquement en ligne aFichiers HTML aCommunicationxPériodiques aInformationxPériodiques aSciences de l'informationxPériodiques02aUniversité Stendhalc(Grenoble)bGroupe de recherche sur les enjeux de la communication 0aFRbFNSP4 uhttp://www.u-grenoble3.fr/les_enjeux/1 r01253nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002100139210002800160326001200188421004400200422002500244430003900269530002800308606003800336607005000374856019200424856010800616955007100724955008700795972000900882992002200891992001400913040004317000006075520131104154717.01 a1167-2196 aFNSP278402 a19900101a19929999 ba0 afre aFR aafa 00aEnjeux les Echos aPariscLes Echosd1992- aMensuel 1tEnjeux les Echos.Hors-sériex1777-1005 1ales Echosx0153-4831 1aDynasteurs (Paris)xISSN 0983-1517 0aEnjeux les EchosbParis aEntreprisesyFrancexPériodiques aFrancexConditions économiquesxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bL’année en courscParisd27, Salle Rez-de chausséeeP 4° 50601 bConservation limitée aux 5 dernières annéescParisdMagasins/AnnexeeP 4° 5060 aZPAY aGEO RA4.06 France aDEW 330.901228nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008500154210003900239300004600278326001200324430004000336440006000376606003600436606004200472607005000514710005500564856012000619856003600739955007000775972000900845992002200854992001400876039373142000001819920130319051353.01 a0242-5815 aFNSP149707 a0000018199 a19901122b19712003 ba0 afre aFR aafa 10aEnquête mensuelle de conjoncturefBanque de France, Direction de la conjoncture aPariscBanque de Franced1971-2003 aDevient consultable en ligne gratuitement aMensuel 1aLa Situation économiquex0037-5926 1tEnquête mensuelle de conjoncture (En ligne)x1762-5912 aIndustrieyFrancexPériodiques aConjoncture économiquexPériodiques aFrancexConditions économiquesxPériodiques02aBanque de FrancebDirection de la conjoncture40704 uhttp://www.banque-france.fr/publications/publication-statistiques-indicateurs/enquete-mensuelle-de-conjoncture.html4 zAccès libre au texte intégral1 bno. 9 (1971) -no. 225 ( 2003)cParisdMagasins/annexeeP 4° 2334 aZGRA aGEO RA4.06 France aDEW 330.901233nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210004300193326002300236606003900259606005500298607005000353607005800403710008400461856006100545856007500606955006300681957007800744972000900822992002800831992002400859992001200883039011925000001820320130319051354.01 a0120-4483 aFNSP149715 a0000018203 a19901122a19829999 ba0 aspa aCO aaja 10aEnsayos sobre política económica aBogotácBanco de la Repúblicad1982- a2 ou 3 n°s par an aPolitique monétairexPériodiques aEconomie politiqueyAmérique latinexPériodiques aColombiexPolitique économiquexPériodiques aAmérique latinexPolitique économiquexPériodiques02aBanco de la Repúblicac(Colombie)bDepartamento de investigaciones económicas4 uhttp://www.banrep.gov.co/docum/ensayos/htm/ediciones.htm zContenu : sommaires, résumés et texte intégral depuis le n°1, 19821 bno. 1 (mar-1982) -....cParisdMagasins/annexeeP 8° 48111 bno. 1 (mar-1982) -no. 27 (jun-1995)cParisdMagasins/annexeeP Index 0784 aZPAY aGEO RD Amérique latine aGEO RD4.16 Colombie aDEW 33001067nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200001700163210003500180326001200215430005800227530002300285606004700308606003800355801001300393856003100406856008700437955007100524955008700595972000900682992002200691992001600713040091007000030684820130319051356.01 a1243-4167 a0000306848 a a19929999k fre ba0 afre aFR a 0  ar aaf z 0 12aL'Entreprise aPariscGroupe Expansiond1992- aMensuel 1tL'Entreprise, A pour affaires économiquesx1164-702712aL'Entrepriseb1992 aGestion d'entrepriseyFrancexPériodiques aEntreprisesyFrancexPériodiques 0aFRbFNSP4 uhttp://www.lentreprise.com zContenu : sommaire et sélection d'articles en texte intégral du dernier numéro.1 bL’année en courscParisd27, Salle Rez-de-chausséeeP 4° 60011 bConservation limitée aux 2 dernières annéescParisdMagasins/AnnexeeP 4° 6001 aZPAY aGEO RA4.06 France aDEW 650-65800981nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210004700178326001500225606003900240606004700279676000800326710003300334856005700367856004200424955006600466955006300532972000900595991001800604992002200622992001100644040290042000014732820130319051356.01 a1256-5482 aFNSP579734 a0000147328 a19950123a19949999 ba0 afre aFR aaja 10aEntreprise éthique aPariscCercle éthique des affairesd1994- aSemestriel aEthique des affairesxPériodiques aEthique des affairesyFrancexPériodiques a65002aCercle éthique des affaires4 uhttp://www.soficom-diffusion.com/ethique/ethique.htm zContenu : sommaires depuis le 1er n°1 bLes 3 dernières annéescParisd27, Salle 4e étageeDEW 6501 bno. 1 (oct-1994) -....cParisdMagasins/AnnexeeP 8° 6092 aZPAY aexempb201212 aGEO RA4.06 France aDEW 1701030nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000280015421000230018232600230020532600280022832600260025653000350028260600480031785601030036585601080046895500760057697200090065299100170066199200220067899200160070003994767X000006393220130523145552.01 a1161-2770 aFNSP293306 a0000063932 a19900101a19929999 ba0 afre aFR aaha 00aEntreprises et histoire aPariscEskad1992- aTrimestrielb2005- a3 nos par anb1994-2004 aSemestrielb1992-1993 0aEntreprises et histoirebParis aEntreprisesyFrancexHistoirexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-entreprises-et-histoire.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (avr-1992) -no. 68 (sep-2012)cParisdMagasins/AnnexeeP 8° 5808 aZPAY aexemp$201112 aGEO RA4.06 France aDEW 650-65801021nas0 2200325 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200007300163207001800236210002900254326001500283606003700298606004300335676001000378801003000388856007300418856005400491955006900545955005800614972000900672992001400681112139051000108387920130319051357.01 a1954-2437 a0001083879 a20070126a20069999k y0frey0103 ba0 afre aFR a 0  ar aaju 0 10aEntropiaerevue d'étude théorique et politique de la décroissance 0aVol.1 (2006)- aLyoncParangond2006-... aSemestriel aEconomie politiquexPériodiques aDécroissance soutenablexPériodiques a338.9 3aFRbAbesc20070126gAFNOR4 uhttp://www.editions-parangon.com/f/index.php?sp=coll&collection_id=8 zContenu : sommaires des n°s depuis le n°1, 20061 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 338.91 bno. 1 (2006) -....cParisdMagasin/AnnexeeP 8° 6970 aZPAY aDEW 338.901051nas 2200325 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200004900148210002700197326001600224530004900240601005400289606006600343710004000409801001300449830003300462856009500495955007100590972000900661991001800670992001200688992002500700039608751000042798520130927122121.01 a0433-7646 a a19529999k a fre ba0 ager aDE a 0  ar aay z 0 10aEntscheidungen des Bundesverfassungsgerichts aTübingencMohrd1952- airrégulier00aEntscheidungen des Bundesverfassungsgerichts01aAllemagnebBundesverfassungsgerichtxPériodiques aDroit constitutionnelyAllemagnexJurisprudencexPériodiques02aAllemagnebBundesverfassungsgericht 0aFRbFNSP aex coll. 2158, et coll. 71384 uhttp://www.bverfg.de/cgi-bin/link.pl?entscheidungenzContenu : texte intégral depuis 19981 bvol. 1 (1952) -vol. 117 (2007)cParisdMagasins/AnnexeeP 8° 6606 aZCAD aexempb201309 aDEW 342 aGEO RA5.01 Allemagne00868nls 2200301 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000076001642100027002402300024002673260016002916060066003077100040003738010013004138560056004268560042004829550005005249920012005299920025005410001161952000116195220130319051357.0 a0433-7646 a0001161952 a a19989999k fre 01 ba0 ager aDE ar aay z  adr 10aEntscheidungen des Bundesverfassungsgerichtsb[Ressource électronique] aTübingencMohrd1998- aRevue électronique airrégulier aDroit constitutionnelyAllemagnexJurisprudencexPériodiques01aAllemagnebBundesverfassungsgericht 0aFRbFNSP4 uhttp://www.bverfg.de/cgi-bin/link.pl?entscheidungen0 zContenu : texte intégral depuis 19981 r aDEW 342 aGEO RA5.01 Allemagne01160cas0 2200385 450 00100100000000200110001000500170002101100140003803500170005203500170006903500150008610000410010110100080014210200070015010500180015710600060017511000160018120000300019720700240022721000240025132600120027543700380028753000380032560600470036360600450041060600280045580100300048380100230051380200070053685600490054385600660059295500710065899200120072999200330074103940238X000116638420130319051357.01 a0308-518X accn0308-518X aissn0308518X a0001166384 a19760616a19749999k y0frey0103 ba0 aeng aGB a 0  ar aaza 0uu 10aEnvironment & planninghA 0aVol.6, no.1 (1974)- aLondoncPiond1974- aMensuel 1tEnvironment & planningx0013-917310aEnvironment & planning Ab(Print) aPolitique de l'environnementxPériodiques aAménagement du territoirexPériodiques aUrbanismexPériodiques 3aFRbAbesc20090308gAFNOR 3aFRbISSNc20090225 a024 uhttp://www.envplan.com/allvols.cgi?journal=A zContenu : sommaires et résumés depuis le vol.1 no. 1 (1969)1 bvol. 41 no. 1 (jan-2009) -....cParisdMagasins/AnnexeeP 8° 7083 aDEW 333 aGEO RS Sans aspect régional01309nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005500154210002400209326002200233326002700255606003700282606004500319856004000364856006100404856010100465856010800566856005100674856010800725955007100833972000900904991001800913992001200931992001600943039316009000025540020130319051357.01 a0263-774X aFNSP891390 a0000255400 a19900101a19839999 ba0 aeng aGB aaga 10aEnvironment and planninghC .iGovernment & policy aLondoncPiond1983- aBimestrielb1998- aTrimestrielb1983-1997 aPolitique publiquexPériodiques aAménagement du territoirexPériodiques4 uhttp://www.pion.co.uk/ep/index.html zContenu : sommaires et résumés depuis le vol. 14, 19964 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=107667 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.envplan.com/epc/epc20_contents.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 15 no. 1 (fev-1997) -....cParisdMagasins/AnnexeeP 8° 6423 aZPAY aexempb201211 aDEW 333 aDEW 350-35401130nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210002400181326002200205326002900227326002700256606002900283606004700312856004100359856007800400856010900478856010800587955007000695972000900765991001800774992001200792013707345000007492420140107125652.01 a0964-4016 aFNSP341625 a0000074924 a19900101a19929999 ba0 aeng aGB aaga 10aEnvironmental politics aLondoncCassd1992- aBimestrielb2009- a5 n°s par anb2005-2008 aTrimestrielb1992-2004 aEcologismexPériodiques aPolitique de l'environnementxPériodiques4 uhttp://www.frankcass.com/jnls/ep.htm zContenu : Sommaires et sommaire du n° à paraitre depuis le vol. 3, n°14 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713635072db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (pri-1992) -....cParisdMagasins/AnnexeeP 8° 5887 aZGRA aexempb201112 aDEW 33300900nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210005300179326001500232606003200247606002900279856010100308856010800409955006600517972000900583991001800592992001200610088375307000007178120131004151307.01 a0963-2719 aFNSP328532 a0000071781 a19900101a19929999 ba0 aeng aGB aaha 10aEnvironmental values aStrond, Isle of HarriscWhite Horse Pressd1992- aBimestriel aEnvironnementxPériodiques aEcologismexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=103364 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 6 no. 3 (1997) -....cParisdMagasins/AnnexeeP 8° 5871 aZPAY aexempb201206 aDEW 33300899nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000045001502070047001952100005002422300024002473260005002716060047002766060039003238010013003628560072003758560108004479550005005559920012005609920025005720000994391000099439120130319051358.0 a0000994391 a a20049999k fre 01 ba0 afre aFR ar aaz z  adr 10aEnvironnementb[Ressource électronique] 1aParis :$cLexisNexis Jurisclasseur :$c2004- a aRevue électronique a aEnvironnementxDroityFrancexPériodiques aEnvironnementxDroitxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aDEW 346 aGEO RA4.06 France 0100971nas 2200289 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000030001412100030001713260016002016060048002176060040002657100107003057120042004128560059004548560055005139550070005689720009006389920022006479920012006690000138238000013823820130319051358.0 aFNSP550611 a0000138238 a19941012a19949999 ba0 afre aFR aaya 12aL'Environnement en France aPariscDécouverted1994- aQuadriennal aRessources naturellesyFrancexPériodiques aEnvironnementyFrancexPériodiques02aCommissariat général au développement durablebService de l'observation et des statistiquescFrance02aInstitut français de l'environnement4 uhttp://www.statistiques.developpement-durable.gouv.fr/ zContenu : texte intégral de la dernière édition1 b(1994) -(1995) ; (1999) -….cParisdMagasins/AnnexeeP 4° 6407 aZPAY aGEO RA4.06 France aDEW 33301075nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210002700179210002400206326001600230606003200246676000800278801002100286856009900307856004200406955006600448955007000514957015600584972000900740992001200749039236595000000460320130319051359.01 a0046-2497 aFNSP106087 a0000004603 a19900101a19729999 ba0 afre aFR aahu 10aEspace géographique aPariscDoind1972-1995 aPariscBelind1996- aTrimestriel aGéopolitiquexPériodiques a910 3aFRbCCN0046-24974 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-espace-geographique.htm? zAccès aux sommaires et aux résumés1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9101 bvol. 1 no. 1 (jan-1972) -....cParisdMagasins/AnnexeeP 4° 31131 b(1972) -(1976) ; (1977) -(1981) ; (1982) -(1986)cParisdMagasins/Annexe;zCes index se trouvent respectivement dans le dernier no. de 1976, 1981, 1986 aZPAY aDEW 91001454nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200011500139207002200254210004600276210003400322210003200356210003700388326001600425452005200441530002600493606003700519606002900556676000800585801002100593856020400614955006600818955006300884957005700947972000901004991001801013992002501031992001201056001012576000000460420131024164602.01 a0014-0481 aFNSP106090 a19900101a19709999 ba0 afre aFR aahu 10aEspaces et sociétéserevue critique internationale de l'aménagement, de l'architecture et de l'urbanisation 1ano. 1 (nov-1970)- aRamonville Saint-AgnecÉd. Érèsd2004- aPariscL'Harmattand1988-2003 aToulousecPrivatd1985-1987 aPariscÉd. Anthroposd1970-1985 aTrimestriel 1ttEspaces et sociétés (En ligne)‎x1961-870000aEspaces et sociétés aSociologieyFrancexPériodiques aSociologiexPériodiques a301 3aFRbCCN0014-04814 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-espaces-et-societes.htm?zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3011 bno. 1 (nov-1970) -....cParisdMagasins/AnnexeeP 8° 28631 b(1987) -(1994)cParisdMagasins/AnnexeeP Index 0836 aZPAY aexempb201105 aGEO RA4.06 France 01 aDEW 30101103nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000200015421000450017432600280021943000430024744000400029060600540033060700620038460700350044671000500048185600360053185600780056795500830064597200090072899200280073799200120076504035931X000014047420130319051359.01 a1260-7991 aFNSP559289 a0000140474 a19941104b19942008 ba0 afre aFR aaga 10aEspaces latinos aVilleurbannecEspaces latinosd1994-2008 aMensuel puis bimestriel 1aEspaces latinos-américainsx1168-1179 1tNouveaux espaces latinosx2104-211X aDroits de l'hommeyAmérique latinexPériodiques aAmérique latinexPolitique et gouvernementxPériodiques aAmérique latinexPériodiques02aNouveaux espaces latino-américainsc(France)4 uhttp://www.espaces-latinos.org/ zContenu : sommaire du dernier numéro et de certains numéros depuis 20011 bno. 114 (nov-1994) -no. 249 (nov/dec-2008)cParisdMagasins/AnnexeeP 4° 6338 aZPAY aGEO RD Amérique latine aDEW 98000870nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001800154210003600172326001600208606004400224606003800268710003800306801002100344856003600365856008700401955007100488972000900559992001200568039558428000001832520130319051359.01 a0339-3267 aFNSP150040 a0000018325 a19900101b19752005 ba0 afre aFR aahu 10aEspaces temps aPariscEspaces tempsd1975-2005 aTrimestriel aSciences socialesyFrancexPériodiques aGéographieyFrancexPériodiques02aAssociation Espaces temps (Paris) 3aFRbCCN0339-32674 uhttp://espacestemps.revues.org/ zContenu : sommaires, résumés, quatrièmes de couverture depuis le n°78-79, 20021 bno. 6 (1977) -no. 89/90 (2005)cParisdMagasins/AnnexeeP 4° 5085 aZPAY aDEW 30000981nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000062001502100032002122300005002443000193002493260016004423360056004583370018005146060043005327120038005758010013006138560036006269550005006629920012006670000498522000049852220130319051359.0 a0000498522 a a20029999k fre 01 ba0 afre aFR az aay z  adr 10aEspaces Temps.net - Le Journalb[Ressource électronique] aPariscEspaces tempsd2002- a aArticles du journal depuis le 1er mai 2002 incluant une sélection d'articles, en texte intégral, résumé ou sous forme de sommaires, des Cahiers Espaces Temps depuis le n° 78-79, 2002. airrégulier aDonnées textuelles accessibles uniquement en ligne aFichiers HTML aSciences socialesxRessources Internet02aAssociation Espaces temps (Paris) 0aFRbFNSP4 uhttp://espacestemps.revues.org/1 r aDEW 30000941nas 2200301 i 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102110001600109200006700125210004500192326001100237430004300248606003800291607005300329712002300382856004600405955005500451955005500506972000900561991001800570992002500588992001200613992001400625036252506000010496120131112142707.0 aFNSP447144 a19900101b19682002 ba0 aspa aGT aaka 10aEstudio económico y memoria de labores del Banco de Guatemala aGuatemalacBanco de Guatemalad1968-2002 aAnnuel 1tMemoria de labores y estudio economico aFinancesyGuatemalaxPériodiques aGuatemalaxConditions économiquesxPériodiques02aBanco de Guatemala uhttp://www.banguat.gob.gt/menu.asp?id=1651 b(1980) -(2001)cParisdMagasins/AnnexeeP 8° 52711 b(1968) -(1979)cParisdMagasins/AnnexeeCOL8°1811 aZGRA aexempb201110 aGEO RD2.02 Guatemala aDEW 332 aDEW 330.901060nls 2200313 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000092001502100062002422300005003043260031003093360024003405170070003646060036004346760013004707120064004838010013005478300007005608560054005678560120006219550005007410000442878000044287820130319051402.0 a0000442878 a a19909999k fre 01 ba0 aeng aES ai aby z  adr 10aEstudios - Centro de estudios avanzados en ciencias socialesb[Ressource électronique] aMadridcCentro de estudios avanzados en ciencias sociales a aCollection de monographies aDonnées textuelles10aWorking paper - Centro de estudios avanzados en ciencias sociales aSciences socialesxPériodiques a300v21a02aCentro de estudios avanzados en ciencias socialesc(Madrid) 0aFRbFNSP adm4 uhttp://www.march.es/ciencia/ingles/ciencia3-9.asp4 zliste des titres de la collection ; texte intégral télédéchargeable avec Adobe Acrobat à partir de 1994 n° 541 a01490nas 2200361 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000029001552100066001843260016002506060057002666060044003236070059003677120060004268010021004868560062005078560037005698560061006068560055006679550159007229570177008819720009010589920028010679920021010959920012011160000018607000001860720130319051402.01 a0716-0240 aFNSP150654 a0000018607 a19900101a19679999 ba0 aspa aCL aahu 10aEstudios internacionales aSantiago, ChilecInstituto de estudios internacionalesd1967- aTrimestriel aRelations économiques internationalesxPériodiques aRelations internationalesxPériodiques aAmérique latinexRelations extérieuresxPériodiques02aInstituto de estudios internacionales (Santiago, Chili) 3aFRbCCN0014-15184 uhttp://www.iei.uchile.cl/publicaciones/revista/index.html zContient : sommaires depuis 20024 uhttp://www.al-dia.cl/sistema/tablas/listar.asp?r=2543%20 zContient : sommaires depuis 1998, vol. 31, n° 1231 bvol. 1 no. 1 (avr-1967) -vol. 30 no. 119/120 (oct/dec-1997) ; vol. 33 no. 129 (jan/mar-2000) -vol. 36 no. 1 (jan-2003)cParisdMagasins/AnnexeeP 8° 24051 rIndex cumulatif des n°1/32 de 1967/1975 (vol.1/8) dans le n°33, vol.9, enero/marzo 1976; index des n°1/99 de 1967/1992 (vol.1/25) dans le n°100, vol. 25, oct./dic. 1992 aZSAB aGEO RD Amérique latine aGEO RQ Universel aDEW 32701524nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210006200177326001600239606004400255606005500299607005100354710005200405856005800457856016100515955008900676957022200765957009500987972000901082991001801091992002101109992002801130992001601158039678172000001862420130319051402.01 a0716-1115 aFNSP150691 a0000018624 a19901127a19809999 ba0 aspa aCL aaha 10aEstudios públicos aSantiago, ChilecCEP, Centro de estudios públicosd1980- aTrimestriel aPolitique publiqueyChilixPériodiques aPolitique publiqueyAmérique latinexPériodiques aChilixPolitique et gouvernementxPériodiques02aCentro de estudios públicosc(Santiago, Chili)4 uhttp://www.cepchile.cl/dms/lang_1/cat_441_inicio.html zContenu : sommaires et texte intégral depuis le n°1, décembre 1980, résumés depuis le n°11, 1983 ; possibilité de recherche par index auteur et sujet1 bno. 15 (hiv-1984) -....cParisdMagasins/AnnexeeP 8° 4810wManquant : no. 41, 19911 bno. 1 (1980) -no. 60 (1995) ; no. 1 (1980) -no. 70 (1998) ; no. 1 (1980) -no. 80 (2000) ; no. 1 (1980) -no. 90 (2003) ; no. 1 (1980) -no. 100 (2005) ; no. 1 (1980) -no. 110 (2008)cParisdMagasins/AnnexeeP Index 07751 bno. 1 (1980) -no. 50 (1993)cParisdMagasins/Annexe :zse trouve dans le no. 50 (aut-1993) aZSAB aexempb201010 aGEO RD4.14 Chili aGEO RD Amérique latine aDEW 350-35401040nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210011700177326001500294530004100309606002500350606002900375710004600404711005400450856008300504856003700587955005900624972000900683991001800692992001600710038980703000011259320130319051402.01 a0104-026X aFNSP474317 a0000112593 a19900101a19929999 ba0 apor aBR aaja 10aEstudos feministas aRio de JaneirocUniversidade Federal do Rio de Janeiro, Centro Interdisciplinar de Estudos Contemporaneosd1992- aSemestriel 0aRevista estudos feministasbImpresso aFemmesxPériodiques aFéminismexPériodiques02aEscola de comunicaçaõc(Rio de Janeiro)02aCentro interdisciplinar de estudos contemporaneos4 uhttp://www.scielo.br/scielo.php?script=sci_serial&pid=0104-026X&lng=en&nrm=iso zAccès libre au texte intégral.1 bno. 0 (1992) -....cParisdMagasins/AnnexeeP 8° 5996 aZSAB aexempb201210 aDEW 305-30600837nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210002200175326001100197606004400208710009800252856009100350955005300441972000900494991001800503992002200521992001600543039915891000006723920130319051405.01 a1152-5088 aFNSP312061 a0000067239 a19900101a19929999 ba0 afre aFR aaka 10aEtat de l'école aPariscDEPd1992- aAnnuel aEducation et EtatyFrancexPériodiques02aFrancebMinistère de l'éducation nationalebDirection de l'évaluation et de la prospective4 uhttp://www.education.gouv.fr/cid3013/catalogue-des-publications.html#l-etat-de-l-ecole1 b(1992) -....cParisdMagasins/AnnexeeP 8° 5818 aZGRA aexempb201112 aGEO RA4.06 France aDEW 370-37901090nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154207002500192210007600217300002900293326001100322517005800333606003500391710009400426856013500520955005300655972000900708991001800717992002500735992001600760073577995000025077220131127140920.01 a1633-6488 aFNSP877086 a0000250772 a19900101a19969999 ba0 afre aFR aaka 12aL'État du mal logement en France 1a1995 publié en 1996 aPariscFondation Abbé Pierre pour le logement des défavorisésd1996- aPas de parution en 2003. aAnnuel12aRapport annuel sur l''État du mal-logement en France aLogementyFrancexPériodiques02aFondation Abbé Pierre pour le logement des défavorisésbCentre de connaissance (Paris)4 uhttp://www.fondation-abbe-pierre.fr/publications.php?filtre=publication_rmlzAccès au texte intégral du dernier rapport en ligne1 b(1995) -....cParisdMagasins/AnnexeeP 8° 6397 aZGRA aexempb201301 aGEO RA4.06 France 01 aDEW 360-36301150nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000110015421000540016532600160021960600250023571000260026080100210028685600530030785600610036085600900042185601080051195501160061995700810073597200090081699200110082503870501X000001869320130319051411.01 a0014-1704 aFNSP150854 a0000018693 a19900101a18909999 ba0 aeng aUS aahu 10aEthics aChicago, Ill.cUniversity of Chicago Pressd1890- aTrimestriel aMoralexPériodiques02aUniversity of Chicago 3aFRbCCN0014-17044 uhttp://www.journals.uchicago.edu/Ethics/toc.html zContenu : sommaires depuis le vol. 106, n°2, janv. 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00141704.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 61 no. 3 (avr-1951) -no. 4 (jul-1953) ; vol. 76 no. 1 (oct-1965) -....cParisdMagasins/AnnexeeP 8° 24211 bvol. 1 (oct-1890) -vol. 100 (jul-1990)cParisdMagasins/AnnexeeP Index 0684 aZPAY aDEW 1701151nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210007400189326001600263517003700279606003500316606004400351710007000395801002100465856005400486856012900540955008500669972000900754991001700763992003300780992001200813039991628000000668620130319051411.01 a0892-6794 aFNSP110912 a0000006686 a19900101a19879999 ba0 aeng aUS aahu 10aEthics & international affairs aNew YorkcCarnegie Council on Ethics and International Affairsd1987- aTrimestriel10aEthics and international affairs aMorale politiquexPériodiques aRelations internationalesxPériodiques02aCarnegie Council on Ethics and International Affairs (Etats-Unis) 3aFRbCCN0892-67944 uhttp://www.cceia.org/resources/journal/index.html zContenu : accès aux sommaires et résumés depuis le Vol.1,1987 ; un grand nombre d'articles disponibles en texte intégral1 bvol. 1 (1987) -....cParisdMagasins/AnnexeeP 8° 5139wManquant : vol. 3, 1989 aZSAB aexempb201011 aGEO RS Sans aspect régional aDEW 32701091nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200013500154207003300289210004600322326001100368606004700379606004400426710009600470856009900566955006400665972000900729991001800738992002200756992001100778039768732000000586720130319051411.01 a0767-5976 aFNSP109220 a0000005867 a19900328a00019999 ba0 afre aFR aaka 10aEthique et recherche biomédicaleerapport...fComité consultatif national d'éthique pour les sciences de la vie et de la santé 1aDate approximative : 1984 ?- aPariscLa Documentation françaised0001- aAnnuel aMédecinexRechercheyFrancexPériodiques aEthique médicaleyFrancexPériodiques aFrancebComité consultatif national d'éthique pour les sciences de la vie et de la santé4 uhttp://www.ladocumentationfrancaise.fr/rapports-publicszAccés au texte intégral depuis 19981 b(1988) -(2002) ; (2006)cParisdMagasins/annexeeP 8° 5626 aZPAY aexempb201110 aGEO RA4.06 France aDEW 1700941nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210002900184326001500213606002900228606004300257801002100300856010900321856010800430955007000538972000900608991001800617992001600635039079104000001869620131025133627.01 a0141-9870 aFNSP150862 a0000018696 a19900101a19789999 ba0 aeng aGB aagu 10aEthnic and racial studies aLondoncRoutledged1978- aBimestriel aEthnologiexPériodiques aRelations interethniquesxPériodiques 3aFRbCCN0141-98704 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713685087db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1978) -....cParisdMagasins/AnnexeeP 8° 4022 aZSAB aexempb201001 aDEW 305-30601031nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000260015421000580018030000320023832600150027060600430028560600290032871000530035785600460041085600640045695501960052097200090071699200160072507618935X000001888420130319051411.01 a1010-5832 aFNSP151422 a0000018884 a19901129a19839999 ba0 aeng aLK aaja 10aEthnic studies report aKandycInternational Centre for Ethnic Studiesd1983- aArrive avec un an de retard aSemestriel aRelations interethniquesxPériodiques aEthnologiexPériodiques02aInternational Centre for Ethnic StudiesbColombo4 uhttp://www.ices.lk/publications/esr.shtml zSommaires et résumés depuis le volume 15, no 2, July 19971 bvol. 1 no. 1 (mai-1983) -vol. 2 no. 2 (jul-1984) ; vol. 4 no. 1 (jan-1986) -vol. 22 no. 1 (jan-2004)cParisdMagasins/AnnexeeP 4° 5178wManquants: vol. 18 no. 1(2000) ; vol. 21 no. 1 (2003) aZSAB aDEW 305-30600974nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200001600163210002400179326002200203326002700225326002400252606003100276606002900307801001300336856010800349856010800457955007000565972000900635992001600644059608706000041795820130319051411.01 a1468-7968 a0000417958 a a20019999k fre ba0 aeng aGB a 0  ar aai z 0 10aEthnicities aLondoncSaged2001- aBimestrielb2012- aTrimestrielb2002-2011 a3 n°s par anb2001 aNationalismexPériodiques aEthnicitéxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (avr-2001) -....cParisdMagasins/AnnexeeP 8° 6597 aZSAB aDEW 305-30600934nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008700154210004100241326001100282530002500293606002900318606004300347710003400390801002100424856011400445955006000559972000900619992001600628039480070000001888720131113155840.01 a0295-9151 aFNSP151432 a0000018887 a19900101a19859999 ba0 afre aFR aahu 10aEthniesedroits de l'Homme et peuples autochtonesfSurvival international [France] aPariscSurvival Internationald1985- aAnnuel 0aEthniesbParis. 1985 aEthnologiexPériodiques aRelations interethniquesxPériodiques02aSurvival international France 3aFRbCCN7019/09094 uhttp://boutique.survivalfrance.org/collections/revue-ethnieszAccès aux sommaires depuis le n°29/30 de 20031 bno. 1/2 (1985) -...cParisdMagasins/AnnexeeP 4° 5049 aZGRA aDEW 305-30600953nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000044001502100049001943000090002433260016003333360058003493370066004074520030004737120038005038010013005418560090005549550005006449920014006490000534041000053404120130319051412.0 a0000534041 a a19549999k fre 01 ba0 aeng aUS az aah z  adr 10aEthnohistoryb[Ressource électronique] aColumbus, OhiocDuke University Pressd1954- aAccès au texte intégral (réservé aux sites de Sciences-Po) jusqu'à l'année 2000 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou télédéchargement 1tEthnohistoryx(0014-1801)02aAmerican Society for Ethnohistory 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00141801.html1 r aDEW 970.101227nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154207003600180210002400216326001600240530003300256606002900289606004300318712003800361801002100399856010000420856004200520955007100562955009600633957007100729972000900800991001800809992002200827992001600849039236617000001890720130319051412.01 a0046-2616 aFNSP151493 a0000018907 a19900101a19719999 ba0 afre aFR aahu 10aEthnologie française 1aNouv. sér., T. 1, no 1 (1971)- aPariscColind1971- aTrimestriel10aEthnologie françaisebParis aEthnologiexPériodiques aRelations interethniquesxPériodiques02aSociété d'ethnologie française 3aFRbCCN0046-26164 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-ethnologie-francaise.htm? zAccès aux sommaires et aux résumés1 bvol. 36 no. 1 (jan-2006) -....cParisdMagasins/AnnexeeP 4° 72551 bn. s. vol. 6 no. 1 (jan-1976) -vol. 35 no. 4 (oct-2005)cParisdMagasins/AnnexeeP 8° 38911 b(1971) -(1992)zcet index setrouve dans le no. 2, 1993 de la revue aZPAY aexempb201009 aGEO RA4.06 France aDEW 305-30601436nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001400154207002600168210005900194326001600253606002900269606003200298710005700330801002100387856003400408856004700442856009000489856010800579856014600687856010800833955009000941972000901031991001801040992001601058038705079000001889220130319051412.01 a0014-1828 aFNSP151453 a0000018892 a19900101a19629999 ba0 aeng aUS aahu 10aEthnology 1aVol. 1, no. 1 (1962)- aPittsburgh, Pa.cUniversity of Pittsburgh Pressd1962- aTrimestriel aEthnologiexPériodiques aAnthropologiexPériodiques02aUniversity of PittsburghbDepartment of Anthropology 3aFRbCCN0014-18284 uhttp://www.pitt.edu/ethnolog/4 zContenu : accès aux sommaires depuis 19624 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00141828.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://web.ebscohost.com/ehost/detail?vid=4&hid=3&sid=4ba21a11-e5c5-43d7-839d-367b9d409c38%40SRCSM24 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1962) -vol. 45 no. 4 (aut-2006)cParisdMagasins/AnnexeeP 8° 1994 aZPAY aexempb201001 aDEW 305-30601446cas0 2200409 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200001800180207002900198210003800227326001600265430004600281452003800327530002700365606004300392606003600435606002900471801003000500801002300530802000700553856010300560856006100663856010900724856010800833955007000941972000901011992001601020108058034000107907420131025131429.01 a1744-9057 aissn17449057 a0001079074 a20060906a20059999k y0frey0103 ba0 aeng aGB a 0  ar aaha 0uu 10aEthnopolitics 0aVol. 4, no 1 (mar 2005)- aAbingdoncTaylor & Francisd2005- aTrimestriel 1tGlobal review of ethnopoliticsx1471-8804 1tEthnopolitics (Online)x1744-906510aEthnopoliticsb(Print) aRelations interethniquesxPériodiques aDroits de l'hommexPériodiques aEthnicitéxPériodiques 3aFRbAbesc20070312gAFNOR 3aFRbISSNc20060720 a024 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713735027 zContenu : sommaires des n°s depuis le vol.5, n°1, 20064 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713735027db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 4 no. 1 (mar-2005) -....cParisdMagasins/AnnexeeP 8° 6953 aZSAB aDEW 305-30600980nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000037001502100066001873000098002533260016003513360058003673370066004254520023004917120057005148010013005718560090005849550005006749920011006790000533874000053387420130319051412.0 a0000533874 a a19739999k fre 01 ba0 aeng aUS az aah z  adr 10aEthosb[Ressource électronique] aBerkeley, Calif.cAmerican Anthropological Associationd1973- aAccès au texte intégral (réservé aux sites de Sciences-Po) jusqu'aux 7 dernières années aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou télédéchargement 1tEthosx(0091-2131)02aSociety for Psychological Anthropologyc(Etats-Unis) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00912131.html1 r aDEW 1501051nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210002500185326001500210430005500225606003800280606003500318606003700353712004900390856003000439856004500469955005900514972000900573992003900582992002000621992005600641992001600697037398881000007001320130319051412.01 a0869-5415 aFNSP322892 a0000070013 a19900101a19929999 y ca0 arus aRU aaga 10aEtnografičeskoe obozrenie aMoskvacNaukad1992- aBimestriel 1aSovetskaâ ètnografiâ (0038-5050) < P 4° 0848 > aEthnologieyEx-URSSxPériodiques aEthnologieyURSSxPériodiques aEthnologieyRussiexPériodiques02aInstitut ètnologii i antropologiic(Moscou)4 uhttp://journal.iea.ras.ru zContenu : sommaires depuis le n°1, 20031 bno. 1 (1992) -....cParisdMagasins/AnnexeeP 4° 0848 aZPAY aGEO RA7.21 Russie (depuis 1991-92) aGEO RA7.01 URSS aGEO RA7.02 Etats successeurs de l'Union soviétique aDEW 305-30601152nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200003200160210002700192326001400219430008000233440004000313530001900353606003700372607004500409710002400454856014500478955008700623957008200710992002200792992001200814038414201000000453120130319051412.01 a0994-5954 aFNSP105972 a0000004531 a19900101b18971940 ba0 afre aFR ar aaeu 10aEtudesfCompagnie de Jésus aPariscs.n.d1897-1940 aBimensuel 1aEtudes religieuses, philosophiques, historiques et littéraires

 1tConstruire (Paris. 1941)x0994-596210aEtudesb(1897) aVie intellectuellexPériodiques aFrancexVie intellectuellexPériodiques02aCompagnie de Jésus4 uhttp://gallica.bnf.fr/ark:/12148/cb34348593d/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1897-1940)1 bvol. 34 tome 70 (jan/fev-1897) -no. 243 (1940)cParisdMagasins/AnnexeeP 8° 02601 b(1888/1900) ; (1901/1910) ; (1911/1924)cParisdMagasins/AnnexeeP Index 0001 aGEO RA4.06 France aDEW 00101408nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005000154210003300204326001200237430004100249430004000290517005200330517001800382530001800400606003700418607004500455676000800500710002400508856008600532856010800618955007300726955006500799957009100864972000900955992002500964992001200989992000901001013870300000018158520131129121047.01 a0014-1941 aFNSP676307 a0000181585 a19900101a19459999 ba0 afre aFR aafa 10aEtudeserevue catholique d'interêt général aPariscAssas-Editionsd1945- aMensuel 1tCité nouvelle (Issoudun)x1155-6927 1tConstruire (Paris. 1941)x0994-596210aEtudes : revue de culture contemporaine (2002-)10aEtudes (1945)00aÉtudesb1945 aVie intellectuellexPériodiques aFrancexVie intellectuellexPériodiques a00102aCompagnie de Jésus4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-etudes.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle Rez-de-chausséeeDEW 0011 bno. 244 (jan-1945) -....cParisdMagasins/AnnexeeP 8° 02601 b(1961) -(1978) ; (1979) -(1990) ; (1991) -(1997)cParisdMagasins/AnnexeeP Index 0001 aZCAD aGEO RA4.06 France 01 aDEW 001 aPBUL00907nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000023001552100049001783260016002276070026002437120043002698010021003128560037003338560054003709550117004249720009005419910018005509920023005689920014005910000018894000001889420130319051412.01 a0324-1654 aFNSP151463 a0000018894 a19900101a19649999 ba0 amul aBG aahu 10aEtudes balkaniques aSofiacInstitut d'études balkaniquesd1964- aTrimestriel aBalkansxPériodiques02aInstitut d'études balkaniques (Sofia) 3aFRbCCN0011/54524 uhttp://cl.bas.bg/Balkan-Studies/ zContenu: sommaire des n°s depuis le vol.30, 19941 bvol. 7 no. 2 (1971) -….cParisdMagasins/AnnexeeP 8° 3011zn'avons pas le vol.19 (1983) et le vol. 20 (1984) aZECH aexempb201106 aGEO RA8.01 Balkans aDEW 949.600968nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101001300123102000700136110001600143200002300159210002500182326001500207510002100222607002500243710004900268801002100317856003100338856008600369955005900455957007000514972000900584991001800593992001900611992001200630039263355000001889520130319051412.01 a0153-1700 aFNSP151476 a0000018895 a19900101a19759999 ba0 afreaeng aFR aaju 10aEtudes canadiennes aTalencecAFECd1975- aSemestriel10aCanadian studies aCanadaxPériodiques02aAssociation française d'études canadiennes 3aFRbCCN0153-17004 uhttp://www.afec33.asso.fr/ zContenu : sommaires depuis le n°1, 1975 et texte intégral depuis le n°23, 19871 bno. 2 (1976) -....cParisdMagasins/AnnexeeP 8° 41341 bno. 1 (1975) -no. 19 (1985)cParisdMagasins/AnnexeeP Index 0326 aZCAD aexempb201104 aGEO RC1 Canada aDEW 97101181cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200002200156210006100178326002200239326002200261421003200283430007200315510002000387607002400407607005500431710004700486801003000533801003000563802000700593856005300600856003600653955007600689972000900765992002100774992001200795039660443000099083320130523150150.01 a0755-5857 accn0755-5857 a0000990833 a19911009a19839999 0frey0103 ba0 afre aFR aaj 10aÉtudes chinoises aPariscAssociation française d'études chinoisesd1983- aSemestrielb2012- aAnnuelb1983-2011 0tLettre de l'AFECx1162-8200 1tBulletin de l'Association française d'études chinoisesx1169-018610aZhongguo yanjiu aChinexPériodiques aChinexEtude et enseignementyFrancexPériodiques02aAssociation française d'études chinoises 3aFRbAbesc20031209gAFNOR 3aFRbAbesc20031209gAFNOR a074 uhttp://www.afec-en-ligne.org/spip.php?rubrique214 zAccès libre au texte intégral1 bno. 22 (2003) -vol. 31 no. 2 (2012)cParisdMagasins/AnnexeeP 8° 6905 aZPAY aGEO RI3.01 Chine aDEW 95101047nls 2200325 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000055001642100037002192300024002563260015002806060032002956060078003278010013004058560102004188560042005208560027005628560104005899550005006939920012006989920011007100001182579000118257920130319051412.0 a2101-0366 a0001182579 a a20019999k fre 01 ba0 afre aFR ar aaj z  adr 10aEtudes de communicationb[Ressource électronique] aVilleneuve-d'AscqcGERIICOd2001 aRevue électronique aSemestriel aCommunicationxPériodiques aNouvelles technologies de l'information et la communicationxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-etudes-de-communication.htm zAccès aux sommaires et aux résumés4 uhttp://edc.revues.org/ zContenu : accès au texte intégral depuis le n°21, 2004 à l'exception des deux derniers numéros1 r aDEW 302 aGEO RQ01154nas 2200361 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200004600148207002400194210004600218326001900264430005100283517003800334530004700372606004400419606003900463607002500502676000800527710005300535801001300588856006100601856002700662955008200689972000900771992001200780077221427000061561320131029102304.01 a1763-6191 a a20049999 fre 01 ba0 afre aFR a 0  ar aae z 0 14aLes Etudes de la Documentation française 1ano. 5186/87 (2004)- aPariscLa Documentation françaised2004- a20 n°s par an 1tNotes et études documentairesxISSN 0029-400410aEtudes - Documentation française14aLes Études de la Documentation française aRelations internationalesxPériodiques aHistoire économiquexPériodiques aFrancexPériodiques a00102aFrancebDirection de la documentation française 0aFRbFNSP4 uhttp://www.ladocfrancaise.gouv.fr/revues/ned/index.shtml zsommaires des numéros1 bno. 5186/5187 (mar-2004) -no. 5345 (2011)cParisdMagasins/AnnexeeP 8° 6755 aZPAY aDEW 00100974nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210002300177326001900200517006800219606004400287676000800331710006300339856006700402856003600469955006700505955005800572972000900630992001200639992000900651013558951000016791720130425092348.01 a1297-8450 aFNSP638326 a0000167917 a19900101a19959999 ba0 afre aFR aaza 14aLes Etudes du CERI aPariscCERId1995- a10 n°s par an10aLes Etudes du Centre d'études et de recherches internationales aRelations internationalesxPériodiques a32702aCentre d'études et de recherches internationalesc(Paris)4 uhttp://www.ceri-sciences-po.org/cerifr/publica/etude/etude.htm zAccès libre au texte intégral1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bno 1 (1995) -....cParisdMagasins/AnnexeeP 4° 6533 aZGRA aDEW 909 aPBUL01032cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200002400156210007700180326001800257532007600275606002400351710006100375801003000436801002300466802000700489856006100496856003600557955006300593972000900656992002500665992001600690076266397000074794420130319051413.01 a1762-360X aissn1762360X a0000747944 a20030523a20039999 0fre 0103 ba0 afre aFR aai 14aLes études du CRIF aParisc[Conseil représentatif des institutions juives de France]d2003- a3 n°s par an10aLes études du Conseil représentatif des institutions juives de France aJuifsxPériodiques02aConseil représentatif des institutions juives de France 3aFRbAbesc20040409gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.crif.org/?page=articles_display/list&tg_id=114 zAccès libre au texte intégral1 bno. 1 (jul-2003) -....cParisdMagasins/AnnexeeP 4° 7062 aZGRA aGEO RA4.06 France 01 aDEW 305-30601095nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006000154210002700214326001100241530005900252607006100311710006600372856010700438856010800545955006000653972000900713991001800722992003900740992001400779037383108000016952920130319051413.01 a1995-3615 aFNSP642105 a0000169529 a19900101b19952001 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE. iFédération de Russie aPariscOCDEd1995-2002 aAnnuel10aÉtudes économiques de l'OCDE. Fédération de Russie aRussiexConditions économiquesz1991-....xPériodiques02aCentre pour la coopération avec les économies en transition4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocde zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1995) -(2001/2002)cParisdMagasins/AnnexeeP 8° 6177 aZECH aexempb201212 aGEO RA7.21 Russie (depuis 1991-92) aDEW 330.901217nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123200004600141210002700187326001100214430009000225452007100315530004600386607005300432710006700485801001300552856021200565955006000777972000900837991001800846992002500864992001400889039620492000000412720130709140809.01 a1995-3208 aFNSP104921 a19900206b19612002 fre 0 afre aXX aa z b 10aEtudes économiques de l'OCDE.iAllemagne aPariscOCDEd1961-2002 aAnnuel 1aSituation et problèmes de l'économie. République Fédérale d'Allemagnex0304-3363 1tÉtudes économiques de l'OCDE. Allemagne (En ligne)‎x1999-026X10aÉtudes économiques de l'OCDE. Allemagne aAllemagnexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2001/2002)cParisdMagasins/AnnexeeP 8° 5047 aZECH aexempb201104 aGEO RA5.01 Allemagne aDEW 330.901080nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004400139210002700183326001100210430005300221530004500274607005200319710006700371856010700438856010800545955006000653972000900713991001800722992002400740992001400764037036491000000413520130827115045.01 a1995-3135 aFNSP104934 a19900206b19622001 f ba0 afre aFR aaka 00aEtudes économiques de l'OCDE. Autriche aPariscOCDEd1962-2001 aAnnuel 1aSituation et problèmes de l'économie. Autriche aÉtudes économiques de l'OCDE. Autriche aAutrichexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocde zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2000/2001)cParisdMagasins/AnnexeeP 8° 5037 aZECH aexempb201006 aGEO RA5.13 Autriche aDEW 330.901106nas 2200301 i 450 00100100000000200110001000500170002101100140003810000410005210100080009310200070010110500180010810600060012611000160013220000550014821000230020332600110022651700550023760700520029271000670034480100130041185602120042495501030063697200090073999100180074899200140076699200240078011694207X000037975420130710111425.01 a1995-3712 a a199? k f fre ba0 afre aFR a 0  ar aa z 0 10aEtudes économiques de l'OCDE. Belgique-Luxembourg aPariscOCDEd199?- aAnnuel10aEtudes économiques de l'OCDE. Belgique-Luxembourg aBelgiquexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(1994/1995) ; (1998/1999) ; (2000/2001) ; (2002/2003);cParisdMagasins/AnnexeeP 8° 5062 aZECH aexempb201104 aDEW 330.9 aGEO RA4.04 Belgique01030nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004500139210002700184326001100211452007000222530004500292607005200337710006600389856021200455955006500667991001800732992001400750116941936000021508520130912111824.0 a1995-3577 aFNSP775831 a19900101b 1999 ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iBulgarie aPariscOCDEd1997-1999 aAnnuel 1tÉtudes économiques de l'OCDE. Bulgarie (En ligne)‎x1999-063410aÉtudes économiques de l'OCDE. Bulgarie aBulgariexConditions économiquesxPériodiques02aCentre pour la coopération avec les économies en transition4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1996/1997) -(1998/1999)cParisdMagasins/AnnexeeP 8° 6332 aexempb201309 aDEW 330.901077nas 2200277 i 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102110001600109200004200125210002700167326001100194430005200205452006800257530004300325607005000368710006700418856021200485955006000697972000900757992001900766992001400785116881178000000482620130715122048.0 aFNSP106653 a19900227b19612002 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE. Canada aPariscOCDEd1961-2002 aAnnuel 1aSituation et problèmes de l'économie.iCanada 1tÉtudes économiques de l'OCDE. Canada (En ligne)‎x1999-009X10aÉtudes économiques de l'OCDE. Canada aCanadaxConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2001/2002)cParisdMagasins/AnnexeeP 8° 5043 aZECH aGEO RC1 Canada aDEW 330.901148nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004500139210002700184326001100211430005300222452007000275530004500345607005200390710006700442856021200509955006000721972000900781991001800790992002400808992001400832037036467000000482720130715121846.01 a1995-316X aFNSP106654 a19900227b19622002 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iDanemark aPariscOCDEd1962-2002 aAnnuel 1aSituation et problèmes de l'économie. Danemark 1tÉtudes économiques de l'OCDE. Danemark (En ligne)‎x1999-022710aÉtudes économiques de l'OCDE. Danemark aDanemarkxConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2001/2002)cParisdMagasins/AnnexeeP 8° 5064 aZPAY aexempb201104 aGEO RA3.04 Danemark aDEW 330.901142nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000440013921000270018332600110021043000520022145200690027353000440034260700510038671000670043785602120050495500600071697200090077699100180078599200230080399200140082603703636X000000482920130715121005.01 a1995-3372 aFNSP106656 a19900227b19622002 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iEspagne aPariscOCDEd1962-2002 aAnnuel 1aSituation et problèmes de l'économie. Espagne 1tÉtudes économiques de l'OCDE. Espagne (En ligne)‎x1999-043X10aÉtudes économiques de l'OCDE. Espagne aEspagnexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2002/2003)cParisdMagasins/AnnexeeP 8° 5054 aZECH aexempb201104 aGEO RA6.02 Espagne aDEW 330.901160nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004700139210002700186326001100213430005500224452007400279530004800353607005400401710006700455856021200522955006000734972000900794991001800803992002300821992001400844039620557000000483020130715121057.01 a1995-3054 aFNSP106657 a19900227b19612002 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iEtats-Unis aPariscOCDEd1961-2002 aAnnuel 1aSituation et problèmes de l'économie. Etats-Unis 1taÉtudes économiques de l'OCDE. États-Unis (En ligne)‎x1999-011110aÉtudes économiques de l'OCDE. États-Unis aEtats-UnisxConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2001/2002)cParisdMagasins/AnnexeeP 8° 5055 aZECH aexempb201104 aGEO RC2 Etats-Unis aDEW 330.901078nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004500139210002700184326001100211452007000222530004500292607005200337710006700389856021200456955005500668972000900723991001800732992002400750992001400774039286150000000484420130715121201.01 a1995-3496 aFNSP106753 a19900228b19692003 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iFinlande aPariscOCDEd1969-2003 aAnnuel 1tÉtudes économiques de l'OCDE. Finlande (En ligne)‎x1999-055310aÉtudes économiques de l'OCDE. Finlande aFinlandexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2003)cParisdMagasins/AnnexeeP 8° 5059 aZECH aexempb201104 aGEO RA3.01 Finlande aDEW 330.901128nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004300139210002700182326001100209430004300220452006800263530004300331607005000374710006700424856021200491955006000703972000900763991001800772992002200790992001400812040132781000000434020130715115928.01 a1995-3186 aFNSP105399 a19900212b19622003 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iFrance aPariscOCDEd1962-2003 aAnnuel 1aSituation et problèmes de l'économie 1tÉtudes économiques de l'OCDE. France (En ligne)‎x1999-024310aÉtudes économiques de l'OCDE. France aFrancexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2002/2003)cParisdMagasins/AnnexeeP 8° 5045 aZECH aexempb201104 aGEO RA4.06 France aDEW 330.901150nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004300139210002700182326001100209430005100220452006800271530004300339607005000382710006700432856021200499955007400711972000900785991001800794992002200812992001400834039620514000000484720130715120648.01 a1995-3232 aFNSP106761 a19900228b19622001 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iGrèce aPariscOCDEd1962-2001 aAnnuel 1aSituation et problèmes de l'économie. Grèce 1tÉtudes économiques de l'OCDE. Grèce (En ligne)‎x1999-029410aÉtudes économiques de l'OCDE. Grèce aGrècexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(1997/1998) ; (2000/2001)cParisdMagasins/AnnexeeP 8° 5051 aZECH aexempb201104 aGEO RA6.05 Grèce aDEW 330.900982nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004300154210002700197326001100224607005100235710006700286856010700353856010800460955006000568972000900628991001800637992002300655992001400678037396951000003932120130319051413.01 a1995-347X aFNSP214725 a0000039321 a19900101b19912001 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE. Hongrie aPariscOCDEd1991-2001 aAnnuel aHongriexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocde zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1991) -(2001/2002)cParisdMagasins/AnnexeeP 8° 5747 aZECH aexempb201111 aGEO RA8.12 Hongrie aDEW 330.901143nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004400139210002700183326001100210430005200221452007000273530004400343607005100387710006700438856021200505955006000717972000900777991001800786992002300804992001400827037036386000000485120130709134033.01 a1995-3259 aFNSP106793 a19900228b19612001 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iIslande aPariscOCDEd1961-2001 aAnnuel 1aSituation et problèmes de l'économie. Islande 1ttÉtudes économiques de l'OCDE. Islande (En ligne)‎x1999-031610aÉtudes économiques de l'OCDE. Islande aIslandexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2000/2001)cParisdMagasins/AnnexeeP 8° 5044 aZECH aexempb201104 aGEO RA3.05 Islande aDEW 330.901134nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004300139210002700182326001100209430005100220452006600271530004300337607005000380710006700430856021200497955006000709972000900769991001800778992002200796992001400818040132781000000488920130828145201.01 a1995-3291 aFNSP106977 a19900301b19632001 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iItalie aPariscOCDEd1963-2001 aAnnuel 1aSituation et problèmes de l'économie. Italie 1tÉtudes économiques de l'OCDE. Italie (En ligne),x1999-035910aÉtudes économiques de l'OCDE. Italie aItaliexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2000/2001)cParisdMagasins/AnnexeeP 8° 5048 aZECH aexempb201104 aGEO RA6.03 Italie aDEW 330.901068nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004200139210002700181326001100208452006700219530004200286607004900328710006700377856021200444955006000656972000900716991001800725992002100743992001400764039286150000000489020130715121306.01 a1995-3070 aFNSP106978 a19900301b19642002 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iJapon aPariscOCDEd1964-2002 aAnnuel 1tÉtudes économiques de l'OCDE. Japon (En ligne)‎x1999-013810aÉtudes économiques de l'OCDE. Japon aJaponxConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2001/2002)cParisdMagasins/AnnexeeP 8° 5058 aZECH aexempb201104 aGEO RI3.22 Japon aDEW 330.901042nas 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000046001502100027001963260011002234300056002346070054002907120067003448010013004118560107004248560108005319550052006399720009006919920014007009920026007140000379751000037975120130319051413.0 a0000379751 a b20012001k f fre ba0 afre aFR a 0  ar aa z 0 10aEtudes économiques de l'OCDE. Luxembourg aPariscOCDEd2001-2003 aAnnuel 1tEtudes économiques de l'OCDE. Belgique, Luxembourg aLuxembourgxConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocde zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(2000/2001)cParisdMagasins/AnnexeeP 8° 6549 aZECH aDEW 330.9 aGEO RA4.05 Luxembourg00959nas 2200277 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000043001412100027001843260011002116070051002227120067002738560107003408560108004479550065005559720009006209910018006299920020006479920014006670000078280000007828020130319051413.0 aFNSP352822 a0000078280 a19900101b19922002 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE. Mexique aPariscOCDEd1992-2002 aAnnuel aMexiquexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocde zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1991/1992) -(2001/2002)cParisdMagasins/AnnexeeP 8° 5895 aZECH aexempb201201 aGEO RD1 Mexique aDEW 330.901148nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000450013921000270018432600110021143000530022245200700027553000450034560700520039071000670044285602120050995500600072197200090078199100180079099200240080899200140083203703636X000000489120130715120853.01 a1995-333X aFNSP106979 a19900301b19629999 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iNorvège aPariscOCDEd1962-2001 aAnnuel 1aSituation et problèmes de l'économie. Norvège 1tÉtudes économiques de l'OCDE. Norvège (En ligne)‎x1999-039110aÉtudes économiques de l'OCDE. Norvège aNorvègexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2000/2001)cParisdMagasins/AnnexeeP 8° 5053 aZECH aexempb201104 aGEO RA3.03 Norvège aDEW 330.901128nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005400139210002700193326001100220452007900231530005400310607006100364710006700425856021200492955006000704972000900764991001800773992003300791992001400824039306070000000489220130715121617.01 a1995-3119 aFNSP106980 a19900301b19752001 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iNouvelle Zélande aPariscOCDEd1975-2001 aAnnuel 1tÉtudes économiques de l'OCDE. Nouvelle-Zélande (En ligne)‎x1999-017010aÉtudes économiques de l'OCDE. Nouvelle Zélande aNouvelle-ZélandexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1975) -(2000/2001)cParisdMagasins/AnnexeeP 8° 5061 aZECH aexemp$B201104 aGEO RJ3.02 Nouvelle-Zélande aDEW 330.901165nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004500139210002700184326001100211430005300222452007000275530004500345607005200390676001000442710006700452856021200519955005500731972000900786991001800795992002400813992001400837040132803000000489420130715121940.01 a1995-3313 aFNSP106982 a19900301b19622000 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iPays-Bas aPariscOCDEd1962-2000 aAnnuel 1aSituation et problèmes de l'économie. Pays-Bas 1tÉtudes économiques de l'OCDE. Pays-Bas (En ligne)‎x1999-037510aÉtudes économiques de l'OCDE. Pays-Bas aPays-BasxConditions économiquesxPériodiques a330.902aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2000)cParisdMagasins/AnnexeeP 8° 5042 aZECH aexempb201104 aGEO RA4.03 Pays-Bas aDEW 330.900951nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004300154210002700197326001100224607005100235710006600286856010700352856010800459955006000567972000900627992002300636992001400659037396919000006931320130319051413.01 a1995-3550 aFNSP320457 a0000069313 a19900101b19922001 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE. Pologne aPariscOCDEd1992-2001 aAnnuel aPolognexConditions économiquesxPériodiques02aCentre pour la coopération avec les économies en transition4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocde zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1992) -(2000/2001)cParisdMagasins/AnnexeeP 8° 5828 aZECH aGEO RA5.11 Pologne aDEW 330.901153nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004500139210002700184326001100211430005300222452007000275530004500345607005200390710006700442856021200509955006500721972000900786991001800795992002400813992001400837037036246000000490620130715121747.01 a1995-3356 aFNSP107028 a19900302b19632002 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iPortugal aPariscOCDEd1963-2002 aAnnuel 1aSituation et problèmes de l'économie. Portugal 1tÉtudes économiques de l'OCDE. Portugal (En ligne)‎x1999-0413 aÉtudes économiques de l'OCDE. Portugal aPortugalxConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976/1977) -(2002/2003)cParisdMagasins/AnnexeeP 8° 5063 aZPAY aexempb201104 aGEO RA6.01 Portugal aDEW 330.901217nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005700139210002300196326001100219430007300230452008200303530005700385607005300442710006600495856021200561955006500773972000900838991001800847992003600865992001400901116941898000020020620130710115342.01 a1995-3534 aFNSP730743 a19900101a1996199 ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iRépublique slovaque aPariscOCDEd1996- aAnnuel 1aEtudes économiques de l'OCDE. Les républiques tchèque et slovaque 1tÉtudes économiques de l'OCDE. République slovaque (En ligne)‎x1999-059610aÉtudes économiques de l'OCDE. République slovaque aSlovaquiexConditions économiquesxPériodiques02aCentre pour la coopération avec les économies en transition4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1995/1996) -(2001/2002)cParisdMagasins/AnnexeeP 8° 6276 aZECH aexempb201301 aGEO RA5.22 République slovaque aDEW 330.901134nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005600154210002700210326001100237430006900248607006400317710006700381856010700448856010800555955009200663972000900755991001800764992003600782992001400818116941871000019604620130319051413.01 a1995-3518 aFNSP719793 a0000196046 a19900101b19962003 ba0 afre aFR aaka 10aEtudes économiques de l'OCDE. République tchèque aPariscOCDEd1996-2003 aannuel 1aEtudes économiques de l'OCDE. Républiques tchèque et slovaque aRépublique tchèquexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocde zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1995/1996) -(1997/1998) ; (2000/2001) -(2002/2003)cParisdMagasins/AnnexeeP 8° 5774 aZECH aexempb201111 aGEO RA5.21 République tchèque aDEW 330.901032nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210002700198326001600225607005200241710011700293856010700410856010800517955005200625972000900677991001800686992002400704992001400728116941995000024177020130319051413.01 a1995-3631 aFNSP850969 a0000241770 a19900101b19981998 ba0 afre aFR aaka 10aEtudes économiques de l'OCDE. Roumanie aPariscOCDEd1998-1998 aIrrégulier aRoumaniexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiquesbCentre pour la coopération avec les non-membres4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocde zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1997/1998)cParisdMagasins/AnnexeeP 8° 6383 aZECH aexempb201301 aGEO RA8.13 Roumanie aDEW 330.901173nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004800139210002700187326001100214430005600225452007300281530004800354607005900402710006700461856021200528955005900740972000900799991001800808992003100826992001400857040132536000000491320130709140438.01 a1995-3453 aFNSP107037 a19900302b19622001 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iRoyaume Uni aPariscOCDEd1962-2001 aAnnuel 1aSituation et problèmes de l'économie. Royaume Uni 1tÉtudes économiques de l'OCDE. Royaume-Uni (En ligne)‎x1999-051010aÉtudes économiques de l'OCDE. Royaume-Uni aGrande-BretagnexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976)-(2001/2002)cParisdMagasins/AnnexeeP 8° 5046 aZECH aexempb201006 aGEO RA4.02 Grande-Bretagne aDEW 330.901071nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004600139210002300185326001100208452007100219530004600290607005300336710006600389856021200455955005200667991001800719992004200737992001400779116941952000021846820130912112842.01 a1995-3593 aFNSP785316 a19900101a19979999 ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iSlovénie aPariscOCDEd1997- aAnnuel 1tÉtudes économiques de l'OCDE. Slovénie (En ligne)‎x1999-065010aÉtudes économiques de l'OCDE. Slovénie aSlovéniexConditions économiquesxPériodiques02aCentre pour la coopération avec les économies en transition4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1996/1997)cParisdMagasins/AnnexeeP 8° 6337 aexempb201309 aGEO RA8.22 Slovénie (depuis 1991-92) aDEW 330.901136nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004300139210002700182326001100209430005100220452006800271530004300339607005000382710006700432856021200499955006000711972000900771991001800780992002200798992001400820037036343000000491620130715120252.01 a1995-3399 aFNSP107040 a19900302b19622002 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iSuède aPariscOCDEd1962-2002 aAnnuel 1aSituation et problèmes de l'économie. Suède 1tÉtudes économiques de l'OCDE. Suède (En ligne)‎x1999-045610aÉtudes économiques de l'OCDE. Suède aSuèdexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2001/2002)cParisdMagasins/AnnexeeP 8° 5050 aZECH aexempb201104 aGEO RA3.02 Suède aDEW 330.901135nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004200139210002700181326001100208430005100219452006800270530004300338607005000381710006700431856021200498955006000710972000900770991001800779992002200797992001400819037036327000000491720130710103943.01 a1995-3410 aFNSP107041 a19900302b19612002 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE. Suisse aPariscOCDEd1961-2002 aAnnuel 1aSituation et problèmes de l'économie. Suisse 1tÉtudes économiques de l'OCDE. Suisse (En ligne)‎x1999-047210aÉtudes économiques de l'OCDE. Suisse aSuissexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2001/2002)cParisdMagasins/AnnexeeP 8° 5056 aZECH aexempb201104 aGEO RA5.14 Suisse aDEW 330.901142nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004400139210002700183326001100210430005200221452006900273530004400342607005100386710006700437856021200504955006000716972000900776991001800785992002300803992001400826116941790000000491920130715120745.01 a1995-3437 aFNSP107044 a19900302b19632002 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDE.iTurquie aPariscOCDEd1963-2002 aAnnuel 1aSituation et problèmes de l'économie. Turquie 1tÉtudes économiques de l'OCDE. Turquie (En ligne)‎x1999-049910aÉtudes économiques de l'OCDE. Turquie aTurquiexConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1976) -(2001/2002)cParisdMagasins/AnnexeeP 8° 5052 aZECH aexempb201104 aGEO RA6.06 Turquie aDEW 330.901067nas 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000045001502100027001953260011002226060023002336070069002567120067003258010013003928560107004058560108005129550065006209720009006859920057006949920014007510000398396000039839620130319051413.0 a0000398396 a b20012003k f fre ba0 afre aFR a 0  ar aa z 0 10aEtudes économiques de l'OCDE. Zone euro aPariscOCDEd2001-2003 aAnnuel aEuroxPériodiques aPays de l'Union européennexPolitique économiquexPériodiques02aOrganisation de coopération et de développement économiques 0aFRbFNSP uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocde zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(2000/2001) -(2002/2003)cParisdMagasins/AnnexeeP 8° 6574 aZECH aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 330.900964nas 2200265 i 450 001001000000002001100010005001700021035001500038035001500053100004100068101000800109102000700117110001600124200004200140210002700182326001100209607006400220710006700284856021200351955006500563972000900628991001800637992002900655992001400684037404911000012837520130319051413.0 aFNSP523218 a0000128375 a19940601b19942003 f ba0 afre aFR aaka 10aEtudes économiques de l'OCDEiCorée aPariscOCDEd1994-2003 aAnnuel aCorée (République)xConditions économiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043363/etudeseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1993/1994) -(2002/2003)cParisdMagasins/AnnexeeP 8° 6033 aZECH aexempb201207 aGEO RI3.13 Corée du Sud aDEW 330.901289nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010013000951020007001081050018001151060006001331100016001391350018001552000123001732100099002962300024003953000093004193000040005123000129005523260015006816060031006966070058007277120094007858010013008798560043008929550040009350000311119000031111920130319051413.0 a0000311119 a a19969999k fre ba0 afreaeng aFR a 0  az aau z 0  adr 10aEtudes et documents - Centre d'études et de recherches sur le développement internationalb[Ressource électronique] aClermont-FerrandcCentre d'études et de recherches sur le développement internationald1996- aDonnées textuelles aAccès au 18/04/2000 : World Wide Web. URL : http://www.u-clermont1.fr/cerdi/default.htm aArticles en français ou en anglais aRésumés seulement de 1996 à 1998. Texte intégral au format pdf à partir de 1999, télédéchargeable avec Adobe Acrobat aCollection aDéveloppement économique aPays en voie de développementxPolitique économique02aCentre d'études et de recherches sur le développement internationalc(Clermont-Ferrand) 0aFRbFNSP4 uhttp://www.cerdi.org/Publi/default.asp1 rUniquement consultable sur Internet01351nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210004300195210004600238326001100284517003600295517000900331530004100340606004600381606006100427676000800488710004000496801002100536830003200557856005400589955006700643955005200710957010900762972000900871991001800880992002200898992001200920992000900932039300862000000340520130319051413.01 a0182-788X aFNSP102870 a0000003405 a19900101a19479999 ba0 afre aFR aaka 10aEtudes et documentsfConseil d'État aPariscImprimerie nationaled1947-1988 aPariscLa Documentation françaised1989- aAnnuel10aRapport public - Conseil d'Etat10aEDCE 0aEtudes et documents - Conseil d'Etat aDroit administratifyFrancexPériodiques aDroit administratifyFrancexJurisprudencexPériodiques a342 aFrancebConseil d'Etatc(1799-....) 3aFRbCCN0182-788X a1947-1999 conservé au 13 U4 uhttp://www.conseil-etat.fr/fr/rapports-et-etudes/1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 3421 bno. 1 (1947) -....cParisdMagasinseP 4° 02401 bno. 34 (1982) -no. 48 (1996)cParisdMagasins/Annexezcet index se trouve dans l'année 1996 de la revue aZPAY aexempb201010 aGEO RA4.06 France aDEW 342 aPBUL01170nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000033001552100062001883260015002504300155002656060042004206060045004626060039005077100134005468300035006808560059007158560036007749550005008109920025008159920016008400000277295000027729520130319051413.01 a1292-6876 aFNSP952260 a0000277295 a19990709a19989999 ba0 afre aFR aana 10aEtudes et résultats - DREES aPariscMinistère de l'emploi et de la solidaritéd1998- aTrimensuel 1tInformations rapides - Ministère du travail et des affaires sociales, Service des statistiques, des études et des systèmes d'informationx1278-8309 aSanté publiqueyFrancexPériodiques aSécurité socialeyFrancexPériodiques aAide socialeyFrancexPériodiques02aFrancebMinistère de l'emploi et de la solidaritébDirection de la recherche, des études, de l'évaluation et des statistiques aDésherbé en mars 2012 (1998-4 uhttp://www.sante.gouv.fr/etudes-et-resultats,4001.html zAccès libre au texte intégral1 b aGEO RA4.06 France 01 aDEW 360-36301043nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210003600176326002200212326002700234606005300261710008700314801002100401856003900422856007700461955007800538957007000616972000900686992002200695992001200717039305570000001862320130923170315.01 a0183-5912 aFNSP150689 a0000018623 a19900101a19789999 ba0 afre aFR aaga 10aEtudes foncières aPariscEtudes foncièresd1978- aBimestrielb2001- aTrimestrielb1978-2000 aAménagement du territoireyFrancexPériodiques02aAssociation pour le développement et la diffusion des études foncièresc(Paris) 3aFRbCCN0183-59124 uhttp://www.adef.org/site/index.php zContenu : sélection d'articles en texte intégral depuis le no. 1, 19781 bno. 4 (pri-1979) ; no. 7 (1980) -....cParisdMagasins/AnnexeeP 4° 46351 bno. 1 (1978) -no. 22 (1984)cParisdMagasins/AnnexeeP Index 0535 aZPAY aGEO RA4.06 France aDEW 33301178nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210006700181326001600248530003700264606004400301607004900345676000800394710006000402801002100462856003600483856008800519955006700607955006300674972000900737991001800746992002100764992001900785992001200804036274623000000452720130319051413.01 a0014-2123 aFNSP105966 a0000004527 a19900101a19709999 ba0 afre aCA aahu 10aEtudes internationales aQuébeccCentre québecois de relations internationalesd1970- aTrimestriel00aÉtudes internationalesbQuébec aRelations internationalesxPériodiques aCanadaxRelations extérieuresxPériodiques a32702aInstitut québécois des hautes études internationales 3aFRbCCN0014-21234 uhttp://www.erudit.org/revue/ei/ zContenu : texte intégral depuis le vol.1, 1970 ; barrière mobile de deux années.1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bno. 1 (fev-1970) -....cParisdMagasins/AnnexeeP 8° 2773 aZCAD aexempb201103 aGEO RQ Universel aGEO RC1 Canada aDEW 32701065nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001700154210004900171326001500220517001800235606002500253710005800278801002100336856004300357856006000400955016500460957010400625991001800729992001600747039667162000001854920130319051413.01 a0701-1008 aFNSP150542 a0000018549 a19900101a19779999 ba0 amul aCA aaju 10aEtudes Inuit aQuébeccEtudes inuit / Inuit studiesd1977- aSemestriel10aInuit studies aInuitsxPériodiques02aAssociation Inuksiutiit Katimajiitc(Québec, Canada) 3aFRbCCN0701-10084 uhttp://www.erudit.org/revue/etudinuit/ zContenu : texte intégral depuis le vol.26, n°1 (2002)1 bvol. 1 no. 1 (1977) -vol. 18 no. 1/2 (1994)cParisdMagasins/AnnexeeP 8° 4674wLac.: vol. 1 no. 2 (1977) ; vol. 2 (1978) ; vol. 4 (1980) ; vol. 5 no. 1 (1981)1 bvol. 1 (1977) -vol. 10 (1986) ; vol. 1 (1977) -vol. 17 (1993)cParisdMagasins/AnnexeeP Index 0669 aexempb201106 aDEW 305-30601565cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200005200179210003300231326001200264421006600276421010300342430006600445447010300511447002900614517006800643517003100711530005200742531002900794710002900823801003000852801002300882802000700905856014500912955009001057991002001147038442795000108414920130319051413.0 a0997-4156 accn0997-4156 aissn09974156 a0001084149 a19900517b18621896uuuy0frey0103 ba0 afre aFR ar aafu uu 10aEtudes religieuses, historiques et littéraires aPariscC. Douniold1862-1896 aMensuel 1tMoniteur bibliographique de la Compagnie de Jésusx0994-5970 1tEtudes religieuses, philosophiques, historiques et littéraires. Partie bibliographiquex0994-5504 1tEtudes de théologie, de philosophie et d'histoirex0997-4148 1tEtudes religieuses, philosophiques, historiques et littéraires. Partie bibliographiquex0994-5504 1tEtudes (1897)x0994-595410aEtudes religieuses, philosophiques, historiques et littéraires10aEtudes religieuses (Paris)00aEtudes religieuses, historiques et littéraires 0aEtud. relig. hist. litt.02aCompagnie de Jésus4070 3aFRbAbesc20070108gAFNOR 3aFRbISSNc20030523 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34415014q/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1862-1896)1 bvol. 58 (1893) -vol. 243 (1940) ; vol. 244 (1945)cParisdMagasins/AnnexeeP 8° 0260 aPériobTP01 P801360nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006700154210003300221300002700254326001600281517000700297606004400304606004700348710004900395801002100444856003700465856017000502856009400672856010800766955006300874972000900937991001800946992002200964992001200986013310100000001900920130319051413.01 a0014-2182 aFNSP151731 a0000019009 a19900101a19619999 ba0 afre aFR aaha 10aEtudes ruralesfÉcole des hautes études en sciences sociales aPariscEd. de l'EHESSd1961- aParaît avec du retard aTrimestriel10aER aSociologie ruraleyFrancexPériodiques aDéveloppement ruralyFrancexPériodiques02aLaboratoire d'anthropologie socialec(Paris) 3aFRbCCN0014-21824 uhttp://etudesrurales.revues.org/ zContenu : sommaires de 1961 à 1972, sommaires et résumés à partir de 1973, texte intégral avec trois ans de délai par rapport à la parution, à partir de 20004 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-etudes-rurales.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (avr-1961) -....cParisdMagasins/AnnexeeP 8° 1920 aZGRA aexempb200910 aGEO RA4.06 France aDEW 30701158nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200014400154210006400298326001500362530003200377606003600409710005800445801002100503856007100524955008000595957011100675972000900786991001600795992002100811992001200832039223531000006120920130319051413.01 a0014-2204 aFNSP280620 a0000061209 a19900101a19359999 ba0 afre aFR aaju 14aLes Etudes socialeseorgane de la Société des études pratiques d'économie sociale et de la Société internationale de science sociales aPariscSociété d'économie et de sciences socialesd1935- aSemestriel14aLes Études socialesbParis aSciences socialesxPériodiques02aSociété d'économie et de sciences sociales (Paris) 3aFRbCCN0014-22044 uhttp://www.science-sociale.org/dossiers/dossiers.php?id_dossier=651 b(1935) -(1940) ; no. 1 (jan-1948) -....cParisdMagasins/AnnexeeP 8° 07571 bno. 48/49 (1961) -no. 73/74 (1967) ; no. 75/76 (1968) -no. 98 (1973)cParisdMagasins/AnnexeeP Index 0255 aZPAY aexemp201201 aGEO RQ Universel aDEW 30000889nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210003400174326002300208326002600231606002700257606002900284710004600313856003900359856003700398955006400435972000900499991001800508992003300526992001600559039223558000010802720130319051413.01 a0014-2247 aFNSP457348 a0000108027 a19900101a19559999 ba0 afre aFR aaha 10aEtudes tsiganes aPariscEtudes tsiganesd1955- aTrimestrielb2004- aSemestrielb1955-2003 aTsiganesxPériodiques aMinoritésxPériodiques02aAssociation des études tsiganesc(Paris)4 uhttp://www.etudestsiganes.asso.fr/ zAccès libre au texte intégral.1 bn.s. no. 1 (1993) -....cParisdMagasins/AnnexeeP 8° 5982 aZPAY aexempb201210 aGEO RS Sans aspect régional aDEW 305-30601169nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001500139210002900154326001200183421003700195421004700232430003800279530002300317606005400340606005000394606003600444801002100480856002900501856008600530955006900616955008700685972000900772992002200781992001600803039082962000001945920131104163823.01 a0766-6330 aFNSP152869 a19900101a19859999 ba0 afre aFR aafa 02aL'Etudiant aPariscL'Etudiantd1985- aMensuel01tEtudiant plus (Paris)x0766-634901tEtudiant. Guide pratique (1984)x0765-4812 1aDossiers de l'Etudiantx0181-513X02aL'ÉtudiantbParis aOrientation professionnelleyFrancexPériodiques aEnseignement supérieuryFrancexPériodiques aEducationyFrancexPériodiques 3aFRbCCN7014/78174 uhttp://www.letudiant.fr/ zContenu : sommaire et texte intégral du dernier numéros; diverses informations.1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 40981 bConservation limitée aux 2 dernières annéescParisdMagasins/AnnexeeP 4° 4098 aZPAY aGEO RA4.06 France aDEW 370-37901263nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003700163207002700200210004000227326001500267430005200282606004200334606003200376607003900408607004700447607004600494801001300540856009400553856010800647955006700755972000900822992005600831992001400887127737006000046011120140106161951.01 a1538-7216 a0000460111 a a20029999k fre ba0 aeng aUS a 0  ar aag z 0 10aEurasian geography and economics 1avol. 43, no. 2 (2002)- aPalm Beach, FLcV.H. Winstond2002- aBimestriel 1tPost-Soviet geography and economics,x1088-9388 aGéographie économiquexPériodiques aGéopolitiquexPériodiques aEx-URSSxGéographiexPériodiques aEurope de l'EstxGéographiexPériodiques aAsie orientalexGéographiexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://bellwether.metapress.com/content/120747/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 43 no. 2 (2002) -....cParisdMagasins/AnnexeeP 8° 1854 aZPAY aGEO RA7.02 Etats successeurs de l'Union soviétique aDEW 330.900930nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200000900154210004100163326001600204430003200220530002200252606006500274606004500339856003400384856008400418955006900502992005700571992001200628036849049000022057920130319051414.01 a1372-5270 aFNSP791823 a0000220579 a19900101b19972000 ba0 amul aBE aaha 10aEuro aBruxellescEcu-Activitiesd1997-1999 aTrimestriel 1aEcu (Bruxelles),x0775-508200aEurob(Bruxelles) aMarché financieryPays de l'Union européennexPériodiques aMonnaie unique européennexPériodiques4 uhttp://www.ecu-activities.be/ zContenu : sommaires ; texte intégral avec mot de passe ; depuis le n°42, 19981 bno. 39 (1997) -no. 50 (2000)cParisdMagasins/annexeeP 4° 5387 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 33201068nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210006300185326001500248451004000263606006400303606003700367676001100404710006400415801002100479856005500500856003700555955007200592972000900664992005700673992001200730040141039000001117120130319051414.01 a1012-2257 aFNSP123899 a0000011171 a19900101a00019999 f ba0 afre aBE aaja 10aEurobaromètre (Bruxelles) aBruxellescCommission des communautés européennesd0001- aSemestriel 1aEurobarometer (Brussels)x1012-2249 aOpinion publiqueyPays de l'Union européennexPériodiques aSondages d'opinionxPériodiques a303.3802aCommunautés européennesbDirection générale Information 3aFRbCCN0251-29394 uhttp://ec.europa.eu/public_opinion/standard_fr.htm zAccès libre au texte intégral.1 bno. 7 (jul-1977) -no. 66 (2006)cParisdMagasins/AnnexeeP 4° 4340 aZGRA aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 30301123nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001400139210002900153326001200182434003200194434003300226530001400259606006500273606003600338801002100374830005700395830005300452856008400505955006700589972000900656991001800665992005700683992002100740992001200761038705338000000450420131001141121.01 a0014-2433 aFNSP105924 a19900101a19699999 ba0 aeng aGB aafu 10aEuromoney aLondoncEuromoneyd1969- aMensuel 1tCentral Europeanx0962-2543 1tCorporate financex0958-205300aEuromoney aMarché financieryPays de l'Union européennexPériodiques aMarché financierxPériodiques 3aFRbCCN0014-2433 a1969---> 1979 collection donnée au CTL en juin 2002 a1980-2008 : collection envoyée au CTles en 20134 uhttp://www.euromoney.com/index.htmlzAccès libre aux sommaires depuis Jan 19961 b(1980) -no. 476 (dec-2008)cParisdMagasins/AnnexeeP 4° 2910 aZPAY aexempb201306 aGEO RA1.01 Communautés européennes, Pays de la CEE aGEO RQ Universel aDEW 33201048nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002700139210003100166326001600197530002700213607002500240607005400265676001000319801002100329856011200350955006800462955006300530957007200593972000900665991001800674992001800692992001200710039379582000002005220130725093234.01 a0304-2782 aFNSP154336 a19900101a19739999 ba0 ager aAT aahu 10aEuropäische Rundschau aWiencEuropa Verlagd1973- aTrimestriel00aEuropäische Rundschau aEuropexPériodiques aAutrichexPolitique et gouvernementxPériodiques a943.7 3aFRbCCN0304-27824 uhttp://www.europaeische-rundschau.atzContenu : sommaires depuis 2003, certains articles en texte intégral1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 943.71 bno. 1 (jul-1973) -....cParisdMagasins/AnnexeeP 8° 32421 bvol. 1 (1973) -vol. 21 (1993)cParisdMagasins/AnnexeeP Index 0710 aZSAB aexempb200911 aGEO RA Europe aDEW 94001201nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210003200182326001200214421004500226430007200271440004900343447003500392606003500427606003800462710005800500856005800558856007900616955008800695972000900783992002500792992001800817992001600835040058700000004162420130319051414.01 a0940-4171 aFNSP222723 a0000041624 a19900101a19919999 ba0 ager aDE aafa 10aEuropäische Sicherheit aHerfordcMittlerd1991-2011 aMensuel 1tMilitärgeschichte (Herford),x0940-4163 1aEuropäische Wehrkunde, Wehrwissenschaftliche Rundschau,x0723-9432 1tEuropäische Sicherheit & Technikx2193-746X 1tStrategie & Technikx1860-5311 aDéfenseyEuropexPériodiques aDéfenseyAllemagnexPériodiques02aGesellschaft für Wehr- und Sicherheitspolitik (Bonn)4 uhttp://www.europaeische-sicherheit.de/Rel/index2.html zContenu : sommaires depuis oct. 2000, certains articles en texte intégral1 bvol. 40 no. 1 (1991) -vol. 60 no. 12 (dec-2011)cParisdMagasins/AnnexeeP 4° 2996 aZCAD aGEO RA5.01 Allemagne aGEO RA Europe aDEW 355-35901228nas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200003800180210002500218421004400243436003900287436003500326517001100361532004000372606003500412606003800447710005800485801003000543801002300573802000700596856002400603856008200627955006200709992002500771992001800796992001600814158393120000122524720130319051414.01 a2193-746X aissn2193746X a0001225247 a20120213a20129999u y0frey50 ba0 ager aDE ay  ar aafu uu 10aEuropäische Sicherheit & Technik aBonncMittlerd2012- 1tMilitärgeschichte (Herford)x0940-4163 1tEuropäische Sicherheitx0940-4171 1tStrategie & Technikx1860-531110aES & T10aEuropäische Sicherheit und Technik aDéfenseyEuropexPériodiques aDéfenseyAllemagnexPériodiques02aGesellschaft für Wehr- und Sicherheitspolitik (Bonn) 3aFRbAbesc20120213gAFNOR 3aFRbISSNc20120206 a064 uhttp://www.esut.de/ zContenu : sommaires depuis janvier 2012, certains articles en texte intégral1 bno. 1 (jan-2012) -....cParisdMagasinsAnnexeeP 4° 2996 aGEO RA5.01 Allemagne aGEO RA Europe aDEW 355-35900831nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001600154210003000170326001500200606003400215801002100249856007300270856003600343955006600379972000900445991001800454992005700472992001200529039638049000002005820130319051414.01 a0531-2485 aFNSP154349 a0000020058 a19900101a19669999 ba0 ager aDE aaga 10aEuroparecht aBaden-BadencNomosd1966- aBimestriel aDroit européenxPériodiques 3aFRbCCN0531-24854 uhttp://www.nomos.de/nomos/d/recherche/zs_rech/zs_start.lasso#zsrecht zContenu : sommaires depuis 20001 bvol. 1 no. 1 (1966) -....cParisdMagasins/AnnexeeP 8° 2389 aZPAY aexempb200908 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 34101099nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154207001600182210003300198326001200231517003500243517004600278530002600324606003400350606003100384856007200415856010800487955010000595972000900695992005700704992001200761049007653000005241820130319051414.01 a1163-8184 aFNSP251789 a0000052418 a19900101a19919999 ba0 afre aFR aafa 00aEuropeerevue mensuelle 1aNo 1(1991)- aPariscEd. techniquesd1991- aMensuel10aEuropeerevue du Jurisclasseur10aEuropeeactualité du droit communautaire10aEuropeb(Paris. 1991) aDroit européenxPériodiques aDroit publicxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b1 ère an. no. 1(nov-1991) -17 ème an. no. 12 (déc- 2007)cParisdMagasins/AnnexeeP 4° 6069 aZPAY aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 34101931nas 2200433 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004700154207002700201210007300228210005400301326002100355326003000376430003000406607002600436607003400462710002600496856005700522856006000579856010300639856010800742856012800850856010800978856010901086856010801195955006701303972000901370991001801379992005601397992003201453992001201485040101622000008567820140108104232.01 a0966-8136 aFNSP380543 a0000085678 a19900101a19939999 ba0 aeng aGB aaga 10aEurope-Asia studiesfUniversity of Glasgow 1aVol. 45 no. 1 (1993) - aAbingdoncCarfax Publishing for the University of Glasgowd1993-199X aAbingdoncUniversity of GlasgowcRoutledged199X- aBimestrielb1993 a8 à 10 nos par anb1994- 1aSoviet studiesx0038-5859 aEx-URSSxPériodiques aEurope de l'EstxPériodiques02aUniversity of Glasgow4 uhttp://www.tandf.co.uk/journals/carfax/09668136.html zContenu : sommaires depuis le vol. 48, n°1, janv. 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/09668136.html?&cookieSet=1 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=EAS&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713414944db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 45 no. 1 (1993) -....cParisdMagasins/AnnexeeP 8° 0235 aZSAB aexempb201101 aGEO RA7.02 Etats successeurs de l'Union soviétique aGEO RA2.02 Europe orientale aDEW 94701081cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200002700180210006000207303005500267326001900322606003600341606006500377801003000442801002300472802000700495856004400502856008200546955007100628972000900699992001200708992001100720057909571000111415320130319051415.01 a1622-1109 aissn16221109 a0001114153 a20010206a20009999 y0frey0103 ba0 afre aFR ay  ar aai 12aL'Europe des libertés aStrasbourgcPresses universitaires de Strasbourgd2000- aNotice rédigée d'après le N. 22 (janvier 2007)- aQuadrimestriel aDroits de l'hommexPériodiques aDroits de l'hommeyPays de l'Union européennexPériodiques 3aFRbAbesc20070706gAFNOR 3aFRbISSNc20010206 a074 uhttp://leuropedeslibertes.u-strasbg.fr/ zContenu: sommaire et texte intégral des n°s depuis le vol. 4, n° 3 de 20031 bvol. 6 no. 19 (oct-2005) -....cParisdMagasins/AnnexeeP 4° 7205 aZPAY aDEW 323 aGEO UE01150nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210002300180300003300203326001600236606006100252676000800313710005000321801002100371856010000392856010800492955007100600955007100671972000900742992005700751992001600808039223582000001892520130319051416.01 a0154-9928 aFNSP151535 a0000018925 a19900101a19609999 ba0 afre aFR aaha 12aL'Europe en formation aPariscCIFEd1960- aParaît avec un an de retard aTrimestriel aFédéralismeyPays de l'Union européennexPériodiques a32002aCentre international de formation européenne 3aFRbCCN0014-28084 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-l-europe-en-formation.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étage:eDEW 320.441 bvol. 2 no. 2 (fév-1961) -....cParisdMagasins/AnnexeeP 4° 1956 aZPAY aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 320-32101145nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200009900163210002700262326001700289530003700306607007100343702003600414702002600450801001300476830007900489856009900568955008600667957006600753992001200819038759934000047249820130319051416.01 a1246-6735 a0000472498 a b19181940k fre ba0 afre aFR a 0  ar aac z 0 12aL'Europe nouvelleerevue hebdomadaire des questions extérieures, économiques et littéraires aPariscs.n.d1918-1940 aHebdomadaire12aL'Europe nouvelleb(Paris, 1918) aEuropexPolitique et gouvernementz1918-1945xPériodiques2rameau 1aFabre-LucebAlfredf(1899-1983) 1aLe VerrierbMadeleine 0aFRbFNSP aannée 1936 reliée à l'atelier 2011 toile bordeaux pièce de titre noire4 uhttp://gallica.bnf.fr/ark:/12148/cb32771271m/datezAccès libre au texte intégral sur Gallica1 bno. 1 (12 jan-1918) -no. 1164 (1er juin-1940)cParisdMagasins/AnnexeeP 4° 03321 b(1918) -(1928)cParisdMagasins/Annexewno. 568 (29 dec-1928) aDEW 05000845nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000109001502100041002593260016003006060043003166070070003598010013004298560036004428560061004789550005005399920012005449920011005560001159617000115961720130319051417.0 a0001159617 a a20009999k fre 01 ba0 aeng aUS ar aah z  adr 10aEuropean affairsb[Ressource électronique]ea Publication of the European InstitutefEuropean Institute aWashington, DCcThe Instituted2000- aTrimestriel aCoopération européennexPériodiques aPays de l'Union européennexRelations extérieuresxPériodiques 0aFRbFNSP4 uhttp://www.europeanaffairs.org/ zContenu : texte intégral des articles à partir de 20001 r aDEW 940 aGEO RQ01552nas 2200361 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000262001552100028004173000054004453260011004994300083005104400088005935100077006816070049007586070040008076070041008476070038008887100059009268560046009859550070010319720009011019920056011109920012011669920012011780000151123000015112320130319051417.0 a1259-458X aFNSP590711 a0000151123 a19950227b19942000 ba0 afre aFR aaka 10aEuropean bibliography of Slavic and East European Studiesd= Bibliographie européenne des travaux sur l'ex-URSS et l'Europe de l'EstffÉcole des hautes études en sciences sociales ; Council for Slavonic and East European library and information services aPariscEHESSd1994-2000 aA partir de 1996, publication en ligne uniquement aAnnuel 1aEuropean bibliography of Soviet, East European and Slavonic Studiesx0140-492X 1tBibliographie européenne des travaux sur l'ex-URSS et l'Europe de l'Estx1638-174210aBibliographie européenne des travaux sur l'ex-URSS et l'Europe de l'Est aEurope de l'EstxBibliographiexPériodiques aRussiexBibliographiexPériodiques aEx-URSSxBibliographiexPériodiques aURSSxBibliographiexPériodiques02aEcole des hautes études en sciences socialesc(Paris)4 uhttp://ebsees.staatsbibliothek-berlin.de/1 bvol. 16 (1990) -vol.21 (1995)cParisdMagasins/AnnexeeP 4° 5949 aZPAY aGEO RA7.02 Etats successeurs de l'Union soviétique aDEW 010 aDEW 94700749nas 2200217 i 450 001001000000002001100010005001700021035001500038035001500053100004100068101000800109102000700117110001600124200006200140210004900202326001600251517002300267712006200290856009800352955008100450036551589000006472020130319051417.0 aFNSP297178 a0000064720 a19900101a19709999 ba0 aeng aGB aaha 10aEuropean consortium for political research. News circular aColchester, GBcUniversity of Essexd[19??-] aTrimestriel10aECPR news circular02aConsortium européen de recherches en sciences politiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.palgrave-journals.com/eps/ecpr_news.html1 bvol. 1 no. 1 (1970) -vol. 3 no. 1 (1991)cParisdMagasins/annexeeP 4° 309201427nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006000154210007300214210004000287210003200327300009800359326002700457326002700484607006900511607007100580712003400651856010000685856007200785955014300857991001801000992005701018992001401075038705435000001907920130319051417.01 a0014-2921 aFNSP151890 a0000019079 a19901201a19699999 ba0 aeng aNL aaza 10aEuropean economic reviewfEuropean Economic Association aWhite Plains, N.Y.cInternational Arts and Sciences Pressd1969-1971 aAmsterdamcNorth-Hollandd1971-1983 aaAmsterdamcElsevierd1983- aà partir de 2003 cette revue n'est plus l'organe officiel de "European Economic Association" aIrrégulierb1980-2002 aTrimestrielb1969-1979 aPays de l'Union européennexPolitique économiquexPériodiques aPays de l'Union européennexConditions économiquesxPériodiques02aEuropean Economic Association4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/00142921 zContenu : sommaires et résumés depuis le vol. 34, n°7, nov. 19901 bvol. 1 no. 2 (1969) -vol. 38 no. 9 (1994)cParisdMagasins/AnnexeeP 8° 2764zà partir de 1995, édition imprimée consultable à l'OFCE aexempb200908 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 338.901414cas0 2200397 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147106000600154110001600160200003800176210009300214300002500307326002300332422003300355601004400388607007100432607006900503710009000572711004600662801003000708801002300738802000700761856007700768856003600845955005500881972000900936992005700945992001401002067379257000101116720130319051417.01 a1684-033X a067335640 aissn1684033X a0001011167 a20020530a20029999k f0frey0103 ba0 aeng aII ar aai 10aEuropean economy.iSpecial report aLuxembourgcOffice des publications officielles des Communautés européennesd2002-2006 aN'a pas paru en 2003 a2 à 3 n°s par an 1tEuropean economy,x0379-099102aCommunautés européennesxPériodiques aPays de l'Union européennexConditions économiquesxPériodiques aPays de l'Union européennexPolitique économiquexPériodiques02aCommunautés européennesbDirection générale Affaires économiques et financières02aUnion européennebCommission européenne 3aFRbAbesc20060621gAFNOR 3aFRbISSNc20020530 a004 uhttp://ec.europa.eu/economy_finance/publications/eespecialreports_en.htm zAccès libre au texte intégral1 bno. 1 (2002) -no. 4 (2006)cParisdMagasins/Annexe aZPAY aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 330.900852nls 2200265 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000053001642100077002172300024002946070071003188010013003898560057004028560056004599920057005159920014005720000978263000097826320130319051417.01 a1830-5180 a0000978263 a a20069999k fre 01 ba0 aeng aBE ar aaf z  adr 10aEuropean economy newsb[Ressource électronique] aBruxellescDirectorate General for Economic and Financial Affairsd2006- aRevue électronique aPays de l'Union européennexConditions économiquesxPériodiques 0aFRbFNSP4 uhttp://ec.europa.eu/economy_finance/een/index_en.htm zContenu : texte intégral depuis le numéro 1, 2006 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 330.901004nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154207002700185210002400212326001600236430003900252607003500291801002100326856010800347856010800455955007000563972000900633991001800642992001800660992001200678039318966000001908020130319051417.01 a0265-6914 aFNSP151891 a0000019080 a19900101a19849999 ba0 aeng aGB aahu 10aEuropean history quarterly 1aVol. 14, no. 1 (1984)- aLondoncSaged1984- aTrimestriel 1aEuropean studies reviewx0014-3111 aEuropexHistoirexPériodiques 3aFRbCCN0265-69144 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 14 no 1 (jan-1984) -....cParisdMagasins/AnnexeeP 8° 3281 aZSAB aexempb201009 aGEO RA Europe aDEW 94001005nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000370015421000370019132600150022860600360024360600540027985601190033385601080045295500590056097200090061999100180062899200570064699200120070303674932X000019551520140110133659.01 a1361-1526 aFNSP718416 a0000195515 a19900101a19969999 ba0 aeng aGB aaga 10aEuropean human rights law review aLondoncSweet and Maxwelld1996- aBimestriel aDroits de l'hommexPériodiques aDroits de l'homme (droit européen)xPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.westlaw.com/signon/default.wl?RS=UKIS1.0&VR=1.0&sp=intiep-000 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1996) -....cParisdMagasins/AnnexeeP 8° 6263 aZCAD aexempb201301 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 32300855nls 2200301 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000066001642070012002302100066002422300024003083260013003326060036003458010013003818560048003948560037004429550005004799920012004849920057004960001221929000122192920130319051417.0 a1027-5193 a0001221929 a a19979999k fre 01 ba0 aeng aAT ar aaz z  adr 10aEuropean Integration online Papersb[Ressource électronique] 1a1997/1- aViennecEuropean Community Studies Association Austriad1997- aRevue électronique aInconnue aUnion européennexPériodiques 0aFRbFNSP4 uhttp://eiop.or.at/eiop/index.php/eiop/index zAccès libre au texte intégral.1 r aDEW 327 aGEO RA1.01 Communautés européennes, Pays de la CEE00946nls 2200253 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000069001502100035002192300024002546060045002788010013003238560205003368560108005419920031006499920012006800001147384000114738420130319051417.0 a0001147384 a a19869999k fre 01 ba0 aeng aGB ar aaz z  adr 10aEuropean intellectual property reviewb[Ressource électronique] aLondoncSweet & Maxwellc1986- aRevue électronique aPropriété intellectuellexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.westlaw.com/search/default.wl?ForceTo=uk.westlaw.com&rp=%2fsearch%2fdefault.wl&mt=WestlawUK&rs=WLUK7.02&vr=2.0&sv=full&fn=top&db=EIPR&sp=intiep-000 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aGEO RA4.02 Grande-Bretagne aDEW 34001136nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154207003100192210002400223326002200247326002700269530004600296606003200342606004000374676000800414801002100422856010800443856010800551955007000659972000900729991001800738992001800756992001200774039321983000001908120140109145849.01 a0267-3231 aFNSP151892 a0000019081 a19900101a19869999 ba0 aeng aGB aahu 10aEuropean journal of communication 1aVol. 1, no. 1 (mar-1986) - aLondoncSaged1986- aBimestriel$d2013- aTrimestriel$d1986-2012 0aEuropean journal of communicationbLondon aCommunicationxPériodiques aCommunicationyEuropexPériodiques a070 3aFRbCCN0267-32314 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1986) -....cParisdMagasins/AnnexeeP 8° 5145 aZSAB aexempb201011 aGEO RA Europe aDEW 30201524nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004500154210002400199326002500223326002700248326002600275606003500301606004500336710010100381856004300482856007700525856012800602856010800730856010900838856010800947955006601055972000901121991001801130992001401148040089800000020889620130319051417.01 a0957-8811 aFNSP757059 a0000208896 a19900101a19899999 ba0 aeng aGB aaga 10aEuropean journal of development research aLondoncCassd1989- a5 n°s par anb2009- aTrimestrielb2004-2008 aSemestrielb1989-2003 aAide économiquexPériodiques aDéveloppement économiquexPériodiques02aAssociation européenne des instituts de recherche et de formation en matière de développement4 uhttp://www.frankcass.com/jnls/ejdr.htm zContenu : sommaires depuis le vol. 7, n°1 ; sommaire du n° à paraitre4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=6ZM&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713635016db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 8 no. 1 (1996) -....cParisdMagasins/AnnexeeP 8° 6311 aZSAB aexempb201210 aDEW 338.901762cas0 2200433 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200009300179210004000272326001600312430003600328452005400364606007100418606003600489710006000525801003000585801003000615801002300645802000700668856006500675856004500740856009000785856010800875856010300983856010801086955009101194972000901285992001801294992001601312039078604000079414120131127163232.01 a0141-8211 accn0141-8211 aissn01418211 a0000794141 a19790607a19799999 f0frey0103 ba0 aeng aGB ar aaha 10aEuropean journal of educationfEuropean Institute of Education and Social Policy (Paris) aOxfordcBlackwell Publishingd1979- aTrimestriel 1tPaedagogica Europaeax0078-7787 1tEuropean journal of education (Online)x1465-3435 aEnseignement supérieuryPays de l'Union européennexPériodiques aEducationyEuropexPériodiques02aInstitut européen d'éducation et de politique sociale 3aFRbAbesc20040906gAFNOR 3aFRbAbesc20040906gAFNOR 3aFRbISSNc20020530 a024 uhttp://www.blackwellpublishing.com/journal.asp?ref=0141-8211 zsommaires depuis le vol. 35, n° 1, 20004 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01418211.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=102214 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 39 no. 1 (mar-2004) -vol. 47 no. 4 (dec-2012)cParisdMagasins/AnnexeeP 8° 6817 aZPAY aGEO RA Europe aDEW 370-37901233nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008600154210004300240326001600283510004500299606003800344710003700382856002500419856003600444856010100480856010800581856003400689856006600723955006700789972000900856991001800865992001200883040055345000008330720140110125905.01 a0938-5428 aFNSP371404 a0000083307 a19900101a19909999 ba0 aeng aDE aaja 10aEuropean journal of international lawd= Journal européen de droit international aOxfordcOxford University Pressd1990- aTrimestriel10aJournal européen de droit international aDroit internationalxPériodiques02aInstitut universitaire européen4 uhttp://www.ejil.org/ zAccès libre au texte intégral4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=102619 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www3.oup.co.uk/ejilaw/ zContenu : sommaires et résumés depuis le vol. 9, n°1, 19981 bvol. 1 no 1/2 (1990) -....cParisdMagasins/AnnexeeP 8° 5909 aZCAD aexempb201202 aDEW 34101353nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009200154210002400246326001600270606004400286676000800330710006200338856007000400856010800470856016500578856010800743955006700851955007000918972000900988991001800997992001201015036741140000017269120130319051417.01 a1354-0661 aFNSP652215 a0000172691 a19900101a19959999 ba0 aeng aGB aaha 10aEuropean journal of international relationsfEuropean Consortium for Political Research aLondoncSaged1995- aTrimestriel aRelations internationalesxPériodiques a32702aConsortium européen de recherches en sciences politiques4 uhttps://acces-distant.sciences-po.fr/fork?http://ejt.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=availConsortium européen de recherches en sciences politiquesable zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 1 no. 1 (mar-1995) -....cParisdMagasins/AnnexeeP 8° 6191 aZSAB aexempb201212 aDEW 32700997nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009500154210003100249326001600280510005500296606003700351856006400388856006000452955007100512955008400583972000900667991001900676992001200695039129586000001078220130319051417.01 a0176-2680 aFNSP120555 a0000010782 a19900713a19859999 ba0 aeng aNL aaha 10aEuropean journal of political economyd=Europäische Zeitschrift für politische Ökonomie aAmsterdamcElsevierd1985- aTrimestriel10aEuropäische Zeitschrift für politische Ökonomie aEconomie politiquexPériodiques4 uhttp://www.elsevier.nl/inca/publications/store/5/0/5/5/4/4/ zContenu : sommaires depuis le vol. 11, n°2, janv. 19951 bvol. 24 no. 1 (mar-2008) -....cParisdMagasins/AnnexeeP 4° 72201 bvol. 5 no. 1 (1989) -vol 23 no 4 (dec-2007)cParisdMagasins/AnnexeeP 8° 5614 aZPAY aexemplb102011 aDEW 33001579nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004300139210003500182210003400217210003300251210002900284326001600313452006600329530004300395606003600438676000800474710006200482801002100544856010200565856020600667955006700873955006900940955007001009957007101079972000901150991001801159992001601177039380920000001908420131219162613.01 a0304-4130 aFNSP151897 a19900101a19739999 ba0 aeng aNL aahu 10aEuropean journal of political research aAmsterdamcElsevierd1973-1985 aDordrechtcNijhoffd1986-1987 aDordrechtcKluwerd1988-2001 aOxfordcBlackwelld2002- aTrimestriel 1tEuropean journal of political research (Online)‎x1475-676500aEuropean journal of political research aScience politiquexPériodiques a32002aConsortium européen de recherches en sciences politiques 3aFRbCCN0304-41304 uhttp://www.wkap.nl/jrnltoc.htm/0304-4130zContenu : sommaires depuis le vol. 27, n°1, janv. 19954 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=108658zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bL'année en courscParisdBibliothèque de rechercheeP 8° 33131 bvol. 1 no. 1 (avr-1973) -....cParisdMagasins/AnnexeeP 8° 33131 bvol. 1 (1973) -vol. 6 (1986)cParisdMagasins/AnnexeeP Index 0493 aZCAD aexempb200911 aDEW 320-32101105nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004100163210002400204326001600228517000900244606003600253801001300289856007000302856010800372856010800480856010800588955007000696972000900766992001600775070079617000052497520130319051417.01 a1474-8851 a0000524975 a a20029999k fre ba0 aeng aGB a 0  ar aah z 0 10aEuropean journal of political theory aLondoncSaged2002- aTrimestriel10aEJPT aScience politiquexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ept.sagepub.com/0 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jul-2002) -....cParisdMagasins/AnnexeeP 8° 6680 aZSAB aDEW 320-32101567nas 2200385 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000035001552100050001903260016002404300058002565170038003146060039003526070037003917100059004288010021004878560045005088560054005538560103006078560108007108560128008188560108009469550070010549720009011249910018011339920018011519920012011690000019085000001908520130319051417.01 a0168-6577 aFNSP151898 a0000019085 a19900101a19859999 ba0 amul aNL aahu 10aEuropean journal of population aAmsterdamcElsevier Science Publishersd1985- aTrimestriel 1aEuropean demographic information bulletin (0046-2756)10aRevue européenne de démographie aDémographieyEuropexPériodiques aEuropexPopulationxPériodiques02aAssociation européenne pour l'étude de la population 3aFRbCCN0168-65774 uhttp://www.wkap.nl/jrnltoc.htm/0168-6577 zContenu : sommaires depuis le vol. 11, n°1, 19954 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=102885 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=GG4&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1985) -....cParisdMagasins/AnnexeeP 8° 4863 aZPAY aexempb200912 aGEO RA Europe aDEW 30400840nas 2200265 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000042001552100029001973260016002266060038002428010021002808560102003018560060004039550082004639910018005459920011005630000066756000006675620130319051417.01 a0046-2772 aFNSP309816 a0000066756 a19900101a19719999 ba0 amul aGB aaha 10aEuropean journal of social psychology aChichestercWileyd1971- aTrimestriel aPsychologie socialexPériodiques 3aFRbCCN0046-27724 uhttps://acces-distant.sciences-po.fr/fork?http://www3.interscience.wiley.com/cgi-bin/jtoc?ID=1823 zContenu : sommaires depuis le vol. 26, n°1, janv. 19961 bvol. 3 no. 1 (1973) -vol. 16 no. 4 (1986)cParisdMagasins/AnnexeeP 8° 3366 aexempb200905 aDEW 1500852nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154210002400192326001600216606002900232856010800261856010800369955007000477972000900547991001800556992001200574036819808000025525020130319051417.01 a1368-4310 aFNSP890689 a0000255250 a19900101a19989999 ba0 aeng aGB aaha 10aEuropean journal of social theory aLondoncSaged1998- aTrimestriel aSociologiexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (fev-1998) -....cParisdMagasins/AnnexeeP 8° 6419 aZSAB aexempb201211 aDEW 30101536nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006000154210002900214326002400243326002700267326003300294606003900327606004700366856010300413856010800516856012800624856010800752856010900860856010800969955007001077972000901147991001801156992001201174040102335000011668220130319051417.01 a0967-2567 aFNSP485233 a0000116682 a19900101a19939999 ba0 aeng aGB aaga 14aThe European journal of the history of economic thought aLondoncRoutledged1993- a5 nos par anb2010- aTrimestrielb1999-2009 a2 ou 3 nos par anb1993-1998 aHistoire économiquexPériodiques aEconomie politiquexHistoirexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=104706 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=5B6&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713698194db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (aut-1993) -....cParisdMagasins/AnnexeeP 8° 6009 aZPAY aexempb201210 aDEW 33001137nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004000154210002400194326001600218606002500234606003300259856009500292856008900387856010800476856010800584955007000692972000900762991001800771992001800789992001600807036737828000014578420130319051417.01 a1350-5068 aFNSP575183 a0000145784 a19950110a19949999 ba0 aeng aGB aaha 10aEuropean journal of women's studies aLondoncSaged1994- aTrimestriel aFemmesxPériodiques aFemmesyEuropexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sagepub.co.uk/journal.aspx?pid=105543 zContenu : sommaires depuis le vol. 4, n°1, fév. 1997 ; résumés à partir de 19984 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (pri-1994) -....cParisdMagasins/AnnexeeP 8° 6091 aZSAB aexempb201212 aGEO RA Europe aDEW 305-30601122nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002500139210002900164326001500193606003400208710003700242856007100279856006600350856012800416856010800544955007000652972000900722991001800731992005700749992001400806036739162000023898320140110121434.01 a1351-5993 aFNSP843766 a19900101a19959999 ba0 aeng aGB aaga 10aEuropean law journal aOxfordcBlackwelld1995- aBimestriel aDroit européenxPériodiques02aInstitut universitaire européen4 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=1351-5993 zContenu : sommaires et résumés depuis le vol. 3, n°1, 19974 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=7PX&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 1 (mar-1997) -....cParisdMagasins/AnnexeeP 8° 6379 aZSAB aexempb201305 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 341.201098nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210003700178326001500215606003400230801002100264856016900285856010800454955006600562957007200628972000900700991001800709992005700727992001200784039399249000001933320140110135148.01 a0307-5400 aFNSP152508 a0000019333 a19900101a19759999 ba0 aeng aGB aagu 10aEuropean law review aLondoncSweet and Maxwelld1975- aBimestriel aDroit européenxPériodiques 3aFRbCCN0307-54004 uhttps://acces-distant.sciences-po.fr/fork?http://www.westlaw.com/signon/default.wl?RS=UKIS1.0&VR=1.0&sp=intiep-000&MDP-WSSO-SESSION=b60b87ae2e5a144004d3306d2c2d98b5 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1975) -....cParisdMagasins/AnnexeeP 8° 38841 bvol. 1 (1975) -vol. 25 (2000)cParisdMagasins/AnnexeeP index 0846 aZPAY aexempb201001 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 34101452nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200010100163210003100264210003200295210004300327326002200370530004200392606004000434710006600474801001300540856010300553856010800656856010900764856010800873955007000981972000901051991001801060992001201078040349381000041517020130319051417.01 a1084-8770 a0000415170 a a19969999k fre ba0 aeng aGB a 0  ar aag z 0 14aThe European legacyetoward new paradigmsfInternational Society for the Study of European Ideas aAbingdoncRoutledged2005- aAbingdoncCarfaxd2000-2004 aCambridge, Mass.cMIT Pressd1996-1999 a6 à 8 nos par an 0aEuropean legacy, toward new paradigms aPhilosophie politiquexPériodiques02aSociété internationale pour l'étude de l'idée européenne 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=104583 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713416679db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 2 no. 1 (mar-1997) -....cParisdMagasins/AnnexeeP 8° 6591 aZSAB aexempb201301 aDEW 94001510nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210002800184326001900212326004700231606005200278606007400330607005000404856005700454856005900511856012800570856010800698856010900806856010800915955006601023972000901089991001801098992001801116992001401134040100235000013696820130319051418.01 a0965-4313 aFNSP547792 a0000136968 a19940929a19939999 ba0 aeng aGB aafa 10aEuropean planning studies aAbingdoncCarfaxd1993- aMensuelb2009- aTrimestriel puis 10 n°s par anb1993-2008 aPlanification économiqueyEuropexPériodiques aAménagement du territoireyPays de l'Union européennexPériodiques aEuropexConditions économiquesxPériodiques4 uhttp://www.tandf.co.uk/journals/carfax/09654313.html zContenu : sommaires depuis le vol. 4, n°1, fév. 19964 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=EUP&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713417253db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 2 no. 1 (1994) -....cParisdMagasins/AnnexeeP 8° 6062 aZSAB aexempb201212 aGEO RA Europe aDEW 338.901174nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003100163207003000194210006600224326002300290326002900313517000800342606003600350710006200386801001300448856010300461856010800564955007000672955006900742972000900811992001600820059239492000058915620140114170901.01 a1680-4333 a0000589156 a a20019999k fre ba0 aeng aGB a 0  ar aai z 0 10aEuropean political science 1aVol.1, n°1(Autumn 2001)- aColchestercEuropean Consortium for Political Researchd2001- aTrimestrielb2005- a3 n°s par anb2001-200410aEPS aScience politiquexPériodiques02aConsortium européen de recherches en sciences politiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=113209 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (aut-2001) -....cParisdMagasins/AnnexeeP 8° 67321 bL'année en courscParisdBibliothèque de rechercheeP 8° 6732 aZSAB aDEW 320-32101022nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007200154210004300226210004900269326001600318530004100334606003600375606003600411710002200447856006400469856006600533955007000599972000900669991001800678992001200696040293149000026642620130319051418.01 a1062-7987 aFNSP923868 a0000266426 a19990212a19939999 ba0 aeng aGB aaha 10aEuropean revieweinterdisciplinary journal of the Academia Europaea aChichestercJ. Wiley & Sonsd1993-1997 aCambridgecCambridge University Pressd1998- aTrimestriel 0aEuropean reviewbChichester, England aSciences socialesxPériodiques aScience politiquexPériodiques02aAcademia europaea4 uhttp://journals.cambridge.org/action/displayJournal?jid=erw zContenu : sommaires et résumés depuis le vol. 1, no.1, 19931 bvol. 6 no. 1 (fev-1998) -....cParisdMagasins/AnnexeeP 8° 6460 aZSAB aexempb201212 aDEW 30001191nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004600139210004300185326001600228530004600244606003000290801002100320856010700341856013800448856020600586955006600792972000900858991001800867992001600885039109712000001933720130903142815.01 a0165-1587 aFNSP152514 a19900101a19739999 ba0 aeng aGB aahu 10aEuropean review of agricultural economics aOxfordcOxford University Pressd1973- aTrimestriel00aEuropean review of agricultural economics aAgriculturexPériodiques 3aFRbCCN0165-15874 uhttp://www3.oup.co.uk/eurrag/contents/zContenu : sommaires et résumés depuis le vol. 26, n°1, 19994 uhttps://acces-distant.sciences-po.fr/fork?http://www.degruyter.de/zContenu : sommaires du vol. 24, n°1, 1997 au vol. 25, n°4, 19984 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=102815zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1973) -....cParisdMagasins/AnnexeeP 8° 3361 aZPAY aexempb200905 aDEW 338.1-301116nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004000154210004900194326001800243606003900261710004200300856004200342856005200384856010100436856010800537955007000645972000900715991001600724991001800740992001800758992001400776048879150000026891920130319051418.01 a1361-4916 aFNSP930466 a0000268919 a19990325a19979999 ba0 aeng aGB aaia 10aEuropean review of economic history aCambridgecCambridge University Pressd1997- a3 n°s par an aHistoire économiquexPériodiques02aEuropean Historical Economics Society4 uhttp://uk.cambridge.org/journals/ere/ zContenu : sommaires depuis le vol.1, n°1, 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=105870 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (avr-1997) -....cParisdMagasins/AnnexeeP 8° 6466 aZPAY aexempb2011 aexempb201212 aGEO RA Europe aDEW 330.901243nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210002400176326001600200606003500216607004900251676000800300856010900308856010800417856010300525856010800628955006700736955006600803991001800869992001800887992001200905040101088000008517320130319051418.01 a0966-2839 aFNSP378183 a0000085173 a19900101a19929999 ba0 aeng aGB aaha 00aEuropean security aLondoncCassd1992- aTrimestriel aDéfenseyEuropexPériodiques aEuropexRelations extérieuresxPériodiques a3554 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713635117db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=110517 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3551 bvol. 1 no. 1 (1992) -....cParisdMagasins/AnnexeeP 8° 5915 aexempb201202 aGEO RA Europe aDEW 32701415nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005800139210002900197326002400226326002700250452004400277606003700321710003800358856010300396856010800499856005700607856006200664856010900726856010800835955006500943972000901008991001801017992001801035992001201053048811823000027689420130830110955.01 a1461-6696 aFNSP950730 a19990705a19999999 ba0 aeng aGB aaga 10aEuropean societiesfEuropean Sociological Association aLondoncRoutledged1999- a5 nos par anb2007- aTrimestrielb1999-2006 1tEuropean societies (Online),x1469-8307 aSociologieyEuropexPériodiques02aEuropean Sociological Association uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=104707 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.tandf.co.uk/journals/titles/14616696.html zContenu : sommaires, résumés, vol. 2, no. 1, janv. 20004 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713685208db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no.1 (1999) -....cParisdMagasins/AnnexeeP 8° 6501 aZSAB aexempb201212 aGEO RA Europe aDEW 30101220nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003300139210004300172326002200215326002800237326002700265326002800292452005400320606003700374801002100411856004200432856007100474856009000545856010800635955007000743972000900813991001800822992001800840992001200858039320960000001934220131025121155.01 a0266-7215 aFNSP152523 a19900101a19859999 ba0 aeng aGB aagu 10aEuropean sociological review aOxfordcOxford University Pressd1985- aBimestrielb2009- a5 nos par anb2003-2008 aTrimestrielb1998-2002 a3 nos par anb1985-1997 1tEuropean sociological review (Online),x1468-2672 aSociologieyEuropexPériodiques 3aFRbCCN0266-72154 uhttp://www.oup.co.uk/eursoj/contents/ zContenu : sommaires et résumés depuis le vol. 12, n°1, mai 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/02667215.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 2 no. 1 (mai-1986) -....cParisdMagasins/AnnexeeP 8° 5004 aZSAB aexempb201106 aGEO RA Europe aDEW 30101439nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002800163207003100191210002400222326002300246326002900269517000800298601003600306607007300342676001000415801001300425856007000438856010800508856010800616856010800724955007100832955007000903972000900973992001400982992005700996056260350000038516220130319051418.01 a1465-1165 a0000385162 a a20009999k fre ba0 aeng aGB a 0  ar aah z 0 10aEuropean Union Politics 1aVol. 1, no. 1 (Feb. 2000)- aLondoncSaged2000- aTrimestrielb2002- a3 n°s par anb2000-200110aEUP02aUnion européennexPériodiques aPays de l'Union européennexPolitique et gouvernementxPériodiques a341.8 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://eup.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étage:eDEW 320.441 bvol. 1 no. 1 (fev-2000) -....cParisdMagasins/AnnexeeP 8° 6561 aZSAB aDEW 341.2 aGEO RA1.01 Communautés européennes, Pays de la CEE01044nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154210002400192210003100216326001600247517004000263606003600303606005300339856010800392856010800500955006600608972000900674991001800683992001800701992001100719040105202000019870720130319051419.01 a0969-7764 aFNSP726475 a0000198707 a19900101a19949999 ba0 aeng aGB aaha 10aEuropean urban & regional studies aLondoncSaged1997- aHarlowcLongmand1994-1996 aTrimestriel10aEuropean urban and regional studies aUrbanismeyEuropexPériodiques aAménagement du territoireyEuropexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 1 (1996) -....cParisdMagasins/AnnexeeP 8° 6272 aZSAB aexempb201210 aGEO RA Europe aDEW 7101099nas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200004900156210007500205326001500280607004600295607006900341710003400410801003000444801002300474802000700497856006300504856005900567955006600626972000900692992005800701992001400759112874363000106898120130319051419.01 a1781-6858 aissn17816858 a0001068981 a20070227a20059999 0frey0103 ba0 aeng aBE aaj 10aEuropean ViewfForum of the European Studies aBrusselscForum of the European studiescEuropean Peoples' Party$2005- aSemestriel aPays de l'Union européennexPériodiques aPays de l'Union européennexEtude et enseignementxPériodiques02aForum of the European Studies 3aFRbAbesc20070227gAFNOR 3aFRbISSNc20070201 a0m4 uhttp://www.epp.eu/subpagina.php?hoofdmenuID=7&submenuID=61 zContenu : texte intégral depuis le vol.1, Spring 20051 bvol. 1 (pri-2005) -....cParisdMagasins/Annexes : P 8° 6946 aZGRA aGEO RA1. 01 Communautés européennes, Pays de la CEE aDEW 341.201014cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200004100156210002800197326001100225606005500236606003700291710002000328711004000348801003000388801002300418802000700441856005200448856005400500955007900554972000900633992001800642992001600660073551333000094490120130319051419.01 a1570-7865 aissn15707865 a0000944901 a20030523a20039999u y1frey0103 ba0 aeng aNL aaku uu 10aEuropean yearbook of minority issues aLeiden:cNijhoffd2003- aAnnuel aMinoritésxStatut juridiqueyEuropexPériodiques aEthnicitéyEuropexPériodiques02aEUR.AC Research02aEuropean Centre for Minority Issues 3aFRbAbesc20060109gAFNOR 3aFRbISSNc20030523 a0j4 uhttp://www.ecmi.de/rubrik/55/european+yearbook/ zContenu : sommaires depuis le volume 1, 2001/20021 bvol. 2 (2002/2003) -vol. 5 (2005/2006)cParisdMagasins/annexeeP 8° 6877 aZSAB aGEO RA Europe aDEW 305-30601073nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000053001552070017002082100089002253260011003145170055003255170058003806070039004387100013004778560112004908560036006029550054006389720009006929920018007019920016007199920012007350000169298000016929820130319051419.01 a1560-490X aFNSP641606 a0000169298 a19900101a19959999 f ba0 afre aLU aa a 10aEUROSTAT. Annuaireevue statistique sur l'Europe 1a(1983/1993)- aLuxembourgcOffice des publications officielles des Communautés européennesd1995- aAnnuel10aAnnuaire Eurostatele guide statistique del'Europe10aAnnuaire... - EUROSTAT : l'Europe en chiffres (2005-) aEuropexStatistiquesxPériodiques aEUROSTAT4 uhttp://epp.eurostat.ec.europa.eu/portal/page?_pageid=2693,70381876,2693_70592044&_dad=portal&_schema=PORTAL4 zAccès libre au texte intégral1 b(1995)-(2005)cParisdMagasins/AnnexeeP 4° 6538 aZPAY aGEO RA Europe aDEW 310-319 aDEW 94001131nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000035001552100089001903260011002795100035002905170026003255170025003516060087003767100013004638560139004768560037006159550059006529720009007119920057007209920016007779920012007930000075739000007573920130319051419.01 a1015-7743 aFNSP344483 a0000075739 a19900101a00019999 f ba0 amul aLU aaka 10aEUROSTAT. Bilans de l'énergie aLuxembourgcOffice des publications officielles des Communautés européennesd0001- aAnnuel10aEUROSTAT. Bilans de l'énergie10aEnergy balance sheets10aBilans de l'énergie aRessources énergétiquesyPays de l'Union européennexStatistiquesxPériodiques02aEUROSTAT4 uhttp://epp.eurostat.cec.eu.int/portal/page?_pageid=1073,1135281,1073_1135295&_dad=portal&_schema=PORTAL&p_product_code=KS-DM-04-001-3A4 zAccès libre au texte intégral.1 b(1985/1986) -(2001)cParisdMagasins/AnnexeeP 4° 6146 aZPAY aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 310-319 aDEW 33301232cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200006600180207003100246210003300277326002300310326002900333452004200362517006700404530003100471606003600502606003800538801003000576801002300606802000700629856004900636856006600685955007000751972000900821992001600830094895945000096695320130319051420.01 a1744-2648 aissn17442648 a0000966953 a20040524a20059999k y1frey0103 ba0 aeng aGB a 0  ar aaha 0uu 10aEvidence & policyea journal of research, debate and practice 0aVol. 1, no. 1 (Jan. 2005)- aBristolcPolicy Pressd2005- aTrimestrielb2006- a3 n°s par anb2005-2005 1tEvidence & policy (Online)x1744-265610aEvidence and policyeajournal of research, debate and practice10aEvidence & policyb(Print) aScience politiquexPériodiques aDécision politiquexPériodiques 3aFRbAbesc20060110gAFNOR 3aFRbISSNc20051021 a024 uhttp://www.ingentaconnect.com/content/tpp/ep zContient : sommaires et résumés depuis le vol.1, n°1, 20051 bvol. 1 no. 1 (jan-2005) -....cParisdMagasins/AnnexeeP 8° 6884 aZSAB aDEW 320-32101227nas 2200325 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200011600148210007400264326001100338440007900349488007500428530005200503607005400555710005100609801001300660856009000673955006100763972000900824991001800833992003400851992001600885078585961000029092420131217101451.01 a1811-2757 a b19??2005k fre ba0 afre aFR a 0  ar aak i 0 10aEvolution économique de la navigation rhénane :iStatistiquesfCommission centrale pour la navigation du Rhin aStrasbourgcCommission centrale pour la navigation du Rhind1998-2005 aAnnuel 1tObservation du marché de la navigation intérieure européennex1997-891X 11atRapport annuel de la Commission centrale pour la navigation du Rhin10aEvolution économique de la navigation rhénane aRhin (cours d'eau)xRégularisationxPériodiques02aCommission centrale pour la navigation du Rhin 0aFRbFNSP4 uhttp://www.ccr-zkr.org/13020200-fr.htmlzAccés libre au texte intégrale depuis 19981 b(1998) -(2002)cParisdMagasins/AnnexeeP 4° 5700-SuppL aZGRA aexempb201312 aGEO RA2.01 Europe occidentale aDEW 383-38901758cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157110001600175200005000191210008500241300018300326326001100509430006900520441009700589532011200686606006200798606004200860710006700902801003000969801002300999802000701022856011201029856010801141955005601249992001601305992005101321048859125000118727620130319051421.0 a1563-0471 accn1563-0471 aissn15630471 a0001187276 a20000228b19952000uuuy0frey0103 ba0 afre aZZ ay  aaku uu 10aExamen des pêcheries dans les pays de l'OCDE aPariscOrganisation de coopération et de développement économiquesd1995-2000 aEn 2000, paraît en deux volumes : Vol.1, Examen des pêcheries de l'OCDE. Politiques et statistiques de bases ; Vol. 2, Examen des pêcheries de l'OCDE. Statistiques nationales. aAnnuel 1tExamen des pêcheries dans les pays membres de l'OCDEx1018-4139 |tExamen des pêcheries dans les pays de l'OCDE. Politiques et statistiques de basex1992-83511|aExamen des pêcheries dans les les pays de l'Organisation de coopération et de développement économiques0 aPêchesxPolitique publiqueyPays de l'OCDExPériodiques aPêchesyPays de l'OCDExPériodiques02aOrganisation de coopération et de développement économiques 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20070111 a004 uhttps://acces-distant.sciences-po.fr/fork?http://titania.sourceocde.org/vl=2853357/cl=33/nw=1/rpsv/home.htm4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1997) ; (2000)cParisdMagasins/AnnexeeP 4° 5232 aDEW 338.1-3 aGEO RN1 Pays industrialisés, pays occidentaux01364cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200008500180207001000265210008100275326001100356437006100367606004200428606006200470710006700532801003000599801002300629802000700652856011200659856010800771955005600879992001600935992005100951099486458000118727720130319051421.0 a1992-8351 aissn19928351 a0001187277 a20060421a20019999uuuy0frey0103 ba0 afre aZZ ay  ar aaku uu 10aExamen des pêcheries dans les pays de l'OCDEiPolitique et statistiques de base 0a2001- aPariscOrganisation de coopération et de développement économiquesd2001- aAnnuel 1tExamen des pêcheries dans les pays de l'OCDEx1563-04710 aPêchesyPays de l'OCDExPériodiques0 aPêchesxPolitique publiqueyPays de l'OCDExPériodiques02aOrganisation de coopération et de développement économiques 3aFRbAbesc20090308gAFNOR 3aFRbISSNc20090225 a004 uhttps://acces-distant.sciences-po.fr/fork?http://titania.sourceocde.org/vl=2853357/cl=33/nw=1/rpsv/home.htm4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(2001) ; (2003)cParisdMagasins/AnnexeeP 4° 5232 aDEW 338.1-3 aGEO RN1 Pays industrialisés, pays occidentaux00968nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000032001552100035001873260011002224300080002335300032003136010035003456100046003807120021004268560055004479550052005029550054005549720009006089920022006179920015006390000063803000006380320130319051422.01 a1150-7217 aFNSP293024 a0000063803 a19900101a19799999 ba0 afre aFR aaka 10aExercice - Banque Sudameris aPariscBanque Sudamerisd1979- aAnnuel 1aExercice - Banque française et italienne pour l'Amérique du Sud Sudameris00aExercice - Banque Sudameris02aBanque SudamerisxPériodiques 0a* BanquesxRapportsyFrancexPériodiques02aBanque Sudameris uhttp://www.sudameris.fr/shared/AnnRpt/ARpt99Fr.pdf1 b(1980) -...cParisdMagasins/AnnexeeP 4° 55441 b(1978)-(1979)cParisdMagasins/AnnexeeCOL4°0316 aZGRA aGEO RA4.06 France aDEW 332.0600762nas 2200265 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000033001412100038001743260011002126010050002236060047002737120022003208560036003429550069003789720009004479920025004569920015004810000124918000012491820130319051422.0 aFNSP511895 a0000124918 a19940426a00019999 ba0 afre aFR aaka 10aExercice - Ciments français aPuteauxcCiments françaisd0001- aAnnuel02aSociété des ciments françaisxPériodiques aSociétésxRapportsyFrancexPériodiques02aCiments français uhttp://www.cimfra.fr/princd.htm1 b(1957)-(1988) ; (1993) -....cParisdMagasins/AnnexeeCOL4°1712 aZGRA aGEO RA4.06 France 01 aDEW 338.0600977nas 2200301 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181060006001251100016001312000035001472100041001823260011002235170041002346010048002756100064003237120035003878300098004228560060005209550049005809720009006299920022006389920015006600000082931000008293120130319051422.0 aFNSP370248 a0000082931 a19900101a00019999 ba0 afre aFR ar aaka 10aExercice - Crédit coopératif aNanterrecCrédit coopératifd0001- aAnnuel10aRapport annuel - Crédit coopératif02aCrédit coopératifc(France)xPériodiques0 a* Etablissements de créditxRapportsyFrancexPériodiques02aCrédit coopératif (Nanterre) aD'après fichier des cotes COL (sous N, dossier Rétro), cette cote est au CTL (sdy mai 2009) uhttp://www.credit-cooperatif.com/rapport_annuel_cc.html1 b1969--->cParisdMagasins/AnnexeeCOL4°3297 aZGRA aGEO RA4.06 France aDEW 332.0600800nas 2200277 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000180015421000450017232600110021760600230022880100210025185600320027285601150030495500600041997200090047999100180048899200160050603912858X000001954320130319051422.01 a0175-3347 aFNSP153012 a0000019543 a19900101a19839999 ba0 ager aDE aaka 10aExilforschung aMünchencEdition Text und Kritikd1983- aAnnuel aExilxPériodiques 3aFRbCCN0175-33474 uhttp://www.etk-muenchen.de/ zContenu : sommaire du dernier n° ; grands thèmes des n° précédents ; index auteurs ; depuis le n°1, 19831 bvol. 1 (1983) -....cParisdMagasins/AnnexeeP 8° 4881 aZPAY aexempb201002 aDEW 305-30601362nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006600139210003500205326001200240434004000252530002600292606005200318606003800370607005000408801002100458830005300479856029700532955006900829955006300898972000900961991001800970992002200988992001401010001012606000000447020130930160424.01 a0014-4703 aFNSP105867 a19900101a19679999 ba0 afre aFR aaeu 12aL'Expansion‎emensuel de la vie économique et des affaires aPariscGroupe Expansiond1967- aMensuel 1tScience & vie. Economie,x0765-002712aL'Expansion‎bParis aHistoire économiquez20e sièclexPériodiques aEntreprisesyFrancexPériodiques aFrancexConditions économiquesxPériodiques 3aFRbCCN0014-4703 a1967-2010 : collection envoyée au CTles en 20134 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAAzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 23951 bno. 1 (oct-1967) -....cParisdMagasins/AnnexeeP 4° 2395 aZPAY aexempb201306 aGEO RA4.06 France aDEW 330.900990nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210003600191326001600227430005500243517000800298606003900306801002100345856009600366856014200462955007300604972000900677992001400686038706458000001935320130319051423.01 a0014-4983 aFNSP152547 a0000019353 a19900101a19699999 ba0 aeng aUS aahu 10aExplorations in economic history aNew YorkcAcademic Pressd1969- aTrimestriel 1aExplorations in entrepreneurial historyx0884-542510aEEH aHistoire économiquexPériodiques 3aFRbCCN0014-49834 uhttp://www.elsevier.com/wps/find/journaldescription.cws_home/622830/description#description zContenu : sommaires depuis le vol. 33, n°1, janv. 1996 ; enregistrement mot de passe en tant que "guest" pour avoir accès aux résumés1 bvol. 7 no. 1/2 (1969/1970) -....cParisdMagasins/AnnexeeP 8° 2145 aZPAY aDEW 330.900929nas 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000037001502070010001872100023001973260011002204300053002316070053002847100088003378010013004258560030004388560046004689550047005149720009005619920029005709920016005990000585910000058591020130319051423.0 a0000585910 a a20039999k fre ba0 aeng aKR a 0  ar aak z 0 10aExplore Korea through statistics 1a2003- aSéoulbNSOd2003- aAnnuel 1tStatistical handbook of Koreab(1997)x0081-4806 aCorée (République)xStatistiquesxPériodiques01aCorée (République)bNational Statistical OfficebStatistical Publication Division 0aFRbFNSP4 uhttp://www.nso.go.kr/eng/ zContenu : sommaire du précédent rapport1 b(2003)cParisdMagasins/AnnexeeP 8° 6614 aZGRA aGEO RI3.13 Corée du Sud aDEW 310-31901242cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001800069035001700087035001500104100004100119101000800160102000700168105001800175110001600193200003700209210003900246300004500285326001600330422003100346601004400377606004200421710003400463801003000497801001800527801002100545801002300566802000700589856007700596856006700673955006500740992002500805992001400830001030493000118973220130319051424.01 a0764-1656 accn0764-1656 afrBN004458963 aissn07641656 a0001189732 a19841002a19839999k y0frey0103 ba0 afre aFR ay  aauu uu 10aExposés du Cercle Léon Trotsky aPariscCercle Léon Trotskyd1983- aNotice réd. d'après le vol. 11 de 1984 aIrrégulier 1tLutte ouvrièrex0024-765001aLutte ouvrièrec(France)xPériodiques aExtrême gaucheyFrancexPériodiques02aCercle Léon Trotskyc(Paris) 3aFRbAbesc20090308gAFNOR 3aFRbBNgAFNOR 0aFRbCNEPSgAFNOR 3aFRbISSNc20090225 a074 uhttp://www.lutte-ouvriere.org/documents/archives/cercle-leon-trotsky-62/ zContenu : accès au texte intégral depuis le no. 1 (oct-1983)1 bno. 107 (oct-2007) -....cParisdMagasins/AnnexeeP 8° 7139 aGEO RA4.06 France 01 aDEW 320.501438nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116106000600123110001600129200001400145210002800159305004600187326001700233421022400250530002100474606002900495607002500524801002100549856029700570955006900867955006500936955007701001992002201078992001201100039223612000000447420131219152509.01 a0014-5270 aFNSP105873 a19900101a19539999 ba0 afre aFR ar aa u 12aL'Express aPariscL'Expressd1953- aQuotidien entre octobre 1955 et mars 1956 aHebdomadaire 1aL'Express Paris (Supplément)x0753-1249, L'Express 2. Sportx0960-8892, L'Express 2. Aujourd'huix0980-8922, L'Express 2. Votre argentx0980-8906 et L'Express 2. Stylex0980-8914 sont conservés sous la cote P 4° 207702aL'ExpressbParis aActualitéxPériodiques aFrancexPériodiques 3aFRbCCN0014-52704 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAAzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 20771 bno. 692 (sep-1964) -....cParisdMagasins/AnnexeeP 4° 20771 bno. 1 (mai-1953) -no. 691 (sep-1964)cParisdMagasins/AnnexeeP F° 0112 aGEO RA4.06 France aDEW 05000996nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000290015421000250018332600110020851700310021951700100025051700380026060600340029860600450033260600340037760600450041185600670045685600360052395500580055997200090061799100180062699200140064404005456X000001463420130319051424.01 a0938-0256 aFNSP140325 a0000014634 a19901012a19899999 ba0 ager aDE aaka 00aExtremismus & Demokratie aBonncBouvierd1989- aannuel10aExtremismus und Demokratie10aE & D10aJahrbuch Extremismus & Demokratie aExtrême droitexPériodiques aExtrême gaucheyAllemagnexPériodiques aExtrême gauchexPériodiques aExtrême droiteyAllemagnexPériodiques4 uhttp://www.tu-chemnitz.de/phil/politik/pspi/jahrbuch/index.php zContenu : sommaires depuis 19891 bno.1 (1989) -....cParisdMagasins/AnnexeeP 8° 5671 aZPAY aexempb201110 aDEW 320.501049nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000042001502100035001922300024002273260017002516060048002686060035003166060044003518010013003958560192004088560108006009550005007089920022007139920012007350001160211000116021120130319051424.0 a0001160211 a a20099999k fre 01 ba0 afre aFR ar aac z  adr 13aMoney Weekb[Ressource électronique] aPariscGroupe Expansiond2009- aRevue électronique aHebdomadaire aEntreprisesyFrancexFinancesxPériodiques aFinancesyFrancexPériodiques aMarché financieryFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France aDEW 33200910nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004900154210002200203326001100225430004800236606006000284606005200344710003000396856004000426856003600466955005200502992002200554992001600576992001600592057931534000015379620130319051426.01 a1625-5798 aFNSP599712 a0000153796 a19900101a19949999 ba0 afre aFR aaka 10aFaits et chiffresfUnion routière de France aPariscURFd1994- aannuel 1aLa Circulation routière (Paris)x1169-1581 aTransports routiersyFrancexStatistiquesxPériodiques aCirculationyFrancexStatistiquesxPériodiques02aUnion routière de France4 uhttp://www.urf.asso.fr/?label=faits4 zAccès libre au texte intégral1 b(1994) -....cParisdMgasins/AnnexeeP 4° 6966 aGEO RA4.06 France aDEW 383-389 aDEW 310-31901056nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000060001502100053002103000116002633260014003793360058003933370063004514520046005146060029005606060045005898010013006348560090006479550005007379920012007420000486590000048659020130319051426.0 a0000486590 a a19699999k fre 01 ba0 aeng aUS az aae z  adr 10aFamily planning perspectivesb[Ressource électronique] aNew-York, N.Y.cAlan Guttmacher Instituted1969- aAccès au texte intégral (réservé aux sites de Sciences Po) jusqu'à l' année précédant l'année en cours aBimensuel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tFamily planning perspectivesx(0014-7354) aPopulationxPériodiques aRégulation des naissancesxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00147354.html1 r aDEW 30401180nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000048001502100068001983000158002663260016004243360058004403370066004984520034005647120055005988010013006538560090006668560101007569550005008579920016008620000534049000053404920130319051426.0 a0000534049 a a19809999k fre 01 ba0 aeng aUS az aah z  adr 10aFamily relationsb[Ressource électronique] aMinneapolis, Minn.cNational Council on Family Relationsd1980- aAccès au texte intégral (réservé aux sites de Sciences-Po). Il existe des lacunes d'un ou deux ans entre la couverture de JSTOR et celle d'Ebsco Host aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou télédéchargement 1tFamily relationsx(0197-6664)02aNational Council on Family Relationsc(Etats-Unis) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01976664.html4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=1104141 r aDEW 305-30601046nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000320015421000510018632600230023732600280026051700230028860700580031160700360036980100210040585600250042685600910045195500930054299200420063599200410067799200140071803870708X000001936320130319051426.01 a0014-7591 aFNSP152577 a0000019363 a19900101b19462009 ba0 aeng aHK aafu 10aFar Eastern economic review aHongkongcReview Publishing Companyd1946-2009 aMensuelb2004-2009 aHebdomadaireb1946-200410aReview (Hong Kong) aAsie orientalexConditions économiquesxPériodiques aHong Kong (Chine)xPériodiques 3aFRbCCN0014-75914 uhttp://www.feer.com/ zContenu : texte intégral (sélection) ; recherche par dates et mots-clés depuis 19941 bvol. 28 no. 4 (jan-1960) - vol. 172 no 12 (dec-2009)cParisdMagasins/AnnexeeP 4° 3182 aGEO RI3 Asie orientale, Asie centrale aGEO RI3.21 Hong Kong (jusqu'à 1997) aDEW 330.901178nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000057001502100057002073000116002643260016003803360058003963370063004544400055005174520043005726070033006157120042006488010013006908560090007039550005007939920042007989920012008400000464137000046413720130319051426.0 a0000464137 a b19411956k fre 01 ba0 aeng aUS az aah z  adr 14aThe Far Eastern quarterlyb[Ressource électronique] aAnn Arbor, Mich.cFar Eastern Associationd1941-1956 aAccès au texte intégral (réservé aux sites de Sciences Po) à partir du vol.1, 1941 jusqu'au vol.15 de 1956 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tJournal of Asian studies [Ressource électronique] 1tThe Far Eastern quarterlyx(0363-6917) aAsie orientalexPériodiques02aFar Eastern Associationc(Etats-Unis) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03636917.html1 r aGEO RI3 Asie orientale, Asie centrale aDEW 95001173nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210004000183300008100223326002700304326002300331606003900354606005200393710004100445801002100486856006000507856003600567955020000603972000900803992002300812992001200835038707411000001937220130319051427.01 a0014-9209 aFNSP152599 a0000019372 a19900101b19152005 ba0 aeng aUS aafu 10aFederal Reserve bulletin aWashington [D.C.]cG.P.Od1915-2005 aPublication papier interrompue. Disponible gratuitement en ligne sur le site aTrimestrielb2004-2005 aMensuelb1915-2003 aFinancesyEtats-UnisxPériodiques aBanques de la Réserve fédéralexPériodiques02aFederal Reserve Systemc(Etats-Unis) 3aFRbCCN0014-92094 uhttp://www.federalreserve.gov/pubs/bulletin/default.htm zAccès libre au texte intégral1 b(1919) -vol. 89 no. 12 (dec-2003)cParisdMagasins/AnnexeeP 4° 0055wLacunes : jan. à jul. 1923 ; jul.1940 ; sep. 1940 à jul. 1942 ; oct. 1942 à aou 1944 ; nov. 1944 à fev. 1945 ; jan. 1946 aZPAY aGEO RC2 Etats-Unis aDEW 33201037nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002000163210004300183326001800226606002900244606002500273801001300298856008300311856003700394856009000431856010800521955006900629972000900698992001600707039078477000059499420130319051428.01 a0141-7789 a0000594994 a a19799999 fre 01 ba0 aeng aGB a 0  ar aai z 0 10aFeminist review aBasingstokecPalgrave Macmilland1979- a3 n°s par an aFéminismexPériodiques aFemmesxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.palgrave-journals.com/fr/ zContenu : sommaires et résumés4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01417789.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 73 (2003) -no. 87 (2007)cParisdMagasins/AnnexeeP 8° 6734 aZSAB aDEW 305-30601199cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200002000174207003100194210002400225326001800249606003800267801003000305801002300335801001300358802000700371856009500378856006500473856010800538856010800646955007000754972000900824992001600833058256520000057555520130319051428.01 a1464-7001 aissn14647001 a0000575555 a20001001a20009999 0fre 0103 ba0 aeng aGB ay  aai 10aFeminist theory 0aVol. 1, no. 1 (Apr. 2000)- aLondoncSaged2000- a3 n°s par an aThéorie féministexPériodiques 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20001001 0aFRbFNSP a024 uhttps://acces-distant.sciences-po.fr/fork?http://www.sagepub.co.uk/journal.aspx?pid=105555 zcontenu : sommaires et résumés depuis le vol.1, n°1, 20004 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 3 (dec-2002) -....cParisdMagasins/AnnexeeP 8° 6718 aZSAB aDEW 305-30602254cas0 2200457 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200003000162210003200192421006000224421007800284421008900362421010200451421010100553421007600654421007500730421007400805421004400879421011500923421018701038440003401225454003101259454004301290512005201333517005801385530003001443531002501473801003001498802000701528856016301535955007801698991002001776038316102000109458020130319051429.0 a1421-3753 accn1421-3753 a0001094580 a19951031b18491919 0frey0103 ba0 afre aCH ar aac 10aFeuille fédérale suisse aBernecStämpflid1849-1919 |tVerzeichnis der eidgenössischen Geschwornenx1421-4083 |tRésumé des délibérations de l'Assemblée fédérale suissex1421-4075 |tAmtliches stenographisches Bulletin der schweizerischen Bundesversammlungx1421-4032 |tAmtliches stenographisches Bulletin der schweizerischen Bundesversammlung. Nationalratx1421-4016 |tAmtliches stenographisches Bulletin der schweizerischen Bundesversammlung. Ständeratx1421-4024 |tStenographisches Bulletin der Bundesversammlung. Nationalratx1421-4008 |tStenographisches Bulletin der Bundesversammlung. Ständeratx1421-3990 |tRecueil officiel des lois et ordonnances de la Confédération suisse |tRecueil des lois fédéralesx1013-6312 |tRapport du Tribunal fédéral suisse à l'Assemblée fédérale sur sa gestion pendant l'année ...x1423-1115 |tMessage du Conseil fédéral à l'Assemblée fédérale concernant le budget de la Confédération suisse pour l'année...bTexte imprimécBernenConseil fédéral suissed1867-1990 1tFeuille fédéralex1420-2492 1tFoglio federalex1420-2514 1tSchweizerisches Bundesblattx1421-393110aFeuille fédérale de la Confédération suisse10aFeuille fédérale suisse et recueil des lois suisses00aFeuille fédérale suisse 0aFeuille féd. suisse 3aFRbAbesc20040621gAFNOR a404 uhttp://www.bar.admin.ch/archivgut/00945/00948/index.html?lang=frzAccès libre au texte intégral. Périodique numérisé par les Archives fédérales suisses1 b(1897) -(1913)w1897, 1902,1904, 1908cParisdMagasins/AnnexeeP 8° 0796 aPériobTP02 P801538nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200001400160210002800174300004000202326001400242421008400256421003600340606002900376607002500405801002100430830005900451856014500510856020900655856002800864955010000892955006800992955007001060992002201130992001201152040621235000001937420130319051429.01 a0182-5852 aFNSP152602 a0000019374 a19900101a18549999 ba0 afre aFR ar acau 13aLe Figaro aPariscLe Figarod1854- aSuspendu de nov. 1942 à août 1944 aQuotidien 1aFigaro thématique < P 4° 5170 > et Figaro Magazine (0184-9336) < P 4° 4230 > 1tFigaro économie < P F° 0471 > aActualitéxPériodiques aFrancexPériodiques 3aFRbCCN0182-5852 ajuil. 1940-1942 : manquant à Locarchives (13/03/2008)4 uhttp://gallica.bnf.fr/ark:/12148/cb34355551z/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1854-1942)4 uhttps://acces-distant.sciences-po.fr/fork?http://global.factiva.com/sb/default.aspx?NAPC=S&fcpil=frzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.lefigaro.fr/1 bEd. en microfilm : (23-08-1944 -1975); (1983-1986)cParisdSalle des microformeseP Mic 35 (27)1 bLe mois en courscParisd27, Salle Rez-de-chausséeeP F° 10111 b(1969) -(1984) ; (1987) -....cParisdMagasins/AnnexeeP F° 1011 aGEO RA4.06 France aDEW 05000994nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002300139210002800162326001700190422004000207530003300247606002900280607002500309801002100334830004900355856010800404955005900512955005700571991001800628992002200646992001200668039318117000000427720131008105303.01 a0184-9336 aFNSP105248 a19900101a19789999 ba0 afre aFR aa u 13aLe Figaro magazine aPariscLe Figarod1978- aHebdomadaire 1aLe Figaro (Paris, 1854),x0182-585210aFigaro magazinebParis. 1978 aActualitéxPériodiques aFrancexPériodiques 3aFRbCCN0184-9336 aenvoyé 1978-->2010 au CTLES en juillet 20134 uhttp://www.lefigaro.fr/magazine/zContenu : sommaire et articles en texte intégral du dernier numéro.1 bL’année en courscParisd27, Salle Rez-de chaussée1 b(oct-1978) -....cParisdMagasins/AnnexeeP 4° 4230 aexempb201306 aGEO RA4.06 France aDEW 05000914nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210003000177326002400207326002600231530003400257606004000291856007600331856004100407955007000448957005400518972000900572991001700581992001400598039599485000006460020130319051430.01 a0394-7297 aFNSP296474 a0000064600 a19900101a19879999 ba0 aita aIT aaia 00aFilosofia politica aBolognacIl Mulinod1987- a3 nos par anb1993- aSemestrielb1988-199210aFilosofia politicab(Bologna) aPhilosophie politiquexPériodiques4 uhttp://www.mulino.it/edizioni/riviste/scheda_rivista.php?issn=0394-7297 zSommaires depuis le n°1, avril 19971 bvol. 2 no. 1 (jun-1988) -....cParisdMagasins/AnnexeeP 8° 58121 b(1987/2006)cParisdMagasins/AnnexeeP Index 0868 aZCAD aexemp$201112 aDEW 320.501372nas 2200385 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000580015421000530021232600150026543000600028060600270034060600440036760600360041160600350044771000380048280100210052085600320054185600540057385600870062785601080071495500700082297200090089299100180090199200220091999200330094199200120097403963809X000001951220130319051430.01 a0752-6180 aFNSP152959 a0000019512 a19900101a19829999 ba0 afre aFR aaju 10aFinancefrevue de l'Association française de finance aPariscPresses universitaires de Grenobled1982- aSemestriel 1aRevue de l'Association française de financex0248-0107 aFinancesxPériodiques aMarché financieryFrancexPériodiques aMarché financierxPériodiques aFinancesyFrancexPériodiques02aAssociation française de finance 3aFRbCCN0752-61804 uhttp://www.affi.asso.fr/fr/ zContenu : sommaires depuis le vol.19, n° 2, 19984 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-finance.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 1 (avr-1982) -....cParisdMagasins/AnnexeeP 8° 4403 aZPAY aexempb201010 aGEO RA4.06 France aGEO RS Sans aspect régional aDEW 33201219nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210002700184326001600211517003100227517002600258606003500284606006400319710003500383711007000418801002100488856005400509856009400563955006600657955008100723972000900804992004200813992001400855039607720000001951820130319051430.01 a0430-473X aFNSP152971 a0000019518 a19900101a19649999 f ba0 afre aUS aahu 10aFinances & développement aWashingtoncFMId1964- aTrimestriel10aFinances et développement10aFinance & development aAide économiquexPériodiques aAide économiquexCoopération internationalexPériodiques02aFonds monétaire international02aBanque internationale pour la reconstruction et le développement 3aFRbCCN0430-473X4 uhttp://www.imf.org/external/pubs/ft/fandd/fda.htm zContenu : accès libre au texte intégral des articles depuis le vol 33, no 1, march 19961 bvol. 5 no. 1 (1968) -....cParisdMagasins/AnnexeeP 4° 25741 bvol. 1 no. 1 (1964) -vol. 4 no. 4 (1967)cParisdMagasins/AnnexeeP 8° 2081 aZPAY aGEO RO Pays en voie de développement aDEW 338.901036nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005000154210005200204225004600256326001100302517005000313606004300363710004800406856011300454856003600567955005500603972000900658991001800667992002500685992001200710045080682000025857920130319051430.01 a1292-3656 aFNSP900027 a0000258579 a19981028a19979999 ba0 afre aFR aaka 14aLes Finances des collectivités locales en... aPariscObservatoire des finances localesd1997-21aCollection Les rapports de l'Observatoire aAnnuel14aLes finances des collectivités territoriales aFinances localesyFrancexPériodiques02aObservatoire des finances localesc(France)4 uhttp://www.dgcl.interieur.gouv.fr/sections/a_votre_service/statistiques/budgets_locaux/rapport_de_l_ofl/view4 zAccès libre au texte intégral1 b(1996) -(2006)cParisdMagasins/AnnexeeP 8° 6433 aZGRA aexempb201212 aGEO RA4.06 France 01 aDEW 33601199nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005900163210005000222225004800272300007300320326001100393430007400404517007000478606004300548710006000591801001300651856010000664955005400764972000900818992002200827992001200849051689553000031052020130319051430.01 a1299-4979 a0000310520 a b19992004k fre ba0 afre aFR a 0  ar aak z 0 14aLes Finances des communes de moins de 10 000 habitants aPariscLa Documentation françaised1997-200421aCollection statistiques et finances locales a2004 dernière édition papier voir ensuite en version électronique aAnnuel 1tGuide des ratios des communes de moins de 10 000 habitantsx1152-483914aLes finances locales des communes de moins de dix mille habitants aFinances localesyFrancexPériodiques02aFrancebDirection générale des collectivités locales 0aFRbFNSP4 uhttp://www.dgcl.interieur.gouv.fr/publications/collections/Collections/col_stat_fin_local_2.htm1 b(1997)-(2004)cParisdMagasins/AnnexeeP 4° 4929 aZGRA aGEO RA4.06 FRANCE aDEW 33601245nas 2200349 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000058001642100049002222250048002713000073003193260011003924300063004035170061004666060046005277100060005738010013006338560132006469550055007789720009008339920025008429920012008679920016008790000297440000029744020130319051431.0 a1298-9134 a0000297440 a b19999999k fre ba0 afre aFR a 0  ar aak z 0 14aLes Finances des communes de plus de 10 000 habitants aPariscLa Documentation françaisd1999-200520aCollection statistiques et finances locales a2004 dernière édition papier voir ensuite en version électronique aAnnuel 1tGuide des rations des communes de plus de 10 000 habitants14aLes Finances des communes de plus de dix mille habitants aFinances communalesyFrancexPériodiques02aFrancebDirection générale des collectivités locales 0aFRbFNSP4 uhttp://www.dgcl.interieur.gouv.fr/publications/collections/Collections/col_stat_fin_local.htmlzAccès libre au texte intégral1 b(1997) -(2004)cParisdMagasins/AnnexeeP 4° 3821 aZGRA aGEO RA4.06 France 01 aDEW 336 aDEW 310-31901270nas 2200349 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000085001642100066002492250048003153000073003633260011004366060046004476060060004937120125005538010013006788560077006918560036007689550054008049720009008589920025008679920012008929920016009040000405072000040507220130319051431.0 a1623-5800 a0000405072 a a19999999k fre ba0 afre aFR a 0  ar aak z 0 14aLes Finances des groupements de communes à fiscalité propreeintercommunalité aPariscDirection générale des collectivités localesd2001-20aCollection statistiques et finances locales a2005 dernière édition papier voir ensuite en version électronique aAnnuel aFinances communalesyFrancexPériodiques aFinances communalesyFrancexStatistiquesxPériodiques01aFrancebDirection générale des collectivités localesbService des statistiques, des études et des techniques locales 0aFRbFNSP4 uhttp://www.dgcl.interieur.gouv.fr/publications/accueil_publications.html4 zAccès libre au texte intégral1 b(1999)-(2005)cParisdMagasins/AnnexeeP 4° 6892 aZGRA aGEO RA4.06 France 01 aDEW 336 aDEW 310-31901126nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003000163210007000193225004800263326001100311436004500322447004300367606005500410710006000465801001300525856007700538856004700615955005500662972000900717992002200726992001600748992001200764048884634000029877920130319051431.01 a1621-0166 a0000298779 a b19992005k fre ba0 afre aFR a 0  ar aak z 0 14aLes Finances des régions aPariscDirection générale des collectivités localesd1999-200520aCollection statistiques et finances locales aAnnuel 1tGuide des ratios des régionsx0984-6298 1tLes Finances régionales...x1263-0306 aFinances publiquesyFrancexRégionsxPériodiques02aFrancebDirection générale des collectivités locales 0aFRbFNSP4 uhttp://www.dgcl.interieur.gouv.fr/publications/accueil_publications.html4 z2 dernières années consultables en ligne1 a(1997) -(2005)cParisdMagasins/AnnexeeP 4° 5407 aZGRA aGEO RA4.06 France aDEW 310-319 aDEW 33601098nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210008200185326001500267430003200282606003800314710006900352801002100421856012800442856010800570955007600678972000900754992002100763992001200784038708469000001952420130319051431.01 a0015-198X aFNSP152980 a0000019524 a19900101a19459999 ba0 aeng aUS aagu 10aFinancial analysts journal aa[New York, N.Y.]cNational Federation of Financial Analysts Societiesd1960- aBimestriel 1tAnalysts journalx1940-882X aAnalyse financièrexPériodiques02aAssociation for Investment Management and Researchc(Etats-Unis) 3aFRbCCN0015-198X4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=FAJ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 19 no. 5 (sept/oct-1963) -....cParisdMagasins/AnnexeeP 4° 3100 aZPAY aGEO RQ Universel aDEW 33200943nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001341350018001502000097001682100052002653000087003173000074004043260015004786060025004937120041005188010013005598560053005729550040006250000311915000031191520130319051431.0 a0000311915 a a19969999k fre ba0 aeng aUS a 0  az aau z 0  adr 10aFinancial and economics discussion series - Federal Reserve Boardb[Ressource électronique] aWashington, D.C.cFederal Reserve Systemd1996- aAccès au 18/04/2000 : World Wide Web. URL : http://www.bog.frb.fed.us/p ubs/feds/ aTexte intégral au format pdf, télédéchargeable avec Adobe Acrobat aCollection aPolitique monétaire02aFederal Reserve Systemc(Etats-Unis) 0aFRbFNSP4 uhttp://netec.mcc.ac.uk/WoPEc/data/fipfedgfe.html1 rConsultable uniquement sur Internet00954cas0 2200313 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002900139210004800168326002500216326002600241606003700267606002700304710004500331801003000376801002300406802000700429856005100436856006100487955007100548972000900619992001200628040103811000108664520130408123824.01 a0968-5650 a0001086645 a19940614a19949999 0fre 0103 ba0 aeng aGB aaj 10aFinancial history review aCambridgecCambridge University Press,1994- a3 n°s par anb2011- aSemestrielb1994-2010 aFinancesxHistoirexPériodiques aFinancesxPériodiques02aEuropean Association for Banking History 3aFRbAbesc20040618gAFNOR 3aFRbISSNc20030523 a024 uhttp://www.journals.cambridge.org/action/login zContenu: sommaires et résumés depuis le vol. 7 de 20001 bvol. 12 no. 1 (avr-2005) -....cParisdMagasins/AnnexeeP 8° 6960 aZPAY aDEW 33200918nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000087001502100034002372300024002713260011002956010046003066060068003527100032004208010013004528560024004658560053004899550005005429920057005479920012006040001152440000115244020130319051431.0 a0001152440 a a20069999k fre 01 ba0 aeng aDE ar aak z  adr 10aFinancial integration in Europeb[Ressource électronique] /fEuropean central bank aFrankfurt am MaincECBd2006- aRevue électronique aAnnuel02aBanque centrale européennexPériodiques aPolitique monétaireyPays de l'Union européennexPériodiques02aBanque centrale européenne 0aFRbFNSP4 uhttp://www.ecb.int/ zContenu : texte intégral du rapport depuis 20061 r aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 33601247nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005900139210005900198326001600257517000700273606002700280710005100307801002100358856003300379856009500412856012900507856013800636955008600774972000900860991001900869992002100888992001200909036561541000005875620130618164619.01 a0046-3892 aFNSP271955 a19900101b19722012 ba0 aeng aUS aahu 10aFinancial managementfFinancial management association aTampa, FlacFinancial Management Association‎d1972- aTrimestriel10aFM aFinancesxPériodiques02aFinancial management associationc(Etats unis) 3aFRbCCN0046-38924 uhttp://www.fma.org/index.htm zContenu : sommaire du dernier n° ; recherche par mots-clés sur les résumés depuis 19914 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=2Q6H&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po , texte intégral depuis 19721 bvol. 1 no. 1 (1972) -vol. 41 no. 4 (hiv-2012)cParisdMagasins/AnnexeeP 4° 3507 aZPAY aexemp§b201306 aGEO RQ Universel aDEW 33201244nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000084001642100023002483260013002714510053002845300028003376060052003656060041004177120067004588010013005258560111005388560108006499550077007579720009008349920012008439920051008550000417617000041761720130319051431.01 a0378-651X a0000417617 a a19779999k f fre ba0 aeng aFR a 0  ar aai z 0 10aFinancial market trendsfOrganisation for Economic Co-operation and Development aPariscOECDd1977- a3 par an 1tTendances des marchés des capitauxx(0378-6528)10aFinancial market trends aMarché financieryPays de l'OCDExPériodiques aMouvements de capitauxxPériodiques02aOrganisation de coopération et de développement économiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/0378651X/financmarkettrends zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 78 (mar-2001) -no. 84 (2003)cParisdMagasins/AnnexeeP 8° 3945 bis aZECH aDEW 332 aGEO RN1 Pays industrialisés, pays occidentaux00791nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001700154210003600171326001600207606003700223801002100260830003400281856003100315856004900346955006700395972000900462991001800471992001200489038708582000001951420130319051431.01 a0015-2218 aFNSP152965 a0000019514 a19900101a18849999 ba0 amul aDE aaha 10aFinanzarchiv aTübingen:cMohr Siebeckd1884- aTrimestriel aFinances publiquesxPériodiques 3aFRbCCN0015-2218 a1948-->1984 : donné au CTLES4 uhttp://www.mohr.de/fa.html zContenu : sommaires et résumés depuis 19991 bvol. 43 no. 1 (1985) -....cParisdMagasins/AnnexeeP 8° 0111 aZPAY aexempb201101 aDEW 33200948nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002900139210003800168326001100206606004400217676001000261830011300271856009800384955006300482955005300545972000900598991001800607992002100625992001200646039607917000004678620131007113120.01 a0430-5973 aFNSP238397 a19900101a19599999 ba0 ager aDE aaka 14aDer Fischer Weltalmanach aFrankfurt am MaincFischerd1959- aAnnuel aRelations internationalesxPériodiques a320.9 a1 seul accés limité à la version en ligne, login : info.docum@sciencespo.fr mot de passe : BibSciencesPo14 uhttp://www.weltalmanach.de/weltrang/.aPour les codes d'accès voir l'accueil bibliographique1 bLa dernière annéecParisd30,Salle 1er étageeDEW 320.91 b(1974) -....cParisdMagasins/AnnexeeP 8° 3716 aZPAY aexempb200912 aGEO RQ Universel aDEW 90900821nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000047001502100047001972300024002443260014002686060036002827100042003188010013003608560072003738560058004459550005005039920012005089920011005200001228852000122885220130319051432.0 a0001228852 a a20129999k fre 01 ba0 afre aFR ar aaa z  adr 10aFlash économieb[Ressource électronique] aPariscCDC IXIS Capital marketsd2001-.... aRevue électronique aQuotidien aMarché financierxPériodiques02aCDC-MarchésbService de la recherche 0aFRbFNSP4 uhttps://institutionsfinancieres.natixis.com/jcms/abo_5754/flash-eco zAccès libre au texte intégral des derniers numéros1 r aDEW 332 aGEO RQ01211nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210004600180300005400226326001600280606005600296710005200352856002600404856007000430856008400500856010800584955007800692957010600770972000900876992001200885039920887000008548820130523150548.01 a1154-2721 aFNSP379824 a0000085488 a19900101a19899999 ba0 afre aFR aaha 10aFlux (Noisy-le-Grand) aPariscLa Documentation françaised1989- aParait alternativement en français et en anglais aTrimestriel aSciences socialesxAnalyse de réseauxPériodiques02aGroupement de recherches sur les réseaux (903)4 uhttp://www.persee.fr/ zAccès libre au texte intégral pour les numéros de 1990 à 20004 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-flux.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (aut-1990) -no 89/90 (dec-2012)cParisdMagasins/AnnexeeP 4° 61951 bno. 1 (1990) -no. 34 (1998)cParisdMagasins/Annexe :zcet index constitue le n°35, 1999 de la revue aZPAY aDEW 33301057nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001700154207004700171210005800218326002300276326002500299430003200324601004900356606004300405710003500448856006300483856006000546955008300606972000900689992002100698992001200719040152952000022383120130319051433.01 a1014-9651 aFNSP801139 a0000223831 a19900101b19912008 f ba0 afre aUS aaea 10aFMI bulletin 1avol. 20 no. 4 (1991)-vol. 37 no. 12 (2008) aWashingtoncFonds monétaire internationald1991-2008 aMensuelb2007-2008 aBimensuelb1991-2007 1aBulletin du FMI,x0250-741202aFonds monétaire internationalxPériodiques aFinances internationalesxPériodiques02aFonds monétaire international4 uhttp://www.imf.org/external/pubs/ft/survey/fre/surveyf.htm zContenu : texte intégral depuis le vol. 18, no 1, 19991 bvol. 20 no. 4 (1991) -vol. 37 no. 3 (2008)cParisdMagasins/AnnexeeP 4° 0270 aZGRA aGEO RQ Universel aDEW 33201006nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013110600060013811000160014420000210016021000290018132600180021051700140022851700150024260600390025780100210029685601450031795501290046295700570059197200090064899200210065799200140067803922371X000001955020130319051433.01 a0015-5357 aFNSP153025 a0000019550 a19900101a18989999 ba0 afre aFR ar aagu 13aLa Foi et la vie aPariscFoi et vied1898- a5 n°s par an10aFoi & vie10aFoi et vie aEglises protestantesxPériodiques 3aFRbCCN0015-53574 uhttp://gallica.bnf.fr/ark:/12148/cb327761001/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1899-1926)1 bvol. 43 no. 1 (nov-1945) -vol. 45 no. 6 (sept/oct-1947) ; vol. 70 no. 6 (dec-1971) -....cParisdMagasins/AnnexeeP 8° 05741 b(1963) -(1985)cParisdMagasins/AnnexeeP Index 0625 aZPAY aGEO RQ Universel aDEW 20-2900844nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001600139210004300155326001500198606007200213801002100285856005800306856007600364955007100440972000900511992004200520992001600562039397866000002012820131002154744.01 a0306-9192 aFNSP154486 a19900101a19759999 ba0 aeng aGB aagu 10aFood policy aGuilfordcButterworth-Heinemannd1975- aBimestriel aPolitique alimentaireyPays en voie de développementxPériodiques 3aFRbCCN0306-91924 uhttp://www.sciencedirect.com/science/journal/03069192 zContenu : sommaires ; recherche par auteurs et mots-clés ; depuis 19951 bvol. 10 no. 1 (fev-1985) -....cParisdMagasins/AnnexeeP 4° 5079 aZPAY aGEO RO Pays en voie de développement aDEW 338.1-300769nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000055001502100044002052300024002493260022002736060029002956060043003248010013003678560029003808560042004099550005004519920012004569920011004680001180246000118024620130319051434.0 a0001180246 a a19989999k fre 01 ba0 aeng aGB ar aai z  adr 10aForced Migration Reviewb[Ressource électronique] aOxfordcRefugee studies programmed1998 aRevue électronique atrois fois par an aRéfugiésxPériodiques aTransferts de populationxPériodiques 0aFRbFNSP4 uhttp://www.fmreview.org/ zContenu : texte intégral depuis 19981 r aDEW 325 aGEO RQ00996nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001322000034001392100037001733260011002105300034002216010034002556060047002896060055003366060043003917120020004348010021004548560030004759550054005059550065005599720009006249920023006339920014006560000084689000008468920130319051434.01 a0071-7274 aFNSP376266 a0000084689 a19900101a19519999 ba0 aeng aUS10aFord Foundation annual report aNew YorkcFord Foundationd1951- aAnnuel00aFord Foundation annual report02aFord foundationxPériodiques aAide économique américaineyPériodiques aAssistance en matière de populationxPériodiques aTransfert de technologiexPériodiques02aFord Foundation 3aFRbCCN0071-7274 uhttp://www.fordfound.org/1 b(1980)-(1999)cParisdMagasins/AnnexeeP 4° 57981 bb(1951) ; (1953)-(1979)cParisdMagasins/AnnexeeCOL8°1872 aZGRA aGEO RC2 Etats-Unis aDEW 338.901573nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210005000191326001800241606004400259607005300303676000800356710004700364801002100411856003500432856009600467856012800563856010800691955006700799955021100866957005701077972000901134992002101143992002301164992001201187038710021000000433320131219163643.01 a0015-7120 aFNSP105391 a0000004333 a19900101a19229999 ba0 aeng aUS aagu 10aForeign affairs (New York, N.Y.) aNew YorkcCouncil on Foreign Relationsd1922- a5 n°s par an aRelations internationalesxPériodiques aEtats-UnisxRelations extérieuresxPériodiques a32702aCouncil on Foreign Relationsc(Etats-Unis) 3aFRbCCN0015-71204 uhttp://www.foreignaffairs.org/ zContenu : sommaires ; résumés ; recherche par auteurs, sujets et dates ; depuis oct. 19734 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=FAF&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 1 no. 1 (1922) -....cParisdMagasins/AnnexeeP 8° 0001wManquants : vol. 62, no. 3 et 4 (1983-1984), vol. 69, no. 1 (1990), vol. 70, no. 1 (1991), vol. 81 nos 1,3, 5, 2002 ; vol. 82 nos 2, 3, 4, 20031 b(1922) -(1972)cParisdMagasins/AnnexeeP Index 0050 aZCAD aGEO RQ Universel aGEO RC2 Etats-Unis aDEW 32701868nas 2200445 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154207001900173210004200192210007200234326002200306326002700328326002700355453004800382606004400430676000800474710005000482801002100532856003400553856008200587856012800669856010800797856009000905856010800995955006701103955006901170955006501239955007901304972000901383991001801392992001201410038710056000000437720131219163736.01 a0015-7228 aFNSP105462 a0000004377 a19900101a19719999 ba0 aeng aUS aagu 10aForeign policy 1ano. 1 (1971) - aNew YorkcNational Affairsd1971-1978 aWashington, D.C.cCarnegie Endowment for International Peaced1978- aBimestrielb2001- aCinq fois par anb2000 aTrimestrielb1971-1999 1tForeign policy (Éd. française)x1957-5335 aRelations internationalesxPériodiques a32702aDotation Carnegie pour la paix internationale 3aFRbCCN0015-72284 uhttp://www.foreignpolicy.com/ zContenu : sommaires ; résumés ; index auteurs et sujets ; depuis été 19974 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=FPO&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00157228.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bL'année en courscParisdBibliothèque de rechercheeP 4° 68651 bno. 120 (aut-2000) -....cParisdMagasins/AnnexeeP 4° 68651 bno. 1 (hiv-1971) -no. 119 (été-2000)cParisdMagasins/AnnexeeP 8° 2944 aZCAD aexempb201103 aDEW 32701243nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008800154210004600242326001600288606005200304606004500356710007100401856009500472856010800567856005100675856006900726955006300795972000900858992002200867992001600889992001200905013304429000000441620140106173129.01 a0759-6340 aFNSP105592 a0000004416 a19900101a19839999 ba0 afre aFR aahu 10aFormation emploif[CEREQ, Centre d'études et de recherches sur les qualifications] aPariscLa Documentation françaised1983- aTrimestriel aFormation professionnelleyFrancexPériodiques aMarché du travailyFrancexPériodiques02aCentre d'études et de recherches sur les qualificationsc(France)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-formation-emploi.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://formationemploi.revues.org/index55.html zAccès libre au texte intégral du n° 93, 2006 au n° 100, 20071 bno. 1 (jan-1983) -....cParisdMagasins/AnnexeeP 4° 4835 aZPAY aGEO RA4.06 France aDEW 370-379 aDEW 33101311nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154207002600177210003900203326001600242606004400258607005000302607006300352801002100415856005200436856003600488856005500524856012600579955007500705957007700780972000900857991001800866992002000884992002100904992001200925039133869000002013220130319051436.01 a0185-013X aFNSP154491 a0000020132 a19900101a19609999 ba0 aspa aMX aahu 10aForo internacional 1avol. 1, no. 1 (1960)- aMéxicocColegio de Méxicod1960- aTrimestriel aRelations internationalesxPériodiques aMexiquexRelations extérieuresxPériodiques aMexiquexRelations économiques extérieuresxPériodiques 3aFRbCCN0185-013X4 uhttp://www.colmex.mx/centros/cei/foro_index.htm zAccès libre au texte intégral4 uhttp://revistas.colmex.mx/revista.jsp?id_revista=7 zContenu : sommaires et texte intégral depuis le n°159 volume 40 janvier-mars 2000 à l'exception de la dernière année1 bvol. 1 no. 1 (jul/sept-1960) -....cParisdMagasins/AnnexeeP 8° 18571 bno 1 (jul-1961) -no. 50 (oct-1972)cParisdMagasins/AnnexeeP Index 0264 aZGRA aexempb201001 aGEO RD1 Mexique aGEO RQ Universel aDEW 32700921nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000460015421000400020032600160024051700280025660600480028471000450033285600420037785600730041995500630049297200090055599100180056499200250058299200120060704004825X000017270720130319051436.01 a0933-9361 aFNSP652247 a0000172707 a19900101a19889999 ba0 ager aDE aaha 10aForschungsjournal Neue Soziale Bewegungen aStuttgartcLucius und Luciusd1988- aTrimestriel10aNeue Soziale Bewegungen aMouvements sociauxyAllemagnexPériodiques02aForschungsgruppe Neue Soziale Bewegungen4 uhttp://www.fjnsb.de/frameJahrgang.htm zContenu : Sommaires depuis 1995, résumés en anglais et en allemand1 bno. 4 (dec-1994) -....cParisdMagasins/AnnexeeP 8° 6192 aZSAB aexempb201212 aGEO RA5.01 Allemagne aDEW 30301088nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210002600181300004300207326001400250488002500264530002600289606003900315607005400354801002100408830009000429856003900519955005900558955008700617972000900704992002300713992001400736039701638000000431320130319051436.01 a0738-5587 aFNSP105323 a0000004313 a19900101a19839999 ba0 aeng aUS aaeu 10aFortune Europe edition aZolingencTimed1983- aAvant 1983 voir Fortune < P F° 0131 > aBimensuel 1aFortune,xP F° 013100aFortune international aFinancesyEtats-UnisxPériodiques aEtats-UnisxConditions économiquesxPériodiques 3aFRbCCN0738-5587 aVol. 107, n°1, Jan. 10, 1983 -->1984 < P F° 0131 >: collection Locarchives à jeter4 uhttp://www.pathfinder.com/fortune/1 bL’année en courscParisd27, Salle Rez-de chaussée1 bConservation limitée aux 5 dernières annéescParisdMagasins/AnnexeeP 4° 6831 aZPAY aGEO RC2 Etats-Unis aDEW 330.901071nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200009600163207003600259210004600295326001100341530003900352606004200391710004500433801001300478830003300491856003300524856007600557955005400633972000900687992002500696992001200721073340065000055277720130319051436.01 a1761-0214 a0000552777 a a20039999k fre ba0 afre aFR a 0  ar aak z 0 13aLe Forum des droits sur l'interneterapport d'activitéfLe Forum des droits sur l'internet 1a1er rapport d'activité (2002)- aPariscLa Documentation françaised2003- aAnnuel03aLe Forum des droits sur l'internet aInternetxDroityFrancexPériodiques02aForum des droits sur l'internetc(Paris) 0aFRbFNSP asudoc à jour : 26/04/07, dm uhttp://www.foruminternet.org zL'adresse renvoie au rapport sur le site de la Documentation française1 b(2002)-(2007)cParisdMagasins/AnnexeeP 8° 6709 aZPAY aGEO RA4.06 France 01 aDEW 00401136nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200008400139210006500223326001600288452005900304453005800363453005400421530004900475606004100524710004900565801002100614856006300635955007800698972000900776992002100785992001600806039666565000002028820131219151823.01 a0591-2512 aFNSP154761 a19900101a19649999 f ba0 afre aCH aaha 10aForum du commerce international‎fCentre du commerce international CNUCED/OMC aGenèvecCentre du commerce international CNUCED-GATTd1964- aTrimestriel 1tForum du commerce international (En ligne),x1608-0106 1tForum de comercio internacional (Impresa),x0251-009X 1tInternational trade forum (Print), ISSN 0020-8957 aForum du commerce international‎bImprimé aCommerce internationalxPériodiques02aCentre du commerce international CNUCED/GATT 3aFRbCCN0591-25124 uhttp://www.tradeforum.orgzAccès libre au texte intégral1 bvol. 1 no. 1 (dec-1964) -no. 3 (2007)cParisdMagasins/AnnexeeP 4° 2115 aZGRA aGEO RQ Universel aDEW 380-38200864nas 2200277 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000049001552100065002043260016002696060043002856060028003287120057003568010021004138560029004349550090004639920021005539920012005740000020823000002082320130319051436.01 a0887-8218 aFNSP156445 a0000020823 a19900101a19869999 ba0 aeng aUS aaha 10aForum for applied research and public policy aChapel Hill, N.C.cUniversity of North Carolina Pressd1986- aTrimestriel aEnvironnementxRecherchexPériodiques aRecherchexPériodiques02aEnergy Environnment and Resources Center (Knoxville) 3aFRbCCN0887-82184 uhttp://forum.ra.utk.edu/1 bvol. 1 no. 1 (pri-1986) -vol. 14 no. 3 (aut-1999)cParisdMagasins/AnnexeeP 4° 5244 aGEO RQ Universel aDEW 50700963nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210002400182326001100206607004600217676000800263710007800271856007300349856003600422955006600458955005700524972000900581991001800590992002500608992001600633004292901000023163020130319051438.01 a1279-3671 aFNSP822870 a0000231630 a19900101a19979999 ba0 afre aFR aaka 10aFrance, portrait social aPariscINSEEd1997- aAnnuel aFrancexConditions socialesxPériodiques a36002aInstitut national de la statistique et des études économiquesc(France)4 uhttp://www.insee.fr/fr/publications-et-services/collection.asp?id=134 zAccès libre au texte intégral1 bLes 3 dernières annéescParisd27, Salle 4e étageeDEW 3601 b(1997/1998) -...cParisdMagasins/AnnexeeP 8° 6448 aZPAY aexempb201301 aGEO RA4.06 France 01 aDEW 360-36301212cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200009200179210002800271225002800299440003900327606004900366710007800415801003000493801002300523801003000546801002300576802000700599856006000606856003600666955007900702991001800781992002500799992001400824040501574000071828220130319051438.01 a1274-8560 accn1274-8560 aissn12748560 a0000718282 a19970820b19932004k a0frea0103 ba0 afre aFR ar azu 13aLa France des servicesfInstitut national de la statistique et des études économiques aPariscINSEEd1993-200400aRéférencesx1639-4968 1tLes services en France,x1779-0883 aServicesyFrancexStatistiquesxPériodiques02aInstitut national de la statistique et des études économiquesc(France) 3aFRbAbesc20050523gAFNOR 3aFRbISSNc20020108 3aFRbAbesc20041026gAFNOR 3aFRbISSNc20010401 a074 uhttp://www.insee.fr/fr/ffc/docs_ffc/france_services.htm zAccès libre au texte intégral1 b(1996) ; (1999) ; (2001) ; (2004/2005)cParisdMagasins/AnnexeeP 8° 6788 aexempb201212 aGEO RA4.06 France 01 aDEW 338.400948cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200006600197210001900263530004100282801003000323801002300353802000700376830000900383856012100392955005700513991001500570991004900585039091112000112524320130319051438.0 a2017-2230 accn7114/8825 aissn20172230 a0001125243 a19891106b188719 uuuy0frey0103 ba0 afre aFR ay  ar azku uu 13aLa France économiqueeStatistique, raisonnée et comparative aPariscA.Colin13aLa France économiqueb(Paris. 1887) 3aFRbAbesc20070823gAFNOR 3aFRbISSNc20070808 a00 asdy04 uhttp://gallica.bnf.fr/ark:/12148/bpt6k279027/f4.imagezAccès libre au texte intégral. 1889 numérisée sur Gallica1 b(1887) ; (1890)cParisdMagasins/AnnexeeCOL12°0171 aPériobTZ anumer0 (tout, gallica mode texte mais moche)01423cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001700069100004100086101000800127102000700135105001800142106000600160110001600166200009500182210008400277452005300361530004300414607003500457607005600492607006400548676001100612710007800623801003000701801003000731801002300761802000700784856014300791955005500934972000900989992002500998992001401023039862089000092803220131017163430.01 a0992-4124 accn0992-4124 aissn09924124 a19980721a19889999m y0frey0103 ba0 afre aFR a 0  ar azu 0 13aLa France et ses régionsfInstitut national de la statistique et des études économiques aParisc[Institut national de la statistique et des études économiques]d1988- 0tLa France et ses régions (Cédérom)x1286-938413aLa France et ses régions‎bImprimé aFrancexRégionsxPériodiques aPays de l'Union européennexRégionsxPériodiques aFrancexConditions économiquesxStatistiquesxPériodiques a330.9402aInstitut national de la statistique et des études économiquesc(France) 3aFRbAbesc20060123gAFNOR 3aFRbAbesc20060123gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.insee.fr/fr/publications-et-services/collection.asp?super_id=1&numpage=5&nombre=20zAccés libre au texte intégral depuis 20061 b(1988) -(2010)cParisdMagasins/AnnexeeP 8° 6864 aZPAY aGEO RA4.06 France 01 aDEW 330.900969nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001700154210003100171326003500202606003700237607004500274607002500319801002100344856009600365856004400461945004400505955006300549972000900612992002200621992001200643039236684000002029620130319051439.01 a0046-4910 aFNSP154775 a0000020296 a19900101a19579999 ba0 afre aFR aahb 10aFrance forum aPariscFrance forumd1957- a8 n°s par an puis trimestriel aVie intellectuellexPériodiques aFrancexVie intellectuellexPériodiques aFrancexPériodiques 3aFRbCCN0046-49104 uhttp://doc.sciencespo-lyon.fr/Signal/index.php?r=numero/search&SearchNumero%5BrevueId%5D=51 zContenu : sommaires des nos depuis 1990 a0000155006oL01lMAGAmbookd1990 12 141 bno. 6 (oct-1957) -....cParisdMagasins/AnnexeeP 4° 1529 aZGRA aGEO RA4.06 France aDEW 00100735nas 2200253 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000027001412100061001683260014002295170035002436060029002786070028003078560041003359550068003769920025004449920012004690000071480000007148020130319051439.0 aFNSP327615 a0000071480 a19900101a00019999 ba0 ager aDE acaa 10aFrankfurter Allgemeine aFrankfurt am MaincFrankfurter Allgemeine Zeitungd0001- aQuotidien10aFrankfurter Allgemeine Zeitung aActualitéxPériodiques aAllemagnexPériodiques4 uhttp://www.faz.de/mainpage/hp_lf.asp1 bLe mois en courscParisd27, Salle Rez-de-chausséeeP F° 1227 aGEO RA5.01 Allemagne aDEW 05000948nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000053001502100005002032300024002083260014002326060029002466070028002758010013003038560192003168560108005089550005006169920025006219920012006460001131860000113186020130319051439.0 a0001131860 a a20019999k fre 01 ba0 ager aDE ar aaa z  adr 10aFrankfurter Rundschaub[Ressource électronique] a aRevue électronique aquotidien aActualitéxPériodiques aAllemagnexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA5.01 Allemagne aDEW 05000839nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005700154210005800211326001100269607002500280710005500305856008700360955005300447972000900500991001800509992002200527992001200549040051099000011059320130319051439.01 a0935-6649 aFNSP466984 a0000110593 a19900101a19889999 ba0 ager aDE aaka 10aFrankreich-JahrbuchfDeutsch-Französisches Institut aWiesbadencVerl. für Sozialwiss./GWV Fachverld1988- aAnnuel aFrancexPériodiques02aInstitut franco-allemandc(Ludwigsburg, Allemagne)4 uhttp://www.dfi.de/de/veroeffentlichungen_fj.shtmlzContenu : sommaires depuis 19961 b(1988) -....cParisdMagasins/AnnexeeP 8° 5305 aZPAY aexempb201110 aGEO RA4.06 France aDEW 94401112nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210004600182326002300228326002800251530004800279607007500327856007100402856010800473955007000581957012000651972000900771991001800780992001200798040088197000003151720140107174916.01 a0957-1558 aFNSP187544 a0000031517 a19910513a19909999 ba0 aeng aGB aaia 10aFrench cultural studies aChalfont St. GilescAlpha Academicd1990- aTrimestrielb2009- a3 nos par anb1990-200810aFrench cultural studiesbChalfont St. Giles aFrancexCivilisationxEtude et enseignement (supérieur)xPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://frc.sagepub.com/? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 3 (oct-1990) -....cParisdMagasins/AnnexeeP 8° 57161 bvol. 1 (1990) -vol. 10 (1999)cParisdMagasins/Annexezcet index se trouve dans le vol. 10 no. 30, 1999 de la revue aZPAY aexempb201205 aDEW 94401112nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200003000138210006200168326001600230607003500246801002100281856005700302856005500359856010300414856010800517955007000625957007200695972000900767992002200776992001200798038710951000005873320130319051440.01 a0016-1071 aFNSP271899 a0000058733 a19900101a19589999 ba0 amul aUS10aFrench historical studies aBaton RougecSociety for French Historical Studiesd1958- aTrimestriel aFrancexHistoirexPériodiques 3aFRbCCN0016-10714 uhttp://www.sla.purdue.edu/academic/hist/fhs/home.htm zContenu : sommaires depuis le vol. 20, n°13, 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=111223 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 3 (pri-1964) -....cParisdMagasins/AnnexeeP 8° 21721 bvol. 1 (1958) -vol. 14 (1986)cParisdMagasins/AnnexeeP Index 0151 aZPAY aGEO RA4.06 France aDEW 94401365nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002000163207003100183210004200214326001600256517000700272606004400279607005200323607004800375676000800423801001300431856015100444856020800595955006600803955007000869955000500939972000900944992001600953992002200969073547786000054152620130716151855.01 a1476-3419 a0000541526 a a20039999k fre ba0 aeng aGB a 0  ar aaj z 0 10aFrench politics 1aVol. 1, no. 1 (Mar. 2003)- aHoundmillscPalgrave Macmilland2003- aTrimestriel10aFP aScience politiqueyFrancexPériodiques aFrancexPolitique et gouvernementxPériodiques aFrancexEtude et enseignementxPériodiques a940 0aFRbFNSP uhttps://acces-distant.sciences-po.fr/fork?http://www.palgrave-journals.com/fp/zSommaires et résumés des articles à partir du vol.1, n°1, 20034 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=110785zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 bvol. 1 no. 1 (mar-2003) -....cParisdMagasins/AnnexeeP 8° 67061 a aZCAD aDEW 320-321 aGEO RA4.06 France01355nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101001300108102000700121105001800128106000600146110001600152200009000168210003600258326001600294430004800310607005200358676000800410710005200418711005200470711004400522801001300566856012800579856010800707955006600815955006900881972000900950992001200959992002200971052303799000032084620130319051440.01 a1537-6370 a0000320846 a a19999999k fre ba0 aengefre aUS a 0  ar aai z 0 10aFrench politics, culture and societyfConference Group on French Politics and Society aNew YorkcBerghahn Booksd1999- aTrimestriel 1aFrench politics and societyxISSN 0882-1267 aFrancexPolitique et gouvernementxPériodiques a94002aConference Group on French Politics and Society02aCenter for European Studiesc(Cambridge, Mass.)02aInstitute of French Studiesc(New York) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=LT0&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 aLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 bvol. 17 no. 3/4 (1999) -....cParisdMagasins/AnnexeeP 4° 4998 aZCAD aDEW 324 aGEO RA4.06 France00991nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007200154210003900226326001600265606004400281801002100325856003400346856007900380955021500459972000900674991001800683992001200701039463052000006687620130319051440.01 a0340-0255 aFNSP310915 a0000066876 a19900101a18999999 ba0 ager aDE aaha 14aDie Friedens-Warteejournal of international peace and organization aBerlincBerlin Verlag Spitzd1899- aTrimestriel aRelations internationalesxPériodiques 3aFRbCCN0340-02554 uhttp://www.friedens-warte.de/ zContenu : sommaires et résumés depuis le n°1, 2003, moteur de recherche1 bvol. 23 no. 1/2 (1923) -vol. 40 no. 1/2 (1940) ; vol. 50 no. 1 (1950) -vol. 56 no. 4 (1961/1966) ; vol. 57 no. 1/4 (1974) -vol. 68 no. 1/2 (1988) ; vol. 71 no. 1 (1996) -....cParisdMagasins/AnnexeeP 8° 0455 aZSAB aexempb201301 aDEW 32701641cas0 2200421 450 001001000000002001100010005001700021011001400038020001700052100004100069101000800110102000700118105001800125106000600143110001600149200023600165207001200401210003500413326001100448452002200459606003100481606005200512606003900564607006000603676001500663710006100678711006500739711007500804801003000879801001500909801001500924856012000939955006201059955005201121972000901173992002501182992001201207171169727000124751720130906152505.0 a0932-7983 aUSb88640708 a20130827a19879999k y0frey50 ba0 ager aDE ay 0  ar azkah 0yy 10aFriedensgutachtenfHessische Stiftung Friedens- und Konfliktforschung (HSFK), Forschungsstätte der Evangelischen Studiengemeinschaft (FEST), Institut für Friedensforschung und Sicherheitspolitik an der Universität Hamburg (IFSH) 0a(1987)- aFrankfurt am MaincHSFKd1987- aAnnuel 1tFriedensgutachten aPaixxPériodiques2rameau aSécurité internationalexPériodiques2rameau aDésarmementxPériodiques2rameau aAllemagnexRelations extérieuresxPériodiques2rameau a327.1v22a02aHessische Stiftung Friedens- und Konfliktsforschung407002aForschungsstätte der evangelischen Studiengemeinschaft407002aInstitut für Friedensforschung und Sicherheitspolitik (Hambourg)4070 3aFRbAbesc20130828gAFNOR 0bDLCgAACR2 2bNSTgAACR24 uhttp://www.friedensgutachten.de/index.php/id-2013.htmlzAccès aux sommaires et résumés des chapitres depuis 20001 bLa dernière annéecParisd30, Salle 1er étageeDEW 3271 b(2013)-....cParisdMagasins/AnnexeeP 8° 7212 aZCAD aGEO RA5.01 Allemagne aDEW 32700983nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001341350018001502000108001682100025002762300024003013000100003253260012004253300123004376060037005608010013005978560055006109550040006650000313753000031375320130319051440.0 a0000313753 a a00019999k fre ba0 afre aFR a 0  az aaf z 0  adr 10aFRIPESb[Ressource électronique]eFichier Régional d'Informations Politiques, Economiques et Sociales aLyoncIEP Lyonds.d. aDonnées textuelles aAccès au 18/04/2000 : World Wide Web. URL : http://iep.univ-lyon2.fr/Documentation/fripes.html aMensuel aDepuis 1983, bibliographie d'environ 50 000 articles de périodiques en sciences politiques, économiques et sociales. aSciences socialesxBibliographie 0aFRbFNSP uhttp://iep.univ-lyon2.fr/Documentation/fripes.html1 rConsultable uniquement sur internet01048nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008000154207003500234210003200269326001600301530002800317606003600345606004500381606003000426856006500456856012200521955007300643991001800716992001200734039921409000000931820130319051445.01 a1154-418X aFNSP116520 a0000009318 a19900613b19901998 ba0 afre aFR aaha 00aFutur antérieurepolitique, sociologie, philosophie, psychanalyse, culture 1ano. 1 (1990) -no. 43 (1997/98) aPariscHarmattand1990-1998 aTrimestriel00aFutur antérieurbParis aSciences socialesxPériodiques aGauche (science politique)xPériodiques aPhilosophiexPériodiques uhttp://multitudes.samizdat.net/rubrique.php3?id_rubrique=117 ztexte intégral de presque tous les numéros ordinaires et spéciaux publiés, hébergés sur le site de "Multitudes"1 bno. 1 (1990) -no. 43 (1997/1998)cParisdMagasins/AnnexeeP 8° 5648 aexempb201103 aDEW 30101249nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001500154210005600169326001200225436004100237436004300278517002000321530002200341606002900363606003700392676000800429710002900437801002100466856003100487856010300518955006600621955006400687957007300751972000900824991001800833992001200851039541177000000441720130319051446.01 a0337-307X aFNSP105593 a0000004417 a19900101a19759999 ba0 afre aFR aafu 10aFuturibles aPariscAssociation internationale Futuriblesd1975- aMensuel 1aProspectives (Paris)xISSN 0338-5280 1tAnalyses et prévisionxISSN 0003-262X10aFuturibles 2000 0aFuturiblesbParis aPrévisionxPériodiques aEconomie politiquexPériodiques a30002aFuturibles international 3aFRbCCN0337-307X4 uhttp://www.futuribles.com/ zContenu : sommaires depuis le n° 205, janv. 1996 ; éditorial en texte intégral depuis nov. 19981 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3001 bno 1/2 (pri-1975) -....cParisdMagasins/AnnexeeP 8° 28751 bno. 1/2 (1975) -no. 237 (1988)cParisdMagasins/AnnexeeP Index 0819 aZPAY aexempb200904 aDEW 30001057nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001200154210004100166326001500207440005500222530002200277606004600299606002600345606003200371801002100403856009500424856009000519955008000609972000900689992002100698992001200719038712040000002029220130319051447.01 a0016-5492 aFNSP154769 a0000020292 a19900101b19552005 ba0 aeng aNL aagu 10aGazette aLondoncSage Publicationsd1955-2005 aBimestriel 1tThe International communication gazettex1748-048510aGazetteb(Leiden) aCommunication audiovisuellexPériodiques aMédiasxPériodiques aCommunicationxPériodiques 3aFRbCCN0016-54924 uhttps://acces-distant.sciences-po.fr/fork?http://www.sagepub.co.uk/journal.aspx?pid=105560 zContenu : sommaires depuis le vol. 59, n°1, fév. 1997 ; résumés à partir de 19981 bvol. 1 no 1 (1955) -vol. 67 no 6 (2005)cParisdMagasins/AnnexeeP 8° 1375 aZSAB aGEO RQ Universel aDEW 07001200nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006100139210003600200326001700236430005500253606004800308606004300356801002100399856004100420856020300461955009400664955011400758992002200872992001600894039790118000002029720131018174907.01 a0769-3508 aFNSP154778 a19900101a19859999 ba0 afre aFR aa u 13aLa Gazette des communes, des départements, des régions aPariscAction municipaled1985- aHebdomadaire 1aLa Gazette des communes (0242-570X) < P 4° 4574 > aAdministration localeyFrancexPériodiques aServices publicsyFrancexPériodiques 3aFRbCCN0769-35084 uhttp://www.lagazettedescommunes.com/ zContenu : sommaires et résumés depuis janv. 1997 ; textes des "Cahiers" depuis 2001. Articles consultables à la bibliothèque à l'aide d'un mot de passe à demander à l'accueil bibliographique.1 bLes six derniers mois de l'année en courscParisd27, Salle Rez-de-chausséeeP 4° 45741 bno. 8 (15/28 avr-1985) -no. 1434 (dec-1997) ; n.s. no. 1 (jan-1998) -....cParisdMagasins/AnnexeeP 4° 4574 aGEO RA4.06 France aDEW 350-35401388nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004200154210003600196326001500232422003700247430005100284606004700335606003200382676000800414801002100422856002600443856003600469856007000505856010800575955006500683955006400748957015900812972000900971992002200980992001201002039373452000000443220130319051447.01 a0242-6390 aFNSP105717 a0000004432 a19900101a19689999 ba0 afre aFR aagu 10aGazette du Palais. Recueil bimestriel aPariscGazette du Palaisd1968- aBimestriel 1aLa Gazette du Palais (0242-6331) 1aGazette du Palais. Supplément ... (0249-4981) aDroityFrancexJurisprudencexPériodiques aDroityFrancexPériodiques a340 3aFRbCCN0242-63904 uhttp://www.gpdoc.com/ zAccès libre au texte intégral4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lextenso.com zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30,Salle 3e étageeDEW 3401 bno. 1 (jan-1968) - ….cParisdMagasins/AnnexeeP 4° 02741 b1966-1970, 1971-1972, 1974-1976, 1977-1979, 1980-1982, 1983-1985, 1986-1988, 1989-1991, 1992-1994, 1995-1997cParisdMagasins/AnnexeeP Index 0472zTables aZPAY aGEO RA4.06 France aDEW 34800829nls 2200265 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001251350018001412000049001592100027002082300024002356060047002596060032003068010013003388560070003518560108004219920022005299920012005510000941430000094143020130319051447.0 aFNSP105717 a0000941430 a19900101a20009999 ba0 afre aFR aagu  adr 10aGazette du Palaisb[Ressource électronique] aPariscLextensod2000- aRevue électronique aDroityFrancexJurisprudencexPériodiques aDroityFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lextenso.com zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aGEO RA4.06 France aDEW 34804580nas 2200589 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200005000160207003500210210002900245326001400274440005100288530005000339607006300389676000800452830003800460856014300498856015000641856014400791856014400935856014401079856014401223856014401367856014501511856014501656856014401801856014401945856014502089856016502234856014402399856014502543856014402688856014502832856014402977856014503121856014403266856014503410856014403555856014403699955005003843957007403893991001103967992001203978038705710000004655420131028165955.0 a1169-2510 aFNSP237431 a0000046554 a19900101b17891810 ba0 afre aFR ar aaaa 03aLa Gazette nationale ou le Moniteur universel 1a24 nov. (1789) -31 déc-(1810) aParisc[s.n.]d1789-1810 aQuotidien 1aLe Moniteur universel (Paris. 1811)x1169-252903aLa Gazette nationale ou le Moniteur universel aFrancexPolitique et gouvernementz1789-1815xPériodiques a070 aLa collection se trouve en MAG 274 uhttp://archive.org/stream/gazettenationale1789panc#page/n5/mode/2upzAccès libre au texte intégral. 1789 (mai-déc) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale8990panc#page/n3/mode/2upzAccès libre au texte intégral. 1789 (nov)-1790 (juin) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale1790panc#page/n1/mode/2upzAccès libre au texte intégral. 1790 (juil-déc) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale1794panc#page/n1/mode/2upzAccès libre au texte intégral. 1794 (janv-juin) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale1794panc#page/n1/mode/2upzAccès libre au texte intégral. 1795 (janv-juin) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale1795panc#page/n3/mode/2upzAccès libre au texte intégral. 1795 (juil-déc) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale1796panc#page/n3/mode/2upzAccès libre au texte intégral. 1796 (janv-juil) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale17961panc#page/n1/mode/2upzAccès libre au texte intégral. 1796 (juil-déc) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale17971panc#page/n3/mode/2upzAccès libre au texte intégral. 1797 (janv-juin) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale1797panc#page/n5/mode/2upzAccès libre au texte intégral. 1797 (juil-déc) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale1798panc#page/n3/mode/2upzAccès libre au texte intégral. 1798 (janv-juin) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale17981panc#page/n3/mode/2upzAccès libre au texte intégral. 1798 (juil-déc) sur Internet Archive4 uhttp://gallica.bnf.fr/ark:/12148/bpt6k49333r/f3.imagezAccès libre au texte intégral. Accès libre au texte intégral. 1799 (janv-juin) numérisé sur Gallica4 uhttp://archive.org/stream/gazettenationale1799panc#page/n3/mode/2upzAccès libre au texte intégral. 1799 (juil-déc) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale18001panc#page/n3/mode/2upzAccès libre au texte intégral. 1800 (janv-juin) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale1800panc#page/n1/mode/2upzAccès libre au texte intégral. 1800 (juil-déc) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale18011panc#page/n3/mode/2upzAccès libre au texte intégral. 1801 (janv-juin) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale1801panc#page/n3/mode/2upzAccès libre au texte intégral. 1801 (juil-déc) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale18021panc#page/n3/mode/2upzAccès libre au texte intégral. 1802 (janv-juin) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale1802panc#page/n1/mode/2upzAccès libre au texte intégral. 1802 (juil-déc) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale18031panc#page/n3/mode/2upzAccès libre au texte intégral. 1803 (janv-juin) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale1803panc#page/n1/mode/2upzAccès libre au texte intégral. 1803 (juil-déc) sur Internet Archive4 uhttp://archive.org/stream/gazettenationale1804panc#page/n3/mode/2upzAccès libre au texte intégral. 1804 (juil-déc) sur Internet Archive1 b(1789) -(1810)cParisdMagasin 27eP F° 11731 b(1789-1799), (1799-1810)zces tables sont rangées avec la collection anumer0 aDEW 05001051nas0 2200313 450 00100100000000200110001000500170002101100140003803500170005203500150006910000410008410100080012510200070013310600060014011000160014620000570016221000440021932600160026360600440027960600440032380100300036780100230039780200070042085600350042785601910046295500630065397200090071699200120072509893046X000095451120130319051447.01 a0941-5831 aissn09415831 a0000954511 a20060406a19929999 0frey0103 ba0 ager aDE ar aah 10aGegenstandpunktePolitische Vierteljahreszeitschrift aMünchencGegenstandpunkt Verlagd1992- aTrimestriel aRelations internationalesxPériodiques aRelations internationalesxPériodiques 3aFRbAbesc20060406gAFNOR 3aFRbISSNc20060401 a064 uhttp://www.gegenstandpunkt.com zContenu : Index alphabétique, géopolitque, thématique des articles parus de 1992 à 2008, certains articles parus en français, anglais, italien, russe et danois. Moteur de recherche.1 bno. 4 (dec-2003) -....cParisdMagasins/AnnexeeP 8° 6879 aZPAY aDEW 32701560nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154207003000175210003800205326001500243517002300258606004200281606004200323710005200365856010100417856010800518856009000626856010800716856010800824856010800932955007001040972000901110991001801119992003301137992001601170039988139000002030420130319051447.01 a0891-2432 aFNSP154785 a0000020304 a19901213a19879999 ba0 aeng aGB aaga 10aGender & society 1aVol. 1, no. 1 (mar-1987)- aNewbury Park, Calif.cSaged1987- aBimestriel10aGender and society aDiscrimination sexuellexPériodiques aRelations hommes-femmesxPériodiques02aSociologists for Women in Societyc(Etats-Unis)4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=103730 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/08912432.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 1 (mar-1989) -....cParisdMagasins/AnnexeeP 8° 5216 aZPAY aexempb201110 aGEO RS Sans aspect régional aDEW 305-30601298nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000270013921000250016632600170019153000340020860600570024260600480029960600420034785601030038985601080049285601090060085601080070995500700081797200090088799100180089699200420091499200160095603674199X000019552320130828181423.01 a1355-2074 aFNSP718435 a19900101a19959999 ba0 aeng aGB aaia 10aGender and development aOxfordcOxfamd1995- a3 nos par an 0aGender and developmentbPrint aFemmesyPays en voie de développementxPériodiques aFemmes dans le développementxPériodiques aRelations hommes-femmesxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=103705 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713422432db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 1 (fev-1995) -....cParisdMagasins/AnnexeeP 8° 6264 aZPAY aexempb201301 aGEO RO Pays en voie de développement aDEW 305-30601292nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001300154210004600167210002400213326001600237530002000253606003600273606002700309676000800336856008700344856010800431856006300539856010000602955006600702955005900768955006900827972000900896992001600905992000900921039925196000001409020131219164035.01 a1155-3219 aFNSP137999 a0000014090 a19901004a19909999 ba0 afre aFR aaha 00aGenèses aPariscGenèsescCalmann-Lévyd1990-1992 aPariscBelind1992- aTrimestriel00aGenèsesbParis aSciences socialesxPériodiques aHistoirexPériodiques a9094 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-geneses.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr/web/revues/home/prescript/revue/genes zAccès libre au texte intégral à partir de 1990 à l'exception des années les plus récentes1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9091 bno. 1 (1990) -....cParisdMagasins/AnnexeeP 8° 56671 bL'année en courscParisdBibliothèque de rechercheeP 8° 5667 aZCAD aDEW 900-907 aPBUL01430cas0 2200373 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147110001600154200004800170210007700218326001600295421004000311430004400351530002600395710006000421801001300481856009200494856010800586856004900694856010000743856002900843856006800872955006700940972000901007992002601016992001401042055391508000033466520130319051450.01 a1627-4873 a058815139 aissn16274873 a0000334665 a20010427a20009999k y0frey0103 ba0 afre aFR aahu uu 10aGéocarrefourerevue de géographie de Lyon a[Lyon]c[Association des amis de la Revue de géographie de Lyon]d2000- aTrimestriel 1tCollection Géocarrefourx1778-7408 1tRevue de géographie de Lyonx0035-113X10aGéocarrefourb(Lyon)02aAssociation des amis de la Revue de géographie de Lyon 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-geocarrefour.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr/listIssues.do?key=geoca zAccès libre au texte intégral à partir de 2000 à l'exception des années les plus récentes4 uhttp://geocarrefour.org/ zContenu : sommaires et résumés depuis le vol. 75 no. 1 (2000)1 bvol. 75 no. 1 (2000) -....cParisdMagasins/AnnexeeP 4° 5679 aZPAY aGEO RA4. 06 France 01 aDEW 330.901280nas 2200349 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200001800148210003600166210003600202326001600238430004900254530002500303606004200328606005700370710008400427801001300511856009000524856010800614856004700722856007400769955006600843972000900909992001200918054376890000032635820140107131955.01 a1620-9869 a a20009999k fre ba0 afre aFR a 0  ar aah z 0 10aGéoéconomie aPariscEditions Choiseuld2003- aPariscGéoéconomied2000-2002 aTrimestriel 1tRevue française de géoéconomiex1284-934010aGéoéconomiebParis aGéographie économiquexPériodiques aRelations économiques internationalesxPériodiques02aInstitut Choiseul pour la politique internationale et la géoéconomiec(Paris) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-geoeconomie.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.geoeconomie.org/rfg/default.htm zContenu : sommaire et résumés des articles à partir du n° 1, 19971 bno. 14 (été-2000) -....cParisdMagasins/AnnexeeP 8° 6331 aZPAY aDEW 33701013nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000081001502100040002313000098002713260016003693360058003853370066004434520067005097120051005768010013006278560090006409550005007300000534062000053406220130319051450.0 a0000534062 a a19659999k fre 01 ba0 amul aSE az aah z  adr 10aGeografiska Annaler. Series A. Physical Geographyb[Ressource électronique] aOxfordcBlackwell Publishersd1965- aAccès au texte intégral (réservé aux sites de Sciences-Po) jusqu'aux 5 dernières années aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou télédéchargement 1tGeografiska Annaler. Series A. Physical Geographyx(0435-3676)02aSwedish Society for Anthropology and Geography 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/04353676.html1 r01944nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200025900139210002300398326001100421430013300432452013800565530012500703606007800828606004900906606006600955606003601021710010101057830005301158856019201211955006601403972000901469992004201478992003201520992001601552992001401568040208915000015380520131008125502.01 a1026-1869 aFNSP599729 a19900101a19959999 f ba0 amul aFR aaka 10aGeographical distribution of financial flows to aid recipientsiDibursements, commitments, country indicatorsd= Répartition géographique des ressources financières allouées aux bénéficiaires de l'aideiVersements, engagements, indicateurs par pays aPariscOCDEd1995- aAnnuel 1aGeographical distribution of financial flows to developing countries. Disbursements, commitments, economic indicatorsx1015-3934 1tGeographical distribution of financial flows to aid recipients. Disbursements, commitments, country indicators (Online)‎x1996-252510aGeographical distribution of financial flows to aid recipients. Disbursements, commitments, country indicators‎bPrint aAide économiquexCoopération internationalexStatistiquesxPériodiques aAide économiquexStatistiquesxPériodiques aAide économiqueyEurope de l'EstxStatistiquesxPériodiques aPrêts étrangersxPériodiques02aOrganisation de coopération et de développement économiquesbComité d'aide au développement a1993-1998 : collection envoyée au CTles en 20134 uhttp://oberon.sourceoecd.org/vl=2302688/cl=33/nw=1/lg=fre/rpsv/outlook_annuals.htmzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1989/1993) -(1994/1998);cParisdMagasins/AnnexeeP 4° 5220 aZPAY aGEO RO Pays en voie de développement aGEO RA2.02 Europe orientale aDEW 310-319 aDEW 338.901316nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210004600179326001600225430004500241606003000286710003700316801002100353856009000374856010800464856010300572856010800675955007800783957007500861972000900936992002100945992001200966038712644000002034720131127163314.01 a0016-7398 aFNSP155037 a0000020347 a19900101a18939999 ba0 aeng aGB aahu 10aGeographical journal aLondoncRoyal Geographical Societyd1893- aTrimestriel 1aProceedings - Royal Geographical Society aGéographiexPériodiques02aRoyal Geographical Societyc(GB) 3aFRbCCN0016-73984 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00167398.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=106131 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(jan-1948) -vol. 178 no. 4 (dec-2012)cParisdMagasins/AnnexeeP 8° 00781 bvol. 151 (1985) -vol. 160 (1994)cParisdMagasins/AnnexeeP Index 0753 aZPAY aGEO RQ Universel aDEW 91001097nas 2200325 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200003800148210002900186210003100215210005200246326002600298326002300324606004200347606004700389801001300436856010700449856010800556955006600664972000900730991001800739992001400757045103232000028181320140106115805.01 a1295-926X a a19999999k fre ba0 afre aFR a 0  ar aah z 0 10aGéographie, économie, société aCachancLavoisierd2004- aPariscElsevierd2002-2003 aQuétignycAlternatives économiquesd1999-2001 aSemestrielb1999-2002 aTrimestrielb2003- aGéographie économiquexPériodiques aGéographie de la populationxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-geographie-economie-societe.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1999) -....cParisdMagasins/AnnexeeP 8° 6510 aZPAY aexempb201212 aDEW 330.900995nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000280015421000280018232600160021051700340022653000350026060600380029567600080033371000400034185600790038185600450046095500660050595500590057197200090063099100180063999200120065703998110X000006926020130319051450.01 a1165-0354 aFNSP320364 a0000069260 a19900101a19929999 ba0 afre aFR aaha 10aGéographie et cultures aPariscHarmattand1992- aTrimestriel10aRevue géographie et cultures 0aGéographie et culturesbParis aGéographie humainexPériodiques a30602aAssociation Géographie et cultures4 uhttp://www.editions-harmattan.fr/index.asp?navig=catalogue&obj=revue&no=17 zContenu : sommaires depuis le n°1, 19921 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3061 bno. 1 (1992) -....cParisdMagasins/AnnexeeP 8° 5827 aZPAY aexempb201112 aDEW 30401451cas0 2200421 450 001001000000002001100010005001700021011001400038035001700052035001700069100004100086101000800127102000700135105001800142110001600160200001600176207003300192210003000225430005700255452003700312530002600349606003200375606004400407676000800451801003000459801002300489801001300512802000700525856004200532856006000574856010900634856010800743955006700851955007200918972000900990991001800999992001201017048813249000028068720130916122738.01 a1465-0045 accn1465-0045 aissn14650045 a20000513a19989999k y0frey0103 ba0 aeng aGB ay 0  aaia 0uu 10aGeopolitics 0aVol. 3, no. 1 (summer 1998)- aLondoncFrank Cassd1998- 1tGeopolitics and international boundaries,x1362-9379 1tGeopolitics (Online),x1557-302810aGeopoliticsb(London) aGéopolitiquexPériodiques aRelations internationalesxPériodiques a327 3aFRbAbesc20090308gAFNOR 3aFRbISSNc20090225 0aFRbFNSP a024 uhttp://www.frankcass.com/jnls/gib.htm zContenu : sommaires et résumés depuis le vol. 1, n°14 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713635150db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 3 no. 1 (été-1998) -....cParisdMagasins/AnnexeeP 8° 6326 aZSAB aexempb201309 aDEW 32700866nas 2200277 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000042001412100026001833000088002093260011002974300030003085170060003386060026003987100043004248560041004679550052005089920012005609920016005720000267349000026734920130319051451.0 aFNSP925960 a0000267349 a19990303b19981998 ba0 afre aFR aaka 13aLa Géopolitique mondiale des drogues aPariscOGDd1998-1998 aLe rapport est seulement diffusé sur internet à partir de l'édition de 1998/1999 aAnnuel 1aGéopolitique des drogues10aRapport annuel - Observatoire géopolitique des drogues aDroguesxPériodiques02aObservatoire géopolitique des drogues uhttp://www.ogd.org/2000/fr/99fr.html1 b(1997/1998)cParisdMagasins/AnnexeeP 4° 6800 aDEW 303 aDEW 364-36501074nas 2200301 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200009600148210005800244326002300302326002800325430007700353530004700430606003800477712006500515801001300580856009100593955006700684972000900751992001200760058780106000038509620130916171412.01 a1534-9977 a a20009999k fre ba0 aeng aUS a 0  ar aah z 0 14aThe George Washington International law reviewfThe George Washington University Law School aWashington, D.C.cGeorge Washington Universityd2000- aTrimestrielb2001- a3 nos par anb2000-2000 1tGeorge Washington journal of international law and economics,x0748-4305 aGeorge Washington international law review aDroit internationalxPériodiques02aGeorge Washington Universityc(Washington, D.C.)bLaw School 0aFRbFNSP4 uhttp://www.gwilr.org/zAccès libre au texte intégral à partir du vol. 40 no.1, 20081 bvol. 33 no. 1 (2000) -....cParisdMagasins/AnnexeeP 8° 4906 aZCAD aDEW 34101186nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200001900163210002600182326001600208452004000224607003800264710003200302801001300334856010100347856010800448856010800556856010800664955006700772972000900839992001200848039320200000058897920130319051451.01 a0266-3554 a0000588979 a a19849999k fre ba0 aeng aGB a 0  ar aah z 0 10aGerman history aLondoncArnoldd1984- aTrimestriel 1tGerman history (Online),x1477-089X aAllemagnexHistoirexPériodiques02aGerman History Society (GB) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=102059 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 18 no. 1 (2000) -....cParisdMagasins/AnnexeeP 8° 6729 aZPAY aDEW 94301267nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210002400174326002300198326002900221607002800250676000800278710005600286856004100342856011800383856010900501856010800610955006600718955007000784972000900854991001700863992002500880992001200905040099199000008263820130319051452.01 a0964-4008 aFNSP368513 a0000082638 a19900101a19929999 ba0 aeng aGB aaha 10aGerman politics aLondoncCassd1992- aTrimestrielb2004- a3 n°s par anb1992-2003 aAllemagnexPériodiques a94002aAssociation pour l'étude de la politique allemande4 uhttp://www.frankcass.com/jnls/gp.htm zContenu : sommaires depuis le vol. 3, n°1, 1994 ; résumés depuis le vol. 7, n°1 ; sommaire du n° à paraitre4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713635220db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 bvol. 1 no. 1 (avr-1992) -....cParisdMagasins/AnnexeeP 8° 5904 aZSAB aexemp$201201 aGEO RA5.01 Allemagne aDEW 94301518cas0 2200409 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200006100180207002300241210006000264210006600324210005500390210003900445326001600484517000900500607005500509607004900564607002800613710006300641801003000704801002300734802000700757856012800764856010800892955007101000992002501071992001201096093815360000113057720130319051452.01 a1045-0300 aissn10450300 a0001130577 a19861121a19869999k y0frey0103 ba0 aeng aUS ay 0  ar aaha 0uu 10aGerman politics and societyfCenter for European studies 0aNo. 9 (Oct. 1986)- aCambridge, MasscThe Center for European studiesd1986-1 aCambridge, MasscThe Center for European studiesd1986-[1993]1 aBerkeley, CAcUniversty of Californiad[1993-1997]2 aBeds (GB)cBerghan journalsd1998- aTrimestriel10aGP&S aAllemagnexPolitique et gouvernementxPériodiques aAllemagnexConditions socialesxPériodiques aAllemagnexPériodiques02aCenter for German and European studiesc(Washington, D.C.) 3aFRbAbesc20080125gAFNOR 3aFRbISSNc20051021 a014 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=9GJ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 24 no. 1 (pri-2006) -....cParisdMagasins/AnnexeeP 8° 7000 aGEO RA5.01 Allemagne aDEW 94301170nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200007200139210002200211326001600233430006700249452004300316517005500359530004100414606006600455710005100521801002100572856010300593856004200696955006300738972000900801991001800810992001600828039248550000002078220130911163310.01 a0151-0193 aFNSP156377 a19900101a19789999 ba0 afre aFR aahu 10aGérontologie et société‎fFondation nationale de gérontologie aPariscFNGd1978- aTrimestriel 1aCahiers de la Fondation nationale de gérontologie,x0241-5771 1tGérontologie et société,x2101-021810aCahiers de la Fondation nationale de gérontologie aGérontologie et société‎bParis aPersonnes âgéesxProtection, assistance, etc.xPériodiques02aFondation nationale de gérontologiec(France) 3aFRbCCN0151-01934 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-gerontologie-et-societe.htm? zAccès aux sommaires et aux résumés1 bno. 5 (jun-1978) -....cParisdMagasins/AnnexeeP 8° 4424 aZPAY aexempb201106 aDEW 305-30601403nas 2200409 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001392000047001452100050001923000047002423260011002894300081003004510058003815170044004395300047004836010038005306060038005686060050006066070053006567120024007098010021007338560029007548560042007839550054008259550054008799720009009339920025009429920012009679920014009790000083238000008323820130319051452.01 a0070-394X aFNSP370950 a0000083238 a19900101a19589999 ba0 ager aDE ar10aGeschäftsbericht der Deutschen Bundesbank aFrankfurt am MaincDeutsche Bundesbankd1958- aEn version électronique à partir de 2007 aAnnuel 1aGeschaftsbericht der Bank Deutscher Länder für die Jahre < Coll. 4°0082 > 1aAnnual report - Deutsche Bundesbank < P 4°5471 bis >10aGeschäftsbericht - Deutsche Bundesbank00aGeschäftsbericht der Deutschen Bundesbank02aDeutsche BundesbankxPériodiques aFinancesyAllemagnexPériodiques aPolitique monétaireyAllemagnexPériodiques aAllemagnexConditions économiquesxPériodiques02aDeutsche Bundesbank 3aFRbCCN0070-394X4 uhttp://www.bundesbank.de zContenu : Texte intégral depuis 19961 b(1957)-(1979)cParisdMagasins/AnnexeeCOL4°00821 b(1980)-(2006)cParisdMagasins/AnnexeeP 4° 5471 aZGRA aGEO RA5.01 Allemagne aDEW 332 aDEW 330.901107nls 2200349 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000095001502100050002452300024002953260011003194510040003306010038003706060038004086060050004466070053004967100024005498010013005738560029005868560086006159550005007019920025007069920012007319920014007430001130124000113012420130319051452.0 a0001130124 a a19969999k fre 01 ba0 ager aDE ar aak z  adr 10aGeschäftsbericht der Deutschen Bundesbankb[Ressource électronique]fDeutsche Bundesbank aFrankfurt am MaincDeutsche Bundesbankd1996- aRevue électronique aAnnuel 1tAnnual report - Deutsche Bundesbank02aDeutsche BundesbankxPériodiques aFinancesyAllemagnexPériodiques aPolitique monétaireyAllemagnexPériodiques aAllemagnexConditions économiquesxPériodiques02aDeutsche Bundesbank 0aFRbFNSP4 uhttp://www.bundesbank.de zContenu : texte intégral du rapport depuis 1996 en version allemande et anglaise1 r aGEO RA5.01 Allemagne aDEW 332 aDEW 330.900978nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004500154210004800199326001600247607003800263607004900301801002100350856007000371856003600441955006600477957005700543972000900600991001800609992002500627992001200652039556417000002058920130319051452.01 a0340-613X aFNSP155984 a0000020589 a19900101a19759999 ba0 ager aDE aaha 10aGeschichte und Gesellschaft (Göttingen) aGöttingencVandenhoeck und Ruprechtd1975- aTrimestriel aAllemagnexHistoirexPériodiques aAllemagnexConditions socialesxPériodiques 3aFRbCCN0340-613X4 uhttp://hsozkult.geschichte.hu-berlin.de/zeitschr/gug/gugindex.htm zContenu : sommaires depuis 19841 bvol. 6 no. 1 (1980) -....cParisdMagasins/AnnexeeP 8° 44281 b(1975) -(1984)cParisdMagasins/AnnexeeP Index 0348 aZPAY aexempb200911 aGEO RA5.01 Allemagne aDEW 94300851nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003800163210004100201326001600242430002000258607005500278801001300333856002500346856006500371955006700436972000900503992002500512992001200537168221276000045983020140107180033.01 a1619-6910 a0000459830 a a20029999k fre ba0 ager aDE a 0  ar aah z 0 10aGesellschaft, Wirtschaft, Politik aLeverkusencLeske und Budrichd2002- aTrimestriel 1tGegenwartskunde aAllemagnexPolitique et gouvernementxPériodiques 0aFRbFNSP4 uhttp://www.gwp-pb.de zContient : Sommaires des numéros parus depuis le n°1, 20001 bvol. 51 no. 1 (2002) -....cParisdMagasins/AnnexeeP 8° 2606 aZPAY aGEO RA5.01 Allemagne aDEW 94301156cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200004300180207002300223210004800246326001200294430004800306517004400354530003300398606004500431676000800476801003000484801002300514802000700537856003200544856003000576955006700606955006300673992002200736992001200758130470139000117457620130319051452.01 a1969-1009 aissn19691009 a0001174576 a20090116a20099999k y0frey0103 ba0 afre aFR ay  ar aafu uu 10aGestion & finances publiquesela revue 0ano. 1 (jan-2009) - aPariscGestion et Finances Publiquesd2009- aMensuel 1tLa Revue du Trésor (Paris)xISSN 0035-271310aGestion et finances publiquesela revue00aGestion & finances publiques aFinances publiquesyFrancexPériodiques a336 3aFRbAbesc20090611gAFNOR 3aFRbISSNc20090427 a074 uhttp://www.gestionfipu.com/ zContient : sommaires 20091 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3361 bno. 1 (jan-2009) -....cParisdMagasins/AnnexeeP 4° 0059 aGEO RA4.06 France aDEW 33600983nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210007300188326001500261606003600276606004200312606003700354710006300391856004900454856003700503955007000540972000900610991001800619992001600637992001600653036987697000017679420130319051453.01 a1405-1079 aFNSP663053 a0000176794 a19900101a19929999 ba0 aspa aMX aaja 10aGestión y política pública aMéxicocCentro de Investigación y Docencia Económicas, A.Cd1992- aSemestriel aScience politiquexPériodiques aAdministration publiquexPériodiques aPolitique publiquexPériodiques02aCentro de investigación y docencia económicasc(Mexique)4 uhttp://www.gestionypoliticapublica.cide.edu/ zAccès libre au texte intégral.1 bvol. 1 no. 1 (jul-1992) -....cParisdMagasins/AnnexeeP 8° 6205 aZSAB aexempb201301 aDEW 350-354 aDEW 320-32100880nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210003000188326001200218606003900230710004800269801002100317856004000338856003600378955010000414972000900514991001800523992002500541992001200566038713659000002109720130319051453.01 a0016-9447 aFNSP157087 a0000021097 a19900101a19502004 ba0 ager aDE aafu 10aGewerkschaftliche Monatshefte aKölncBund-Verlagd1950- aMensuel aSyndicatsyAllemagnexPériodiques02aDeutscher GewerkschaftsbundbBundesvorstand 3aFRbCCN0016-94474 uhttp://www.gmh.dgb.de/jahresin.html zContenu : Sommaires depuis 19501 bvol. 24 no. 10 (oct-1973) -vol. 55 no. 11/12 (nov/dec-2004)cParisdMagasins/AnnexeeP 8° 3357 aZPAY aexempb200911 aGEO RA5.01 Allemagne aDEW 33101168cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200003800174210003100212300005300243326001500296452005800311530005600369606004500425710007900470801003000549801002300579802000700602856005200609856004800661955006400709992003300773992001200806058799907000114350920130319051453.01 a1593-0793 aissn15930793 a0001143509 a20010829a20019999k y0frey0103 ba0 aita aIT ay  aaju uu 10aGiornale di storia costituzionale aMaceratacQuodlibetd2001- aContient des articles en français et en anglais aSemestriel 1tGiornale di storia costituzionale (Online)x1827-795010aGiornale di storia costituzionaleb(Testo stampato) aHistoire constitutionnellexPériodiques02aLaboratorio di storia costituzionale "Antoine Barnave"c(Macerata, Italie) 3aFRbAbesc20070713gAFNOR 3aFRbISSNc20010829 a0d4 uhttp://www.quodlibet.it/generale/giostocost.htm zContenu : sommaires depuis le n° 1 de 20011 bno. 13 (jan-2007) -....cParisdMagasins/AnnexeeP 8° 7030 aGEO RS Sans aspect régional aDEW 34200892nas0 2200313 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004700163210004000210301003400250326001500284606003700299607003300336801003000369856003500399856003600434955007100470972000900541992001600550992001200566113696620000107909020130319051454.01 a1976-068X a0001079090 a20070402a20069999k y0frey0103 ba0 aeng aKR a 0  ar aaja 0 10aGlobal AsiafEast Asia Foundation (Séoul) aSéoulcEast Asia Foundationd2006- aDemande de numérotation ISSN aSemestriel aEconomie politiquexPériodiques aAsie orientalexPériodiques 3aFRbAbesc20070402gAFNOR4 uhttp://globalasia.org/main.php zAccès libre au texte intégral1 bvol. 1 no. 1 (sep-2006) -....cParisdMagasins/AnnexeseP 4° 7187 aZPAY aGEO RH Asie aDEW 95001319nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200011800163207002900281210002800310320002300338326001800361430003200379517003800411606002300449606004400472606004400516712007500560801001300635856010900648856010800757955007100865972000900936992001200945078920256000060900020130319051454.01 a1478-1158 a0000609000 a a20039999 fre 01 ba0 aeng aGB a 0  ar aai z 0 10aGlobal change, peace & securityfpublished in cooperation with the School of Social Sciences, La Trobe University 1aVol.15, n°1 (Feb.2003)- aAbingdoncCarfaxd2003- aISSN non vérifié a3 n°s par an 1tPacifica review,x1323-910410aGlobal change, peace and security aPaixxPériodiques aRelations internationalesxPériodiques aSécurité internationalexPériodiques02aLa Trobe Universityc(Melbourne, Australie)bSchool of Social Sciences 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713440448db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 15 no. 1 (fev-2003) -....cParisdMagasins/AnnexeeP 8° 6505 aZSAB aDEW 32701272nas0 2200337 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109110001600127200006000143210004000203301004300243306010000286326001100386437005200397606007000449710002500519801003000544801001300574830007500587856012000662856004300782955006500825972000900890992002100899992001400920088969754000084401020130319051454.0 a0000844010 a20050819a19969999k y0frey0103 ba0 aeng aCH a 0  aakaih 0 14aThe global competitiveness reportfWorld Economic Forum aGenevacWorld Economic Forumd1996- aDemande de numérotation ISSN en cours aVols. 1999-2003/2004 publ. par Oxford University Press ; 2004/2005-.... par Palgrave Macmillan. aAnnuel 1tThe World competitiveness report ...x1015-5449 aCompétitivité (économie politique)xStatistiquesxPériodiques02aWorld Economic Forum 3aFRbAbesc20050819gAFNOR 0aFRbFNSP ademandé par Thomas Orliac : transmis aux ANNUAIRES le 21/08/2005 (dm)4 uhttp://www.weforum.org/site/homepublic.nsf/Content/Global+Competitiveness+Programme%5CGlobal+Competitiveness+Report zContenu : extraits du rapport en ligne1 b(2004/2005) -(2007/2008)cParisdMagasins/AnnexeeP 4° 7078 aZPAY aGEO RQ Universel aDEW 338.900943cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200002900180210003300209676000800242710003100250801003000281801002300311801001300334802000700347856004300354856003700397955006100434955005200495972000900547992002100556992001600577104769106000051706620130319051454.0 a1749-3161 aissn17493161 a0000517066 a20030312a20029999uuuy0frey50 ba0 aeng aGB ay 0  ar aaka 0uu 10aGlobal corruption report aLondoncProfile Booksd2002- a36002aTransparency International 3aFRbAbesc20090827gAFNOR 3aFRbISSNc20090617 0aFRbFNSP a02 uhttp://www.globalcorruptionreport.org/ zAccès libre au texte intégral.1 bLa dernière annéecParisd27, Salle 4e étageeDEW 3601 b(2003) -...cParisdMagasins/AnnexeeP 8° 6673 aZPAY aGEO RQ Universel aDEW 364-36501214cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200001700180207003300197210002900230326001600259430004500275452003700320606003800357606003400395801003000429801002300459802000700482856010900489856010800598955007600706972000900782992001600791992003300807094895872000116273920130319051454.01 a1744-0572 aissn17440572 a0001162739 a20040423a20049999k y0frey0103 ba0 aeng aGB ay 0  ar aaha 0uu 10aGlobal crime 0aVol. 6, issue 1 (Feb. 2004)- aLondoncRoutledged2004- aTrimestriel 1tTransnational organised crimex1357-7387 1tGlobal crime (Online)x1744-0580 aCrimes et criminelsxPériodiques aCrime organiséxPériodiques 3aFRbAbesc20090225gAFNOR 3aFRbISSNc20090225 a024 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t714592492db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1/2 (fev/mai-2008) -....cParisdMagasins/AnnexeeP 8° 7074 aZPAY aDEW 364-365 aGEO RS Sans aspect régional01405nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005000139210004000189225002200229300002900251326001100280430003300291452005200324517000800376606005900384606008400443710007000527830005900597856023600656955005400892972000900946991001800955992004200973992001201015992001601027040182819000021547920131011110149.01 a1020-5454 aFNSP777291 a19900101a19979999 ba0 aeng aUS aaka 10aGlobal development finance‎fThe World Bank aWashington, D.C.cWorld Bankd1997-23aA World Bank book aPublication en 2 volumes aAnnuel 1aWorld debt tablesx0253-2859 1tGlobal development finance (Online),x1996-842610aGDF aFinancesyPays en voie de développementxPériodiques aDettes extérieuresyPays en voie de développementxStatistiquesxPériodiques02aBanque internationale pour la reconstruction et le développement atoute la collection en depôt au CTLES en juillet 2013 uhttps://acces-distant.sciences-po.fr/fork?http://ddp-ext.worldbank.org/ext/DDPQQ/member.do?method=getMembers&userid=1&queryId=zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1997) -(2005)cParisdMagasins/AnnexeeP 4°4473 aZPAY aexempb201306 aGEO RO Pays en voie de développement aDEW 332 aDEW 310-31901166nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005900154210004000213326001100253517003000264606004500294606003500339607007400374676001000448710007000458856013000528955006400658955005300722972000900775992004200784992001400826040152685000015595120130319051454.01 a1014-8906 aFNSP607255 a0000155951 a19900101a19909999 f ba0 aeng aUS aaka 10aGlobal economic prospects and the developing countries aWashington, D.C.cWorld Bankd1990- aAnnuel10aGlobal economic prospects aDéveloppement économiquexPériodiques aAide économiquexPériodiques aPays en voie de développementxConditions économiquesxPériodiques a338.902aBanque internationale pour la reconstruction et le développement4 uhttp://extsearch.worldbank.org/servlet/SiteSearchServlet?q=global%20economic%20prospects%20and%20the%20developing%20countries1 bLa dernière annéecParisd27, Salle 1er étageeDEW 338.91 b(1993) -....cParisdMagasins/AnnexeeP 4° 6458 aZPAY aGEO RO Pays en voie de développement aDEW 338.900905nls 2200301 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000054001642100052002182300024002703260016002946060057003106060043003678010013004108560032004238560108004559550005005639920023005689920012005910000995136000099513620130319051454.01 a1524-5861 a0000995136 a a20009999k fre 01 ba0 aeng aUS ar aah z  adr 10aGlobal economy journalb[Ressource électronique] aBerkeley, CAcBerkeley Electronic Pressd2000 - aRevue électronique aTrimestriel aRelations économiques internationalesxPériodiques aFinances internationalesxPériodiques 0aFRbFNSP4 uhttp://www.bepress.com/gej/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RC2 Etats-Unis aDEW 33201141cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200003400174207003100208210003600239326001600275530004300291606004700334606002900381676000800410801003000418801002300448802000700471856006400478856007600542955006700618955007300685972000900758992001200767076788482000107885920130319051454.01 a1526-3800 aissn15263800 a0001078859 a20000630a20019999k y1frey0103 ba0 aeng aUS a 0  aaha 0uu 10aGlobal environmental politics 0aVol. 1, no. 1 (Feb. 2001)- aCambridge, MAcMIT Pressd2001- aTrimestriel10aGlobal environmental politicsb(Print) aPolitique de l'environnementxPériodiques aEcologismexPériodiques a333 3aFRbAbesc20060106gAFNOR 3aFRbISSNc20000630 a014 uhttp://muse.jhu.edu/journals/global_environmental_politics/ zContenu : sommaires et résumés d'articles depuis le vol.3, n°1, 20031 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3331 bvol. 1 no. 1 (mai -2001) -....cParis, Magasins/Annexes : P 8° 6948 aZSAB aDEW 33301307nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154207002600176210005400202326002300256326002800279606004400307606003600351676000800387856007200395856003400467856003600501856012800537856010800665955006700773955006600840972000900906991001800915992001200933040319784000015852220130319051454.01 a1075-2846 aFNSP613375 a0000158522 a19900101a19959999 ba0 aeng aUS aaha 10aGlobal governance 1avol. 1, no. 1 (1995)- aBoulder, COcLynne Rienner Publishers, Incd1995- aTrimestrielb1998- a3 nos par anb1995-1997 aRelations internationalesxPériodiques aScience politiquexPériodiques a3274 uhttp://www.hunger.brown.edu/Departments/ACUNS/NEW_GG/GG.index.shtml4 uhttp://www.rienner.com/gg.htm zContenu : sommaires depuis 19994 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=25L&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 1 no. 1 (1995) -....cParisdMagasins/AnnexeeP 8° 6127 aZSAB aexempb201204 aDEW 32701234nas 2200349 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000092001502100030002422250049002723000067003213260011003884510114003996060044005136060048005577100055006058010013006608560066006738560036007399550047007759720009008229920021008319920016008529920016008680000538910000053891020130319051454.0 a0000538910 a a19999999k fre ba0 aeng aUS a 0  ar aak z 0 10aGlobal illicit drug trendsfUnited Nations Office for Drug Control and Crime Prevention aNew-YorkcUN-ODCCPd1999-20aODCCP studies on drugs and crimeestatistics aL'organisme éditeur devient en 2003 Office on Drugs and Crime aAnnuel 1tTendances mondiales des drogues illicitesfNations Unies Office contre la drogue et le crime < P4°6978 bis > aToxicomaniexStatistiquesxPériodiques aDroguesxTraficxStatistiquesxPériodiques02aNations UniesbOffice contre la drogue et le crime 0aFRbFNSP4 uhttp://www.unodc.org/unodc/en/global_illicit_drug_trends.html zAccès libre au texte intégral1 b(2003)cParisdMagasins/AnnexeeP 4° 6978 aZGRA aGEO RQ Universel aDEW 364-365 aDEW 310-31900953nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005600163210004400219326001600263530003600279606004800315606004400363676000800407801001300415856004200428856007800470955007000548972000900618992001200627058263780000048688720130319051455.01 a1470-2266 a0000486887 a a20019999k fre ba0 aeng aGB a 0  ar aah z 0 10aGlobal networksea journal of transnational affairs aOxford, UK;Malden, MAcBlackwelld2001- aTrimestriel00aGlobal networksb(Oxford.Print) aMondialisationxAspect socialxPériodiques aRelations internationalesxPériodiques a303 0aFRbFNSP4 uhttp://www.globalnetworksjournal.com/ zContenu : sommaires des numéros publiés à partir du n°1, january 20011 bvol. 1 no. 1 (jan-2001) -....cParisdMagasins/AnnexeeP 8° 6650 aZSAB aDEW 30300928nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002500163210002400188326001800212606003600230606004800266801001300314856010800327856010800435955007000543972000900613992001600622064130304000042151620130319051455.01 a1468-0181 a0000421516 a a20019999k fre ba0 aeng aGB a 0  ar aai z 0 10aGlobal social policy aLondoncSaged2001- a3 n°s par an aPolitique socialexPériodiques aMondialisationxAspect socialxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (avr-2001) -....cParisdMagasins/AnnexeeP 8° 6603 aZSAB aDEW 360-36301070nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001900139210002800158326002300186326002800209430004300237606004400280856005700324856006000381856010900441856010800550955007100658972000900729991001800738992001200756055053386000020332820140114174152.01 a1360-0826 aFNSP741163 a19900101a19969999 ba0 aeng aGB aaha 10aGlobal society aAbingdoncCarfaxd1996- aTrimestrielb1999- a3 nos par anb1996-1998 1aParadigms (Canterbury)xISSN 0951-9750 aRelations internationalesxPériodiques4 uhttp://www.tandf.co.uk/journals/carfax/13600826.html zContenu : sommaires depuis le vol. 10, n°1, janv. 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713423373db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 10 no. 1 (jan-1996) -....cParisdMagasins/AnnexeeP 8° 6284 aZSAB aexempb201301 aDEW 32700938cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200005600174210007700230326001500307530002900322801003000351801003000381802000700411856003500418856006500453955006600518972000900584992001900593992001200612044943334000081969220130319051457.01 a1481-5869 accn1481-5869 a0000819692 a20000407a19989999 y0frey0103 ba0 afre aCA ay 0  aaja 0 10aGlobeerevue internationale d'études québécoises aMontréalcProgramme d'études sur le Québec, Université McGilld1998- aSemestriel10aGlobeb(Montréal. 1998) 3aFRbAbesc20081203gAFNOR 3aFRbAbesc20040918gAFNOR a044 uhttp://www.revueglobe.uqam.ca/ zContenu : sommaires et résumés depuis le vol.1, no 1, 19981 bvol. 5 no. 2 (2002) -....cParisdMagasins/AnnexeeP 8° 6820 aZGRA aGEO RC1 Canada aDEW 97101056nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210002500178326001200203430005000215606003200265606005000297676001000347710004300357856004300400955006800443955017100511972000900682992003900691992001200730040212394000007348320130319051458.01 a1026-9452 aFNSP335135 a0000073483 a19900101a19929999 y ca0 arus aRU aafa 10aGosudarstvo i pravo aMoskvacNaukad1992- aMensuel 1aSovetskoe gosudarstvo i pravoxISSN 0038-5204 aDroityRussiexPériodiques aInstitutions politiquesyRussiexPériodiques a943.702aInstitut gosudarstva i pravac(Moscou)4 uhttp://www.igpran.ru/journal/index.php1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 943.71 bno. 3 (1992) -no. 6 (1997) ; no. 1 (1999) -no. 3 (1999) ; no. 3 (2000) -....cParisdMagasins/AnnexeeP 4° 0336wManque : no. 4 (2000) ; no. 10 (2000) ; no. 2 (2001) aZPAY aGEO RA7.21 Russie (depuis 1991-92) aDEW 34001175nas0 2200349 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003500163207001700198210004100215326001600256517003600272606003600308606004200344676001000386801003000396856011100426856010800537955006700645955006700712972000900779992002100788992001600809160348943000122702720130329100339.01 a2260-0965 a0001227027 a20120417a20129999k y0frey50 ba0 afre aFR ay  ar aaha 10aGouvernement & action publique 0ano 1 (2012)- aPariscPresses de Sciences Pod2012- aTrimestriel10aGouvernement et action publique aScience politiquexPériodiques aAdministration publiquexPériodiques a320.6 3aFRbAbesc20120417gAFNOR4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-gouvernement-et-action-publique.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 1 (jan/mar-2012) -....cParisdMagasins/AnnexeeP 8° 7182 aZPAY aGEO RQ Universel aDEW 320-32101482nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001500154207002900169210002900198326001600227530003000243606004200273606005500315606003600370676000800406856012800414856010800542856010100650856010800751955006700859955007000926955006900996972000901065991001801074992001601092040081168000002113920131219164141.01 a0952-1895 aFNSP157189 a0000021139 a19910103a19889999 ba0 aeng aGB aaha 10aGovernance 1aVol.1, no.1 (jan-1988) - aOxfordcBlackwelld1988- aTrimestriel 0aGovernancebOxford. Print aAdministration publiquexPériodiques aTechniques de décision en politiquexPériodiques aFonction publiquexPériodiques a3204 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=7QX&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101084 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bvol. 1 no. 1 (jan-1988) -....cParisdMagasins/AnnexeeP 8° 51641 bL'année en courscParisdBibliothèque de rechercheeP 8° 5164 aZCAD aexempb201011 aDEW 350-35400920nas 2200253 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210003900191326001600230606007000246856012800316856010800444955008400552991001800636992001200654039704165000020231820130319051500.01 a0740-624X aFNSP737433 a0000202318 a19900101a19849999 ba0 aeng aUS aaha 10aGovernment information quarterly aGreenwich, Conn.cJAI Pressd1984- aTrimestriel aPublications officiellesyEtats-UnisxBibliographiexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=GIQ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 13 no. 2 (1996) -vol. 16 no. 3 (1999)cParisdMagasins/AnnexeseP 8° 6282 aexempb201301 aDEW 01001399cas0 2200361 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116106000600123110001600129200012000145207002500265210002700290326001600317422004300333430004600376606003600422676000800458710008700466801003000553856003500583856003700618856012400655856010800779955006600887955006300953972000901016992001201025093787588000096695220130319051500.01 a1777-375X a0000966952 a20051206a20059999k y0frey0103 ba0 afre aFR ar aah 14aLes grands dossiers des sciences humainesfAssociation de formation, d'études et de recherche en sciences humaines 0aN° 1 (2005, déc.)- aAuxerrecAFERSHd2005- aTrimestriel 1tSciences humaines (Auxerre)x0996-6994 1tSciences humaines. Hors sériex1252-3429 aSciences humainesxPériodiques a30002aAssociation de formation, d'étude et de recherche en sciences humainesc(Auxerre) 3aFRbAbesc20060427gAFNOR4 uhttp://www.scienceshumaines.fr zContenu : sommaires et résumés4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/magazine-les-grands-dossiers-des-sciences-sumaines.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3001 bno. 1 (mar-2005) -....cParisdMagasins/AnnexeeP 4° 6218 aZPAY aDEW 30000820nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210004400189326001600233606004300249606003900292856004500331856005300376955007000429972000900499991001800508992001600526040038122000016097420130319051502.01 a0926-2644 aFNSP620043 a0000160974 a19900101a19929999 ba0 aeng aNL aaga 10aGroup decision and negotiation aDordrechtcKluwer Academic Publ.d1992- aTrimestriel aNégociations (affaires)xPériodiques aGestion d'entreprisexPériodiques4 uhttp://www.wkap.nl/jrnltoc.htm/0926-2644 zContenu : sommaires depuis le vol. 4, no 1, 19951 bvol. 4 no. 1 (jan-1995) -....cParisdMagasins/AnnexeeP 8° 6137 aZSAB aexempb201202 aDEW 650-65801291nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210006000176326001600236606004200252606004200294710006200336801002100398856012800419856010800547856010100655856010800756955009000864972000900954992001400963036304093000002082420131127163949.01 a0017-4815 aFNSP156446 a0000020824 a19900101a19709999 ba0 aeng aUS aahu 10aGrowth and change aLexington, KycCollege of Business and Economicsd1970- aTrimestriel aGéographie économiquexPériodiques aIndustriexLocalisationxPériodiques02aUniversity of KentuckybCollege of Business and Economics 3aFRbCCN0017-48154 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=GRC&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100950 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 2 no. 1 (jan-1971) -vol. 43 no. 4 (dec-2012)cParisdMagasins/AnnexeeP 4° 3192 aZPAY aDEW 330.901067cas0 2200325 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123110001600141200007000157210002400227326001100251517003400262530007100296607006200367712006500429801003000494801003000524856005600554856003600610955005300646972000900699992001900708992001400727094684863000091919720130319051503.0 a1760-902X a0000919197 a20060106a19999999k y0frey50 ba0 afre aFR ay 0  aakaih 0 13aLa GuadeloupefInstitut d'émission des départements d'Outre-mer aPariscIEDOMd1999- aAnnuel13aLa Guadeloupeerapport annuel13aLa Guadeloupe - Institut d'émission des départements d'Outre-mer aGuadeloupexConditions économiquesxPériodiques2rameau02aInstitut d'émission des départements d'Outre-merc(France) 3aFRbAbesc20100315gAFNOR 3aFRbAbesc20060113gAFNOR4 uhttp://www.iedom.fr/dom/guadeloupe/publications.asp4 zAccès libre au texte intégral1 b(1999) -....cParisdMagasins/AnnexeeP 8° 6855 aZGRA aGEO Guadeloupe aDEW 330.900929nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000022001502100005001722300024001773260014002016060029002156070034002448010013002788560192002918560108004839550005005919920031005969920012006270001132428000113242820130319051503.0 a0001132428 a a19909999k fre 01 ba0 aeng aGB ar aaa z  adr 10aGuardian (London) a aRevue électronique aQuotidien aActualitéxPériodiques aGrande-BretagnexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.02 Grande-Bretagne aDEW 05001403nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004800154210005100202326001600253430011000269517004800379606002500427676000800452710006100460801002100521856012300542856010800665955006700773955006500840957010900905972000901014991001801023992001201041001234641000002114420130319051504.01 a0984-2292 aFNSP157201 a0000021144 a19900101a19879999 ba0 afre aFR aahu 10aGuerres mondiales et conflits contemporains aPariscPresses universitaires de Franced1987- aTrimestriel 1aRevue d'histoire de la Deuxième guerre mondiale et des conflits contemporains (0755-1584) < P 8° 0738 >10aGuerres mondiales et conflits contemporains aGuerrexPériodiques a35502aInstitut d'histoire des conflits contemporainsc(France) 3aFRbCCN7016/68464 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-guerres-mondiales-et-conflits-contemporains.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3551 bno. 145 (fev-1987) -....cParisdMagasins/AnnexeeP 8° 07381 bno. 1 (1950) -no. 200 (2000)cParisdMagasinseDEW 355zCet index constitue le no. 231, 2008 de la revue aZCAD aexempb201102 aDEW 32701097nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000060001552100050002152250076002653000145003413260011004864300060004976060041005577100060005988560039006589550055006979720009007529920022007619920012007830000122643000012264320130319051504.01 a0984-5593 aFNSP504733 a0000122643 a19940329b19872008 ba0 afre aFR aaka 10aGuide budgétaire communal, départemental et régional aPariscLa Documentation françaised1987-200821aCollection Décentralisation. Série Budgets des collectivités locales aLes volumes du "Guide budgétaire communal, départemental et régional" sont publiés séparément et consultables en version électronique aAnnuel 1aGuide budgétaire communal et départementalx0984-5461 aBudgets locauxyFrancexPériodiques aFrancebDirection générale des collectivités locales4 uhttp://www.dgcl.interieur.gouv.fr/1 b(1987) -(2008)cParisdMagasins/AnnexeeP 4° 5004 aZGRA aGEO RA4.06 France aDEW 33601141nas 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000116001502070010002662100046002762250036003223260011003586060056003696060047004256060042004727100067005148010013005818560078005948560033006729550052007059720009007579920025007669920012007910000609085000060908520130319051504.0 a0000609085 a a20049999 fre 01 ba0 afre aFR a 0  ar aak z 0 10aGuide de l'environnement et de la qualité de l'habitatfMinistère de l'écologie et du développement durable 1a2004- aPariscLa Documentation françaised2004-20aCollection Droits et démarches aAnnuel aEnvironnementxDroityFrancexGuides, manuels, etc. aEnvironnementxDroityFrancexPériodiques aLogementxDroityFrancexPériodiques01aFrancebMinistère de l'écologie et du développement durable 0aFRbFNSP4 uhttp://www.ladocumentationfrancaise.fr/catalogue_pages/index.shtml?xtor=6 zContenu : résumé en ligne.1 b(2004-2005)cParisdMagasins/AnnexeeP 8° 6748 aZPAY aGEO RA4.06 France 01 aDEW 33301064nas 2200301 i 450 002001100000005001700011035001500028035001500043100004100058101000800099102000700107110001600114200004700130210002500177326001100202517006800213601006800281606007200349710005400421856004600475856004200521955006500563955006600628972000900694991001800703992002500721992001600746000018758120130409115237.0 aFNSP694404 a0000187581 a19900101a00019999 ba0 afre aFR aaka 10aGuide de l'étudiantfSciences po Bordeaux aBordeauxcIEPd0001- aAnnuel10aGuide de l'étudiant - Institut d'études politiques (Bordeaux)02aInstitut d'études politiquesc(Talence, Gironde)xPériodiques aEnseignement supérieuryFrancexProgrammes d'étudesxPériodiques02aInstitut d'études politiquesc(Talence, Gironde)4 uhttp://www.sciencespobordeaux.fr/accueil/ zContenu : présentation de l'institut1 b(1980/1981) -(2001/2002)cParisdMagasins/AnnexeeP 8° 54021 b(1952/1953) -(1979/1980)cParisdMagasins/AnnexeeCOL12°0107 aZGRA aexempb201303 aGEO RA4.06 France 01 aDEW 370-37901284cas0 2200433 450 001001000000002001100010005001700021011001400038035001400052035001700066035001600083035001700099035001500116100004100131101000800172102000700180105001800187106000600205110001600211200003400227210002600261530004300287606003400330606003300364606005500397676000800452801003000460801003000490801003000520801003100550801002300581802000700604856006900611856005400680955007000734972000900804992002500813992001200838036062421000082326320130606160542.01 a0997-8453 a073805416 accn0997-8453 aocm11846375 aissn09978453 a0000823263 a19850325a19849999m y0frey0103 ba0 afre aFR a 0  ar aak 0 13aLe guide des relations presse aPariscEdinoved1984-13aLe Guide des relations presseb(Paris) aMédiasyFrancexPériodiques aPresseyFrancexPériodiques aRelations publiquesyFrancexGuides, manuels, etc. a070 3aFRbAbesc20050216gAFNOR 3aFRbAbesc20050216gAFNOR 1aUSbOCLCc20050216gAACR2 2aFRbAUROCc20050216gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.leguidedesrelationspresse.com/consulter_accueil.phtml zContenu : sommaire de l'édition 2005, 22e année1 bno. 21 (2004) ; no. 26 (2009)cParisdMagasins/annexeeP 8° 6825 aZPAY aGEO RA4.06 France 01 aDEW 07001091nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001322000054001392100046001932250076002393000076003153260011003916060053004027100060004558010021005158560137005369550054006739720009007279920025007369920012007619920016007730000128378000012837820130319051504.01 a1152-510X aFNSP523223 a0000128378 a19900101a00019999 ba0 afre aFR10aGuide statistique de la fiscalité directe locale aPariscLa Documentation françaised0001-21aCollection Décentralisation. Série Budgets des collectivités locales aEd.2003 et 2004 uniquement consultables en ligne, pas de version papier aAnnuel aImpôt localyFrancexStatistiquesxPériodiques02aFrancebDirection générale des collectivités locales 3aFRbCCN7002/26314 uhttp://www.dgcl.interieur.gouv.fr/search_form?SearchableText=GUIDE+STATISTIQUE+DE+LA+FISCALITE+DIRECTE+LOCALE&review_state=published1 b(1983) -(2007)cParisdagasins/AnnexeeP 4° 5046 aZGRA aGEO RA4.06 France 01 aDEW 336 aDEW 310-31901233cas0 2200397 450 00100100000000200110001000500170002101100140003803500140005203500170006603500150008310000410009810100080013910200070014710500180015411000160017220000660018821000240025432600110027841000830028951200200037251700300039253000110042260700580043371000650049180100300055680100230058680100300060980200070063985600520064685600360069895500530073497200090078799200140079699200250081009468457X000091919420130319051505.0 a1760-8996 a131723111 aissn17608996 a0000919194 a20060106a19999999k y0frey50 ba0 afre aFR ay  azku uu 13aLa GuyanefInstitut d'émission des départements d'Outre-mer aPariscIEDOMd1999- aAnnuel 1tRapport annuel - Institut d'émission des départements d'Outre-merx1632-420X13aLa Guyane en...13aLa Guyaneerapport annuel00aGuyane aGuyanexConditions économiquesxPériodiques2rameau02aInstitut d'émission des départements d'Outre-merc(France) 3aFRbAbesc20090423gAFNOR 3aFRbISSNc20090225 3aFRbAbesc20060112gAFNOR a074 uhttp://www.iedom.fr/dom/guyane/publications.asp4 zAccès libre au texte intégral1 b(1999) -....cParisdMagasins/AnnexeeP 8° 6852 aZGRA aDEW 330.9 aGEO RA4.06 France 0101069nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210002600173326001600199437003600215437004800251601007600299606004100375710006200416830005500478856010500533955007700638972000900715991001900724992001200743048702595000018152020131009154052.01 a1020-3613 aFNSP676165 a0000181520 a19900101a19959999 f ba0 aeng aKE aaha 10aHabitat debate aNairobicUNCHSd1995- aTrimestriel 1tUNCHS (Habitat) newsx0255-271X 1tUNCHS (Habitat) shelter bulletinx1014-810802aCentre des Nations Unies pour les établissements humainsxPériodiques aEtablissements humainsxPériodiques02aCentre des Nations Unies pour les établissements humains atoute la collection envoyée au CTLES , juil. 2013 uhttp://www.unhabitat.org/pmss/getPage.asp?page=periodView&period=2301Accès libre au texte intégral1 bvol. 1 no. 1 (mar-1995) -no 2 (2008)cParisdMagasins/AnnexeeP 4° 3153 aZECH aexemp§b201306 aDEW 30401235cas0 2200349 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610600060012311000160012920001530014520700220029821000750032030600410039532600150043653000240045171000430047571100290051871200440054780100300059180100130062185600320063485601100066695500660077697200090084299200220085199200120087307870782X000035157820130806122040.01 a1565-5733 a0000351578 a20040601a20009999m y0frey0103 ba0 aeng aIL ar aaja 10aHagareInternational social science reviewfHumphrey institute for social researchgIsraël sociological societygBen-Gurion university of the Negev 0aVol. 1no. (2000)- a[Beer Sheva, Israël]cBen-Gurion university of the Negev pressd2000- aEditoriaux et résumés sur internet aSemestriel10aHagarb(Beer Sheva)02aHumphrey institute for social research02aIsrael sociology society02aBen-Gurion university of the Negev4340 3aFRbAbesc20050426gAFNOR 0aFRbFNSP4 uhttp://hsf.bgu.ac.il/hagar/ zContenu : sommaires, résumés et sélection d'articles en texte intégral depuis le volume 1, n°1, 20001 bvol. 1 no. 1 (2000) -....cParisdMagasins/AnnexeeP 8° 5694 aZPAY aGEO RG2.15 Israel aDEW 30101205nas0 2200373 450 00100100000000200110001000500170002101100140003802000190005203500160007103500150008710000410010210100080014310200070015110500180015811000160017620000350019220700260022721000560025332600180030951700080032760600290033560600440036480100300040880100200043880100210045880100150047980100150049485601030050985601080061295500660072099200120078699200330079812726311X000115746420130319051505.01 a1871-1901 aUSb2006208655 aocm70167848 a0001157464 a20080910a20069999 y0engy0103 ba0 aeng aNL ay  aai 04aThe Hague journal of diplomacy 0aVol. 1, no. 1 (2006)- aLeidenaBostoncMartinus Nijhoff Publishersdc2006- a3 n°s par an10aHJD aDiplomatiexPériodiques aRelations internationalesxPériodiques 3aFRbAbesc20080910gAFNOR 1aUSbOCLCgAACR2 2aFRbAUROCgAFNOR 0bDLCgAACR2 2bHVLgAACR24 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=114730 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (2006) -....cParisdMagasins/AnnexeeP 8° 7066 aDEW 327 aGEO RS Sans aspect régional01043cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200003700180210004100217326001500258517000900273606003700282606003400319801003000353801002300383802000700406856006400413856010800477955006600585972000900651992002100660992001200681133920658000121132920130319051505.01 a1876-4045 aissn18764045 a0001211329 a20090602a20099999k y0frey50 ba0 aeng aNL ay  ar aaja uu 10aHague journal on the rule of law aThe HaguecT.M.C. Asser Pressd2009- aSemestriel10aHJRL aPrimauté du droitxPériodiques aRègle de droitxPériodiques 3aFRbAbesc20101012gAFNOR 3aFRbISSNc20100215 a0j4 uhttp://journals.cambridge.org/action/displayJournal?jid=ROL zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bVol. 1 no. 1 (2009) -....cParisdMagasins/AnnexeeP 8° 7166 aZSAB aGEO RQ Universel aDEW 34000906nls 2200265 i 450 0010011000000020011000110050017000220350015000391000041000541010013000951020007001081050018001151060006001331100016001391350018001552000066001732100072002392300024003113260012003353300173003474520039005206070036005598010013005958560032006080000313740000031374020130319051506.0 a0000313740 a a00019999k fre ba0 aengaspa aUS a 0  az aaf z 0  adr 10aHandbook of Latin American studiesb[Ressource électronique] aWashington,D.C.cHispanic Division of the Library of Congressds.d. aDonnées textuelles aMensuel aDepuis 1935, bibliographie d'articles de périodiques et d'ouvrages en sciences sociales et humaines, dans différentes langues. Interrogation en anglais et en espagnol 1tHandbook of Latin american studies aAmérique latinexBibliographie 0aFRbFNSP4 uhttp://lcweb2.loc.gov/hlas/01068nas0 2200289 450 001001000000002001100010005001700021011001400038100004100052101000800093102001100101110001600112200010300128207002100231210004400252300002200296326001100318606005300329710007100382801003000453856017100483955006600654972000900720992001600729992001200745992002100757078858178000071382320140117162333.01 a1819-5512 a20040611a19979999 0frey0103 ba0 aeng aUSaCH aak 10aHandbook of world mineral trade statistics ...fUnited Nations conference on Trade and Development 0aHandbook (1997)- aNew YorkaGenevacUnited Nationsd1997- aUNCTAD/ITCD/COM/2 aAnnuel aIndustries minièresxStatistiquesxPériodiques02aConférence des Nations Unies sur le commerce et le développement 3aFRbAbesc20040611gAFNOR4 uhttp://unctad.org/SearchCenter/Pages/Results.aspx?k=Handbook%20of%20world%20mineral%20trade%20statistics&start1=1zAccés au texte intégral en ligne depuis 2006/20071 b(1990/1995) -(1996/2001);cParisdMagasins/AnnexeeP 4° 7057 aZGRA aDEW 310-319 aDEW 333 aGEO RQ Universel00892nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210003800174300004800212326002000260430004000280517002300320606004700343856005000390856005000440955007700490992002300567992001200590039997901000006701220130319051507.01 a0895-7983 aFNSP311194 a0000067012 a19900101b19882007 ba0 aeng aUS aaba 14aThe Harris poll aNew YorkcLouis Harrisd1988-2007 aNe paraît plus qu'en version électronique aBi-hebdomadaire 1aThe Harris survey (1981)x0273-103711aHarris interactive aOpinion publiqueyEtats-UnisxPériodiques4 uhttp://www.harrisinteractive.com/harris_poll/ zContenu : texte intégral depuis janvier 20051 bno. 1 (jan-1988)- no. 132 (dec-2007)cParisdMagasins/AnnexeeP 4° 3248 aGEO RC2 Etats-Unis aDEW 30301362nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000920015421000500024632600190029632600260031560600390034160600510038067600080043180100210043985600320046085600900049285602580058295500660084095500700090697200090097699200230098599200160100803871616X000002171420131022155933.01 a0017-8012 aFNSP158665 a0000021714 a19900101a19229999 ba0 aeng aUS aafa 10aHarvard Business ReviewfHarvard University, Graduate School of Business Administration aBoulder, C.O.cHarvard business reviewd1922- aMensuelb2001- aBimestrielb1950-2000 aGestion d'entreprisexPériodiques aGestion d'entrepriseyEtats-UnisxPériodiques a650 3aFRbCCN0017-80124 uhttp://www.hbsp.harvard.edu zContenu : sommaire et résumés du dernier n° ; résumés des 100 meilleurs articles4 uhttps://acces-distant.sciences-po.fr/fork?http://web.ebscohost.com/bsi/search?vid=1&hid=106&sid=5deac7e9-62a7-48dd-93ad-adb6220aec1e%40sessionmgr111zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 4e étageeDEW 6501 bvol. 28 no.1 (jan-1950) -....cParisdMagasins/AnnexeeP 4° 0299 aZPAY aGEO RC2 Etats-Unis aDEW 650-65800998nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005600154210004000210326001600250606004500266606004400311606003800355712002300393856005900416856006600475955008100541972000900622991001800631992002300649992001200672040332993000020862820130319051507.01 a1081-180X aFNSP756490 a0000208628 a19900101b19962007 ba0 aeng aUS aaha 14aThe Harvard international journal of press/politics aCambridge, MAcMIT Pressd1996-2007 aTrimestriel aCommunication en politiquexPériodiques aMédiasxAspect politiquexPériodiques aPresse et politiquexPériodiques02aHarvard University4 uhttp://mitpress.mit.edu/journal-home.tcl?issn=1081180X zContenu : sommaires et résumés depuis le vol. 1, n°1, 19961 bvol. 1 no. 1 (1996) -vol. 5 no. 3 (2000)cParisdMagasins/AnnexeeP 8° 6304 aZSAB aexempb201210 aGEO RC2 Etats-Unis aDEW 30200987nas 2200325 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200003800148210006000186326001500246430005800261606003800319710003500357711002300392801001300415856003100428856007500459955006700534972000900601991001800610992001200628992002100640038716240000043449720140110130513.01 a0017-8063 a a19679999k fre ba0 aeng aUS a 0  ar aaj z 0 10aHarvard international law journal aCambridge, Mass.cHarvard International Law Clubd1967- aSemestriel 1tThe Harvard international Law Club journalx0888-2584 aDroit internationalxPériodiques02aHarvard International Law Club01aHarvard Law School 0aFRbFNSP4 uhttp://www.harvardilj.org/ zContenu : selection d' artcles de numéros récents en texte intégral1 bvol. 31 no. 1 (1990) -....cParisdMagasins/AnnexeeP 8° 6610 aZCAD aexempb201301 aDEW 341 aGEO RQ Universel01318nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200002300138210006000161326001200221606003600233710003500269801002100304856012800325856010800453856009000561856010800651955018300759972000900942991001800951992002300969992001200992038716275000002132620130319051507.01 a0017-811X aFNSP157666 a0000021326 a19900101a18879999 ba0 aeng aUS10aHarvard law review aCambridge, Mass.cHarvard Law Review Associationd1887- aMensuel aDroityEtats-UnisxPériodiques02aHarvard Law Review Association 3aFRbCCN0017-811X4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=HLR&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0017811X.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 58 no. 3 (fev-1945) -....cParisdMagasins/AnnexeeP 8° 1993wManquants vol. 60 no. 3 (1947) à vol. 62 no. 6 (1949) et vol. 68 no. 1 (nov-1954) à vol. 74 no. 8 (jun-1961) aZPAY aexempb201103 aGEO RC2 Etats-Unis aDEW 34901126cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157110001600175200002400191207002400215210009900239326001800338606003600356710006900392801003000461801002300491802000700514856004700521856009900568955009600667972000900763992001600772048854611000096314620130319051508.01 a1527-9677 accn1527-9677 aissn15279677 a0000963146 a20000302a19999999k y1frey0103 ba0 aeng aUS a 0  aaia 0uu 14aThe Hedgehog review 0aVol. 1 (Fall 1999)- aCharlottesville, VAcInstitute for Advanced Studies in Culture, University of Virginiadc1999- a3 n°s par an aScience politiquexPériodiques02aInstitute for Advanced Studies in Culturec(Charlottesville, Va) 3aFRbAbesc20060105gAFNOR 3aFRbISSNc20051021 a014 uhttp://www.virginia.edu/iasc/hedgehog.html zContient les thèmes principaux des n°s depuis 1999 et les sommaires d'une sélection de n°s1 bvol. 2 no. 1 (pri-2000) ; vol. 4 no. 1 (pri-2002) -....cParisdMagasins/AnnexeeP 8° 6883 aZSAB aDEW 320-32100872nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001200154210003000166326001600196530002500212606003200237676000800269856005500277856007400332955006600406955005900472972000900531991001800540992001200558039773515000002129720130319051508.01 a0767-9513 aFNSP157617 a0000021297 a19910104a19889999 ba0 afre aFR aaha 10aHermès aPariscEd. du CNRSd1988- aTrimestriel10aHermèsbParis. 1988 aCommunicationxPériodiques a3004 uhttp://documents.irevues.inist.fr/handle/2042/8538 zcontenu : accès au libre au texte intégral des articles depuis 19881 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3001 bno. 1 (1988) -....cParisdMagasins/AnnexeeP 8° 5201 aZCAD aexempb201011 aDEW 30201110nas 2200349 i 450 001001000000002001100010005001700021011001400038035001300052035001500065100004100080101000800121102000700129110001600136200001400152207002500166210003000191326001600221606003200237676000800269801002100277830003200298856008800330856010800418955006700526955005600593957006300649972000900712991001800721992001200739992000900751039550427000000235820130724115607.01 a0338-487X aFNSP8460 a0000002358 a19900101a19769999 ba0 afre aFR aahu 10aHérodote 1ano 1 (jan-mar 1976)- aPariscDécouverted1976- aTrimestriel aGéopolitiquexPériodiques a327 3aFRbCCN0338-487X a1976-1999 conservé au 13 U4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-herodote.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bno. 1 (jan-1976) -....cParisdMagasinseP 8° 37521 bno. 1 (1976) -no. 80 (1996)cParisdMagasinseP Index 0777 aZCAD aexempb200912 aDEW 327 aPBUL01173nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210004400175326001800219606004200237801002100279856004500300856006200345856010300407856010800510955007100618957012700689972000900816991001800825992001600843038717786000002130020140114101940.01 a0018-1560 aFNSP157623 a0000021300 a19900101a19729999 ba0 aeng aNL aafa 10aHigher education aDordrechtcKluwer Academic Publ.d1972- a8 n°s par an aEnseignement supérieurxPériodiques 3aFRbCCN0018-15604 uhttp://www.wkap.nl/jrnltoc.htm/0018-1560 zContenu : sommaires depuis le vol. 33, n°1, janvier 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=102901 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (fév-1972) -....cParisdMagasins/AnnexeeP 8° 30331 bvol. 1-vol.20 (1972-1990)cParisdMagasins/AnnexeeP 8° 3033zcet index constitue le vol.23, n°2, March 1992 de la revue aZPAY aexempb200910 aDEW 370-37901184nls 2200277 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200015200124210002300276230002400299300012100323326001100444606004200455606007700497710013900574801001300713856014700726955000500873992001200878992001600890000124575920130626100205.0 a a20019999k fre 01 ba0 aeng aFR ar aak z  adr 10aHigher education management and policy :b[Ressource électronique]ejournal of the programme on institutional management in higher educationfOCDE aPariscOCDEd2001- aRevue électronique aA partir de 2008, la version française de Higher education management and policy est accessible uniquement en ligne aAnnuel aEnseignement supérieurxPériodiques aEnseignement supérieurxAspect économiqueyPays del'OCDExPériodiques02aOrganisation de coopération et de développement économiquesbProgramme sur la gestion des établissements d'enseignement supérieur 0aFRbFNSP4 uhttp://puck.sourceoecd.org/vl=5799444/cl=52/nw=1/rpsv/journal_news.htmzaccès aux sommaires et texte intégral depuis le vol. 13, no. 1, 20011 r aGEO RM4 aDEW 370-37901502cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200012300174210002300297300012100320326001800441430005100459453006600510606004200576606007700618710013900695801003000834801002300864802000700887856014700894955008301041992001201124992001601136070253749000117532520140114102400.01 a1682-3451 aissn16823451 a0001175325 a20030203a20019999 0fre 0103 ba0 aeng aFR ay  aah 10aHigher education management and policyejournal of the programme on institutional management in higher educationfOCDE aPariscOCDEd2001- aA partir de 2008, la version française de Higher education management and policy est accessible uniquement en ligne a3 n°s par an 1tHigher education management (Print)x1013-851X 1tPolitiques et gestion de l'enseignement supérieurx1682-346X aEnseignement supérieurxPériodiques aEnseignement supérieurxAspect économiqueyPays del'OCDExPériodiques02aOrganisation de coopération et de développement économiquesbProgramme sur la gestion des établissements d'enseignement supérieur 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20030203 a004 uhttp://puck.sourceoecd.org/vl=5799444/cl=52/nw=1/rpsv/journal_news.htmzaccès aux sommaires et texte intégral depuis le vol. 13, no. 1, 20011 bvol. 20 no. 1 (2008) -vol. 24, no.1 (2012)cParisdMagasins/AnnexeeP 8° 6599 aGEO RM4 aDEW 370-37901259nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000310015421000290018532600160021443000610023060600590029160600420035067600080039285600710040085600730047185601010054485601080064595500910075397200090084499200210085399200310087499200160090504008003X000002128420131209112248.01 a0951-5224 aFNSP157594 a0000021284 a19910104a19879999 ba0 aeng aGB aaha 10aHigher education quarterly aOxfordcBlackwelld1987- aTrimestriel 1aUniversities quarterly (1982) (0263-9769) < P 8° 0212 > aEnseignement supérieuryGrande-BretagnexPériodiques aEnseignement supérieurxPériodiques a3704 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0951-5224 zContenu : sommaires et résumés depuis le vol. 51, n°1, janv. 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100847 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 41 no. 1 (jan-1987) -vol. 66 no. 4 (oct-2012)cParisdMagasins/AnnexeeP 8° 0212 aZPAY aGEO RQ Universel aGEO RA4.02 Grande-Bretagne aDEW 370-37901087nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001500154210002700169326001200196530002900208606002700237676000800264801002100272856003500293856007400328856009300402856010800495955006400603955001500667972000900682992001200691992002500703992000900728039295982000000458420130912090210.01 a0182-2411 aFNSP106057 a0000004584 a19900101a19789999 ba0 afre aFR aafu 12aL'Histoire aPariscHistoired1978- aMensuel12aL' HistoirebParis. 1978 aHistoirexPériodiques a909 3aFRbCCN0182-24114 uhttp://www.histoire.presse.fr/ zContenu : sommaires ; index auteurs et sujets ; depuis le no. 1, 19784 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/magazine-l-histoire.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (mai 1978) -....cParisd30, Salle 2e étageeDEW 9091 bP 4° 4220 aZPAY aDEW 909 aGEO RA4.06 France 01 aPBUL01192nas 2200289 i 450 002001100000005001700011011001400028100004100042101000800083102000700091110001600098200002200114210007500136210003400211326002200245326002700267517002300294530002900317606004100346606003700387856015800424856020300582955007600785972000900861992001600870992001600886000002129320130603162855.01 a0982-1783 a19910104a19869999 ba0 afre aFR aaja 10aHistoire & mesure aPariscÉd. du Centre national de la recherche scientifiqued1986-2004 aPariscÉd. de l'EHESSd2005- aSemestrielb2006- aTrimestrielb1986-200510aHistoire et mesure 0aHistoire & mesurebParis aHistoirexStatistiquesxPériodiques aSciencesxHistoirexPériodiques4 uhttp://www.persee.fr/listIssues.do?key=hismzAccès libre au texte intégral des numéros à partir de 1986 à l'exception des années les plus récentes4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-histoire-et-mesure.htm?zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1986)- vol. 27 (2012)cParisdMagasins/AnnexeeP 8° 4940 aZPAY aDEW 900-907 aDEW 310-31900966nls 2200313 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000091001642100051002552300024003063260022003305170023003526060039003756070035004147100049004498010013004988560038005118560066005499920012006159920025006270001096211000109621120130319051509.0 a1954-3670 a0001096211 a a20079999k fre 01 ba0 afre aFR ar aai z  adr 10aHistoire [arobase] Politiqueepolitique, culture, sociétéb[Ressource électronique] aPariscCentre d'histoire de Sciences Pod2007- aRevue électronique aTrois fois par an10aHistoire@Politique aHistoire universellexPériodiques aFrancexHistoirexPériodiques02aCentre d'histoire de Sciences Po‎c(Paris) 0aFRbFNSP4 uhttp://www.histoire-politique.fr/ zAccès libre au texte intégral depuis le n°1, mai-juin 2007 aDEW 900 aGEO RA4.06 France 0101132nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210004700191210003300238210002700271326001600298430005500314606003500369606003900404607004600443856021200489955007400701972000900775992002200784992001200806013304488000013821120140107172208.01 a0752-5702 aFNSP550558 a0000138211 a19941012a19829999 ba0 afre aFR aaha 10aHistoire, économie et société aPariscÉd. CDU & SEDES réunisd1982-1994 aPariscÉd. SEDESd1995-2003 aPariscA. Colind2004- aTrimestriel 1aRevue d'histoire économique et socialex0035-239X aHistoire socialexPériodiques aHistoire économiquexPériodiques aFrancexConditions socialesxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-histoire-economie-et-societe.htmzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 3 (1992) ; no. 1 (1994) -....cParisdMagasins/AnnexeeP 8° 6071 aZPAY aGEO RA4.06 France aDEW 90901216nls 2200265 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281350018001342000067001522100048002193000079002673300456003466060022008026060054008247110018008788010013008968300008009098560033009170000582173000058217320130319051513.0 a0000582173 a d20039999k fre 01 0 afre aFR ay z y  az adr 10aHistorical Abstractsb[Ressource électronique]fABC-Clio Inc. aSanta Barbara, Calif.cABC-Clio Inc.d2003- aConsultation : uniquement à partir des postes publics de la Bibliothèque aBase de données bibliographique analysant et indexant, depuis 1955, la littérature spécialisée en histoire mondiale (Amérique du Nord exclue) de 1450 à nos jours. Elle contient des références d'ouvrages, de travaux de recherche et des résumés en anglais d'articles de périodiques. Actuellement, 1800 revues en 50 langues sont dépouillées. La base s'enrichit chaque année de 20 000 notices supplémentaires. La mise à jour est mensuelle. aBases de données aHistoire universellexBibliographiexPériodiques02aABC-Clio Inc. 0aFRbFNSP amfo4 uhttp://serials.abc-clio.com/01098nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005500163210002700218210004600245326002300291326002600314606002700340710005300367801001300420856009000433856011200523955009600635972000900731991001800740992001400758044930151000035518320130319051513.01 a1465-4466 a0000355183 a a19979999k fre ba0 aeng aGB a 0  ar aaj z 0 10aHistorical materialismfLondon School of Economics aLeydencBrill :d2002- aLondoncLondon School of Economicsd1997- aTrimestrielb2002- aSemestrielb1997-2001 aMarxismexPériodiques02aLondon School of Economics and Political Science 0aFRbFNSP4 uhttp://juno.ingentaselect.com/vl=3271370/cl=60/nw=1/rpsv/cw/brill/14654466/contp1.htm zContenu : sommaires depuis le volume 1, n°1, 1997 (le volume 11 n°1, 2003 est en texte intégral gratuit)1 bno. 1 (1997) -no. 9 (2001) ; vol. 10 no. 1 (2002) -....cParisdMagasins/AnnexeeP 8° 6540 aZSAB aexempb201301 aDEW 330.101186nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003100139210010900170326001600279430004000295510004000335530003800375606003900413710004500452801002100497856007000518856003600588856002900624856009200653955006400745972000900809991001800818992001200836039125327000002178720131028152332.01 a0172-6404 aFNSP158885 a19900101a19799999 ba0 amul aDE aaha 10aHistorical social research aaKölncZentrum für Historische Sozialforschung im Zentralarchiv für Empirische Sozialforschungd1979- aTrimestriel 1aQuantum-InformationxISSN 0172-877610aHistorische Sozialforschung (Köln) 0aHistorical social researchbKöln aSociologiexHistoirexPériodiques02aZentrum für Historische Sozialforschung 3aFRbCCN0172-64044 uhttp://hsozkult.geschichte.hu-berlin.de/zeitschr/hsr/hsrindex.htm zContenu : index de 1996 à 20014 uhttp://www.hsr-retro.de/ zContenu : index depuis 2000 accès à certains articles plus anciens en texte intégral1 bno. 12 (oct-1979) -....cParisdMagasins/AnnexeeP 8° 4311 aZSAB aexempb201103 aDEW 30101615nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210005900184210006100243210010400304210002300408326001500431430011000446530004900556606006100605606005800666676000800724710007100732801002100803856002400824856005600848955006700904955009500971957007401066972000901140991001801149992002201167992001601189039236773000002122520130319051513.01 a0046-757X aFNSP157433 a0000021225 a19900101a19659999 ba0 afre aFR aagu 10aHistoriens et géographes aPariscSociété des professeurs d'histoired1965-1975 aPariscAssociation des professeurs d'histoired1975-1976 aPariscAssociation des professeurs d'histoire et de géographie de l'enseignement publicd1976-1985 aPariscAPHGd1986- aBimestriel 1aBulletin de la Société des professeurs d'histoire et de géographie de l'enseignement publicx1153-727210aHistoriens et géographesbNeuilly-sur-Seine aGéographiexEtude et enseignementyFrancexPériodiques aHistoirexEtude et enseignementyFrancexPériodiques a90902aAssociation des professeurs d'histoire et de géographiec(France) 3aFRbCCN0046-757X4 uhttp://www.aphg.fr/ zContenu : sommaires des n°s depuis le n°365, 19991 bLes 3 dernières annéescParisd30, Salle 2e étage:eDEW 9091 bvol. 55 no. 193 (oct-1965) -....cParisdMagasins/AnnexeeP 8° 0351zManque no. 338, 19921 bno. 303 (1985) - no. 334 (1991)cParisdMagasins/AnnexeeP Index 0727 aZGRA aexempb201101 aGEO RA4.06 France aDEW 370-37901276nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005500154210004200209326001600251530002700267606002700294607004400321710003800365801002100403856007100424856007500495856010100570856010800671955007700779972000900856991001800865992003100883992001200914038718499000005745920130319051513.01 a0018-2648 aFNSP267112 a0000057459 a19900101a19129999 ba0 aeng aGB aahu 10aHistoryethe journal of the Historical Association aLondoncHistorical Associationd1912- aTrimestriel00aHistorybLondon. Print aHistoirexPériodiques aGrande-BretagnexHistoirexPériodiques02aHistorical Associationc(Londres) 3aFRbCCN0018-26484 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0018-2648 zContenu : sommaires et résumés depuis le vol. 81, n°263, juil. 19964 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101085 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 36 no. 126/127 (fev-1951) -....cParisdMagasins/AnnexeeP 8° 1046 aZSAB aexempb201203 aGEO RA4.02 Grande-Bretagne aDEW 90900782nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210005500177326001500232517002100247606002700268856003800295856006200333955007000395972000900465991001800474992001200492040050866000012006220130319051514.01 a0935-560X aFNSP495734 a0000120062 a19940303a19899999 ba0 aeng aUS aaja 10aHistory and memory aBloomington, Ind.cIndiana University Pressd1989- aSemestriel10aHistory & memory aHistoirexPériodiques4 uhttp://muse.jhu.edu/journals/ham/ zContient : sommaires en ligne depuis vol. 10, no. 1, 19981 bvol. 5 no. 1 (pri-1993) -....cParisdMagasins/AnnexeeP 8° 6017 aZPAY aexempb201211 aDEW 90901499nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210005600177326001600233606004000249606002700289710004500316801002100361856007100382856005000453856010100503856010800604856009000712856010800802955008600910957007200996972000901068991001801077992001401095992001601109038718502000002123020131127170306.01 a0018-2656 aFNSP157441 a0000021230 a19900101a19609999 ba0 aeng aUS aahu 10aHistory and theory aMiddletown, Conn.cWesleyan University Pressd1960- aTrimestriel aHistoirexPhilosophiexPériodiques aHistoirexPériodiques02aWesleyan Universityc(Middletown, Conn.) 3aFRbCCN0018-26564 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0018-2656 zContenu : Sommaires, résumés depuis le 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101086 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00182656.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 1 (1963) -vol. 51 no. 4 (dec-2012)cParisdMagasins/AnnexeeP 8° 23801 bvol. 6 (1967) -vol. 10 (1971)cParisdMagasins/AnnexeeP Index 0189 aZCAD aexempb200908 aCDD 10-14 aDEW 900-90701214nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003000139210004500169210005100214326002600265326002900291326003000320452005100350530003000401606004700431801002100478856016300499955007100662955008600733972000900819991001800828992001800846992001200864039143791000002123220130926105637.01 a0191-6599 aFNSP157444 a19900101a19809999 ba0 amul aGB aahu 10aHistory of European ideas aAmsterdam‎cElsevier Science‎d1994- aOxford [etc.]‎cPergamon Press‎d1980-1993 aTrimestriel‎b2000- aBimestriel‎b1986-1999 aTrimestriel‎b1980-1985 1tHistory of European ideas (Online),x1873-541X aHistory of European ideas aIdéologieyEuropexHistoirexPériodiques 3aFRbCCN0191-65994 uhttp://www.sciencedirect.com/science/journal/01916599zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 36 no. 3 (sep-2010) -....cParisdMagasins/AnnexeeP 4° 72901 bvol. 1 no. 1 (1980) -vol. 36 no. 2 (jun-2010)cParisdMagasins/AnnexeeP 8° 4380 aZSAB aexempb201106 aGEO RA Europe aDEW 94001367nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210004700187300013600234326001600370606004700386801002100433856010100454856010800555856012800663856010800791955007000899972000900969991001800978992003300996992001201029038718537000005746020130319051514.01 a0018-2702 aFNSP267115 a0000057460 a19900101a19699999 ba0 aeng aUS aahu 10aHistory of political economy aDurham, N.C.cDuke University Pressd1969- aLe supplément annuel est traité en monographie, voir le détail de la collection à "History of political economy. Annual suppl." aTrimestriel aEconomie politiquexHistoirexPériodiques 3aFRbCCN0018-27024 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=111226 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=HPE&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (pri-1969) -....cParisdMagasins/AnnexeeP 8° 2951 aZPAY aexempb201103 aGEO RS Sans aspect régional aDEW 33000952nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210003300188210002400221326002400245326002700269606004600296856010800342856010800450955006500558972000900623991001800632992001200650040082008000008250120130319051514.01 a0952-6951 aFNSP367908 a0000082501 a19900101a19889999 ba0 aeng aGB aaha 10aHistory of the human sciences aLondoncRoutledged1988-1991 aLondoncSaged1992- a5 nos par anb2009- aTrimestrielb1992-2008 aSciences humainesxHistoirexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no.1 (1992) -....cParisdMagasins/AnnexeeP 8° 5903 aZSAB aexempb201202 aDEW 30001030nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000051001502100068002012300005002693000098002743260016003723360058003883370066004464520058005127120034005708010013006048560090006179550005007079920016007120000534058000053405820130319051514.0 a0000534058 a a19679999k fre 01 ba0 aeng aUS az aah z  adr 14aThe History teacherb[Ressource électronique] aLong Beach, Calif.cSociety for the History of educationd1967- a aAccès au texte intégral (réservé aux sites de Sciences-Po) jusqu'aux 3 dernières années aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou télédéchargement 1tThe History teacher (Long Beach, Calif.)x(0018-2745)02aSociety for History Education 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00182745.html1 r aDEW 900-90700971nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210004300183326001500226430003300241517000800274606003500282606002700317856004200344856014700386955006400533972000900597991001800606992001200624992002100636036756881000015489620130319051514.01 a1363-3554 aFNSP604078 a0000154896 a19900101a19959999 ba0 aeng aGB aaja 00aHistory workshop journal aOxfordcOxford University Pressd1995- aSemestriel 1aHistory workshop,x0309-298410aHWJ aHistoire socialexPériodiques aHistoirexPériodiques4 uhttp://www.oup.co.uk/hiwork/contents/ zContenu : sommaires ; résumés ; recherche par sujets avec Excite ; depuis le n°41, print. 1996 ; envoi sommaire par mail du n° à paraitre1 bno. 39 (pri-1995) -....cParisdMagasins/AnnexeeP 8° 4823 aZCAD aexempb201010 aDEW 909 aGEO RQ Universel01340nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003500163210004300198326001800241606002400259606003900283710004500322801001300367856004000380856003800420856010300458856010800561856012100669856010800790955007100898972000900969992001200978037430998000041519520130319051515.01 a8756-6583 a0000415195 a a19869999k fre ba0 aeng aGB a 0  ar aai z 0 10aHolocaust and genocide studies aOxfordcOxford University Pressd1986- a3 n°s par an aShoahxPériodiques aGénocidexRecherchexPériodiques02aUnited States Holocaust Memorial Council 0aFRbFNSP4 uhttp://www3.oup.co.uk/holgen/scope/ zsommaires depuis le vol. 10, 19964 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=108985 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://heinonline.org/HOL/Index?index=alpha/H_journals&collection=journals zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 15 no. 1 (pri-2001) -....cParisdMagasins/AnnexeeP 8° 6592 aZCAD aDEW 94001143nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210002600200326001600226530002500242606003200267606003600299710004900335801002100384856008700405856010800492856002600600856007600626955006400702972000900766991001800775992001200793039607704000002123420130319051515.01 a0439-4216 aFNSP157448 a0000021234 a19900101a19619999 ba0 afre aFR aahu 12aL'Hommeerevue française d'anthropologie aPariscNavarind1961- aTrimestriel12aL'HommebParis. 1961 aAnthropologiexPériodiques aSciences socialesxPériodiques02aLaboratoire d'anthropologie socialec(Paris) 3aFRbCCN0439-42164 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-l-homme.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr/ zContenu : Accès libre au texte intégral du n°1, 1961 au n°152, 19991 bno. 1 (janv-1961) -....cParisdMagasins/AnnexeeP 8° 1919 aZCAD aexempb200908 aDEW 30100915nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210002800182326001600210606004700226676000800273801002100281856010100302856004200403955014100445972000900586991001800595992001200613001012622000002123620131025100906.01 a0018-4306 aFNSP157450 a0000021236 a19900101a19669999 ba0 afre aFR aahu 12aL'Homme et la société aPariscHarmattand1966- aTrimestriel aSciences socialesxRecherchexPériodiques a300 3aFRbCCN0018-43064 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-l-homme-et-la-societe.htm? zAccès aux sommaires et aux résumés1 bno. 1 (1966) -....cParisdMagasins/AnnexeeP 8° 2305wManquant : nos 87 à 90, 1988 (vol. relié) et nos 99 à 102, 1991 (vol. relié) aZPAY aexempb201001 aDEW 30001190nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210003900178326002300217326002600240326002300266430005200289530003000341606004400371607005200415676000800467856004000475856008000515955006700595955006600662957005700728972000900785992002200794992001200816039892328000002135620130805144116.01 a1142-852X aFNSP157896 a0000021356 a19910107a19879999 ba0 afre aFR aaga 10aHommes & migrations aPariscHommes et migrationsd1987- aTrimestrielb2013- aBimestrielb1997-2012 aMensuelb1987-1996 1aHommes et migrations. DocumentsxISSN 0223-3290 0aHommes & migrationsb1987 aEmigration et immigrationxPériodiques aFrancexEmigration et immigrationxPériodiques a325 uhttp://www.hommes-et-migrations.fr/ zContenu : accès au texte intégral d'une sélection d'articles depuis 19971 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3251 bno. 1099 (jan-1987) -....cParisdMagasins/AnnexeeP 4° 32201 b(1981) -(1985)cParisdMagasins/AnnexeeP Index 0586 aZPAY aGEO RA4.06 France aDEW 32500828cas0 2200265 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200004400148210003600192530004400228607004900272676000800321801003000329801003000359856014000389945001500529991001800544048879398000062748020130319051515.0 accn7208/2224 a0000627480 a20000308b18711871 0frey0103 ba0 afre aFR ar aaz 10aHommes et choses du temps de la Commune aParisaGenèveaLondresd[1871]00aHommes et choses du temps de la Commune aParis (France)z1871 (Commune)xPériodiques a944 3aFRbAbesc20020120gAFNOR 3aFRbAbesc20020120gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb327872342/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1871) b12*014.972 aSAFIGbTM095c01073nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001400154210005400168300019700222326001100419607003600430710004700466856004800513955005500561955007500616972000900691991001800700992004100718992001200759104702176000011313520130627122605.01 a1011-4521 aFNSP476129 a0000113135 a19900101a00019999 ba0 aeng aHK aaka 10aHong Kong aHong KongcGovernment Information Servicesd0001- aDe 1980 à 1997, le contenu est celui de l'année précédent e ; Pour 1997, demander le supplément : "Hong Kong - Anew e ra" ; A partir de 1998, l'année de couverture correspond au contenu. aAnnuel aHong Kong (Chine)xPériodiques02aHong Kong. Government Information Services uhttp://www.info.gov.hk/hkar99/eng/index.htm1 b(1980) -(2010)cParisdMagasins/AnnexeeP 8° 55361 b(1952) ; (1955) ; (1962) -(1979)cParisdMagasins/AnnexeeCOL 8° 3526 aZPAY aexempb201210 aGEO RI3.21 Hong Kong (jusqu'à 1997) aDEW 95101101cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200001900174210005100193326001600244606007900260607008300339607006600422710004200488801003000530802000700560856004600567856004700613955007200660992003100732992001200763044904622000117430520130319051516.01 a1437-6164 accn1437-6164 a0001174305 a20000407a19929999 0frey0103 ba0 ager aDE ay  aah 10aHorch und Guck aBerlincBürgerkomitee "15. Januar" e.Vd1992- aTrimestriel aRésistance politiqueyAllemagne (République démocratique)xPériodiques aAllemagne (République démocratique)xPolitique et gouvernementxPériodiques aAllemagne (République démocratique)xHistoirexPériodiques02aBürgerkomitee "15.Januar"e.VcBerlin 3aFRbAbesc20081203gAFNOR a064 uhttp://www.horch-und-guck.info/hug/archiv zContenu : sommaires depuis le no. 1 (1992)1 bvol. 18 no. 63 (mar-2009) -....cParisdMagasins/AnnexeeP 4° 7253 aGEO RA5.03 Allemagne (RDA) aDEW 94301224nas0 2200337 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000580013920700250019721000500022232600160027260600450028860600420033360600460037571000420042180100300046385600330049385600300052685601010055685601080065795500800076597200090084599200160085499200160087011241947X000106534920130319051516.01 a1958-3370 a0001065349 a20070208b20069999k a0frey0103 ba0 afre aFR aahadk g 10aHorizons stratégiquesfCentre d'analyse stratégique 0aN°1 (juillet 2006)- aPariscLa Documentation françaised2006-2008 aTrimestriel aPolitique publiqueyFrancexPériodiques aAdministration publiquexPériodiques aDécision politiqueyFrancexPériodiques01aFrancebCentre d'analyse stratégique 3aFRbAbesc20070208gAFNOR4 uhttp://www.strategie.gouv.fr zContenu : texte intégral4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-horizons-strategiques.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (jul-2006) -no. 7 (jan/mar-2008)cParisdMagasins/AnnexeseP 4° 7172 aZPAY aGEO RA4. 06 aDEW 350-35400974nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210005300191326001600244606004100260710003600301856010900337856010800446955007000554972000900624991001800633992002100651992001200672093980175000014543220130319051518.01 a1064-6175 aFNSP574255 a0000145432 a19950106a19889999 ba0 aeng aUS aaha 10aHoward journal of communications aWashington, D.C.cHoward University Pressd1988- aTrimestriel aMédiasxAspect socialxPériodiques02aHoward School of Communications4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713771688db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 4 no. 4 (mar-1993) -....cParisdMagasins/AnnexeeP 8° 6090 aZSAB aexempb201202 aGEO RQ Universel aDEW 30201141cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157110001600175200007400191207002400265210003300289325006200322326001600384606004300400710004400443801003000487801002300517802000700540856006500547856010800612955007100720992001200791039505014000112982620130319051518.01 a0360-3989 accn0360-3989 aissn03603989 a0001129826 a19751204a19749999k y0frey0103 ba0 aeng aUS ay 0  aaha 0uu 10aHuman communication researchfInternational Communication Association 0aVol. 1 (Fall 1974)- aMalden, MacBlackwelld1974-1 aArticles reproduits sur la base de données PCI Full Text aTrimestriel aCommunicationxRecherchexPériodiques02aInternational Communication Association 3aFRbAbesc20080123gAFNOR 3aFRbISSNc20051021 a014 uhttp://www.blackwellpublishing.com/journal.asp?ref=0360-3989 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 32 no. 1 (jan-2006) -....cParisdMagasins/AnnexeeP 8° 6994 aDEW 30201256nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210006400177326001600241430003700257606002900294606004300323710005900366801002100425856002800446856007200474856010300546856010800649955006600757957007400823972000900897992001200906038720000000002138520130319051518.01 a0018-7259 aFNSP157946 a0000021385 a19900101a19499999 ba0 aeng aUS aahu 10aHuman organization aOklahoma City, Ok.cSociety for Applied Anthropologyd1949- aTrimestriel 1aApplied anthropology (0093-2914) aSociologiexPériodiques aAnthropologie appliquéexPériodiques02aAssociation européenne pour l'étude de la population 3aFRbCCN0018-72594 uhttp://www.sfaa.net/ho/ zContenu : sommaires et résumés depuis le vol. 53, n°3, aut. 19944 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=113218 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 8 no. 1 (1949) -....cParisdMagasins/AnnexeeP 4° 06881 b(1947) -(1958) ; (1959) -(1964)cParisdMagasins/AnnexeeP Index 0408 aZPAY aDEW 30101254nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210005800181326001600239430004300255606003600298676001100334710005700345801002100402856005700423856005100480856009000531856010800621955007000729955006600799972000900865991001800874992001200892039336816000002138620130319051519.01 a0170-0847 aFNSP157949 a0000021386 a19900101a19819999 ba0 aeng aUS aahu 10aHuman rights quarterly aBaltimore, Md.cJohns Hopkins University Pressd1981- aTrimestriel 1aUniversal human rightsxISSN 0163-2647 aDroits de l'hommexPériodiques a341.4802aUrban Morgan Institute for Human Rights (Etats-unis) 3aFRbCCN0275-0392 uhttp://muse.jhu.edu/journals/human_rights_quarterly/ zContenu : sommaires depuis le n°1, fév. 19954 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/02750392.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 341.481 bvol. 3 no. 1 (1981) -....cParisdMagasins/AnnexeeP 8° 4160 aZSAB aexempb201104 aDEW 32300976cas0 2200289 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116106000600123110001600129200002400145207002700169210006600196326002300262606003600285801003000321856010300351856010800454955007000562972000900632992003300641992001200674074102699000076196520130319051519.01 a1524-8879 a0000761965 a20030917a19999999k y0frey0103 ba0 aeng aUS ar aaha 10aHuman rights review 1aN°1, (Octobre 2003) - aNew JerseycTransaction Periodicals Consortium Rutgersd1999- aTrimestrielb1999- aDroits de l'hommexPériodiques 3aFRbAbesc20040114gAFNOR4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=103917 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 1 (oct-2003) -....cParisdMagasins/AnnexeeP 8° 6799 aZPAY aGEO RS Sans aspect régional aDEW 32300948nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000036001642100040002003260011002404370070002515170017003216060036003386060046003747100023004208010013004438560023004568560037004799550052005169720009005689920021005779920012005980000517170000051717020130319051519.01 a1054-948X a0000517170 a a19909999k fre ba0 aeng aUS a 0  ar aak z 0 10aHuman Rights Watch world report aNew YorkcHuman Rights Watchd1990- aAnnuel 1tAnnual report - Human Rights Watch (organization)xISSN 1041-895410aWorld report aDroits de l'hommexPériodiques aDroits civils et politiquesxPériodiques02aHuman Rights Watch 0aFRbFNSP uhttp://www.hrw.org zAccès libre au texte intégral.1 b(2000)-....cParisdMagasins/AnnexeeP 8° 6674 aZGRA aGEO RQ Universel aDEW 32301237nas0 2200421 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200002600180207001000206210004900216300007600265326001100341452003500352606003700387606002500424606003900449676000800488710004700496801003000543801002300573802000700596856004000603856005300643955006100696972000900757992002100766992001200787992001600799108056236000101964620130319051519.01 a1557-914X aissn1557914X a0001019646 a20060906a20059999k y0frey0103 ba0 aeng aUS a 0  ar azka 0uu 10aHuman security report 0a2005- aNew York, NYcOxford University Pressd2005- a2009/2010 dernière édition papier, à partir de 2011 version en ligne aAnnuel 0tHuman security report (Online) aViolence politiquexPériodiques aGuerrexPériodiques aGestion des conflitsxPériodiques a32702aHuman Security Centrec(Vancouver, Canada) 3aFRbAbesc20060906gAFNOR 3aFRbISSNc20060720 a014 uhttp://www.humansecurityreport.info zContenu : texte intégral du rapport depuis 20051 b(2005) ; (2009/2010)cParisdMagasins/AnnexeeP 4° 7144 aZPAY aGEO RQ Universel aDEW 327 aDEW 310-31900955nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000076001502070010002262100049002362300028002853260011003136060037003246060025003616060039003867100047004258010013004728560090004859550005005759920021005809920012006019920016006130001239080000123908020130603162804.0 a0001239080 a a20059999k fre 01 ba0 aeng aUS ar aak z  adr 10aHuman security reportb[Ressource électronique]fHuman Security Centre 1a2005- aNew York, NYcOxford University Pressd2005- aRessource électronique aAnnuel aViolence politiquexPériodiques aGuerrexPériodiques aGestion des conflitsxPériodiques02aHuman Security Centrec(Vancouver, Canada) 0aFRbFNSP4 uhttp://www.humansecurityreport.infozaccès au texte intégral du rapport depuis 20051 r aGEO RQ Universel aDEW 327 aDEW 310-31901279nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210004400182326001500226430006500241606003900306606003900345676000800384801002100392856010200413856010800515955006600623955006400689957017500753972000900928992001600937039224082000000459420130319051519.01 a0018-7372 aFNSP106069 a0000004594 a19900101a19639999 ba0 afre aFR aagu 10aHumanisme et entreprise aNeuillycHumanisme et entreprised1963- aBimestriel 1aCahiers du Centre d'études et de recherchesxISSN 2023-5607 aGestion d'entreprisexPériodiques aPersonnelxDirectionxPériodiques a650 3aFRbCCN0018-73724 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-humanisme-et-entreprise.htm4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 4e étageeDEW 6501 bno. 18 (mar-1963) -....cParisdMagasins/AnnexeeP 4° 16761 bno. 1 (1959) -no. 88 (1974)cParisdMagasins/AnnexeeP Index 0080zPour la période 1959-1962, ce répertoire se rapporte aux Cahiers du Centre d'études et de recherches aZPAY aDEW 650-65801101nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101001300108102000700121105001800128106000600146110001600152200006300168207002300231210004400254326001800298421004000316530002500356606004900381606004000430710004000470711002300510801001300533856012900546955006300675972000900738992001600747057925615000045127620140114100629.01 a1624-4184 a0000451276 a a20009999k fre ba0 afreaeng aFR a 0  ar aai z 0 10aHumanitairefInstitut de l'humanitairegMédecins du monde 1aN°1 (2000, nov.)- aPariscInstitut de l'humanitaired2000- a3 n°s par an01tHumanitaire. Hors-sériex1950-489610aHumanitaireb(Paris) aDroit d'ingérence humanitairexPériodiques aSecours internationalxPériodiques02aInstitut de l'humanitairec(France)02aMédecins du monde 0aFRbFNSP4 uhttp://www.medecinsdumonde.org/Publications/La-revue-HumanitairezAccès au texte intégral depuis le n°18 , printemps 20081 bno. 1 (nov-2000) -....cParisdMagasins/AnnexeeP 8° 6616 aZPAY aDEW 360-36300978nas 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000049001502070035001992100037002343260011002714220027002826060037003096060040003467100023003868010013004098560072004228560037004949550071005319720009006029920025006119920016006360000678527000067852720131011094220.0 a0000678527 a a20042007 fre 01 ba0 afre aFR a 0  ar aak z 0 10aHumanitaire. Hors sériefMédecins du monde 1aHors série, n°1, été 2004- aPariscMédecins du monded2004- aAnnuel 1tHumanitairex1624-4184 aDroit à la santéxPériodiques aSecours internationalxPériodiques02aMédecins du monde 0aFRbFNSP4 uhttp://www.medecinsdumonde.org/fr/publications/la_revue_humanitaire4 zAccès libre au texte intégral.1 bno. 1 (2004) -no. 4 (2007)cParisdMagasins/AnnexeeP 8° 6616 bis aZPAY aGEO RA4.06 France 01 aDEW 360-36301490nas 2200361 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000024001552100028001793260014002074210047002214880127002686010045003956060029004406070025004697100030004948010021005248560035005458560192005808560108007729550093008809550068009739550053010419920022010949920012011160000021736000002173620130319051519.01 a0242-6870 aFNSP158705 a0000021736 a19900101a19049999 ba0 afre aFR acau 12aL'Humanité (Paris) aPariscHumanitéd1904- aQuotidien 1aL'Actualité économique(Paris)x0299-8793 1aL'Humanité clandestine (0398-3153) < P F° 0406 > et Humanité dimanche. Dimanche, 2e édition (0241-8827) < P F° 0329 >02aParti communiste françaisxPériodiques aActualitéxPériodiques aFrancexPériodiques02aParti communiste francais 3aFRbCCN0242-68704 uhttp://www.humanite.presse.fr/4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bEd. en microfilm : (1904-1939) ; (1944-1951)cParisdSalle des microformeseP Mic 35 (7)1 bLe mois en courscParisd27, Salle Rez-de-chausséeeP F° 10121 b(1952) -....cParisdMagasins/AnnexeeP F° 1012 aGEO RA4.06 France aDEW 05001042nas0 2200301 450 001001000000002001100010005001700021011001400038020001900052035001500071100004100086101000800127102000700135105001800142110001600160200008800176210006300264326002200327452005300349606003600402801003000438801001500468856004300483856009600526955007000622992001500692992003300707147737087000120169820140110134235.01 a2151-4364 aUSb2009203016 a0001201698 a20101109a20109999k y0frey50 ba0 aeng aUS ay  aaja yy 10aHumanityean international journal of human rights, humanitarianism and development aPhiladelphia, Pa.cUniversity of Pennsylvania Pressd2010- aTrois n°s par an 1tHumanity (Philadelphia, Pa. : Online)x2151-4372 aDroits de l'hommexPériodiques 3aFRbAbesc20101109gAFNOR 0bDLCgAACR24 uhttp://muse.jhu.edu/journals/humanity/ zContenu : table des matières et texte intégral des n°s depuis le vol. 1 no. 1 (aut-2010)1 bvol. 1 no. 1 (aut-2010) -....cParisdMagasins/AnnexeeP 8° 7149 aDEW 341.48 aGEO RS Sans aspect régional01314cas0 2200409 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001700100035001700117035001500134035001500149100004100164101000800205102000700213110001600220200010800236210003900344326001100383530003500394606002700429710004000456801003000496801002800526801002300554802000700577856008900584856010800673955005500781972000900836991001800845992002500863992001600888013758225000071177520130319051519.01 a1298-6216 a048883603 zccn7208/8230 accn1298-6216 accn7208/8230 aissn12986216 asib1135325 a0000711775 a19980606a19989999 0fre 0103 ba0 afre aFR aak 10aHypothèses...etravaux de l'école doctorale d'histoire de l'Université de Paris I-Panthéon Sorbonne aPariscPubl. de la Sorbonned1998- aAnnuel10aHypothèses ...b(Paris. 1998) aHistoirexPériodiques02aEcole doctorale d'histoirec(Paris) 3aFRbAbesc20040906gAFNOR 3aFRbSFc20040906gAFNOR 3aFRbISSNc20000908 a074 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-hypotheses.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1997) -(2005)cParisdMagasins/AnnexeeP 8° 6784 aZPAY aexempb201212 aGEO RA4.06 France 01 aDEW 900-90701332nls 2200313 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181050018001251060006001431100016001491350018001652000188001832100038003712150005004093260011004143300251004256060037006766060022007137120054007357120053007898010013008428300008008558560155008630000254180000025418020130319051519.0 aFNSP886931 a0000254180 a19900101a19819999k fre ba0 aeng aGB a z 0  az azk a 0  adr 10aIBSS, International bibliography of the social sciencesb[Ressource électronique]fBritish Library of Political and Economic Science, London School of Economics and Political Science aNorwood, MAcSilverPlatterd1981- a aannuel aBase de données bibliographiques : contient les références d'une sélection de publications internationales : livres,articles, chapitres de livres de plus de 2600 revues en économie, science politique, sociologie et anthropologie depuis 1981. aSciences socialesxBibliographie aBases de données02aBritish Library of Political and Economic Science02aLondon School of Economics and Political Science 0aFRbFNSP amfo4 uhttps://acces-distant.sciences-po.fr/fork?http://web.ebscohost.com/ehost/search?vid=1&hid=108&sid=307cfea0-a90a-436d-acfd-281661923544%40sessionmgr10400831nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001400154210003100168326001500199606004400214606003100258856005500289856004400344955009000388972000900478991001800487992002200505992001400527036262218000016182120130319051520.01 a1123-5527 aFNSP621855 a0000161821 a19900101b19942007 ba0 aita aIT aaga 10aIdeazione aRomacIdeazioned1994-2007 aBimestriel aScience politiqueyItaliexPériodiques aLibéralismexPériodiques4 uhttp://www.ideazione.com/Rivista/rivista_frame.htm zContenu : sommaires depuis janvier 19971 bvol. 1 no. 1 (nov-1994) -vol. 14 no. 2 (mar-2007)cParisdMagasins/AnnexeeP 8° 6143 aZCAD aexempb201202 aGEO RA6.03 Italie aDEW 320.501417nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001700154210005400171326002200225326002700247430008100274530003300355606003500388607004900423710004800472801002100520856004800541856007700589856009100666856010800757955009500865972000900960991001800969992004200987992001401029039318699000002156620131202124224.01 a0265-5012 aFNSP158348 a0000021566 a19900101a19849999 ba0 aeng aGB aahu 10aIDS bulletin aBrightoncInstitute of Development Studiesd1984- aBimestriel$d2006- aTrimestriel$d1984-2005 1aBulletin - Institute of Development Studies (Brighton, 1980)xISSN 0020-283510aIDS bulletinbBrighton. 1984 aAide économiquexPériodiques aPays en voie de développementxPériodiques02aInstitute of Development Studies (Brighton) 3aFRbCCN0265-50124 uhttp://www.ids.ac.uk/ids/bookshop/bulletin/ zContenu : sommaires et résumés depuis le volume 21, n°1, janvier 19904 uhttp://thesius.ingentaselect.com/vl=1166055/cl=58/nw=1/rpsv/cw/ids/02655012/contp1.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 15/16 no. 2 (1984/1985) -vol. 43 no. 6 (nov-2012)cParisdMagasins/AnnexeeP 8° 2831 aZCAD aexempb200908 aGEO RO Pays en voie de développement aDEW 338.901262nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000017001552100026001723260016001986060044002147120091002588010021003498300085003708560036004558560131004918560108006228560108007309550005008389570072008439720009009159920012009240000021486000002148620130319051521.01 a0340-0352 aFNSP158175 a0000021486 a19900101a19759999 f ba0 aeng aDE aahu 10aIFLA journal aMünchencSaurd1975- aTrimestriel aSciences de l'informationxPériodiques02aFédération internationale des associations de bibliothécaires et des bibliothèques 3aFRbCCN0340-0352 aVol. 8, n°2, May 1982 ---> 1984< P 8° 4631 > : collection Locarchives à jeter4 uhttp://www.ifla.org/V/index.htm zContenu : sommaires et résumés depuis le vol. 19, n°1, 1993 ; texte intégral de la revue à partir du vol. 26, n° 1, 20004 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b1 bvol. 1 (1975) -vol. 10 (1984)cParisdMagasins/AnnexeeP Index 0577 aZPAY aDEW 02001055nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210003900176326001700215607005000232607005300282710006400335801002100399830005400420856009700474856007400571955006900645992002500714992001400739038720914000002168820130319051521.01 a0018-974X aFNSP158604 a0000021688 a19900101a19489999 ba0 ager aDE aada 10aIfo-Schnelldienst aBerlincDuncker und Humblotd1948- aHebdomadaire aEuropexConditions économiquesxPériodiques aAllemagnexConditions économiquesxPériodiques02aIFO-Institut für Wirtschaftsforschungc(Munich, Allemagne) 3aFRbCCN0018-974X a1971--1984 collection donnée au CTL en juin 20024 uhttp://www.cesifo-group.de/portal/page/portal/ifoHome/b-publ/b2journal/20publsd/_ZS-SD-INTRO zContenu : sommaires et résumés en allemand et en anglaisdepuis 20001 bVol. 38 no. 1/2 (1985) -....cParisdMagasins/AnnexeeP 4° 3003 aGEO RA5.01 Allemagne aDEW 330.900980nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008300154210004500237326001200282530001900294530002200313607004800335801002100383856003500404856004400439955012000483972000900603991001800612992002200630992001400652038775263000014362620130319051521.01 a0032-423X aFNSP567943 a0000143626 a19941207a19459999 ba0 aita aIT aafa 10aIl Ponteerivista di politica economica e cultura fondata da Piero Calamendrei aFirenzecLa Nuova Italia Editriced1945- aMensuel10aPontebFirenze03aIl PontebFirenze aItaliexPolitique économiquexPériodiques 3aFRbCCN0032-423X4 uhttp://www.ilponterivista.com/ zContenu : sommaire des n°s depuis 20031 bvol. 1 no. 1 (jan-1945) -vol. 44 no. 3 (1988) ; vol. 63 no. 1 (jan-2007) -....cParisdMagasins/AnnexeseP 8° 0249 aZPAY aexempb201101 aGEO RA6.03 Italie aDEW 338.901590cas0 2200397 450 00100100000000200110001000500170002103500150003810000410005310100080009410200070010210500180010910600060012711000160013320000530014920700270020221000330022930100690026230100850033132600160041643000380043260600390047060600640050971000350057380100300060880100200063880100170065885601110067585600840078685601050087085601080097595500670108397200090115099200210115999200120118014677180X000120186620140107140331.0 a0001201866 a20100922a20109999k y0frey50 ba0 aeng aGB ay  ar aahu 10aIMF economic reviewfInternational Monetary Fund 0aVol. 58, no. 1 (2010)- aBasingstokecPalgraved2010- aDemande de numérotation ISSN en cours par le CR26 le 2010-10-08 a2041-4161 : ISSN figurant sur la publication et dans ISSN-portal, et non validé aTrimestriel 1tIMF Staff papers,xISSN 1020-7635 aPolitique monétairexPériodiques aAide économiquexCoopération internationalexPériodiques02aFonds monétaire international 3aFRbAbesc20101013gAFNOR 0bGyBeDBIZgAACR2 1bHEBISgAACR24 uhttps://acces-distant.sciences-po.fr/fork?http://www.palgrave-journals.com/imfer/journal/v58/n1/index.html zContenu: sommaires, résumés et texte intégral depuis le vol. 58 no. 1 (2010)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.palgrave-journals.com/imfer/archive/index.html? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bVol. 58 no. 1 (2010) -....cParisdMagasins/AnnexeeP 8° 0438 aZPAY aGEO RQ Universel aDEW 33201386nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005000163207004700213210006000260326001600320430005900336440003600395606003900431606006400470710003500534801001300569856005900582856003600641856010100677856010800778955008400886972000900970992002100979992001201000044754884000028208520140107135910.01 a1020-7635 a0000282085 a b19992010k f fre ba0 aeng aUS a 0  ar aah z 0 10aIMF Staff papersfInternational Monetary Fund 1aVol.46, no. 1(1999) - vol.57, no. 2 (2010) aWashington, D.CcInternational Monetary Fundd1999-2010 aTrimestriel 1tStaff papers - International Monetary Fund,x0020-8027 1tIMF economic review,x2041-4161 aPolitique monétairexPériodiques aAide économiquexCoopération internationalexPériodiques02aFonds monétaire international 0aFRbFNSP4 uhttp://www.imf.org/external/pubs/ft/staffp/archive.htm zAccès libre au texte intégral4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=111793 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 46 no. 1 (1999) - vol. 57 no. 2 (2010)cParisdMagasins/AnnexeeP 8° 0438 aZPAY aGEO RQ Universel aDEW 33201144nls 2200349 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001341350018001502000054001682100058002222300028002803260031003083360024003393370024003635170049003875170025004365170031004615170023004926060045005156070058005607100035006188010013006538560092006668560036007580000311218000031121820130403094450.0 a0000311218 a a19979999k fre ba0 aeng aUS a 0  az aby z 0  adr 10aIMF working paperb[Ressource électronique]fIMF aWashington, D. C.cInternational Monetary Fundd1997- aDonnées électroniques aCollection de monographies aDonnées textuelles aAccès par Internet10aWorking papers - International Monetary Fund10aWorking papers - FMI10aDocuments de travail - FMI10aIMF working papers aFinancesyPays en voie de développement aPays en voie de développementxPolitique économique02aFonds monétaire international 0aFRbFNSP4 uhttp://www.imf.org/external/pubs/cat/wp1_sp.aspx?s_year=1997&e_year=2013&brtype=default zAccès libre au texte intégral00852nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000123001502100023002732300024002963260005003206060062003258010013003878560077004008560065004779550005005429920016005479920011005630001166836000116683620130319051522.0 a0001166836 a a20089999k fre 01 ba0 afre aFR ar aaz z  adr 10aImhe info/ Programme de l'OCDE sur la gestion des établissements d'enseignement supérieurb[Ressource électronique] aPariscOCDEd2008- aRevue électronique a aEnseignement supérieurxPolitique publiquexPériodiques 0aFRbFNSP4 uhttp://www.oecd.org/department/0,3355,en_2649_35961291_1_1_1_1_1,00.html zContenu : texte intégral des articles depuis décembre 20081 r aDEW 370-379 aGEO RQ01221nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210002400182320002600206326001800232517003000250606002900280606002800309606004400337801002100381856005600402856006000458856010900518856010800627955006900735972000900804991001800813992001200831992001600843039312879000002147320130319051522.01 a0261-9288 aFNSP158149 a0000021473 a19900101a19829999 ba0 aeng aGB aaiu 10aImmigrants & minorities aLondoncCassd1982- aN' a pas paru en 2004 a3 n°s par an10aImmigrants and minorities aMinoritésxPériodiques aEtrangersxPériodiques aEmigration et immigrationxPériodiques 3aFRbCCN0261-92884 uhttp://www.tandf.co.uk/journals/titles/02619288.asp zContenu : sommaires en ligne à partir du vol. 22, 20034 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713720544db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no.1 (mar-1982) -....cParisdMagasins/AnnexeeP 8° 4545 aZSAB aexempb200910 aDEW 325 aDEW 305-30601233cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200003400180207002200214210003100236305010100267423003900368530002600407606005000433676000800483710002600491801003000517801002300547802000700570856003100577856005200608955006900660955006400729972000900793992002100802992001200823160813778000123885020130319051525.01 a2258-8787 aissn22588787 a0001238850 a20120504a20129999m y0frey50 ba0 afre aFR ay 0  ar aafu 0uu 12aL'Impossibleel'autre journal 0ano. 1 (mars 2012) aPariscL'Impossibled2012- aLe sous-titre : "l'autre journal", fait allusion à la revue parue sous ce titre de 1984 à 1993 1tL'Autre journal (Paris)x0765-441312aL'Impossibleb(Paris) aActualitéz21e sièclexPériodiques2rameau a00102aL'Impossiblec(Paris) 3aFRbAbesc20120720gAFNOR 3aFRbISSNc20120529 a074 uhttp://www.limpossible.fr/ zContenu : sommaire en ligne à partir du no. 1.1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 8° 71971 bno. 1 (mars 2012) -....cParisdMagasins/AnnexeeP 8° 7197 aZPAY aGEO RQ Universel aDEW 00100869nas 2200277 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000410013921000260018032600170020643000450022360600520026871200510032083000970037185600310046885600490049995500050054899200220055399200160057503989732X000002182420130321094924.01 a1145-0673 aFNSP159014 a19910115b19862009 ba0 afre aFR aa a 10aINC hebdo, Consommateurs actualités aPariscINCd1986-2009 aHebdomadaire 1aCA, Consommateurs actualitésx0339-154X aConsommateursxProtectionyFrancexPériodiques02aInstitut national de la consommationc(France) aDésherbé , réunion mars 2013 (on ne gardait que 5 ans et n'avions rien reçu depuis 2009)4 uhttp://www.conso.net/page/ zaccès libre au site ; sélection d'articles1 b aGEO RA4.06 France aDEW 380-38201142nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000057001502100065002073000120002723260016003923360058004083370063004664300050005294400052005794520043006316060030006748010013007048560090007179550005008079920016008120000491580000049158020130319051526.0 a0000491580 a b19501961k fre 01 ba0 aeng aGB az aay z  adr 10aIncorporated statisticianb[Ressource électronique] aLondoncAssociation of Incorporated Statisticiansd1950-1961 aAccès au texte intégral (réservé aux sites de Sciences Po) à partir du vol. 1 de 1950 jusqu'au vol. 11 de 1961 aIrrégulier aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tStatistical science [Ressource électronique] 1tStatistician (London) [Ressource électronique] 1tIncorporated statisticianx(1466-9404) aStatistiquexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/14669404.html1 r aDEW 310-31900984nas 2200265 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000035001552100040001903260014002306060029002446070034002738560192003078560108004999550068006079920031006759920012007060000071492000007149220130319051527.01 a0951-9467 aFNSP327936 a0000071492 a19900101a19869999 ba0 aeng aGB acaa 14aThe Independent (London, 1986) aLondoncNewspaper Publishingd1986- aQuotidien aActualitéxPériodiques aGrande-BretagnexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLe mois en courscParisd27, Salle Rez-de-chausséeeP F° 1335 aGEO RA4.02 Grande-Bretagne aDEW 05001089nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154207003300181210005000214326001600264606003700280606004900317710004500366856012800411856010800539955006600647972000900713991001800722992002300740992001200763040355519000020729120130319051527.01 a1086-1653 aFNSP751873 a0000207291 a19900101a19969999 ba0 aeng aUS aaha 14aThe Independent review 1aVol. 1, no. 1 (Spring 1996)- aOakland, Calif.cIndependent Instituted1996- aTrimestriel aEconomie politiquexPériodiques aEconomie politiqueyEtats-UnisxPériodiques02aIndependent Institutec(Oakland, Calif.)4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=TIR&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1996) -....cParisdMagasins/AnnexeeP 8° 6297 aZSAB aexempb201301 aGEO RC2 Etats-Unis aDEW 33001222nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210005400178326002300232326002800255606004000283801002100323856003800344856005800382856010900440856010800549955007100657955009000728957005700818972000900875992001200884039396606000002181420130319051527.01 a0306-4220 aFNSP158993 a0000021814 a19900101a19729999 ba0 aeng aGB aaha 10aIndex on censorship aLondoncWriters and Scholars internationald1972- aTrimestrielb2001- aMensuel puis bimestriel aLiberté d'expressionxPériodiques 3aFRbCCN0306-42204 uhttp://www.oneworld.org/index_oc/ zContenu : sommaires et résumés depuis le n°2, 19954 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t714592856db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 10 no. 4 (aou-1981) -....cParisdMagasins/AnnexeeP 4° 46551 bvol. 1 no. 1 (mar-1972) -vol. 10 no. 3 (jun-1981)cParisdMagasins/AnnexeeP 8° 30901 b(1972) -(1979)cParisdMagasins/AnnexeeP Index 0254 aZCAD aDEW 32301215nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210005400174326001600228607004700244676000800291710003600299801002100335856021800356856010800574955006600682955008200748972000900830991001800839992002000857992001200877039242889000006695720130319051528.01 a0251-3048 aFNSP311075 a0000066957 a19900101a19439999 ba0 aeng aIN aaha 10aIndia quarterly aNew DelhicIndian Council of World Affairsd1943- aTrimestriel aIndexRelations extérieuresxPériodiques a95002aIndian Council of World Affairs 3aFRbCCN0251-30484 uhttps://acces-distant.sciences-po.fr/fork?http://iqq.sagepub.com/?&MDP-WSSO-SESSION=85836973b72e8e3fa3610159c5334937&error=Votre%20session%20a%20expir%E9,%20merci%20de%20vous%20authentifier%20de%20nouveau&status=2 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9501 bvol. 4 no. 4 (1948) -vol. 64 no. 4 (2008)cParisdMagasins/AnnexeeP 8° 0222 aZECH aexempb201101 aGEO RI1.13 Inde aDEW 32701310nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200001700163207002400180210003000204326001600234607002300250801001300273856004200286856006800328856012800396856010800524856010900632856010800741955007000849972000900919992001200928992002000940067777422000048893020140108130506.01 a1473-6489 a0000488930 a a20029999k fre ba0 aeng aGB a 0  ar aah z 0 10aIndia review 1aVol.1, no.1 (2002)- aLondoncFrank Cassd2002- aTrimestriel aIndexPériodiques 0aFRbFNSP4 uhttp://www.frankcass.com/jnls/ind.htm zSommaires et résumés des articles depuis le vol.1, n°1, 20024 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=IYD&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713635440db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-2002) -....cParisdMagasins/AnnexeeP 8° 6660 aZSAB aDEW 954 aGEO RI1.13 Inde01001nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000016001552100041001713260017002126060029002296070023002588010021002818300160003028560104004628560108005669550005006749920020006799920012006990000053839000005383920130926152634.01 a0254-8399 aFNSP255006 a0000053839 a19900101a19759999 ba0 aeng aIN aaca 10aIndia today aNew DelhicLiving Media Indiad1975- aHebdomadaire aActualitéxPériodiques aIndexPériodiques 3aFRbCCN0254-8399 a1979-->1984 : désherbé ; 1985-->2004 : collection donnée au CTLes ; 2005-->2008 : désherbé (on ne conservait que 3 ans et n'arrivait plus (P 4° 4906)4 uhttps://acces-distant.sciences-po.fr/fork?http://global.factiva.com/sb/default.aspx?NAPC=S&fcpil=fr zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b aGEO RI1.13 Inde aDEW 05001316nas 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000142001502100027002923000073003193260016003925100047004086060058004557100067005138010013005808560105005938560108006989550064008069720009008709910018008799920014008979920016009119920051009270000402328000040232820130621131000.0 a0000402328 a a20012002k f fre ba0 amul aFR a 0  ar aah z 0 10aIndicators of industry and services =dIndicateurs de l'industrie et des servicesfOrganisation for Economic Co-operation and Development aPariscOECDd2001-2002 aRevue arrêtée pour développer la base de données correspondante. aTrimestriel10aIndicateurs de l'industrie et des services aIndustrieyPays de l'OCDExStatistiquesxPériodiques02aOrganisation de coopération et de développement économiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/16098714/indicindserv zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno 1 (2001) -no 4(2001)cParisdMagasins/AnnexeeP 4° 4324 aZPAY aexempb201306 aDEW 338.4 aDEW 310-319 aGEO RN1 Pays industrialisés, pays occidentaux01085nas 2200325 i 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102110001600109200003400125210003500159225002500194300006900219326001100288517005900299530003500358606006500393710004100458830004800499856007800547955005600625972000900681991001800690992002300708992001600731992001200747036286885000008346320131003135533.0 aFNSP372036 a19900101a00019999 ba0 aeng aUS aaka 10aIndividual income tax returns aWashington, D.C.cUSGPOd0001-20aStatistics of income aDe 1951 à 1953, constitue la partie 1 de "Statistics of income" aAnnuel10aStatistics of income. 1. Individual income tax returns00aIndividual income tax returns. aImpôt sur le revenuyEtats-UnisxStatistiquesxPériodiques02aEtats-UnisbInternal Revenue Service aCollection donnée au CTLES en juillet 20134 uhttp://www.irs.gov/uac/Tax-Stats-2zAccés au texte intégral depuis 19941 b(1964) -(2004)cParisdMagasins/AnnexeseP 4° 3275 aZPAY aexempb201306 aGEO RC2 Etats-Unis aDEW 310-319 aDEW 33600955nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210006800177326001500245607002900260710004700289801002100336856009000357856010800447955006300555972000900618992002600627992001200653038723921000002185120130319051529.01 a0019-7289 aFNSP159074 a0000021851 a19900101a19669999 ba0 aeng aUS aaju 10aIndonesia (Ithaca) aIthaca, N.Y.cCornell University, Southeast Asia Programd1966- aSemestriel aIndonésiexPériodiques02aCornell UniversitybSoutheast Asia Program 3aFRbCCN0019-72894 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00197289.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (avr-1966) -....cParisdMagasins/AnnexeeP 4° 2349 aZCAD aGEO RI2.12 Indonésie aDEW 95901734nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009700154210010100251326001600352517004200368517001500410606005400425606004200479710006000521801002100581856004500602856007300647856009000720856010800810856006800918856010800986955009001094957009001184972000901274991001801283992002301301992001201324013310011000002185320130319051529.01 a0019-7939 aFNSP159077 a0000021853 a19900101a19479999 ba0 aeng aUS aahu 10aIndustrial & labor relations reviewfNew York State School of Industrial and Labor Relations aIthaca,N.Y.cNew York State School of Industrial and Labor Relations, Cornell University]d1947- aTrimestriel10aIndustrial and labor relations review10aILR Review aRelations industriellesyEtats-UnisxPériodiques aRelations industriellesxPériodiques02aNew York State School of Industrial and Labor Relations 3aFRbCCN0019-79394 uhttp://www.ilr.cornell.edu/depts/ILRrev/ zContenu : sommaires et résumés depuis le vol. 47, n°4, juil. 19944 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00197939.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://digitalcommons.ilr.cornell.edu/ilrreview/all_issues.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 2 (jan-1950) -vol. 63 no. 1 (oct-2009)cParisdMagasins/AnnexeeP 8° 09421 b(oct-1947) -(jul-1960) ; (oct-1960) -(jul-1967)cParisdMagasins/AnnexeeP Index 0030 aZPAY aexempb201101 aGEO RC2 Etats-Unis aDEW 33100881nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210002500195326001100220430006200231517003400293606004500327606002800372710006900400856004400469955005500513972000900568992001400577048780952000024538720130319051529.01 a1361-7486 aFNSP862910 a0000245387 a19900101a19959999 ba0 aeng aXX aaka 10aIndustrial development global report aViennacUNIDOd1995- aAnnuel 1aIndustry and global development. Global reportx0259-303310aIndustrial development report aDéveloppement économiquexPériodiques aIndustriexPériodiques02aOrganisation des Nations Unies pour le développement industriel4 uhttp://www.unido.org/index.php?id=o63971 b(1996) -(2004)cParisdMagasins/AnnexeeP 4° 5016 aZPAY aDEW 338.401179nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200011800139210002900257326002300286326002800309530003500337606004200372710005800414856007100472856007300543856005300616856005400669955007000723972000900793991001800802992002100820992001200841038724448000002185620130729122804.01 a0019-8676 aFNSP159083 a19910115a19619999 ba0 aeng aUS aaha 10aIndustrial relationsfInstitute for research on labor and employment (IRLE), University of California at Berkeley aOxfordcBlackwelld1961- aTrimestrielb1994- a3 nos par anb1961-1993 0aIndustrial relationsbBerkeley aRelations industriellesxPériodiques02aInstitute of Industrial Relationsc(Berkeley, Calif.)4 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0019-8676 zContenu : sommaires et résumés depuis le vol. 36, no.1, janv. 19974 uhttp://www.irle.berkeley.edu/indrel/archive.html zContenu : sommaires depuis le vol. 1, no. 1, 19611 bvol. 1 no. 1 (oct-1961) -....cParisdMagasins/AnnexeeP 8° 1977 aZSAB aexempb201002 aGEO RQ Universel aDEW 33101148nas 2200325 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200003300148210002300181326001100204430004800215606005000263606003600313710006700349801001300416856020900429856005300638955006500691972000900756991001800765992002500783992001400808078221102000055985520140117162748.01 a2104-0354 a a20039999k fre ba0 afre aFR a 0  ar aak z 0 12aL'Industrie française en... aPariscCPCId2003- aAnnuel 1tL'Etat de l'industrie françaisex1285-0772 aIndustrieyFrancexStatistiquesxPériodiques aIndustrieyFrancexPériodiques02aFrancebCommission permanente de concertation pour l'industrie 0aFRbFNSP4 uhttp://www.ladocumentationfrancaise.fr/ezexalead/search?SearchText=Industrie+fran%C3%A7aise+en&cat[GroupeThematique]=%C3%89conomie%2C+finances&n=slDocFrancaisezAccés libre au texte intégral depuis 20004 zAccés au texte intégral du rapport depuis 20001 b(2001/2002) -(2003/2004)cParisdMagasins/AnnexeeP 4° 6728 aZPAY aexempb201401 aGEO RA4.06 France 01 aDEW 338.901390nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000035001552100023001904300059002135170038002726060060003107120067003708560288004378560108007259550099008339550054009329720009009869920051009959920014010469920016010600000077531000007753120130319051530.01 a0256-9868 aFNSP350993 a0000077531 a19900101a19619999 f ba0 amul aFR aaka 10aIndustrie sidérurgique en.... aPariscOCDEd1961- 1aIndustrie sidérurgique en Europe < Doc OCDE 4°0064 >10aIron and steel industry in....... aSidérurgieyPays de l'OCDExStatistiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://titania.sourceocde.org/vl=1321297/cl=28/nw=1/rpsv/cgi-bin/jsearch_oecd?limittitles=&cheese=searchdb&oecd-select=home.htm&form=expert&search0=industrie+siderurgique&search=&field0=tka&system=oecd_all&sortresultsby=rev_timestamp&what=d14 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r1960-1961 < Doc OCDE 4°0064 >, 1962-1969 < Doc OCDE 8°0146 >, 1970-1975 < Doc OCDE 4°0064 >1 b(1976)-(2001)cParisdMagasins/AnnexeeP 4° 5225 aZPAY aGEO RN1 Pays industrialisés, pays occidentaux aDEW 338.4 aDEW 310-31901606nas 2200421 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131105001800138200002800156207002900184210002800213326002500241326002600266326002400292326002700316326002600343430004400369606002800413606003000441710005000471801001300521856005700534856005800591856010300649856010800752856010900860856010800969955006601077972000901143991001801152992001401170036786004000023151020130319051530.01 a1366-2716 aFNSP822350 a0000231510 a19900101c fre 0 aeng aGB ay z a 10aIndustry and innovation 1avol. 4 no.1 (June-1997)- aAbingdoncCarfaxd1997- a8 n°s par anb2011- aBimestrielb2008-2010 a5 n°s par anb2007 aTrimestrielb2001-2006 aSemestrielb1997-2000 1aJournal of industry studies,x1320-6095 aIndustriexPériodiques aInnovationsxPériodiques02aIndustrial Relations Research Center (Sydney) 0aFRbFNSP4 uhttp://www.tandf.co.uk/journals/carfax/13662716.html zContenu : sommaires depuis le vol. 1, n°2, nov. 19944 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=104593 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713424563db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 4 no. 1 (1997) -....cParisdMagasins/AnnexeeP 8° 6361 aZPAY aexempb201301 aDEW 338.401152cas 2200385 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147106000600154110001600160200005200176207002100228210003400249326002300283530003000306606003800336607004500374676000800419710001900427801003000446801002300476802000700499856004000506856006500546955006700611955006300678972000900741992001600750086155237000092633620130319051531.01 a1772-3760 a086075276 aissn17723760 a0000926336 a20050422a20059999k 1fre 0103 ba0 afre aFR ar aaju 10aInflexionsecivils et militaires : pouvoir dire 1aN.1(2005, fev.)- aPariscArmée de terred2005- a2 à 3 n°s par an10aInflexionsb(Paris. 2005) aPolitique militairexPériodiques aFrancexDéfense nationalexPériodiques a35501aFrancebArmée 3aFRbAbesc20060110gAFNOR 3aFRbISSNc20050601 a074 uhttp://inflexions.fr/category/revue zContenu : sommaires et résumés depuis le n° 11 (jul-2010)1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3551 bno. 1 (fev-2005) -....cParisdMagasins/AnnexeeP 8° 6862 aZGRA aDEW 355-35901113nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210005300191326001500244517000800259606003600267607005100303710004700354801002100401830007200422856003200494856008100526955006500607957005700672972000900729992002300738992001400761038724677000002261920140106172218.01 a0019-977X aFNSP160617 a0000022619 a19900101a19319999 ba0 aspa aES aafa 10aInformación comercial española aMadridcMinisterio de economia y haciendad1931- aBimestriel10aICE aCommerceyEspagnexPériodiques aEspagnexConditions économiquesxPériodiques02aEspagnebMinisterio de economia y hacienda 3aFRbCCN0019-977X a1948--1984 : collection donnée au CTL ; suppl P 4° 104 bis jeté.4 uhttp://www.revistasice.com/ zContient : sommaires et texte intégral depuis le numéro 778, mai-juin 19991 bno. 617 (jan-1985) -....cParisdMagasins/AnnexeeP 4° 01041 b(1982) -(1998)cParisdMagasins/AnnexeeP Index 0442 aZPAY aGEO RA6.02 Espagne aDEW 330.900986nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002700139210002400166326001200190530004100202606003800243710007500281801002100356830005300377856003100430955007500461955007100536972000900607991001800616992002200634992001600656039224228000002206520130930131253.01 a0019-994X aFNSP159684 a19900101a19529999 ba0 afre aFR aafa 12aL'Information agricole aPariscFNSEAd1952- aMensuel12aInformation agricole‎bParis. 1952 aAgricultureyFrancexPériodiques02aFédération nationale des syndicats d'exploitants agricolesc(France) 3aFRbCCN0019-994X a1962-2010 : collection envoyée au Ctles en 20134 uhttp://www.pleinchamp.com/1 bno. 363 (1962) -no. 866 (avr-2013)cParisdMagasins/AnnexeeP 4° 22621 bno. 128 (1956) -no. 362 (1962)cParisdMagasins/AnnexeeP F° 1237 aZPAY aexempb201306 aGEO RA4.06 France aDEW 338.1-300919nas 2200253 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000028001552100027001833260016002105300028002268010021002548560108002758560108003839550084004919550090005750000022610000002261020130319051531.01 a0266-6669 aFNSP160602 a0000022610 a19900101a19859999 ba0 aeng aGB aaha 10aInformation development aLondoncManselld1985- aTrimestriel00aInformation development 3aFRbCCN0266-66694 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 9 no. 1/2 (1993) -vol. 11 no. 4 (1995)cParisdMagasins/AnnexeeP 4° 64051 bvol. 1 no. 1 (jan-1985) -vol. 8 no. 4 (déc-1992)cParisdMagasins/AnnexeeP 8° 484801049nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210002400186326005000210606003200260676000800292801002100300856007300321856003700394856010500431856004200536955006600578955007000644972000900714992001200723039224260000002261120130319051531.01 a0020-0093 aFNSP160605 a0000022611 a19900101a19369999 ba0 afre aFR aaha 12aL'Information géographique aPariscColind1936- aBimestriel puis trimestriel à partir de 2000 aGéopolitiquexPériodiques a910 3aFRbCCN0020-00934 uhttp://www.armand-colin.com/revue/6/2/l-information-geographique.php zAccès libre au texte intégral.4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-l-information-geographique.htm zAccès aux sommaires et aux résumés1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9101 bvol. 1 no. 1 (jun-1936) -....cParisdMagasins/AnnexeeP 4° 0096 aZPAY aDEW 91001560nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002800139210004000167326001600207452005100223530002800274606004700302801002100349856020800370856023300578856021400811955006701025955008201092972000901174991001801183992002101201992001201222039152502000002261420130730143554.01 a0197-2243 aFNSP160610 a19900101a19819999 ba0 aeng aUS aaha 14aThe Information society aNew YorkcTaylor and Francisd1981- aTrimestriel 1tThe information society (Online)‎x1087-653704aThe Information society aTechnologie de l'informationxPériodiques 3aFRbCCN0197-22434 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=100659zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=1HQ&site=ehost-livezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713669588db=allzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 14 no. 1 (1998) -....cParisdMagasins/AnnexeeP 4° 67731 bvol. 1 no. 1 (1981) -vol. 13 no. 4 (1997)cParisdMagasins/AnnexeeP 8° 4706 aZPAY aexempb201304 aGEO RQ Universel aDEW 02001219nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116200003800123210007400161326001200235436005400247436005800301530003800359606005600397710007400453801002100527830005600548830005300604856011100657955006100768972000900829991001800838992002500856992001200881039371905000002273420130930154747.01 a0303-2493 aFNSP160875 a19900101a19749999 ba0 ager aDE10aInformationen zur Raumentwicklung aBonncBundesforschungsanstalt für Landeskunde und Raumordnungd1974- aMensuel 1aRundbrief - Institut für Landeskunde,x0340-0638 1tInformationen - Institut für Raumordnung,x0020-231200aInformationen zur Raumentwicklung aAménagement du territoireyAllemagnexPériodiques02aBundesforschungsanstalt für Landeskunde und Raumordnungc(Allemagne) 3aFRbCCN0303-2493 a1967--> 1984 collection donnée au CTL en juin 2002 a1985-2012 : collection envoyée au CTles en 20134 uhttp://www.bbr.bund.de/index.html?/veroeffentlichungen/izr_jahresverz.htmzContenu : sommaires depuis 20011 bno. 1/2 (1985) -....cParisdMagasins/AnnexeeP 4° 2348 aZPAY aexempb201306 aGEO RA5.01 Allemagne aDEW 33301004nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003300139210006200172210008200234326001600316530003900332606004500371710006500416856004400481856005600525955006800581972000900649992004200658992001400700039891615000002271420140107140851.01 a1142-4540 aFNSP160836 a19910122a19729999 ba0 afre aFR aaha 10aInformations et commentaires aCorenccAssociation pour un nouveau développementd1999- aLyoncAssociation des amis du Centre croissance des jeunes nationsd1972-1998 aTrimestriel 0aInformations et commentairesbLyon aDéveloppement économiquexPériodiques02aAssociation des amis du centre Croissance des jeunes nations4 uhttp://www.ismea.org/ISMEA/infocom.html zContenu : sommaires depuis le no. 106, janvier 19991 bno. 41/42 (1982/1983) -....cParisdMagasins/AnnexeeP 4° 5401 aZPAY aGEO RO Pays en voie de développement aDEW 338.901131nas 2200289 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000073001412100027002143260014002414300093002554400071003486060036004196060046004556070044005017120129005458560058006749550068007329920025008009920016008250000212103000021210320130319051532.0 aFNSP766159 a0000212103 a19900101b00011997 ba0 afre aFR aaea 10aInformations rapidesfMinistère du travail et des affaires sociales aPariscSESId0001-1997 aBimensuel 1aInformations rapides - Ministère des affaires sociales et de l'intégration (1164-7051) 1aInformations rapides - Ministère de l'emploi et de la solidarité aHôpitauxyFrancexPériodiques aPolitique sanitaireyFrancexPériodiques aFrancexPolitique socialexPériodiques02aFrancebMinistère du travail et des affaires socialesbService des statistiques, des études et des systèmes d'information4 uhttp://www.sante.gouv.fr/htm/publication/index_ir.htm1 bno. 81 (1996)-no. 89 (1997)cParisdMagasins/AnnexeeP 4° 5091 aGEO RA4.06 France 01 aDEW 360-36301017nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007000154210002300224326001500247530003900262606004900301710005800350801002100408856010100429856010800530955006400638972000900702992001600711039236854000002309820140114100940.01 a0046-9459 aFNSP161644 a0000023098 a19900101a19479999 ba0 afre aFR aafa 10aInformations socialesfUnion des caisses d'allocations familiales aPariscCNAFd1947- aBimestriel10aInformations socialesbParis. 1947 aAllocations familialesyFrancexPériodiques02aCaisse nationale des allocations familialesc(France) 3aFRbCCN0046-94594 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-informations-sociales.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 6 (mar-1948) - ....cParisdMagasins/AnnexeeP 8° 0178 aZGRA aDEW 360-36300967nas 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000138001502100037002883260011003256060044003366070028003807100083004088010013004918560060005048560036005649450015006009550009006159920025006249920016006490000621530000062153020130319051532.0 a0000621530 a a20029999 fre 01 ba0 aspa aAR a 0  ar aak z 0 10aInforme sobre antisemitismo en la ArgentinafDAIA, Delegacion de Asociaciones Isrealitas Argentinas, CES, Centro de estudios sociales a[Buenos Aires]:cDAIA/CESd2002- aAnnuel aAntisémitismeyArgentinexPériodiques aArgentinexPériodiques02aDelegación de asociaciones israelitas argentinasbCentro de estudios sociales 0aFRbFNSP4 uhttp://news.daia.org.ar/shop/otraspaginas.asp?pagina=15 zAccès libre au texte intégral b8°246.4181 a2002 aGEO RD4.11 Argentine aDEW 305-30600998nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000046001502100050001963000045002463260012002913360056003033370042003596060036004016060046004376060073004836060030005567100033005868010013006198560040006329920012006720000505390000050539020130319051532.0 a0000505390 a a20029999k fre 01 ba0 afre aFR ar aaf z  adr 10aInfos de serreb[Ressource électronique] aMontreuilcRéseau action climat Franced2002 aTexte intégral depuis le n°1, mai 2002 amensuel aDonnées textuelles accessibles uniquement en ligne aFichiers PDF et Word télechargeables aEffet de serre (météorologie) aGaz à effet de serrexPolitique publique aRéchauffement de la terrexPréventionxCoopération internationale aEnvironnementxProtection02aRéseau action climat France 0aFRbFNSP4 uhttp://www.rac-f.org/Infos-de-Serre aDEW 33301047nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006400154210002100218326001600239430005400255530002100309606002900330710007700359856005700436856005400493955015900547972000900706991001800715992001200733040143392000004755620130319051532.01 a1012-8050 aFNSP240832 a0000047556 a19900101a19889999 ba0 aeng aAT aaha 10aInnovationethe European journal of social science research aWiencIFSd1988- aTrimestriel 1tInnovations in social science researchx1360-626310aInnovationbWien aSociologiexPériodiques02aInterdisciplinary Centre for Comparative Research in the Social Sciences4 uhttp://www.tandf.co.uk/journals/carfax/13511610.html zContenu : sommaires depuis le vol. 1, no. 1, 19881 bvol. 2 no. 4 (1989) -vol. 9 no. 2 (jun-1996) ; vol. 11 no. 3 (1998) -vol. 11 no. 4 (1998) ; vol. 14 no. 1 (2001) -....cParisdMagasins/AnnexeeP 8° 5767 aZSAB aexempb201206 aDEW 30100959nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005300154210004300207210003200250326001500282530002500297606005000322856009100372856010800463955005900571972000900630991001800639992001200657040456773000021474620130319051533.01 a1267-4982 aFNSP775067 a0000214746 a19900101a19959999 ba0 afre aFR aaja 10aInnovationsecahiers d'économie de l'innovation aBruxellescDe Boeck Universitéd2007- aPariscHarmattand1995-2006 aSemestriel10aInnovationsb(Paris) aInnovationsxAspect économiquexpériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-innovations.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1995) -....cParisdMagasins/AnnexeeP 8° 6330 aZPAY aexempb201211 aDEW 50700967nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001300154207002000167210005100187326001900238326002500257430004800282601003900330606004400369606002900413856004300442856008200485955006500567972000900632992001200641037455265000002327720130319051533.01 a1164-6586 aFNSP162202 a0000023277 a19910129a19859999 ba0 afre aFR aafa 00aInprecor 1ano. 193 (1985)- aMontreuilcPresse Edition Communicationd1985- aMensuelb1993- aBimensuelb1986-1992 1aINPRECOR, Intercontinental pressx0294-851602aInternationalec(04)xPériodiques aRelations internationalesxPériodiques aActualitéxPériodiques4 uhttp://orta.dynalias.org/inprecor/home zContenu : texte intégral du dernier numéro en ligne , sélection d'articles1 bno. 193 (avr-1985) -....cParisdMagasins/AnnexeeP 4° 4054 aZPAY aDEW 05001141nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005600154207003300210210003800243326002200281326002700303530002000330606003000350606004000380801002100420856010900441856010800550955007100658972000900729991001800738992003300756992001400789038725568000002271620130319051533.01 a0020-174X aFNSP160840 a0000022716 a19900101a19589999 ba0 aeng aNO aaga 00aInquiryean interdisciplinary journal of philosophy 1aVol. 1, no. 1 (spring 1958)- aOslocUniversitetsforlagetd1958- aBimestrielb2004- aTrimestrielb1958-200310aInquiryb(Oslo) aPhilosophiexPériodiques aPhilosophie politiquexPériodiques 3aFRbCCN0020-174X4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713393858db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 16 no. 1 (mar-1973) -....cParisdMagasins/AnnexeeP 8° 3282 aZSAB aexempb201009 aGEO RS Sans aspect régional aDEW 10-1400962nas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200004500156207002300201210002700224326001500251530002200266607005000288607005200338801003000390801002300420802000700443856003400450856003600484955006400520972000900584992001200593992001900605114940487000109330920130319051533.01 a1188-746X aissn1188746X a0001093309 a20070529a19929999 0frey0103 ba0 aeng aCA aaj 10aInroadsethe Canadian journal of opinion 0aNo. 1 (Fall 1992)- aOttawacInroadsd1992- aSemestriel10aInroadsb(Ottawa) aCanadaxConditions économiquesxPériodiques aCanadaxPolitique et gouvernementxPériodiques 3aFRbAbesc20070529gAFNOR 3aFRbISSNc20070501 a044 uhttp://www.inroadsjournal.ca/ zAccès libre au texte intégral1 bno. 15 (jul-2004)- ....cParisdMagasins/AnnexeeP 8° 6964 aZSAB aDEW 971 aGEO RC1 Canada01007nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000020001552100024001753260017001994300044002165300028002606070060002886070064003487120078004128560047004908560036005379550068005739920022006419920016006639920014006790000067283000006728320130319051533.01 a0997-3192 aFNSP312586 a0000067283 a19900101a19899999 ba0 afre aFR aa a 10aINSEE première aPariscINSEEd1989- aHebdomadaire 1aPremiers résultats (Paris) (0758-7724)00aINSEE première (Paris) aFrancexConditions socialesxStatistiquesxPériodiques aFrancexConditions économiquesxStatistiquesxPériodiques02aInstitut national de la statistique et des études économiquesc(France)4 uhttp://www.insee.fr/fr/ppp/collections.htm zAccès libre au texte intégral1 bno. 1 (1989)-no. 997 (2004)cParisdMagasins/AnnexeeP 4° 4855 aGEO RA4.06 France aDEW 310-319 aDEW 330.901075nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000050001642100023002143260011002375100056002486060052003047100067003568010013004238560123004368560042005599550060006019720009006619920016006709920012006869920051006980000299607000029960720130319051534.0 a1029-4333 a0000299607 a a19999999k f fre ba0 amul aFR a 0  ar aak z 0 10aInstitutional investors. Statistical yearbook aParisbOCDEd1999- aAnnuel10aInvestisseurs institutionnels. Annuaire statistique aInvestissements institutionnelsyPays de l'OCDE02aOrganisation de coopération et de développement économiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://miranda.sourceoecd.org/vl=1250810/cl=12/nw=1/rpsv/outlook_annuals.htm4 zAccés au texte intégral depuis 19991 b(1998) -(1992/2001)cParisdMagasins/AnnexeeP 4° 6833 aZPAY aDEW 310-319 aDEW 332 aGEO RN1 Pays industrialisés, pays occidentaux01279nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200020400154210002300358326001100381510004200392606005800434710006700492856012300559856010800682955006500790972000900855991001800864992005100882992001600933992001600949036035289000010272620140106171152.01 a1023-8549 aFNSP441365 a0000102726 a19900101a19939999 f ba0 amul aFR aaka 10aInsurance statistics yearbook‎fOrganisation for Economic Co-operation and Development‎d= Annuaire des statistiques d'assurance‎fOrganisation de coopération et de développement économiques aPariscOCDEd1993- aAnnuel10aAnnuaire des statistiques d'assurance aAssuranceyPays de l'OCDExStatistiquesxPériodiques01aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://lysander.sourceocde.org/vl=369977/cl=14/nw=1/rpsv/outlook_annuals.htm4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1983/1990) -(1996/2005)cParisdMagasins/AnnexeeP 4° 6280 aZPAY aexempb201401 aGEO RN1 Pays industrialisés, pays occidentaux aDEW 360-363 aDEW 310-31901148nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001600154210003700170326001600207422005600223530002200279601003600301676001000337710003800347801002100385856006000406856010500466955007000571955005900641972000900700991001800709992005700727992001400784039682250000002309720130319051535.01 a0720-5120 aFNSP161643 a0000023097 a19900101a19789999 ba0 ager aDE aahu 10aIntegration aBonncEuropa Union Verlagd1978- aTrimestriel 1aEuropäische Zeitung (Europa-Union)xISSN 0343-665910aIntegrationbBonn02aUnion européennexPériodiques a341.802aInstitut de politique européenne 3aFRbCCN0720-51204 uhttp://www.iep-berlin.de/index.php?id=integration_suche zContenu : sommaires depuis n°1, 1979, abstracts, moteur de recherche et beaucoup de texte intégral1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 320.441 bno. 1 (1979) -....cParisdMagasins/AnnexeeP 8° 4164 aZCAD aexempb201104 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 341.201507cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200008000180207002900260210006300289326001800352430003300370606004700403606003000450710005100480801003000531801002300561802000700584856010900591856007700700856010900777856010800886955007100994972000901065992001401074992002101088116904224000114352520130319051535.01 a1749-6977 aissn17496977 a0001143525 a20070807a20079999k y0frey0103 ba0 aeng aGB ay 0  ar aaia 0uu 10aIntellectual history reviewfInternational Society for Intellectual History 0aVol. 17, issue 1 (2007)- a[Abingdon, Eng.]cRoutledge, Taylor & Francis Groupd2007- a3 n°s par an 1tIntellectual newsx1561-5324 aVie intellectuellexHistoirexPériodiques aPhilosophiexPériodiques02aInternational Society for Intellectual History 3aFRbAbesc20080516gAFNOR 3aFRbISSNc20080429 a014 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t748118689db=all zContenu: sommaires et résumés des n°S depuis le vol. 17 no. 1 de 20074 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t748118689db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 17 no. 1 (mar-2007) -....cParisdMagasins/AnnexeeP 8° 7029 aZSAB aDEW 10-14 aGEO RQ Universel00986nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210002400193326001500217606002900232801002100261856010900282856010800391955013700499972000900636991001800645992002100663992001200684039323897000002270720130319051536.01 a0268-4527 aFNSP160823 a0000022707 a19900101a19869999 ba0 aeng aGB aaha 10aIntelligence and national security aLondoncCassd1986- aBimestriel aEspionnagexPériodiques 3aFRbCCN0268-45274 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713672628db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1986) -....cParisdMagasins/AnnexeeP 8° 4960wmanque le no. 4 (1986), épuisé et les no. 1 et 4 (1989), perdus aZSAB aexempb201003 aGEO RQ Universel aDEW 32701116nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002400163210003800187326001400225430005000239606004500289606004300334801001300377856019200390856010800582955007300690972000900763991001800772992001200790059483253000041163820130827111744.01 a1630-6589 a0000411638 a a20019999k fre ba0 afre aFR a 0  ar aae z 0 10aIntelligence online aPariscIndigo publicationsd2001- aBimensuel 1tMonde du renseignement (Imprimé),x0997-7139 aServices de renseignementsxPériodiques aIntelligence économiquexPériodiques 0aFRbFNSP uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno 412 (sep-2001) -no 631 (2010)cParisdMagasins/AnnexeeP 4° 4694 aZCAD aexempb201307 aDEW 32701306cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200001700174210005700191430003100248441005200279517002500331517002300356530004600379606004300425606004000468606003600508606003900544710005600583801003000639802000700669856006400676856006000740955007500800992003300875992001200908039674657000117280520130319051536.01 a0712-1571 accn0712-1571 a0001172805 a19890913b19812009 0frey0103 ba0 afre aCA ay  aah 10aInterculture aMontréalcCentre interculturel Monchanind1981-2009 1tRevue Monchaninx0712-158X 0tInterculture (Montreal. English ed.)x0828-797X10aInterculture journal10aRevue interculture10aIntercultureb(Montréal. Ed. française) aRelations interethniquesxPériodiques aRelations culturellesxPériodiques aMulticulturalismexPériodiques aPluralisme religieuxxPériodiques02aCentre interculturel Monchaninc(Montréal, Canada) 3aFRbAbesc20081202gAFNOR a044 uhttp://www.iim.qc.ca/publications/interculture/larevue.html4 zContenu : texte intégral des articles depuis le no 1581 bno. 143 (oct-2002) -no. 157 (2009)cParisdMagasins/AnnexeeP 8° 7101 aGEO RS Sans aspect régional aDEW 30501152cas0 2200337 450 001001000000002001100010005001700021011002500038035001400063035001700077035001700094035001500111100004100126101000800167102000700175106000600182110001600188200004700204210006300251326001200314530004700326531003100373606006300404606006100467801003000528801002300558802000700581856014500588955006100733991002000794038432978000109343120130319051537.0 a0996-2808y0020-5613 a070597693 accn0996-2808 aissn09962808 a0001093431 a19980709b18641940uuuy0frey0103 ba0 afre aFR ar aafu uu 12aL'Intermédiaire des chercheurs et curieux aPariscIntermédiaire des chercheurs et curieuxd1864-1940 aMensuel02aL'Intermédiaire des chercheurs et curieux 0aInterméd. cherch. curieux aSciencesxVulgarisationz19e sièclexPériodiques2rameau aSciencesxVulgarisationz1900-1945xPériodiques2rameau 3aFRbAbesc20070412gAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34413981v/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1864-1937)1 b(1917) -(1930)w1921cParisdMagasins/AnnexeeP 8° 0716 aPériobTP02 P801774nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154207003200180210004900212326001600261430005500277530004900332606004400381676000800425710005100433801002100484856012800505856010800633856010100741856010800842856009000950856010801040955006701148955006901215955007101284972000901355992001201364038726955000000464920131219164350.01 a0020-5850 aFNSP106145 a0000004649 a19900101a19449999 ba0 aeng aGB aahu 10aInternational affairs 1aVol. 20, no. 1 (Jan. 1944)- aCambridgecCambridge University Pressd1944- aTrimestriel 1tInternational affairs review supplementx1473-811210aInternational affairsb(London. 1944. Print) aRelations internationalesxPériodiques a32702aRoyal Institute of International Affairsc(GB) 3aFRbCCN0020-58504 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=INA&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101087 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00205850.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bL'année en courscParisdBibliothèque de rechercheeP 8° 00031 bvol. 20 no. 1 (jan-1944) -....cParisdMagasins/AnnexeeP 8° 0003 aZCAD aDEW 32701013cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200003300156210009900189326001500288517000800303606004400311710006400355801003000419801003000449802000700479856002800486856008700514955007700601972000900678992001200687040326039000073257020130319051537.01 a1078-3520 accn1078-3520 a0000732570 a19980902a19929999 0frey0103 ba0 aeng aUS aaj 10aInternational affairs review aWashington, D.C.cGeorge Washington UniversitycElliott School of International Affairsd1992- aSemestriel10aIAR aRelations internationalesxPériodiques02aElliott School of International Affairsc(Washington, D.C.) 3aFRbAbesc20040927gAFNOR 3aFRbAbesc20040927gAFNOR a014 uhttp://www.iar-gwu.org/ zContient: les sommaires, résumés et une sélection d'articles en texte intégral1 bvol. 11 no. 2 (été/aut-2002) -....cParisdMagasins/AnnexeeP 8° 6793 aZPAY aDEW 32702098nas 2200445 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200010300154210005400257210008000311210007800391210004700469210004900516326001600565434013300581436004700714436007200761606003300833606003800866710005900904801002100963856010100984856010801085856006401193856006701257856009001324856010801414955007001522972000901592991001801601992002101619992001201640038726971000002266320140110130826.01 a0020-5893 aFNSP160739 a0000022663 a19900101a19529999 ba0 aeng aGB aahu 10aInternational and comparative law quarterlyethe journal of the Society of comparative legislation aLondoncSociety of Comparative Legislationd1952- aLondoncSociety of Comparative Legislation and International Lawd1956-1958 aLondoncBritish Institute of International and Comparative Lawd1959-2000 aOxfordcOxford University Pressd2001-2007 aCambridgecCambridge University Pressd2008- aTrimestriel 1aQuarterly of the Society of Comparative Legislation and International Law et Transactions of the Grotius SocietyfISSN 1479-1234 1aThe international law quarterlyx1479-5930 1tJournal of comparative legislation and international lawx1479-5949 aDroit comparéxPériodiques aDroit internationalxPériodiques02aBritish Institute of International and Comparative Law 3aFRbCCN0020-58934 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=106093 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://journals.cambridge.org/action/displayJournal?jid=ILQ zContenu : sommaires et résumés depuis le volume 1 n°1, 19524 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00205893.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1952) -....cParisdMagasins/AnnexeeP 8° 0026 aZCAD aexempb200910 aGEO RQ Universel aDEW 34101266nas 2200349 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000890015421000610024322500410030432600110034542200600035644000560041651700760047260600390054860600360058771000350062385600590065885600360071785600660075395500550081997200090087499200210088399200120090404015971X000014436920130319051537.01 a1016-0345 aFNSP570264 a0000144369 a19941215b19862001 f ba0 aeng aUS aaka 10aInternational capital markets, Developments, prospects/fInternational Monetary Fund aWashington, D.C.cInternational Monetary Fundd1986-200121aWorld economic and financial surveys aAnnuel 1tWorld economic and financial surveys (Print)x0258-7440 1tGlobal financial stability report,x,ISSN 1729-701X10aInternational capital markets - Developments propects and policy issues aPolitique monétairexPériodiques aMarché financierxPériodiques02aFonds monétaire international4 uhttp://www.imf.org/external/pubs/ft/icm/1999/index.htm zAccès libre au texte intégral4 uhttp://www.imf.org/external/pubs/ft/icm/2000/01/eng/index.htm1 b(1986) -(2001)cParisdMagasins/AnnexeeP 4° 5299 aZPAY aGEO RQ Universel aDEW 33201137nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200011900163207001000282210002300292326001400315517007400329606004400403606004400447710008300491801001300574856006100587856004900648955006000697972000900757992002100766992001200787076243230000069187820130319051537.01 a1660-3222 a0000691878 a a20029999 fre 01 ba0 aeng aCH a 0  ar aal z 0 10aInternational CIIP handbookfCenter for Security Studies at the ETH Zurich (Swiss Federal Institute of Technology) 1a2002- aZurichcETHd2002- aBisannuel10aInternational critical information infrastructure protection handbook aSécurité internationalexPériodiques aRelations internationalesxPériodiques02aForschungsstelle für Sicherheitspolitik und Konfliktanalysec(Zurich, Suisse) 0aFRbFNSP4 uhttp://www.isn.ethz.ch/crn/publications/publications.cfm zContenu : texte intégral du dernier rapport1 b(2004) -(2008/2009)cParisdMagasins/AnnexeeP 8° 6779 aZGRA aGEO RQ Universel aDEW 32701265nas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200004400180207004200224210002400266326002500290326002600315430004500341606004600386606002600432606003200458801003000490801002300520802000700543856010800550856010800658955007100766972000900837992002100846992001200867108058913000101461120130319051537.01 a1748-0485 aissn17480485 a0001014611 a20060906a20069999k y0frey0103 ba0 aeng aGB a 0  ar aafa 0uu 14aThe international communication gazette 1aBegan with vol. 68, no. 1 (Feb. 2006) aLondoncSaged2006- a8 n°s par anb2009- aBimestrielb2006-2008 1tGazette (Leiden, Netherlands)x0016-5492 aCommunication audiovisuellexPériodiques aMédiasxPériodiques aCommunicationxPériodiques 3aFRbAbesc20060906gAFNOR 3aFRbISSNc20060720 a024 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 68 no. 1 (fev-2006) -....cParisdMagasins/AnnexeeP 8° 1375 aZSAB aGEO RQ Universel aDEW 07000777nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003800163210004700201326001800248606004500266801001300311856003600324856005200360955006600412972000900478992001200487064147681000052360320130319051538.01 a1567-536X a0000523603 a a20019999k fre ba0 aeng aNL a 0  ar aah z 0 10aInternational criminal law review aThe HaguecKluwer Law Internationald2001- a5 n°s par an aDroit pénal internationalxPériodiques 0aFRbFNSP4 uhttp://www.kluwerlawonline.com/ zContenu : sommaires depuis le vol.1,n °1, 20011 bvol. 2 no. 1 (2002) -....cParisdMagasins/AnnexeeP 8° 6677 aZSAB aDEW 34101278nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200025300154210002300407326001100430510006800441606005900509710006700568856012300635856010800758955005500866972000900921991001800930992001200948992001600960040202267000010315820140107161004.01 a1024-8226 aFNSP442745 a0000103158 a19900101a19939999 f ba0 amul aFR aaka 10aInternational direct investment statistics yearbook‎fOrganisation for Economic Cooperation and Development‎d= Annuaire des statistiques d'investissement direct international‎f= Organisation de coopération et de développement économiques aPariscOCDEd1993- aAnnuel10aAnnuaire des statistiques d'investissement direct international aInvestissements étrangersxStatistiquesxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://titania.sourceocde.org/vl=1504601/cl=20/nw=1/rpsv/outlook_annuals.htm4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1993) -(2004)cParisdMagasins/AnnexeeP 4° 6285 aZPAY aexempb201401 aDEW 332 aDEW 310-31902061nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200019400154207003000348210005900378326003400437530004800471606003700519710007400556711005600630801002100686856012800707856010800835856010100943856010801044856009001152856010801242955009001350957007901440957010501519972000901624991001801633992001201651038727250000005702820131127170737.01 a0020-6598 aFNSP265620 a0000057028 a19900101a19609999 ba0 aeng aUS aahu 10aInternational economic reviewfpublished jointly by the Economics Department of the University of Pennsylvania and the Osaka University Institute of Social and Economic Research Association 1avol. 1 no. 1 (jan-1960) - aPhiladelphia, PacInternational economic reviewd1960- a3 nos par an puis trimestriel10aInternational economic reviewbPhiladelphia aEconomie politiquexPériodiques02aInstitute of Social and Economic Research Associationc(Osaka, Japon)02aUniversity of PennsylvaniabDepartment of Economics 3aFRbCCN0020-65984 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=IER&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=103322 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00206598.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1960) -vol. 53 no. 4 (nov-2012)cParisdMagasins/AnnexeeP 8° 19581 bvol. 31 (1990) -vol. 35 (1994)zse trouve dans le vol. 36 no. 1 (fev-1995)1 bvol. 1 (1960) -vol. 25 (1984) ; vol. 26 (1985) -vol. 30 (1989)cParisdMagasins/AnnexeeP Index 0571 aZPAY aexempb201103 aDEW 33001177nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000068001502100057002183000119002753260016003943360058004103370063004684400084005314520054006156060029006696060045006988010013007438560090007569550005008469920012008510000486591000048659120130319051538.0 a0000486591 a b19751977k fre 01 ba0 aeng aUS az aah z  adr 10aInternational family planning digestb[Ressource électronique] aNew-York, N.Y.cAlan Guttmacher Instituted1975-1977 aAccès au texte intégral (réservé aux sites de Sciences Po) à partir du vol. 1 de 1975 jusqu'au vol. 3 de 1977 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tInternational family planning perspectives and digest [Ressource électronique] 1tInternational family planning digestx(0362-4056) aPopulationxPériodiques aRégulation des naissancesxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03624056.html1 r aDEW 30401182nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000074001502100053002243000116002773260016003933360058004093370063004674300084005304520060006146060045006746060029007198010013007488560090007619550005008519920012008560000486671000048667120130319051538.0 a0000486671 a a19799999k fre 01 ba0 aeng aUS az aah z  adr 10aInternational family planning perspectivesb[Ressource électronique] aNew-York, N.Y.cAlan Guttmacher Instituted1979- aAccès au texte intégral (réservé aux sites de Sciences Po) jusqu' à l'année précédant l'année en cours aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tInternational family planning perspectives and digest [Ressource électronique] 1tInternational family planning perspectivesx(0190-3187) aRégulation des naissancesxPériodiques aPopulationxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01903187.html1 r aDEW 30401250nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000085001502100057002353000090002923260016003823360058003983370063004564300067005194400073005864520071006596060045007306060029007758010013008048560090008179550005009079920012009120000486668000048666820130319051538.0 a0000486668 a a19781978k fre 01 ba0 aeng aUS az aah z  adr 10aInternational family planning perspectives and digestb[Ressource électronique] aNew-York, N.Y.cAlan Guttmacher Instituted1978-1978 aAccès au texte intégral (réservé aux sites de Sciences Po) pour le vol. 4 de 1978 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tInternational family planning digest [Ressource électronique] 1tInternational family planning perspectives [Ressource électronique] 1tInternational family planning perspectives and digestx(0162-2749) aRégulation des naissancesxPériodiques aPopulationxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01622749.html1 r aDEW 30401081nas 2200337 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200004700148207002600195210002900221326002300250326002900273517000900302530004700311606003600358676001000394801001300404856010900417856010800526955006600634972000900700991001800709992001600727058255788000035512420131025132842.01 a1461-6742 a a19999999k fre ba0 aeng aGB a 0  ar aai z 0 10aInternational feminist journal of politics 1aVol. 1, no. 1 (1999)- aLondoncRoutledged1999- aTrimestrielb2004- a3 n°s par anb1999-200310aIFJP aInternational feminist journal of politics aScience politiquexPériodiques a305.4 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713722173db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1999) -....cParisdMagasins/AnnexeeP 8° 6539 aZSAB aexempb201212 aDEW 305-30601061nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001391100016001452000033001612100051001943260014002454400033002596060029002926070029003218010021003508560297003719550068006689920023007369920012007590000022776000002277620131104152734.01 a0294-8052 aFNSP160994 a0000022776 a19900101a19679999 ba0 aeng aFR ar acau 10aInternational Herald tribune aPariscInternational Herald Tribuned1967-2013 aQuotidien 1tInternational New York Times aActualitéxPériodiques aEtats-UnisxPériodiques 3aFRbCCN0294-80524 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAAzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLe mois en courscParisd27, Salle Rez-de-chausséeeP F° 1218 aGEO RC2 Etats-Unis aDEW 05001066nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210005000187326001600237606002700253710004700280801002100327856002700348856005000375856010900425856010800534955007100642972000900713991001800722992001200740039672581000002269020140107172340.01 a0707-5332 aFNSP160795 a0000022690 a19900101a19799999 ba0 amul aCA aahu 10aInternational history review aOntario, CanadacUniversity of Torontod1979- aTrimestriel aHistoirexPériodiques02aSimon Fraser Universityc(Burnaby, Canada) 3aFRbCCN0707-53324 uhttp://www.sfu.ca/ihr/ zContenu : sommaires depuis le volume 24, 20024 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t914689374db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 9 no. 1 (fév-1987) -....cParisdMagasins/AnnexeeP 8° 5133 aZSAB aexempb201011 aDEW 90901310nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200015300154210003700307326001600344606004400360710008100404856005600485856004000541856010900581856010800690955017100798972000900969991001800978992001200996039393127000003491620130319051538.01 a0305-0629 aFNSP201989 a0000034916 a19900101a19749999 ba0 aeng aGB aaha 10aInternational interactionsea transnational multidisciplinary journalfUniversity of North Carolina at Chapell Hill, Department of political science aLondoncGordon and Breachd1974- aTrimestriel aRelations internationalesxPériodiques02aUniversity of North Carolina at Chapel HillbDepartment of Political Science4 uhttp://www.tandf.co.uk/journals/titles/03050629.asp zContenu : présentation de la revue4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713718605db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 16 no. 1 (1990) -vol. 27 no. 4 (dec-2001)cParisdMagasins/AnnexeeP 8° 5734wLac.: vol. 19 no. 1 à 4 (1993), vol. 26 no. 1 à 4 (2000) ,vol. 27, no. 1 (2001). aZCAD aexempb201111 aDEW 32701471nas0 2200409 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200005700180210008000237326001600317436003800333436004500371517005900416530007800475607005200553607005100605607003300656801003000689801002300719802000700742856012900749856004100878955006700919972000900986992001200995992003601007992001801043130021687000115882120130319051538.01 a1337-5482 aissn13375482 a0001158821 a20081219a20069999 0frey0103 ba0 aeng aSK ay  ar aah 10aInternational issues & Slovak foreign policy affairs aBratislavacResearch Center of the Slovak Foreign Policy Associationd2006- aTrimestriel 1tMedzinárodné otázkyx1210-1583 1tSlovak foreign policy affairsx1335-625910aInternational issues and Slovak foreign policy affairs10aInternational issues & Slovak foreign policy affairsb(Tlačené vydanie) aSlovaquiexRelations extérieuresxPériodiques aEuropexIntégration économiquexPériodiques aEuropexUnitéxPériodiques 3aFRbAbesc20081219gAFNOR 3aFRbISSNc20080601 a354 uhttps://federation.sciences-po.fr/cas/login?service=https%3A%2F%2Ffederation.sciences-po.fr%3A443%2Fidp%2FAuthn%2FRemoteUser zContenu: texte intégral depuis 20061 bvol. 15 no. 1 (2006) -....cParisdMagasins/AnnexeeP 8° 6753 aZPAY aDEW 327 aGEO RA5.22 République slovaque aGEO RA Europe01323nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007100154210006400225326001600289530003500305606005700340606004400397607004900441676000800490710005100498801002100549856012200570856010800692955006700800955006600867972000900933992001900942992001200961038727358000002268820130319051538.01 a0020-7020 aFNSP160792 a0000022688 a19900101a19469999 ba0 aeng aCA aahu 10aInternational journalfCanadian institute of international affairs aTorontocCanadian Institute of International Affairsd1946- aTrimestriel 0aInternational journalbToronto aRelations économiques internationalesxPériodiques aRelations internationalesxPériodiques aCanadaxRelations extérieuresxPériodiques a32702aInstitut canadien des affaires internationales 3aFRbCCN0020-70204 uhttps://acces-distant.sciences-po.fr/fork?http://www.heinonline.org/HOL/Index?index=journals/intj&collection=journals zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 1 no. 4 (1946) -....cParisdMagasins/AnnexeeP 8° 0008 aZPAY aGEO RC1 Canada aDEW 32701003nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009000154210006200244326001500306510004700321607002500368710004800393856007400441856006000515955006800575972000900643991001800652992001900670992001200689036387258000026995020130319051538.01 a1180-3991 aFNSP933470 a0000269950 a19990408a19909999 ba0 amul aCA aaja 10aInternational journal of Canadian studiesdRevue internationale d'études canadiennes aOttawacInternational Council for Canadian Studiesd1990- aSemestriel10aRevue internationale d'études canadiennes aCanadaxPériodiques02aConseil international d'études canadiennes4 uhttp://www.iccs-ciec.ca/pages/newweb/sample2/journal_fr.asp?shownav=3 zContenu : accès aux sommaires et résumés depuis 19901 bno. 16 (1997) -no 32 (2005)cParisdMagasins/AnnexeeP 8° 6477 aZSAB aexempb201212 aGEO RC1 Canada aDEW 97101277nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005100154210002500205326002200230326002900252326002700281326002600308517000900334606002900343801002100372856010800393856010800501955011300609957007200722957009100794972000900885992002100894992001200915038727455000002269920131025123149.01 a0020-7152 aFNSP160811 a0000022699 a19900101a19609999 ba0 aeng aNL aahu 10aInternational journal of comparative sociology aLeidencBrilld1960- aBimestrielb2012- a3 n°s par anb2010-2011 aTrimestrielb1968-2009 aSemestrielb1960-196710aIJCS aSociologiexPériodiques 3aFRbCCN0020-71524 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1960) -vol. 42 no. 5 (2001) ; vol. 45 no. 1/2 (2004) -....cParisdMagasins/AnnexeeP 8° 18181 bvol. 1 (1960) -vol. 36 (1996)cParisdMagasins/AnnexeeP Index 07901 bvol. 26 (1985)-vol. 41 (2000)zcet index constitue le vol. 41, no. 5, 2000 de la revue aZGRA aGEO RQ Universel aDEW 30101092cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200008300180207003100263210004300294326001600337517001000353517005400363606004000417710003900457801003000496801002300526802000700549856004400556856006000600955007000660992001200730089938569000113151620130319051538.01 a1474-2640 aissn14742640 a0001131516 a20040510a20039999k y0frey0103 ba0 aeng aGB ay 0  ar aaha 0uu 10aInternational journal of constitutional lawfNew York University school of law 0aVol. 1, no. 1 (Jan. 2003)- aOxfordcOxford university pressd2003- aTrimestriel10aI.CON10aI.CON international journal of constitutional law aDroit constitutionnelxPériodiques02aNew York UniversitybSchool of Law 3aFRbAbesc20080111gAFNOR 3aFRbISSNc20050901 a024 uhttp://icon.oxfordjournals.org/archive/ zContenu : sommaires depuis le vol. 1 no 1, January 20031 bvol. 5 no. 1 (jan-2007) -....cParisdMagasins/AnnexeeP 8° 7011 aDEW 34201177nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012310600060014111000160014720000550016320700310021821000240024932600180027360600390029180100130033085601010034385601080044485601080055285601080066095500700076897200090083899200160084706413265X000060549520130319051538.01 a1470-5958 a0000605495 a a20019999 fre 01 ba0 aeng aGB a 0  ar aai z 0 10aInternational journal of cross cultural management 1aVol.1, n°1, (April 2001)- aLondoncSaged2001- a3 n°s par an aGestion d'entreprisexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=105892 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (avr-2001) -....cParisdMagasins/AnnexeeP 8° 6742 aZPAY aDEW 650-65801190nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005300139210002800192326003200220452007300252530005300325606003100378606002800409801002100437856011300458955007100571955008600642957007200728972000900800991001800809992002100827992001600848039701212000002271020130916164531.01 a0738-0593 aFNSP160828 a19900101a19819999 ba0 aeng aGB aagu 10aInternational journal of educational development aOxfordcPergamond1981- aTrimestriel puis bimestriel 1tnternational journal of educational development (Online),x1873-4871 aInternational journal of educational development aEnseignementxPériodiques aEducationxPériodiques 3aFRbCCN0738-05934 uhttp://www.sciencedirect.com/science/journal/07380593/1zSommaires et résumés depuis le vol. 1, no 1, 19811 bvol. 29 no. 1 (jan-2009) -....cParisdMagasins/AnnexeeP 4° 72841 bvol. 5 no. 1 (1985) -vol. 28 no. 6 (nov-2008)cParisdMagasins/AnnexeeP 8° 48901 bvol. 1 (1981) -vol. 10 (1990)cParisdMagasins/AnnexeeP Index 0670 aZPAY aexempb201002 aGEO RQ Universel aDEW 370-37901077nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000063001502100066002133000129002793260016004083360058004243370063004824400037005454520049005826060025006318010013006568560090006699550005007599920011007640000486587000048658720130319051538.0 a0000486587 a b18901938k fre 01 ba0 aeng aUS az aah z  adr 10aInternational journal of ethicsb[Ressource électronique] aPhiladelphia, Pa.cInternational Journal of Ethicsd1890-1938 aAccès au texte intégral (réservé aux sites de Sciences Po) à partir du vol. 1 de 1890 jusqu'au vol. 48, issue 2 de 1938 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tEthics [Ressource électronique] 1tInternational journal of ethicsx(1526-422X) aMoralexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/1526422X.html1 r aDEW 1701102nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210002400200326002500224326002100249326002900270326002700299606003600326856004100362856004700403856010900450856010800559955007000667972000900737991001800746992001200764036762733000023187220130319051538.01 a1364-2987 aFNSP823435 a0000231872 a19900101a19979999 ba0 aeng aGB aaha 14aThe International journal of human rights aLondoncCassd1997- a8 n°s par anb2011- aBimestrielb2010 a5 n°s par anb2008-2009 aTrimestrielb1997-2007 aDroits de l'hommexPériodiques4 uhttp://www.frankcass.com/jnls/hr.htm zContenu : sommaires depuis le vol. 1, no.14 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713635869db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1997) -....cParisdMagasins/AnnexeeP 8° 6367 aZSAB aexempb201301 aDEW 32300937nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005200154210004300206326001500249430005600264606004400320801002100364856006500385856008800450955007000538972000900608991001800617992001200635039323730000002271120130319051538.01 a0268-4012 aFNSP160829 a0000022711 a19900101a19869999 ba0 aeng aGB aagu 10aInternational journal of information management aGuilfordcButterworth-Heinemannd1986- aBimestriel 1aSocial science information studies,xISSN 0143-6236 aSciences de l'informationxPériodiques 3aFRbCCN0268-40124 uhttp://www.elsevier.nl:80/inca/publications/store/3/0/4/3/4/ zContenu : sommaires ; index auteurs et sujets ; depuis le vol. 15, n°1, fév. 19951 bvol. 6 no. 1 (mar-1986) -....cParisdMagasins/AnnexeeP 4° 5125 aZSAB aexempb201203 aDEW 02001052nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000066001642100046002303260016002766060045002928010013003378560103003508560109004538560108005629550071006709720009007419920012007500000464533000046453320130319051538.01 a0885-0607 a0000464533 a a19869999k fre ba0 aeng aUS a 0  ar aah z 0 10aInternational journal of intelligence and counterintelligence aPhiladelphia, PAcTaylor & Francisd1986- aTrimestriel aServices de renseignementsxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=1024654 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713723134db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 13 no. 1 (pri-2000) -....cParisdMagasins/AnnexeeP 8° 6627 aZCAD aDEW 32701027nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005300139210003000192326001500222530005300237606004000290606002900330710007900359801002100438856010500459856005200564955006600616972000900682991001800691992001600709039091910000002271920130916141021.01 a0147-1767 aFNSP160843 a19900101a19779999 ba0 aeng aUS aagu 10aInternational journal of intercultural relations aNew YorkcPergamond1977- aBimestriel aInternational journal of intercultural relations aRelations culturellesxPériodiques aSociologiexPériodiques02aSociété pour l'éducation, la formation et la recherche interculturelles 3aFRbCCN0147-17674 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/web-editions/journal/01471767 zContenu : accès aux sommaires et aux résumés1 bvol. 8 no. 4 (1984) -....cParisdMagasins/AnnexeeP 8° 4884 aZCAD aexempb201002 aDEW 305-30601256nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004800154210003800202326002200240326002700262606004400289606003900333801002100372856010300393856010800496856010900604856010800713955006600821972000900887991001800896992001600914039309851000002272120130319051538.01 a0260-1370 aFNSP160849 a0000022721 a19900101a19829999 ba0 aeng aGB aagu 10aInternational journal of lifelong education aLondoncTaylor and Francisd1982- aBimestrielb1994- aTrimestrielb1982-1993 aFormation professionnellexPériodiques aEducation permanentexPériodiques 3aFRbCCN0260-13704 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=102455 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713747968db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1982) -....cParisdMagasins/AnnexeeP 8° 4531 aZPAY aexempb200910 aDEW 370-37901085nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200007000163210004600233326002200279326002700301430005500328606002800383710003800411801001300449856012800462856010800590955007600698972000900774055672957000030711920130319051538.01 a1470-7853 a0000307119 a a20009999k fre ba0 aeng aGB a 0  ar aag z 0 10aInternational journal of market researchfMarket Research Society aHenley-on-ThamescNTC Publicationsd2000- aBimestrielb2005- aTrimestrielb1999-2004 1tJournal of the Market Research Society,x0025-3618 aMarketingxPériodiques02aMarket Research Society (Londres) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=9I8&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 42 no. 1 (hiv-1999/2000) -....cParisdMagasins/AnnexeeP 8° 2916 aZPAY01193cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200005700180207001900237210003000256326001800286517005500304517003000359517000800389606002600397606003700423606004400460801003000504801002300534802000700557856006300564856008100627955006600708992001200774992002100786104755571000115365820130319051539.01 a1740-8296 aissn17408296 a0001153658 a20040511a20059999k y0frey0103 ba0 aeng aGB ay 0  ar aaia 0uu 10aInternational journal of media and cultural politics 0aVol. 1, no. 1- aBristolcIntellectd2005- a3 n°s par an10aInternational journal of media & cultural politics10aMedia & cultural politics10aMCP aMédiasxPériodiques aMédias et culturexPériodiques aMédiasxAspect politiquexPériodiques 3aFRbAbesc20060711gAFNOR 3aFRbISSNc20060706 a024 uhttp://www.intellectbooks.co.uk/journals.php?issn=17408296 zContient les sommaires et résumés d'articles depuis le vol. 1 no. 1 (2005)1 bvol. 3 no. 1 (2007) -....cParisdMagasins/AnnexeeP 8° 7054 aDEW 302 aGEO RQ Universel01393nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004900154207003100203210004600234326001600280607003100296607003000327607003400357710005300391801002100444856004200465856007000507856009000577856010800667955006600775957007200841972000900913991001800922992003000940992002500970992001200995038727765000002274320140108154154.01 a0020-7438 aFNSP160887 a0000022743 a19900101a19709999 ba0 aeng aGB aahu 10aInternational journal of Middle East studies 1aVol. 1, no. 1 (Jan. 1970)- aLondoncCambridge University Pressd1970- aTrimestriel aMoyen-OrientxPériodiques aPays arabesxPériodiques aPays islamiquesxPériodiques02aMiddle East Studies Association of North America 3aFRbCCN0020-74384 uhttp://uk.cambridge.org/journals/mes/ zContenu : sommaires de quelques n° depuis le vol. 29, n°2, 19974 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00207438.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1970) -....cParisdMagasins/AnnexeeP 8° 27281 bvol. 1 (1970)-vol . 20 (1987)cParisdMagasins/AnnexeeP Index 0733 aZSAB aexempb200904 aGEO RG.12 Pays islamiques aGEO RG2 Moyen-Orient aDEW 95601032nas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200004300162210006800205326001500273606002300288606004100311710005600352801003000408801002300438802000700461856003800468856010500506955007400611972000900685992001200694097572284000093620720130319051539.01 a1085-7494 aissn10857494 a0000936207 a20060303a19959999 0frey0103 ba0 aeng aUS ar azl 10aInternational journal of peace studies aSt. Louis, Mo.cInternational Peace Research Associationd1995- aSemestriel aPaixxPériodiques aRèglement de conflitsxPériodiques02aAssociation internationale de recherche sur la paix 3aFRbAbesc20060303gAFNOR 3aFRbISSNc20060301 a014 uhttp://www.gmu.edu/academic/ijps/ zContenu : accès aux sommaires et à beaucoup d'articles en texte intégral avec un embargo de 2 ans1 bvol. 8 no. 1 (pri/ete-2003) -....cParisdMagasins/AnnexeeP 8° 6869 aZSAB aDEW 32701141nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004700154210003200201326001600233430005400249606003700303801002100340856004100361856006400402856015500466856010800621955007800729991001800807992001400825039987965000002362420130319051539.01 a0891-1916 aFNSP162974 a0000023624 a19900101a19879999 ba0 aeng aUS aaha 10aInternational journal of political economy aArmonk, N.Y.cSharped1987- aTrimestriel 1aInternational journal of politicsxISSN 0012-8783 aEconomie politiquexPériodiques 3aFRbCCN0891-19164 uhttp://www.mesharpe.com/ijp_main.htm zContenu : sommaires depuis le vol. 25, n°4, hiv. 1995-19964 uhttps://acces-distant.sciences-po.fr/fork?http://web.ebscohost.com/ehost/detail?vid=9&hid=113&sid=542c359b-3d02-405c-88f0-79b8e8548347%40sessionmgr107 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol.17 no 1(1987) -vol.26 no 4 (1996)cParisdMagasins/AnnexeeP 8° 3295 aexempb200911 aDEW 338.901188nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005900139210003700198210004800235210006800283210005200351326001600403430004300419452008100462517003400543530005900577606003600636856004800672955007000720972000900790991001800799992002100817992001200838039988872000002357620131003163516.01 a0891-4486 aFNSP162859 a19910131a19879999 ba0 aeng aUS aaha 10aInternational journal of politics, culture and society aDordrecht‎cSpringer‎d2004- aDordrecht‎cKluwer Academic‎d2000-2004 aNew York‎cKluwer Academic/Human Sciences Press‎d1999-2000 aNew York‎cHuman Sciences Press‎d1987-1998 aTrimestriel 1aState, culture and society,x0743-9245 1tInternational journal of politics, culture, and society (Online),x1573-341610aPolitics, culture and society00aInternational journal of politics, culture and society aSciences socialesxPériodiques uhttp://www.springerlink.com/content/105664/1 bvol. 1 no. 1 (aut-1987) -....cParisdMagasins/AnnexeeP 8° 5092 aZSAB aexempb201106 aGEO RQ Universel aDEW 30001371nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005100154210002800205326001900233606004200252607004500294801002100339856012800360856010800488856010900596856010800705955006700813955008700880972000900967991001800976992002300994992001601017039141330000002356320130319051539.01 a0190-0692 aFNSP162840 a0000023563 a19900101a19799999 ba0 aeng aUS aafa 10aInternational journal of public administration aNew YorkcDekkerd1979- a14 n°s par an aAdministration publiquexPériodiques aEtats-UnisxAdministrationxPériodiques 3aFRbCCN0190-06924 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=IPN&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713597261db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 33 no. 1 (2010) -....cParisdMagasins/AnnexeeP 4° 72721 bvol. 1 no. 1 (1979) -vol. 32 no. 14 (dec-2009)cParisdMagasins/AnnexeeP 8° 4328 aZSAB aexempb201104 aGEO RC2 Etats-Unis aDEW 350-35400939nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005300154210004300207326001600250606003700266606003500303710006200338856004200400856010200442955006600544972000900610991001800619992001200637040084515000003994120130319051539.01 a0954-2892 aFNSP216401 a0000039941 a19900101a19899999 ba0 aeng aGB aaha 10aInternational journal of public opinion research aOxfordcOxford University Pressd1989- aTrimestriel aSondages d'opinionxPériodiques aOpinion publiquexPériodiques02aAssociation mondiale de recherches sur l'opinion publique4 uhttp://www.oup.co.uk/intpor/contents/ zContenu : sommaires, résumés et texte intégral d'articles depuis le vol. 1, no. 1, Spring 19891 bvol. 1 no. 1 (1989) -....cParisdMagasins/AnnexeeP 8° 5748 aZSAB aexempb201111 aDEW 30301096nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210004300195326001600238606002900254606005900283676000800342856004200350856007200392856010100464856010800565955007000673972000900743991001800752992001200770040083578000001077620140110124429.01 a0953-8186 aFNSP120519 a0000010776 a19900712a19899999 ba0 aeng aGB aaha 10aInternational journal of refugee law aOxfordcOxford University Pressd1989- aTrimestriel aRéfugiésxPériodiques aRéfugiésxProtection, assistance, etc.xPériodiques a3254 uhttp://www.oup.co.uk/reflaw/contents/ zContenu : sommaires et résumés depuis le vol. 8, n°1, janv. 19964 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=102632 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1989) -....cParisdMagasins/AnnexeeP 8° 5603 aZCAD aexempb201111 aDEW 32501505nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005700163210003800220326002200258326002900280606003600309710003800345801001300383856012800396856010800524856010300632856010800735856010900843856010800952955007401060972000901134992001201143036764574000060583020130319051539.01 a1364-5579 a0000605830 a a19989999 fre 01 ba0 aeng aGB a 0  ar aag z 0 10aInternational journal of social research methodology aAbingdoncTaylor & Francisd1998- aBimestriel$d2011- a5 n°s par an$d1998-2010 aSciences socialesxPériodiques02aSocial Research Associationc(GB) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=9EB&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=102458 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713737293db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 6 no. 1 (jan/mar-2003) -....cParisdMagasins/AnnexeeP 8° 6745 aZPAY aDEW 30001275nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005000139210003400189326001600223430006600239440006400305452007100369530006000440606003900500801002100539856010000560856006000660955009000720957006700810972000900877991001800886992002100904992001200925039148793000002369620130909150350.01 a0194-6595 aFNSP163115 a19900101b19792007 ba0 aeng aGB aaha 10aInternational journal of the sociology of law aLondoncAcademic Pressd1979- aTrimestriel 1aInternational journal of criminology and penology,x0306-3208 1tInternational journal of law, crime and justice,x1756-0616 1tInternational journal of the sociology of law (Online),x1095-9262 aInternational journal of the sociology of law‎bPrint aSociologie juridiquexPériodiques 3aFRbCCN0194-65954 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/01946595 zContenu : sommaires depuis le vol. 23, n° 1, mars 19951 bvol. 7 no. 1 (fev-1979) -vol. 35 no. 4 (dec-2007)cParisdMagasins/AnnexeeP 8° 41771 bno. 1 (2004) -no. 4 (2004)zse trouve dans le no. 4 (dec-2004) aZPAY aexempb201106 aGEO RQ Universel aDEW 34001338cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200005000180207003000230210004300260326001700303530005900320606003900379606005800418801003000476801002300506802000700529856007800536856006600614856010300680856010800783955007000891992001500961116224924000114059220140110134418.01 a1752-7716 aissn17527716 a0001140592 a20070706a20079999k y0frey0103 ba0 aeng aGB ay 0  ar aaia 0uu 10aInternational journal of transitional justice 0aVol. 1, no 1 (Mar. 2007)- aOxfordcOxford University Pressd2007- a3 nos par an10aInternational journal of transitional justiceb(Print) aJustice réparatricexPériodiques aDroits de l'homme (droit international)xPériodiques 3aFRbAbesc20080118gAFNOR 3aFRbISSNc20070706 a024 uhttps://acces-distant.sciences-po.fr/fork?http://ijtj.oxfordjournals.org/ zContenu : sommaires et résumés depuis le vol. 1, March 20074 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=712650 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-2007) -....cParisdMagasins/AnnexeeP 8° 7024 aDEW 341.4802036nas 2200433 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200011600139210002900255210003900284326002200323326002700345326003100372452007800403510005900481606003600540606002800576606004500604676000800649801002100657856007200678856007300750856010100823856010800924856015101032856010801183955006701291955010501358957010101463972000901564991001801573992001101591039404080000002356020130926113115.01 a0309-1317 aFNSP162836 a19900101a19779999 ba0 aeng aGB aaha 10aInternational journal of urban and regional researchd= Revue internationale de recherche urbaine et régionale aOxfordcBlackwelld1991- aLondon‎cE. Arnold‎d1977-1990 aBimestrielb2011- aTrimestrielb1979-2010 a3 nos par an‎b1977-1978 1tInternational journal of urban and regional research (Online),x1468-242710aRevue internationale de recherche urbaine et regionale aPolitique urbainexPériodiques aUrbanismexPériodiques aAménagement du territoirexPériodiques a333 3aFRbCCN0309-13174 uhttp://www.blackwellpublishing.com/journal.asp?ref=0309-1317&site=1 zContenu : sommaires et résumés depuis le vol. 21, n°1, janv. 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100853 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://web.ebscohost.com/ehost/detail?vid=4&hid=7&sid=d4412796-afa9-4974-a85d-bbe4308d4a69%40sessionmgr7 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3331 bvol. 1 no. 1 (mar-1977) -....cParisdMagasins/AnnexeeP 8° 4266wManquent : vol. 21, nos 1>4, 19971 bno. 1 (1977) -no. 10 (1986) ; no. 11 (1987) -no. 20 (1996)cParisdMagasins/AnnexeeP Index 0607 aZPAY aexempb201106 aDEW 7100901nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005500154210004700209326001600256430005400272606003600326856004900362856005300411955008700464972000900551991001800560992002100578992001200599036861820000022454720130319051539.01 a1385-4879 aFNSP803465 a0000224547 a19900101a19979999 ba0 aeng aNL aaha 00aInternational journal on minority and group rights aThe HaguecKluwer Law Internationald1997- aTrimestriel 1aInternational journal on group rights,x0927-5908 aDroits de l'hommexPériodiques4 uhttp://www.wkap.nl/journalhome.htm/1385-4879 zContenu : sommaires depuis le vol. 3, n°1, 19951 bvol. 4 no. 1 (1996/1997) -vol. 10 no. 4 (2004)cParisdMagasins/AnnexeeP 8° 6252 aZSAB aexempb201212 aGEO RQ Universel aDEW 32301713cas0 2200409 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006400139207001800203210005200221215001600273300001100289321018400300430007000484440006600554500005200620530007200672606004600744606005500790606006400845606002600909606003200935606004200967712004101009801003001050801001901080856011701099945001501216955005501231991001701286080162770000107398220130319051539.0 a1933-8201 a0001073982 a20040907b19141915 h frey0103 ba0 aeng aUS aak # yy 00aInternational law topics and discussionsfNaval War College 0a(1913)-(1914) aWashington (D.C.)cGovt. Print. Off.d1914-1915 a2 v.d24 cm aAnnuel0 a"General index to international law situations topics and discussions" (1922) ; "General index to international law situations topics, discussions, documents and decisions" (1933) 1tInternational law situations (Naval War College. 1911)x1933-821X 1tInternational law topics (Naval War College. 1916)x1933-835x1|aInternational law topics and discussions (1913)10aInternational law topics and discussionsb(Naval War College. 1914) aDroit internationalxPériodiques2rameau aGuerre (droit international)xPériodiques2rameau aGuerre maritime (droit international)xPériodiques2rameau aInternational law2lc aWar (International law)2lc aWar, Maritime (International law)2lc02aNaval war collegecNewport, R.I4340 3aFRbAbesc20061108gAFNOR 2bCStRLINgAACR24 uhttp://archive.org/details/internationalla03collgoogzAccès libre au texte intégral. 1914 sur Internet Archive bCOL8°00351 b(1913) -(1914)cParisdMagasins/AnnexeeCOL8°0035 aPériobTP0101840cas0 2200397 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102110001600109200006400125207001800189210005200207215001600259300001100275301006700286321030400353430005300657440007000710500005200780530006600832606004600898606005500944606006400999606002601063606003201089606004201121712004101163801003001204801001901234856011701253955005501370991001701425080162002000107397820130319051539.0 a0001073978 a20040907b19061907 h frey0103 ba0 aeng aUS aak # yy 00aInternational law topics and discussionsfNaval War College 0a(1905)-(1906) aWashington (D.C.)cGovt. Print. Off.d1906-1907 a2 v.d24 cm aAnnuel aDemande de numérotation ISSN en cours par Cr27, le 16/09/20050 aGeneral index to international law situations, topics and discussions, with bibliography and table of contents (1912) ; "General index to international law situations topics and discussions" (1922) ; "General index to international law situations topics, discussions, documents and decisions" (1933) 1tInternational law situations (Naval War College) 1tInternational law situations (Naval War College. 1908)x1933-82361|aInternational law topics and discussions (1905)10aInternational law topics and discussionsb(Naval War College) aDroit internationalxPériodiques2rameau aGuerre (droit international)xPériodiques2rameau aGuerre maritime (droit international)xPériodiques2rameau aInternational law2lc aWar (International law)2lc aWar, Maritime (International law)2lc02aNaval war collegecNewport, R.I4340 3aFRbAbesc20050916gAFNOR 2bCStRLINgAACR24 uhttp://archive.org/details/internationalla00collgoogzAccès libre au texte intégral. 1906 sur Internet Archive1 b(1905) -(1906)cParisdMagasins/AnnexeeCOL8°0035 aPériobTP0101036nas 2200289 i 450 002001100000005001700011011001400028035001500042100004100057101000800098102000700106200003400113210006600147326001500213606004700228710004200275801002100317856008900338856003200427856003800459955009000497955007000587957004700657972000900704992002100713992001200734000005630220130429150258.01 a0020-7829 aFNSP263480 a19900101a19629999 ba0 aeng aUS10aInternational legal materials aWashington, D.CcAmerican Society of International Lawd1962- aBimestriel aDroit internationalxSourcesxPériodiques02aAmerican Society of International Law 3aFRbCCN0020-78294 zAccessible en texte intégral dans la base de données Westlaw depuis 1980 réservé4 uhttp://www.asil.org/ilm.cfm zSommaire des numéros depuis 19991 bvol. 1 no. 1 (aou-1962) -vol. 45 no. 6 (nov-2006)cParisdMagasins/AnnexeeP 4° 23601 bvol. 49 no. 4 (jul-2010)-....cParisdMagasins/AnnexeeP 4° 23601 rIndex 1970/1979, 1980/1989 < P Index 568 > aZCAD aGEO RQ Universel aDEW 34101236nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210007000182300004100252326001800293510003100311510003200342530004300374606004400417710005200461801002100513856007100534856007300605955018100678972000900859991001800868992001200886038728265000003626020130319051539.01 a0020-7985 aFNSP205397 a0000036260 a19900101a19679999 f ba0 amul aCH aaga 10aInternational migration aGenevacIntergovernmental Committee for European Migrationd1967- anos 3 et 4 de 1980 et 1981 non parus a5 n°s par an10aMigrations internationales10aMigraciones internacionales 0aInternational migrationbGeneva. Print aEmigration et immigrationxPériodiques02aOrganisation internationale pour les migrations 3aFRbCCN0020-79854 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0020-7985 zContenu : sommaires et résumés depuis le vol. 35, no. 1, mars 19971 bvol. 1 no. 1 (1963) -vol. 34 no. 4 (1996) ; vol. 37 no. 3 (1999) -....cParisdMagasins/AnnexeeP 8° 1731wManquant : vol. 35, 1997 ; vol. 36, 1998 ; vol. 37, nos 1 et 2, 1999 aZSAB aexempb201102 aDEW 32501477nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006900154210006500223210004000288210004200328326001600370606004400386710004400430801002100474856004500495856003800540856009000578856010800668856010300776856010800879955008600987972000901073992002101082992001201103039153630000002369820131202094231.01 a0197-9183 aFNSP163121 a0000023698 a19900101a19669999 ba0 aeng aUS aaha 14aThe International migration reviewfCenter for Migration Studies aStaten Island, N.Y.cCenter for Migration Studiesd1966-2005 aMalden, Mass.cBlackwelld2006-2007 aMalden, Mass.cWiley-Blackwelld2008- aTrimestriel aEmigration et immigrationxPériodiques02aCenter for Migration Studies (New York) 3aFRbCCN0197-91834 uhttp://www.cmsny.org/imr-publication.htm zContenu : sommaire du dernier n°4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01979183.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=114469 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1966) -vol. 46 no. 4 (hiv-2012)cParisdMagasins/AnnexeeP 8° 2400 aZCAD aGEO RQ Universel aDEW 32501051nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006400154210004700218326001800265606003200283606004400315710004500359856012800404856010800532955008200640972000900722991001800731992001200749068680384000022017320130319051540.01 a1382-340X aFNSP790931 a0000220173 a19900101a19969999 ba0 aeng aNL aaia 10aInternational negotiationea journal of theory and practice aThe HaguecKluwer Law Internationald1996- a3 n°s par an aNégociationsxPériodiques aRelations internationalesxPériodiques02aWashington Interest in Negotiation Group4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=MZZ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1996) -vol. 11 no. 3 (2006)cParisdMagasins/AnnexeeP 8° 6339 aZSAB aexempb201301 aDEW 32201551nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005500154210003900209326001600248606004800264606004700312676000800359710004200367711002700409801002100436856012800457856010800585856010100693856010800794856009000902856010800992955006601100972000901166992001401175038728346000002311720140110145203.01 a0020-8183 aFNSP161682 a0000023117 a19900101a19479999 ba0 aeng aUS aahu 10aInternational organizationfWorld Peace Foundation aCambridge, Mass.cMIT Pressd1947- aTrimestriel aOrganisations internationalesxPériodiques aSociologie des organisationsxPériodiques a32702aMassachusetts Institute of Technology02aWorld Peace Foundation 3aFRbCCN0020-81834 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=IOR&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=109456 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00208183.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1947) -....cParisdMagasins/AnnexeeP 8° 0005 aZCAD aDEW 341.201190nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154207002600185210002800211210002900239326002500268326002700293606004400320606003800364676000800402856004100410856006700451856010900518856010800627955006600735972000900801991001800810992001200828036740640000015836520140110151002.01 a1353-3312 aFNSP612760 a0000158365 a19900101a19949999 ba0 aeng aGB aaha 10aInternational peacekeeping 1avol. 1, no. 1 (1994)- aLondoncCassd1994-2005 aLondoncRoutledged2005- a5 n°s par an$d2007- aTrimestriel$d1994-2006 aSécurité internationalexPériodiques aMaintien de la paixxPériodiques a3274 uhttp://www.frankcass.com/jnls/ip.htm zContenu : sommaires et résumés depuis le vol. 1, no. 1, 19944 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713635493db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1994) -....cParisdMagasins/AnnexeeP 8° 6126 aZSAB aexempb201207 aDEW 32701422nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210006200200326001500262517004300277606005100320710005200371801002100423856010800444856010800552856015500660856010800815955006900923955005500992972000901047992001601056992001201072038728451000006632820131112101449.01 a0020-8345 aFNSP308120 a0000066328 a19900101a19519999 f ba0 amul aFR aagu 10aInternational political science abstracts aPariscInternational Political Science Associationd1951- aBimestriel10aDocumentation politique internationale aScience politiquexBibliographiexPériodiques02aAssociation internationale de science politique 3aFRbCCN0020-83454 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://web.ebscohost.com/ehost/search?vid=2&hid=108&sid=13385cc1-c12b-4bd1-acd1-f6ba0db60f6c%40sessionmgr104 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1982) -vol. 56 no. 6 (2006)cParisdMagasins/AnnexeeP 4° 47471 b(1951) -(1981)cParisdMagasins/AnnexeeP 8° 1004 aZSAB aDEW 320-321 aDEW 01002017nas 2200445 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200008800139210003700227210005400264210005500318210004100373326002400414326002700438452006400465510004600529530004200575606003600617676000800653710005200661801002100713856007000734856010800804856010800912856010801020856009001128856010801218955006701326955006601393955006901459972000901528991001801537992001601555039145107000002313920131219164436.01 a0192-5121 aFNSP161778 a19900101a19809999 ba0 afre aGB aagu 10aInternational political science reviewd= Revue internationale de science politique aLondon [etc.]‎cSage‎d1996- aGuildford‎cButterworth-Heinemann‎d1990-1995 aGuildford‎cButterworth Scientific‎d1987-1990 aLondon [etc.]‎cSage‎d1980-1986 a5 nos par anb2007- aTrimestrielb1996-2006 1tInternational political science review (Online),x1460-373X10aRevue internationale de science politique anternational political science review aScience politiquexPériodiques a32002aAssociation internationale de science politique 3aFRbCCN0192-51214 uhttps://acces-distant.sciences-po.fr/fork?http://ips.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01925121.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bvol. 1 no. 1 (1980) -....cParisdMagasins/AnnexeeP 8° 42541 bL'année en courscParisdBibliothèque de rechercheeP 8° 4254 aZSAB aexempb201106 aDEW 320-32101180nas0 2200337 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200007300139207002300212210004000235326001600275606003900291606004400330606005600374676000800430710004400438801003000482856004500512856005700557955006600614955007000680955006900750972000900819992001400828113755376000108081820131219164536.01 a1749-5679 a0001080818 a20070404a20079999k 0frey0103 ba0 aeng aUS aaha k 10aInternational political sociologyfInternational Studies Association 0aVol.1, n.1 (2007)- aMaldencBlackwell Publishingd2007- aTrimestriel aSociologie politiquexPériodiques aRelations internationalesxPériodiques aRelations internationalesxSociologiexPériodiques a30102aAssociation des études internationales 3aFRbAbesc20070404gAFNOR4 uhttp://www.blackwell-synergy.com/loi/IPS zContenu : sommaires des n°s et résumés d'articles1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3011 bvol. 1 no. 1 (mar-2007) -....cParisdMagasins/AnnexeeP 8° 69581 bL'année en courscParisdBibliothèque de rechercheeP 8° 6958 aZGRA aDEW 306.201123nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002700139210004700166326002200213326002700235430002900262452004800291530003800339606005700377606004400434676000800478856013400486955006700620955007100687972000900758991001800767992001200785036858544000020087220130709140403.01 a1384-5748 aFNSP732733 a19900101a19969999 ba0 aeng aNL aaha 10aInternational politics aThe HaguecKluwer Law Internationald1996- aBimestrielb2007- aTrimestrielb1996-2006 1aCo-existence,x0587-5994 1tInternational politics (Online),x1740-389810aInternational politicsbThe Hague aRelations économiques internationalesxPériodiques aRelations internationalesxPériodiques a3274 uhttps://acces-distant.sciences-po.fr/fork?http://www.palgrave-journals.com/ip/archive/index.htmlzAccès libre au texte intégral1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 33 no. 1 (mar-1996) -....cParisdMagasins/AnnexeeP 8° 2105 aZSAB aexempb201202 aDEW 32701047nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210003700198326002300235326002800258326002600286517000900312606004200321710004400363856010900407856010800516955006600624972000900690991001800699992001600717036159298000026955620130319051540.01 a1096-7494 aFNSP932620 a0000269556 a19990402a19989999 ba0 aeng aUS aaha 10aInternational public management journal aStamford, Con.cJAI Pressd1998- aTrimestrielb2006- a3 nos par anb2005-2005 aSemestrielb1998-200410aIPMJ aAdministration publiquexPériodiques02aInternational Public Management Network4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t737963440db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1998) -....cParisdMagasins/AnnexeeP 8° 6472 aZPAY aexempb201212 aDEW 350-35401172nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004200154210006600196326003200262606004200294606003800336710004500374801002100419856010800440856010800548955008600656957009800742991001800840992001200858039101371000002314320130319051540.01 a0160-0176 aFNSP161787 a0000023143 a19900101a19759999 ba0 aeng aUS aaju 10aInternational regional science review aMorgantown, Wv.cInternational Regional Science Reviewd1975- aSemestriel puis Trimestriel aGéographie économiquexPériodiques aEconomie régionalexPériodiques02aRegional Research Institute (Etats-Unis) 3aFRbCCN0160-01764 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 1 (aut-1980) -vol. 21 no. 3 (1998)cParisdMagasins/AnnexeeP 8° 45541 bvol. 1 (1975) -vol. 12 (1989)cParisdMagasins/Annexe :zpublié dans le vol. 12 no. 3 (1989) aexempb201106 aDEW 90901237nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200003700138210007600175326002300251326002800274326002600302606004400328710006700372801002100439856002800460856010800488856010800596856010800704955005700812972000900869992002100878992001200899038826704000002314420130319051540.01 a0047-1178 aFNSP161788 a0000023144 a19900101a19549999 ba0 aeng aGB10aInternational relations (London) aLondoncDavid Davies Memorial Institute of International Studiesd1954- aTrimestrielb2003- a3 n° par anb1992-2002 aSemestrielb1954-1991 aRelations internationalesxPériodiques02aDavid Davies Memorial Institute of International Studiesc(GB) 3aFRbCCN0016/01484 uhttp://ire.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(avr-1954) -....cParisdMagasins/AnnexeeP 8° 1357 aZSAB aGEO RQ Universel aDEW 32701252nas 2200349 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012310600060014111000160014720001110016321000430027432600180031745200700033553000660040560600440047160700470051560700620056271000490062480100130067385600370068685600710072395500660079497200090086099200120086999200210088106413248X000049036120130319051540.01 a1470-482X a0000490361 a a20019999k fre ba0 aeng aGB a 0  ar aai z 0 10aInternational relations of the Asia-Pacificea journal of the Japan Association of International Relations aOxfordcOxford University Pressd2001- a3 n°s par an 1tInternational relations of the Asia-Pacific (online)x(1470-4838)00aInternational relations of the Asia-Pacificb(Texte imprimé) aRelations internationalesxPériodiques aAsiexRelations extérieuresxPériodiques aPacifique (région)xRelations extérieuresxPériodiques02aJapan Association of International Relations 0aFRbFNSP4 uhttp://www.irap.oupjournals.org/ zSommaires et résumés des articles à partir du vol.1, n°1, 20011 bvol. 1 no. 1 (2001) -....cParisdMagasins/AnnexeeP 8° 6663 aZSAB aDEW 327 aGEO RI3.22 Japon01349nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005200154210002400206326001600230422006600246434004900312606004200361606003700403710005600440801002100496856007000517856010800587856010800695856010800803955007500911972000900986992001600995038728516000004340320130319051541.01 a0020-8523 aFNSP227514 a0000043403 a19900101a19579999 ba0 aeng aIN aahu 10aInternational review of administrative sciences aLondoncSaged1957- aTrimestriel 1aRevue internationale des sciences administrativesx(0773-2961 1aProgress in public administrationx0352-3060 aAdministration publiquexPériodiques aPolitique publiquexPériodiques02aInstitut international des sciences administratives 3aFRbCCN0020-85234 uhttps://acces-distant.sciences-po.fr/fork?http://ras.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 53 no. 1 (mar-1987) -....cParisdMagasins/AnnexeeP 4° 1490 bis aZSAB aDEW 350-35401487nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210002600200326002200226326002900248326002700277606003700304856012800341856010800469856010300577856010800680856010900788856010800897955007001005972000901075991001801084992002101102992001401123039325288000001077720130319051541.01 a0269-2171 aFNSP120520 a0000010777 a19900712a19879999 ba0 aeng aGB aaga 10aInternational review of applied economics aLondoncArnoldd1987- aBimestrielb2008- a5 n°s par anb2006-2007 aTrimestrielb1987-2005 aEconomie politiquexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=RAE&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=102219 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713426883db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1987) -....cParisdMagasins/AnnexeeP 8° 5207 aZPAY aexempb201202 aGEO RQ Universel aDEW 338.900978nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200004600138210004300184326002300227326002600250606003700276801002100313856010000334856005400434955007100488955009000559972000900649991001800658992001200676039086011000005622220130319051541.01 a0144-8188 aFNSP263280 a0000056222 a19900101a19819999 ba0 aeng aGB10aInternational review of law and economics aGuilfordcButterworth-Heinemannd1981- aTrimestrielb1992- aSemestrielb1981-1991 aDroit des affairesxPériodiques 3aFRbCCN0144-81884 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/01448188 zContenu : sommaires depuis le vol. 1, no. 1, 19811 bvol. 28 no. 1 (mar-2008) -....cParisdMagasins/AnnexeeP 4° 72211 bvol. 4 no. 2 (dec-1984) -vol. 27 no. 4 (dec-2007)cParisdMagasins/AnnexeeP 8° 4861 aZPAY aexempb201011 aDEW 34601323nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004300154210004900197326001800246430008900264606003500353710004600388801002100434856004200455856005400497856010100551856010800652955011500760957007200875972000900947991001700956992001200973038728591000007399020130319051541.01 a0020-8590 aFNSP336706 a0000073990 a19900101a19569999 ba0 aeng aNL aaiu 10aInternational review of social history aCambridgecCambridge University Pressd1956- a3 n°s par an 1aBulletin of the International Institute of Social History (0921-254X) < P 8° 1034 > aHistoire socialexPériodiques02aInstitut international d'histoire sociale 3aFRbCCN0020-85904 uhttp://uk.cambridge.org/journals/ish/ zContenu : sommaires depuis le vol. 41, n°1, 19964 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=102041 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1956) -vol. 29 no. 3 (1984) ; vol. 39 no. 1 (avr-1994) -....cParisdMagasins/AnnexeeP 8° 10341 bvol. 1 (1956) -vol. 37 (1992)cParisdMagasins/AnnexeeP Index 0779 aZPAY aexemp$201103 aDEW 30100880nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000069001502100025002192300024002443260016002685100043002846010058003276060053003858010013004388560035004518560054004869550005005409920021005459920012005660001161296000116129620130319051541.0 a0001161296 a a19959999k fre 01 ba0 aeng aCH ar aah z  adr 10aInternational review of the Red Crossb[Ressource électronique] aGenèvecCICRd1995- aRevue électronique aTrimestriel12aRevue internationale de la Croix-Rouge02aComité international de la Croix-RougexPériodiques aOrganisations non gouvernementalesxPériodiques 0aFRbFNSP4 uhttp://www.cicr.org/eng/review zContenu : texte intégral depuis le n° 304, 19951 r aGEO RQ Universel aDEW 36001178nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008300154210006100237326001600298510004300314601005800357606005300415710004400468801002100512830003200533856003500565856005400600955007600654957007100730972000900801991001800810992001200828038786877000004235820130319051541.01 a0020-8604 aFNSP224265 a0000042358 a19900101a19559999 f ba0 aeng aZZ aahu 10aInternational review of the Red Crossd=Revue internationale de la Croix rouge aGenèvecInternational Committee of the Red Crossd1961- aTrimestriel10aRevue internationale de la Croix rouge02aComité international de la Croix-RougexPériodiques aOrganisations non gouvernementalesxPériodiques02aComité international de la Croix-Rouge 3aFRbCCN0035-3361 a1947-1984 : donné au CTLES4 uhttp://www.cicr.org/eng/review zContenu : texte intégral depuis le n° 304, 19951 bno. 751 (1985) - no. 862 (jun-2006)cParisdMagasins/AnnexeeP 8° 01771 b(1962)-(1974), (1975)-(1987)cParisdMagasins/AnnexeeP Index 0279 aZGRA aexempb201101 aDEW 32701635nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002700139210003900166326001600205452005000221530003700271606004400308606004400352676000800396710006900404801002100473856013300494856019500627856020600822955006701028955007001095955006901165972000901234991001801243992001201261039105679000002315120131219164737.01 a0162-2889 aFNSP161818 a19900101a19769999 ba0 aeng aUS aahu 10aInternational security aCambridge, Mass.cMIT Pressd1976- aTrimestriel 1tInternational security (Online)‎x1531-480410aInternational security‎bPrint aSécurité internationalexPériodiques aArt et science militairesxPériodiques a32702aCenter for Science and International Affairsc(Cambridge, Mass.) 3aFRbCCN0162-28894 uhttp://mitpress.mit.edu/journal-contents.tcl?issn=01622889zContenu : sommaires et résumés depuis le vol. 19, n°1, été 19944 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01622889.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101990zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 2 no. 3 (hiv-1978) -....cParisdMagasins/AnnexeeP 8° 40451 bL'année en courscParisdBibliothèque de rechercheeP 8° 4045 aZCAD aexempb200302 aDEW 32701130nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002800139210005300167326002400220326003000244452005100274530002800325606002900353710004500382801002100427856010800448856010800556955011300664972000900777991001800786992001200804039324044000002315720131003155536.01 a0268-5809 aFNSP161836 a19900101a19869999 ba0 aeng aGB aahu 10aInternational sociology aCardiffcUniversity College Cardiff Pressd1986- aBimensuel‎b2006- aTrimestriel‎b1986-2005 1tInternational sociology (Online)‎x1461-7242 aInternational sociology aSociologiexPériodiques02aAssociation internationale de sociologie 3aFRbCCN0268-58094 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1986) -vol. 2, no. 4 (1987) ; vol. 6 no. 1 (1991)-....cParisdMagasins/AnnexeeP 8° 5088 aZSAB aexempb201106 aDEW 30101185nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210004200186326001600228430006000244451004200304606004400346676000800390710004300398801002100441856010900462856010800571955007000679957005600749972000900805992002100814992001200835039594351000002315820140110150546.01 a0393-2729 aFNSP161837 a0000023158 a19900101a19839999 ba0 aeng aIT aahu 14aThe International spectator aRomacFratelli Palombi Editorid1983- aTrimestriel 1aSpettatore internazionale (English edition),x0584-8776 1aSpettatore internazionale,x0391-9455 aRelations internationalesxPériodiques a32702aIstituto affari internazionalic(Rome) 3aFRbCCN0393-27294 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t768481834db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 18 no. 1/2 (1983) - ....cParisdMagasins/AnnexeeP 4° 48701 b(1991)-(1999)cParisdMagasins/AnnexeeP Index 0831 aZPAY aGEO RQ Universel aDEW 32701119nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210002700180326001600207530003900223606004400262607004700306710004900353856010800402856010800510955012800618972000900746991001800755992002000773992001200793038728729000002321820130319051541.01 a0020-8817 aFNSP161989 a0000023218 a19910129a19599999 ba0 aeng aIN aaha 10aInternational studies aNew DelhicSaged1959- aTrimestriel10aInternational Studiesb(New Delhi) aRelations internationalesxPériodiques aIndexRelations extérieuresxPériodiques02aSchool of International Studiesc(New Delhi)4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jul-1959) -vol. 42 no. 1 (janv/mar-2005) ; vol. 45 no. 2 (avr-2008) -....cParisdMagasins/AnnexeeP 8° 1826 aZSAB aexempb200910 aGEO RI1.13 Inde aDEW 32701010cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200003900162210004400201326001600245430004300261606004400304710004400348801003000392801002300422802000700445856003000452856006600482955007000548972000900618992003300627992001200660058346473000073306420130319051541.01 a1528-3577 aissn15283577 a0000733064 a20001206a20009999 0fre 0103 ba0 aeng aUS ar aah 10aInternational studies perspectives aMalden, MAcBlackwell Publishersd2000- aTrimestriel 1tInternational studies notesx0094-7768 aRelations internationalesxPériodiques02aAssociation des études internationales 3aFRbAbesc20040602gAFNOR 3aFRbISSNc20001206 a014 uhttp://www.isp.uconn.edu/ zContenu : sommaires et résumés depuis le Vol. 1, n°1, 20001 bvol. 5 no. 1 (fev-2004) -....cParisdMagasins/AnnexeeP 4° 7063 aZGRA aGEO RS Sans aspect régional aDEW 32701609nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154210004300190326001600233421005700249430004500306606004400351712004400395801002100439830004700460856007900507856007200586856009000658856010800748856006500856856009000921955015101011972000901162991001901171992002101190992001201211038728745000002326420130319051541.01 a0020-8833 aFNSP162176 a0000023264 a19900101a19679999 ba0 aeng aGB aahu 10aInternational studies quarterly aGuilfordcButterworth-Heinemannd1967- aTrimestriel01tMershon international studies reviewxISSN 1079-1760 1aBackground (Los Angeles)xISSN 0361-5448 aRelations internationalesxPériodiques02aAssociation des études internationales 3aFRbCCN0020-8833 a1958 -->1983 : Collection donnée au CTLes4 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0020-8833&src=cts zContenu : sommaires et résumés depuis le vol. 41, n°1, mars 19974 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00208833.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po zPour Background (Los Angeles) via JSTOR, voir URL ci-dessous4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03615448.html1 bvol. 28 no. 1 (1984) -....cParisdMagasins/AnnexeeP 8° 1684wManquants: vol. 36 (1992) ; vol. 42 no. 3 (1998) ; vol. 44 (2000) ; vol. 45 (2001) aZSAB aexemp§b201102 aGEO RQ Universel aDEW 32701148cas0 2200349 450 001001000000002001100010005001700021011001400038020002000052035001500072040001100087100004100098101000800139102001100147105001800158110001600176200007400192207003500266210004400301326001600345430005200361606004400413606004400457710004400501801003000545856004600575856006500621955007000686972000900756992002100765992001200786056261063000092332220130319051541.01 a1521-9488 aUSbsn 98001195 a0000923322 aISRVFT a20010710a19999999 y0frey0103 ba0 aeng aUSbma a 0  aahy 0yy 00aInternational studies reviewfAssociation des études internationales 0aVol. 1, issue 1 (Spring 1999)- aMalden, MAcBlackwell Publishersd1999- aTrimestriel 1tMershon international studies reviewx1079-1760 aRelations internationalesxPériodiques aRelations internationalesxPériodiques02aAssociation des études internationales 3aFRbAbesc20020522gAFNOR4 uhttp://www.blackwell-synergy.com/loi/misr zContenu : sommaires et résumés depuis le vol.1, n°1, 19991 bvol. 6 no. 1 (mar-2004) -....cParisdMagasins/AnnexeeP 8° 6860 aZSAB aGEO RQ Universel aDEW 32701222nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003600139210002900175326001600204530003200220606004100252710005300293801002100346856010300367856010800470856010900578856010800687955007000795972000900865991001800874992001600892039976831000002326820131002165945.01 a0885-3908 aFNSP162189 a19900101a19869999 ba0 aeng aUS aahu 14aThe International trade journal aLaredo, Tex.cIITd1986- aTrimestriel aInternational trade journal aCommerce internationalxPériodiques02aInstitute of International Tradec(Laredo, Tex.) 3aFRbCCN0885-39084 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=102460 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713772442db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (oct-1986) -....cParisdMagasins/AnnexeeP 8° 5029 aZPAY aexempb201106 aDEW 380-38201197nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200018700154210003600341326001100377430007500388510005100463606004400514676000800558710004300566856012200609955005800731955005300789972000900842992001600851992001600867036063886000007784620130319051541.01 a1010-447X aFNSP351734 a0000077846 a19900101a19859999 f ba0 amul aUS aaka 10aInternational trade statistics yearbookd= Annuaire statistique du commerce internationalfUnited Nations, Department of International Economic and Social Affairs, Statistical Office aNew YorkcUnited Nationsd1985- aAnnuel 1aYearbook of international trade statistics - United Nationsx0084-382210aAnnuaire statistique du commerce international aStatistiques commercialesxPériodiques a33702aNations UniesbDivision de statistique4 uhttps://unp.un.org/Search.aspx?keyword=international%20trade%20statistics%20yearbookzAccès libre au texte intégral1 b(1983) -(2004)cParisdMagasins/AnnexeeNU 4° 00.1041 b(2005) -....cParisdMagasins/AnnexeeP 4° 7247 aZPAY aDEW 380-382 aDEW 310-31901191nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007900154210004600233326002200279326002300301430004100324517000700365530006300372606004400435676000800479710005100487856004100538856009300579955006700672955006300739972000900802991001800811992001200829037132326000014789820130319051541.01 a1430-175X aFNSP581309 a0000147898 a19950127a19959999 ba0 ager aDE aaga 10aInternationale PolitikfDeutsche Gesellschaft für Auswärtige Politik e.V aBonncVerl. für Internat. Politikd1995- aBimestrielb2010- aMensuelb1995-2009 1aEuropa archiv (Bonn)xISSN 0014-247610aIP10aInternationale PolitikbBonn. Verl. für Internat. Politik aRelations internationalesxPériodiques a32702aDeutsche Gesellschaft für Auswärtige Politik4 uhttp://www.internationalepolitik.de/ zContenu : sommaires depuis 1998, articles de 1995 à 2000 disponibles en texte intégral1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bno. 1 (jan-1995) -....cParisdMagasins/AnnexeeP 8° 1707 aZGRA aexempb201102 aDEW 32701401cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200008300180210007100263326002200334326002700356422007500383517002200458530004000480606004400520676000800564710005100572801003000623801002300653802000700676856003000683856006600713955006700779955011200846992003300958992001200991058234853000118950020130319051541.01 a1439-8443 aissn14398443 a0001189500 a20001206a20009999k y0frey0103 ba0 aeng aDE ay 0  ar aaga 0 10aInternationale Politikethe journal of the German Council on Foreign Relations aBerlincDeutsche Gesellschaft für Auswärtige Politik e.V.d2000- aBimestrielb2009- aTrimestrielb2000-2009 1tInternationale Politik (Bonn. Verl. für Internat. Politik)x1430-175X10aIP global edition10aInternationale Politikb(Frankfurt) aRelations internationalesxPériodiques a32702aDeutsche Gesellschaft für Auswärtige Politik 3aFRbAbesc20100320gAFNOR 3aFRbISSNc20001206 a064 uhttp://www.ip-global.org/ zContient : articles en texte intégral depuis le vol. 1, 20001 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 8 no. 3 (2007) -vol. 8 no. 4 (2007) ; vol. 10 (sep/oct-2009) -....cParisdMagasins/AnnexeeP 8° 7135 aGEO RS Sans aspect régional aDEW 32700964nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210003000198326001600228430007500244510003900319606004400358710002900402856002700431856007300458955005900531972000900590991001800599992002100617992001200638040066843000013110420130319051541.01 a0945-2419 aFNSP532723 a0000131104 a19940623a19949999 ba0 amul aDE aaha 10aInternationale Politik und Gesellschaft aBonncDietz Nachf.d1994- aTrimestriel 1aVierteljahresberichte problems of international cooperationx0936-451X10aInternational politics and society aRelations internationalesxPériodiques02aFriedrich-Ebert-Stiftung4 uhttp://www.fes.de/ipg/ zContenu : accès au texte intégral depuis 1998, moteur de recherche1 bno. 1 (1994) -....cParisdMagasins/AnnexeeP 8° 2154 aZSAB aexempb201003 aGEO RQ Universel aDEW 32700928nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210003800185326001600223607002300239801002100262856004000283856005300323955008200376957011300458972000900571991001800580992001600598992001200614038729059000002357820130319051541.01 a0020-9449 aFNSP162861 a0000023578 a19900101a19709999 ba0 amul aDE aaha 10aInternationales Asienforum aMünchencWeltforum-Verlagd1970- aTrimestriel aAsiexPériodiques 3aFRbCCN0020-94494 uhttp://www.arnold-bergstraesser.de/ zContenu : sommaires et résumés depuis mai 20011 bvol. 1 no. 1 (1970) -vol. 40 no. 4 (2009)cParisdMagasins/AnnexeeP 8° 27451 bno. 1 (1970) -no. 25 (1994)cParisdMagasins/Annexezcet index constitue le vol. 26 no. 1 (1995) de la revue aZSAB aexempb201105 aGEO RH Asie aDEW 95001513cas0 2200397 450 00100100000000200110001000500170002101100140003803500170005203500170006903500170008603500150010304000110011810000410012910100080017010200070017810500180018511000160020320000420021920700260026121000410028732600160032860600440034460600450038880100300043380100230046380200070048685601610049385600810065485601090073585601080084495500720095295500670102499200120109199200120110304036318X000113073920130319051542.01 a1087-5301 zccn7202/1772 accn1087-5301 aissn10875301 a0001130739 aIRSQFC a19980721a19969999k y0frey0103 ba0 aeng aUS ay 0  aaha 0uu 10aInternet reference services quarterly 0aVol. 1, no. 1 (1996)- aBinghamton, NYcHaworth Pressd1996- aTrimestriel aBibliothèques virtuellesxPériodiques aBibliothèques et InternetxPériodiques 3aFRbAbesc20080128gAFNOR 3aFRbISSNc20051021 a014 uhttps://acces-distant.sciences-po.fr/fork?http://www.haworthpress.com/store/product.asp?sid=TACAVC07DGP99GSD12S2U8HDP997DECC&sku=J136&detail=TOCList#TOCList zContient le sommaire et le résumé des n°s depuis le vol. 1, n° 1 de 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t792306879db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes deux dernières annéescParisdFonds professionneleP 8° 70041 bvol. 11 no. 1 (2006) -....cParisdMagasins/AnnexeeP 8° 7004 aDEW 004 aDEW 02001227cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001700069035002100086035001500107100004100122101000800163102000700171105001800178110001600196200009700212207001400309210004100323440007100364517005300435530004900488531004300537710006400580801001300644802000700657830004100664856002500705856003700730955004700767992001400814992002500828040402460000028184920131119143817.0 a1263-0500 accn1263-0500 aissn12630500 a(OCoLC)473135982 a0000281849 a19960829b19931998u y0frey50 ba0 afre aFR ay  aaku uu 10aInventaire national des déchets radioactifsfObservatoire national des déchets radioactifs 0a1993-1998 aFontenay-aux-RosescANDRAd1993-1998 1tEtat et localisation des déchets radioactifs en Francex1297-165012aL'observatoire national des déchets radioactifs00aInventaire national des déchets radioactifs 0aInventaire national déchets radioact.02aObservatoire national des déchets radioactifscFrance4070 0aFRbFNSP a07 aA jeter (mis ds tableau Désherbage)4 uhttp://www.andra.fr/ zAccès libre au texte intégral.1 b(1998)cParisdMagasins/AnnexeeP 4° 6823 aDEW 60-69 aGEO RA4.06 France 0101186cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200005400174210005800228326001500286517002700301517005800328606004400386606003700430607002700467607005100494710004000545801003000585801002300615802000700638856004600645856005100691955007000742992001200812068846819000111034020130319051544.01 a1684-9787 aissn16849787 a0001110340 a20020530a20019999 0fre 0103 ba0 aeng aPK ay  aaj 10aIPRI journalfIslamabad Policy Research Institute aIslamabadcIslamabad Policy Research Instituted2001- aSemestriel10aJournal - IPRI (Print)10aJournal - Islamabad Policy Research Institute (Print) aRelations internationalesxPériodiques aDéfenseyPakistanxPériodiques aPakistanxPériodiques aPakistanxRelations extérieuresxPériodiques02aIslamabad Policy Research Institute 3aFRbAbesc20021208gAFNOR 3aFRbISSNc20020530 a004 uhttp://www.ipripak.org/publications.shtml zContient: sommaire et texte intégral des n°s1 bvol. 3 no. 2 (jun-2003) -....cParisdMagasins/AnnexeeP 8° 6977 aDEW 90901157nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002000139210004900159326002200208326002900230326002700259452004000286530002000326607002300346710004600369801002100415856021400436955007000650957007200720972000900792991001800801992001200819038729636000002643620130613175733.01 a0021-0862 aFNSP170370 a19900101a19689999 ba0 aeng aUS aaha 10aIranian studies aNew-YorkcSociety for Iranian Studiesd1968- aBimestrielb2011- a5 n°s par anb2007-2010 aTrimestrielb1968-2006 1tIranian studies (Online)x1475-481900aIranian studies aIranxPériodiques02aSociety for Iranian Studiesc(Etats-Unis) 3aFRbCCN0021-08624 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713427941db=allzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (nov-1968) -....cParisdMagasins/AnnexeeP 8° 31771 bvol. 1 (1968) -vol. 15 (1982)cParisdMagasins/AnnexeeP Index 0544 aZCAD aexempb200910 aDEW 95501113nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210003000182326001600212607005300228607006600281710004500347801002100392856010900413856010800522955006000630972000900690991001800699992002300717992003100740992001600771039752453000000671120130319051545.01 a0790-7184 aFNSP110960 a0000006711 a19900101a19869999 ba0 aeng aIE aahu 10aIrish political studies aGalwaycPSAI Pressd1986- aTrimestriel aIrlandexPolitique et gouvernementxPériodiques aIrlande du Nord (GB)xPolitique et gouvernementxPériodiques02aPolitical Studies Association of Ireland 3aFRbCCN0790-71844 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713635614db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 (1986) -....cParisdMagasins/AnnexeeP 8° 4965 aZSAB aexempb201003 aGEO RA4.01 Irlande aGEO RA4.02 Grande-Bretagne aDEW 941.5-701054nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210002800195326001600223606002400239606005000263856005700313856005800370856010900428856010800537955006600645972000900711991001800720992001400738040092763000016135220140109163127.01 a0959-6410 aFNSP620851 a0000161352 a19900101a19909999 ba0 aeng aGB aaja 10aIslam and Christian-Muslim relations aAbingdoncCarfaxd1990- aTrimestriel aIslamxPériodiques aIslamxRelationsxChristianismexPériodiques4 uhttp://www.tandf.co.uk/journals/carfax/09596410.html zContenu : sommaires depuis le vol. 7, n°1, mars 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713424660db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 1 (1994) -....cParisdMagasins/AnnexeeP 8° 6139 aZSAB aexempb201202 aDEW 20-2900745nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154207003000174210003200204326001600236606002400252856003800276856004500314955006700359972000900426991001800435992001400453040508056000023825320130319051547.01 a1275-7527 aFNSP841481 a0000238253 a19900101b19982000 ba0 afre aFR aaha 10aIslam de France 1ano. 1 (1997)-no. 8 (2000) aPariscHarmattand1998-2000 aTrimestriel aIslamxPériodiques4 uhttp://www.editions-harmattan.fr/ zContenu : sommaires depuis le n°1, 19981 bno. 1 (1998) -no. 8 (2000)cParisdMagasins/AnnexeeP 8° 6376 aZPAY aexempb201212 aDEW 20-2901339nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210003000173326001600203607002600219676000800245856005600253856009300309856010300402856007300505856010900578856010800687955006600795955006600861972000900927991001800936992002300954992001200977138880220000014952920130319051548.01 a1353-7121 aFNSP586138 a0000149529 a19950213a19949999 ba0 aeng aGB aaha 10aIsrael affairs aLondoncFrank Cassd1994- aTrimestriel aIsraëlxPériodiques a9564 uhttp://www.tandf.co.uk/journals/titles/13537121.asp zContenu : sommaires et résumés depuis le vol. 5, n°1, 1999 jusqu'au vol.9, n°4, 20034 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713677360 zContenu : sommaires et résumés depuis le vol.1, n°1, automne 19944 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713677360db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9561 bvol. 1 no. 1 (1994) -....cParisdMagasins/AnnexeeP 8° 6099 aZSAB aexempb201208 aGEO RG2.15 Israël aDEW 95600888nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210002700176326001600203606003300219606002400252710003400276801002100310856005200331856003900383955009000422972000900512991001800521992002300539992001200562038730324000002611220130319051548.01 a0021-2237 aFNSP169585 a0000026112 a19900101a19669999 ba0 aeng aIL aaha 10aIsrael law review aJerusalemcILRAd1966- aTrimestriel aDroityIsraëlxPériodiques aDroitxPériodiques02aIsrael Law Review Association 3aFRbCCN0021-22374 uhttp://law.mscc.huji.ac.il/law1/ilr/Default.htm zContenu : sommaire du n° en cours1 bvol. 1 no. 1 (jan-1966) -vol. 36 no. 3 (oct-2002)cParisdMagasins/AnnexeeP 8° 2503 aZSAB aexempb201004 aGEO RG2.15 Israël aDEW 34900796nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321050018001392000028001572100037001853260011002225300028002336060035002617100019002968010013003158560070003289550064003989720009004629920023004719920012004940000089879000008987920130319051548.01 a0334-2093 aFNSP395993 a0000089879 a19900101a1974 fre 0 aeng aIL a z a 10aIsrael's banking system aJerusalemcBank of Israeld1974- aAnnuel00aIsrael's banking system aBanquesyIsraëlxPériodiques02aBank of Israel 0aFRbFNSP4 uhttp://www.bankisrael.gov.il/deptdata/pikuah/skira99/skira99e.htm1 b(1980) ; (1982) -(2006)cParisdMagasins/AnnexeeP 4° 4726 aZGRA aGEO RG2.15 Israël aDEW 33201076nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210005500173326001500228530003800243606002400281607002600305712004100331712004800372712004900420856003500469856010100504955006600605972000900671991001900680992002300699992001600722040349640000021439120130319051548.01 a1084-9513 aFNSP774288 a0000214391 a19900101a19969999 ba0 aeng aUS aaja 10aIsrael studies aBloomington, Ind.cIndiana University Pressd1996- aSemestriel 0aIsrael studiesbBloomington, Ind. aJuifsxPériodiques aIsraëlxPériodiques02aBen-Gurion Research Center (Israël)02aOxford Centre for Hebrew and Jewish Studies02aAssociation for Israel Studiesc(Etats-Unis)4 uhttp://iupjournals.org/israel/ zContenu : sommaires depuis le vol. 1, n°1, print. 1996 ; 1 article en ligne par n° depuis 19981 bvol. 1 no. 1 (1996) -....cParisdMagasins/AnnexeeP 8° 6329 aZSAB aexempb2012/11 aGEO RG2.15 Israël aDEW 305-30601263cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200005700180207006100237210005100298326001500349430003900364440003700403607002600440607003600466607003100502710004900533801003000582801002300612802000700635856004700642856005300689955008700742972000900829992001200838992001500850104732342000105206120130319051549.01 a1557-2455 aissn15572455 a0001052061 a20020107b20012010k y0frey0103 ba0 aeng aUS a 0  ar aaja 0uu 10aIsrael studies forumfAssociation for Israel studies 0aVol. 17, no. 1 (Fall 2001)- vol. 25, no. 2 (Winter 2010) aNew-YorkaOxfordcBerghahn Journalsd2001-2010 aSemestriel 1tIsrael studies bulletinx1065-7711 1tIsrael studies reviewx2159-0370 aIsraëlxPériodiques aIsraëlxHistoirexPériodiques aMoyen-OrientxPériodiques02aAssociation for Israel Studiesc(Etats-Unis) 3aFRbAbesc20060717gAFNOR 3aFRbISSNc20060706 a014 uhttp://www.berghahnbooks.com/journals/isf/ zContient les sommaires et les résumés des n°s1 bvol. 21 no. 1 (2006) -vol. 25 no. 2 (hiv-2010)cParisdMagasins/AnnexeeP 8° 6929 aZSAB aDEW 956 aGEO RG2.1501159cas0 2200361 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005800163207002300221210003900244301005100283301006400334326001500398430003600413607002600449607003600475710004900511801003000560856004700590856005300637955007100690972000900761992001200770992001500782153819405000121825820130319051549.01 a2159-0370 a0001218258 a20110721a20119999 y0frey50 ba0 aeng aUS ay  ar aaja yy 10aIsrael studies reviewfAssociation for Israel studies 1aVol.26 no.1(2011)- aNew YorkcBerghahn Journalsd2011- a2159-0370 : ISSN figurant sur la page de titre aDemande de numérotation ISSN en cours par le CR28 20110721 aSemestriel 1tIsrael studies forumx1557-2455 aIsraëlxPériodiques aIsraëlxHistoirexPériodiques02aAssociation for Israel Studiesc(Etats-Unis) 3aFRbAbesc20110922gAFNOR4 uhttp://www.berghahnbooks.com/journals/isr/ zContient les sommaires et les résumés des n°s1 bvol. 26 no. 1 (Win-2011) -....cParisdMagasins/AnnexeeP 8° 6929 aZSAB aDEW 956 aGEO RG2.1501072nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001000154210005900164326001600223440005200239530002600291607002600317607004900343607004900392710004600441801002100487856009000508955007600598957007200674992001200746038826828000002391020130319051549.01 a0047-1607 aFNSP163614 a0000023910 a19900101b19711999 ba0 aeng aUS aahy 10aIssue aWaltham, Mass.cAfrican Studies Associationd1971-1999 aTrimestriel 1tAfrican issues (New Brunswick, N.J.)x1548-450500aIssuebWaltham, Mass. aAfriquexPériodiques aAfriquexRelationsyEtats-UnisxPériodiques aEtats-UnisxRelationsyAfriquexPériodiques02aAfrican Studies Associationc(Etats-Unis) 3aFRbCCN0047-16074 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00471607.html1 bvol. 1 (1971) -vol. 27 no. 2 (1999)cParisdMagasins/AnnexeeP 4° 31141 bvol. 1 (1947) -vol. 51 (1997)cParisdMagasins/AnnexeeP Index 0798 aDEW 96001584nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006100139210002300200326002300223326002300246453008000269517009500349517008300444530006200527606007300589607002500662607002400687676000800711710005100719801002100770856015700791955006600948955012401014972000901138991001801147992002101165992001201186040145484000001876820131024154937.01 a1013-2511 aFNSP151120 a19900101a19649999 ba0 aeng aTW aafa 10aIssues and studiesfInstitute of International Relations aTaipeicIRId1964- aTrimestrielb2002- aMensuelb1964-2001 1tEtudes et documents (Institut de relations internationales)xISSN 0256-55521 aIssues and studies‎ : an international quaterly on China, Taiwan, and East Asian affairs1 aIssues and studies‎ : a journal of Chinese studies and international affairs10aIssues and studies - Institute of International Relations aChine, Question de la réunification de la (1949-....)xPériodiques aTaiwanxPériodiques aChinexPériodiques a95002aInstitute of International Relationsc(Taipei) 3aFRbCCN0016/35624 uhttp://iir.nccu.edu.tw/index.php?include=journal&kind=4zContient : Sommaires et sélection d'articles en texte intégral depuis le vol. 37, no. 1, 19961 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9501 bvol. 5 no. 6 (mar-1969) -vol. 15 no. 12 (dec-1979) ; vol. 21 no. 1 (jan-1985) -....cParisdMagasins/AnnexeeP 8° 2850 aZSAB aexempb201105 aGEO RI3.01 Chine aDEW 95100939nas0 2200301 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109106000600127110001600133200012700149207001200276210002200288301004300310326001100353606003800364710005300402801003000455856004400485955006100529972000900590992002200599992001600621125304412000114591820130319051549.0 a0001145918 a20080630a19879999k y0frey0103 ba0 aeng aIT ay 0  ar aaka 0 10aItalian agricultureean abridged version of the Annuario dell'agricoltura ItalianafIstituto nazionale di economia agraria 0a(1987)- aRomacINEAd1987- aDemande de numérotation ISSN en cours aAnnuel aAgricultureyItaliexPériodiques02aIstituto nazionale di economia agrariac(Italie) 3aFRbAbesc20080630gAFNOR4 uhttp://www.inea.it/public/it/search.php1 bvol. 57 (2003) -....cParisdMagasins/AnnexeeP 8° 7038 aZGRA aGEO RA6.03 Italie aDEW 338.1-301090cas0 2200361 450 00100100000000200110001000500170002101100140003803500170005203500150006910000410008410100080012510200070013310500180014010600060015811000160016420000190018020700330019921000580023232600160029043000620030651700210036860600360038971000500042580100300047580100230050580200070052885600340053585600600056995500700062995700170069999200120071610472725X000114241420130319051550.01 a1549-4942 aissn15494942 a0001142414 a20000201a20009999k y0frey0103 ba0 aeng aUS ay 0  ar aaha 0uu 10aItems & issues 0aVol. 1, no. 1 (winter 2000)- aNew York, N.YcSocial Science Research Councild2000- aTrimestriel 1tItems - Social Science Research Council (U.S.)x0049-090310aItems and issues aSciences socialesxPériodiques02aSocial Science Research Councilc(Etats-Unis) 3aFRbAbesc20080513gAFNOR 3aFRbISSNc20060706 a014 uhttp://publications.ssrc.org/ zContenu : texte intégral depuis le vol. 1 no. 1 (2000)1 bvol. 1 no. 1 (hiv-2000) -....cParisdMagasins/AnnexeeP 4° 00431 eP Index 0798 aDEW 30001155nas 2200337 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181050018001251100016001432000023001592100029001823260014002113270044002256060029002696070026002986070023003246070025003478010013003728560192003858560108005779550005006859920020006909920056007109920039007669920012008050000071526000007152620130319051550.0 aFNSP327997 a0000071526 a19900101a19179999k fre ba0 arus aRU a z 0  aaa 0 00aIzvestiâ (Moskva) aMoskvacIzvestiâd1917- aQuotidien10aVersion en ligne uniquement via Factiva aActualitéxPériodiques aEx-URSSxPériodiques aURSSxPériodiques aRussiexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b aGEO RA7.01 URSS aGEO RA7.02 Etats successeurs de l'Union soviétique aGEO RA7.21 Russie (depuis 1991-92) aDEW 05000958nas 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000032001502100038001823260012002204300036002326060038002686060030003066060039003367120054003758010013004298560027004428560037004699550079005069720009005859920022005949920016006160000521345000052134520130319051550.0 a0000521345 a a20039999k fre ba0 afre aFR a 0  ar aaf z 0 10aJA magfJeunes agriculteurs aPariscJeunes agriculteursd2003- aMensuel 1tJeunes agriculteurs,x0396-7425 aAgricultureyFrancexPériodiques aAgriculturexPériodiques aAgriculteursyFrancexPériodiques02aCentre national des jeunes agriculteursc(France) 0aFRbFNSP4 uhttp://ja.web-agri.fr/ zAccès libre au texte intégral.1 bno. 580 (fev-2003) -no. 589 (dec-2003)cParisdMagasins/AnnexeeP 4° 6946 aZPAY aGEO RA4.06 France aDEW 338.1-300938nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000134001502100048002842300024003323260011003566060039003677100071004068010013004778300008004908560041004988560053005399550005005929920025005979920014006220001221078000122107820130319051550.0 a0001221078 a a20049999k fre 01 ba0 ager aDE ar aak z  adr 10aJahrbuch - Max-Planck-Gesellschaft b[Ressource électronique]fMax-Planck-Gesellschaft zur Förderung der Wissenschaften (Munich) aGöttingencVandenhoeck und Ruprechtd2004- aRevue électronique aAnnuel aRechercheyAllemagnexPériodiques02aMax-Planck-Gesellschaft zur Förderung der Wissenschaften (Munich) 0aFRbFNSP acdj4 uhttp://www.mpg.de/166008/jahrbuecher4 zContenu : texte intégral du rapport depuis 20041 r aGEO RA5.01 Allemagne aDEW 001.400995cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200009300156210004000249606003200289606004900321710006700370801003000437801002300467802000700490856005400497856003600551955005500587972000900642992001800651992001200669059601728000090812520130319051550.01 a1616-6558 aissn16166558 a0000908125 a20011008a20009999 0fre 0103 ba0 ager aDE azk 10aJahrbuch des FöderalismusfEuropaïsches Zentrum für Föderalismus-Forschung Tübingen aBaden-BadencNomos-Verl.-Gesd2000- aRégionalismexPériodiques aGouvernement fédéralyEuropexPériodiques02aEuropäisches Zentrum für Föderalismusforschungc(Tübingen) 3aFRbAbesc20020131gAFNOR 3aFRbISSNc20011008 a064 uhttp://www.uni-tuebingen.de/ezff/jahrbuecher.html4 zContenu : sommaires depuis 20001 b(2004) -(2005)cParisdMagasins/AnnexeeP 8° 6845 aZPAY aGEO RA Europe aDEW 94000904nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210002600181326001500207606004100222801002100263856004400284856003600328955007000364957009700434972000900531991001800540992003200558992001200590038861798000002883320130319051550.01 a0075-2746 aFNSP179929 a0000028833 a19900101a19609999 ba0 ager aDE aaja 10aJahrbuch für Ostrecht aMünchencBeckd1960- aSemestriel aDroityEurope de l'EstxPériodiques 3aFRbCCN0075-27464 uhttp://www.ostrecht.de/index.php?id=159 zContenu : sommaires depuis 20001 bvol. 9 no. 1 (sep-1968) -....cParisdMagasins/AnnexeeP 8° 27171 b(1958-2000)cParisdMagasins/Annexezcet index constitue le vol. 43, no. 2, 2002 de la revue aZCAD aexempb201105 aGEO RA2.02 Europe orientale aDEW 34901051nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001322000038001392100065001773260011002424300039002535300038002926070055003307100031003858010021004168560163004379550052006009550072006529920025007249920012007490000091344000009134420130319051550.01 a0435-7701 aFNSP403071 a0000091344 a19900101a00019999 ba0 ager aDE10aJahresbericht der Bundesregierung aBonncPresse- und Informationsamt der Bundesregierungd0001- aAnnuel 1aDeutsche Politik (Bonn)x0170-230000aJahresbericht der Bundesregierung aAllemagnexPolitique et gouvernementxPériodiques02aAllemagnebBundesregierung 3aFRbCCN0435-77014 uhttp://www.bundesregierung.de/statisch/jahresbericht2011/Webs/Breg/jahresbericht2011/DE/Startseite/startseite.htmlzAccés au texte intégral depuis 2009/20101 b(1980) -...cParisdMagasins/AnnexeeP 4° 54121 b(1967) ; (1970) ; (1973)-(1979)cParisdMagasins/AnnexeeCOL4°0246 aGEO RA5.01 Allemagne aDEW 94300811nas 2200253 i 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102110001600109200004700125210004200172326001100214530004400225606005800269710002900327856010000356955005500456972000900511992002500520992001200545036557382000009267820130603152201.0 aFNSP409208 a19900101a00019999 ba0 ager aDE aaka 10aJahresbericht der Friedrich-Ebert-Stiftung aBonncFriedrich-Ebert-Stiftungd0001- aAnnuel11aFriedrich-Ebert-Stiftung. Jahresbericht aSciences socialesxRechercheyAllemagnexPériodiques02aFriedrich-Ebert-Stiftung4 uhttp://library.fes.de/fulltext/fes/03208.htmlzContenu : texte intégral du rapport depuis 20051 b(1970) -(2000)cParisdMagasins/AnnexeeP 4° 3769 aZGRA aGEO RA5.01 Allemagne aDEW 30001248cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101001300125102000700138105001800145110001600163200010000179210004900279326001500328430004400343530002900387607002400416710007100440711007600511801003000587802000700617856007800624856007700702955008300779972000900862992001200871992001500883044900112000114346220130319051550.01 a1436-3518 accn1436-3518 a0001143462 a20000407a19989999 0frey0103 ba0 aengager aDE ay  aag 10aJapan aktuellejournal of current Japanese affairsfGerman Institute of Global and Area Studies aHamburgcInstitut für Asienkunded1998-2008 aBimestriel 1tJapan (Hamburg. Zeitschrift)x0944-380010aJapan aktuellb(Hamburg) aJaponxPériodiques02aGerman Institute of Global and Area Studiesc(Hambourg, Allemagne)02aGerman Institute of Global and Area Studies, Institute of Asian Studies 3aFRbAbesc20080130gAFNOR a064 uhttp://www.giga-hamburg.de/index.php?file=z_jaa.html&folder=publikationen zContenu: sommaires et résumés des n°s depuis le vol. 14, n°1 de 20061 bvol. 15 no. 1 (2007) -vol. 16 no. 4 (2008)cParisdMagasins/AnnexeeP 8° 7027 aZSAB aDEW 959 aGEO RI3.2201017nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001600154210004300170326002400213326002600237530002400263607002400287712004500311856010900356856010800465955007000573972000900643991001800652992002100670992001200691037392387000000492420130319051550.01 a0955-5803 aFNSP107049 a0000004924 a19900302a19899999 ba0 aeng aGB aaia 10aJapan forum aOxfordcOxford University Pressd1989- a3 nos par anb2002- aSemestrielb1989-2001 0aJapan forumbOxford aJaponxPériodiques02aBritish Association for Japanese Studies4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713704207db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (avr-1989) -....cParisdMagasins/AnnexeeP 8° 5620 aZSAB aexempb201204 aGEO RI3.22 Japon aDEW 95200756nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210003400184326001400218430005700232856003300289856004400322955008200366972000900448992002100457992001200478044835086000026435320130319051551.01 a1345-1189 aFNSP917473 a0000264353 a19990119b19992000 ba0 aeng aJP aaea 00aJapan times international aTokyocThe Japan Timesd1999- aBimensuel 1aJapan times. Weekly international editionx0447-57634 uhttp://www.japantimes.co.jp/ zArticles en texte intégral depuis 19991 bvol. 39 no. 1 (jan-1999) -vol. 40 no. 6 (mar-2000)cParisdAnnexeeP F° 0517 aZPAY aGEO RI3.22 Japon aDEW 05001339cas0 2200421 450 001001000000002001100010005001700021011001400038020001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200004200197207003000239210005100269303005800320326002300378326003300401452006200434606003600496607005100532607002400583801003000607801002300637801001300660802000700673856003900680856006700719955006700786972000900853992001600862992003900878056260318000052360820130319051551.01 a1468-1099 aUSb00227142 aissn14681099 a0000523608 a20010710a20009999k y0frey0103 ba0 aeng aGB ay 0  ar aaja 0uu 00aJapanese journal of political science 0aVol. 1, pt. 1 (May 2000)- a[Cambridge]cCambridge University Pressd2000- aNotice rédigée d'après le N.1, Vol.10 (avril 2009) aTrimestrielb2012- aTrois fois par anb2000-2011 1tJapanese journal of political science (Online)x1474-0060 aScience politiquexPériodiques aJaponxPolitique et gouvernementxPériodiques aJaponxPériodiques 3aFRbAbesc20090618gAFNOR 3aFRbISSNc20090617 0aFRbFNSP a024 uhttp://www.journals.cambridge.org/ zContenu : sommaires, résumés depuis le vol.1, n°1, mai 20001 bvol. 2 no. 1 (2001 ) -....cParisdMagasins/AnnexeeP 8° 6678 aZSAB aDEW 320-321 aGEO RI Asie (sans Asie de l'Ouest)01251nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007500154210005200229230003300281326001600314517002000330606002900350606006300379710004800442856009400490856010800584955006900692957008600761972000900847991001800856992002500874992001400899040463338000025260720130319051552.01 a1268-5399 aFNSP881832 a0000252607 a19900101a19959999 ba0 afre aFR aaha 10aJean Jaurès cahiers trimestrielsf[Société d'études jaurésiennes] aPariscSociété d'études jaurésiennesd1995- aParaît avec 2 ans de retard aTrimestriel10aCahiers Jaurès aSocialismexPériodiques aGauche (science politique)yFrancexHistoirexPériodiques02aSociété d'études jaurésiennesc(France)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-cahiers-jaures.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 135 (jan/mar-1995) -....cParisdMagasins/AnnexeeP 8° 64011 b(1959) -(1999)cParisdMagasins/AnnexeeP Index 0813zcorrespond au no. 149, 1998 aZPAY aexempb201211 aGEO RA4.06 France 01 aDEW 320.500664nas 2200229 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000029001502100055001793260015002347120057002498010013003068560038003199550077003570000380054000038005420130319051552.0 a0000380054 a a19919999k fre ba0 aeng aIT a 0  ar aay z 0 10aJean Monnet Chair papers aFlorencecEuropean University Instituted1991-.... aCollection02aInstitut universitaire européenbChaire Jean Monnet 0aFRbFNSP uhttp://www.iue.it/PUB/JMC_fm.html1 rCette collection, depuis 1995, est conservée dans la Salle de 3e cycle.00963nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000069001502100005002192300024002243260017002486060029002656070026002948010013003208560192003338560108005259550005006339920023006389920012006610001131863000113186320130319051552.0 a0001131863 a a19889999k fre 01 ba0 aeng aIL ar aac z  adr 10aJerusalem post. International editionb[Ressource électronique] a aRevue électronique ahebdomadaire aActualitéxPériodiques aIsraëlxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RG2.15 Israël aDEW 05001011nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000018001552100036001733260017002094400026002265170032002526060029002846070026003138010021003398560033003608560091003939550080004849550078005649920019006429920012006619920012006730000024008000002400820130319051552.01 a0021-6089 aFNSP163945 a0000024008 a19900101b19612000 ba0 afre aFR aa u 10aJeune Afrique aPariscJeune Afriqued1961-2000 aHebdomadaire 1tL'Intelligent (Paris)10aJeune Afrique l'Intelligent aActualitéxPériodiques aAfriquexPériodiques 3aFRbCCN0021-60894 uhttp://www.jeuneafrique.com/ zContenu : sommaire et articles en texte intégral du dernier numéro. Divers dossiers.1 bno. 300 (oct-1966) -no. 2039 (fev-2000)cParisdMagasins/AnnexeeP 4° 22631 bno. 60 (nov-1961) -no. 299 (oct-1966)cParisdMagasins/AnnexeeP F° 0145 aGEO RE Afrique aDEW 050 aDEW 96000926nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210003000179326002700209326002300236326002800259530004000287712004200327856003500369955006700404955016500471992001200636038080028000005857020130319051552.01 a0755-3021 aFNSP271172 a0000058570 a19900101b19201989 ba0 afre aFR aafa 13aLa Jeune république aaParisc[s.n.]d1920-1989 aTrimestrielb1968-1984 aMensuelb19??-1966 aHebdomadaireb1920-19??03aLa Jeune républiqueb(Paris, 1920)02aParti de la Jeune république (Paris)4 uhttp://jeunerepublique.free.fr1 b(1920) -(1938)cParisdAnnexeeP F° 1347zlacunes importantes1 bn.s. no. 9 (nov-1961) -no. 129 (1984)cParisdAnnexeeP 4° 3070wManquant : no 21, 22, 1962 ; nos 31, 1963 à 42, 1964 ; nos 50, 1965 à 66, 1967 ; no 73, 1969 aDEW 05000810nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200003200138210004800170326001500218606002400233710002500257801002100282856006800303856003700371955008100408972000900489991001800498992001600516038732092000002402320130319051553.01 a0021-6534 aFNSP163973 a0000024023 a19900101b1959 ba0 aeng aGB10aJewish journal of sociology aLondrescJewish Journal of Sociologyd1959- aSemestriel aJuifsxPériodiques02aCongres juif mondial 3aFRbCCN0021-65344 uhttp://jewishjournalofsociology.org/index.php/jjs/issue/archive4 zAccès libre au texte intégral.1 bno. 1 (avr-1959) -vol. 49 no. 1/2 (2007)cParisdMagasins/AnnexeeP 8° 1817 aZPAY aexempb201103 aDEW 305-30600870nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000059001502100049002092300024002583000048002823260015003306060024003457100025003698010013003948300008004078560068004158560063004839550005005469920017005510001238857000123885720130319051553.0 a0001238857 a a20069999k fre 01 ba0 aeng aGB ar aaj z  adr 10aJewish journal of sociologyb[Ressource électronique] aLondres:cJewish Journal of Sociologyd2006- aRevue électronique aEn version électronique à partir de 2008. aSemestriel aJuifsxPériodiques02aCongres juif mondial 0aFRbFNSP acdj4 uhttp://jewishjournalofsociology.org/index.php/jjs/issue/archive4 zContenu : texte intégral du rapport en ligne depuis 2006.1 r aaDEW 305-30601101nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210005500180326002500235326002700260606002400287606002700311710004000338801002100378856003500399856009900434955013100533957009800664972000900762992001600771038732149000009983620130319051553.01 a0021-6704 aFNSP432075 a0000099836 a19900101a19399999 ba0 aeng aUS aaia 10aJewish social studies aBloomington, Ind.cIndiana University Pressd1939- a3 n°s par anb1994- aTrimestrielb1939-1993 aJuifsxPériodiques aSionismexPériodiques02aConference of Jewish Social Studies 3aFRbCCN0021-67044 uhttp://www.iupjournals.org/jss zContenu : sommaires ; 1 article en texte intégral par n° ; depuis le vol. 4, n°1, aut. 19971 bvol. 15 no. 1 (jan-1953) -vol. 50 no. 3/4 (1988/1993) ; n.s. vol. 1 no. 1 (aut-1994) -....cParisdMagasins/AnnexeeP 8° 12131 bvol. 1 no. 1 (aut-1994) -vol. 10 no. 1 (aut-2003)zse trouve dans le vol. 10 no. 1 (aut-2003) aZCAD aDEW 305-30600797nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006100154210002700215326001600242430006300258606003700321856003300358955006800391972000900459991001800468992002100486992001200507040046192000002546920130319051553.01 a0932-4569 aFNSP167902 a0000025469 a19910220a19869999 ba0 aeng aDE aaha 10aJITE. Journal of institutional and theoretical economics aTübingencMohrd1986- aTrimestriel 1aZeitschrift für die gesamte Staatswissenschaftx0044-2550 aEconomie politiquexPériodiques4 uhttp://www.mohr.de/jite.html1 bvol. 142 no. 1 (1986) -....cParisdMagasins/AnnexeeP 8° 0033 aZPAY aexempb201210 aGEO RQ Universel aDEW 33001215nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002600139210003500165300004700200326001100247437005800258530002600316607005400342710005100396856009600447856005300543955008000596955005500676955008100731972000900812991001900821992002300840992001400863039105962000008621620130521165116.01 a0162-5888 aFNSP382198 a19900101a00019999 ba0 aeng aUS aaka 10aJoint economic report aWashington, D.C.cUSGPOd0001- aEn version électronique à partir de 2010 aAnnuel 1tAnnual report on the Economic report of the President00aJoint economic report aEtats-UnisxConditions économiquesxPériodiques02aEtats-UnisbCongressbJoint Economic Committee4 uhttp://www.jec.senate.gov/public/index.cfm?p=Search&filter=0&num=10&q=joint+economic+report4 zContenu : texte intégral du rapport depuis 20101 b(1993) ; (1998) -(1999) ; (2003)-(2006)cParisdMagasins/AnnexeeP 4° 63771 b(1982) -(1992)cParisdMagasins/AnnexeeP 8° 54701 b(1961) ; (1963) -(1964) ; (1966) -(1979)cParisdMagasins/AnnexeeCOL8°3547 aZPAY aexemplb201109 aGEO RC2 Etats-Unis aDEW 330.900984nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002400163210004600187326001400233430005600247440006700303530003000370607006300400676000800463801001300471856016500484955004500649090054040000119437320130319051553.01 a1770-6181 a0001194373 a a18051815 fre 01 ba0 afre aFR a 0  ar aa z 0 10aJournal de l'Empire aPariscImprimerie de Lenormantd1805-1815 aQuotidien 1tJournal des débats et des décrets, ISSN 1256-0480 1tJournal des débats politiques et littéraires, ISSN 1770-619X11aJournal de l'Empireb1805 aFrancexPolitique et gouvernementz1789-....xPériodiques a944 0aFRbFNSP4 uhttp://gallica.bnf.fr/ark:/12148/cb32797692j/date.r=journal+de+l%27empire.langFRzAccès libre au texte intégral. Années 1805 à 1814 numérisées sur Gallica1 b1814cParisdMagasins/AnnexeeP F° 002700959nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001391100016001452000052001612100026002133260016002395300052002556060030003077120038003378010021003758560134003969550069005309570054005999920016006530000024052000002405220130319051553.01 a0037-914X aFNSP164013 a0000024052 a19900101b18601998 ba0 afre aFR ar aahu 10aJournal de la Société de statistique de Paris aPariscSSPd1860-1998 aTrimestriel00aJournal de la Société de statistique de Paris aStatistiquexPériodiques02aSociété de statistique de Paris 3aFRbCCN0037-914X4 uhttp://gallica.bnf.fr/ark:/12148/cb32798282c/date.r=.langFRzAccès libre au texte intégral. Année 1860 numérisée sur Gallica1 b(1947)-vol. 139 no. 1 (1998)cParisdMagasins/AnnexeeP 4° 00491 b(1936/1960)cParisdMagasins/AnnexeeP Index 0435 aDEW 310-31900988nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004500154210004900199326001500248440004000263607002600303712004000329801002100369856004800390856006200438955008400500957007100584992001900655992001200674037448811000002437320130319051553.0 a0037-9166 aFNSP164823 a0000024373 a19900101b19311975 ba0 afre aFR aaju 10aJournal de la Société des Africanistes aPariscSociété des Africanistesd1931-1975 asemestriel 1aJournal des Africanistesx0399-0346 aAfriquexPériodiques02aSociété des Africanistes (France) 3aFRbCCN0037-91664 uhttp://www.persee.fr/listIssues.do?key=jafr zAccès libre au texte intégral à partir de 1931 à 19751 bvol. 27 no. 1 (1957)-vol. 45 no. 1/2 (1975)cParisdMagasins/AnnexeeP 4° 15711 bvol. 1 (1931)-vol. 45 (1975)cParisdMagasins/AnnexeeP Index 0287 aGEO RE Afrique aDEW 96001019nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000560015421000470021032600110025760700510026860700520031971000430037183000430041485601280045795500880058599200230067399200210069699200120071703923150X000011529220130319051553.01 a0037-9174 aFNSP481546 a0000115292 a19900101a18959999 ba0 afre aFR aaka 10aJournal de la Société des américanistes de Paris aPariscSociété des Américanistesd1895- aAnnuel aAmériquexEtude et enseignementxPériodiques aEtats-UnisxEtude et enseignementxPériodiques02aSociété des américanistesc(France) a1957--1984 : collection donnée au CTL4 uhttp://www.persee.fr/listIssues.do?key=jsazAccès libre au texte intégral. Périodique numérisé sur Persée (1895-1939)1 bvol. 71 (1985) -vol. 74 (1988) ; vol. 79 (1993)cParisdMagasins/AnnexeeP 4° 1570 aGEO RC2 Etats-Unis aGEO RB Amérique aDEW 97001374nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004400139207003000183210004400213326002500257326003000282326002500312452006900337530004400406606005100450607004700501607003700548710004000585801002100625830005400646856012400700955008600824972000900910991001800919992004700937992001600984039520471000002437120131016144958.01 a0300-953X aFNSP164816 a19900101a19459999 ba0 afre aFR aaju 10aJournal de la Société des Océanistes 1aVol. 1, no 1 (déc-1945)- aPariscSociété des Océanistesd1945- aSemestriel‎b1982- aTrimestriel‎b1970-1981 aAnnuel‎b1945-1969 1tJournal de la Société des océanistes (En ligne)‎x1760-7256 aJournal de la Société des océanistes aSociétés savantes et institutsxPériodiques aPacifique, Iles duxHistoirexPériodiques aPacifique, Iles duxPériodiques02aSociété des océanistesc(France) 3aFRbCCN0300-953X a1956-->2010 : collection donnée au CTles en 20134 uhttp://www.oceanistes.org/oceanie/spip.php?rubrique21zSommaires depuis 1975 et selection d'articles en texte intégral1 bvol. 12 no. 12 (dec-1956) -no. 136/137 (2013)cParisdMagasins/AnnexeeP 4° 1509 aZPAY aexempb201305 aGEO RL3 Océan Pacifique/Région Pacifique aDEW 990-99600929nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000115001502100054002652300024003193260016003436060030003596060044003897100040004338010013004738560057004868560042005439550005005859920016005909920021006060001161404000116140420130319051553.0 a0001161404 a a20099999k fre 01 ba0 afre aFR ar aah z  adr 10aJournal de la Société française de statistique & revue de statistique appliquéeb[Ressource électronique] aPariscSociété française de statistiqued2009- aRevue électronique aTrimestriel aStatistiquexPériodiques aStatistique mathématiquexPériodiques02aSociété française de statistique 0aFRbFNSP4 uhttp://www.sfds.asso.fr/34-Journal_de_la_SFdS_J-SFdS zContenu : texte intégral depuis 19531 r aDEW 310-319 aGEO RQ Universel01099nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000290015421000450018332600150022843000560024360700260029971200400032585600480036585601000041385600360051385600640054995500870061395700540070099200190075499200120077303959789X000002437420130319051553.01 a0037-9166 aFNSP164826 a0000024374 a19910211a19769999 ba0 afre aFR aaja 10aJournal des africanistes aPariscSociété des Africanistesd1976- aSemestriel 1aJournal de la Société des Africanistesx0037-9166 aAfriquexPériodiques02aSociété des Africanistes (France)4 uhttp://www.persee.fr/listIssues.do?key=jafr zAccès libre au texte intégral à partir de 1976 à l'exception des années les plus récentes4 uhttp://africanistes.revues.org/ zContenu : sommaires et résumés des n°s les plus récents1 bvol. 46 no. 1/2 (1976) -vol. 66 no. 1/2 (1996)cParisdMagasins/AnnexeeP 4° 15711 b(1976-1993)cParisdMagasins/AnnexeeP Index 0287 aGEO RE Afrique aDEW 96001930nas 2200409 450 001001000000002001100010005001700021011002500038035001500063100004100078101000800119102000700127105001800134106000600152110001600158200003600174210003000210300013700240326001400377440004700391517002400438517018100462517002400643517005300667517008600720517008400806530004000890601008700930601006101017607006301078676000801141710005901149711003301208801001301241856019401254955007201448036695866000119437220140117194338.01 a1256-0480$f1256-0480 a0001194372 a a17891805 fre 01 ba0 afre aFR a 0  ar aa z 0 10aJournal des débats et décrets aPariscBaudoind1789-1805 aJusqu'en floréal an V [mai 1797], porte successivement en tête "Assemblée nationale", "Convention nationale", "Corps législatif" aQuotidien 1tJournal de l'Empire (1805), ISSN 1770-618110aJournal des débats10aJournal des débats et des décrets ou récit de ce qui s'est passé aux séances de l'Assemblée nationale depuis le 17 juin 1789 jusqu'au premier septembre de la même année10aJournal des débats10aJournal des débats et lois du corps législatif10aJournal des débats, des lois du pouvoir législatif et des actes du gouvernement10aJournal des débats et loix du pouvoir législatif et des actes du gouvernement00aJournal des débats et des décrets01aFrancebAssemblée nationale constituantec(1789-1791)xComptes rendus des débats01aFrancebConvention nationalexComptes rendus des débats aFrancexPolitique et gouvernementz1789-....xPériodiques a94401aFrancebAssemblée nationale constituantec(1789-1791)01aFrancebConvention nationale 0aFRbFNSP4 uhttp://gallica.bnf.fr/ark:/12148/cb327995159/date.r=journal+des+d%C3%A9bats+et+des+d%C3%A9crets.langFRzAccès libre au texte intégral. Années 1800 à 1805 numérisées sur Gallica (2010)1 bno. 85 (1796) -no. 117 (1796)cParisdMagasins/AnnexeeR12°009.55902152cas0 2200457 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164106000600171110001600177200013000193207036200323210003300685304008900718320002000807326002400827326002700851421004200878421005300920517005700973517008301030530003801113601006001151601007301211606004501284606003801329606004401367801003001411801002301441802000701464856013301471955007001604991002001674038554100000108559220130319051553.0 a1149-2368 a070619476 accn1149-2368 aissn11492368 a0001085592 a19900329b18411940uuuy0frey0103 ba0 afre aFR ar aafu uu 10aJournal des économisteserevue mensuelle de l'économie politique, des questions agricoles, manufacturières et commerciales 0aT. 1, n°1 (1841, déc.)-t. 37, n°152 (1853, déc.)a2e s., t. 1, n°1 (1854, janv.)-t. 48, n°144 (1865, déc.)a3e s., t. 1, n°1 (1866, janv.)-t. 48, n°144 (1877, janv.)a4e s., t. 1, n°1 (1878, janv.)-t. 48, n°12 (1889, déc.)a5e s., t. 1, n°1 (1890, janv.)-t. 56, n°3 (1903, déc.)a6e s., t. 1, n°1 (1904, janv.)-t. 110, n°2 (1940, mars/avr.) aPariscGuillaumind1841-1940 aLe sous-titre varie : revue mensuelle de la science économique et de la statistique aTable 1841-1865 aMensuel (1841-1934) aBimestriel (1935-1940) |tLa Ligue du libre-échangex1149-2376 |tLe Libre-échange (Neuilly-sur-Seine)x1149-238410aRevue de la science économique et de la statistique10aJournal des économisteserevue de la science économique et de la statistique10aJournal des économistesb(Paris)02aSociété de statistique de ParisxPériodiques2rameau02aSociété d'économie politiquecFrancec1847-xPériodiques2rameau aEconomie politiquexPériodiques2rameau aStatistiquexPériodiques2rameau aSciences socialesxPériodiques2rameau 3aFRbAbesc20060627gAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34426009k/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 bvol. 1 (1841) -vol. 90 (1940)cParisdMagasins/AnnexeeP 8° 0472 aPériobTP01 P801032nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000055001502100005002052300024002103260017002346060029002516060035002806060036003158010013003518560192003648560108005569550005006649920025006699920012006949920012007060001131867000113186720130319051554.0 a0001131867 a a20059999k fre 01 ba0 afre aFR ar aac z  adr 13aLe Journal des financesb[Ressource électronique] a aRevue électronique ahebdomadaire aActualitéxPériodiques aFinancesyFrancexPériodiques aMarché financierxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 050 aDEW 33201166cas0 2200337 450 00100100000000200110001000500170002101100140003803500170005203500170006903500150008610000410010110100080014210200070015010600060015711000160016320000510017921000320023032600120026244700440027444700600031851700790037853000510045753100250050880100300053380100230056380200070058685601450059395500700073899100200080803767031X000108412920130319051554.0 a0242-5416 accn0242-5416 aissn02425416 a0001084129 a19881129b18801974uuuy0frey0103 ba0 afre aFR ar aafu uu 10aJournal des sociétés civiles et commerciales aPariscL. Larosed1880-1974 aMensuel 1tRevue des sociétés (Paris)x0240-8945 1tRevue des sociétés, Journal des sociétésx0242-542410aJournal des Sociétés civiles et commerciales françaises et étrangères00aJournal des sociétés civiles et commerciales 0aJ. soc. civ. commer. 3aFRbAbesc20070416gAFNOR 3aFRbISSNc20041123 a074 uhttp://gallica.bnf.fr/ark:/12148/cb343630530/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1880-1937)1 bvol. 1 (1880) -vol. 12 (1974)cParisdMagasins/AnnexeeP 8° 0288 aPériobTP01 P800997nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210003300189326001600222430009000238517001100328606003800339801002100377856010900398955006900507957007700576972000900653992002100662992001200683039224791000000467120140110131216.01 a0021-8170 aFNSP106172 a0000004671 a19900101a19159999 ba0 afre aFR aahu 10aJournal du droit international aPariscEd. techniquesd1915- aTrimestriel 1aJournal du droit international privé et de la jurisprudence comparée < P 8° 0370 >10aClunet aDroit internationalxPériodiques 3aFRbCCN0021-81704 uhttp://gallica.bnf.fr/ark:/12148/cb34348804s/date.r=.langFRzAccès libre au texte intégral sur Gallica1 bvol. 42 no. 1/2 (1915) -....cParisdMagasins/AnnexeeP 8° 03701 b(1915) -(1925)cParisdMagasins/AnnexeeP Index 0048zTables générales aZCAD aGEO RQ Universel aDEW 34101366cas0 2200385 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083035001500098100004100113101000800154102000700162105001800169110001600187200007800203210004800281215001000329440004600339517007500385530004200460531002500502540001100527702003800538801003000576801001800606802000700624856014500631955004700776955007000823991002000893991006700913038604159000108559520130319051554.0 a1155-8377 a013307525 accn1155-8377 asib0036383 a0001085595 a19911126b18741914k y0frey0103 ba0 afre aFR a 0  aaga 0 x 10aJournal du droit international privéffondée en 1874 par Edouard Clunet aPariscCossecMarchal et Billardd1874-1914 d25 cm 1tJournal du droit internationalx0021-817010aJournal du droit international privé et de la jurisprudence comparée00aJournal du droit international privé 0aJ. droit int. privé10aClunet 1aClunetbEdouardf(1845-1922)4395 3aFRbAbesc20061215gAFNOR 3aFRbSFgAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb344442139/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1874-1914)1 b(1874)cParisdMagasins/AnnexeeP 8° 03701 bvol. 2 (1875) -vol. 41 (1914)cParisdMagasins/AnnexeeP 8° 0370 aPériobTP01 P8 anumer0 (trou dans gallica entre 1890-1898, vérifier si avons)01198cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200003400156210002800190430003900218530004300257606003600300606004000336710005300376801001300429802000700442856005600449856004300505856010900548856010800657955007000765972000900835992001600844074395114000060740120130319051554.01 a1479-7585 aissn14797585 a0000607401 a20030523a20039999 0fre 0103 ba0 aeng aGB aah 10aJournal for cultural research aAbingdoncCarfaxd2003- |tCultural values (Print)x1362-517910aJournal for cultural researchb(Print) aSciences socialesxPériodiques aValeurs (Philosophie)xPériodiques02aInstitute for Cultural Researchc(Lancaster, GB) 0aFRbFNSP a024 uhttp://www.tandf.co.uk/journals/titles/13625179.asp zContenu : sommaires des numéros parus4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713684902db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol .7 no. 1 (jan-2003) -....cParisdMagasins/AnnexeeP 8° 6538 aZSAB aDEW 305-30601092cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200004000180207003300220210006100253326001500314606003600329606003400365606003400399801003000433801002300463802000700486856004200493856007900535955007000614972000900684992001600693992002100709116948094000114503620130319051554.01 a1930-1189 aissn19301189 a0001145036 a20070807a20069999k y0frey0103 ba0 aeng aUS ay 0  ar azja 0u 10aJournal for the study of radicalism 0aVol. 1, no. 1 (spring 2007)- aEast Lansing, MIcMichigan State University Pressd2006- aSemestriel aScience politiquexPériodiques aExtrême droitexPériodiques aExtrême gauchexPériodiques 3aFRbAbesc20080407gAFNOR 3aFRbISSNc20070808 a014 uhttp://msupress.msu.edu/journals/jsr/ zContient le sommaire et le résumé des n°s depuis le vol. 1, no 1 (2007)1 bvol. 1 no. 1 (pri-2007) -....cParisdMagasins/AnnexeeP 8° 7037 aZSAB aDEW 320-321 aGEO RQ Universel01274nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004700154210002900201326002200230326002800252326002600280606004300306801002100349856012800370856010800498856010100606856010800707955009000815972000900905991001800914992001600932038732475000005598220131202104834.01 a0021-8308 aFNSP262175 a0000055982 a19900101a19719999 ba0 aeng aGB aahu 10aJournal for the theory of social behaviour aOxfordcBlackwelld1971- aTrimestrielb1987 a3 nos par anb1978-1986 aSemestrielb1971-1977 aSciences du comportementxPériodiques 3aFRbCCN0021-83084 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=BPZ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101092 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (avr-1971) -vol. 42 no. 4 (dec-2012)cParisdMagasins/AnnexeeP 8° 2955 aZPAY aexempb201103 aDEW 305-30601346nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200018300163210011200346326001500458510004600473606003900519606003700558710008000595801001300675856002500688856017600713955008100889972000900970992001600979992002500995060295937000052871120130319051554.01 a1438-9444 a0000528711 a a19999999k fre ba0 amul aDE a 0  ar aaj z 0 10aJournal für Konflikt- und Gewaltforschung =dJournal of conflict and violence researchfInstitut für interdisziplinäre Konflikt- und Gewaltforschung der Universität Bielefeld aBielefeldcInstitut für Interdisziplinäre Konflikt- und Gewaltforschung der Universität Bielefeldd1999- aSemestriel10aJournal of conflict and violence research aGestion des conflitsxPériodiques aViolence politiquexPériodiques02aInstitut für interdisziplinäre Konflikt- und Gewaltforschungc(Bielefeld) 0aFRbFNSP4 uhttp://www.ijcv.org/4 zContenu : continue en ligne sous le titre "International Journal of conflict and violence" (ISSN 1864-1385); accès libre au texte intégral des articles à partir de 20071 bvol. 3 no. 1 (2001) -vol. 7 no. 2 (2005)cParisdMagasins/AnnexeeP 8° 6687 aZSAB aDEW 305-306 aGEO RA5.01 Allemagne01452nas 2200373 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000330013920700310017221000430020332600250024632600280027142100450029945200580034453000330040260700510043571000550048685600340054185600710057585601010064685601080074795500870085595700760094297200090101899100180102799200190104599200140106404009877X000009618320130905112528.01 a0963-8024 aFNSP420334 a19900101a19929999 ba0 aeng aGB aaga 10aJournal of African economies 1aVol. 1, no. 1 (Mar. 1992)- aOxfordcOxford University Pressd1992- a5 fois par anb2007- aTrimestrielb1992 -2006 1aJournal of African economies. Supplement 1tJournal of African economies (Online), ISSN 1464-372310aJournal of African economies aAfriquexConditions économiquesxPériodiques02aCentre for the study of African economies (Oxford)4 uhttp://www3.oup.co.uk/jafeco/ zContenu : sommaires et résumés depuis le vol. 5, n°1, mars 19964 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=102634 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1992) -vol. 17, no. 5 (2008)cParisdMagasins/AnnexeeP 8° 59571 bvol. 1 (1992) -vol. 5 (1996)zse trouve dans le vol. 5 no. 3 (oct-1996) aZPAY aexempb201112 aGEO RE Afrique aDEW 330.901194nas 2200313 i 450 001001000000002001100010005001700021035001500038035001500053100004100068101000800109102000700117110001600124200010000140210004300240300014600283326002200429422004400451517006800495517003600563607005100599710005600650856003300706955008100739972000900820991001800829992001900847992001400866070228396000021864920130917101315.0 aFNSP785734 a0000218649 a19900101a19969999 ba0 aeng aGB aaka 10aJournal of African economies.iSupplementeAfrican economic research consortium Plenary session aOxfordcOxford University Pressd1996- aParait en supplément à différents numéros de la revue ; ces suppléments paraissent 2 ou 3 ans après le congrès dont ils rendent compte a1 à 2 nos par an 1aJournal of African economiesx0963-802410aAfrican economic research consortium Plenary session supplement10aAERC Plenary session supplement aAfriquexConditions économiquesxPériodiques02aConsortium pour la recherche économique en Afrique4 uhttp://www.oup.co.uk/jafeco/1 b(1994/1995)-vol. 17, supp. 2, (2008)cParisdMagasins/AnnexeeP 8° 5957 bis aZPAY aexempb201212 aGEO RE Afrique aDEW 330.901403nas 2200385 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000310015420700280018521000480021332600240026132600270028532600280031232600260034053000380036660700360040480100210044085600420046185600540050385600900055785601080064795500660075595701380082197200090095999100180096899200190098699200120100503873267X000005593320130319051554.01 a0021-8537 aFNSP261350 a0000055933 a19900101a19609999 ba0 aeng aGB aaiu 10aJournal of African history 1aVol. 1, no. 1/2 (1960)- aNew YorkcCambridge University Pressd1960- a3 nos par anb1983- aTrimestrielb1968-1982 a3 nos par anb1962-1967 aSemestrielb1960-1961 0aJournal of African historybPrint aAfriquexHistoirexPériodiques 3aFRbCCN0021-85374 uhttp://uk.cambridge.org/journals/afh/ zContenu : sommaires depuis le vol. 37, n°3, 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00218537.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1960) -....cParisdMagasins/AnnexeeP 8° 19461 bvol. 1 (1960) -vol. 20 (1979) ; vol. 21 (1980) -vol. 30 (1989) ; vol. 31 (1990) -vol. 40 (1999)cParisdMagasins/AnnexeeP Index 0363 aZPAY aexempb201001 aGEO RE Afrique aDEW 96001551nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210005800181326001500239606003300254710005400287801002100341830011800362856003300480856014700513856010100660856010800761856009000869856010800959955006601067972000901133991001601142992001901158992001201177038732688000002463820130319051554.01 a0021-8553 aFNSP165570 a0000024638 a19900101a19579999 ba0 aeng aGB aaju 10aJournal of African law aLondoncSchool of Oriental and African Studiesd1957- aSemestriel aDroityAfriquexPériodiques02aSchool of Oriental and African Studiesc(Londres) 3aFRbCCN0021-8553 aVol. 1, n° 1, Spring 1957---> vol. 28 , n° 1/2, 1984 < P 8° 1825 > : collection donnée au CTL en juillet 20014 uhttp://www.oup.co.uk/jaflaw/ zContenu : sommaires et résumés depuis le vol. 39, n°2, 1995 ; recherche par sujets avec Excite ; envoi sommaire du n° à paraitre par mail4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=102635 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00218553.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 29 no.1 (1985) -....cParisdMagasins/AnnexeeP 8° 1825 aZPAY aexemp201010 aGEO RE Afrique aDEW 34900728nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003600139210002400175326001100199607002700210856004200237856004700279955006900326972000900395991001800404992002400422992001600446036754935000025420820131028145516.01 a1362-9417 aFNSP887000 a19900101a19969999 ba0 aeng aGB aaka 14aThe Journal of Algerian studies aIlfordcCassd1996- aAnnuel aAlgériexPériodiques4 uhttp://www.frankcass.com/jnls/alg.htm zContenu : sommaires depuis le vol. 1, 19961 bno. 1 (1996) -no. 4/5 (2000)cParisdMagasins/AnnexeeP 8° 6415 aZSAB aexempb201211 aGEO RG1.13 Algérie aDEW 961-96501507nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154207002800190210006600218326001600284430005700300530005500357607003900412710004000451801002100491856003200512856007200544856010100616856010800717856009000825856010800915955007101023972000901094991001801103992001201121038732912000002465420130319051554.01 a0021-8723 aFNSP165600 a0000024654 a19900101a19649999 ba0 aeng aUS aahu 14aThe Journal of American history 1aVol. 51, no. 1 (1964) - aBloomington, Ind.cOrganization of American Historiansd1964- aTrimestriel 1aThe Mississippi Valley historical review,x0161-391X04aThe Journal of American historybBloomington, Ind. aEtats-UnisxHistoirexPériodiques02aOrganization of American Historians 3aFRbCCN0021-87234 uhttp://www.indiana.edu/jah/ zContenu : sommaires et résumés depuis le vol. 84, n°1, juin 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=107493 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00218723.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 75 no. 1 (jun-1988) -....cParisdMagasins/AnnexeeP 8° 5161 aZPAY aexempb201011 aDEW 97301294nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210004600186326002300232326002800255326002600283430007200309606004800381710004500429801002100474856004200495856005400537856010100591856010800692955007000800972000900870991001800879992002300897992001200920038732920000002466020130319051554.01 a0021-8758 aFNSP165608 a0000024660 a19900101a19679999 ba0 aeng aGB aaiu 10aJournal of American studies aLondoncCambridge University Pressd1967- aTrimestrielb2011- a3 nos par anb1971-2010 aSemestrielb1967-1970 1aBulletin - British Association for American StudiesxISSN 0524-5001 aSciences socialesyEtats-UnisxPériodiques02aBritish Association for American Studies 3aFRbCCN0021-87584 uhttp://uk.cambridge.org/journals/ams/ zContenu : sommaires depuis le vol. 30, n°1, 19964 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101391 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (avr-1967) -....cParisdMagasins/AnnexeeP 8° 2924 aZPAY aexempb201103 aGEO RC2 Etats-Unis aDEW 97301049nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000460015421000390020032600160023960600430025571000660029880100210036485601080038585601080049395501150060197200090071699100180072599200160074303873303X000002468220130319051554.01 a0021-8863 aFNSP165659 a0000024682 a19900101a19659999 ba0 aeng aUS aahu 14aThe Journal of applied behavioral science aGreenwich, Conn.cJAI Pressd1965- aTrimestriel aSciences du comportementxPériodiques02aNTL Institute for Applied Behavioral Science (Washington, DC) 3aFRbCCN0021-88634 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1965) -vol. 31 no. 3 (1995) ; vol. 37 no. 1 (mar-2001) -....cParisdMagasins/AnnexeeP 8° 2356 aZSAB aexempb200908 aDEW 305-30600990nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000076001502100039002263000098002653260016003633360058003793370063004374520049005006060031005498010013005808560090005939550005006839920012006880000468694000046869420130319051554.0 a0000468694 a a19869999k fre 01 ba0 aeng aGB az aah z  adr 10aJournal of applied econometrics (Chichester)b[Ressource électronique] aChichesteraNew-YorkcWileyd1986- aAccès au texte intégral (réservé aux sites de Sciences Po) jusqu'aux 5 dernières années aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tJournal of applied econometricsx(0883-7252) aEconométriexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/08837252.html1 r aDEW 33000837nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200006600163210004700229326001500276607002300291607003800314712004300352801001300395856003700408955008100445972000900526992001200535058719199000045144320130319051554.0 a1229-9774 a0000451443 a a19999999k fre ba0 aeng aKR a 0  ar aaj z 0 10aJournal of Asia-Pacific affairsfAsia-Pacific Research Center aSeoulcAsia-Pacific Research Centerd1999- aSemestriel aAsiexPériodiques aPacifique (région)xPériodiques02aAsia-Pacific Research Centerc(Séoul) 0aFRbFNSP uhttp://gsaps.hanyang.ac.kr/APRC/1 bvol. 2 no. 1 (2000) -vol. 7 no. 1 (2005)cParisdMagasins/AnnexeeP 8° 6618 aZGRA aDEW 95001393nas 2200373 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000410015421000330019532600220022832600270025051700090027753000510028660700230033760700260036071000640038685601010045085601080055185601080065985601080076795500700087597200090094599100180095499200160097299200190098899200120100703873334X000002471020130319051554.01 a0021-9096 aFNSP165708 a0000024710 a19910213a19662002 ba0 aeng aCA aaga 10aJournal of Asian and African studies aWillowdalecde Sitterd1966- aBimestrielb2005- aTrimestrielb1966-200410aJAAS00aJournal of Asian and African studiesb(Leiden) aAsiexPériodiques aAfriquexPériodiques02aYork Universityc(Toronto, Canada)bDepartment of Sociology4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=105998 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1966) -....cParisdMagasins/AnnexeeP 8° 2361 aZCAD aexempb200910 aGEO RH Asie aGEO RE Afrique aDEW 90900934nas0 2200277 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123110001600141200003500157210003100192326001800223606004300241607002300284801003000307856011100337856010800448955007200556992001200628992001600640128412348000115467320130319051554.01 a1751-6234 a0001154673 a20081017a20089999m y0frey0103 ba0 aeng aGB ay 0  aaiazz 0 00aJournal of Asian public policy aAbingdoncRoutledged2008- a3 n°s par an aPolitique publiqueyAsiexPériodiques aAsiexPériodiques 3aFRbAbesc20081017gAFNOR4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/openurl?genre=journal&issn=1751-6234 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-2008) -....cParis :dMagasins/AnnexeeP 8° 7057 aDEW 950 aGEO RH Asie01471nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200010300154207003000257210007600287210005600363326001600419430004600435607002300481710004800504801002100552856009000573856010800663856010300771856010800874955007200982972000901054991001801063992001601081992001201097038733366000002471620130319051554.01 a0021-9118 aFNSP165722 a0000024716 a19900101a19569999 ba0 aeng aUS aahu 14aThe Journal of Asian studiesereview of Eastern and Southern Asia and the adjacent Pacific Islands 1aVol. 16, no.1 (nov-1956)- aAnn Arbor, Mich., etc.cAssociation for Asian Studies, etc.]d1956-2006 aWest Nyack, N.Y.cCambridge University Pressd2007- aTrimestriel 1aThe Far Eastern quarterlyxISSN 0363-6917 aAsiexPériodiques02aAssociation for Asian Studiesc(Etats-Unis) 3aFRbCCN0021-91184 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00219118.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=712073 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 16 no. 1 (1956/1957) -....cParisdMagasins/AnnexeeP 8° 1005 aZCAD aexempb201101 aGEO RH Asie aDEW 95001578cas0 2200385 450 001001000000002001100010005001700021011001400038020001900052100004100071101000800112102000700120105001800127106000600145110001600151200004700167207003100214210003100245326001600276430006700292452006600359517004500425530004500470607003200515607003400547607002600581801003000607856010300637856010800740856010900848856010800957955009001065992001401155992002301169133349888000117910520140107180829.01 a1944-8953 aUSb2008201985 a20090507a20099999k y0frey0103 ba0 aeng aGB ay 0  ar aaha 0yy 00aJournal of Balkan and Near Eastern studies 1avol. 11, no. 1 (mar-2009)- aAbingdoncRoutledged2009- aTrimestriel 1tJournal of Southern Europe and the Balkans (Print),x1461-3190 1tJournal of Balkan & Near Eastern Studies (Online), x1944-896110aJournal of Balkan & Near Eastern studies10aJournal of Balkan & Near Eastern studies aEurope du SudxPériodiques aEurope de l'EstxPériodiques aBalkansxPériodiques 3aFRbAbesc20090511gAFNOR4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=104630 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713435906db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 11 no. 1 (mar-2009) -vol. 15 no 4 (dec-2013)cParisdMagasins/AnnexeeP 8° 6532 aDEW 949.6 aGEO RA8.01 Balkans01348cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200008100156210007700237326001600314430003100330606003700361710006800398801003000466801003000496802000700526856004400533856007000577856010900647856010800756955007100864972000900935992004200944992001200986039106489000073256620130319051554.01 a0162-9778 accn0162-9778 a0000732566 a19741224a19729999 0frey0103 ba0 aeng aUS aah 10aJournal of Baltic studiesfAssociation for the Advancement of Baltic Studies aDarnestown, MDcAssociation for the Advancement of Baltic Studiesd1972- aTrimestriel 1tBulletin of Baltic studies aBaltique (région)xPériodiques02aAssociation for the Advancement of Baltic Studiesc(Etats-Unis) 3aFRbAbesc20040914gAFNOR 3aFRbAbesc20040914gAFNOR a014 uhttp://www.balticstudies-aabs.lanet.lv/ zContenu : sommaires des n°s depuis le vol. 23, n°1, Spring 20024 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t759156371db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 35 no. 1 (pri-2004) -....cParisdMagasins/AnnexeeP 8° 6795 aZPAY aGEO RA2.12 Région de la mer Baltique aDEW 94801245nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000290015421000380018332600150022160600240023660600360026080100210029685600900031785601080040785601080051585601080062395500890073197200090082099100180082999200210084799200230086899200160089103873348X000002468920130319051554.01 a0021-9347 aFNSP165671 a0000024689 a19900101a19709999 ba0 aeng aUS aagu 10aJournal of black studies aNewbury Park, Calif.cSaged1970- aBimestriel aNoirsxPériodiques aNoirs américainsxPériodiques 3aFRbCCN0021-93474 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00219347.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1no. 1 (sep-1970) -vol. 33 no. 3 (jan-2003)cParisdMagasins/AnnexeeP 8° 3009 aZSAB aexempb201106 aGEO RQ Universel aGEO RC2 Etats-Unis aDEW 305-30601505nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004700139210003300186326001600219430004400235452007000279517001000349530004700359606005800406606003200464710005000496801002100546856020800567856021400775955007100989972000901060991001801069992002301087992002101110992001201131039974162000002469320130903173558.01 a0883-8151 aFNSP165678 a19900101a19859999 ba0 aeng aUS aahu 10aJournal of broadcasting & electronic media aWashington, D.C.cBEAd1985- aTrimestriel 1aJournal of broadcastingxISSN 0021-938X 1tJournal of broadcasting & electronic media (Online)‎x1550-687810aJOBEM11aJournal of broadcasting & electronic media aCommunication audiovisuelleyEtats-UnisxPériodiques aCommunicationxPériodiques02aBroadcast Education Associationc(Etats-Unis) 3aFRbCCN0883-81514 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=113227zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t775648091db=allzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 29 no. 1 (hiv-1985) -....cParisdMagasins/AnnexeeP 8° 3453 aZCAD aexempb201103 aGEO RC2 Etats-Unis aGEO RQ Universel aDEW 07001710nas 2200385 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000280015421000580018232600260024032600270026643000690029351700530036253000390041560600270045471000480048180100210052985601280055085601080067885601010078685601080088785600900099585601080108595500890119397200090128299100170129199200160130803873351X000005592820130319051554.01 a0021-9398 aFNSP261339 a0000055928 a19900101b19542006 ba0 aeng aUS aahu 14aThe Journal of business aChicago, Ill.cUniversity of Chicago Pressd1954-2006 aBimestrielb2005-2006 aTrimestrielb1954-2004 1aThe Journal of business of the University of Chicago,x0740-916810aJournal of business of the University of Chicago10aJournal of businessbChicago, Ill. aAffairesxPériodiques02aGraduate School of Business (Chicago, Ill.) 3aFRbCCN0021-93984 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=JBU&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=106556 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00219398.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol.40 no. 4 (oct-1967) -vol. 79 no 6 (nov-2006)cParisdMagasins/AnnexeeP 8° 2709 aZPAY aexemp$200904 aDEW 650-65801309nls 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000084001502100058002343000119002923260016004113360058004273370063004854300061005484400066006094520070006756060027007456060027007727120048007998010013008478560090008609550005009509920016009550000470122000047012220130319051554.0 a0000470122 a b19281953k fre 01 ba0 aeng aUS az aah z  adr 14aThe Journal of business of the University of Chicagob[Ressource électronique] aChicago, Ill.cUniversity of Chicago Pressd1928-1953 aAccès au texte intégral (réservé aux sites de Sciences Po) à partir du vol. 1 de 1928 jusqu'au vol.26 de 1953 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tUniversity journal of business [Ressource électronique] 1tJournal of business (Chicago, Ill.) [Ressource électronique] 1tThe Journal of business of the University of Chicagox(0740-9168) aAffairesxPériodiques aFinancesxPériodiques02aGraduate School of Business (Chicago, Ill.) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/07409168.html1 r aDEW 650-65801078cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200004100180207003300221210007800254510003100332517000900363607005100372711004500423801003000468801002300498801001300521802000700534856002600541856004200567955007000609992002100679992001600700104828986000069187420130319051554.01 a1080-6954 aissn10806954 a0000691874 a19960325a19959999k y0frey0103 ba0 aeng aUS ay 0  ar aajy 0uu 10aJournal of Chinese political science 0aVol. 2, no. 1 (winter 1995)- aKnoxville, TNcDept. of Political Science, University of Tennesseed1995-10aZhongguo zheng zhi xue kan10aJCPS aChinexPolitique et gouvernementxPériodiques02aAssociation of Chinese Political Studies 3aFRbAbesc20080513gAFNOR 3aFRbISSNc20060706 0aFRbFNSP a014 uhttp://jcps.sfsu.edu/ zSommaires depuis le vol.1, n°1, 19951 bvol. 6 no. 1 (mar-2000) -....cParisdMagasins/AnnexeeP 8° 6777 aGEO RI3.01 Chine aDEW 320-32101121nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003500163210002400198326002300222326002900245517000800274606002900282801001300311856009500324856006900419856010800488856010800596955007000704972000900774992001200783064130959000052486320130319051554.01 a1468-795X a0000524863 a a20019999k fre ba0 aeng aGB a 0  ar aai z 0 10aJournal of classical sociology aLondoncSaged2001- aTrimestrielb2008- a3 n°s par anb2001-200710aJCS aSociologiexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sagepub.co.uk/journal.aspx?pid=105622 zContenu : sommaires et résumés depuis le vol.1, n°1, mai 20014 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mai-2001) -....cParisdMagasins/AnnexeeP 8° 6679 aZSAB aDEW 30101349nas 2200385 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200003200148207003300180210003600213326002300249326002800272530003200300606003200332606004400364676000800408710005700416801001300473856003600486856006100522856010100583856010800684955006700792955006500859972000900924991001800933992001200951050924133000030157320130903143543.01 a1520-3972 a a19999999k eng ba0 aeng aUS a 0  ar aai z 0 10aJournal of cold war studies 1aVol. 1, no. 1 (winter 1999)- aCambridge, MAcMIT Pressd1999- aTrimestrielb2002- a3 nos par anb1999-200110aJournal of cold war studies aGuerre froidexPériodiques aRelations internationalesxPériodiques a32702aDavis Center for Russian Studiesc(Cambridge, Mass.) 0aFRbFNSP4 uhttp://mitpress.mit.edu/COLDWAR zSommaires et résumés depuis le vol.1, n°1, hiver 19994 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=104181 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 1 no.1 (1999) -....cParisdMagasins/AnnexeeP 8° 6516 aZCAD aexempb201212 aDEW 32701638nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210002900191326002700220326003400247326002200281601004400303676001000347856007400357856011600431856010100547856010800648856006700756856006700823955006400890955006600954957013401020972000901154991001801163992005701181992001401238038733935000002477120130319051554.01 a0021-9886 aFNSP165807 a0000024771 a19900101a19629999 ba0 aeng aGB aahu 10aJournal of Common Market studies aOxfordcBlackwelld1962- aTrimestrielb1962-1999 a5 numéros par an b2000-2010 aBimestrielb2011-02aCommunautés européennesxPériodiques a341.84 uhttp://www.blackwellpublishers.co.uk/journal.asp?ref=0021-9886&site=1 zContenu : sommaires et résumés depuis le vol. 35, no.1, mars 1997, possibilité d'alerte de sommaire par mail4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100859 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1468-5965 zContenu : sommaires et résumés depuis le vol. 1, no. 1, 19621 bLes 3 dernières annéescParisd27, 1er étageeDEW 330.941 bvol. 1 no. 1 (1962) -....cParisdMagasins/AnnexeeP 8° 19811 bvol. 1(1962) -vol. 4 (1966) ; vol. 5 (1967) -vol. 8 (1970) ; vol. 25 (1986) -vol. 26 (1988)cParisdMagasins/AnnexeeP Index 0069 aZSAB aexempb201002 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 341.201148nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005100154207004900205210002800254326001300282430005700295440005100352530005100403607005800454801002100512856004200533856007700575955009100652991001800743992004900761992001200810037270184000002477820130319051554.01 a0306-3631 aFNSP165821 a0000024778 a19900101b19741997 ba0 aeng aGB aaiu 10aJournal of Commonwealth & comparative politics 1aVol. 12, no. 1 (1974) -vol. 35, no. 3 (1997) aLondoncCassd1974-1997 a3 n°/an 1aJournal of Commonwealth political studiesx0021-9908 1aCommonwealth & comparative politicsx1466-204300aJournal of Commonwealth & comparative politics aCommonwealthxPolitique et gouvernementxPériodiques 3aFRbCCN0306-36314 uhttp://www.frankcass.com/jnls/ccp.htm zContenu : sommaires depuis le vol. 32, n°1 ; résumés des n° récents1 bvol. 12 no. 1 (mar-1974) -vol. 35 no. 3 (nov-1997)cParisdMagasins/AnnexeeP 8° 2017 aexempb201011 aGEO RP Autres groupes de pays ou de régions aDEW 90900880nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210004500183326001600228606003200244801002100276856003300297856007200330955009200402957005700494972000900551991001800560992001200578038733978000002478020131202100011.01 a0021-9916 aFNSP165824 a0000024780 a19900101a19519999 ba0 aeng aUS aahu 10aJournal of communication aNew YorkcOxford University Pressd1951- aTrimestriel aCommunicationxPériodiques 3aFRbCCN0021-99164 uhttp://www.oup.co.uk/jnlcom/ zContenu : sommaires et résumés depuis le vol. 46, n°1, hiv. 19961 bvol. 16 no. 3 (sep-1966) -vol. 62 no. 6 (déc-2012)cParisdMagasins/AnnexeeP 8° 23101 b(1951) -(1968)cParisdMagasins/AnnexeeP Index 0141 aZCAD aexempb200909 aDEW 30201406nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006100139210002800200326001600228430004900244440003900293452008200332530005700414606002900471607003400500607002600534856005600560856004800616856010900664856010800773955009200881972000900973991001800982992003201000992001201032036740071000013786820130917164155.01 a1352-3279 aFNSP549820 a19941010b19942011 ba0 aeng aGB aaha 14aThe Journal of Communist studies and transition politics aLondoncCassd1994-2011 aTrimestriel 1aThe Journal of Communist studies,x0268-4535 1tEast european politics,x2159-9165 1tThe journal of communist studies and transition politics (Online),x1743-911610aJournal of communist studies and transition politics aCommunismexPériodiques aEurope de l'EstxPériodiques aEx-URSSxPériodiques4 uhttp://www.tandf.co.uk/journals/titles/13523279.asp zContenu : sommaires depuis le vol. 17, n°14 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713635808db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 10 no. 1 (mar-1994) -vol . 27 no. 4 (dec-2011)cParisdMagasins/AnnexeeP 8° 4930 aZGRA aexempb201010 aGEO RA2.02 Europe orientale aDEW 94701074nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210003500188300003200223326001600255606004900271606004500320710006900365856010900434856010800543955008200651972000900733991001800742992001200760094015082000014924120130319051554.01 a1070-5422 aFNSP585133 a0000149241 a19950209a19949999 ba0 aeng aUS aaha 10aJournal of community practice aNew YorkcHaworth Pressd1994- aArrive avec un an de retard aTrimestriel aService socialxAdministrationxPériodiques aOrganisation communautairexPériodiques02aAssociation for Community Organization and Social Administration4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t792303986db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1994) -vol. 13 no. 3 (2005)cParisdMagasins/AnnexeeP 8° 6098 aZSAB aexempb201211 aDEW 30100954nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210004500191326001600236606006100252606003700313710004900350801002100399856009600420856005900516955006600575972000900641992001400650039092992000002486820130319051554.01 a0147-5967 aFNSP165997 a0000024868 a19900101a19779999 ba0 aeng aUS aahu 10aJournal of comparative economics aSan Diego, Calif.cAcademic Pressd1977- aTrimestriel aPolitique économiquexEtudes comparativesxPériodiques aEconomie politiquexPériodiques02aAssociation for Comparative Economic Studies 3aFRbCCN0147-59674 uhttp://www.elsevier.com/wps/find/journaldescription.cws_home/622864/description#description zContenu : sommaires depuis le vol. 21 no. 2 (oct-1995)1 bvol. 1 no. 1 (1977) -....cParisdMagasins/AnnexeeP 8° 4491 aZPAY aDEW 338.902170cas0 2200445 450 00100100000000200110001000500170002101100140003803500140005203500170006603500170008303500150010010000410011510100080015610200070016410600060017111000160017720000970019321000240029043000650031444700470037944700590042651700760048553000610056160600410062260600460066371000480070980100300075780100230078780200070081085601210081785601200093885601210105885601140117985601140129385601210140785601210152895500550164999100200170403685736X000109505920130319051554.0 a1479-5949 a070640718 accn0121/7895 aissn14795949 a0001095059 a19830101b19171951 0fre 0103 ba0 aeng aGB ar aay 10aJournal of comparative legislation and international lawfSociety of comparative legislation aLondoncJohn Murray 1tJournal of the Society of Comparative Legislationx1479-5973 1tThe international law quarterlyx1479-5930 1tInternational and comparative law quarterlyx0020-589310aJournal of the Society of Comparative Legislation and international law00aJournal of comparative legislation and international law1 aDroit comparéxPériodiques2rameau1 aDroit internationalxPériodiques2rameau02aSociety of comparative legislationcGB4070 3aFRbAbesc20050707gAFNOR 3aFRbISSNc20030203 a024 uhttp://archive.org/details/journalcomparat08londgoogzAccès libre au texte intégral. Volume 2 sur Internet Archive4 uhttp://archive.org/details/journalcomparat01londgoogzAccès libre au texte intégral. Volume4 sur Internet Archive4 uhttp://archive.org/details/journalcomparat03londgoogzAccès libre au texte intégral. Volume 6 sur Internet Archive4 uhttp://archive.org/details/journalsocietyc02legigoogzAccès libre au texte intégral. Volume 7 (1ere partie)4 uhttp://archive.org/details/journalcomparat06londgoogzAccès libre au texte intégral. Volume 7 (2eme partie)4 uhttp://archive.org/details/journalcomparat10londgoogzAccès libre au texte intégral. Volume 8 sur Internet Archive4 uhttp://archive.org/details/journalsocietyc00legigoogzAccès libre au texte intégral. Volume 9 sur Internet Archive1 b(1938) -(1940)cParisdMagasins/AnnexeeP 8° 0891 aPériobTP02 P801657nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200006600163210004800229210007100277326001600348606005800364606005700422606006100479676000800540801001300548856004800561856011600609856010300725856006000828856010900888856010800997955012301105972000901228991001801237992001601255070505187000048714120130319051554.01 a1387-6988 a0000487141 a a19989999k fre ba0 aeng aGB a 0  ar aah z 0 10aJournal of comparative policy analysiseresearch and practice aAbingtoncRoutledge Taylor & Francisd2004- aDordrecht ; Boston ; LondoncKluwer Academic Publishersd1998-2003 aTrimestriel aPolitique publiquexEtudes comparativesxPériodiques aPolitique socialexEtudes comparativesxPériodiques aPolitique économiquexEtudes comparativesxPériodiques a320 0aFRbFNSP4 uhttp://www.springerlink.com/content/102926/ zContenu : sommaires des numéros et résumés des articles depuis le vol.1, n° 1, September 1998 jusqu'à 20034 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713672306 zContenu : accès aux sommaires et résumés depuis 20044 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713672306db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (sep-1998) -vol. 5 no. 2/3 (jun-2003) ; vol. 9 no. 1 (mar-2007) -....cParisdMagasins/AnnexeeP 8° 6652 aZSAB aexempb201212 aDEW 320-32101149nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003900163210004300202326001500245430005200260517004100312606004400353801001300397856003400410856005700444856011900501856010800620955007000728972000900798992001600807058260420000052358420130319051554.01 a1467-7954 a0000523584 a a20009999k fre ba0 aeng aGB a 0  ar aaj z 0 10aJournal of conflict & security law aOxfordcOxford University Pressd2000- aSemestriel 1tJournal of armed conflict lawxISSN (1364-0224)10aJournal of conflict and security law aSécurité internationalexPériodiques 0aFRbFNSP4 uhttp://www3.oup.co.uk/jconsl/ zContenu : sommaires depuis le vol.5, n°1, juin 20004 uhttps://acces-distant.sciences-po.fr/fork?http://www.westlaw.com/signon/default.wl?RS=UKIS1.0&VR=1.0&sp=intiep-000 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 6 no. 1 (jun-2001) -....cParisdMagasins/AnnexeeP 8° 6675 aZSAB aDEW 355-35901656nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210009200193210004600285326002200331326002700353430003500380606004400415606003900459676000800498712005600506801002100562856009000583856003700673856007000710856010800780856010800888856010800996955007001104972000901174991001801183992003301201992001201234038734249000002478720140110151449.01 a0022-0027 aFNSP165835 a0000024787 a19900101a19579999 ba0 aeng aUS aagu 14aThe Journal of conflict resolution aAnn Arbor, Mich.cThe Journal of Conflict Resolution, University of Michigand1957-1972 aBeverly Hills, Calif. [etc.]cSaged1973- aBimestrielb1997- aTrimestrielb1957-1996 1aConflict resolutionx0731-4086 aMédiation internationalexPériodiques aGestion des conflitsxPériodiques a32702aSociété internationale pour la science de la paix 3aFRbCCN0022-00274 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00220027.html zAccès libre au texte intégral.4 uhttps://acces-distant.sciences-po.fr/fork?http://jcr.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1957) -....cParisdMagasins/AnnexeeP 8° 1867 aZSAB aexempb201001 aGEO RS Sans aspect régional aDEW 32701404nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154210005600190326002500246326002600271606005500297606004300352710004300395801002100438856012800459856010800587856010300695856010800798955008600906972000900992991001801001992002301019992001201042038734303000002486620131202100833.01 a0022-0078 aFNSP165995 a0000024866 a19900101a19679999 ba0 aeng aUS aaju 14aThe Journal of consumer affairs aMadison, Wis.cUniversity of Wisconsin Pressd1967- a3 n°s par anb2008- aSemestrielb1967-2007 aConsommateursyEtats-UnisxAttitudesxPériodiques aConsommateursxAttitudesxPériodiques02aAmerican Council on Consumer Interests 3aFRbCCN0022-00784 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=JCA&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=113242 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1967) -vol. 46 no. 3 (aut-2012)cParisdMagasins/AnnexeeP 8° 2855 aZPAY aexempb200910 aGEO RC2 Etats-Unis aDEW 33901286nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003200163210003700195326002500232326002600257606004300283606005500326606004300381676000800424801001300432856009500445856008500540856010800625856010800733955007000841972000900911992001600920064131491000049037520130319051554.01 a1469-5405 a0000490375 a a20019999k fre ba0 aeng aGB a 0  ar aai z 0 10aJournal of consumer culture aLondoncSage Publicationsd2001- a3 n°s par anb2003- aSemestrielb2001-2002 aConsommateursxAttitudesxPériodiques aConsommateursyEtats-UnisxAttitudesxPériodiques aConsommationxSociologiexPériodiques a306 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sagepub.co.uk/journal.aspx?pid=105627 zContenu : sommaires et résumés des articles à partir du vol.1,n°1, juin 20014 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jun-2001) -....cParisdMagasins/AnnexeeP 8° 6662 aZSAB aDEW 305-30601086nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004400139210002800183326002300211326002400234326002600258607002600284856005700310856005900367856010900426856010800535955007100643972000900714991001800723992001900741992001200760039302148000019507220130828181243.01 a0258-9001 aFNSP716794 a19900101a19819999 ba0 aeng aGB aaha 10aJournal of contemporary African studies aAbingdoncCarfaxd1981- aTrimestrielb2008- a3 par anb2003-2007 aSemestrielb1981-2002 aAfriquexPériodiques4 uhttp://www.tandf.co.uk/journals/carfax/02589001.html zContenu : sommaire depuis le vol. 14, n°1, janv. 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713429127db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 13 no. 1 (jan-1995) -....cParisdMagasins/AnnexeeP 8° 6253 aZSAB aexempb201301 aGEO RE Afrique aDEW 96000901nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200003300138210005400171326001600225607002300241801002100264856010900285856010800394955006600502972000900568991001800577992001600595992001200611036535036000002512520140108131044.01 a0047-2336 aFNSP166488 a0000025125 a19900101a19709999 ba0 aeng aGB00aJournal of contemporary Asia aJCAaLondrescJournal of contemporary Asiad1970- aTrimestriel aAsiexPériodiques 3aFRbCCN0042/92954 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t776095547db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 2 no. 1 (1972) -....cParisdMagasins/AnnexeeP 8° 3069 aZSAB aexempb200910 aGEO RH Asie aDEW 95001434nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006000154210005600214210003200270210003100302326002200333326002800355326002700383326002800410510002300438607002400461710004700485856005700532856008800589856010900677856010800786955007000894972000900964992004500973992001201018992001801030040301788000011636720140108131319.01 a1067-0564 aFNSP484170 a0000116367 a19900101a19929999 ba0 aeng aUS aaia 14aThe Journal of contemporary Chinad= Tang tai Chung-kuo aPrinceton, N.J.cCenter for Modern Chinad1992-1995 aAbingdoncCarfaxd1996-2005 aAbingdoncRoutledged2005- aBimestrielb2012- a5 nos par anb2009-2011 aTrimestrielb2001-2008 a3 nos par anb1992-200010aTang tai Chung-kuo aChinexPériodiques02aCenter for Modern Chinac(Princeton, N.J.)4 uhttp://www.tandf.co.uk/journals/carfax/10670564.html zContenu : sommaires depuis le vol. 5, n°11, mars 1996 ; thèmes du n° à paraitre4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713429222db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (aut-1992) -....cParisdMagasins/AnnexeeP 8° 6007 aZSAB aGEO RI3.03 Chine (République populaire) aDEW 951 aexemp$b20121001611nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004500163210006800208326001500276430004800291606003700339676000800376801001300384856012800397856010800525856010300633856010800736856010900844856010800953955006601061955007101127972000901198992001201207992001801219078920418000055055420130319051554.01 a1478-2804 a0000550554 a a20039999k fre ba0 aeng aGB a 0  ar aaj z 0 10aJournal of Contemporary European Studies aBasingstoke, HantscCarfax Publishing, Taylor & Francis d2003- aSemestriel 1tJournal of European area studiesx1460-8464 aEtudes régionalesxPériodiques a940 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=RFL&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=109429 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713429588db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 bvol. 11 no. 1 (mai-2003) -....cParisdMagasins/AnnexeeP 4° 4745 aZCAD aDEW 940 aGEO RA Europe01362nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154210004700190210002400237326001600261606003900277676000800316801002100324856009500345856011200440856010800552856010800660955006700768955006600835957007200901972000900973991001800982992001201000036347507000002513920130319051554.01 a0022-0094 aFNSP166506 a0000025139 a19900101a19669999 ba0 aeng aGB aahu 10aJournal of contemporary history aLondoncWeidenfeld and Nicolsond1966-1971 aLondoncSaged1972- aTrimestriel aHistoire universellexPériodiques a909 3aFRbCCN0022-00944 uhttps://acces-distant.sciences-po.fr/fork?http://www.sagepub.co.uk/journal.aspx?pid=105630 zContenu : sommaires depuis le vol. 32, n°1, janv. 1997, résumés à partir du vol. 34, n°3, juillet 19994 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étage:eDEW 9091 bvol. 1 no. 1 (1966) -....cParisdMagasins/AnnexeeP 8° 22361 bvol. 1 (1966) -vol. 12 (1977)cParisdMagasins/AnnexeeP Index 0315 aZSAB aexempb201105 aDEW 90901374nas 2200361 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200003400148207003200182210006100214210005000275210005300325210003100378326001600409452006600425606004100491710005300532801001300585856005000598856006100648856010300709856010800812955006900920972000900989992001400998039976556000041494320131025134253.01 a0885-2545 a a19779999k fre ba0 aeng aNL a 0  ar aah z 0 10aJournal of cultural economics 1aVol. 1, no. 1 (June, 1977)- aAkron, OHcAssociation for Cultural Economicsd1977-1993 aNorwell, MAcKluwer Academic Publishersd1993 aDordrechtcKluwer Academic Publishersd1993-2004 aDordrechtcSpringerd2005- aTrimestriel 1tJournal of cultural economics (Dordrecht. Online),x1573-6997 aEconomie de la culturexPériodiques02aAssociation for Cultural Economics International 0aFRbFNSP4 uhttp://www.springerlink.com/content/0885-2545 zContenu : sommaires des n°s depuis le vol.1, n°1, 19774 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=100284 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 23 no. 1/2 (1991) -....cParisdMagasins/AnnexeeP 8° 6590 aZPAY aDEW 338.401369nas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101001300125102000700138105001800145106000600163110001600169200003900185210008500224326001600309430002900325452006100354517003400415530004800449607002400497710007100521711007600592801003000668801002300698802000700721856007800728856007700806955006700883992002100950992001200971135308534000117095820130319051554.01 a1868-1026 aissn18681026 a0001170958 a20090706a20099999 0frey0103 ba0 ageraeng aDE ay  ar aaz 10aJournal of current Chinese affairs aHamburgcInstitute of Asian Studies, German Institute of Global and Area Studies aTrimestriel 1tChina aktuellx0341-6631 1tJournal of current Chinese affairs (Internet)x1868-487410aChina aktuell (Hamburg. 2009)10aJournal of current Chinese affairsb(Print) aChinexPériodiques aGerman Institute of Global and Area Studiesc(Hambourg, Allemagne) aGerman Institute of Global and Area Studies, Institute of Asian Studies 3aFRbAbesc20090706gAFNOR 3aFRbISSNc20080601 a064 uhttp://www.giga-hamburg.de/index.php?file=z_cha.html&folder=publikationen zContenu : sommaires depuis 2006, de nombreux articles en texte intégral1 bvol. 38 no. 1 (2009) -....cParisdMagasins/AnnexeeP 8° 7043 aGEO RI3.01 Chine aDEW 95101273nas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200004700180210009200227326001600319430003600335530005600371607003400427710007100461711007600532801003000608801002300638802000700661856007800668856005500746955006700801992003100868992001200899135307651000117095720130319051554.01 a1868-1034 aissn18681034 a0001170957 a20090706a20099999 0frey0103 ba0 ager aDE ay  ar aaz 10aJournal of current Southeast Asian affairs aHamburgcInstitute of Asian Studies, German Institute of Global and Area Studiesd2009- aTrimestriel 1tSüdostasien aktuellx0722-882110aJournal of current Southeast Asian affairsb(Print) aAsie du Sud-EstxPériodiques02aGerman Institute of Global and Area Studiesc(Hambourg, Allemagne)02aGerman Institute of Global and Area Studies, Institute of Asian Studies 3aFRbAbesc20090706gAFNOR 3aFRbISSNc20080601 a064 uhttp://www.giga-hamburg.de/index.php?file=z_soa.html&folder=publikationen zContenu : sommaires depuis le vol. 25 no. 1 (2006)1 bvol. 28 no. 1 (2009) -....cParisdMagasins/AnnexeeP 8° 7044 aGEO RI2.02 Asie du Sud-Est aDEW 95901118nas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101001300125102000700138105001800145110001600163200009400179210005800273326001500331510003800346517000800384607002500392710004400417801003000461801002300491802000700514856002700521856010700548955007100655992003200726992002200758121770095000113158920130319051554.01 a1303-2925 aissn13032925 a0001131589 a20080225a20019999 0frey0103 ba0 aengatur aTR ay  aaj 10aJournal of Cyprus studies =dKıbrıs Araştırmaları DergisifCenter for Cyprus studies aAnkaracEastern Mediterranean university pressd2001- aSemestriel10aKıbrıs Araştırmaları Dergisi10aJCS aChyprexPériodiques02aCenter for Cyprus Studiesc(Famagouste) 3aFRbAbesc20080225gAFNOR 3aFRbISSNc20080201 a284 uhttp://jcs.emu.edu.tr/ zContenu: sommaire des n°s depuis le vol. 1, n° 1 de 1995 et résumés à partir du n° 28/29 de 20051 bvol. 10 no. 26/27 (2004) -....cParisdMagasins/AnnexeeP 8° 7010 aDEW 956.1 Turquie et Chypre aGEO RA6.07 Chypre01121nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154207003400179210006100213326001600274606003000290606002800320606003600348676000800384710005100392856005900443856005900502955006700561955006700628972000900695991001800704992003300722992001600755040264777000000829520130319051554.01 a1045-5736 aFNSP114427 a0000008295 a19900529a19909999 ba0 aeng aUS aaha 10aJournal of democracy 1aaVol. 1, no. 1 (winter 1990)- aaWashington, DCcNational Endowment for Democracyd1990- aTrimestriel aDémocratiexPériodiques aElectionsxPériodiques aScience politiquexPériodiques a32002aNational Endowment for Democracyc(Etats-Unis)4 uhttp://calliope.jhu.edu/journals/journal_of_democracy/ zContenu : sommaires depuis le vol. 6, n°1, janv. 19951 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bvol. 1 no. 1 (1990) - ....cParisdMagasins/AnnexeeP 8° 5641 aZSAB aexempb201101 aGEO RS Sans aspect régional aDEW 320-32100982nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154210005900190326002200249326002700271607004900298710003200347801002100379856003800400856006100438955011600499972000900615992004200624992001400666038734591000002514220130319051554.01 a0022-037X aFNSP166510 a0000025142 a19900101a19669999 ba0 aeng aUS aaju 14aThe Journal of developing areas aMacomb, Ill.cWestern Illinois University Pressd1966- aSemestrielb2000- aTrimestrielb1966-1999 aPays en voie de développementxPériodiques02aWestern Illinois University 3aFRbCCN0022-037X4 uhttp://muse.jhu.edu/journals/jda/ zContenu : sommaires depuis le volume 37, no 1, Fall 20031 bvol. 1 no 1 (oct-1966) -vol. 33 no 4 (1999) ; vol. 36 no 1 (aut-2002) -....cParisdMagasins/AnnexeeP 8° 2362 aZSAB aGEO RO Pays en voie de développement aDEW 338.901266nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154210002500190326002300215326002600238430004600264607004900310856012800359856010800487856007100595856010800666955011300774972000900887992004200896992001400938039120422000001090020130319051554.01 a0169-796X aFNSP120948 a0000010900 a19900717a19859999 ba0 aeng aNL aaha 10aJournal of developing societies aLeidencBrilld1985- aTrimestrielb2004- aSemestrielb1987-200? 1aContributions to Asian studiesx0304-2695 aPays en voie de développementxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=C3J&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://jds.sagepub.com/? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 2 (oct-1987) -vol. 17 no. 2 (2001) ; vol. 20 no. 1(2004)-....cParisdMagasins/AnnexeeP 8° 5602 aZSAB aGEO RO Pays en voie de développement aDEW 338.901342nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210003100189210002800220326002600248326002900274326002600303606004500329607007200374801002100446856005600467856008700523856010900610856010800719955007000827972000900897991001800906992004200924992001400966038734621000002516020130319051554.01 a0022-0388 aFNSP166552 a0000025160 a19900101a19649999 ba0 aeng aGB aafu 10aJournal of development studies aAbingdoncRoutledged2005- aLondoncCassd1964-2005 a10 n°s par anb2008- a8 n°s par anb2005-2007 aBimestrielb1964-2004 aDéveloppement économiquexPériodiques aPays en voie de développementxPolitique économiquexPériodiques 3aFRbCCN0022-03884 uhttp://www.tandf.co.uk/journals/titles/00220388.asp zContenu : sommaires depuis le volume 37, n°2, 2000 et alerte de sommaire par mail4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713395137db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (oct-1964) -....cParisdMagasins/AnnexeeP 8° 2216 aZSAB aexempb200908 aGEO RO Pays en voie de développement aDEW 338.900981cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200002800180207002600208210005200234326001600286606005400302801003000356801002300386801003000409802000700439856005100446856005500497955006600552972000900618992001600627104725672000104787120130319051554.01 a1542-4049 aissn15424049 a0001047871 a20021106a20049999k y0frey0103 ba0 aeng aUS a 0  ar aaha 0uu 10aJournal of e-government 0aVol. 1, no. 1 (2004)- aBinghamton, NYcHaworth Political Pressdc2004- aTrimestriel aAdministration publique et InternetxPériodiques 3aFRbAbesc20061129gAFNOR 3aFRbISSNc20060706 3aFRbAbesc20060707gAFNOR a014 uhttp://www.egovjournal.com/journal_archive.htm4 zContenu : sommaires depuis le volume 1, n°1, 20041 bvol. 1 no. 1 (2004) -....cParisdMagasins/AnnexeeP 8° 6927 aZSAB aDEW 350-35401225nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210005600188326001600244606005200260607003400312856010100346856010800447856010900555856010800664955006600772972000900838991001800847992003200865992001400897040301583000013725420130319051554.01 a1066-9868 aFNSP548435 a0000137254 a19941004a19959999 ba0 aeng aUS aaha 00aJournal of East-West business aBinghamton, NYcInternational Business Pressd1995- aTrimestriel aAide économiqueyEurope de l'EstxPériodiques aEurope de l'EstxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=109527 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t792306893db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1995) -....cParisdMagasins/AnnexeeP 8° 6066 aZPAY aexempb201210 aGEO RA2.02 Europe orientale aDEW 338.901137nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000065001502100061002153000107002763260016003833360058003993370063004574400061005204520051005816060037006327120034006698010013007038560090007169550005008069920012008110000469929000046992920130319051554.0 a0000469929 a b19631968k fre 01 ba0 aeng aUS az aah z  adr 14aThe Journal of economic abstractsb[Ressource électronique] aEvanston, Ill.cAmerican Economic Associationd1963-1968 aAccès au texte intégral (réservé aux sites de Sciences Po) du vol.1 de 1963 jusqu'au vol.6 de 1968 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tJournal of economic literature [Ressource électronique] 1tThe Journal of economic abstractsx(0364-281X) aEconomie politiquexPériodiques02aAmerican Economic Association 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0364281X.html1 r aDEW 33001102nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000360015421000480019032600160023860600390025471000470029380100210034085600900036185601080045195500690055995700740062895700750070297200090077799200140078603873477X000005598520130319051554.01 a0022-0507 aFNSP262182 a0000055985 a19900101a19419999 ba0 aeng aUS aahu 14aThe Journal of economic history aNew YorkcCambridge University Pressd1941- aTrimestriel aHistoire économiquexPériodiques02aEconomic History Associationc(Etats Unis) 3aFRbCCN0022-05074 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00220507.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no 1 (mai-1941) -....cParisdMagasins/AnnexeeP 8° 00941 b(1941) -(1950) ; (1951) -(1964)cParisdMagasins/AnnexeeP Index 01211 b(1951) -(1964) se trouve dans le vol. 25, n° 2, June 1965 de la revue aZPAY aDEW 330.901200nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210003700185210006900222326001600291517000800307517003500315606003700350710005300387801002100440856012800461856010800589955006900697957005700766972000900823991001800832992001200850038731053000002292620130319051554.01 a0021-3624 aFNSP161322 a0000022926 a19900101a19679999 ba0 aeng aUS aaha 10aJournal of economic issues aArmonk, N.Y.cM.E. Sharped2009- aLincoln, Neb.cAssociation for Evolutionary Economicsd1967-2008 aTrimestriel10aJEI10aJEI Journal of economic issues aEconomie politiquexPériodiques02aUniversity of TennesseebDepartment of Economics 3aFRbCCN0021-36244 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=JEI&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no.4 (dec-1971) -....cParisdMagasins/AnnexeeP 8° 30181 b(1967) -(1990)cParisdMagasins/AnnexeeP Index 0662 aZPAY aexempb201001 aDEW 33001373nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210005900189326001600248430004900264606003700313676000800350710003400358801002100392856012800413856010800541856009000649856010800739955006700847955007000914972000900984991001800993992001201011038734788000002516320130319051554.01 a0022-0515 aFNSP166557 a0000025163 a19900101a19699999 ba0 aeng aUS aahu 10aJournal of economic literature aNashville, Tenn.cAmerican Economic Associationd1969- aTrimestriel 1aThe Journal of economic abstractsx0364-281X aEconomie politiquexPériodiques a33002aAmerican Economic Association 3aFRbCCN0022-05154 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=JEL&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00220515.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3301 bvol. 7 no. 1 (mar-1969) -....cParisdMagasins/AnnexeeP 8° 1990 aZPAY aexempb200910 aDEW 33001522nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004100139210005900180326001600239452006200255517002600317530004100343606005200384606004100436676000800477710003400485801002100519856012800540856010800668856009000776856010800866955006700974955006601041972000901107991001801116992001401134039997065000002517020131004101836.01 a0895-3309 aFNSP166569 a19900101a19879999 ba0 aeng aUS aahu 14aThe Journal of economic perspectives aNashville, Tenn.cAmerican Economic Associationd1987- aTrimestriel 1tThe journal of economic perspectives (Online),x1944-796510aEconomic perspectives14aThe Journal of economic perspectives aHistoire économiquez20e sièclexPériodiques aPrévision économiquexPériodiques a33002aAmerican Economic Association 3aFRbCCN0895-33094 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=JEC&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/08953309.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3301 bvol. 1 no. 1 (1987) -....cParisdMagasins/AnnexeeP 8° 5097 aZPAY aexempb201106 aDEW 330.901359cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200003800180207003200218210003100250326001600281430004400297606004000341801003000381801002300411801003000434801002300464802000700487856010300494856008600597856010900683856010800792955007100900992001400971115408606000113224820130319051554.01 a1748-7870 aissn17487870 a0001132248 a20070614a20079999k y0frey0103 ba0 aeng aGB ay 0  ar aaha 0uu 10aJournal of economic policy reform 0aVol. 10, no. 1 (Mar. 2007)- aAbingdoncRoutledged2007- aTrimestriel 1tThe journal of policy reformx1384-1289 aPolitique économiquexPériodiques 3aFRbAbesc20090308gAFNOR 3aFRbISSNc20090225 3aFRbAbesc20080201gAFNOR 3aFRbISSNc20070614 a024 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713648069 zContenu : sommaires et résumés des articles depuis le vol. 10 no. 1, March 20074 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713648069db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 10 no. 1 (mar-2007) -....cParisdMagasins/AnnexeeP 8° 6413 aDEW 338.900956nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210003300179326001500212430005100227517001100278530003100289606003700320856023300357955006700590972000900657992001200666040045293000005602720130729114116.01 a0931-8658 aFNSP262276 a0000056027 a19900101a19869999 ba0 aeng aAT aaga 10aJournal of economics aWiencSpringer-Verlagd1986- aBimestriel 1aZeitschrift für Nationalökonomie,x0044-315810aJOECEP10aJournal of economicsbWien aEconomie politiquexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=72C&site=ehost-livezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 46 no. 1 (1986) -....cParisdMagasins/AnnexeeP 8° 1301 aZPAY aDEW 33001636nls 2200373 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000123001642070025002872100100003123000057004123260016004693360056004853370071005414300038006126060040006506060042006907100046007328010013007788560090007918560108008818560045009898560179010349920033012139920016012460000815974000081597420130319051554.01 a1076-9986 a0000815974 a a19949999k fre 01 ba0 aeng aUS az aah z  adr 10aJournal of educational and behavioral statisticsb[Ressource électronique]fAmerican Educational Research Association 1aN°3 (Autumn 1994) - aWashingtoncAmerican Educational Research Association,cAmerican Statistical Associationd1994- aTexte intégral depuis le vol. 19, n°3, Autumn 1994 aTrimestriel aDonnées textuelles accessibles uniquement en ligne aTéléchargement de fichiers TIFF, PDF (recommandé) ou PostScript 1tJournal of educational statistics aEducationyEtats-UnisxPériodiques aStatistiqueyEtats-UnisxPériodiques02aAmerican Educational Research Association 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/10769986.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.aera.net/publications/?id=318 zContenu : résumés en ligne depuis le vol. 29, n°1, Spring 2004 (site consulté le 13/05/2005) mais le projet affiché est, à terme, de mettre en ligne tous les résumés. aGEO RS Sans aspect régional aDEW 370-37901440cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200005300180207003200233210003800265430005000303452007300353530006200426676000800488711005600496801003000552801002300582801001300605802000700618856005600625856005000681856010900731856010800840955007300948972000901021992001201030104760192000089810820140110100238.01 a1745-7289 aissn17457289 a0000898108 a20041109a20069999k y0frey0103 ba0 aeng aGB ay 0  ar aaia 0uu 10aJournal of elections, public opinion and parties 0aVol. 16, no. 1 (Feb. 2006)- aAbingdoncTaylor & Francisd2006- 1tBritish elections & parties reviewx1368-9886 1tJournal of elections, public opinion and parties (Online)x1745-729710aJournal of elections, public opinion and partiesb(Print) a32002aPolitical Studies Association of the United Kingdom 3aFRbAbesc20090308gAFNOR 3aFRbISSNc20090225 0aFRbFNSP a024 uhttp://www.tandf.co.uk/journals/titles/17457289.asp zContenu : sommaires et résumés des articles4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713727959db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 15, no. 1 (Apr. 2005) -....cParisdMagasins/AnnexeeP 8° 5934 aZSAB aDEW 32401160nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210003900195326002300234326002600257517004300283606004100326606004700367710008700414856010800501856010800609955009000717972000900807991001800816992001200834040307670000008241820130319051554.01 a1070-4965 aFNSP366879 a0000082418 a19900101a19929999 ba0 aeng aUS aaha 10aJournal of environment & development aThousand Oaks, Calif.cSaged1992- aTrimestrielb1996- aSemestrielb1992-199510aJournal of environment and development aDéveloppement durablexPériodiques aPolitique de l'environnementxPériodiques02aGraduate School of International Relations and Pacific Studies (San Diego, Calif.)4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (aou-1992) -vol. 18 no. 4 (dec-2009)cParisdMagasins/AnnexeeP 8° 5901 aZSAB aexempb201202 aDEW 33301461nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005300154210002800207326002600235326002900261326003100290430003200321606004700353710007900400856005700479856005900536856010300595856010800698856010900806856010800915955006701023972000901090992001201099040099016000007185720130319051554.01 a0964-0568 aFNSP328682 a0000071857 a19900101a19929999 ba0 aeng aGB aafa 10aJournal of environmental planning and management aAbingdoncCarfaxd1992- a10 n°s par anb2011- a8 n°s par anb2009-2010 aSemestriel puis bimestriel 1aPlanning outlookx0032-0714 aPolitique de l'environnementxPériodiques02aUniversity of Newcastle Upon TynebDepartment of Town and Country Planning4 uhttp://www.tandf.co.uk/journals/carfax/09640568.html zContenu : sommaires depuis le vol. 39, n°1, mars 19964 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=100638 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713429786db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 35 no. 1 (1992) -....cParisdMagasins/AnnexeeP 4° 4072 aZPAY aDEW 33301164cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069040001100084100004100095101000800136102000700144105001800151110001600169200004700185210004200232517004900274530004200323606004700365801003000412801002300442801001300465802000700478856010900485856010800594955007000702972000900772992001200781992002100793058344772000030142220130319051554.01 a1523-908X aissn1523908X a0000301422 aJEPNFA a20001206a19999999 0fre 0103 ba0 aeng aGB ay  aai 10aJournal of environmental policy & planning aChichester, West SussexcWileyd1999-10aJournal of environmental policy and planning10aJournal environmental policy planning aPolitique de l'environnementxPériodiques 3aFRbAbesc20080612gAFNOR 3aFRbISSNc20001206 0aFRbFNSP a014 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713433817db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mai-1999) -....cParisdMagasins/AnnexeeP 4° 6837 aZPAY aDEW 333 aGEO RQ Universel01262nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210002800198326002200226326002700248430003400275606004300309856012800352856010800480856010900588856010800697955006700805972000900872991001800881992002100899992001600920037421085000025508220131025131823.01 a1369-183X aFNSP890350 a0000255082 a19900101a19989999 ba0 aeng aGB aaga 10aJournal of ethnic and migration studies aAbingdoncCarfaxd1998- aBimestrielb2003- aTrimestrielb1998-2002 1aNew communityxISSN 0047-9586 aRelations interethniquesxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=56F&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713433350db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 24 no. 2 (1998) -....cParisdMagasins/AnnexeeP 8° 4808 aZSAB aexempb201010 aGEO RQ Universel aDEW 305-30601162nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012310600060014111000160014720000370016321000720020032600150027243000400028744000570032753000370038460600370042180100130045885601280047185601080059995500900070797200090079799200120080699200180081804881167X000027946120130319051554.01 a1460-8464 a0000279461 a b19992002k fre ba0 aeng aGB a 0  ar aaj z 0 10aJournal of European area studies aBasingstoke, HantscCarfax Publishing, Taylor & Francis d1999-2002 aSemestriel 1tJournal of area studies,x0261-3530 1tJournal of contemporary European studies,x1478-280400aJournal of European area studies aEtudes régionalesxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=RFL&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 7 no. 1 (mai-1999) -vol. 10 no. 2 (nov-2002)cParisdMagasins/AnnexeeP 4° 4745 aZPAY aDEW 940 aGEO RA Europe01159nas0 2200325 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109110001600127200003600143207002400179210004700203326001500250430004900265601004400314607004400358676001000402710004900412801003000461856005600491856009700547955007000644955007100714992003400785992001400819115665285000110187120130319051554.0 a0001101871 a20070625a20079999k 0frey0103 ba0 aeng aGB ay  aaga a 10aJournal of European integration 0aVol.29, n.1 (2007)- aAbingdon, United KingdomcRoutledged2007- aBimestriel 1tRevue d'intégration européenne,x0703-633702aCommunautés européennesxPériodiques aEurope de l'OuestxUnitéxPériodiques a341.802aInstitut européen d'administration publique 3aFRbAbesc20070625gAFNOR4 uhttp://www.tandf.co.uk/journals/titles/07036337.asp zContenu : présentation de la revue ; sommaires et résumés depuis le volume 24, n°1, 20021 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 320.441 bvol. 29 no. 1 (mar-2007) -....cParisdMagasins/AnnexeeP 8° 3952 aGEO RA2.01 Europe occidentale aDEW 341.801181nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009400154210003000248326001500278510005100293510006200344607005400406607007200460710006200532856005700594856004000651955006600691972000900757991001800766992005700784992001400841040071561000016792520130319051554.01 a0947-9511 aFNSP638341 a0000167925 a19900101a19959999 f ba0 amul aDE aaja 10aJournal of European integration historyd= Revue d'histoire de l'intégration européenne aBaden-BadencNomosd1995- aSemestriel10aRevue d'histoire de l'intégration européenne10aZeitschrift für Geschichte der Europäischen Integration aEurope de l'OuestxUnitéxHistoirexPériodiques aEurope de l'OuestxIntégration économiquexHistoirexPériodiques02aGroupe de liaison des historiens auprès des Communautés4 uhttp://www.restena.lu/lcd/cere/f/revue/revinfof.html zContenu : présentation de la revue1 bvol. 1 no. 1 (1995) -....cParisdMagasins/AnnexeeP 8° 6169 aZCAD aexempb201203 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 341.201449nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154207002500192210002900217326002500246326002600271326002700297606006600324676001000390856012800400856010800528856010900636856010800745955007000853955006600923972000900989991001800998992005701016992001401073044835426000013711620130319051554.01 a1350-1763 aFNSP548116 a0000137116 a19941003a19949999 ba0 aeng aGB aafa 00aJournal of European public policy 1aVol. 1 no. 1 (1994)- aLondoncRoutledged1994- a8 n°s par anb2006- aBimestrielb2001-2005 aTrimestrielb1994-2000 aPolitique publiqueyPays de l'Union européennexPériodiques a341.84 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=5BM&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713685697db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 330.941 bvol. 1 no. 1 (1994) -....cParisdMagasins/AnnexeeP 8° 6064 aZSAB aexempb201203 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 341.201148nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154210002700192300004200219326002500261326002700286607004400313607006500357856010800422856010800530955006600638972000900704991001800713992001800731992005700749992001600806040091449000009619320130319051554.01 a0958-9287 aFNSP420364 a0000096193 a19900101a19919999 ba0 aeng aGB aaga 10aJournal of European social policy aHarlowcLongmand1991- aLe vol.1, 1991 ne comporte que 2 n°s a5 n°s par anb2009- aTrimestrielb1991-2008 aEuropexPolitique socialexPériodiques aPays de l'Union européennexPolitique socialexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 2 no. 1 (1991) -....cParisdMagasins/AnnexeeP 8° 5958 aZSAB aexempb201210 aGEO RA Europe aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 360-36301027nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003200139210002500171326001500196530004400211607002500255710004400280801002100324856010800345856010800453955010700561972000900668991001800677992001800695992001200713039302296000002531020130918161139.01 a0258-9680 aFNSP167074 a19900101a19859999 ba0 aeng aPK aaju 10aJournal of European studies aKarachicASCEd1985- aSemestriel aJournal of European studies‎bKarachi aEuropexPériodiques02aArea Study Centre for Europec(Karachi) 3aFRbCCN0258-96804 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1985) -....cParisdMagasins/AnnexeeP 8° 4992wManquant : vol. 18 no. 1 (jan-2002) aZSAB aexempb201106 aGEO RA Europe aDEW 94001237nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000030001552100066001853260018002514400070002695300030003396060042003696060049004116060030004607120039004908560090005298560108006199550157007279920023008849920016009070000123229000012322920130319051554.01 a1071-1031 aFNSP506799 a0000123229 a19940406b19291967 ba0 aeng aUS aaga 10aJournal of farm economics aMenasha, Wisc.cAmerican Farm Economic Associationd1929-1967 a5 n°s par an 1aAmerican journal of agricultural economics (0002-9092)

00aJournal of farm economics aAgricultureyEtats-UnisxPériodiques aPolitique agricoleyEtats-UnisxPériodiques aAgriculturexPériodiques02aAmerican Farm Economic Association4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/10711031.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 30 no. 4 (1948) ; vol. 32 (no. 4) (nov-1950) -vol. 37 no. 3 (1955) ; vol. 40 no. 1 (1958) -vol. 49 no. 5 (1967)cParisdMagasins/AnnexeeP 8° 0944 aGEO RC2 Etats-Unis aDEW 338.1-301457nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154207002600181326002200207326002800229326002600257530004400283606002700327710003300354801002100387856012800408856001400536856010100550856010800651856009000759856010800849955008700957972000901044991001801053992001201071038735253000002537520131202101429.01 a0022-1082 aFNSP167318 a0000025375 a19900101a19469999 ba0 aeng aUS aagu 14aThe Journal of finance 1aVol. 1 no. 1 (1946) - aBimestrielb1998- a5 nos par anb1968-1997 aTrimestielb1946-196704aThe Journal of financebNew York. Print aFinancesxPériodiques02aAmerican Finance Association 3aFRbCCN0022-10824 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=FIN&site=ehost-live zContenu :4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=103084 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00221082.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1946) -vol. 67 no. 6 (déc-2012)cParisdMagasins/AnnexeeP 8° 0105 aZPAY aexempb201101 aDEW 33201081nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005100154210007400205326001500279517000900294606003900303606003700342710005600379801002100435856009000456856010800546955007000654972000900724991001800733992001600751038735261000005603020130319051554.01 a0022-1090 aFNSP262284 a0000056030 a19900101a19669999 ba0 aeng aUS aahu 10aJournal of financial and quantitative analysis aSeattle, Wash.cJournal of financial and quantitative analysisd1966- aBimestriel10aJFQA aGestion d'entreprisexPériodiques aEconomie politiquexPériodiques02aSchool of Business Administrationc(Seattle, Wash.) 3aFRbCCN0022-10904 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00221090.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 6 no. 1 (jan-1971) -....cParisdMagasins/AnnexeeP 8° 2904 aZPAY aexempb199901 aDEW 650-65801026nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000880013921000360022732600120026345200560027553000350033160600270036671000560039380100210044985600910047095501360056197200090069799100180070699200120072403938084X000009462520131127130156.01 a0304-405X aFNSP414735 a19900101a19749999 ba0 aeng aNL aafa 10aJournal of financial economicsfSamuel Curtis Johnson Graduate school of management aAmsterdamcNorth-Hollandd1974- aMensuel 1tJournal of financial economics (Online),x1879-277400aJournal of financial economics aFinancesxPériodiques02aSamuel Curtis Johnson Graduate School of Management 3aFRbCCN0304-405X4 uhttp://www.sciencedirect.com/science/journal/0304405XzAccès libre au texte intégral1 bvol. 6 no. 1 (1978) -vol. 12 no. 4 (1983) ; vol. 33 no. 1 (jan-1993) -vol. 103 no 2 (fev-2012)cParisdMagasins/Annexe,eP 8° 4119 aZPAY aexempb201103 aDEW 33200860nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003300139210003100172326001600203452005400219530003300273606003600306856006000342856007100402955007000473972000900543991001800552992001200570036873942000026947320130830103253.01 a1386-4181 aFNSP932446 a19990401a19989999 ba0 aeng aNL aaha 10aJournal of financial markets aAmsterdamcElsevierd1998- aTrimestriel 1tJournal of financial markets (Online),x1878-576X aJournal of financial markets aMarché financierxPériodiques4 uhttp://www.elsevier.nl:80/homepage/sae/econbase/finmar/ zContenu : sommaires et résumés depuis le vol. 1, n°1, avr. 19981 bvol. 1 no. 1 (avr-1998) -....cParisdMagasins/AnnexeeP 8° 6468 aZPAY aexempb201301 aDEW 33201263nas 2200325 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200003300148210002800181326001700209452005400226530004300280606003900323801001300362856012800375856010800503856010900611856010800720955007000828972000900898991001800907992001200925050912437000032761220130830125224.01 a1462-3528 a a19999999k fre ba0 aeng aGB a 0  ar aai z 0 10aJournal of genocide research aAbingdoncCarfaxd1999- a3 nos par an 1tJournal of genocide research (Online),x1469-9494 aJournal of genocide research‎bPrint aGénocidexRecherchexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=56G&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713431069db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1999) -....cParisdMagasins/AnnexeeP 8° 6534 aZSAB aexempb201212 aDEW 90901112cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200003000180207003100210210004900241326001800290606004300308606005000351710005300401801003000454801002300484802000700507856006400514856007700578955007000655992001600725992002100741108057607000115222920130319051554.01 a1740-0228 aissn17400228 a0001152229 a20060906a20069999k y0frey0103 ba0 aeng aGB ay 0  ar aaia 0uu 10aJournal of global history 0aVol. 1, pt. 1 (Mar. 2006)- aCambridgecCambridge University Pressd2006- a3 n°s par an aMondialisationxHistoirexPériodiques aDéveloppement humainxHistoirexPériodiques02aLondon School of Economics and Political Science 3aFRbAbesc20080514gAFNOR 3aFRbISSNc20060720 a024 uhttp://journals.cambridge.org/action/displayJournal?jid=JGH zContenu: sommaires et résumés d'articles depuis le vol. 1 no. 1 (2006)1 bvol. 1 no. 1 (mar-2006) -....cParisdMagasins/AnnexeeP 8° 7048 aDEW 900-907 aGEO RQ Universel01350nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003200139210003500171326001600206452005300222530003200275606002800307856016100335856006000496856010900556856010800665955008300773955009200856972000900948991001800957992003300975992001601008039987884000002537620131004125754.01 a0891-1762 aFNSP167319 a19910219a19879999 ba0 aeng aUS aaha 10aJournal of global marketing aNew YorkcHaworth Pressd1987- aTrimestriel 1tJournal of global marketing (Online),x1528-6975 aJournal of global marketing aMarketingxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.haworthpress.com/store/product.asp?sid=SQ2J5J6A98118LTCWVM1VXRB39KGDS57&sku=J042&detail=TOCList#TOCList zContenu : sommaires depuis le vol. 1, n° 1/2 1987/19884 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t792304011db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 20 no. 1 (2006) -vol. 21 no. 4 (2008)cParisdMagasins/AnnexeeP 4° 72171 bvol. 1 no. 1/2 (aut/hiv-1987) -vol. 19 no. 4 (2006)cParisdMagasins/AnnexeeP 8° 5115 aZSAB aexempb201106 aGEO RS Sans aspect régional aDEW 650-65801106nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154210003900192326002300231440003300254517004000287606005000327606004800377856010900425856010800534955008400642972000900726991001800735992002300753992001600776040001792000006057520130319051554.01 a0897-7186 aFNSP277509 a0000060575 a19900101b19892007 ba0 aeng aUS aaha 10aJournal of health & social policy aNew YorkcHaworth Pressd1989-2007 a6 à 8 n°s par an 1tSocial work in public health10aJournal of health and social policy aPolitique sanitaireyEtats-UnisxPériodiques aMédecine socialeyEtats-UnisxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t904385165db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1989) -vol. 22 no. 3/4 (2007)cParisdMagasins/AnnexeeP 8° 5800 aZSAB aexempb201111 aGEO RC2 Etats-Unis aDEW 360-36300989nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210005600189326001600245517000800261606003900269606004700308801002100355856009000376856010800466955007000574972000900644991001800653992001600671038735741000002538120130319051554.01 a0022-166X aFNSP167330 a0000025381 a19900101a19669999 ba0 aeng aUS aahu 14aThe Journal of human resources aMadison, Wis.cUniversity of Wisconsin Pressd1966- aTrimestriel10aJHR aPersonnelxDirectionxPériodiques aDiscrimination dans l'emploixPériodiques 3aFRbCCN0022-166X4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0022166X.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1966) -....cParisdMagasins/AnnexeeP 8° 2858 aZPAY aexempb200908 aDEW 650-65801263nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002800163207003100191210003700222326001600259606003600275676001100311801001300322856010300335856010800438856010900546856010800655955007000763955007100833972000900904992001200913067779514000068028120130319051554.01 a1475-4835 a0000680281 a a20029999 fre 01 ba0 aeng aGB a 0  ar aah z 0 10aJournal of human rights 1aVol. 1, no. 1 (Mar. 2002)- aLondoncCarfax Publishingd2002- aTrimestriel aDroits de l'hommexPériodiques a341.48 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=300256 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713431618db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 341.481 bvol. 3 no. 1 (mar-2004) - ....cParisdMagasins/AnnexeeP 8° 6774 aZPAY aDEW 32301178nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004900154210002400203326002300227326002900250607004100279607005400320801002100374856004300395856004800438856010900486856010800595955007000703991001800773992004900791992001200840039402894000002544620130319051554.01 a0308-6534 aFNSP167856 a0000025446 a19900101a19729999 ba0 aeng aGB aaiu 10aJournal of imperial and Commonwealth history aLondoncCassd1972- aTrimestrielb2006- a3 n°s par anb????-2005 aCommonwealthxHistoirexPériodiques aGrande-BretagnexColoniesxHistoirexPériodiques 3aFRbCCN0308-65344 uhttp://www.frankcass.com/jnls/jich.htm zContenu : sommaires depuis le vol. 24, n°14 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713635365db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 4 no. 1 (oct-1975) -....cParisdMagasins/AnnexeeP 8° 3904 aexempb201001 aGEO RP Autres groupes de pays ou de régions aDEW 90901455nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154210002900190326001600219606002800235606005200263801002100315856007100336856007300407856010100480856010800581856009000689856010800779955013500887957007201022972000901094992001401103038735938000002545020131202101903.01 a0022-1821 aFNSP167862 a0000025450 a19900101a19529999 ba0 aeng aGB aahu 10aJournal of industrial economics aOxfordcBlackwelld1952- aTrimestriel aIndustriexPériodiques aHistoire économiquez20e sièclexPériodiques 3aFRbCCN0022-18214 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0022-1821 zContenu : sommaires et résumés depuis le vol. 44, n°3, sept. 19964 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100864 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00221821.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 2 (1955) -vol. 3 no. 3 (1955) ; vol. 11 no. 2 (avr-1963) -vol. 60 no. 4 (déc-2012)cParisdMagasins/AnnexeeP 8° 19991 bvol. 1 (1952) -vol. 41 (1992)cPArisdMagasins/AnnexeeP Index 0707 aZPAY aDEW 338.401208nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000350013921000310017432600150020543000380022060600440025871000500030280100210035285601010037385601080047485601080058285601080069095500870079897200090088599200120089403911046X000002545420131104155944.01 a0165-5515 aFNSP167868 a19900101a19799999 ba0 aeng aGB aagu 10aJournal of information science aLondoncBowker-Saurd1979- aBimestriel 1aInformation scientist (0020-0263) aSciences de l'informationxPériodiques02aInstitute of Information Scientists (Londres) 3aFRbCCN0165-55154 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=103633 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bConservation limitée aux 5 dernières annéescParisdMagasins/AnnexeeP 4° 6342 aZPAY aDEW 02001120nas0 2200325 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109200005500127207002600182210004700208326001600255430002800271517005100299606006500350606004500415606005400460801003000514856004200544856008400586955006600670972000900736992002100745992001200766992001600778129103977000115651620130319051554.0 a0001156516 a20081117a20079999k frey0103 ba0 aeng aUS ay 10aJournal of information technology & politicseJITP 0aVol. 4, no. 1 (2007)- aBinghamton, N.Y.cThe Haworth Pressd2007- aTrimestriel 1tJournal of e-government10aJournal of information technology and politics aTechnologie de l'informationxAspect politiquexPériodiques aCommunication en politiquexPériodiques aAdministration publique et InternetxPériodiques 3aFRbAbesc20081117gAFNOR4 uhttp://www.jitp.net/m_archive.php?p=1 zContenu: sommaire des numéros et texte intégral depuis le vol. 4 no. 1 (2007)1 bvol. 4 no. 1 (2007) -....cParisdMagasins/AnnexeeP 4° 7234 aZSAB aGEO RQ Universel aDEW 004 aDEW 320-32101071cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200003900180207003000219210004900249326002300298326002900321326002300350606003700373801003000410801002300440802000700463856006400470856009600534955007000630972000900700992001200709104757701000103502820130319051554.01 a1744-1374 aissn17441374 a0001035028 a20040507a20059999k y0frey0103 ba0 aeng aGB a 0  ar aaia 0uu 10aJournal of institutional economics 0aVol. 1, no 1 (June 2005)- aCambridgecCambridge University Pressd2005- aTrimestrielb2010- a3 n°s par anb2006-2009 aSemestriel en 2005 aEconomie politiquexPériodiques 3aFRbAbesc20060712gAFNOR 3aFRbISSNc20060706 a024 uhttp://journals.cambridge.org/action/displayJournal?jid=JOI zContenu : résumés et sélection d'articles en texte intégral depuis le vol.1, n°1, 20051 bvol. 1 no. 1 (jun-2005) -....cParisdMagasins/AnnexeeP 8° 6915 aZSAB aDEW 33001620nas 2200397 i 450 001001000000002001100010005001700021011001600038035001500054035001500069100004100084101000800125102000700133110001600140200005500156207005800211210007500269326001600344430004900360440005100409607005800460607005800518607002800576710006000604801002100664856003600685856004800721856009000769856010800859955009600967957009901063972000901162991001801171992002101189992001201210038736020000000469020130319051554.01 aa0022-1937 aFNSP106211 a0000004690 a19900101b19702000 ba0 aeng aUS aahu 10aJournal of interamerican studies and world affairs 1aVol. 12, no. 1 (jan-1970) -vol. 42, no. 4 (oct- 2000) aCoral Gables, Fla.cUniversity of Miami, North-South Centerd1970-2000 aTrimestriel 1aJournal of inter-American studiesx0885-3118 1tLatin American politics and societyx1531-426X aAmérique latinexRelationsyEtats-UnisxPériodiques aEtats-UnisxRelationsyAmérique latinexPériodiques aAmériquexPériodiques02aInstitute of International Studies (Coral Gables, Fla.) 3aFRbCCN0022-19374 uhttp://www.rienner.com/laps.htm zContient les sommaires de l'année en cours4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00221937.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol.13 no. 3/4 (jul/oct-1971) -vol. 42 no. 4 (hiv-2000)cParisdMagasins/AnnexeeP 8° 21851 b(1959/1969), (1970/1989), vol. 31 (1989)- vol. 40 (1998)cParisdMagasins/annexeeP Index 0642 aZSAB aexempb201105 aGEO RB Amérique aDEW 98001275nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004500154210003900199326001600238606002700254801002100281856005900302856007200361856010100433856010800534856009000642856010800732955007000840972000900910991001800919992001200937038736047000005404420130319051554.01 a0022-1953 aFNSP255425 a0000054044 a19900101a19709999 ba0 aeng aUS aaha 14aThe Journal of interdisciplinary history aCambridge, Mass.cMIT Pressd1970- aTrimestriel aHistoirexPériodiques 3aFRbCCN0022-19534 uhttp://mitpress.mit.edu/journal-home.tcl?issn=00221953 zContenu : sommaires et résumés depuis le vol. 25, n°1, hiv. 19964 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=102109 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00221953.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (aut-1970) -....cParisdMagasins/AnnexeeP 8° 2959 aZPAY aexempb201106 aDEW 90901793nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210006400191300006000255326001500315430006200330530004700392606004400439676000800483801002100491856012800512856010800640955006700748955025700815957036201072972000901434992001201443038736098000002555820130319051554.01 a0022-197X aFNSP168089 a0000025558 a19900101a19529999 ba0 aeng aUS aaju 10aJournal of international affairs aNew YorkcSchool of International and Public Affairsd1952- aLa Bibliothèque n'a pas reçu les années 1995 et 1996 aSemestriel 1aColumbia journal of international affairsxISSN 1045-3466 0aJournal of international affairsbNew York aRelations internationalesxPériodiques a327 3aFRbCCN0022-197X4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=poh&jid=JIA&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 6 no. 1 (1952) -vol. 45 no. 1 (1991) ; vol. 47 no. 1 (1993)- vol. 48 no. 1 (1994) ; vol. 51 no. 1 (1997) -vol. 51 no. 2 (1998) ; vol. 53 no. 1 (1999) -....cParisdMagasins/AnnexeeP 8° 1167wManquant : vol. 47, no. 2, 1993 ; vol. 48, no. 2, 19941 b(1947) -(1950) ; (1951) -(1954) ; (1955) -(1957) ; (1958) -(1960) ; (1961) -(1963) ; (1964) -(1966) ; (1967) -(1969) ; (1970) -(1972)cParisdMagasins/Annexezces index se trouvent respectivement dans le no. 2 des vol. 4 (1950) ; vol. 8 (1954) ; vol. 11 (1957) ; vol. 14 (1960) ; vol. 17 (1963) ; vol. 20 (1966) ; vol. 23 (1969) ; vol. 26 (1972) de la revue aZPAY aDEW 32701883nas 2200457 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200010000154210003100254300005200285326002500337326002900362326002600391326002700417326002800444517000900472606004600481606003900527710004300566711006900609801002100678856002400699856006500723856009000788856010800878856010300986856010801089955007101197955009101268972000901359991001801368992001601386992002301402038827506000002556320130319051554.01 a0047-2506 aFNSP168099 a0000025563 a19900101a19709999 ba0 aeng aUS aahu 10aJournal of international business studiesethe journal of the Academy of International Business aColumbia, Sc.cJIBSd1970- aA partir de 2003 publié par Palgrave Macmillan a9 n°s par anb2010- a8 n°s par anb2008-2009 aBimestrielb2003-2007 aTrimestrielb1990-2002 a3 nos par anb1970-198910aJIBS aEntreprises multinationalesxPériodiques aGestion d'entreprisexPériodiques02aAcadémie des affaires internationales02aUniversity of South CarolinabCollege of Business Administration 3aFRbCCN0047-25064 uhttp://www.jibs.net zContenu : sommaires et résumés depuis le vol.1, n°1, 19794 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00472506.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=110790 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 34 no. 1 (jan-2003) -....cParisdMagasins/AnnexeeP 4° 69721 bvol. 11 no. 1 (pri/ete-1980) -vol. 33 no. 4 (2002)cParisdMagasins/AnnexeeP 8° 4352 aZPAY aexempb201011 aDEW 650-658 aGEO RC2 Etats-Unis01212nas 2200349 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000390015420700300019321000400022321000310026332600220029432600280031632600270034467600080037167600120037980100210039180100050041285601000041785600720051795500670058995501790065697200090083599100180084403873611X000017899020130906101015.01 a0022-1996 aFNSP668730 a0000178990 a19900101a19719999 ba0 aeng aNL aahu 10aJournal of international economics 1aVol. 1, n. 1 (fev-1971) - aAmsterdamcNorth-Hollandd1971-199X aAmsterdamcElsevierd199X- aBimestrielb1998- a8 nos par anb1982-1997 aTrimestrielb1971-1981 a330 aDEW 330 3aFRbCCN0022-1996 0a4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/00221996 zContenu : accès aux sommaires de la revue depuis le volume 1, 19701 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3301 bvol. 1 no. 1 (1971) - ....cParisdMagasins/AnnexeeP 8° 2941wManquants : vol. 20, no. 1/2, 1986 ; vol. 21, no. 3/4, 1986 ; vol. 22, no. 3/4, 1987 à vol. 33, no. 3/4, 1992 aZPAY aexempb20110601455nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000224001642070029003882100094004173260016005115100066005276060044005937100086006377110033007238010013007568560128007698560108008979550070010059720009010759920021010849920012011050000617132000061713220130319051554.01 a1488-3473 a0000617132 a a20009999 fre 01 ba0 amul aCA a 0  ar aah z 0 10aJournal of international migration and integrationd=Revue de l'intégration et de la migration internationalefPrairie Centre of Excellence for Research on Immigration and integrationf=Centre d'excellence des Prairies 1aVol.1, n°1 (hiv. 2000)- aEdmontoncPrairie Centre of Excellence for Research on Immigration and Integrationd2000- aTrimestriel10aRevue de l'integration et de la migration internationalezfre aEmigration et immigrationxPériodiques02aCentre d'excellence des Prairies pour la recherche en immigration et intégration02aMetropolis Projectc(Canada) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=LTB&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (hiv-2000) -....cParisdMagasins/AnnexeeP 8° 6760 aZSAB aGEO RQ Universel aDEW 32500941nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012310600060014111000160014720000470016321000490021032600180025960600430027760600410032067600120036180100130037385601000038685600850048695500710057197200090064203931250X000048178220130319051555.01 a0261-5606 a0000481782 a a19829999k fre ba0 aeng aGB a 0  ar aag z 0 10aJournal of international money and finance aOxfordaNew-YorkaAmsterdamcElsevierd1982- a8 n°s par an aFinances internationalesxPériodiques aCommerce internationalxPériodiques aDEW 332 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/02615606 zContenu : accès aux sommaires et résumés de la revue depuis le volume 1, 19821 bvol. 1 no. 1 ( fev-2002) -....cParisdMagasins/AnnexeeP 8° 6640 aZPAY01132cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200004600180207002600226210004200252326001500294430004200309517000900351606003600360606004000396606004400436801003000480801002300510802000700533856004200540856006500582955006600647992001200713992003300725125000499000117938720130319051555.01 a1755-0882 aissn17550882 a0001179387 a20080618a20089999k y0frey0103 ba0 aeng aGB ay 0  ar aaja 0uu 10aJournal of international political theory 0aVol. 4, no. 1 (2008)- aEdinburghcEdinburgh University Press aSemestriel 1tPolitics and ethics reviewx1743-453X10aJIPT aScience politiquexPériodiques aPhilosophie politiquexPériodiques aRelations internationalesxPériodiques 3aFRbAbesc20090610gAFNOR 3aFRbISSNc20090602 a024 uhttp://www.euppublishing.com/loi/jipt zContient : sommaires des numéros depuis vol. 1 no. 1 (2005)1 bvol. 4 no. 1 (2008) -....cParisdMagasins/AnnexeeP 8° 7113 aDEW 320 aGEO RS Sans aspect régional01216cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200004600180207003200226210006600258326001600324606004900340606004400389606003800433801003000471801002300501802000700524856010300531856010800634955007000742972000900812992002100821992001200842116904240000120238520130319051555.01 a1750-2977 aissn17502977 a0001202385 a20070807a20079999k y0frey50 ba0 aeng aGB ay 0  ar aaha 0uu 10aJournal of intervention and statebuilding 0aVol. 1, no. 1 (March 2007)- aAbingdon, Oxfordshire, UKcRoutledge, Taylor & Francisd2007- aTrimestriel aReconstruction d'après-guerrexPériodiques aSécurité internationalexPériodiques aMaintien de la paixxPériodiques 3aFRbAbesc20080516gAFNOR 3aFRbISSNc20080429 a014 uhttps://acces-distant.sciences-po.fr/fork?http://eJournals.ebsco.com/Journal2.asp?JournalID=712282 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bVol. 4 no. 1 (mar-2010) -....cParisdMagasins/AnnexeeP 8° 7150 aZPAY aGEO RQ Universel aDEW 32001066nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210004300185326001500228606002400243712003800267856003300305856010600338856010100444856010800545955007000653972000900723991001800732992001400750040085856000009307320130319051555.01 a0955-2340 aFNSP410464 a0000093073 a19900101a19909999 ba0 aeng aGB aaja 10aJournal of Islamic studies aOxfordcOxford University Pressd1990- aSemestriel aIslamxPériodiques02aOxford Centre for Islamic Studies4 uhttp://www.oup.co.uk/islamj/ zContenu : sommaires depuis le vol. 7, n°1, janv. 1996 ; résumés depuis le vol. 8, n°2, juil. 1997 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=106097 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 4 no. 1 (jan-1993) -....cParisdMagasins/AnnexeeP 8° 5941 aZPAY aexempb201210 aDEW 20-2901451nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210002400189300003800213326001800251430005000269606003700319607003600356710006400392856004200456856004800498856010300546856010800649856010900757856010800866955007100974972000901045992002301054992001201077036740497000012986520130319051555.01 a1353-1042 aFNSP528262 a0000129865 a19940614a19949999 ba0 aeng aGB aaia 14aThe Journal of Israeli history aLondoncCassd1994- aN'a pas paru en 1999,2000,et 2002 a3 n°s par an 1aStudies in zionism,x0084-5523 < P 8° 4549 > aSionismexHistoirexPériodiques aIsraëlxHistoirexPériodiques02aInstitute for Research in the History of Zionism (Tel-Aviv)4 uhttp://www.frankcass.com/jnls/jih.htm zContenu : sommaires depuis le vol. 17, n°14 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=110528 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713720568db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 15 no. 1 (pri-1994) -....cParisdMagasins/AnnexeeP 8° 4549 aZPAY aGEO RG2.15 Israël aDEW 95601029nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210004800186326001500234607002400249676000800273712004300281856009000324856010800414955006600522955006700588972000900655991001800664992002100682992001200703038900262000016165020130319051555.01 a0095-6848 aFNSP621490 a0000161650 a19900101a19749999 ba0 aeng aUS aaja 10aJournal of Japanese studies aSeattlecJournal of Japanese studiesd1974- aSemestriel aJaponxPériodiques a95002aSociety for Japanese Studies (Seattle)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00956848.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9501 bvol. 20 no. 1 (1994) -....cParisdMagasins/AnnexeeP 8° 6142 aZCAD aexempb201202 aGEO RI3.22 Japon aDEW 95201159nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210005400185326001600239606003800255801002100293856012800314856010800442856009000550856010800640955007000748972000900818991001800827992001200845039696537000002578220130319051555.01 a0734-306X aFNSP168728 a0000025782 a19900101a19839999 ba0 aeng aUS aahu 10aJournal of labor economics aChicago, Ill.cUniversity of Chicago Pressd1983- aTrimestriel aEconomie du travailxPériodiques 3aFRbCCN0734-306X4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=JLB&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0734306X.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1983) -....cParisdMagasins/AnnexeeP 8° 4715 aZPAY aexempb201106 aDEW 33101150nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003000139210005100169326001600220452005100236530003000287606003800317606004200355710006900397801002100466856010300487856010800590955006600698972000900764991001800773992002100791992001200812039149730000002571820130911121232.01 a0195-3613 aFNSP168581 a19900101a19809999 ba0 aeng aUS aahu 10aJournal of labor research aFairfax, Va.cJournal of labor researchd1980- aTrimestriel 1tJournal of labor research (Online),x1936-4768 aJournal of labor research aEconomie du travailxPériodiques aRelations industriellesxPériodiques02aGeorge Mason Universityc(Fairfax, Va.)bDepartment of Economics 3aFRbCCN0195-36134 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=110581 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1980) -....cparisdMagasins/AnnexeeP 8° 4401 aZPAY aexempb201106 aGEO RQ Universel aDEW 33101057cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200003700174210007000211326002300281326002900304606003200333606004100365606003100406801003000437801002300467802000700490856005200497856008100549955006600630972000900696992001400705070086877000113074820130319051555.01 a1569-2159 aissn15692159 a0001130748 a20030203a20029999k y0frey0103 ba0 aeng aNL ay  aahu uu 10aJournal of language and politics aAmsterdamaPhiladelphiacJohn Benjamins Publishing Companyd2002- aTrimestrielb2010- a3 n°s par anb2002-2009 aCommunicationxPériodiques aPolitique linguistiquexPériodiques aLinguistiquexPériodiques 3aFRbAbesc20080212gAFNOR 3aFRbISSNc20030203 a0j4 uhttp://benjamins.com/#catalog/journals/jlp/main zContient le sommaire et le résumé des n°s depuis le vol. 1, n° 1 de 20021 bvol. 5 no. 1 (2006) -....cParisdMagasins/AnnexeeP 8° 7002 aZSAB aDEW 42-4901366nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154210004600192326001600238607006200254607003500316676000800351801002100359856006400380856005400444856009000498856010800588955006600696955007000762957010500832972000900937991001800946992002800964992001200992038736306000002567420130319051555.01 a0022-216X aFNSP168363 a0000025674 a19900101a19699999 ba0 aeng aGB aahu 10aJournal of Latin American studies aLondoncCambridge University Pressd1969- aTrimestriel aAmérique latinexPolitique et gouvernementxPériodiques aAmérique latinexPériodiques a980 3aFRbCCN0022-216X4 uhttp://journals.cambridge.org/action/displayJournal?jid=LAS zContenu : sommaires depuis le vol. 29, n°1, 19974 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0022216X.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9801 bvol. 1 no. 1 (mai-1969) -....cParisdMagasins/AnnexeeP 8° 27121 bvol. 1 (1969) -vol. 15 (1983) ; vol. 16 (1984) -vol. 25 (1993)cParisdMagasins/AnnexeeP Index 0594 aZSAB aexempb201105 aGEO RD Amérique latine aDEW 98001615nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154207002400189210005400213326002300267326002600290517003300316606003600349606004900385676000800434710003800442801002100480856005100501856005900552856009000611856010800701955006700809955006000876957020700936972000901143991001801152992002301170992001201193038736314000002567720130319051555.01 a0022-2186 aFNSP168368 a0000025677 a19900101a19589999 ba0 aeng aUS aaju 14aThe Journal of law & economics 1aVol. 1 (Oct. 1958)- aChicago, Ill.cUniversity of Chicago Pressd1958- aTrimestrielb2007- aSemestrielb1958-200610aJournal of law and economics aDroityEtats-UnisxPériodiques aDroit des affairesyEtats-UnisyPériodiques a34602aUniversity of ChicagobLaw School 3aFRbCCN0022-21864 uhttp://www.journals.uchicago.edu/JLE/home.html zContenu : sommaires depuis le vol. 38, n°1, avr. 19954 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00222186.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 3461 bvol. 1 (1958) -....cParisdMagasins/AnnexeeP 8° 19171 b(1958) -(1967) ; (1968) -(1972) ; (1983) -(1991)cParisdMagasins/AnnexeeP 8° 1917zces index se trouvent respectivement dans les vol. 11, avril 1968, vol 16, avril 1973, vol 34, oct. 1991 de la revue aZGRA aexempb200908 aGEO RC2 Etats-Unis aDEW 34901071nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154207002500188210005900213326001600272606003600288676000800324710002700332801002100359856004400380856005200424955011900476957007600595972000900671991001800680992002300698992001200721039716554000002568120130319051555.01 a0047-2506 aFNSP168373 a0000025681 a19900101a19839999 ba0 aeng aUS aahy 14aThe Journal of law & politics 1avol. 1 no. 1 (1983)- aCharlottesville, Va.cJournal of law & politicsd1983- aTrimestriel aDroityEtats-UnisxPériodiques a34602aUniversity of Virginia 3aFRbCCN0749-22274 uhttp://www.student.virginia.edu/jalopy/4 zContenu : sommaires depuis le vol 5, n°3, 19991 bvol. 4 no. 3 (hiv-1988) -vol. 18 no. 4 (2002) ; vol. 25 no. 1 (hiv-2009) -....cParisdMagasins/AnnexeeP 8° 51661 bvol. 1 (1983) -vol. 6 (1990)zse trouve dans le vol. 7 no. 1 (aut-1990) aZSAB aexempb201011 aGEO RC2 Etats-Unis aDEW 34901615cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157110001600175200004600191207003300237210005000270326001600320517004800336517000800384606003600392606004900428606004700477801003000524801002300554802000700577856009000584856010800674856021100782856010800993955007101101992003301172992001201205037430963000113351720130614103733.01 a8756-6222 accn8756-6222 aissn87566222 a0001133517 a19850124a19859999k y0frey0103 ba0 aeng aUS ay 0  aaja 0uu 10aJournal of law, economics, & organization 0aVol. 1, no. 1 (spring 1985)- aNew Haven, ConncYale University Pressd1985- aTrimestriel10aJournal of law, economics, and organization10aLEO aDroityEtats-UnisxPériodiques aEconomie politiqueyEtats-UnisxPériodiques aSociologie des organisationsxPériodiques 3aFRbAbesc20070412gAFNOR 3aFRbISSNc20070412 a014 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/87566222.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://international.westlaw.com/search/default.wl?spa=intiep-000&rs=WLIN8.05&fn=_top&sv=Split&db=JLECONORG&vr=2.0&rp=%2fsearch%2fdefault.wl&mt=WestlawInternational zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 23 no. 1 (avr-2007) -....cParisdMagasins/AnnexeeP 8° 7017 aGEO RS Sans aspect régional aDEW 34901368nls 2200361 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000070001642070025002342100050002593000088003093260015003973360056004123370071004684520074005396060036006136060049006496060047006988010013007458560090007588560108008489550005009569920033009619920012009940000816058000081605820130319051555.01 a1465-7341 a0000816058 a a19859999k fre 01 ba0 aeng aUS az aaj z  adr 10aJournal of law, economics & organizationbRessource électronique 1aN°1 (Spring 1985) - aNew Haven, ConncYale University Pressd1985- aTexte intégral depuis le vol. 1, n°1, Spring 1985 et jusqu'au vol.13, 1997 inclus aSemestriel aDonnées textuelles accessibles uniquement en ligne aTéléchargement de fichiers TIFF, PDF (recommandé) ou PostScript 1tJournal of law, economics & organization (Texte imprimé),x8756-6222 aDroityEtats-UnisxPériodiques aEconomie politiqueyEtats-UnisxPériodiques aSociologie des organisationsxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/87566222.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RS Sans aspect régional aDEW 34901066nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003600139210005800175326001500233517003000248530003600278606003600314710004600350711003800396801002100434856009000455856010800545955008100653991001800734992001200752037657429000002568420130918150856.01 a0748-0814 aFNSP168379 a19900101a19839999 ba0 aeng aUS aaju 14aThe Journal of law and religion aSt Paul, Mn.cHamline University School of Lawd1983- aSemestriel10aJournal of law & religion14aThe Journal of law and religion aReligion et droitxPériodiques02aCouncil on Religion and Lawc(Etats-Unis)02aSchool of Law (Saint Paul, Minn.) 3aFRbCCN0748-08144 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/07480814.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1983) -vol. 9 no. 2 (1992)cParisdMagasins/AnnexeeP 8° 4952 aexempb201106 aDEW 32301706nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210002900185326001600214430005000230452005400280530004100334606003900375801002100414856014100435856019500576856023300771856020901004955011501213972000901328991001901337992001201356039315096000002571520130920153849.01 a0263-323X aFNSP168578 a0000025715 a19900101a19829999 ba0 aeng aGB aaju 10aJournal of law and society aOxfordcBlackwelld1982- aTrimestriel 1aBritish journal of law and societyx0306-3704 1tJournal of law and society (Online)‎x1467-6478 aJournal of law and society‎bPrint aDroitxAspect socialxPériodiques 3aFRbCCN0263-323X4 uhttp://www.blackwellpublishing.com/journal.asp?ref=0263-323X&site=1zContenu : sommaires et résumés depuis le vol. 24, n°1, mars 19974 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0263323x.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=7Q3&site=ehost-livezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www3.interscience.wiley.com/journal/118540112/homezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 9 no. 1 (ete-1982) -....cParisdMagasins/AnnexeeP 8° 4049wmanquent : vol. 24 (1997) à vol. 25 (1998) aZSAB aexemplb200201 aDEW 34001234nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171100016001242000033001402100054001733260015002274520084002425300033003266060024003596060036003837120038004198010021004578560108004788560195005869550086007819910018008679920023008859920012009080000055776000005577620130607142402.01 a0047-2530 aFNSP260959 a19900101a19729999 ba0 aeng aUS aaju 14aThe Journal of legal studies aChicago, Ill.cUniversity of Chicago Pressd1972- aSemestriel 1tThe journal of legal studies (Online. University of Chicago. Press.)x1537-536604aThe Journal of legal studies aDroitxPériodiques aDroityEtats-UnisxPériodiques02aUniversity of ChicagobLaw School 3aFRbCCN0047-25304 uhttp://www.journals.uchicago.edu/JLS/home.htmlzContenu : sommaires depuis le vol. 24, n°1, janv. 19954 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00472530.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1972) -vol. 27 no. 2 (1998)cParisdMagasins/AnnexeeP 8° 3149 aexempb200911 aGEO RC2 Etats-Unis aDEW 34901024nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003900139210002400178326001600202606002400218606003800242606002900280856004200309856004700351856010400398856011500502955006600617972000900683991001800692992001200710036744034000018347720130313085410.01 a1357-2334 aFNSP681986 a19900101a19959999 ba0 aeng aGB aaha 14aThe journal of legislative studies aLondoncCassd1995- aTrimestriel aDroitxPériodiques aPouvoir législatifxPériodiques aParlementsxPériodiques4 uhttp://www.frankcass.com/jnls/jls.htm zContenu : sommaires depuis le vol. 1, n°14 uhttps://acces-distant.sciences-po.fr/http/www.informaworld.com/smpp/title~content=t713719040~db=all zAccès au texte intégral réservé aux lecteurs inscrits à la Bibliothèque via Taylor & Francis depuis 19971 bvol. 1 no. 1 (1995) -....cParisdMagasins/AnnexeeP 8° 6221 aZSAB aexempb201212 aDEW 32801257nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003900139207004500178210002900223300003900252326003300291440003400324606004000358606003700398606003600435710004800471801002100519856011300540955012400653957009900777972000900876991001800885992001600903039511022000002571620130515180358.01 a0363-2873 aFNSP168579 a19900101b19779999 ba0 aeng aUS aahu 14aThe Journal of libertarian studies 1avol. 1 no. 1 (1977)-vol. 21 no. 4 (2007) aNew YorkcCLSd1977-2007 aPas de parution en 1984 et en 1993 aTrimestriel puis irrégulier 1tLibertarian papersx1947-6949 aPhilosophie politiquexPériodiques aEconomie politiquexPériodiques aScience politiquexPériodiques02aCenter for Libertarians Studiesc(New York) 3aFRbCCN0363-28734 uhttp://mises.org/journals/libertarianforum.aspzAccès libre au texte intégral depuis le vol. 1, no 1, 19771 bvol. 3 no.1 (1979) -vol. 11 no. 2, 1995 ; vol. 15 no. 1 (2000) -vol. 21 no 4 (2007)cParisdMagasins/AnnexeeP 8° 43531 bvol. 1 (1977) -vol. 10 (1992)cParisdMagasins/Annexezinclus dans le vol. 10 no. 2 (aut-1992) aZCAD aexempb201009 aDEW 320-32101299nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154207002700184210006600211210003100277326001600308606003300324606003700357712005900394801003000453801002300483856009600506856005900602856010000661856007700761955006000838972000900898991001800907992001200925039108244000110652320130319051555.01 a0164-0704 aFNSP168583 a0000025720 a19900101a19799999 ba0 aeng aUS aahu 10aJournal of macroeconomics 1avol. 1 (winter 1979) - aBaton Rouge, La.cLouisiana State University Pressd1979-2001 aAmsterdamcElsevierd2002- aTrimestriel aMacroéconomiexPériodiques aEconomie politiquexPériodiques02aCollege of Business Administrationc(Baton Rouge, La.) 3aFRbAbesc20070329gAFNOR 3aFRbISSNc200703294 uhttp://www.elsevier.com/wps/find/journaldescription.cws_home/622903/description#description zContenu : sommaires depuis le vol. 18, n°1, hiv. 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/01640704 zContenu : accès aux sommaires et aux résumés depuis le volume 1, 19711 bvol. 1 no. 1 (1979)cParisdMagasins/AnnexeeP 8° 4244 aZPAY aexempb201010 aDEW 33001202nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003000139207002700169210006600196210003700262326001600299606003300315606003700348712005900385801002100444856009600465856005900561856005800620856007700678955007000755972000900825991001800834992001200852039108244000002572020130313085410.01 a0164-0704 aFNSP168583 a19900101a19799999 ba0 aeng aUS aahu 10aJournal of macroeconomics 1avol. 1 (winter 1979) - aBaton Rouge, La.cLouisiana State University Pressd1979-2001 aAmsterdam‎cElsevier‎d2002- aTrimestriel aMacroéconomiexPériodiques aEconomie politiquexPériodiques02aCollege of Business Administrationc(Baton Rouge, La.) 3aFRbCCN0164-07044 uhttp://www.elsevier.com/wps/find/journaldescription.cws_home/622903/description#description zContenu : sommaires depuis le vol. 18, n°1, hiv. 19964 uhttp://www.sciencedirect.com/science/journal/01640704 zContenu : accès aux sommaires et aux résumés depuis le volume 1, 19711 bvol. 1 no. 1 (hiv-1979) -....cParisdMagasins/AnnexeeP 8° 4244 aZPAY aexempb201010 aDEW 33001163nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003400139210002900173326002700202326003900229452006300268530004900331606005600380606003900436676000800475801002100483856007100504856007300575955007000648972000900718991001800727992003100745992002100776992001600797038736438000002574020130709125859.01 a0022-2380 aFNSP168614 a19900101a19649999 ba0 aeng aGB aahu 10aJournal of management studies aOxfordcBlackwelld1964- a8 nos par an‎b2000- aDiverses périodicitésb1964-1999 1tJournal of management studies (Oxford. Online),x1467-6486 0aJournal of management studiesbOxford. Print aGestion d'entrepriseyGrande-BretagnexPériodiques aGestion d'entreprisexPériodiques a650 3aFRbCCN0022-23804 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0022-2380 zContenu : sommaires et résumés depuis le vol. 34, n°1, janv. 19971 bvol. 1 no. 1 (mar-1964) -....cParisdMagasins/AnnexeeP 8° 2085 aZSAB aexempb200908 aGEO RA4.02 Grande-Bretagne aGEO RQ Universel aDEW 650-65801169nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210005500187326001600242517000800258606003900266710007900305856004300384856005300427856012800480856010800608955009600716972000900812991001800821992001600839040264475000008394320130319051555.01 a1045-3695 aFNSP373547 a0000083943 a19900101a19899999 ba0 aeng aUS aaha 10aJournal of managerial issues aPittsburg, Kan.cPittsburg State Universityd1989- aTrimestriel10aJMI aPersonnelxDirectionxPériodiques02aUniversity of PittsburghbGladys A. Kelce School of Business and Economics4 uhttp://www.pittstate.edu/econ/jmi.html zContenu : sommaires depuis le vol. 8, no 1, 19964 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=JIU&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 2 no. 4 (hiv-1990) ; vol. 3 no. 4 (hiv-1991) -....cParisdMagasins/AnnexeeP 8° 5911 aZSAB aexempb201206 aDEW 650-65801456nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210005700179326002200236326002700258436009500285606002800380606002600408710003500434801002100469856012800490856010800618856009000726856010800816955006700924957009000991972000901081992001601090038736462000002574220130319051555.01 a0022-2429 aFNSP168617 a0000025742 a19900101a19369999 ba0 aeng aUS aagu 10aJournal of marketing aChicago, Ill.cAmerican Marketing Associationd1936- aBimestrielb2008- aTrimestrielb1936-2007 1aThe American marketing journal (0193-1806) et de The National marketing review (0190-9509) aMarketingxPériodiques aGestionxPériodiques02aAmerican Marketing Association 3aFRbCCN0022-24294 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=JMK&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00222429.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 26 no. 1 (1962) -....cParisdMagasins/AnnexeeP 4° 27111 b(jul-1946) -(avr-1951) ; (jul-1951) -(avr-1956)cParisdMagasins/AnnexeeP Index 0160 aZPAY aDEW 650-65801303nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210003000188326002200218326002700240517000800267606002800275710003500303801002100338856012800359856010800487856009000595856010800685955007000793957007700863972000900940992001600949038736470000005700220130319051555.01 a0022-2437 aFNSP265573 a0000057002 a19900101a19649999 ba0 aeng aUS aahu 10aJournal of marketing research aChicago, Ill.cAMAd1964- aBimestrielb2008- aTrimestrielb1964-200710aJMR aMarketingxPériodiques02aAmerican Marketing Association 3aFRbCCN0022-24374 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=MKR&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00222437.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 8 no. 1 (fev-1971) -....cParisdMagasins/AnnexeeP 4° 29911 bvol. 7 (1970) -vol. 12 (1975)zse trouve dans le vol.12 no. 4 (nov-1975) aZPAY aDEW 650-65801590nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210003400189326001800223430005800241606003800299606003800337710005500375801002100430856009000451856010800541856010100649856010800750856012800858856010800986955009101094972000901185991001801194992001601212038736489000002574520130319051555.01 a0022-2445 aFNSP168626 a0000025745 a19900101a19649999 ba0 aeng aUS aahu 10aJournal of marriage and family aMinneapolis, Mn.cNCFRd1964- a5 n°s par an 1aMarriage and family living (Menasha, Wis.)x0885-7059 aFamillexSociologiexPériodiques aMariagexSociologiexPériodiques02aNational Council on Family Relationsc(Etats-Unis) 3aFRbCCN0022-24454 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00222445.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=111076 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=JMA&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 37 no. 1 (fev-1975) -vol. 70 no. 5 (dec-2008)cParisdMagasins/AnnexeeP 8° 3614 aZPAY aexempb200911 aDEW 305-30600847nas 2200217 i 450 0010011000000020011000110050017000220110014000391000041000531010008000941020007001021100016001092000042001252100053001673260032002205300038002528010021002908560214003119550086005259910018006110000067748000006774820130605115554.01 a0022-250X a19900101a19719999 ba0 aeng aUS aaha 14aThe Journal of mathematical sociology aNew YorkcGordon and Breach Science Publ.d1971- aSemestriel puis trimestriel00aJournal of mathematical sociology 3aFRbCCN0022-250X4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713618269db=allzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1971) -vol. 11 no. 4 (1985)cParisdMagasins/AnnexeeP 8° 3083 aexempb20110601078cas0 2200325 450 001001000000002001100010005001700021011001400038020001900052035001500071100004100086101000800127102000700135105001800142110001600160200004200176207004300218210004700261326001600308607003100324710012600355801003000481801001500511856005200526856003700578955007300615972000900688992004300697992001200740109897536000104342020130319051555.01 a1825-0483 aUSb2006224061 a0001043420 a20061012a20059999 y0undy0103 ba0 aeng aIT a 0  aaha 0yy 00aJournal of Middle Eastern geopolitics 0aYear 1, vol. 1, n 1 (July/Sept. 2005)- aRomecGlobe Research and Publishingd2005- aTrimestriel aMoyen-OrientxPériodiques02aUniversità degli studi La Sapienza (Rome)bDipartimento di studi geoeconomici statistici storici per l'analisi regionale 3aFRbAbesc20061013gAFNOR 0bNICgAACR24 uhttp://padis2.uniroma1.it:81/ojs/index.php/JMEG zAccès libre au texte intégral.1 bvol. 1 no.1 (jul/sep-2005) -....cParisdMagasins/AnnexeeP 8° 6924 aZPAY aGEO RG Afrique du Nord et Moyen-Orient aDEW 95601064nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000063001502100057002133000098002703260016003683360058003843370063004424300047005054520049005526060037006018010013006388560090006519550005007419920016007460000470731000047073120130319051555.0 a0000470731 a a19899999k fre 01 ba0 aeng aUS az aah z  adr 14aThe Journal of military historyb[Ressource électronique] aWashington, D.C.cAmerican Military Instituted1989- aAccès au texte intégral (réservé aux sites de Sciences Po) jusqu'aux 3 dernières années aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tMilitary affairs [Ressource électronique] 1tThe Journal of military historyx(0899-3718) aHistoire militairexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/08993718.html1 r aDEW 355-35901433nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154210004600192326001600238607002600254607005300280676000800333801002100341856004200362856005400404856010100458856010800559856009000667856010800757955006600865955007000931972000901001991001801010992001901028992001201047038736640000002574820130319051555.01 a0022-278X aFNSP168631 a0000025748 a19900101a19639999 ba0 aeng aGB aahu 10aJournal of modern African studies aLondoncCambridge University Pressd1963- aTrimestriel aAfriquexPériodiques aAfriquexPolitique et gouvernementxPériodiques a960 3aFRbCCN0022-278X4 uhttp://uk.cambridge.org/journals/moa/ zContenu : sommaires depuis le vol. 35, n°1, 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101397 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0022278X.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9601 bvol. 1 no. 1 (mar-1963) -....cParisdMagasins/AnnexeeP 8° 2020 aZCAD aexempb201105 aGEO RE Afrique aDEW 96001037nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210005400188326001600242606003900258801002100297856005000318856005900368856009000427856010800517955007100625972000900696991001800705992001200723038736659000002574920130319051555.01 a0022-2801 aFNSP168635 a0000025749 a19900101a19299999 ba0 aeng aUS aahu 14aThe Journal of modern history aChicago, Ill.cUniversity of Chicago Pressd1929- aTrimestriel aHistoire universellexPériodiques 3aFRbCCN0022-28014 uhttp://www.journals.uchicago.edu/JMH/toc.html zContenu : sommaires depuis le vol. 67, n°1, mars 19954 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00222801.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 21 no. 1 (mar-1949) -....cParisdMagasins/AnnexeeP 8° 0087 aZPAY aexempb201101 aDEW 90900946nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154210002900192326002300221326002900244607003500273856010900308856010800417955007000525972000900595991001800604992002200622992001200644036741531000026949320130319051555.01 a1354-571X aFNSP932488 a0000269493 a19990401a19959999 ba0 amul aGB aaha 10aJournal of modern Italian studies aLondoncRoutledged1995- aTrimestrielb2003- a3 n°s par anb1998-2002 aItaliexHistoirexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713699215db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 1 (mar-1998) -....cParisdMagasins/AnnexeeP 8° 6469 aZSAB aexempb201212 aGEO RA6.03 Italie aDEW 94501054nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210007900188326002700267326002900294326003000323530004400353606002600397606002700423856010000450856008900550955008300639991001800722992001200740039380688000020029720130409154303.01 a0304-3932 aFNSP731382 a0000200297 a19900101a19759999 ba0 aeng aNE aaga 10aJournal of monetary economics aAmsterdam‎aNew York‎aLondon‎cNorth-Holland‎cElsevier‎d1975- a8 nos par an‎b2002- aBimestriel‎b1981-2001 aTrimestriel‎b1975-198000aJournal of monetary economics‎bPrint aMonnaiexPériodiques aFinancesxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/03043932 zContenu : accès aux sommaires et aux résumés de la revue depuis le volume 1, 19751 bvol. 1 no. 1 (1975) -vol. 15 no. 1 (1985)cParisdMagasins/Annexe:eP 8° 4015 aexempb201303 aDEW 33201243nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210005500195326001600250606002600266606003900292606002700331801002100358856009000379856010800469856010300577856010800680955009000788972000900878991001800887992001200905038736748000002575420131202102212.01 a0022-2879 aFNSP168646 a0000025754 a19900101a19699999 ba0 aeng aUS aahu 10aJournal of money, credit and banking aColumbus, OhiocOhio State University Pressd1969- aTrimestriel aBanquesxPériodiques aPolitique monétairexPériodiques aFinancesxPériodiques 3aFRbCCN0022-28794 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00222879.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=711952 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 2 (mai-1969) -vol. 44 no. 8 (dec-2012)cParisdMagasins/AnnexeeP 8° 2821 aZPAY aexempb201010 aDEW 33201569nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210002800193326002300221326002900244326002600273430006200299606002400361710005000385856012800435856010800563856010300671856010800774856010900882856010800991955006701099972000901166991001801175992001401193036748382000019061020130319051555.01 a1360-2004 aFNSP704975 a0000190610 a19900101a19969999 ba0 aeng aAE aaha 10aJournal of Muslim minority affairs aAbingdoncCarfaxd1996- aTrimestrielb2009- a3 n°s par anb2005-2008 aSemestrielb1996-2004 1aJournal - Institute of Muslim Minority Affairsx0266-6952 aIslamxPériodiques02aInstitute of Muslim Minority Affairs (Jeddah)4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=LMM&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=104627 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713433220db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 16 no. 1 (1996) -....cParisdMagasins/AnnexeeP 8° 4597 aZCAD aexempb201009 aDEW 20-2901102nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000033001552100076001883260016002645300033002806060046003136060034003597120056003938010021004498560090004708560108005609550087006689920029007559920016007840000067749000006774920130319051555.01 a0022-2992 aFNSP314376 a0000067749 a19900101a19169999 ba0 aeng aUS aaha 14aThe Journal of Negro history aWashingtoncAssociation for the Study of Negro Life and History.d1916- aTrimestriel04aThe Journal of Negro history aNoirs américainsxHistoirexPériodiques aNoirsxHistoirexPériodiques02aAssociation for the Study of Negro life and History 3aFRbCCN0022-29924 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00222992.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 50 no. 4 (oct-1965) -vol. 67 no. 1 (1982)cParisdMagasins/AnnexeeP 8° 2261 aGEO RC Amérique du Nord aDEW 305-30601126nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210002400191326002400215326002700239326002800266607003400294856004200328856007200370856010900442856010800551955007000659972000900729991001800738992002800756992001600784036754897000023186020130319051555.01 a1362-9387 aFNSP823408 a0000231860 a19900101a19969999 ba0 aeng aGB aaha 10aJournal of North African studies aLondoncCassd1996- a5 nos par anb2013- aTrimestrielb1998-2012 a3 nos par anb1996-1997 aAfrique du NordxPériodiques4 uhttp://www.frankcass.com/jnls/nas.htm zContenu : sommaire depuis le vol. 1, no. 1 ; résumé du n° actuel4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713677623db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1996) -....cParisdMagasins/AnnexeeP 8° 6365 aZSAB aexempb201301 aGEO RG1 Afrique du Nord aDEW 961-96501876nls 2200301 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000062001642100033002262300005002593260013002643301166002776060030014437100037014738010013015108560023015239550005015469920012015519920011015630001206050000120605020130319051555.0 a0282-423X a0001206050 a a 9999k fre 01 ba0 aeng aSE ar aau z  adr 10aJournal of Official Statisticsb[Ressource électronique] aStockholmbStatistics Sweden a aInconnue aThe Journal of Official Statistics is published by Statistics Sweden, the national statistical office of Sweden. The journal publishes articles on statistical methodology and theory, with an emphasis on applications. It is an open access journal, which gives the right to users to read, download, copy, distribute, print, search, or link to the full texts of all articles. We encourage articles on the following topics: Methodologies and policies for the collection, processing, analysis, presentation, and distribution of statistical data. Examples of such topics are: sampling design; estimation; analytical uses of data; questionnaire design; quality control; data base management; confidentiality; ethics; dissemination; presentation of quality; training of statisticians; the role of statistics in today’s society; the relations between producers, users, and respondents; intra-organization collaboration; international statistical cooperation; and evaluation and identification of statistical needs. Articles may present theoretical contributions, interesting applications of existing methods, comparisons of different methods, or authoritative reviews. aStatistiquexPériodiques01aSuèdebStatistiska centralbyran 0aFRbFNSP4 uhttp://www.jos.nu/1 r aDEW 310 aGEO RS01514nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154207002600187210011800213326001600331607003100347676000800378710005200386712002200438801002100460856004100481856010600522856009000628856010800718955006600826955010000892957007200992972000901064991001801073992002501091992001201116039552381000002575320130319051555.01 a0377-919X aFNSP168640 a0000025753 a19900101a19719999 ba0 amul aUS aahu 10aJournal of Palestine studies 1avol. 1 no. 1 (1971) - aBerkeley, CAcUniversity of California Press for Kuwait University and the Institute for Palestine Studiesd1971- aTrimestriel aMoyen-OrientxPériodiques a95602aInstitut des études palestiniennesc(Beyrouth)02aKuwait University 3aFRbCCN0377-919X4 uhttp://www.ucpress.edu/journals/jps/ zContenu : sommaires depuis le vol. 24, n°1, aut. 1994, résumés à partir du vol.30, n°1, aut.20004 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0377919X.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9561 bvol. 1 no. 1 (aut-1971) -....cParisdMagasins/AnnexeeP 8° 2981wManque : vol. 29 (1998/1999)1 bvol.1 (1971) - vol. 25 (1996)cParisdMagasins/AnnexeeP Index 0375 aZSAB aexempb201103 aGEO RG2 Moyen-Orient aDEW 95601228nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210002400184326001500208606002300223676000800246710004300254801002100297856007000318856010800388856009000496856010800586955007100694955008600765972000900851991001800860992001200878038737205000002581020140110122711.01 a0022-3433 aFNSP168814 a0000025810 a19900101a19649999 ba0 aeng aNO aagu 10aJournal of peace research aLondoncSaged1964- aBimestriel aPaixxPériodiques a32702aInternational Peace Research Institute 3aFRbCCN0022-34334 uhttps://acces-distant.sciences-po.fr/fork?http://jpr.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00223433.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 47 no. 1 (jan-2010) -....cParisdMagasins/AnnexeeP 4° 72951 bvol. 1 no. 1 (1964) -vol. 46 no. 6 (nov-2009)cParisdMagasins/AnnexeeP 8° 2131 aZSAB aexempb200904 aDEW 32701573nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210002800185210004000213210003100253326001500284606003000299801002100329856005600350856005500406856012800461856010800589856010900697856010800806955007000914957015100984972000901135991001801144992002101162992001601183039397092000002581120130806155817.01 a0306-6150 aFNSP168815 a0000025811 a19900101a19739999 ba0 aeng aGB aahu 10aJournal of peasant studies aLondoncCassd1973-2003 aLondoncTaylor & Francisd2003-2005 aAdingdoncRoutledged2005- aBimestriel aAgriculturexPériodiques 3aFRbCCN0306-61504 uhttp://www.tandf.co.uk/journals/titles/03066150.asp zContenu : sommaires depuis le vol. 29, n°1 (2001)4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=LTY&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713673200db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (oct-1973) -....cParisdMagasins/AnnexeeP 8° 35441 bvol. 1 (1973) -vol. 20 (1993) ; (1993)-(2004);cParisdMagasins/AnnexeeP Index 0726zl'index 1993/2004 se trouve dans le vol. 32 no. 1 (jan-2005) aZSAB aexempb200911 aGEO RQ Universel aDEW 338.1-301269nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004600139210002700185326001600212436003200228436004200260452006700302530005600369606004900425606005600474710007200530801002100602856017200623955007000795972000900865991001800874992002300892992001600915039339777000002582720131119165928.01 a0276-8739 aFNSP168855 a19900101a19819999 ba0 aeng aUS aahu 10aJournal of policy analysis and management aNew YorkcWileyd1981- aTrimestriel 1aPolicy analysis,x0098-2067 1tPublic policy (Cambridge),x0033-3646 1tJournal of policy analysis and management (Online),x1520-6688 aJournal of policy analysis and management‎bPrint aPolitique publiqueyEtats-UnisxPériodiques aServices publicsyEtats-UnisxGestionxPériodiques02aAssociation for Public Policy Analysis and Managementc(Etats-Unis) 3aFRbCCN0276-87394 uhttp://onlinelibrary.wiley.com/journal/10.1002/(ISSN)1520-6688zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (aut-1981) -....cParisdMagasins/AnnexeeP 8° 4458 aZSAB aexempb201106 aGEO RC2 Etats-Unis aDEW 350-35401395nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210006900184326001600253606004600269606003600315606004600351856010300397856010800500856020200608856010800810955011000918991001801028992002301046992001201069040002519000000536720130319051555.01 a0898-0306 aFNSP108029 a0000005367 a19900313a19899999 ba0 aeng aUS aaha 10aJournal of policy history aUniversity Park, Pa.cPennsylvania State University Pressd1989- aTrimestriel aScience politiquexHistoirexPériodiques aScience politiquexPériodiques aIdées politiquesxHistoirexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://eJournals.ebsco.com/Journal2.asp?JournalID=718045 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://web.ebscohost.com/ehost/detail?vid=1&hid=7&sid=aa2da0fd-b917-4287-90ac-eeb4e22c8a44%40sessionmgr11&bdata=JnNpdGU9ZWhvc3QtbGl2ZQ%3d%3d#db=poh&jid=0W1 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1989) -vol. 1 no. 4 (1989) ; vol. 22 no. 1 (2010) -....cParisdMagasins/AnnexeeP 8° 5624 aexempb201202 aGEO RC2 Etats-Unis aDEW 32001277nas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200007200174207002600246210004200272326001600314430004100330452005100371606003600422607004800458710004400506801003000550801002300580802000700603856010900610856010800719955006700827972000900894992001200903113732325000107928320130319051555.01 a1558-8742 aissn15588742 a0001079283 a20070403a20069999 y0frey0103 ba0 aeng aUS a 0  aaha 0yy 10aJournal of policy practicefSocial Policy and Policy Practice Group 0aVol. 5, no. 1 (2006)- aBinghamton, NYcHaworth Pressdc2006- aTrimestriel 1tThe social policy journalx1533-2942 1tJournal of policy practice (Online)x1558-8750 aPolitique socialexPériodiques aEtats-UnisxPolitique socialexPériodiques02aSocial Policy and Policy Practice Group 3aFRbAbesc20070403gAFNOR 3aFRbISSNc20070301 a014 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t792306913db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 1 (2006) -....cParisdMagasins/AnnexeseP 8° 6692 aZSAB aDEW 36001003nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200003300160210003200193300002500225326001600250440004900266606004000315710005200355711005900407856005100466856007500517955007400592972000900666992001400675094868336000025370420130319051555.01 a1384-1289 aFNSP885899 a0000253704 a19900101a19969999 ba0 aeng aNL ar aaha 14aThe journal of policy reform aAmsterdamcRoutledged1996- aN'a pas paru en 1998 aTrimestriel 1tJournal of economic policy reformx1748-7870 aPolitique économiquexPériodiques02aHarvard Institute for International Development02aCenter for International Economics (College Park, Md.)4 uhttp://www.tandf.co.uk/journals/listings/j.asp zContenu : sommaires et résumés des articles à partir du vol.5, 20021 bvol. 1 no. 1 (1996) -vol. 9 no. 4 (2006)cParisdMagasinseP 8° 6413 aZSAB aDEW 338.901126nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000480013921000300018732600150021745200590023251700090029153000460030060600390034660600390038580100210042485602330044595500700067897200090074899100180075799200210077599200160079603882762X000002586120130726161529.01 a0047-2697 aFNSP168928 a19900101a19739999 ba0 aeng aUS aaju 10aJournal of political and military sociology aDeKalb, Ill.cJPMSd1973- aSemestriel 1ttJournal of political and military sociology (Online)10aJPMS00aJournal of political & military sociology aSociologie politiquexPériodiques aSociologie militairexPériodiques 3aFRbCCN0047-26974 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=1ZA&site=ehost-livezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (pri-1973) -....cParisdMagasins/AnnexeeP 8° 3343 aZSAB aexempb201005 aGEO RQ Universel aDEW 355-35901230nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008900154210005400243326001500297606003700312676000800349710002600357801002100383856005000404856006400454856009000518856010800608955006700716955007000783972000900853991001800862992001200880038737574000002586220130319051555.01 a0022-3808 aFNSP168930 a0000025862 a19900101a18929999 ba0 aeng aUS aagu 10aJournal of political economyfUniversity of Chicago, Department of Political Economy aChicago, Ill.cUniversity of Chicago Pressd1892- aBimestriel aEconomie politiquexPériodiques a33002aUniversity of Chicago 3aFRbCCN0022-38084 uhttp://www.journals.uchicago.edu/JPE/toc.html zContenu : sommaires depuis le vol. 104, n°1, février 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00223808.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3301 bvol. 7 no. 1 (dec-1898) -....cParisdMagasins/AnnexeeP 8° 0136 aZCAD aexempb201101 aDEW 33001139nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003600139210002800175326001700203452005700220530003600277606002900313606003600342856005700378856006200435856010900497856010800606955007000714972000900784991001800793992001400811079280935000020899520130828182226.01 a1356-9317 aFNSP757736 a19900101a19969999 ba0 aeng aGB aaia 10aJournal of political ideologies aAbingdoncCarfaxd1996- a3 nos par an 1tJournal of political ideologies (Online),x1469-9613 aJournal of political ideologies aIdéologiexPériodiques aScience politiquexPériodiques4 uhttp://www.tandf.co.uk/journals/carfax/13569317.html zContenu : sommaires depuis le vol. 1, n°1, février 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713435568db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (fev-1996) -....cParisdMagasins/AnnexeeP 8° 6313 aZSAB aexempb201301 aDEW 320.500937nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000035001642100041001993000032002403260016002726060038002888010013003268560109003398560108004489550066005569720009006229920016006310000530715000053071520130319051555.01 a1537-7857 a0000530715 a a20029999k fre ba0 aeng aUS a 0  ar aah z 0 10aJournal of political marketing aBinghamton, NYcHaworth Pressd2002- aArrive avec un an de retard aTrimestriel aMarketing politiquexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t792306945db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (2002) -....cParisdMagasins/AnnexeeP 8° 6689 aZSAB aDEW 320-32100808nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004000154210003900194326001600233606004000249856007100289856007100360955007000431972000900501991001800510992001400528040098761000011712020130319051555.01 a0963-8016 aFNSP486542 a0000117120 a19900101a19939999 ba0 aeng aUS aaia 14aThe Journal of political philosophy aCambridge, Mass.cBlackwelld1993- aTrimestriel aPhilosophie politiquexPériodiques4 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0963-8016 zContenu : sommaires et résumés depuis le vol. 4, n°1, mars 19961 bvol. 1 no. 1 (mar-1993) -....cParisdMagasins/AnnexeeP 8° 6011 aZSAB aexempb201202 aDEW 320.501026nas0 2200313 450 00100100000000200110001000500170002101100140003802000190005203500150007110000410008610100080012710200070013510500180014210600060016011000160016620000310018221000660021332600220027943000320030160600460033380100300037980100150040985601090042485600720053395500700060599200210067599200160069615229578X000121168020130319051555.01 a2158-379X aUSb2010203408 a0001211680 a20110516a20119999k y0frey50 ba0 aeng aGB ay 0  ar aaia 0 00aJournal of political power aAbingdon, Oxfordshire, GBcRoutledge, Taylor & Francisd2011- aTrois n°s par an 1tJournal of powerx1754-0291 aPouvoir (sciences sociales)xPériodiques 3aFRbAbesc20110516gAFNOR 0bDLCgAACR24 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=g791731572db=all zContient les sommaires et résumés des n°s depuis le no. 1 (2008)1 bvol. 4 no. 1 (avr-2011) -....cParisdMagasins/AnnexeeP 8° 7117 aGEO RQ Universel aDEW 320-32101098nas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200004300174207003600217210004700253326002300300326002900323606003600352606005900388801003000447801002300477802000700500856010300507856007600610955007400686992001200760121769399000113158520130319051555.01 a1551-2169 aissn15512169 a0001131585 a20080225a20059999 y0frey0103 ba0 aeng aUS ay 0  aaha z 0yy 10aJournal of political science education 0aVol. 1, no. 1 (Jan./Apr. 2005)- aPhiladelphia, Pa.cTaylor & Francisd2005- aTrimestrielb2008- a3 n°s par anb2005-2007 aScience politiquexPériodiques aScience politiquexEtude et enseignementxPériodiques 3aFRbAbesc20080225gAFNOR 3aFRbISSNc20080201 a014 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713723463 zContenu: sommaire et résumés des n°s depuis le vol. 1, n° 1 de 20051 bvol. 2 no. 1 (jan/avr-2006) -....cParisdMagasins/AnnexeeP 8° 7009 aDEW 32001693nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154207002600182210007300208210005100281326001600332606004500348606005300393607005600446710005700502801002100559856010100580856010800681856009000789856010800879955007100987955011601058955008501174972000901259992002301268992001601291038737582000002583320130319051555.01 a0022-3816 aFNSP168868 a0000025833 a19900101a19399999 ba0 aeng aUS aahu 14aThe Journal of politics 1avol. 1, no. 1 (1939)- aGainesville, Fla.cSouthern Political Science Associationd1939-1987 aAustin, Tex.cUniversity of Texas Pressd1988- aTrimestriel aParlementairesyEtats-UnisxPériodiques aSociologie électoraleyEtats-UnisxPériodiques aEtats-UnisxPolitique et gouvernementxPériodiques02aSouthern Political Science Associationc(Etats-Unis) 3aFRbCCN0022-38164 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=105135 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00223816.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 68 no. 1 (fev-2006) -....cParisdMagasins/AnnexeeP 4° 71021 bvol. 4 no. 4 (nov-1943) ; vol. 9 no. 4 (nov-1947) -vol. 67 no. 4 (nov-2005)cParisdMagasins/AnnexeeP 8° 00461 bannées complémentaires à JSTORcParisdBibliothèque de rechercheeP 4° 7102 aZCAD aGEO RC2 Etats-Unis aDEW 320-32101286nas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200004100180210009400221326002200315430003800337452006300375517001700438530005000455607003500505710008500540801003000625801002300655802000700678856005800685856007000743955005900813992002800872992001200900135935709000117430620130319051555.01 a1866-802X aissn1866802X a0001174306 a20090818a20099999k y0frey0103 ba0 aeng aDE ay  ar aaiu uu 10aJournal of politics in Latin America aHamburgcInstitute of Latin American Studies, German Institute of Global and Area Studies aTrois n°s par an 1tLateinamerika-Analysenx1619-1684 1tJournal of politics in Latin America (Internet)x1868-489010aJPLA (Print)10aJournal of politics in Latin Americab(Print) aAmérique latinexPériodiques02aGerman Institute of Global and Area Studies, Institute of Latin American Studies 3aFRbAbesc20090818gAFNOR 3aFRbISSNc20090617 a064 uhttp://hup.sub.uni-hamburg.de/giga/jpla/issue/archive zContenu : accès au texte intégral depuis le vol. 1 no. 1 (2009)1 bno. 1 (2009) -....cParisdMagasins/AnnexeeP 8° 7042 aGEO RD Amérique latine aDEW 98001053nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004000139210003200179326001600211452006100227517000900288530004000297606003700337606003300374801002100407856010100428856010800529955008200637991001800719992001400737039102041000002586620130910170958.01 a0160-3477 aFNSP168937 a19900101a19789999 ba0 aeng aUS aahu 10aJournal of Post Keynesian economics aArmonk, N.Y.cSharped1978- aTrimestriel 1tJournal of post Keynesian economics (Online),x1557-782110aJPKE aJournal of post Keynesian economics aEconomie politiquexPériodiques aKeynésianismexPériodiques 3aFRbCCN0160-34774 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=109348 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1978) -vol. 19 no. 4 (1997)cParisdMagasins/AnnexeeP 8° 4292 aexempb201106 aDEW 330.101064cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200002100180207003400201210005900235440003100294606004600325801003000371801002300401802000700424856010900431856007200540955008900612992002100701992001600722131663003000118126120130319051555.01 a1754-0291 aissn17540291 a0001181261 a20090223a20089999k y0frey50 ba0 aeng aGB ay 0  ar aaia 0uu 10aJournal of power 0aBegan with v. 1, no. 1 (2008) aAbingdoncRoutledge, Taylor & Francis Groupd2008-2010 1tJournal of political power aPouvoir (sciences sociales)xPériodiques 3aFRbAbesc20090308gAFNOR 3aFRbISSNc20090225 a0140uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=g791731572db=all zContient les sommaires et résumés des n°s depuis le no. 1 (2008)1 bvol. 1 no. 1 (avr-2008) -vol. 3 no. 3 (dec-2010)cParisdMagasins/AnnexeeP 8° 7117 aGEO RQ Universel aDEW 320-32101023nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005700154210008000211326001600291517001100307606004200318710006200360856009000422856010800512955007000620972000900690991001800699992001600717040276406000007250520130319051555.01 a1053-1858 aFNSP332929 a0000072505 a19900101a19919999 ba0 aeng aUS aaha 10aJournal of public administration research and theory aLawrence, Kan.cJournal of public administration research and theoryd1991- aTrimestriel10aJ-PART aAdministration publiquexPériodiques02aUniversity of KansasbDepartment of Public Administration4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/10531858.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 4 (oct-1991) -....cParisdMagasins/AnnexeeP 8° 5881 aZSAB aexempb201112 aDEW 350-35401149nas 2200313 i 450 001001000000002001100010005001700021011001400038035002400052035001500076100004100091101000800132102000700140110001600147200004800163210008700211326001100298517000900309530006700318606004400385606004400429710008100473711006500554856011300619955006400732972000900796991001800805992001200823040307794000018246920131202165605.01 a1070-521X aFNSP6791011070-521X a0000182469 a19900101a19909999 ba0 aeng aUS aaka 10aJournal of public and international affairs aPrinceton , N.J.cWoodrow Wilson School of Public and International Affairsd1990- aAnnuel10aJPIA00aJournal of public and international affairsb(Princeton, N.J.) aRelations internationalesxPériodiques aRelations internationalesxPériodiques02aWoodrow Wilson School of Public and International Affairsc(Princeton, N.J.)02aAssociation of Professional Schools of International Affairs4 uhttp://www.princeton.edu/jpia/zAccès aux sommaires de 1998 à 2010 et au texte intégral à partir de 20111 bvol. 5 (pri-1994) -....cParisdMagasins/AnnexeeP 8° 6217 aZSAB aexempb201211 aDEW 32700901nas 2200253 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001322000032001392100042001713260016002136060040002296060037002698010021003068560100003278560058004279550150004859920012006350000169615000016961520130319051555.01 a0047-2727 aFNSP642325 a0000169615 a19900101a19729999 ba0 aeng aNL10aJournal of public economics aAmsterdamcNorth Holland Publ.d1972- aTrimestriel aPolitique économiquexPériodiques aFinances publiquesxPériodiques 3aFRbCCN0047-27274 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/00472727 zContenu : sommaires et résumés depuis le n°1, 19781 bvol. 1 no. 1 (avr-1972) -vol. 25 no. 3 (dec-1984)cParisdMagasins/AnnexeeP 8° 3058 ; la bibliothèque de l''OFCE conserve la revue depuis 1985 aDEW 33600910nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116200002900123210004900152326002400201326002700225452005000252530003900302606003700341801002100378856012100399955006900520972000900589991001800598992001600616039083586000002586920130911170846.01 a0143-814X aFNSP168945 a19900101a19819999 ba0 aeng aGB10aJournal of public policy aCambridgecCambridge University Pressd1981- a3 nos par anb1994- aTrimestrielb1981-1993 1tJournal of public policy (Online),x1469-781510aJournal of public policy‎bPrint aPolitique publiquexPériodiques 3aFRbCCN0143-814X4 uhttp://journals.cambridge.org/action/displayJournal?jid=PUPzaccès libre aux sommaires depuis le vol. 1 no. 1, 19811 bvol. 1 no. 1 (fev-1981) -....cParisdMagasinsAnnexeeP 8° 4426 aZSAB aexempb201106 aDEW 350-35400940nas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200003400174207002400208210004600232326001800278606003500296606003500331801003000366801002300396802000700419856005000426856004700476955006600523972000900589992001600598092126316000103501620130319051555.01 a1535-0118 aissn15350118 a0001035016 a20051025a20019999 y0frey0103 ba0 aeng aUS a 0  aaiy 0yy 10aJournal of public procurement 0aVol.1, no 1 (2001)- aBoca Raton, FLcPrAcademics Pressdc2001- a3 n°s par an aServices publicsxPériodiques aMarchés publicsxPériodiques 3aFRbAbesc20051025gAFNOR 3aFRbISSNc20051001 a014 uhttp://www.pracademicspress.com/toc-jopp.html zContenu : accès aux sommaires depuis 20011 bvol. 3 no. 2 (2003) -....cParisdMagasins/AnnexeeP 8° 6919 aZSAB aDEW 350-35400884nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210004300185326001600228606002900244676000800273856004200281856006600323955006700389955006600456972000900522991001800531992002100549992001200570040080285000002589720130319051555.01 a0951-6328 aFNSP169076 a0000025897 a19910227a19889999 ba0 aeng aGB aaha 10aJournal of refugee studies aOxfordcOxford University Pressd1988- aTrimestriel aRéfugiésxPériodiques a3254 uhttp://www.oup.co.uk/refuge/contents/ zContenu : sommaires et résumés depuis le vol. 1, n°1, 19881 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3251 bvol. 1 no. 1 (1988) -....cParisdMagasins/AnnexeeP 8° 5175 aZSAB aexempb201010 aGEO RQ Universel aDEW 32501182nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210007000186210003600256326001600292606003700308606003800345801002100383856012800404856010800532955011500640957007200755972000900827991001800836992001400854038737787000002588120130319051555.01 a0022-4146 aFNSP168994 a0000025881 a19900101a19589999 ba0 aeng aUS aahu 10aJournal of regional science aPhiladelphia, PA.cRegional Science Research Instituted1958-1992 aCambridgecBlackwelld1993-2008 aTrimestriel aEconomie politiquexPériodiques aEconomie régionalexPériodiques 3aFRbCCN0022-41464 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=RSC&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1958) -vol. 36 no. 2 (mai-1996) ; vol. 39 no. 1 (1999) -....cParisdMagasins/AnnexeeP 8° 18481 bvol. 1 (1958) -vol. 25 (1985)cParisdMagasins/AnnexeeP Index 0608 aZSAB aexempb201003 aDEW 330.901030nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210002500188326001600213434004200229510002400271607003600295801002100331856009400352856006000446955006600506957007200572972000900644991001800653992001900671992001400690038737817000002588220130319051555.01 a0022-4200 aFNSP168995 a0000025882 a19900101a19679999 ba0 aeng aNL aahu 10aJournal of religion in Africa aLeidencBrilld1967- aTrimestriel 1aAfrican religious researchx0044-660210aReligion en Afrique aAfriquexReligionxPériodiques 3aFRbCCN0022-42004 uhttp://dandini.ingentaselect.com/vl=9512532/cl=134/nw=1/rpsv/cw/brill/00224200/contp1.htm zContenu : sommaires et résumés depuis le n°1 de 20021 bvol. 1 no. 1 (1967) -....cParisdMagasins/AnnexeeP 8° 28491 bvol. 1 (1967) -vol. 26 (1996)cParisdMagasins/AnnexeeP Index 0793 aZPAY aexempb200910 aGEO RE Afrique aDEW 20-2901345nls 2200373 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000102001642070025002662100065002913000056003563260016004123360056004283370071004844300029005556060028005846060049006126060040006617100044007018010013007458560090007588560069008489550005009179920033009229920016009550000816062000081606220130319051555.0 a0022-4367 a0000816062 a a19649999k fre 01 ba0 aeng aUS az aa z  adr 10aJournal of risk and insuranceb[Ressource électronique]fAmerican Risk and Insurance Association 1aN° 1 (March 1964) - aOrlando, FlacAmerican Risk and Insurance Associationd1964- aTexte intégral depuis le vol. 31, n°1, March 1964 aTrimestriel aDonnées textuelles accessibles uniquement en ligne aTéléchargement de fichiers TIFF, PDF (recommandé) ou PostScript 1tThe Journal of Insurance aAssurancexPériodiques aStratégiexAspect économiquexPériodiques aEconomie industriellexPériodiques aAmerican Risk and Insurance Association 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00224367.html zContenu : résumés en ligne depuis le vol. 31, n°1, March 19641 r aGEO RS Sans aspect régional aDEW 360-36301228nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000330015421000840018732600150027160600420028660600360032871000820036480100210044685601000046785600360056795500660060395701380066997200090080799100180081699200210083499200230085599200120087803955175X000002589620130319051555.01 a0377-7480 aFNSP169072 a0000025896 a19900101a19739999 ba0 aeng aIL aaju 10aJournal of rural cooperation aTel AvivcInternational Research Centre on Rural Cooperative Communitiesd1973- aSemestriel aCoopératives agricolesxPériodiques aKibboutzyIsraëlxPériodiques02aCentre international de recherches sur les communautés coopératives rurales 3aFRbCCN0377-74804 uhttps://acces-distant.sciences-po.fr/fork?http://departments.agri.huji.ac.il/economics/JRC.html4 zContenu : sommaires depuis 19991 bvol. 5 no. 1 (1977) -....cParisdMagasins/AnnexeeP 8° 44641 bvol. 6 (1978) -vol. 10 (1982) ; vol. 16 (1988) -vol. 20 (1992) ; vol. 26 (1998) -vol. 30 (2002)cParisdMagasins/AnnexeeP Index 0351 aZPAY aexempb200911 aGEO RQ Universel aGEO RG2.15 Israël aDEW 33401209nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004300154210002400197326001600221430005900237606005300296606006100349607004400410607003600454856010900490856010800599955007000707972000900777991001800786992001900804992003200823992001600855036739278000009429520130319051555.01 a1351-8046 aFNSP414047 a0000094295 a19900101a19939999 ba0 aeng aGB aaha 04aThe Journal of Slavic military studies aLondoncCassd1993- aTrimestriel 1aThe Journal of Soviet military studiesxISSN 0954-254X aArt et science militairesyEx-URSSxPériodiques aArt et science militairesyEurope de l'EstxPériodiques aEurope de l'EstxDéfensexPériodiques aEx-URSSxDéfensexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713636668db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 6 no. 1 (mar-1993) -....cParisdMagasins/AnnexeeP 8° 5913 aZSAB aexempb201207 aGEO RA7.03 CEI aGEO RA2.02 Europe orientale aDEW 355-35901528nas 2200361 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000580015421000320021232600160024443000590026048800820031960600370040160600360043860600360047471000580051080100210056885601280058985601080071785601280082585601080095395500660106197200090112799100180113699200120115403934388X000002590720130319051555.01 a0278-839X aFNSP169104 a0000025907 a19900101a19819999 ba0 aeng aUS aahu 14aThe Journal of social, political and economic studies aWashington, DCcCSESd1981- aTrimestriel 1aThe Journal of social and political studiesx0193-5941 1aJournal of social, political and economic studies monograph seriesx0895-724X aEconomie politiquexPériodiques aScience politiquexPériodiques aSciences socialesxPériodiques02aCouncil for Social and Economic Studiesc(Etats-Unis) 3aFRbCCN0278-839X4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=JSE&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=JSE&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 6 no. 1 (1981) -....cParisdMagasins/AnnexeeP 8° 4069 aZSAB aexempb201009 aDEW 30001275nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210003400183326001600217606003600233606003800269710007100307801002100378856012800399856010800527856010100635856010800736955006600844972000900910991001800919992001200937038738112000005603920130319051555.01 a0022-4537 aFNSP262301 a0000056039 a19900101a19459999 ba0 aeng aUS aahu 10aJournal of social issues aNew YorkcPlenum Pressd1945- aTrimestriel aSciences socialesxPériodiques aPsychologie socialexPériodiques02aSociety for the Psychological Study of Social Issuesc(Etats-Unis) 3aFRbCCN0022-45374 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=JSI&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100955 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 6 no. 2 (1950) -....cParisdMagasins/AnnexeeP 8° 0780 aZPAY aexempb201101 aDEW 30001078nas 2200301 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101110001600108200002900124210004900153326001600202530003900218606003600257607005300293710003600346801002100382856020800403955007000611972000900681991001800690992003100708992002100739992001600760038827719000002590520130605111345.01 a0047-2794 a19900101a19729999 ba0 aeng aGB aahu 10aJournal of social policy aCambridgecCambridge University Pressd1972- aTrimestriel10aJournal of social policy‎bPrint aPolitique socialexPériodiques aGrande-BretagnexPolitique socialexPériodiques02aSocial Policy Associationc(GB) 3aFRbCCN0047-27944 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=101400zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1972) -....cParisdMagasins/AnnexeeP 8° 3065 aZCAD aexempb201106 aGEO RA4.02 Grande-Bretagne aGEO RQ Universel aDEW 360-36301092nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154207002500191210005600216210005000272210004300322326001500365606003800380801002100418856012800439856010800567955006500675972000900740991001800749992001100767038738139000002593420130319051555.01 a0022-4545 aFNSP169164 a0000025934 a19900101a19309999 ba0 aeng aUS aagu 14aThe Journal of social psychology 1aVol. 1 no. 1 (1930)- aWorcester, Mass.cClark University Pressd1930-1936 aProvincetown, Mass.cJournal Pressd1937-1984 aWashington, D.C.cHeldref Publ.d1984- aBimestriel aPsychologie socialexPériodiques 3aFRbCCN0022-45454 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=JSY&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 27 (fev-1948) -....cParisdMagasins/AnnexeeP 8° 0075 aZSAB aexempb201101 aDEW 1501153nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006200154210004000216210002400256326002300280326002800303430007200331606004800403606004000451710004000491856010800531856010800639955007100747972000900818992001200827037420984000024727420130319051555.01 a1440-7833 aFNSP867479 a0000247274 a19900101a19989999 ba0 aeng aAU aaha 10aJournal of sociologyfAustralian Sociological Association aSouth MelbournecLongmand1998-2000 aLondoncSaged2001- aTrimestrielb2000- a3 nos par anb1998-2000 1aThe Australian and New Zealand journal of sociologyxISSN 0004-8690 aSociologieyNouvelle-ZélandexPériodiques aSociologieyAustraliexPériodiques02aAustralian Sociological Association4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 34 no. 1 (mar-1998) -....cParisdMagasins/AnnexeeP 8° 2331 aZPAY aDEW 30101344nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154207002500193210006100218210003200279210004800311326002400359326002600383430005000409530005000459607003400509710006000543801002100603856010100624856010800725955007000833972000900903991001800912992002800930992001200958038738236000002593620130319051555.01 a0022-4634 aFNSP169170 a0000025936 a19900101a19709999 ba0 aeng aSG aaju 10aJournal of Southeast Asian studies 1aVol. 1, no.1 (1970)- aSingaporecMcGraw-Hill Far Eastern Publishersd1970-1974 aDivers éditeursd1975-2000 aCambridgecCambrige University Pressd2001- a3 nos par anb2001- aSemestrielb1970-2000 1aJournal of Southeast Asian historyx0217-7811 0aJournal of Southeast Asian studiesbSingapore aAsie du Sud-EstxPériodiques02aNational University of SingaporebDepartment of History 3aFRbCCN0022-46344 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=107435 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1970) -....cParisdMagasins/AnnexeeP 8° 1957 aZCAD aexempb201001 aGEO RI2 Asie du Sud-Est aDEW 95901407nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005600163210003400219300012900253326001800382440004500400607002600445607003800471676001000509710005600519801001300575856004200588856005100630856010900681856010800790955008900898972000900987992001400996992002301010064130592000048886420130319051555.01 a1468-3857 a0000488864 a a20009999k fre ba0 aeng aGB a 0  ar aai z 0 10aJournal of Southeast European and Black Sea studies aLondoncFrank Cassd2000-2004 aReprend des éléments de Southeast European yearbook. Les numéros spéciaux sont aussi publiés sous forme de monographies a3 n°s par an 1tSoutheast European and Black Sea studies aBalkansxPériodiques aMer Noire (région)xPériodiques a943.702aHellenic Foundation for European and Foreign Policy 0aFRbFNSP4 uhttp://www.frankcass.com/jnls/bss.htm zSommaires depuis le vol.1, n°1, january. 20004 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713634533db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-2000) -vol. 4 no. 3 (sep-2004)cParisdMagasins/AnnexeeP 8° 6659 aZSAB aDEW 949.6 aGEO RA8.01 Balkans01283nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004000154210004300194326001600237607003500253801002100288856010300309856010800412856010900520856010800629955006500737957008300802972000900885991001800894992002900912992001600941039394476000006775420130319051555.01 a0305-7070 aFNSP314384 a0000067754 a19900101a19749999 ba0 aeng aGB aahu 10aJournal of Southern African studies aOxfordcOxford University Pressd1974- aTrimestriel aAfrique australexPériodiques 3aFRbCCN0305-70704 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03057070.html?&cookieSet=1 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713436095db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1974) -....cParisdMagasins/AnnexeP 8° 35761 bvol. 1 no. 1 (1974) -vol. 30 no. 3 (2004)cParisdMagasins/AnnexeP Index 0866 aZSAB aexempb200911 aGEO RF3 Afrique australe aDEW 966-96901651nas 2200409 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200004700148207004800195210003200243326002800275326002600303440005900329452006800388517004500456530005700501607003200558607003400590607002600624801001300650856010100663856010800764856011100872856010800983955008601091972000901177991001801186992001401204992002301218048811726000032750620130830122335.01 a1461-3190 a b19992008k fre ba0 aeng aGB a 0  ar aai z 0 10aJournal of Southern Europe and the Balkans 1avol. 1, no. 1 (1999)-vol. 10, no. 3 ( 2008) aAbingdoncCarfaxd1999-2008 a3 nos par anb2003-2008 aSemestrielb1999-2002 1tJournal of Balkan and Near Eastern studies,x1944-8953 1tJournal of Southern Europe and the Balkans (Online),x1469-963X10aJournal of Southern Europe & the Balkans aJournal of Southern Europe and the Balkans‎bPrint aEurope du SudxPériodiques aEurope de l'EstxPériodiques aBalkansxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=104630 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/openurl?genre=journal&issn=1461-3190 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mai-1999) -vol. 10 no. 3 (2008)cParisdMagasins/AnnexeeP 8° 6532 aZCAD aexempb201212 aDEW 949.6 aGEO RA8.01 Balkans01239nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004000163210004700203326002300250326002900273326002600302607005300328801001300381856010300394856010800497856010900605856010800714955007000822972000900892992001200901058256245000038503920130319051555.01 a1463-6204 a0000385039 a a20009999k fre ba0 aeng aGB a 0  ar aah z 0 10aJournal of Spanish cultural studies aBasingstokecCarfa,Taylor & Francisd2000- aTrimestrielb2009- a3 n°s par anb2004-2008 aSemestrielb2000-2003 aEspagnexCivilisationz20e sièclexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=104631 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713436003db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-2000) -....cParisdMagasins/AnnexeeP 8° 6558 aZPAY aDEW 94601160nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210003100187210003100218326002200249326002400271326002800295606004400323676000800367801002100375856010900396856010800505955006700613955007000680972000900750991001800759992002100777992001200798039075362000002594520130624095302.01 a0140-2390 aFNSP169192 a0000025945 a19900101a19789999 ba0 aeng aGB aahu 10aJournal of strategic studies aLondoncF. Cassd1978-2004 aAbingdoncRoutledged2005- aBimestrielb2005- aTrimest.b1981-2004 a3 nos par anb1978-1980 aSécurité internationalexPériodiques a327 3aFRbCCN0140-23904 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713636064db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 1 no. 1 (mai-1978) -....cParisdMagasins/AnnexeeP 8° 4097 aZSAB aexempb201103 aGEO RQ Universel aDEW 32701260nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200007100163210006200234300007300296326001800369430006600387601005400453606006400507710005700571801001300628856008100641856008900722955006700811972000900878992002300887992001200910040286312000055939520130319051555.01 a1059-4329 a0000559395 a a19909999k fre ba0 aeng aUS a 0  ar aai z 0 10aJournal of Supreme Court historyfSupreme Court Historical Society aWashington, D.C.cSupreme Court Historical Societyd1990- anouvelle adresse bibliographique : Malden, MA : Blackwell Publishing a3 n°s par an 1tYearbook - Supreme Court Historical SocietyxISSN = 0362-524901aEtats-UnisbSupreme CourtxHistoirexPériodiques aJusticexAdministrationyEtats-UnisxHistoirexPériodiques02aSupreme Court Historical Societyc(Washington, D.C.) 0aFRbFNSP uhttp://www.blackwell-synergy.com/servlet/useragent?func=showIssues&code=jsch zContenu : Sommaires et résumés des articles à partir du vol. 25, n°1, march 20001 bvol. 27 no. 1 (2002) -....cParisdMagasins/AnnexeeP 8° 6710 aZSAB aGEO RC2 Etats-Unis aDEW 34201176nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000087001502100070002373000119003073260016004263360058004423370063005004400077005634520073006406060037007138010013007508560090007639550005008539920016008580000470140000047014020130319051555.0 a0000470140 a b19371938k fre 01 ba0 aeng aUS az aah z  adr 14aThe Journal of the American Military History Foundationb[Ressource électronique] aWashington, D.C.cAmerican Military History Foundationd1937-1938 aAccès au texte intégral (réservé aux sites de Sciences Po) à partir du vol. 1 de 1937 jusqu'au vol. 2 de 1938 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tThe Journal of the American Military Institute [Ressource électronique] 1tThe Journal of the American Military History Foundationx(1520-8621) aHistoire militairexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/5786002j.html1 r aDEW 355-35901217nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000078001502100061002283000119002893260016004083360058004243370063004824300086005454400047006314520064006786060037007428010013007798560090007929550005008829920016008870000470143000047014320130319051555.0 a0000470143 a b19391940k fre 01 ba0 aeng aUS az aah z  adr 14aThe Journal of the American Military Instituteb[Ressource électronique] aWashington, D.C.cAmerican Military Instituted1939-1940 aAccès au texte intégral (réservé aux sites de Sciences Po) à partir du vol. 3 de 1939 jusqu'au vol. 4 de 1940 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tThe Journal of the American Military History Foundation [Ressource électronique] 1tMilitary affairs [Ressource électronique] 1tThe Journal of the American Military Institutex(1520-8613) aHistoire militairexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/5786003j.html1 r aDEW 355-35901688nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004900154210005600203326001600259430006100275517000900336606005600345710003400401801002100435856012800456856010800584856010900692856010800801955007100909957031200980972000901292992002301301992001401324039148556000002594720130319051555.01 a0194-4363 aFNSP169198 a0000025947 a19900101a19799999 ba0 aeng aUS aahu 10aJournal of the American Planning Association aChicago, Ill.cAmerican Planning Associationd1979- aTrimestriel 1aJournal of the American Institute of Plannersx0002-899110aJAPA aPlanification économiqueyEtats-UnisxPériodiques02aAmerican Planning Association 3aFRbCCN0194-43634 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=APN&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t782043358db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 45 no. 1 (jan-1979) -....cParisdMagasins/AnnexeeP 4° 31051 b1958/1983 : cet index constitue le vol.49, n°4, 1983 de la revue ; 1984/1988 : cet index se trouve dans le vol.54, n°4, 1988 de la revue ; 1989/1993 (vol.55/59) : cet index se trouve dans le vol.59, n°4, 1993 de la revue; 1994/1998 (vol.60/64) : cet index se trouve dans le vol.64, n°4, 1998 de la revue aZSAB aGEO RC2 Etats-Unis aDEW 338.901626nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005200154210006200206326001600268430007800284517000900362606004200371710003700413801002100450856009000471856010800561856010300669856010800772955007300880955009100953957017201044972000901216992002301225992001601248039105547000005346620130319051555.01 a0162-1459 aFNSP254070 a0000053466 a19900101a19229999 ba0 aeng aUS aaha 10aJournal of the American Statistical Association aWashington, D.C.cAmerican Statistical Associationd1922- aTrimestriel 1aQuarterly publications of the American Statistical Associationx1522-544510aJASA aStatistiqueyEtats-UnisxPériodiques02aAmerican Statistical Association 3aFRbCCN0162-14594 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01621459.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=1087484 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 66 no. 333 (mar-1971) -....cParisdMagasins/AnnexeeP 4° 30531 bvol. 35 no. 209 (1940) -vol. 65 no. 332 (dec-1970)cParisdMagasins/AnnexeeP 8° 00961 bvol. 35 (1940) -vol. 50 (1955) ; vol. 51 (1956) -vol. 60 (1965) ; vol. 51 (1956) -vol. 73 (1978) ; vol. 50 (1955) -vol. 91 (1991)cParisdMagasins/AnnexeeP Index 0009 aZPAY aGEO RC2 Etats-Unis aDEW 310-31901386cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001700069035001700086100004100103101000800144102000700152105001800159110001600177200004000193210003800233326002300271326002900294452006100323530004000384607004800424607006300472607004900535607006400584801001300648802000700661856010900668856010800777955006600885972000900951992001200960992002800972048779695000052850220131016153306.01 a1354-7860 zccn7208/8095 accn1354-7860 aissn13547860 a20000427a19969999k y0frey0103 ba0 aeng aGB a 0  aaia 0uu 10aJournal of the Asia Pacific economy aLondoncRoutledge Journalsd1996- aTrimestrielb2005- a3 n°s par anb2002-2004 1tJournal of the Asia Pacific economy (Online),x1469-9648 aJournal of the Asia Pacific economy aAsiexConditions économiquesxPériodiques aPacifique (région)xConditions économiquesxPériodiques aAsiexIntégration économiquexPériodiques aPacifique (région)xIntégration économiquexPériodiques 0aFRbFNSP a024 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713703356db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 7 no. 1 (2002) -....cParisdMagasisn/AnnexeeP 8° 6683 aZSAB aDEW 950 aGEO RI2 Asie du Sud-Est00964nls 2200253 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000078001502100052002282300024002806060045003048010013003498560205003628560108005679920023006759920012006980001147381000114738120130319051555.0 a0001147381 a a19839999k fre 01 ba0 aeng aUS ar aaz z  adr 10aJournal of the copyright society of the U.S.A.b[Ressource électronique] aNew YorkcCopyright Society of the U.S.Ac1983- aRevue électronique aPropriété intellectuellexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.westlaw.com/search/default.wl?ForceTo=uk.westlaw.com&rp=%2fsearch%2fdefault.wl&mt=WestlawUK&rs=WLUK7.02&vr=2.0&sv=full&fn=top&db=JCPS&sp=intiep-000 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aGEO RC2 Etats-Unis aDEW 34001319nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200008000163207002800243210003600271326001500307606003700322710003400359801001300393856010100406856010800507856012800615856010800743955009100851972000900942992001200951992001800963080086357000061886720131202101306.01 a1542-4766 a0000618867 a a20039999 fre 01 ba0 aeng aUS a 0  ar aag z 0 10aJournal of the European Economic AssociationfEuropean Economic Association 1aVol.1, n°1(Mars 2003)- aCambridge, MAcMIT Pressd2003- aBimestriel aEconomie politiquexPériodiques02aEuropean Economic Association 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=110749 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=TQK&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-2003) -vol. 10 no. 6 (déc-2012)cParisdMagasins/AnnexeeP 8° 6762 aZPAY aDEW 330 aGEO RA Europe01018nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171100016001242000054001402100050001943000050002443260016002946070030003106070044003407100022003848560148004069550106005549720009006609910018006699920029006879920012007160000075294000007529420130920151508.01 a0254-4288 aFNSP342620 a19900101a19759999 ba0 aara aKW aaha 10aJournal of the Gulf and Arabian Peninsula studies aKhaldiehcAcademic Publication Councild1975- aTexte en arabe, quelques résumés en anglais aTrimestriel aPays arabesxPériodiques aPersique, Golfe (région)xPériodiques02aKuwait University4 uhttp://www.pubcouncil.kuniv.edu.kw/jgaps/home.aspx?id=1&Root=yes#zContenu : accèsaux sommaires et résumés des articles depuis le vol.1,19751 bvol. 4 no. 13 (1978) -no. 45 (1986) ; vol. 16 no. 63 (1990) -....cParisdMagasins/AnnexeeP 8° 4033 aZCAD aexempb201001 aGEO RG.13 Golfe Persique aDEW 95601180nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154210006300190326001600253517000800269606003600277801002100313856007000334856005300404856009000457856010800547955007200655957007300727972000900800992003300809992001200842038738562000005425920130319051555.01 a0022-5037 aFNSP255928 a0000054259 a19900101a19409999 ba0 aeng aUS aahu 10aJournal of the history of ideas aNew Brunswick, NJ.cJournal of the History of Ideasd1940- aTrimestriel10aJHI aPenséexHistoirexPériodiques 3aFRbCCN0022-50374 uhttp://calliope.jhu.edu/journals/journal_of_the_history_of_ideas/ zContenu : sommaires depuis le n°1, janvier 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00225037.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 11 no. 1 ( jan-1950) -....cParisdMagasins/AnnexeeP 4° 06861 bvol. 46 (1985) -vol. 61 (2000)cParisdMagasins/AnnexeeP Index 0841 aZSAB aGEO RS Sans aspect régional aDEW 00101070nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005600154210004300210210003100253326001600284607004700300607004900347801002100396856010000417856007400517955010300591972000900694991001800703992002100721992001400742039984370000002595020130319051555.01 a0889-1583 aFNSP169202 a0000025950 a19900101a19879999 ba0 aeng aUS aahu 10aJournal of the Japanese and international economies aDuluth, MNcAcademic Pressdc1987-2001 aAmsterdamcElsevierd2002- aTrimestriel aJaponxPolitique économiquexPériodiques aJaponxConditions économiquesxPériodiques 3aFRbCCN0889-15834 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/08891583 zContenu : sommaires et résumés de la revue depuis le volume 1, 19871 bvol. 1 no. 1 (mar-1987) -....cParisdMagasins/AnnexeeP 8° 5138wManquant : vol. 5, no. 2 (1991) aZPAY aexempb201011 aGEO RI3.22 Japon aDEW 330.901163nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200004500160210004900205326001600254430005000270440007500320606003000395712003600425856019500461955013300656957006800789992001600857037923463000010685220130319051555.01 a0952-8385 aFNSP453198 a0000106852 a19900101b18871947 ba0 aeng aGB ar aaha 10aJournal of the Royal Statistical Society aLondoncRoyal Statistical Societyd1887-1947 aTrimestriel 1aJournal of the Statistical Societyx0959-5341 1aJournal of the Royal Statistical Society. Series A. Generalx0035-9238 aStatistiquexPériodiques02aRoyal Statistical Societyc(GB)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/09528385.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 50 no. 1 (1887) -vol. 103 no. 1 (1940) ; vol. 108 no. 1/2 (1945) -vol. 110 no. 4 (1947)cParisdMagasins/AnnexeeP 8° 01021 b(1873/1887) ; (1888/1908)cParisdMagasins/AnnexeeP Index 0007 aDEW 310-31901107nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200006400160210004900224326001600273430005600289440008900345606003000434710003600464801002100500856019500521955008500716992001600801036469211000002599720130319051555.01 a0035-9238 aFNSP169287 a0000025997 a19900101b19481987 ba0 aeng aGB ar aahu 10aJournal of the Royal Statistical Society. Series A. General aLondoncRoyal Statistical Societyd1948-1987 aTrimestriel 1aJournal of the Royal Statistical Societyx0952-8385 1aJournal of the Royal Statistical Society. Series A. Statistics in Societyx0964-1998 aStatistiquexPériodiques02aRoyal Statistical Societyc(GB) 3aFRbCCN0035-92384 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00359238.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 111 no. 1 (1948) -vol. 150 no. 4 (1987)cParisdMagasins/AnnexeeP 8° 0102 aDEW 310-31901732nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200007800160210004500238326001600283430009100299606003700390607004800427607005500475710003600530856019500566856020600761856023300967955008501200957001701285972000901302992003101311992001601342992001201358040099113000010689420131202104422.01 a0964-1998 aFNSP453266 a0000106894 a19900101a19889999 ba0 aeng aGB ar aaha 10aJournal of the Royal Statistical Society. Series A. Statistics in Society aLondoncRoyal Statistical Societyd1988- aTrimestriel 1aJournal of the Royal Statistical Society. Series A. General (0035-9238) < P 8° 0102 > aProblèmes sociauxxPériodiques aGrande-BretagnexStatistiquesxPériodiques aGrande-BretagnexConditions socialesxPériodiques02aRoyal Statistical Societyc(GB)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/09641998.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100873zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=BQN&site=ehost-livezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 151 no. 1 (1988) -vol. 175 no. 4 (2012)cParisdMagasins/AnnexeeP 8° 01021 eP Index 0007 aZPAY aGEO RA4.02 Grande-Bretagne aDEW 310-319 aDEW 30001359nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200007100160207004800231210004900279326002700328326003300355430007900388440010400467488008000571606003000651710003600681856019500717955008700912991001800999992001601017013308408000010688120130319051555.01 a0035-9246 aFNSP453244 a0000106881 a19900101b19481997 ba0 aeng aGB ar aaha 10aJournal of the Royal Statistical Society. Series B. Methodological 1aVol.10 Part 1(1948) - vol. 59 part 4 (1997) aLondoncRoyal Statistical Societyd1948-1997 aTrimestrielb1993-1997 aTrois fois par anb1948-1992 1aSupplement to the Journal of the Royal Statistical SocietyxISSN 1466-6162 1tJournal of the Royal Statistical Society. Series B, Statistical methodology (Print)xISSN 1369-7412 1aJournal of the Royal Statistical Society. Series A. GeneralxISSN 0035-9238 aStatistiquexPériodiques02aRoyal Statistical Societyc(GB)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00359246.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 10 no. 1 (1948) -vol. 48 no. 3 (1986)cParisdMagasins/AnnexeeP 8° 0102 bis aexempb201101 aDEW 310-31901077nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000100001502100065002503260016003153360058003313370063003894400056004524520037005086060030005458010013005758560195005889920016007830000491575000049157520130319051555.0 a0000491575 a a19869999k fre 01 ba0 aeng aUS az aah z  adr 10aJournal of the Royal Statistical Society. Series D, The statisticianb[Ressource électronique] aHayward, Calif.cInstitute of Mathematical Statisticsd1986- aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tIncorporated statistician [Ressource électronique] 1tStatistical sciencex(0883-4237) aStatistiquexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/08834237.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aDEW 310-31901071nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200003900160210004900199326001600248440005600264452005200320517004900372606003000421710003600451856019500487955008300682992001600765037931059000010687220130319051555.01 a0959-5341 aFNSP453230 a0000106872 a19900101b18381886 ba0 aeng aGB ar aaua 10aJournal of the Statistical Society aLondoncRoyal Statistical Societyd1838-1886 aTrimestriel 1aJournal of the Royal Statistical Societyx0952-8385 1tJournal of the Statistical Societyx(0959-5341)10aJournal of the Statistical Society of London aStatistiquexPériodiques02aRoyal Statistical Societyc(GB)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/09595341.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 47 no. 2 (1884) -vol. 49 no. 4 (1886)cParisdMagasins/AnnexeeP 8° 0102 aDEW 310-31900785nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200003600138210002400174326001600198606003600214801002100250856002800271856010800299955006900407972000900476991001800485992001600503040080242000002599820130319051555.01 a0951-6298 aFNSP169290 a0000025998 a19900101a19899999 ba0 aeng aGB00aJournal of theoretical politics aLondoncSaged1989- aTrimestriel aScience politiquexPériodiques 3aFRbCCN7106/64544 uhttp://jtp.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no 1 (jan-1989) -....cParisdMagasins/AnnexeeP 8° 5190 aZSAB aexempb201106 aDEW 320-32101117nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210006000189326001500249607004900264607007500313710003900388856012800427856010800555955007100663972000900734991001800743992004200761992001200803037428942000019520620130319051555.01 a8755-3449 aFNSP717171 a0000195206 a19900101a19849999 ba0 aeng aUS aaja 10aJournal of third world studies aAmericus, GacAssociation of Third World Studiesd1984- aSemestriel aPays en voie de développementxPériodiques aPays en voie de developpementxPolitique et gouvernementxPériodiques02aAssociation of Third World Studies4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=JTW&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 11 no. 1 (mar-1994) -....cParisdMagasins/AnnexeeP 8° 6256 aZSAB aexempb201212 aGEO RO Pays en voie de développement aDEW 90901432nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154207002600183210012200209326002300331326002700354606002500381606004000406606003700446606003700483710004400520856012800564856010800692856006100800856006900861955006700930972000900997991001801006992002301024992001101047039697827000000419520130319051555.01 a0735-2166 aFNSP105117 a0000004195 a19900208a19819999 ba0 aeng aUS aaga 10aJournal of urban affairs 1aVol. 3, no. 4 (1981)- aBlacksburg, VacDivision of Environment and Urban Systems, Virginia Polytechnic Institute and State Universityd1981- a5nos par anb2000- aTrimestrielb1981-1999 aVillesxPériodiques aUrbanismeyEtats-UnisxPériodiques aVillesyEtats-UnisxPériodiques aSociologie urbainexPériodiques02aUrban Affairs Associationc(Etats-Unis)4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=JFA&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.blackwellpublishing.com/toc.asp?ref=0735-2166 zContenu : sommaires et résumés depuis le volume 21, n°1, 19991 bvol. 10 no. 4 (1988) -....cParisdMagasins/AnnexeeP 8° 5615 aZSAB aexempb201205 aGEO RC2 Etats-Unis aDEW 7101174cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200006900180207002100249210006700270326002200337517000800359530005400367607002700421710005800448801003000506801002300536802000700559856003800566856008400604955007600688972000900764992001200773992001500785110908368000114352220130319051555.01 a1559-372X aissn1559372X a0001143522 a20061123a20069999k y0frey0103 ba0 aeng aUS ay 0  ar aaja 0uu 10aJournal of Vietnamese studiesfCenter for Southeast Asia Studies 0aN.1(2006,fév.)- aBerkeley, CaliforniecCenter for Southeast Asia Studiesd2006- aTrois n°s par an10aJVS10aJournal of Vietnamese studiesb(Berkeley, Calif.) aViet-NamxPériodiques02aCenter for Southeast Asia Studiesc(Berkeley, Calif.) 3aFRbAbesc20080108gAFNOR 3aFRbISSNc20080107 a014 uhttp://caliber.ucpress.net/loi/vs zContenu: sommaires et texte intégral des n°s depuis le vol. 1 n° 1/2 de 20061 bvol. 1 no. 1/2 (fev/aou-2006) -....cParisdMagasins/AnnexeeP 8° 7028 aZSAB aDEW 959 aGEO RI2.2301016cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200003900180207002600219210003000245326001800275711003800293801003000331801002300361801003000384801001700414802000700431856006300438856005400501955006600555992001200621992003300633131662694000115475120130319051555.01 a1752-6272 aissn17526272 a0001154751 a20090223a20089999k y0frey0103 ba0 aeng aGB ay 0  ar aaia 0uu 10aJournal of war and culture studies 0aVol. 1, no. 1 (2008)- aBristolcIntellectd2008- a3 n°s par an02aGroup for War and Culture Studies 3aFRbAbesc20090311gAFNOR 3aFRbISSNc20090225 3aFRbAbesc20081020gAFNOR 0bOCLCSgAACR2 a024 uhttp://www.intellectbooks.co.uk/journals.php?issn=17526272 zContenu : sommaires depuis le vol. 1, no. 1, 20081 bvol. 1 no. 1 (2008) -....cParisdMagasins/AnnexeeP 8° 7058 aDEW 355 aGEO RS Sans aspect régional01267nas 2200373 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000040001642070027002042100045002313260016002764300033002924520061003255170042003866060029004286060025004576060046004826760008005288010013005368560109005498560108006589550069007669720009008359920033008449920016008770000928735000092873520140110101042.01 a1554-477X a0000928735 a a20059999 fre 01 ba0 aeng aUS a 0  ar aah z 0 10aJournal of women, politics & policy 1aVol.27, n°1/2 (2005-) aNew YorkcHaworth Political Pressd2005- aTrimestriel 1tWomen & politics,x0195-7732 1tJournal of women, politics & policy (Online),x1554-478800aJournal of women, politics and policy aFéminismexPériodiques aFemmesxPériodiques aFemmesxActivité politiquexPériodiques a320 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t792306983db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 27 no. 1/2 (2005) -....cParisdMagasins/AnnexeeP 8° 4371 aZSAB aGEO RS Sans aspect régional aDEW 305-30600892nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210003900184326001600223430006600239517000800305606003000313856010000343856007900443955006700522972000900589992001600598037418823000021879820130319051555.01 a1090-9516 aFNSP786087 a0000218798 a19900101a19979999 ba0 aeng aUS aaha 10aJournal of world business aGreenwich, Conn.cJAI Pressd1997- aTrimestriel 1aColumbia journal of world business,x0022-5428 < P 4° 2178 >10aJWB aEntreprisesxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/10909516 zContenu : accès aux sommaires et aux résumés depuis le volume 32, 1997.1 bvol. 32 no. 1 (1997) -....cParisdMagasins/AnnexeeP 4° 2178 aZPAY aDEW 650-65801232cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086040001100101100004100112101000800153102000700161105001800168106000600186110001600192200005600208207003300264210005200297326001600349452004900365606003900414606004100453710003000494801003000524801002300554802000700577856005900584856006600643955007100709972000900780992001200789992003300801040264866000116865020130319051555.01 a1045-6007 accn1045-6007 aissn10456007 a0001168650 aJWHIEC a19890810a19909999k y0frey0103 ba0 aeng aUS a 0  ar aaha 0uu 10aJournal of world historyfWorld history association 0aVol. 1, no. 1 (spring 1990)- aHonolulu, HIcUniversity of Hawaii Pressd1990- aTrimestriel 1tJournal of world history (Online)x1527-8050 aHistoire universellexPériodiques aCivilisationxHistoirexPériodiques02aWorld history association 3aFRbAbesc20090428gAFNOR 3aFRbISSNc20090427 a014 uhttp://muse.jhu.edu/journals/journal_of_world_history/ zContenu : sommaires et résumés depuis le vol. 7 no. 1, 19961 bvol. 19 no. 1 (mar-2008) -....cParisdMagasins/AnnexeeP 8° 7093 aZPAY aDEW 909 aGEO RS Sans aspect régional01040cas0 2200301 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200002700156210005800183326001500241430004200256606004100298801003000339801003000369802000700399856012800406856010800534955007100642972000900713992001600722040137236000081968920130319051555.01 a1011-6702 accn1011-6702 a0000819689 a19890414a19889999 0frey0103 ba0 aeng aGB aag 10aJournal of world trade aKingston upon ThamescKluwer Law Internationald1988- aBimestriel 1tJournal of world trade Lawx0022-5444 aCommerce internationalxPériodiques 3aFRbAbesc20040914gAFNOR 3aFRbAbesc20040914gAFNOR a404 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=JWT&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 39 no. 1 (fev-2005) -....cParisdMagasins/AnnexeeP 8° 6819 aZPAY aDEW 380-38200877nls 2200265 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000106001502100089002562300024003456010044003696060034004137120030004478010013004778560050004909920057005409920014005970000960196000096019620130319051555.0 a0000960196 a a19989999k fre 01 ba0 afre aLU ar aaa z  adr 10aJournal officiel de l'Union européenne. C, Communications et informationsb[Ressource électronique] aLuxembourgcOffice des publications officielles des Communautés européennesd1998- aRevue électronique02aCommunautés européennesxPériodiques aDroit européenxPériodiques02aCommunautés européennes 0aFRbFNSP4 uhttp://europa.eu.int/eur-lex/lex/fr/index.htm aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 341.200859nls 2200265 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000088001502100089002382300024003276010044003516060034003957120030004298010013004598560050004729920057005229920014005790000960204000096020420130319051555.0 a0000960204 a a19989999k fre 01 ba0 afre aLU ar aaa z  adr 10aJournal officiel de l'Union européenne. L, Législationb[Ressource électronique] aLuxembourgcOffice des publications officielles des Communautés européennesd1998- aRevue électronique02aCommunautés européennesxPériodiques aDroit européenxPériodiques02aCommunautés européennes 0aFRbFNSP4 uhttp://europa.eu.int/eur-lex/lex/fr/index.htm aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 341.200917nas 2200241 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181060006001251100016001312000050001472100041001973260014002384300076002524400113003288560145004419550078005869910011006640000100320000010032020131015170350.0 aFNSP433701 a0000100320 a19900101b18701920 ba0 afre aFR ar aaaa 00aJournal officiel de la République française aPariscJournaux officielsd1870-1920 aquotidien 1aJournal officiel de l'Empire français  1aJournal officiel de la République française. Lois et décrets (0373-0425) 4 uhttp://gallica.bnf.fr/ark:/12148/cb34378481r/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1871-1939)1 béd. en microfiches : 1870 -----> 1920cParisdMagasins/ANnexeeP Mic F 3 anumerX01327nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200010100139210003700240326002500277517009100302517011000393607005000503607004800553676000800601710004200609801002100651856014200672955008700814955005500901972000900956992002200965992001400987013303058000000476520131104171739.01 a0429-3541 aFNSP106368 a19900101a19479999 ba0 afre aFR aaeu 10aJournal officiel de la République française. Avis et rapports du Conseil économique et social aPariscJournaux officielsd1947- a2 ou 3 fois par mois10aJournal officiel de la République française. Avis et rapports du Conseil économique10aJournal officiel de la République française. Les avis du Conseil économique, social et environnemental aFrancexConditions économiquesxPériodiques aFrancexPolitique économiquexPériodiques a30002aFrancebConseil économique et social 3aFRbCCN0429-35414 uhttp://www.conseil-economique-et-social.fr/ces_dat2/2-3based/base.htmzSommaires depuis 1947; accès libre au texte intégral depuis 19981 bConservation limitée aux 3 dernières annéescParisdMagasins/AnnexeeP 8° 63921 b(1947) -(2002)cParisdMagasins/AnnexeeP Mic F 10 aZCAD aGEO RA4.06 France aDEW 338.901155nas 2200241 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000120001552100037002753260016003124370123003285300120004518560054005718560218006259550070008430000011120000001112020130319051555.01 a0242-6765 aFNSP122918 a0000011120 a19900725a19809999 ba0 afre aFR aaza 10aJournal officiel de la République française. Débats parlementaires. Assemblée nationale. Compte rendu intégral aPariscJournaux officielsd1980- airrégulier 1aJournal officiel de la République française. Débats parlementaires. Assemblée nationale (0242-6749) < P Mic F 11 >00aJournal officiel de la République française. Débats parlementaires. Assemblée nationale. Compte rendu intégral4 uhttp://www.assembleenationale.fr/debats/index.asp4 zAccès libre au texte intégral. Contenu : depuis la session 2001-2002 ; depuis le 20 janvier 2004, la version numérisée du compte rendu intégral des débats est mise en ligne dans un délai de 24 à 48 heures.1 béd. en microfiches : 1980 ---> 2002cParisdMagasinseP Mic F 1101130nas 2200253 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001391100016001452000143001612100037003043000050003413260016003914300123004075300143005308560135006739550068008080000010978000001097820130319051555.01 a0242-6757 aFNSP121349 a0000010978 a19900719a19809999 ba0 afre aFR ar aaza 10aJournal officiel de la République française. Débats parlementaires. Assemblée nationale. Questions écrites et réponses des ministres aPariscJournaux officielsd1980- aTable annuelle conservée avec le périodique aIrrégulier 1aJournal officiel de la République française. Débats parlementaires. Assemblée nationale (0242-6749) < P Mic F 11 >00aJournal officiel de la République française. Débats parlementaires. Assemblée nationale. Questions écrites et réponses des ministres4 uhttp://questions.assemblee-nationale.frzQuestion écrites, orales et réponses ministérielles depuis 1981-1986 (7e Législature)1 b1980--->2002 (éd. en microfiches)cParisdMagasinseP Mic F 1100976nas 2200241 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000106001552100037002613000050002983260016003484370101003645300106004658560095005719550068006660000011136000001113620130319051555.01 a0755-544X aFNSP123148 a0000011136 a19900725a19839999 ba0 afre aFR aaza 10aJournal officiel de la République française. Débats parlementaires. Sénat. Compte rendu intégral aPariscJournaux officielsd1983- aTable annuelle conservée avec le périodique airrégulier 1aJournal officiel de la République française. Débats parlementaires. Sénat (1958) (0242-6803)00aJournal officiel de la République française. Débats parlementaires. Sénat. Compte rendu intégral4 uhttp://www.senat.fr/seances/seances.htmlzAccès libre au texte intégral depuis juin 19961 béd. en microfiche 1983 ---> 2002cParisdMagasinsePMic F (13)01120nas 2200241 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000179001552100037003343000050003713260016004214300101004375300179005388560093007179550068008100000010980000001098020130319051555.0 a0755-5458 aFNSP121351 a0000010980 a19900719a19839999 ba0 afre aFR aaza 10aJournal officiel de la République française. Débats parlementaires. Sénat. Questions remises à la présidence du Sénat et réponses des ministres aux questions écrites aPariscJournaux officielsd1983- aTable annuelle conservée avec le périodique airrégulier 1aJournal officiel de la République française. Débats parlementaires. Sénat (1958) (0242-6803)00aJournal officiel de la République française. Débats parlementaires. Sénat. Questions remises à la présidence du Sénat et réponses des ministres aux questions écrites4 uhttp://www.senat.fr/quesdom.htmlzAccès libre au texte intégral depuis le 2 avril 19781 béd. en microfiche 1983 ---> 2002cParisdMagasinsePMic F (13)01218nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001391100016001452000074001612100037002354300085002725170076003575300074004336070041005078010021005488300060005698560100006299550060007299550077007899920022008669920016008880000010972000001097220130319051555.01 a0242-6773 aFNSP121326 a0000010972 a19900101a19559999 ba0 afre aFR ar aazu 10aJournal officiel de la République française. Document administratif aPariscJournaux officielsd1955- 1aJournal officiel de la République française. Annexe administrative (0242-6846)10aJournal officiel de la République française. Documents administratifs00aJournal officiel de la République française. Document administratif aFrancexAdministrationxPériodiques 3aFRbCCN0242-6773 adésherbé en février 2006 période avril 2006 à 20084 uhttp://www.journal-officiel.gouv.fr/dae.htmlzAccès libre au texte intégral depuis avril 20061 b2004 ---> mars 2006cParisdMagasins/AnnexeeP 4° 16171 bed. sur support microfiches : 1955---> 2002cParisdMagasinseP Mic F 16 aGEO RA4.06 France aDEW 350-35401424nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001391100016001452000068001612100037002293000050002663260014003164210108003305300068004386060031005066060046005378560195005838560108007788560106008869550069009929920025010619920012010860000011036000001103620130319051555.01 a0373-0425 aFNSP122071 a0000011036 a19900723a19219999 ba0 afre aFR ar aa a 10aJournal officiel de la République française. Lois et décrets aPariscJournaux officielsd1921- aTable annuelle conservée avec le périodique aQuotidien 1aJournal officiel de la République française. Lois et décrets. Associations (0753-2156) < P 4°5065 >00aJournal officiel de la République française. Lois et décrets aLoisyFrancexPériodiques aDroityFrancexLégislationxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://lamyline.lamy.fr/content/Search.aspxzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.legifrance.gouv.fr/zAccès libre aux contenus des numéros à partir de 1990 sur Legifrance4 uhttp://www.lexeek.com/journal-officiel/zAccès libre au texte intégral à partir de 1947 sur Lexeek1 béd. en microfiches : 1921 --- >1989cParisdMagasinseP Mic F 3 aGEO RA4.06 France 01 aDEW 34801332nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000086001552100089002413260014003304300068003445300086004126010044004986060034005427120030005768560050006069550081006569570222007379920057009599920014010160000066844000006684420130319051555.01 a0378-7052 aFNSP310434 a0000066844 a19900101a19689999 f ba0 afre aLU aaaa 10aJournal officiel des Communautés européennes. C, Communications et informations aLuxembourgcOffice des publications officielles des Communautés européennesd1968- aQuotidien 1aJournal des Communautés européennes (0022-5479) < P 4°1116 >00aJournal officiel des Communautés européennes. C, Communications et informations02aCommunautés européennesxPériodiques aDroit européenxPériodiques02aCommunautés européennes4 uhttp://europa.eu.int/eur-lex/lex/fr/index.htm1 bEd. en microfiche de 1952 à 2002cParisdSalle de référenceeP Mic F (18)1 rLes tables annuelles sur papier sont conservées à partir de 1968 dans la Salle des collections. Egalement sous forme de microfiches de 1952 à 2001, avec l'année correspondante < PMic F (18) >, Salle de référence aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 341.200853nls 2200265 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001322000068001392100089002073260014002966010044003106060048003547120030004028010021004328010013004538560050004669920057005169920014005730000066801000006680120130319051555.01 a0378-7060 aFNSP310313 a0000066801 a19900101a19689999 f ba0 afre aLU10aJournal officiel des Communautés européennes. L, Législation aLuxembourgcOffice des publications officielles des Communautés européennesd1968- aQuotidien02aCommunautés européennesxPériodiques aDroit européenxLégislationxPériodiques02aCommunautés européennes 3aFRbCCN0017/5072 0aFRbFNSP4 uhttp://europa.eu.int/eur-lex/lex/fr/index.htm aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 341.201404cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200004700174210002400221326002500245326002600270326002700296326002900323530002500352606003000377606005300407801003000460801002300490801001300513802000700526856009500533856007100628856010800699856010800807955007000915972000900985992001200994058256679000048695020130617100238.01 a1464-8849 aissn14648849 a0000486950 a20010206a20009999k y0frey0103 ba0 aeng aGB a 0  aaiu 0uu 10aJournalismetheory, practice and criticism aLondoncSaged2000- a8 fois par anb2011- aBimestrielb2007-2010 aTrimestrielb2003-2006 a3 fois par anb2000-200210aJournalismb(London) aJournalismexPériodiques aJournalismexEtude et enseignementxPériodiques 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20010206 0aFRbFNSP a024 uhttps://acces-distant.sciences-po.fr/fork?http://www.sagepub.co.uk/journal.aspx?pid=105704 zContenu : sommaires et résumés depuis le vol.1, n°1, avril 20004 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (avr-2000) -....cParisdMagasins/AnnexeeP 8° 6649 aZSAB aDEW 07001071cas0 2200337 450 00100100000000200110001000500170002101100140003803500170005203500150006910000410008410100080012510200070013310500180014011000160015820000240017420700310019821000310022932600230026032600290028360600300031280100300034280100230037280200070039585601100040285601090051295500700062197200090069199200120070099200210071211463551X000115881620130319051556.01 a1751-2786 aissn17512786 a0001158816 a20070522a20079999k y0frey0103 ba0 aeng aGB ay 0  aaha 0uu 10aJournalism practice 0aVol. 1, no. 1 (Feb. 2007)- aAbingdoncRoutledged2007- aTrimestriel$d2009- a3 n°s par an$d2007-2008 aJournalismexPériodiques 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20070501 a024 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t762290976db=jour zContenu: sommaires, résumés des articles et texte intégral des n°s depuis le vol. 1 no. 1 (fev-2007)1 bvol. 1 no. 3 (oct-2007) -....cParisdMagasins/AnnexeeP 8° 7070 aZPAY aDEW 070 aGEO RQ Universel01492nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200009500163207002800258210003100286326002200317326002700339606003000366676000800396710005600404801001300460856005600473856007000529856010300599856010800702856010900810856010800919955007001027972000901097992001201106089938143000060297620140109121833.01 a1461-670X a0000602976 a a20009999 fre 01 ba0 aeng aGB a 0  ar aag z 0 10aJournalism studiesfpublished in cooperation with European Journalism Training Association 1aVol.1, n.1 (Feb. 2000)- aAbingdoncRoutledged2000- aBimestrielb2006- aTrimestrielb2000-2005 aJournalismexPériodiques a07002aAssociation européenne de formation au journalisme 0aFRbFNSP4 uhttp://www.tandf.co.uk/journals/titles/1461670X.asp zSommaires et résumés d'articles depuis le vol.1, n°1, Feb.20004 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=104721 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713393939db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 1 (fev-2004) -....cParisdMagasins/AnnexeeP 8° 6741 aZPAY aDEW 07001492nls 2200265 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281350018001342000045001522100044001972300005002413000079002463300740003256060047010656060022011128010013011348300008011478560071011550000583657000058365720130319051557.0 a0000583657 a d20049999k fre 01 0 afre aFR ay z y  az adr 10aJurisclasseurb[Ressource électronique] aPariscEditions du JurisClasseurd2004- a aConsultation : uniquement à partir des postes publics de la bibliothèque aLa base donne accès aux Encyclopédies JurisClasseur : 42 collections : textes, doctrine, formules, jurisprudence, bibliographies mises à jour régulièrement ; La Semaine Juridique : 8 dernières années 1995-2002 des 3 éditions (Générale, Entreprise et Affaires, Notariale et Immobilière) en texte intégral : les études doctrinales, les chroniques d'actualité, les commentaires et les sommaires de jurisprudence, les comptes rendus bibliographiques ; Jurisprudence : Copie d'arrêts : accès à plusieurs centaines de milliers de décisions issues des cours d'appel, complétées par des décisions significatives des tribunaux, aux décisions de la Cour de cassation, du Conseil d'État et des cours administratives d'appel aDroityFrancexJurisprudencexPériodiques aBases de données 0aFRbFNSP amfo4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.fr00851nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000058001502100034002082300024002423260005002666060054002718010013003258560085003388560108004239550005005319920025005369920012005610000969198000096919820130319051557.0 a0000969198 a a19979999k fre 01 ba0 afre aFR ar aaz z  adr 10aJurisprudence sociale Lamyb[Ressource électronique] aPariscLamyline Reflexc1997- aRevue électronique a aDroit socialyFrancexJurisprudencexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 34401141nas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200006100180207001600241210002500257300004900282326001100331606004000342606003100382676000800413710003400421801003000455801002300485802000700508856004500515856005300560955006600613955005300679992001100732992001200743136030920000117351820130319051557.01 a2101-8790 aissn21018790 a0001173518 a20090819a20099999k y0frey0103 ba0 afre aFR ay  ar aaku uu 10aJus politicumerevue de droit politiquefInstitut Villey 0aN°1 (2009) aPariscDallozd2009- aExiste en version électronique depuis 2008. aAnnuel aDroit constitutionnelxPériodiques aDroit publicxPériodiques a34202aInstitut Michel VilleycParis 3aFRbAbesc20090819gAFNOR 3aFRbISSNc20090617 a074 uhttp://www.juspoliticum.com/-Revue-.html4 zContenu : texte intégral du rapport depuis 20081 bLes 3 dernières annéescParisd30, Salle 3e étageeDEW 3421 b(2009) -....cParisdMagasins/AnnexeeP 8° 7102 aGEO RQ aDEW 34200976nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010018000951020007001131060006001201100016001261350018001422000151001602100075003112300024003866060040004106060047004506060040004978010013005378560033005508560065005839550005006489920012006539920021006650001159586000115958620130319051557.0 a0001159586 a a20089999k fre 01 ba0 afreaengager aFR ar aaz z  adr 10aJus politicumb[Ressource électronique]eRevue de droit politiqueeJournal of constitutional law and politicseZeitschrift für politisches Recht aVersaillescUniversité de Versailles Saint-Quentin-en-Yvelinesd2008- aRevue électronique aDroit constitutionnelxPériodiques aScience politiquexRecherchexPériodiques aPhilosophie politiquexPériodiques 0aFRbFNSP4 uhttp://www.juspoliticum.com/4 zContenu : texte intégral des articles depuis le no. 1, 20081 r aDEW 342 aGEO RQ Universel00890nls 2200241 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281350018001342000048001522100050002003300211002506060055004618010013005168300007005298560074005368560038006100000857308000085730820130319051559.0 a0000857308 a d20059999k fre 01 0 aeng aUS ay z y  az adr 10aKeesing's Onlineb[Ressource électronique] aWashington, D.C.cKeesing's Worldwided2005?- aAccès à toute la collection du Keesing's Record of World events depuis 1960 : interrogations thématiques ou chronologiques sur un pays, une organisation internationale, une personnalité, un événement. aHistoire universellez1945-....xBases de données 0aFRbFNSP adm4 uhttp://keesings.gvpi.net/keesings/lpext.dll?f=templates&fn=main-h.htm4 zConsultation : Campus Sciences Po01037nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000037001552100027001923260012002194300067002316060063002986060063003618560071004248560108004959550088006039720009006919920031007009920016007310000010318000001031820130319051559.01 a0950-6128 aFNSP118829 a0000010318 a19900628a19879999 ba0 aeng aGB aafu 10aKeesing's record of world events aLondoncLongmand1987- aMensuel 1aKeesing's contemporary archives (0022-9679) < P 4° 0594 bis > aHistoire universellez1970-1990xChronologiexPériodiques aHistoire universellez1990-....xChronologiexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.keesings.com/4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 33 ( 1987) - vol. 53 no 6 (jun -2007)cParisdMagasins/AnnexeseP 4° 0594 bis aZCAD aGEO RA4.02 Grande-Bretagne aDEW 900-90701015nas 2200289 i 450 002001100000005001700011011001400028035001500042100004100057101000800098102000700106110001600113200006100129210004200190326001100232430006600243517004400309607006200353710003900415856012200454955005500576972000900631991001800640992001600658992003500674992001600709000019178420140116164010.01 a0969-4838 aFNSP707783 a19900101a19909999 ba0 aeng aPH aaka 10aKey indicators of developing Asian and Pacific countries aManilacAsian Development Bankd1990- aAnnuel 1aKey indicators of developing member countries of ADBx116-30001 aKey indicators for Asia and the Pacific aAsiexConditions économiquesxStatistiquesxPériodiques02aBanque asiatique de développement4 uhttp://www.adb.org/publications/series/key-indicators-for-asia-and-the-pacificzAccés au texte intégral depuis 19991 b(1995) -(2012)cParisdMagasins/AnnexeeP 4° 6638 aZPAY aexempb201401 aGEO RH Asie aGEO RJ Océanie, Pacifique Sud aDEW 310-31900955nls 2200277 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200012400124210004200248230002400290326001100314517004400325607006200369710003900431801001300470856012200483955000500605992001600610992003500626992001600661000124460820130517102228.0 a a20129999k fre 01 ba0 aeng aPH ar aak z  adr 10aKey indicators of developing Asian and Pacific countriesb[Ressource électronique]fBanque asiatique de développement aManilacAsian Development Bankd2012- aRevue électronique aAnnuel12aKey indicators for Asia and the Pacific aAsiexConditions économiquesxStatistiquesxPériodiques02aBanque asiatique de développement 0aFRbFNSP4 uhttp://www.adb.org/publications/series/key-indicators-for-asia-and-the-pacificzAccés au texte intégral depuis 19991 r aGEO RH Asie aGEO RJ Océanie, Pacifique Sud aDEW 310-31900825nas 2200301 i 450 0010011000000020011000110050017000220110014000391000041000531010008000941020007001021050018001091060006001271100016001332000069001492100023002183260011002415320009002526060037002617100043002988010013003418560061003549550053004159720009004689910018004779920016004959920012005110000291561000029156120140117164634.01 a1728-4309 a a19999999k f fre ba0 aeng aCH a 0  ar aak i 0 10aKey indicators of the labour marketfInternational Labour Office aGenevacILOd1999- aAnnuel10aKILM aMarché du travailxPériodiques02aOrganisation internationale du travail 0aFRbFNSP4 uhttp://www.ilo.org/public/english/employment/strat/kilm/1 b(1999) -....cParisdMagasins/AnnexeeP 4° 6824 aZGRA aexempb201401 aDEW 310-319 aDEW 33100945nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210003300185326001100218530005200229606002400281606003100305710003600336801002100372856012400393955005400517972000900571991001800580992002100598992001200619036311278000000806720130705125137.01 a0075-6423 aFNSP113884 a0000008067 a19900101a19619999 ba0 aeng aJP aaku 10aKobe University law review aKobecKobe Universityd1961- aAnnuel aKobe University law review‎bInternational ed aDroitxPériodiques aDroityJaponxPériodiques02aKobe UniversitybFaculty of Law 3aFRbCCN0017/98924 uhttp://www.law.kobe-u.ac.jp/lawrev/mokuji.htmzAccès libre à une sélection d'articles en texte intégral depuis 19611 b(1961) - ....cParisdMagasins/AnnexeeP 8° 2031 aZGRA aexempb200908 aGEO RI3.22 Japon aDEW 34000888nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200006200138210004100200326001600241430004000257606004000297801002100337856003500358856007500393955006600468972000900534991001800543992002500561992001200586038740966000002643920130319051600.01 a0023-2653 aFNSP170380 a0000026439 a19900101a19559999 ba0 ager aDE10aKölner Zeitschrift für Soziologie und Sozialpsychologie aOpladencWestdeutscher Verlagd1955- aTrimestriel 1aKölner Zeitschrift für Soziologie aSociologieyAllemagnexPériodiques 3aFRbCCN0023-26534 uhttp://www.uni-koeln.de/kzfss/ zContenu : sommaires et résumés en allemand et en anglais depuis 19941 bvol. 7 no. 1 (1955) -....cParisdMagasins/AnnexeeP 8° 1007 aZGRA aexempb201101 aGEO RA5.01 Allemagne aDEW 30100905nas 2200277 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000024001412100030001653260017001954300028002125300024002406070046002646070061003108560045003719550069004169550087004859920039005729920016006110000268634000026863420130319051600.0 aFNSP929469 a0000268634 a19990323a19979999 ca0 arus aRU aa a 10aKommersant". Vlast' aMoskvacKommersantd1997- ahebdomadaire 1aKommersant

00aKommersant". Vlast' aRussiexCommerce extérieurxPériodiques aRussiexConditions économiquesz1991-....xPériodiques4 uhttp://www.kommersant.com/rus/weekly.htm1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 69141 bConservation limitée aux 5 dernières annéescParisdMagasins/AnnexeeP 4° 6914 aGEO RA7.21 Russie (depuis 1991-92) aDEW 380-38201077nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210004300176326001600219421004700235440004400282606004200326801002100368830010600389856006300495856006100558955008700619991001800706992001400724992002500738038741199000002647820130319051600.01 a0023-3498 aFNSP170793 a0000026478 a19900101b19542002 ba0 ager aDE aaga 10aKonjunkturpolitik aBerlincDuncker und Humblotd1954-2002 aTrimestriel 1aBeihefte der Konjunkturpolitik (0452-4780) 1tApplied economics quarterly,x1611-6607 aConjoncture économiquexPériodiques 3aFRbCCN0023-3498 avol. 1 no. 1 (1961) ---> vol 30 no. 6 (1984) < P 8° 1882 > collection donnée au CTL en juillet 20014 uhttp://www.diw.de/deutsch/publikationen/konjunkturpolitik/ zContenu : sommaires et résumés depuis le vol. 42, 19961 bvol. 31 no. 1/2 (1985) -vol. 48 no. 3/4 (2002)cParisdMagasins/AnnexeeP 8° 1882 aexempb200910 aDEW 330.9 aGEO RA5.01 Allemagne01121nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000180013921000560015732600230021332600230023660700390025971000620029880100210036085600600038185600590044195500700050095701670057097200090073799100180074699200290076499200140079301331257X000002620220131028124522.01 a0023-3900 aFNSP169879 a19900101a19619999 ba0 aeng aKR aahu 10aKorea journal aSeoulcKorean National Commission for Unescod1961- aTrimestrielb1991- aMensuelb1961-1990 aCorée (République)xPériodiques02aCoréec(République)bCommission nationale pour l'Unesco 3aFRbCCN0023-39004 uhttp://www.ekoreajournal.net/paper/service/bk_issue.jsp zContenu : texte intégral depuis le vol. 1 n° 1, 19611 bvol. 1 no. 3 (nov-1961) -....cParisdMagasins/AnnexeeP 8° 24641 b(1961) -(1981) ; (1981) -(1986) ; (1961) -(1991)cParisdMagasins/AnnexeeP Index 0373zvol. 35 (1995) -vol. 39 (1999): se trouve dans le vol. 34 no. 4 (Win-1999) aZGRA aexempb200908 aGEO RI3.13 Corée du Sud aDEW 951.901132nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210005500193326001500248606004400263607005000307710004900357856010900406856010800515955012700623991001800750992002900768992002100797992001200818040161153000007865420130319051600.01 a1016-3271 aFNSP353728 a0000078654 a19900101a19899999 ba0 aeng aKR aaja 10aKorean journal of defense analysis aSeoulcKorea Institute for Defense Analysisd1989- aSemestriel aRelations internationalesxPériodiques aCorée (République)xRelationsxPériodiques02aKorea Institute for Defense Analyses (Seoul)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t792815843db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 2 (1991) - vol. 9 no. 1 (1997) ; vol. 19 no. 1 (2007) -vol. 19 no. 4 (2007)cParisdMagasins/AnnexeeP 8° 5897 aexempb201201 aGEO RI3.13 Corée du Sud aGEO RQ Universel aDEW 32701014nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000047001502100005001972300024002023260014002266010033002406060029002736070041003028010013003438560192003568560108005489550005006569920039006619920012007000001131861000113186120130319051600.0 a0001131861 a a20059999k fre 01 ba0 arus aRU ar aaa z  adr 10aKrasnaâ zvezdab[Ressource électronique] a aRevue électronique aquotidien02aRussie. ArméexPériodiques aActualitéxPériodiques aRussiexForces arméesxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA7.21 Russie (depuis 1991-92) aDEW 05000834nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001100154210002500165300002600190326001600216530001800232601004500250606004400295676000800339856005100347955005900398972000900457991001800466992002200484992001400506039869024000002627920140110101413.01 a0994-2440 aFNSP170053 a0000026279 a19910304a19889999 ba0 afre aFR aaza 10aKrisis aPariscKrisisd1988- aN' a pas paru en 2007 aIrrégulier 0aKrisisbParis02aNouvelle droite françaisexPériodiques aPartis politiquesyFrancexPériodiques a3204 uhttp://www.alaindebenoist.com/pages/krisis.php1 bno. 1 (1988) -....cParisdMagasins/AnnexeeP 8° 5191 aZPAY aexempb201106 aGEO RA4.06 France aDEW 320.500856nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000210015421000300017532600160020560600350022180100210025685600510027785601000032895500740042897200090050299100180051199200250052999200120055403874175X000002647520130319051600.01 a0023-4834 aFNSP170788 a0000026475 a19900101a19689999 ba0 ager aDE aaha 10aKritische Justiz aBaden-BadencNomosd1968- aTrimestriel aDroityAllemagnexPériodiques 3aFRbCCN0023-48344 uhttp://www.kj-online.de/kjneu/kjneu_zeit.lasso zContenu : sommaires et abstracts depuis le n°2, 1999, texte intégral des années 2002 à 20041 bvol. 8 no. 3 (jan/mar-1975) -....cParisdMagasins/AnnexeeP 8° 3553 aZPAY aexempb200911 aGEO RA5.01 Allemagne aDEW 34900783nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001100154210004200165326001600207606003700223801002100260856007000281856006300351955008200414972000900496992001200505038742209000002629220131202105249.01 a0023-5962 aFNSP170091 a0000026292 a19900101a19479999 ba0 aeng aCH aahu 10aKyklos aBaselcHelbing und Lichtenhahnd1947- aTrimestriel aEconomie politiquexPériodiques 3aFRbCCN0023-59624 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=00235962 zContenu : sommaires depuis le vol. 50, n°1, février 19971 bvol. 1 no. 1 (1947) -vol. 65 no. 4 (2012)cParisdMagasins/AnnexeeP 8° 0954 aZPAY aDEW 33001293cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200007800162207002600240210010700266210006500373326001500438430004900453606004400502607004900546710004900595801003000644801002300674802000700697856004300704856005900747955007100806972000900877992002100886992001200907089844181000104758920130319051601.01 a1349-6786 aissn13496786 a0001047589 a20050223a20049999k y1frey0103 ba0 aeng aJP ar aaju uu 14aThe Kyoto economic reviewfKyoto University. Graduate School of Economics 1aVol. 73 no. 1 (2004)- aKyotocOffice of Advanced Economic Analysis, Graduate School of Economics, Kyoto Universityd2004-2007 aKyotocGraduate School of Economics, Kyoto Universityd2008- aSemestriel 1tKyoto University economic review,x0023-6055 aEconomie politiqueyJaponxPériodiques aJaponxConditions économiquesxPériodiques02aGraduate School of Economicsc(Kyoto, Japon) 3aFRbAbesc20060106gAFNOR 3aFRbISSNc20050901 a094 uhttp://www.jstage.jst.go.jp/browse/ker zContenu : texte intégral depuis le vol.73, n°1, 20041 bvol. 73 no. 1 (jun-2004) -....cParisdMagasins/AnnexeeP 8° 1059 aZGRA aGEO RI3.22 Japon aDEW 33801168nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002600139210006700165326001600232452005000248530002600298606003100324710006900355801002100424856023300445955007100678957007800749972000900827991001800836992001200854039102262000002670120131011161744.01 a0160-449X aFNSP171303 a19900101a19769999 ba0 aeng aUS aaha 10aLabor studies journal aNew Brunswick, N.J.cTransaction Periodicals Consortiumd1976- aTrimestriel 1ttLabor studies journal (Online)‎x1538-975800aLabor studies journal aSyndicalismexPériodiques02aUniversity and College Labor Education Associationc(Etats-Unis) 3aFRbCCN0160-449X4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=LSJ&site=ehost-livezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 10 no. 3 (hiv-1986) -....cParisdMagasins/AnnexeeP 8° 50231 bvol. 1 (1976) -vol. 19 (1995)zse trouve dans le vol. 20 no. 2 (ete-1995) aZSAB aexempb201106 aDEW 33101132nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101001300108102001100121105001800132106000600150110001600156200002400172210010100196326001800297326002600315606004400341607002500385710004300410711015200453801001300605856004900618856004800667955006800715972000900783992001400792058818057000045552620131010162147.01 a1627-9204 a0000455526 a a20019999k fre ba0 afreaita aFRbIT a 0  ar aak z 0 10aLaboratoire italien aLyoncAssociation Laboratoire italiencENS édaFirenzecLibreria Leggere per [diffuseur]d2001- aAnnuelb2002- aSemestrielb2001-2001 aScience politiqueyItaliexPériodiques aItaliexPériodiques02aAssociation Laboratoire italien (Lyon)02aCentre interuniversitaire de recherches sur l'Italie (langue, littérature, interactions culturelles, société et mentalités)c(Talence, Gironde) 0aFRbFNSP4 uhttp://www.jus.unitn.it/labo/revue/home.html zSommaires et résumés depuis le n°1, 20011 bno. 1 (2001) -no. 12 (2012)cParisdMagasins/AnnexeeP 8° 6620 aZCAD aDEW 320.501465cas0 2200361 450 001001000000002001100010005001700021035001500038100004100053101001300094102000700107105001800114110001600132200012800148207001400276210003500290301006400325301004900389302012000438326001800558510003800576517005200614530004200666606002900708606003600737710007300773801003000846856004000876856007600916955005900992992004001051992001201091139787135000119120620130319051602.0 a0001191206 a20100114a20099999k y0frea50 ca0 arusaeng aRU ay 0  aaiu 0 10aLaboratoriumežurnal socialʹnyh issledovanij =dRussian review of social researchfCenter for independent social research 0a1 (2009)- aSankt-Peterburgc[CNSI]d2009- aDemande de numérotation ISSN en cours par le CR28 20100208 aISSN figurant sur la publication : 2076-8214 aTexte bilingue russe/anglais (les articles en anglais sont des traductions abrégées ou non des articles en russe) a3 n°s par an10aRussian review of social research10aLaboratoriumeRussian review of social research10aLaboratoriumb(Sankt-Peterburg. 2009) aSociologiexPériodiques aSciences socialesxPériodiques02aCenter for independent social researchc(Saint-Pétersbourg, Russie) 3aFRbAbesc20100208gAFNOR4 uhttp://www.soclabo.org/eng/journal/ zContenu: sommaires, résumés et texte intégral depuis le no. 1 (2009)1 bno. 1 (2009) -....cParisdMagasins/AnnexeeP 8° 7136 aGEO RA7. 21 Russie (depuis 1991-92) aDEW 30101094nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006400139210003900203210004000242326002300282326002800305452004000333530003600373606004200409606003800451710003300489856007200522856004900594955008600643972000900729991001800738992001200756036255947000002676720131202131819.01 a1121-7081 aFNSP171465 a19910308a19879999 ba0 amul aIT aaha 10aLabourereview of labour economics and industrial relations aRoma‎cWiley-Blackwell‎d1999-1 aRomacE & L Publicationsd1987-1998 aTrimestrielb1998- a3 nos par anb1987-1997 1tLabour (Oxford. Online),x1467-991410aLabour‎bRoma. Testo stampato aRelations industriellesxPériodiques aEconomie du travailxPériodiques02aFondazione Giacomo Brodolini4 uhttp://www.blackwellpublishing.com/journal.asp?ref=1121-7081&site=1 zContenu : sommaires et résumés depuis 19871 bvol. 1 no. 1 (1987) -vol. 26 no. 4 (dec-2012)cParisdMagasins/AnnexeeP 8° 5093 aZPAY aexempb201106 aDEW 33101366nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210007600185326001500261437005000276517003300326607007200359710007700431801002100508856012800529856010800657955013000765957007100895991001800966992004200984992001401026039671437000002677320130319051602.0 a0706-1706 aFNSP171474 a0000026773 a19900101a19799999 ba0 amul aCA aaja 10aLabour capital and society aaMontrealcCentre for Developing-Area Studies, McGill Universityd1979- aSemestriel 1aManpower and unemployment researchx0702-760510aTravail capital et société aPays en voie de développementxPolitique économiquexPériodiques02aCentre d'études sur les régions en développementc(Montréal, Canada) 3aFRbCCN0706-17064 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=3ZB&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 16 no. 1 (1983) -vol. 22 no. 2 (1989) ; vol. 25 no. 1 (1992) -vol. 31 no. 1/2 (1998)cParisdMagasins/AnnexeeP 8° 46941 bvol. 1 (1968) -vol. 8 (1985)cParisdMagasins/AnnexeeP Index 0630 aexempb201010 aGEO RO Pays en voie de développement aDEW 338.900881nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000035001552100028001903260018002186070072002366070058003086760010003668560039003768560053004159550070004689720009005389920032005479920012005790000013472000001347220130319051602.01 a0141-7746 aFNSP135027 a0000013472 a19900924b19772003 ba0 aeng aGB aaiu 10aLabour focus on Eastern Europe aOxfordcBergd1977-2003 a3 n°s par an aEurope de l'EstxPolitique et gouvernementz1989-....xPériodiques aEurope de l'EstxRelations extérieuresxPériodiques a943.74 uhttp://www.gn.apc.org/labourfocus/ zContenu : sommaires depuis le vol. 1, n°1, 19771 bno. 1 (1990)-no. 75/76 (2003)cParisdMagasins/AnnexeeP 4° 5941 aZPAY aGEO RA2.02 Europe orientale aDEW 94701304nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200012400154210002300278300005600301326001100357430003400368510004100402606006600443710009500509856012300604856010800727955007900835972000900914992005100923992001600974032923473000007724420130319051602.01 a0474-5515 aFNSP350227 a0000077244 a19900101a196X9999 f ba0 amul aFR aaka 10aLabour force statisticsd= Statistiques de la population activefOrganisation for Economic Co-operation and Development aPariscOCDEd196X- aChaque volume regroupe 10 ou 20 ans de statistiques aAnnuel 1aStatistiques de main d'oeuvre10aStatistiques de la population active aPopulation activeyPays de l'OCDExStatistiquesxPériodiques02aOrganisation de coopération et de développement économiquesbDirection des statistiques4 uhttps://acces-distant.sciences-po.fr/fork?http://titania.sourceocde.org/vl=1504601/cl=20/nw=1/rpsv/outlook_annuals.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1950/1962) ; (1962/1982) -(1986/2006)cParisdMagasins/AnnexeeP 4° 5219 aZPAY aGEO RN1 Pays industrialisés, pays occidentaux aDEW 310-31901067nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005100163210004000214326001700254517005100271530002800322606003600350801001300386856003400399856008900433856010800522955007200630972000900702991001800711992001200729040604217000048280120131008114237.01 a1288-6289 a0000482801 a a19989999k fre ba0 afre aFR a 0  ar aai z 0 10aLabyrintheela revue des étudiants chercheurs aPariscMaisonneuve et Larosed1998- a3 nos par an10aLabyrintheela revue des étudiants-chercheurs10aLabyrinthebParis. 1998 aSciences socialesxPériodiques 0aFRbFNSP4 uhttp://labyrinthe.revues.org/4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-labyrinthe.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (aut-1998) -no. 34 (2010)cParisdMagasins/AnnexeeP 8° 6643 aZPAY aexempb201212 aDEW 30000828nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000046001502100034001962300024002303260005002546060043002598010013003028560085003158560108004009550005005089920025005139920012005380000969220000096922020130319051602.0 a0000969220 a a19979999k fre 01 ba0 afre aFR ar aaz z  adr 10aLamy assuranceb[Ressource électronique] aPariscLamyline Reflexc1997- aRevue électronique a aAssurancexDroityFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 34600939nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000076001502100034002262300024002603260005002846060046002896060042003358010013003778560085003908560108004759550005005839920025005889920012006139920012006250000969197000096919720130319051602.0 a0000969197 a a19979999k fre 01 ba0 afre aFR ar aaz z  adr 10aLamy droit de l'informatique et des réseauxb[Ressource électronique] aPariscLamyline Reflexc1997- aRevue électronique a aInformatiquexDroityFrancexPériodiques aInternetxDroityFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 346 aDEW 00400836nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000053001502100034002032300024002373260005002616060044002668010013003108560085003238560108004089550005005169920025005219920012005460000969218000096921820130319051602.0 a0000969218 a a19979999k fre 01 ba0 afre aFR ar aaz z  adr 10aLamy droit immobilierb[Ressource électronique] aPariscLamyline Reflexc1997- aRevue électronique a aImmobilierxDroityFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 34600846nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000055001502100034002052300024002393260005002636060052002688010013003208560085003338560108004189550005005269920025005319920012005560000969216000096921620130319051602.0 a0000969216 a a19979999k fre 01 ba0 afre aFR ar aaz z  adr 10aLamy protection socialeb[Ressource électronique] aPariscLamyline Reflexc1997- aRevue électronique a aSécurité socialexDroityFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 34400895nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000082001502100034002322300024002663260005002906060050002958010013003458560085003588560108004439550005005519920025005569920012005819920012005930000969217000096921720130319051602.0 a0000969217 a a20019999k fre 01 ba0 afre aFR ar aaz z  adr 10aLamy prud'hommesejugements prud'homaux commentésb[Ressource électronique] aPariscLamyline Reflexc2001- aRevue électronique a aConseils de prud'hommesyFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 344 aDEW 33100833nls 2200265 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000046001502100034001962300035002306060043002658010013003088560085003218560108004069920025005149920012005399920016005510000969221000096922120130319051602.0 a0000969221 a a19979999k fre 01 ba0 afre aFR ar aaz z  adr 10aLamy transportb[Ressource électronique] aPariscLamyline Reflexc1997- aRevue électronique en 3 tomes aTransportxDroityFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aGEO RA4.06 France 01 aDEW 346 aDEW 383-38901497cls0 2200349 450 001001000000002001100010005001700021035001600038035001500054100004100069101000800110102000700118106000600125110001600131135001800147200005100165210002700216215000500243230002100248330034300269606006000612606005900672606005300731606005400784712002000838801003000858801003000888801003100918830000700949856011200956856007901068055476023000076995720130319051602.0 aocm46592096 a0000769957 a20010326a20009999 y0frey0103 ba0 afre aFR az aau x  adr 00aLamylineb[Ressource électronique]féd. Lamy a[Paris]cLamyd[2000]- a aService en ligne aAccès au fonds documentaire Lamy mis à jour en continu : le fonds officiel (textes officiels nationaux et communautaires, Traités, jurisprudence de droit privé, jurisprudence de droit public, jurisprudence européenne, autorités administratives), les ouvrages et les revues Lamy. Possibilité de recevoir une newsletter hebdomadaire. aDroityFrancexJurisprudencexBases de données2rameau aDroityFrancexLégislationxBases de données2rameau aDroit européenxLégislationxBases de données aDroit européenxJurisprudencexBases de données02aLamy SA (Paris) 3aFRbAbesc20050314gAFNOR 1aUSbOCLCc20050314gAACR2 2aFRbAUROCc20050314gAFNOR adm uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/lamy/AccesBis.htm?acces=KoEjMqEjBeKq zConsultation : uniquement à partir des postes publics de la Bibliothèque01080nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210005600198326001600254430005800270606003000328606003900358801002100397856009000418856010800508955008300616991001800699992002100717992001600738992001200754038743035000002739220130319051603.01 a0023-7639 aFNSP173983 a0000027392 a19900101a19489999 ba0 aeng aUS aaha 10aLand economicsfUniversity of Wisconsin aMadison, Wis.cUniversity of Wisconsin Pressd1948- aTrimestriel 1tJournal of land & public utility economicsx1548-9000 aAgriculturexPériodiques aDéveloppement ruralxPériodiques 3aFRbCCN0023-76394 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00237639.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 39 no. 1 (1963) -vol. 70 no. 4 (1994)cParisdMagasins/AnnexeeP 8° 1997 aexempb201001 aGEO RQ Universel aDEW 338.1-3 aDEW 33300953nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210002700175326001600202606003100218801002100249856002600270856003700296856008700333856010800420955008500528972000900613991001800622992001100640039608085000005391820130527155828.01 a0458-726X aFNSP255162 a0000053918 a19900101a19669999 ba0 afre aFR aahu 10aLangages (Paris) aPariscLaroussed1966- aTrimestriel aLinguistiquexPériodiques 3aFRbCCN0458-726X4 uhttp://www.persee.fr/ zAccès libre au texte intégral.4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-langages.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 6 no. 23 (sep-1971) -no. 188 (dec-2012)cParisdMagasins/AnnexeeP 8° 2980 aZPAY aexempb201106 aDEW 4100855nas 2200265 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000037001502100027001873260017002146060046002317020044002778010013003218560145003349450017004799550081004969920012005770000472432000047243220130319051603.0 a0000472432 a b18681869k fre ba0 afre aFR a 0  ar aac z 0 13aLa Lanternefpar Henri Rochefort aPariscs.n.d1868-1869 ahebdomadaire aSatire politique françaisexPériodiques 1aRochefortbHenrif(1831-1913 ;cpseud.) 0aFRbFNSP4 uhttp://gallica.bnf.fr/ark:/12148/cb32805103j/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1868-1869) bA.0346(1968)1 bn° 1, 30 mai 1868 --> n° 16, 11 sept. 1868cParisdMagasins/AnnexeeA.0346 aDEW 05001591cas0 2200445 450 001001000000002001100010005001700021011001400038035001400052035001400066035001700080035001700097035001500114035001500129100004100144101000800185102000700193105001800200110001600218200003100234207002800265210003100293215002400324305024400348320008200592326001200674517002100686530003100707531002600738702003400764702003200798801003000830801001800860801002300878802000700901856013300908955005501041991002001096991002901116038430665000110937320130319051603.0 a0996-0120 a070597251 a04809143X accn0996-0120 aissn09960120 asib0383501 a0001109373 a19911204b19071957 y0frey0103 ba0 afre aFR ay 0  aaf 0 10aLarousse mensuel illustré 0aT.1 (1907)- T.14 (1957) aPariscLaroussed1907-1957 a14 volcill.d32 cm aPublication suspendue avec le n°399 (1940, mai) ; reprend avec le n°401 (1948, janvier). - Le n°400 a paru rétrospectivement en 1951 sous le titre de : "La Seconde guerre mondiale : numéro spécial du Larousse mensuel de 1939 à 1947" aTables : 1907-1922 ; 1907-1925 ; 1907-1928 ; 1907-1931 ; par volume 1932-1957 aMensuel10aLarousse mensuel00aLarousse mensuel illustré 0aLarousse mens. illus. 1aAugébClaudef1854-19244651 1aAugébPaulf1881-19514651 3aFRbAbesc20061006gAFNOR 3aFRbSFgAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/cb344251204/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 b(1907) -(1957)cParisdMagasins/AnnexeeP 4° 0373 aPériobTP01 P4 anumer0 (lacunes gallica)01135cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200005100180207003400231210006200265326001600327430002000343517004500363606005400408607003500462710003900497801003000536801002300566802000700589856006600596955007100662992002800733992001200761093710291000117938620130319051603.01 a0890-7218 aissn08907218 a0001179386 a19831012a19839999k y0frey0103 ba0 aeng aUS ay 0  ar aaha 0uu 10aLASA forumfLatin American Studies Association 0aVol. 14, no. 2 (summer 1983)- aPittsburgh, PAcLatin American Studies Associationd1983- aTrimestriel 1tLASA newsletter10aLatin American Studies Association forum aSciences socialesyAmérique latinexPériodiques aAmérique latinexPériodiques10aLatin American Studies Association 3aFRbAbesc20090617gAFNOR 3aFRbISSNc20090617 a014 uhttp://lasa.international.pitt.edu/fra/about/publications.asp1 bvol. 39 no. 1 (hiv-2008) -....cParisdMagasins/AnnexeeP 4° 7262 aGEO RD Amérique latine aDEW 98001227cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101001800125102000700143105001800150110001600168200002700184210005700211326002200268430006400290440005200354607003500406710008500441801003000526801002300556802000700579856008600586856010800672955006900780992002800849992001200877067796214000114835220130319051604.01 a1619-1684 aissn16191684 a0001148352 a20020530a20029999k y0frey0103 ba0 ageraengaspa aDE ay  aaia 10aLateinamerika-Analysen aHamburgcInstitut für Iberoamerika-Kunded2002-2008 aTrois n°s par an 1tLateinamerika (Institut für Iberoamerika-Kunde)x0176-2818 1tJournal of politics in Latin Americax1866-802X aAmérique latinexPériodiques02aGerman Institute of Global and Area Studies, Institute of Latin American Studies 3aFRbAbesc20080811gAFNOR 3aFRbISSNc20020530 a064 uhttp://www.giga-hamburg.de/index.php?file=z_la_analysen.html&folder=publikationen zContenu : résumés en anglais, espagnol et allemand depuis 2006, articles en texte intégral 2002-20041 bno. 16 (2007) -no. 21 (2008)cParisdMagasins/AnnexeeP 8° 7042 aGEO RD Amérique latine aDEW 98001328nas 2200361 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000320015421000380018632600220022432600270024660600540027360700350032767600080036280100210037085600900039185601080048185600700058985601080065995500660076795500660083397200090089999100180090899200280092699200120095403889856X000002688420130319051604.01 a0094-582X aFNSP172236 a0000026884 a19900101a19749999 ba0 aeng aUS aaga 10aLatin American perspectives aNewbury Park, Calif.cSaged1974- aBimestrielb1997- aTrimestrielb1974-1996 aSciences socialesyAmérique latinexPériodiques aAmérique latinexPériodiques a980 3aFRbCCN0094-582X4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0094582X.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://lap.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9801 bvol. 1 no. 1 (1974) -....cParisdMagasins/AnnexeeP 8° 3549 aZSAB aexempb200911 aGEO RD Amérique latine aDEW 98001558nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004000163207003400203210010300237326001600340430007100356607005800427607005800485607002800543710005700571801001300628856012800641856010800769856009000877856010800967955006701075972000901142992002101151992001201172059340762000040531720140108160453.01 a1531-426X a0000405317 a a20019999k fre ba0 aeng aUS a 0  ar aah z 0 10aLatin American politics and society 1aVol. 43, no. 1 (spring 2001)- aCoral GablescUniversity of Miami, School of International StudiescLynne Rienner Publishersd2001 aTrimestriel 1tJournal of interamerican studies and world affairsxISSN 0022-1937 aAmérique latinexRelationsyEtats-UnisxPériodiques aEtats-UnisxRelationsyAmérique latinexPériodiques aAmériquexPériodiques02aSchool of International Studies (Coral Gables, Fla.) 0aFRbFNSP uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=FSZ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/1531426X.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 43 no. 1 (2001) -....cParisdMagasins/AnnexeeP 8° 2185 aZSAB aGEO RB Amérique aDEW 98001112nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210003400189326001800223606005400241710004000295801002100335856009000356856010800446856005400554856004500608955006600653972000900719991001800728992002800746992001200774038743272000002756120140108160547.01 a0023-8791 aFNSP174258 a0000027561 a19900101a19659999 ba0 aeng aUS aaia 10aLatin American research review aAlbuquerque, N.McLARRd1965- a3 n°s par an aSciences socialesyAmérique latinexPériodiques02aLatin American Research Association 3aFRbCCN0023-87914 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00238791.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po uhttp://lasa.international.pitt.edu/LARR/index.asp zcontenu : sommaire des derniers numéros1 bvol. 1 no. 1 (1965) -....cParisdMagasins/AnnexeeP 8° 2200 aZSAB aexempb201105 aGEO RD Amérique latine aDEW 98001178nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200001900163207002900182210004300211320002300254326002300277326002900300606005400329607003500383607006200418801001300480856010800493856010800601955007000709972000900779992002800788992001200816089938976000061566420130319051604.01 a1476-3435 a0000615664 a a20039999 fre 01 ba0 aeng aGB a 0  ar aai z 0 10aLatino studies 1aVol.1, n°1 (2003, mar)- aBasingstokecPalgrave Macmilland2003- aISSN non vérifié aTrimestriel$d2006- a3 n°s par an$d2003-2005 aSciences socialesyAmérique latinexPériodiques aAmérique latinexPériodiques aAmérique latinexPolitique et gouvernementxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.palgrave-journals.com/lst/journal/v1/n3/index.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-2003) -....cParisdMagasins/AnnexeeP 8° 6733 aZSAB aGEO RD Amérique latine aDEW 98000857nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002100139210002700160326001600187530002100203606004300224856007600267856003600343955007000379957005700449972000900506991001800515992002200533992001200555036253162000005425220131003160027.01 a1120-947X aFNSP255917 a19900101a19879999 ba0 aita aIT aaha 00aLavoro e diritto aBolognacMulinod1987- aTrimestriel aLavoro e diritto aDroit du travailyItaliexPériodiques4 uhttp://www.mulino.it/edizioni/riviste/scheda_rivista.php?issn=1120-947X zSommaires depuis le no. 1, 19901 bvol. 1 no. 1 (jan-1987) -....cParisdMagasins/AnnexeeP 8° 50891 b(1987) -(2006)cParisdMagasins/AnnexeeP Index 0869 aZPAY aexempb201106 aGEO RA6.03 Italie aDEW 34401027nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001700154210002900171326001600200430003800216606003700254606002400291710006100315856012800376856010800504955007000612972000900682991001800691992001600709039319164000002691220130319051604.01 a0265-8240 aFNSP172289 a0000026912 a19910311a19849999 ba0 aeng aUS aaha 10aLaw & policy aOxfordcBlackwelld1984- aTrimestriel 1aLaw & policy quarterlyx0164-0267 aPolitique publiquexPériodiques aDroitxPériodiques02aBaldy Center for Law and Social Policyc(Buffalo, N. Y.)4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=LPL&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 6 no. 1 (jan-1984) -....cParisdMagasins/AnnexeeP 8° 4343 aZSAB aexempb201104 aDEW 350-35400735nas 2200253 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210004300181326001600224440002800240517002900268801003000297801002300327856007100350955006000421036943002000110667820130319051604.01 a0164-0267 aFNSP172238 a0000026885 a19900101b19791983 ba0 aeng aUS aaha 10aLaw & policy quarterly aBeverly Hills, Calif.cSaged1979-1983 aTrimestriel 1aLaw & policyx0265-824010aLaw and policy quarterly 3aFRbAbesc20051124gAFNOR 3aFRbISSNc200510214 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0265-82401 bvol. 6 no. 1 (1984)cParisdMagasins/AnnexeeP 8° 434300693nas 2200229 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002700139210004300166326001600209440002800225517002900253801002100282856007100303955008900374036943002000002688520130313085516.01 a0164-0267 aFNSP172238 a19900101b19791983 ba0 aeng aUS aaha 10aLaw & policy quarterly aBeverly Hills, Calif.cSaged1979-1983 aTrimestriel 1aLaw & policyx0265-824010aLaw and policy quarterly 3aFRbCCN0164-02674 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0265-82401 bvol. 2 no. 4 (oct-1980) -vol. 5 no. 4 (oct-1983)cParisdMagasins/AnnexeeP 8° 434301171nls 2200325 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000052001642100044002162300024002603260016002846060036003006060024003368010013003608560090003738560108004638560128005718560108006999550005008079920021008129920012008330001061824000106182420130319051604.01 a1545-696X a0001061824 a a19889999k fre 01 ba0 aeng aUS ar aah z  adr 10aLaw & social inquiryb[Ressource électronique] aChicagocAmerican Bar Foundationd1988- aRevue électronique aTrimestriel aSciences socialesxPériodiques aDroitxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/08976546.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=3Z0&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RQ Universel aDEW 30001256nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210002800179326001600207517002700223606003100250606002400281710004900305801002100354856009000375856010800465856012800573856010800701955007000809972000900879991001800888992001200906038743566000002680720130319051604.01 a0023-9216 aFNSP171537 a0000026807 a19900101a19669999 ba0 aeng aUS aaha 10aLaw & society review aAmherst, MAcLSAd1966- aTrimestriel10aLaw and society review aDroit socialxPériodiques aDroitxPériodiques02aLaw and Society Associationc(Chigago, Ill.) 3aFRbCCN0023-92164 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00239216.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=LSR&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (nov-1966) -....cParisdMagasins/AnnexeeP 8° 2614 aZSAB aexempb201105 aDEW 34001223nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003400139210005500173326001600228452005700244530003400301606005200335606005700387710005100444801002100495830005300516856019500569955007100764972000900835991001800844992002300862992001200885038743507000002739320130930121604.01 a0023-9186 aFNSP173986 a19900101a19339999 ba0 aeng aUS aaha 10aLaw and contemporary problems aDurham, N.C.cDuke University School of Lawd1933- aTrimestriel 1tLaw and contemporary problems (Online)‎x1945-232200aLaw and contemporary problems aDroit constitutionnelyEtats-UnisxPériodiques aDroit international privéyEtats-UnisxPériodiques02aDuke Universityc(Durham, N.C.)bSchool of Law 3aFRbCCN0023-9186 a1950-2010 : collection envoyée au Ctles en 20134 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00239186.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 15 no. 1 (hiv-1950) -....cParisdMagasins/AnnexeeP 4° 2097 aZSAB aexempb201305 aGEO RC2 Etats-Unis aDEW 34200987nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210002700179326001600206606002400222801002100246856005300267856005700320955006600377957016900443972000900612992002100621992001200642992003100654038743604000002678020130319051605.01 a0023-933X aFNSP171486 a0000026780 a19900101a18859999 ba0 aeng aGB aaha 10aLaw quarterly review aLondoncStevensd1885- aTrimestriel aDroitxPériodiques 3aFRbCCN0023-933X4 uhttp://193.118.187.160/contents.nsf/lqr?OpenView zContenu : sommaires depuis le vol. 114, janvier 19981 bvol. 101 (jan-1985) -....cParisdMagasins/AnnexeeP 8° 00501 bvol. 1(1885) -vol. 80 (1964) ; vol. 1 (1885) -vol. 90 (1974) ; vol. 1 (1885) -vol. 100 (1984) ; vol. 1 (1885) -vol. 111 (1995)cParisdMagasins/AnnexeeP Index 0215 aZPAY aGEO RQ Universel aDEW 340 aGEO RA4.02 Grande-Bretagne00803nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000055001502100005002053000073002103260016002833360056002993370017003556070034003726070026004068010013004328560031004459920023004769920014004990000405093000040509320130319051605.0 a0000405093 a a19989999k fre 01 ba0 afre aFR az aay z  adr 10aLe Courrier des Balkansb[Ressource électronique] a aTraduction d'articles de la presse est-européenne depuis août 1998 airrégulier aDonnées textuelles accessibles uniquement en ligne aFichiers HTM aEurope de l'EstxPériodiques aBalkansxPériodiques 0aFRbFNSP4 uhttp://www.balkans.eu.org/ aGEO RA8.01 Balkans aDEW 949.600987nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210004900183326001400232421008800246440003400334517003800368606003900406676000800445856002900453856005500482955009000537972000900627992002500636992001200661040479595000019686920130319051607.01 a1271-1802 aFNSP722415 a0000196869 a19900101b19962001 ba0 afre aFR aaea 00aLégi social. Actualité aPariscPublications fiduciairesd(1996-2001) aBimensuel 1aLégi social. Dossiers < P 8°3190 bis > et Légi social. Supplément < P 8°3190 > 1tRF social. Revue d'actualité10aLa Revue fiduciaire. Légi social aDroit socialyFrancexPériodiques a3444 uhttp://www.GroupeRF.com/ zContenu : sommaires depuis le n°55, novembre 19981 bno. 1 (1er/15 mai-1996) -no. 116 (16/31 jul-2001)cParisdMagasins/AnnexeeP 8° 6270 aZPAY aGEO RA4.06 France 01 aDEW 34401026nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210004700181326001200228422004500240437004000285440004800325606003900373856002900412856005600441955008500497957005400582972000900636991001800645992002500663992001200688040479609000020048920130319051607.01 a1271-1810 aFNSP731810 a0000200489 a19900101b19962001 ba0 afre aFR aafa 10aLégi social.iDossier aPariscPublications fiduciairesd1996-2001 aMensuel 1tLégi social. ActualitéxISSN 1271-1802 1aLégi social (1973)xISSN 0223-4726 1tRF social. Cahier juridiquexISSN 1630-3873 aDroit socialyFrancexPériodiques4 uhttp://www.GroupeRF.com/ zContenu : sommaires depuis le n°284, novembre 19981 bno. 258 (mai-1996) -no. 314 (juin- 2001)cParisdMagasins/AnnexeeP 8° 3190 bis1 b(1988-1997)cParisdMagasins/AnnexeeP Index 0801 aZPAY aexempb201210 aGEO RA4.06 France 01 aDEW 34401375nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210006800188326001600256601003900272607005600311710006300367801002100430856003000451856007600481856009000557856010800647955006300755957014500818972000900963991001800972992002300990992001201013039509893000002646920130319051607.01 a0362-9805 aFNSP170776 a0000026469 a19900101a19769999 ba0 aeng aUS aahu 10aLegislative studies quarterly aIowa City, IowacComparative Legislative Research Centerd1976- aTrimestriel02aEtats-UnisbCongressxPériodiques aEtats-UnisxPolitique et gouvernementxPériodiques02aComparative Legislative Research Centerc(Iowa City, Iowa) 3aFRbCCN0362-98054 uhttp://www.uiowa.edu/lsq/ zContenu : sommaires et résumés depuis le vol. 21, n°1, février 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03629805.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (fev-1976) -....cParisdMagasinseP 8° 37941 bvol. 1 (1976) -vol. 20 (1995)cParisdMagasinseP Index 0783zCet index se trouve sur une disquette à demander au service des périodiques. aZSAB aexempb200912 aGEO RC2 Etats-Unis aDEW 32801260nas 2200349 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200004000148210004400188300007800232326001600310452006100326530004000387601004900427601007000476606003800546606004300584710006500627801001300692856004700705856007000752955006700822972000900889992001200898013797298000048705020130902171623.01 a0922-1565 a a19889999k fre ba0 aeng aNL a 0  ar aah z 0 10aLeiden journal of international law aLeidencKluwer Law Internationald1988- anouvelle adresse bibliographique : Cambridge : Cambridge University Press aTrimestriel 1tLeiden journal of international law (Online),x1478-9698 aLeiden journal of international law02aCour internationale de justicexPériodiques02aTribunal pénal international pour l'ex-YougoslaviexPériodiques aDroit internationalxPériodiques aTribunaux internationauxxPériodiques02aRijksuniversiteit te LeidenbFaculteit der rechtsgeleerdheid 0aFRbFNSP4 uhttp://www.kluweronline.com/issn/0922-1565 zsommaires et résumés des articles depuis le vol.13, n° 1, 20001 bvol. 12 no. 4 (1999) -....cParisdMagasins/AnnexeeP 8° 6648 aZSAB aDEW 34100862nas 2200253 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210004000175326001600215606003800231801002100269856010900290856010800399955009000507992001100597039095797000002648820130319051607.01 a0149-0400 aFNSP170820 a0000026488 a19900101a19779999 ba0 aeng aUS aahu 10aLeisure sciences aNew YorkcTaylor and Francisd1977- aTrimestriel aLoisirsxSociologiexPériodiques 3aFRbCCN0149-04004 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713773100db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 6 no. 1 (1983) -vol. 21 no. 4 (oct/dec-1999)cParisdMagasins/AnnexeeP 8° 4717 aDEW 7901053cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200002700156210002500183326001600208452005000224517004100274530004600315606002600361606003700387606004400424801003000468801002300498802000700521856008500528955008100613972000900694992001200703058424288000101090220130918101146.01 a1592-2898 aissn15922898 a0001010902 a20010401a19849999 0fre 0103 ba0 aita aIT aah 10aLettera internazionale aRomacGangemid1984- aTrimestriel 1tLettera internazionale (Online)‎x1971-822510aLettera internazionaleeEd. italiana aLettera internazionale‎bTesto stampato10aCulturexPériodiques aVie intellectuellexPériodiques aRelations internationalesxPériodiques 3aFRbAbesc20021026gAFNOR 3aFRbISSNc20010401 a0d4 uhttp://www.letterainternazionale.it/zContenu : sommaires depuis le n°1 de 19841 bvol. 85 (3ème tri-2005) -no. 114 (2012)cParisdMagasins/AnnexeeP 4° 7161 aZPAY aDEW 32701223nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000105001502100066002552300005003213000117003263260014004433360056004573370017005134520089005306060047006197100114006668010013007808560062007939550005008559920012008609920025008720000505413000050541320130319051609.0 a0000505413 a a19979999k fre 01 ba0 afre aFR ar aae z  adr 13aLa Lettre d'information - Ministère de la culture et de la communicationb[Ressource électronique] aPariscMinistère de la culture et de la communicationd1997- a aTexte intégral depuis le n° 1, 15 janvier 1997. Dossiers classés par thèmes depuis le n°35 du 7 octobre1998 abimensuel aDonnées textuelles accessibles uniquement en ligne aFichiers PDF 1tLa Lettre d'information - Ministère de la culture et de la communicationx1255-6270 aPolitique culturelleyFrancexPériodiques01aFrancebMinistère de la culture et de la communicationbDépartement de l'information et de la communication 0aFRbFNSP4 uhttp://www.culture.fr/culture/actualites/index-lettre.htm1 r aDEW 001 aGEO RA4.06 France 0101051nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154207004100186210004100227326001500268440003900283606004400322607002500366710010200391856007000493856006500563955008000628992002500708992001600733040140385000008594920130319051609.01 a1246-3833 aFNSP381550 a0000085949 a19900101b19922003 ba0 afre aFR aaga 13aLa Lettre de confrontations 1an°1,1992 ?-n°60,février/mars 2003 aMontreuilcConfrontationsd1992-2003 abimestriel 1tla Lettre de confrontations Europe aPartis politiquesyFrancexPériodiques aFrancexPériodiques aConfrontations pour une conflictualité ouverte, viable, créative (Montreuil, Seine-Saint-Denis)4 uhttp://www.confrontations.org/publications/lettres/index.php#Haut zsommaires des numéros depuis le n° 47, déc.2000/janv.20011 bno. 4 (jan-1993) -no. 60 (fev/mars-2003)cParisdMagasins/AnnexeeP 4°6201 aGEO RA4.06 France 01 aDEW 944.08301288nas 2200361 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000039001502070049001892100048002383000071002863260027003573260026003844300055004104400037004656060044005026070025005467100026005718010013005978560065006108560116006759550085007919720009008769920025008859920016009100000539792000053979220130319051609.0 a0000539792 a b20032006k fre ba0 afre aFR a 0  ar aah z 0 13aLa lettre de Confrontations Europe 1aN°61, avril/mai 2003-n°76, oct./déc. 2006 aMontreuilcConfrontations Europed2003-2006 aLe supplément Opening Europe est parfois encarté dans le numéro aTrimestrielb2005-2006 aBimestrielb2003-2004 1tLa Lettre de confrontations (Montreuil)x1246-3833 1tConfrontations Europe : La revue aPartis politiquesyFrancexPériodiques aFrancexPériodiques02aConfrontations Europe 0aFRbFNSP4 uhttp://www.confrontations.org/publications/lettres/index.php zcontenu : sommaires et texte intégral ou sélection selon les numéros à partir du n° 47, déc.2000/jan.20011 bno. 61 (avr-mai 2003) -no. 76 (oct/dec-2006)cParisdMagasins/AnnexeeP 4° 6201 aZGRA aGEO RA4.06 France 01 aDEW 944.08301158nls 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000146001502070039002962100026003353000046003613260015004073360056004223370017004784400053004956060039005487100078005878010013006658560040006788560056007189550005007749920025007799920016008040000776564000077656420130319051609.0 a0000776564 a b19982009k fre 01 ba0 afre aFR az aag z  adr 13aLa lettre de l'Autoritéelettre d'information bimestrielle de l'Autorité de régulation des télécommunicationsb[Ressource électronique] 1ano. 1(jun-1998) -no. 68 (sep-2009) aPariscARTd1998-2009 aTexte intégral depuis le n°1, juin 1998 aBimestriel aDonnées textuelles accessibles uniquement en ligne aFichiers PDF 1tLes cahiers de l'ARCEP [Ressource électronique] aTélécommunicationsxPériodiques02aAutorité de régulation des télécommunicationsc(France)xPériodiques 0aFRbFNSP4 uhttp://www.arcep.fr/index.php?id=21 zContenu : texte intégral depuis le n°1, juin 19981 r aGEO RA4.06 France 01 aDEW 383-38901045nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210004100175326001200216430009000228606004200318710005700360856005500417856005900472856012400531955007700655972000900732992001400741076235629000013865720130319051609.01 a1639-9129 aFNSP551819 a0000138657 a19941017a19922011 ba0 afre aFR aafa 10aLettre de l'OFCE aPariscPresses de la FNSPd1992-2011 aMensuel 1aObservations et diagnostics économiques. Lettre de l'OFCE,x0756-5577 < P 4° 4796 > aConjoncture économiquexPériodiques02aObservatoire français des conjonctures économiques4 uhttp://www.sciences-po.fr/edition/revues/ofce.html4 uhttp://www.ofce.sciences-po.fr/publications/lettre.htm zListe des Lettres depuis le n°158 du 31 janvier 1997, texte intégral des articles depuis le n°168 du 13 octobre 19971 bno. 96 (jan-1992) -no.330 (oct-2011)cParisdMagasins/AnnexeeP 4° 4796 aZPAY aDEW 330.900985nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000095001502070026002452100042002713260016003133360056003293370017003856060037004027100050004398010013004898560068005028560051005709550005006219920033006269920012006590000776626000077662620130319051609.0 a0000776626 a a19919999k fre 01 ba0 afre aFR az aah z  adr 13aLa lettre de la régulationb[Ressource électronique]/Association Recherche et regulation 1aN°1 (novembre 1991)- aPariscRecherche & Régulationd1991- aTrimestriel aDonnées textuelles uniquement accessibles en ligne aFichiers PDF aEconomie politiquexPériodiques02aAssociation Recherche et regulationc(France) 0aFRbFNSP4 uhttp://www.upmf-grenoble.fr/irepd/regulation/Lettre_regulation/ zContenu : texte intégral depuis le n°1, 19911 r aGEO RS Sans aspect régional aDEW 33001181cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200003100179210006400210326001200274530005100286601004900337606003200386606002900418710004900447801003000496801002300526802000700549856002100556856006300577955006400640955008200704972000900786992001200795040524736000107380520130319051609.01 a1277-6092 accn1277-6092 aissn12776092 a0001073805 a19961118a19949999k y0frey0103 ba0 afre aFR ar aaf 13aLa Lettre des écologistes aSavigny-sur-OrgecMouvement écologiste indépendantd1994- aMensuel13aLa Lettre des écologistesb(Savigny-sur-Orge)00aMouvement écologiste indépendantc(France) aEnvironnementxPériodiques aEcologismexPériodiques02aMouvement écologiste indépendantc(France) 3aFRbAbesc20061128gAFNOR 3aFRbISSNc20001206 a074 uhttp://m-e-i.fr/4 zContenu : accès libre au texte intégral depuis le no. 701 bno. 81 (jan-2007) -....cParisdMagasins/AnnexeeP 4° 71791 bno. 75 (nov/déc-2005) -no. 80 (oct-2006)cParisdMagasins/AnnexeeP F° 0551 aZCAD aDEW 33300822nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210003800191326001500229601003800244607002500282710003100307856004700338856002800385955008000413972000900493992001800502992001200520039967336000006473120130319051609.01 a1163-4499 aFNSP297204 a0000064731 a19900101a19929999 ba0 afre aFR aaga 13aLa Lettre des Européens (Paris) aPariscMouvement européend1992- aBimestriel02aMouvement européenxPériodiques aEuropexPériodiques02aMouvement européen-France uhttp://www.mouvement-europeen.org/main.htm zsommaire du dernier n°1 bno. 1 (mar-avr-1992) -no. 51 (oct-2004)cParisdMagasins/AnnexeeP 4° 6101 aZCAD aGEO RA Europe aDEW 94000978nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210006600177326001200243488005400255517008100309606003700390710007800427856006100505856003600566955006500602972000900667992001200676039376281000014948120130319051609.01 a0243-1947 aFNSP586040 a0000149481 a19950213a19799999 ba0 afre aFR aafa 13aLa Lettre du CEPII aPariscCEPIId1979-aPariscLa Documentation françaised1979 aMensuel 1aEconomie internationalex1240-8093 < P 8° 4264 >10aLa Lettre du Centre d'études prospectives et d'informations internationales aEconomie politiquexPériodiques02aCentre d'études prospectives et d'informations internationalesc(France)4 uhttp://www.cepii.fr/francgraph/publications/publicat.htm zAccès libre au texte intégral1 bno. 132 (fev-1995) -....cParisdMagasins/AnnexeeP 4° 6433 aZPAY aDEW 33001034nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210002200180300006800202326001200270517001800282532005000300601006200350606003800412710004800450856006800498856003600566955006300602972000900665992002200674992001200696039893618000005446820130319051609.01 a1143-5070 aFNSP256368 a0000054468 a19900101a19899999 ba0 afre aFR aafa 10aLettre du CSA (Paris) aPariscCSAd1989- aRemplace Lettre d'information - CNCL (0989-6767) < P 4° 5253 > aMensuel10aLa Lettre CSA10aLettre du Conseil supérieur de l'audiovisuel02aFrancebConseil supérieur de l'audiovisuelxPériodiques aAudiovisuelyFrancexPériodiques02aFrancebConseil supérieur de l'audiovisuel4 uhttp://www.csa.fr/infos/publications/publications_lettreCSA.php zAccès libre au texte intégral1 bno. 1 (oct-1989) -....cParisdMagasins/AnnexeeP 4° 5253 aZGRA aGEO RA4.06 France aDEW 07001004nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000030001552100026001853200017002113260017002284300053002454400042002986070052003407100050003928560083004428560059005259550077005849920025006619920016006860000183454000018345420130319051609.01 a1268-9122 aFNSP681928 a0000183454 a19900101b19969999 ba0 afre aFR aa a 13aLa Lettre du gouvernement aPariscSIDd1996-2005 aIndex annuel aHebdomadaire 1aLa Lettre de Matignon (0769-9786) < P 4° 4699 > 1tLe mensuel du gouvernementx1771-1819 aFrancexPolitique et gouvernementxPériodiques02aFrancebService d'information du Gouvernement4 uhttp://www.premier-ministre.gouv.fr/spihtm/sig_nn4/texte/recherche_txt_cat.cfm zContenu : sommaires depuis le n°30, 17 septembre 19971 bno. 1 (jan-1996) -no. 191 (oct-2005)cParisdMagasins/AnnexeeP 4° 4699 aGEO RA4.06 France 01 aDEW 944.08301048nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000051001502100104002012300005003053000047003103260016003573360056003733370017004294300034004466060030004807100099005107110023006098010013006328560060006459550005007059920012007100000505422000050542220130319051609.0 a0000505422 a a20019999k fre 01 ba0 afre aFR ar aay z  adr 13aLa lettre Intergéob[Ressource électronique] aPariscPôle de Recherche pour l'Organisation et la Diffusion de l'Information Géographiqued2001- a aTexte intégral depuis le n° 7, nov. 2001 airrégulier aDonnées textuelles accessibles uniquement en ligne aFichiers PDF 1tLettre d'intergéox0220-0546 aGéographiexPériodiques02aPôle de recherche pour l'organisation et la diffusion de l'information géographiquec(Paris)00aIntergéoc(Paris) 0aFRbFNSP4 uhttp://prodig.univ-paris1.fr/infogeo/accueil_lettre.htm1 r aDEW 91000951nls 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008100154210005300235326001200288606004200300606005200342710008200394830006000476856002800536856003600564955000500600972000900605992002100614992001400635039608530000002677220130319051609.01 a0479-5369 aFNSP171472 a0000026772 a19910308a19579999 ba0 afre aFR aafa 10aLettre mensuelle de conjoncturefChambre de commerce et d'industrie de Paris aPariscChambre de commerce et d'industried1957- aMensuel aConjoncture économiquexPériodiques aHistoire économiquez20e sièclexPériodiques02aChambre de commerce et d'industriec(Paris)bCentre d'observation économique a< P 4° 1505 > 1957--2005 : collection donnée au CTLes4 uhttp://www.coe.ccip.fr/ zAccès libre au texte intégral1 r aZGRA aGEO RQ Universel aDEW 330.901493nls 2200289 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281350018001342000108001522100031002602300005002913000079002963370592003756060022009676060047009897020018010367100058010548010013011128300008011258560070011330000582191000058219120130319051609.0 a0000582191 a d20049999k fre 01 0 afre aFR ay z y  az adr 10aLextenso.comb[Ressource électronique]fGIE Lextensogdirecteur de la publication du Site Bruno Vergé aPariscGIE Lextensod2004- a aConsultation : uniquement à partir des postes publics de la Bibliothèque aLa base contient : le Bulletin Joly Sociétés : depuis le 1er janvier 1986, la Gazette du Palais : depuis le 1er janvier 2000, les Petites Affiches : depuis le 1er janvier 1995, le Répertoire du Notariat Defrénois : depuis le 1er janvier 1990, la Revue des contrats : depuis 2003, la Revue générale du droit des Assurances : depuis le 1er janvier 1995. Il y a un accès aux derniers sommaires de certaines revues et journaux. Lextenso propose les revues partenaires en consultant le sommaire de chaque nouveau numéro ainsi que le sommaire des numéros précédents (au format pdf). aBases de données aDroityFrancexJurisprudencexPériodiques 1aVergébBruno02aGroupement d'intérêt économique Lextensoc(France) 0aFRbFNSP amfo4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lextenso.com01310nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154210003600190326001700226421030700243488005800550606003900608607004600647801002100693830013700714856007100851856005200922992002200974992001200996039469441000002679720130319051609.01 a0294-8168 aFNSP171518 a0000026797 a19900101a19619999 ba0 afre aFR aaau 10aLiaisons sociales.iBref social aPariscLiaisons socialesd1961- aHebdomadaire 1aLiaisons sociales (mensuel) (0296-5119) < P 4° 5061 >, Liaisons sociales. Documents (0417-870X) < P 4° 3505 >, Liaisons sociales. Revue de presse (0997-1114) < P 4° 3503 >, Liaisons sociales. Législation sociale (0294-8176) < P 4° 3504 > et Liaisons sociales. Conventions et accords < P 4° 6782 > 1aTravail social actualités (0753-9711) < P 4° 4898 > aDroit socialyFrancexPériodiques aFrancexConditions socialesxPériodiques 3aFRbCCN0294-8168 ano. 6845 (1er jul-1974) -no. 9389 (dec-1984) < P 4° 3502 > donné au CTL en juin 2002, 1985-2004 : collection donnée au CTLes 20084 uhttps://acces-distant.sciences-po.fr/fork?http://lamyline.lamy.fr/ zContenu : accès au texte intégral depuis 2000 aGEO RA4.06 France aDEW 34401223nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004100163210004700204326002400251440006000275488004400335488005000379488004600429517004300475606004300518606003900561676000800600801001300608856007000621856005200691955006300743972000900806992002200815992001200837040482502000044523020130319051609.01 a1271-6782 a0000445230 a a19??9999k fre ba0 afre aFR a 0  ar aaf z 0 10aLiaisons sociales.iNuméro spécial aPariscGroupe Liaisons socialesd19??-2008 a8 à 10 n°s par an 1tLiaisons sociales.eNuméros juridiquesxISSN 2101-4418 1aLiaisons sociales. Documentsx0417-870X 1aLiaisons sociales. Revue de pressex0997-1114 1aLiaisons sociales. Conventions et accords10aLiaisons sociales. Numéraux spéciaux aDroit du travailyFrancexPériodiques aDroit socialyFrancexPériodiques a344 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://lamyline.lamy.fr zContenu : accès au texte intégral depuis 20001 b(1996) -(dec-2008)cParisdMagasins/AnnexeeP 4° 3504 bis aZPAY aGEO RA4.06 France aDEW 34401381cas0 2200421 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147106000600154110001600160200004400176207002200220210004400242302007000286326001200356423004200368430005100410530004300461606003100504606004300535676000800578801003000586801002300616801003000639802000700669856007000676856005200746955006600798955006100864992002200925992001200947133880796000116548620130319051609.01 a2101-4418 a132363682 aissn21014418 a0001165486 a20090603a20099999k y0frey0103 ba0 afre aFR ar aafu uu 10aLiaisons sociales.iNuméros juridiques 1aFévrier (2009) - aRueil-MalmaisoncGroupe liaisonsd2009- aLa publication porte l'ISSN 2101-4418 à partir du no de mai 2009 aMensuel 1tLiaisons sociales magazinex1297-031X 1tLiaisons sociales. Numéro spécialx1271-678210aLiaisons sociales. Numéros juridiques aDroit socialxPériodiques aDroit du travailyFrancexPériodiques a344 3aFRbAbesc20090608gAFNOR 3aFRbISSNc20090602 3aFRbAbesc20090330gAFNOR a074 uhttps://acces-distant.sciences-po.fr/fork?http://lamyline.lamy.fr zContenu : accès au texte intégral depuis 20001 bLes 3 dernières annéescParisd30, Salle 3e étageeDEW 3441 b(jan-2009) -....cParisdMagasins/AnnexeeP 4° 3504 bis aGEO RA4.06 France aDEW 34401353nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210003000184326001400214421008000228530003100308606002900339607002500368801002100393856002900414856019200443856010800635955006800743955006600811955010400877992002200981992001201003039523209000002678420130319051610.01 a0335-1793 aFNSP171492 a0000026784 a19900101a19739999 ba0 afre aFR abau 00aLibération (Paris, 1973) aPariscLibérationd1973- aQuotidien 1aLibération le magazinexISSN 1259-9298aLibération Hors-Sériex0335-179300aLibérationb(Paris. 1973) aActualitéxPériodiques aFrancexPériodiques 3aFRbCCN0335-17934 uhttp://www.liberation.fr4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLe mois en courscParisd27, Salle Rez-de-chausséeeP F° 03651 bno. 1 (18 avr-1973) -....cParisdMagasins/AnnexeeP F° 03651 bHors-Série no.113 (23 juin-2011) ; (10/11 sep 2011)cParisd27, Salle Rez-de-chausséeeP F° 0365 aGEO RA4.06 France aDEW 05001183nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200011500154207002800269210004700297326001600344606004400360606003700404607004500441676000800486710006500494856005300559856007200612955007300684955007900757972000900836992001200845040602060000021731320130319051610.01 a1288-0639 aFNSP782364 a0000217313 a19900101a19979999 ba0 afre aFR aaha 10aLiberté politiqueela nouvelle revue d'idées chrétiennefAssociation pour la Fondation de service politique 1aN°1 (1997, printemps)- aSaint-CloudcAFSPcF.-X. de Guibertd1997- aTrimestriel aRelations internationalesxPériodiques aVie intellectuellexPériodiques aFrancexVie intellectuellexPériodiques a00102aAssociation pour la Fondation de service politiquec(France)4 uhttp://www.libertepolitique.com/public/index.php zContenu : sommaires et résumés des articles depuis le n° 7, 19991 bLes 3 dernières annéescParisd27, Salle Rez-de-chausséeeDEW 0011 bno. 1 (1997) ; no. 17 (sep-2001) -....cParisdMagasins/AnnexeeP 8° 6334 aZCAD aDEW 00101220cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200004300174207006600217210005600283210003900339300003900378326001100417440004000428530002600468606003600494606004000530607004500570801003000615801002300645802000700668856008800675955008300763992001200846083128018000113075020131209101446.01 a1768-675X aissn1768675X a0001130750 a20041123a20049999k y1frey0103 ba0 afre aFR ay  aaku uu 10aLibreserevue de la pensée française 1aN°1 (2004)-n°5 (2008) ; Nouvelle série, n°1 (2011, janv.) aPariscFrançois-Xavier de Guibert /OEILd2004-2008 aPariscLe Retour aux sourcesd2011 aPas de parution entre 2008 et 2011 aAnnuel 1tPerspectives libres, ISSN 2116-744310aLibresb(Paris. 2004) aScience politiquexPériodiques aLibertéxPhilosophiexPériodiques aFrancexVie intellectuellexPériodiques 3aFRbAbesc20070410gAFNOR 3aFRbISSNc20041123 a074 uhttp://www.revue-libres.comzAccès aux sommaires et résumés depuis le n°1, 20041 bno. 2 (2004 ) -no. 5 (2008) ; no. 1 (2011)cParisdMagasins/AnnexeeP 8° 7005 aDEW 00101026nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210003500189326001500224430006000239517001300299606003700312606004100349676000800390710004100398856005300439856003600492955005900528955006400587972000900651992001600660992001200676036441937000015355220130319051611.01 a1204-3206 aFNSP599156 a0000153552 a19900101a19949999 ba0 afre aCA aaja 10aLien social et politiques-RIAC aMontréalcSaint-Martind1994- aSemestriel 1aRevue internationale d'action communautaire,x0707-969910aLSP-RIAC aPolitique publiquexPériodiques aSociologie économiquexPériodiques a30002aEcole de service socialc(Montréal)4 uhttp://www.erudit.org/revue/lsp/index.html#liste zAccès libre au texte intégral1 bLes 3 dernières annéesc27, Salle 3e étageeDEW 3001 bno. 32 (aut-1994) -....cParisdMagasins/AnnexeeP 8° 1654 aZPAY aDEW 360-363 aDEW 30101068nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200007600139207006700215210003100282210004500313210003200358210002800390210003100418326001700449530002600466606003600492606003600528856003600564955010300600972000900703991001800712992001200730039848671000000475720131025105210.01 a0988-5226 aFNSP106360 a19900222a19879999 ba0 afre aFR aaia 10aLigneserevue trimestrielleearts, littérature, philosophie, politique 1aNo 1 (nov. 1987)-no 38 (nov. 1999)an.s., [no] 01 (mars 2000)- aPariscSéguierd1987-1991 aPariscNouvelles éditions Lignesd2007- aPariscL. Scheerd2000-2006 aPariscHazand1992-1999 aPariscSéguierd1987-1991 a3 nos par an10aLignesb(Paris. 1987) aSciences socialesxPériodiques aScience politiquexPériodiques4 uhttp://www.editions-lignes.com/1 bno. 1 (nov-1987) -no. 38 (1999) ; n. s. no. 1 (mar-2000) -....cParisdMagasins/AnnexeeP 8° 5114 aZPAY aexempb201106 aDEW 30001135nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000052001502100005002022300024002073260017002316060053002486060059003016060065003606070025004258010013004508560192004638560108006559550005007639920039007689920014008070001131857000113185720130319051612.0 a0001131857 a a20059999k fre 01 ba0 arus aRU ar aac z  adr 10aLiteraturnaä gazetab[Ressource électronique] a aRevue électronique ahebdomadaire aLittératurexHistoire et critiquexPériodiques aLittérature russexHistoire et critiquexPériodiques aLittérature soviétiquexHistoire et critiquexPériodiques aRussiexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA7.21 Russie (depuis 1991-92) aDEW 80-8901080nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001300154210009500167326001600262607002700278710002400305856002900329856010700358955007200465957016400537972000900701991001800710992003800728992001200766038745933000005346720130319051613.01 a0024-5089 aFNSP254073 a0000053467 a19900101a19549999 ba0 aeng aUS aaha 10aLituanus aChampaign, IllcLithuanian Student Association, Secretariate for External Relationsd1954- aTrimestriel aLituaniexPériodiques02aLituanus Foundation4 uhttp://www.lituanus.org/ zContenu : sommaires et sélection d'articles en texte intégral depuis le volume 16, n°1, Spring 19701 bvol. 34 no. 1 (mar-1988) -....cParisdMagasins/AnnexeseP 8° 55551 bvol. 1(1954) -vol. 32 (1978) ; vol. 25 (1979) -vol. 33 (1987)cParisdMagasins/AnnexeeP Index 0635z(1954/1955) -(1994): se trouve dans le vol. 4 no. 4 (1994) aZSAB aexempb201204 aGEO RA7.14 Lituanie (depuis 1991) aDEW 94701640nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001800154210002700172326002500199326002700224517000700251606007700258606003800335710003000373801002100403856010100424856010800525856012800633856010800761856010900869856010800978955006301086972000901149991001801158992003101176992002101207992001401228039324966000002676120130319051613.01 a0269-0942 aFNSP171454 a0000026761 a19900101a19869999 ba0 aeng aGB aafa 10aLocal economy aHarlowcLongmand1986- a8 n°s par anb2009- aTrimestrielb1986-200810aLE aAdministration localexAspect économiqueyGrande-BretagnexPériodiques aEconomie régionalexPériodiques02aLocal Economy Policy Unit 3aFRbCCN0269-09424 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=105324 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=BAJ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713395259db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (pri-1986) -....cParisdMagasins/AnnexeeP 8° 4961 aZPAY aexempb201003 aGEO RA4.02 Grande-Bretagne aGEO RQ Universel aDEW 338.901046nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000290015421000240018332600180020732600270022560600570025260600400030985601090034985601080045895500710056697200090063799100180064699200210066499200310068599200160071603935833X000009136320130319051613.01 a0300-3930 aFNSP403118 a0000091363 a19900101a19719999 ba0 aeng aGB aaga 10aLocal government studies aLondoncCassd1971- a5 n°s par an aTrimestrielb1992-2004 aAdministration localeyGrande-BretagnexPériodiques aAdministration localexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713673447db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 18 no. 1 (mar-1992) -....cParisdMagasins/AnnexeeP 8° 5938 aZSAB aexempb201202 aGEO RQ Universel aGEO RA4.02 Grande-Bretagne aDEW 350-35401056cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157110001600175200002700191207003300218210002700251326001400278512008300292606005300375606002600428801003000454801002300484802000700507856003800514856006000552955007100612972000900683992001400692039311244000106530020130319051615.01 a0260-9592 accn0260-9592 aissn02609592 a0001065300 a19830415a19799999k y0frey0103 ba0 aeng aGB a 0  aabu 0uu 10aLondon review of books 0aVol. 1, no. 1 (25 Oct-1979)- aLondoncLRB Ltdd1979- aBimensuel14aThe London review of books with the New York review of books (De 1979 à 1981) aLittératurexHistoire et critiquexPériodiques aCulturexPériodiques 3aFRbAbesc20060707gAFNOR 3aFRbISSNc20051021 a024 uhttp://www.lrb.co.uk/contents.php zContenu : sommaires et résumés d'articles depuis 19981 bvol. 28 no. 2 (jan-2006) -....cParisdMagasins/AnnexeeP F° 0549 aZPAY aDEW 80-8901398nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000450015421000240019932600180022351700470024160600470028885600510033585601040038685601280049085601080061885601090072685601080083595500900094397200090103399100180104299200120106004010110X000008264220130319051616.01 a0966-2847 aFNSP368526 a0000082642 a19900101a19929999 ba0 aeng aGB aaia 00aLow intensity conflict & law enforcement aLondoncCassd1992- a3 n°s par an10aLow intensity conflict and law enforcement aConflits de basse intensitéxPériodiques4 uhttp://www.tandf.co.uk/journals/listings/l.asp zContenu : sommaires et résumés des vol. 7, 1998 à 10, 2001 ; sommaires à partir du vol.11, 20024 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=UPM&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713728233db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jun-1992) -vol. 13 no. 3 (dec-2005)cParisdMagasins/AnnexeeP 8° 5905 aZSAB aexempb201202 aDEW 30300968nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154207001800189210003300207326001700240606005100257606004300308830003200351856002300383856004300406955005900449955008700508992002200595992002100617992001600638039224937000002675820130319051616.01 a0024-2632 aFNSP171444 a0000026758 a19910308a19589999 ba0 afre aFR aa a 10aLSA, Libre service actualités 1ano. 1 (1958)- aLevallois-PerretcLSAd1958- aHebdomadaire aCircuits de distributionyFrancexPériodiques aCircuits de distributionxPériodiques aCollection donnée au CTLes4 uhttp://www.lsa.fr/ zcontenu : sommaire du dernier numéro.1 bL’année en courscParisd27, Salle Rez-de chaussée1 bConservation limitée aux 2 dernières annéescParisdMagasins/AnnexeeP 4° 4184 aGEO RA4.06 France aGEO RQ Universel aDEW 380-38201090nas 2200349 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000130015421000290016732600180019660600450021460600360025960600360029571000610033180100210039285600680041385600360048195500740051795700710059197200090066299100180067199200230068999200160071299200120072803897648X000002696120130319051616.01 a0102-6445 aFNSP172379 a0000026961 a19900101a19849999 ba0 apor aBR aaia 10aLua nova aSão PaulocCEDECd1984- a3 n°s par an aSciences socialesyBrésilxPériodiques aSciences socialesxPériodiques aChangement socialxPériodiques02aCentro de estudos de cultura contemporânea (São Paulo) 3aFRbCCN0102-64454 uhttp://www.scielo.br/scielo.php?pid=0102-6445&script=sci_issues4 zAccès libre au texte intégral1 bvol. 2 no. 1 (avr/jun-1985) -....cParisdMagasins/AnnexeeP 8° 49681 bno. 15 (1988) -no. 48 (1999)cParisdMagasins/AnnexeeP Index 0830 aZPAY aexempb201003 aGEO RD4.13 Brésil aDEW 320-321 aDEW 30101216nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101001300123102000700136110001600143200002600159210005600185326001500241606004500256606004600301606005500347801002100402856006600423856006200489856009000551856010800641955007100749972000900820992004900829992001200878038746794000005346820130319051616.01 a0024-7413 aFNSP254074 a0000053468 a19900101a19649999 ba0 aengapor aUS aaju 10aLuso-Brazilian review aMadison, Wis.cUniversity of Wisconsin Pressd1964- aSemestriel aSciences socialesyBrésilxPériodiques aSciences socialesyPortugalxPériodiques aSciences socialesyAfrique lusophonexPériodiques 3aFRbCCN0024-74134 uhttp://www.wisc.edu/wisconsinpress/journals/journals/lbr.html zContenu : sommaires depuis le volume 33, n°1, été 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00247413.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 17 no. 2 (hiv-1980) -....cParisdMagasins/AnnexeeP 8° 4501 aZCAD aGEO RP Autres groupes de pays ou de régions aDEW 90901446nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001400154210003400168210003600202210002500238326002200263326002200285606004500307606004600352606005500398607004400453710005300497856004800550856008600598856012800684856010800812955005300920972000900973991001700982992004900999992001201048040295532000013485320140115173425.01 a1257-0273 aFNSP542726 a0000134853 a19940830a19949999 ba0 afre aFR aaja 10aLusotopie aPariscL'Harmattand1994-1995 aPariscÉd. Karthalad1995-2004 aLeidencBrilld2005- aSemestrielb2006- aAnnuelb1994-2005 aSciences socialesyBrésilxPériodiques aSciences socialesyPortugalxPériodiques aSciences socialesyAfrique lusophonexPériodiques aPays de langue portugaisexPériodiques02aAssociation des chercheurs de la revue Lusotopie4 uhttp://www.lusotopie.sciencespobordeaux.fr/ zContenu : sommaires et résumés de 1994 à 1999, texte intégral de 1994 à 20044 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=DG8&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1994) -....cParisdMagasins/AnnexeeP 8° 6058 aZPAY aexemp$201202 aGEO RP Autres groupes de pays ou de régions aDEW 90901166cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200006700180207001200247210004600259326001100305430006000316606004800376606005200424606004100476710006800517801003000585801002300615802000700638856006400645955005400709992002500763992001600788110559622000113995820130319051616.01 a1779-9295 aissn17799295 a0001139958 a20061109a20069999 0frey0103 ba0 afre aFR ay  ah azk 13aLa Lutte contre le racisme, l'antisémitisme et la xénophobie 0a(2005)- aPariscLa Documentation françaised2006- aAnnuel 1tLa Lutte contre le racisme et la xénophobiex1263-0357 aRacismexLutte contreyFrancexPériodiques aXénophobiexLutte contreyFrancexPériodiques aAntisémitismeyFrancexPériodiques02aFrancebCommission nationale consultative des droits de l'homme 3aFRbAbesc20070620gAFNOR 3aFRbISSNc20061101 a074 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml1 b(2005)-(2007)cParisdMagasins/AnnexeeP 8° 5803 aGEO RA4.06 France 01 aDEW 305-30601019nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004900154207001800203210005000221326001100271517007400282606005200356606004800408710006800456856006400524955005400588972000900642991001600651992002200667992001600689040402169000004334620130319051616.01 a1263-0357 aFNSP227372 a0000043346 a19900101b19912005 ba0 afre aFR aaka 13aLa Lutte contre le racisme et la xénophobie 1a(1990)-(2004) aPariscLa Documentation françaised1991-2005 aAnnuel10aRapport de la Commission nationale consultative des droits de l'homme aXénophobiexLutte contreyFrancexPériodiques aRacismexLutte contreyFrancexPériodiques02aFrancebCommission nationale consultative des droits de l'homme4 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml1 b(1990)-(2004)cParisdMagasins/AnnexeeP 8° 5803 aZPAY aexemp201112 aGEO RA4.06 France aDEW 305-30600954nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200002000138210003400158326001700192601004400209606002900253607002500282710003900307801002100346856003500367856007400402955015100476992002500627992001200652038724936000006813120130319051617.01 a0024-7650 aFNSP315531 a0000068131 a19900101a19689999 ba0 afre aFR10aLutte ouvrière aPariscLutte ouvrièred1968- aHebdomadaire02aLutte ouvrièrec(France)xPériodiques aActualitéxPériodiques aFrancexPériodiques02aUnion communiste internationaliste 3aFRbCCN0106/45094 uhttp://www.lutte-ouvriere.org/ zContenu : sommaires et articles en texte intégral depuis sept. 1999.1 bno. 1 (jun-1968) -....cParisdMagasins/AnnexeeP F° 0283zLes nos. reçus à partir de 2009 sont consultables uniquement en Salle de référence aGEO RA4.06 France 01 aDEW 05001342nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005500154210005400209326001600263606005300279606003300332606003400365676001000399710008800409856006600497856010700563856003700670856004200707955007100749955006500820972000900885991001700894992005700911992001200968040195295000018145520130319051617.01 a1023-263X aFNSP675822 a0000181455 a19900101a19949999 ba0 aeng aDE aaha 10aMaastricht journal of European and comparative law aBaden-BadencNomosd1994-aAntwerpencMaklud1994 aTrimestriel aDroityPays de l'Union européennexPériodiques aDroit comparéxPériodiques aDroit européenxPériodiques a341.802aMaastrichts europees instituut voor transnationaal rechtswetenschappelijk onderzoek4 uhttp://www.unimaas.nl/fdr.asp?id=P62QE735X175I4S223GU&taal=nl zContenu : sommaires et résumés depuis 1999 ( vol.6, n°1), jusqu'au vol.10, n°2 (avant-dernier n°)4 uhttp://www.maastrichtjournal.eu/ zContenu : sommaire du dernier numéro1 bLes 3 dernières annéescParisdSalle des périodiqueseDEW 341.81 bvol. 2 no.1 (1995) -....cParisdMagasins/AnnexeeP 8° 6214 aZCAD aexemp$201211 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 34101353nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002500139210003900164326001200203452005300215530002500268606006400293606005300357801002100410830005200431856010400483856021000587955005900797955006300856972000900919991001800928992002100946992002200967992001400989013373218000002723020130930132355.01 a0024-9807 aFNSP173613 a19900101a19669999 ba0 afre aFR aafa 10aMagazine littéraire aPariscMagazine littéraired1966- aMensuel 1tLe Magazine littéraire (En ligne)‎x2108-676100aMagazine littéraire aLittérature françaisexHistoire et critiquexPériodiques aLittératurexHistoire et critiquexPériodiques 3aFRbCCN0024-9807 a1966-2009 : collection donnée au Ctles en 20134 uhttp://www.magazine-litteraire.com/zContenu : sélection d'articles en texte intégral depuis 19754 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/magazine-le-magazine-litteraire.htm?zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bL’année en courscParisd27, Salle Rez-de chaussée1 bno. 1 (nov-1966) -....cParisdMagasins/AnnexeeP 4° 2281 aZPAY aexempb201306 aGEO RQ Universel aGEO RA4.06 France aDEW 80-8901430cas0 2200361 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109106000600127110001600133200008500149207001000234210009500244301006600339302008300405326001100488430003900499606003600538607005500574607004500629710006800674801003000742856015100772856004900923955005200972972000901024992002301033992001201056145529363000123529420130319051618.0 a0001235294 a20100705a20099999k y0frey50 ba0 afre aTN ay 0  ar aaka 0xx010aMaghreb et sciences socialesfInstitut de recherches sur le Maghreb contemporain 0a2008- aTuniscInstitut de recherches sur le Maghreb contemporainaPariscdiff. L'Harmattand2009- aDemande de numérotation ISSN en cours par le CR28 2010-07-15 aTexte en français avec résumés dans la même langue, en anglais et en arabe aAnnuel 1tAlfa. Maghreb et sciences sociales aSciences socialesxPériodiques aAfrique du NordxConditions socialesxPériodiques aAfrique du nordxRecherchexPériodiques01aInstitut de recherche sur le Maghreb contemporainc(Tunis)4340 3aFRbAbesc20100715gAFNOR4 uhttp://www.irmcmaghreb.org/spip.php?page=recherche&lang=fr&forcer_lang=true&recherche=maghreb+et+sciences+sociales&validsearch.x=5&validsearch.y=94 zContenu : sommaire des rapports depuis 2008.1 b(2008)-....cParisdMagasins/AnnexeeP 8° 6904 aZPAY aGEO RG1.01 Maghreb aDEW 30001459nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200009200163207002100255210002800276210009300304326001600397430004500413607003100458607003400489607003000523676000800553710008400561801001300645856007700658856006200735955006600797955006500863955006900928972000900997992001201006992004301018073654051000053952820131219165149.01 a1762-3162 a0000539528 a a20039999k fre ba0 afre aFR a 0  ar aah z 0 10aMaghreb-MachrekfInstitut Choiseul pour la politique internationale et la géoéconomie 1ano. 175 (2003) - aPariscÉd. Eskad2013- aPariscInstitut Choiseul pour la politique internationale et la géoéconomied2003-2012 aTrimestriel 1tMonde arabe, Maghreb, Machrekx1241-5294 aMoyen-OrientxPériodiques aAfrique du NordxPériodiques aPays arabesxPériodiques a95602aInstitut Choiseul pour la politique internationale et la géoéconomiec(Paris) 0aFRbFNSP4 uhttp://choiseul-editions.com/revues-geopolitique-Maghreb-Machrek-15.html zContenu : sommaires et résumés depuis le printemps 20031 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9561 bno. 175 (pri-2003) -....cParisdMagasins/AnnexeeP 8° 66981 bL'année en courscParisdBibliothèque de rechercheeP 8° 6698 aZCAD aDEW 956 aGEO RG Afrique du Nord et Moyen-Orient02224nas 2200457 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116106000600123110001600129200006800145207001600213210002300229326001200252421006300264421007600327421006100403421007300464510004000537517010000577517010000677517007000777517004600847530003800893606005900931607007200990710012301062830013601185830005301321856021701374955006701591972000901658991001801667992005101685992001401736992001601750070249202000005098720130930145418.01 a0474-5523 aFNSP248191 a19900101a19609999 f ba0 afre aFR ar aafa 10aMain economic indicatorsd= Principaux indicateurs économiques 1aNo 1(1960)- aPariscOCDEd1960- aMensuel 1aMain economic indicators. Historical statisticsx0258-2325 1tPrincipaux indicateurs économiques. Sources et définitionsx1028-818X 1tMain economic indicators. Sources and methodsx0259-2991 1tShort-term economic indicators Central and Eastern Europex1019-982910aPrincipaux indicateurs économiques10aBulletins statistiques de l'OECE. Statistiques générales. Principaux indicateurs économiques10aBulletins statistiques de l'OCDE. Statistiques générales. Principaux indicateurs économiques10aOCDE. Bulletins statistiques. Principaux indicateurs économiques10aOCDE. Principaux indicateurs économiques00aMain economic indicatorsb(Print) aIndicateurs économiquesyPays de l'OCDExPériodiques aPays de l'OCDExConditions économiquesxStatistiquesxPériodiques02aOrganisation de coopération et de développement économiquesbDépartement des affaires économiques et statistiques aDemandé 1er et dernier n° de la cote à Locarchives le 27/05/2010 : obtenu décembre 1965 et octobre 1984. Pas de 1960-1964 ? sdy a1960-2003 : collection envoyée au Ctles en 20134 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/04745523/principauxindiceconzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1960) -no. 4 (2003)cParisdMagasins/AnnexeeP 4° 2256 aZECH aexempb201306 aGEO RN1 Pays industrialisés, pays occidentaux aDEW 330.9 aDEW 310-31900937nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210002200175326001400197430004200211606005100253606004800304710003700352856002800389856010300417955006800520972000900588992002200597992001600619040444988000016309220130319051618.01 a1265-6917 aFNSP624901 a0000163092 a19900101a19959999 ba0 afre aFR aaea 10aMaires de France aPariscAMFd1995- aBimensuel 1aDépartements et communes,x0045-9984 aAdministration communaleyFrancexPériodiques aAdministration localeyFrancexPériodiques02aAssociation des maires de France4 uhttp://www.amf.asso.fr/ zContenu : sommaire du dernier numéro; sélection d'articles en texte intégral depuis juil. 2001.1 bn.s. no. 1 (jun-1995) -....cParisdMagasins/AnnexeeP 4° 1409 aZCAD aGEO RA4.06 France aDEW 350-35401064nas0 2200313 i 450 001001000000002001100010005001700021035002500038035002000063035001500083100004100098101000800139102000700147105001800154106000600172110001600178200005100194207002200245210005300267607006400320801003000384801002900414801001300443830000900456856012800465955006900593955007000662991001800732114224730000112576020130319051618.0 aFRBNF328110970000005 aPR031301800001J a0001125760 a20070430b19471954 y0frey0103 ba0 aeng aUS ay 0  ar aauu 0 y 10aMajor problems of United States foreign policy 1a1947-1954 (I-VII) aWashingtoncThe Brookings Institutiond1947-1955 aEtats-UnisxRelations extérieuresz1945-1953xPériodiques 3aFRbAbesc20070430gAFNOR 0aFRbBNFc19970701gAFNOR 0aFRbFNSP asdy04 uhttp://www.archive.org/details/majorproblemsofu033404mbpzAccès libre au texte intégral. Vol.4 numérisé sur Archive.org1 bvol. 3 (1949) -vol. 7 (1954)cParisdMagasins/AnnexeeCOL8°00051 bbvol. 1 (1947) -vol. 2 (1949)cParisdMagasins/AnnexeeCOL4°0002 aexempb20121200891nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005700154210004700211326001600258440001400274606003000288801002100318856004500339856006200384955009000446991001800536992003300554992001400587036376698000002704320130319051620.01 a0025-1534 aFNSP172637 a0000027043 a19900101b19681997 ba0 amul aNL aaha 10aMan and worldean international philosophical review aPittsburgh, Pa.cIPR Associatesd1968-1997 aTrimestriel 1x1387-2842 aPhilosophiexPériodiques 3aFRbCCN0025-15344 uhttp://www.wkap.nl/jrnltoc.htm/0025-1534 zContenu : sommaires depuis le vol. 28, n°1, janvier 19951 bvol. 1 no. 1 (fev-1968) - vol.30 no. 4 (oct-1997)cParisdMagasins/AnnexeeP 8° 2581 aexempb201103 aGEO RS Sans aspect régional aDEW 10-1401186nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006400154207001700218210002700235210005200262210003100314300003300345326001500378430003800393530001700431606003200448606002900480710006600509856006800575856004600643955009600689972000900785991001800794992001200812040478947000018826020131025125006.01 a1271-0377 aFNSP696957 a0000188260 a19900101a19969999 ba0 afre aFR aaja 10aManafLaboratoire d'analyse socio-anthropologique du risque 1ano 1 (1996)- aCaencLASARd1996-1999 aCaencPresses universitaires de Caend2000-2003 aaPariscL'Harmattand2007- aN'a pas paru de 2004 à 2007 aSemestriel 1aCahiers du LASA (Caen)x0765-025610aManab(Caen) aAnthropologiexPériodiques aSociologiexPériodiques02aLaboratoire d'analyse socio-anthropologique du risquec(Caen)4 uhttp://www.unicaen.fr/services/puc/rubrique.php3?id_rubrique=74 zContenu : sommaires depuis le no. 1, 19961 bno. 1 (1996) -no. 12/13 (2003) ; no. 14/15 (2007) -....cParisdMagasins/AnnexeeP 8° 6131 aZPAY aexempb201202 aDEW 30100962nas 2200313 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200001500148210003200163326001200195430004200207606004700249801001300296830007300309856003000382856004300412955005900455955008700514972000900601992002200610992001600632052447669000027937020131104161714.01 a1627-4792 a a19999999k fre ba0 afre aFR a 0  ar aaf z 0 10aManagement aPariscPrisma Pressed1999- aMensuel 1tL'Essentiel du management,x1263-7807 aGestion d'entrepriseyFrancexPériodiques 0aFRbFNSP ano. 56 (oct-1999) -.... : collection donnée au CTLes (juillet 2008)4 uhttp://www.management.fr/ zContenu : sommaire du dernier numéro.1 bL’année en courscParisd27, Salle Rez-de chaussée1 bConservation limitée aux 5 dernières annéescParisdMagasins/AnnexeeP 4° 6441 aZPAY aGEO RA4.06 France aDEW 650-65800756nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116200003600123210002900159326001500188517000800203606003900211801002100250856008800271955006700359972000900426991001800435992002100453992001600474036376779000002688120131108120104.01 a0025-181X aFNSP172229 a19900101a19619999 ba0 aeng aDE10aManagement international review aWiesbadencGablerd1961- aBimestriel10aMIR aGestion d'entreprisexPériodiques 3aFRbCCN0025-181X4 uhttp://www.uni-hohenheim.de/mir/zContenu : sommaires depuis le vol. 36, n°1, 19961 bvol. 10 no. 1 (1970) -....cParisdMagasins/AnnexeeP 8° 2848 aZPAY aexempb201105 aGEO RQ Universel aDEW 650-65801154nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200010100154210006200255326001200317606003900329710003700368801002100405856009000426856010800516955008900624955008400713991001800797992002100815992001600836038748290000002691820130319051621.01 a0025-1909 aFNSP172304 a0000026918 a19900101a19549999 ba0 aeng aUS aafa 10aManagement scienceejournal of the Institute for operations research and the management sciences aProvidence, R.I.cInstitute of Management Sciencesd1954- aMensuel aGestion d'entreprisexPériodiques02aInstitut des sciences de gestion 3aFRbCCN0025-19094 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00251909.html4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol.15, no. 8 (avr-1969) - vol. 28 no. 12 (1992)cParisdMagasins/AnnexeeP 8° 26871 bvol. 39 no. 1 (1993) -vol. 40 no. 12 (1994)cParisdMagasins/AnnexeeP 4° 6333 aexempb201001 aGEO RQ Universel aDEW 650-65801466nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154207002900180210002900209326001500238421004800253430006400301530003500365606005400400606003700454710006700491856010100558856010800659856012800767856010800895955009201003972000901095992001201104037247824000027532520131202110418.01 a1463-6786 aFNSP947766 a0000275325 a19990617a19989999 ba0 aeng aGB aaga 14aThe Manchester School 1aVol.66, no.1 (Jan.1998)- aOxfordcBlackwelld1998- aBimestriel 1aPapers in money, macroeconomics and finance 1aManchester School of Economic and Social Studiesx0025-2034 0aManchester Schoolb1998. Print aEconomie politiqueyGrande-BretagnexPériodiques aEconomie politiquexPériodiques aVictoria university of ManchesterbSchool of economics studies uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101097 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=MSE&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 66 no. 1 (jan-1998) -vol. 80 no. 6 (déc-2012)cParisdMagasins/AnnexeeP 8° 0116 aZPAY aDEW 33001271nas 2200301 i 450 001001000000002001100010005001700021035001500038035001500053100004100068101000800109102000700117110001600124200011600140210002500256300006600281326001200347517006100359517006400420601002500484601003500509710001100544856023500555856003700790955010700827992001400934992002100948039247570000019677020130319051621.0 aFNSP722200 a0000196770 a19900101a19519999 ba0 afre aFR aala 10aManuel de la Conférence généralefOrganisation des Nations Unies pour l'éducation, la science et la culture aPariscUnescod1951- aDernière édition papier 1994, puis en version électronique aBiennal10aTextes fondamentaux. Manuel de la Conférence générale10aManuel de la Conférence générale et du Conseil exécutif02aUnescoxPériodiques02aUnescobConférence générale02aUnesco4 uhttp://unesdoc.unesco.org/Ulis/cgi-bin/ulis.pl?database=&lin=1&futf8=1&ll=1&gp=1&look=default&sc1=1&sc2=1&nl=1&req=2&text=Convention%20on%20the%20Privileges%20and%20Immunities%20of%20the%20Specialized%20Agencies&text_p=phrase+like4 zAccès libre au texte intégral.1 b(1951) ; (1954) ; (1958) -(1985 ; (1988) -(1989) ; (1991) ; (1994)cParisdMagasins/AnnexeeP 8° 3249 aDEW 341.2 aGEO RQ Universel00982nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000075001502100025002252300024002503260012002745170061002866010025003477100011003728010013003838560235003968560042006319550005006739920014006780001190128000119012820130319051621.0 a0001190128 a a19909999k fre 01 ba0 afre aFR ar aal z  adr 10aManuel de la Conférence généraleb[Ressource électronique]fUnesco aPariscUnescod1990- aRevue électronique aBiennal10aTextes fondamentaux. Manuel de la Conférence générale02aUnescoxPériodiques02aUnesco 0aFRbFNSP4 uhttp://unesdoc.unesco.org/Ulis/cgi-bin/ulis.pl?database=&lin=1&futf8=1&ll=1&gp=1&look=default&sc1=1&sc2=1&nl=1&req=2&text=Convention%20on%20the%20Privileges%20and%20Immunities%20of%20the%20Specialized%20Agencies&text_p=phrase+like4 zContenu : texte intégral depuis 19901 r aDEW 341.200970nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001500154210005300169326001600222440004200238606005000280606004000330676000800370710005100378856003800429856010800467955006800575972000900643992001600652039736350000001073920130319051622.01 a0764-3470 aFNSP120337 a0000010739 a19900711b19862003 ba0 afre aFR aaha 10aMappemonde aMontpelliercMaison de la géographied1986-2003 aTrimestriel 1tMappemondeb[Ressource électronique] aGéographie économiquexCartesxPériodiques aGéopolitiquexCartesxPériodiques a91002aGroupement d'intérêt public RECLUSc(France)40uhttp://www.mgm.fr/PUB/Mappemonde/ zContenu : sommaires depuis le n°3, 1993, résumés depuis le n°3, 1995 et jusqu'au n°4, 2003 = n°721 bno. 1 (1990) -no. 72 (2003)cParisdMagasins/AnnexeeP 4° 5926 aZPAY aDEW 911-91300990nls 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000042001502070022001922100048002142300005002623000057002673260016003243360075003403370025004154300044004405170015004846060050004996060040005498010013005898560029006029550005006319920016006360000610214000061021420130319051622.0 a0000610214 a a20049999k fre 01 ba0 afre aFR az aah z  adr 10aMappemondeb[Ressource électronique] 1aN°1=n°73(2004)- aMontpelliercMaison de la géographied2004 a aTexte intégral gratuit depuis le n°73 = n°1, 2004 aTrimestriel aDonnées textuelles et cartographiques accessibles uniquement en ligne aFichiers HTML et PDF 1tMappemondeb[Texte imprimé]x0764-347010aM@ppemonde aGéographie économiquexCartesxPériodiques aGéopolitiquexCartesxPériodiques 0aFRbFNSP4 uhttp://mappemonde.mgm.fr1 r aDEW 911-91300933nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000051001502100005002012300005002063000062002113260016002733360101002893370017003906060030004076060067004377100062005048010013005668560047005799550005006260000432327000043232720130319051622.0 a0000432327 a a20019999k fre 01 ba0 afre aFR az aay z  adr 10aMarchés émergentsb[Ressource électronique] a a aTexte intégral de la revue depuis le n°24, janvier 2003 airrégulier aDonnées textuelles accessibles uniquement en ligne ou par abonnement par courrier électronique aFichiers PDF aRisque paysxPériodiques aMarché financieryNouveaux pays industrialisésxPériodiques02aFrancebDirection des relations économiques extérieures 0aFRbFNSP4 uhttp://www.dree.org/publications/index.htm1 r00828nas 2200277 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000480015421000330020232600170023553000290025260600290028160700250031085600370033595500690037295500720044199200250051399200120053804050803X000021725620130903160757.01 a1275-7500 aFNSP782238 a0000217256 a19900101a19979999 ba0 afre aFR aaca 10aMarianne‎fdir. publ. Jean-François Kahn aPariscMarianne (DIP)d1997- aHebdomadaire10aMarianne‎bParis. 1997 aActualitéxPériodiques aFrancexPériodiques4 uhttp://www.marianne-en-ligne.fr/1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 66881 bno. 1 (28 avr/4 mai-1997) -....cParisdMagasins/AnnexeeP 4° 6688 aGEO RA4.06 France 01 aDEW 05000885nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001800154210004300172326002600215326003000241606003400271801002100305856010500326856005200431955007000483972000900553992002100562992001200583039402819000002771320130429114031.01 a0308-597X aFNSP174706 a0000027713 a19900101a19779999 ba0 aeng aGB aaga 10aMarine policy aGuilfordcButterworth-Heinemannd1977- aBimestriel‎b19990- aTrimestriel‎b1977-1989 aDroit de la merxPériodiques 3aFRbCCN0308-597X4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/web-editions/journal/0308597X zContenu : accès aus sommaires et aux résumés1 bvol. 8 no. 2 (avr-1984) -....cParisdMagasins/AnnexeeP 4° 5142 aZCAD aGEO RQ Universel aDEW 34100928cas0 2200325 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116106000600123110001600129200001500145210002400160512002400184517003500208530002400243607005400267710006500321801003000386801002300416802000700439856004000446955006800486972000900554992001400563992002500577090057163000091655420130319051623.01 a1771-0790 a0000916554 a20010102a20009999 y0frey0103 ba0 afre aFR ar azku uu 10aMartinique aPariscIEDOMd2000-13aLa Martinique en...13aLa Martinique : rapport annuel10aMartiniqueb(Paris) aMartiniquexConditions économiquesxPériodiques02aInstitut d'émission des départements d'Outre-merc(France) 3aFRbAbesc20050909gAFNOR 3aFRbISSNc20050901 a074 uhttp://www.iedom.fr/dom/martinique/1 b(2000) -.... = (1999) -....cParisdMagasins/AnnexeeP 8° 6850 aZGRA aDEW 330.9 aGOE RA4.06 France 0101453nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210007000200326001600270430008300286606004400369606003900413676000800452710006100460801002100521856002600542856007500568856011900643856010800762955006700870955006300937957007001000972000901070992001201079001033557000005278820130319051624.01 a0769-3206 aFNSP252514 a0000052788 a19900101a19859999 ba0 afre aFR aahu 10aMatériaux pour l'histoire de notre temps aNanterrecAssociation des amis de la B.D.I.C. et du muséed1985- aTrimestriel 1aLa Lettre de l'Association des amis de la B.D.I.C. & du muséexISSN 0293-2245 aRelations internationalesxPériodiques aHistoire universellexPériodiques a90902aAssociation des amis de la BDIC et du Muséec(Nanterre) 3aFRbCCN0769-32064 uhttp://www.persee.fr/ zContenu : accès libre au texte intégral du n°1, 1985 au n°68, 20024 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-materiaux-pour-l-histoire-de-notre-temps.htm4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étage:eDEW 9091 bno. 1 (jan-1985) -....cParisdMagasins/AnnexeeP 4° 48121 bno. 1 (1985) -no. 20 (1990)cParisdMagasins/AnnexeeP Index 0751 aZPAY aDEW 90901180nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200009500163210002300258320004500281326001600326430006600342606005200408606003300460710007300493801001300566856006300579856006900642955006500711957001700776972000900793992001200802992001600814048886696000031766720130319051624.01 a0987-6936 a0000317667 a a20009999k fre ba0 afre aFR a 0  ar aah z 0 10aMathématiques et sciences humainesfCentre d'analyse et de mathématique socialesSgEHESS aPariscCAMSd2000- aA déjà porté ce titre de 1962 à 1987 aTrimestriel 1tMathématiques, informatique et sciences humaines,x0995-2314 aSciences socialesxMathématiquesxPériodiques aMathématiquesxPériodiques02aCentre d'analyse et de mathémathique socialesc(Paris /cMarseille) 0aFRbFNSP4 uhttp://www.ehess.fr/revue-msh/recherche.php?numero=dernier zContenu : sommaires des nos et sélection d'articles depuis 19621 bno. 149 (pri-2000) -....cParisdMagasins/AnnexeeP 4° 20191 eP Index 0622 aZPAY aDEW 004 aDEW 310-31900979nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200004800160210002900208300007100237326001400308517005500322530002500377606002900402607002500431856014500456955007600601992001200677038816601000010723220130319051624.0 a1256-0359 aFNSP454320 a0000107232 a19900101b18841944 ba0 afre aFR ar acaa 03aLe Matinederniers télégrammes de la nuit aParisc[s.n.]d1884-1944 aReprend le titre de: "Le matin: journal républicain indépendant" aQuotidien13aLe Matinele mieux informé des journaux français03aLeMatinbParis. 1884 aActualitéxPériodiques aFrancexPériodiques4 uhttp://gallica.bnf.fr/ark:/12148/cb328123058/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1884-1944)1 b(1914) -(1918) ; (oct-1939) -(1942) ; (1944)cParisdAnnexeeP F° 1105 aDEW 05001230cas0 2200397 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147105001800154110001600172200006400188210002400252326001100276410008300287512001800370517002800388607005900416710006500475801003000540801002300570801003000593802000700623856003700630856003600667955006200703972000900765991001800774992002600792992001400818094684693000091919520130319051624.0 a1760-9038 a131723162 aissn17609038 a0000919195 a20060106a19999999k y0frey50 ba0 afre aFR ay  azku uu 10aMayottefInstitut d'émission des départements d'Outre-mer aPariscIEDOMd1999- aAnnuel 1tRapport annuel - Institut d'émission des départements d'Outre-merx1632-420X10aMayotte en...10aMayotteerapport annuel aMayottexConditions économiquesxPériodiques2rameau02aInstitut d'émission des départements d'Outre-merc(France) 3aFRbAbesc20090423gAFNOR 3aFRbISSNc20090225 3aFRbAbesc20060112gAFNOR a074 uhttp://www.iedom.fr/dom/mayotte/4 zAccès libre au texte intégral1 b(1999) ; (2001) -....cParisdMagasins/AnnexeeP 8° 6853 aZGRA aexempb201212 aGEO RL2 Océan indien aDEW 330.901018nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210003600181326001600217606003900233606004700272801002100319856012600340856010800466955007800574972000900652991001800661992002100679992001600700038828308000002730320130319051624.01 a0047-5394 aFNSP173794 a0000027303 a19900101a19649999 ba0 aeng aUS aaha 14aThe McKinsey quarterly aNew YorkcMcKinsey & Co.d1964- aTrimestriel aGestion d'entreprisexPériodiques aOrganisation de l'entreprisexPériodiques 3aFRbCCN0047-53944 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=MCK&site=bsi-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 4 no. 4 (pri-1967) -no. 2 (2007)cParisdMagasins/AnnexeeP 8° 2953 aZGRA aexempb201106 aGEO RQ Universel aDEW 650-65801626cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200008400156210002700240326001400267441010700281441010400388510009000492510002900582606006200611606007600673606005700749710006700806801003000873856012400903856010801027955005501135972000901190992005101199992001401250048881309000081978720130319051625.01 a1606-8416 accn7208/5169 a0000819787 a20000309b19999999 0frey0103 ba0 amul aZZ aal 10aMeasuring globalisationfOrganisation for Economic Co-operation and Development aPariscOCDEd1999-2008 aBisannuel 1tMeasuring globalisation : activities of multinationals. Volume I, Manufacturing sector, ISSN 2074-7233 1tMeasuring globalisation : activities of multinationals. Volume II, Services (Print), ISSN 2074-725X10aMesurer la mondialisationele poids des multinationales dans les économies de l'OCDE10aMesurer la globalisation aEntreprises multinationalesyPays de l'OCDExPériodiques aIndustries manufacturièresyPays de l'OCDExStatistiquesxPériodiques aServicesyPays de l'OCDExStatistiquesxPériodiques02aOrganisation de coopération et de développement économiques 3aFRbAbesc20040920gAFNOR4 uhttps://acces-distant.sciences-po.fr/fork?http://masetto.sourceocde.org/vl=18115731/cl=19/nw=1/rpsv/outlook_annuals.htm4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(2001) -(2008)cParisdMagasins/AnnexeeP 4° 7075 aZPAY aGEO RN1 Pays industrialisés, pays occidentaux aDEW 330.901090nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000290013921000240016832600220019232600270021445200500024151700310029153000290032260600260035167600080037780100210038585601080040685601080051495500700062297200090069299100180070199200210071999200120074003910723X000005234820140109135214.01 a0163-4437 aFNSP251653 a19900101a19799999 ba0 aeng aGB aagu 10aMedia, culture & society aLondoncSaged1979- aBimestrielb1999- aTrimestrielb1979-1998 1tMedia, culture & society (Online),x1460-367510aMedia, culture and society00aMedia, culture & society aMédiasxPériodiques a070 3aFRbCCN0163-44374 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1979) -....cParisdMagasins/AnnexeeP 8° 4435 aZSAB aexempb201106 aGEO RQ Universel aDEW 30200999nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210007800177326001200255430005800267606003700325710005200362856003400414856015500448955006000603972000900663992002500672992001200697039121143000002128820130319051626.01 a0170-1754 aFNSP157601 a0000021288 a19910104a19709999 ba0 ager aDE aafa 10aMedia-Perspektiven aFrankfurt am MaincArbeitsgemeinschaft der ARD-Werbegesellschaftend1970- aMensuel 1aHinweisdienst - Werbung im Rundfunk - Gmbhx0170-1770 aMédiasyAllemagnexPériodiques02aArbeitsgemeinschaft der ARD-Werbegesellschaften4 uhttp://www.ard-werbung.de/mp/ zContenu : accès au texte intégral depuis janvier 2000, sommaires et abstracts depuis 1997, certains articles en texte intégral, moteur de recherche1 bno. 11 (1990) -....cParisdMagasins/AnnexeeP 4° 5968 aZGRA aGEO RA5.01 Allemagne aDEW 30201428nas 2200397 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200009400148207001200242210005100254300002900305326001100334430002900345451004000374530003400414606005600448606005700504606006500561676000800626710007500634801001300709856012500722955006200847955005300909972000900962992002700971992001600998992001601014118815296000110298320131025115448.01 a1960-8527 a a20079999 fre 01 ba0 afre aFR a 0  ar aa z 0 10aMediterrafCentre International de Hautes Etudes Agronomiques Méditerranéennes (CIHEAM) 1a(2007)- aPariscCIHEAMcSciences-Po, les Pressesd2007- aPas de parution en 2011. aAnnuel 1tRapport annuel du CIHEAM 1ttMediterra (English ed.)x1966-510510aMediterra‎bÉd. française aAgricultureyMéditerranée (région)xPériodiques aAlimentationyMéditerranée (région)xPériodiques aDéveloppement ruralyMéditerranée (région)xPériodiques a33802aCentre international de hautes études agronomiques méditerranéennes 0aFRbFNSP4 uhttp://www.ciheam.org/index.php/fr/publications/mediterra-2012zAccès libre au texte intégral des rapports depuis 20071 bLa dernière annéecParisd27, Salle 1er étageeDEW 3381 b(2007) -....cParisdMagasins/AnnexeeP 8° 6976 aZPAY aGEO RL4 Méditerranée aDEW 338.1-3 aDEW 310-31901352cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200008100180210004900261430003200310451004300342606005600385606005700441606006500498676000800563710007500571801003000646801002300676802000700699856008500706955006200791955005300853992001700906992001600923992002700939127900748000119030420130515184200.01 a1966-5105 aissn19665105 a0001190304 a20081002a20079999u y0frey50 ba0 aeng aFR ay  ar azku uu 10aMediterrafInternational Centre for Advanced Mediterranean Agronomic Studies aPariscPresses de Sciences PocCIHEAMd2007- 1tAgri.med (Paris)x1813-1603 1tMediterra (Éd. française)x1960-8527 aAgricultureyMéditerranée (région)xPériodiques aAlimentationyMéditerranée (région)xPériodiques aDéveloppement ruralyMéditerranée (région)xPériodiques a33802aCentre international de hautes études agronomiques méditerranéennes 3aFRbAbesc20091005gAFNOR 3aFRbISSNc20091001 a074 uhttp://www.ciheam.org/zAccès libre au texte intégral des rapports depuis 20071 bLa dernière annéecParisd27, Salle 1er étageeDEW 3381 b(2009) -....cParisdMagasins/AnnexeeP 8° 6976 aDEW 338. 1-3 aDEW 310-319 aGEO RL4 Méditerranée01130nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154207002600181210002400207326001800231530004100249607004300290856004100333856007700374856010900451856010800560955007000668972000900738991001800747992002700765992001200792036754900000021394220140107172726.01 a1362-9395 aFNSP772657 a0000213942 a19900101a19969999 ba0 aeng aGB aaia 10aMediterranean politics 1aVol.1, no. .1 (1996)- aLondoncCassd1996- a3 n°s par an10aMediterranean politicsbLondon. 1996 aMéditerranée (région)xPériodiques4 uhttp://www.frankcass.com/jnls/mp.htm zContenu : sommaires depuis le vol. 1, n°1 ; sommaire du n° à paraitre4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713604487db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (hiv-1996) -....cParisdMagasins/AnnexeeP 8° 6328 aZSAB aexempb201209 aGEO RL4 Méditerranée aDEW 90901127nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210004700182326001600229607004300245856005800288856005300346856010100399856010800500955006900608955007000677972000900747991001800756992002700774992001200801040267660000001293620140107173031.01 a1047-4552 aFNSP132739 a0000012936 a19900913a19909999 ba0 aeng aUS aaha 10aMediterranean quarterly aDurham, N.C.cDuke University Pressd1990- aTrimestriel aMéditerranée (région)xPériodiques4 uhttp://muse.jhu.edu/journals/mediterranean_quarterly/ zContenu : sommaires depuis le vol.10, n°3, 19994 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=111229 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bL'année en courscParisdBibliothèque de rechercheeP 8° 56651 bvol. 1 no. 1 (hiv-1990) -....cParisdMagasins/AnnexeeP 8° 5665 aZCAD aexempb201110 aGEO RL4 Méditerranée aDEW 90901373nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210006400173320007900237326001500316607003200331607004300363801002100406830016600427856009200593856010800685955006000793957010800853972000900961992002600970992002700996992001201023039225151000002790120130319051626.01 a0025-8296 aFNSP175712 a0000027901 a19900101a19609999 ba0 afre aFR aaha 10aMéditerranée aAix-en-ProvencecLes amis de la revue Méditerranéed1960- aA partir de 2007 publié par Les Publications de l'Université de Provence aSemestriel aEurope du SudxPériodiques aMéditerranée (région)xPériodiques 3aFRbCCN0025-8296 a1ère an., n°1, janv./mars 1960 ---> t.34, n°4, 1978 < P 8° 1859 >, t.35, n°1/2,1979 ---> n°53, 1984 < P 4° 4373 >collection donnée au CTL en juillet 20014 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-mediterranee.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 54 (1985) -....cParisdMagasins/AnnexeeP 4° 43731 b(1960) -(1969) ; (1970) -(1979) ; (1980) -(1989) ; (1990) -(1999)cParisdMagasins/AnnexeeP Index 0168 aZCAD aGEO RA6 Europe du Sud aGEO RL4 Méditerranée aDEW 90900965cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200006400162207001800226210003100244326001600275430004300291530002700334606003000361801003000391801002300421802000700444856004400451856004800495955006300543972000900606992001200615083216626000091296620130319051626.01 a1771-3757 aissn17713757 a0000912966 a20050110a20049999 y0frey0103 ba0 afre aFR ar aahu uu 10aMédiumetransmettre pour innoverfdir. publ. Régis Debray 0ano. 1 (2004)- aPariscEd. Babyloned2004- aTrimestriel 1tLes Cahiers de médiologie,x1270-066510aMédiumb(Paris. 2004) aMédiologiexPériodiques 3aFRbAbesc20050909gAFNOR 3aFRbISSNc20050601 a074 uhttp://editions-babylone.com/medium.htm zContenu : sommaires à partir du n°1, 20041 bno. 1 (aut-2004) -....cParisdMagasins/AnnexeeP 8° 6226 aZPAY aDEW 30201079nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154210004700192326001700239517003800256517003200294607003100326607006800357607005600425801002100481856002500502856004900527955006900576955007100645992002500716992001200741038828618000002874320130319051627.01 a0047-7230 aFNSP178636 a0000028743 a19900101a19579999 ba0 aeng aGB aa u 10aMEED. Middle East economic digest aLondoncMiddle East Economic Digestd1957- aHebdomadaire10aMEED. Middle East business weekly10aMiddle East economic digest aMoyen-OrientxPériodiques aMoyen-OrientxRelations économiques extérieuresxPériodiques aMoyen-OrientxConditions économiquesxPériodiques 3aFRbCCN0047-72304 uhttp://www.meed.com/ zContenu : sommaire des numéros depuis 2001.1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 28311 bvol. 14 no. 1 (jan-1970) -....cParisdMagasins/AnnexeeP 4° 2831 aGEO RG2 Moyen-Orient aDEW 95601154nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003500139210002300174326001100197517008000208530003600288601006700324606005500391710009000446856016800536955005500704972000900759991001800768992002200786992001600808992001600824039871495000014660520130828143100.01 a0994-9410 aFNSP577554 a19950117a19569999 ba0 afre aFR aaka 10aMémento de statistiquesfSNCF aPariscSNCFd1956- aAnnuel10aMémento de statistiques - Société nationale des chemins de fer français00aMémento de statistiques - SNCF02aSociété nationale des chemins de fer françaisxPériodiques aChemins de feryFrancexStatistiquesxPériodiques02aSociété nationale des chemins de fer françaisbDépartement méthodes et systèmes4 uhttp://www.statistiques.developpement-durable.gouv.fr/donnees-densemble/1869/873/memento-statistiques-transports.htmlzAccès libre au texte intégrale depuis 19501 b(1972) -(2004)cParisdMagasins/AnnexeeP 8° 3259 aZGRA aexempb200911 aGEO RA4.06 France aDEW 383-389 aDEW 310-31901412cas0 2200385 450 001001000000002001100010005001700021011001400038035001400052035001700066035001800083035001700101035001500118100004100133101000800174102000700182105001800189106000600207110001600213200014400229210005100373430016300424510004100587530007500628531005000703710004000753801003000793801001800823801002300841802000700864856003600871856004900907955005500956991001501011038859602000112749420130319051627.0 a0074-4433 a001610171 accn0074-4433 afrBN007939158 aissn00744433 a0001127494 a19880202a19489999k y0frey0103 ba0 amul aNL ay  ar aaz 10aMémoires, plaidoiries et documentsfCour internationale de justice =dPleadings, oral arguments, documentsfInternational Court of Justice aLa HayecInternational Court of Justiced1948- 1tPublications de la Cour permanente de justice internationale. Série C. Actes et documents relatifs aux arrêts et aux avis consultatifs de la Courx1011-846210aPleadings, oral arguments, documents10aPleadings, oral arguments, documentsb(International Court of Justice) 0aPlead. oral argum. doc.b(Int. Court Justice)02aCour internationale de justice4070 3aFRbAbesc20080123gAFNOR 3aFRbBNgAFNOR 3aFRbISSNc20030523 a004 zAccès libre au texte intégral4 uhttp://www.icj-cij.org/docket/index.php?p1=31 b(1948) -(1976)cParisdMagasins/AnnexeeCOL8°1089 aPériobTZ00978nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000092001502100044002422300024002863260011003106010043003216060036003646070051004007100029004518010013004808560043004938560062005369550005005989920023006039920012006269920014006380001140369000114036920130319051628.0 a0001140369 a a19809999k fre 01 ba0 aspa aBO ar aak z  adr 10aMemoria - Banco central de Boliviab[Ressource électronique]fBanco central de Bolivia aLa PazcBanco central de Boliviad1980- aRevue électronique aAnnuel02aBanco central de BoliviaxPériodiques aFinancesyBoliviexPériodiques aBoliviexConditions économiquesxPériodiques02aBanco central de Bolivia 0aFRbFNSP4 uhttp://www.bcb.gov.bo/sitio/index.php# zContenu : texte intégral du rapport en ligne depuis 19801 r aGEO RD4.12 Bolivie aDEW 332 aDEW 330.900988nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000094001502100050002442300024002943260011003186010044003296060037003736070052004107100030004628010013004928560040005058560062005459550005006079920024006129920012006369920014006480001140373000114037320130319051628.0 a0001140373 a a20049999k fre 01 ba0 aspa aHN ar aak z  adr 10aMemoria - Banco central de Hondurasb[Ressource électronique]fBanco central de Honduras aTegucigalpacBanco central de Hondurasd2004- aRevue électronique aAnnuel02aBanco central de HondurasxPériodiques aFinancesyHondurasxPériodiques aHondurasxConditions économiquesxPériodiques02aBanco central de Honduras 0aFRbFNSP4 uhttp://www.bch.hn/memoria_anual.php zContenu : texte intégral du rapport en ligne depuis 20041 r aGEO RD2.04 Honduras aDEW 332 aDEW 330.901051nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000112001502100052002622300024003143260011003386010052003496060035004016070050004367100039004868010013005258560064005388560070006029550005006729920022006779920012006999920014007110001140375000114037520130319051628.0 a0001140375 a a19229999k fre 01 ba0 aspa aPE ar aak z  adr 10aMemoria - Banco central de reserva del Perúb[Ressource électronique]fBanco central de reserva del Perú aLimacBanco central de reserva del Perúd1922- aRevue électronique aAnnuel02aBanco central de reserva del PeruxPériodiques aFinancesyPérouxPériodiques aPérouxConditions économiquesxPériodiques02aBanco central de reserva del Perú 0aFRbFNSP4 uhttp://www.bcrp.gob.pe/bcr/Memoria-Anual/Memoria-Anual.html zContenu : texte intégral du dernier rapport en ligne depuis 20021 r aGEO RD4.18 Pérou aDEW 332 aDEW 330.901051nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000048001552100027002033000041002303260011002716010046002826060039003286070054003677100032004218010021004538560045004749550079005199550054005989720009006529920026006619920012006879920014006990000090811000009081120130319051628.01 a0067-320X aFNSP400311 a0000090811 a19900101a19509999 ba0 aspa aCR aaku 10aMemoria anual - Banco central de Costa Rica aSan JosécBCCRd1950- aEn version électronique depuis 1995 aAnnuel02aBanco central de Costa RicaxPériodiques aFinancesyCosta RicaxPériodiques aCosta RicaxConditions économiquesxPériodiques02aBanco central de Costa Rica 3aFRbCCN0067-320X4 uhttp://www.bccr.fi.cr/flat/bccr_flat.htm1 b(1952) ; (1955)-(1967) ; (1974)-(1979)cParisdMagasins/AnnexeeCOL8°05561 b(1981)-(1984)cParisdMagasins/AnnexeeP 4° 5274 aZGRA aGEO RD2.06 Costa Rica aDEW 332 aDEW 330.900998nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000104001502100027002542300024002813260011003056010046003166060039003626070054004017100032004558010013004878560045005008560070005459550005006159920026006209920012006469920014006580001140677000114067720130319051628.0 a0001140677 a a19959999k fre 01 ba0 aspa aCR ar aak z  adr 10aMemoria anual - Banco central de Costa Ricab[Ressource électronique]fBanco central de Costa Rica aSan JosécBCCRd1995- aRevue électronique aAnnuel02aBanco central de Costa RicaxPériodiques aFinancesyCosta RicaxPériodiques aCosta RicaxConditions économiquesxPériodiques02aBanco central de Costa Rica 0aFRbFNSP4 uhttp://www.bccr.fi.cr/flat/bccr_flat.htm zContenu : texte intégral du dernier rapport en ligne depuis 19951 r aGEO RD2.06 Costa Rica aDEW 332 aDEW 330.900976nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000097001502100029002472300024002763260011003006010058003116060040003696070055004097100044004648010013005088560053005218560042005749550005006169920027006219920014006480001109620000110962020130319051628.0 a0001109620 a a20029999k fre 01 ba0 aspa aSV ar aak z  adr 10aMemoria de labores - BCRb[Ressource électronique]fBanco central de reserva de El Salvador aSan SalvadorcBCRd2002- aRevue électronique aAnnuel02aBanco central de reserva de El SalvadorxPériodiques aFinancesyEl SalvadorxPériodiques aEl SalvadorxConditions économiquesxPériodiques02aBanco central de reserva de El Salvador 0aFRbFNSP4 uhttp://www.bcr.gob.sv/publicaciones/memoria.html zContenu : texte intégral depuis 20021 r aGEO RD2.03 El Salvador aDEW 330.901099nas 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000066001502100041002163000047002573260011003044370064003156010037003796060038004166070053004547100023005078010013005308560065005438560053006089550054006619720009007159920025007249920012007490000994767000099476720130319051628.0 a0000994767 a a20039999 fre 01 ba0 aspa aGT a 0  ar aa z 0 10aMemoria de labores del Banco de GuatemalafBanco de Guatemala aGuatemalacBanco de Guatemalad2003- aEn version électronique à partir de 2006 aAnnuel 1tEstudio económico y memoria de laboresfBanco de Guatemala02aBanco de GuatemalaxPériodiques aFinancesyGuatemalaxPériodiques aGuatemalaxConditions économiquesxPériodiques02aBanco de Guatemala 0aFRbFNSP4 uhttp://www.banguat.gob.gt/inc/main.asp?id=14756&aud=1&lang=14 zContenu : texte intégral du rapport depuis 20031 b(2002)-(2005)cParisdMagasins/AnnexeeP 4° 7122 aZGRA aGEO RD2.02 Guatemala aDEW 33200957nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000093001502100041002432300024002843260011003086010037003196060038003566070053003947100023004478010013004708560065004838560053005489550005006019920025006069920012006310001109736000110973620130319051628.0 a0001109736 a a20039999k fre 01 ba0 aspa aGT ar aak z  adr 10aMemoria de labores del Banco de Guatemalab[Ressource électronique]fBanco de Guatemala aGuatemalacBanco de Guatemalad2003- aRevue électronique aAnnuel02aBanco de GuatemalaxPériodiques aFinancesyGuatemalaxPériodiques aGuatemalaxConditions économiquesxPériodiques02aBanco de Guatemala 0aFRbFNSP4 uhttp://www.banguat.gob.gt/inc/main.asp?id=14756&aud=1&lang=1 zContenu : texte intégral du rapport depuis 20031 r aGEO RD2.02 Guatemala aDEW 33201241cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200003100180207004200211210007800253326001200331430004100343606003800384710005000422801003000472801002300502801003000525802000700555856010500562856007300667955007700740972000900817992002500826992001600851094683166000111034120130319051629.01 a1771-1819 aissn17711819 a0001110341 a20060106a20069999m y0frey0103 ba0 afre aFR ay  ar aafu uu 13aLe Mensuel du Gouvernement 0aN.1 (2006, janvier) -n.20 (2008, mai) aPariscPremier ministre, Service d'information du Gouvernementd2006-2008 aMensuel 1tLa Lettre du Gouvernementx1268-9122 aInformation d'ÉtatxPériodiques02aFrancebService d'information du Gouvernement 3aFRbAbesc20080605gAFNOR 3aFRbISSNc20060101 3aFRbAbesc20070713gAFNOR a074 uhttp://www.archives.premier-ministre.gouv.fr/villepin/information/mensuel_gouvernement_50/index.html zContenu : disponible en texte intégral depuis le no 1, Janvier 20061 bno. 12 (jan-2007) -no. 20 (mai-2008)cParisdMagasins/AnnexeeP 4° 4699 aZGRA aGEO RA4.06 France 01 aDEW 944.08300921nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000058001502100074002082300024002823260012003066070052003187100050003708010013004208560077004338560075005109550005005859920025005909920016006150001061819000106181920130319051629.0 a0001061819 a a20069999k fre 01 ba0 afre aFR ar aaf z  adr 13aLe Mensuel du Gouvernementb[Ressource électronique] aPariscPremier ministre, Service d'information du Gouvernementd2006- aRevue électronique aMensuel aFrancexPolitique et gouvernementxPériodiques02aFrancebService d'information du Gouvernement 0aFRbFNSP4 uhttp://www.premier-ministre.gouv.fr/information/mensuel-gouvernement_50/ zContenu : accès libre au texte intégral depuis le n°1, janvier 20061 r aGEO RA4.06 France 01 aDEW 944.08301489cas0 2200373 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164105001800171106000600189110001600195200006000211207010000271210004000371300015300411300008300564326001200647430004200659530003700701801003000738801002300768801001300791802000700804856014500811955014700956992001201103038551616000037619620130319051629.01 a1149-0292 a070619204 accn1149-0292 aissn11490292 a0000376196 a19901029b18901965k y0frey0103 ba0 afre aFR ay 0  ar aafu 0uu 10aMercure de Franceesérie modernefdir. Alfred Vallette 0aT. 1, no.1 (1890)-t. 297, no.998 (1940)at. 298, no.999/1000 (1946)-t. 354, no.1221/1222 (1965) aPariscMercure de Franced1890-1965 aTables : t. 1-20 (1890-1896) ; t. 21-52 (1897-1904) ; t. 53-82 (1905-1909) ; t. 83-106 (1910-1913) ; t. 107-136 (1914-1919) ; t. 137-176 (1920-1924) aExiste aussi en partie sous forme de reprod. en fac-sim., Vaduz : Kraus, 1965- aMensuel 1tLa Pléïade (Paris. 1886)x1149-028410aMercure de Franceb(Paris. 1890) 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20030203 0aFRbFNSP a074 uhttp://gallica.bnf.fr/ark:/12148/cb34427363f/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1890-1935)1 b1912 -1915 (lac) ; 1919 (lac) 1920, 1921 (lac) ,1922 (lac), 1923 -1926, 1927 (lac), 1928 (lac) ; 1947-1965cParisdMagasins/AnnexeeP 8° 0395 aDEW 05001408nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210007000183326001500253430004500268440006100313607003100374710006900405801002100474856009000495856010800585856006900693856009000762955010100852957008000953992002501033992001201058037817620000002874820130319051629.01 a0888-0328 aFNSP178646 a0000028748 a19900101b19861987 ba0 aeng aUS aagu 10aMERIP Middle East report aNew YorkcMiddle East Research and Information Projectd1986-1987 aBimestriel 1aMERIP reports (0047-7265) < P 4° 4185 > 1aMiddle East report (New York, N.Y., 1988) < P 4° 4185 > aMoyen-OrientxPériodiques02aMiddle East Research and Information Projectc(Washington, D.C.) 3aFRbCCN0888-03284 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/08880328.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po zPour MERIP reports < P 4° 4185 > via JSTOR, voir URL ci-dessous uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00477265.html1 bvol. 16 no. 1 (jan/fev-1986) -vol. 17 no. 149 (nov/dec-1987)cParisdMagasins/AnnexeeP 4° 41851 bno. 1 (1971) -no. 92 (1980) (n°1/92)cParisdMagasins/AnnexeeP Index 0530 aGEO RG2 Moyen-Orient aDEW 95600941nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001100154210003400165326001200199606003700211607004800248801002100296856003300317856007700350955014800427972000900575991001800584992002500602992001200627038751534000002852020130319051629.01 a0026-0096 aFNSP178055 a0000028520 a19900101a19479999 ba0 ager aDE aafu 10aMerkur aStuttgartcKlett-Cottad1947- aMensuel aVie intellectuellexPériodiques aAllemagnexVie intellectuellexPériodiques 3aFRbCCN0026-00964 uhttp://www.online-merkur.de/ zContenu : sommaires depuis le n° 526, janvier 1993, moteur de recherche1 bvol. 2 no. 10 (1948) ; vol. 3 no. 16 (1949) ; vol. 18 no. 193 (1964) ; vol. 22 no. 238 (jan/fev-1968) -....cParisdMagasins/AnnexeeP 8° 2516 aZCAD aexempb200908 aGEO RA5.01 Allemagne aDEW 00101207nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210004300195326001500238422004700253440004400300606004400344710007200388712004400460856009000504856010800594955008200702991001800784992004600802992002100848992001200869040327558000013185120130319051629.01 a1079-1760 aFNSP535909 a0000131851 a19940704b19941998 ba0 aeng aUS aaja 10aMershon international studies review aCambridge, Mass.cBlackwelld1994-1998 aSemestriel 1aInternational studies quarterlyx0020-8833 1tInternational studies reviewx1521-9488 aRelations internationalesxPériodiques02aMershon Center for Education in National Securityc(Columbus, Ohio)02aAssociation des études internationales4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/10791760.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 38 no. 1(1994) -vol. 40 no. 1 (1996)cParisdMagasins/AnnexeeP 8° 6051 aexempb201202 ahttp://www.blackwell-synergy.com/loi/misr aGEO RQ Universel aDEW 32701134nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200011600154210006200270326001600332530002900348606004000377606003600417712007700453712005500530856003500585856007700620955008200697972000900779991001800788992001400806111254590000020897120130319051630.01 a1405-4558 aFNSP757276 a0000208971 a19900101a19979999 ba0 aspa aMX aaha 10aMetapolíticaerevista trimestral de teoria y ciencia de la politicafCentro de estudios de política comparada aMéxicocCentro de estudios de política comparadad1997- aTrimestriel00aMetapolíticab(Impresa) aPhilosophie politiquexPériodiques aScience politiquexPériodiques02aUniversidad autónoma de PueblabFacultad de derecho y ciencias sociales02aCentro de estudios de politica comparada (México)4 uhttp://www.metapolitica.com.mx zContenu : sommaires et résumés depuis le vol. 1, n°1, janv.-mars 19971 bvol. 1 no. 1 (1997) -vol. 8 no. 38 (2005)cParisdMagasins/AnnexeeP 8° 6312 aZSAB aexempb201210 aDEW 320.501180nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004500139210006000184326001500244452004500259510002300304530002000327607002600347801002100373856005400394856006700448856009000515856010800605955007000713972000900783991001800792992002000810992001200830039707164000002853920140108155833.01 a0742-9797 aFNSP178098 a19900101a19859999 ba0 amul aUS aaju 10aMexican studies‎d= Estudios mexicanos aBerkeley, Calif.cUniversity of California Pressd1985- aSemestriel 1tMexican studies (Online), ‎x1533-832010aEstudios mexicanos10aMexican studies aMexiquexPériodiques 3aFRbCCN0742-97974 uhttp://www.ucpressjournals.com/journal.asp?j=msem zContenu : sommaires et résumés depuis le vol. 11, n°1, 19954 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/07429797.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (hiv-1985) -....cParisdMagasins/AnnexeeP 8° 4999 aZPAY aexempb201106 aGEO RD1 Mexique aDEW 97201201nls 2200349 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000051001642100049002152300005002643000054002693260017003233300056003403370071003966060036004678010013005038560090005168560108006068560049007148560048007639550005008119920023008169920012008390000801860000080186020130319051631.01 a0026-2234 a0000801860 a a19029999k fre 01 ba0 aeng aUS az aaz z  adr 10aMichigan law reviewb[Ressource électronique] aAnn Harbor, MichcMichigan law reviewd1902- a aTexte intégral depuis le vol. 1, n°1, June 1902 a8 n° par an aDonnées textuelles accessibles uniquement en ligne aTéléchargement de fichiers TIFF, PDF (recommandé) et PostScript aDroityEtats-UnisxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00262234.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://students.law.umich.edu/mlr/index.html zContenu : sommaires depuis le vol. 96, n°11 r aGEO RC2 Etats-Unis aDEW 34901073nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001400139210004600153326002200199326002900221326003000250452003500280530003300315606003600348607005200384676000800436856004800444856004500492955006600537955005900603972000900662991001800671992002200689992001200711039599531000002856620130918162802.01 a0394-7378 aFNSP178162 a19910328a19869999 ba0 aita aIT aaha 10aMicromega aRomacEditrice periodici culturalid1986- aMensuel‎b2010- aBimestriel‎b1989-2009 aTrimestriel‎b1986-1988 1tMicroMega (Online),x2282-121X10aMicroMega‎bTesto stampato aSciences socialesxPériodiques aItaliexPolitique et gouvernementxPériodiques a9404 uhttp://temi.repubblica.it/micromega-online/ zContenu : sommaires depuis le n°1, 19971 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 bno. 1 (1986) -....cParisdMagasins/AnnexeeP 8° 4997 aZCAD aexempb201106 aGEO RA6.03 Italie aDEW 94501086nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210005100182326001600233607003100249676000800280712004600288801002100334856005900355856009700414955006600511955007000577957006700647972000900714992002500723992001200748038752743000000490520130319051631.01 a0026-3141 aFNSP107027 a0000004905 a19900101a19479999 ba0 aeng aUS aahu 14aThe Middle East journal aWashington, D.C.cMiddle East Instituted1947- aTrimestriel aMoyen-OrientxPériodiques a95602aMiddle East Institutec(Washington, D.C.) 3aFRbCCN0026-31414 uhttp://www.mideasti.org/programs/programs_journal.html4 zContenu : accès aux sommaires et résumés des articles depuis le vol 57, n°1, Winter 20031 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9561 bvol. 1 no. 1 (jan-1947) -....cParisdMagasins/AnnexeeP 8° 00181 b(1947-1966), (1967-1977)cParisdMagasins/AnnexeeP Index 0212 aZCAD aGEO RG2 Moyen-Orient aDEW 95601302nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154207002600177210005600203326001600259430004200275607003100317607006700348607006700415676000800482710005000490856002500540856009400565955006600659955006600725957007300791972000900864991001800873992002500891992001200916040290522000006168920130319051631.01 a1061-1924 aFNSP282117 a0000061689 a19900101a19929999 ba0 aeng aUS aaha 10aMiddle East policy 1avol. 1, no. 1 (1992)- aWashington, D.C.cMiddle East Policy Councild1992- aTrimestriel 1aAmerican-arab affairsxISSN 0731-6763 aMoyen-OrientxPériodiques aEtats-UnisxRelations extérieuresyMoyen-OrientxPériodiques aMoyen-OrientxRelations extérieuresyEtats-UnisxPériodiques a95602aMiddle East Policy Council (Washington, D.C.)4 uhttp://www.mepc.org/ zContient une sélection d'articles en texte intégral depuis le vol.4, no 4, octobre 19961 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9561 bvol. 1 no. 1 (1992) -....cParisdMagasins/AnnexeeP 8° 47401 b(1982) -(1993)zcet index constitue le vol.2, n°4, 1993 de la revue aZSAB aexempb201011 aGEO RG2 Moyen-Orient aDEW 95600993nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154207003100180210004700211326001600258607003000274607003400304607003100338710003700369856003200406856007800438955007000516972000900586991001700595992004300612992001200655094034982000013695120140108154315.01 a1073-9467 aFNSP547758 a0000136951 a19940929a19949999 ba0 aeng aUS aaha 10aMiddle East quarterly 1aVol. 1, no. 1 (Mar. 1994)- aPhiladelphia, PacMiddle East Forumd1994- aTrimestriel aPays arabesxPériodiques aPays islamiquesxPériodiques aMoyen-OrientxPériodiques02aMiddle East Forum (Philadelphia)4 uhttp://www.meforum.org/meq/ zAccès libre au texte intégral à l'exception du numéro le plus récent1 bvol. 1 no. 1 (mar-1994) -....cParisdMagasins/AnnexeeP 8° 6061 aZSAB aexemp$201202 aGEO RG Afrique du Nord et Moyen-Orient aDEW 95601183nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210006600200326002300266326002600289430005600315607003100371607003000402710006900432856009000501856010800591955007700699957001700776972000900793992004300802992001200845040004597000002874920130319051631.01 a0899-2851 aFNSP178647 a0000028749 a19910402a19889999 ba0 aeng aUS aaha 10aMiddle East report (New York, N.Y., 1988) aNew YorkcMiddle East Research and Information Projectd1988- aTrimestrielb1996- aBimestrielb1988-1995 1aMERIP Middle East report (0888-0328) < P 4° 4185 > aMoyen-OrientxPériodiques aPays arabesxPériodiques02aMiddle East Research and Information Projectc(Washington, D.C.)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/08992851.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 18 no. 150 (jan/fev-1988) -....cParisdMagasins/AnnexeeP 4° 41851 eP Index 0530 aZCAD aGEO RG Afrique du Nord et Moyen-Orient aDEW 95601303nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000950015420700560024921000740030532600150037944000610039460700310045571000530048685600560053985600640059595500920065995701620075197200090091399100180092299200250094099200120096503875276X000002875020130319051631.01 a0026-3184 aFNSP178648 a0000028750 a19910402b19672008 ba0 aeng aUS aaja 10aMiddle East studies Association bulletinfMiddle East Studies Association of North America 1avol. 1, no. 1 (May 1967) -vol. 42, nos. 1 /2 (2008) aNew YorkcMiddle East Studies Association of North Americad1967-2008 aSemestriel 1tReview of Middle East studies (Tucson, Ariz.)x2151-3481 aMoyen-OrientxPériodiques02aMiddle East Studies Association of North America4 uhttp://fp.arizona.edu/mesassoc/Bulletin/welcome.htm zContenu : sommaires depuis le volume 26, n° 1, Summer 19921 bvol. 7 no. 2 (1973) -vol. 42 no. 1/2 (ete/hiv-2008)cParisdMagasins/AnnexeeP 8° 45301 bvol. 21 (1987) -vol. 30 (1996) ; vol. 31 (1997) -vol. 35 (2001)zse trouvent respectivement dans le vol. 32 no. 1 (1998) et vol. 36, no. 1 (2002) de la revue aZSAB aexempb201010 aGEO RG2 Moyen-Orient aDEW 95601468nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154207002700181210003100208210003100239326002200270326002700292607005800319607003100377676000800408801002100416856005600437856008500493856010900578856010800687955006600795955007000861957005700931972000900988991001800997992004301015992001201058038752786000000490820130319051631.01 a0026-3206 aFNSP107031 a0000004908 a19900101a19649999 ba0 aeng aGB aagu 10aMiddle Eastern studies 1avol. no. 1 (oct-1964)- aLondoncF. Cassd1964-2004 aAbingdoncRoutledged2005- aBimestrielb2004- aTrimestrielb1964-2003 aMoyen-OrientxPolitique et gouvernementxPériodiques aMoyen-OrientxPériodiques a956 3aFRbCCN0026-32064 uhttp://www.tandf.co.uk/journals/titles/00263206.asp zContenu : sommaires depuis le vol. 37, n°1, 2001 et alerte de sommaire par mail4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713673558db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9561 bvol. 1 no. 1 (oct-1964) -....cParisdMagasins/AnnexeeP 8° 22201 b(1964) -(2004)cParisdMagasins/AnnexeeP Index 0739 aZSAB aexempb200909 aGEO RG Afrique du Nord et Moyen-Orient aDEW 95601117nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000068001502100060002183000120002783260016003983360058004143370063004724400068005354520054006036060036006578010013006938560090007069550005007969920014008010000486589000048658920130319051631.0 a0000486589 a b19571972k fre 01 ba0 aeng aUS az aah z  adr 10aMidwest journal of political scienceb[Ressource électronique] aDetroit, Mich.cWayne State University Pressd1957-1972 aAccès au texte intégral (réservé aux sites de Sciences Po) à partir du vol. 1 de 1957 jusqu'au vol. 16 de 1972 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tAmerican journal of political science [Ressource électronique] 1tMidwest journal of political sciencex(0026-3397) aScience politiquexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00263397.html1 r aDEW 320.500873nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001300154210004400167326001600211530002900227607006200256856004400318856005300362856003700415955005900452972000900511991001700520992002200537992001200559040011984000006922920130319051632.01 a1168-0814 aFNSP320294 a0000069229 a19900101a19929999 ba0 afre aFR aaja 00aMigrance aPariscEd. Mémoire-Génériquesd1992- aTrimestriel 0aMigrancebEd. française aFrancexEmigration et immigrationxHistoirexPériodiques4 uhttp://www.generiques.org/migrance.html zContenu : sommaires depuis le n°1, 2e trim.19924 zAccès libre au texte intégral.1 bno. 1 (1992) -....cParisdMagasins/AnnexeeP 8° 5826 aZCAD aexemp$201112 aGEO RA4.06 France aDEW 32501272nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009500154210002400249326001500273530003200288606002800320606004400348607005200392676000800444710008200452856007100534856005500605955006700660955007100727957005200798972000900850991001800859992002100877992001200898039873935000005583220130430111926.01 a0995-7367 aFNSP261110 a0000055832 a19900101a19899999 ba0 afre aFR aaga 10aMigrations sociétéfCentre d'information et d'études sur les migrations internationales aPariscCIEMId1989- aBimestriel 0aMigrations sociétébParis aEtrangersxPériodiques aEmigration et immigrationxPériodiques aFrancexEmigration et immigrationxPériodiques a32502aCentre d'information et d'études sur les migrations internationalesc(Paris)4 uhttp://www.revues-plurielles.org/php/index.php?nav=revue&no=16&sr= zContient : sommaires des nos depuis le no. 1, 19891 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3251 bvol. 1 no. 1 (fév-1989) -....cParisdMagasins/AnnexeeP 8° 57901 b1989-1992cParisdMagasins/AnnexeeP Index 0693 aZPAY aexempb201112 aGEO RQ Universel aDEW 32501167nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008500154207001800239210005100257326001100308430004200319530002700361606003700388607004500425710003700470856009300507856010800600955006000708972000900768991001800777992002200795992001200817039899268000000691420130319051632.01 a1146-1225 aFNSP111253 a0000006914 a19900423a19899999 ba0 afre aFR aaka 10aMil neuf centerevue d'histoire intellectuellefSociété d'études soréliennes 1ano. 7 (1989)- aPariscSociété d'études soréliennesd1989- aAnnuel 1aCahiers Georges SorelxISSN 0755-828710aMil neuf centb(Paris) aVie intellectuellexPériodiques aFrancexVie intellectuellexPériodiques02aSociété d'études soréliennes4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-mil-neuf-cent.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 7 (1989) -....cParisdMagasins/AnnexeeP 8° 4714 aZPAY aexempb201104 aGEO RA4.06 France aDEW 00101445nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210004800180326001600228430007300244606004600317710003700363801002100400856012800421856010800549856010300657856010800760955008800868955007300956972000901029991001801038992002301056992001601079039980804000002840720131202111053.01 a0887-378X aFNSP177846 a0000028407 a19900101a19869999 ba0 aeng aUS aaha 14aThe Milbank quarterly aNew YorkcCambridge University Pressd1986- aTrimestriel 1aMilbank Memorial Fund quarterly, health and society,xISSN 0160-1997 aSanté publiqueyEtats-UnisxPériodiques02aMilbank Memorial Fund (New York) 3aFRbCCN0887-378X4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=MIQ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=100886 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 64 no. 1 (1986) -vol. 90 no. 4 (déc-2012)cParisdMagasins/AnnexeeP 8° 10991 bvol. 51 (1973) -vol. 65 (1987)cParisdMagasins/AnnexeeP Index 0647 aZPAY aexempb201101 aGEO RC2 Etats-Unis aDEW 360-36301164nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000048001502100061001983000120002593260016003793360058003953370063004534300077005164400062005934520034006556060037006898010013007268560090007399550005008299920016008340000470730000047073020130319051633.0 a0000470730 a b19411988k fre 01 ba0 aeng aUS az aah z  adr 10aMilitary affairsb[Ressource électronique] aWashington, D.C.cAmerican Military Instituted1941-1988 aAccès au texte intégral (réservé aux sites de Sciences Po) à partir du vol. 5 de 1941 jusqu'au vol. 52 de 1988 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tThe Journal of the American Military Institute [Ressource électronique] 1tThe Journal of military history [Ressource électronique] 1tMilitary affairsx(0026-3931) aHistoire militairexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00263931.html1 r aDEW 355-35901430nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210006500175215004200240326001100282606002800293606003800321676000800359710005100367801002100418856010900439856010800548856010300656856010800759955006000867955006500927972000900992991001801001992002101019992001601040039617653000002371420131018091756.01 a0459-7222 aFNSP163154 a0000023714 a19900101a19599999 ba0 aeng aGB aaku 10aMilitary balance aLondoncInternational Institute for Strategic Studiesd1959- acarte dépliante à partir de 1992/93 aAnnuel aArmementsxPériodiques aPolitique militairexPériodiques a35501aInstitut international d'études stratégiques 3aFRbCCN0459-72224 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t716100759db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://eJournals.ebsco.com/Journal2.asp?JournalID=111407 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1980/1981) -(2011)cParisdMagasins/AnnexeeP 8° 55421 b(1960/1961) -(1979/1980)cParisdMagasins/AnnexeeCOL8°3757 aZPAY aexempb201209 aGEO RQ Universel aDEW 355-35901080nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002000139210008300159326002200242326002300264430004700287452004100334530002000375607004500395801002100440856010800461955008300569957005700652991001800709992002300727992001600750038753111000005265420130705110622.01 a0026-4148 aFNSP252266 a19900101a19399999 ba0 aeng aUS aafu 10aMilitary review aFort Leavenworth, Kan.‎cUS Army Command and General Staff College‎d1939- aBimestrielb1994- aMensuelb1939-1994 1tCommand and General Staff School quarterly 1tMilitary review (Online),x1943-1147 aMilitary review aEtats-UnisxForces arméesxPériodiques 3aFRbCCN0026-41484 uhttp://usacac.army.mil/cac2/militaryreview/index.aspzAccès libre au texte intégral à partir de 20061 bvol. 44 no. 1 (1964) -vol. 76 no. 2 (1996)cParisdMagasins/AnnexeeP 8° 20441 b(1922) -(1965)cParisdMagasins/AnnexeeP Index 0106 aexempb201003 aGEO RC2 Etats-Unis aDEW 355-35901091nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001500154210004600169326001800215517003700233606005500270606003600325676000800361710005300369801002100422856004700443856007000490955008200560957007200642972000900714991001800723992001200741039394875000002879220130319051633.01 a0305-8298 aFNSP179312 a0000028792 a19900101a19719999 ba0 aeng aGB aaia 10aMillennium aLondoncLondon School of Economicsd1971- a3 n°s par an10aJournal of international studies aRelations internationalesxRecherchexPériodiques aScience politiquexPériodiques a32702aLondon School of Economics and Political Science 3aFRbCCN0305-82984 uhttp://www.lse.ac.uk/depts/intrel/millenn/ zContenu : thèmes des n° spéciaux depuis le vol. 25, n°3, 19961 bvol. 2 no. 2 (1973) -vol. 36 no. 3 (2008)cParisdMagasins/AnnexeeP 8° 35591 bvol. 1 (1972) -vol. 11 (1982)cParisdMagasins/AnnexeeP Index 0383 aZSAB aexempb200911 aDEW 32701327nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005400154210002700208326001600235430003500251530002000286606003600306710005800342801002100400856004500421856010700466856010300573856010800676955007000784957008400854972000900938991001800947992001200965038753308000002856220130319051633.01 a0026-4695 aFNSP178147 a0000028562 a19900101a19629999 ba0 aeng aGB aaha 10aMinervaea review of science, learning and policy aLondoncMinervad1962- aTrimestriel 1aScience and freedomx0582-1940 0aMinervabLondon aSciences socialesxPériodiques02aInternational Council on the Future of the University 3aFRbCCN0026-46954 uhttp://www.wkap.nl/jrnltoc.htm/0026-4695 zContenu : sommaires depuis le vol. 1, n°1, sept. 1962, recherche par auteur, titre ou texte intégral4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=102961 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (aut-1962) -....cParisdMagasins/AnnexeeP 8° 20241 bvol. 1 no. 1 (1962) -vol. 30 no. 4 (1992)cParisdMagasins/AnnexeeP Index 0700 aZPAY aexempb201105 aDEW 30001857cas0 2200361 450 00100100000000200110001000500170002101100140003803500140005203500170006603500170008303500150010010000410011510100080015610200070016410600060017111000160017720001470019320700710034021000540041121500180046530506260048343100400110960700630114967600080121280100300122080100300125080100230128080200070130383000070131085601330131795500450145003746471X000093675520130319051633.01 a1770-6297 a090054075 accn0116/1091 aissn17706297 a0000936755 a19830101b18181820u y1frey0103 ba0 afre aFR ar aacu uu 13aLa Minerve françaisefpar MM. Aignan,... Benjamin Constant, Évariste Dumoulin, Étienne, A. Jay, E. Jouy,... Lacretelle aîné... Tissot,... 1aT. 1, 1re livraison (févr. 1818)-t. 9, 113e livraison (mars 1820) aPariscBureau de la Minerve françaised1818-1820 a9 vol.d20 cm a"La société de gens de lettres qui rédigeait depuis un an le Mercure de France vient d'en perdre le privilège par des circonstances qu'il serait trop long d'expliquer. (...) Nous venons de former une nouvelle société qui publiera un ouvrage en quatre volumes, sous le titre de la Minerve française, et qui sera divisé en cinquante-deux livraisons. Il en paraîtra treize par trimestre mais à des époques indéterminées ; dépouillant ainsi toute les formes périodiques, nous pourrons, libre de toute censure, user du droit que la charte donne à tous les Français d'exprimer leurs opinions." (p. 3-4, vol. 1) 1tMercure de France (1799)x1770-6254 aFrancexPolitique et gouvernementz1814-1830xPériodiques a944 3aFRbAbesc20060110gAFNOR 3aFRbAbesc20060110gAFNOR 3aFRbISSNc20050901 a07 adm4 uhttp://gallica.bnf.fr/ark:/12148/cb328162247/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 b1818-1820cParisdMagasinseR12°009.46901118nas0 2200313 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102200014300109207001800252210002200270301003400292326001600326517003300342606003600375606004400411607002500455710008300480801003000563856004400593856007500637955005900712972000900771992001200780992001200792110020278000103131520130319051634.0 a0001031315 a20061016a20049999k frey0103 ca0 arus aRU10aMir peremenemeždunarodnyj naučno-obŝestvennyj žurnalfInstitut èkonomiki rossijskoj akademii naukgNacional'nyj investicionnyj sovet 0ano. 1 (2004)- aMoskvacNPd2004- aDemande de numérotation ISSN aTrimestriel14aThe world of transformations aSciences socialesxPériodiques aRelations internationalesxPériodiques aRussiexPériodiques02aInstitut meždunarodnyh èkonomičeskih i političeskih issledovanijc(Russie) 3aFRbAbesc20061016gAFNOR4 uhttp://www.imepi-eurasia.ru/eng/mir.php zSommaires et résumés accessibles gratuitement depuis le n°1 de 20041 bno. 1 (2004) -....cParisdMagasins/AnnexeeP 8° 6913 aZPAY aDEW 327 aDEW 30001335nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005100154210002600205326001200231517000900243606004400252606003600296606003700332606004300369606004200412606004500454606004400499607004900543607004700592676000800639710007000647801003000717856004100747955005300788972000900841992003900850992002000889992001600909038753634000110258920130319051634.01 a0026-5829 aFNSP175910 a0000027941 a19900101a19579999 ca0 arus aRU aafa 10aMirovaâ ekonomika i meždunarodnye otnoseniâ aMoskvacPravdad1957- aMensuel10aMEMO aRelations internationalesxPériodiques aScience politiquexPériodiques aEconomie politiquexPériodiques aEconomie politiqueyURSSxPériodiques aScience politiqueyURSSxPériodiques aEconomie politiqueyRussiexPériodiques aScience politiqueyRussiexPériodiques aRussiexRelations extérieuresxPériodiques aURSSxRelations extérieuresxPériodiques a32702aInstitut mirovoj èkonomiki i meždunarodnyh otnošenijc(Moscou) 3aFRbAbesc20070702gAFNOR4 uhttp://www.imemo.ru/ru/period/meimo/1 bno. 1 (1957)cParisdMagasins/AnnexeeP 8° 1709 aZPAY aGEO RA7.21 Russie (depuis 1991-92) aGEO RA7.01 URSS aDEW 320-32101530nas 2200421 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005100139210002600190326001200216517000900228606004400237606003600281606003700317606004300354606004200397606004500439606004400484607004900528607004700577676000800624710007000632801002100702856004100723955006700764955006700831955012600898972000901024992003901033992002001072992001601092038753634000002794120130313085935.01 a0026-5829 aFNSP175910 a19900101a19579999 ca0 arus aRU aafa 10aMirovaâ ekonomika i meždunarodnye otnoseniâ aMoskvacPravdad1957- aMensuel10aMEMO aRelations internationalesxPériodiques aScience politiquexPériodiques aEconomie politiquexPériodiques aEconomie politiqueyURSSxPériodiques aScience politiqueyURSSxPériodiques aEconomie politiqueyRussiexPériodiques aScience politiqueyRussiexPériodiques aRussiexRelations extérieuresxPériodiques aURSSxRelations extérieuresxPériodiques a32702aInstitut mirovoj èkonomiki i meždunarodnyh otnošenijc(Moscou) 3aFRbCCN0026-58294 uhttp://www.imemo.ru/ru/period/meimo/1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bno. 1 (1957) -no. 9 (1998)cParisdMagasins/AnnexeeP 8° 17091 bno. 11 (1999) -no. 12 (1999) ; no. 3 (2000) -....cParisdMagasins/AnnexeeP 4° 6912wManque : nos. 1, 2, 4, 6, 12, 2000 aZPAY aGEO RA7.21 Russie (depuis 1991-92) aGEO RA7.01 URSS aDEW 320-32101063nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003200163210006400195326001600259430003900275606003900314606005100353710007000404801001300474856003500487856006300522955007100585972000900656992002100665992002300686992001600709058777695000037978520130319051635.01 a1532-9194 a0000379785 a a20019999k fre ba0 aeng aUS a 0  ar aah z 0 10aMIT Sloan management review aCambridge, Mass.cSloan Management Review Associationd200- aTrimestriel 1tSloan management reviewx0019-848X aGestion d'entreprisexPériodiques aGestion d'entrepriseyEtats-UnisxPériodiques02aMassachusetts Institute of Technology. Sloan School of Management 0aFRbFNSP4 uhttp://web.mit.edu/smr-online/ zContient : résumés d'articles sélectionnés depuis 20011 bvol. 42 no. 2 (hiv-2001) -....cParisdMagasins/AnnexeeP 4° 4431 aZPAY aGEO RQ Universel aGEO RC2 Etats-Unis aDEW 650-65801299cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200007500180207007500255210003500330210003900365210005900404326001500463517003100478606002900509606003600538710004400574801003000618801002300648802000700671856006100678856006200739955007500801992002500876992001200901135817730000118879920130319051635.01 a0941-6382 aissn09416382 a0001188799 a20090806a19929999k y0frey0103 ba0 ager aDE ay  ar aaga xx 10aMittelweg 36eZeitschrift des Hamburger Instituts für Sozialforschung 0aApril/Mai 1992, 1-Dez. 1992/Jan. 1993, 5a2. Jg., 1 (Feb./März 1993)- aWiesbadencExtra Verlagd1992-0 aWiesbadencExtra Verlagd1992-19941 aHamburgcHamburger Ed. HIS Verlagsgesellschaft d1994- aBimestriel10aMittelweg sechsunddreissig aSociologiexPériodiques aSciences socialesxPériodiques02aHamburger Institut für Sozialforschung 3aFRbAbesc20090807gAFNOR 3aFRbISSNc20080601 a064 uhttp://www.his-online.de/zeitschrift/jahresregister.html zContenu : sommaires depuis le vol. 1 no. 1 (avr/mai-1992)1 bvol. 18 no. 1 (fev/mar-2009) -....cParisdMagasins/AnnexeeP 8° 7132 aGEO RA5.01 Allemagne aDEW 30101079nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000035001502100047001853000160002323260016003923360058004083370063004664300052005294520021005816060053006028010013006558560090006689550005007589920014007630000480104000048010420130319051635.0 a0000480104 a a19629999k fre 01 ba0 aeng aUS az aah z  adr 10aMLNb[Ressource électronique] aBaltimore, Md.cJohns Hopkins Pressd1962- aAccès au texte intégral (réservé aux sites de Sciences Po) à partir du vol.77 de 1962 jusqu'au vol.109 de 1994 ; sommaires à partir du vol. 110, 1995 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tModern language notes [Ressource électronique] 1tMLNx(0026-7910) aLittératurexHistoire et critiquexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00267910.html1 r aDEW 80-8901020nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001700154210008200171326002300253326002800276326002600304530003600330606003700366710005600403856006200459856007600521955007000597972000900667991001800676992001200694040358127000023184720131025105945.01 a1086-671X aFNSP823388 a0000231847 a19900101a19969999 ba0 aeng aUS aaha 10aMobilization aSan Diego, Calif.cSan Diego State University, Department of Sociologyd1996- aTrimestrielb2006- a3 n° par anb2002-2005 aSemestrielb1996-2001 0aMobilizationbSan Diego, Calif. aMouvements sociauxxPériodiques02aSan Diego State UniversitybDepartment of Sociology4 uhttp://www.mobilization.sdsu.edu/generalinfo/contact.html zContenu : sommaires et résumés depuis le vol. 1, no.2, septembre 19961 bvol. 1 no. 1 (mar-1996) -....cParisdMagasins/AnnexeeP 8° 6364 aZCAD aexempb201301 aDEW 30301359nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008600154210008400240326002800324326002100352430006500373517003900438530004400477606003000521606004100551607004600592710004400638801002100682830008800703856002700791856004300818955006500861992002200926992002100948992001600969039225445000000529920130319051635.01 a0026-9719 aFNSP107841 a0000005299 a19900312a19669999 ba0 afre aFR aa u 10aMOCIeMoniteur du commerce internationalfCentre français du commerce extérieur aPariscSociété d'édition, de documentation économique et commercialed1966- aHebdomadaireb1966-2006 aBimensuelb2007- 1aMOCI. Moniteur officiel du commerce internationalx0991-797710aMoniteur du commerce international00aMOCI Moniteur du commerce international aRisque paysxPériodiques aCommerce internationalxPériodiques aFrancexCommerce extérieurxPériodiques02aCentre français du commerce extérieur 3aFRbCCN0026-9719 a1902--1979 : collection donnée au CTL en 1998 et : 1980--1984 donné en avril 20024 uhttp://www.lemoci.com/ zContenu : sommaire du dernier numéro.1 bno. 641 (jan-1985) -....cParisdMagasins/AnnexeeP 4° 0144 aGEO RA4.06 France aGEO RQ Universel aDEW 380-38201097nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001400154210008700168326002700255326002800282530001800310607006800328607007000396712005100466856004500517856005300562955008300615972000900698991001800707992003200725992001400757036252263000004013020130319051635.0 a1120-7388 aFNSP216880 a0000040130 a19900101b19912001 ba0 aeng aIT aaia 10aMoct-Most aLondonaBolognaaDordrechtaBostoncKluwer Academic PublisherscNomismad1990-2001 aTrimestrielb1994-2001 a3 nos par anb1991-199310aMostbBologna aEurope de l'EstxPolitique économiquez1989-....xPériodiques aEurope de l'EstxConditions économiquesz1989-....xPériodiques02aNomisma. Società di studi economici (Bologna)4 uhttp://www.wkap.nl/jrnltoc.htm/1120-7388 zContenu : sommaires depuis le vol. 5, n°1, 19951 bVol. 2, no. 1 (1991) -vol. 11, no.4 (2001)cParisdMagasins/AnnexeeP 8° 5750 aZPAY aexempb201111 aGEO RA2.02 Europe orientale aDEW 338.901291nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210002700187326001600214517003500230607003500265607002500300676000800325710007000333856005700403856005900460856010100519856010800620955006600728955007100794972000900865991001800874992002500892992001200917040098931000009317720130319051636.01 a0267-761X aFNSP410874 a0000093177 a19900101a19849999 ba0 aeng aGB aaha 10aModern & contemporary France aHarlowcLongmand1984- aTrimestriel10aModern and contemporary France aFrancexHistoirexPériodiques aFrancexPériodiques a94002aAssociation for the Study of Modern and Contemporary Francec(GB)4 uhttp://www.tandf.co.uk/journals/carfax/09639489.html zContenu : sommaires depuis le vol. 5, n°1, fév. 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=104641 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 bn.s. vol. 1 no. 1 (1993) -....cParisdMagasins/AnnexeeP 8° 5942 aZSAB aexempb201210 aGEO RA4.06 France 01 aDEW 94401269nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210004900179326002200228326002700250607002300277801002100300856004200321856005400363856010100417856010800518856009000626856010800716955007000824972000900894992001600903992001200919038754002000002853420130319051636.01 a0026-749X aFNSP178089 a0000028534 a19900101a19679999 ba0 aeng aGB aaga 10aModern Asian studies aCambridgecCambridge University Pressd1967- aBimestrielb2007- aTrimestrielb1967-2006 aAsiexPériodiques 3aFRbCCN0026-749X4 uhttp://uk.cambridge.org/journals/ass/ zContenu : sommaires depuis le vol. 32, n°1, 19984 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=102045 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0026749x.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1967) -....cParisdMagasins/AnnexeeP 8° 2427 aZCAD aGEO RH Asie aDEW 95001256nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001700154207002500171210005300196326001600249607002400265676000800289801002100297856009000318856010800408856007000516856010800586955006600694955007000760972000900830992004500839992001200884992001000896038963132000002851920130319051636.01 a0097-7004 aFNSP178053 a0000028519 a19900101a19759999 ba0 aeng aUS aaha 10aModern China 1aVol. 1, no 1 (1975)- aBeverly Hills [Calif.]cSage Publicationsd1975- aTrimestriel aChinexPériodiques a950 3aFRbCCN0097-70044 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00977004.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://mcx.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9501 bvol. 1 no. 1 (jan-1975) -....cParisdMagasins/AnnexeeP 8° 3595 aZSAB aGEO RI3.03 Chine (République populaire) aDEW 951 aexemp01434nas 2200361 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000170015421000280017132600220019932600280022132600260024960700350027571000460031085600570035685600570041385601030047085601080057385601090068185601080079095501130089897200090101199100180102099200220103899200120106006164899X000026953920130319051636.01 a1353-2944 aFNSP932583 a0000269539 a19990402a19959999 ba0 aeng aGB aaha 10aModern Italy aAbingdoncCarfaxd1995- aTrimestriel$2008- a3 n°s par an$2006-2007 aSemestrielb1998-2005 aItaliexHistoirexPériodiques02aAssociation for the Study of Modern Italy4 uhttp://www.tandf.co.uk/journals/carfax/13532944.html zContenu : sommaires depuis le vol. 3, n°1, mai 19984 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=104642 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713437858db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 2 no. 1/2 (1997) -vol. 3, no 2 (1998) ; vol.5, no 1 (2000) -....;cParisdMagasins/MagasinseP 8° 6470 aZPAY aexempb201212 aGEO RA6.03 Italie aDEW 94500954nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210005700173326001700230606002800247606002400275801002100299856010100320856010800421955008900529972000900618992002100627992001600648039338614000002853020130319051636.01 a0276-1114 aFNSP178081 a0000028530 a19900101a19819999 ba0 aeng aUS aaia 10aModern Judaism aBaltimore, MdcJohns Hopkins University Pressd1981- a3 nos par an aJudaïsmexPériodiques aJuifsxPériodiques 3aFRbCCN0276-11144 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101048 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mai-1981) -vol. 27 no 3 (oct-2007)cParisdMagasins/AnnexeeP 8° 4564 aZCAD aGEO RQ Universel aDEW 305-30601102nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000053001502100051002033000120002543260014003743360058003883370063004464400034005094520039005436060053005826060031006358010013006668560090006799550005007699920014007740000478701000047870120130319051636.0 a0000478701 a b18861961k fre 01 ba0 aeng aUS az aae z  adr 10aModern language notesb[Ressource électronique] aBaltimore, Md.cJohns Hopkins Pressd1886-1961 aAccès au texte intégral (réservé aux sites de Sciences Po) à partir du vol. 1 de 1886 jusqu'au vol. 76 de 1961 aBimensuel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tMLN [Ressource électronique] 1tModern language notesx(0149-6611) aLittératurexHistoire et critiquexPériodiques aLinguistiquexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01496611.html1 r aDEW 80-8901493nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210003900176326001500215606002400230606004100254801002100295856007100316856007300387856010100460856010800561856009000669856010800759955009000867957010400957972000901061991001801070992003101088992001201119038754142000002850320130319051636.01 a0026-7961 aFNSP178024 a0000028503 a19900101a19379999 ba0 aeng aUS aaga 10aModern law review aCambridge, Mass.cBlackwelld1937- aBimestriel aDroitxPériodiques aDroityGrande-BretagnexPériodiques 3aFRbCCN0026-79614 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0026-7961 zContenu : sommaires et résumés depuis le vol. 59, n°4, juil. 19964 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101099 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00267961.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 9 no. 1 (avr-1946) -vol. 72 no. 6 (nov-2009)cParisdMagasins/AnnexeeP 8° 02931 bvol. 1 (1938) -vol. 33 (1970) ; vol. 1 (1938) -vol. 50 (1987)cParisdMagasins/AnnexeeP Index 0184 aZPAY aexempb201101 aGEO RA4.02 Grande-Bretagne aDEW 34901115nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007400154210002200228326001200250421004800262430008900310607005200399710006200451830008200513856004800595856005800643955005300701972000900754992002400763992001400787038764636000003626520130319051637.01 a0029-9898 aFNSP205405 a0000036265 a19900101a19389999 ba0 ager aAT aafa 10aMonatsberichte - Österreichisches Institut für Wirtschaftsforschung aWiencWIFOd1938- aMensuel 1aStatistische Überichten < P 4° 2364 bis > 1tMonatsberichte des Österreichischen Institutes für Konjunkturforschung,x1607-1417 aAutrichexConditions économiquesxPériodiques02aWiener Institut für Internationale Wirtschaftsvergleiche a1932-1937 ; 1947-1953 : (P 4° 0435) et 1967 --1984 collection donnée au CTL4 uhttp://www.wifo.ac.at/publ/monate_text.html zContenu : sommaires et résumés depuis le n°1, 19961 b(1985) -....cParisdMagasins/AnnexeeP 4° 2364 aZGRA aGEO RA5.13 Autriche aDEW 330.901311nas 2200349 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000013001552100027001683260014001955300027002095400024002366060029002606070025002898560027003148560104003418560108004459550097005539550067006509550060007179550089007779570061008669920022009279920012009490000011063000001106320130319051637.01 a0395-2037 aFNSP122207 a0000011063 a19900724a19449999 ba0 afre aFR aaaa 13aLe Monde aPariscLe Monded1944- aQuotidien03aLe Monde (Paris, 1944)13aLe Monde. Quotidien aActualitéxPériodiques aFrancexPériodiques4 uhttp://www.lemonde.fr/4 uhttps://acces-distant.sciences-po.fr/fork?http://www.bpe.europresse.com/WebPages/Search/Result.aspx zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bEd sur microfilm : (19 déc-1944)-(31 janv-2005)cParisdSalle des microformeseP Mic 35 (1)1 bLe dernier moiscParisd27, Salle Rez-de-chausséeeP F° 10991 b(19 dec-1944) -....cParisdMagasins/AnnexeeP F° 10991 zPas de photocopies possibles dans les volumes reliés (voir l'édition en microfilm)1 rPour l'index annuel voir : Le Monde. IndexeP Index 0446 aGEO RA4.06 France aDEW 05001019nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002900163207004300192210003100235300006700266326001200333430007400345530003500419606003600454801001300490856003100503856005500534955007900589972000900668992001600677048761397000027850720130319051637.01 a1297-2185 a0000278507 a b19992008k fre ba0 afre aFR a 0  ar aaf z 0 13aLe Monde de l'éducation 1ano. 273 (sep-1999) -no. 375 (dec-2008) aPariscLe Monded1999-2008 aA partir de janvier 2009, devient supplément gratuit du Monde aMensuel 1tLe Monde de l'éducation, de la culture et de la formationx1281-151303aLe Monde de l'éducationb1999 aEducationyFrancexPériodiques 0aFRbFNSP4 uhttp://www.lemonde.fr/mde/ zContenu : sommaires des numéros depuis janv. 20031 bno. 273 (sep-1999) -no. 375 (dec-2008)cParisdMagasins/AnnexeeP 4° 3572 aZPAY aDEW 370-37901469nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002600139210004000165326001200205606004400217801002100261856003700282856015000319856010800469856010400577856010800681955006900789955007200858955011800930957007401048972000901122992001201131039225321000000495120131029112811.01 a0026-9395 aFNSP107076 a19900101a19549999 ba0 afre aFR aafu 13aLe Monde diplomatique aPariscLe Monde diplomatiqued1954- aMensuel aRelations internationalesxPériodiques 3aFRbCCN0026-939540uhttp://www.monde-diplomatique.fr zhttps://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/magazine-le-monde-diplomatique.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bL'année en courscParisd27, Salle Rez-de-chausséeeP F° 12091 bvol. 5 no. 166 (jan-1968) -....cParisdMagasins/AnnexeeP F° 12091 bAutre collection sur microfilm : no. 1 (mai-1954) -no. 609 (dec-2004)cParisdSalle de référenceeP Mic 35 (12)1 b(1954) -(1983) ; (1982) -(1992)cParisdMagasins/AnnexeeP Index 0619 aZPAY aDEW 32701013nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210004000198326001500238422002600253517002100279606004400300676000800344856009800352856010800450955007300558955005900631972000900690992001200699001226460000011174020130319051637.01 a0987-8610 aFNSP471772 a0000111740 a19900101a19879999 ba0 afre aFR aaga 13aLe Monde diplomatique. Manière de voir aPariscLe Monde diplomatiqued1987- aBimestriel 1aLe Monde diplomatique10aManière de voir aRelations internationalesxPériodiques a0014 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/magazine-maniere-de-voir.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle Rez-de-chausséeeDEW 0011 bno. 1 (1988) -....cParisdMagasins/AnnexeeP 4° 6312 aZCAD aDEW 32700987nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000030001552070043001852100042002283260014002704300073002844400062003575300043004196060045004628560039005078560048005469550070005949720009006649920012006730000052877000005287720130510112633.01 a0997-7139 aFNSP252727 a0000052877 a19900101b19882001 ba0 afre aFR aaea 13aLe Monde du renseignement 1ano. 106 (oct-1988)-no.411 (août-2001) aPariscIndigo publicationsd1988-2001 aBimensuel 1aMonde du renseignement, Parapolitique, Edition complète,x0765-9776 1tIntelligence Online (Ed. française. Imprimé),x630-658913aLe Monde du renseignement‎bImprimé aServices de renseignementsxPériodiques4 uhttp://www.indigo-net.com/lmr.html zContenu : sommaires depuis le no. 185, 19921 bno. 106 (1988)-no. 411 (2001)cParisdMagasins/AnnexeeP 4° 4694 aZCAD aDEW 32701186nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002900139210004700168326001600215452005200231530004200283606003500325607004900360801002100409856020800430955006800638955008300706972000900789991001800798992004200816992001400858039521656000000495520140107141128.01 a0302-3052 aFNSP107080 a19900101a19729999 ba0 amul aBE aahu 10aMondes en développement aBruxellescMondes en développementd1972- aTrimestriel 1tMondes en développement (Online)‎x1782-144410aMondes en développement‎bImprimé aAide économiquexPériodiques aPays en voie de développementxPériodiques 3aFRbCCN0302-30524 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-mondes-en-developpement.htm?zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 18 no. 69 (1990) -....cParisdMagasins/AnnexeeP 4° 61001 bvol. 1 no. 1 (1972) -vol. 17 no. 68 (1989)cParisdMagasins/AnnexeeP 8° 3273 aZPAY aexempb200905 aGEO RO Pays en voie de développement aDEW 338.901324nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005200154210004300206300006300249326001700312421010000329421007800429430005700507517005200564606005000616606004200666801002100708830004400729856003800773856004300811955008700854992002200941992001100963013382101000003632720130319051639.01 a0026-9700 aFNSP205632 a0000036327 a19900101a19039999 ba0 afre aFR aa a 13aLe Moniteur des travaux publics et du bâtiment aPariscPublications du Moniteurd1903- ales numéros spéciaux sont conservés avec le périodique aHebdomadaire 1aLe Moniteur des travaux publics et du bâtiment. Supplément magazinex0242-1615 < P 4° 4337 > 1tLe Moniteur des travaux publics et du bâtiment. Environnementx1290-2527 1tL'Entreprise et l'industrie (Paris. 1901)x1250-105013aLe Moniteur du bâtiment et des travaux publics aConstructionxIndustrieyFrancexPériodiques aTravaux publicsyFrancexPériodiques 3aFRbCCN0026-9700 aCollection donnée au CTL jusqu'en 20034 uhttp://www.lemoniteur-expert.com/ zcontenu : sommaire du dernier numéro.1 bConservation limitée aux 2 dernières annéescParisdMagasins/AnnexeeP 4° 2180 aGEO RA4.06 France aDEW 7101193nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006900154207003200223210003900255225004700294326001100341517005100352606004700403606003400450710005500484856005000539856003600589955005500625955005500680955005600735991001800791992002200809992001200831039373169000000495820130319051639.0 a0242-5866 aFNSP107084 a0000004958 a19900305b19701998 ba0 afre aFR aaka 13aLa Monnaie en ...fBanque de FrancegConseil national du crédit 1ano. 1 (1970) -no. 29 (1998) aPariscBanque de Franced1970-199821aCollection statistiques / Banque de France aAnnuel13aLa Monnaie et les systèmes de paiement en ... aPolitique monétaireyFrancexPériodiques aMonnaieyFrancexPériodiques aBanque de FrancebDirection générale des études4 uhttp://www.banque-france.fr/fr/publi/main.htm zAccès libre au texte intégral1 b(1990) -(1997)cParisdMagasins/AnnexeeP 4° 62891 b(1980) -(1989)cParisdMagasins/AnnexeeP 8° 53991 b(1970) -(1979)cParisdMagasins/AnnexeeCOL12°0239 aexempb201109 aGEO RA4.06 France aDEW 33201350nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200010300139210003500242326001200277421005900289430007600348517008200424517005300506530005200559606004300611606004500654606004400699710004300743801002100786856009300807955008700900972000900987992001600996038811510000005979120140106144204.01 a0041-7432 aFNSP274790 a19900101a19479999 f ba0 amul aUS aafa 10aMonthly bulletin of statistics/fUnited Nationsd= Bulletin mensuel de statistiquesfNations unies aNew YorkcNations Uniesd1947- aMensuel 1aStatistical yearbook - United Nations,xISSN 0082-8459 1aBulletin mensuel de statistique - Société des NationsxISSN 1014-845010aStatistical papers - United Nations. Series Q. Monthly bulletin of statistics10aBulletin mensuel de statistiques - Nations Unies00aMonthly bulletin of statistics - United Nations aPopulationxStatistiquesxPériodiques aStatistiques industriellesxPériodiques aStatistiques commercialesxPériodiques02aNations UniesbDivision de statistique 3aFRbCCN0041-74324 uhttp://unstats.un.org/unsd/mbs/app/DataSearchTable.aspxzAccès libre au texte intégral1 bConservation limitée aux 5 dernières annéescParisdMagasins/AnnexeeP 4° 0041 aZECH aDEW 310-31901017nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000026001552100031001813260012002124360046002244360131002706060056004016060052004578300032005098560028005418560036005699550054006059720009006599920023006689920012006910000052878000005287820130319051639.01 a0095-7356 aFNSP252728 a0000052878 a19900101a19749999 ba0 aeng aUS aafa 10aMonthly energy review aWashington, DCcEIAd1974- aMensuel 1aPIMS monthly petroleum report (0099-0914) 1tQuarterly report, energy information report to Congress required by Public Law 93-319, amende by Public Law 94-163 (0148-494X) aIndustries énergétiquesyEtats-UnisxPériodiques aEnergiexConsommationyEtats-UnisxPériodiques a1996-2006 : donné au CTLes4 uhttp://eia.doe.gov/mer/ zAccès libre au texte intégral1 b(1985)-(1995)cParisdMagasins/AnnexeeP 4° 4744 aZPAY aGEO RC2 Etats-Unis aDEW 33301246nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210003500179326001200214430007800226452005000304517000800354530002500362606005000387712004300437801002100480856007900501856020600580955007800786972000900864992002300873992001200896038963620000003627220140116150244.01 a0098-1818 aFNSP205517 a0000036272 a19900101a19189999 ba0 aeng aUS aafa 10aMonthly labor review aWashington, D.C.cUSGPOd1918- aMensuel 1tMonthly review of the U.S. Bureau of Labor Statistics (Print),x2329-1354 1tMonthly labor review (Online), ISSN 1937-465810aMLR aMonthly labor review aEconomie du travailyEtats-UnisxPériodiques02aEtats-UnisbBureau of Labor Statistics 3aFRbCCN0098-18184 uhttp://stats.bls.gov/opub/mlr/mlrhome.htmzAccès libre au texte intégral4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=110459zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1947)-vol. 128 no. 5 (2005)cParisdMagasins/Annexe$ P 4° 0013wLacunes aZPAY aGEO RC2 Etats-Unis aDEW 33100868nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210004700173326001200220530003500232606002700267606004400294856003300338856010000371955006800471972000900539991001800548992001200566038755130000002924920130319051639.01 a0027-0520 aFNSP180938 a0000029249 a19910409a19499999 ba0 aeng aUS aafa 10aMonthly review aNew YorkcMonthly Review Foundationd1949- aMensuel 0aMonthly reviewbNew York. 1949 aMarxismexPériodiques aRelations internationalesxPériodiques4 uhttp://www.monthlyreview.org zContenu : sommaires depuis le vol. 47, n°4, sept. 1995 ; texte intégral à partir de mai 19981 bvol. 8 no. 3/4 (1956) -....cParisdMagasins/AnnexeeP 8° 1663 aZCAD aexempb201201 aDEW 90901053nls 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000077001502070018002272100036002453000074002813260015003553360056003703370017004266060049004436070050004927100033005428010013005758560031005888560053006199550005006729920016006779920022006930000796015000079601520130319051639.0 a0000796015 a a19999999k fre 01 ba0 aeng aGR az aag z  adr 10aMonthly statistical bulletin - Bank of Greeceb[Ressource électronique] 1a(March 1999)- aaAthenscBank of Greeced1999- aTexte intégral en version grecque et anglaise depuis mars/avril 1999 abimestriel aDonnées textuelles accessibles uniquement en ligne aFichiers PDF aFinancesyGrècexStatistiquesxPériodiques aGrècexConditions économiquesxPériodiques02aBank of GreecexPériodiques 0aFRbFNSP4 uhttp://www.bankofgreece.gr zContenu : texte intégral depuis mars/avril 19991 r aDEW 310-319 aGEO RA6.05 Grèce01105nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200001600160210003900176326001700215453004200232606002900274607002600303607002300329607002500352856003000377856006800407955009400475955005900569992005600628992003900684992002000723992001200743038755300000003064520130319051640.01 a0027-1306 aFNSP185505 a0000030645 a19910424a19309999 ba0 aeng aRU ar ac a 10aMoscow news aMoscowcMoskovskiye novostid1930- aHebdomadaire 1tMoskovskie novosti (Print)x0256-551X aActualitéxPériodiques aEx-URSSxPériodiques aURSSxPériodiques aRussiexPériodiques4 uhttp://www.moscownews.ru/ zContenu : sommaires et articles en texte intégral depuis 2002.1 bLes six derniers mois de l'année en courscParisd27, Salle Rez-de-chausséeeP F° 01331 bno. 6 (1991) -....cParisdMagasins/AnnexeeP F° 0133 aGEO RA7.02 Etats successeurs de l'Union soviétique aGEO RA7.21 Russie (depuis 1991-92) aGEO RA7.01 URSS aDEW 05001614nas 2200409 i 450 001001000000002001100010005001700021011001400038035001300052035001500065100004100080101000800121102000700129110001600136200003600152210003100188300005900219326002500278326002700303430006800330517004900398530002200447606003600469676000800505801002100513856004800534856011300582856008400695856010800779955006700887955006300954955006901017957008901086972000901175992001101184992000901195001016741000000206120131219165514.01 a0243-6450 aFNSP7815 a0000002061 a19900101a19809999 ba0 afre aFR aaiu 10aMotseles langages du politique aLyoncENS éditionsd1980- ade 1980 à 1999 édité par les Presses de Sciences-po a3 n°s par anb2000- aTrimestrielb1980-1999 1aTravaux de lexicométrie et de lexicologie politiquex0294-796X10aMOTS. Mots, ordinateurs, textes, sociétés.00aMotsbParis. 1980 aLangage politiquexPériodiques a320 3aFRbCCN0243-64504 uhttp://www.persee.fr/listIssues.do?key=mots zAccès libre au texte intégral des articles à partir de 1980 à l'exception des années les plus récentes4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-mots.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 1 (sep-1980) -....cParisdMagasins/AnnexeeP 8° 43251 bL'année en courscParisdBibliothèque de rechercheeP 8° 43251 bno. 1 (sep-1980) -no. 30 (mar-1992)cParisdBibliothèque de rechercheeP index 0689 aZPAY aDEW 41 aPBUL01540nas 2200397 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000210015421000330017532600160020843000470022460600390027160600450031060700460035567600080040180100210040985600990043085601080052985600900063785601080072795500660083595500680090195700960096997200090106599100180107499200220109299200160111499200120113003922547X000000536020130319051641.01 a0027-2671 aFNSP108021 a0000005360 a19900313a19609999 ba0 afre aFR aahu 10aMouvement social aPariscEd. ouvrièresd1960- aTrimestriel 1aL'Actualité de l'histoirexISSN 0398-8120 aSyndicalismeyFrancexPériodiques aMouvements sociauxyFrancexPériodiques aFrancexConditions socialesxPériodiques a300 3aFRbCCN0027-26714 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-le-mouvement-social.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00272671.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3001 bno. 33/34 (1960/1961) -....cParisdMagasins/AnnexeeP 8° 12331 b(1961/1971) ; (1971/1974) ; (1975/1980) ; (1981/1999)cParisdMagasins/AnnexeeP Index 0208 aZCAD aexempb201001 aGEO RA4.06 France aDEW 360-363 aDEW 30301092nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200008200163210002900245326009100274530003700365606003700402606003700439801001300476856014500489955008600634991003300720992001200753992002500765038538814000052274020130319051641.01 a1147-6893 a0000522740 a b18991914k fre ba0 afre aFR a 0  ar aa z 0 13aLe Mouvement socialisteerevue de critique sociale, littéraire et artistique aParisc[s.n.]d1899-1914 adifférentes périodicités : bimensuel ou hebdomadaire puis mensuel à partir de 190403aLe Mouvement socialisteb(Paris) aVie intellectuellexPériodiques aSocialismeyFrancexPériodiques 0aFRbFNSP4 uhttp://gallica.bnf.fr/ark:/12148/cb34425483v/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1899-1909)1 bvol. 1 no. (janv-1899) -no. 263/264(mai-1914)cParisdMagasins/AnnexeeP 8° 0800 anumer0 (complément gallica) aDEW 001 aGEO RA4.06 France 0101190nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001500154210004800169210003400217320005800251326001600309430005100325517004000376530002800416606005300444676000800497856009000505856010800595955006700703955005900770972000900829992001400838045076529000025932920140103114716.01 a1291-6412 aFNSP902571 a0000259329 a19981109a19989999 ba0 afre aFR aaga 00aMouvements aIssy-les-MoulineauxcElsevier-Massond2008- aPariscDécouverted1998-2007 aChaque n° contient le sommaire des n°s précédents aTrimestriel 1aM Mensuel, marxisme, mouvementxISSN 0769-493810aMouvements des idées et des luttes10aMouvementsbParis. 1998 aGauche (science politique)yFrancexPériodiques a3204 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-mouvements.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 1 (1998) -....cParisdMagasins/AnnexeeP 4° 5120 aZCAD aDEW 320.500970nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200001400138207002800152210003000180326001500210421003500225530003600260606003700296607004500333801002100378856004500399856007600444955006300520972000900583991001800592992002200610992001200632038756137000002924220140108102326.01 a0027-3120 aFNSP180913 a0000029242 a19900101a19529999 ba0 aita aIT03aIl Mulino 1aVol. 1 no. 1(nov-1951)- aBolognacIl Mulinod1951- aBimestriel 1aMulino. EuropaxISSN 1126-9561 0aMulinobBologna. Testo stampato aVie intellectuellexPériodiques aItaliexVie intellectuellexPériodiques 3aFRbCCN0021/76034 uhttp://www.mulino.it/ilmulino/index.html zContenu : sommaires depuis le no. 1, 2001 et index historique 1951-20001 bno. 6 (avr-1952) -....cParisdMagasins/AnnexeeP 8° 1404 aZSAB aexempb201102 aGEO RA6.03 Italie aDEW 00100947nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200001500163210004600178326001600224530002300240606004400263676000800307710002300315801001300338856009000351856010800441955006300549972000900612992001200621054530660000032092320140109152225.01 a0292-0107 a0000320923 a a20009999k fre ba0 afre aFR a 0  ar aai z 0 10aMultitudes aaPariscÉd. ExilscÉd. Amsterdamd2000- aTrimestriel10a@MultitudesbParis02aIdées politiquesyFrancexPériodiques a00102aMultitudescFrance 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-multitudes.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (mar-2000) -....cParisdMagasins/AnnexeeP 8° 6527 aZPAY aDEW 00101192cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200001800197210003400215326001200249436003900261436003900300446004100339446005600380530002600436606004400462712003200506801003000538801002300568802000700591856014500598955005500743991002000798038591553000111286020130319051642.0 a1154-0060 accn1154-0060 aissn11540060 a0001112860 a19911211b18991901uuuy1frey0103 ba0 afre aFR ay  ar aafu uu 10aMusée social aPariscA. Rousseaud1899-1901 aMensuel 1tMusée social. Série Ax1154-0044 1tMusée social. Série Bx1154-0052 1tLe Musée social. Annalesx1154-0079 1tLe Musée social. Mémoires et documentsx1154-008710aMusée socialb(1899) aSciences socialesxPériodiques2rameau02aMusée socialc(Paris)4340 3aFRbAbesc20051124gAFNOR 3aFRbISSNc20030523 a074 uhttp://gallica.bnf.fr/ark:/12148/cb344379848/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1899-1901)1 b(1899) -(1901)cParisdMagasins/AnnexeeP 4° 0631 aPériobTP02 P401066cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200003000179210003400209326001200243431003600255447005600291447003900347530003000386712003200416801003000448801002300478802000700501856014500508955005500653991002000708038591561000109343420130319051642.0 a1154-0079 accn1154-0079 aissn11540079 a0001093434 a19911211b19021914uuuy1frey0103 ba0 afre aFR ar aafu uu 13aLe Musée socialiAnnales aPariscA. Rousseaud1902-1914 aMensuel |tMusée social (1899)x1154-0060 1tLe Musée social. Mémoires et documentsx1154-0087 1tLe Musée social (1922)x1154-009513aLe Musée social. Annales02aMusée socialc(Paris)4340 3aFRbAbesc20051124gAFNOR 3aFRbISSNc20030523 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34438058g/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1902-1914)1 b(1902) -(1914)cParisdMagasins/AnnexeeP 8° 0696 aPériobTP02 P801178cas0 2200349 450 00100100000000200110001000500170002101100140003803500170005203500170006903500150008610000410010110100080014210200070015010600060015711000160016320000450017920700470022421000340027143100360030544700410034144700390038253000450042160600440046671000320051080100300054280100230057280200070059585601450060295500610074799100200080803859157X000109343520130319051642.0 a1154-0087 accn1154-0087 aissn11540087 a0001093435 a19911211b19021921uuuy0frey0103 ba0 afre aFR ar aafu uu 13aLe Musée socialiMémoires et documents 0a1902, n°1 (janv.)-1921, n°9 (nov./déc.) aPariscA. Rousseaud1902-1921 |tMusée social (1899)x1154-0060 1tLe Musée social. Annalesx1154-0079 1tLe Musée social (1922)x1154-009513aLe Musée social. Mémoires et documents aSciences socialesxPériodiques2rameau02aMusée socialc(Paris)4070 3aFRbAbesc20060628gAFNOR 3aFRbISSNc20030523 a074 uhttp://gallica.bnf.fr/ark:/12148/cb344380601/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1904-1921)1 b(1918) -(1921)w1918cParisdMagasins/AnnexeeP 8° 0697 aPériobTP02 P801181nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210003100187326001800218430006300236440004300299530003900342607005800381607005800439607003500497712004500532801002100577856002600598856005300624955009100677992002800768992002300796992001200819036928151000004888820130319051644.0 a0149-1598 aFNSP243891 a0000048888 a19900101b19771990 ba0 aeng aUS aazb 10aNACLA report on the Americas aNew YorkcNACLAd1977-1990 a5 n°s par an 1aN.A.C.L.A.'s Latin America & empire reportxISSN 0095-5930 1aReport on the AmericasxISSN 1058-539700aNACLA report on the Americasb1977 aEtats-UnisxRelationsyAmérique latinexPériodiques aAmérique latinexRelationsyEtats-UnisxPériodiques aAmérique latinexPériodiques02aNorth American Congress on Latin America 3aFRbCCN0149-15984 uhttp://www.nacla.org/ zContenu : sommaires depuis le vol. 1, n°1, 19671 bvol. 11 no. 6 (jul-1977) -vol. 24 no. 3 (nov-1990)cParisdMagasins/AnnexeeP 4° 3725 aGEO RD Amérique latine aGEO RC2 Etats-Unis aDEW 98001421nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154207003200187210002700219326002300246326002600269430004300295530003900338607005800377607003500435607005800470676000800528710004500536856002600581856021900607955006600826955007100892972000900963992002300972992002800995992001201023040311511000015444420130319051644.01 a1071-4839 aFNSP602356 a0000154444 a19900101a19932006 ba0 aeng aUS aaga 10aNACLA report on the Americas 1aaVol. 26, no. 5 (May 1993)- aNew YorkcNACLAd1993- aTrimestriel$d2012- aBimestriel$d1993-2011 1aReport on the AmericasxISSN 1058-539700aNACLA report on the Americasb1993 aEtats-UnisxRelationsyAmérique latinexPériodiques aAmérique latinexPériodiques aAmérique latinexRelationsyEtats-UnisxPériodiques a98002aNorth American Congress on Latin America4 uhttp://www.nacla.org/ zContenu : sommaires depuis le vol. 1, n°1, 1967 ; texte intégral de l'introduction du rapport ainsi que d'une sélection d'articles (pour les autres articles, extraits disponibles) depuis le vol. 25, n° 1, 1991.1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9801 bvol. 26 no. 5 (mai-1993) -....cParisdMagasins/AnnexeeP 4° 3725 aZCAD aGEO RC2 Etats-Unis aGEO RD Amérique latine aDEW 98001381cas0 2200325 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200006600148210002000214215003000234300009000264430001800354530002800372606005900400607006300459676000800522801003000530801003000560856028100590856015200871945001501023991001701038038389061000098736920130319051644.0 accn7114/9651 a0000987369 a19891128b18161816 0frey0103 zz0 afre aBE ar aau 13aLe Nain jaune réfugiéfpar une société d'anti-éteignoirs aBruxellesd1816 a1 vol. (544-24 p.)d20 cm aPar L. A. F. Cauchois-Lemaire, A. V. Arnault, Isid. Guyet et autres, d'après Barbier 1tLe Nain jaune03aLe Nain jaune réfugié aFrançaisyBelgiqueyBruxelles (Belgique)z19e siècle aFrancexPolitique et gouvernementz1814-1830xPériodiques a944 3aFRbAbesc20060615gAFNOR 3aFRbAbesc20060615gAFNOR4 uhttp://books.google.fr/books?id=WxsXAAAAYAAJ&printsec=frontcover&dq=editions:bwZ24UJaQvYC&hl=fr&ei=k-64Ts_fFJPY8QPL9IHFBw&sa=X&oi=book_result&ct=book-thumbnail&resnum=2&ved=0CDQQ6wEwAQ#v=onepage&q&f=falsezAccès libre au texte intégral. Volume 3 numérisé sur Google Livres4 uhttp://www.archive.org/stream/lenainjaunerfug00caucgoog#page/n6/mode/2upzAccès libre au texte intégral. Volume 4 numérisé sur Internet Archive bR8*023.887 aSAFIGbTA09900878nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000015001552100041001703260017002115300034002286060029002626070029002918010021003208560030003418560074003719550108004459920023005539920012005760000029046000002904620130506145542.01 a0027-8378 aFNSP180449 a0000029046 a19900101a18659999 ba0 aeng aUS aa a 14aThe Nation aNew York‎cJ.H. Richards‎d1865- aHebdomadaire14aThe Nation‎bNew York, N.Y. aActualitéxPériodiques aEtats-UnisxPériodiques 3aFRbCCN0027-83784 uhttp://www.thenation.com/ zContenu : sommaires et articles en texte intégral depuis janv. 1999.1 bvol. 29 no. 705 (jan-1879) -....cParisdMagasins/AnnexeeP 4 °0139wManque : (jul-1940) à (dec-1944) aGEO RC2 Etats-Unis aDEW 05001640cas0 2200421 450 00100100000000200110001000500170002101100140003803500170005203500170006903500150008610000410010110100080014210200070015010500180015710600060017511000160018120000820019720700890027921000300036832600140039853000230041253100190043560600520045460700470050670000360055370200370058980100300062680100230065680200070067985601200068685601200080685601200092695500550104695500550110199100200115699100420117603863452X000110938120130319051645.0 a1160-5383 accn1160-5383 aissn11605383 a0001109381 a19980721b19151919k 1frey0103 ba0 afre aFR ay  ar aaea 13aLa nation tchèqueerevue bi-mensuellefDir. Ernest Denis [puis] Edouard Bene 1a1ère Année, N.1 (1915, 1er Mai) - 4e Année, N.23/24 (1919, 15 Juillet / 15 Août) aParisc[s. n.]d1915-1919 aBimensuel03aLa Nation tchèque 0aNation tchèq. aEmigration et immigrationxPériodiques2rameau aTchèquesz1900-1945xPériodiques2rameau 1aDenisbErnestf(1849-1921)4651 1aBenešbEdvardf(1884-1948)4651 3aFRbAbesc20061024gAFNOR 3aFRbISSNc20051021 a074 uhttp://archive.org/details/lanationtchque01beneuoftzAccès libre au texte intégral. Volume 1 sur Internet Archive4 uhttp://archive.org/details/lanationtchque03beneuoftzAccès libre au texte intégral. Volume 3 sur Internet Archive4 uhttp://archive.org/details/lanationtchque04beneuoftzAccès libre au texte intégral. Volume 4 sur Internet Archive1 b(1915) -(1917)cParisdMagasins/AnnexeeP 4° 05921 b(1917) -(1919)cParisdMagasins/AnnexeeP 8° 0711 aPériobTP01 P4 anumer0 (complément internet archive)01668cas0 2200421 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101001300139102000700152105001800159106000600177110001600183200012500199207001000324210002300334300005500357326001100412423006800423430009700491510006300588510008000651606005800731710006700789801003000856801002300886802000700909856008800916856010801004955005501112992005101167992001201218992001601230100511198000111384420130319051645.0 a1992-8742 a112270247 aissn19928742 a0001113844 a20060427a20009999 0frey0103 ba0 aengafre aZZ ay  ar aak 10aNational accounts of OECD countries.iDetailed tables=dComptes nationaux des pays de l'OCDE.iTableaux détaillészfre 0a2000- aPariscOCDEd2000- aA partir de 2003 paraît en 2 volumes : IIa et IIb aAnnuel 1tNational accounts of OECD countries. Main aggregatesx1992-8750 1tNational accounts. Detailed tables - OECD. Department of Economics and Statisticsx0256-757110aComptes nationaux des pays de l'OCDE. Tableaux détaillés10aComptes nationaux des pays de l'OCDEhVolume II.iTableaux détaillészfre aComptabilité nationaleyPays de l'OCDExPériodiques02aOrganisation de coopération et de développement économiques 3aFRbAbesc20070205gAFNOR 3aFRbISSNc20070201 a004 uhttp://titania.sourceoecd.org/vl=4137042/cl=28/nw=1/lg=eng/rpsv/outlook_annuals.htm4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(2000) -(2005)cParisdMagasins/AnnexeeP 4° 5236 aGEO RN1 Pays industrialisés, pays occidentaux aDEW 336 aDEW 310-31901591cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101001300125102000700138105001800145106000600163110001600169200012500185207001000310210002300320326001100343423006800354430009700422510007900519606005800598606008000656710006700736801003000803801002300833802000700856856008800863856010800951955005501059992005101114992001201165992001601177100507301000111384320130319051645.01 a1992-8750 aissn19928750 a0001113843 a20060427a20009999uuuy0frey0103 ba0 aengafre aZZ ay  ar aaku uu 10aNational accounts of OECD countries.iMain aggregates=dComptes nationaux des pays de l'OCDE.iPrincipaux agrégatszfre 0a2000- aPariscOCDEd2000- aAnnuel 1tNational accounts of OECD countries. Detailed tablesx1992-8742 1tNational accounts. Main aggregates - OECD. Department of Economics and Statisticsx0256-758X10aComptes nationaux des pays de l'OCDEhVolume 1.iPrincipaux agrégatszfre aComptabilité nationaleyPays de l'OCDExPériodiques aAgrégats (économie politique)yPays de l'OCDExStatistiquesxPériodiques02aOrganisation de coopération et de développement économiques 3aFRbAbesc20070903gAFNOR 3aFRbISSNc20070201 a004 uhttp://titania.sourceoecd.org/vl=4137042/cl=28/nw=1/lg=eng/rpsv/outlook_annuals.htm4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(2000) -(2007)cParisdMagasins/AnnexeeP 4° 5236 aGEO RN1 Pays industrialisés, pays occidentaux aDEW 336 aDEW 310-31901006nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200007000139210003600209326001100245530007100256606006400327606005100391710001800442856009900460955006900559972000900628991001800637992002100655992001200676992001600688039304310000007797820131022145328.01 a0259-3025 aFNSP352026 a19900101a19859999 f ba0 aeng aUS aaka 10aNational accounts statisticsiMain aggregates and detailed tables aNew YorkcUnited Nationsd1985- aAnnuel10aNational accounts statistics : main aggregates and detailed tables aAgrégats (économie politique)xStatistiquesxPériodiques aFinances publiquesxStatistiquesxPériodiques02aNations Unies4 uhttp://unstats.un.org/unsd/nationalaccount/pubsDB.asp?pType=3zAccès libre au texte intégral1 bno 1(1982) -no 2 (1996/1997)cParisdMagasins/AnnexeeP 4° 5265 aZGRA aexempb201307 aGEO RQ Universel aDEW 336 aDEW 310-31901034nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000250015421000280017932600110020743000680021844000340028651700640032060600720038471000530045685600840050995500550059397200090064899200310065799200160068899200160070408984601X000011309720130319051645.0 a1354-1226 aFNSP476035 a0000113097 a19900101b19932001 ba0 aeng aGB aaka 10aNational food survey aLondoncHMSOd1993-2001 aAnnuel 1aHousehold food consumption and expenditure (Londres)x0302-3273 1tFamily food in ...x1748-075210aAnnual report on Household Food Consumption and Expenditure aAlimentsxConsommationyGrande-BretagnexStatistiquesxPériodiques02aNational Food Survey Committee (Grande-Bretagne)4 uhttp://www.defra.gov.uk/statistics/foodfarm/food/familyfood/nationalfoodsurvey/1 b(1992) -(2000)cParisdMagasins/AnnexeeP 4° 5278 aZPAY aGEO RA4.02 Grande-Bretagne aDEW 338.1-3 aDEW 310-31901292nas 2200349 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200002400148210002800172326002300200326002900223530003400252606003100286606003200317606004300349801001300392856010100405856010800506856010900614856010800723955007000831972000900901991001800910992001400928050912364000032756920130830124533.01 a1460-8944 a a19999999k fre ba0 aeng aGB a 0  ar aah z 0 10aNational identities aAbingdoncCarfaxd1999- aTrimestrielb2005- a3 n°s par anb1999-2004 aNational identities‎bPrint aNationalismexPériodiques aNationalitésxPériodiques aRelations interethniquesxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=104645 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713439360db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1999) -....cParisdMagasins/AnnexeeP 8° 6533 aZPAY aexempb201212 aDEW 320.501425nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210002500193326001600218606004400234607005900278607005700337710006100394801002100455856010100476856010800577856010800685856010800793955006300901957005700964972000901021992003101030992001401061038758067000000479420130319051645.01 a0027-9501 aFNSP106465 a0000004794 a19900101a19599999 ba0 aeng aGB aahu 10aNational Institute economic review aLondoncNIESRd1959- aTrimestriel aFinancesyGrande-BretagnexPériodiques aGrande-BretagnexConditions économiquesxPériodiques aGrande-BretagnexPolitique économiquexPériodiques02aNational Institute of Economic and Social Researchc(GB) 3aFRbCCN0027-95014 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=105908 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (jan-1959) -....cParisdMagasins/AnnexeeP 4° 18501 b(1959) -(1967)cParisdMagasins/AnnexeeP Index 0488 aZPAY aGEO RA4.02 Grande-Bretagne aDEW 330.900847nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002600139210004800165326001500213530002600228606004400254676000800298801002100306856003600327856006300363955005900426972000900485991001800494992002100512992001200533039975991000002905420140110102033.01 a0884-9382 aFNSP180469 a19900101a19859999 ba0 aeng aUS aahu 14aThe National interest aNew York, NYcNational Affairs, Inc.d1985- aBimestriel14aThe National interest aRelations internationalesxPériodiques a320 3aFRbCCN0884-93824 uhttp://www.nationalinterest.org zContenu : sommaires depuis 1993 ; résumés du dernier n°1 bno. 1 (1985) -....cParisdMagasins/AnnexeeP 8° 4903 aZSAB aexempb201002 aGEO RQ Universel aDEW 32700770nas 2200277 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000310015421000430018532600140022860600290024260700290027180100210030085600350032195500920035697200090044899200230045799200120048003875830X000002905620130319051645.01 a0028-0038 aFNSP180479 a0000029056 a19900101a19559999 ba0 aeng aUS aaeu 10aNational review (New York) aNew York, N.Y.cNational reviewd1955- aBimensuel aActualitéxPériodiques aEtats-UnisxPériodiques 3aFRbCCN0028-00384 uhttp://www.nationalreview.com/1 bvol. 18 no. 4 (jan-1966) -vol. 63 no. 24 (dec-2011)cParisdMagasins/AnnexeeP 4° 2181 aZCAD aGEO RC2 Etats-Unis aDEW 05001141nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210005200179326001600231606003700247710004300284801002100327856012800348856010800476955008200584957009900666972000900765991001800774992002300792992001200815038758474000002906020130319051645.01 a0028-0283 aFNSP180488 a0000029060 a19900101a19489999 ba0 aeng aUS aahu 10aNational tax journal aColumbus, OhiocNational Tax Associationd1948- aTrimestriel aImpôtyEtats-UnisxPériodiques02aNational Tax Associationc(Etats-Unis) 3aFRbCCN0028-02834 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=NTJ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 21 no. 4 (1968) -vol. 61 no.4 (2008)cParisdMagasins/AnnexeeP 8° 26921 b(1948) -(1997)cParisdMagasins/Annexezse trouve dans le vol. 50 no. 4 (dec-1997) de la revue aZPAY aexempb201105 aGEO RC2 Etats-Unis aDEW 33601371nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210002400188326001600212517003600228606003100264606004300295856004200338856008900380856012800469856010800597856010900705856010800814955007000922972000900992991001801001992001401019036740969000014974620130319051646.01 a1353-7113 aFNSP586973 a0000149746 a19950214a19959999 ba0 aeng aGB aaha 10aNationalism & ethnic politics aIlfordcCassd1995- aTrimestriel10aNationalism and ethnic politics aNationalismexPériodiques aRelations interethniquesxPériodiques4 uhttp://www.frankcass.com/jnls/nep.htm zContenu : sommaires depuis le vol. 1, n°1 ; résumés des n° actuel et à paraitre4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=IYA&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713636289db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (pri-1995) -....cParisdMagasins/AnnexeeP 8° 6100 aZGRA aexempb201212 aDEW 320.501828nas 2200433 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154207001900179210009900198326002300297326002600320606003200346606002400378606003500402606002700437607006000464607005200524710007400576801002100650856012800671856010800799856010900907856010801016955006601124957007301190972000901263991001801272992003201290992005601322992001601378038892162000002906120140108104417.01 a0090-5992 aFNSP180492 a0000029061 a19900101a19729999 ba0 aeng aUS aahu 10aNationalities papers 1avol. 1 (1972)- aCharleston, Ill.cAssociation for the Study of the Nationalities (USSR and East Europe)d1972- aTrimestrielb1995- aSemestrielb1972-1994 aMinoritésyEurope de l'Est aMinoritésyEx-URSS aNationalitésyEurope de l'Est aNationalitésyEx-URSS aEurope de l'EstxRelations interethniquesxPériodiques aEx-UrssxRelations interethniquesxPériodiques02aAssociation for the Study of the Nationalities (USSR and East Europe) 3aFRbCCN0090-59924 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=55O&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713439073db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 8 no. 1 (1980) -....cParisdMagasins/AnnexeeP 8° 43591 bvol. 11 (1983) -vol. 20 (1992)cParisdMagasins/AnnexeeP Index 0712 aZSAB aexempb201010 aGEO RA2.02 Europe orientale aGEO RA7.02 Etats successeurs de l'Union soviétique aDEW 305-30601080nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210004900182326002300231326002900254606003200283606003100315676000800346712006500354856012800419856010800547955007000655972000900725991001800734992001400752036741507000016136420140110102716.01 a1354-5078 aFNSP620880 a0000161364 a19900101a19959999 ba0 aeng aGB aaha 10aNations and nationalism aCambridgecCambridge University Pressd1995- aTrimestrielb1998- a3 n°s par anb1995-1997 aNationalitésxPériodiques aNationalismexPériodiques a32002aAssociation for the Study of Ethnicity and Nationalismc(GB)4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=D8K&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1995) -....cParisdMagasins/AnnexeeP 8° 6140 aZSAB aexempb201207 aDEW 320.501103nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002800139210002300167225001900190326001100209437003900220452005500259517004400314530002800358606003600386710004000422856021300462955004700675972000900722991001800731992001600749992001200765048881260000023316820140117161522.01 a1683-4267 aFNSP826551 a19900101a19979999 ba0 afre aFR aaka 10aNatural gas information aPariscOCDEd1997-21aIEA statistics aannuel 1aOil and gas informationx1016-5010 1tIEA natural gas information (Online)‎x1683-426710aIEA statistics. Natural Gas information aNatural gas information aGazxStatistiquesxPériodiques aAgence internationale de l'énergie4 uhttps://acces-distant.sciences-po.fr/fork?http://puck.sourceocde.org/vl=562167/cl=24/nw=1/rpsv/home.htmzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1996)-(2006)dMagasins/AnnexeeP 4° 6726 aZPAY aexempb201401 aDEW 310-319 aDEW 33301081nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210007000184326001600254606003200270606004000302710004400342801002100386856003400407856007800441955007100519957010500590972000900695991001800704992002100722992001200743038758679000002907120130319051647.01 a0028-0739 aFNSP180515 a0000029071 a19900101a19619999 ba0 aeng aUS aahu 10aNatural resources journal aAlbuquerque, N.M.cUniversity of New Mexico School of Law.d1961- aTrimestriel aEnvironnementxPériodiques aRessources naturellesxPériodiques02aUniversity of New MexicobSchool of Law 3aFRbCCN0028-07394 uhttp://lawschool.unm.edu/NRJ/4 zContenu : accès aux sommaires et résumés depuis le vol. 41, n°1, 20011 bvol. 11 no. 1 (jan-1971) -....cParisdMagasins/AnnexeeP 8° 29451 bvol. 1 (1961) -vol. 20 (1980) ; vol. 21 (1981) -vol. 30 (1990)cParisdMagasins/AnnexeeP Index 0368 aZPAY aexempb201106 aGEO RQ Universel aDEW 33300987nls 2200337 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000063001642070034002272100038002612100042002992300024003413260017003656060037003826060038004197100011004578010013004688560052004818560066005339550005005999920031006049920014006350001236017000123601720130319051647.0 a1476-4687 a0001236017 a a18699999k fre 01 ba0 aeng aGB ar aac z  adr 10aNatureb[Ressource électronique]fNature Publishing Group 1aVol. 1, no. 1 (Nov. 4, 1869)- aLondoncNature Publ. Groupd2000- aLondoncMacmillan Journalsd1869-1999 aRevue électronique aHebdomadaire aSciences de la viexPériodiques aSciences naturellesxPériodiques02aNature 0aFRbFNSP4 uhttp://www.nature.com/nature/archive/index.html4 zContenu : texte intégral des numéros depuis le no. 1 de18691 r aGEO RA4.02 Grande-Bretagne aDEW 50-5901123nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210002700198326001600225517003600241606003200277606002700309710004000336856006200376856010900438856010400547955014900651972000900800992001200809040039358000026988920130319051647.01 a1240-1307 aFNSP933349 a0000269889 a19990408a19939999 ba0 afre aFR aaha 10aNatures sciences sociétés (Montrouge) aPariscElsevierd1993- aTrimestriel10aNSS natures sciences sociétés aEnvironnementxPériodiques aEcologiexPériodiques02aAssociation NSS dialoguesc(France)4 uhttp://www.edpsciences.org/journal/index.cfm?edpsname=nss zContenu : accès au texte intégral depuis 2004 avec 2 ans de retard par rapport à l'édition imprimée4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-natures-sciences-societes.htm1 bvol. 1 no. 1 (1993) -....cParisdMagasins/AnnexeeP 4° 6809wManquants : vol. 4 no. 1 (1996) ; vol. 5 no. 1-2-3 (1997) ; vol. 7 no. 1-2 (1999) aZPAY aDEW 33301052nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210004400183326002300227326002600250606004800276607004900324801002100373856005100394856008600445955007200531957005700603972000900660991001800669992002300687992001600710038758970000002907320130319051647.01 a0028-1484 aFNSP180518 a0000029073 a19900101a19489999 ba0 aeng aUS aahu 10aNaval War College review aNewport, R.I.cNaval War Colleged1948- aTrimestrielb1986- aBimestrielb1948-1985 aMarines de guerreyEtats-UnisxPériodiques aEtats-UnisxDéfense nationalexPériodiques 3aFRbCCN0028-14844 uhttps://portal.nwc.navy.mil/press/default.aspx zContenu : accès libre au texte intégral d'une sélection d'articles depuis 20011 bvol. 20 no. 11 (jun-1968) -....cParisdMagasins/AnnexeeP 8° 25501 b(1948) -(1973)cParisdMagasins/AnnexeeP Index 0231 aZSAB aexempb200908 aGEO RC2 Etats-Unis aDEW 355-35901924nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210003900185326001100224530003100235606003700266606003300303676000800336710005500344856024400399856026800643856023800911856025901149955006701408955006001475972000901535991001801544992001201562039984672000001756920130605155443.01 a0889-3365 aFNSP147994 a0000017569 a19901115a19869999 ba0 aeng aUS aaka 10aNBER macroeconomics annual aCambridge, Mass.cMIT Pressd1986- aannuel00aNBER macroeconomics annual aEconomie politiquexPériodiques aMacroéconomiexPériodiques a33002aNational Bureau of Economic Researchc(Etats-Unis)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.nber.org/booksbyseries/MA.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po, accès au texte intégral de 1986 à il y a 2 ans uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/direct.asp?db=bth&jid=88GB&scope=sitezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po, accès au texte intégral de 2007 à il y a 2 ans4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/08893365.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po, accès au texte intégral de 1986 à 20074 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/direct.asp?db=bth&jid=MNA&scope=sitezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po, accès au texte intégral de 1997 à 20061 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3301 bvol. 3 (1988) -....cParisdMagasins/AnnexeeP 8° 5679 aZPAY aexempb201110 aDEW 33901096nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000057001502100062002072300024002693260034002933370199003275170058005265170026005846060037006107100055006478010013007028300007007158560032007229550040007540000464365000046436520130319051647.0 a0000464365 a a19949999k fre 01 ba0 aeng aUS az abu z  adr 10aNBER working papersb[Ressource électronique]fNBER aNew YorkcNational bureau of economic researchd1994-.... aDonnées textuelles aCollection de working papers. aTexte intégral au format pdf, télédéchargeable à partir du n°4935, nov. 1994 avec Adobe Acrobat. Egalement envoi par e-mail. Les papers précédents peuvent être mis en ligne sur demande.10aWorking papers - National bureau of economic research10aWorking papers - NBER aEconomie politiquexPériodiques02aNational Bureau of Economic Researchc(Etats-Unis) 0aFRbFNSP aBH4 uhttp://www.nber.org/papers/1 rConsultable uniquement sur Internet01026nas 2200289 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000038001412100046001792250047002253260011002724300054002836060052003377120047003898560081004368560051005178560064005689550070006329920022007029920012007240000103824000010382420130319051647.0 aFNSP444220 a0000103824 a19900101a19919999 ba0 afre aFR aaka 13aLa Négociation collective en.... aPariscLa Documentation françaised1991-21aBilans et rapports / Ministère du travail aAnnuel 1aBilan de la négociation collective < P 4°5824 > aNégociations collectivesyFrancexPériodiques02aFrancebDirection des relations du travail4 uhttp://www.travail.gouv.fr/publications/p_detailPublication.asp?idTitre=2191 zContenu : texte intégral du bilan de l'année4 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml1 b(1992)-(1997) ; (2002)-(2006)cParisdMagasins/AnnexeeP 4° 5824 aGEO RA4.06 France aDEW 33100872nls 2200277 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000045001642100043002092300024002523260015002766060032002916060039003238010013003628560196003759920012005719920011005830001180911000118091120130319051648.0 a1782-1452 a0001180911 a a20049999k fre 01 ba0 afre aBE ar aaj z  adr 10aNégociationsb[Ressource électronique] aBruxellescDe Boeck Universitéd2004- aRevue électronique asemestriel aNégociationsxPériodiques aGestion des conflitsxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-negociations.htmzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aDEW 322 aGEO RQ00903cas0 2200301 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119110001600126200003900142210002600181601003600207606003500243710002200278801003000300801003000330856002700360856006100387955009200448972000900540991001800549992001200567992002200579036549797000009070620130319051649.0 accn0044/4227 a0000090706 a19830101c19 0frey0103 zz0 aeng aNP aau 10aNepal Rastra bank. Economic report aKathmanducNRBd1967-02aNepal Rastra BankxPériodiques aFinancesyNépalxPériodiques02aNepal Rastra Bank 3aFRbAbesc20040912gAFNOR 3aFRbAbesc20040912gAFNOR4 uhttp://www.nrb.org.np/4 zAccés à une partie du texte intégral depuis 2001/20021 a(1966/1967) -(1987/1988) ; (1994/1995) -(2003/2004)bParisdMagasins/AnnexeeP 8° 6519 aZGRA aexempb201108 aDEW 332 aGEO RI1.15 Népal00834nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000086001502100031002362300024002673260011002916010036003026060035003387100022003738010013003958560027004088560058004359550005004939920022004989920012005200001133697000113369720130319051649.0 a0001133697 a a20009999k fre 01 ba0 aeng aNP ar aak z  adr 10aNepal Rastra bank. Economic report.b[Ressource électronique]fNepal Rastra bank aKathmanducNRBd2000/2001- aRevue électronique aAnnuel02aNepal Rastra BankxPériodiques aFinancesyNépalxPériodiques02aNepal Rastra Bank 0aFRbFNSP4 uhttp://www.nrb.org.np/ zContenu : texte intégral du rapport depuis 2000/20011 r aGEO RI1.15 Népal aDEW 33201091nas 2200349 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200002700148207001700175210004800192326001500240606004700255606003700302607004500339607002500384676001000409801001300419856002900432856008600461955006800547955006400615972000900679992003900688992001400727059514140000060699420130718143242.01 a1815-7912 a a19979999 frey01 ba0 arus aRU a 0  ar aag z 0 10aNeprikosnovennyj zapas 1ano. 1(1998)- aMoskvacNovoe literaturnoe obozrenied1999- aBimestriel aPolitique et cultureyRussiexPériodiques aVie intellectuellexPériodiques aRussiexVie intellectuellexPériodiques aRussiexPériodiques a943.7 0aFRbFNSP4 uhttp://www.nz-online.ru/ zContient : sommaires et sélection d'articles en texte intégral depuis le n° 241 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 943.71 bno. 1 = 39 (2003) -....cParisdMagasins/AnnexeeP 4° 7024 aZPAY aGEO RA7.21 Russie (depuis 1991-92) aDEW 943.701144cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200004100179210002800220306005400248326001800302421005700320430006400377606003800441801003000479801003000509801002300539802000700562856006400569856006100633955006700694972000900761992001200770039109488000098443020130319051649.01 a0165-070X accn0165-070X aissn0165070X a0000984430 a19890613a19759999k y1frey0103 ba0 aeng aNL ar aaiu uu 10aNetherlands international law review aLeydencSijthoffd1975- aPublié ensuite à La Haye par T.M.C. Asser Press a3 n°s par an 1tNetherlands yearbook of international lawx0167-6768 1tNederlands tijdschrift voor internationaal rechtx0028-2138 aDroit internationalxPériodiques 3aFRbAbesc20051124gAFNOR 3aFRbAbesc20051124gAFNOR 3aFRbISSNc20050729 a0j4 uhttp://journals.cambridge.org/action/displayJournal?jid=NLR zContient : sommaires des n°s à partir du vol. 50, 20031 bvol. 51 no. 1 (2004) -....cParisdMagasins/AnnexeeP 8° 6895 aZSAB aDEW 34101063nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004500154210003000199326001200229436004400241436008200285607004800367607005500415676000800470801002100478856005400499856004900553955005900602972000900661991001800670992002500688992001200713039131289000002932620140109153551.01 a0177-6738 aFNSP181106 a0000029326 a19900101a19859999 ba0 ager aDE aafu 14aDie neue Gesellschaft, Frankfurter Hefte aBonncDietz Nachf.d1985- aMensuel 1aDie neue Gesellschaft (Bonn)x0028-3177 1tFrankfurter Hefte (Neue Verlagsgesellschaft der Frankfurter Hefte)x0015-9999 aAllemagnexVie intellectuellexPériodiques aAllemagnexPolitique et gouvernementxPériodiques a001 3aFRbCCN0177-67384 uhttp://www.frankfurter-hefte.de/Aktuelle-Ausgabe/ zContenu : texte intégral en ligne 2007-20081 bno. 1 (1985) -....cParisdMagasins/AnnexeeP 8° 2073 aZGRA aexempb201105 aGEO RA5.01 Allemagne aDEW 00101065nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154207003000184210003500214326002400249326002700273326002300300430003600323606004000359856008300399856005200482955007500534955008900609972000900698991001800707992001400725038759616000003109520130319051649.01 a0028-3320 aFNSP186492 a0000031095 a19910502a19569999 ba0 ager aDE aaha 10aNeue politische Literatur 1avol. 1 no. 1 (Juli 1956)- aFrankfurt am MaincLangd1956- a3 nos par anb1985- aTrimestrielb1965-1984 aMensuelb1956-1964 1aPolitische Literaturx0477-2776 aPhilosophie politiquexPériodiques4 uhttp://hsozkult.geschichte.hu-berlin.de/zeitschriften/type=zeitschriften&id=404 zContenu : accès aux sommaires depuis n°1,20011 bvol. 26 no. 1 (jan/mar-1981) -....cParisdMagasins/AnnexeeP 8° 44381 bvol. 4 no. 4 (avr-1959) -vol. 5 no. 8 (aou-1960)cParisdMagasins/AnnexeeP 8° 1157 aZCAD aexempb200911 aDEW 320.500942nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000053001502100005002032300024002083260014002326060029002466070025002758010013003008560192003138560108005059550005006139920022006189920012006400001131856000113185620130319051649.0 a0001131856 a a19939999k fre 01 ba0 ager aCH ar aaa z  adr 10aNeue Zürcher Zeitungb[Ressource électronique] a aRevue électronique aquotidien aActualitéxPériodiques aSuissexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA5.14 Suisse aDEW 05000833nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210003200185326001200217430005500229607002600284801002100310856004100331856006600372955006500438972000900503992001900512992001200531036356344000002962320130319051649.01 a0142-9345 aFNSP182334 a0000029623 a19900101a19789999 ba0 aeng aGB aafu 10aNew African (London, 1978) aLondoncIC Magazinesd1978- aMensuel 1aNew african development,x0140-1378 < P 4° 2812 > aAfriquexPériodiques 3aFRbCCN0142-93454 uhttp://www.africasia.com/newafrican/ zContenu : sommaires depuis le numéro de juillet / Août 20021 bno. 129 (mai-1978) -....cParisdMagasins/AnnexeeP 4° 2812 aZCAD aGEO RE Afrique aDEW 96000924nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000160015421000300017032600160020044000380021653000310025460600370028571000520032285600700037485600780044495500820052299100180060499200120062204030731X000018178720130319051650.01 a1070-3535 aFNSP676712 a0000181787 a19900101b19942004 ba0 aeng aGB aaha 10aNew economy aLondoncDrydend1994-2004 aTrimestriel 1tPublic policy researchx1744-539600aNew economybLondon. Print aEconomie politiquexPériodiques02aInstitute for Public Policy Researchc(Londres)4 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=10703535 zContenu : sommaires et résumés depuis le volume 5, numéro 1, mars 19981 bvol. 2 no. 1 (1995) -vol. 11 no. 4 (2004)cParisdMagasins/AnnexeeP 8° 6216 aexempb201211 aDEW 33000969nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210004000179326001200219430002100231606004400252606002900296801002100325856004300346856006000389955006300449957013400512972000900646992001200655039395359000002965220130319051651.01 a0305-9529 aFNSP182408 a0000029652 a19900101a19739999 ba0 aeng aGB aafu 10aNew internationalist aOxfordcNew Internationalistd1973- aMensuel 1aInternationalist aRelations internationalesxPériodiques aActualitéxPériodiques 3aFRbCCN0305-95294 uhttp://www.oneworld.org/ni/index4.html zContenu : liste des grands thèmes traités depuis 19931 bno. 1 (mar-1973) -....cParisdMagasins/AnnexeeP 4° 32611 bno. 1 (1973) -no. 22 (1974) ; no. 11 (1974) -no. 34 (1975) ; no. 263 (1995) -no. 319 (1999)cParisdMagasins/AnnexeeP Index 0490 aZCAD aDEW 05001148nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154207008100174210003500255326001500290436004400305436002800349606004500377607006100422676000800483801002100491856003400512856003600546955006700582955010900649972000900758991001700767992001400784038760274000002965520130319051651.01 a0028-6060 aFNSP182419 a0000029655 a19900101a19609999 ba0 aeng aGB aagu 10aNew left review 1ano. 1 (jan/fev-1960)-no. 238 (nov/dec-1999)a2nd ser. no. 1 (jan./feb-2000)- aLondoncNew Left Reviewd1960- aBimestriel 1aUniversities and left reviewx0502-6385 1tNew reasonerx0548-6556 aGauche (science politique)xPériodiques aGrande-BretagnexPolitique et gouvernementxPériodiques a320 3aFRbCCN0028-60604 uhttp://www.newleftreview.net/ zAccès libre au texte intégral1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 1 (jan-1960) -no. 238 (dec-1999) ; n. s. no. 13 (jan-2002) -....cParisdMagasins/AnnexeeP 8° 1878 aZCAD aexempb20108 aDEW 320.501308nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210002800180326002200208326002700230326002900257606003700286856005700323856005800380856012800438856010800566856010900674856010800783955007000891972000900961992001200970036743062000019879220140106120315.01 a1356-3467 aFNSP726687 a0000198792 a19900101a19969999 ba0 aeng aGB aaia 10aNew political economy aAbingdoncCarfaxd1996- aBimestrielb2013- aTrimestrielb2004-2012 a3 n°s par anb1996-2003 aEconomie politiquexPériodiques4 uhttp://www.tandf.co.uk/journals/carfax/13563467.html zContenu : sommaires depuis le vol. 1, n°1, mars 19964 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=NPE&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713439457db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1996) -....cParisdMagasins/AnnexeeP 8° 6273 aZSAB aDEW 33001531nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154207011000180210006700290210003200357210003200389326002300421326002700444606003600471676000800507710003900515856010600554856005400660856010900714856010800823955006700931955011600998972000901114991001801123992001601141039702545000011445820130319051651.01 a0739-3148 aFNSP479608 a0000114458 a19900101a19729999 ba0 aeng aUS aaha 10aNew political science 1a[Fall 1972-spring-summer 1978?] ; no. 1 (spring 1979)-no. 41/42 (fall 1997) ; vol. 20, no. 1 (Mar. 1998)- aIndianapolis, Ind.cCaucus for a New Political Science]d1972- aAbingdoncCarfaxd1998-2004 aaAbingdoncRoutledged2005- aTrimestrielb1998- aIrrégulierb1972-1997 aScience politiquexPériodiques a32002aCaucus for a New Political Science4 uhttp://www.tandf.co.uk/journals/frameloader.html?http://www.tandf.co.uk/journals/carfax/07393148.html zContenu : sommaires depuis le vol. 20, n°1, 19984 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713439578db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 2/3 (1979/1980) -no. 41/42 (1997) ; n.s. vol. 20 no. 1 (mar-1998) -....cParisdMagasins/AnnexeeP 8° 4980 aZSAB aexempb201011 aDEW 320-32100804nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001700139210005100156326001500207530001700222606004400239801002100283856007200304955012300376972000900499991001800508992001200526038760428000002967520130605104236.01 a0028-6494 aFNSP182483 a19900101a19619999 ba0 aeng aUS aahu 10aNew politics aBrooklyn, N.Y.cNew Politics Associatesd1961- aSemestriel00aNew politics aRelations internationalesxPériodiques 3aFRbCCN0028-64944 uhttp://www.newpol.org/zAccès libre au texte intégral depuis 19611 bvol. 9 no. 1 (pri-1971) -vol. 12 no. 1 = 45 (1978) ; vol. 1 no. 1 (ete-1986) -....cParisdMagasins/AnnexeeP 8° 3043 aZSAB aexempb201106 aDEW 32400811nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116106000600123110001600129200002100145207003700166210003800203326001700241452005900258606002900317607002900346801002100375856002400396955006600420992002300486992001200509038760479000006630820131129122236.01 a0028-6583 aFNSP308089 a19900101a19149999 ba0 aeng aUS ar aa a 14aThe New Republic 1aVol.1, N.1 (November 7th, 1914)- aNew YorkcThe New Republicd1914- aHebdomadaire04tThe New republic (New York, N.Y. Online)‎x2169-2416 aActualitéxPériodiques aEtats-UnisxPériodiques 3aFRbCCN0028-65834 uhttp://www.tnr.com/1 bno. 1623 (jan-1946) -....cParisdMagasins/AnnexeeP 4° 0146 aGEO RC2 Etats-Unis aDEW 05000889nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001800139210003700157326001700194430003900211452004100250530002400291606002900315607006100344856003300405856004300438955007500481992003100556992001200587036765929000020087620131129143617.0 a1364-7431 aFNSP732740 a19900101a19969999 ba0 aeng aGB aa a 10aNew statesman aLondoncNew Statesman Ltdd1996- aHebdomadaire 1aNew statesman & societyx0954-2361 1tNew statesman (Online)‎x1758-924X10aNew statesmanb1996 aActualitéxPériodiques aGrande-BretagnexPolitique et gouvernementxPériodiques4 uhttp://www.newstatesman.com/ zContenu : sommaire du dernier numéro.1 bvol. 9 no. 407 (14 jun-1996) -....cParisdMagasins/AnnexeeP 4° 5317 aGEO RA4.02 Grande-Bretagne aDEW 05000868nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200003300138210003100171326001400202421004000216517008100256606005300337801002100390856004400411955005900455955005300514972000900567992001400576073325317000005311920130319051652.01 a0028-7504 aFNSP253285 a0000053119 a19900101a19639999 ba0 aeng aUS14aThe New York review of books aNew York, NYcNYREVd1963- aBimensuel 1tLondon review of booksx(0260-9592)10aLondon review of books with the New York review of books (de 1979 à 1981 ?) aLittératurexHistoire et critiquexPériodiques 3aFRbCCN0028-75044 uhttp://www.nybooks.com/nyrev/index.html1 bL’année en courscParisd27, Salle Rez-de chaussée1 b(1968) -....cParisdMagasins/AnnexeeP F° 0281 aZPAY aDEW 80-8901565cas0 2200433 450 00100100000000200110001000500170002101100140003803500170005203500170006903500150008604000110010110000410011210100080015310200070016110500180016810600060018611000160019220000230020820700390023121000460027031101060031645100260042245200390044845200410048780100300052880100230055880100300058180100230061180200070063483000530064185600270069485601920072185601080091395500660102197200090108799200230109699200120111903950932X000106226520130319051652.0 a0362-4331 accn0362-4331 aissn03624331 a0001062265 aNYTIAO a19750921a18579999uuuy0frey0103 ba0 aeng aUS ay 0  ar acaa 0uu 14aThe New York times 0aVol. 6, no. 1868 (Sept. 14, 1857)- aNew-York [N.YcH.J. Raymond & Co.]d1857- aTitre en relation depuis 2002 : The New York Times : une sélection hebdomadaire offerte par Le Monde 1tNew-York weekly times 1tNew York times (CD-ROM)x1542-667X 1tNew York times on the Webx1553-8095 3aFRbAbesc20100222gAFNOR 3aFRbISSNc20100215 3aFRbAbesc20070111gAFNOR 3aFRbISSNc20051021 a01 adésherbé en février 2008 suite à abo Factiva4 uhttp://www.nytimes.com4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 aLa bibliothèque n'est plus abonnée à l'édition imprimée. aZPAY aGEO RC2 Etats-Unis aDEW 05000944nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000050001502100005002002300024002053260014002296060029002436070029002728010013003018560192003148560108005069550005006149920023006199920012006420001131864000113186420130319051652.0 a0001131864 a a19809999k fre 01 ba0 aeng aUS ar aaa z  adr 14aThe New York timesb[Ressource électronique] a aRevue électronique aquotidien aActualitéxPériodiques aEtats-UnisxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RC2 Etats-Unis aDEW 05001398cas0 2200301 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102110001600109200003500125207005400160210004000214301004300254325006200297430011200359440003100471606005400502801003000556856010800586856010900694856010900803856010900912955005501021991002001076083413723000108417820130319051652.0 a0001084178 a20050120b19151916k y0frey0103 ba0 aeng aUS aafa 10aNew York times current history 0aVol. 2, n°1 (1915, apr)-Vol. 3, n°5 (1916, feb) aNew YorkcNew York timesd1915-1916 aDemande de numérotation ISSN en cours1 aArticles reproduits sur la base de données PCI Full Text 1tThe New York times current history of the European warbTexte imprimécNew YorknNew York timesd1914-1915 1tCurrent history (New York) aGuerre mondiale (1914-1918)xPériodiques2rameau 3aFRbAbesc20050121gAFNOR4 uhttp://www.gutenberg.org/ebooks/15478zAccès libre au texte intégral. Vol.2 n°1 sur Projet Gutenberg4 uhttp://www.gutenberg.org/ebooks/15479zAccès libre au texte intégral. Vol. 2 n°2 sur Projet Gutenberg4 uhttp://www.gutenberg.org/ebooks/15480zAccès libre au texte intégral. Vol. 2 n°3 sur Projet Gutenberg4 uhttp://www.gutenberg.org/ebooks/22460zAccès libre au texte intégral. Vol. 2 n°4 sur Projet Gutenberg1 b(1915) -(1916)cParisdMagasins/AnnexeeP 8° 0238 aPériobTP01 P801364nas0 2200289 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102110001600109200005900125207005400184210004000238301004300278325006200321440008800383606005400471801003000525856011100555856011100666856011100777856011100888955005500999991002001054083413383000108417720130319051652.0 a0001084177 a20050120b19141915k y0frey0103 ba0 aeng aUS aafa 14aThe New York times current history of the European war 0aVol. 1, n°1 (1914, dec)-Vol. 1, n°6 (1915, dec) aNew YorkcNew York timesd1914-1915 aDemande de numérotation ISSN en cours1 aArticles reproduits sur la base de données PCI Full Text 1tNew York times current historybTexte imprimécNew YorknNew York timesd1915-1916 aGuerre mondiale (1914-1918)xPériodiques2rameau 3aFRbAbesc20050120gAFNOR4 uhttp://www.gutenberg.org/ebooks/13635zAccès libre au texte intégral. Vol. 1 - n°1 sur Projet Gutenberg4 uhttp://www.gutenberg.org/ebooks/16331zAccès libre au texte intégral. Vol. 1 - n°2 sur Projet Gutenberg4 uhttp://www.gutenberg.org/ebooks/18880zAccès libre au texte intégral. Vol. 1 - n°3 sur Projet Gutenberg4 uhttp://www.gutenberg.org/ebooks/16363zAccès libre au texte intégral. Vol. 1 - n°4 sur Projet Gutenberg1 b(1914) -(1915)cParisdMagasins/AnnexeeP 8° 0238 aPériobTP01 P800984nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200003500138207003200173210005700205326001500262530004100277606003600318710003900354801002100393856004000414856006700454955008700521972000900608991001800617992002300635992001200658036356948000003005520130319051652.01 a0028-7881 aFNSP183513 a0000030055 a19900101a1950 ba0 aeng aUS00aNew York University law review 1aVol. 25, no. 1 (Jan. 1950)- aa[New YorkcNew York University School of Lawd1924- aBimestriel 0aNew York University law reviewb1950 aDroityEtats-UnisxPériodiques02aNew York UniversitybSchool of Law 3aFRbCCN0022/86644 uhttp://www.nyu.edu/pages/lawreview/ zContenu : sommaires et résumés depuis le vol. 71, n°4, 19961 bvol. 38 no. 1 (jan-1963) -vol. 84 no. 6 (2009)cParisdMagasins/AnnexeeP 8° 2482 aZPAY aexempb201004 aGEO RC2 Etats-Unis aDEW 34901256nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116106000600123200003500129210004800164326001100212326003300223517003400256607005000290607003600340710004800376801002100424856013400445955005500579955006900634955008100703972000900784991001700793991001900810992003300829992001600862992001600878038869764000010249820130514155854.01 a0078-0170 aFNSP440162 a19900101a18939999 ba0 aeng aNZ ar10aNew Zealand official year book aWellingtoncDepartment of Statisticsd1893- aAnnuel aBisannuel à partir de 2000.10aNew Zealand official handbook aNouvelle-ZélandexStatistiquesxPériodiques aNouvelle-ZélandexPériodiques02aNouvelle-ZélandebDepartment of Statistics 3aFRbCCN0078-01704 uhttp://www.stats.govt.nz/browse_for_stats/snapshots-of-nz/digital-yearbook-collection.aspxzAccés intégral au texte depuis 18931 b(1992) -(2010)cParisdMagasins/AnnexeeP 4° 62761 b(1980) -(1988/1989) ; (1992)cParisdMagasins/AnnexeeP 8° 52501 b(1897) ; (1915) -(1939) ; (1946) -(1979)cParisdMagasins/AnnexeeCOL8°0138 aZCAD aPériobTP01 aexemplb201109 aGEO RJ3.02 Nouvelle-Zélande aDEW 310-319 aDEW 990-99601290nls 2200349 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000078001502100062002283000099002903260012003893360058004013370063004594400046005224520064005686070038006326070033006706070034007037120044007378010013007818560090007949550005008849920035008899920016009240000466810000046681020130319051652.0 a0000466810 a b19261928k fre 01 ba0 aeng aUS az aaf z  adr 10aNews bulletin - Institute of Pacific Relationsb[Ressource électronique] aHonolulu, T.H.cInstitute of Pacific Relationsd1926-1928 aAccès au texte intégral (réservé aux sites de Sciences Po) de mai 1926 jusqu'à avril 1928 aMensuel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tPacific affairs [Ressource électronique] 1tNews bulletin - Institute of Pacific Relationsx(1530-2199) aPacifique (région)xPériodiques aAsie orientalexPériodiques aAsie du Sud-EstxPériodiques02aAmerican Institute of Pacific Relations 0aFRbFNSP1 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/15302199.html1 r aGEO RJ Océanie, Pacifique Sud aDEW 990-99601050nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000074001502100041002242300005002653000120002703260017003903360101004073370018005086060036005266060037005627100036005998010013006358560067006489550005007159920016007200000505408000050540820130319051652.0 a0000505408 a a20019999k fre 01 ba0 afre aFR ar aac z  adr 13aLa newsletter de la Fondation Jean Jaurèsb[Ressource électronique] aPariscFondation Jean Jaurèsd2001- a aAccessible par abonnement. Texte intégral des dernières numéros, recherche par mots clés pour les plus anciens. ahebdomadaire aDonnées textuelles uniquement accessibles en ligne ou par abonnement par courrier électronique aFichiers html aScience politiquexPériodiques aSocial-démocratiexPériodiques02aFondation Jean Jaurèsc(Paris) 0aFRbFNSP4 uhttp://193.45.254.92/affiche_page.php?Id=109&IdRub=20&IdSite=11 r aDEW 320-32101063nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000051001502100005002012300024002063260014002306060029002446070025002736070026002988010013003248560192003378560108005299550005006379920012006429920056006549920039007100001145135000114513520130319051652.0 a0001145135 a a19989999k fre 01 ba0 arus aRU ar aaa z  adr 10aNezavisimaâ gazetab[Ressource électronique] a aRevue électronique aQuotidien aActualitéxPériodiques aRussiexPériodiques aEx-URSSxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aDEW 050 aGEO RA7.02 Etats successeurs de l'Union soviétique aGEO RA7.21 Russie (depuis 1991-92)00907nas 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000029001502100022001793260011002014300039002126060026002516060046002777120057003238010013003808560050003938560050004439550058004939720009005519920021005609920012005810000469692000046969220130319051653.0 a0000469692 a a20029999k fre ba0 aeng aJP a 0  ar aak z 0 10aNHK broadcasting studies aTokyocNHKd2002- aAnnuel 1tStudies of broadcastingx0585-7325 aMédiasxPériodiques aCommunication audiovisuellexPériodiques02aNHK Broadcasting Culture Research Institutec(Tokyo) 0aFRbFNSP uhttp://www.nhk.or.jp/bunken/book-en/b4-e.html zcontenu : sommaires à partir du n° 31, 19951 bno.1 (2002) -....cParisdMagasins/AnnexeeP 8° 2506 aZGRA aGEO RI3.22 Japon aDEW 07001076nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210006100186326001800247530003200265606004800297712006000345712004800405801001300453856010900466856010800575955007000683972000900753992001200762040317161000022073220130319051654.01 a1073-6700 aFNSP792528 a0000220732 a19900101a19939999 ba0 aeng aUS aaia 14aThe Nonproliferation review aMonterey, CAcCenter for Nonproliferation Studiesd1993- a3 n°s par an04aThe Nonproliferation review aNon-prolifération nucléairexPériodiques02aCenter for Nonproliferation Studiesc(Monterey, Calif.)02aMonterey Institute of International Studies 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t716100717db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 4 no. 1 (aut-1996) -....cParisdMagasins/AnnexeeP 4° 6701 aZPAY aDEW 32701117nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003200163210005100195326001100246430004600257517003000303607004700333676000800380710003200388801001300420856022100433955006100654972000900715992001600724992001200740992002700752074935887000031601320140115104131.01 a1398-0017 a0000316013 a a19979999k fre ba0 aeng aDK a 0  ar aak z 0 10aNordic statistical yearbook aCopenhagencNordic Council of Ministersd1997- aAnnuel 1tYearbook of Nordic statistics,x0078-108810aNordisk statistisk arsbok aEurope du NordxStatistiquesxPériodiques a314 aNordic council of ministers 0aFRbFNSP4 uhttp://www.norden.org/en/publications/publikationer/2011-001/publications_results_view?SearchablePublicationsText=nordic%20statistical%20yearbook&b_start:int=0&tab=nordiczAccès au texte intégral à partir de 2006+1 bvol. 37 (1999) -....cParisdMagasins/AnnexeeP 8° 3185 aZPAY aDEW 310-319 aDEW 948 aGEO RA3 Europe du Nord01106nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002000139210005900159326001500218430007000233452004000303517006400343530002000407606004800427606004100475710006400516856007500580955005900655972000900714991001800723992002700741992001200768058734821000013272620140106103825.01 a1403-1108 aFNSP538402 a19940721a19949999 ba0 aeng aSE aaja 10aNordicom review aGöteborg‎cNordicom, Göteborg university‎d1994- aSemestriel 1aNordicom review of Nordic mass communication research,x0349-6244 1tNordicom review (Online)x2001-511910aNordicom Review of Nordic Research on Media & Communication10aNORDICOM review aCommunicationyEurope du NordxPériodiques aMediasyEurope du NordxPériodiques02aNordic Documentation Center for Mass Communication Research4 uhttp://www.nordicom.gu.se/review.htmlzAccès libre au texte intégral1 bno. 1 (1994) -....cParisdMagasins/AnnexeeP 4° 5996 aZGRA aexempb201312 aGEO RA3 Europe du Nord aDEW 30201120cas0 2200373 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147110001600154200001400170207002900184210003600213326001800249530002300267607003000290607003000320710008400350801003000434801002300464801003000487802000700517856003700524856007400561955006300635972000900698992001200707992002700719076262170000057396720140115174429.01 a1761-7677 a074034820 aissn17617677 a0000573967 a20030523a20039999 0fre 0103 ba0 afre aFR aai 10aNordiques 0aN° (2003, janv./avril)- aPariscInstitut Choiseuld2003- a3 n°s par an10aNordiquesb(Paris) aScandinaviexPériodiques aPays baltesxPériodiques02aInstitut Choiseul pour la politique internationale et la géoéconomiec(Paris) 3aFRbAbesc20050323gAFNOR 3aFRbISSNc20030523 3aFRbAbesc20040331gAFNOR a074 uhttp://www.choiseul-editions.com zcontenu : sommaires et résumés des articles à partir du n°1, 20031 bno. 1 (jan-2003) -....cParisdMagasins/AnnexeeP 8° 6712 aZPAY aDEW 940 aGEO RA3 Europe du Nord00881nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000072001502100029002222300024002513260011002756010030002866060037003166070052003537100016004058010013004218560039004348560053004739550005005269920024005319920012005550001134319000113431920130319051654.0 a0001134319 a a19989999k fre 01 ba0 aeng aNO ar aak z  adr 10aNorges Bank's Annual reportb[Ressource électronique]fNorges Bank aOslocNorges Bankd1998- aRevue électronique aAnnuel02aNorges BankxPériodiques aFinancesyNorvègexPériodiques aNorvègexConditions économiquesxPériodiques02aNorges Bank 0aFRbFNSP4 uhttp://www.norges-bank.no/english/ zContenu : texte intégral du rapport depuis 19981 r aGEO RA3.03 Norvège aDEW 33201310nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001100154207004700165210002800212300003300240326001600273606004200289607005800331801002100389856008600410856010800496856003000604856009400634955011900728957007400847972000900921991001800930992001200948039225615000003016420130319051654.01 a0029-182X aFNSP183764 a0000030164 a19900101a19549999 ba0 afre aFR aahu 10aNorois 1ano 1 (1954)-no 189 (2002) ; no 190 (2004)- aPoitierscNoroisd1954- aN'a pas paru en 2002 et 2003 aTrimestriel aGéographie économiquexPériodiques aFrance (ouest)xConditions économiquesxPériodiques 3aFRbCCN0029-182X4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-norois.htm?4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://norois.revues.org/ zContenu : texte intégral via revues.org depuis 2004 à l'exception des numéros récents1 bvol. 2 no. 5 (1955) -vol. 2 no. 8 (1955) ; vol. 8 no. 29 (1961) -no. 221, 2011cParisdMagasins/AnnexeeP 8° 18791 b(1954) -(1963) ; (1964) -(1973)cParisdMagasins/AnnexeeP Index 0206 aZPAY aexempb201105 aDEW 91001011nas0 2200313 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123110001600141200001800157207003900175210006900214326001500283607003600298607002600334710006300360801003000423801001700453856005800470856005400528955007400582992002900656992001200685143212842000118880020130319051654.01 a1870-3550 a0001188800 a20100413a20069999 y0spay0103 ba0 aspa aMX ay 0  aaja 0yy 00aNorteamérica 0aAño 1, no. 1 (ene./jun. de 2006)- aMéxico, D. F.cUniversidad Nacional Autónoma de México, CISAN aSemestriel aAmérique du NordxPériodiques aMexiquexPériodiques01aCentro de Investigaciones sobre América del NortecMexico 3aFRbAbesc20100413gAFNOR 0bBNMEXgAACR24 uhttp://www.cisan.unam.mx/Norteamerica/ejemplares.html zContenu : sommaires depuis le vol. 1 no. 1 (2006)1 bvol. 3 no. 1 (jan/jun-2008) -....cParisdMagasins/AnnexeeP 8° 7133 aGEO RC Amérique du nord aDEW 97001134nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000069001552100040002243260014002644300082002785170118003605300070004786070060005487120083006088560048006919550063007399920028008029920014008300000053116000005311620130319051655.01 a0257-2168 aFNSP253281 a0000053116 a19900101b19851998 f ba0 aspa aCL aaea 10aNotas sobre la economía y el desarrollofNaciones Unidas, CEPAL aSantiago de ChilecCEPALd1985-1998 abimensuel 1tNotas sobre la economía y el desarrollo - Naciones Unidas, CEPAL,x0251-945310aNotas sobre la economía y el desarrollo - Naciones unidas, Comisión económica para América latina y el Caribe00aNotas sobre la economía y el desarrollo - Naciones Unidas, CEPAL aAmérique latinexConditions économiquesxPériodiques02aNations UniesbCommission économique pour l'Amérique latine et les Caraïbes uhttp://www.eclac.cl ou http://www.eclac.org1 b(1985 )-no. 618 (1998)cParisdMagasins/AnnexeeP 4° 2767 aGEO RD Amérique latine aDEW 330.901334nls 2200349 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001481350018001642000140001822100070003223000046003923200095004383260012005333360056005453370038006014300086006395300076007256060036008016060044008378010013008818560049008949920016009439920025009590000415148000041514820130319051655.02 a1286-9392 a0000415148 a a19989999k fre 01 ba0 afre aFR a 0  az aaf z 0  adr 10aNote d'information - Direction de la programmation et du développementfMinistère de l'Education nationaleb[Ressource électronique] aVanvescDirection de la programmation et du développementd1998- aTexte intégral à partir du n° 38, 1995 aUne sélection de ces notes est publiée dans le "Recueil d'études sociales" < P4°6477 > amensuel aDonnées textuelles accessibles uniquement en ligne aFichiers PDF télédéchargeables 1tNote d'information - Direction de l'évaluation et de la prospectivex(1149-1035)00aNote d'information - Direction de la programmation et du développement aEducationyFrancexPériodiques aEducation et EtatyFrancexPériodiques 0aFRbFNSP4 uhttp://www.education.gouv.fr/stateval/ni.htm aDEW 370-379 aGEO RA4.06 France 0101428nas 2200361 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000035001552100024001903260025002143260027002394210037002664220183003034300082004865170093005686060042006616070050007037100078007538010021008318560066008528560036009189550067009549720009010219920022010309920014010520000004817000000481720130319051655.01 a0766-6268 aFNSP106616 a0000004817 a19900101a19859999 ba0 afre aFR aaiu 10aNote de conjoncture de l'INSEE aPariscINSEEd1985- a3 n°s par anb1989- atrimestrielb1985-1988 1tPoint de conjoncture,x1253-1316 1aTendances de la conjoncture. Cahier 1, graphiques sur 10 ans (0754-1627) < P 4° 2730 > et Tendances de la conjoncture. Cahier 2, graphiques sur 20 ans (0754-1619) < P 4° 4685 > 1aTendances de la conjoncture. Note de synthèse (0150-8849) < P 4° 2730 bis >10aNote de conjoncture de l'Institut national de la statistique et des études économiques aConjoncture économiquexPériodiques aFrancexConditions économiquesxPériodiques02aInstitut national de la statistique et des études économiquesc(France) 3aFRbCCN0766-62684 uhttp://www.insee.fr/fr/indicateur/analys_conj/conj_resume.htm zAccès libre au texte intégral1 b(fev-1985) -(mar-2004)cParisdMagasins/AnnexeeP 4° 2730 bis aZPAY aGEO RA4.06 France aDEW 330.900963nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000080001502100033002303000081002633260015003443360058003593370066004174520066004837120028005498010013005778560090005909550005006800000534374000053437420130319051655.0 a0000534374 a a19389999k fre 01 ba0 aeng aGB az aaj z  adr 10aNotes and records of the Royal Society of Londonb[Ressource électronique] aLondoncRoyal Societyd1938- aAccès au texte intégral (réservé aux sites de Sciences-Po) jusqu'en 1998 aSemestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou télédéchargement 1tNotes and Records of the Royal Society of Londonx(0035-9149)02aRoyal Society of London 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00359149.html1 r01372nas 2200349 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000300015421001170018432001110030132600140041243000510042660700500047760700480052771000700057571100330064585600440067885600610072295500770078395701010086097200090096199100180097099200220098899200120101004002296X000007697520130319051655.01 a1168-9021 aFNSP349402 a0000076975 a19900101b19922009 ba0 afre aFR aaea 14aLes Notes bleues de Bercy aPariscDirection de la communication, Ministère de l'économie et des finances; Ministère du budgetd1992-2009 aA partir de juil.2004 publié également sous forme de lettre électronique bimensuelle en texte intégral aBimensuel 1aLes Notes bleues (Paris, 1981)xISSN 0244-1179 aFrancexConditions économiquesxPériodiques aFrancexPolitique économiquexPériodiques02aFrancebMinistère de l'économie, des finances et de l'industrie02aFrancebMinistère du budget4 uhttp://www.minefi.gouv.fr/notes_bleues/ zContenu : texte intégral depuis le n°117, juillet 19971 bno. 1 (oct-1992) -no. 363 (fev-2009)cParisdMagasins/AnnexeeP 4° 50271 bno. 1(1992) -no. 53 (1994) ; no. 54 (1995) -no. 149 (1998)cParisdMagasins/AnnexeeP Index 0720 aZPAY aexempb201205 aGEO RA4.06 France aDEW 33600819nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000077001502100052002272300024002793260012003036060040003156060027003558010013003828560033003958560073004289550005005019920012005069920011005180001165379000116537920130319051655.0 a0001165379 a a20099999k fre 01 ba0 afre aFR ar aaf z  adr 14aLes Notes de l'Institut européen du salariatb[Ressource électronique] aNanterrecInstitut européen du salariate2009- aRevue électronique amensuel aSociologie du travailxPériodiques aSalariatxPériodiques 0aFRbFNSP4 uhttp://www.ies-salariat.org/ zContenu : texte intégral des articles depuis le n°1, février 20091 r aDEW 331 aGEO RQ02086nas 2200685 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000033001502070010001832100027001932150010002202250023002303000013002533070040002663200013003063210031003193260011003503270013003614100034003744110027004084210024004354220024004594230024004834240024005074250024005314300024005554340024005794350024006034360024006274370024006514400024006754410024006994440024007234450024007474460024007714470024007954510024008194520024008434530024008674540024008914880024009155100030009395120025009695170025009945300065010195310043010845320030011275400013011577020024011708010013011948560188012079550005013950000895820000089582020130320122217.0 a0000895820 a a20059999 fre 01 ba0 afre aFR a 0  ar aak z 0 10aNotice périodique à l'Opac 1a2005- aPariscA. Colind2005- d23 cm20aQue sais-je ?v232 azone 300 aZone 307 : vol 1, A-D ; vol. 2, E-Z azone 320 aNote 321b2008-x0032-0023 aAnnuel1#azone 327 1tQue sais-je ?x0768-0066v232 1tzone 411x0011-0031v5 1tzone 421x0022-0032 1tzone 421x0023-0033 1tzone 423x0024-0034 tzone 424x0025-0035 tzone 425x0026-0036 1tzone 430x0027-0037 1tzone 434x0028-0038 1tzone 435x0029-0039 1tzone 436x0030-0040 1tzone 437x0031-0041 1tzone 440x0032-0042 1tzone 441x0033-0043 1tzone 444x0034-0044 1tzone 445x0035-0045 1tzone 446x0036-0046 1tzone 447x0037-0047 1tzone 451x0038-0048 1tzone 451x0039-0049 1tzone 453x0040-0050 1tzone 454x0041-0051 1tzone 488x0042-005210azone 510esous-titrezlat10azone 512esous-titre10azone 517esous-titre00azone 530bqualificatifjnuméro date ou vol.vnuméro volume 0azone 531bqualificatifvnuméro volume10azone 532zlangue du titre10azone 540 1aMagnierbDonatienne 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sociologyencyclopedia.comzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 a01077nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200002400160207003200184210003400216215001000250326001700260430003400277440003400311517001600345517001000361530002400371531002200395801001300417801003000430801002300460856011200483955007100595992002500666992001200691037898728000003437320130319051656.01 a0337-8721 aFNSP199113 a0000034373 a19900101b19721976 ba0 afre aFR ar aa a 10aNouveau Paris-Match 1aNo1231(1972) - No1394(1976) aPariscParis-Matchd1972-1976 d35 cm aHebdomadaire 1aParis-Match (1949)x0031-2029 1aParis-Match (1976)x0397-163510aParis Match10aMatch10aNouveau Paris-Match 0aNouv. Paris-Match 0aFRbFNSP 0aFRbAbesc20081202gAFNOR 0aFRbISSNc200305234 uhttp://anciensnumeros.parismatch.com/an/searchzCouvertures des anciens numéros sur le site de Paris-Match1 bno. 1183 (jan-1972)-no. 1387 (dec-1975)cParisdAnnexeeP F° 0151 aGEO RA4.06 France 01 aDEW 05001410nas0 2200373 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109106000600127110001600133200005200149207001800201210002500219301006800244326001600312430005400328601005000382606004000432606004800472606004300520676000800563710003600571801003000607856017000637856006500807955006700872955006000939992001200999992002501011147245389000120169620130319051656.0 a0001201696 a20101015a20109999k y0frey50 ba0 afre aFR ay 0  ar aah 0 14aLes Nouveaux cahiers du Conseil Constitutionnel 0aNo.29 (2010)- aPariscDallozd2010- aDemande de numérotation ISSN en cours par le CR70 (2010-10-14) aTrimestriel 1tLes Cahiers du Conseil Constitutionnelx1253-217701aFrancebConseil constitutionnelxPériodiques aDroit constitutionnelxPériodiques aDroit constitutionnelyFrancexPériodiques aCours constitutionnellesxPériodiques a34202aFrancebConseil constitutionnel 3aFRbAbesc20101015gAFNOR4 uhttp://www.conseil-constitutionnel.fr/conseil-constitutionnel/francais/documentation-publications/cahiers-du-conseil/les-cahiers-du-conseil-constitutionnel.5069.html zContenu : texte intégral des Cahiers , sauf le n° en cours1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 3421 bno. 29 (2010) -....cParisdMagasins/AnnexeeP 4° 6657 aDEW 342 aGEO RA4.06 France 0101197cas0 2200349 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200008600163207002900249210005500278300005000333326001500383430005700398517000800455606003000463710006200493801003000555856007000585856006500655955008400720972000900804992002200813992001200835081016816000074453620130319051657.01 a1769-101X a0000744536 a20041011b20042006m y0fre 0103 ba0 afre aFR a 0  ar aaga 0 y014aLes Nouveaux dossiers de l'audiovisuelf[INA, Institut national de l'audiovisuel] 1aN°1 (2004, sept./oct.)- aBry-sur-MarnecINA-Ed. et documentationd2004-2006 aA partir de 2007, ne paraît plus qu'en ligne aBimestriel 1tDossiers de l'audiovisuel (Bry-sur-Marne)x0767-477510aNDA aAudiovisuelxPériodiques02aInstitut national de l'audiovisuelc(France ;c1986-....) 3aFRbAbesc20041028gAFNOR4 uhttp://www.ina.fr/produits/publications/nouveaux_da/index.fr.html zSommaire des n°s et texte intégral à partir de janv. 20071 bno. 1 (sep/oct-2004) -no. 11 (jul/aou-2006)cParisdMagasins/AnnexeeP 4° 4600 aZCAD aGEO RA4.06 France aDEW 30202433cas0 2200385 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200027800148210003600426215004300462304026300505327006300768422011300831530011200944606001301056606003901069676000801108701005101116702005901167801003001226801003001256801001301286830000901299856017901308856017901487856036901666945001202035038395274000093169520130319051657.0 accn7117/2351 a0000931695 a19900328b18391842k y0frey0103 ba0 afre aDE ar aau 10aNouveaux supplémens au Recueil de traités et d'autres actes remarquables servant à la connaissance des relations étrangères des puissances et Etats dans leur rapport mutuel depuis 1761 jusqu'à présentfpar Frédéric Murhardgfondé par Georges Frédéric de Martens aGottinguecDieterichd1839-1842 a3 vol. (XVIII-810, 662, 904 p.)d21 cm aLes tomes 1 et 2 sont suivis "d'un appendice contenant des Traités et actes publics importans d'une date antérieure, qui ou n'ont pas encore vu le jour ou du moins ne se trouvent pas dans une collection générale quelconque de traités et d'actes publics"1#aTome 1 : 1761-1829. Tome 2 : 1765-1829. Tome 3 : 1806-1839 1tNouveau recueil de traités d'alliance, de paix, de trêve, de neutralité... depuis 1808 jusqu'à présent"00aNouveaux supplémens au Recueil de traités et d'autres actes remarquables... depuis 1761 jusqu'à présent aTraités aRelations internationalesxSources a327 1aMartensbGeorg Friedrich vonf(1756-1821)4340 1aMurhardbFriedrich Wilhelm August‎f(1779-1853)4340 3aFRbAbesc20060222gAFNOR 3aFRbAbesc20060222gAFNOR 0aFRbFNSP asdy04 uhttp://books.google.fr/books?id=yUZNAAAAcAAJ&dq=editions%3A65MOp27Og1cC&hl=fr&pg=PR1#v=onepage&q&f=falsezAccès libre au texte intégral. Tome 1 numérisé sur Google Livres4 uhttp://books.google.fr/books?id=-EZNAAAAcAAJ&dq=editions%3A65MOp27Og1cC&hl=fr&pg=PR3#v=onepage&q&f=falsezAccès libre au texte intégral. Tome 2 numérisé sur Google Livres4 uhttp://books.google.fr/books?id=BYJJAAAAcAAJ&dq=%22Nouveaux%20suppl%C3%A9mens%20au%20Recueil%20de%20trait%C3%A9s%20et%20d'autres%20actes%20remarquables%22&hl=fr&pg=PP5#v=onepage&q=%22Nouveaux%20suppl%C3%A9mens%20au%20Recueil%20de%20trait%C3%A9s%20et%20d'autres%20actes%20remarquables%22&f=falsezAccès libre au texte intégral. Tome 3 numérisé sur Google Livres bRD.040401611nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154207002500180210004000205326002400245326002500269326002800294421003600322436011900358530003500477606005200512606003800564607005000602801002100652856019200673856010800865955006900973955006601042955008101108992002201189992001401211039572374000000488320130319051657.01 a0395-6458 aFNSP106955 a0000004883 a19900101a19759999 ba0 afre aFR aa u 13aLe Nouvel économiste 1aN° 1, 10 oct. 1975- aPariscLe Nouvel économisted1975- aHebdomadaireb2003- aBimensuelb1996-2003 aHebdomadaireb1975-1995 1tLe Nouvel économiste. Magazine 1aEntreprises (0013-9068) < P 4° 1073 > et de Informations industrielles et commerciales (0395-644X) < P 4° 2265 >13aLe Nouvel économisteb(Paris) aHistoire économiquez20e sièclexPériodiques aEntreprisesyFrancexPériodiques aFrancexConditions économiquesxPériodiques 3aFRbCCN0395-64584 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bL'année en courscParisd27, Salle Rez-de-chausséeeP F° 05471 bno. 1226 (sep-2003) -....cParisdMagasins/AnnexeeP F° 05471 bno. 1 (10 oct-1975) -no. 1225 (jul-2003)cParisdMagasins/AnnexeeP 4° 3684 aGEO RA4.06 France aDEW 330.901485nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210004000180326001700220421005900237421003300296421005200329421005200381421004700433421005000480421003700530430004200567530003500609606002900644607002500673801002100698856003000719856008500749955006900834955006600903955007200969992002201041992001201063039225666000000489720130903161005.01 a0029-4713 aFNSP107018 a0000004897 a19900101a19649999 ba0 afre aFR aacu 13aLe Nouvel observateur aPariscLe Nouvel observateurd1964- aHebdomadaire 1tLe Nouvel observateur. Spécial entreprisesx1143-323X 1tAtlaséco (Paris)x0290-036X 1tLe Nouvel observateur des étudiantsx1299-2879 1tTravailler et investir dans le mondex1292-5403 1tFaits et chiffres (Paris. 1973)x0290-0378 1tLe Nouvel observateur. Hors-sériex1950-4152 1tDocuments Observateurx0987-7665 1aFrance Observateur (Paris)x1273-900603aLe Nouvel observateurb(Paris) aActualitéxPériodiques aFrancexPériodiques 3aFRbCCN0029-47134 uhttp://www.nouvelobs.com/ zContenu : sommaire et sélection d'articles en texte intégral depuis janv.1993.1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 69331 bno. 1939 (jan-2002) -....cParisdMagasins/AnnexeeP 4° 69331 bno. 1 (19 nov-1964) -no. 1938 (dec-2001)cParisdAnnexeeP F° 0132 aGEO RA4.06 France aDEW 05001085cas0 2200337 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123110001600141200006100157210002300218326001100241517004300252530006100295607007100356710004700427801003000474801003000504856005800534856003600592955005300628972000900681991001800690992001400708992002500722094684936000091919820130319051657.0 a1760-9054 a0000919198 a20060106a19999999k y0frey50 ba0 afre aFR ay 0  aakaih 0 13aLa Nouvelle-CalédoniefInstitut d'émission d'Outre-mer aPariscIEOMd1999- aAnnuel13aLa Nouvelle-Calédonieerapport annuel12aLaNouvelle-Calédonie - Institut d'émission d'Outre-mer aNouvelle-CalédoniexConditions économiquesxPériodiques2rameau02aInstitut d'émission d'Outre-merc(France) 3aFRbAbesc20100315gAFNOR 3aFRbAbesc20060113gAFNOR4 uhttp://www.ieom.fr/agence_caledonie_publication_3.asp4 zAccès libre au texte intégral1 b(1999) -....cParisdMagasins/AnnexeeP 8° 6856 aZGRA aexempb201212 aDEW 330.9 aGEO RA4.06 France 0100970nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210002900174300002500203326001600228606003600244676000800280801002100288856003400309856004800343955006600391955005900457957008600516972000900602992002100611992001200632039237060000003039520130319051658.01 a0048-0967 aFNSP184547 a0000030395 a19900101a19689999 ba0 afre aFR aahu 10aNouvelle école aPariscLabyrinthed1968- aN'a pas paru en 2004 aIrrégulier aSciences socialesxPériodiques a300 3aFRbCCN0048-09674 uhttp://www.revue-elements.com zContient : sommaires depuis le no. 35, 19801 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3001 bno. 3 (1968) -....cParisdMagasins/AnnexeeP 4° 26211 bl'index cumulatif 1968/1979 (n°1/33) constitue le n°34,automne 1979 de la revue aZCAD aGEO RQ Universel aDEW 30001221cas0 2200373 450 00100100000000200110001000500170002101100140003803500140005203500170006603500170008303500150010010000410011510100080015610200070016410600060017111000160017720000220019321000400021521500100025532600140026553000220027953100150030160600620031660600600037860600580043860600560049680100300055280100230058280200070060585601450061295500700075799100200082703757731X000109457420130319051658.0 a0184-7465 a07053439X accn0184-7465 aissn01847465 a0001094574 a19810121b18791940uuuy0frey0103 ba0 afre aFR ar aaeu uu 13aLa Nouvelle revue aPariscLa Nouvelle revued1879-1940 d24 cm aBimensuel03aLa Nouvelle revue 0aNouv. rev. aLivresxPrésentationsz19e sièclexPériodiques2rameau aLivresxPrésentationsz1900-1945xPériodiques2rameau aVie intellectuellez19e sièclexPériodiques2rameau aVie intellectuellez1900-1945xPériodiques2rameau 3aFRbAbesc20060718gAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34356973m/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1879-1935)1 bvol. 1 (1880) -vol. 25 (1903)cParisdMagasins/AnnexeeP 8° 0802 aPériobTP02 P801199cas0 2200349 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164106000600171110001600177200006200193210002900255215001000284326001600294430008400310440007100394530006200465606004200527801003000569801002300599802000700622856014500629955005500774991002000829038429624000109458420130319051658.0 a0995-8924 a07059709X accn0995-8924 aissn09958924 a0001094584 a19890601b18771921uuuy0frey0103 ba0 afre aFR ar aauu uu 10aNouvelle revue historique de droit français et étranger aParisc[s.n.]d1877-1921 d23 cm aTrimestriel 1tRevue de législation ancienne et moderne, française et étrangèrex0995-8908 1tRevue historique de droit français et étranger (1922)x0035-328000aNouvelle revue historique de droit français et étranger aDroitxHistoirexPériodiques2rameau 3aFRbAbesc20060717gAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34416607b/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1877-1921)1 b(1877) -(1887)cParisdMagasins/AnnexeeP 8° 0801 aPériobTP02 P800939nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210002500186326002300211326002600234607003000260710002700290801002100317856006300338856004100401955006300442957007200505972000900577992002700586992001200613039412024000003060020130319051658.01 a0249-0072 aFNSP184976 a0000030600 a19900101a19809999 ba0 afre aFR aahu 14aLes Nouvelles d'Afghanistan aPariscAFRANEd1980- aTrimestrielb1997- aBimestrielb1980-1996 aAfghanistanxPériodiques02aAmitié franco-afghane 3aFRbCCN0249-00724 uhttp://www.afrane.asso.fr/fr-php/Nouvelles_Afghanistan.php zContenu : sommaires depuis le no 1021 bno. 1 (jul-1980) -....cParisdMagasins/AnnexeeP 4° 47351 bvol. 1 (1980) -vol. 50 (1990)cParisdMagasins/AnnexeeP Index 0660 aZPAY aGEO RG4.01 Afghanistan aDEW 95801139nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000027001642100037001913200064002283260014002924300040003064880018003465300035003646060039003998010013004388560112004518560108005639550087006719720009007589920012007679920022007790000417663000041766320130319051658.01 a0399-1636 a0000417663 a a20009999k fre ba0 afre aFR a 0  ar aae z 0 14aLes Nouvelles fiscales aPariscGroupe Liaisons SAd2000- aMises à jour entre deux éditions annuelles du Lamy fiscal aBimensuel 1tLamy fiscal. Bulletins d'actualité 11aLamy fiscal14aLes Nouvelles fiscales (Paris) aDroit fiscalyFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/lamy/AccesBis.htm?acces=KoEjMqEjBeKq zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 853 (1er sep-2001) -no. 896 (jul-2003)cParisdMagasins/AnnexeeP 4° 5778 bis aZPAY aDEW 343 aGEO RA4.06 France00832nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000054001502100034002042300024002383260005002626060039002678010013003068560085003198560108004049550005005129920025005179920012005420000969196000096919620130319051658.0 a0000969196 a a19989999k fre 01 ba0 afre aFR ar aaz z  adr 14aLes Nouvelles fiscalesb[Ressource électronique] aPariscLamyline Reflexc1998- aRevue électronique a aDroit fiscalyFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 34301125cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200005000180207002800230210004600258326001600304430004000320606003600360710002800396801003000424801002300454802000700477856009000484856010800574955007200682972000900754992001200763107988100000105981620130319051658.01 a1951-9745 aissn19519745 a0001059816 a20060904b20062008k y0frey0103 ba0 afre aFR a 0  ar aahu 0y 10aNouvelles fondationsfFondation Gabriel Péri 1aNo 2 (2006)-no 9 (2008) aPariscFondation Gabriel Périd2006-2008 aTrimestriel 1tFondations (Paris. 2006)x1950-1331 aScience politiquexPériodiques02aFondation Gabriel Péri 3aFRbAbesc20061017gAFNOR 3aFRbISSNc20060901 a074 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue.php?ID_REVUE=NF zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 2 (2006) - no. 9 (avr-2008)cParisdMagasins/AnnexeeP 4° 7118 aZPAY aDEW 32000973nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000045001502100005001952300024002003000019002243260005002436060029002486070025002778010013003028560192003158560108005079550005006159920012006209920039006320001145136000114513620130319051659.0 a0001145136 a a20029999k fre 01 ba0 arus aRU ar aab z  adr 10aNovaâ gazetab[Ressource électronique] a aRevue électronique aBihebdomadaire a aActualitéxPériodiques aRussiexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aDEW 050 aGEO RA7.21 Russie (depuis 1991-92)01088nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210002500186326001500211530004100226606002700267607003500294607003300329676001000362710004000372856003100412856006400443955006800507955005900575972000900634992002000643992003900663992001200702992001200714038762730000007011020130319051659.01 a0130-3864 aFNSP323097 a0000070110 a19900101a19579999 ca0 arus aRU aaga 10aNovaâ i novejsaâ istoriâ aMoskvacNaukad1957- aBimestriel 0aNovaâ i novejšaâ istoriâbMoskva aHistoirexPériodiques aRussiexHistoirexPériodiques aURSSxHistoirexPériodiques a943.702aInstitut vseobŝej istorii (Moscou)4 uhttp://www.openweb.ru/nnh/ zContenu : sommaires depuis le n°1, 1998 (russe et anglais)1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 943.71 bno. 1 (1958) -....cParisdMagasins/AnnexeeP 8° 1636 aZPAY aGEO RA7.01 URSS aGEO RA7.21 Russie (depuis 1991-92) aDEW 947 aDEW 90901256nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210003000181326001600211430003100227517006500258606005400323606005400377606004500431606004500476710005000521801002100571856007100592856005900663955007000722972000900792991001800801992002800819992002300847992001200870038972220000003064620130319051659.01 a0101-3300 aFNSP185506 a0000030646 a19900101a19819999 ba0 apor aBR aahu 10aNovos estudos - CEBRAP aSão PaulocCEBRAPd1981- aTrimestriel 1aEstudos CEBRAP (0100-7025)10aNovos estudos - Centro Brasileiro de Análise e Planejamento aSciences socialesyAmérique latinexPériodiques aScience politiqueyAmérique latinexPériodiques aScience politiqueyBrésilxPériodiques aSciences socialesyBrésilxPériodiques02aCentro brasileiro de análise et planejamento 3aFRbCCN0101-33004 uhttp://novosestudos.uol.com.br/conteudoVirtual/conteudoVirtual.asp zContenu : sommaires et résumés des derniers numéros1 bvol. 1 no. 1 (dec-1981) -....cParisdMagasins/AnnexeeP 8° 3795 aZPAY aexempb201001 aGEO RD Amérique latine aGEO RD4.13 Brésil aDEW 98000896nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001900139210006000158326002500218326002600243517002300269530003200292607005300324801002100377856007500398955007000473957005700543991001800600038763192000003064720130502110254.01 a0029-5795 aFNSP185507 a19900101a19549999 ba0 aspa aES aafa 10aNuestro tiempo aPamplona‎cEdiciones Universidad de Navarra‎d1954- aBimestriel‎b2009- aMensuel‎b1954-200810aNT. Nuestro tiempo00aNuestro tiempo‎bPamplona aEspagnexPolitique et gouvernementxPériodiques 3aFRbCCN0029-57954 uhttp://www.unav.es/nuestrotiempo/zSommaires des nos à partir de 20091 bno. 23 (1956) -no. 396 (1987)cParisdMagasins/AnnexeeP 8° 14671 b(1954) -(1958)cParisdMagasins/AnnexeeP Index 0058 aexempb20130501068nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210003500173326001500208606004000223606004700263606005400310606004700364801002100411856002500432856008900457955006400546972000900610991001800619992002800637992002500665992001200690992001600702039243346000003065020140108160825.01 a0251-3552 aFNSP185513 a0000030650 a19900101a19729999 ba0 aspa aVE aagu 10aNueva sociedad aCaracascNueva sociedadd1972- aBimestriel aSociologieyVenezuelaxPériodiques aScience politiqueyVenezuelaxPériodiques aScience politiqueyAmérique latinexPériodiques aSociologieyAmérique latinexPériodiques 3aFRbCCN0251-35524 uhttp://www.nuso.org/ zContenu : sommaires, résumés et texte intégral depuis le n°1, juillet-août 19721 bno. 28 (jan-1977) -....cParisdMagasins/AnnexeeP 8° 3998 aZPAY aexempb201001 aGEO RD Amérique latine aGEO RD4.20 Venezuela aDEW 301 aDEW 320-32101700nls 2200289 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010023001091020007001321060006001391100016001451350018001612000057001792100005002362300024002413260013002653301019002786070028012978010013013258560034013389550005013729920012013779920021013890001206049000120604920130319051700.0 a1626-0252 a0001206049 a a20019999k fre 01 ba0 afreaengaspaapor aFR ar aau z  adr 10aNuevo mundo mundos nuevosb[Ressource électronique] a aRevue électronique aInconnue aNuevo Mundo Nuevos Mundos es una revista de historia y ciencias sociales que privilegia el comparatismo y las miradas cruzadas sobre las Américas y el mundo hispánico en la larga duración. La variedad de los temas reflejan las orientaciones temáticas y teóricas de nuestro centro de investigación, el CERMA (EHESS), cuando se fundó la revista (2001), integrado posteriormente en el MASCIPO (CNRS): relaciones entre mestizaje y formas tempranas de mundialización ; la historia política y el papel del Estado; la historia de las representaciones y sensibilidades, las circulaciones de hombres, ideas y conocimientos ; y la antropología, ya sea histórica o contemporánea. La revista está abierta a artículos inéditos de investigadores americanistas y publica numerosos materiales útiles a la constitución del patrimonio científico americanista dentro del novedoso campo de investigación abierto por las Humanidades Digitales. Se publica en cuatro idiomas: español, francés, portugués, e inglés. aAmériquexPériodiques 0aFRbFNSP4 uhttp://nuevomundo.revues.org/1 r aDEW 300 aGEO RB Amérique01145nas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200006200180207003300242210004900275326001600324606004400340606003700384606003600421801003000457801002300487802000700510856006300517856007300580955008600653972000900739992001200748992002300760111800692000107577820130319051700.01 a1559-1905 aissn15591905 a0001075778 a20070111a20069999k y0frey0103 ba0 aeng aUS a 0  ar aaha 0uu 14aThe objective standardea journal of culture and politics 0aVol. 1, no. 1 (Spring 2006)- aGlen Allen, VacGlen Allen Press, LLCd2006- aTrimestriel aRelations internationalesxPériodiques aVie intellectuellexPériodiques aCulture politiquexPériodiques 3aFRbAbesc20070111gAFNOR 3aFRbISSNc20070111 a014 uhttp://www.theobjectivestandard.com/issues/past-issues.asp zContenu : sommaires des numéros depuis le vol. 1, no 1, Spring 20061 bvol. 1 no. 1 (mar-2006) -vol. 2 no. 4 (2008)cParisdMagasins/AnnexeseP 8° 6947 aZSAB aDEW 001 aGEO RC2 Etats-Unis01154nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009100154207001800245210002300263326001500286607003300301710006700334801002100401856005900422856003600481856003600517856004800553955007300601957006800674972000900742992005100751992001400802039380165000000492020130319051700.01 a0304-3398 aFNSP107045 a0000004920 a19900101a19629999 f ba0 afre aFR aagu 10aObservateur de l'OCDE/fOrganisation de coopération et de développement économiques 1ano. 1 (1962)- aPariscOCDEd1962- aBimestriel aPays de l'OCDExPériodiques02aOrganisation de coopération et de développement économiques 3aFRbCCN0304-33984 uhttp://www.oecd.org/publications/observer/index-fr.htm zAccès libre au texte intégral4 uhttp://www.observateurocde.org/ zcontenu : accès au dernier numéro publié1 bno. 1 (1962) -no. 226/227 (2001)cParisdMagasins/AnnexeeP 4° 19991 b(1962-1967) ; (1984-1988)cParisdMagasins/AnnexeeP Index 0113 aZECH aGEO RN1 Pays industrialisés, pays occidentaux aDEW 330.901122nas 2200313 i 450 001001000000002001100010005001700021011001400038035001300052035001500065100004100080101000800121102000700129110001600136200009900152210004100251326002700292326002700319440003100346606004200377710005700419801002100476856002600497856006500523955006800588957012000656991001800776992001400794038027828000000203520130411112724.01 a0751-6614 aFNSP7783 a0000002035 a19900101b19821993 ba0 afre aFR aazu 10aObservations et diagnostics économiquesfObservatoire français des conjonctures économiques aPariscPresses de la FNSPd1982-1993 aTrimestrielb1984-1994 aIrrégulierb1982-1983 1aRevue de l'OFCEx1265-9576 aConjoncture économiquexPériodiques02aObservatoire français des conjonctures économiques 3aFRbCCN0751-66144 uhttp://www.persee.fr/ zAccès libre au texte intégral des articles de 1982 à 19941 bno. 1 (1982) -no. 47 (1993)cParisdMagasins/AnnexeeP 8° 45481 b(1982) -(1990)zIndex et table des matières communs à la Revue et la LettrecParisdMagasins/AnnexeeP Index 0656 aexempb201207 aDEW 330.901038nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005600163210006100219326001500280530003100295606004700326676000800373710005400381801001300435856006300448856004600511955006600557955006400623972000900687992001600696039983854000041509220130319051700.01 a1165-2675 a0000415092 a a19919999k fre ba0 afre aFR a 0  ar aaj z 0 12aL'Observatoireela revue des politiques culturelles aGrenoblecObservatoire des politiques culturellesd1991- aSemestriel12aL'Observatoireb(Grenoble) aPolitique culturelleyFrancexPériodiques a30602aObservatoire des politiques culturellesc(France) 0aFRbFNSP4 uhttp://www.observatoire-culture.net/index.php?id=9&idp=9.0 zContient : sommaires depuis le n°2, 19911 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3061 bno. 16 (aut-1998) -....cParisdMagasins/AnnexeeP 4° 6896 aZPAY aDEW 350-35400825nls 2200265 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001341350018001502000092001682070023002602100022002832300024003053000089003296060044004188010013004628560044004759550040005190000310701000031070120130319051700.0 a0000310701 a a19999999k fre ba0 afre aFR a 0  az aau z 0  adr 12aL'Observatoire du politiqueb[Ressource électronique]/g réd. en chef Thierry Leterre 1aN°1(1999, janv.)- aPariscIEPd1999- aDonnées textuelles aAccès au 18/04/2000 : World Wide Web. URL : http://www.sciences-po.fr/observatoire/ aRelations internationalesxPériodiques 0aFRbFNSP4 uhttp://www.sciences-po.fr/observatoire/1 rUniquement consultable sur Internet00959nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000049001502100005001992300024002043260017002286060029002456070034002748010013003088560192003218560108005139550005006219920031006269920012006570001131855000113185520130319051700.0 a0001131855 a a19819999k fre 01 ba0 aeng aGB ar aac z  adr 10aObserver (London)b[Ressource électronique] a aRevue électronique ahebdomadaire aActualitéxPériodiques aGrande-BretagnexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.02 Grande-Bretagne aDEW 05001264nas 2200349 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000260015421000250018032600120020543000830021760600450030060700610034560700590040660700570046560700550052271000560057771100310063385600470066485600740071195500690078597200090085499200390086399200120090203918241X000008388120130319051700.01 a0207-3676 aFNSP373406 a0000083881 a19900101a19919999 ca0 arus aRU aafa 10aObšestvo i ekonomika aMoskvacNaukad1991- aMensuel 1aIzvestiâ akademii nauk SSSR. Seriâ ekonomiceskaâ,x0321-172X < P 8° 2823 > aEconomie politiqueyRussiexPériodiques aRussiexConditions économiquesz1991-....xPériodiques aRussiexPolitique économiquez1991-....xPériodiques aRussiexConditions socialesz1991-....xPériodiques aRussiexPolitique socialez1991-....xPériodiques02aRossijskij soûz promyšlennikov i predprinimatelej02aRossijskaâ akademiâ nauk4 uhttp://members.xoom.com/_XOOM/asek/O&E.HTM zContenu : sommaires depuis le n°11-12, 1997 (en russe et en anglais)1 bno. 1/2 (jan/fev-1992) -....cParisdMagasins/AnnexeeP 8° 2823 aZPAY aGEO RA7.21 Russie (depuis 1991-92) aDEW 33001115nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004400139210004000183326001600223430006400239452006700303530004400370606003400414801002100448856021400469955007000683972000900753991001800762992002100780992001200801038892502000003072720130725113729.01 a0090-8320 aFNSP185667 a19900101a19739999 ba0 aeng aUS aahu 10aOcean development and international law aNew YorkcTaylor and Francisd1973- aTrimestriel 1aOcean development and international law journal,x0883-4873 1tOcean development and international law (Online)‎x1521-064200aOcean development and international law aDroit de la merxPériodiques 3aFRbCCN0090-83204 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713774325db=allzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (pri-1973) -....cParisdMagasins/AnnexeeP 8° 3280 aZSAB aexempb200911 aGEO RQ Universel aDEW 34101257cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200004100180207001500221210002300236300006600259326001100325430004500336532006700381606003700448710006700485801003000552801002300582802000700605856013500612955006400747972000900811992005100820992001200871130771171000118260220130711122416.0 a1995-2848 aissn19952848 a0001182602 a20090127a20089999k y0frey0103 ba0 aeng aZZ ay  ar aaku uu 10aOECD journaleeconomic studiesfOECD 0aVol. 2008- aParisbOECDc2008- a2012, dernière éd. papier voir ensuite en version en ligne. aAnnuel 1tOECD economic studies (Print)x0255-082212aOrganisation for economic co-operation and development journal aEconomie politiquexPériodiques02aOrganisation de coopération et de développement économiques 3aFRbAbesc20090428gAFNOR 3aFRbISSNc20090427 a004 uhttp://www.oecd-ilibrary.org/fr/economics/oecd-journal-economic-studies_19952856zContenu : texte intégral du rapport depuis 20081 b(2008) ; (2010) -(2012)cParisdMagasins/AnnexeeP 4° 7269 aZECH aGEO RN1 Pays industrialisés, pays occidentaux aDEW 33000825nls 2200253 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200006900124210002300193230002400216326001100240606003700251710006700288801001300355856013500368955000500503992005100508992001200559000124659020130711122400.0 a a20089999k fre 01 ba0 aeng aZZ ar aak z  adr 10aOECD journalb[Ressource électronique]:eeconomic studiesfOECD aParisbOECDc2008- aRevue électronique aAnnuel aEconomie politiquexPériodiques02aOrganisation de coopération et de développement économiques 0aFRbFNSP4 uhttp://www.oecd-ilibrary.org/fr/economics/oecd-journal-economic-studies_19952856zContenu : texte intégral du rapport depuis 20081 r aGEO RN1 Pays industrialisés, pays occidentaux aDEW 33001255cas0 2200385 450 001001000000002001100010005001700021011001400038035001400052035001400066035001700080035001500097100004100112101000800153102000700161105001800168106000600186110001600192200003000208210002200238326001800260451005800278517008800336530003900424606003700463710006700500801003000567801002300597802000700620856009900627856005300726955006600779992001200845992001200857114024669000115655220140107131635.01 a1608-7143 a070253331 a060663995 aissn16087143 a0001156552 a20070423a19 9999 y0frey0103 ba0 aeng aFR ay  ar aai 10aOECD journal on budgeting aPariscOCDEd19?- a3 n°s par an 1tRevue de l'OCDE sur la gestion budgétairex1608-715110aOrganisation for Economic Co-operation and Development journal on budgeting (Print)10aOECD journal on budgetingb(Print) aFinances publiquesxPériodiques02aOrganisation de coopération et de développement économiques 3aFRbAbesc20080131gAFNOR 3aFRbISSNc20070301 a004 uhttp://puck.sourceoecd.org/vl=4638055/cl=32/nw=1/rpsv/periodical/p9_about.htm?jnlissn=16087143 zContient : texte intégral depuis le no. 1, 20011 bvol. 7 no. 3 (2007) -....cParisdMagasins/AnnexeeP 8° 6600 aGEO RN1 aDEW 33601389nas 2200337 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200005500148210002300203326001100226430006600237510007200303606004400375676000800419710009500427801001300522856028300535856007800818955006500896972000900961992005100970992001401021992001601035058053514000042946120130518172557.01 a1682-7457 a a20019999k f fre ba0 amul aFR a 0  ar aak z 0 10aOECD statistics on international trade in services aPariscOCDEd2001- aAnnuel 1tServices. Statistics on international transactionsx1025-414510aStatistiques de l'OCDE sur les échanges internationaux de services aStatistiques commercialesxPériodiques a33702aOrganisation de coopération et de développement économiquesbDirection des statistiques 0aFRbFNSP4 uhttp://oberon.sourceocde.org/vl=838084/cl=20/nw=1/rpsv/cgi-bin/jsearch_oecd?limittitles=&cheese=searchdb&oecd-select=outlook_annuals.htm&form=expert&search0=oecd+statistics+on+international+trade+in+services&search=&field0=tka&system=oecd_all&sortresultsby=rev_timestamp&what=d1 zAccés réservé aux lecteurs inscrits à la Bibliothèque via Sourceocde1 b(1990/1999) -(1995/2004)cParisdMagasins/AnnexeeP 4° 6173 aZPAY aGEO RN1 Pays industrialisés, pays occidentaux aDEW 338.4 aDEW 310-31900958nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210003300186326001400219421005800233517004100291517003700332607004400369801002100413856002300434856007300457955006400530972000900594992002500603992001600628038764210000003073920130319051701.01 a0029-859X aFNSP185703 a0000030739 a19900101a19489999 ba0 ager aDE aaeu 14aDie öffentliche Verwaltung aStuttgartcKohlhammerd1948- aBimensuel 1aBaden-württembergisches Verwaltungsblatt (0005-3724)10aOffentliche Verwaltung (Zeitschrift)10aDOV. Die öffentliche Verwaltung aAllemagnexAdministrationxPériodiques 3aFRbCCN0029-859X4 uhttp://www.doev.de zContient : sommaires, archives, texte intégral de la jurisprudence.1 bno. 19 (oct-1952) -....cParisdMagasins/AnnexeeP 4° 1050 aZCAD aGEO RA5.01 Allemagne aDEW 350-35401015nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200003700138210003500175326001200210517002800222601003900250710005400289801002100343856005100364856005400415955006000469955011000529972000900639991001800648992002300666992001200689039103722000016708420130420120041.0 a0160-9890 aFNSP636162 a0000167084 a19900101a18879999 ba0 aeng aUS10aOfficial congressional directory aWashington, D.C.cUSGPOd1887- aBiennal10aCongressional directory02aEtats-UnisbCongressxPériodiques02aEtats-UnisbCongressbJoint Committee on Printing 3aFRbCCN0160-98904 uhttp://www.gpoaccess.gov/cdirectory/index.html zAccès en ligne depuis le 104e congrès (1995-96)1 b(1981) -(2009/2010)cParisdMagasins/annexeeP 8° 53331 b(1905) ; (1947) ; (1951) -(1952) ; (1957) ; (1964) ; (1966) -(1979)cParisdMagasins/annexeeCOL 8° 0396 aZPAY aexempb201109 aGEO RC2 Etats-Unis aDEW 32800773nls 2200253 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200006400124210003600188230002400224326001200248601003900260710005400299801001300353856011300366955000500479992002300484992001200507000124326320130522152447.0 a a19969999k fre 01 ba0 aeng aUS ar aal z  adr 10aOfficial congressional directoryb[Ressource électronique] aWashington, D.C.cUSGPOd11996- aRevue électronique aBiennal02aEtats-UnisbCongressxPériodiques02aEtats-UnisbCongressbJoint Committee on Printing 0aFRbFNSP4 uhttp://www.gpoaccess.gov/cdirectory/index.htmlzAccès au texte intégral depuis le 104e congrès de 1995-961 r aGEO RC2 Etats-Unis aDEW 32801171nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000020001552100023001752250019001983260011002174370039002285170029002676060041002967100040003378560281003778560108006589550054007669720009008209920012008299920016008410000233166000023316620130319051702.0 a1029-4309 aFNSP826547 a0000233166 a19900101a19979999 ba0 afre aFR aaka 10aOil information aPariscOCDEd1997-21aIEA statistics aannuel 1aOil and gas informationx1016-501010aDonnées sur le pétrole aPétrolexStatistiquesxPériodiques02aAgence internationale de l'énergie4 uhttps://acces-distant.sciences-po.fr/fork?http://lysander.sourceocde.org/vl=969204/cl=11/nw=1/rpsv/cgi-bin/jsearch_oecd?limittitles=&cheese=searchdb&oecd-select=home.htm&form=expert&search0=oil+information&search=&field0=tka&system=oecd_all&sortresultsby=rev_timestamp&what=d14 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1996)-(2006)cParisdMagasins/AnnexeeP 4° 6725 aZPAY aDEW 333 aDEW 310-31900807nls 2200253 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200005300124210003500177230002400212326001100236607005400247710005100301801001300352856014600365955000500511992002300516992001400539000124311920130522152221.0 a a20109999k fre 01 ba0 aeng aUS ar aak z  adr 10aJoint economic reportb[Ressource électronique] aWashington, D.C.cUSGPOd2010- aRevue électronique aAnnuel aEtats-UnisxConditions économiquesxPériodiques02aEtats-UnisbCongressbJoint Economic Committee 0aFRbFNSP4 uhttp://www.jec.senate.gov/public/index.cfm?p=Search&filter=0&num=10&q=joint+economic+reportzAccès au texte intégral du rapport depuis 20101 r aGEO RC2 Etats-Unis aDEW 330.900834nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000047001502100027001972300005002243000077002293260016003063360056003223370018003786060037003967100023004338010013004568560046004699550005005159920012005200000505682000050568220130319051702.0 a0000505682 a a19979999k fre 01 ba0 afre aFR ar aay z  adr 10aOiseau-tempêteb[Ressource électronique] aPariscAb Iratod1997- a aTexte intégral depuis le n°1, printemps 1997 jusqu'au n°8, été 2001 airrégulier aDonnées textuelles uniquement disponibles en ligne aFichiers HTML aMouvements sociauxxPériodiques02aAb Iratoc(France) 0aFRbFNSP4 uhttp://abirato.free.fr/3oiseau/OISEAU.HTM1 r aDEW 30001055nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003000163210004200193326001500235430003800250606002900288606003600317801001300353830005800366856010500424856010800529955008300637972000900720992001200729050921134000032690320130319051704.01 a1468-4527 a0000326903 a a20009999k fre ba0 aeng aGB a 0  ar aag z 0 10aOnline information review aBradfordcMCB University Pressd2000- abimestriel 1tOnline & CDROM review,x1353-2642 aCédéromsxPériodiques aBases de donnéesxPériodiques 0aFRbFNSP aabonnement annulé pour 2003, le n° 6 n'arrivera pas4 uhttps://acces-distant.sciences-po.fr/fork?http://www-fr.ebsco.com/online/direct.asp?JournalID=105309 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 24 no. 1 (2000) -vol. 26 no. 5 (2002)cParisdMagasins/AnnexeeP 4° 6217 aZPAY aDEW 02001007nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001341350018001502000084001682100023002522300024002753000090002993000092003893260015004816070042004967120107005388010013006458560030006589550029006880000311793000031179320130319051704.0 a0000311793 a a19949999k fre ba0 aeng aFR a 0  az aau z 0  adr 10aOnline working papers - OECD Department of Economicsb[Ressource électronique] aPariscOCDEd1994- aDonnées textuelles aAccès au 18/04/2000 : World Wide Web. URL : http://www.oecd.org/eco/wp/ onlinewp.htm aTexte intégral au format Word ou au format pdf, télédéchargeable avec Adobe Acrobat aCollection aPays de l'OCDExPolitique économique02aOrganisation de coopération et de développement économiquesbDépartement des affaires économiques 0aFRbFNSP4 uhttp://www.oecd.org/home/1 rConsultable sur Internet01262nas 2200349 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000180015421000690017232600120024151700630025360100650031660600530038160600440043471000510047880100210052985600370055085600760058795500670066395501170073097200090084799100180085699100260087499200120090003962076X000003075220130319051704.01 a0474-6279 aFNSP185757 a0000030752 a19900101a19689999 f ba0 aeng aAT aafu 10aOPEC bulletin aViennacOrganization of the Petroleum Exporting Countriesd1968- aMensuel10aOrganization of the Petroleum Exporting Countries bulletin02aOrganisation des pays exportateurs de pétrolexPériodiques aPétrole‎xIndustrie et commercexPériodiques aRessources énergétiquesxPériodiques02aOrganisation des pays exportateurs de pétrole 3aFRbCCN0474-62794 uhttp://www.opec.org/opec_web/en/ zContient les n°s en texte intégral depuis le vol. 32 no. 1 (jan-2001)1 bvol. 24 no. 1 (1993) -....cParisdMagasins/AnnexeeP 4° 63461 bno. 1(1968) -no. 1 (1973) ; vol. 12 no. 10 (oct-1981) -vol. 23 no. 10 (1992)cParisdMagasins/AnnexeeP 8° 2511 aZGRA aexempb200904 aexempb201205 (P 4°) aDEW 33300879nas 2200301 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000025001412100028001663260015001946070053002096070026002627100013002887110036003018560029003378560025003669550064003919570078004559720009005339920023005429920012005650000211878000021187820130319051705.0 aFNSP765645 a0000211878 a19900101a19899999 ba0 aspa aBO aaga 10aOpiniones y analisis aLa PazcFUNDEMOSd1989- aBimestriel aBoliviexPolitique et gouvernementxPériodiques aBoliviexPériodiques02aFUNDEMOS02aHanns-Seidel-Stiftungc(Munich)4 uhttp://www.fundemos.org/ zAccès aux sommaires1 bno. 21 (mai-1995) -....cParisdMagasins/AnnexeeP 4° 67631 bno. 1 (1989) -no. 100 (2009)zse trouve dans le no. 99 (2009) de la revue aZGRA aGEO RD4.12 Bolivie aDEW 98000990nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000067001502100034002172300005002513000107002563260016003633360056003793370018004354300032004536060039004857100027005247110046005518010013005978560033006109550005006439920016006480000505636000050563620130319051705.0 a0000505636 a a20019999k fre 01 ba0 amul aCA ar aah z  adr 10aOptimum en direct =dOptimum Onlineb[Ressource électronique] aOttawacOptimum Onlined2001- a aTexte intégral depuis le vol. 31, n°1, novembre 2001 accessible après inscription gratuite en ligne atrimestriel aDonnées textuelles uniquement accessibles en ligne aFichiers HTML 1tOptimum (Ottawa)x0475-1906 aGestion d'entreprisexPériodiques02aSummit Groupc(Canada)02aCentre d'études en gouvernancec(Ottawa) 0aFRbFNSP4 uhttp://www.optimumonline.ca/1 r aDEW 650-65801134nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000061001642100044002253260015002694220039002844300042003236060071003656060064004366060069005007120026005698010013005958560055006088560037006639550075007009720009007759920012007840000539809000053980920130319051705.01 a1774-9603 a0000539809 a a20039999k fre ba0 afre aFR a 0  ar aaj z 0 12aL'Option de Confrontations EuropefConfrontations Europe aMontreuilcConfrontations Europed2003- aSemestriel 1tLa Lettre de Confrontations Europe 1tL'Option de Confrontationsx1262-2230 aParticipation politiqueyPays de l'Union européennexPériodiques aSociété civileyPays de l'Union européennexPériodiques aParticipation socialeyPays de l'Union européennexPériodiques02aConfrontations Europe 0aFRbFNSP4 uhttp://www.confrontations.org/spip.php?rubrique1794 zAccès libre au texte intégral.1 bno. 18 ( juin 2003) -no. 21 (2005)cParisdMagasins/AnnexeeP 8° 6703 aZCAD aDEW 32201176nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001000154210006300164326001600227530002400243606004400267607005300311676000800364710005900372801002100431856010500452856003700557955006700594955010300661972000900764991001800773992002300791992001200814038766302000000492920130319051705.01 a0030-4387 aFNSP107054 a0000004929 a19900101a19579999 ba0 aeng aUS aahu 10aOrbis aPhiladelphia, PacForeign Policy Research Instituted1957- aTrimestriel 0aOrbisbPhiladelphia aRelations internationalesxPériodiques aEtats-UnisxRelations extérieuresxPériodiques a32702aForeign Policy Research Institutec(Philadelphie, Pa.) 3aFRbCCN0030-43874 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/web-editions/journal/00304387 zContenu : sommaires et résumés1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 1 no. 2 (aut-1957) -....cParisdMagasins/AnnexeeP 8° 1874wManquant : vol. 32, no. 2, 1987 aZSAB aexempb201010 aGEO RC2 Etats-Unis aDEW 32701167cas0 2200361 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164105001800171110001600189200007700205207002900282210002800311326001800339430005400357607003500411710007600446801003000522801002300552802000700575856003200582856007300614955007800687992001200765992002800777040387089000119046320130319051705.01 a1262-1692 a094577439 accn1262-1692 aissn12621692 a0001190463 a19950427a19949999k y0frey50 ba0 afre aFR ay  aagu uu 12aL'Ordinaire latino-américainfUniversité de Toulouse-Le Mirail, IPEALT 1aN° 152/153 (juil-1994)- aToulousecIPEALTd1994- a3 n°s par an 1tL'Ordinaire Mexique Amérique centralex0997-0584 aAmérique latinexPériodiques02aInstitut pluridisciplinaire d'étude sur l'Amérique latinec(Toulouse) 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20081014 a074 uhttp://ipeat.univ-tlse2.fr/ zContenu : sommaires et résumés depuis le no. 152/153, jul/oct 19941 bno. 208/209 (sep-2007/avr-2008) -....cParisdMagasins/AnnexeeP 8° 7142 aDEW 980 aGEO RD Amérique latine01220nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004500154210003600199326001100235430007500246440006300321452007000384530005500454601003300509606003500542710001900577830006000596856011100656955007200767972000900839992002200848992001200870161409776000006277620140107143032.01 a2280-4153 aFNSP287546 a0000062776 a19900101b19852005 ba0 aeng aIT aaka 10aOrdinary general meeting of shareholders aRomacBanca d'Italiad1985-2005 aAnnuel 1aAdunanza generale degli azionisti - Banca nazionale del regno d'Italia 1tAnnual report (Banca d'Italia. Testo stampato),x2239-9674 1tOrdinary general meeting of shareholders (Online), ISSN 2280-416110aOrdinary general meeting of shareholders‎bPrint02aBanca d'ItaliaxPériodiques aFinancesyItaliexPériodiques02aBanca d'Italia aP 4° : coll. jetée (1985-2005). COL4° à Locarchives4 uhttp://www.bancaditalia.it/pubblicazioni/relannzAccès au texte intégral du rapport depuis l'année 19971 b(1895) -(1941) ; (1943) -(1979)cParisdMagasins/AnnexeeCOL4°0309 aZGRA aGEO RA6.03 Italie aDEW 33200918nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000146001502100032002962300024003283260011003526010033003636060035003967100019004318010013004508560052004638560062005159550005005779920022005829920012006040001131334000113133420130319051705.0 a0001131334 a a19979999k fre 01 ba0 aeng aIT ar aak z  adr 10aOrdinary general meeting of shareholders held in... - Banca d'Italiab[Ressource électronique]eabridged report for the yearfBanca d'Italia aRomacBanca d'Italiad1997- aRevue électronique aAnnuel02aBanca d'ItaliaxPériodiques aFinancesyItaliexPériodiques02aBanca d'Italia 0aFRbFNSP4 uhttp://www.bancaditalia.it/pubblicazioni/relann zContenu : texte intégral du rapport depuis l'année 19971 r aGEO RA6.03 Italie aDEW 33201015nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200006700160210003000227326001100257530002000268606004300288606003800331801002100369856006600390856005900456955006100515955007200576972000900648991001800657992001400675038829495000000786420140106120850.01 a0048-2129 aFNSP113448 a0000007864 a19900101a19489999 ba0 ager aDE ar aaku 10aOrdoeJahrbuch für die Ordung von Wirtschaft und Gesellschaft aStuttgartcFischerd1948- aAnnuel10aOrdobStuttgart aLibéralisme économiquexPériodiques aEconomie de marchéxPériodiques 3aFRbCCN0048-21294 uhttp://www.luciusverlag.com/hauptseite/ORDO/ordo%20gesamt.htm zContenu : accès aux sommaires depuis le vol.51 (2000)1 bvol. 31 (1980) -....cParisdMagasins/AnnexeeP 8° 52611 bvol. 1 (1948) -vol. 30 (1979)cParisdMagasins/AnnexeeCOL 8° 0199 aZCAD aexempb201110 aDEW 330.101058nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007500154210002400229326002200253326002700275326002600302517001700328530002700345606004700372856010800419856010800527955007000635972000900705991001800714992001200732036737860000014541420130319051706.01 a1350-5084 aFNSP574211 a0000145414 a19950106a19949999 ba0 aeng aGB aaga 10aOrganizationethe critical journal of organization, theory and society aLondoncSaged1994- aBimestrielb2004- aTrimestrielb1995-2003 aSemestrielb1994-199410aOrganization00aOrganizationb(London) aSociologie des organisationsxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jul-1994) -....cParisdMagasins/AnnexeeP 8° 6087 aZSAB aexempb201212 aDEW 30101413nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200031200154210003700466326001900503326002900522326002600551326002700577606004700604606003900651710004600690801002100736856010800757856010800865955005900973972000901032991001801041992001601059039122174000003090520130319051707.01 a0170-8406 aFNSP186088 a0000030905 a19900101a19809999 ba0 aeng aDE aafu 10aOrganization studiesean international multidisciplinary journal devoted to the study of organizations, organization, organizing and the organized in, of and between societiesfpublished in collaboration with the European Group for Organizational Studies (EGOS) and the Maison des sciences de l'homme, Paris aBerlincWalter de Gruyterd1980- aMensuelb2005- a9 n°s par anb2003-2004 aBimestrielb1994-2002 aTrimestrielb1980-1993 aSociologie des organisationsxPériodiques aGestion d'entreprisexPériodiques02aGroupe européen d'études d'organisation 3aFRbCCN0170-84064 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1980) -....cParisdMagasins/AnnexeeP 8° 4295 aZCAD aexempb201103 aDEW 650-65801027nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000110015421000400016530000320020532600160023753000230025360700310027667600080030771000320031580100210034785600810036885600390044995500660048895500710055497200090062599200430063499200120067703876654X000003090720130319051707.01 a0030-5227 aFNSP186091 a0000030907 a19900101a19609999 ba0 ager aDE aahu 10aOrient aBaden-BadencNomos-Verl.-Gesd1960- aArrive avec un an de retard aTrimestriel10aOrientbLeverkusen aMoyen-OrientxPériodiques a95602aDeutsches Übersee-Institut 3aFRbCCN0030-52274 uhttp://www.giga-hamburg.de/index.php?file=z_orient.html&folder=publikationen zSommaires et abstracts depuis 20001 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9561 bvol. 15 no. 1 (mar-1974) -....cParisdMagasins/AnnexeeP 4° 3529 aZSAB aGEO RG Afrique du Nord et Moyen-Orient aDEW 95600953nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210004000174326002200214326002900236607003100265710003500296801002100331856003700352856005000389955016600439972000900605992002500614992001200639038766760000003100020130319051707.01 a0030-5472 aFNSP186287 a0000031000 a19900101a19219999 ba0 aita aIT aahu 10aOriente moderno aRomacIstituto per l'Oriented1921- aSemestrielb2007- a3 n°s par anb1921-2006 aMoyen-OrientxPériodiques02aIstituto per l'Orientec(Rome) 3aFRbCCN0030-54724 uhttp://www.ipocan.it/Framed.html zContenu : sommaires des n° parus depuis 19961 bvol. 27 no. 1/3 (jan/mar-1947) -....cParisdMagasins/AnnexeeP 4° 0006wManquants: vol. 76 no. 3 (1996) ; vol. 82 no. 3 et no. 4 (2002) ; vol. 84, no. 4 (2004) aZSAB aGEO RG2 Moyen-Orient aDEW 95600951nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000038001502100054001883000098002423260011003403360058003513370066004094520033004757120031005088010013005398560090005529550005006429920014006470000534379000053437920130319051708.0 a0000534379 a a19369999k fre 01 ba0 amul aBE az aak z  adr 10aOsirisb[Ressource électronique] aChicago, Ill.cUniversity of Chicago Pressd1936- aAccès au texte intégral (réservé aux sites de Sciences-Po) jusqu'aux 5 dernières années aAnnuel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou télédéchargement 1tOsiris (Bruges)x(0369-7827)02aHistory of Science Society 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03697827.html1 r aDEW 50-5901104nas 2200265 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101110001600108200005800124210003600182326001600218440007600234530005800310606003600368830017700404856013300581955008100714972000900795991001800804992001600822039556425000003110420130620163917.01 a0378-5149 a19910502b19721999 ba0 ager aAT aaha 10aÖsterreichische Zeitschrift für Politikwissenschaft aWiencDöcker Verlagd1972-1999 aTrimestriel 1tÖZP : Österreichische Zeitschrift für Politikwissenschaftx1615-554800aÖsterreichische Zeitschrift für Politikwissenschaft aScience politiquexPériodiques ale Sudoc a fait un chgt de titre en 1999 (devient : ÖZP. Österreichische Zeitschrift für Politikwissenschaft) ; nous l'avons pris en variante (bcp de notices d'articles)4 uhttp://www.oezp.at/getMagazines.phpzAccès libre au texte intégral des éditoriaux, des sommaires et des abstracts depuis 19961 bvol. 1 no.1 (1972) -vol. 36 no. 4 (2007)cParisdMagasins/AnnexeeP 8° 3046 aZSAB aexempb201106 aDEW 320-32101142nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001400154210004700168326001200215421003300227530002500260607005500285607006100340676001000401710004600411801002100457856004800478856007500526955006800601955007000669972000900739992003200748992001200780038767155000003111120130319051708.01 a0030-6428 aFNSP186551 a0000031111 a19900101a19519999 ba0 ager aDE aafu 10aOsteuropa aStuttgartcDeutsche Verlags-Anstaltd1951- aMensuel 1aOsteuropa-Archiv (0179-485X)10aOsteuropabStuttgart aEurope de l'EstxConditions socialesxPériodiques aEurope de l'EstxPolitique et gouvernementxPériodiques a943.702aDeutsche Gesellschaft für Osteuropakunde 3aFRbCCN0030-64284 uhttp://www.osteuropa.dgo-online.org/issues/ zContenu : sommaires et résumés en allemand et en anglais depuis 20021 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 943.71 ban. 2 no. 1 (fév-1952) -....cParisdMagasins/AnnexeeP 8° 1138 aZSAB aGEO RA2.02 Europe orientale aDEW 94700976nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002000139210004700159326002200206326002700228421009200255606004100347710004600388801002100434856006000455856003600515955007000551972000900621992003200630992001200662038767163000003111320130313090533.01 a0030-6444 aFNSP186554 a19900101a19559999 ba0 ager aDE aagu 10aOsteuropa-Recht aStuttgartcDeutsche Verlags-Anstaltd1955- aBimestrielb1999- aTrimestrielb1955-1998 1aInternational bulletin for research on law in Eastern Europe (0340-0522) < P 8° 2765 > aDroityEurope de l'EstxPériodiques02aDeutsche Gesellschaft für Osteuropakunde 3aFRbCCN0030-64444 uhttps://bwv-verlag.de/Zeitschriften.htm#Osteuropa-Recht zContenu : sommaires depuis 20001 bvol. 3 no. 1 (1957) -....cParisdMagasins/AnnexeeP 8° 1138 bis aZCAD aGEO RA2.02 Europe orientale aDEW 34900987nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210004700179326001600226607005900242710004600301801002100347856006500368856003600433955007400469957005700543972000900600991001800609992003200627992001400659038767171000003112020130319051708.01 a0030-6460 aFNSP186571 a0000031120 a19900101a19569999 ba0 ager aDE aahu 10aOsteuropa-Wirtschaft aStuttgartcDeutsche Verlags-Anstaltd1956- aTrimestriel aEurope de l'EstxConditions économiquesxPériodiques02aDeutsche Gesellschaft für Osteuropakunde 3aFRbCCN0030-64604 uhttps://bwv-verlag.de/Zeitschriften.htm#Osteuropa-Wirtschaft zContenu : sommaires depuis 20061 bvol. 1 no. 1 (aou-1956) -....cParisdMagasins/AnnexeeP 8° 1138 ter1 b(1956) -(1961)cParisdMagasins/AnnexeeP Index 0032 aZPAY aexempb201102 aGEO RA2.02 Europe orientale aDEW 330.901124nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005100163210004800214210007100262210003100333326002200364326002700386606003200413606003700445676000800482801001300490856009100503856010800594955006300702972000900765992001200774073601136000038500220140110152306.01 a1636-3671 a0000385002 a a20019999k fre ba0 afre aFR a 0  ar aah z 0 10aOutre-terreerevue française de géopolitique aRamonville Saint-AgnecEditions Eresd2003- aMarne-la-ValléecPresses universitaires de Marne-la-Valléed2002 aVilleurbannecGoliasd2001 aSemestriel$d2007- aTrimestriel$d2001-2006 aGéopolitiquexPériodiques aEtudes régionalesxPériodiques a327 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-outre-terre.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (jan-2001) -....cParisdMagasins/AnnexeeP 8° 6554 aZCAD aDEW 32701344nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000314001642100089004785300048005676060042006156060030006576760013006877120048007008010013007488300007007618560133007689450011009019550080009129910038009920000598859000059885920130319051709.02 a1256-1312 a0000598859 a b18571913 fre 01 ba0 afre aFR a 0  ar aau z 0 14aLes ouvriers des deux mondeseétudes sur les travaux, la vie domestique et la condition morale des populations ouvrières des diverses contrées et sur les rapports qui les unissent aux autres classesfpubl. sous forme de monographies par la Société internationale des études pratiques d'économie sociale aPariscSociété internationale des études pratiques d'économie socialed1857-191314aLes ouvriers des deux mondesb(Paris. 1857) aClasse ouvrièreyFrancez19e siècle aTravailleursz19e siècle a331v21a02aSociété internationale de science sociale 0aFRbFNSP adm4 uhttp://gallica.bnf.fr/ark:/12148/cb32830863r/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica aE.01111 a1ère série, 1857-1885 ; 2ème série, 1887-1899 ; 3ème série, 1900-1905 anumer0 (complément de Gallica ?)01252nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004800154210002900202326001500231430010100246606003700347606005400384801002100438856007100459856006400530856010100594856010800695955007100803972000900874992003100883992001200914039395057000003109120130319051709.01 a0305-9049 aFNSP186487 a0000031091 a19900101a19739999 ba0 aeng aGB aagu 10aOxford bulletin of economics and statistics aOxfordcBlackwelld1973- aBimestriel 1aBulletin of the Oxford University Institute of Economics & Statistics (0140-5543) < P 8° 0097 > aEconomie politiquexPériodiques aEconomie politiqueyGrande-BretagnexPériodiques 3aFRbCCN0305-90494 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0305-9049 zContenu : sommaires et résumés depuis le n°1, fév. 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100897 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 35 no. 1 (fev-1973) -....cParisdMagasins/AnnexeeP 8° 0097 aZPAY aGEO RA4.02 Grande-Bretagne aDEW 33001447nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154207007800181210004300259326002900302326003900331606003700370801002100407856005600428856007300484856009000557856010800647856010300755856010800858955009200966972000901058991001801067992001201085038767406000003109220130319051710.01 a0030-7653 aFNSP186488 a0000031092 a19900101a19389999 ba0 aeng aGB aahu 10aOxford Economic Papers 1ano. 1 (oct.- 1938) -no. 8, novembre 1947anew series, vol. 1 no.1 (1949)  aOxfordcOxford University Pressd1938- a3 ou 4 nos par anb1985- adiverses périodicitésb1938-1984 aEconomie politiquexPériodiques 3aFRbCCN0030-76534 uhttp://oep.oupjournals.org/contents-by-date.0.shtml zContenu : sommaires et résumés depuis le vol. 48, n°1, janv. 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00307653.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=102649 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bn.s. no. 1 (jan-1949)-....cParisdMagasins/AnnexeeP 8° 0300wManquant : no. 3 (1957) aZPAY aexempb201101 aDEW 33001193nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000370015421000430019132600160023460600540025060600370030460700570034180100210039885600420041985600730046185601010053485601080063595500700074397200090081399200310082299200140085303932124X000003109420130319051710.01 a0266-903X aFNSP186490 a0000031094 a19900101a19859999 ba0 aeng aGB aahu 10aOxford review of economic policy aOxfordcOxford University Pressd1985- aTrimestriel aEconomie politiqueyGrande-BretagnexPériodiques aEconomie politiquexPériodiques aGrande-BretagnexPolitique économiquexPériodiques 3aFRbCCN0266-903X4 uhttp://www.oup.co.uk/ecopol/contents/ zContenu : sommaires et résumés depuis le vol. 1, n°1, print. 19854 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101543 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 3 (aut-1985) -....cParisdMagasins/AnnexeeP 4° 5241 aZPAY aGEO RA4.02 Grande-Bretagne aDEW 338.901178nas 2200337 i 450 00100090000000200110000900500170002001100140003703500150005103500150006610000410008110100080012210200070013011000160013720000200015321000590017332600160023243000510024845200460029960700380034567600080038371000350039180100210042685600900044785601080053795500660064595500690071197200090078099200350078999200160082403876766000003120520130319051711.01 a0030-851X aFNSP186859 a0000031205 a19900101a19289999 ba0 aeng aCA aahu 10aPacific affairs aVancouver, B.C.cUniversity of British Columbiad1928- aTrimestriel 1aNews bulletin - Institute of Pacific Relations 1tPacific affairs [Ressource électronique] aPacifique (région)xPériodiques a99002aUniversity of British Columbia 3aFRbCCN0030-851X4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0030851x.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9901 bvol. 1 no.1 (jan-1928)- ....cParisdMagasins/AnnexeeP 8° 0017 aZSAB aGEO RJ Océanie, Pacifique Sud aDEW 990-99600953nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001900139210004300158326001600201452005000217530002700267607003800294856010900332856010800441955006600549972000900615992003500624992001600659040079600000003121020140108160946.01 a0951-2748 aFNSP186868 a19910506a19889999 ba0 aeng aGB aaha 10aPacific review aOxfordcOxford University Pressd1988- aTrimestriel 1tPacific review (Abingdon. Online),x1470-133200aPacific reviewbOxford aPacifique (région)xPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713707111db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1988) -....cParisdMagasins/AnnexeeP 4° 5347 aZSAB aGEO RJ Océanie, Pacifique Sud aDEW 990-99601055nas 2200325 i 450 002001100000005001700011011001400028100004100042101000800083102000700091105001800098106000600116110001600122200005300138210003200191326001800223430004900241440004800290530002000338606002300358606004400381606004400425801001300469856005700482856006000539955009100599972000900690991001800699992001200717000027963920130830111825.01 a1323-9104 a b19942002k fre ba0 aeng aGB a 0  ar aai z 0 10aPacifica reviewepeace, security & global change aAbingdoncCarfaxd1994-2002 a3 n°s par an 1tInterdisciplinary peace research,x1032-3856 1tGlobal change, peace & security,x1478-115810aPacifica review aPaixxPériodiques aRelations internationalesxPériodiques aSécurité internationalexPériodiques 0aFRbFNSP4 uhttp://www.tandf.co.uk/journals/carfax/13239104.html zContenu : sommaires depuis le vol. 10, n°1, fév. 19981 bvol. 11 no. 1 (fev-1999) -vol. 14 no. 3 (oct-2002)cParisdMagasins/AnnexeeP 8° 6505 aZSAB aexempb201212 aDEW 32700985nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210006600186326001600252607005000268607005200318710006000370801002100430856002800451856006100479955006600540972000900606991001800615992002400633992001400657038768119000003121820130319051711.01 a0030-9729 aFNSP186880 a0000031218 a19900101a19619999 ba0 aeng aPK aahu 10aPakistan development review aIslamabadcPakistan Institute of Development Economicsd1961- aTrimestriel aPakistanxPolitique économiquexPériodiques aPakistanxConditions économiquesxPériodiques02aPakistan Institute of Development Economics (Islamabad) 3aFRbCCN0030-97294 uhttp://www.pide.org.pk/ zContenu : accès aux sommaires depuis vol 44, n°1, 20051 bvol. 1 no. 1 (1961) -....cParisdMagasins/AnnexeeP 8° 1982 aZPAY aexempb201002 aGEO RG4.03 Pakistan aDEW 338.900799nls 2200265 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200006200124210004400186230002400230326001100254607004100265710004300306801001300349856011400362955000500476992002400481992001600505992001200521000124560720130619095032.0 a a20079999k fre 01 ba0 aeng aPK ar aak z  adr 10aPakistan statistical year bookb[Ressource électronique] aKarachicManager of Publicationsd2007- aRevue électronique aAnnuel aPakistanxStatistiquesxPériodiques02aPakistan. Federal Bureau of Statistics 0aFRbFNSP4 uhttp://www.pbs.gov.pk/search/node/pakistan%20statistical%20year%20bookzAccés au texte intégral depuis 20071 r aGEO RG4.03 Pakistan aDEW 310-319 aDEW 95400936nas 2200289 i 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102110001600109200003500125210004800160300007700208326001100285607004100296710004300337856011400380955005500494972000900549991001800558991001800576992002400594992001600618992001200634036372919000004107620131220114713.0 aFNSP220485 a19900101b19642012 ba0 aeng aPK aaka 10aPakistan statistical year book aKarachicManager of Publicationsd1964-2012 a2012, dernière éd. papier, à partir de 2013, en version électronique aAnnuel aPakistanxStatistiquesxPériodiques02aPakistan. Federal Bureau of Statistics4 uhttp://www.pbs.gov.pk/search/node/pakistan%20statistical%20year%20bookzAccés au texte intégral depuis 20071 b(1985) -(2012)cParisdMagasins/AnnexeeP 4° 6034 aZPAY aexempb201309 aexempb201312 aGEO RG4.03 Pakistan aDEW 310-319 aDEW 95401016cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200004300174210004100217326001500258607002700273607003400300607005400334710004600388801003000434801002300464802000700487856003800494856004000532955007000572992001200642992002400654059143835000113074620130319051711.01 a1681-5742 aissn16815742 a0001130746 a20011008a20009999 0fre 0103 ba0 aeng aPK ay  aaj 10aPakistan visionfPakistan Study Centre aLahorecPakistan Study Centred2000- aSemestriel aPakistanxPériodiques aAsie du Sud-EstxPériodiques aPakistanxPolitique et gouvernementxPériodiques02aPakistan Study Centrec(Lahore, Pakistan) 3aFRbAbesc20080131gAFNOR 3aFRbISSNc20011008 a004 uhttp://www.pu.edu.pk/psc/journal/ zContient le sommaire du dernier n°1 bvol. 7 no. 1 (jul-2006) -....cParisdMagasins/AnnexeeP 8° 7003 aDEW 954 aGEO RG4.03 Pakistan01020nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000800116110001600124200004400140210006100184326001100245452006300256530004400319606003800363606003800401712004500439856009300484955005900577972000900636991001800645992004300663992001200706036870080000000699220130916162924.01 a1015-1842 aFNSP111406 a19900424a19849999 ba0 aeng aXXX aaka 10aPalestine yearbook of international law aNicosiacAl-Shaybani Society of International Lawd1984- aAnnuel 1tPalestine yearbook of international law online,x2211-614100aPalestine yearbook of international law aDroit internationalxPériodiques aDroityMoyen-OrientxPériodiques02aAl-Shaybany Society of International Law4 uhttp://booksandjournals.brillonline.com/content/22116141zSommaires depuis le no 1, 19841 bvol. 1 (1984)-....cParisdMagasins/AnnexeeP 8° 4888 aZCAD aexempb201002 aGEO RG Afrique du Nord et Moyen-Orient aDEW 34101707cas0 2200445 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147105001800154106000600172110001600178200011700194210002300311326001400334451003300348452004800381517005300429606006400482606007100546710006700617801003000684801002300714801003000737801003000767802000700797856011200804856004200916856006400958856010801022955005501130972000901185992005101194992001601245083270949000100066720130319051712.0 a1817-0005 a083451463 aissn18170005 a0001000667 a20050112a20019999u y0frey0103 ba0 afre aZZ ay  ar aaju uu 10aPanorama de la santéeles indicateurs de l'OCDEfOrganisation de coopération et de développement économiques aPariscOCDEd2001- aBisannuel 1tHealth at a gancex1995-3992 1tPanorama de la santé (En ligne)x1999-132010aPanorama de la santé. Les indicateurs de l'OCDE aSanté publiqueyPays de l'OCDExStatistiquesxPériodiques aÉconomie de la santéyPays de l'OCDExStatistiquesxPériodiques02aOrganisation de coopération et de développement économiques 3aFRbAbesc20080408gAFNOR 3aFRbISSNc20080314 3aFRbAbesc20070308gAFNOR 3aFRbAbesc20050121gAFNOR a004 uhttps://acces-distant.sciences-po.fr/fork?http://hermia.sourceocde.org/vl=11773533/cl=18/nw=1/rpsv/home.htm zContenu : texte intégral depuis 20034 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(2001) -(2007)cParisdMagasins/AnnexeeP 4° 7138 aZPAY aGEO RN1 Pays industrialisés, pays occidentaux aDEW 360-36301473cas0 2200385 450 001001000000002001100010005001700021011001400038035001400052035001700066100004100083101000800124102000700132106000600139110001600145200012800161207001000289210002300299326002700322452005400349453002400403517003800427530002900465606005400494607005400548710006700602801003000669801002300699802000700722856022700729955005500956972000901011992005101020992001601071059201797000091939920130724112524.01 a1684-2200 a064154238 aissn16842200 a20011206a20019999k 0frey0103 ba0 afre aZZ ar aau 10aPanorama de la sociétéeles indicateurs sociaux de l'OCDEfOrganisation de coopération et de développement économiques 0a2001- aPariscOCDEd2001- aParaît tous les 2 ans 1tPanorama de la société (En ligne)‎x1999-1304 1tSociety at a glance14aLes indicateurs sociaux de l'OCDE00aPanorama de la société0 aIndicateurs sociauxyPays de l'OCDExPériodiques aPays de l'OCDExConditions socialesxPériodiques02aOrganisation de coopération et de développement économiques 3aFRbAbesc20060111gAFNOR 3aFRbISSNc20020530 a004 uhttps://acces-distant.sciences-po.fr/fork?http://titania.sourceocde.org/vl=831543/cl=11/nw=1/rpsv/outlook_annuals.htmzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(2001) -(2006)cParisdMagasins/AnnexeeP 4° 7087 aZPAY aGEO RN1 Pays industrialisés, pays occidentaux aDEW 360-36300792nls 2200253 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200009900124207001000223210008700233230002400320326001100344676000800355710004900363801001300412830000700425856010100432955000500533000124670220130719175048.0 a a19979999k fre 01 ba0 aspa aES ar aak z  adr 10aPanorama estratégicob[Ressource électronique]fInstituto Español de Estudios Estratégicos 1a1997- aMadridcMinisterio de DefensacInstituto Español de Estudios Estratégicosd1997- aRevue électronique aAnnuel a32702aInstituto español de estudios estratégicos 0aFRbFNSP azm4 uhttp://www.ieee.es/documentos/panorama-estrategico/zAccès libre au texte intégral depuis 19971 r00874nls 2200277 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200011700124207001000241210006400251230003900315326001100354606003700365606004900402676001300451801001300464830000700477856009500484955000500579992001200584000124668820130718163028.0 a a20119999k fre 01 ba0 aspa aES ar aak z  adr 10aPanorama geopolítico de los conflictosb[Ressource électronique]fInstituto Español de Estudios Estratégicos 1a2011- aMadridcInstituto Español de Estudios Estratégicosd2011- aPublication annuelle électronique aAnnuel aGéopolitiquez1990-....2rameau aRelations internationalesz2001-....2rameau a327v22a 0aFRbFNSP azm4 uhttp://www.ieee.es/documentos/panorama-de-los-conflictos/zAccès libre au texte intégral1 r aDEW 32701333nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008100154207002400235210003200259326001500291517003300306606004200339710004700381801002100428856009000449856010800539856012800647856010800775955006600883972000900949992002100958992001600979038779242000003536020130319051713.01 a0033-3352 aFNSP203074 a0000035360 a19900101a19409999 ba0 aeng aUS aaga 10aPAR Public administration reviewfAmerican Society for Public Administration 1aN°1 (Autumn 1940)- aWashington, DCcASPAd1940- aBimestriel10aPublic administration review aAdministration publiquexPériodiques02aAmerican Society for Public Administration 3aFRbCCN0033-33524 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00333352.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=PBA&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 2 (1945) -....cParisdMagasins/AnnexeeP 4° 0034 aZSAB aGEO RQ Universel aDEW 350-35401114cas0 2200349 450 00100100000000200110001000500170002101100140003803500170005203500150006910000410008410100080012510200070013310500180014010600060015811000160016420000660018021000390024653000240028560600440030960600320035380100300038580100230041580100300043880200070046885600410047585600640051695500690058095500700064999200120071999200330073113310852X000117424020130319051714.01 a1969-1297 aissn19691297 a0001174240 a20090427a20079999k y0frey0103 ba0 amis aFR ay  ar aaju uu 14aThe Paris globalistea student international affairs magazine aAntonycThe Paris globalistd2007-00aThe Paris globalist aRelations internationalesxPériodiques aGéopolitiquexPériodiques 3aFRbAbesc20090923gAFNOR 3aFRbISSNc20090427 3aFRbAbesc20090427gAFNOR a074 uhttp://www.global21online.org/paris/ zContenu : texte intégral depuis le vol. 1 no. 1 (fev-2007)1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 72511 bvol. 3 no. 1 (jan-2009) -....cParisdMagasins/AnnexeeP 4° 7251 aDEW 327 aGEO RS Sans aspect régional00995nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001600154210003000170326001700200430003500217530002200252606002900274607002500303830009900328856011200427955006800539955002500607955001200632992002500644992001200669039582914000003437220130319051714.01 a0397-1635 aFNSP199114 a0000034374 a19900101a19769999 ba0 afre aFR aa a 10aParis-Match aPariscParis-Matchd1976- aHebdomadaire 1aNouveau Paris-Matchx0337-872110aParis-Matchb1976 aActualitéxPériodiques aFrancexPériodiques a1985-->2001 : collection donnée au CTL en avril 2002 (nous conservons de 1949 à 1984 inclus)4 uhttp://anciensnumeros.parismatch.com/an/searchzCouvertures des anciens numéros sur le site de Paris-Match1 bno. 1 (mar-1949)-no. 1230 (nov-1972)cParisdAnnexeeP F° 01511 aGEO RA4.06 France 011 aDEW 050 aGEO RA4.06 France 01 aDEW 05000905nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001600139210003000155326001700185430003500202530002500237606002900262607002500291830009900316856011200415955006300527992002500590992001200615039582914000003437420130313090634.01 a0397-1635 aFNSP199114 a19900101a19769999 ba0 afre aFR aa a 10aParis-Match aPariscParis-Matchd1976- aHebdomadaire 1aNouveau Paris-Matchx0337-872110aParis-Match‎b1976 aActualitéxPériodiques aFrancexPériodiques a1985-->2001 : collection donnée au CTL en avril 2002 (nous conservons de 1949 à 1984 inclus)4 zCouvertures des anciens numéros sur le site de Paris-Matchuhttp://anciensnumeros.parismatch.com/an/search1 bno. 1388 (1976)-no. 1857 (1984)cParisdAnnexeeP F° 0151 aGEO RA4.06 France 01 aDEW 05000991nas 2200277 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000016001552100035001713260014002064300037002206060029002576070025002868560192003118560108005039550068006119920022006799920012007010000091075000009107520130319051714.01 a0767-3558 aFNSP401696 a0000091075 a19900101a19869999 ba0 afre aFR acaa 13aLe Parisien aSaint-OuencLe Parisiend1986- aQuotidien 1aLe Parisien libéré (0242-1011) aActualitéxPériodiques aFrancexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLe mois en courscParisd27, Salle Rez-de-chausséeeP F° 0522 aGEO RA4.06 France aDEW 05000772nas 2200253 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200002800138210005600166326001700222607005500239710005600294801002100350856002300371955008700394992002500481992001200506036373842000006723320130319051714.01 a0031-2258 aFNSP312044 a0000067233 a19900101a19519999 ba0 ager aDE14aDas Parlament (Hamburg) aBonncBundeszentrale für Politische Bildungd1951- aHebdomadaire aAllemagnexPolitique et gouvernementxPériodiques02aBundeszentrale für politische Bildungc(Allemagne) 3aFRbCCN0024/67274 uhttp://www.bpb.de/1 bConservation limitée aux 2 dernières annéescParisdMagasins/AnnexeeP F° 1204 aGEO RA5.01 Allemagne aDEW 94301363cas0 2200409 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200004000180210003100220326001500251421004600266517001500312530003200327606003800359606002700397607005200424676000800476710006000484801003000544801002300574802000700597856009000604856010800694955006700802955005900869972000900928992001600937083127771000095517120130319051714.01 a1768-6520 aissn17686520 a0000955171 a20041123a20049999m y0frey0103 ba0 afre aFR a 0  ar aaj z 0 10aParlement[s]eHistoire et politique aPariscArmand Colind2004- aSemestriel 1tParlement[s]. Hors-sériexISSN 1962-396810aParlements10aParlement[s]b(Paris. 2004) aPouvoir législatifxPériodiques aHistoirexPériodiques aFrancexPolitique et gouvernementxPériodiques a32002aComité d'histoire parlementaire et politiquec(France) 3aFRbAbesc20050905gAFNOR 3aFRbISSNc20041123 a074 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-parlements.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 2 (2004) -....cParisdMagasins/AnnexeeP 8° 6881 aZPAY aDEW 320-32101432cas0 2200421 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200005500180207001700235210004200252326001600294422004600310517002800356530003000384606003800414606002700452607005200479676000800531710006000539801003000599801002300629802000700652856009000659856010800749955006700857955005900924992001600983992001100999127790314000117077520130319051714.01 a1962-3968 aissn19623968 a0001170775 a20080909a20049999k y0frey0103 ba0 afre aFR ay  ar aaku uu 10aParlement[s]ehistoire et politiquei. Hors-série 1ano. 1(2004)- aPariscÉd. Pepper/L'Harmattand2004- aIrrégulier 1tParlement[s] (Paris. 2004)xISSN1768-652010aParlements. Hors-série10aParlement[s]. Hors-série aPouvoir législatifxPériodiques aHistoirexPériodiques aFrancexPolitique et gouvernementxPériodiques a32002aComité d'histoire parlementaire et politiquec(France) 3aFRbAbesc20090308gAFNOR 3aFRbISSNc20090225 a074 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-parlements.htm?4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 3 (2007) -....cParisdMagasins/AnnexeeP 8° 7097 aDEW 320-321 aGEO RS01156nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200011000154207003300264210002800297300002500325326002600350326002700376430006100403606004100464606003100505710007100536856005200607856003600659955008200695972000900777991001800786992001400804039299155000003132620130319051714.01 a0258-4751 aFNSP187121 a0000031326 a19910507b19852003 ba0 afre aFR aaha 10aParlements et francophonieerevue de l'Association internationale des parlementaires de langue française 1ano. 55 (1985)-no. 115 (2003) aPariscAIPLFd1985-2003 aN'a pas paru en 1999 aSemestrielb2000-2003 aTrimestrielb1985-1998 1aRevue des parlementaires de langue françaisex0223-5765 aPolitique linguistiquexPériodiques aFrancophoniexPériodiques02aAssociation internationale des parlementaires de langue française4 uhttp://apf.francophonie.org/-Publications-.html zAccès libre au texte intégral1 bno. 56 (jan/mar-1985) -no. 115 (jul-2003)cParisdMagasins/AnnexeeP 8° 2984 aZGRA aexempb201010 aDEW 42-4901229nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002000139210005800159326001600217430005100233606004300284710004300327801002100370830003500391856019400426955006600620955008100686957010600767972000900873992002100882992001200903038769239000005195620131001113410.01 a0031-2282 aFNSP250672 a19900101a19669999 ba0 aeng aGB aahu 10aParliamentarian aLondoncCommonwealth Parliamentary Associationd1966- aTrimestriel 1aJournal of the parliaments of the Commonwealth aParlementsxCommonwealthxPériodiques02aCommonwealth Parliamentary Association 3aFRbCCN0031-2282 aenvoyé au CTLES jusqu'en 19794 uhttp://www.cpahq.org/cpahq/Mem/Resources/Mem/Document%20Library/Search_Document_Library.aspx?hkey=348f2926-aa6b-495b-8048-9c0c7330f003zAccès libre au texte intégral depuis le no. 1, 20081 bvol. 65 no 3 (1984) -....cParisdMagasins/AnnexeeP 4° 49751 bvol. 61 no 1 (1980) -vol. 65 no 2 (1984)cParisdMagasins/AnnexeeP 8° 03691 bvol. 72 (1991) -vol. 76 (1995) ; vol. 77 (1996) -vol. 81 (2000)cParisdMagasins/AnnexeeP Index 0789 aZSAB aGEO RQ Universel aDEW 32801019nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154207002500180210004300205326001600248601004600264607006100310676000800371710002600379801002100405856004200426856007300468955007000541972000900611991001800620992003100638992001200669038769247000000493420140110103444.01 a0031-2290 aFNSP107059 a0000004934 a19900101a19479999 ba0 aeng aGB aahu 10aParliamentary affairs 1avol. 1 no. 1 (1947)- aLondoncOxford University Pressd1947- aTrimestriel02aGrande-BretagnebParliamentxPériodiques aGrande-BretagnexPolitique et gouvernementxPériodiques a32002aHansard Societyc(GB) 3aFRbCCN0031-22904 uhttp://www.oup.co.uk/parlij/contents/ zContenu : sommaires et résumés depuis le vol. 49, n°1, janv. 19961 bvol. 1 no. 1 (hiv-1947) -....cParisdMagasins/AnnexeeP 8° 0043 aZSAB aexempb201010 aGEO RA4.02 Grande-Bretagne aDEW 32800854nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001800154210006000172326001700232530002400249606004700273710005200320856005700372856003600429955008600465972000900551992001600560039673413000005264320130319051715.01 a0709-6941 aFNSP252246 a0000052643 a19900101a19779999 f ba0 aeng aNO aaia 10aParticipation aOslocnternational Political Science Associationd1977- a3 nos par an10aParticipationbOslo aScience politiquexRecherchexPériodiques02aAssociation internationale de science politique4 uhttp://www.ipsa.ca/fr/publications/participation.asp zAccès libre au texte intégral1 bvol. 1 no. 1 (jan-1977) -vol. 32 no. 2 (2008)cParisdMagasins/AnnexeeP 4° 1622 aZGRA aDEW 320-32101146nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200015400163210005000317326001100367410009700378606005600475606004400531710005100575801001300626856003900639856003600678955006000714972000900774992002500783992001200808040536408000061668220130319051715.02 a1279-4686 a0000616682 a b19872004 fre 01 ba0 afre aFR a 0  ar aak z 0 13aLa Participation financièreerapport annuel du Conseil de la participationfMinistère des affaires sociales, Conseil supérieur de la participation aPariscLa Documentation françaised1987-2004 aAnnuel 01aBilans et rapports - Ministère du travail, de l'emploi et de la formation professionnelle aParticipation aux bénéficesyFrancexPériodiques aEpargne salarialeyFrancexPériodiques01aFrancebConseil supérieur de la participation 0aFRbFNSP4 uhttp://www.ladocfrancaise.gouv.fr/ zAccès libre au texte intégral1 b(2002) -(2003/2004)cParisdMagasins/AnnexeeP 8° 6764 aZPAY aGEO RA4.06 France 01 aDEW 33201271cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200008500180210003100265517006900296606005000365606003800415676001400453801003000467801002300497802000700520856009400527856010800621955006700729955006700796972000900863992002100872992001600893158384814000123025320130319051716.01 a2034-7650 aissn20347650 a0001230253 a20120213a20119999k y0frey50 ba0 afre aBE ay 0  ar aaia 0uu 10aParticipationserevue de sciences sociales sur la démocratie et la citoyenneté aBruxellescDe Boeckd2011-10aRevue de sciences sociales sur la démocratie et la citoyenneté aParticipation politiquexPériodiques2rameau aDémocratiexPériodiques2rameau a321.8v22 3aFRbAbesc20120629gAFNOR 3aFRbISSNc20120206 a0m4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-participations.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 1 (jan/avr-2011) -....cParisdMagasins/AnnexeeP 8° 7185 aZPAY aGEO RQ Universel aDEW 320-32101260nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154207002600173210002400199326002200223326002700245606003600272676000800308856010500316856010800421856002800529856010800557955006700665955006900732955006600801972000900867991001800876992001600894036741183000016021920131219170149.01 a1354-0688 aFNSP617552 a0000160219 a19900101a19959999 ba0 aeng aGB aaga 00aParty politics 1aVol. 1, no. 1 (1995)- aLondoncSaged1995- aBimestrielb2001- aTrimestrielb1995-2000 aPartis politiquesxPériodiques a3204 uhttps://acces-distant.sciences-po.fr/fork?http://www-fr.ebsco.com/online/direct.asp?JournalID=101635 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://ppq.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bL'année en courscParisdBibliothèque de rechercheeP 8° 61351 bvol. 1 no. 1 (1995) -....cParisdMagasins/AnnexeeP 8° 6135 aZCAD aexempb201204 aDEW 324.2-500742nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210002700181326001200208606002900220607002500249856003300274856008500307955006300392972000900455992001200464039846237000003133320130319051717.01 a0987-8505 aFNSP187133 a0000031333 a19910507a19879999 ba0 afre aFR aafa 10aPassages (Paris, 1987) aPariscPassagesd1987- aMensuel aActualitéxPériodiques aFrancexPériodiques4 uhttp://www.passages-forum.fr zContenu : sommaire et sélection d'articles en texte intégral depuis le n° 73.1 bno. 1 (dec-1987) -....cParisdMagasins/AnnexeeP 4° 5271 aZCAD aDEW 05000845nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000052001502100038002022300005002403000116002453260016003613360056003773370018004336060036004518010013004878560038005009550005005389920012005430000505676000050567620130319051717.0 a0000505676 a a19989999k fre 01 ba0 afre aFR ar aay z  adr 13aLe Passant Ordinaireb[Ressource électronique] aBèglesbMaison du Passantd1998- a aSélection d'articles depuis le n°18, février-mars 1998, texte intégral à partir du n° 28, mars-avril 2000 airrégulier aDonnées textuelles uniquement accessibles en ligne aFichiers HTML aSciences socialesxPériodiques 0aFRbFNSP4 uhttp://www.passant-ordinaire.com/1 r aDEW 30001040nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000046001502100043001963000098002393260016003373360058003533370066004114520032004775170021005096060027005307120045005578010013006028560090006159550005007059920016007100000528787000052878720130319051717.0 a0000528787 a a19529999k fre 01 ba0 aeng aGB az aah z  adr 10aPast & presentb[Ressource électronique] aOxfordcOxford University Pressd1952- aAccès au texte intégral (réservé aux sites de Sciences-Po) jusqu'aux 5 dernières années aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou télédéchargement 1tPast & presentx(0031-2746)10aPast and present aHistoirexPériodiques02aPast and Present Societyc(Oxford, G.B.) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00312746.html1 r aDEW 900-90701657nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002600139210004800165326002400213326002700237452004700264530002600311606003800337710004300375801002100418856012800439856010800567856010100675856010800776856010900884856010800993955006601101957007301167972000901240991001801249992001601267038769530000003133620130919155823.01 a0031-322X aFNSP187138 a19900101a19679999 ba0 aeng aGB aagu 10aPatterns of prejudice aaLondoncInstitute of Jewish Affairsd1967- a5 nos par anb2006- aTrimestrielb1967-2005 1tPatterns of prejudice (Online),x1461-7331 aPatterns of prejudice aJuifsxCivilisationxPériodiques02aInstitute of Jewish Affairsc(Londres) 3aFRbCCN0031-322X4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=0SV&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=300354 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713395163db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1967) -....cParisdMagasins/AnnexeeP 8° 24491 bvol. 17 (1983) -vol. 18 (1984)cParisdMagasins/AnnexeeP Index 0352 aZCAD aexempb201004 aDEW 305-30601008nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210003500186326001100221517004600232607004200278676001000320710007100330801002100401856009000422955006400512955005300576972000900629992004200638992001400680039295311000009746920130716112610.01 a0257-8107 aFNSP424073 a0000097469 a19900101a19849999 f ba0 afre aUS aaku 14aLes Pays les moins avancés aNew YorkcNations Uniesd1984- aAnnuel10aRapport...sur les pays les moins avancés aPays les moins avancésxPériodiques a338.902aConférence des Nations Unies sur le commerce et le développement 3aFRbCCN0257-81074 uhttp://unctad.org/fr/pages/Publications.aspxzAccès intégral du rapport depuis 19971 bLa dernière annéecParisd27, Salle 1er étageeDEW 338.91 b(1984) -....cParisdMagasins/AnnexeeP 4° 5028 aZGRA aGEO RO Pays en voie de développement aDEW 338.901560nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002100139210003800160210005600198210004900254210006300303326001600366452004000382517000700422530002100429606002300450606004400473710005400517711007500571801002100646856012800667856010800795955007200903955009100975957005701066972000901123991001801132992001201150039095851000003169420130911153445.01 a0149-0508 aFNSP187944 a19900101a19729999 ba0 aeng aUS aahu 10aPeace and change aHoboken, N.J.‎cWiley‎d2008- aCambridge, Mass. [etc.]‎cBlackwell‎d1996-2008 aNewbury Park, Calif.‎cSage‎d1989?-1995 aSonoma, Calif.‎cCalifornia State College‎d1972-1988? aTrimestriel 1tPeace & change (Online),x1468-013010aPC10aPeace and change aPaixxPériodiques aRelations internationalesxPériodiques02aCouncil on Peace Research in History (Etats-Unis)02aConsortium on Peace Research, Education, and Developmentc(Etats-Unis) 3aFRbCCN0149-05084 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=PNC&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 6 no. 1/2 (hiv-1980) -....cParisdMagasins/AnnexeeP 8° 44211 bvol. 1 no. 1 (aut-1972) -vol. 5 no. 2/3 (aut-1978)cParisdMagasins/AnnexeeP 4° 46611 b(1972) -(1975)cParisdMagasins/AnnexeeP Index 0528 aZSAB aexempb201006 aDEW 32701253nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210005500177326001600232606004100248606002300289710006900312856012800381856010800509856010900617856010800726955006600834972000900900991001800909992001200927094060231000026167420130319051719.01 a1078-1919 aFNSP909451 a0000261674 a19981207a19959999 ba0 aeng aUS aaha 10aPeace and conflict aHillsdale, N.JcLawrence Erlbaum Associatesd1995- aTrimestriel aRèglement de conflitsxPériodiques aPaixxPériodiques02aAmerican Psychological Association. Division of Peace Psychology4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=7MU&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t775653690db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 2 no. 3 (1996) -....cParisdMagasins/AnnexeeP 8° 6443 aZSAB aexempb201211 aDEW 32701170cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069040001100084100004100095101000800136102000700144105001800151106000600169110001600175200007000191207003100261210006300292326001500355430003700370606002300407606004100430606004400471801003000515801002300545802000700568856003600575856009400611955007000705972000900775992001200784094081859000093119720130319051719.01 a1082-7307 aissn10827307 a0000931197 aPCSTFR a19950530a19959999k y1fre 0103 ba0 aeng aUS a 0  ar aaja 0uu 10aPeace and conflict studiesfNetwork of Peace and Conflict Studies 0aVol. 2, no. 1 (June 1995)- aColumbus, OHcNetwork of Peace and Conflict Studiesd1995- aSemestriel 1tPeace and conflict studies notes aPaixxPériodiques aRèglement de conflitsxPériodiques aRelations internationalesxPériodiques 3aFRbAbesc20051122gAFNOR 3aFRbISSNc20051021 a014 uhttp://www.gmu.edu/academic/pcs zContenu : texte intégral des articles du vol.2, n°1, June 1995 au vol.9, n°1, May 20021 bvol. 8 no. 2 (nov-2001) -....cParisdMagasins/AnnexeeP 8° 6867 aZSAB aDEW 32701312nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000460015421000350020032600160023553000360025160600230028785600570031085600580036785601280042585601080055385601090066185601080077095500700087897200090094899100170095799200120097404025495X000010573420130319051719.01 a1040-2659 aFNSP449480 a0000105734 a19900101a19899999 ba0 aeng aUS aaha 10aPeace reviewea journal of social justice aBoulder, Colo.cRiennerd1989- aTrimestriel10aPeace reviewbPalo Alto, Calif. aPaixxPériodiques4 uhttp://www.tandf.co.uk/journals/carfax/10402659.html zContenu : sommaires depuis le vol. 8, n°1, mars 19964 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=PCR&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713441298db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 1 (pri-1993) -....cParisdMagasins/AnnexeeP 8° 5973 aZSAB aexemp$201111 aDEW 32701079nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002300163207002700186210005900213326001800272606005300290606002600343607004300369801001300412856009700425856010800522955007300630972000900703992002700712992001400739054372968000060295420130408174738.01 a1621-5338 a0000602954 a a20009999 fre 01 ba0 afre aFR a 0  ar aai z 0 13aLa Pensée de midi 1aN°1 (printemps 2000)- aArlescActes SudaMarseillecla Pensée de midid2000- a3 n°s par an aLittératurexHistoire et critiquexPériodiques aCulturexPériodiques aMéditerranée (région)xPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-la-pensee-de-midi.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 12 (pri-2004) -no. 31 (2010)cParisdMagasins/AnnexeeP 4° 7022 aZPAY aGEO RL4 Méditerranée aDEW 80-8900849cas0 2200301 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002900163210005000192326001800242606003700260801003000297801002800327801002300355802000700378856008100385955006000466972000900526992001200535036375225000091127020130319051720.01 a0774-2754 a0000911270 a19830101a19859999k y0frey0103 ba0 afre aBE a 0  ar aaiu 0 013aLa pensée et les hommes aBruxellescEditions Espace de libertéd1985- a3 n°s par an aVie intellectuellexPériodiques 3aFRbAbesc20050512gAFNOR 3aFRbSFc20050512gAFNOR 3aFRbISSNc20020530 a0m4 uhttp://www.ulb.ac.be/cal/edl/editions/collectionpensee&leshommes/CataPH.html1 bno. 52 (2003) -....cParisdMagasins/AnnexeeP 8° 6846 aZPAY aDEW 00101177nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008600154210004900240326001600289530002600305606004100331710004400372856005700416856007500473955018000548957007100728972000900799991001800808992002300826992001400849037416634000019542220130319051720.01 a1300-8641 aFNSP717836 a0000195422 a19900101a19969999 ba0 aeng aTR aaha 10aPerceptionsejournal of international affairsfCenter for strategic research, SAM aAnkaracCenter for Strategic Researchd1996- aTrimestriel10aPerceptionsbIstanbul aGéopolitiqueyTurquiexPériodiques02aStratejik arastirmalar Merkezi (Ankara)4 uhttp://sam.gov.tr/category/publications/perceptions/ zContenu : accès au texte intégral depuis le vol. 1 no. 1 (1996/1997)1 bvol. 1 no. 1 (1996) ; vol. 1 no. 4 (1996/1997) -vol. 3, no 1 (1998) ; vol. 4 no. 2 (1999) -vol. 7 no. 3 (2002) ; vol. 16 no. 1 (2011) -....cParisdMagasins/AnnexeeP 8° 62601 bvol. 1 (1996) -vol. 6 (2002)cParisdMagasins/AnnexeeP Index 0847 aZGRA aexempb201209 aGEO RA6.06 Turquie aDEW 956.101119nas 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000083001502070009002332100030002423260011002724300059002835320092003426010065004346060049004996060055005487100051006038010013006548560023006679550047006909720009007379920023007469920012007690000991472000099147220130319051721.0 a0000991472 a a20059999 fre 01 ba0 aeng aUS a 0  ar aa z 0 10aPerformance and accountability reportfU.S. Securities and Exchange Commission 1a2004 aLanham, MacBernand2004- aAnnuel 1tAnnual reportfU.S. Securities and Exchange Commission10aPerformance and accountability report$fUnited States Securities and Exchange Commission10aEtats-UnisbSecurities and Exchange CommissionxPériodiques aEntreprisesxDroityEtats-UnisxPériodiques aMarché financierxDroityEtats-UnisxPériodiques10aEtats-UnisbSecurities and Exchange Commission 0aFRbFNSP4 uhttp://www.sec.gov1 b(2006)cParisdMagasins/AnnexeeP 4° 7097 aZPAY aGEO RC2 Etats-Unis aDEW 33200916nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000064001502100047002142300005002613000047002663260016003133360074003293370018004036060036004217020022004577020028004798010013005078560065005209550005005859920012005900000505686000050568620130319051721.0 a0000505686 a a19939999k fre 01 ba0 afre aFR ar aay z  adr 14aLes périphériques vous parlentb[Ressource électronique] aParisbPériphériques vous parlentd1993- a aTexte intégral depuis le n°0, avril 1993 airrégulier aDonnées textuelles et audiovisuelles uniquement disponibles en ligne aFichiers HTML aChangement socialxPériodiques 1aCalvelbAnne4340 1aBertellibFederica4340 0aFRbFNSP4 uhttp://www.lesperipheriques.org/rubrique.php3?id_rubrique=181 r aDEW 30101387nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008700154210002400241326001200265421004000277430004300317530002100360606004600381676000800427710008600435801002100521856003900542856004800581955006600629955006500695957021800760972000900978992002200987992001601009039348784000003184620130319051722.01 a0223-5692 aFNSP188198 a0000031846 a19900101a19689999 ba0 afre aFR aafu 10aPersonnelfAssociation nationale des directeurs et cadres de la fonction personnel aPariscANDEPd1968- aMensuel 1aCommuniquez (Paris)xISSN 0980-7039 1aDirection de personnelxISSN 1247-957800aPersonnelbParis aPersonnelxDirectionyFrancexPeriodiques a65002aAssociation nationale des directeurs et cadres de la fonction personnelc(France) 3aFRbCCN0223-56924 uhttp://www.andcp.fr/personnel.html zContenu : sommaires depuis janv.-fév. 19981 bLes 3 dernières annéescParisd27, Salle 4e étageeDEW 6501 bno. 114 (mar-1968) -....cParisdMagasins/AnnexeeP 4° 35481 b(1988) -(1992)zcet index se trouve dans le no. 337, nov./déc. de la revue ; 1994-1998wcet index se trouve dans le n°396, janv. 1999 de la revue ; (1997) -(2000) : cet index st trouve dans le n°425 (déc.2001) aZPAY aGEO RA4.06 France aDEW 650-65801053nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210002800177326001500205606005600220606003600276606004500312710006200357801002100419856005400440856007000494955006800564972000900632991001800641992002300659992002100682992001200703039189449000005077520130319051722.01 a0210-0436 aFNSP247585 a0000050775 a19900101a19739999 ba0 acat aES aaju 10aPerspectiva social aBarcelonacICESBd1973- aSemestriel aSciences socialesyEspagneyCatalognexPériodiques aSciences socialesxPériodiques aSciences socialesyEspagnexPériodiques02aInstitut catòlic d'estudis socialsc(Barcelone, Espagne) 3aFRbCCN0210-04364 uhttp://www.ucm.es/BUCM/compludoc/S/S/02100436.htm zContenu : sommaires depuis le n°34, 1994 (lacunes : n°36 et 44)1 bno. 1 (1973) -no. 48 (2002)cParisdMagasins/AnnexeeP 8° 3612 aZGRA aexempb201006 aGEO RA6.02 Espagne aGEO RQ Universel aDEW 30001021nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000270015421000290018132600220021032600220023260700580025460700620031271000580037480100210043285600440045385600370049795500590053497200090059399100180060299200230062099200280064399200120067103897231X000003205520130319051722.01 a0101-3459 aFNSP189178 a0000032055 a19900101a19769999 ba0 apor aBR aaju 10aPerspectivas (Marilia) aSÀo PaulocUNESPd1976- aSemestrielb2005- aAnnuelb1976-2004 aAmérique latinexPolitique économiquexPériodiques aAmérique latinexPolitique et gouvernementxPériodiques02aUniversidade estadual paulistac(São Paulo, Brésil) 3aFRbCCN0101-34594 uhttp://www.fclar.unesp.br/perspectivas/ zAccès libre au texte intégral.1 bvol 1 (1976) -....cParisdMagasins/AnnexeeP 8° 4672 aZSAB aexempb201003 aGEO RD4.13 Brésil aGEO RD Amérique latine aDEW 98000887nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001700139210005600156326001500212530002600227607003400253710005100287856005500338856003600393955005900429972000900488991001600497992003200513992002800545992001200573058474595000013208320130525132703.01 a1210-762X aFNSP536983 a19940707a19939999 ba0 aeng aCZ aaja 10aPerspectives aPraguecInstitute of International Relationsd1993- aSemestriel10aPerspectivesb(Praha) aEurope de l'EstxPériodiques02aInstitute of International Relationsc(Prague)4 uhttp://www.iir.cz/display.asp?lng=uk&ida=87&idi=324 zAccès libre au texte intégral1 bno. 1 (1993) -....cParisdMagasins/AnnexeeP 8° 6052 aZPAY aexemp$21202 aGEO RA2.02 Europe orientale aGEO RA5 Europe centrale aDEW 94701087nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200009500139210002300234326001100257517004400268517005700312530004000369606004600409712006700455856021800522955006500740992001600805040217752000015355020131219154129.0 a1027-5754 aFNSP599149 a19900101a19959999 f ba0 afre aFR aaka 14aLes perspectives agricolesfOrganisation de coopération et de développement économiques aPariscOCDEd1995- aAnnuel10aPerspectives agricoles de l'OCDE, 1999-10aPerspectives agricoles de l'OCDE et de la FAO, 2005-14aLes perspectives agricoles‎b1995 aAgricultureyPays de l'OCDExPériodiques02aOrganisation de coopération et de développement économiques4 uuhttps://acces-distant.sciences-po.fr/fork?http://puck.sourceocde.org/vl=1151166/cl=40/nw=1/rpsv/home.htmzzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1995/2000) -(1997/2001)cParisdMagasins/AnnexeeP 4° 6468 aDEW 338.1-301487nas 2200361 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200004000148210002300188300015100211326001100362430004600373452007300419517005000492530004100542606004600583710006700629801001300696830005400709856021600763856000500979955005900984972000901043992001601052992005701068048859109000037974320131219154848.01 a1563-0455 a a19989999k f fre ba0 afre aFR a 0  ar aa z 0 10aPerspectives agricoles de l'OCDE... aPariscOCDEd1998- aL'édition 2005 porte le titre Perspectives agricoles de l'OCDE et de la FAO car elle a été préparée conjointement par ces deux organisations. aAnnuel 1tPerspectives agricoles (1995),x1027-5754 1tPerspectives agricoles de l'OCDE et de la FAO (En ligne),x1999-115010aPerspectives agricoles de l'OCDE et de la FAO aPerspectives agricoles de l'OCDE ... aAgricultureyPays de l'OCDExPériodiques02aOrganisation de coopération et de développement économiques 0aFRbFNSP aNotice à supprimer qd désherbage fait (Martine)4 uhttps://acces-distant.sciences-po.fr/fork?http://puck.sourceocde.org/vl=1151166/cl=40/nw=1/rpsv/home.htmzzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 u1 b(1998/2003)-(2007)cParisdMagasins/AnnexeeP 4° 6468 aZPAY aDEW 338.1-3 aGEO RA1.01 Communautés européennes, Pays de la CEE01136nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210006900181326002300250326002600273430004300299451003400342607002400376676000800400710007100408856005400479856007000533955006600603955006300669972000900732992004500741992001200786040189449000006498520130430114133.01 a1021-9013 aFNSP298586 a0000064985 a19900101a19929999 ba0 afre aHK aaga 10aPerspectives chinoises aHong KongcCentre d'études et d'information sur la Chined1992- aTrimestriel$d2007- aBimestriel$d1992-2006 1aBulletin de sinologie (ISSN 1011-2006) 1tChina perspectivesx1996-4617 aChinexPériodiques a95002aCentre d'études français sur la Chine contemporainec(Hong-Kong)4 uhttp://www.cefc.com.hk/perspectives.php?cat=2&p=9 zSommaires depuis le n°1, 1992 et index des auteurs et des sujets1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9501 bno. 1 (mar-1992) -....cParisdMagasins/AnnexeeP 4° 6103 aZCAD aGEO RI3.03 Chine (République populaire) aDEW 95101077nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000730015421000600022722500400028732600150032745400630034260600420040560600390044767600100048671000350049685600460053195500690057795500610064697200090070799200210071699200140073704018062X000001093320130319051722.01 a1020-1343 aFNSP121011 a0000010933 a19900718a19909999 f ba0 amul aUS aaja 10aPerspectives de l'économie mondialefFonds monétaire international aWashington, D.C.cFonds monétaire internationald1990-21aEtudes économiques et financières aSemestriel 1tWorld economic outlook (Washington. Print)xISSN 0256-6877 aConjoncture économiquexPériodiques aHistoire économiquexPériodiques a330.902aFonds monétaire international4 uhttp://www.imf.org/external/fra/index.asp1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 330.91 b(Mai 1990) -....cParisdMagasins/AnnexeeP 4° 4857 bis aZPAY aGEO RQ Universel aDEW 330.901085nas 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000115001502070010002652100023002753260011002986060059003096060041003686070033004097100067004428010013005098560077005228560033005999550055006329720009006879920051006969920012007470000608700000060870020130319051722.0 a0000608700 a a20039999 fre 01 ba0 afre aFR a 0  ar aak z 0 10aPerspectives de l'investissement internationalfOrganisation de coopération et de développement économiques 1a2003- aPariscOCDEd2003- aAnnuel aInvestissements étrangersxStatistiquesxPériodiques aMouvements de capitauxxPériodiques aPays de l'OCDExPériodiques02aOrganisation de coopération et de développement économiques 0aFRbFNSP4 uhttp://www.oecd.org/publications/0,2743,fr_2649_201185_1_1_1_1_1,00.html zContenu : résumé en ligne.1 b(2003) -(2004)cParisdMagasins/AnnexeeP 8° 6746 aZPAY aGEO RN1 Pays industrialisés, pays occidentaux aDEW 33201329nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200010400163210002300267326001200290532012500302606008600427606006600513710006700579801001300646856022900659955005500888972000900943992005100952992001201003059552085000053980120130716171247.01 a1995-4050 a0000539801 a a20009999k fre ba0 afre aFR a 0  ar aa z 0 10aPerspectives de l'OCDE sur les PME/fOrganisation de coopération et de développement économiques aPariscOCDEd2000- aBiennal10aPerspectives de l'Organisation de coopération et de développement économiques sur les petites et moyennes entreprises aPetites et moyennes entreprisesxPolitique publiqueyPays de l'OCDExPériodiques aPetites et moyennes entreprisesyPays de l'OCDExPériodiques aOrganisation de coopération et de développement économiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://lysander.sourceocde.org/vl=8347465/cl=28/nw=1/rpsv/outlook_annuals.htmzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(2002) -(2005)cParisdMagasins/AnnexeeP 4° 6980 aZPAY aGEO RN1 Pays industrialisés, pays occidentaux aDEW 33801493nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004600163210008000209326001900289437003800308512005600346606003900402606003700441710006700478801001300545856044400558955005901002972000901061991001801070992001601088992005101104045029342000041196820130319051722.01 a1562-8809 a0000411968 a a19999999k f fre ba0 afre aFR a 0  ar aal z 0 10aPerspectives des communications de l'OCDE aPariscOrganisation de coopération et de développement économiqued1999- aTous les 2 ans 1tCommunications outlookx1019-975610aTechnologies de l'information et des communications aTélécommunicationsxPériodiques aTélédistributionxPériodiques02aOrganisation de coopération et de développement économiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://masetto.sourceocde.org/vl=1113719/cl=36/nw=1/rpsv/cgi-bin/jsearch_oecd_books?cheese=searchdb&form=expert&search0=perspectives%20des%20communications%20de%20l%27ocde%20NOT%20technologies&field0=title&limittitles=wis%3Dfre_bookperiodical&what=d1&dropdown=true&sortresultsby=rev_timestampzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1999) -(2007)cParisdMagasins/AnnexeeP 8° 5806 bis aZPAY aexempb201112 aDEW 383-389 aGEO RN1 Pays industrialisés, pays occidentaux01277nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200012000163210002300283326001400306437004600320606004700366710015000413801001300563856012400576856010800700955005900808972000900867992005100876992001200927992001200939119395959000032747620130319051722.01 a1996-3483 a0000327476 a a19949999k f fre ba0 afre aFR a 0  ar aal z 0 10aPerspectives des technologies de l'information de l'OCDEeTIC, commerce électronique et économie de l'information aPariscOCDEd1994- aBisannuel 1tInformation technology outlookx1019-973X aTechnologie de l'informationxPériodiques02aOrganisation de coopération et de développement économiquesbComité de la politique de l'information, de l'informatique et des communications 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://lysander.sourceocde.org/vl=5959222/cl=20/nw=1/rpsv/outlook_annuals.htm4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1994) -(2004)cParisdMagasins/AnnexeeP 4° 6092 bis aZPAY aGEO RN1 Pays industrialisés, pays occidentaux aDEW 004 aDEW 02001431nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004000139207001800179210002300197326001500220452006500235530004000300532009800340606005200438606004100490676001000531710006700541801002100608830005300629856021800682955006400900955006400964972000901028991001801037992001401055013349422000000494920131009142821.01 a0304-3274 aFNSP107074 a19900101a19679999 f ba0 afre aFR aaju 10aPerspectives économiques de l'OCDE 1ano. 1 (1967)- aPariscOCDEd1967- aSemestriel 1tPerspectives économiques de l'OCDE (En ligne)‎x1684-343600aPerspectives économiques de l'OCDE1 aPerspectives économiques de l'Organisation de coopération et de développement économiques aHistoire économiquez20e sièclexPériodiques aPrévision économiquexPériodiques a330.902aOrganisation de coopération et de développement économiques 3aFRbCCN0304-3274 a1967-2008 : collection envoyée au CTles en 20134 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/03043274/perspectiveseconocdezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLa dernière annéecParisd27, Salle 1er étageeDEW 330.91 bno. 1 (jul-1967) - ....cParisdMagasins/AnnexeeP 4° 2465 aZECH aexempb201306 aDEW 330.901449nas 2200313 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200017700148210002300325326001100348452006600359530004100425607004900466710003900515711003900554801001300593856042400606955006501030972000901095992001901104992001201123079580637000053980020140116121731.01 a1815-9508 a a20029999k fre ba0 afre aFR a 0  ar aa z 0 10aPerspectives économiques en Afrique‎fBanque africaine de développement‎gCentre de développement de l'Organisation de coopération et de développement économiques aPariscOCDEd2002- aAnnuel 1tPerspectives économiques en Afrique (En ligne)‎x1999-103700aPerspectives économiques en Afrique aAfriquexPolitique économiquexPériodiques02aCentre de développement de l'OCDE02aBanque africaine de développement 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://masetto.sourceocde.org/vl=1113719/cl=36/nw=1/rpsv/cgi-bin/jsearch_oecd_books?cheese=searchdb&form=expert&search0=%22Perspectives%20%E9conomiques%20en%20Afrique%2A%22&field0=title&limittitles=wis%3Dfre_bookperiodical&what=d1&dropdown=true&sortresultsby=rev_timestampzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(2002/2003) -(2006/2007)cParisdMagasins/AnnexeeP 4° 6977 aZPAY aGEO RE Afrique aDEW 96000818nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000139001502070011002892100012003002300024003123260016003366060044003528010013003968560044004098560037004539550005004909920021004959920012005160001222482000122248220130319051722.0 a0001222482 a a20129999k fre 01 ba0 afre aFR ar aah z  adr 10aPerspectives internationalesela revue des étudiants-chercheurs en Relations Internationales de Sciences Pob[Ressource informatique] 1a2012-1 aParisc aRevue électronique aTrimestriel aRelations internationalesxPériodiques 0aFRbFNSP4 uhttp://perspectivesinternationales.com/ zAccès libre au texte intégral.1 r aGEO RQ universel aDEW 32701220cas0 2200397 450 001001000000002001100010005001700021011001400038035002100052035001700073100004100090101000800131102000700139105001800146106000600164110001600170200002400186207002300210210003900233210005500272326001600327430003600343530002400379531002100403606004400424606004800468607005300516676000800569801003000577801002300607802000700630856008300637955006100720992002500781992001600806153901543000125218320131209103345.0 a2116-7443 a(OCoLC)762705176 aissn21167443 a20110722a20119999k y0frey50 ba0 afre aFR ay 0  ar aauu 0uu 10aPerspectives libres 0aN° 2 (avril 2011) aAubecLe Retour aux sourcesd2011-1 a[Paris]c[Scribédit/Le Retour aux sources]d2011- aIrrégulier 1tLibres (Paris. 2004)x1768-675X00aPerspectives libres 0aPerspect. libres aScience politiquexPériodiques2rameau aLibertéxPhilosophiexPériodiques2rameau aFrancexVie intellectuellexPériodiques2rameau a001 3aFRbAbesc20120405gAFNOR 3aFRbISSNc20110722 a074 uhttp://cerclearistote.com/category/revue/zAccès aux sommaires depuis le n°2.1 bno.2 (avr-2011)-....cParisdMagasins/AnnexeeP 8° 7005 aGEO RA4.06 France 01 aDEW 320-32101464cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200005000180210004000230326001600270452007000286530005900356607005200415607003500467607004400502801003000546801002300576802000700599856010900606856004600715856010900761856010800870955007000978992001801048992001201066075627396000114322920130319051722.01 a1570-5854 aissn15705854 a0001143229 a20030523a20029999k y0frey0103 ba0 aeng aNL ay  ar aaiu uu 10aPerspectives on European politics and society aKölnaLeidenaBostoncBrilld2002- aTrimestriel 1tPerspectives on European politics and society (Online)x1568-025810aPerspectives on European politics and societyb(Print) aEuropexPolitique et gouvernementxPériodiques aEuropexHistoirexPériodiques aEuropexUnitéz1990-....xPériodiques 3aFRbAbesc20071002gAFNOR 3aFRbISSNc20030523 a0j4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t748254466db=all zContenu :sommaires depuis le n° 1 (2000)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t748254466db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 7 no. 1 (mai-2006) -....cParisdMagasins/AnnexeeP 8° 7025 aGEO RA Europe aDEW 32001460cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101001300125102000700138110001600145200005400161207002600215210002500241326001600266530005400282606006200336607007000398607007400468801003000542801002300572802000700595856005300602856006500655856012800720856010800848955006500956972000901021992004201030992001401072060849894000092687320130319051722.01 a1569-1500 aissn15691500 a0000926873 a20020516a20029999u y1frey0103 ba0 aenggeng aNL aahu uu 00aPerspectives on global development and technology 0aVol. 1, no. 1 (2002)- aLeidencBrilld2002- aTrimestriel00aPerspectives on global development and technology aTechnologiexPays en voie de développementxPériodiques aPays en voie de développementxConditions socialesxPériodiques aPays en voie de développementxConditions économiquesxPériodiques 3aFRbAbesc20060113gAFNOR 3aFRbISSNc20030203 a0j4 uhttp://www.brill.nl/m_catalogue_sub6_id10024.htm zContenu : sommaires et résumés depuis le vol.1, n°1, 20024 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=KHL&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no.1 (2002) -....cParisdMagasins/AnnexeeP 8° 6863 aZSAB aGEO RO Pays en voie de développement aDEW 338.901357nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200006900163207002900232210004800261326001600309606003600325606004800361607005600409676000800465710004300473801001300516856009000529856010800619856010100727856003700828955007000865972000900935992002300944992001600967071042113000061504820140110103903.01 a1537-5927 a0000615048 a a20039999 fre 01 ba0 aeng aUS a 0  ar aah z 0 10aPerspectives on politicsfAmerican Political Science Association 1aVol.1, no. 1 (Mar 2003)- aNew YorkcCambridge University Pressd2003- aTrimestriel aScience politiquexPériodiques aScience politiqueyEtats-UnisxPériodiques aEtats-UnisxPolitique et gouvernementxPériodiques a32002aAmerican Political Science Association 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/15375927.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=110962 zAccès libre au texte intégral.1 bvol. 1 no. 1 (mar-2003) -....cParisdMagasins/AnnexeeP 4° 7030 aZSAB aGEO RC2 Etats-Unis aDEW 320-32101038nas 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000097001502100045002473260017002926060046003097020028003557020025003838010013004088560211004219450016006329550101006489910011007490000472408000047240820131113134647.0 a0000472408 a a1868 k fre ba0 afre aFR a 0  ar aa z 0 13aLa Petite lanterneeparaissant tous les samedisfAchille de SecondignégAmédée Désandré aParisb22, rue de la Monnaiecs.n.d1868 aHebdomadaire aSatire politique françaisexPériodiques 1aSecondignébAchille de 1aDésandrébAmédée 0aFRbFNSP4 uhttp://books.google.fr/books?id=AZzSAAAAMAAJ&dq=%22La%20Petite%20lanterne%22&hl=fr&pg=PA1#v=onepage&q=%22La%20Petite%20lanterne%22&f=falsezAccès libre au texte intégral. N°1 numérisé sur Google Livres b12°009.5101 b[n°1, spécimen], 20 juin 1868 ---> n° 15, 10 oct. 1868cParisdMagasins/Annexee12°009.510 > anumer001159nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210004900179326001700228430001100245606004700256676000800303856004300311856003600354856007000390856010800460955015700568955006500725972000900790992002200799992001200821039884228000005345720130319051723.01 a0999-2170 aFNSP254055 a0000053457 a19900101a19569999 ba0 afre aFR aaca 04aLes Petites affiches aPariscJournaux judiciaires associésd1956- aHebdomadaire 1aLa Loi aDroityFrancexJurisprudencexPériodiques a3404 uhttp://www.petites-affiches.presse.fr/ zAccès libre au texte intégral4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lextenso.com zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 3e étageeDEW 340zSeuls les nos reliés sont empruntables ; les 6 derniers mois sont consultables sur place1 bno. 105 (sep-1991) -....cParisdMagasins/AnnexeeP 4° 6070 aZPAY aGEO RA4.06 France aDEW 34800763nls 2200241 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001251350018001412000052001592100027002112300024002386060047002628560070003098560108003799920022004879920012005090000941453000094145320130319051723.0 aFNSP254055 a0000941453 a19900101a19959999 ba0 afre aFR aaca  adr 04aLes Petites affichesb[Ressource électronique] aPariscLextensod1995- aRevue électronqiue aDroityFrancexJurisprudencexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lextenso.com zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aGEO RA4.06 France aDEW 34801067nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210003400175326001200209488002700221606002900248606004000277607003600317710003300353801002100386856006400407856005700471955007900528955007900607972000900686992002200695992001200717039389308000005033920130319051723.01 a0245-9507 aFNSP246894 a0000050339 a19900101a19659999 ba0 afre aFR aafu 13aLe Peuple breton aLannioncPeuple bretond1965- aMensuel 1aPobl Vreiz (0245-9515) aActualitéxPériodiques aRégionalismeyFrancexPériodiques aBretagne (France)xPériodiques02aUnion démocratique bretonne 3aFRbCCN0245-95074 uhttp://www.arbedkeltiek.com/galleg/revues/peuple_breton.htm zSommaire des derniers numéros avec un peu de retard1 bno. 433 (jan-2000) -no. 539 (dec-2008)cParisdMagasins/AnnexeeP 4° 68461 bno. 138 (mai-1975) -no. 432 (dec-1999)cParisdMagasins/AnnexeeP F° 0404 aZPAY aGEO RA4.06 France aDEW 05001054cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200002900197207003200226210004900258530002900307531001700336712003500353801003000388801002300418802000700441856019300448955006700641991002000708038771543000109531920130319051724.0 a0031-8108 accn0031-8108 aissn00318108 a0001095319 a19751012a18929999uuuy0frey0103 ba0 aeng aUS a 0  ar aaha 0uu 14aThe Philosophical Review 0av. 1- (no. 1- ); Jan. 1892- aIthaca, N.YcCornell University Pressd1892-04aThe Philosophical review 0aPhilos. rev.02aSage School of Philosophy4340 3aFRbAbesc20070222gAFNOR 3aFRbISSNc20060706 a014 uhttp://archive.org/search.php?query=title%3A%28the%20philosophical%20review%29&page=1zAccès libre au texte intégral. Périodique numérisé sur Internet Archive (1892-1920 avec lacunes)1 bno. 4 (1950) -no. 3 (1952)cParisdMagasins/AnnexeeP 8° 0995 aPériobTP02 P801035nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154207002600180210006500206210003600271210003300307210003100340326003000371326002300401326002600424606003000450856004500480856006000525955007100585972000900656991001800665992001400683038771551000015853920131014091825.01 a0031-8116 aFNSP613409 a0000158539 a19900101a19509999 ba0 aeng aNL aafa 10aPhilosophical studies 1aVol. 1, no. 1 (1950)- aMinneapolis, Minn.cUniversity of Minnesota Pressd1950-1971 aDordrechtcD. Reideld1972-1988 aDordrechtcKluwerd1988-2004 aDordrechtcSpringerd2005- aQuinze fois par anb2000- aMensuelb1989-1999 aBimestrielb1950-1988 aPhilosophiexPériodiques4 uhttp://www.wkap.nl/jrnltoc.htm/0031-8116 zContenu : sommaires depuis le vol. 77, n°1, janv. 19951 bvol. 77 no. 1 (jan-1995) -....cParisdMagasins/AnnexeeP 8° 6128 aZSAB aexempb201202 aDEW 10-1400879cas0 2200289 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108110001600126200002500142207002600167210003400193326002600227326002600253530002500279606003000304801003000334856007200364955006900436955006300505972000900568992001200577099030136000105005220130918100222.01 a1951-1787 a20060410a20069999 y0frey0103 ba0 afre aFR a 0  aafa 0 10aPhilosophie magazine 0aN° 1(2006,avr./mai)- aPariscPhilo Éditionsd2006- a10 n°s par anb2007- aBimestrielb2006-200600aPhilosophie magazine aPhilosophiexPériodiques 3aFRbAbesc20061121gAFNOR4 uhttp://www.philomag.com/zContenu : sommaires des derniers numéros1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 71591 bno. 1 (mai-2006) -....cParisdMagasins/AnnexeeP 4° 7159 aZPAY aDEW 10000931nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210005500180300005600235326001500291530004100306606004000347856002400387955007600411955008700487972000900574991001800583992001400601992001400615039957004000005779520130319051724.01 a1162-325X aFNSP268152 a0000057795 a19900101b19912000 ba0 afre aFR aaja 10aPhilosophie politique aPariscPresses universitaires de Franced1991-2000 aPublication suspendue (fin 2002), no. 11, 2000 : dr aSemestriel10aPhilosophie politiqueb(Paris. 1991) aPhilosophie politiquexPériodiques4 uhttp://www.puf.com/1 bno. 1 (oct-1991) -no. 11 (avr-2000)cParisdMagasins/AnnexeeP 8° 57941 bno. 1 (oct-1991) -no. 11 (avr-2000)cParisdBibliothèque de rechercheeP 8° 5794 aZCAD aexempb201112 aDEW 320.5 aDEW 10-1401087nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200007600163210005600239326001500295606003000310676000800340710006700348801001300415856009500428856010800523955009400631972000900725992001400734992002500748040568679000057431320130403145028.01 a1283-7091 a0000574313 a a19979999k fre ba0 afre aFR a 0  ar aai z 0 13aLe Philosophoireelaboratoire de philosophiefLe Lisible et l'illisible aNeuilly-sur-SeinecLe Lisible et l'Illisibled1997- aSemestriel aPhilosophiexPériodiques a10002aLe Lisible et l'Illisiblec(Neuilly-sur-Seine, Hauts-de-Seine) 0aFRbFNSP uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-le-philosophoire.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 10 ; no. 12 (2000) ; no. 14 (2001) -no. 36 (2011)cParisdMagasins/AnnexeeP 8° 6717 aZPAY aDEW 10-14 aGEO RA4.06 France 0101115nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210005900186210004000245210003200285320004400317326001600361606004000377606004200417801002100459856009000480856010800570955007000678972000900748991001800757992001400775038829835000005077320140109162034.01 a0048-3915 aFNSP247583 a0000050773 a19900101a19719999 ba0 aeng aUS aahu 10aPhilosophy & public affairs aPrinceton, N.J.cPrinceton University Pressd1971-2003 aMalden, Mass.cBlackwelld2004-2008 aHoboken, N.J.cWileyd2008- aLa revue n'a pas été publiée en 2002 aTrimestriel aPhilosophie politiquexPériodiques aSociologiexPhilosophiexPériodiques 3aFRbCCN0048-39154 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00483915.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (aut-1971) -....cParisdMagasins/AnnexeeP 8° 2970 aZSAB aexempb200910 aDEW 10-1401116nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210006900188210002400257326002400281326002800305326002600333326002700359430003700386517003600423606003000459856009500489856008400584955006900668972000900737991001800746992001400764039143279000014542620130319051724.01 a0191-4537 aFNSP574245 a0000145426 a19950106a19789999 ba0 aeng aGB aaha 10aPhilosophy & social criticism aChestnut Hill, Mass.cPhilosophy and Social Criticismd1978-1993 aLondoncSaged1993- a9 nos par anb2008- a7 nos par anb2004-2007 aBimestrielb1995-2003 aTrimestrielb1978-1994 1tCultural hermeneuticsx0011-286010aPhilosophy and social criticism aPhilosophiexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sagepub.co.uk/journal.aspx?pid=105730 zContenu : sommaires depuis le vol. 23, n°1, janv. 1997 ; résumés depuis 19981 bvol. 20 no. 1/2 (1994) -....cParisdMagasins/AnnexeeP 8° 6088 aZSAB aexempb201202 aDEW 10-1401026nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154210003800192326001600230606003600246606004000282606003000322801002100352856010800373856010800481955007000589972000900659991001800668992001200686992001400698038829843000003212220130319051724.01 a0048-3931 aFNSP189373 a0000032122 a19900101a19719999 ba0 amul aCA aahu 10aPhilosophy of the social sciences aNewbury Park, Calif.cSaged1971- aTrimestriel aSciences socialesxPériodiques aPhilosophie politiquexPériodiques aPhilosophiexPériodiques 3aFRbCCN0048-39314 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1971) -....cParisdMagasins/AnnexeeP 8° 2994 aZSAB aexempb201106 aDEW 300 aDEW 10-1401160cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200004000156207002600196210004400222326001200266430005700278606002300335606004800358606003100406710003500437801003000472801002300502802000700525856006400532856006100596955006500657972000900722992002100731992002200752992001200774073604119000090289820130319051725.01 a1636-676X aissn1636676X a0000902898 a20030523a20059999 0fre 0103 ba0 afre aFR aafu uu 10aPlanète paixfMouvement de la paix 1aN° 500 (mars 2005- ) aSaint-OuencMouvement de la paixd2005- aMensuel 1tCombat pour la paix, la paix en mouvementx1623-4170 aPaixxPériodiques aMouvements pacifistesyFrancexPériodiques aDésarmementxPériodiques02aMouvement de la paixc(France) 3aFRbAbesc20050905gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.mvtpaix.org/outils/planete-paix/planete-paix.php zContenu : sommaires et sélection d'articles depuis 20031 bno. 500 (mar-2005) -....cParisdMagasins/AnnexeeP 4° 2270 aZGRA aGEO RQ Universel aGEO RA4.06 France aDEW 32700928nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002000163210002400183326001800207606004400225606004500269801001300314856010800327856010800435955007000543972000900613992001600622067777031000053889020130319051725.01 a1473-0952 a0000538890 a a20029999k fre ba0 aeng aGB a 0  ar aai z 0 10aPlanning theory aLondoncSaged2002- a3 n°s par an aPlanification économiquexPériodiques aAménagement du territoirexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-2002) -....cParisdMagasins/AnnexeeP 8° 6694 aZSAB aDEW 350-35401129nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009800154210002400252326001600276530002300292606005900315606006800374676000800442710007500450856006100525856012300586955006300709972000900772992002200781992001200803039844633000003215720140110141325.01 a0987-3260 aFNSP189444 a0000032157 a19910516a19879999 ba0 afre aFR aaha 10aPlein droitela revue du GISTIfGroupe d'information et de soutien des travailleurs immigrés aPariscGISTId1987- aTrimestriel00aPlein droitbParis aEmigration et immigrationxDroityFrancexPériodiques aTravailleurs étrangersxStatut juridiqueyFrancexPériodiques a32502aGroupe d'information et de soutien des travailleurs immigrésc(Paris)4 uhttp://www.gisti.org/publications/plein-droit/index.html zContenu : sommaires depuis le n°1, octobre 1987 ; sélection d'articles en texte intégral depuis le n°27, juin 19951 bno. 1 (oct-1987) -....cParisdMagasins/AnnexeeP 4° 5287 aZCAD aGEO RA4.06 France aDEW 32301650cas0 2200409 450 00100100000000200110001000500170002101100140003803500210005203500170007310000410009010100080013110200070013910500180014610600060016411000160017020000980018620700180028421000800030232600110038245201950039351700420058851700450063053000260067560600720070167600120077371000400078580100300082580100230085580200070087885601910088595500630107695500520113999200210119199200120121299200160122410448358X000124468920130527120954.0 a1957-2522 a(OCoLC)472902476 aissn19572522 a20060704a20069999u y0frey50 ba0 afre aFR ay  ar aaku uu 10aPME...erapport OSEO sur l'évolution des PMEfdirecteur de la publication Didier Havette,... 0aVol.1 (2005)- aMaisons-AlfortcGIE OSEO serviceaPariscLa Documentation françaised2006- aAnnuel 1tPME...bRessource électroniqueorapport OSEO sur l'évolution des PMEfdirecteur de la publication Didier Havette,...cMaisons-AlfortnGIE OSEO servicenLa Documentation françaised[2006]-10aRapport OSEO sur l'évolution des PME10aPME...erapport sur l'évolution des PME10aPME...b(Paris. 2006) aPetites et moyennes entreprisesxStatistiquesxPériodiques2rameau a338.64202aObservatoire des PMEc(France)4340 3aFRbAbesc20130417gAFNOR 3aFRbISSNc20120312 a074 uhttp://www.oseo.fr/a_la_une/etudes/observatoire_des_pme/rapport_sur_l_evolution_des_pmezAccès au texte intégral du rapport depuis 2007 et synthèse uniquement de la dernière édition1 bLa dernière annéecParisd27, Salle 2e étageeDEW 338.61 b(2012)-....cParisdMagasins/AnnexeeP 4° 7334 aGEO RQ Universel aDEW 338 aDEW 310-31901207nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001300154210002700167326001700194530002600211606002900237607002500266801002100291856019200312856010800504856002600612856007400638955006900712955006300781992001200844992002500856013559214000000506220130319051726.01 a0242-6005 aFNSP107252 a0000005062 a19900101a19729999 ba0 afre aFR aa u 13aLe Point aPariscLe Pointd1972- aHebdomadaire03aLe PointbParis. 1972 aActualitéxPériodiques aFrancexPériodiques 3aFRbCCN0242-60054 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.lepoint.fr zContenu : sommaire et articles en texte intégral du dernier numéro.1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 31831 bno. 1 (sep-1972) -....cParisdMagasins/AnnexeeP 4° 3183 aDEW 050 aGEO RA4.06 France 0101152nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200009900163210002800262326001500290422004600305430003500351530003800386606004200424607005000466712007800516801001300594856006600607856003600673955010800709972000900817004044762000029306220130319051726.0 a1253-1316 a0000293062 a b19962003k fre ba0 afre aFR a 0  ar aaj z 0 10aPoint de conjoncturefInstitut national de la statistique et des études économiques (France) aPariscINSEEd1996-2003 aSemestriel 1tNote de conjoncture de l'INSEEx0766-6268 1tPoint conjoncturel,x0992-166400aPoint de conjoncturebParis. 1996 aConjoncture économiquexPériodiques aFrancexConditions économiquesxPériodiques02aInstitut national de la statistique et des études économiquesc(France) 0aFRbFNSP4 uhttp://www.insee.fr/fr/indicateur/analys_conj/conj_resume.htm zAccès libre au texte intégral1 b(1999) -(2003)cParisdMagasins/AnnexeeP 4° 2730 bisz: les n° sont reliés avec la revue principale aZPAY01633nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200013600154210003000290210004500320210003700365326001500402530002700417606003600444607004300480607003200523676000800555710009400563856004800657856010000705856008800805856010800893955006701001955005901068972000901127991001801136992002701154992002601181992001601207040387046000014293020131219170450.01 a1262-1676 aFNSP566310 a0000142930 a19941130a19949999 ba0 afre aFR aaja 10aPôle Suderevue de science politique de l'Europe méridionalefCentre comparatif d'études des politiques publiques et des espaces aMontpelliercOPPESd2005- aCastelnau-Le-LezcEd. Climatsd2004-2005 aMontpelliercCEPELd1994-[2003?] aSemestriel10aPôle SudbMontpellier aScience politiquexPériodiques aMéditerranée (région)xPériodiques aEurope du SudxPériodiques a32002aCentre comparatif d'études des politiques publiques et des espaces locauxc(Montpellier)4 uhttp://www.persee.fr/listIssues.do?key=pole zAccès libre au texte intégral à partir de 1994 à l'exception des années les plus récentes4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-pole-sud.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 1 (1994) -....cParisdMagasins/AnnexeeP 8° 6085 aZPAY aexempb201204 aGEO RL4 Méditerranée aGEO RA6 Europe du Sud aDEW 320-32101057cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200003100180207002200211210002800233326001500261530001800276606003900294606004100333606002900374710003800403801003000441801002300471802000700494856003000501856005600531955005900587992002500646992001200671139572074000118490320130319051727.01 a2104-2195 aissn21042195 a0001184903 a20100106a20099999k y0frey0103 ba0 afre aFR ay  ar aaju uu 10aPoliepolitique de l'image 1aN°1 (juin 2009)- aPariscPoli éd.d2009- aSemestriel10aPolib(Paris) aPolitique et culturexPériodiques aCommunication visuellexPériodiques aTraitementxPériodiques02aPoli-politique de l'image (Paris) 3aFRbAbesc20100202gAFNOR 3aFRbISSNc20100202 a074 uhttp://www.poli-revue.fr/ zContenu : sommaires des n°s depuis le no. 1 (2009)1 bno. 1 (2009) -....cParisdMagasins/AnnexeeP 8° 7118 aGEO RA4.06 France 01 aDEW 30600924nls 2200289 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000074001642100043002383260016002816060025002976060039003228010013003618560101003748560108004759550005005839920032005889920014006200001180933000118093320130319051727.0 a1752-4520 a0001180933 a a20079999k fre 01 ba0 aeng aGB ar aah z  adr 10aPolicingb[Ressource électronique]ea journal of policy and practice aOxfordcOxford University Pressd2007- aTrimestriel aPolicexPériodiques aSécurité nationalexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=713463 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4. 02 Grande-Bretagne aDEW 363.200937nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001341350018001502000082001682100053002502300024003033000084003273000074004113260015004856060025005007120042005258010013005678560038005809550029006180000311830000031183020130319051727.0 a0000311830 a a19969999k fre ba0 aeng aCH a 0  az aau z 0  adr 10aPolicy papers - Bank for International Settlementsb[Ressource électronique] aBaslecBank for International Settlementsd1996- aDonnées textuelles aAccès au 18/04/2000 : World Wide Web. URL : http://www.bis.org/publ/ind ex.htm aTexte intégral au format pdf, télédéchargeable avec Adobe Acrobat aCollection aPolitique monétaire02aBanque des règlements internationaux 0aFRbFNSP4 uhttp://www.bis.org/publ/index.htm1 rconsultable sur Internet01024nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210005000185326001500235606004400250607005600294710003700350801002100387856003300408856007100441955007800512955007600590972000900666992002300675992001200698039090434000005100820130319051728.01 a0146-5945 aFNSP248221 a0000051008 a19900101a19779999 ba0 aeng aUS aagu 10aPolicy review (Washington) aWashiongton, D.C.cHeritage Foundationd1977- aBimestriel aRelations internationalesxPériodiques aEtats-UnisxPolitique et gouvernementxPériodiques02aHeritage Foundation (Etats-Unis) 3aFRbCCN0146-59454 uhttp://www.policyreview.org/ zContenu : sommaires depuis le n°72, print. 1995 ; texte intégral1 bno. 25 (ete-1983) -no. 118 (avr-2003)cParisdMagasins/AnnexeeP 4° 51171 bno. 1 (ete-1977) -no. 24 (pri-1983)cParisdMagasins/AnnexeeP 8° 3977 aZSAB aGEO RC2 Etats-Unis aDEW 32400778nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210004400174326001600218606003700234801002100271856004500292856005400337955006600391972000900457991001800466992001600484038773805000003226620130319051728.01 a0032-2687 aFNSP189709 a0000032266 a19900101a19709999 ba0 aeng aNL aahu 10aPolicy sciences aDordrechtcKluwer Academic Publ.d1970- aTrimestriel aPolitique publiquexPériodiques 3aFRbCCN0032-26874 uhttp://www.wkap.nl/jrnltoc.htm/0032-2687 zContenu : sommaires depuis le vol. 27, n°1, 19941 bvol. 1 no. 1 (1970) -....cParisdMagasins/AnnexeeP 8° 2986 aZSAB aexempb200910 aDEW 350-35401345nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210002800173326001600201606003600217606003700253710003500290856005700325856005900382856012800441856010800569856010900677856010800786955007100894972000900965991001700974992001600991039084752000023840720130319051728.01 a0144-2872 aFNSP841837 a0000238407 a19900101a19809999 ba0 aeng aGB aaha 10aPolicy studies aAbingdoncCarfaxd1980- aTrimestriel aPolitique socialexPériodiques aPolitique publiquexPériodiques02aPolicy Studies Institutec(GB)4 uhttp://www.tandf.co.uk/journals/carfax/01442872.html zContenu : sommaires depuis le vol. 17, n°1, mars 19964 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=56W&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713442426db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 18 no. 1 (mar-1997) -....cParisdMagasins/AnnexeeP 8° 6378 aZSAB aexemp$201301 aDEW 320-32101589nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002700139210006200166300007200228300008700300326001600387452005000403530002700453606004900480710004400529801002100573856023300594856020600827955008301033957005701116972000901173991001801182992002301200992001601223039141799000003226720131219170514.01 a0190-292X aFNSP189710 a19900101a19722011 ba0 aeng aUS aahu 10aPolicy studies journal aPSJaUrbana, Ill.cPolicy Studies Organizationd1972-2011 aNouvelle adresse bibliographique : Malden,Ma : Blackwell Publishing aDernière édition papier 2011 ; à partir de 2012 uniquement en version en ligne. aTrimestriel 1tPolicy studies journal (Online)‎x1541-007200aPolicy studies journal aPolitique publiqueyEtats-UnisxPériodiques02aPolicy Studies Organizationc(New York) 3aFRbCCN0190-292X4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=PSJ&site=ehost-livezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=110270zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1972) -vol. 39, no. 4 (2011)cParisdMagasins/AnnexeeP 8° 31991 b(1986) -(2009)cParisdMagasins/AnnexeeP Index 0771 aZCAD aexempb201004 aGEO RC2 Etats-Unis aDEW 350-35401221nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002600139210005700165326001600222440004500238452004700283517000800330530002600338606004900364606003700413710004400450801002100494856012800515955009000643957007200733972000900805991001800814992002300832992001600855039343170000003226820131119153756.01 a0278-4416 aFNSP189711 a19900101b19812001 ba0 aeng aUS aahu 10aPolicy studies review aUrbana, Ill.cPolicy Studies Organizationd1981-2001 aTrimestriel 1tThe Review of policy researchx1541-132X 1tPolicy studies review (online),x2162-630810aPSR aPolicy studies review aPolitique publiqueyEtats-UnisxPériodiques aPolitique publiquexPériodiques02aPolicy Studies Organizationc(New York) 3aFRbCCN0278-44164 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=PYW&site=ehost-live1 bvol. 1 no. 1 (aut-1981) -vol. 18 no. 4 (hiv-2001)cParisdMagasins/AnnexeeP 8° 44431 bvol. 6 (1986) -vol. 12 (1993)cParisdMagasins/AnnexeeP Index 0771 aZCAD aexempb201106 aGEO RC2 Etats-Unis aDEW 350-35401033nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001000154210002800164326001500192430004800207606003600255606003600291606004400327606004400371676001000415710002400425856003100449955006800480955005900548972000900607992003900616992001200655992001600667040212440000005528720130319051728.01 a1026-9487 aFNSP259305 a0000055287 a19900101a19919999 ca0 arus aRU aaga 10aPolis aMoskvacProgressd1991- aBimestriel 1aRabočij klass i sovremennyi mirx0321-2017 aSciences socialesxPériodiques aScience politiquexPériodiques aScience politiqueyRussiexPériodiques aSciences socialesyRussiexPériodiques a943.702aAkademiâ nauk SSSR4 uhttp://www.politstudies.ru1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 943.71 bno. 1 (1991) -....cParisdMagasins/AnnexeeP 8° 2965 aZCAD aGEO RA7.21 Russie (depuis 1991-92) aDEW 300 aDEW 320-32100916nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006100154210002700215326001700242530001900259606003600278607005200314856007600366856004100442955007000483972000900553991001800562992002200580992001200602036253227000003433820140108102758.01 a1120-9488 aFNSP199045 a0000034338 a19900101a19879999 ba0 aita aIT aaia 00aPolisericerche e studi su società e politica in Italia aBolognacMulinod1987- a3 nos par an00aPolisbBologna aScience politiquexPériodiques aItaliexPolitique et gouvernementxPériodiques4 uhttp://www.mulino.it/edizioni/riviste/scheda_rivista.php?issn=1120-9488 zSommaires depuis le n°1, avril 19971 bvol. 1 no. 1 (avr-1987) -....cParisdMagasins/AnnexeeP 8° 5143 aZSAB aexempb201011 aGEO RA6.03 Italie aDEW 94501104nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210003900193326001600232607002600248710006400274801002100338830005400359856004900413856006400462955006700526957015100593972000900744992002300753992001400776038774062000003228420130319051728.01 a0032-2970 aFNSP189760 a0000032284 a19900101a19569999 ba0 aeng aUS aahu 14aThe Polish review (New York. 1956) aNew York, NYcPolish reviewd1956- aTrimestriel aPolognexPériodiques02aPolish Institute of Arts and Sciences in America (New York) 3aFRbCCN0032-2970 aVol.1, n°1, 1956---> vol.29, 1984 < P 8° 1760 >4 uhttp://www.piasa.org/polishreview/infopr.htm4 zContenu : accès aux sommaires depuis le vol. 1, n°1, 19421 bvol. 30 no. 1 (1985) -....cParisdMagasins/AnnexeeP 8° 17601 z(1956) -(1966) ; vol. 1 (1956) -vol. 26 (1981) dans le vol. 26 no. 4 (1981) ; vol. 26 (1981) -vol. 40 (1995)cParisdMagasins/AnnexeeP Index 0120 aZPAY aGEO RA5.11 Pologne aDEW 943.801169nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004400139210005300183326002200236326002200258530001300280606005400293607005800347710004800405801002100453856013300474955009300607957007200700972000900772991001800781992002800799992001600827039376850000003247420130607140244.01 a0303-9757 aFNSP190233 a19900101a19729999 ba0 aspa aVE aaju 10aPoliteiaerevista de ciencias politicas aCaracascInstituto de estudios políticosd1972- aSemestrielb2000- aAnnuelb1989-199900aPoliteia aScience politiqueyAmérique latinexPériodiques aAmérique latinexPolitique économiquexPériodiques02aInstituto de estudios políticosc(Caracas) 3aFRbCCN0303-97574 uhttp://www2.scielo.org.ve/scielo.php?script=sci_issues&pid=0303-9757&lng=es&nrm=isozAccès libre au texte intégral depuis 20011 bvol. 1 (1972) -vol. 11 (1982) ; vol. 13 (1989) -....cParisdMagasins/AnnexeeP 8° 31471 bvol. 1 (1972) -vol. 20 (1997)cParisdMagasins/AnnexeeP Index 0809 aZGRA aexempb200910 aGEO RD Amérique latine aDEW 320-32100883nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210002700179326001600206606003100222606005000253801002100303856007600324856005000400955007000450972000900520991001800529992002200547992001200569038774151000005055720130319051728.01 a0032-3063 aFNSP247250 a0000050557 a19900101a19709999 ba0 aita aIT aahu 10aPolitica del diritto aBolognacMulinod1970- aTrimestriel aDroityItaliexPeriodiques aInstitutions politiquesyItaliexPériodiques 3aFRbCCN0032-30634 uhttp://www.mulino.it/edizioni/riviste/scheda_rivista.php?issn=0032-3063 zContenu : sommaires depuis le n°1, mars 19901 bvol. 1 no. 1 (jul-1970) -....cParisdMagasins/AnnexeeP 8° 2842 aZCAD aexempb200910 aGEO RA6.03 Italie aDEW 34900879nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002300139210004800162326001800210530004800228606003700276606004500313856005800358856004200416955007000458972000900528991001800537992002200555992001200577036253251000003250020131029115517.01 a1120-9496 aFNSP190278 a19910522a19859999 ba0 aita aIT aaia 00aPolitica economica aBolognacSocietà Editrice il Mulinod1985- a3 n°s par an 0aPolitica economicabBologna. Testo stampato aEconomie politiquexPériodiques aEconomie politiqueyItaliexPériodiques4 uhttp://www.mulino.it/edizioni/riviste/politicaeco.htm zContenu : sommaire du dernier numéro1 bvol. 3 no. 1 (avr-1987) -....cParisdMagasins/AnnexeeP 8° 5157 aZCAD aexempb201011 aGEO RA6.03 Italie aDEW 33001121nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210005000177326002200227326002700249606004400276607005000320676000800370710007400378856003600452856006600488955006700554955006700621972000900688991001800697992002300715992002100738992001200759039203093000005295020130319051728.01 a0213-6856 aFNSP252859 a0000052950 a19900101a19879999 ba0 aspa aES aaga 10aPolítica exterior aMadridcEstudios de política exteriord1987- aBimestrielb1994- aTrimestrielb1987-1993 aRelations internationalesxPériodiques aEspagnexRelations extérieuresxPériodiques a32702aInstituto de cuestiones internacionales y política exterior (Madrid)4 uhttp://www.politicaexterior.com zContenu : sommaires et résumés depuis le vol. 1, n°1, 19871 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 5 no. 22 (1991) -....cParisdMagasins/AnnexeeP 8° 5780 aZSAB aexempb201111 aGEO RA6.02 Espagne aGEO RQ Universel aDEW 32701169nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002100163210003900184326001600223530003500239606004400274676000800318710008000326801001300406856005200419856010000471955006700571955018400638972000900822992001200831048888028000058305720130731143806.01 a1518-6660 a0000583057 a a19929999k fre ba0 apor aBR a 0  ar aah z 0 10aPolitica externa aSão PaulocEd. Paz e Terrad1992- aTrimestriel00aPolitica externab(São Paulo) aRelations internationalesxPériodiques a32702aUniversidade de São PaulobPrograma de política internacional e comparada 0aFRbFNSP4 uhttp://www.politicaexterna.com.br/Principal.htm zContenu : sommaires depuis le volume 1, n°1, juin 1992 et quelques articles en texte intégral1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bVol. 8 no. 1 (1999) ; vol. 8 no. 3 (2000) ; vol. 11 no. 1 (2002) ; vol. 11 no. 4 (2003) ; vol. 12 no. 1 (2003) ; vol. 12 no. 3 (dec-2003) -....cParisdMagasins/AnnexeeP 8° 6724 aZPAY aDEW 32701063nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002800139210002800167326001600195530004200211606004400253607004900297710010800346801002100454856002700475856004000502955006700542955006700609972000900676991001800685992002200703992001200725038774186000003260320131017150822.01 a0032-3101 aFNSP190528 a19900101b19692005 ba0 amul aIT aayu 10aPolitica internazionale aRomacIPALMOd1969-2005 aIrrégulier 0aPolitica internazionalebEd. italiana aRelations internationalesxPériodiques aItaliexRelations extérieuresxPériodiques02aIstituto per le relazioni tra l'Italia e i paesi dell' Africa, America latina e Medio Orientec(Italie) 3aFRbCCN0032-31014 uhttp://www.ipalmo.com/ zContient le sommaire du dernier no.1 bno. 1 (1995) -no. 5 (2001)cParisdMagasins/AnnexeeP 4° 65791 bno. 2 (1969) -no. 4 (1994)cParisdMagasins/AnnexeeP 8° 2770 aZGRA aexempb201310 aGEO RA6.03 Italie aDEW 32701012nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210007400179326001500253606003600268606004500304710006300349856004300412856011800455955007400573972000900647991001800656992002000674992001600694071424768000015872920130925161105.01 a1405-1060 aFNSP613910 a0000158729 a19900101a19949999 ba0 aspa aMX aaja 10aPolítica y gobierno aMéxicocCIDE, Centro de investigación y docencia económicasd1994- aSemestriel aScience politiquexPériodiques aScience politiqueyMexiquexPériodiques02aCentro de investigación y docencia económicasc(Mexique)4 uhttp://www.politicaygobierno.cide.edu/ zContenu : sommaires, résumés et texte intégral depuis le vol.1, n°1, 1994 (à l'exception du dernier numéro)1 bvol. 1 no. 1 (jan/jun-1994) -....cParisdMagasins/AnnexeeP 8° 6130 aZSAB aexempb201202 aGEO RD1 Mexique aDEW 320-32101211nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210009000188326001800278606004500296606005400341606005400395606004500449710008500494856008100579856007900660955007400739972000900813992002800822992002300850992001200873036308129000007901720130319051728.01 a1130-8001 aFNSP354558 a0000079017 a19900101a19889999 ba0 aspa aES aaia 10aPolítica y sociedad (Madrid) aMadridcUniversidad complutense. Facultad de ciencias políticas y sociologíad1988- a3 n°s par an aSciences socialesyEspagnexPériodiques aScience politiqueyAmérique latinexPériodiques aSciences socialesyAmérique latinexPériodiques aScience politiqueyEspagnexPériodiques02aUniversidad complutense de MadridbFacultad de ciencias políticas y sociología4 uhttp://www.ucm.es/BUCM/revistasBUC/portal/modulos.php?name=Revistas2&id=POSO zContenu : sommaires, résumés et texte intégral depuis le volume 1, 19881 bno. 1 (1988) ; no. 9 (1991) -....cParisdMagasins/AnnexeeP 4° 6165 aZSAB aGEO RD Amérique latine aGEO RA6.02 Espagne aDEW 30001133nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001322000022001392100047001613260012002086010066002206060048002866060037003347100052003718010021004238560037004448560078004819550092005599550092006519720009007439910018007529920023007709920014007930000032605000003260520130319051728.01 a0032-3128 aFNSP190531 a0000032605 a19900101b19452008 ba0 aeng aUS10aPolitical affairs aNew York, NYcPolitical affairsd1945-2008 aMensuel02aCommunist party of the United States of AmericaxPériodiques aPartis politiquesyEtats-UnisxPériodiques aPartis communistesxPériodiques02aCommunist Party of the United States of America 3aFRbCCN0025/293X4 uhttp://www.politicalaffairs.net/ zContenu : texte intégral des articles depuis 2004, sommaires depuis 20021 bvol. 78 no. 2 (fev-1999) - vol. 86 no 11 (dec-2007)cParisdMagasins/AnnexeeP 4° 68171 bvol. 31 no. 10 (oct-1952) -vol. 78 no. 1 (jan-1999)cParisdMagasins/AnnexeeP 8° 1142 aZCAD aexempb201201 aGEO RC2 Etats-Unis aDEW 320.500973nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000230015421000340017732600160021160600420022760600390026980100210030885600900032985601080041995500700052797200090059799100180060699200330062499200140065703914254X000003260620130319051728.01 a0190-9320 aFNSP190533 a0000032606 a19900101a19799999 ba0 aeng aUS aahu 10aPolitical behavior aNew YorkcPlenum Pressd1979- aTrimestriel aParticipation politiquexPériodiques aSociologie politiquexPériodiques 3aFRbCCN0190-93204 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01909320.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (pri-1979) -....cParisdMagasins/annexeeP 8° 4312 aZSAB aexempb201103 aGEO RS Sans aspect régional aDEW 306.201242nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210003800182326001600220430005500236606003600291606005700327606005700384856005100441856005900492856010900551856010800660955007400768972000900842991001800851992002300869992001200892040284433000006408920130319051728.01 a1058-4609 aFNSP293669 a0000064089 a19900101a19929999 ba0 aeng aUS aaha 00aPolitical communication aLondoncTaylor and Francisd1992- aTrimestriel 1aPolitical communication and persuasion,x0195-7473 aLangage politiquexPériodiques aCommunication en politiqueyEtats-UnisxPériodiques aHommes politiquesyEtats-UnisxLangagexPériodiques4 uhttp://www.tandf.co.uk/journals/listings/p.asp zContenu : table des matières depuis (1997)vol.14:n°14 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713774515db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 9 no. 1 (jan/mar-1992) -....cParisdMagasins/AnnexeeP 8° 4599 aZSAB aexempb201010 aGEO RC2 Etats-Unis aDEW 30201374nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002500139210003900164300004400203326002200247326002700269452004600296530002500342606004000367710005000407801002100457856012800478856010800606856009000714856010800804955007100912972000900983991001800992992001401010039106403000003262220130910121817.01 a0162-895X aFNSP190569 a19900101a19799999 ba0 aeng aUS aagu 10aPolitical psychology aCambridge, Mass.cBlackwelld1979- aPublié par Plenum Press puis Blackwell aBimestrielb2004- aTrimestrielb1979-2003 1tPolitical psychology (Online),x1467-9221 aPolitical psychology aPsychologie politiquexPériodiques02aInternational Society of Political Psychology 3aFRbCCN0162-895X4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=BS5&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0162895X.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (prin-1979) -....cParisdMagasins/AnnexeeP 8° 4241 aZSAB aexempb201106 aDEW 306.201096nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210003900178326001600217530004500233607006100278676000800339801002100347856005100368856007800419955006700497955009700564957005700661972000900718992003100727992001200758038774224000000507220130319051731.01 a0032-3179 aFNSP107262 a0000005072 a19900101a19309999 ba0 aeng aGB aahu 10aPolitical quarterly aLondoncPolitical Quarterlyd1930- aTrimestriel 0aPolitical quarterlybLondon. 1930. Print aGrande-BretagnexPolitique et gouvernementxPériodiques a320 3aFRbCCN0032-31794 uhttp://www.blackwell-synergy.com/toc/poqu/78/3 zContenu : sommaires et résumés depuis le vol. 68, n°1, janv.-mars 19971 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 b(1930) -(1940) ; vol. 14 no. 1 (jan-1943) -....cParisdMagasins/AnnexeeP 8° 0041wLacunes1 b(1930) -(1978)cParisdMagasins/AnnexeeP Index 0330 aZSAB aGEO RA4.02 Grande-Bretagne aDEW 32401307nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210004600187326001600233430004800249606004800297710004800345856009000393856010800483856008100591955006900672955007100741955009100812972000900903991001800912992002300930992001600953040299813000009512420131219170550.01 a1065-9129 aFNSP415868 a0000095124 a19900101a19939999 ba0 aeng aUS aaha 10aPolitical research quarterly aSalt Lake CitycUniversity of Utahd1993- aTrimestriel 1aWestern political quarterlyxISSN 0043-4078 aScience politiqueyEtats-UnisxPériodiques02aUniversity of UtahbInstitute of Government4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/10659129.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://prq.sagepub.com/current.dtl1 bL'année en courscParisdBibliothèque de rechercheeP 4° 70071 bvol. 56 no. 1 (mar-2003) -....cParisdMagasins/AnnexeeP 4° 70071 bvol. 46 no. 1 (mar-1993) -vol. 55 no. 4 (dec-2002)cParisdMagasins/AnnexeeP 8° 0524 aZCAD aexempb201111 aGEO RC2 Etats-Unis aDEW 320-32101680nas 2200421 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154207002500186210005000211326001600261606003600277606004800313676000800361710004500369801002100414856002900435856006500464856009000529856010800619856010100727856010800828955006700936955006901003955006301072957005701135972000901192991001801201992002301219992001601242038774267000000507820131219170640.01 a0032-3195 aFNSP107268 a0000005078 a19900101a18869999 ba0 aeng aUS aahu 10aPolitical science quarterly 1avol.1 no. 1 (1886) - aNew YorkcAcademy of Political Scienced1886- aTrimestriel aScience politiquexPériodiques aScience politiqueyEtats-UnisxPériodiques a32002aAcademy of Political Sciencec(New York) 3aFRbCCN0032-31954 uhttp://www.psqonline.org zContenu : sommaires et résumés depuis le n°1, print. 19764 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00323195.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=108802 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bL'année en courscParisdBibliothèque de rechercheeP 8° 00391 bno. 1 (mar-1886) -....cParisdMagasins/AnnexeeP 8° 00391 b(1886) -(1930)cParisdMagasins/AnnexeeP Index 0090 aZCAD aexempb201103 aGEO RC2 Etats-Unis aDEW 320-32101390nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005300154207001700207210002900224326001600253606003600269676000800305710005600313801002100369856007400390856007200464856010100536856010800637955006700745955006900812955007000881957005200951972000901003992001601012038774313000000510020131219170838.01 a0032-3217 aFNSP107320 a0000005100 a19900101a19539999 ba0 aeng aGB aahu 10aPolitical studiesfPolitical Studies Association 1aFeb.1953---> aOxfordcBlackwelld1953- aTrimestriel aScience politiquexPériodiques a32002aPolitical Studies Association of the United Kingdom 3aFRbCCN0032-32174 uhttp://www.blackwellpublishers.co.uk/journal.asp?ref=0032-3217&site=1 zContenu : sommaires et résumés depuis le vol. 45, n°1, mars 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100909 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bL'année en courscParisdBibliothèque de rechercheeP 8° 11741 bvol. 1 no. 1 (fev-1953) -....cParisdMagasins/AnnexeeP 8° 11741 b1953-1962cParisdMagasins/AnnexeeP Index 0228 aZCAD aDEW 320-32101181nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002100139210003800160326002200198326002700220530002100247606004000268801002100308856017500329856019500504955006900699955007000768972000900838991001800847992001400865038892146000003284220131219170925.01 a0090-5917 aFNSP191080 a19900101a19739999 ba0 aeng aUS aagu 10aPolitical theory aNewbury Park, Calif.cSaged1973- aBimestrielb1997- aTrimestrielb1973-199600aPolitical theory aPhilosophie politiquexPériodiques 3aFRbCCN0090-59174 uhttps://acces-distant.sciences-po.fr/fork?http://ptx.sagepub.com/zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00905917.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bL'année en courscParisdBibliothèque de rechercheeP 8° 33741 bvol. 1 no. 1 (fev-1973) -....cParisdMagasins/AnnexeeP 8° 3374 aZCAD aexempb201005 aDEW 320.501233nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002200163210005500185326002200240326002700262430004600289517002400335530003900359606004400398607005600442710004200498801001300540856006000553856011400613955007100727957001700798972000900815992002300824992001200847094889708000042977220130319051732.01 a1555-5623 a0000429772 a a20019999k fre ba0 aeng aUS a 0  ar aag z 0 10aPolitics & policy aStatesboro, GAcGeorgia Southern Universityd2001- aBimestrielb2008- aTrimestrielb2001-2007 1tSoutheastern political review,x0730-217710aPolitics and policy00aPolitics & policybStatesboro, Ga. aRelations internationalesxPériodiques aEtats-UnisxPolitique et gouvernementxPériodiques02aGeorgia Political Science Association 0aFRbFNSP4 uhttp://class.georgiasouthern.edu/pap/Pages/volumes.html zContient : sommaires, résumés et texte intégral (sauf dernier volume) depuis le volume 29, n°1, mars 20011 bvol. 29 no. 1 (mar-2001) -....cParisdMagasins/AnnexeeP 8° 32691 eP Index 0806 aZSAB aGEO RC2 Etats-Unis aDEW 97300933nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154207003100177210003800208326001600246517002500262606003600287801002100323856007000344856010800414955007000522972000900592991001800601992001200619038774372000003297620131025110548.01 a0032-3292 aFNSP195492 a0000032976 a19900101a19709999 ba0 aeng aUS aahu 10aPolitics & society 1aVol. 1, no. 1 (Nov. 1970)- aNewbury Park, Calif.cSaged1970- aTrimestriel10aPolitics and society aSciences socialesxPériodiques 3aFRbCCN0032-32924 uhttps://acces-distant.sciences-po.fr/fork?http://pas.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (nov-1970) -....cParisdMagasins/AnnexeeP 8° 2921 aZSAB aexempb201004 aDEW 30001218nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210002900180326001800209517002200227517006100249606005300310710005600363801002100419856007100440856007300511856010500584856010800689955007000797972000900867992001600876039315215000003294420130319051732.01 a0263-3957 aFNSP195414 a0000032944 a19900101a19819999 ba0 aeng aGB aaju 10aPolitics (Manchester) aOxfordcBlackwelld1981- a3 n°s par an10aPolitics (Oxford)10aPoliticsesurveys, debates and controversies in politics aScience politiqueyGrande-BretagnexPériodiques02aPolitical Studies Association of the United Kingdom 3aFRbCCN0263-39574 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0263-3957 zContenu : sommaires et résumés depuis le vol. 17, n°1, fév. 19974 uhttps://acces-distant.sciences-po.fr/fork?http://www-fr.ebsco.com/online/direct.asp?JournalID=100910 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (avr-1981) -....cParisdMagasins/AnnexeeP 4° 5196 aZCAD aDEW 320-32101179nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200012400163210005600287326002300343326002900366517003900395517000800434606004600442606004000488710007100528801001300599856002800612856010800640955007000748972000900818992001400827067775381000050512820130319051732.01 a1470-594X a0000505128 a a20029999k fre ba0 aeng aGB a 0  ar aai z 0 10aPolitics, philosophy & economicsePPEfin association with the Murphy Institute of Political Economy, Tulane University aLondonaThousand Oaks, CAcSage publicationsd2002- aTrimestriel$d2008- a3 n°s par an$d2002-200710aPolitics, philosophy and economics10aPPE aSciences sociales et moralexPériodiques aPhilosophie politiquexPériodiques02aMurphy Institute of Political Economyc(La Nouvelle-Orléans, La.) 0aFRbFNSP4 uhttp://ppe.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (fev-2002) -....cParisdMagasins/AnnexeeP 8° 6669 aZSAB aDEW 320.501168cas0 2200337 450 001001000000002001100010005001700021011001400038035001500052100004100067101001300108102000700121105001800128106000600146110001600152200003400168207003100202210003100233326002300264430006200287606003200349606004000381606003200421606003500453801003000488856008400518856010800602955007100710992001600781992003300797153374586000121873220130319051732.01 a2156-7689 a0001218732 a20110630a20119999k y0frey50 ba0 aenggeng aGB ay 0  ar aaha 0uu010aPolitics, religion & ideology 0aVol. 12, no.1 (mars 2011)- aAbingdoncRoutledged2011- aTrimestrielb2011- 1tTotalitarian movements and political religionsx1469-0764 aTotalitarismexPériodiques aReligion et politiquexPériodiques aAutoritarismexPériodiques aReligion et EtatxPériodiques 3aFRbAbesc20110927gAFNOR4 uhttps://acces-distant.sciences-po.fr/fork?http://www.tandfonline.com/loi/ftmp21 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 12 no. 1 (mar-2011) -....cParisdMagasins/AnnexeeP 8° 6579 aDEW 320-321 aGEO RS Sans aspect régional01163nls 2200253 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281350018001342000097001522100063002493300252003126060063005646060055006278010013006828300010006958560125007058560079008300000769581000076958120130319051732.0 a0000769581 a d20009999k fre 01 0 aeng aUS ay z y  az adr 10aPolitics and international relationsb[Ressource électronique]ea SAGE full-text collection aThousand OakscSage:aBethesdacdistributed by CSAd2000?- aContient plus de 18.000 articles en texte intégral provenant de 23 revues en science politique, relations internationales et area studies. Possibilité de chercher par titre de revue, par auteur d'articles ou par sujet. Mise à jour hebdomadaire. aRelations internationalesxPériodiquesxBases de données aScience politiquexPériodiquesxBases de données 0aFRbFNSP amf/dm4 uhttps://acces-distant.sciences-po.fr/fork?http://uk1.csa.com/ids70/quick_search.php?SID=8f3214203a2b614e76affff56c5909be4 zConsultation : uniquement à partir des postes publics de la Bibliothèque01035cas0 2200325 450 001001000000002001100010005001700021011001400038035002100052035001700073100004100090101000800131102000700139105001800146106000600164110001600170200002600186207003300212210005200245326002300297606004000320801003000360801002300390802000700413856006400420856010800484955007000592992001400662992003300676131883992000124922520131007170149.01 a1755-0483 a(OCoLC)224948885 aissn17550483 a20090311a20089999u y0frey50 ba0 aeng aGB ay 0  ar aaia 0uu 00aPolitics and religion 0aVol. 1, No 1 ( avril 2008 -) aCambridge [u.a.]cCambridge Univ. Pressdc2008- aTrimestrielb2008- aReligion et politiquexPériodiques 3aFRbAbesc20130129gAFNOR 3aFRbISSNc20130121 a024 uhttp://journals.cambridge.org/action/displayJournal?jid=RAP zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 1 (avr-2012) -....cParisdMagasins/AnnexeeP 8° 7216 aDEW 20-29 aGEO RS Sans aspect régional01097nas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101001800125102000700143105001800150106000600168110001600174200008200190210007300272510002600345510003000371530002800401606002700429606004000456801003000496801002300526856004700549856006200596955006600658992002100724992001400745140689729000118458720131007131700.01 a1820-6581 aissn18206581 a0001184587 a20100218a20079999 0frey0103 ba0 asccaengafre aRS ay  ar aaj 10aPolitikologija religijed= Politics and religiond= Politologie des religions aBeogradcCentar za proučavanje religije i versku tolerancijud2007-10aPolitics and Religion10aPolitologie des religions10aPolitikologija religije aReligionxPériodiques aReligion et politiquexPériodiques 3aFRbAbesc20100218gAFNOR 3aFRbISSNc200806014 uhttp://www.politicsandreligionjournal.com/ zContient le sommaire des n°s et le résumé des articles1 bvol. 2 no. 1 (2008) -....cParisdMagasins/AnnexeeP 8° 7123 aGEO RQ Universel aDEW 20-2901335nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000580015421000610021232600240027332600260029760600520032360600360037571000500041180100210046185601030048285601080058585601090069385601080080295500700091097200090098099100200098903930227X000003299120130319051735.01 a0258-9346 aFNSP195519 a0000032991 a19900101a19749999 ba0 amul aGB aaju 10aPolitikoneSouth African journal of political studies aPretoriacStaatkundige Vereniging van Suid-Afrikad1974- a3 nos par anb2006- aSemestrielb1974-2005 aScience politiqueyAfrique du SudxPériodiques aScience politiquexPériodiques02aPolitical Science Association of South Africa 3aFRbCCN0258-93464 uhttps://acces-distant.sciences-po.fr/fork?http://eJournals.ebsco.com/Journal2.asp?JournalID=104654 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713442999db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jun-1974) -....cParisdMagasins/AnnexeeP 8° 3967 aZCAD aexempb201009xx01096cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200001400174210003200188326001500220517003200235530002700267606004700294606004600341607004700387801003000434801002300464802000700487856005300494856009700547955006500644992002500709992001200734068804083000117929820130319051735.01 a1372-908X aissn1372908X a0001179298 a20020530a19979999 0fre 0103 ba0 afre aBE ay  aag 10aPolitique aBruxellescPolitiqued1997- aBimestriel10aPolitique, revue de débats10aPolitiqueb(Bruxelles) aVie intellectuelleyBelgiquexPériodiques aIdées politiquesyBelgiquexPériodiques aBelgiquexVie intellectuellexPériodiques 3aFRbAbesc20080130gAFNOR 3aFRbISSNc20020530 a0m4 uhttp://politique.eu.org/archives/1997/index.html zContient : sommaires plus ou moins détaillés et résumés d'articles depuis le no. 1, 19971 bno. 58 (fev-2009) - ….cParisdMagasins/AnnexeeP 4° 7261 aGEO RA4. 04 Belgique aDEW 94001207nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154207003300178210002700211326001600238530003100254607002600285676000800311710006300319711007600382801002100458856005800479856012200537955006600659955006200725972000900787991001800796992001900814992001200833039385663000000510120131219171007.01 a0244-7827 aFNSP107324 a0000005101 a19900101a19819999 ba0 afre aFR aahu 10aPolitique africaine 1a1ère an., no 1(janv. 1981)- aPariscKarthalad1981- aTrimestriel10aPolitique africainebParis aAfriquexPériodiques a96002aCentre d'études et de recherches internationalesc(Paris)02aCentre de recherche et d'étude sur les pays d'Afrique orientalec(Pau) 3aFRbCCN0244-78274 uhttp://www.politique-africaine.com/numeros/liste.html zContenu : texte intégral du n°1, janv. 1981 au n°81, mars 2001 ; sommaires et résumés depuis le n°82, juin 20011 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9601 bno 1 (jan-1981) -....cParisdMagasins/AnnexeeP 8° 4357 aZCAD aexempb201104 aGEO RE Afrique aDEW 96001275cas0 2200385 450 00100100000000200110001000500170002101100140003803500170005203500150006910000410008410100080012510200070013310600060014011000160014620000260016220700280018821000300021621000410024632600180028760700560030560700530036167600080041471000840042280100300050680100230053680200070055985600800056685600700064695500660071695500630078297200090084599200230085499200120087708711237X000087687520131014181831.01 a1771-8848 aissn17718848 a0000876875 a20050513a20059999 y0frey0103 ba0 afre aFR ar aaiu uu 10aPolitique américaine 0aN°1 (2005, printemps)- aPariscL'Harmattand2012- aPariscChoiseul éditionsd2005-2011 a3 n°s par an aEtats-UnisxPolitique et gouvernementxPériodiques aEtats-UnisxRelations extérieuresxPériodiques a97002aInstitut Choiseul pour la politique internationale et la géoéconomiec(Paris) 3aFRbAbesc20050905gAFNOR 3aFRbISSNc20050601 a074 uhttp://www.editions-harmattan.fr/index.asp?navig=catalogue&obj=revue&no=881 zSommaires des n°s et résumés des articles depuis le n°1, 20051 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9701 bno. 1 (pri-2005) -....cParisdMagasins/AnnexeeP 8° 6835 aZPAY aGEO RC2 Etats-Unis aDEW 97001406nas 2200373 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000280015421000660018232600250024832600260027343000550029960600360035460600640039067600080045471000480046285602030051085600360071385600580074985600360080795500670084395500600091097200090097099100180097999200190099799200160101603643762X000019686620130319051736.01 a1203-9438 aFNSP722405 a0000196866 a19900101a19959999 ba0 afre aCA aaia 10aPolitique et sociétés aMontréalcSociété québécoise de science politiqued1995- a3 n°s par anb1997- aSemestrielb1995-1996 1aRevue québécoise de science politiquex1189-9565 aScience politiquexPériodiques aScience politiqueyCanadayQuébec (province)xPériodiques a32002aSociété québécoise de science politique4 uhttps://acces-distant.sciences-po.fr/fork?http://web.ebscohost.com/ehost/detail?sid=162696fd-2a61-4576-9562-2ed1d2d286cc%40sessionmgr14&vid=1&hid=13&bdata=JnNpdGU9ZWhvc3QtbGl2ZQ%3d%3d#db=poh&jid=LT1 zAccès libre au texte intégral4 uhttp://www.erudit.org/revue/ps/2012/v31/n1/index.html zAccès libre au texte intégral1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 28 (1995) -....cParisdMagasins/AnnexeeP 8° 4562 aZSAB aexempb201003 aGEO RC1 Canada aDEW 320-32101925nas 2200481 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154207004200180210006400222210006400286210007100350210003700421210004900458300003400507326002300541326002600564488009200590530003300682606004400715606003200759676000800791710005300799801002100852856009900873856010800972856002601080856006201106955006701168955008801235955006901323972000901392992002101401992001201422992000901434039226662000000510420131219171226.01 a0032-342X aFNSP107327 a0000005104 a19900101a19369999 ba0 afre aFR aahu 10aPolitique étrangère 1aa[1ère année], no. 1 (févr. 1936)- aPariscCentre d'études de politique étrangèred1936-1940 aPariscCentre d'études de politique étrangèred1945-1979 aPariscInstitut français des relations internationalesd1979-2004 aPariscIFRIcA. Colind2005-2008 aPariscIFRIcDocumentation Françaised2009- aN' a pas paru de 1941 à 1944 aTrimestrielb1980- aBimestrielb1936-1979 1aLettre d'information - Institut français des relations internationalesxISSN 0754-535510aPolitique étrangèrebParis aRelations internationalesxPériodiques aGéopolitiquexPériodiques a32702aInstitut français des relations internationales 3aFRbCCN0032-342X4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-politique-etrangere.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr/ zContenu : accès libre au texte intégral de 1936 à 20051 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bno. 1 (1936) -no. 2 (1940) ; no. 1 (1945) -....cParisdMagasins/AnnexeeP 8° 00071 bL'année en courscParisdBibliothèque de rechercheeP 8° 0007 aZCAD aGEO RQ Universel aDEW 327 aPBUL01152nas 2200313 i 450 002001100000005001700011011001400028100004100042101000800083102000700091105001800098106000600116110001600122200005800138207002400196210003100220326001700251601003600268607007300304676001200377710007500389801001300464856020500477955006500682955005900747972000900806992001400815992000900829000031610020140106134453.01 a1623-6297 a a20009999k fre ba0 afre aFR a 0  ar aai z 0 10aPolitique européennefPôle européen de Sciences-po 1ano 1 (avril 2000) - aPariscL' Harmattand2000- a3 nos par an02aUnion européennexPériodiques aPays de l'Union européennexPolitique et gouvernementxPériodiques a327.06502aFondation nationale des sciences politiquesc(France)bPôle européen 0aFRbFNSP uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-politique-europeenne.htm?zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, 1er étageeDEW 327.0651 bno. 1 (2000) -....cParisdMagasins/AnnexeeP 8° 6525 aZCAD aDEW 341.2 aPBUL01072nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000290015421000430018332600160022653000420024260600440028467600080032880100210033685600440035785601370040195500670053895500630060595500690066897200090073799200120074603932964X000000511920131220095719.01 a0221-2781 aFNSP107344 a0000005119 a19900101a19789999 ba0 afre aFR aahu 10aPolitique internationale aPariscPolitique internationaled1978- aTrimestriel00aPolitique internationalebParis. 1978 aRelations internationalesxPériodiques a327 3aFRbCCN0221-27814 uhttp://www.politiqueinternationale.com/ zContenu : Sommaires depuis le vol. 1,no 1, automne 1978.Texte intégral (sauf les trois derniers numéros parus) depuis n°90, 2001.1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bno. 1 (aut-1978) -....cParisdMagasins/AnnexeeP 8° 40861 bL'année en courscParisdBibliothèque de rechercheeP 8° 4086 aZPAY aDEW 32701465nas 2200349 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200010800148210002300256300011700279326002100396326002200417430005900439452007300498530004400571606005300615710006700668801001300735856021800748955005500966972000901021991001801030992001601048992005101064040238024000031394420131011111622.01 a1029-4317 a a19979999k fre ba0 afre aFR a 0  ar aak z 0 10aPolitiques agricoles des pays de l'OCDEfOrganisation de coopération et de développement économiques aPariscOCDEd1997- aPublié un an sur deux en alternance avec "Politiques agricoles des pays de l'OCDE : panorama" à partir de 2004 aBisannuelb2004- aAnnuelb1997-2003 1tPolitiques, marchés et échanges agricolesx1015-1001 1tLes politiques agricoles des pays de l'OCDE (En ligne)‎x1999-117700aPolitiques agricoles des pays de l'OCDE aPolitique agricoleyPays de l'OCDExPériodiques02aOrganisation de coopération et de développement économiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://titania.sourceocde.org/vl=969017/cl=25/nw=1/rpsv/home.htmzzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1999) -(2007)cParisdMagasins/AnnexeeP 4° 6466 aZPAY aexempb201306 aDEW 338.1-3 aGEO RN1 Pays industrialisés, pays occidentaux01120nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200007000163210002700233326001100260430006400271606006800335606005400403712011700457801001300574856005300587955004600640972000900686992005100695992003200746992001600778048859079000042643420130319051737.0 a1563-0420 a0000426434 a b19982001k fre ba0 afre aFR a 0  ar aa z 0 10aPolitiques agricoles économies émergentes et pays en transition aPariscOCDEd1998-2001 aAnnuel 1tPolitiques agricoles dans les pays en transitionx1029-4295 aPolitique agricoleyNouveaux pays industrialisésyPériodiques aPolitique agricoleyEurope de l'EstxPériodiques02aOrganisation de coopération et de développement économiquesbCentre pour la coopération avec les non-membres 0aFRbFNSP uhttp://www.sourceoecd.org/content/html/index.htm1 b(2001)cParisdMagasins/AnnexeeP4° 6900 aZPAY aGEO RN1 Pays industrialisés, pays occidentaux aGEO RA2.02 Europe orientale aDEW 338.1-301219cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118106000600125110001600131200008600147210003400233517009900267530008600366606003100452606002800483710006000511801003000571801002300601801003000624802000700654856007200661856006000733955006800793972000900861992001100870068809174000082295620131028120631.01 a1377-3488 aissn13773488 a20020530a20019999u y0frey0103 ba0 afre aBE ar aaiu uu 10aPolitiques d'éducation et de formationiAnalyses et comparaisons internationales aBruxellescDe Boeck & Larcier10aCollection "Politiques d'éducation et de formation. Analyses et comparaisons internationales"10aPolitiques d'éducation et de formation. Analyses et comparaisons internationales aEnseignementxPériodiques aEducationxPériodiques02aInstitut européen d'éducation et de politique sociale 3aFRbAbesc20060104gAFNOR 3aFRbISSNc20030203 3aFRbAbesc20050329gAFNOR a0m4 uhttp://www.e-education-europe.org/fr/rubriques/journal/polef/02.asp zContenu : sommaires et éditoriaux depuis le n°1, 20011 bno. 1 (2001) -no. 15 (2005)cParisdMagasins/AnnexeeP 8° 6823 aZPAY aDEW37001643nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200019900163207004000362210002700402300012100429326001800550430005600568453006700624606004200691606007700733710013900810801001300949856011500962856010801077955008301185972000901268992001601277060853883000045408320130319051737.01 a1682-346X a0000454083 a b20022007k fre ba0 afre aFR a 0  ar aai z 0 10aPolitiques et gestion de l'enseignement supérieurerevue du programme sur la gestion des établissements d'enseignement supérieurfOrganisation de coopération et de développement économique 1aVol.14 no.1(2002)-vol.19 no.3(2007) aPariscOCDEd2002-2007 aA partir de 2008, la version française de Higher education management and policy est accessible uniquement en ligne a3 n°s par an 1tGestion de l'enseignement supérieurxISSN1013-8501 1tHigher education management and policy (Print)xISSN 1682-3451 aEnseignement supérieurxPériodiques aEnseignement supérieurxAspect économiqueyPays del'OCDExPériodiques02aOrganisation de coopération et de développement économiquesbProgramme sur la gestion des établissements d'enseignement supérieur 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/1682346X/gestionenseignementsup zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 14 no. 1 (2002) -vol. 19 no. 3 (2007)cParisdMagasins/AnnexeeP 8° 6599 aZECH aDEW 370-37901202nas0 2200325 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101106000600108110001600114200008300130210002600213326001600239430005000255452006100305530003800366606003600404606003800440607004400478710005800522801003000580856009100610955006400701957007000765992002500835992001600860132454300000116587320131218105625.01 a2101-8081 a20090402a20099999m y0frey0103 ba0 afre aFR ar aaha uu 10aPolitiques sociales et familialesfCaisse nationale des allocations familiales aPariscCNAFd2009-... aTrimestriel 1tRecherches et prévisions (Paris),x1149-1590 1tPolitiques sociales et familiales (En ligne),x2107-0210 aPolitiques sociales et familiales aPolitique socialexPériodiques aPolitique familialexPériodiques aFrancexPolitique socialexPériodiques02aCaisse nationale des allocations familialesc(France) 3aFRbAbesc20090402gAFNOR4 uhttp://www.caf.fr/etudes-et-statistiques/publicationszAccès libre au texte intégral1 bno. 95 (mar-2009) -....cParisdMagasins/AnnexeeP 4° 64461 bno. 0 (1985) -no. 98 (2009)cParisdMagasins/AnnexeeP index 0875 aGEO RA4.06 France 01 aDEW 360-36301122nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001200154207002400166210002600190326001700216421003600233430004900269606002900318606005300347607002500400856002700425856008700452955006900539955006500608955007400673992002500747992001200772045069077000026487320130319051738.01 a1290-5550 aFNSP918695 a0000264873 a19990127a19999999 ba0 afre aFR aa a 10aPolitis 1ano. 532 (jan-1999)- aPariscPolitisd1999- aHebdomadaire 1tPolitis, le magazinex1296-3178 1aLe Nouveau Politis (Hebdomadaire)x1155-2794 aActualitéxPériodiques aGauche (science politique)yFrancexPériodiques aFrancexPériodiques4 uhttp://www.politis.fr/ zcontenu : sommaire et sélection d'articles en texte intégral du dernier numéro.1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 69341 bno. 682 (jan-2002) -....cParisdMagasins/AnnexeeP 4° 69341 bno. 532 (jan-1999) -no. 680/681 (dec-2001)cParisdAnnexeeP F° 0487 aGEO RA4.06 France 01 aDEW 05000801nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000230015421000290017732600120020660700550021867600080027380100210028185600340030285600360033695500590037297200090043199100180044099200250045899200160048303877447X000003299420140110121507.01 a0032-3446 aFNSP195523 a0000032994 a19900101a19569999 ba0 ager aDE aagu 10aPolitische Meinung aOsnabrückcFrommd1956- aMensuel aAllemagnexPolitique et gouvernementxPériodiques a320 3aFRbCCN0032-34464 uhttp://www.kas.de/wf/de/34.6/ zAccès libre au texte intégral1 bno. 1 (1956) -....cParisdMagasins/AnnexeeP 8° 1480 aZGRA aexempb201102 aGEO RA5.01 Allemagne aDEW 320-32100970nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210002800177326001500205421004700220421003600267430004600303606004400349607005500393801002100448856003300469856003600502955006000538972000900598992002500607992001200632038774496000003299620130319051738.01 a0032-3462 aFNSP195526 a0000032996 a19900101a19549999 ba0 ager aDE aagu 10aPolitische Studien aMünchencPflaumd1954- aBimestriel 1aPolitische Studien. Sonderheft,x0477-2784 1tPolitische studien. Themenheft$ 1aPolitische Bildung (München),x0721-8869 aRelations internationalesxPériodiques aAllemagnexPolitique et gouvernementxPériodiques 3aFRbCCN0032-34624 uhttp://www.hss.de/2956.shtml zAccès libre au texte intégral1 bno. 48 (1954) -....cParisdMagasins/AnnexeeP 8° 1230 aZSAB aGEO RA5.01 Allemagne aDEW 94301153nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003500139210003900174326001600213422003400229430005700263440003500320530003500355607005500390801002100445856016800466955014100634972000900775991001800784992002500802992001200827039621553000003299920130729110040.01 a0477-2784 aFNSP195529 a19900101a19559999 ba0 ager aDE abzu 10aPolitische Studien. Sonderheft aGrünwaldcAtwerb-Verl.d1955-2003 aIrrégulier 1aPolitische Studienx0032-3462 1aPolitische Bildung. Sonderheft (München)x0721-8893 1tPolitische Studien. Themenheft00aPolitische Studien. Sonderheft aAllemagnexPolitique et gouvernementxPériodiques 3aFRbCCN0477-27844 uhttp://www.hss.de/suche/?cx=009700709337596038292%3Ae5wq8fe1no4&cof=FORID%3A9&ie=UTF-8&q=Politische+Studien+SonderheftzAccès libre au texte intégral depuis 19981 bno. 1 (1977) -no. 2 (1982) ; no. 1 (1986) -no. 3 (1986) ; vol. 43 no. 1 (1992) -vol. 54 no. 3 (2003)cParisdMagasins/AnnexeeP 8° 4275 aZSAB aexempb201304 aGEO RA5.01 Allemagne aDEW 94301080nas0 2200313 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102110001600109200005800125207001900183210003800202300009500240301004200335301005100377326001100428422003500439430004600474606003600520710003600556801003000592856003300622856003900655955006300694972000900757080468837000069978320130319051738.0 a0000699783 a20040921a20049999 0frey0103 ba0 ager aDE aaj 10aPolitische StudieniThemenheftfHanns Seidel Stiftung 1ano. 1 (2004) - aMünchencAtwerb-Verlag KGd2004- aLe premier numéro accompagne le numéro 55. Jahrgang, August 2004 de "Politische Studien" aDEMANDE DE NUMEROTATION ISSN EN COURS a0032-3462 : ISSN mentionné sur la publication aAnnuel 1tPolitische Studien,x0032-3462 1tPolitische Studien. Sonderheftx0477-2784 aScience politiquexPériodiques02aHanns-Seidel-Stiftungc(Munich) 3aFRbAbesc20040921gAFNOR4 uhttp://www.hss.de/2957.shtml zContenu : texte intégral en ligne1 bno. 1 (aou-2004) -....cParisdMagasins/AnnexeeP 8° 6782 aZSAB01161nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154210004100190326001600231421005900247421002900306434002900335606003600364676000800400710008600408801002100494856011700515856004600632955010200678972000900780991001800789992001600807013738267000003300020140110121020.01 a0032-3470 aFNSP195530 a0000033000 a19900101a19609999 ba0 ager aDE aahu 10aPolitische Vierteljahresschrift aOpladencWestdeutscher Verlagd1960- aTrimestriel 1aPolitische Vierteljahresschrift. Sonderheftx0720-480901tPVS-Literaturx0720-7182 1tPVS-Literaturx0720-7182 aScience politiquexPériodiques a32002aDeutsche Vereinigung für Politische WissenschaftbSektion Internationale Politik 3aFRbCCN0032-34704 uhttp://www.vsjournals.de/index.php?do=viewmag&site=pvs&lng=de&area=pol&id=2&sid=d840c0ed9560cdde66e75c577777402f zContenu : sommaires depuis le n° 1, 20001 bvol. 1 no. 1 (1960) -....cParisdMagasins/AnnexeeP 8° 1845wManquants : 2003, 2004, 2005, 2006 aZPAY aexempb200910 aDEW 320-32101091nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000048001552100041002033260022002443260022002664220047002885170053003356760008003887100086003968010021004828560113005038560047006169550059006639720009007229910018007319920016007490000007838000000783820140110120636.01 a0720-4809 aFNSP113375 a0000007838 a19900101a19699999 ba0 ager aDE aajy 10aPolitische Vierteljahresschrift. Sonderheft aOpladencWestdeutscher Verlagd1969- aSemestrielb2006- aAnnuelb1969-2005 1aPolitische Vierteljahresschriftx0032-347010aPVS. Politische Vierteljahresschrift. Sonderheft a32002aDeutsche Vereinigung für Politische WissenschaftbSektion Internationale Politik 3aFRbCCN0720-48094 uhttp://www.vsjournals.de/index.php;do=specials/sid=d840c0ed9560cdde66e75c577777402f/site=pvs/lng=de/area=pol zContenu : sommaires depuis le n° 30, 19991 bno. 1 (1969) -....cParisdMagasins/AnnexeeP 8° 2696 aZPAY aexempb201105 aDEW 320-32101594nas 2200421 i 450 001001000000002001100010005001700021011001400038035001300052035001500065100004100080101000800121102000700129110001600136200001200152210008000164210002500244210008000269210003500349210003800384210003100422210003100453326001600484606004400500606003600544676000800580856002600588856006200614856008700676856010800763955006700871955010900938955006901047972000901116992002201125992001601147992000901163002449072000000204020131220095758.01 a0295-2319 aFNSP7794 a0000002040 a19900101a19879999 ba0 afre aFR aaha 10aPolitix aPariscUniversité de Paris I, Département de science politiqued1987-1988 aPariscPolitixd1989 aPariscPresses de la Fondation nationale des sciences politiquesd1989-1996 aaPariscL'Harmattand1997-1999 aPariscHermès scienced2000-2004 aPariscA. Colind2005-2008 aBruxellescDe Boeckd2009- aTrimestriel aScience politiqueyFrancexPériodiques aScience politiquexPériodiques a3204 uhttp://www.persee.fr/ zContenu : accès libre au texte intégral de 1988 à 20044 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-politix.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 1 (1987) -....cParisdMagasins/AnnexeeP 4° 5209wnos manquants : 31>32, 1995 ; 44>45, 46>47, 19991 bL'année en courscParisdBibliothèque de rechercheeP 4° 5209 aZCAD aGEO RA4.06 France aDEW 320-321 aPBUL01151cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200009500174210003800269326001600307430007300323606003600396607002700432710006800459801003000527802000700557856005300564856008600617955008600703992001200789992002400801036916528000113375320130319051738.01 a1392-1681 accn1392-1681 a0001133753 a19961223a19939999 0frey0103 ba0 alit aLT ay  aah 10aPolitologijafVilniaus universitetas. Tarptautiniu santykiu ir politikos mokslu institutas aVilniuscPolibijaus fondasd1993- aTrimestriel 1tLietuvos universiteto Matematikos gamtos fakulteto darbaix1392-205X aScience politiquexPériodiques aLituaniexPériodiques02aTarptautiniu santykiu ir politikos mokslu institutasc(Vilnius) 3aFRbAbesc20080130gAFNOR a384 uhttp://www.leidykla.eu/en/journals/politologija/ zContenu: sommaires et texte intégral des n°s à partir du vol. 1 no. 21 de 20011 bno.1 (2004), no. 1 (2006), no. 4 (2006) -....cParisdMagasins/AnnexeeP 8° 7019 aDEW 320 aGEO RA7.14 Lituanie01062cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200002600174207005400200210006700254326001600321440002300337606003600360607002700396710004500423801003000468801002300498801003000521802000700551856004000558955008900598972000900687992001600696074939939000097353420130319051738.01 a1398-523X aissn1398523X a0000973534 a20030523b19982003k y0frey0103 ba0 adan aDK ay 0  aayu 0uu 10aPolitologiske studier 0aNr. 1, april 1998-6. årg., nr. 4 (december 2003) a[København]cInstitut for Statskundskab Københavnd1998-2003 aTrimestriel 1tPolitikx1604-0058 aScience politiquexPériodiques aDanemarkxPériodiques02aInstitut for statskundskabc(Copenhague) 3aFRbAbesc20080304gAFNOR 3aFRbISSNc20030523 3aFRbAbesc20031110gAFNOR a0h4 uhttp://www.politologiske.dk/alt.htm1 bvol. 6 no. 1 (mar-2003) -vol. 6 no. 4 (dec-2003)cParisdMagasins/AnnexeeP 8° 6890 aZSAB aDEW 320-32101355nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001100154210006300165326001600228606004800244710006100292801002100353856010500374856007500479856009000554856010800644955006600752957013300818972000900951991001800960992002300978992001601001038774534000003313120130319051738.01 a0032-3497 aFNSP196158 a0000033131 a19900101a19689999 ba0 aeng aUS aahu 10aPolity aAmherstcNortheastern Political Science Associationd1968- aTrimestriel aScience politiqueyEtats-UnisxPériodiques02aNortheastern Political Science Associationc(Etats-Unis) 3aFRbCCN0032-34974 uhttps://acces-distant.sciences-po.fr/fork?http://www.palgrave-journals.com/polity/archive/index.html zContenu : sommaires et résumés des n°s depuis le vol.37, n°1, 20054 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00323497.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1968) -....cParisdMagasins/AnnexeeP 8° 25791 bvol. 1 (1968) -vol. 3 (1971) ; vol. 4 (1971) -vol. 6 (1974) ; vol. 7 (1974) -vol. 9 (1977)cParisdMagasins/AnnexeeP Index 0183 aZSAB aexempb200904 aGEO RC2 Etats-Unis aDEW 320-32101123nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210004300183326001600226430005200242606004100294710007700335801002100412830006500433856022000498955006100718972000900779992002100788992001200809039226689000003313820130522095025.01 a0032-3632 aFNSP196178 a0000033138 a19900101a19649999 ba0 afre aFR aahu 10aPollution atmosphérique aPariscPollution atmosphériqued1964- aTrimestriel 1aRevue de la pollution atmosphériquex0245-9140 aAtmosphèrexPollutionxPériodiques02aAssociation pour la prévention de la pollution atmosphériquec(France) 3aFRbCCN0032-3632 ano. 53, 1972 --->1983 collection donnée au CTL en juin 20024 uhttp://www.revuepollutionatmospherique.fr/zL'ensemble des articles parus depuis 1993 sont accessibles en ligne : consultables à la bibliothèque à l'aide d'un mot de passe à demander à l'accueil bibliographique1 bno. 101 (1984) -....cParisdMagasins/AnnexeeP 4° 3200 aZPAY aGEO RQ Universel aDEW 33301149cas0 2200385 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147105001800154110001600172200006300188210002300251326001100274410006500285512003200350530002600382712005200408801003000460801002300490801003000513802000700543856005800550856003600608955005300644972000900697991001800706992002500724992001400749094675872000091659320130319051739.0 a1760-9046 a131723170 aissn17609046 a0000916593 a20060106a19999999k y0frey50 ba0 afre aFR ay  azku uu 13aLa Polynésie françaisefInstitut d'émission d'Outre-mer aPariscIEOMd1999- aAnnuel 1tRapport annuel - Institut d'émission d'Outre-merx1635-226210aPolynésie française en...00aPolynésie française02aInstitut d'émission d'Outre-merc(France)4340 3aFRbAbesc20090422gAFNOR 3aFRbISSNc20090225 3aFRbAbesc20060106gAFNOR a074 uhttp://www.ieom.fr/agence_polynesie_publication_3.asp4 zAccès libre au texte intégral1 b(1999) -....cParisdMagasins/AnnexeeP 8° 6849 aZGRA aexempb201212 aGEO RA4.06 France 01 aDEW 330.901697nas 2200421 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006000154207004200214210002300256326002300279326002600302606003100328606002900359676000800388710005800396801002100454856009000475856010800565856009000673856010800763856002600871856003700897955006600934955008601000955005901086957009101145972000901236991001801245992001201263039226727000000521920130319051739.01 a0032-4663 aFNSP107643 a0000005219 a19900101a19469999 ba0 afre aFR aagu 10aPopulationfInstitut national d'études démographiques 1a1ère année, no 1 (janv./mars 1946)- aPariscINEDd1946- aTrimestrielb2007- aBimestrielb19??-2006 aDémographiexPériodiques aPopulationxPériodiques a30402aInstitut national d'études démographiquesc(France) 3aFRbCCN0032-46634 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-population.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00324663.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr/ zAccès libre au texte intégral.1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3041 bno. 1 (1946) -vol. 63 no. 4 (2008)cParisdBibliothèque de rechercheeP 8° 01801 bno. 1 (1946) -....cParisdMagasins/AnnexeeP 8° 01801 b(1946) -(1959) ; (1960) -(1969) ; (1970) -(1979)cParisdMagasins/AnnexeeP Index 0047 aZPAY aexempb201010 aDEW 30400992nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000061001502100023002113000098002343260011003323360058003433370063004014520046004646060031005106060029005418010013005708560090005839550005006739920012006780000486676000048667620130319051739.0 a0000486676 a a19899999k fre 01 ba0 aeng aFR az aak z  adr 10aPopulation. English selectionb[Ressource électronique] aPariscINEDd1989- aAccès au texte intégral (réservé aux sites de Sciences Po) jusqu'aux 2 dernières années aAnnuel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tPopulation.English selectionx(1169-1018) aDémographiexPériodiques aPopulationxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00324663.html1 r aDEW 30401710nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154210004000192326001600232606004500248606002900293606005500322710002900377801002100406856009000427856010800517856010100625856010800726856012800834856010800962955009001070957013701160972000901297991001801306992001201324013569570000003315420131202112234.01 a0098-7921 aFNSP196214 a0000033154 a19900101a19759999 ba0 aeng aUS aahu 10aPopulation and development review aNew YorkcPopulation Councild1975- aTrimestriel aDéveloppement économiquexPériodiques aPopulationxPériodiques aAssistance en matière de populationxPériodiques02aConseil de la population 3aFRbCCN0098-79214 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00987921.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=108781 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=PDV&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (sep-1975) -vol. 38 no. 4 (dec-2012)cParisdMagasins/AnnexeeP 8° 39101 bvol. 1 (1975) -vol. 10 (1984) ; vol. 11 (1985) -vol. 15 (1989) ; vol. 1 (1975) -vol. 20 (1994)cParisdMagasins/AnnexeeP Index 0572 aZPAY aexempb201001 aDEW 30401139nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210002300183326001200206488004200218606003100260606002900291676000800320710005800328801002100386856005800407856012300465955006300588957014100651972000900792992001200801039316718000000522220130319051739.01 a0184-7783 aFNSP107646 a0000005222 a19900101a19689999 ba0 afre aFR aafu 10aPopulation et sociétés aPariscINEDd1968- aMensuel 1aPopulation (0032-4663) < P 8° 0180 > aDémographiexPériodiques aPopulationxPériodiques a30402aInstitut national d'études démographiquesc(France) 3aFRbCCN0184-77834 uhttp://www.ined.fr/publications/pop_et_soc/index.html zContenu : tous les numéros en texte intégral depuis le n°1, 1968 ; recherches par thèmes et par auteur, sommaires.1 bno. 2 (avr-1968) -....cParisdMagasins/AnnexeeP 4° 25441 bno. 2 (1968) -no. 86 (1975) : se trouve dans le no. 87 (jan-1976) ; no. 87 (1976) -no. 153 (1981) : se trouve dans le no. 154 (jan-1982) aZPAY aDEW 30401069nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000021001552100063001763260016002395300021002556060046002766060044003227120038003668010021004048560090004258560108005159550087006239920021007109920012007319920012007430000050565000005056520130319051739.0 a0032-4701 aFNSP247271 a0000050565 a19900101b19371999 ba0 aeng aUS aahu 10aPopulation index aPrinceton, N.J.cOffice of Population Researchd1937- 1999 aTrimestriel00aPopulation index aDémographiexBibliographiexPériodiques aPopulationxBibliographiexPériodiques02aPopulation Association of America 3aFRbCCN0032-47014 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00324701.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 13 no. 1 (jan-1947) -vol. 65 no. 4 (1999)cParisdMagasins/AnnexeeP 8° 0190 aGEO RQ Universel aDEW 010 aDEW 30401194nls 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000053001502100067002032300007002703000119002773260016003963360058004123370063004704400047005334520039005806060046006196060059006658010013007248560090007379550005008279920012008329920012008440000487127000048712720130319051739.0 a0000487127 a b19351936k fre 01 ba0 aeng aUS az aah z  adr 10aPopulation literatureb[Ressource électronique] aWashington, D.C.cPopulation Association of Americad1935-1936 aa$ aAccès au texte intégral (réservé aux sites de Sciences Po) à partir du vol. 1 de 1935 jusqu'au vol. 2 de 1936 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tPopulation index [Ressource électronique] 1tPopulation literaturex(1523-8431) aDémographiexBibliographiexPériodiques aEmigration et immigrationxBibliographiexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/15238431.html1 r aDEW 010 aDEW 30400991nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004200154210004400196326001600240606002900256606003100285801002100316856012800337856010800465955011900573972000900692992001200701039113523000003316820130319051739.01 a0167-5923 aFNSP196249 a0000033168 a19900101a19829999 ba0 aeng aNL aahu 10aPopulation research and policy review aDordrechtcKluwer Academic Publ.d1982- aTrimestriel aPopulationxPériodiques aDémographiexPériodiques 3aFRbCCN0167-59234 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=4KJ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1982) -vol. 21 no. 6 (2002) ; vol. 27 no. 1 (fev-2008) -....cParisdMagasins/AnnexeeP 8° 4512 aZSAB aDEW 30401712nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210005400177326001800231606003100249712005000280801002100330856010300351856010800454856012800562856010800690856010900798856010800907955006701015955008601082957007801168972000901246991002001255991001801275992002101293992001201314038775409000003334420130319051739.01 a0032-4728 aFNSP196672 a0000033344 a19900101a19479999 ba0 aeng aGB aaiu 10aPopulation studies aLondoncPopulation Investigation Committeed1947- a3 n°s par an aDémographiexPériodiques02aPopulation Investigation Committeec(Londres) 3aFRbCCN0032-47284 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00324728.html?&cookieSet=1 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=PPU&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713689546db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 51 no. 1 (1997) -....cParisdMagasins/AnnexeeP 4° 66781 bvol. 1 no. 1 (jun-1947) -vol. 50 no. 3 (1996)cParisdMagasins/AnnexeeP 8° 01811 bvol. 1 no. 1 (1947) -vol. 50 (1996)cParisdMagasins/AnnexeeP Index 0792 aZPAY aPériobTP01 P8 aexempb201101 aGEO RQ Universel aDEW 30401646cas0 2200457 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035002500100035002000125035002100145035001500166100004100181101000800222102000700230105001800237106000600255110001600261200011500277207003900392210005200431517004900483517004300532517003200575517003200607530004700639540004400686606004200730710003900772801003000811801002900841802000700870856014400877856008301021945001401104955005501118991001501173039083101000112087920130319051740.0 a2018-0365 a088218880 accn7112/6341 aissn20180365 aFRBNF328414510000009 aPR040400320001J a(OCoLC)491805829 a0001120879 a19890214b18331842m y0frey50 ba0 afre aFR ay  ar aah y 10aPortraits et histoire des hommes utiles...fpubliés et propagés pour et par la Société Montyon et Franklin 0a1re année (1833)-9e année (1841) aPariscSociété Montyon et Franklind1833-184110aAnnuaire de la Société Montyon et Franklin10aAnnuaire... Bulletin des hommes utiles10aChronique des hommes utiles10aAnnuaire de la bienfaisance00aPortraits et histoire des hommes utiles...10aPortraits et histoire des hommes utiles aOeuvres de bienfaisancexPériodiques02aSociété Montyon et Franklin4070 3aFRbAbesc20071120gAFNOR 0aFRbBNFc19970701gAFNOR a004 uhttp://gallica.bnf.fr/ark:/12148/cb328414513/date.r=.langFRzAccès libre au texte intégral. Années 1836 à 1838 numérisées sur Gallica4 zAccès libre au texte intégral. Autres années numérisées sur Google Livres bCOL8*07791 b(1837) -(1840)cParisdMagasins/AnnexeeCOL8°0779 aPériobTZ00985nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004000154210002500194326001200219530001800231606002600249801002100275856002800296856004300324955006500367955009800432957007000530972000900600991001800609992002100627992001100648039237141000003334720130319051740.01 a0048-4911 aFNSP196676 a0000033347 a19900101a19529999 ba0 afre aFR aafu 10aPositiferevue mensuelle de cinéma aLyoncPositifd1952- aMensuel 0aPositifbLyon aCinémaxPériodiques 3aFRbCCN0048-49114 uhttp://www.jmplace.com/ zContenu : sommaire du dernier numéro.1 bno. 425 (jul-1996) -....cParisdMagasins/AnnexeeP 4° 66371 bno. 69 (mai-1965) ; no. 73 (fev-1966) -no. 424 (jun-1996)cParisdMagasins/AnnexeeP 8° 22111 bno. 1 (1952) -no. 34 (1972)cParisdMagasins/AnnexeeP Index 0273 aZPAY aexempb201105 aGEO RQ Universel aDEW 7901677nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154207003200183210002800215326001600243430006300259607004900322607006800371710004900439856010300488856010800591856012800699856010800827856010900935856010801044955009101152972000901243991001801252992001901270992001401289045044724000027034620140107141656.01 a1463-1377 aFNSP934521 a0000270346 a19990413a19999999 ba0 aeng aGB aaha 10aPost-communist economies 1avol. 11, no. 1 (mar-1999) - aAbingdoncCarfaxd1999- aTrimestriel 1aCommunist economies and economic transformationx1351-4393 aEx-URSSxPolitique économiquexPériodiques aEurope de l'EstxPolitique économiquez1989-....xPériodiques02aCentre for Research into Communist Economies4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=102230 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=53T&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713440896db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 11 no. 1 (mar-1999) -vol. 25 no. 4 (dec-2013)cParisdMagasins/AnnexeeP 8° 5618 aZPAY aexempb201110 aGEO RA7.03 CEI aDEW 338.901125nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002400139210004300163326001600206430005200222607006300274607005300337607006300390710005200453711005000505856015700555955007000712972000900782992002000791992001200811040289540000018959520140108104639.01 a1060-586X aFNSP700668 a19900101a19929999 ba0 aeng aUS aaha 10aPost-Soviet affairs aSilver Spring, MDcV.H. Winstond1992- aTrimestriel 1aSoviet economy (Silver Spring, Md.),x0882-6994 aRussiexPolitique et gouvernementz1991-2000xPériodiques aEx-URSSxPolitique et gouvernementxPériodiques aRussiexPolitique et gouvernementz2000-....xPériodiques02aJoint Committee on Soviet Studiesc(Etats-Unis)02aSocial Science Research Councilc(Etats-Unis)4 uhttp://www.vhwinston.com/psa/zAccès libre au texte intégral du vol. 18, no. 3, 2002 au vol. 27, no. 1, 2011; sommaires et résumés à partir de 20111 bvol. 8 no. 3 (sep-1992) -....cParisdMagasins/AnnexeeP 8° 4941 aZPAY aGEO RA7.01 URSS aDEW 94700893cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200002600180210002600206606004600232606002900278801003000307801002300337802000700360856004700367856005000414955007800464992001200542992002500554121354288000115895020130319051741.01 a1958-8704 aissn19588704 a0001158950 a20080208b20072007k y0frey0103 ba0 afre aFR ay  ar accu uu 13aLa Poule déchaînée aLyoncLyond2007-2007 aSatire politique françaisexPériodiques aActualitéxPériodiques 3aFRbAbesc20081015gAFNOR 3aFRbISSNc20081014 a074 uhttp://www.lapouledechainee.fr/?page_id=40 zContenu : no. 0 (fev-2007) en texte intégral1 bno. 0 (fev-2007) -no. 0bis (jun-2007)cParisdMagasins/AnnexeeP F° 1366 aDEW 050 aGEO RA4.06 France 0100904nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000230015421000220017732600120019960600490021160600360026071001150029685600420041185600510045395500630050497200090056799200220057699200160059804013475X000009502620130319051741.01 a1246-077X aFNSP415624 a0000095026 a19900101a19939999 ba0 afre aFR aafy 10aPour (Paris, 1993) aPariscFSUd1993- aMensuel aEnseignantsxSyndicatsyFrancexPériodiques aEducationyFrancexPériodiques02aFédération syndicale unitaire de l'enseignement, de l'éducation, de la recherche et de la culturec(France)4 uhttp://www.fsu.fr/spip.php?rubrique44 zContenu : texte intégral des n°s depuis 20041 bno. 1 (avr-1993) -....cParisdMagasins/AnnexeeP 4° 6250 aZGRA aGEO RA4.06 France aDEW 370-37901294cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200013200180210004900312326001500361530003900376606004900415606005300464607005100517710007400568801003000642801002300672802000700695856008400702856004700786955005900833992002400892992001600916114704317000118885020130319051741.01 a1955-9550 aissn19559550 a0001188850 a20070523a20069999k y0frey0103 ba0 afre aFR ay  ar aaju uu 10aPour mémoireerevue du Comité d'histoire du MinistèrefMinistère des transports, de l'équipement, du tourisme et de la mer aParis-La DéfensecComité d'histoired2006- aSemestriel10aPour mémoireb(Paris-La Défense) aEquipements collectifsyFrancexPériodiques aAménagement du territoireyFrancexPériodiques aFrancexAdministrationxHistoirexPériodiques12aFrancebConseil général des ponts et chausséesbComité d'histoire 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20080429 a074 uhttp://www.developpement-durable.gouv.fr/Pour-memoire-la-revue-du-Comite-d.html4 zContient : sommaires depuis le no. 1, 20061 bno. 3 (2007) -....cParisdMagasins/AnnexeeP 8° 7134 aGEO RA4 . 06 France aDEW 900-90701307nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001300154207001800167210005100185326001600236606003900252606004400291606003600335676000800371801002100379856004900400856014000449856008800589856010800677955006700785955005900852972000900911992001600920992000900936001013491000000522720131220095939.01 a0152-0768 aFNSP107651 a0000005227 a19900101a19779999 ba0 afre aFR aahu 10aPouvoirs 1ano. 1 (1977)- aPariscPresses universitaires de Franced1977- aTrimestriel aDroit publicyFrancexPériodiques aScience politiqueyFrancexPériodiques aScience politiquexPériodiques a320 3aFRbCCN0152-07684 uhttp://www.revue-pouvoirs.fr/-La-revue-.html zContenu : sommaires, index des auteurs et texte intégral des numéros à partir du no 68, 1994 à l'exception des 3 dernières années4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-pouvoirs.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 1 (1977) -....cParisdMagasins/AnnexeeP 8° 3913 aZCAD aDEW 320-321 aPBUL00970nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210002800200326001100228430005700239607003500296676000800331710009100339856006800430955006100498955006600559972000900625992002200634992001200656036654671000022974220131003162921.01 a1279-8657 aFNSP817080 a0000229742 a19900101a19969999 ba0 afre aFR aaka 10aPouvoirs dans la Caraïbeerevue du CRPLC aSchoelcher:CRPLCd1996- aAnnuel 1aLes Cahiers de l'administration Outre-merx1143-1865 aRégion caraïbexPériodiques a98002aCentre de recherche sur les pouvoirs locaux dans la Caraïbec(Schoelcher, Martinique)4 uhttp://plc.revues.org/59zAccès au texte intégral depuis 19971 bLa dernière annéecParis, 30, Salle 2e étageeDEW 9801 bno. 8/9 (1996/1997) -....cParisdMagasins/AnnexeeP 4° 6089 aZCAD aGEO RD3 Caraïbes aDEW 97200971nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210005500191326001200246606004400258801002100302856005600323856004800379955005900427955012200486972000900608991001700617992002300634992001200657038775905000003335620130319051744.01 a0032-6186 aFNSP196687 a0000033356 a19900101a19599999 ba0 apol aPL aafu 10aPraca i Zabezpieczenie Spoleczne aWarszawacPanstwowe Wydawnictwo Ekonomiczned1959- aMensuel aDroit du travailyPolognexPériodiques 3aFRbCCN0032-61864 uhttp://www.pwe.com.pl/czasopismo.xml?group_id=10686 zSommaires et résumés depuis le n°7, 20041 bno. 1 (1997) -....cParisdMagasins/AnnexeeP 4° 66701 bvol. 9 no. 2 (1967) -no. 11/12 (1989) ; vol.34 no. 1 (1992) -vol. 38 no. 6 (1996)cParisdMagasins/AnnexeeP 8° 2372 aZPAY aexemp$201103 aGEO RA5.11 Pologne aDEW 34401681nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005300139210005700192300011100249326001700360436004000377436004600417440003100463452008000494606004500574606006000619710015700679830019700836856021701033955004701250991001801297992001201315992001601327040237710000019634920140108150302.01 a1253-1545 aFNSP720433 a19900101b19962010 ba0 afre aXX aaua 10aPremières informations et Premières synthèses aParis‎cMinistère du travail, DARES‎d1996-2010 aLes fascicules portent soit l'un ou l'autre titre, soit les deux titres mais ont une numérotation unique. aHebdomadaire 1aPremières informations,x0298-430X 1tPremières synthèses (Paris),x0999-565X 1tDares analyses,x2109-4128 1tPremières informations et Premières synthèsesb[Ressource électronique] aMarché du travailyFrancexPériodiques aEconomie du travailyFrancexStatistiquesxPériodiques02aFrancebMinistère du travail, de l'emploi et de la formation professionnellebDirection de l'animation de la recherche, des études et des statistiques aDésherbé à partir de 1997 (campagne 2013 ) ; pour des raisons de reliure (2 titres en même temps) les nos de 1996 sont avec le vol. 1996 de Premières informations ( no document : 1010771)4 uhttp://travail-emploi.gouv.fr/etudes-recherches-statistiques-de,76/etudes-et-recherches,77/publications-dares,98/dares-analyses-dares-indicateurs,102/?annee=2004zAccès libre au texte intégral à partir de 19981 b(1996)cParisdMagasins/AnnexeeP 4° 6196 aexempb201312 aDEW 331 aDEW 310-31901071nls 2200265 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200008000124210002400204230002400228326001700252606004500269606006000314710015700374801001300531856020900544992001200753992001600765992002400781000116131920130517112804.0 a a19979999k fre 01 ba0 afre aFR ar aac z  adr 10aPremières informations et Premières synthèsesb[Ressource électronique] aPariscDARESd1997- aRevue électronique aHebdomadaire aMarché du travailyFrancexPériodiques aEconomie du travailyFrancexStatistiquesxPériodiques02aFrancebMinistère du travail, de l'emploi et de la formation professionnellebDirection de l'animation de la recherche, des études et des statistiques 0aFRbFNSP4 uhttp://www.travail-emploi.gouv.fr/etudes-recherches-statistiques-de,76/etudes-et-recherches,77/publications-dares,98/dares-analyses-dares-indicateurs,102zAccès libre au texte intégral à partir de 1997 aDEW 331 aDEW 310-319 aGEO RA4.06 France 102187nas 2200469 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154207005000188210002900238210009500267210006500362210005000427326001600477517006600493607005800559607006200617607003500679676000800714710005300722711008400775830002600859830011600885856010601001856010801107856009301215856005701308955006601365955010401431957011501535972000901650991001801659992002801677992001201705013451154000000485420130516135021.01 a0765-1333 aFNSP106800 a0000004854 a19900228a19659999 ba0 afre aFR aaha 10aProblèmes d'Amérique latine 1ano 1 (1965) - no 99 (1991)an.s, no 1 (1991)- a[Paris]cChoiseuld2004- a[Paris]cInstitut Choiseul pour la politique internationale et la géoéconomied2003-2004 a[Paris]cIEG, Institut européen de géoéconomied2002-2003 aPariscLa Documentation françaised1965-2001 aTrimestriel10aNotes et études documentaires. Problèmes d'Amérique latine aAmérique latinexPolitique économiquexPériodiques aAmérique latinexPolitique et gouvernementxPériodiques aAmérique latinexPériodiques a98002aFrancebDirection de la documentation française02aInstitut Choiseul pour la politique internationale et la géoéconomiec(Paris) a1965-->1999 : au 13 U aune autre collection des nos 1 à 98 est également reliée avec les Notes et études documentaires, P 4° 01214 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-problemes-d-amerique-latine.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.choiseul-editions.com/revues-geopolitique-Problemes-d'Amerique-latine-17.html zContenu : sommaires à partir du n°54, automne 20041 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9801 bno. 1 (jan-1965) -no. 99 (mar-1991) ; n.s. no. 1 (avr-1991) -....cParisdMagasins 13 UeP 8° 57681 bno. 1 (1965) -no. 62 (1981)cParisdMagasinseP 4° 0121zcet index se trouve dans le no. 62, 1981 de la revue aZPAY aexempb201111 aGEO RD Amérique latine aDEW 98001071nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154207002700190210004600217326002100263326002800284606003700312606005000349676001000399710005300409801002100462856003900483856005600522955006900578955006300647972000900710992001400719039226859000000522920131205151949.01 a0032-9304 aFNSP107653 a0000005229 a19900101a19489999 ba0 afre aFR aaeu 10aProblèmes économiques (Paris) 1aN°1, 6 janv. 1948---> aPariscLa Documentation françaised1948- aBimensuelb2004- aHebdomadaireb1948-2003 aEconomie politiquexPériodiques aHistoire économiquez1945-....xPériodiques a330.902aFrancebDirection de la documentation française 3aFRbCCN0032-93044 uhttp://www.ladocfrancaise.gouv.fr/ zContenu : index depuis 1993 ; résumés depuis 19991 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 330.91 bno. 1 (jan-1948) -....cParisdMagasins/AnnexeeP 4° 0053 aZPAY aDEW 330.901082nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003700139210005000176326002300226326002500249326002800274430005000302606003600352606003600388676000800424710005300432801002100485856006600506856008400572955007900656972000900735992001200744001012614000000523120131029103125.01 a0015-9743 aFNSP107656 a19900101b19702011 ba0 afre aFR aa a 10aProblèmes politiques et sociaux aPariscLa Documentation françaised1970-2011 aMensuelb2002-2011 aBimensuelb1975-2001 aHebdomadaireb1970-1974 1aArticles et documents (Paris)xISSN 0992-9207 aSciences socialesxPériodiques aScience politiquexPériodiques a30002aFrancebDirection de la documentation française 3aFRbCCN0015-97434 uhttp://www.ladocumentationfrancaise.fr/revues/pps/index.shtml zContenu : sommaires depuis le premier n°, résumés à partir du no. 850, 20011 bno. 1/2 (jan-1970) -no. 991 (dec-2011)cParisdMagasins/AnnexeeP 4° 0112 aZCAD aDEW 30001411nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003600139210003200175326001200207430003800219452005700257530003600314607007000350607006800420856012800488856010800616856010100724856010800825955006700933972000901000991001801009992003201027992001401059040290638000008763320131017160443.01 a1061-1991 aFNSP387578 a19900101a19929999 ba0 aeng aUS aafa 10aProblems of economic transition aArmonk, N.Y.cSharped1992- aMensuel 1aProblems of economics,x0032-9436 1tProblems of economic transition (Online),x1557-931X10aProblems of economic transition aEurope de l'EstxConditions économiquesz1989-....xPériodiques aEurope de l'EstxPolitique économiquez1989-....xPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=1M6&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=106047 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 35 no. 1 (1992) -....cParisdMagasins/AnnexeeP 8° 2701 aZPAY aexempb201004 aGEO RA2.02 Europe orientale aDEW 338.901278nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002600139210003600165326001200201440004600213451003400259530002600293606004300319606005400362801002100416856012800437856010800565955009200673955009100765991001800856992003200874992002000906992001400926036440396000003375920131017153129.01 a0032-9436 aFNSP197650 a19900101b19581992 ba0 aeng aUS aafa 10aProblems of economics aArmonk, N.Y.cSharped1958-1992 aMensuel 1aProblems of economic transitionx1061-1991 1aVoprosy ekonomiki,x0042-8736 aProblems of economics aEconomie politiqueyURSSxPériodiques aEconomie politiqueyEurope de l'EstxPériodiques 3aFRbCCN0032-94364 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=1M6&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 12 no. 1 (mai-1969) -vol. 34 no. 12 (avr-1992)cParisdMagasins/AnnexeeP 8° 27011 bVol. 1 no. 1 (mai-1958) -vol. 11 no. 12 (avr-1969)cParisdMagasins/AnnexeeP 4° 1696 aexempb201105 aGEO RA2.02 Europe orientale aGEO RA7.01 URSS aDEW 338.901164nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005200154210007500206326001100281430008700292606003600379606004700415712004500462801002100507856009000528856010800618955006900726991001800795992002100813992001600834001042181000000748220130319051751.0 a0065-0684 aFNSP112596 a0000007482 a19900101b19101991 ba0 aeng aUS aaku 10aProceedings of the Academy of Political Science aNew YorkcAcademy of Political Science, Columbia Universityd1928-1991 aAnnuel 1tProceedings of the Academy of Political Science in the City of New Yorkx1548-7237 aScience politiquexPériodiques aScience politiquexRecherchexPériodiques02aAcademy of Political Sciencec(New York) 3aFRbCCN0065-06844 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00650684.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1928) -vol. 38 no. 2 (1991)cParisdMagasins/AnnexeeP 8° 0042 aexempb201105 aGEO RQ Universel aDEW 320-32102629cas0 2200457 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200007600179210006300255215001000318304009800328311051100426326002500937421005300962517010701015517007001122517011601192517006401308530008601372531004901458545005501507545003201562606004301594606006901637712005401706712001801760801003001778802000701808856014501815955019401960991001702154038102595000107609520130319051751.0 a1111-4363 accn1111-4363 zccn7126/7999 a0001076095 a19930304b18691939 0frey0103 ba0 afre aDZ ar aak 10aProcès-verbaux des délibérationsfConseil supérieur de gouvernement aMustaphacGiraltaAlgercImpr. admin. V. Heintzd1869-1904 a25 cm aPorte en tête : "Algérie" ou "République française, Gouvernement général de l'Algérie" aDe 1881 à 1899, l'exposé de la situation générale de l'Algérie est joint aux délibérations du Conseil supérieur de gouvernement. A partir de 1902, l'exposé devient une publication encartée : "Exposé de la situation générale de l'Algérie". A partir de 1906, la publication encartée "Exposé de la situation générale de l'Algérie" est publiée indépendamment des sessions ordinaires du Conseil supérieur de gouvernement. En 1893, il y une publication en janvier et une autre en décembre. aAnnuel (irrégulier) |tExposé de la situation générale de l'Algérie10aProcès-verbaux des délibérations et exposé de la situation générale de l'Algérieesession de...10aProcès-verbaux des délibérationsesession extraordinaire de...10aExposé de la situation générale de l'Algérie et procès verbaux des délibérationsesession ordinaire de..10aSession ordinaire de...- Conseil supérieur de gouvernement10aProcès-verbaux des délibérations - Conseil supérieur de gouvernementb(Alger) 0aP.-v. délib. - Cons. supér. gouv.b(Alger)1 aProcès verbaux des séances du Conseil Supérieur1 aRapport général du budget aFrancexColoniesxPériodiques2rameau aAlgériez1830-1871 (Conquête française)xPériodiques2rameau01aAlgériebConseil supérieur de gouvernement434001aAlgérie4340 3aFRbAbesc20070322gAFNOR a254 uhttp://gallica.bnf.fr/ark:/12148/cb327832014/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1869-1939)1 b(1873) ; (1876) -(1880) ; (1882) -(1890) ; (1893) ; (1896) ; (1907) ; (1908) ; (1910) ; (1912) -(1914) ; (1917) -(1925) ; (1927) -(1933) ; (1936) -(1939)cParisdMagasins/AnnexeeCOL8°1322 aPériobTP0200691nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001300154210002700167326001600194606002500210606002900235856004800264955006300312972000900375992002500384992001600409040564002000024984220130319051752.01 a1283-162X aFNSP874360 a0000249842 a19900101a19979999 ba0 afre aFR aaga 10aProchoix aPariscProchoixd1997- aTrimestriel aFemmesxPériodiques aFéminismexPériodiques4 uhttp://www.prochoix.org/cgi/blog/index.php/1 bno. 1 (dec-1997) -....cParisdMagasins/AnnexeeP 4° 6768 aZPAY aGEO RA4.06 France 01 aDEW 305-30600665nas 2200241 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000024001552100024001793260017002038560026002208560074002469550067003209920024003879920012004110000253301000025330120130319051752.01 a1022-2111 aFNSP884030 a0000253301 a19900101b19709999 ba0 ager aAT aa a 10aProfil (Wien, 1970) aWiencProfild1970- aHebdomadaire4 uhttp://www.profil.at/ zContenu : sommaire et articles en texte intégral du dernier numéro.1 bno. 1/2 (jan-1998) -(2006)cParisdMagasins/AnnexeeP 4° 6774 aGEO RA5.13 Autriche aDEW 05001286nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001100154207002800165210002500193326002200218326002700240430005000267530002100317606003700338606003700375607004500412676000800457801002100465856008500486856010800571955006300679957009700742972000900839991001800848992002200866992001200888039226891000000528020140109155237.01 a0033-0884 aFNSP107803 a0000005280 a19900101a19669999 ba0 afre aFR aagu 10aProjet 1an.s.[no.] 1 (jan-1966)- aPariscProjetd1966- aBimestrielb2004- aTrimestrielb1966-2003 1aRevue de l'Action populaire (1950)x1149-267810aProjetb(Vanves) aProblèmes sociauxxPériodiques aVie intellectuellexPériodiques aFrancexVie intellectuellexPériodiques a001 3aFRbCCN0033-08844 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-projet.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (jan-1966) -....cParisdMagasins/annexeeP 8° 01521 b(1966) -(1975)cParisdMagasins/AnnexezTables décennales dans le n° 100, 1975 de la revue aZPAY aexempb201011 aGEO RA4.06 France aDEW 00100914nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000058001502070047002082100005002552300024002603260005002846060045002896060043003348010013003778560072003908560108004629550005005709920012005759920025005870000994392000099439220130319051754.0 a0000994392 a a20049999k fre 01 ba0 afre aFR ar aaz z  adr 10aPropriété intellectuelleb[Ressource électronique] 1aParis :$cLexisNexis Jurisclasseur :$c2004- a aRevue électronique a aPropriété intellectuellexPériodiques aPropriété industriellexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aDEW 340 aGEO RA4.06 France 0101190cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200010800162207002200270210003000292326001600322606004500338606003300383676000800416710007900424801003000503801002300533802000700556856002900563856008400592955006700676955006400743972000900807992001200816059439289000105004720130319051754.01 a1632-0298 aissn16320298 a0001050047 a20020116a20019999k y0frey0103 ba0 afre aFR ar aaha 10aPropriétés intellectuellesfInstitut de recherche en propriété intellectuelle Henri Desbois (Paris) 0aN°1 (Oct. 2001)- aPariscTransactived2001- aTrimestriel aPropriété intellectuellexPériodiques aDroit d'auteuryPériodiques a34602aInstitut de recherche en propriété intellectuelle Henri Desboisc(Paris) 3aFRbAbesc20060223gAFNOR 3aFRbISSNc20020108 a074 uhttp://www.irpi.ccip.fr/ zContenu : sommaires des n°s et résumés d'articles parus depuis le n°1, 20011 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 3461 bno. 18 (jan-2006)- ....cParisdMagasins/AnnexeeP 4° 7158 aZPAY aDEW 34601178nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009100154210006800245326001700313517004700330530009200377607002500469710003300494856010400527856003700631955006800668957008900736972000900825991001800834992001200852039634299000018004120130319051755.01 a0522-9138 aFNSP671632 a0000180041 a19900101a19629999 ba0 ager aDE aaia 10aProtokollfBergedorfer Gesprächskreis zu Fragen der Freien Industriellen Gesellschaft aHamburg-BergedorfcBuchhandlung Werner Nordmann Vertriebd1962- a3 nos par an10aMinutes of meeting - Bergedorf Round Table 0aProtokoll - Bergedorfer Gesprächskreis zu Fragen der Freien Industriellen Gesellschaft aEuropexPériodiques02aKörber-Stiftungc(Hambourg)4 uhttp://www.koerber-stiftung.de/internationale_verstaendigung/bergedorfer_gespraechskreis/index.html zAccès libre au texte intégral.1 bno. 1(1962) -no. 137 (2007)cParisdMagasins/AnnexeeP 8° 24581 bno. 1 (1962) -no. 127 (2003) : cet index se trouve dans le no. 128, 2003 de la revue aZGRA aexempb201004 aDEW 94001442nas 2200373 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000650013921000720020432600160027644000480029245200350034053000320037560600360040760600290044360600480047271200430052080100210056385600480058485600920063285600590072485601340078395500850091797200090100299100180101199200230102999200160105203642255X000000803620130518172826.01 a0030-8269 aFNSP113849 a19900101b19681987 ba0 aeng aUS aaha 10aPSeNewsletter of the American Political Science Association aWashington, D.C.cAmerican Political Science Associationd1968-1987 aTrimestriel 1tPS, Political science & politicsx1049-0965 1tPS (Washington, D.C. : Online)00aPSb(Washington, D.C. 1968) aScience politiquexPériodiques aPolitologuesyEtats-Unis aScience politiqueyEtats-UnisxPériodiques02aAmerican Political Science Association 3aFRbCCN0030-82694 uhttp://www.jstor.org/journals/10490965.html zAccès au texte intégral réservé aux lecteurs inscrits à la Bibliothèque via JSTOR4 uhttp://ejournals.ebsco.com/direct.asp?JournalID=108999 zAccès au texte intégral réservé aux lecteurs inscrits à la Bibliothèque via Ebsco Host depuis le volume 34, n°1, mars 20011 bvol. 1 no. 1 (1968)- vol. 20 no.4 (dec-1987)cParisdMagasins/AnnexeeP 8° 2566 aZCAD aexempb200905 aGEO RC2 Etats-Unis aDEW 320-32101601cas0 2200421 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200007700197207003400274210006800308326001600376430004400392434004500436517003500481517000700516710004800523801003000571801003000601801002300631802000700654856020800661955010700869955009100976955006901067972000901136991001801145992001601163040270092000102036320131220100325.01 a1049-0965 accn1049-0965 aissn10490965 a0001020363 a19890404a19889999k y0frey0103 ba0 aeng aUS a 0  ar aaha 0uu 10aPS, Political science & politicsfAmerican Political Science Association 0aVol. 21, no. 1 (winter 1988)- aWashington, D.CcAmerican Political Science Associationdc1988- aTrimestriel 1tPS (Washington, D.C. : 1968)x0030-8269 1tThe Political science teacherx0896-082810aPolitical science and politics10aPS02aAmerican Political Science Association4070 3aFRbAbesc20060915gAFNOR 3aFRbAbesc20060915gAFNOR 3aFRbISSNc20051021 a014 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=108999zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 23 no. 1 (mar-1990) -....cParisdMagasins/AnnexeeP 4° 5909wManque : vol. 36, nos 1 à 4, 20031 bvol. 21 no. 1 (hiv-1988) -vol. 22 no. 4 (dec-1989)cParisdMagasins/AnnexeeP 8° 25661 bL'année en courscParisdBibliothèque de rechercheeP 4° 5909 aZCAD aexempb200905 aDEW 320-32101360cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157110001600175200002600191207002900217210004800246326001200294421006000306606003000366710005600396801003000452801002300482802000700505856012800512856007600640856007000716856007600786955007100862972000900933992002100942992001100963040087735000119120220130319051756.01 a0956-7976 accn0956-7976 aissn09567976 a0001191202 a19900620a19909999k y0frey50 ba0 aeng aUS ay 0  aafa 0uu 10aPsychological science 0aVol.1, no.1 (Jan. 1990)- aNew YorkcCambridge University Pressd1990- aMensuel 1tPsychological science in the public interestx1529-1006 aPsychologiexPériodiques02aAssociation for psychological scienceb(Etats-Unis) 3aFRbAbesc20090308gAFNOR 3aFRbISSNc20090225 a024 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=PYS&site=ehost-live zContenu: sommaires et texte intégral depuis le vol. 1 no. 1 (jan-1990)4 uhttps://acces-distant.sciences-po.fr/fork?http://pss.sagepub.com/ zContenu: sommaires et texte intégral depuis le vol. 1 no. 1 (jan-1990)1 bvol. 21 no. 1 (jan-2010) -....cParisdMagasins/AnnexeeP 4° 7281 aZSAB aGEO RQ Universel aDEW 1501671nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154207003000180210002900210326001600239430004600255530003300301606004200334606005300376607005000429710005000479801002100529856012800550856010800678856010100786856010800887955006700995957013701062972000901199991001801208992003101226992001601257038779226000003623820130319051756.01 a0033-3298 aFNSP205354 a0000036238 a19900101a19269999 ba0 aeng aGB aaha 10aPublic administration 1aVol. 4, no. 1 (jan-1926)- aOxfordcBlackwelld1926- aTrimestriel 1tJournal of public administration (London) 0aPublic administrationbPrint aAdministration publiquexPériodiques aFonction publiqueyGrande-BretagnexPériodiques aGrande-BretagnexAdministrationxPériodiques02aRoyal Institute of Public Administration (GB) 3aFRbCCN0033-32984 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=PAD&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100914 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 22 no. 1 (1944) -....cParisdMagasins/AnnexeeP 8° 00561 bvol. 1 (1923) -vol. 20 (1942) ; vol. 15 (1937) -vol. 34 (1956) ; vol. 1 (1923) -vol. 55 (1977)cParisdMagasins/AnnexeeP Index 0139 aZCAD aexempb201011 aGEO RA4.02 Grande-Bretagne aDEW 350-35401075nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004200154207002700196210002900223326003400252430005500286606004200341607006500383856010700448856006000555955008200615991001800697992004200715992001600757039331040000003507020130319051756.01 a0271-2075 aFNSP202350 a0000035070 a19900101a19819999 ba0 aeng aGB aaha 10aPublic administration and development 1aVol. 1, no. 1 (1981) - aChichestercWileyd1981- aTrimestriel puis 5 nos par an 1aJournal of administration overseasxISSN 0021-8472 aAdministration publiquexPériodiques aPays en voie de développementxAdministrationxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www3.interscience.wiley.com/cgi-bin/issuetoc?ID=18677 zContenu : sommaires depuis le vol. 16, n°1, fév. 19961 bvol. 1 no. 1 (1981) -vol. 18 no. 3 (1998)cParisdMagasins/AnnexeeP 8° 0961 aexempb201101 aGEO RO Pays en voie de développement aDEW 350-35401154nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210006700185326001600252517003300268606003700301606003700338606004900375607006500424801002100489856005400510856006000564955011900624991001700743992002100760992002300781992001200804039336972000003505620130319051756.01 a0275-1100 aFNSP202328 a0000035056 a19900101a19819999 ba0 aeng aUS aaha 10aPublic budgeting & finance aNew Brunswick, N.J.cTransaction Periodicals Consortiumd1981- aTrimestriel10aPublic budgeting and finance aBudgetyEtats-UnisxPériodiques aFinances publiquesxPériodiques aFinances publiquesyEtats-UnisxPériodiques aEtats-UnisxCrédits budgétaires et dépensesxPériodiques 3aFRbCCN0275-11004 uhttp://www.uky.edu/RGS/MartinSchool/abfm/pb&f.htm zContenu : sommaires et résumés depuis le vol. 1, 19811 bvol. 1 no. 2 (ete-1981) -vol. 19 no. 4 (1999) ; vol. 27 no. 1 (pri-2007) -....cParisdMagasins/AnnexeeP 8° 4744 aexemp$201106 aGEO RQ Universel aGEO RC2 Etats-Unis aDEW 33600949nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001800154210004400172326002600216606004900242606003400291607005600325801002100381856004500402856006200447955006000509972000900569991001800578992002300596992001600619038830418000003506820130319051756.01 a0048-5829 aFNSP202348 a0000035068 a19900101a19669999 ba0 aeng aNL aafa 10aPublic choice aDordrechtcKluwer Academic Publ.d1966- a8 n°s doubles par an aPolitique publiqueyEtats-UnisxPériodiques aChoix collectifxPériodiques aEtats-UnisxPolitique et gouvernementxPériodiques 3aFRbCCN0048-58294 uhttp://www.wkap.nl/jrnltoc.htm/0048-5829 zContenu : sommaires depuis le vol. 82, n°1-2, janv. 19951 bvol. 4 (1968) -....cParisdMagasins/AnnexeeP 8° 2756 aZSAB aexempb201105 aGEO RC2 Etats-Unis aDEW 350-35401110nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210007000173210004500243326001700288606003600305606003200341712005700373856012800430856010800558955007000666972000900736991001800745992002100763992001200784040004503000011720420130319051756.01 a0899-2363 aFNSP486862 a0000117204 a19900101a19889999 ba0 aeng aUS aaia 10aPublic culture aPhiladelphia, PAcProject [University of Pennsylvania]d1988-1996 aDurham, NCcDuke University Pressd1997- a3 nos par an aSciences socialesxPériodiques aAnthropologiexPériodiques02aSociety for Transnational Cultural Studies (Chicago)4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=6Z1&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 9 (aut-1992) -....cParisdMagasins/AnnexeeP 8° 6012 aZSAB aexempb201211 aGEO RQ Universel aDEW 30000979nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210003900180326001500219430004100234517000800275606004900283856010800332856010800440955006700548972000900615991001800624992002300642992001200665040389707000021229820130319051756.01 a1091-1421 aFNSP766751 a0000212298 a19900101a19979999 ba0 aeng aUS aaga 00aPublic finance review aThousand Oaks, Calif.cSaged1997- aBimestriel 1aPublic finance quarterly,x0048-585310aPFR aFinances publiquesyEtats-UnisxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 25 no. 1 (1997) -....cParisdMagasins/AnnexeeP 8° 3596 aZPAY aexempb201010 aGEO RC2 Etats-Unis aDEW 33601108nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007400154210002700228326001600255434004200271530001500313606003100328606003600359801002100395856016900416856010800585955009200693972000900785992001200794038779366000003507220130319051756.01 a0033-3565 aFNSP202352 a0000035072 a19900101a19569999 ba0 aeng aGB aaha 10aPublic laweconstitutional and administrative law of the Commonwealth aLondoncStevensd1956- aTrimestriel 1aBritish journal of administrative law00aPublic law aDroit publicxPériodiques aScience politiquexPériodiques 3aFRbCCN0033-35654 uhttps://acces-distant.sciences-po.fr/fork?http://www.westlaw.com/signon/default.wl?RS=UKIS1.0&VR=1.0&sp=intiep-000&MDP-WSSO-SESSION=9bade534eab0e86afa185fefd9abe17e zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (pri/ete-1956) -(ete-2002) ; (aut-2008) -....cParisdMagasins/AnnexeeP 8° 1500 aZSAB aDEW 34001369nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210002900184326001500213430002900228606005400257606006100311606004400372710003600416856012800452856010800580856010100688856010800789955007800897972000900975992003100984992001601015040083977000005111020130319051756.01 a0954-0962 aFNSP248633 a0000051110 a19900101a19889999 ba0 aeng aGB aaha 10aPublic money & management aOxfordcBlackwelld1988- aBimestriel 1aPublic money,x0261-1252 aFinances publiquesyGrande-BretagnexPériodiques aServices publicsyGrande-BretagnexGestionxPériodiques aServices publicsxGestionxPériodiques02aPublic Finance Foundationc(GB)4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=1MD&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100915 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 8 no. 1/2 (pri/été-1988) -....cParisdMagasins/AnnexeeP 4° 4717 aZPAY aGEO RA4.02 Grande-Bretagne aDEW 350-35401983nas 2200445 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154207003100183210005700214210005900271210005100330210004800381210004200429210005500471210004300526326001600569606004700585606003500632606003700667710005300704801002100757856012800778856010800906856009001014856010801104856010301212856010801315955007001423972000901493992002301502992001201525038779404000003594420131025130014.01 a0033-362X aFNSP204526 a0000035944 a19900101a19379999 ba0 aeng aUS aaha 10aPublic opinion quarterly 1aVol. 1, no. 1 (jan-1937) - aPrinceton, N.J.cPublic Opinion Quarterlyd1937-1946 aPrinceton, N.J.cPrinceton University Pressd1946-1968 aNew YorkcColumbia University Pressd1968-1978 aNew YorkcElsevier North-Hollandd1978-1982 aNew YorkcElsevier Scienced1982-1985 aChicago, Ill.cChicago University Pressd1986-2003 aOxfordcOxford University Pressd2004- aTrimestriel aOpinion publiqueyEtats-UnisxPériodiques aOpinion publiquexPériodiques aSondages d'opinionxPériodiques02aAmerican Association for Public Opinion Research 3aFRbCCN0033-362X4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=POQ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/0033362X.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=1045194 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jan-1937) -....cParisdMagasins/AnnexeeP 8° 0048 aZCAD aGEO RC2 Etats-Unis aDEW 30300959nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004900163207002800212210004900240300002900289326001600318530003100334606004200365801001300407856004700420856008300467955007000550972000900620992001600629108562735000053982320130319051757.01 a1566-7170 a0000539823 a a20019999k fre ba0 aeng aNL a 0  ar aah z 0 10aPublic organization reviewea global journal 1avol.1,n°1(march 2001)- aDordrechtcKluwer Academic Publishersd2001- atitre-clé non vérifié aTrimestriel00aPublic organization review aAdministration publiquexPériodiques 0aFRbFNSP4 uhttp://www.kluweronline.com/issn/1566-7170 zContenu : sommaires et résumés des articles depuis le vol.1,n°1, March 20011 bvol. 2 no. 1 (mar-2002) -....cParisdMagasins/AnnexeeP 8° 6688 aZSAB aDEW 350-35401508cas0 2200421 450 001001000000002001100010005001700021011001400038020002000052035001700072035001500089100004100104101000800145102000700153105001800160106000600178110001600184200003700200207003300237210007700270326002300347326002900370430004600399606004200445606005500487607006100542710009900603801003000702801001500732801001700747801002300764802000700787856007000794856010800864955007100972992003101043992001201074076686701000113352920130319051757.01 a0952-0767 aUSbsn 87040066 aissn09520767 a0001133529 a20040304a19869999k y0frey0103 ba0 aeng aGB ay 0  ar aaha 0uu 00aPublic policy and administration 0aVol. 1, no. 1 (spring 1986)- aLondoncJoint University Council, Public Administration Committeed1986- aTrimestrielb1996- a3 n°s par anb1986-1995 1tPublic administration bulletinx0144-2171 aAdministration publiquexPériodiques aTechniques de décision en politiquexPériodiques aGrande-BretagnexPolitique et gouvernementxPériodiques02aJoint University Council for Social and Public AdministrationbPublic Administration Committee 3aFRbAbesc20080306gAFNOR 2bWaUgAACR2 0bAzTeSgAACR2 3aFRbISSNc20070901 a024 uhttps://acces-distant.sciences-po.fr/fork?http://ppa.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 22 no. 1 (jan-2007) -....cParisdMagasins/AnnexeeP 8° 7016 aGEO RA4.02 Grande-Bretagne aDEW 35101303cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200002700180207003400207210003300241326001600274430003600290440002400326606004900350606003700399710005200436801003000488801002300518802000700541856010300548856010800651955010000759972000900859992001600868992003300884090031350000092882920130628122625.01 a1744-5396 aissn17445396 a0000928829 a20040701b20052012k y1fre 01 ba0 aeng aGB a 0  ar aaha 0uu 10aPublic policy research 0aVol. 12, issue 1 (Mar. 2004)- aOxfordcBlackwelld2005-2012 aTrimestriel 1tNew economy (London)x1070-3535 1tJuncturex2050-5868 aPolitique publiqueyEtats-UnisxPériodiques aPolitique publiquexPériodiques02aInstitute for Public Policy Researchc(Londres) 3aFRbAbesc20060113gAFNOR 3aFRbISSNc20050901 a024 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=113107 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 12 no. 1 (mar-2005) -vol. 18 no. 4 (dec-2011/fev-2012)cParisdMagasins/AnnexeeP 8° 6216 aZPAY aDEW 350-354 aGEO RS Sans aspect régional00864nls 2200301 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000072001502100041002222300028002633260031002913360024003223370024003466070049003706760017004197100032004368010013004688300007004818560038004888560036005260000559790000055979020130319051757.0 a0000559790 a a20019999k fre 01 ba0 afre aFR ar aby z  adr 14aLes publications de l'Institut Montaigneb[Ressource électronique] aPariscInstitut Montaigned2001-.... aDonnées électroniques aCollection de monographies aDonnées textuelles aAccès par internet aFrancexPolitique et gouvernementz2002-2007 a320.944v21a02aInstitut Montaignec(Paris) 0aFRbFNSP aET4 uhttp://www.institutmontaigne.org/ zAccès libre au texte intégral02023cas0 2200481 450 001001000000002001100010005001700021011001400038035001400052035001400066035001700080035001700097035001500114035001700129035001500146100004100161101000800202102000700210105001800217106000600235110001600241200009600257210004700353210008100400312008100481423012000562440005000682488006200732510009000794517003200884530009500916531005801011606007701069710004801146801003001194801001801224801002301242802000701265856007601272955006901348955010901417991001501526013392484000114982720130319051757.0 a0073-3903 a036611506 a060622806 accn0073-3903 zccn0212/842X asib0096591 aissn00733903 a0001149827 a19880421b19611996k f0frey0103 ba0 amul aFR ay  ar aau 10aPublications de la Cour européenne des droits de l'hommehSérie A,iArrêts et décisions0 aStrasbourgcConseil de l'Europed1961-19711 aStrasbourgcConseil de l'EuropeaKölnaBerlinaBonncC. Heymannsd1971-1996 aPublication citée : Cour eur. D. H., Affaire... ; Cour eur. D. H., arrêt A 1tPublications de la Cour européenne des droits de l'homme. Série B, Mémoires, plaidoiries et documentsx0073-3911 1tReports of judgments and decisionsx1682-7449 1tCour européenne des droits de l'homme. Arrêtx1023-461610aPublications of the European Court of Human Rights. Series A, Judgments and decisions10aCour eur. D. H., Affaire...10aPublications de la Cour européenne des droits de l'homme. Série A, Arrêts et décisions 0aPubl. Cour eur. droits homme, Sér. A Arrêts décis. aDroits de l'homme (droit européen)xJurisprudencexPériodiques2rameau02aCour européenne des droits de l'homme4070 3aFRbAbesc20070626gAFNOR 3aFRbSFgAFNOR 3aFRbISSNc20020308 a00 uhttp://www.echr.coe.int/echr/fr/hudoczAccès libre au texte intégral.1 bno. 1 (1961) -no. 126 (1988)cParisdMagasins/AnnexeeCOL8°30751 bno. 127 (1988) -no. 338 (1996)cParisdMagasins/Annexeecotes diversesw(voir détail en notices liées) aPériobTZ01562cas0 2200361 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164105001800171106000600189110001600195200019500211210005800406440011200464447011700576510010000693530009600793531005800889710005100947801003000998801002301028802000701051856005701058955007001115991001501185036768286000112836620130319051757.0 a1812-0199 a080068936 accn0110/6864 aissn18120199 a0001128366 a19830101b19231930k z0frey0103 ba0 amul aNL ay 0  ar aaua 0 10aPublications de la Cour permanente de justice internationalehSérie AiRecueil des arrêtsd= Publications of the Permanent Court of International JusticehSeries AiCollection of judgments aLeydecSociété d'éditions A.W. Sijthoffd1923-1930 1tCour permanente de justice internationale. Série A/B. Arrêts, ordonnances et avis consultatifsx1812-0210 1tPublications de la Cour permanente de justice internationale. Série B. Recueil des avis consultatifsx1812-020210aPublications of the Permanent Court of International JusticehSeries AiCollection of judgments10aPublications de la Cour permanente de justice internationale. Série A. Recueil des arrêts 0aPubl. Cour perm. justice int., Sér. A, Recl. arrêts02aCour permanente de justice internationale4070 3aFRbAbesc20050531gAFNOR 3aFRbISSNc20030523 a00 uhttp://www.icj-cij.org/pcij/index.php?p1=9&p2=1&p3=01 bno. 1 (1923) -no. 24 (1930)cParisdMagasins/AnnexeeCOL8°1074 A aPériobTZ01616cas0 2200373 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164105001800171106000600189110001600195200021500211210005700426440011200483447010700595510010800702530010600810531006400916710005100980801003001031801002301061802000701084830000901091856005701100955007001157991001501227080068944000112837020130319051757.0 a1812-0202 a036839418 aissn18120202 accn0119/0156 a0001128370 a20030523b19221930k z0frey0103 ba0 amul aNL ay 0  ar aaua 0 10aPublications de la Cour permanente de justice internationalehSérie B,iRecueil des avis consultatifsd= Publications of the Permanent Court of International justicehSeries B,iCollection of advisory opinions aLeydecSociété d'éditions A.W.Sijthoffd1922-1930 1tCour permanente de justice internationale. Série A/B. Arrêts, ordonnances et avis consultatifsx1812-0210 1tPublications de la Cour permanente de justice internationale. Série A. Recueil des arrêtsx1812-019910aPublications of the Permanent Court of International justice. Series B. Collection of advisory opinions10aPublications de la Cour permanente de justice internationale. Série B. Recueil des avis consultatifs 0aPubl. Cour perm. justice int., Sér. B, Recl. avis consult.02aCour permanente de justice internationale4070 3aFRbAbesc20050531gAFNOR 3aFRbISSNc20030523 a00 asdy0 uhttp://www.icj-cij.org/pcij/index.php?p1=9&p2=2&p3=11 bno. 1 (1922) -no. 18 (1930)cParisdMagasins/AnnexeeCOL8°1074 B aPériobTZ01647cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086040001000101100004100111101000800152102000700160105001800167106000600185110001600191200015200207210004700359440008500406510015800491517004500649517008000694530015200774531008800926710005101014801003001065801002301095802000701118830000901125856005701134955005501191991001501246037953397000112749020130319051757.0 a1011-8462 accn1011-8462 aissn10118462 a0001127490 aNU022 a19890418b192219 k z0frey0103 ba0 amul aNL ay 0  ar aaua 0 10aPublications de la Cour permanente de justice internationalehSérie CiActes et documents relatifs aux arrêts et aux avis consultatifs de la Cour aLeydecSociété d'éditions A.W. Sijthoff 1tPleadings, oral arguments, documents (International Court of Justice)x0074-443310aPublications of the Permanent Court of International Justice. Series C. Acts and documents relating to judgments and advisory opinions given by the Court10aPlaidoiries, exposés oraux et documents10aActes et documents relatifs aux arrêts et aux avis consultatifs de la Cour10aPublications de la Cour permanente de justice internationale. Série C. Actes et documents relatifs aux arrêts et aux avis consultatifs de la Cour 0aPubl. Cour perm. justice int., Sér. C Actes doc. relat. arrêts avis consult. Cour02aCour permanente de justice internationale4070 3aFRbAbesc20051021gAFNOR 3aFRbISSNc20030523 a00 asdy0 uhttp://www.icj-cij.org/pcij/index.php?p1=9&p2=4&p3=31 b(1922) -(1939)cParisdMagasins/AnnexeeCOL8°1075 aPériobTZ01168cas0 2200265 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200027100180210004200451510014100493530007500634710005100709801003000760856005700790955005500847038608278000112749120130319051757.0 a1574-4779 accn9024/2513 a0001127491 a19830101b192619 f0frey0103 ba0 amul aNL ay 0  ar aau 0 10aPublications de la Cour permanente de justice internationalehSérie DiActes et documents relatifs à l'organisation de la CourdPublications of the Permanent Court of International JusticehSeries DiActs and documents concerning the organization of the Courtzeng aLeyde (NL)cA. W. Sijthoffd1926-19??10aPublications of the Permanent Court of International JusticehSeries DiActs and documents concerning the organization of the Courtzeng10aPublications de la Cour permanente de justice internationale. Série D02aCour permanente de justice internationale4070 3aFRbAbesc20061011gAFNOR uhttp://www.icj-cij.org/pcij/index.php?p1=9&p2=5&p3=41 b(1931) -(1938)cParisdMagasins/AnnexezCOL8°107601570cas0 2200373 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164105001800171106000600189110001600195200027900211210003600490326001100526440005700537510013900594517006700733530013900800710004600939801003000985801002301015802000701038830000901045856005701054955007001111991001501181038608286000112749220130319051757.01 a1574-4760 a089959361 accn9024/2521 aissn15744760 a0001127492 a19830101b19251945k y1frey0103 ba0 amul aNL ay  ar aaku uu 10aPublications de la Cour permanente de justice internationalehSérie E,iRapport annuel de la Cour permanente de justice internationaled= Publications of the Permanent Court of International JusticehSéries E,iAnnual report of the Permanent Court of International Justice aLeydecA.W. Sijthoffd1925-1945 aAnnuel 1tAnnuaire - Cour internationale de justicex0251-066910aPublications of the Permanent Court of International Justice, séries E, annual report of the Permanent Court of International Justice10aRapport annuel de la Cour Permanente de Justice Internationale10aPublications de la Cour Permanente de Justice Internationale. Série E, Rapport annuel de la Cour Permanente de Justice Internationale02aCour permanente de justice internationale 3aFRbAbesc20060113gAFNOR 3aFRbISSNc20050901 a0j asdy0 uhttp://www.icj-cij.org/pcij/index.php?p1=9&p2=6&p3=51 bno. 1 (1925) -no. 16 (1945)cParisdMagasins/AnnexeeCOL 8° 1077 aPériobTZ01464cas0 2200301 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200014900180210004200329327041200371510007500783530007500858710005100933801003000984830000901014856005701023955006701080991001501147038608294000112749320130319051757.0 a1574-4752 accn9024/253X a0001127493 a19830101b19271938 f0frey0103 ba0 amul aNL ay 0  ar aau 0 10aPublications de la Cour permanente de justice internationalehSérie Fd= Publications of the Permanent Court of International JusticehSeries F aLeyde (NL)cA. W. Sijthoffd1927-19381 aN.1 : Premier index général des publications de la Cour, Séries A, B et C, 1e-11e sessions (1922-1926)aN.2 : Deuxième index général des publications de la Cour, Séries A, B et C, 12e-19e sessions (1927-1930)aN. 3 : Troisième index général des publications de la Cour, Séries A, B et C, 25e-35e sessions (1931-1935)aN.4 : Index du statut et du règlement (élaboration et révision - 1920-1936)10aPublications of the Permanent Court of International JusticehSeries F10aPublications de la Cour permanente de justice internationale. Série F02aCour permanente de justice internationale4070 3aFRbAbesc20071011gAFNOR asdy0 uhttp://www.icj-cij.org/pcij/index.php?p1=9&p2=7&p3=61 bno. 1 (1927) -no. 4 (1938)cParisdMagasins/AnnexezCOL8°1078 aPériobTZ01194nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000081001502100062002313000122002933260016004153360058004313370063004894400070005524520067006226060037006897120034007268010013007608560090007739550005008639920012008680000467820000046782020130319051757.0 a0000467820 a b18861907k fre 01 ba0 aeng aUS az aah z  adr 10aPublications of the American Economic Associationb[Ressource électronique] aBaltimore, Md.c:American Economic Associationd1886-1907 aAccès au texte intégral (réservé aux sites de Sciences Po) du vol. 1, 3rd series, de 1886 jusqu'au vol. 8 de 1907 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tAmerican Economic Association quarterly [Ressource électronique] 1tPublications of the American Economic Associationx(1049-7498) aEconomie politiquexPériodiques02aAmerican Economic Association 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/10497498.html1 r aDEW 33001019nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001200139210003100151326001600182452003500198530001200233606006000245606004100305710006000346801002100406856006500427955006600492957006300558972000900621991001800630992002900648992001600677038830515000003507120130725121907.01 a0048-5950 aFNSP202351 a19900101a19719999 ba0 aeng aUS aaha 10aPublius aDenton, TXcPubliusd1971- aTrimestriel 1tPublius (Online)‎x1747-710700aPublius aGouvernement fédéralyAmérique du NordxPériodiques aGouvernement fédéralxPériodiques02aCenter for the Study of Federalismc(Philadelphie, Pa.) 3aFRbCCN0048-59504 uhttp://www.oxfordjournals.org/our_journals/pubjof/index.html1 bvol. 1 no. 1 (1971) -....cParisdMagasins/AnnexeeP 8° 33041 b(1973) -(1998)zse trouve dans le vol. 29 no. 1 (hiv-1999) aZSAB aexempb200905 aGEO RC Amérique du Nord aDEW 350-35401366nas 2200385 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012310600060014111000160014720000140016321000260017732600150020351701150021851701090033353000270044260600520046960600420052160600370056360600470060067600080064771000830065580100130073885600540075195500670080595500590087297200090093199200160094099200240095605820153X000050088720130319051758.01 a1376-098X a0000500887 a a20009999k fre ba0 afre aBE a 0  ar aaj z 0 10aPyramides aBruxellescULBd2000- aSemestriel10aRevue du Laboratoire d'études et de recherches en administration publique de l'Université libre de Bruxelles10aRevue du Centre d'Etudes et de recherches en Administration Publique de l'Université Libre de Bruxelles10aPyramidesb(Bruxelles) aAdministration publiqueyBelgiquexPériodiques aAdministration publiquexPériodiques aPolitique publiquexPériodiques aPolitique publiqueyBelgiquexPériodiques a35102aLaboratoire d'études et de recherches en administration publiquec(Bruxelles) 0aFRbFNSP4 uhttp://www.ulb.ac.be/soco/cerap/pyramides_num.htm1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3511 bno. 1 (2000) -....cParisdMagasins/AnnexeeP 8° 6665 aZCAD aDEW 350-354 aGEO RA4.04 Belgique01110nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009300154207001700247210002500264326001700289517004300306530002000349606003200369606002600401676000800427710009200435856005300527856003900580955007300619955005900692972000900751992001200760039844293000000592120130319051758.01 a0987-1381 aFNSP109429 a0000005921 a19900329a19879999 ba0 afre aFR aaia 10aQUADERNIf[Centre de recherche et d'étude sur la décision administrative et politique] 1ano 1 (1987)- aPariscCredapd1987- a3 nos par an10aQuaderniela revue de la communication00aQuadernibParis aCommunicationxPériodiques aMédiasxPériodiques a07002aCentre de recherches et d'études sur la décision administrative et politiquec(Paris)4 uhttp://panoramix.univ-paris1.fr/CREDAP/quaderni/ zContenu : sommaires depuis le n°21 bLes 3 dernières annéescParisd27, Salle Rez-de-chausséeeDEW 0701 bno. 1 (1987) -....cParisdMagasins/AnnexeeP 4° 5894 aZPAY aDEW 30200927nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002800139210005400167326001600221452004900237530004700286606004800333801002100381856010800402955006600510972000900576991001800585992002200603992001200625039590399000003519820130911122656.01 a0392-6664 aFNSP202628 a19900101a19819999 ba0 aita aIT aaha 10aQuaderni costituzionali aBologna‎cSocietà editrice il Mulino‎d1981- aTrimestriel 1tQuaderni costituzionali (Online),x1973-818810aQuaderni costituzionali‎bTesto stampato aDroit constitutionnelyItaliexPériodiques 3aFRbCCN0392-66644 uhttp://www.rivisteweb.it/issn/0392-6664zAccès libre aux sommaires et resumés à partir du no 1, 19971 bvol. 1 no. 1 (1981) -....cParisdMagasins/AnnexeeP 8° 4406 aZCAD aexempb201106 aGEO RA6.03 Italie aDEW 34201118nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210003700188326001600225440005000241517000800291606004400299606003700343801002100380856004100401856005700442955015100499957009300650972000900743991001800752992002200770037480553000003578420130319051758.01 a0392-6656 aFNSP204128 a0000035784 a19900101b19811994 ba0 aita aIT aahu 10aQuaderni del Circolo Rosselli aMilanocFranco Angelid1981-1994 aTrimestriel 1tQCR. Quaderni del Circolo Rossellix1123-970010aQCR aSciences socialesyItaliexPériodiques aSocialismeyItaliexPériodiques 3aFRbCCN0392-66564 uhttp://www.rosselli.org/Quaderni.asp zContenu : sommaires depuis 1997 et index depuis 19811 bvol. 1 no. 1 (1981) -vol. 14, no. 3/4 (1994)cParisdMagasins/AnnexeeP 8° 4407zManque vol. 5, no 2, 3 et 4 (1985) et vol. 6, no 1,2 et 3 (1986)1 bno. 1 (1981) -no. 4 (2001)zCet index se trouve dans le vol. 21 no. 4 (2001) de la revue aZCAD aexempb201010 aGEO RA6.03 Italie01114nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004200139210004500181326001500226530004200241606002800283710006900311711007200380801002100452856012300473955006300596957011000659972000900769991001800778992001600796039590542000003578820130911145656.01 a0392-6753 aFNSP204132 a19900101a19779999 ba0 aita aIT aahu 10aQuaderni dell'Osservatorio elettorale aFirenzecGiunta regionale toscanad1977- aSemestriel10aQuaderni dell'Osservatorio elettorale aElectionsxPériodiques02aIstituto regionale per la programmazione economica della Toscana02aGruppo di studio sul comportamento elettorale in Toscana (Florence) 3aFRbCCN0392-67534 uhttp://ius.regione.toscana.it/elezioni/Quaderni/indicqua.htmzAccès libre au texte intégral à partir du no 36, 19961 bno. 1 (oct-1977) -....cParisdMagasins/AnnexeeP 8° 44091 bno. 1 (1977) -no. 38 (1997)cParisdMagasins/Annexezcet index se trouve dans le no. 39, 1998 de la revue aZGRA aexempb201106 aDEW 324.6-900818nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210002800187326001800215606004700233606004400280856003100324856006000355955008200415972000900497991001800506992001600524036270237000013737120130319051758.01 a1124-7959 aFNSP548676 a0000137371 a19941004a19949999 ba0 aita aIT aaia 00aQuaderni di scienza politica aMilanocGiuffrèd1994- a3 n°s par an aScience politiquexRecherchexPériodiques aScience politiqueyItaliexPériodiques4 uhttp://www.unipv.it/quasp/4 zContenu : accès aux sommaires et résumés depuis 19941 bvol. 1 no. 1 (1994) -vol. 12 no. 2 (2005)cParisdMagasins/AnnexeeP 8° 6067 aZSAB aexempb201212 aDEW 320-32101265nas 2200361 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000079001502070017002292100074002463260016003204300062003365170070003986010075004686060036005436070051005797100061006308010013006918560076007048560060007809550005008409720009008459920014008549920012008689920023008800000539796000053979620130319051759.0 a0000539796 a a20039999k fre ba0 aeng aIE a 0  ar aah z 0 10aQuarterly bulletinfCentral Bank & Financial Services Authority of Ireland 1aSummer 2003- aDublincCentral Bank & Financial Services Authority of Irelandd2003- aTrimestriel 1tQuarterly bulletin - Central Bank of Irelandx(0332-2645)10aBulletin - Central Bank & Financial Services Authority of Ireland00aCentral Bank and Financial Services Authority of IrelandxPériodiques aFinancesyIrlandexPériodiques aIrlandexConditions économiquesxPériodiques02aCentral Bank and Financial Services Authority of Ireland 0aFRbFNSP4 uhttp://www.centralbank.ie/frame_main.asp?pg=pub_annu.asp&nv=pub_nav.asp zContient : texte intégral deouis le n° de Spring 20041 a aZGRA aDEW 330.9 aDEW 332 aGEO RA4.01 Irlande01329nls 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005100154210004800205326001600253430006600269517004700335601004500382606004300427607005800470710003100528830013500559856013700694856003600831955000500867957003000872972000900902992003000911992001400941992001200955038799146000005052720130319051759.01 a0038-2620 aFNSP247210 a0000050527 a19900101a19669999 ba0 aeng aZA aaha 10aQuarterly bulletinfSouth African Reserve Bank aPretoriacSouth African Reserve Bankd1966- atrimestriel 1aQuarterly bulletin of statistics - South African Reserve Bank10aKwartaalblad - Suid-Afrolaanse Reserwzbank02aSouth African Reserve BankxPériodiques aFinancesyAfrique du SudxPériodiques aAfrique du SudxConditions économiquesxPériodiques02aSouth African Reserve Bank a< P 4° 3330 > N° 106, Dec. 1972--->n° 154, 1984 collection donnée au CTL en juin 2002, 1985-2005 : collection donnée au CTLes4 uhttp://www.reservebank.co.za/internet/Publication.nsf/WTV/QuarterlyBulletins6AF7920302C489BB42256B440046F4F2?OpenDocument&AutoFramed zAccès libre au texte intégral1 r1 r1948/1996 < P Index 780 > aZGRA aGEO RF3.19 Afrique du Sud aDEW 330.9 aDEW 33201814nas 2200457 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154207002600193210004300219210005300262210004100315210004400356210004300400326001600443517000800459606003700467676000800504710002300512801002100535856005900556856008000615856010100695856010800796856009000904856010800994955006701102955007001169957005701239972000901296991001801305992002101323992001201344038779927000003580520130319051759.01 a0033-5533 aFNSP204167 a0000035805 a19900101a18869999 ba0 aeng aUS aahu 14aThe Quarterly journal of economics 1avol. 1, no 1 (1886) - aBoston, Mass.cG. H. Ellisd1886-1909? aCambridge, Mass.cHarvard Universityd1909?-1976 aNew YorkcJ. Wiley & Sonsd1976-1986 aaCambridge, Mass.cMIT pressd1987-2010 aOxfordcOxford University Pressd2011- aTrimestriel10aQJE aEconomie politiquexPériodiques a33002aHarvard University 3aFRbCCN0033-55334 uhttp://mitpress.mit.edu/journal-home.tcl?issn=00335533 zContenu : sommaires et résumés à partir du vol. 109, n°1, février 19944 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101818 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00335533.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3301 bvol. 1 no. 4 (Jul-1887) -....cParisdMagasins/AnnexeeP 8° 01251 b(1886) -(1936)cParisdMagasins/AnnexeeP Index 0092 aZPAY aexempb201101 aGEO RQ Universel aDEW 33001307nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200009300139210002700232326001600259430005300275452005000328510005600378530004800434606006600482710012300548856022000671955006700891972000900958992002200967992001600989039275930000005021620130701155438.01 a0255-3627 aFNSP246692 a19900101b19832005 f ba0 amul aFR aaha 10aQuarterly labour force statisticsd= Statistiques trimestrielles de la population active aPariscOCDEd1983-2005 aTrimestriel 1aLabour force statistics. Supplement ,x0304-3312 1tQuarterly labour force statisticsxa1609-760210aStatistiques trimestrielles de la population active10aQuarterly labour force statistics‎bPrint aPopulation activeyPays de l'OCDExStatistiquesxPériodiques02aOrganisation de coopération et de développement économiquesbDépartement des affaires économiques et statistiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/02553627/stattrimestpopulactivezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1983) -no. 1 (2003)cParisdMagasins/AnnexeeP 4° 3800 aZECH aGEO RA4.06 France aDEW 310-31901262nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007900154210002300233326001600256430005200272517009800324606005800422710012300480856011000603856010800713955006700821972000900888992001200897992005100909070233802000005021720130319051759.01 a0257-7801 aFNSP246695 a0000050217 a19900101a19839999 f ba0 amul aFR aaha 10aQuarterly national accounts - OECD, Department of Economics and Statistics aPariscOCDEd1983- aTrimestriel 1aQuarterly national accounts bulletinx0304-373810aComptes nationaux trimestriels - Département des affaires économiques et statistiques, OCDE aComptabilité nationaleyPays de l'OCDExPériodiques02aOrganisation de coopération et de développement économiquesbDépartement des affaires économiques et statistiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/02577801/comptesnattrimest zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1983) -no. 4 (2002)cParisdMagasins/AnnexeeP 4° 3878 aZECH aDEW 336 aGEO RN1 Pays industrialisés, pays occidentaux01427nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005000154210006500204326002300269326002900292430006300321606003700384606002700421710006000448711004800508711004600556856010000602856009000702955007100792955009100863957007200954972000901026991001801035992001201053040293378000006754320130319051759.01 a1062-9769 aFNSP313516 a0000067543 a19900101a19929999 ba0 aeng aUS aaha 14aThe Quarterly review of economics and finance aUrbana, IllcBureau of Economic and Business Researchd1992- aTrimestrielb2008- a5 n°s par anb1992-2007 1aThe Quarterly review of economics and business,x0033-5797 aEconomie politiquexPériodiques aFinancesxPériodiques02aBureau of Economic and Business Research (Urbana, Ill.)02aMidwest Economics Associationc(Etats-Unis)02aMidwest Finance Associationc(Etats-Unis)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/10629769 zContenu : accès aux sommaires et aux résumés de la revue depuis le volume 33, 19931 bvol. 50 no. 1 (fev-2010) -....cParisdMagasins/AnnexeeP 4° 72731 bvol. 32 no. 1 (pri-1992) -vol. 49 no. 4 (nov-2009)cParisdMagasins/AnnexeeP 8° 20051 bvol. 1 (1961) -vol. 40 (2000)cParisdMagasins/AnnexeeP Index 0835 aZPAY aexempb201302 aDEW 33000838nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210004600176326001600222606003600238606004400274710003500318801002100353856003700374955006700411972000900478991001800487992001900505992001200524038780054000003593620130319051800.01 a0033-6041 aFNSP204517 a0000035936 a19900101a18939999 ba0 aeng aCA aahu 10aQueen's quarterly aKingston, Ont.cQueen's Universityd1893- aTrimestriel aSciences socialesxPériodiques aSciences socialesyCanadaxPériodiques02aQueen's University at Kingston 3aFRbCCN0033-60414 uhttp://www.queensu.ca/quarterly/1 bvol. 70 no. 4 (1964) -....cParisdMagasins/AnnexeeP 8° 2051 aZCAD aexempb200910 aGEO RC1 Canada aDEW 30000983cas0 2200313 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200006900163210004000232326001100272606003900283606004500322606003100367801003000398856005100428856005700479955008600536972000900622992002400631992001400655167129333000105981420130319051802.01 a1768-4579 a0001059814 a20040909b20042006k y frey0103 ba0 afre aFR a 0  ar aauu 0 13aLa question socialeerevue libertaire de réflexion et de combat aPariscLibrairie Publicod2004-2006 aAnnuel aMouvement libertairexPériodiques aGauche (science politique)xPériodiques aSyndicalismexPériodiques 3aFRbAbesc20041027gAFNOR4 uhttp://www.laquestionsociale.org/sommaires.htm zContenu : texte intégral à partir du n° 1 de 20041 bno. 1 (pri/été-2004) -no. 3 (hiv-2005/2006)cParisdMagasins/AnnexeeP 8° 6933 aZGRA aGEO RA4 . 06 France aDEW 320.501159cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200016800162207001700330210005000347326001500397530004000412606003200452606003700484801003000521801002300551802000700574856004800581856009700629955007400726972000900800992001200809073871915000089989420130319051803.01 a1633-5961 aissn16335961 a0000899894 a20030523a20029999 0fre 0103 ba0 afre aFR ar aaj 10aQuestions de communicationfpublié avec le soutien du Centre de recherche sur les médiations et du Groupe de recherche en information, communication, propagandes 0aN°1 (2002)- aNancycPresses Universitaires de Nancyd2002- aSemestriel10aQuestions de communicationb(Nancy) aCommunicationxPériodiques aMediasxSociologiexPériodiques 3aFRbAbesc20050608gAFNOR 3aFRbISSNc20030523 a074 uhttp://questionsdecommunication.revues.org/ zContenu : texte intégral depuis le n°8 2005, à l'exception des numéros les plus récents1 bno. 1 (2002) ; no. 4 (2003) -....cParisdMagasins/AnnexeeP 8° 6842 aZPAY aDEW 30200933nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000077001502100023002272300005002503000050002553260016003053360056003213370017003776060044003946060044004387100063004828010013005458560068005589550005006260000497686000049768620130319051803.0 a0000497686 a a20019999k fre 01 ba0 afre aFR az aay z  adr 10aQuestions de recherche = Research in questionb[Ressource électronique] aPariscCERId2001- a aTexte intégral depuis le n°1, novembre 2001 airrégulier aDonnées textuelles accessibles uniquement en ligne aFichiers PDF aRelations internationalesxPériodiques aRelations internationalesxPériodiques02aCentre d'études et de recherches internationalesc(Paris) 0aFRbFNSP4 uhttp://www.ceri-sciencespo.com/cerifr/publica/question/menu.htm1 r00894cas0 2200253 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200011600148210002900264530004200293700002200335801003000357856014500387955005500532991002000587991003300607036866830000109456220130319051803.0 accn0123/2088 a0001094562 a19830101c18971914 0frey0103 zz0 afre aFR ar aau 10aQuestions diplomatiques et colonialeserevue de politique extérieure paraissant le 1er et le 15 de chaque mois aParisc[s.n.]d1897-191400aQuestions diplomatiques et coloniales 1aPensabHenri4651 3aFRbAbesc20060420gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb32846693s/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1897-1906)1 b(1897) -(1913)cParisdMagasins/AnnexeeP 8° 0805 aPériobTP02 P8 anumer0 (complément gallica)01235nas 2200349 i 450 00100100000000200110001000500170002101100140003810000410005210100080009310200070010110500180010810600060012611000160013220000590014820700160020721000460022332600150026953000430028460600320032760600440035967600080040371000530041180100130046485600650047785601180054295500670066095500630072795500740079097200090086499200120087307335810X000053867620131029103905.01 a1761-7146 a a20039999k fre ba0 afre aFR a 0  ar aag z 0 10aQuestions internationalesfLa Documentation française 1ano.1(2003)- aPariscLa Documentation françaised2003- aBimestriel00aQuestions internationalesbParis, 2003 aGéopolitiquexPériodiques aRelations internationalesxPériodiques a32702aFrancebDirection de la documentation française 0aFRbFNSP4 uhttp://www.ladocumentationfrancaise.fr/revues/qi/index.shtml zContient les résumés en anglais des articles du dossier, le glossaire et les sites internet pour chaque numéro1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bno. 1 (mai-2003) -....cParisdMagasins/AnnexeeP 8° 66971 bno. 1 (mai-2003) -....cParisdBibliothèque de rechercheeP 8° 6697 aZPAY aDEW 32700753cas0 2200253 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119105001800126106000600144110001600150200001700166210003500183326001400218530001700232801003000249856014500279955005500424991002000479039202518000109344520130319051803.0 accn9003/435X a0001093445 a19830101b18941907 0frey0103 ba0 afre aFR a 0  ar aaea 0 13aLa Quinzaine aPariscLa Quinzained1894-1907 aBimensuel03aLa Quinzaine 3aFRbAbesc20040702gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb328467901/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1902-1906)1 b(1905) -(1907)cParisdMagasins/AnnexeeP 8° 0709 aPériobTP02 P800814nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210004300183326001400226606005300240801002100293856004100314856003600355955005900391955006300450972000900513992001400522039237192000003621820130319051803.01 a0048-6493 aFNSP205313 a0000036218 a19900101a19669999 ba0 afre aFR aacu 13aLa Quinzaine littéraire aPariscLa Quinzaine littéraired1966- aBimensuel aLittératurexHistoire et critiquexPériodiques 3aFRbCCN0048-64934 uhttp://www.quinzaine-litteraire.net/ zAccès libre au texte intégral1 bL’année en courscParisd27, Salle Rez-de chaussée1 bno. 1 (mar-1966) -....cParisdMagasins/AnnexeeP F° 0248 aZPAY aDEW 80-8901399cas0 2200421 450 001001000000002001100010005001700021011001400038035001700052035002000069035001500089100004100104101000800145102000700153105001800160106000600178110001600184200001200200210010700212326001400319530003400333531002800367606005200395606004300447606006600490676000800556712001100564712010400575801003000679801003000709802000700739856004900746856007300795955007700868972000900945992001100954992001200965048867861000104942320130319051804.0 a1575-4227 accn1575-4227 a(OCoLC)46864278 a0001049423 a20000327a19999999k y0frey50 ba0 aspa aES ay 0  ar aaha 0 10aQuórum aAlcalá de HenarescCentro de Iniciativas de Cooperación al Desarrollo, Universidad de Alcalád1999- aTrimestr.10aQuórumb(Alcalá de Henares) 0aQuórumb(Alcalá Hen.) aRelations internationalesxPériodiques2rameau aAmérique latinexPériodiques2rameau aAmérique latinexPolitique économiquexPériodiques2rameau a98002aCICODE02aUniversidad de Alcalá de HenaresbCentro de Iniciativas de Cooperación al Desarrollo, CICODE4340 3aFRbAbesc20050623gAFNOR 3aFRbAbesc20050623gAFNOR a0U4 uhttp://dspace.uah.es/jspui/handle/10017/5328 zContenu : taccès au texte intégral du N°1 (2000) au N° 19 (2007)1 bno. 7 (2003) -no. 22 (hiv-2008/2009)cParisdMagasins/AnnexeeP 8° 6886 aZPAY aGEO RD aDEW 98000871nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000042001502100029001922300005002213000131002263260029003573360056003863370018004426060026004607100025004868010013005118560028005249550005005529920012005570000505689000050568920130319051804.0 a0000505689 a a20009999k fre 01 ba0 afre aFR ar aay z  adr 10aR de réelb[Ressource électronique] aParisbR de réeld2000- a aSommaires et sélection d'articles en texte intégral depuis le volume A, janvier 2000 (la revue s'achèvera avec le volume Z) a6 puis 5 numéros par an aDonnées textuelles uniquement disponibles en ligne aFichiers HTML aCulturexPériodiques02aR de réelc(France) 0aFRbFNSP4 uhttp://rdereel.free.fr/1 r aDEW 00101139nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001700154210004700171326001600218430002900234517001900263606003300282606002900315606002400344710004900368801002100417856010800438856010800546955007100654972000900725991001800734992002100752992001600773039396541000003594120130319051804.01 a0306-3968 aFNSP204523 a0000035941 a19900101a19749999 ba0 aeng aGB aahu 10aRace & class aLondoncInstitute of Race Relationsd1974- aTrimestriel 1aRace (London)x0033-727710aRace and class aDiscriminationxPériodiques aMinoritésxPériodiques aNoirsxPériodiques02aInstitute of race relations‎c(Oxford, GB) 3aFRbCCN0306-39684 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 16 no. 2 (oct-1974) -....cParisdMagasins/AnnexeeP 8° 1972 aZSAB aexempb200910 aGEO RQ Universel aDEW 305-30601525nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116200002700123210005300150210005700203210005400260210007700314300007700391326001700468430002100485452004800506530003700554606003900591606005200630710003700682801002100719856010100740856010800841955006400949955010001013972000901113991001701122992001201139039107612000003609220130911115406.01 a0163-6545 aFNSP205021 a19900101a19759999 ba0 aeng aUS10aRadical history review aDurham, N.C.‎cDuke University Press‎d2001- aNew York‎cCambidge University Press‎d1991-2000 aNew York‎cRadical History Review‎d1982-1990 aNew York‎cMid-Atlantic Radical Historians' Organization‎d1975-1981 aLes années 1973 à 1979 ont été numérotées a posteriori n° 1 à 21 a3 nos par an 1aMARHO newsletter 1tRadical history review (Online),x1534-1453 aRadical history review‎bPrint aHistoire universellexPériodiques aHistoire moderne et contemporainexPériodiques02aRadical Historian's Organization 3aFRbCCN0045/63734 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=111237 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 22 (hiv-1980) -....cParisdMagasins/AnnexeeP 8° 43861 bvol. 2 no. 4 (1975) -no. 21 (1978/1979) ed. en microfilmcParisdMagasins/AnnexeeP Mic 35 (20) aZPAY aexemp$201106 aDEW 90901074nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000074001502100055002243000102002793260014003813360058003953370063004534400049005164520055005656060032006208010013006528560090006659550005007559920012007600000462567000046256720130319051805.0 a0000462567 a b19741984k fre 01 ba0 aeng aGB az aae z  adr 10aRAIN. Royal Anthropological Institute newsb[Ressource électronique] aLondoncRoyal Anthropological Instituted1974-1984 aAccès au texte intégral (réservé aux sites de Sciences Po) du n°1, 1974 jusqu'au n°65, 1984 aBimensuel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tAnthropology today [Ressource électronique] 1tRAIN. Royal Anthropological Institutex(0307-6776) aAnthropologiexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03076776.html1 r aDEW 30101185nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005300154210004100207326002300248326002700271606003600298676000800334710008200342856009800424856010800522955006700630955005900697955006900756972000900825992001600834992000900850045073554000026292320131220100845.01 a1291-1941 aFNSP912912 a0000262923 a19981228a19989999 ba0 afre aFR aaja 10aRaisons politiqueseétudes de pensée politique aPariscPresses de Sciences-pod1998- aTrimestrielb2001- aIrrégulierb1998-2000 aScience politiquexPériodiques a32002aInstitut d'études politiquesc(Paris)bCycle supérieur d'études politiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-raisons-politiques.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 1 (1998) -....cParisdMagasins/AnnexeeP 8° 64441 bL'année en courscParisdBibliothèque de rechercheeP 8° 6444 aZCAD aDEW 320-321 aPBUL01018nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001100154530008200165606004400247676000800291710005300299856006500352856003600417955006700453955007100520955005300591972000900644991001800653992001200671992002100683001018698000000397920131220101337.01 a0290-7674 aFNSP104445 a0000003979 a19900130a19819999 ba0 afre aFR aaka 10aRAMSES10aRAMSES. Rapport annuel mondial sur le système économique et les stratégies aRelations internationalesxPériodiques a32702aInstitut français des relations internationales4 uhttp://www.ifri.org/frontDispatcher/ifri/publications/ramses zContenu : sommaires depuis 19981 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bLa dernière annéecParisdBibliothèque de rechercheeP 8° 43691 b(1981) -....cParisdMagasins/AnnexeeP 8° 4369 aZCAD aexempb200905 aDEW 327 aGEO RQ Universel01028nas 2200313 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200003400148210004800182326001600230430004600246710002100292801001300313856002400326856003700350856009000387856010800477955009000585972000900675991001800684992001200702039705757000046993720131202114128.01 a0741-6261 a a19849999k fre ba0 aeng aUS a 0  ar aah z 0 14aThe Rand journal of economics aLawrance, KSaMount Morris, ILcRandd1984- aTrimestriel 1tThe Bell journal of economics,x0361-915X02aRand Corporation 0aFRbFNSP4 uhttp://www.rje.org/ zContenu : sommaires et résumés4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/07416261.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 26 no. 1 (pri-1995) -vol.43 no. 4 (hiv-2012)cParisdMagasins/AnnexeeP 8° 6630 aZPAY aexempb201301 aDEW 33801228cas0 2200349 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102106000600109110001600115200005300131210004600184301004300230303005700273303005700330304004500387320003400432606004700466606003500513710004800548801003000596856006400626856004700690856003600737955005500773972000900828992002500837992001600862081688482000075092420130319051805.0 a0000750924 a20041116a20019999 0fre 0103 ba0 afre aFR ar abk 00aRapport ...fConseil d'orientation des retraites aPariscla Documentation françaised2001- aDemande de numérotation ISSN en cours aNotice établie d'après le deuxième rapport (2004) aLe premier rapport est paru en 2002 (= rapport 2001) aChaque volume porte un titre particulier aEn annexe, choix de documents aRégimes de retraiteyFrancexPériodiques aRetraiteyFrancexPériodiques01aFrancebConseil d'orientation des retraites 3aFRbAbesc20050105gAFNOR4 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml4 uhttp://www.cor-retraites.fr/rubrique3.html zAccès libre au texte intégral1 b(2001) -(2007)cParisdMagasins/AnnexeeP 8° 6812 aZPAY aGEO RA4.06 France 01 aDEW 360-36301360cas0 2200361 450 001001000000002001100010005001700021011001400038035002100052035001700073035001500090100004100105101000800146102000700154105001800161106000600179110001600185200008100201210004500282303004800327326001100375530008200386606007700468606005700545710008200602801001300684802000700697856018500704955005900889972000900948992002500957992001600982057975744000037108820130319051805.0 a1622-1389 a(OCoLC)473896530 aissn16221389 a0000371088 a20010831a20009999u y0frey50 ba0 afre aFR ay  ar aaku uu 10aRapport...fCommission nationale pour l'élimination des mines antipersonnel aPariscla Documentation francaised2000- aNotice réd. d'après un vol. publ. en 2003 aAnnuel10aRapport... - Commission nationale pour l'élimination des mines antipersonnel aMines (explosifs militaires)xLutte contreyFrancexPériodiques2rameau aSecours aux victimes de guerrexPériodiques2rameau02aFrancebCommission nationale pour l'élimination des mines antipersonnel4070 0aFRbFNSP a074 uhttp://www.diplomatie.gouv.fr/fr/enjeux-internationaux/desarmement-maitrise-des-armements/mines-antipersonnel/instances-de-concertation-et-de/article/la-commission-nationale-pour-l1 b(1999) -(2006/2007)cParisdMagasins/AnnexeeP 8°6544 aZGRA aGEO RA4.06 France 01 aDEW 355-35900943cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200003300156210003300189326001100222606003800233606006900271710002900340801003000369801003000399802000700429856006000436955005300496972000900549991001800558992002500576992001600601040557588000071380120130319051805.01 a1282-1713 accn1282-1713 a0000713801 a19970804a19979999 0frey0103 ba0 afre aFR aak 10aRapport ... sur l'homophobie aPariscSOS homophobied1997- aAnnuel aHomosexuelsyFrancexPériodiques aDiscrimination à l'égard des homosexuelsyFrancexPériodiques02aSOS homophobiec(France) 3aFRbAbesc20020117gAFNOR 3aFRbAbesc20020117gAFNOR a074 uhttp://www.france.qrd.org/assocs/sos/index_rapports.php1 b(1999) -....cParisdMagasins/AnnexeeP 8° 6785 aZGRA aexempb201212 aGEO RA4.06 France 01 aDEW 305-30601134nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210006000189326001100249430005400260601004000314606003800354606003600392606004000428676001100468710002600479856003300505856005200538955006900590955005300659972000900712991001800721992002100739992001200760039256200000007176020130319051805.01 a0252-8312 aFNSP328487 a0000071760 a19900101a19779999 f ba0 afre aFR aaka 10aRapportfAmnesty International aPariscAmnesty international, Section françaised1977- aAnnuel 1aRapport annuel - Amnesty Internationalx0252-832002aAmnesty internationalxPériodiques aViolence policièrexPériodiques aDroits de l'hommexPériodiques aRépression politiquexPériodiques a341.4802aAmnesty international4 uhttp://www.amnesty.fr/presse4 zContenu : synthèse du dernier rapport en ligne1 bLes 3 dernières annéescParisd30, Salle 3e étageeDEW 341.481 b(1977) -....cParisdMagasins/AnnexeeP 8° 3735 aZCAD aexempb200912 aGEO RQ Universel aDEW 32301201nas0 2200337 450 00100100000000200110001000500170002101100140003803500170005203500150006910000410008410100080012510200070013310500180014010600060015811000160016420000680018021000230024843001120027151700670038360600360045060600360048671000690052280100300059180100230062180200070064485601160065195500550076799200250082299200160084711228678X000111384520130515113401.01 a1777-7917 aissn17777917 a0001113845 a20070202a20069999 0frey0103 ba0 afre aFR ay  ar aak 10aRapportfAutorité de contrôle des assurances et des mutuelles aPariscACAMd2006- 1tRapport/Commission de contrôle des assurances, des mutuelles et des institutions de prévoyancex1777-052110aAutorité de contrôle des assurances et des mutuelles Rapport aAssuranceyFrancexPériodiques aMutuellesyFrancexPériodiques02aAutorité de contrôle des assurances et des mutuellesc(France) 3aFRbAbesc20070202gAFNOR 3aFRbISSNc20070101 a074 uhttp://www.acp.banque-france.fr/publications/rapports-annuels.htmlzAccès libre au texte intégral depuis 20061 b(2005) -(2009)cParisdMagasins/AnnexeeP 4° 6330 aGEO RA4.06 France 01 aDEW 360-36300981nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210003500184326001100219430004700230517003200277517004200309601003500351606003500386606003600421710002100457856003300478856003600511955005300547972000900600992002200609992001200631040195899000013264320140106175336.01 a1250-5242 aFNSP538236 a0000132643 a19940719a19939999 ba0 afre aFR aaka 10aRapportfBanque de France aPariscBanque de Franced1993- aAnnuel 1aCompte rendu - Banque de Francex0242-589010aExercice - Banque de France10aRapport annuel de la banque de France02aBanque de FrancexPériodiques aFinancesyFrancexPériodiques aMarché financierxPériodiques02aBanque de France4 uhttp://www.banque-France.fr/ zAccès libre au texte intégral1 b(1993) -....cParisdMagasins/AnnexeeP 4° 5690 aZGRA aGEO RA4.06 France aDEW 33201227nas 2200337 i 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102110001600109200004200125210002600167300004700193326001100240517011900251517004300370601004700413606003700460607005200497710003300549856004300582856005500625955005500680955009500735972000900830992002400839992001400863992001200877039738973000006381020131018120122.0 aFNSP293032 a19900101b18512006 ba0 afre aBE aaka 10aRapportfBanque nationale de Belgique aBruxellescBNBd1851- aEn version électronique à partir de 2007 aAnnuel10aRapports sur les opérations de l'année ... présentés à l'Assemblée générale - Banque nationale de Belgique10aRapports -Banque nationale de Belgique02aBanque nationale de BelgiquexPériodiques aFinancesyBelgiquexPériodiques aBelgiquexConditions économiquesxPériodiques02aBanque nationale de Belgique4 uhttp://www.bnb.be/sg/F/Publ/p4111f.htm4 zContenu : texte intégral des rapports depuis 18511 b(1980) -(2006)cParisdMagasins/AnnexeeP 4° 54601 b(1877)-(1900) ; (1902) ; (1904)-(1908) ; (1910)-(1979)cParisdMagasins/AnnexeeCOL4°0050 aZGRA aGEO RA4.04 Belgique aDEW 330.9 aDEW 33200974nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000100001502100026002502300024002763260011003006010047003116060037003586070052003957100033004478010013004808560043004938560057005369550005005939920024005989920014006229920012006360001134322000113432220130319051805.0 a0001134322 a a19989999k fre 01 ba0 afre aBE ar aak z  adr 10aRapport - Banque nationale de Belgiqueb[Ressource électronique]fBanque nationale de Belgique aBruxellescBNBd1998- aRevue électronique aAnnuel02aBanque nationale de BelgiquexPériodiques aFinancesyBelgiquexPériodiques aBelgiquexConditions économiquesxPériodiques02aBanque nationale de Belgique 0aFRbFNSP4 uhttp://www.bnb.be/sg/F/Publ/p4111f.htm z: Contenu : texte intégral des rapports depuis 19981 r aGEO RA4.04 Belgique aDEW 330.9 aDEW 33201105nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003300139210004200172326001100214430006800225517005600293601004800349606005200397606003400449710003400483856015700517955005600674972000900730991001800739992002200757992001200779039819388000006869120131210162603.01 a0984-5585 aFNSP317192 a19900101b19852009 ba0 afre aFR aaka 10aRapportfCommission bancaire aPariscCommission bancaired1985-2009 aAnnuel 1aRapport annuel - Commission de contrôle des banquesx0984-563110aRapport de la Commission bancaire pour l'année ...02aCommission bancairec(France)xPériodiques aEtablissements de crédityFrancexPériodiques aBanquesyFrancexPériodiques aCommission bancairec(France)4 uhttp://www.acp.banque-france.fr/publications/publications-anterieures-a-mars-2010/rapports-annuels.htmlzAccés libre au texte intégral de 1994 à 20091 b(1984) -(2007)cParisdMagasins/AnnexeseP 4° 5495 aZGRA aexempb201312 aGEO RA4.06 France aDEW 33201346cas0 2200397 450 001001000000002001100010005001700021011001400038035002500052035001700077035001500094100004100109101000800150102000700158106000600165110001600171200010200187207001800289210002900307326001100336430007600347440007800423606003600501606003600537710010200573801003000675801002900705801002300734802000700757856004600764856004100810955004700851972000900898992002500907992001600932104392266000102041920130319051805.01 a1777-0521 aFRBNF400701750000006 aissn17770521 a0001020419 a20051115b20052005m y0frey0103 ba0 afre aFR ar azku uu 10aRapportfCommission de contrôle des assurances, des mutuelles et des institutions de prévoyance 0a(2004)-(2004) aPariscCCAMIPd2005-2005 aAnnuel 1tRapport d'activité - Commission de contrôle des assurancesx1249-4518 1tRapport/Autorité de contrôle des assurances et des mutuellesx1777-7917 aAssuranceyFrancexPériodiques aMutuellesyFrancexPériodiques02aCommission de contrôle des assurances, des mutuelles et des institutions de prévoyance (France) 3aFRbAbesc20060717gAFNOR 3aFRbBnFc20060327gAFNOR 3aFRbISSNc20060706 a074 uhttp://www.ccamip.fr/info/Publications/05 zContenu : texte intégral du rapport1 b(2004)cParisdMagasins/AnnexeeP 4° 6330 aZGRA aGEO RA4.06 France 01 aDEW 360-36300839nas 2200265 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000057001412100027001983260011002255170021002365170064002576060055003217100047003768560041004238560042004649550055005069920012005610000102811000010281120130319051805.0 aFNSP441952 a0000102811 a19900101a00019999 ba0 afre aIN aaka 10aRapport - Fonds des Nations Unies pour la population aNew YorkcFNUAPd0001- aAnnuel10aRapport du FNUAP10aRapport annuel - Fonds des Nations Unies pour la population aAssistance en matière de populationxPériodiques aFonds des Nations Unies pour la population4 uhttp://www.unfpa.org/swp/swpmain.htm zContenu : texte intégral depuis 19971 b(1988) -(1998)cParisdMagasins/AnnexeeP 4° 6284 aDEW 30401113nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008000154210004900234300009800283326001100381517004200392530004500434601004500479606004000524606004600564710003100610856005200641955005500693972000900748991001800757992001200775040241556000009347320130829120201.01 a1029-6921 aFNSP411954 a0000093473 a19900101b1990200? ba0 afre aFR aaka 10aRapportela liberté de la presse dans le mondefReporters sans frontières aPariscReporters sans frontièresd19XX-200? aA partir de 2002, le rapport d'activité est en ligne uniquement à rechercher par continent. aAnnuel10aReporters sans frontières rapport...10aRapport ... - Reporters sans frontières02aReporters sans frontièresxPériodiques aLiberté de la pressexPériodiques aJournalistesxCrimes contrexPériodiques02aReporters sans frontières4 uhttp://www.rsf.org/rubrique.php3?id_rubrique=231 b(1990) -(2003)cParisdMagasins/AnnexeeP 8° 5947 aZCAD aexempb201210 aDEW 32301401cas0 2200373 450 001001000000002001100010005001700021011001400038035002100052035001700073100004100090101000800131102000700139105001800146106000600164110001600170200002200186207001000208210004700218423002500265430007800290517012100368530006500489601006100554676000800615710005200623801003000675801002300705802000700728856016800735955005300903992001400956992005700970159259975000124289220130419100742.0 a1831-8460 a(OCoLC)800084120 aissn18318460 a20120315a20099999u f0frey50 ba0 afre aZZ ay  ar azka uu 10aRapport annuel .. 0a2009- aLuxembourgcOffice des publicationsd2010- 1tCuria ...x1831-5399 1tRapport annuel (Cour de justice des Communautés européennes)x1680-833910aAperçu des travaux de la Cour de justice, du Tribunal et du Tribunal de la fonction publique de l'Union européenne10aRapport annuel ...b(Cour de justice de l'Union européenne)02aUnion européennebCour de justicexPériodiques2rameau a34002aCommunautés européennesbCour de justice4340 3aFRbAbesc20120725gAFNOR 3aFRbISSNc20120315 a0a4 uhttp://bookshop.europa.eu/fr/search/Filter?SearchParameter=%26%40QueryTerm%3Drapport%2Bannuel%2Bde%2Bla%2Bcour%2Bde%2Bjustice%26Languages%3Dfr_FR&SelectedLanguage=1 b(2009 ) -...cParisdMagasins/AnnexeeP 4° 7189 aDEW 341.2 aGEO RA1.01 Communautés européennes, Pays de la CEE00881nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006000154210002700214326001100241430001900252601003700271606003300308710005300341856005400394856005000448955005500498992002200553992001600575040049388000016520120130319051805.0 a1240-7569 aFNSP630683 a0000165201 a19900101a19939999 ba0 afre aFR aaka 10aRapport annuel...fPoste, Direction de la communication aPariscLa Posted1993- aAnnuel 1aLa Poste en...02aLa Postec(France)xPériodiques aPostesyFrancexPériodiques02aLa Poste (France). Direction de la communication4 uhttp://www.laposte.fr/rubrique.php3?id_rubrique=9 zContenu : texte intégral du dernier rapport.1 b(1992) -(1998)cParisdMagasins/AnnexeeP 4° 6499 aGEO RA4.06 France aDEW 383-38901487nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008300154210004500237300007300282326001100355451004200366517008500408530003700493606003600530606006400566676000800630710007000638801002100708856016900729856005600898955006200954955005501016972000901071992002101080992001201101039244989000000349920130319051805.01 a0251-5458 aFNSP102992 a0000003499 a19900101a19479999 f ba0 afre aUS aaku 10aRapport annuel fBanque mondiale, Association internationale de développement aWashington, D.C.cBanque mondialed1947- a2006, dernière éd. papier, à partir de 2007 version électronique aAnnuel 1aAnnual report - World Bankx0252-294210aRapport annuel Banque internationale pour la reconstruction et le développement00aRapport annuel - Banque mondiale aPrêts étrangersxPériodiques aAide économiquexCoopération internationalexPériodiques a33702aBanque internationale pour la reconstruction et le développement 3aFRbCCN0251-54584 uhttp://web.worldbank.org/WBSITE/EXTERNAL/EXTABOUTUS/EXTANNREP/EXTANNREP2K8/0,,contentMDK:21915384menuPK:5405477pagePK:64168445piPK:64168309theSitePK:5164354,00.html zContenu : texte du rapport en français depuis 20051 b(1960/1961) -(1979)cParisdMagasins/AnnexeeCOL 4° 00621 b(1980) -(2006)cParisdMagasins/AnnexeeP 4° 5463 aZGRA aGEO RQ Universel aDEW 33700752nas 2200253 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000031001412100024001723260011001966010034002076060047002417120074002888560029003629550070003919920022004619920015004830000116771000011677120130319051806.0 aFNSP485444 a0000116771 a19900101a00019999 ba0 afre aFR aaka 10aRapport annuelf44pe SAGEM aPariscSAGEMd0001- aAnnuel02aSAGEMc(France)xPériodiques aSociétésxRapportsyFrancexPériodiques02aSociété d'applications générales d'électricité et de mécanique uhttp://www.sagem.com/fr/1 rConservation limitée aux 5 dernières années < Coll. 4° 1487 > aGEO RA4.06 France aDEW 338.0601164nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005600139210002200195300007200217326001100289430006800300530005700368606004600425606004500471710004000516856014000556955005500696972000900751991001800760992002500778992002100803992001400824048771961000025480620140117162606.01 a1299-0094 aFNSP889364 a19900101a19979999 ba0 afre aFR aaka 10aRapport annuelfAgence française de développement aPariscAFDd1997- a2006, dernière édition papier, à partir de 2007 version en ligne aAnnuel 1aRapport annuel - Caisse française de développementx1240-653810aRapport annuel - Agence française de développement aAide économique françaisexPériodiques aDéveloppement économiquexPériodiques02aAgence française de développement4 uhttp://www.afd.fr/home/publications/Publications-institutionnelles/rapports-annuelszContenu : texte intégral des rapports depuis 20021 b(1997) -(2006)cParisdMagasins/AnnexeeP 4° 6777 aZGRA aexempb201401 aGEO RA4.06 France 01 aGEO RQ Universel aDEW 338.901003nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000121001502100022002712300028002933260011003216060046003326060045003787100040004238010013004638300008004768560140004849550005006249920025006299920021006549920014006750001241189000124118920130521162906.0 a0001241189 a a20029999k fre 01 ba0 afre aFR ar aak z  adr 10aRapport annuel - Agence française de développementb[Ressource électronique]fAgence française de développement aPariscAFDd2002- aRessource électronique aAnnuel aAide économique françaisexPériodiques aDéveloppement économiquexPériodiques02aAgence française de développement 0aFRbFNSP acdj4 uhttp://www.afd.fr/home/publications/Publications-institutionnelles/rapports-annuelszAccès au texte intégral des rapports depuis 20021 r aGEO RA4.06 France 01 aGEO RQ Universel aDEW 338.901059nas 2200265 i 450 002001100000005001700011035001500028100004100043101000800084102000700092110001600099200011000115210002400225326001100249451005500260517007500315601006300390606003700453710004900490856011300539955005600652955006400708972000900772992001200781000004514320140116155125.0 aFNSP232778 a19900101a19589999 f ba0 afre aAT aaka 10aRapport annuel à l'Assemblée générale des Nations UniesfAgence internationale de l'énergie atomique aViennecAIEAd1958- aAnnuel 1aAnnual report - International Atomic Energy Agency10aRapport annuel du Conseil des gouverneurs à la Conférence générale02aAgence internationale de l'énergie atomiquexPériodiques aEnergie nucléairexPériodiques02aAgence internationale de l'énergie atomique uhttp://www.cea.fr/le-cea/publications/rapports-annuelszAccès libre au texte intégral de l'année en cours1 b(2001) -(2008);cParisdMagasins/annexeeP 4° 69861 b(1960/1961) -(2000)cParisdMagasins/annexeeCOL4°1817 bis aZGRA aDEW 33302302cas0 2200481 450 001001000000002001100010005001700021011001400038035001400052035002100066035001800087035001700105100004100122101000800163102000700171105001800178106000600196110001600202200017600218207001400394210009300408326001100501423002500512430011600537440007500653517013300728517022300861530006801084601006101152601007601213676000801289710005201297711004401349801003001393801002301423802000701446856016801453955005501621955005501676991001801731992001401749992005701763058836934000124289120130419100751.0 a1680-8339 a04532848X a(OCoLC)717828561 afrBN023702354 aissn16808339 a20010829b19912008k f0frey50 ba0 afre aZZ ay  ar azka uu 00aRapport annueleaperçu des travaux de la Cour de justice et du Tribunal de première instance des Communautés européennesfCour de justice des Communautés européennes 0a1993-2008 aLuxembourgcOffice des publications officielles des Communautés européennesd1993-2008 aAnnuel 1tCuria ...x1831-5399 1tAperçu des travaux de la Cour de justice des Communautés européennes ... et audiences solennellesx1015-034X 1tRapport annuel ... (Cour de justice de l'Union européenne)x1831-846010aRapport annuel ..., Aperçu des travaux de la Cour de justice et du Tribunal de première instance des Communautés européennes10aRapport annuel ..., Aperçu des travaux de la Cour de justice des Communautés européennes, du Tribunal de première instance des Communautés européennes et du Tribunal de la fonction publique de l'Union européenne10aRapport annuelb(Cour de justice des Communautés européennes)02aUnion européennebCour de justicexPériodiques2rameau02aUnion européennebTribunal de première instancexPériodiques2rameau a34002aCommunautés européennesbCour de justice407002aUnion européennebCour de justice4070 3aFRbAbesc20120726gAFNOR 3aFRbISSNc20120315 a0a4 uhttp://bookshop.europa.eu/fr/search/Filter?SearchParameter=%26%40QueryTerm%3Drapport%2Bannuel%2Bde%2Bla%2Bcour%2Bde%2Bjustice%26Languages%3Dfr_FR&SelectedLanguage=1 b(2002) -(2008)cParisdMagasins/AnnexeeP 4° 71891 b(1991) -(2001)cParisdMagasins/AnnexeeP 8° 4396 aexempb201304 aDEW 341.2 aGEO RA1.01 Communautés européennes, Pays de la CEE01186cas0 2200361 450 001001000000002001100010005001700021011001400038020001700052035004000069035001500109100004100124101000800165102000700173105001800180106000600198110001600204200005400220207001200274210003900286326001100325606004400336606005500380606007200435710004600507801003000553801003800583856010500621955005200726972000900778992002500787992001200812150408013000120722520131002143452.01 a2112-7891 aFRb11100228 aFRBNF423538360000004zFRBNF42353836 a0001207225 a20110301a20109999m h0frey50 ba0 afre aFR ay 0  ar aakazz 0zx000aRapport annuelfAutorité de contrôle prudentiel 0a(2009)- aPariscACP Banque de Franced2010- aAnnuel aMarché financieryFrancexPériodiques aBanquesxContrôle de l'EtatyFrancexPériodiques aCompagnies d'assurancesxContrôle de l'ÉtatyFrancexPériodiques02aAutorité de contrôle prudentielcFrance 3aFRbAbesc20110302gAFNOR 0aFRbFR-751131015c20110119gAFNOR4 uhttp://www.acpr.banque-france.fr/publications/rapports-annuels.htmlzAccès libre au texte intégral1 b(2009-....)cParisdMagasins/AnnexeeP 4° 7297 aZGRA aGEO RA4.06 France 01 aDEW 33201263cas0 2200361 450 001001000000002001100010005001700021011001400038035001400052035001700066100004100083101000800124102000700132110001600139200005400155210005200209326001100261430009400272517005800366530002600424606004400450710004600494801003000540801002300570802000700593856008400600856003700684856008200721955005500803972000900858992002200867992001200889081760396000098489920131029103008.01 a1768-093X a079572863 aissn1768093X a20030523a20049999 0fre 0103 ba0 afre aFR azk 10aRapport annuelfAutorité des marchés financiers aPariscAutorité des marchés financiersd2004- aAnnuel 1tRapport au Président de la République - Commission des opérations de boursex0533-074210aRapport annuel de l'Autorité des marchés financiers10aRapport annuelb(AMF) aMarché financieryFrancexPériodiques02aFrancebAutorité des marchés financiers 3aFRbAbesc20050405gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.amf-france.org/affiche_plan.asp?IdSec=6&IdRub=12&IdPlan=136&Id_Tab=04 zAccès libre au texte intégral.4 uhttp://www.ladocumentationfrancaise.fr/rapports-publics/084000336/index.shtml1 b(2003) -(2007)cParisdMagasins/AnnexeeP 4° 6624 aZPAY aGEO RA4.06 France aDEW 33200841nas 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000026001502100023001763200011001994300061002106010033002716060047003047120019003518010013003708560044003839550066004279720009004939920022005029920015005240000341139000034113920130319051806.0 a0000341139 a a19999999k fre ba0 afre aFR a 0  ar aa z 0 10aRapport annuel - Azeo aPariscAzeod1999- aAnnuel 1tRapport annuel - Financière et industrielle Gaz et Eaux02aAzeoc(France)xPériodiques aSociétésxRapportsyFrancexPériodiques02aAzeoc(France) 0aFRbFNSP4 uhttp://www.gaz-et-eaux.com/default2.htm1 bno. 1 (1999)-no. 2 (1999)cParisdMagasins/AnnexeeP 4° 5402 aZGRA aGEO RA4.06 France aDEW 332.0600986nas 2200301 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000080001412100027002213260011002486010077002596060050003366060050003867100063004368560042004998560036005419550053005779720009006309920019006399920012006589920014006700000063201000006320120130319051806.0 aFNSP289697 a0000063201 a19900101a19769999 ba0 afre aSD aaka 10aRapport annuel - Banque arabe pour le développement économique en Afrique aKhartoumcBADEAd1976- aAnnuel02aBanque arabe pour le développement économique en AfriquexPériodiques aInvestissements arabesyAfriquexPériodiques aAide économique arabeyAfriquexPériodiques02aBanque arabe pour le développement économique en Afrique uhttp://www.bdeac.org/docrapannuel.php4 zAccès libre au texte intégral1 b(1975) -....cParisdMagasins/AnnexeeP 4° 3923 aZGRA aGEO RE Afrique aDEW 332 aDEW 338.900949nas 2200277 i 450 002001100000005001700011035001500028100004100043101000800084102000700092110001600099200005000115210005500165300004700220326001100267601004800278606003900326607006500365710003400430856009100464955005500555972000900610992002600619992001400645992001200659000020711920131023162613.0 aFNSP751510 a19900101a00019999 ba0 afre aMG aaka 10aRapport annuelfBanque centrale de Madagascar aAntananarivocBanque centrale de Madagascard0001- aEn version électronique à partir de 2005 aAnnuel02aBanque centrale de MadagascarxPériodiques aFinancesyMadagascarxPériodiques aMadagascarxConditions économiquesz1960-....xPériodiques02aBanque centrale de Madagascar4 uhttp://www.banque-centrale.mg/index.php?id=m6_4zAccès au texte intégral depuis 19981 b(1993) -(2004)cParisdMagasins/AnnexeeP 4° 6639 aZGRA aGEO RF4.02 Madagascar aDEW 330.9 aDEW 33200993nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000109001502100055002592300024003143260011003386010048003496060039003976070065004367100034005018010013005358560052005488560053006009920026006539920012006790001135271000113527120130319051806.0 a0001135271 a a19989999k fre 01 ba0 afre aMG ar aak z  adr 10aRapport annuel - Banque centrale de Madagascarb[Ressource électronique]fBanque centrale de Madagascar aAntananarivocBanque centrale de Madagascard1998- aRevue électronique aAnnuel02aBanque centrale de MadagascarxPériodiques aFinancesyMadagascarxPériodiques aMadagascarxConditions économiquesz1960-....xPériodiques02aBanque centrale de Madagascar 0aFRbFNSP4 uhttp://www.banque-centrale.mg/index.php?id=m6_4 zContenu : texte intégral du rapport depuis 1998 aGEO RF4.02 Madagascar aDEW 33201009nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000109001502100053002592300024003123260011003366010048003476060039003956070054004347100034004888010013005228560064005358560053005999550005006529920026006579920012006830001137275000113727520130319051806.0 a0001137275 a a20059999k fre 01 ba0 afre aMR ar aak z  adr 10aRapport annuel - Banque centrale de Mauritanieb[Ressource électronique]fBanque centrale de Mauritanie aNouakchottcBanque centrale de Mauritanied2005- aRevue électronique aAnnuel02aBanque centrale de MauritaniexPériodiques aFinancesyMauritaniexPériodiques aMauritaniexConditions économiquesxPériodiques02aBanque centrale de Mauritanie 0aFRbFNSP4 uhttp://www.bcm.mr/bcm/fr/index1.php?numrub=31&categ=rapport zContenu : texte intégral du rapport depuis 20051 r aGEO RF1.21 Mauritanie aDEW 33200910nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000103001502100047002532300024003003260011003246010045003356060036003807100031004168010013004478560059004608560049005199550005005689920023005739920012005960001135058000113505820130319051806.0 a0001135058 a a20069999k fre 01 ba0 afre aTN ar aak z  adr 10aRapport annuel - Banque centrale de Tunisieb[Ressource électronique]fBanque centrale de Tunisie aTunis::cBanque centrale de Tunisied2006- aRevue électronique aAnnuel02aBanque centrale de TunisiexPériodiques aFinancesyTunisiexPériodiques02aBanque centrale de Tunisie 0aFRbFNSP4 uhttp://www.bct.gov.tn/bct/siteprod/francais/index1.jsp zContenu : texte intégral du dernier rapport1 r aGEO RG1.14 Tunisie aDEW 33200983nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000109001502100053002592300024003123260011003366010048003476060051003956060039004467100034004858010013005198560041005328560053005739550005006269920026006319920012006570001137278000113727820130905103547.0 a0001137278 a a19989999k fre 01 ba0 afre aLU ar aak z  adr 10aRapport annuel - Banque centrale du Luxembourgb[Ressource électronique]fBanque centrale du Luxembourg aLuxembourgcBanque centrale du Luxembourgd1998- aRevue électronique aAnnuel02aBanque centrale du Luxembourgxpériodiques aPolitique monétaireyLuxembourgxPériodiques aFinancesyLuxembourgxPériodiques02aBanque centrale du Luxembourg 0aFRbFNSP4 uhttp://www.bcl.lu/html/fr/index.html zContenu : texte intégral du rapport depuis 19981 r aGEO RA4.05 Luxembourg aDEW 33201099nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004800139210006200187326001100249517002900260517005300289530004900342601004600391606006800437676001200505710003200517856010300549955005500652972000900707992005700716992001200773045022720000027148320140110144423.01 a1561-4581 aFNSP937461 a19990429a19999999 ba0 afre aDE aaka 10aRapport annuelfBanque centrale européenne aFrancfort sur le MaincBanque centrale européenned1999- aAnnuel10aRapport annuel de la BCE10aRapport annuel de la Banque Centrale Européenne01aRapport annuel - Banque centrale européenne02aBanque centrale européennexPériodiques aPolitique monétaireyPays de l'Union européennexPériodiques a332.49402aBanque centrale européenne4 uhttp://www.ecb.int/pub/annual/html/index.en.htmlzAccès au texte intégral du rapport depuis 19921 b(1998) -(2009)cParisdMagasins/AnnexeeP 4° 6815 aZGRA aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 33200993nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000105001502100062002552300024003173260011003416010046003526060068003987100032004668010013004988560053005118560053005649550005006179920057006229920012006790001212599000121259920130319051805.0 a0001212599 a a19999999k fre 01 ba0 afre aDE ar aak z  adr 10aRapport annuel - Banque centrale européenneb[Ressource électronique]fBanque centrale européenne aFrancfort sur le MaincBanque centrale européenned1999- aRevue électronique aAnnuel02aBanque centrale européennexPériodiques aPolitique monétaireyPays de l'Union européennexPériodiques02aBanque centrale européenne 0aFRbFNSP4 uhttp://www.ecb.int/pub/annual/html/index.en.html4 zContenu : texte intégral du rapport depuis 19981 r aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 33201230nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005400139210006000193300004700253326001100300452008300311530006500394606003500459607005000494710003700544801002100581830005300602856006900655955008100724972000900805991001800814992002200832992001400854992001200868039291758000010107820131009120107.01 a0257-4357 aFNSP435467 a19900101a00019999 ba0 afre aHT aaku 10aRapport annuelfBanque de la République d'Haïti aPort-au-PrincecBanque de la République d'Haitid0001- aEn version électronique à partir de 2005 aAnnuel 1tRapport annuel - Banque de la République d'Hai͏̈ti (En ligne)‎x1683-302310aRapport annuel - Banque de la République d'HaïtibImprimé aFinancesyHaïtixPériodiques aHaïtixConditions économiquesxPériodiques02aBanque de la République d'Haiti 3aFRbCCN0257-4357 a1985-1997 : collection encoyée au CTles en 20134 uhttp://www.brh.net/zAccès libre au texte intégral depuis 19981 b(1985/1986) -(1992/1993) ; (1996)-(1997)cParisdMagasins/AnnexeeP 4° 5318 aZGRA aexempb201307 aGEO RD3.03 Haïti aDEW 330.9 aDEW 33200916nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000115001502100060002652300024003253260011003496060035003606070050003957100037004458010013004828560024004958560054005199550005005739920022005789920014006000001132901000113290120130319051806.0 a0001132901 a a19989999k fre 01 ba0 afre aHT ar aak z  adr 10aRapport annuel - Banque de la République d'Haitib[Ressource électronique]fBanque de la République d'Haiti aPort-au-PrincecBanque de la République d'Haitid1998- aRevue électronique aAnnuel aFinancesyHaïtixPériodiques aHaïtixConditions économiquesxPériodiques02aBanque de la République d'Haiti 0aFRbFNSP4 uhttp://www.brh.net/ zContenu : textye intégral du rapport depuis 19981 r aGEO RD3.03 Haïti aDEW 330.901201nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005800154210005600212326001100268451006700279601005600346606004300402676000800445710004200453856006800495955006500563955005800628955006500686957007700751972000900828992001400837992001200851038668041000000390320130422115430.01 a1021-2493 aFNSP104338 a0000003903 a19900126a19319999 f ba0 afre aCH aaka 10aRapport annuelfBanque des règlements internationaux aBâlecBanque des règlements internationauxd1931- aAnnuel 1aAnnual report - Bank for International Settlements,x1021-247702aBanque des règlements internationauxxPériodiques aFinances internationalesxPériodiques a33202aBanque des règlements internationaux4 uhttp://www.bis.orgzAccès libre au texte intégral depuis 19311 bLa dernière annéecParisdSalle du 27, 1er étageeDEW 3321 b(1980/1981) -....cParisdMagasins/AnnexeeP 4° 54461 b(1930/1931) -(1979/1980)cParisdMagasins/AnnexeeCOL4°00091 b(1930/31-1949/50), (1950/51-1954/55)cParisdMagasins/AnnexeeCOL4°0009 aZGRA aDEW 341.2 aDEW 33200994nas 2200301 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000083001412100024002243260011002486010081002596060052003406060053003927100067004458560025005128560036005379550052005739720009006259920032006349920012006669920014006780000159847000015984720130319051806.0 aFNSP616732 a0000159847 a19900101a00019999 ba0 aeng aGB aaka 10aRapport annuelfBanque européenne pour la reconstruction et le développement aLondoncBERDd0001- aAnnuel02aBanque européenne pour la reconstruction et le développementxPériodiques aAide économiqueyEurope de l'EstxPériodiques aPrêts étrangersyEurope de l'EstxPériodiques aBanque européenne pour la reconstruction et le développement4 uhttp://www.ebrd.com/ zAccès libre au texte intégral1 b(1993) -...cParisdMagasins/AnnexeeP 4° 6470 aZGRA aGEO RA2.02 Europe orientale aDEW 332 aDEW 338.901447nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006200139210007100201300007300272326001100345452007400356530006300430601006000493606006400553606005400617606005300671676001000724710004600734856012300780955005500903955006400958972000901022992002801031992001401059992001201073039263274000006349620130717094636.01 a0253-603X aFNSP292361 a19900101a19609999 ba0 afre aUS aaka 10aRapport annuelfBanque interaméricaine de développement aWashington, D.C.cBanque interaméricaine de développementd1960- a2007, dernière éd.papier, à partir de 2008, version électronique aAnnuel 1tAnnual report (Inter-American Development Bank. Online)‎x1811-220X10aRapport annuel - Banque interaméricaine de développement02aBanque interaméricaine de développementxPériodiques aAide économiquexCoopération internationalexPériodiques aPrêts étrangersyAmérique latinexPériodiques aAide économiqueyAmérique latinexPériodiques a338.902aBanque interaméricaine de développement4 uhttp://www.iadb.org/fr/a-propos-de-la-bid/rapports-annuels,6293.htmlzContenu : texte intégral du rapport depuis 20001 b(1999) -(2007)cParisdMagasins/AnnexeeP 4° 70011 b(1963) ; (1965) -(1998)cParisdMagasins/AnnexeeCOL4°2790 aZGRA aGEO RD Amérique latine aDEW 338.9 aDEW 33201116nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000081001502100045002312300024002763260011003006010084003116060036003956060064004317100070004958010013005658560147005788560056007259920021007819920012008020001204274000120427420130319051806.0 a0001204274 a a20059999k fre 01 ba0 afre aUS ar aak z  adr 10aRapport annuel - Banque mondialeb[Ressource électronique]fBanque mondiale aWashington, D.C.cBanque mondialed2005- aRevue électronique aAnnuel02aBanque internationale pour la reconstruction et le développementxPériodiques aPrêts étrangersxPériodiques aAide économiquexCoopération internationalexPériodiques02aBanque internationale pour la reconstruction et le développement 0aFRbFNSP4 uhttp://web.worldbank.org/WBSITE/EXTERNAL/ACCUEILEXTN/EXTABTUSFRENCH/0,,contentMDK:20146554pagePK:64094163piPK:64094165theSitePK:328614,00.html4 zContenu : texte du rapport en français depuis 2005 aGEO RQ Universel aDEW 33700923nas 2200277 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000044001412100041001853260011002266010051002376100046002887120027003348300097003618560054004589550087005129720009005999920022006089920015006300000064283000006428320130319051806.0 aFNSP294667 a0000064283 a19900101a00019999 ba0 afre aXX aaka 10aRapport annuel - Banque Scalbert Dupont aLillecBanque Scalbert Dupontd0001- aAnnuel02aBanque Scalbert Dupontc(France)xPériodiques0 a* BanquesxRapportsyFrancexPériodiques02aBanque Scalbert Dupont aToute la collection a été transférée au CTLes en mars 2004 (temporairement indisponible)4 uhttp://www.scalbertdupont.com/interact/index7.htm1 bConservation limitée aux 5 dernières annéescParisdMagasins/AnnexeeP 4° 4139 aZGRA aGEO RA4.06 France aDEW 332.0601075nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005800163207001000221210005600231326001100287517005900298606004500357606008100402710005000483801001300533856009200546955006100638972000900699992002500708992001600733120576848000060866920130319051806.01 a1760-933X a0000608669 a a20039999 fre 01 ba0 afre aFR a 0  ar aak z 0 10aRapport annuelfCommission nationale du débat public 1a2003- aPariscCommission nationale du débat publicd2003- aAnnuel10aRapport annuel - Commission nationale du débat public aDémocratie localeyFrancexPériodiques aAménagement du territoirexParticipation des citoyensyFrancexPériodiques01aFrancebCommission nationale du débat public 0aFRbFNSP4 uhttp://www.debatpublic.fr/cndp/rapports_activites.htmlzAccès libre au texte intégral1 b(2003) -(2008/2009)cParisdMagasins/AnnexeseP 4° 7027 aZGRA aGEO RA4.06 France 01 aDEW 350-35401316nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000074001552100023002293000128002523260011003805170117003915300074005086060051005827120057006338560081006909550052007719550062008239550062008859720009009479920018009569920016009740000071839000007183920130319051806.01 a1013-3836 aFNSP328645 a0000071839 a19900101a19559999 f ba0 afre aFR aaka 10aRapport annuel - Conférence européenne des ministres des transports aPariscOCDEd1955- aContient : Activité de la conférence et Résolutions du Conseil des ministres des transports et rapports approuvés en... aAnnuel10aActivités de la Conférence, résolutions du Conseil des ministres des transports et rapports approuvés en ...00aRapport annuel - Conférence européenne des ministres des transports aPolitique des transportsyEuropexPériodiques02aConférence européenne des ministres des transports4 uhttp://www1.oecd.org/cem/pub/pubannfr.htm#Activités%20de%20la%20Conférence1 b(1976) -...cParisdMagasins/AnnexeeP 4° 52301 b(1969)-(1975)cParisdMagasins/AnnexeeDoc. OCDE 4° 01441 b(1955)-(1968)cParisdMagasins/AnnexeeDoc. OECE 8° 0251 aZPAY aGEO RA Europe aDEW 383-38901341nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005600154207002500210210002200235300007200257300006800329326001100397430009400408517002500502517003200527517006500559601006200624606003800686676000800724710004800732856004500780856005300825955005500878992002200933992001200955039883566000000680620130319051806.0 a0999-0585 aFNSP111110 a0000006806 a19900419a1990 ba0 afre aFR aaka 10aRapport annuelfConseil supérieur de l'audiovisuel 1a1989 publié en 1990 aPariscCSAd1990- aPublication annuelle en 2 volumes ; le deuxième constitue l'index. a2008, dernière éd. papier. A partir de 2009, version en ligne aAnnuel 1aRapport annuel de la Commission nationale de la communication et des libertésx0984-572010aRapport annuel - CSA10aRapport d'activité...- CSA10aRapport d'activité... - Conseil supérieur de l'audiovisuel02aFrancebConseil supérieur de l'audiovisuelxPériodiques aAudiovisuelyFrancexPériodiques a07002aFrancebConseil supérieur de l'audiovisuel4 uhttp://www.csa.fr/Etudes-et-publications4 zContenu : texte intégral du rapport depuis 20091 b(1990) -(2008)cParisdMagasins/AnnexeeP 4° 5267 aGEO RA4.06 France aDEW 07000917nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000121001502100022002712300028002933260011003216010062003326060038003947100048004328010013004808560095004939550005005889920022005939920012006150001240678000124067820130521101004.0 a0001240678 a a20009999k fre 01 ba0 afre aFR ar aak z  adr 10aRapport annuel - Conseil supérieur de l'audiovisuelb[Ressource électronique]fConseil supérieur de l'audiovisuel aPariscCSAd2000- aRessource électronique aAnnuel02aFrancebConseil supérieur de l'audiovisuelxPériodiques aAudiovisuelyFrancexPériodiques02aFrancebConseil supérieur de l'audiovisuel 0aFRbFNSP4 uhttp://www.csa.fr/Etudes-et-publicationszAccès au texte intégral du rapport depuis 20091 r aGEO RA4.06 France aDEW 07001303nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200004800160210007900208300007600287326001100363510005100374517019300425606004200618710003200660856008500692955005500777955005500832955005500887992001400942992002100956036232300000004460220130319051806.01 a1021-2671 aFNSP230595 a0000044602 a19900101b19001999 f ba0 amul aNL ar aaka 10aRapport annuelfCour permanente d'arbitrage aLa HayecBureau international de la Cour permanente d'arbitraged1900-1999 aLe rapport est seulement diffusé sur internet à partir du n°99, 1999 aAnnuel10aAnnual report - Permanent Court of Arbitration10aRapport du conseil administratif de la Cour Permanente d'Arbitrage sur les travaux de la Cour, sur le fonctionnement des services administratifs et sur les dépenses pendant l'exercice ... aArbitrage internationalxPériodiques02aCour permanente d'arbitrage uhttp://www.pca-cpa.org/showpage.asp?pag_id=1120zAccès aux rapports depuis 19991 b(1990) -(1998)cParisdMagasins/AnnexeeP 4° 60551 b(1980) -(1990)cParisdMagasins/AnnexeeP 4° 56911 b(1901) -(1979)cParisdMagasins/AnnexeeCOL.F.0011 aDEW 341.2 aGEO RQ Universel01013nas 2200289 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000050001412100022001913260011002134300070002246010047002946100064003417120033004058300097004388560055005359550087005909720009006779920022006869920015007080000083024000008302420130319051806.0 aFNSP370463 a0000083024 a19900101a19179999 ba0 afre aFR aaka 10aRapport annuel - Crédit commercial de France aPariscCCFd1917- aAnnuel 1aRapport du conseil d'administration - Banque suisse et française02aCrédit commercial de FrancexPériodiques0 a* Etablissements de créditxRapportsyFrancexPériodiques02aCrédit commercial de France aToute la collection a été transférée au CTLes en mars 2004 (temporairement indisponible)4 uhttp://www.cob.fr/TxtInt/Rpdf/1999/1999-018500.pdf1 bConservation limitée aux 5 dernières annéescParisdMagasins/AnnexeeP 4° 5593 aZGRA aGEO RA4.06 France aDEW 332.0601031nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000027001552100024001823260011002064360114002176010024003316100075003557120034004308300097004648560067005619550052006289720009006809920025006899920015007140000221314000022131420130319051806.01 a1372-7400 aFNSP794858 a0000221314 a19900101a19979999 ba0 afre aFR aaka 10aRapport annuel - Dexia aPariscDexiad1997- aAnnuel 1aRapport d'activité - Crédit local de France

et de Rapport annuel - Crédit communal de Belgique02aDexiaxPériodiques0 a* Etablissements de créditxRapportsyEurope de l'OuestxPériodiques02aDexia-Crédit local de France aToute la collection a été transférée au CTLes en mars 2004 (temporairement indisponible) uhttp://www.dexia.com/francais/pdf_2000/rapport_99/Voletafr.pdf1 b(1996) -...cParisdMagasins/AnnexeeP 4° 3872 aZGRA aGEO RA4.06 France 01 aDEW 332.0600840nas 2200277 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000031001412100028001723260011002006010028002116060047002397120014002868300097003008560070003979550052004679720009005199920022005289920012005500000155386000015538620130319051806.0 aFNSP605987 a0000155386 a19900101a00019999 ba0 afre aFR aaka 10aRapport annuel - Framatome aPariscFramatomed0001- aAnnuel02aFramatomexPériodiques aSociétésxRapportsyFrancexPériodiques02aFramatome aToute la collection a été transférée au CTLes en mars 2004 (temporairement indisponible)4 uhttp://www.framatome.com/framatome.nsf/internet/GroupeChiffres_VF1 b(1993) -...cParisdMagasins/AnnexeeP 4° 6455 aZGRA aGEO RA4.06 France aDEW 33300932nas 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000068001502100046002183260011002646060046002756060044003217100059003658010013004248560029004378560064004669550054005309720009005849920025005939920012006180000502197000050219720130319051806.0 a0000502197 a a20019999k fre ba0 amul aFR a 0  ar aak z 0 10aRapport annuel - Haut Conseil de la coopération internationale aPariscLa Documentation françaised2001- aannuel aCoopération internationalexPériodiques aRelations internationalesxPériodiques aFrancebHaut Conseil de la coopération internationale 0aFRbFNSP4 uhttp://www.hcci.gouv.fr/4 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml1 b(2000)-(2006)cParisdMagasins/AnnexeeP 4° 7050 aZPAY aGEO RA4.06 France 01 aDEW 32701194cas0 2200325 450 001001000000002001100010005001700021011001400038035001400052035001700066100004100083101000800124102000700132105001800139106000600157110001600163200009200179210004300271606002100314606005500335710008400390801003000474801002300504802000700527856013500534856010300669955005500772992002500827992001600852112388760000111384620130920111154.0 a1957-5912 a116878371 aissn19575912 a20070207a20069999u y0frey0103 ba0 afre aFR ay  ar azku uu 00aRapport annuelfHaute autorité de lutte contre les discriminations et pour l'égalité aPariscDocumentation françaised2006- aEgalitéyFrance aDiscriminationxLutte contreyFrancexPériodiques01aFrancebHaute autorité de lutte contre les discriminations et pour l'égalité 3aFRbAbesc20071004gAFNOR 3aFRbISSNc20070808 a074 uhttp://www.halde.fr/-Publications-.htmlzAccès libre au texte intégralzAccès libre au texte intégral des 2 dernières années4 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtmlzAccés au texte intégral depuis 20051 b(2005) -(2006)cParisdMagasins/AnnexeeP 4° 7191 aGEO RA4.06 France 01 aDEW 305-30601091nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200006400160210002300224326001100247430006800258601007000326607004400396676000800440710005600448801002100504856006400525955005700589955006000646972000900706992002200715992001600737039921255000000807520130319051806.01 a1154-3515 aFNSP113904 a0000008075 a19900101a19669999 ba0 afre aFR ar aaku 10aRapport annuelfInspection générale des affaires sociales aPariscIGASd1966- aAnnuel 1aRapport annuel - Inspection générale de la Sécurité sociale02aFrancebInspection générale des affaires socialesxPériodiques aFrancexPolitique socialexPériodiques a360 aFrancebInspection générale des affaires sociales 3aFRbCCN0204/58694 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml1 b(1966) -(1979)cParisdMagasins/AnnexeeCOL4 ° 23841 b(1980) -(2007/2008)cParisdMagasins/AnnexeeP 4° 6481 aZGRA aGEO RA4.06 France aDEW 360-36301427nas 2200373 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200005300148210002300201326001100224430007000235530005400305607006500359607006000424607006300484607005100547607006700598710004700665801001300712856007000725955007200795955005500867972000900922992003500931992006200966992002501028073591653000067968720140102142334.02 a1635-2262 a a19909999 fre 01 ba0 afre aFR a 0  ar aak z 0 10aRapport annuelfInstitut d'émission d'Outre-mer aPariscIEOMd1990- aAnnuel 1tRapport d'activité - Institut d'émission d'Outre-merx0073-824710aRapport annuel - Institut d'émission d'Outre-mer aPolynésie françaisexConditions économiquesxPériodiques aWallis et FutunaxConditions économiquesxPériodiques aNouvelle-CalédoniexConditions économiquesxPériodiques aMayottexConditions économiquesxPériodiques aFrancexDépartements et territoires d'outre-merxPériodiques02aInstitut d'émission d'Outre-merc(France) 0aFRbFNSP4 uhttp://www.iedom.fr/zAccès libre au texte intégral depuis 20051 b(1998) -(1999) ; (2001) -(2012)cParisdMagasins/AnnexeeP 4° 70431 b(1990) -(1997)cParisdMagasins/AnnexeeCOL4°3369 aZGRA aGEO RJ Océanie, Pacifique Sud aGEO RJ7 Autres régions de l'Océanie et du Pacifique Sud aGEO RA4.06 France 0101299nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200007100139210002400210326001100234430008800245530007200333607004300405607002700448607002900475607002500504607008100529607002900610710006500639856007000704955005500774955004700829972000900876992002200885992001600907992001400923076231429000008618720140102141133.01 a1632-420X aFNSP382137 a19900101a20019999 ba0 afre aFR aaka 10aRapport annuelfInstitut d'émission des départements d'Outre-mer aPariscIEDOMd2001- aAnnuel 1tRapport d'activité - Institut d'émission des départements d'Outre-merx0534-071310aRapport annuel - Institut d'émission des départements d'Outre-mer aSaint-Pierre-et-MiquelonxPériodiques aRéunionxPériodiques aGuadeloupexPériodiques aGuyanexPériodiques aFrancexDépartements et territoires d'outre-merxStatistiquesxPériodiques aMartiniquexPériodiques02aInstitut d'émission des départements d'Outre-merc(France)4 uhttp://www.iedom.fr/zAccès libre au texte intégral depuis 20051 b(2002) -(2012)cParisdMagasins/AnnexeeP 4° 69881 b(2001)cParisdMagasins/AnnexeeCOL4°2192 aZGRA aGEO RA4.06 France aDEW 310-319 aDEW 330.900913nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000052001552100022002073260011002295300052002406010049002926060049003417120035003908560041004259550047004669550055005139720009005689920022005779920012005990000094926000009492620130319051806.01 a0073-8379 aFNSP415392 a0000094926 a19900101a19549999 ba0 afre aFR aaka 10aRapport annuel - Institut français du pétrole aPariscIFPd1954- aAnnuel00aRapport annuel - Institut français du pétrole02aInstitut français du pétrolexPériodiques aPétrolexExploitationyFrancexPériodiques02aInstitut français du pétrole uhttp://www.ifp.fr/INTF/IN531GF1.html1 b(2002)cParisdMagasins/AnnexeeP 4° 70131 b(1969) -(2001)cParisdMagasins/AnnexeeCOL4°3286 aZGRA aGEO RA4.06 France aDEW 33301014nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000057001552100023002123260011002354360092002466010052003386060047003907120038004378300097004758560042005729550052006149720009006669920022006759920015006970000090814000009081420130319051806.01 a1292-3737 aFNSP400318 a0000090814 a19900101a19879999 ba0 afre aFR aaka 10aRapport annuel - LVMH - Moët Hennessy Louis Vuitton aPariscLVMHd1987- aAnnuel 1aAssemblée générale - Moët-Hennessy < Coll. 4°3453 > et de Exercice - Louis Vuitton02aLVMH Moët-Hennessy Louis VuittonxPériodiques aSociétésxRapportsyFrancexPériodiques02aLVMH Moët-Hennessy Louis Vuitton aToute la collection a été transférée au CTLes en mars 2004 (temporairement indisponible)4 uhttp://www.lvmh.fr/comfi/l2k0001f.htm1 b(1987) -...cParisdMagasins/AnnexeeP 4° 5359 aZGRA aGEO RA4.06 France aDEW 338.0601327nas 2200349 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000053001502100050002033260011002534400115002646060053003796060053004326060055004857100046005408010013005868560080005998560059006798560071007388560059008099550059008689720009009279920025009369920016009610000448753000044875320130319051806.0 a0000448753 a b20012006k fre ba0 afre aFR a 0  ar aak z 0 10aRapport annuel - Observatoire de l'emploi public aPariscLa Documentation françaised2001-2006 aAnnuel 1tRapport annuel sur l'état de la fonction publique. Gestion prévisionnelle des ressources humainesx1960-2677 aFonction publiquexEmploisyFrancexPériodiques aFonctionnairesxEvaluationyFrancexPériodiques aFonctionnairesyFrancexStatistiquesyPériodiques02aObservatoire de l'emploi publicc(France) 0aFRbFNSP uhttp://www.fonction-publique.gouv.fr/fp/observatoire/observatoire_index.htm zContenu : texte intégral du rapport à partir de 20004 uhttp://www.ladocumentationfrancaise.fr/rapports/presentation.shtml zContenu : texte intégral du rapport à partir de 20001 b(2001)-(2004/2005)cParisdMagasins/AnnexeeP 4° 6911 aZCAD aGEO RA4.06 France 01 aDEW 350-35401207nas 2200289 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000119001412100087002603260011003474400129003586060062004876060073005497100110006228560045007328560036007779550054008139720009008679920025008769920016009010000210093000021009320130319051806.0 aFNSP760582 a0000210093 a19900101a19962007 ba0 afre aFR aaka 10aRapport annuel - Observatoire national de la sécurité des établissements scolaires et d'enseignement supérieur aPariscObservatoire national de la sécurité des établissements scolairesd1996- aAnnuel 1tRapport annuel - Observatoire national de la sécurité et de l'accessibilité des établissements d'enseignementx1969-7589 aConstructions scolairesxProtectionyFrancexPériodiques aEcolesyFrancexIncendies et prévention des incendiesxPériodiques02aFrancebObservatoire national de la sécurité des établissements scolaires et d'enseignement supérieur4 uhttp://ons.education.gouv.fr/publica.htm4 zAccès libre au texte intégral1 b(1996)-(2007)cParisdMagasins/AnnexeeP 4° 6664 aZGRA aGEO RA4.06 France 01 aDEW 370-37901537cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200013400180210011500314430013000429530012000559606006200679606007300741710012000814801003000934801002300964802000700987856009000994955005301084972000901137992002501146992001601171133135764000118826920130521172842.0 a1969-7589 aissn19697589 a0001188269 a20090427a20089999k y0frey0103 ba0 afre aFR ay  ar azku uu 10aRapport annuel - Observatoire national de la sécurité et de l'accessibilité des établissements d'enseignementbTexte imprimé aPariscObservatoire national de la sécurité et de l'accessibilité des établissements d'enseignementd2008- 1tRapport annuel - Observatoire national de la sécurité des établissements scolaires et d'enseignement supérieurx1772-157100aRapport annuel‎bObservatoire national de la sécurité et de l'accessibilité des établissements d'enseignement aConstructions scolairesxProtectionyFrancexPériodiques aEcolesyFrancexIncendies et prévention des incendiesxPériodiques02aFrancebObservatoire national de la sécurité et de l'accessibilité des établissements d'enseignement supérieur 3aFRbAbesc20090610gAFNOR 3aFRbISSNc20090602 a074 uhttp://ons.education.gouv.fr/publica.htmzAccès libre au texte intégral depuis 19961 b(2008) -....cParisdMagasins/AnnexeeP 4° 6664 aZGRA aGEO RA4.06 France 01 aDEW 370-37901464nas0 2200409 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109110001600127200010400143207001000247210004300257225003400300301004300334326001100377410004500388606006700433606003600500676001100536710007400547711005400621711004400675801003000719801003300749830000700782856005400789856004900843955006700892955005300959972000901012992002101021992001201042094150966000051810220130319051806.0 a0000518102 a20051209a20029999k y0frey0103 ba0 afre aFR a 0  aak 0 010aRapport annuelfObservatoire pour la protection des défenseurs des droits de l'homme, FIDH et OMCT 0a2002- aLa Tour d'AiguescEd. de l'Aubed2002-00aMonde en cours.iSérie Essai aDemande de numérotation ISSN en cours aAnnuel 1tMonde en cours. Série Essaisx1630-5612 aDéfenseurs des droits de l'hommexCrimes contrexPériodiques aDroits de l'hommexPériodiques a341.4802aObservatoire pour la protection des défenseurs des droits de l'homme02aFédération internationale des droits de l'homme02aOrganisation mondiale contre la torture 3aFRbAbesc20051209gAFNOR 3aFRbElectrec20030331gAFNOR adm4 uhttp://www.fidh.org/rubrique.php3?id_rubrique=336 zContenu : texte intégral du dernier rapport1 bLa dernière annéecParisdSalle des périodiqueseDEW 341.481 b(2002) -....cParisdMagasins/AnnexedP 8° 6859 aZPAY aGEO RQ Universel aDEW 32301401nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005400154210002500208300011400233326001100347436010700358436003100465488005300496517005800549530005600607601005200663606004400715606004100759676001300800710003800813856002300851856003600874955005600910992001200966992001600978992002100994040182401000020702020130319051806.0 a1020-5004 aFNSP751315 a0000207020 a19900101a1996 f ba0 afre aCH aaka 10aRapport annuelfOrganisation mondiale du commerce aLausannecOMCd1996- aEn 2 vol. de 1996 à 1999 ; le 2ème vol. s'intitule "Statistiques du commerce international" en 1998 et 1999 aAnnuel 1tLe Commerce international en ... (Accord général sur les tarifs douaniers et le commerce)x0414-8061 1tGATT activitésx0251-060X 11atStatistiques du commerce internationald2000-10aRapport annuel de l'Organisation mondiale du commerce10aRapport annuelb(Organisation mondiale du commerce)02aOrganisation mondiale du commercexPériodiques aStatistiques commercialesxPériodiques aCommerce internationalxPériodiques a382v22a02aOrganisation mondiale du commerce uhttp://www.wto.org zAccès libre au texte intégral1 b(1996) -(1999)cParisdMagasons/Annexe,eP 4° 6733 aDEW 337 aDEW 310-319 aGEO RQ Universel00943nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000048001552100026002033260011002294300056002405170049002966010045003456060032003906060047004227120031004698560048005009550031005489720009005799920025005889920016006130000276433000027643320130319051806.01 a1263-3445 aFNSP949716 a0000276433 a19990629a19979999 ba0 afre aFR aaka 10aRapport annuel - Port autonome de Marseille aMarseillecPAMd1997- aAnnuel 1aActivités - Port autonome de Marseillex(0758-649310aAnnual report - Port of Marseilles Authority02aPort autonome de MarseillexPériodiques aPortsyFrancexPériodiques aSociétésxRapportsyFrancexPériodiques02aPort autonome de Marseille uhttp://www.marseille-port.fr/site/index.htm1 r1996---> < Coll. 4°2905 > aZGRA aGEO RA4.06 France 01 aDEW 383-38900779nas 2200277 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000030001412100032001713260011002034300054002146010041002686060051003097120026003608560034003869550031004209720009004519920026004609920015004860000237967000023796720130319051806.0 aFNSP840465 a0000237967 a19900101a19979999 ba0 afre aLU aaka 10aRapport annuel - Quilvest aLuxembourgcQuilvestd1997- aAnnuel 1aExercice - Entreprises Quilmès < Coll. 4°1843 >02aQuilmèsc(Luxembourg)xPériodiques aSociétésxRapportsyLuxembourgxPériodiques02aQuilvest (Luxembourg) uhttp://www.quilvest.com/3.htm1 r1996---> < Coll. 4°1843 > aZGRA aGEO RA4.05 Luxembourg aDEW 338.0600846nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002900139210002200168326001100190530003000201601005700231606004700288710004800335712003000383856004500413955005500458972000900513992002200522992001200544039444309000010913920131217121552.01 a0291-9494 aFNSP461523 a19900101a19809999 ba0 afre aFR aaka 10aRapport d'activitéfTF1 aPariscTF1d1980- aAnnuel10aRapport d'activité - TF102aSociété de télévision française 1xPériodiques aSociétésxRapportsyFrancexPériodiques02aSociété de télévision française 1407002aTélévision française 14 uhttp://www.tf1.fr/groupe/index_infos.htm1 b(1992) -(2001)cParisdMagasins/AnnexeeP 4° 6309 aZGRA aGEO RA4.06 France aDEW 07001092nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000089001502100071002392300024003103260011003346010060003456060064004056060053004697100046005228010013005688560073005818560053006549550005007079920028007129920014007409920012007540001204278000120427820130319051806.0 a0001204278 a a20009999k fre 01 ba0 afre aUS ar aak z  adr 10aRapport annuelb[Ressource électronique]fBanque interaméricaine de développement aWashington, D.C.cBanque interaméricaine de développementd2000- aRevue électronique aAnnuel02aBanque interaméricaine de développementxPériodiques aAide économiquexCoopération internationalexPériodiques aAide économiqueyAmérique latinexPériodiques02aBanque interaméricaine de développement 0aFRbFNSP4 uhttp://www.iadb.org/fr/a-propos-de-la-bid/rapports-annuels,6293.html4 zContenu : texte intégral du rapport depuis 20001 r aGEO RD Amérique latine aDEW 338.9 aDEW 33201346nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200009000139207001800229210003900247300010100286326001100387517005600398517009600454517002700550517002500577606005200602676000800654710006300662711005300725856011400778955005400892991001600946992002200962992001200984053567765000016540820140114161734.0 a1153-2785 aFNSP631534 a19900101a19842009 ba0 afre aFR aa a 10aRapport annuel au Conseil national du créditfComité des établissements de crédit 1a(1984)-(2009) aPariscBanque de Franced1985-2010 ales 3 premiers rapports ont été publiés dans le Rapport annuel du Conseil national du crédit aAnnuel10aRapport annuel au Conseil national du crédit - CEC10aRapport annuel - Comité des établissements de crédit et des entreprises d'investissement10aRapport annuel - CECEI10aRapport annuel - CEC aEtablissements de crédityFrancexPériodiques a33202aBanque de France. Direction des établissements de crédit02aComité des établissements de créditc(France)4 uhttp://www.banque-france.fr/fr/publications/publications.htmzAccès libre au texte intégral de 1994 à 20091 b(1988) -(2008)cParisdMagasins/AnnexeeP 4° 6506 aexemp201401 aGEO RA4.06 France aDEW 33200940nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000065001552100059002203260011002796060041002906060043003317100053003748560088004278560036005159550053005519720009006049920025006139920012006380000194598000019459820130319051806.01 a1257-2640 aFNSP715807 a0000194598 a19900101a19909999 ba0 afre aFR aaka 10aRapport annuel de l'Inspection générale des bibliothèques aPariscInspection générale des bibliothèquesd1990- aAnnuel aBibliothèquesyFrancexPériodiques aBibliothécairesyFrancexPériodiques02aFrancebInspection générale des bibliothèques uhttp://www.enseignementsup-recherche.gouv.fr/cid21652/les-rapports-g-2000-2011.html zAccès libre au texte intégral1 b(1995) -....cParisdMagasins/AnnexeeP 4° 6615 aZGRA aGEO RA4.06 France 01 aDEW 02001080nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000033001552100025001883260011002134410132002245170089003566060045004456060028004907100107005188010021006258560054006469550055007009720009007559920014007640000102308000010230820130319051806.01 a0258-8145 aFNSP439204 a0000102308 a19900101a19859999 f ba0 afre aAT aaku 10aRapport annuel de l'ONUDI... aViennecONUDId1985- aAnnuel 1tRapport annuel de l'ONUDI. Rapport sur l'exécution du programme. Statistiques opérationnelles et autres appendicesx1020-766X10aRapport annuel de l'Organisation des Nations Unies pour le développement industriel aDéveloppement économiquexPériodiques aIndustriexPériodiques02aOrganisation des Nations Unies pour le développement industrielbConseil du développement industriel 3aFRbCCN0258-81454 uhttp://www.unido.org/doc/38944?language%5fcode=fr1 b(1985) -(2005)cParisdMagasins/AnnexeeP 4° 5857 aZGRA aDEW 338.401421nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200013600139207001000275210007000285300016800355326001100523488006500534510006800599607005400667710005100721801004100772856007300813955006400886955005600950972000901006991001801015992003401033992001601067040613429000009335020140102104608.01 a2024-9950 aFNSP411681 a19900101a1928 ba0 afre aFR aaka 10aRapport annuel de la Commission centrale pour la navigation du Rhind= Jahresbericht der Zentralkommission für die Rheinschiffahrt 1a1926- aStrasbourgcCommission centrale pour la navigation du Rhind1926- aaA partir de 1998, publie la 1ère partie du rapport annuel en avant-parution du rapport complet, sous le titre : "Evolution économique de la navigation rhénane" aAnnuel 11aEvolution économique de la navigation rhénanex1811-275710aJahresbericht der Zentralkommission für die Rheinschiffahrt... aRhin (cours d'eau)xRégularisationxPériodiques02aCommission centrale pour la navigation du Rhin 0aFRbAbesc20110623gAFNORh124304222 uhttp://www.ccr-zkr.org/zAccès libre au texte intégral depuis 19971 b(1980) -(1990) ; (1997)cParisdMagasins/AnnexeeP 4° 57001 b(1951) -(1979)cParisdMagasins/AnnexeeCOL.F°0121 aZGRA aexempb201312 aGEO RA2.01 Europe occidentale aDEW 383-38901297nas 2200349 i 450 001001000000002001100010005001700021011000600038035001500044100004100059101000800100102000700108105001800115106000600133110001600139200006800155207001600223210006400239326001100303430007000314447010400384601005900488606004400547710004500591801001300636856013500649856006200784955005500846972000900901992002500910992001200935090052684000100317220130524145729.01 ac a0001003172 a b20012007 fre 01 ba0 afre aFR a 0  ar aak z 0 10aRapport annuel de performancefDirection générale des impôts 1a(2001)-2007 aPariscMinistère de l'économie et des financesd2001-2007 aAnnuel 1tRapport d'activité - Direction générale des impôtsx1249-5220 1tRapport annuel de performance...(Paris)x1961-4756 pour former : Rapport annuel...(DGFIP)x210-544502aFrancebDirection générale des impôtsxPériodiques aPolitique fiscaleyFrancexPériodiques02aFrancebDirection générale des impôts 0aFRbFNSP4 uhttp://www.impots.gouv.fr/portal/dgi/public/quisommesnous;jsessionid=F5UHRPJ3DRQHDQFIEMPSFFWAVARXAIV1?pageId=quisommesnous&sfid=024 zContenu : texte intégral du rapport depuis l'année 20031 b(2001) -(2007)cParisdMagasins/AnnexeeP 4° 6537 aZGRA aGEO RA4.06 France 01 aDEW 33601454cas0 2200361 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147106000600154110001600160200018400176210004600360436007500406436010300481606005000584606004800634606003600682710006000718711009900778801003000877801002300907802000700930856006400937955005701001972000901058992002501067084560223000089778720130319051806.01 a1772-8363 a090068645 aissn17728363 a0000897787 a20050311a20059999 y0frey0103 ba0 afre aFR ar aaku uu 10aRapport annuel des Inspections généralesfInspection générale de l'éducation nationale, Inspection générale de l'administration de l'éducation nationale et de la recherche aPariscLa documentation françaised2005- 1tRapport de l'Inspection générale de l'Education nationalex1263-0950 1tRapport général - Inspection générale de l'administration de l'éducation nationalex1249-4828 aAdministration scolaireyFrancexPériodiques aInspection du travailyFrancexPériodiques aEducationyFrancexPériodiques01aFrancebInspection générale de l'éducation nationale01aFrancebInspection générale de l'administration de l'éducation nationale et de la recherche 3aFRbAbesc20050909gAFNOR 3aFRbISSNc20050901 a074 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml1 b(2004) -(2007)cParisdMagasins/Annexes:eP 8° 6548 aZPAY aGEO RA4.06 France 0101055cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200010800156210002700264326001100291606003500302606003100337710005600368801003000424801002300454802000700477856009700484856005400581955005200635972000900687992002100696992001200717068804369000071180020130319051806.01 a1373-0045 aissn13730045 a0000711800 a20020530a19979999 0fre 0103 ba0 afre aBE aak 10aRapport annuel des violations des droits syndicauxfConfédération internationale des syndicats libres aBruxellescCISLd1997- aAnnuel aSyndicatsxDroitxPériodiques aSyndicalismexPériodiques02aConfédération internationale des syndicats libres 3aFRbAbesc20041018gAFNOR 3aFRbISSNc20020530 a0m4 uhttp://www.icftu.org/list.asp?Type=Publication&Order=Date&Language=FR&STEXT=rapport%20annuel zContenu : texte intégral du rapport depuis 1996.1 a(2004) -...cParisdMagasins/AnnexeeP 4° 7051 aZPAY aGEO RQ Universel aDEW 33101100nas 2200313 i 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109106000600127110001600133200013600149207003200285210004300317326001100360601005900371606003600430710005900466801001300525856005700538856007900595955007100674972000900745992001800754992001400772161486223000044558420130319051806.0 a0000445584 a a20019999k f fre ba0 afre aFR a 0  ar aak z 0 10aRapport annuel du Commissaire aux droits de l'hommeeau Comité des Ministres et à l'Assemblée parlementairefConseil de l'Europe 1a15 oct. 1999/1er avr. 2001- aStrasbourgcConseil de l'Europed2001- aAnnuel02aConseil de l'EuropebCommissaire aux droits de l'homme aDroits de l'hommexPériodiques02aConseil de l'EuropebCommissaire aux droits de l'homme 0aFRbFNSP4 uhttp://www.coe.int/t/commissioner/WCD/Search_fr.asp#4 zAccés au texte intégral en français et en anglais depuis le 1er rapport1 bno 1 (1999/2001) ; no 3 (2002)cParisdMagasins/AnnexeeP 4° 7055 aZCAD aGEO RA EUROPE aDEW 341.201232nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200011700154210002700271326001100298430008700309454008700396601004900483676000800532710003500540856005300575856003600628955006000664955006700724955005900791972000900850992002100859992001400880039239055000001134220140116115930.01 a0250-7501 aFNSP124530 a0000011342 a19900806a19789999 f ba0 afre aUS aaka 10aRapport annuel du Conseil d'administration pour l'exercice financier clos le ...fFonds monétaire international aWashingtoncFMId1978- aAnnuel 1aRapport annuel des administrateurs... - Fonds monétaire internationalex0252-3000 1aAnnual report of the Executive Board... - International Monetary Fundx(0250-7528)02aFonds monétaire internationalxPériodiques a33202aFonds monétaire international4 uhttp://www.imf.org/external/pubs/ft/ar/index.htm zAccès libre au texte intégral1 b(1987) -(2009);cParisdMagasins/AnnexeeP 4° 5439 bis1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3321 b(1978) -(1986)cParisdMagasins/AnnexeeCOL4°2421 bis aZGRA aGEO RQ Universel aDEW 341.201124nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007000154210003700224210005100261225005000312326001100362517006900373606006000442710006000502856006400562856004700626955006000673972000900733991001800742992002200760992001600782053567803000014934820130319051806.01 a1249-5603 aFNSP585372 a0000149348 a19950210a19949999 ba0 afre aFR aaka 10aRapport annuel du Service central de prévention de la corruption aPariscJournaux officielsd1994- aPariscDirection des journaux officielsd1994-21aJournal officiel de la République française aAnnuel10aRapport annuel - Service central de prévention de la corruption aCorruption politiquexPréventionyFrancexPériodiques02aFrancebService central de prévention de la corruption4 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml4 zAccés au texte intégral depuis 1998-19991 b(1993/1994) -(2006)cParisdMagasins/AnnexeeP 8° 6107 aZPAY aexempb201211 aGEO RA4.06 France aDEW 364-36501458nas0 2200373 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118105001800125106000600143110001600149200007400165210004600239423011900285423010400404430004800508517008400556606004400640606005000684710008100734801003000815801002300845802000700868856005700875856003600932955005900968992002501027992001601052992001601068121356892000113089920131028141926.0 a1960-2669 aissn19602669 a20080208a20079999u y0frey0103 ba0 afre aFR ay  ar azku uu 10aRapport annuel sur l'état de la fonction publiqueiFaits et chiffres aPariscLa Documentation françaised2007- 1tRapport annuel sur l'état de la fonction publique. Gestion prévisionnelle des ressources humaines ...x1960-2677 1tRapport annuel sur l'état de la fonction publique. Rapport d'activité ministériel ...x1960-2685 1tRapport annuel Fonction publiquex1779-064610aRapport annuel sur l'état de la fonction publique. Volume 1, Faits et chiffres aFonction publiqueyFrancexPériodiques aFonction publiquexStatistiquesxPériodiques02aFrancebMinistère du budget, des comptes publics et de la fonction publique 3aFRbAbesc20080208gAFNOR 3aFRbISSNc20080208 a074 uhttp://www.fonction-publique.gouv.fr/statistiques-104 zAccès libre au texte intégral1 b(2006) -(2007)cParisdMagasins/AnnexeeP 8° 4603(01) aGEO RA4.06 France 01 aDEW 350-354 aDEW 310-31901510nas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200010400180210004600284423008900330423010400419430006400523517011800587606004400705606005000749710008100799801003000880801002300910802000700933856008200940955005701022992001601079992001601095992002501111121356906000113090020130319051806.0 a1960-2677 aissn19602677 a0001130900 a20080208a20079999u y0frey0103 ba0 afre aFR ay  ar azku uu 10aRapport annuel sur l'état de la fonction publiqueiGestion prévisionnelle des ressources humaines aPariscLa Documentation françaised2007- 1tRapport annuel sur l'état de la fonction publique. Faits et chiffres ...x1960-2669 1tRapport annuel sur l'état de la fonction publique. Rapport d'activité ministériel ...x1960-2685 1tRapport annuel - Observatoire de l'emploi publicx1631-820X10aRapport annuel sur l'état de la fonction publique. Volume 2, Gestion prévisionnelle des ressources humaines ... aFonction publiqueyFrancexPériodiques aFonction publiquexStatistiquesxPériodiques02aFrancebMinistère du budget, des comptes publics et de la fonction publique 3aFRbAbesc20080208gAFNOR 3aFRbISSNc20080208 a074 uhttp://www.ladocumentationfrancaise.fr/rapports-publics/074000491/index.shtml1 b(2006-2007)cParisdMagasins/AnnexeeP 8° 4603 (02) aDEW 350-354 aDEW 310-319 aGEO RA4.06 FRANCE 0101438cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118105001800125106000600143110001600149200008900165210004600254423008900300423011900389430004800508517010300556606004400659710008100703801003000784801002300814802000700837856008200844856003600926955005700962992001601019992001601035992002501051121356914000113090120131029094911.01 a1960-2685 aissn19602685 a20080208a20079999uuuy0frey0103 ba0 afre aFR ay  ar azku uu 10aRapport annuel sur l'état de la fonction publiqueiRapport d'activité ministériel aPariscLa Documentation françaised2007- 1tRapport annuel sur l'état de la fonction publique. Faits et chiffres ...x1960-2669 1tRapport annuel sur l'état de la fonction publique. Gestion prévisionnelle des ressources humaines ...x1960-2677 1tRapport d'activité ministérielx1763-638810aRapport annuel sur l'état de la fonction publique. Volume 3, Rapport d'activité ministériel ... aFonction publiqueyFrancexPériodiques02aFrancebMinistère du budget, des comptes publics et de la fonction publique 3aFRbAbesc20080213gAFNOR 3aFRbISSNc20080208 a074 uhttp://www.ladocumentationfrancaise.fr/rapports-publics/074000492/index.shtml4 zAccès libre au texte intégral1 b(2006-2007)cParisdMagasins/AnnexeeP 8° 4603 (03) aDEW 350-354 aDEW 310-319 aGEO RA4.06 France 0100881nas 2200241 i 450 002001100000005001700011035001500028100004100043101000800084102000700092110001600099200004800115210004300163326001100206517010300217606004000320710006300360856011900423955005400542972000900596992001800605992001600623000026369120130522151010.0 aFNSP915433 a19990111a19989999 ba0 afre aFR aaka 10aRapport annuel sur les activités de l'ECRI aStrasbourgcConseil de l'Europed1998- aAnnuel10aRapport annuel sur les activités de la Commission européenne contre le racisme et l'intolérance aRacismexLutte contrexPériodiques02aCommission européenne contre le racisme et l'intolérance uhttp://www.coe.int/t/dghl/monitoring/ecri/library/publications_fr.aspzAccés libre au texte intégral depuis 19971 b(1997) -(2003)cParisdMagasins/AnnexeeP 4° 679 aZGRA aGEO RA Europe aDEW 305-30600932nas 2200289 i 450 001001000000002001100010005001700021011001400038035000500052100004100057101000800098102000700106105001800113106000600131110001600137200004500153210008900198326001100287606006500298712003100363801001300394856009800407955005900505972000900564992005700573992001200630058837450000037366820130604155326.01 a1680-9750 a a a20009999k fre ba0 afre aFR a 0  ar aa z 0 10aRapport annuel sur les droits de l'homme aLuxembourgcOffice des publications officielles des Communautés européennesd2000- aAnnuel aDroits de l'hommeyPays de l'Union européennexPériodiques02aUnion européennebConseil 0aFRbFNSP4 uhttp://bookshop.europa.eu/eGetRecordszAccès libre au texte intégral à partir de 1998/19991 b(1998/1999)-(2001)cParisdMagasins/AnnexeeP 4° 6873 aZPAY aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 32301173nas 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000169001502100024003193260011003436060062003546060058004166070033004747100067005078010013005748560083005878560040006709550047007109720009007579920051007669920014008179920016008310000598545000059854520130319051806.0 a0000598545 a a20009999 fre 01 ba0 afre aFR a 0  ar aak z 0 10aRapport annuel sur les Principes directeurs de l'OCDE à l'intention des entreprises multinationalesfOrganisation de coopération et de développement économiques aPariscOCDEd2000?- aAnnuel aEntreprises multinationalesyPays de l'OCDExPériodiques aCorruptionxPréventionyPays de l'OCDExPériodiques aPays de l'OCDExPériodiques02aOrganisation de coopération et de développement économiques 0aFRbFNSP4 uhttp://www.oecd.org/document/13/0,2340,fr_2649_201185_20592525_1_1_1_1,00.html zContenu : résumé du rapport 2003.1 b(2003)cParisdMagasins/AnnexeeP 8° 6727 aZPAY aGEO RN1 Pays industrialisés, pays occidentaux aDEW 338.9 aDEW 364-36501043cas0 2200301 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200009700156210009500253606003900348710003800387801003000425801002300455802000700478856009500485856005500580955005600635972000900691992002500700992001600725059135891000100045920130319051806.01 a1629-4297 aissn16294297 a0001000459 a20011008a20019999k y0frey0103 ba0 afre aFR aauu uu 10aRapport au Parlement sur les exportations d'armement de la FrancefMinistère de la défense a[Paris]cDICOD, Délégation à l'information et à la communication de la Défensed2001- aArmesxVenteyFrancexPériodiques02aFrancebMinistère de la défense 3aFRbAbesc20060711gAFNOR 3aFRbISSNc20011008 a074 uhttp://www.defense.gouv.fr/defense/enjeux_defense/defense_au_parlement/rapports_d_activite zContenu : texte intégral des rapports depuis 19981 b(2000) -( 2006)cParisdMagasins/AnnexeeP 4° 7139 aZGRA aGEO RA4.06 France 01 aDEW 355-35900952nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000124001502100095002742300028003693260011003976060039004087100038004478010013004858300008004988560127005069920025006339920016006580001240692000124069220131202135454.0 a0001240692 a a 9999k fre 01 ba0 afre aFR ar aak z  adr 10aRapport au Parlement sur les exportations d'armement de la Franceb[Ressource électronique]fMinistère de la défense a[Paris]cDICOD, Délégation à l'information et à la communication de la Défensed2001- aRessource électronique aAnnuel aArmesxVenteyFrancexPériodiques02aFrancebMinistère de la défense 0aFRbFNSP acdj4 uhttp://www.defense.gouv.fr/portail-defense/mediatheque/publicationszAccès au texte intégral du dernier rapport en ligne aGEO RA4.06 France 01 aDEW 355-35901329cas0 2200337 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012311000160014120001280015721000460028530300450033153001180037660600250049460600470051971000290056671100950059580100300069085600340072085600530075485600640080795500720087197200090094399200250095299200140097709366513X000096982520130319051806.01 a1951-9044 a0000969825 a20051205a20059999 y0frey0103 ba0 afre aFR a 0  azku 0uu 00aRapport au Premier ministrefMission interministérielle de vigilance et de lutte contre les dérives sectaires (MIVILUDES) aPariscLa Documentation françaised2003- aNotice réd. d'après le rapport de 200310aRapport au Premier ministreb(Mission interministérielle de vigilance et de lutte contre les dérives sectaires) aSectesxPériodiques aSectesxLutte contreyFrancexPériodiques02aFrancebPremier ministre01aFrancebMission interministérielle de vigilance et de lutte contre les dérives sectaires 3aFRbAbesc20051209gAFNOR4 uhttp://www.miviludes.gouv.fr/ zContenu : texte intégral du rapport depuis 20054 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml1 b(2003) -(2007)cParisdMagasins/AnnexeeP 8° 6889wManquant : 2004 aZGRA aGEO RA4.06 France 01 aDEW 20-2900850nas 2200277 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000066001552100041002213260016002626060044002787100032003228560064003549550057004189550054004759720009005299920022005389920012005600000005120000000512020130319051806.0 a0097-4768 aFNSP107345 a0000005120 a19900307b19722005 ba0 afre aFR aaka 10aRapport au Président de la République - Conseil des impôts aPariscJournaux officielsd1972-2005 aIrrégulier aPolitique fiscaleyFrancexPériodiques02aFrancebConseil des impôts4 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml1 b(1980) -(2005)cParis :dMagasins/AnnexeeP 4° 54391 b(1972)-(1979)cParisdMagasins/AnnexeeCOL4°3938 aZGRA aGEO RA4.06 France aDEW 33601266nas 2200349 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000116001502100046002663260011003125170068003236010066003916060057004576060050005147120066005648010013006308560024006438560037006678560071007048560037007759550054008129720009008669920025008759920016009000000454175000045417520130319051806.0 a0000454175 a a20029999k fre ba0 afre aFR a 0  ar aak z 0 10aRapport au Président de la République et au Parlement - Commission nationale de déontologie de la sécurité aPariscLa Documentation françaised2002- aAnnuel10aRapport - Commission nationale de déontologie de la sécurité02aFrancebCommission nationale de déontologie de la sécurité aServices privés de sécuritéyFrancexPériodiques aPoliciersxDéontologieyFrancexPériodiques02aFrancebCommission nationale de déontologie de la sécurité 0aFRbFNSP uhttp://www.cnds.fr/ zAccès libre au texte intégral. uhttp://www.ladocumentationfrancaise.fr/rapports/presentation.shtml zAccès libre au texte intégral.1 b(2001)-(2006)cParisdMagasins/AnnexeeP 8° 6619 aZCAD aGEO RA4.06 France 01 aDEW 350-35400977nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123200009000141210004100231326001100272517005100283606003700334710004100371801001300412856010900425955005500534955005500589972000900644992002200653992001200675039300676000000404520130522154106.01 a0182-7502 aFNSP104564 a19900131b1974 fre 0 afre aFR ay z b 10aRapport au Président de la République et au ParlementfMédiateur de la République aPariscJournaux officielsd1974-2010 aAnnuel10aRapport annuel du Médiateur de la République aMédiateuryFrancexPériodiques aFrancebMédiateur de la République 0aFRbFNSP4 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtmlzAccès libre au texte intégral depuis 19991 b(1998) -(2008)cParisdMagasins/AnnexeeP 4° 68111 b(1988) -(1997)cParisdMagasins/AnnexeeP 8° 3396 aZCAD aGEO RA4.06 France aDEW 34202098nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200010200154210003700256225006600293300034900359300006600708423012700774430011100901512003801012517004901050517012701099601004301226607007701269676000801346710002901354856006101383955006701444955005601511955005701567972000901624991002101633992002201654992001201676036063320000000404620140117150009.01 a0242-5939 aFNSP104565 a0000004046 a19900131a19399999 ba0 afre aFR aaka 10aRapport au Président de la République suivi des réponses des administrationsfCour des comptes aPariscJournaux officielsd1939-20aJournal officiel de la République françaisexISSN 0767-4538 aA partir de 2001, publié en deux parties : " Les Observations des juridictions financières" et "Rapport d'activité", ou "Rapport d'activité des juridictions financières", ou "Les Suites données aux observations des juridictions financières". A partir de 2007, ajout du 3e volume intitutlé "Cour de discipline budgétaire et financière" a2009, dernière éd. papier voir ensuite en version en ligne. 11aRapport présenté au Président de la République par le Président de la Cour de discipline budgétaire et financière 1aRapport au roi et déclaration générale de la Cour des comptes sur les comptes de l'année...x1263-171X10aRapport public - Cour des comptes10aRapport public annuel de la Cour des comptes10aRapport au Président de la République suivi des réponses des administrations, collectivités, organismes et entreprises01aFrancebCour des comptesxPériodiques aFrancexAdministrationxCrédits budgétaires et dépensesxPériodiques a33601aFrancebCour des comptes4 uhttp://www.ccomptes.fr/zAccès libre au texte intégral1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3361 b(1980) -.(2009)cParisdMagasins/AnnexeeP 4° 56951 b(1940) -(1979)cParisdMagasins/AnnexeeCOL.F° 0055 aZGRA aPériobTP01 Fol aGEO RA4.06 France aDEW 33601015nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200011600154210003700270326001100307606005400318606005400372710008800426856004300514856003700557955005400594972000900648991001800657992002200675992001600697040403637000011761520130319051806.01 a1263-0918 aFNSP487989 a0000117615 a19940208a19939999 ba0 afre aFR aaka 10aRapport d'activité....f[CNCCFP = Commission nationale des comptes de campagne et des financements politiques] aPariscJournaux officielsd1993- aAnnuel aPartis politiquesyFrancexFinancesxPériodiques aCaisses électoralesxDroityFrancexPériodiques01aFrancebCommission nationale des comptes de campagne et des financements politiques uhttp://www.cnccfp.fr/index.php?art=6994 zAccès libre au texte intégral.1 b(1992)-(2006)cParisdMagasins/AnnexeeP 8° 6020 aZCAD aexempb201210 aGEO RA4.06 France aDEW 324.6-901243nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200011900154210005200273326001100325517014100336606006400477606004400541710007300585856009700658856003600755955007000791972000900861991001800870992002500888992001600913040513440000022064220130319051806.00 a1276-3632 aFNSP791950 a0000220642 a19900101b1997200. ba0 afre aFR aaka 10aRapport d'activité...erapport au Premier ministrefCommission de déontologie de la fonction publique de l'État aPariscLa Documentation françaised1997-[200.] aAnnuel10aAccès des agents publics au secteur privé : rapport au Premier ministre - Commission de déontologie de la fonction publique de l'Etat aFonctionnairesxEmploi dans le privéyFrancexPériodiques aFonction publiqueyFrancexPériodiques02aFrancebCommission de déontologie de la fonction publique de l'Etat4 uhttp://www.fonction-publique.gouv.fr/fonction-publique/carriere-et-parcours-professionnel-164 zAccès libre au texte intégral1 bno 1 (1995/1996) -no 9 (2003)cParisdMagasins/AnnexeeP 8° 6426 aZCAD aexempb201212 aGEO RA4.06 France 01 aDEW 350-35400973nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000076001552100023002313000072002543260011003264300098003376060052004357100055004878560043005429550055005859720009006409920012006499920022006610000061005000006100520130319051806.0 a1297-3750 aFNSP279385 a0000061005 a19900101a19849999 ba0 afre aFR aaka 10aRapport d'activitéfAssociation française des sociétés financières aPariscAFSFd1984- a2008, dernière édition papier, à partir de 2009 version en ligne aAnnuel 1aAssemblée générale - Association professionnelle des établissements financiersx1279-3752 aEtablissements de crédityFrancexPériodiques02aAssociation française des sociétés financières uhttp://www.asf-france.com/default.aspx1 b(1984) -(2008)cParisdMagasins/AnnexeeP 4° 3346 aZGRA aDEW 332 aGEO RA4.06 France00891nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000103001502070010002532100023002632300028002863260011003146060052003257100055003778010013004328560117004459550005005629920012005679920022005790001240870000124087020130521102505.0 a0001240870 a a19959999k fre 01 ba0 afre aFR ar aak z  adr 10aRapport d'activitéfAssociation française des sociétés financièresb[Ressource électronique] 1a1995- aPariscAFSFd1995- aRessource électronique aAnnuel aEtablissements de crédityFrancexPériodiques02aAssociation française des sociétés financières 0aFRbFNSP4 uhttp://www.asf-france.com/publications-asf/Pages/Rapports.aspxzAccès au texte intégral du rapport depuis 19951 r aDEW 332 aGEO RA4.06 France01297nas 2200349 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000076001552100024002313000047002553260011003024300083003135300076003966010068004726060048005406070063005887120054006518560026007058560053007319550055007849550055008399720009008949920032009039920012009350000063372000006337220130319051806.01 a0067-3897 aFNSP291664 a0000063372 a19900101a19589999 ba0 afre aSN aaka 10aRapport d'activité - Banque centrale des Etats de l'Afrique de l'Ouest aDakarcBCEAOd1958- aEn version électronique à partir de 2003 aannuel 1aRapport d'activité - Institut d'émission de l'Afrique occidentale et du Togo00aRapport d'activité - Banque centrale des Etats de l'Afrique de l'Ouest02aBanque centrale des Etats de l'Afrique de l'OuestxPériodiques aFinancesyAfrique occidentalexPériodiques aAfrique occidentalexConditions économiquesxPériodiques02aBanque centrale des Etats de l'Afrique de l'Ouest4 uhttp://www.bceao.int/ zContenu : texte intégral du rapport depuis 20001 b(2001) -(2002)cParisdMagasins/AnnexeeP 4° 69941 b(1959) -(2000)cParisdMagasins/AnnexeeCOL4°1550 aZGRA aGEO RF1 Afrique occidentale aDEW 33201051nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000154001502100024003042300024003283260011003526010068003636060048004316070063004797100054005428010013005968560026006098560053006359550005006889920032006939920012007250001134452000113445220130319051806.0 a0001134452 a a20009999k fre 01 ba0 afre aSN ar aak z  adr 10aRapport d'activité - Banque centrale des Etats de l'Afrique de l'Ouestb[Ressource électronique]fBanque centrale des Etats de l'Afrique de l'Ouest aDakarcBCEAOd2000- aRevue électronique aAnnuel02aBanque centrale des Etats de l'Afrique de l'OuestxPériodiques aFinancesyAfrique occidentalexPériodiques aAfrique occidentalexConditions économiquesxPériodiques02aBanque centrale des Etats de l'Afrique de l'Ouest 0aFRbFNSP4 uhttp://www.bceao.int/ zContenu : texte intégral du rapport depuis 20001 r aGEO RF1 Afrique occidentale aDEW 33201333nas 2200349 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000066001552100026002213000073002473260011003204300124003315300066004556010057005216060045005786070060006237120043006838560035007268560055007619550055008169550060008719720009009319920029009409920014009690000063330000006333020130319051806.01 a0339-6096 aFNSP291556 a0000063330 a19900101a19749999 ba0 afre aCM aaka 10aRapport d'activité - Banque des états de l'Afrique centrale aYaoundécBEACd1974- a2005 dernière édition papier voir ensuite en version électronique aannuel 1aRapport d'activité - Banque centrale des états de l'Afrique équatoriale et duCameroun (1017-1169) < Coll. 4° 1560 >00aRapport d'activité - Banque des états de l'Afrique centrale02aBanque des Etats de l'Afrique centralexPériodiques aFinancesyAfrique centralexPériodiques aAfrique centralexConditions économiquesxPériodiques02aBanque des Etats de l'Afrique centrale4 uhttp://www.beac.int/index.html zContenu : texte intégral des rapports depuis 20011 b(2001) -(2005)cParisdMagasins/AnnexeeP 4° 69961 b(1973/1974) -(2000)cParisdMagasins/AnnexeeCOL4°1560 aZGRA aGEO RF2 Afrique centrale aDEW 330.901013nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000134001502100026002842300024003103260011003346010057003456060045004026070060004477100043005078010013005508560035005638560053005989550005006519920029006569920014006850001134607000113460720130319051806.0 a0001134607 a a20019999k fre 01 ba0 afre aCM ar aak z  adr 10aRapport d'activité - Banque des états de l'Afrique centraleb[Ressource électronique]fBanque des états de l'Afrique centrale aYaoundécBEACd2001- aRevue électronique aAnnuel02aBanque des Etats de l'Afrique centralexPériodiques aFinancesyAfrique centralexPériodiques aAfrique centralexConditions économiquesxPériodiques02aBanque des Etats de l'Afrique centrale 0aFRbFNSP4 uhttp://www.beac.int/index.html zContenu : texte intégral du rapport depuis 20011 r aGEO RF2 Afrique centrale aDEW 330.901436nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200007000139210002700209326001100236517006900247517009000316517010100406530007100507601007300578606003600651606004700687710005900734856010700793955005500900955006500955972000901020991001801029992002501047992001401072039239284000010121520131220152218.01 a0071-8327 aFNSP435746 a19900101b19572003 ba0 afre aFR aaka 10aRapport d'activitéfCentre national de la recherche scientifique aPariscCNRSd1957-2003 aAnnuel10aRapport annuel - Centre national de la recherche scientifique‎10aRapport sur l'activité générale du Centre national de la recherche scientifique‎1 aRapport d'activité des secteurs scientifiques - Centre national de la recherche scientifique‎10aRapport d'activité - Centre national de la recherche scientifique02aCentre national de la recherche scientifiquec(France)xPériodiques aRechercheyFrancexPériodiques aCentres de rechercheyFrancexPériodiques02aCentre national de la recherche scientifiquec(France) uhttp://www.cnrs.fr/fr/organisme/presentation.htmzAccés au texte intégral du dernier rapport publié1 b(1980) -(2001)cParisdMagasins/AnnexeeP 4° 53631 b(1956/1957) -(1979/1980)cParisdMagasins/AnnexeeCOL4°2080 aZGRA aexempb201311 aGEO RA4.06 France 01 aDEW 001.400897nas 2200277 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000310015421000240018532600110020951700320022060100920025260600520034471000780039685600370047495500870051197200090059899200120060704504614X000020040420130319051806.01 a1563-1613 aFNSP731599 a0000200404 a19900101a00019999 ba0 afre aFR aaka 10aRapport d'activitéfCEPII aPariscCEPIId0001- aAnnuel10aRapport d'activité - CEPII02aCentre d'études prospectives et d'informations internationalesc(France)xPériodiques aHistoire économiquez20e sièclexPériodiques02aCentre d'études prospectives et d'informations internationalesc(France)4 uhttp://www.cepii.fr/DOCW0001.HTM1 bConservation limitée aux 2 dernières annéescParisdMagasins/AnnexeeP 8° 6278 aZGRA aDEW 33701085cas0 2200301 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102106000600109110001600115200007400131210005000205300006400255301006700319326001400386430005300400517006300453710006100516801003000577856004400607856003600651955005500687992002500742992001600767068028008000097800820130319051806.0 a0000978008 a20021022b19992001k a0frey0103 ba0 afre aFR ar aal 10aRapport d'activitéfCommission d'accès aux documents administratifs aPariscLa Documentation françaised1999-2001 aPublication uniquement en version électronique depuis 2001 aDemande de numérotation ISSN en cours par Cr27, le 29/09/2005 aBisannuel 1tL'Accès aux documents administratifsx0766-560110aRapport - Commission d'accès aux documents administratifs02aFrancebCommission d'accès aux documents administratifs 3aFRbAbesc20060517gAFNOR4 uhttp://www.cada.fr/fr/rapport/frame.htm4 zAccès libre au texte intégral1 a(1999) -(2000)cParisdMagasins/AnnexeeP 8° 4784 aGEO RA4.06 France 01 aDEW 350-35401031nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009200154210004600246326001100292606005400303606004700357712007800404856006400482856006300546955005900609972000900668991001800677992002200695992001200717040047644000009208620130319051806.01 a1240-6651 aFNSP406522 a0000092086 a19900101a19939999 ba0 afre aFR aaka 10aRapport d'activité - Commission nationale de contrôle des interceptions de sécurité aPariscLa Documentation françaised1993- aAnnuel aDroits civils et politiquesyFrancexPériodiques aSécurité nationaleyFrancexPériodiques02aFrancebCommission nationale de contrôle des interceptions de sécurité4 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml4 zAccés au texte intégral à partir du 9ème rapport, 20001 b(1991/1992)-(2007)cParisdMagasins/AnnexeeP 8° 5950 aZCAD aexempb201210 aGEO RA4.06 France aDEW 32301353nas 2200349 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000810015421000460023532600110028143000630029251701180035560100820047360600690055560600430062471000680066785600580073585600360079395500550082995500550088497200090093999100180094899200250096699200120099116435669X000000515120130319051806.01 a2261-8619 aFNSP107465 a0000005151 a19900308a19919999 ba0 afre aFR aaka 10aRapport d'activitéfCommission nationale de l'informatique et des libertés aPariscLa Documentation françaised1991- aAnnuel 1tRapport au Président de la République - CNIL,x1263-033010aRapport au Président de la République et au Parlement - Commission nationale de l'informatique et des libertés02aFrance. Commission nationale de l'informatique et des libertésxPériodiques aProtection de l'information (informatique)yFrancexPériodiques aInformatique et libertéxPériodiques02aFrancebCommission nationale de l'informatique et des libertés4 uhttp://www.cnil.fr/en-savoir-plus/rapports-dactivite/ zAccès libre au texte intégral1 b(2004) -(2007)cParisdMagasins/AnnexeeP 4° 70761 b(1991) -(2003)cParisdMagasins/AnnexeeP 8° 4350 aZPAY aexempb201301 aGEO RA4.06 France 01 aDEW 34201315nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005100154210004100205326001100246430006800257440005800325530005200383606004500435606005900480710003800539830005200577856011100629856010900740955005500849972000900904991001800913992002200931992001200953039819930000010066720131009115442.01 a0984-5976 aFNSP434556 a0000100667 a19900101b19872001 ba0 afre aFR aaka 10aRapport d'activitéfConseil de la concurrence aPariscJournaux officielsd1987-2001 aAnnuel 1aRapport pour l'année - Commission de la concurrencex0247-5898 1tRapport annuel - Conseil de la concurrencex1636-251910aRapport d'activité - Conseil de la concurrence aConcurrencexDroityFrancexPériodiques aConcurrencexDroityFrancexLégislationxPériodiques01aFrancebConseil de la concurrence a1987-1996 : collection donnée au CTles en 20134 uhttp://www.conseil-concurrence.fr/user/standard.php?id_rub=15zAccés libre au texte intégral depuis 19974 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtmlzAccés libre au texte intégral depuis 19971 b(1987) -(1996)cParisdMagasins/AnnexeeP 4° 5279 aZGRA aexempb201307 aGEO RA4.06 France aDEW 34301018nas 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000109001502070010002592100045002693260011003146060050003256060046003757100052004218010013004738560074004868560036005609550058005969720009006549920025006639920016006880000588617000058861720130319051807.0 a0000588617 a a20039999k fre ba0 afre aFR a 0  ar aak z 0 10aRapport d'activité - Haut Comité éducation-économie-emploifHaut Comité éducation-économie-emploi 1a2003- aPariscLa Documentaion françaised2003- aAnnuel aEnseignement supérieuryFrancexPériodiques aEducation et emploiyFrancexPériodiques01aFrancebHaut comité Education-économie-emploi 0aFRbFNSP4 uhttp://lesrapports.ladocumentationfrancaise.fr/BRP/034000654/0000.pdf zAccès libre au texte intégral1 b(2002/2003) -....cParisdMagasins/AnnexeeP 8° 6728 aZPAY aGEO RA4.06 France 01 aDEW 370-37901217cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200006200197210002400259517003300283517002500316517004400341517006300385517006700448517008400515710002700599801003000626801002300656802000700679856003600686856005700722955004600779991001800825040025780000119854220130319051807.01 a1169-159X accn1169-159X aissn1169159X a0001198542 a19960829c1946 k y0frey50 ba0 afre aFR ay  ar azku uu 10aRapport d'activité, comptes de gestion, exercice...fEDF aPariscEDFd1946? -10aRapport annuel du groupe EDF10aRapport annuel - EDF10aRapport annuel - Electricité de France10aGroupe EDF Rapport annuel ...- EDF, Electricité de France10aRapport de gestion des exercices .... - Electricité de France10aComptes de gestion et rapport d'activitéeexercice... - Electricité de France02aElectricité de France 3aFRbAbesc20090226gAFNOR 3aFRbISSNc20090225 a074 uhttp://www.edf.com/html/RA2009/ zContient : dernier rapport annuel en texte intégral1 b(1946) -(1979)cParisdAnnexeeCOL4°0033 aexempb20100900938nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210002900187326001100216517007300227530003600300606003800336710005800374856008600432955005500518972000900573991001600582992002200598992001600620076208427000016544920140113164705.01 a1263-0705 aFNSP631611 a0000165449 a19900101a00019999 ba0 afre aFR aaka 10aRapport d'activité...fCNIS aParis‎cCNIS‎d1992? aAnnuel10aRapport d'activité du Comité national de l'information statistique10aRapport d'activité .... - CNIS aStatistiqueyFrancexPériodiques02aFrancebConseil national de l'information statistique4 uhttp://www.cnis.fr/cmszAccès au sommaires et résumés des publications du CNIS1 b(1993) -(2006)cParisdMagasins/AnnexeeP 4° 6503 aZGRA aexemp201401 aGEO RA4.06 France aDEW 310-31901033nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005000154210006300204326001100267517005800278606006900336606005100405710002700456856006800483856005000551955007300601992005700674992001200731040153282000010043820130319051807.0 a1015-0196 aFNSP433956 a0000100438 a19900101a19729999 f ba0 afre aBE aaka 10aRapport d'activité du Fonds social européen aBruxellescCommission des communautés européennesd1972- aAnnuel10aRapport d'activité du nouveau Fonds social européen aPolitique de l'emploiyPays de l'Union européennexPériodiques aFonds structurels communautairesxPériodiques02aFonds social européen4 uhttp://www.travail.gouv.fr/fse/c_sinformer/c3_publications.html zContenu : texte intégral du dernier rapport.1 b(1973) ; (1976) ; (1979) -(1987)cParisdMagasins/AnnexeeP 4° 4533 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 33101020nas 2200277 i 450 002001100000005001700011100004100028101000800069102000700077105001800084106000600102110001600108200009400124207001000218210008600228326001100314606007000325606007300395710008100468801001300549856007900562955005500641972000900696992002500705992001200730000067858220131119155920.0 a a20039999 fre 01 ba0 afre aFR a 0  ar aak z 0 10aRapport d'activitésfInstitut du développement durable et des relations internationales 1a2002- aPariscInstitut du développement durable et des relations internationalesd2003- aAnnuel aDéveloppement durablexCoopération internationalexPériodiques aEnvironnementxProtectionxCoopération internationalexPériodiques02aInstitut du développement durable et des relations internationalesc(Paris) 0aFRbFNSP4 uhttp://www.iddri.org/L'iddri/zAccès libre au texte intégral depuis 20021 b(2002) -(2008)cParisdMagasins/AnnexeeP 4° 7044 aZGRA aGEO RA4.06 France 01 aDEW 33301440cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118105001800125110001600143200009500159210004600254430011300300530009500413606005500508606007100563710008900634801003000723801002300753802000700776856022000783955005201003991001801055992001601073992002501089073601918000117600520131213164202.01 a1636-4473 aissn16364473 a20030523a19999999 0fre 0103 ba0 afre aFR ay  aam 10aRapport d'ensemble du Comité d'enquête sur le coût et le rendement des services publics aPariscLa Documentation françaised1999- 1tRapport général - Comité central d'enquête sur le coût et le rendement des services publics,x0994-942910aRapport d'ensemble du Comité d'enquête sur le coût et le rendement des services publics aServices publicsxEvaluationyFrancexPériodiques aProductivité dans l'administration publiqueyFrancexPériodiques01aFrancebComité central d'enquête sur le coût et le rendement des services publics 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.ladocumentationfrancaise.fr/ezexalead/search?SearchText=rapport+d%27ensemble+sur+le+cout+et+le+rendement+des+services+publics++&cat%5BGroupeThematique%5D=&n=slDocFrancaisezAccés libre au texte intégral1 b(1999/2001)cParisdMagasins/AnnexeeP 4° 5716 aexempb201312 aDEW 350-354 aGEO RA4.06 France 0100964nls 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116106000600123110001600129135001800145200010200163210004200265230002400307326001100331601004200342606003500384607005000419710002800469801001300497856003600510856005300546955000500599992002200604992001200626116244321000113346220131120171428.01 a1662-1743 a0001133462 a a19969999k fre 01 ba0 afre aCH ar aak z  adr 10aRapport de gestion - Banque nationale suisseb[Ressource électronique] /fBanque nationale suisse aBernecBanque nationale suissed1996- aRevue électronique aAnnuel02aBanque nationale suissexPériodiques aFinancesySuissexPériodiques aSuissexConditions économiquesxPériodiques02aBanque nationale suisse 0aFRbFNSP4 uhttp://www.snb.ch/f/index3.html zContenu : texte intégral du rapport depuis 19961 r aGEO RA5.14 Suisse aDEW 33201154nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005300139210004200192326001100234452007400245530005300319601004200372606003500414607005000449710002800499856011300527955005500640955007200695972000900767991001800776992002200794992001200816114554625000006215720140103105101.01 a1421-5500 aFNSP284599 a19900101a00019999 ba0 afre aCH aaka 10aRapport de gestion de la Banque nationale suisse aBernecBanque nationale suissed0001- aAnnuel 1ttRapport de gestion (Banque nationale suisse. En ligne)‎x1662-174300aRapport de gestion de la Banque nationale suisse02aBanque nationale suissexPériodiques aFinancesySuissexPériodiques aSuissexConditions économiquesxPériodiques02aBanque nationale suisse4 uhttp://www.snb.ch/fr/iabout/pub/annrep/id/pub_annrepzContenu : texte intégral du rapport à partir de 19961 b(1980) -(2005)cParisdMagasins/AnnexeeP 4° 54961 b(1914) -(1936) ; (1938) -(1979)cParisdMagasins/AnnexeeCOL4°0175 aZGRA aexempb201312 aGEO RA5.14 Suisse aDEW 33200948nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000081001642100046002453260011002916060028003026060044003307100078003748010013004528560071004659550060005369720009005969920025006059920016006300000385030000038503020130319051807.01 a1626-7206 a0000385030 a a20009999k fre ba0 afre aFR a 0  ar aak z 0 10aRapport de l'Observatoire national de la pauvreté et de l'exclusion sociale aPariscLa documentation françaised2000- aAnnuel aPauvretéxPériodiques aExclusion socialeyFrancexPériodiques aObservatoire national de la pauvreté et de l'exclusion socialec(France) 0aFRbFNSP4 uhttp://www.ladocumentationfrancaise.fr/brp/notices/044000149.shtml1 b(2000) -(2007/2008)cParisdMagasins/AnnexeeP 8° 6557 aZPAY aGEO RA4.06 France 01 aDEW 360-36301374nls 2200373 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000205001502070011003552100085003662300005004513000020004563260011004763360056004873370074005436060046006176060063006636060036007267100063007628010013008258560071008388560041009099550005009509720009009559920025009649920011009890000796025000079602520130319051807.0 a0000796025 a a20049999k fre 01 ba0 afre aFR az aak z  adr 10aRapport de l'Observatoire national des zones urbaines sensiblesb[Ressource électronique]fMinistère de l'emploi, du travail, et de la cohésion socialefDélégation interministérielle de la ville 1a2004 - aLa Plaine Saint DeniscObservatoire national des zones urbaines sensiblesd2004- a aTexte intégral aAnnuel aDonnées textuelles accessibles uniquement en ligne aEn raison de son poids, le rapport est découpé en deux fichiers PDF aVillesxRénovationyFrancexPériodiques aQuartiers (urbanisme)xAspect socialyFrancexPériodiques aBanlieuesyFrancexPériodiques02aFrancebObservatoire national des zones urbaines sensibles 0aFRbFNSP4 uhttp://www.ladocumentationfrancaise.fr/brp/notices/054000037.shtml zContenu : texte intégral du rapport1 r aZGRA aGEO RA4.06 France 01 aDEW 7100895nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001391100016001452000076001612100035002373260011002726060040002837100055003238560051003788560042004299550057004719550052005289720009005809920016005890000090253000009025320130319051807.0 a0257-3725 aFNSP397501 a0000090253 a19900101a19689999 f ba0 afre aUS ar aaka 10aRapport de l'Organe international de contrôle des stupéfiants pour... aNew YorkcNations Uniesd1968- aAnnuel aDroguesxLutte contrexPériodiques aOrgane international de contrôle des stupéfiants4 uhttp://www.incb.org/incb/fr/ungass_report.html4 zAccés au texte intégral depuis 19951 b(1968)-(2004)cParisdMagasins/AnnexeeNU 4° 00.7551 b(2005)- ...cParisdMagasins/AnnexeeP 4° 7238 aZGRA aDEW 364-36501272nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200007700163210004300240326001600283601008500299606005800384710007100442801001300513856019400526856007100720856005300791955005200844972000900896992002500905992001600930059699833000061712820130319051807.01 a1632-0271 a0000617128 a a20019999 fre 01 ba0 afre aFR a 0  ar aay z 0 10aRapport de la Commission consultative du secret de la défense nationale aPariscDocumentation françaisee2001- aIrrégulier01aFrancebCommission consultative du secret de la défense nationalexPériodiques aSecret de la défense nationaleyFrancexPériodiques02aFrancebCommission consultative du secret de la défense nationale 0aFRbFNSP4 uhttp://larecherche.service-public.fr/df/oxide?criteriaContent=rapport+de+la+commission+consultative+du+secret&page=resultsdfA&action=launchsearch&DynRubrique=&DynCorpus=&DynDomain=DFgeneral4 uhttp://www.ladocumentationfrancaise.fr/rapports/presentation.shtml zContenu : texte intégral du rapport depuis 20011 a(2001-2005)cParisdMagasins/AnnexeeP 8° 6759 aZPAY aGEO RA4.06 France 01 aDEW 350-35401201nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000880013921000500022732600110027743000990028844001140038760100670050160600360056871000530060485601470065795500600080497200090086499200220087399200160089504018403X000014062420131220142907.01 a1249-4518 aFNSP559668 a19941107b19942003 ba0 afre aFR aaka 10aRapport de la Commission de contrôle des assurances pour la période du ... au ... aPariscLa Documentation françaised1994-2003 aAnnuel 1tRapport de la Commission de contrôle des assurances pour la période du ... au ...x1250-6583 1tRapport - Commission de contrôle des assurances, des mutuelles et des institutions de prévoyancex1777-052102aCommission de contrôle des assurancesc(France)xPériodiques aAssuranceyFrancexPériodiques02aCommission de contrôle des assurancesc(France)4 uhttp://www.acp.banque-france.fr/publications/publications-anterieures-a-mars-2010/rapports-annuels.htmlzAccés au texte intégral depuis 19941 b(1990/1992) -(2003)cParisdMagasins/AnnexeeP 4° 6330 aZGRA aGEO RA4.06 France aDEW 360-36301112nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154207003000190210004600220326001100266517004600277601004400323606004700367710003000414856005500444856005300499856006400552955005500616955006000671972000900731992002200740992001200762036030635000000510720130319051807.01 a0984-5925 aFNSP107332 a0000005107 a19900307a19709999 ba0 afre aFR aaka 10aRapport de la Cour de cassation 1a1968/1969 publié en 1970 aPariscLa Documentation françaised1970- aAnnuel10aRapport annuel... de la Cour de cassation02aFrancebCour de cassationxPériodiques aDroityFrancexJurisprudencexPériodiques02aFrancebCour de cassation4 uhttp://www.courdecassation.fr/_rapport/rapport.htm zContenu : texte intégral depuis le rapport 19974 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml1 b(1980) -(2007)cParisdMagasins/AnnexeeP 4° 57771 b(1968/1969) -(1979)cParisdMagasins/AnnexeeCOL4°3213 aZPAY aGEO RA4.06 France aDEW 34701038cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200005500174210005600229517003100285530005600316710004300372801003000415801002300445801001300468802000700481856004600488856006400534955005900598972000900657992001200666992002200678073565237000047700920130319051807.01 a1629-5684 aissn16295684 a0000477009 a20030523a20029999k y0frey0103 ba0 afre aFR ay  abuu uu 00aRapport de recherchefCentre d'études de l'emploi aNoisy-le-GrandcCentre d'études de l'emploid2002-10aRapport de recherche - CEE10aRapport de recherche - Centre d'études de l'emploi02aCentre d'études de l'emploic(France) 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20081014 0aFRbFNSP a074 uhttp://www.cee-recherche.fr/fr/c_pub1.htm zContenu : texte intégral des rapports depuis le n°1, 20021 bno. 1 (2002) -....cParisdMagasins/AnnexeeP 4° 6938 aZECH aDEW 331 aGEO RA4.06 France00812nls 2200253 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200010200124210003700226230002400263326001100287601004300298710002900341801001300370856013600383955000500519992002200524992001200546000124515820130611120927.0 a a20119999k fre 01 ba0 afre aFR ar aak z  adr 10aRapport public annuel de la Cour des comptesb[Ressource électronique]fFrance. Cour des comptes aPariscJournaux officielsd2011- aRevue électronique aAnnuel02aFrancebCour des comptesxPériodiques02aFrancebCour des comptes 0aFRbFNSP4 uhttp://www.ccomptes.fr/Publications/Publications/Rapport-public-annuel-2013zAccès au texte intégral du rapport à partir de 20111 r aGEO RA4.06 France aDEW 33601205nas 2200265 i 450 001001000000002001100010005001700021011000500038035001500043100004100058101000800099102000700107110001600114200014600130210006600276326001600342530014600358606007100504710006000575856017600635955008100811972000900892992002200901992001600923039769070000009702120130528112549.0 a aFNSP422786 a19900101a19839999 ba0 afre aFR aaya 10aRapport du Gouvernement au Parlement sur le contrôle a posteriori des actes des collectivités locales et des établissements publics locaux aPariscDirection générale des collectivités localesd1983- airrégulier00aRapport du Gouvernement au Parlement sur le contrôle a posteriori des actes des collectivités locales et des établissements publics locaux aContrôle juridictionnel de l'administrationyFrancexPériodiques02aFrancebDirection générale des collectivités locales4 uhttp://www.collectivites-locales.gouv.fr/rapports-triennaux-au-parlement-sur-lexercice-controle-legalite-et-budgetairezAccés au texte intégral du rapport 2007/2008/20091 bno 3 (1982) ; no 6 (1989) - no 21 (2009)cParisdMagasins/AnnexeeP 4° 6260 aZGRA aGEO RA4.06 France aDEW 350-35401161nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002600163210002200189326001100211430010700222530009100329601006600420606006800486710005200554801001300606856005900619856005200678955005400730972000900784992001800793992001200811149537549000046660720130319051807.0 a1563-2598 a0000466607 a a19999999k fre ba0 afre aFR a 0  ar aa z 0 10aRapport du gouverneur aPariscCEBd1999- aAnnuel 1tRapport du gouverneur. Exercice ... (Fonds de développement social du Conseil de l'Europe)x1025-390410aRapport du Gouverneur ...b(Banque de développement du Conseil de l'Europe. Imprimé)02aBanque de développement du Conseil de l'EuropexPériodiques aDéveloppement économiquexAspect socialyEuropexPériodiques02aBanque de développement du Conseil de l'Europe 0aFRbFNSP uhttp://www.coebank.org/rap_annuel.asp?arbo=107&theme=34 zContenu: texte intégral du rapport depuis 19981 b(2000) - ....cParisdMagasins/AnnexeeP 4° 6706 aZGRA aGEO RA Europe aDEW 33301090cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200007700174210008000251326001100331607006200342607006000404710005700464801003000521801002300551802000700574856004500581856005600626955005300682992001400735992001500749081966865000117559320140108155319.01 a1816-9902 aissn18169902 a0001175593 a20041129a199 9999 0frey0103 ba0 afre aZZ ay  aak 10aRapport économique sur l'AfriquefCommission économique pour l'Afrique aAddis AbébacNations Unies, Commission économique pour l'Afriqued[199.]- aAnnuel aAfriquexConditions économiquesz1990-....xPériodiques aAfriquexPolitique économiquez1960-....xPériodiques02aNations UniesbCommission économique pour l'Afrique 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20070706 a004 uhttp://www.uneca.org/fr/publication-list zContient : texte intégral des rapports depuis 20021 b(2005) -....cParisdMagasins/AnnexeeP 8° 7104 aDEW 330.9 aRE Afrique01122nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000850015421000890023932600110032843000790033948800550041860100360047371000460050985600500055585600520060595500530065797200090071099100180071999200570073799200140079404021317X000015338920130319051807.01 a1027-1546 aFNSP598380 a0000153389 a19900101a19959999 ba0 afre aIN aaka 10aRapport général sur l'activité de l'Union européennefCommission européenne aLuxembourgcOffice des publications officielles des Communautés européennesd1995- aAnnuel 1aRapport général sur l'activité des Communautés européennesx0251-0731 1aRapport sur la politique de concurrencex0256-988402aUnion européennexPériodiques02aUnion européennebCommission européenne4 uhttp://europa.eu/generalreport/fr/welcome.htm zContenu : accés au texte intégral depuis 19971 b(1995) -....cParisdMagasins/AnnexeeP 8° 6485 aZGRA aexempb201301 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 341.201003cas0 2200337 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003900163210002500202300004100227430004800268532005600316606002800372606004000400606003600440710001600476801003000492856004000522955005300562972000900615992002500624992001600649091879213000108090320130319051807.01 a1818-6726 a0001080903 a20051013a200 9999k z0frey0103 ba0 afre aZZ a 0  ar aak 0 10aRapport mondial de suivi sur l'EPT aPariscUNESCOd200?- aRapport publié en plusieurs langues 1tRapport mondial sur l'éducationx1020-046010aRapport mondial de suivi sur l'éducation pour tous aEducationxPériodiques aDroit à l'éducationxPériodiques aEducation de basexPériodiques02aUnesco4070 3aFRbAbesc20060405gAFNOR4 uhttp://www.unesco.org/fr/efareport/1 b(2006) -....cParisdMagasins/AnnexeeP 4° 6090 aZPAY aGEO RA4.06 France 01 aDEW 370-37901144nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200006600163210004100229210003300270210003100303326001900334606004200353606006800395606006400463676000800527710003100535801001300566856004000579955006100619955005600680972000900736992002100745992001600766081761554000055972120130319051807.01 a1768-6156 a0000559721 a a20019999k fre ba0 afre aDE a 0  ar aal z 0 10aRapport mondial sur la corruptionfTransparency International aPariscNouveau monde editionsd2009- aPariscÉconomicad2005-2009 aPariscKhartalad2003-2004 aTous les 2 ans aCorruptionxPréventionxPériodiques aEntreprises multinationalesxPratiques déloyalesxPériodiques aAdministration publiquexPratiques déloyalesxPériodiques a36002aTransparency International 0aFRbFNSP uhttp://www.transparency-france.org/1 bLa dernière annéecParisd27, Salle 4e étageeDEW 3601 b(2003) -...cParisdMagasins/AnnexeeP 8° 6673 bis aZGRA aGEO RQ Universel aDEW 364-36500842nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004900154210002800203326001100231606004900242606004000291710005500331856011600386955005300502972000900555992001200564040177459000001907820131025130547.01 a1019-4886 aFNSP151887 a0000019078 a19901201a19909999 ba0 afre aFR aaka 10aRapport mondial sur le développement humain aPariscEconomicad1990- aAnnuel aPopulationxAspect économiquexPériodiques aDéveloppement humainxPériodiques01aProgramme des Nations Unies pour le développement4 uhttp://hdr.undp.org/fr/rapports/mondial/rdh2013/zAccès intégral du rapport en plusieurs langues depuis 1990.1 b(1990) -....cParisdMagasins/AnnexeeP 4° 5959 aZPAY aDEW 30401202nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008200154210006300236210007300299210005500372326001100427422004500438606003900483606004100522676000800563710005000571856002800621856004200649955006700691955005300758972000900811992002100820992001100841040352188000013358420130319051807.01 a1260-4275 aFNSP540091 a0000133584 a19940803a19949999 ba0 afre aFR aaka 10aRapport moral sur l'argent dans le mondefAssociation d'économie financière aPariscAssociation d'économie financièrecÉd. PAUd1995 aPariscMontchrestiencAssociation d'économie financièred1996-2000 aaPariscAssociation d'économie financièred2001- aAnnuel 1tRevue d'économie financièrex0987-3368 aEthique des affairesxPériodiques aFinancesxAspect moralxPériodiques a33202aAssociation d'économie financièrec(France)4 uhttp://www.aef.asso.fr/ zContenu : texte intégral depuis 20011 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3321 b(1994) -....cParisdMagasins/AnnexeeP 4° 6406 aZPAY aGEO RQ Universel aDEW 1701128nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000620013921000340020132600110023543000610024651700630030751700700037060600340044060700490047471000200052385600630054395500550060695500550066197200090071699100180072599200210074399200140076499200120077803884253X000010181220140107114446.01 a0067-396X aFNSP437279 a19900101a19599999 ba0 afre aMA aaka 10aRapport présenté à Sa Majesté le RoifBanque du Maroc aRabatcBanque du Marocd1959- aAnnuel 1aAssemblée générale ordinaire - Banque d'Etat du Maroc10aRapport présenté à Sa Majesté le Roi - Bank Al-Maghrib10aRapport annuel présenté à sa Majesté le Roi - Bank Al-Magrhib aFinancesyMarocxPériodiques aMarocxConditions économiquesxPériodiques02aBanque du Maroc4 uhttp://www.bkam.ma/zAccès au texte intégral depuis 20001 b(1980) -(1999)cParisdMagasins/AnnexeeP 4° 53601 b(1959) -(1979)cParisdMagasins/AnnexeeCOL4°0362 aZGRA aexempb201311 aGEO RG1.11 Maroc aDEW 330.9 aDEW 33201028nls 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000107001502100034002572300024002913260011003155170063003266010034003896060034004236070049004577100020005068010013005268560046005398560053005859550005006389920021006439920014006649920012006780001115421000111542120130319051807.0 a0001115421 a a20009999k fre 01 ba0 afre aMA ar aak z  adr 10aRapport présenté à Sa Majesté le Roi - Banque du Marocb[Ressource électronique]fBanque du Maroc aRabatcBanque du Marocd2000- aRevue électronique aAnnuel10aRapport présenté à Sa Majesté le Roi - Bank Al-Maghrib02aBanque du MarocxPériodiques aFinancesyMarocxPériodiques aMarocxConditions économiquesxPériodiques02aBanque du Maroc 0aFRbFNSP4 uhttp://www.bkam.ma/Francais/Menu/Anex.asp zContenu : texte intégral du rapport depuis 20001 r aGEO RG1.11 Maroc aDEW 330.9 aDEW 33201282cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001700069100004100086101000800127102000700135110001600142200008200158210002200240517003700262530008300299606005300382606004700435710006900482801003000551801003000581801002300611802000700634856009200641955006400733955005500797972000900852991001800861992002500879992001600904045061637000089591720130709133138.01 a1289-3803 accn1289-3803 aissn12893803 a20000407a19989999 0fre 0103 ba0 afre aFR aak 10aRapport public d'activitéfAutorité de régulation des télécommunications aPariscARTd1998-10aRapport public d'activité - ART10aRapport public d'activité - Autorité de régulation des télécommunications aTélécommunicationsxAspect économiqueyFrance aTélécommunicationsyFrancexPériodiques02aAutorité de régulation des télécommunicationsc(France)4070 3aFRbAbesc20050107gAFNOR 3aFRbAbesc20050107gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.art-telecom.fr/zContenu : texte intégral du rapport depuis l'édition 19971 b(2000) ; (2002) -(2006)cParisdMagasins/AnnexeeP 8° 69381 b(1997) -(1999)cParisdMagasins/AnnexeeP 4° 6829 aZGRA aexempb201212 aGEO RA4.06 France 01 aDEW 383-38901148nas 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000109001502100026002593260011002855170100002966060061003966060066004577100088005238010013006118560096006249550052007209720009007729920021007819920016008029920016008180000692197000069219720130722145059.0 a0000692197 a a20009999 fre 01 ba0 afre aFR a 0  ar aak z 0 10aRapport statistique - CLEISS /fCentre des liaisons européennes et internationales de sécurité sociale aParis:cCLEISSd2000- aAnnuel10aRapport statistique - Centre des liaisons européennes et internationales de sécurité sociale aSécurité socialexFinancesxStatistiquesxPériodiques aSécurité socialeyPays de l'Union européennexPériodiques02aCentre des liaisons européennes et internationales de sécurité socialec(France) 0aFRbFNSP4 uhttp://www.cleiss.fr/docs/stats/rapportstat2001.htmlzAccés au texte intégral depuis 20011 b(2001) -...cParisdMagasins/AnnexeeP 4° 7049 aZGRA aGEO RQ Universel aDEW 360-363 aDEW 310-31901207nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008200154210005100236326001100287517004300298601004200341607006500383607006900448607007300517676001000590702003700600856003100637856003600668955005500704972000900759991001800768992005700786992001400843045100594000026451420130415143022.01 a1295-618X aFNSP917850 a0000264514 a19990121a19999999 ba0 afre aFR aaka 10aRapport sur l'état de l'Union européennefsous la dir.de Jean-Paul Fitoussi a[Paris]cFayardcPresses de Sciences Pod1999- aAnnuel12aL'État de l'Union européenne (2005-)02aUnion européennexPrise de décision aPays de l'Union européennexPolitique socialexPériodiques aPays de l'Union européennexPolitique économiquexPériodiques aPays de l'Union européennexPolitique et gouvernementxPériodiques a341.8 1aFitoussibJean-Paulf(1942-....)4 uhttp://www.sciences-po.fr/ zContenu : sommaires depuis 19991 b(1999) -(2007)cParisdMagasins/AnnexeeP 8° 6454 aZCAD aexempb201301 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 341.201068nls 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000087001502070010002372100062002472300024003093000032003333260014003653370017003796010046003966060081004427100032005238010013005558560046005688560042006149550005006569920057006619920012007180001020515000102051520130319051807.0 a0001020515 a a19989999k fre 01 ba0 afre aDE az aal z  adr 10aRapport sur la convergenceb[Ressource électronique]fBanque centrale européenne 1a1998- aFrancfort-sur-le-MaincBanque centrale européenned1998- aRevue électronique aTexte intégral depuis 1998 aBisannuel aFichiers PDF02aBanque centrale européennexPériodiques aConvergence (économie politique)yPays de l'Union européennexPériodiques02aBanque centrale européenne 0aFRbFNSP4 uhttp://www.ecb.int/pub/html/index.en.html zContenu : texte intégral depuis 19981 r aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 33601196nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000680013921000890020732600110029645200710030748800660037860600790044471000420052385601190056595500550068495500550073997200090079499100180080399200570082199200160087803928770X000010135620130604143950.01 a0256-9884 aFNSP436000 a19900101a19729999 f ba0 afre aLU aaka 10aRapport sur la politique de concurrencefCommission européenne aLuxembourgcOffice des publications officielles des Communautés européennesd1972- aAnnuel 1tRapport sur la politique de concurrence (En ligne), ISSN 1977-5393 1aRapport général sur l'activité des Communautésx0251-0731 aConcurrencexPolitique publiqueyPays de l'Union européennexPériodiques02aCommunautés européennesbCommission4 uhttp://ec.europa.eu/competition/publications/annual_report/index.htmlzAccès libre au texte intégral depuis 19711 b(1999) -(2005)cParisdMagasins/AnnexeeP 4° 68611 b(1971) -(1998)cParisdMagasins/AnnexeeP 8° 3802 aZGRA aexempb200912 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 380-38200879nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007600154210002400230326001100254601005300265606002500318710003900343856004000382856004300422955005300465972000900518991001800527992002100545992001100566040181596000024497520130319051807.01 a1020-332X aFNSP861018 a0000244975 a19900101a19959999 ba0 afre aCH aaka 10aRapport sur la santé dans le mondefOrganisation mondiale de la santé aGenèvecOMSd1995- aAnnuel02aOrganisation mondiale de la santéxPériodiques aSantéxPériodiques02aOrganisation mondiale de la santé4 uhttp://www.who.int/publications/fr/ zContenu : rapport en ligne depuis 19951 b(1997) -....cParisdMagasins/AnnexeeP 8° 6387 aZPAY aexempb201301 aGEO RQ Universel aDEW 6101084nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005600163210003400219326001100253430006900264440005700333512002600390517003800416606005500454676000800509710004300517801001300560856006400573955004700637972000900684992002500693992001600718048761303000030500320130319051807.01 a1297-207X a0000305003 a a19991999k fre ba0 afre aFR a 0  ar aak z 0 10aRapport sur la sécurité socialefCour des comptes aPariscCour des comptesd1999 aAnnuel 1tRapport annuel au Parlement sur la sécurité socialex1263-3704 1tLa Sécurité sociale /fCour des comptesx2106-744913aLa Sécurité sociale10aRapport public - Cour des comptes aSécurité socialeyFrancexFinancesxPériodiques a36001aFrancebCour des comptesxPériodiques 0aFRbFNSP4 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml1 b(1999)cParisdMagasins/AnnexeeP 4° 6570 aZCAD aGEO RA4.06 France 01 aDEW 360-36301112nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006400154210002700218326001100245451004400256601008500300606004100385676000800426710007100434856006700505856003600572955006200608955007000670972000900740992002100749992001600770039281272000010033220130319051807.01 a0256-0887 aFNSP433722 a0000100332 a19900101a19819999 ba0 aeng aII aak 10aRapport sur le commerce et le développementfNations Unies aGenèvecCNUCEDd1981- aAnnuel 1aTrade and development reportx0255-460702aConférence des Nations Unies sur le commerce et le développementxPériodiques aCommerce internationalxPériodiques a33702aConférence des Nations Unies sur le commerce et le développement4 uhttp://www.unctad.org/Templates/Page.asp?intItemID=2508&lang=2 zAccès libre au texte intégral1 bLa dernière annéecParisd27, Salle 1er étageeDEW 3371 b(1981) -(1988) ; (1999) -....cParisdMagasins/AnnexeeP 4° 4707 aZGRA aGEO RQ Universel aDEW 380-38201069cas0 2200337 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123110001600141200007100157207001100228210004200239326001100281606004100292606004400333676000800377710003800385801003000423856006900453856005300522955006200575955005200637972000900689992002100698992001200719078205638000085747520130319051807.01 a1813-811X a0000857475 a20040519a20039999k f0frey0103 ba0 afre aZZ a 0  aaka 0 010aRapport sur le commerce mondialfOrganisation mondiale du commerce 1a2003 - aGenèvecPublications de l'OMCd2003- aAnnuel aCommerce internationalxPériodiques aStatistiques commercialesxPériodiques a33702aOrganisation mondiale du commerce 3aFRbAbesc20050502gAFNOR4 uhttp://www.wto.org/french/res_f/reser_f/world_trade_report_f.htm zContenu : texte intégral du rapport depuis 20031 bLa dernière annéecParisd27, Salle 1er étageeDEW 3371 b(2003) -...cParisdMagasins/AnnexeeP 4° 7077 aZPAY aGEO RQ Universel aDEW 33701074nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006500154210004500219326001100264451004100275607007400316676001000390710007000400801002100470856003900491856003600530955006400566955005300630972000900683992004200692992001400734001957252000000508120130319051807.0 a0271-1710 aFNSP107271 a0000005081 a19900101a19789999 ba0 afre aUS aaka 10aRapport sur le développement dans le mondefBanque mondiale aWashington, D.C.cBanque mondialed1978- aAnnuel 1aWorld development report (0163-5085) aPays en voie de développementxConditions économiquesxPériodiques a338.9 aBanque internationale pour la reconstruction et le développement 3aFRbCCN0271-17104 uhttp://www.worldbank.org/wdr/2000/ zAccès libre au texte intégral1 bLa dernière annéecParisd27, Salle 1er étageeDEW 338.91 b(1978) -....cParisdMagasins/AnnexeeP 4° 4238 aZPAY aGEO RO Pays en voie de développement aDEW 338.900964nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008100154210005500235326001100290451003100301607005100332676001000383710003900393856006500432856003600497955008700533972000900620992001900629992001400648045046476000016626220130319051807.01 a1605-282X aFNSP634516 a0000166262 a19900101a19889999 ba0 afre aCI aaka 10aRapport sur le développement en AfriquefBanque africaine de développement aAbidjancBanque africaine de développementd1988- aAnnuel 1aAfrican development report aAfriquexConditions économiquesxPériodiques a338.902aBanque africaine de développement4 uhttp://www.afdb.org/fr/documents/publications/annual-report/ zAccès libre au texte intégral1 b7e éd (1995)- 8e éd. (1996) ; (1999) -(2010)cParisdMagasins/AnnexeeP 4° 6517 aZPAY aGEO RE Afrique aDEW 330.902177cas0 2200565 450 001001000000002001100010005001700021011001400038035001400052035001400066035001700080035001700097035001700114035001700131035001500148100004100163101000800204102000700212106000600219110001600225200009400241210002800335215003600363300012700399300007900526326001100605327010500616410004300721410005400764410002900818410007800847441005100925517002800976517004001004606004501044606006401089710007801153711002101231801003001252801003001282801003001312801002301342802000701365856008801372856004901460955005601509972000901565992002501574992001201599045067228000085771820130319051807.01 a1290-2969 a040619257 a073528137 accn1290-2969 zccn7204/0440 accn7204/0440 aissn12902969 a0000857718 a20000407b19 2004k a0frey0103 ba0 afre aFR ar aak 10aRapport sur les comptes de la NationfINSEE, Direction de la prévision, Banque de France aPariscINSEEd19??-2004 eCet ouvrage contient un CD-ROM. aL''édition 2000 compte une édition en francs et une édition en euros. La bibliothèque ne possède pas l'édition 2001. aA partir de janvier 2006, la collection est uniquement disponible en ligne aAnnuel11aA partir de 1993, la 1ère partie du rapport paraît à part, sous le titre "L'économie française" 1tINSEE résultats. Economie,x1635-8791 1tINSEE résultats. Economie générale,x0998-4712 1tINSEE étudesx1140-5252 1tLes Collections de l'INSEE. Série C, comptes et planificationx0533-0793 1tL'Economie française (Paris. 1993)x1638-209910aComptes de la Nation...10aComptes et indicateurs économiques1 aEconomie politiqueyFrancexPériodiques aComptabilité nationaleyFrancexStatistiquesxPériodiques02aInstitut national de la statistique et des études économiquesc(France)02aBanque de France 3aFRbAbesc20050627gAFNOR 3aFRbAbesc20050627gAFNOR 3aFRbAbesc20050627gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.insee.fr/fr/ppp/publications/collect_doc.asp?coll=4&paru=1&avis=1&pres=1 zContenu : texte intégral du dernier rapport1 a(1993)-(2003)cParis :dMagasins/AnnexeeP 4° 7079 aZPAY aGEO RA4.06 France 01 aDEW 33600852nas 2200277 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000024001412100030001653260011001956070046002067100059002528560088003119550061003999550053004609720009005139910018005229920022005409920012005620000060569000006056920140110111356.0 aFNSP277495 a0000060569 a19900101a00019999 ba0 aita aIT aaka 10aRapporto Italia ... aFirenzecVallecchid0001- aAnnuel aItaliexConditions socialesxPériodiques02aIstituto di studi politici economici e socialic(Rome)4 uhttp://www.eurispes.eu/content/rapporti1zAccès au sommaire depuis l'édition 19891 bLa dernière annéecParisd30, Salle 2e étageeDEW 9401 b(1990) -....cParisdMagasins/AnnexeeP 8° 5799 aZPAY aexempb201112 aGEO RA6.03 Italie aDEW 94500934nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154207003600190210002700226326001600253606002900269801002100298856007400319856003900393955006700432957009400499972000900593991001800602992001200620039623378000003618920130319051808.01 a0486-0349 aFNSP205260 a0000036189 a19900101a19609999 ba0 aita aIT aahu 10aRassegna italiana di sociologia 1avol. 1, no. 1 (gen./mar. 1960)- aBolognacMulinod1960- aTrimestriel aSociologiexPériodiques 3aFRbCCN0486-03494 uhttp://www.mulino.it/edizioni/riviste/scheda_fascicolo.php?isbn=11764 zContenu : sommaire dernier numéro1 bno. 1 (jan/mar-1960) -....cParisdMagasins/AnnexeeP 8° 19281 b(1994) -(1997)cParisdMagasins/Annexezse trouve dans le vol. 38 no. 4, 1997 de la revue aZPAY aexempb201002 aDEW 30100892nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154207002400182210003800206326001600244606002900260856010800289856010800397955007000505972000900575991001800584992001200602040260836000001077520130319051808.01 a1043-4631 aFNSP120517 a0000010775 a19900712a19899999 ba0 aeng aUS aaha 10aRationality and society 1aVol.1 no. 1 (1989)- aNewbury Park, Calif.cSaged1989- aTrimestriel aSociologiexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jul-1989) -....cParisdMagasins/AnnexeeP 8° 5653 aZSAB aexempb201205 aDEW 30101537cas0 2200409 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200008700180210005900267326001800326430004800344510005900392530007000451606002900521606004400550607002800594710005300622801003000675801002300705801001300728802000700741856012800748856010800876955006000984972000901044992005801053992001601111097572810000092408020130319051808.01 a0354-0286 aissn03540286 a0000924080 a20060303a19909999 0frey0103 ba0 aslv aSI ay  ar aai 10aRazprave in gradivoetreatises and documents/fInštitut za narodnostna vprašanja aLjubljanacInštitut za narodnostna vprašanja.d1990- a3 n°s par an 1tRevija za narodnostna vprašanjax0353-272010aTreatises and documents - Institute for Ethnic studies10aRazprave in gradivo - Inštitut za narodnostna vprašanjab(1990) aMinoritésxPériodiques aEmigration et immigrationxPériodiques aSlovéniexPériodiques02aInštitut za narodnostna vprašanjac(Ljubljana) 3aFRbAbesc20081202gAFNOR 3aFRbISSNc20060301 0aFRbFNSP a314 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=FXM&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 34 (1999) -....cParisdMagasins/AnnexeeP 8° 6861 aZSAB aGEO RA1. 01 Communautés européennes, Pays de la CEE aDEW 305-30601118cas0 2200337 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200002100148207002800169210003100197326001200228430003200240517001700272606002600289606003400315676000800349801003000357856021500387955006700602955006500669972000900734992002500743992001200768083745173000078328320131001141822.01 a1772-6638 a20050207a20059999k y0frey0103 ba0 afre aFR a 0  ar aafa 0 10aRBeRevue banque 1ano. 666 (févr., 2005)- aPariscRevue banqued2005- aMensuel 1tBanque magazine,x1299-317410aRevue banque aBanquesxPériodiques aBanquesyFrancexPériodiques a332 3aFRbAbesc20050325gAFNOR4 uhttp://www.revue-banque.frzSommaires et résumés des articles depuis le n° 577, janv.1997. Articles consultables à la bibliothèque à l'aide d'un mot de passe à demander à l'accueil bibliographique au 301 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3321 bno. 666 (fev-2005) -....cParisdMagasins/AnnexeeP 4° 0069 aZPAY aGEO RA4.06 France 01 aDEW 33201309nas0 2200373 450 001001000000002001100010005001700021011001400038035001500052100004100067101001300108102000700121105001800128110001600146200007200162207002800234210003900262326001200301430006300313517002400376517000800400530002900408606007400437606004400511606004500555702003800600801003000638856003400668856005200702955006900754955006500823992001400888992003300902155005898000121933620130319051808.0 a2118-5700 a0001219336 a20110920a20119999k y0frey50 ba0 afregfre aFR ay  aagu uu 10aRdl, la revue des livresf[directeur de publication Jérôme Vidal] 0aNo 1 (sept.-oct. 2011)- aPariscBV2N Revue et Livresd2011- aBimest. 1tLa Revue internationale des livres & des idéesx1959-675813aLa Revue des livres10aRdl00aRdl, la revue des livres aLittératurez21e sièclexHistoire et critiquexPériodiques2rameau aScience politiquexPériodiques2rameau aLivresxRecensionsxPériodiques2rameau 1aVidalbJérômef(1970-....)4651 3aFRbAbesc20110920gAFNOR4 uhttp://www.revuedeslivres.fr/4 zContenu : sommaire et présentation de la revue1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 73091 bno 1 (sep/oct-2011)-....cParisdMagasins/AnnexeeP 4° 7309 aDEW 320.5 aGEO RS Sans aspect régional01065nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210008200178326001800260606005500278606004800333606003700381710005400418856002700472856007800499955007000577972000900647991001800656992002500674992002800699992001200727039431452000013745320130319051809.01 a0325-1926 aFNSP548861 a0000137453 a19941005a19719999 ba0 aspa aAR aafa 10aRealidad económica aBuenos AirescInstituto Argentino para el Desarrollo Económico (IADE)d1971- a8 n°s par an aEconomie politiqueyAmérique latinexPériodiques aEconomie politiqueyArgentinexPériodiques aEconomie politiquexPériodiques02aInstituto argentino para el desarrollo económico4 uhttp://www.iade.org.ar zContenu : Sélection d'articles en texte intégral depuis le n°167, 19991 bno. 121 (1994) -no 231 (2007)cParisdMagasins/AnnexeeP 8° 6068 aZECH aexempb201211 aGEO RD4.11 Argentine aGEO RD Amérique latine aDEW 33000952nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004500154210002300199326001600222488007100238517004800309606004700357856003100404856009600435955008600531972000900617992002200626992001400648039905837000008592920130319051809.01 a1148-7941 aFNSP381506 a0000085929 a19900101a19899999 ba0 afre aFR aaha 10aRéalités industrielles (Saint-Etienne) aPariscEskad1989- aTrimestriel 1aGérer et comprendre. Annales des mines (0295-4397) < P 4° 5108 >10aAnnales des mines. Réalités industrielles aGestion d'entrepriseyFrancexPériodiques4 uhttp://www.annales.org/ri/ zContenu : sommaires et résumés depuis 1997 ; texte intégral des articles de 1998 à 20051 b(avr-1992) -(jul/aou-1992) ; (jan-1993) -....cParisdMagasins/AnnexeeP 4° 6200 aZPAY aGEO RA4.06 France aDEW 338.400900nas 2200289 i 450 001001000000002001100010005001700021035001500038035001500053100004100068101000800109102000700117110001600124200002300140210006700163326001200230606003500242606005300277606003000330710005000360711001300410856003700423856004000460955007800500991001800578992001400596037421387000019236020130319051809.0 aFNSP709258 a0000192360 a19900101a19939999 ba0 aeng aBE aala 14aThe Reality of aid aBruxellescEUROSTEP;aGenevacICVA,;aLondoncEarthscand1993- aBiennal aAide économiquexPériodiques aOrganisations non gouvernementalesxPériodiques aBénévolatxPériodiques02aConseil international des agences bénévoles02aEUROSTEP4 uhttp://www.routledge.com/search/ zContenu : sommaires de 1996 à 20001 b(1996) -(1998/1999) ; (2004) -(2006)cParisdMargasins/AnnexeeP 8° 6281 aexempb201301 aDEW 338.901074nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116200001700123210003100140326001200171421004400183430003100227452004400258517003400302517004900336530003000385606004200415606002800457606003000485801002100515830005300536856003100589955006300620972000900683991001800692992001400710039225763000003619520131127121856.01 a0029-5671 aFNSP205269 a19900101a19709999 ba0 afre aFR13aLa Recherche aPariscLa Recherched1970- aMensuel04tLes dossiers de la recherchex1772-3809 1tAtomes (Paris),x0365-7515 1tLa œRecherche (En ligne)‎x1625-995513aLa Recherche. Atomes, Nucleus13aLa Recherche. Science, progrès, découverte13aLa Recherche‎bImprimé aSciencesxVulgarisationxPériodiques aRecherchexPériodiques aInnovationsxPériodiques 3aFRbCCN0029-5671 a1946-2010 : collection envoyée au CTles en 20134 uhttp://www.larecherche.fr/1 bno. 1 (mai-1970) -....cParisdMagasins/AnnexeeP 4° 2231 aZPAY aexempb201305 aDEW 50-5901315nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200008000139210006600219210006100285326001600346517000800362517005000370530004300420606002800463710004000491856021700531955008700748957008400835972000900919991001600928992003300944992001200977001031309000018034620140114170036.01 a0767-3701 aFNSP673058 a19900101a19869999 ba0 afre aFR aaha 10aRecherche et applications en marketingfAssociation française du marketing aGrenoble‎cPresses universitaires de Grenoble‎d1993-2012 aParis‎cPresses universitaires de France‎d1986-1992 aTrimestriel10aRAM10aR.A.M. Recherche et applications en marketing10aRecherche et applications en marketing aMarketingxPériodiques02aAssociation française du marketing4 uhttp://www.afm-marketing.org/1-afm-association-francaise-du-marketing/124-activites/142-recherche-et-applications-en-marketing-ram.aspxzAccès libre aux sommaires des derniers nos et à une sélection d'articles1 bvol. 10 no. 3 (1995) -vol. 26 no. 4 (dec-2011)cParisdMagasins/AnnexeeP 4° 65811 bvol. 1 no. 1 (1986) -vol. 13 no. 2 (1998)cParisdMagasins/AnnexeeP Index 0811 aZPAY aexemp201401 aGEO RS Sans aspect régional aDEW 65901183nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101001300123102000700136110001600143200003900159210003900198326001600237430008700253510002800340606005200368710009000420801002100510830002900531856011300560856010800673955006700781972000900848992001200857039720403000003642520130319051810.01 a0770-4518 aFNSP205836 a0000036425 a19900101a19619999 ba0 afreaeng aBE aahu 10aRecherches économiques de Louvain aBruxellescDe Boeck-Wesmaeld1961- aTrimestriel 1aBulletin de l'Institut de recherches économiques et sociales (Louvain)x1373-971910aLouvain economic review aHistoire économiquez20e sièclexPériodiques02aUniversité catholique de Louvain (1970-....)bDépartement des sciences économiques 3aFRbCCN0770-4518 a1961--1979 donné au CTL4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-recherches-economiques-de-louvain.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 46 no. 1 (1980) -....cParisdMagasins/AnnexeeP 8° 0143 aZPAY aDEW 30001093nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200007500139210003300214326002700247326002700274440005000301530004000351606004900391607004400440710005800484856009100542955007800633972000900711991001800720992002500738992001600763039906914000015259220140115174544.01 a1149-1590 aFNSP595938 a19900101b19852008 ba0 afre aFR aaha 10aRecherches et prévisionsfCaisse nationale des allocations familiales aParis‎cCNAF‎d1985-2008 aTrimestrielb1997-2008 aIrrégulierb1994-1996 1tPolitiques sociales et familiales,x2101-8081 aRecherches et prévisions‎bParis aAllocations familialesyFrancexPériodiques aFrancexPolitique socialexPériodiques02aCaisse nationale des allocations familialesc(France)4 uhttp://www.caf.fr/etudes-et-statistiques/publicationszAccès libre au texte intégral1 bno. 38 (déc-1994) -no. 94 (dec-2008)cParisdMagasins/AnnexeeP 4° 6446 aZGRA aexempb012014 aGEO RA4.06 France 01 aDEW 360-36301129nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210002600181326001500207606003300222606002900255710006400284856003600348856010000384856004900484856014200533955006600675972000900741991001800750992001900768992001600787039800822000003643520130319051810.01 a0838-4479 aFNSP205858 a0000036435 a19900101a19889999 ba0 afre aCA aaja 10aRecherches féministes aQuébeccGREMFd1988- aSemestriel aFemmesyCanadaxPériodiques aFéminismexPériodiques02aGroupe de recherche multidisciplinaire féministe (Québec)4 uhttp://www.erudit.org/revue/rf/ zContenu : sommaires et texte intégral depuis le volume 15, n°1, 2002 (sauf derniers numéros)4 uhttp://www.fss.ulaval.ca/lef/revue/index.htm zContenu : sommaires du volume 1, n°1, 1988 au volume 13, n°1, 2000, puis uniquement les thèmes des dossiers pour les années suivantes1 bvol. 1 no. 1 (1988) -....cParisdMagasins/AnnexeeP 8° 5565 aZPAY aexempb201210 aGEO RC1 Canada aDEW 305-30601501nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007800154210002900232210002600261210004900287210004800336210005000384300006300434326001600497430008500513517005000598606004800648710004700696801002100743856004600764856005700810955010800867957010100975972000901076991001801085992001201103039464695000003654720130430134949.01 a0294-3069 aFNSP206262 a0000036547 a19900101a19819999 ba0 afre aFR aahu 10aRecherches internationalesecahiers de l'Institut de recherches marxistes aPariscSEPIRMd1981-1990 aPariscIRMd1991-1995 aPariscRecherches internationalesd1996-1997 aaPariscAssociation "64 Blanqui"d1997-2006 aSaint-DeniscAssociation Paul Langevind2006- aPublication interrompue du printemps 1993 à l' hiver 1995 aTrimestriel 1aRecherches internationales à la lumière du marxisme (0486-1345) < P 8° 1554 >10aCahiers de l'Institut de recherches marxistes aSciences sociales et marxismexPériodiques02aInstitut de recherches marxistesc(France) 3aFRbCCN0294-30694 uhttp://www.recherches-internationales.fr/ zContenu : accès aux sommaires depuis le n°76, 20061 bno. 1 (1981) -no. 40 (1992/1993) ; no. 41/42 (pri/été-1995) -....cParisdMagasins/AnnexeeP 8° 15541 bno. 41 (1995) -no. 62 (2000) ; no. 1 (1981) -no. 80 (2007)cParisdMagasins/AnnexeeP Index 0833 aZCAD aexempb201102 aDEW 30001032nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210004700185326002200232606003700254710006900291801002100360856006700381856006700448856003600515856006800551955005900619972000900678992001900687992001200706038782472000003643720130319051810.01 a0034-1282 aFNSP205862 a0000036437 a19900101a19609999 ba0 afre aCA aaiu 10aRecherches sociographiques aQuébeccDépartement de sociologied1960- a3 numéros par an aSociologieyCanadaxPériodiques02aUniversité Lavalc(Québec, Canada)bDépartement de sociologie 3aFRbCCN0034-12824 uhttp://www.soc.ulaval.ca/recherchessociographiques/default.asp zContenu : sommaires et résumés depuis le vol. 31, n°1, 19904 uhttp://www.erudit.org/revue/rs/4 zContenu : texte intégral depuis le vol.43, n°1 (janvier 2002)1 bno. 1 (1960) -....cParisdMagasins/AnnexeeP 4° 1823 aZSAB aGEO RC1 Canada aDEW 30101001nas 2200337 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000019001412100025001603260017001854300036002025170022002385170014002605170006002745300025002806060032003056060047003376760008003848560067003928560108004599550053005679720009006209920022006299920012006510000208684000020868420130319051811.0 aFNSP756609 a0000208684 a19900101a19979999 ba0 afre aFR aaca 10aRecueil Dalloz aPariscDallozd1997- aHebdomadaire 1aRecueil Dalloz Sireyx0034-183510aRecueil Le Dalloz13aLe Dalloz10aD 0aRecueil Dallozb1997 aDroityFrancexPériodiques aDroityFrancexJurisprudencexPériodiques a3404 uhttps://acces-distant.sciences-po.fr/fork?http://www.dalloz.fr zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1997)-....cParisd30, Salle 3e étageeDEW 340 aZPAY aGEO RA4.06 France aDEW 34801193nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000025001552100029001803260017002094360120002264400026003465170074003726060047004466060032004938010021005258560067005468560108006139550056007219550056007779920022008339920012008550000005283000000528320130319051811.01 a0034-1835 aFNSP107806 a0000005283 a19900101b19651996 ba0 afre aFR aa u 10aRecueil Dalloz Sirey aPariscDallozd1965-1996 aHebdomadaire 1aRecueil Dalloz de doctrine, de jurisprudence et de législationxISSN 0242-6919 et de Recueil SireyxISSN 0242-6900 1aRecueil Dalloz (1997)10aRecueil Dalloz Sirey de doctrine, de jurisprudence et de législation aDroityFrancexJurisprudencexPériodiques aDroityFrancexPériodiques 3aFRbCCN0034-18354 uhttps://acces-distant.sciences-po.fr/fork?http://bu.dalloz.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1965) -(1989)cParisd30, Salle 3e étageeDEW 3401 b(1990) -(1996)cParisd30, Salle 3e étageeDEW 340 aGEO RA4.06 France aDEW 34801250cas0 2200337 450 001001000000002001100010005001700021035001500038035001500053100004100068101000800109102000700117105001800124106000600142110001600148200004300164207009300207210002900300215003400329517006300363710004700426801003000473801001800503801003000521830000900551856014500560945001400705955014200719991001500861991003600876013303988000112639520130319051811.0 asib0035591 a0001126395 a19990310a19219999 0frey0103 ba0 afre aFR ay  ar aau 10aRecueil de l'Académie de législation 1a4e série, t.1(1920/21)-5e série, t.19(1949) ; 5e série, t.1(1951)-6e série,t.7(1981) aToulousec[s. n.]d1921- d28 cm, puis 25 cm, puis 24 cm10aRecueil de l'académie de législation fondée à Toulouse02aAcadémie de législationc(Toulouse)4340 3aFRbAbesc20080213gAFNOR 3aFRbSFgAFNOR 3aFRbAbesc20070115gAFNOR asdy04 uhttp://gallica.bnf.fr/ark:/12148/cb34410463t/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1920-1937) bCOL8*08421 b4eme série vol. 7 (1926) -vol. 11 (1935) ; vol. 14 (1938) ; 6eme série vol. 4 (1963) -vol. 4 (1966)cParisdMagasins/AnnexeeCOL8°0842 aPériobTZ anumer0 (compléments gallica ?)02549cas0 2200517 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147105001800154106000600172110001600178200017600194207001000370210002600380301013100406301010400537326001100641327021600652430011400868512012700982512012601109517010901235517011001344606002701454606004801481606002601529676000801555710006801563711009901631801003001730801002301760801003001783802000701813856005501820955005301875972000901928992002501937992001201962992005701974113163592000108639020130319051811.01 a1955-0502 a113163223 aissn19550502 a0001086390 a20070312a20079999k y0frey50 ba0 afre aFR ay  ar aaku uu 10aRecueil de la réglementation relative à l'exercice des activités bancaires et financièresfService de la réglementation bancaire et financière de la Banque de France 1a2006- a[Paris]cCCLRFd2007- aUn seul ISSN est attribué à cette publication en 2 volumes qui ne sont ni publiés ni vendus séparément (Europe et France) aISSN mentionné sur la dernière page : 1169-8470 (correspond à la période de parution 198X-2000) aAnnuel1 aRecueil de la réglementation européenne relative à l'exercice des activités bancaires et financièresaRecueil de la réglementation française relative à l'exercice des activités bancaires et financières 1tRecueil des textes réglementaires relatifs à l'exercice des activités bancaires et financièresx1628-127610aRecueil de la réglementation relative à l'exercice des activités bancaires et financièreseréglementation européenne10aRecueil de la réglementation relative à l'exercice des activités bancaires et financièreseréglementation française10aRecueil de la réglementation française relative à l'exercice des activités bancaires et financières10aRecueil de la réglementation européenne relative à l'exercice des activités bancaires et financières aBanquesxDroityFrance aBanquesxDroityPays de l'Union européenne aEntreprisesxFinances a34602aComité de la réglementation bancaire et financièrec(France)02aBanque de FrancebComité consultatif de la législation et de la réglementation financières 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20080909 3aFRbAbesc20071026gAFNOR a074 uhttp://www.banque-france.fr/fr/supervi/supervi.htm1 b(2007) -....cParisdMagasins/AnnexeeP 4° 6508 aZGRA aGEO RA4.06 France 01 aDEW 346 aGEO RA1.01 Communautés européennes, Pays de la CEE01711cas0 2200433 450 001001000000002001100010005001700021011001400038035001400052035001400066035001800080035001700098035001700115035001500132100004100147101000800188102000700196105001800203106000600221110001600227200017600243210003200419300006300451430011200514510008800626530008900714531005800803601005700861606004600918710004000964801003001004801001801034801002301052802000701075856008201082955005501164955004301219991001501262003008428000112747320130319051811.0 a0074-4441 a038859637 a060622822 afrBN015920645 accn0074-4441 aissn00744441 a0001127473 a19931018a19479999 0fre 0103 ba0 amul aNL ay  ar aak 10aRecueil des arrêts, avis consultatifs et ordonnancesfCour internationale de justice =dReports of judgments, advisory opinions and ordersfInternational Court of Justice aLeydecA.W. Sijthoffd1947- aFascicules constituant un volume annuel, pourvu d'un index 1tCour permanente de justice internationale. Série A/B. Arrêts, ordonnances et avis consultatifsx1812-021010aReports of judgments, advisory opinions and orders / International Court of Justice10aReports of judgments, advisory opinions and ordersb(International Court of Justice) 0aRep. judgm. advis. opin. ordersb(Int. Court Justice)02aCour internationale de justicexPériodiques2rameau aDroit internationalxPériodiques2rameau02aCour internationale de justice4070 3aFRbAbesc20080122gAFNOR 3aFRbBNgAFNOR 3aFRbISSNc20020308 a004 uhttp://www.icj-cij.org/docket/index.php?p1=3zAccès libre au texte intégral1 b(1947) -(1987)cParisdMagasins/AnnexeeCOL8°10881 b()cParisdMagasins/AnnexeeCOL8°7140 aPériobTZ02207nas 2200433 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200004200160207005300202210003100255300016700286326001600453430006900469440005600538517001800594517014300612517016800755517012100923601005401044710004001098801003001138801002301168830010801191830005801299856013301357955005501490957017601545991001801721992002201739992001201761037670433000108558620130319051811.01 a0242-5483 aFNSP159690 a0000022069 a19910117b18481954 ba0 afre aFR ar aafa 10aRecueil des arrêts du Conseil d'Etat 1a2e série, t. 18 (1848)-t. 116 (1946)a1947-1954 aPariscDelhommed1848-1954 aLe numéro et la date inscrits sur la page de titre du premier volume sont erronés : dix-huitième en 1848. Ce volume correspond en fait au dix-septième de 1847 aIrrégulier 1tRecueil des arrêts du Conseil ou ordonnances royalesx1164-6330 1aRecueil des décisions du Conseil d'Etatx0249-727110aRecueil Lebon10aRecueil des arrêts du Conseil d'Etat statuant au contentieux, des décisions du Tribunal des conflits et de la Cour des Comptes 1880-192010aRecueil des arrêts du Conseil d'Etat statuant au contentieux, des décisions du Tribunal des conflits, de la Cour des Comptes et du Conseil des prises (1921-1946)10aRecueil des arrêts du Conseil d'Etat statuant au contentieux et des décisions du Tribunal des conflits (1947-1954)02aFrancebConseil d'Etatc(1799-....)xPériodiques02aFrancebConseil d'Etatc(1799-....) 3aFRbAbesc20050726gAFNOR 3aFRbISSNc20030523 amanque les 2 premières notices du recueil Lebon pour les années 1799-1847à récupérer dans le SUDOC aLa collection à partir de 1900 est conservée au 13U4 uhttp://gallica.bnf.fr/ark:/12148/cb343630608/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 b(1848) -(1954)cParisdMagasins/AnnexeeP 8° 03851 b(1849) -(1858) ; (1859) -(1874) ; (1875) -(1884) ; (1885) -(1894) ; (1895) -(1904) ; (1905) -(1924) ; (1925) -(1934) ; (1935) -(1954)cParisdMagasins/AnnexeeP index 0842 aexempb201103 aGEO RA4.06 France aDEW 34802139nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116106000600123110001600129200004200145207005600187210003100243300016700274326001600441430006900457440005600526517001800582517014300600517017100743517012400914601005401038710004001092830010801132830005801240856010001298955004801398955005501446957017601501991001801677992002201695992001201717037670433000002206920130313091818.01 a0242-5483 aFNSP159690 a19910117b18481954 ba0 afre aFR ar aafa 10aRecueil des arrêts du Conseil d'Etat 1a2e série, t. 18 (1848)-t. 116 (1946)‎a1947-1954 aPariscDelhommed1848-1954 aLe numéro et la date inscrits sur la page de titre du premier volume sont erronés : dix-huitième en 1848. Ce volume correspond en fait au dix-septième de 1847 aIrrégulier 1tRecueil des arrêts du Conseil ou ordonnances royalesx1164-6330 1aRecueil des décisions du Conseil d'Etatx0249-727110aRecueil Lebon10aRecueil des arrêts du Conseil d'Etat statuant au contentieux, des décisions du Tribunal des conflits et de la Cour des Comptes 1880-192010aRecueil des arrêts du Conseil d'Etat statuant au contentieux, des décisions du Tribunal des conflits, de la Cour des Comptes et du Conseil des prises‎ (1921-1946)10aRecueil des arrêts du Conseil d'Etat statuant au contentieux et des décisions du Tribunal des conflits‎ (1947-1954)02aFrancebConseil d'Etatc(1799-....)xPériodiques02aFrancebConseil d'Etatc(1799-....) amanque les 2 premières notices du recueil Lebon pour les années 1799-1847à récupérer dans le SUDOC aLa collection à partir de 1900 est conservée au 13U4 zPériodique numérisé sur Gallicauhttp://gallica.bnf.fr/ark:/12148/cb343630608/date.r=.langFR1 b(1900) -(1954)cParisdMagasinseP 8° 03851 b(1800) -(1899)cParisdMagasins/AnnexeeP 8° 50751 b(1849) -(1858) ; (1859) -(1874) ; (1875) -(1884) ; (1885) -(1894) ; (1895) -(1904) ; (1905) -(1924) ; (1925) -(1934) ; (1935) -(1954)cParisdMagasins/AnnexeeP index 0842 aexempb201103 aGEO RA4.06 France aDEW 34801437cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200005800179207006600237210005700303440005300360517014400413601005400557606006500611710004000676801003000716801002300746802000700769856014500776955005500921991002000976991005400996992002501050038674432000108559620130319051812.0 a1164-6330 accn1164-6330 aissn11646330 a0001085596 a19911126b18211847 0fre 0103 ba0 afre aFR ar aaj 10aRecueil des arrêts du Conseil ou ordonnances royales 1aT. 1 (1821)-t. 12 (1830)a2e série, t. 1 (1831)-t. 17 (1847) aPariscBureau d'administration du Recueild1821-1847 1tRecueil des arrêts du Conseil d'Etatx0242-548310aRecueil des arrêts du Conseil ou ordonnances royales rendues en Conseil d'Etat sur toutes les matières du contentieux de l'administration01aFrancebConseil d'Etatc(1799-....)xPériodiques aContentieux administratifyFrancexPériodiquesz19e siècle02aFrancebConseil d'Etatc(1799-....) 3aFRbAbesc20050616gAFNOR 3aFRbISSNc20030523 a074 uhttp://gallica.bnf.fr/ark:/12148/cb344487605/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1821-1847)1 b(1839) -(1847)cParisdMagasins/AnnexeeP 8° 0385 aPériobTP01 P8 anumer0 (1839 1840 1841 en complément de gallica) aGEO RA4.06 France 0101284nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005400154207002500208210002500233210003800258326001100296517010300307606006300410676000800473710003600481830006100517856004300578856003700621955006700658955004600725957008700771972000900858992002200867992001200889992000900901039610691000002206320130319051812.01 a0532-3940 aFNSP159680 a0000022063 a19910117a19609999 ba0 afre aFR aaka 10aRecueil des décisions du Conseil constitutionnel 1a1958 publié en 1960 aPariscDallozd1993- aPariscImpr. nationaled1960-1992 aAnnuel10aRecueil des décisions du Conseil constitutionnel et de la Commission constitutionnelle provisoire aDroit constitutionnelyFrancexJurisprudencexPériodiques a34202aFrancebConseil constitutionnel aToute la collection est conservée au 13 U jusqu'en 19994 uhttp://www.conseil-constitutionnel.fr/ zAccès libre au texte intégral.1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 3421 b(1958) -....cParisdMagasinseP 8° 54711 b(1959-1988), (1989-1993)zIndex intitulé Jurisprudence du Conseil constitutionnel aZCAD aGEO RA4.06 France aDEW 342 aPBUL01702nas 2200445 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004500154210002400199320011900223326001500342430005300357517001800410601004800428601005400476606005100530676000800581712004000589830005900629830003200688856006700720856010800787856006100895856003700956955006900993955004601062957007801108972000901186991001801195992002201213992001201235992000901247039419649000002206820130319051812.01 a0249-7271 aFNSP159688 a0000022068 a19910117a19559999 ba0 afre aFR aaga 10aRecueil des décisions du Conseil d'Etat aPariscSireyd1955- aEn supplément paraissent les Tables décennales de la Jurisprudence du Conseil d'Etat et du Tribunal des conflits aBimestriel 1aRecueil des arrêts du Conseil d'Etatx0242-548310aRecueil Lebon01aFrancebTribunal des conflitsxPériodiques01aFrancebConseil d'Etatc(1799-....)xPériodiques aTribunaux administratifsyFrancexPériodiques a34002aFrancebConseil d'Etatc(1799-....) aToute la collection est conservée rue Saint-Guillaume a1955-1999 conservé au 13 U4 uhttps://acces-distant.sciences-po.fr/fork?http://www.dalloz.fr zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.conseil-etat.fr/cde/fr/base-de-jurisprudence/ zAccès libre au texte intégral.1 bLes 3 dernières annéescParisdSalle des périodiqueseDEW 3401 b(1955) -....cParisdMagasinseP 8° 03851 b1955-1964, 1965-1974, 1975-1984, 1985-1994cParisdMagasinseP Index 0842 aZCAD aexempb201103 aGEO RA4.06 France aDEW 348 aPBUL01309nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001391100016001452000046001612100028002073000073002353260012003084400042003205300046003626060032004086060047004406760008004878560149004959550098006449570207007429920022009499920012009710000134671000013467120130319051812.0 a0242-6897 aFNSP542285 a0000134671 a19940824b18011949 ba0 afre aFR ar aafa 10aRecueil général des lois et des arrêts aPariscSireyd1801-1949 ales années 1914 à 1923 ne contiennent pas la section Lois annotés amensuel 1aRecueil Sirey (0242-6900)

00aRecueil général des lois et des arrêts aDroityFrancexPériodiques aDroityFrancexJurisprudencexPériodiques a3404 uhttp://gallica.bnf.fr/ark:/12148/cb34363188x/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé de 1791 à 1900 sur Gallica1 bTome 1/2, 1791/1801 ----> tome 113, 1913, 1914 ----> 1949cParisdMagasins/AnnexeeP 4° 52231 b1791/1850, 1851/1860, 1861/1870, 1871/1880, 1881/1890, 1891/1900,1901/1910, 1911/1915, 1916/1920, 1921/1925, 1926/1935, 1936/1940, 1941/1945, 1946/1950 et 1941/1950cParisdMagasins/AnnexeeP Index 0732 aGEO RA4.06 France aDEW 34801333cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118105001800125106000600143110001600149200001900165210002300184210003200207326001100239430004200250452003900292514007400331514005700405606003600462606004000498710007700538801003000615801002400645802000700669856013200676955009300808972000900901992001600910992002100926170074293000124780220140114173209.01 a2308-0906 aissn23080906 a20130617a20049999u y0frey50 ba0 aeng aDE ay 0  ar aakah 0uu 10aRedescriptions aOslocSoPhid2004-1 aMünstercLIT Verlagd2005- aAnnuel 1tFinnish yearbook of political thought 1tRedescriptions (Online)x2308-091410aYearbook of political thought, conceptual history and feminist theory10aYearbook of political thought and conceptual history2 aScience politiquexPériodiques2 aPhilosophie politiquexPériodiques02aUniversity of JyväzskyläbDepartment of Social Sciences and Philosophy 3aFRbAbesc20130904gAFNOR 3aFRbISSNc201300617 a004 uhttp://www.jyu.fi/yhtfil/redescriptions/zAccès au texte intégral de 2005 à 2009 et uniquement au sommaire pour 2010 et 20111 bVol. 9 (2005) -vol. 12 (2008) ; vol. 15 (2011) -....cParisdMagasins/AnnexeeP 8° 7215 aZSAB aDEW 320-321 aGEO RQ Universel01351cas0 2200361 450 00100100000000200110001000500170002101100140003803500170005203500170006903500150008604000110010110000410011210100080015310200070016110500180016811000160018620000280020220700320023021000350026232600150029760600440031280100300035680100230038680200070040985601610041685600790057785601090065685601080076595500830087399200120095699200210096803933922X000114390820130319051813.01 a0276-3877 accn0276-3877 aissn02763877 a0001143908 aRELBD6 a19810429a19819999k y0frey0103 ba0 aeng aUS ay 0  aaja 0uu 14aThe Reference librarian 0aNo. 1/2 (fall/winter 1981)- aNew YorkcHaworth Pressd1981- aSemestriel aSciences de l'informationxPériodiques 3aFRbAbesc20080123gAFNOR 3aFRbISSNc20051021 a014 uhttps://acces-distant.sciences-po.fr/fork?http://www.haworthpress.com/store/product.asp?sid=1QV7E6J82FNW9PQBGC4V1JRUBL5UCTSA&sku=J120&detail=TOCList#TOCList zContenu: sommaires et résumés des n°s depuis le vol. 1, n° 1/2 de 19824 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t792306953db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 47 no. 1 (2007) -vol. 49 no. 2 (2008)cParisdMagasins/AnnexeeP 8° 7033 aDEW 020 aGEO RQ Universel01223nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005000154210006900204326002300273326002600296606003700322606005200359801002100411830010100432856012400533856010800657955006700765972000900832991001800841992001400859992002400873013307657000003677720140106164233.01 a0034-2971 aFNSP206873 a0000036777 a19900101a19619999 ba0 afre aBE aahu 10aReflets et perspectives de la vie économique aaBruxellescRecherche et diffusion économiquescDe Boeckd1961- aTrimestrielb1997- aBimestrielb1961-1996 aEconomie politiquexPériodiques aHistoire économiquez20e sièclexPériodiques 3aFRbCCN0034-2971 aVol. 1, no. 1, 1961---> vol. 23, 1984 < P 8° 1962 > : collection donnée au CTL en juillet 20014 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-reflets-et-perspectives-de-la-vie-economique.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 24 no. 1 (1985) -....cParisdMagasins/AnnexeeP 8° 1962 aZPAY aexempb201001 aDEW 330.9 aGEO RA4.04 Belgique01203nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004300154210008200197326002400279326002600303606005400329606006000383710006800443856009900511856011200610955009600722972000900818991001800827992002800845992001600873132489074000015583320130319051813.01 a1315-2378 aFNSP606969 a0000155833 a19900101a19949999 ba0 aspa aVE aaia 10aReforma y democraciaerevista del CLAD aCaracascCentro Latinoamericano de Administración para el Desarrollodc1994- a3 nos par anb1997- aSemestrielb1994-1996 aScience politiqueyAmérique latinexPériodiques aInstitutions politiquesyAmérique latinexPériodiques02aCentre latinoaméricain d'administration pour le développement4 uhttp://www.clad.org.ve/portal/publicaciones-del-clad/revista-clad-reforma-democracia/articulos zContenu : sommaires, résumés et texte intégral (à l'exception du dernier n°) depuis le n°1, nov. 19941 bno. 1 (jan-1994) -....cParisdMagasins/AnnexeeP 8° 6114wManquant : nos 22, 23, 24, 2002 aZCAD aexempb201212 aGEO RD Amérique latine aDEW 320-32101681cas0 2200433 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200005500179210005200234215001000286305003300296326001400329421009300343423005900436430005500495434009300550447004800643447005100691530003300742531002600775606005600801702004200857712005300899801003000952801002300982802000701005856014501012955007001157991002001227038591448000109459020130319051814.0 a1153-9941 accn1153-9941 aissn11539941 a0001094590 a19921112b18811930uuuy0frey0103 ba0 afre aFR ar aagu uu 13aLa Réforme socialefSociété d'économie sociale aPariscSociété d'économie socialed1881-1930 d24 cm aRevue fondée par F. Le Play aBimensuel |tBulletin - Société internationale des études pratiques d'économie socialex1153-995X 1tAnnales de la charité et de la prévoyancex1153-9992 1tAnnuaire de l'économie sociale (Tours)x1153-9933 |tBulletin - Société internationale des études pratiques d'économie socialex1153-995X 1tRevue d'économie rurale (Paris)x1153-9968 1tRevue d'économie sociale et ruralex1153-997613aLa Réforme socialeb(Paris) 0aReform. soc.b(Paris) aEconomie sociale et solidairexPériodiques2rameau 1aLe PlaybFrédéricf(1806-1882)434002aSociété internationale de science sociale4340 3aFRbAbesc20070402gAFNOR 3aFRbISSNc20070222 a074 uhttp://gallica.bnf.fr/ark:/12148/cb344378422/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1881-1934)1 bvol. 1 (1881) -vol. 50 (1930)cParisdMagasins/AnnexeeP 8° 0757 aPériobTP02 P800961nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200008900163210004700252326001500299530003900314606002900353710004100382801001300423856003500436856007600471955009100547972000900638992001200647115374205000047686120130319051815.01 a0229-5113 a0000476861 a a19819999k fre ba0 aeng aCA a 0  ar aag z 0 10aRefugeeCanada's periodical on refugeesfCentre for Refugee Studies, York University aTorontocCentre for Refugee Studiesd1981- aBimestriel10aRefugeb(Toronto, English edition) aRéfugiésxPériodiques02aCentre for Refugee Studies (Toronto) 0aFRbFNSP4 uhttp://www.yorku.ca/crs/refuge ztexte intégral des articles à partir du vol. 19, n° 3, December 20001 bvol. 19 no. 2 (jan-2001) -vol. 20 no. 4 (aou-2002)cParisdMagasins/AnnexeeP 4° 6937 aZSAB aDEW 32501357nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200007500139207006400214210008000278326003000358326002600388326002400414421003600438430007700474530003700551606002900588710005700617856015500674955007100829955007700900972000900977992002100986992001201007040150267000003693920130529142042.01 a1014-0905 aFNSP207199 a19900101b19812007 f ba0 afre aCH aaga 10aRéfugiés‎fHaut commissariat des Nations Unies pour les réfugiés 1ano. 3 (1981)-no. 24(1983) ; n.s. no. 1(1984)-no. 148 (2007) aGenèvecHaut Commissariat des Nations Unies pour les réfugiésd1981-2007 aTrimestriel‎b1992-2007 aMensuel‎b1982-1991 aBimestriel‎b1981 1aRéfugiés magazine (0254-5691) 1aHCR. Haut Commissariat des Nations Unies pour les réfugiés,x0251-645410aRéfugiés‎bGenève. Imprimé aRéfugiésxPériodiques02aNations UniesbHaut commissariat pour les réfugiés4 uhttp://www.unhcr.ch/publikationen/zeitschrift-fluechtlinge.htmlzAccès libre en texte intégral à leurs nombreuses études, rapports et publications1 bno. 118 (2000) -no. 148 (2007)cParisdMagasins/AnnexeeP 4° 68631 bno. 3 (mai-1981) -no. 117 (oct-1999)cParisdMagasins/AnnexeeP F° 0362 aZGRA aGEO RQ Universel aDEW 32501007nls 2200373 i 450 0010011000000020011000110050017000220110005000390350015000441000041000591010008001001020007001081060006001151100016001211350018001372000048001552070005002032100005002082300005002133000101002183260022003193300005003413360056003463370017004026070034004196070026004538010013004798300005004928560031004979550005005289920032005339920056005659920012006210000405091000040509120130319051816.0 a a0000405091 a a19969999k fre 01 ba0 afre aFR az aag z  adr 10aRegard sur l'Estb[Ressource électronique] 1a a a aSommaires depuis le n°1 1996 et texte intégral de la revue depuis le n°14, février-mars 1999 a5 numéros par an a aDonnées textuelles accessibles uniquement en ligne aFichiers HTM aEurope de l'EstxPériodiques aEx-URSSxPériodiques 0aFRbFNSP a4 uhttp://www.regard-est.com/1 r aGEO RA2.02 Europe orientale aGEO RA7.02 Etats successeurs de l'Union soviétique aDEW 94701052nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210002600191326001600217430004500233436003900278436004100317530002700358606002900385607002500414710003000439856002700469955010800496955006700604972000900671992002200680992001200702040383318000015545020131015172813.01 a1262-0092 aFNSP606120 a0000155450 a19900101a19959999 ba0 afre aFR aafa 00aRegardsele mouvement des idées aPariscRegardsd1995- aTrimestriel 1tRegards :epolitique, société, culture 1aAvancées (Paris. 1994)x1257-872X 1tRévolution (Paris. 1980)x0246-940510aRegardsb(Paris, 1995) aActualitéxPériodiques aFrancexPériodiques02aParti communiste francais4 uhttp://www.regards.fr/1 bno. 86 (jan-2003) -no. spécial (nov-2003) ; no. 1 (jan-2004) -....cParisdMagasins/AnnexeeP 4° 69491 bno. 1 (avr-1995) -no. 85 (dec-2002)cParisdAnnexeeP F° 0533 aZPAY aGEO RA4.06 France aDEW 05001122nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009200154210005200246326001500298530009200313606004500405676000800450710007500458856002500533856004800558955006600606955005900672972000900731991001800740992002200758992001600780039849082000000807620130319051816.01 a0988-6982 aFNSP113905 a0000008076 a19900523a19879999 ba0 afre aFR aaja 10aREGARDSeRencontres enseignement gestion actions recherches dossiers sécurité sociale aSaint-EtiennecCNESSSaPariscÉconomicad1987- aSemestriel00aREGARDS. Rencontres enseignement gestion actions recherches dossiers sécurité sociale aSécurité socialeyFrancexPériodiques a36002aCentre national d'études supérieures de sécurité socialec(France)4 uhttp://www.cnesss.fr zsommaires de la revue depuis le n°14, 19981 bLes 3 dernières annéescParisd27, Salle 4e étageeDEW 3601 bno. 1 (1987) -....cParisdMagasins/AnnexeeP 8° 5121 aZGRA aexempb201011 aGEO RA4.06 France aDEW 360-36301069nas0 2200301 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003700139207002200176210005200198301005600250326001500306606004000321606003900361606003600400801003000436856011000466856010800576955006200684972000900746992001200755113477767000107887020140106121303.01 a1956-7413 a0001078870 a20070323a20079999 frey0103 ba0 afre aFR aaj 10aRegards croisés sur l'économie 0aN°1 (mars 2007)- a[S.l.]cRegards Croisés sur l'Économied2007- aDemande de numérotation ISSN en cours par le CR 18 aSemestriel aPolitique économiquexPériodiques aSociologie politiquexPériodiques aPolitique fiscalexPériodiques 3aFRbAbesc20070323gAFNOR4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-regards-croises-sur-l-economie.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno.1 (mar-2007) -....cParisdMagasins/AnnexeeP 8° 6949 aZPAY aDEW 33001010nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200008200163210004600245326001500291606002900306710010600335801001300441856004200454856010600496955006000602972000900662992001200671992002500683039973549000057390920131008113832.01 a1164-0871 a0000573909 a a19919999k fre ba0 afre aFR a 0  ar aaj z 0 10aRegards sociologiquesfUniversité Marc Bloch, Faculté des sciences sociales aStrasbourgcUniversité Marc Blochd1991- aSemestriel aSociologiexPériodiques02aUniversité Marc Blochc(Strasbourg)bUFR des sciences sociales, pratiques sociales et développement 0aFRbFNSP4 uhttp://www.regards-sociologiques.com/ zContenu : texte intégral des articles gratuit à partir de 1991 à l'exception des derniers numéros1 bno. 22 (2001) -....cParisdMagasins/AnnexeeP 4° 7003 aZPAY aDEW 301 aGEO RA4.06 France 0101258nas 2200349 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000710013921000500021032600120026053000360027260700250030860700460033367600080037971000530038780100210044085600650046185600520052695500780057895701340065697200090079099100180079999200220081799200570083999200120089603292139X000000528520131029104045.01 a0337-7091 aFNSP107808 a19900101a19742011 ba0 afre aFR aafu 10aRegards sur l'actualitéfDirection de la Documentation française aPariscLa Documentation françaised1974-2011 aMensuel10aRegards sur l'actualitébParis aFrancexPériodiques aPays de l'Union européennexPériodiques a00102aFrancebDirection de la documentation française 3aFRbCCN0337-70914 uhttp://www.ladocumentationfrancaise.fr/revues/ra/index.shtml zContenu : sommaires depuis le n° 271, 2001 -->1 bno. 1 (1974) -no. 375 (nov/déc-2011)cParisdMagasins/AnnexeeP 8° 34721 bno. 1 (1974) -no. 23 (1976) ; no. 24 (1976) -no. 53 (1979) ; no. 176 (1991) -no. 210 (1995)cParisdMagasins/AnnexeeP Index 0290 aZPAY aexempb200911 aGEO RA4.06 France aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 94001269nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820001060015421000240026032600180028451700340030253000450033660700530038171000810043485600460051585600510056185601110061285601080072395500640083197200090089599200250090499200140092903993022X000008665920140106173039.01 a1156-8992 aFNSP383860 a0000086659 a19900101a19919999 ba0 afre aFR aaga 10aRegards sur l'économie allemandefCentre d'information et de recherche sur l'allemagne contemporaine aPariscCIRACd1991- a5 n°s par an10aBulletin économique du CIRAC 0aRegards sur l'économie allemandebParis aAllemagnexConditions économiquesxPériodiques02aCentre d'information et de recherche sur l'Allemagne contemporainec(France)4 uhttp://www.cirac.u-cergy.fr/sommaires.php zContenu : sommaires depuis le n° 1, Mars 19914 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-regards-sur-l-economie-allemande.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 5 (fév-1992) -....cParisdMagasins/AnnexeeP 4° 6210 aZPAY aGEO RA5.01 Allemagne aDEW 330.900919nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154210002200190300006200212326001600274430005500290606002600345606002500371710006600396856002900462955008400491972000900575992002100584992001200605045064024000025976020130319051816.01 a1289-740X aFNSP903593 a0000259760 a19981116a19989999 ba0 afre aFR aaha 10aRegards sur les taux et changes aPariscBNPd1998- apublié seulement sur internet à partir du 2e trim. 2000 aTrimestriel 1aRegards sur les changes (0766-5326) < P 4° 4877 > aMonnaiexPériodiques aChangexPériodiques02aBanque nationale de ParisbDirection des études économiques40uhttp://www.bnpgroup.com/1 bno. 62 (3e tri-1998) -no. 68 (1er tri-2000)cParisdMagasins/AnnexeeP 4° 4877 aZGRA aGEO RQ Universel aDEW 33201246nas 2200313 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000061001412100074002023260011002765170081002875170099003686060054004677100080005218300042006018560084006438560053007279550053007809550052008339720009008859920022008949920016009160000107588000010758820130319051816.0 aFNSP455789 a0000107588 a19900101a00019999 ba0 afre aFR aaka 10aRégime spécial de la sécurité sociale dans les mines aPariscCaisse autonome de la sécurité sociale dans les minesd0001- aannuel10aRapport de gestion - Caisse autonome de la sécurité sociale dans les mines10aRapport d'activité du régime minier -Caisse autonome de la sécurité sociale dans les mines aSécurité socialexMineursyFrancexPériodiques aCaisse autonome nationale de la sécurité sociale dans les minesc(France) a1985-2005 Collection donnée au CTLES4 uhttp://www.secumines.org/index.php?option=com_content&task=view&id=45&Itemid=67 zContenu : texte intégral du rapport depuis 20051 b(1964-1979)cParisdMagasins/AnnexeeCOL.F°11661 b(1980-1984)cParisdMagasins/AnnexeeP 4° 5741 aZGRA aGEO RA4.06 France aDEW 360-36301238nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210002800185326002400213326002700237326002800264430004500292517003300337606003200370606003800402856004200440856007800482856010900560856010800669955007000777972000900847991001800856992001400874036747742000017240420130319051817.01 a1359-7566 aFNSP651570 a0000172404 a19900101a19959999 ba0 aeng aGB aaga 10aRegional & federal studies aLondoncCassd1995-.... a5 nos par anb2008- aTrimestrielb2002-2007 a3 nos par anb1995-2001 1aRegional politics and policy,x0959-231810aRegional and federal studies aRégionalismexPériodiques aEconomie régionalexPériodiques4 uhttp://www.frankcass.com/jnls/rfs.htm zContenu : sommaires depuis le vol. 5, n°1 ; résumé du n° à paraître4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713636416db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 1 (pri-1995) -....cParisdMagasins/AnnexeeP 8° 5686 aZSAB aexempb201210 aDEW 338.900988nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000037001552100028001923260011002205300037002316070034002687120054003028560128003568560108004849550057005929720009006499920028006589920012006860000148464000014846420130319051817.01 a0218-3056 aFNSP582975 a0000148464 a19950203a19929999 ba0 aeng aSG aaka 10aRegional outlook. Southeast Asia aSingaporecISEASd1992- aAnnuel00aRegional outlook. Southeast Asia aAsie du Sud-EstxPériodiques02aInstitute of Southeast Asian Studiesc(Singapour)4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=JZJ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1993/1994)-....cParisdMagasins/annexeeP 4° 6429 aZPAY aGEO RI2 Asie du Sud-Est aDEW 95901266nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210004900175326001900224606003700243606004200280606003200322710004400354801002100398856010300419856010800522856010900630856010800739955007000847972000900917992001400926038783207000003687820131220120949.01 a0034-3404 aFNSP207067 a0000036878 a19900101a19679999 ba0 aeng aGB aafu 10aRegional studies aCambridgecCambridge University Pressd1967- a10 n°s par an aEtudes régionalesxPériodiques aGéographie économiquexPériodiques aRégionalismexPériodiques02aRegional Studies Associationc(Londres) 3aFRbCCN0034-34044 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=104661 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713393953db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mai-1967) -....cParisdMagasins/AnnexeeP 4° 3022 aZPAY aDEW 330.901012nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154207002600175210005200201326001600253530003200269607003000301710004600331801002100377856002700398856005100425955014700476972000900623991001800632992002400650992001200674039270572000003685820130319051817.01 a0254-7988 aFNSP207023 a0000036858 a19900101a19829999 ba0 aeng aPK aahu 10aRegional studies 1avol. 1, no. 1 (1982)- aIslamabadcInstitute of Regional Studiesd1982- aTrimestriel 0aRegional studiesbIslamabad aAsie du SudxPériodiques02aInstitute of Regional Studies (Islamabad) 3aFRbCCN0254-79884 uhttp://www.irs.org.pk/ zContient le dernier numéro en texte intégral1 bvol. 1 no. 1 (jan-1982) -....cParisdMagasins/AnnexeeP 8° 4701zManquant : vol. 6, no. 3, 1988 ; vol. 7, no. 4, 1989 ; vol. 17, no. 3, 1999 aZSAB aexempb201104 aGEO RI1 Asie du Sud aDEW 95401395nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003500163210008200198326001100280437005200291453006500343517007800408517004400486607011000530607005600640710001300696801001300709856012400722856005000846955005500896972000900951992005700960992001601017059603453000066535520130319051817.01 a1681-9314 a0000665355 a a20019999 fre 01 ba0 amul aLU a 0  ar aak z 0 10aRégionseannuaire statistique aLuxembourgcOffice des publications officielles des Communautés européennes aAnnuel 1tRegionen : statistisches jahrbuch...x1609-5057 1tRegionen : statistisches jahrbuch...(2001. Print)x1681-929210aPanorama de l'Union européenne. Régions : annuaire statistique...(2001)10aAnnuaire régional d'Eurostat... (2007) aPays de l'Union européennexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques aPays de l'Union européennexRégionsxPériodiques10aEUROSTAT 0aFRbFNSP4 uhttp://epp.eurostat.cec.eu.int/portal/page?_pageid=1073,46587259&_dad=portal&_schema=PORTAL&p_product_code=KS-AF-04-001 zContenu : texte intégral du dernier annuaire1 b(2001) -(2007)cParisdMagasins/AnnexeeP 4° 4688 aZPAY aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 310-31900960nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000150015421000510016932600160022053000470023660600490028360600640033271000390039680100210043585600580045695501000051497200090061499200230062399200120064603909166X000003688120130319051818.01 a0147-0590 aFNSP207072 a0000036881 a19900101a19779999 ba0 aeng aUS aahu 10aRegulation aWashingtoncRegulation Foundation, etc.d1977- aTrimestriel10aRegulationb(Washington, D.C. 1977. Print) aDéréglementationyEtats-UnisxPériodiques aRèglements (droit administratif)yEtats-UnisxPériodiques02aCato Institutec(Washington, D.C.) 3aFRbCCN0147-05904 uhttp://www.cato.org/pubs/regulation/regultn-arch.html1 bvol. 1 no. 1 (jul/aou-1977) -....cParisdMagasins/AnnexeeP 4° 4338wManquant: vol. 11 (1987) aZPAY aGEO RC2 Etats-Unis aDEW 34301001cas0 2200301 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116106000600123110001600129200008000145207003200225210002400257326001600281517000700297606004400304710005400348801003000402856005100432856013200483955006300615972000900678992001200687103965378000099320520130319051819.01 a1645-9199 a0000993205 a20060628a20049999k y1frey0103 ba0 apor aPT ar aaha c 10aRelações internacionaisfInstituto português de relaçoes internacionais 0aVol.1, n° 1 (março 2004)- aLisboacIPRId2004- aTrimestriel10aRI aRelations internationalesxPériodiques02aInstituto português de relações internacionais 3aFRbAbesc20070203gAFNOR4 uhttp://www.ipri.pt/publicacoes/publicacoes.php zContenu : sommaires et résumés depuis le n°1, mars 2004, sélection d'articles en texte intégral depuis le n°17, mars 20081 bno. 1 (mar-2004) -....cParisdMagasins/AnnexeeP 8° 6907 aZSAB aDEW 32701500nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005000154210003800204326001600242430005700258510002500315606005000340606006100390606004700451710008300498801002100581856003600602856009700638856003600735856006000771955012300831957010200954972000901056991001801065992001901083992001201102038783363000003688620130319051821.01 a0034-379X aFNSP207078 a0000036886 a19900101a19509999 ba0 amul aCA aahu 10aRelations industrielled=Industrial relations aQuébeccUniversité Lavald1950- aTrimestriel 1aBulletin des relations industriellesxISSN 0380-751710aIndustrial relations aRelations industriellesyCanadaxPériodiques aRelations industriellesyAmérique du NordxPériodiques aSyndicatsyAmérique du NordxPériodiques02aUniversité Lavalc(Québec, Canada)bDépartement des relations industrielles 3aFRbCCN0034-379X4 uhttp://www.rlt.ulaval.ca/ri-ir/ zContenu : sommaires et résumés depuis le vol. 51, n°4, 1996 ; texte intégral depuis 19984 uhttp://www.erudit.org/revue/ri/ zContenu : texte intégral depuis le vol.53, no.1 (1998)1 bvol. 6 no. 1 (dec-1950) -vol. 10 no. 4 (sep-1955) ; vol. 30 no. 1 (avr-1975) -....cParisdMagasins/AnnexeeP 8° 16601 bvol. 36 (1981) -vol. 45 (1990)cParisdMagasins/Annexezse trouve dans le no. 4, 1990 de la revue aZPAY aexempb201102 aGEO RC1 Canada aDEW 33101593nas 2200421 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154207001800184210002900202210005200231326001600283606004400299676000800343710007200351712007800423712008900501712003800590801002100628830002200649856010500671856010800776955006700884955005600951957009501007972000901102991001801111992002101129992001201150992000901162039523365000000528820130319051821.01 a0335-2013 aFNSP107811 a0000005288 a19900101a19749999 ba0 afre aFR aahu 10aRelations internationales 1ano. 1 (1974)- aPariscSoliecd1974-2004 aaPariscPresses universitaires de Franced2005- aTrimestriel aRelations internationalesxPériodiques a32702aInstitut universitaire de hautes études internationalesc(Genève)02aInstitut d'histoire des relations internationales contemporainesc(Paris)02aSociété d'études historiques des relations internationales contemporaines (Paris)02aInstitut Pierre Renouvinc(Paris) 3aFRbCCN0335-2013 a1974-1999 au 13 U4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-relations-internationales.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bno. 1 (mai-1974) -....cParisdMagasinseP 8° 34561 bno. 1 (1974) -no. 76 (1993) ; no. 77 (1994) -no. 116 (2003)cParisdMagasinseP Index 0749 aZCAD aexempb201001 aGEO RQ Universel aDEW 327 aPBUL01057nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000087001502100037002372300024002743260011002986010036003096060037003456070052003827100022004348010013004568560120004698560087005899550005006769920024006819920012007059920014007170001134316000113431620130319051821.0 a0001134316 a a19969999k fre 01 ba0 apor aPT ar aak z  adr 10aRelatório Anual- Banco de Portugalb[Ressource électronique] /fBanco de Portugal aLisboacBanco de Portugald1996- aRevue électronique aAnnuel02aBanco de PortugalyPériodiques aFinancesyPortugalxPériodiques aPortugalxConditions économiquesxPériodiques02aBanco de Portugal 0aFRbFNSP4 uhttp://www.bportugal.pt/pt-PT/EstudosEconomicos/Publicacoes/RelatorioAnual/RelAnuaisAnteriores/Paginas/default.aspx zContenu : texte intégral du rapport en version portugaise et anglaise depuis 19961 r aGEO RA6.01 Portugal aDEW 332 aDEW 330.901536nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006500139210004100204326001100245441008000256441008100336452008700417530006800504601003600572606003700608607005200645710002200697856016500719955005500884955009100939955005501030972000901085991001801094992002401112992001201136992001401148039958248000006270920140106124107.01 a0870-0060 aFNSP286817 a19900101b18622011 ba0 apor aPT aaka 10aRelatório do Conselho de AdministraçãofBanco de Portugal aLisboacBanco de Portugald1862-2011 aAnnuel 1tRelatório do Conselho de Administração : a economia portuguesx2182-5874 1tRelatório do Conselho de Administração‎ : Atividade e contasx2182-5890 1tRelatorio do Conselho de Administração (Banco de Portugal. Em linha),x1646-508310aRelatório do conselho de administração‎bBanco de Portugal02aBanco de PortugalyPériodiques aFinancesyPortugalxPériodiques aPortugalxConditions économiquesxPériodiques02aBanco de Portugal4 uhttp://www.bportugal.pt/pt-PT/EstudosEconomicos/Publicacoes/RelatorioAnual/RelAnuaisAnteriores/Paginas/default.aspxzAccès libre au texte intégral depuis 19961 b(1980) -(1995)cParisdMagasins/AnnexeeP 4° 56961 b(1935) -(1936) ; (1938) ; (1948) ; (1950) -(1979)cParisdMagasins/AnnexeeCOL.F°00941 b(1893) -(1898)cParisdMagasins/AnnexeeCOL8°0698 aZGRA aexempb201312 aGEO RA6.01 Portugal aDEW 332 aDEW 330.901575nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210002800184326001600212430004300228517003200271606004300303606005200346606004100398606006400439710002100503856012800524856010800652856010900760856010800869955008300977972000901060991001801069992005601087992003201143992001401175040098729000014542720130319051822.01 a0963-7494 aFNSP574246 a0000145427 a19950106a19929999 ba0 aeng aGB aaha 10aReligion, state & society aAbingdoncCarfaxd1992- aTrimestriel 1aReligion in communist landsx0307-597410aReligion, state and society aReligion et EtatyRussiexPériodiques aReligion et EtatyEurope de l'EstxPériodiques aReligion et EtatyURSSxPériodiques aChristianisme et politiquexEglise catholiquexPériodiques02aKeston Institute4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=55P&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713444726db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 22 no. 1 (1994) -vol. 36 no. 4 (2008)cParisdMagasins/AnnexeeP 8° 6089 aZSAB aexempb201202 aGEO RA7.02 Etats successeurs de l'Union soviétique aGEO RA2.02 Europe orientale aDEW 20-2901054nas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200001000180210008300190326001100273532005900284607005200343610005400395801003000449801002300479802000700502856004000509856006700549955006300616992001200679992002500691133111075000118973720130319051824.01 a1969-9824 aissn19699824 a0001189737 a20090427a20089999k y0frey0103 ba0 afre aFR ay  ar aauu uu 10aREPAP a[Paris]cRevue d'étude politique des assistants parlementaires (REPAP)d2008- aAnnuel10aRevue d'étude politique des assistants parlementaires aFrancexPolitique et gouvernementxPériodiques0 a* Assistants parlementairesyFrancexPériodiques 3aFRbAbesc20090427gAFNOR 3aFRbISSNc20090427 a074 uhttp://www.repap.fr/telechargez.php zContenu : accès au texte intégral depuis le n° 1 (oct-2008)1 bno. 2 (avr-2009) -....cParisdMagasins/AnnexeeP 8° 7140 aDEW 320 aGEO RA4.06 France 0101590cas0 2200433 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200009400180207001000274210010800284215001000392300003500402326001100437430009100448517000900539606004300548606005300591606005200644606002800696710014700724801003000871801002300901802000700924856010900931955005301040992000901093992002201102992001601124992001601140058866434000112707720130319051824.0 a1635-9089 aissn16359089 a0001127077 a20011113a19999999k a0frey0103 ba0 afre aFR ay 0  ar aakahi 0zz010aRepères et références statistiques sur les enseignements, la formation et la recherche 1a1999- aVanvescMinistère de l'éducation nationale, Direction de la programmation et du développementd1999- d25 cm aChaque n°porte un ISBN propre aAnnuel 1tRepères et références statistiques sur les enseignements et la formationx0761-342310aRERS aSciences de l'éducationxPériodiques aEnseignementyFrancexStatistiquesxPériodiques aFormation professionnelleyFrancexPériodiques aRecherchexPériodiques02aFrancebMinistère de l'éducation nationale, de l'enseignement supérieur et de la recherchebDirection de l'évaluation et de la prospective 3aFRbAbesc20071127gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.education.gouv.fr/recherche.php?recMot=reperes+et+references&type=Simple&recPer=per&submit=OK1 b(1999) -...cParisdMagasins/Annexe:eP 8° 4858 aZGRA aGEO RA4.06 France aDEW 310-319 aDEW 370-37901367nas 2200349 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000080001552100026002353260011002614300186002724400105004586060036005636060053005996060052006527120098007048010021008028560053008239550060008769720009009369910018009459920022009639920016009859920016010010000103159000010315920130319051824.0 a0761-3423 aFNSP442746 a0000103159 a19900101b19841998 ba0 afre aFR aaku 10aRepères et références statistiques sur les enseignements et la formation aPariscDEPd1984-1998 aannuel 1aTableaux des enseignements et de la formation (0339-7556) < Coll. 12°1480 A > et de Tableaux des enseignements et de la formation. Statistiques rétrospectives < Coll. 12°1480 B > 1tRepères et références statistiques sur les enseignements, la formation et la recherchex1635-9089 aEducationyFrancexPériodiques aEnseignementyFrancexStatistiquesxPériodiques aFormation professionnelleyFrancexPériodiques02aFrancebMinistère de l'éducation nationalebDirection de l'évaluation et de la prospective 3aFRbCCN0761-3423 uhttp://www.education.gouv.fr/dpd/rers/repere.htm1 b(1982/1983) -(1998)cParisdMagasins/AnnexeeP 8° 4858 aZGRA aexempb200912 aGEO RA4.06 France aDEW 310-319 aDEW 370-37901588cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200016800162210002900330437007600359517003400435530016800469712004900637801003000686801003000716802000700746856015900753856015700912856016001069945001401229991001901243038760355000088646920130319051824.0 a1246-6859 accn1246-6859 a0000886469 a19960829b18821883 0frey0103 ba0 afre aFR ar aau 10aRépertoire des travaux historiques contenant l'analyse des publications faites en France et à l'étranger sur l'histoire, les monuments et la langue de la France aParisc[s.n.]d1882-1883 1tRevue des sociétés savantes de la France et de l'étrangerx0994-831710aRevue des travaux historiques00aRépertoire des travaux historiques contenant l'analyse des publications faites en France et à l'étranger sur l'histoire, les monuments et la langue de la France02aFrancebMinistère de l'instruction publique 3aFRbAbesc20050104gAFNOR 3aFRbAbesc20050104gAFNOR a074 uhttp://archive.org/stream/rpertoiredestra00publgoog#page/n9/mode/2upzAccès libre au texte intégral. 1ere année (1882) numérisée sur Internet Archive4 uhttp://archive.org/stream/rpertoiredestra02publgoog#page/n9/mode/2upzAccès libre au texte intégral. 3e année (1883) numérisée sur Internet Archive4 uhttp://archive.org/stream/rpertoiredestra01publgoog#page/n10/mode/2upzAccès libre au texte intégral. Supplément à 1883 numérisé sur Internet Archive b8*003.808 aSAFIGbTA055ca00820nls 2200265 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001251350018001412000066001592100027002252300024002526060035002768010013003118560070003248560108003949910018005029920022005209920012005420000941455000094145520130319051824.0 aFNSP207083 a0000941455 a19900101a19909999 ba0 afre aFR aaeu  adr 10aRépertoire du notariat Defrénoisb[Ressource électronique] aPariscLextensod1990- aRevue électronique aNotariatyFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lextenso.com zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aexempb201106 aGEO RA4.06 France aDEW 34600960nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000096001502100037002462300024002833260011003075170036003185300053003546010034004076060038004417100020004798010013004998560027005128560053005399550005005929920025005979920012006220001130114000113011420130319051824.0 a0001130114 a a20009999k fre 01 ba0 aeng aJM ar aak z  adr 10aReport & statement of accounts - Bank of Jamaicab[Ressouce électronique]fBank of Jamaica aKingstoncBank of Jamaicad2000- aRevue électronique aAnnuel10aAnnual report - Bank of Jamaica00aReport & statement of accounts - Bank of Jamaica02aBank of JamaicaxPériodiques aFinancesyJamaïquexPériodiques02aBank of Jamaica 0aFRbFNSP4 uhttp://www.boj.org.jm/ zContenu : texte intégral du rapport depuis 20001 r aGEO RD3.04 Jamaïque aDEW 33201079nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116106000600123110001600129200003700145210002900182326001100211452004800222512003200270530003800302601003000340710001600370830015100386856008300537955006700620972000900687991001800696992002400714992001500738038870037000009052220140103115543.01 a0078-1185 aFNSP398664 a19900101a18179999 ba0 aeng aNO ar aaka 10aReport and accountsfNorges Bank aOslocNorges Bankd1956- aAnnuel 1tAnnual report ... (Norges bank),x1504-51291 aAnnual report - Norges bank00aReport and accounts - Norges Bank02aNorges BankxPériodiques02aNorges Bank a(1919) -(1979) ;$cParis,$dMagasins/Annexe :$eCOL4°0311bis : état de collection pas conforme à celui du Sudoc pour qui le titre commence en 19564 uhttp://www.norges-bank.no/english/zAccès libre au texte intégral depuis 19981 b(1980) -(1997) ; (1999)cParisdMagasins/AnnexeeP 4° 5541bis aZGRA aexempb201312 aGEO RA3.03 Norvège aDEW 332.0601101nas 2200325 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000063001412100045002043000047002493260011002964300061003075170045003686010044004136060038004577100030004958560078005258560053006039550055006569720009007119910018007209920025007389920012007630000107587000010758720130319051824.0 aFNSP455788 a0000107587 a19900101a19609999 ba0 aeng aAU aaka 10aReport and financial statementsfReserve Bank of Australia aSydneycReserve Bank of Australiad1960- aEn version électronique à partir de 2006 aAnnuel 1aReport and balance sheets/Commonwealth Bank of Australia10aReserve Bank of Australia -Annual report02aReserve Bank of AustraliaxPériodiques aFinancesyAustraliexPériodiques02aReserve Bank of Australia4 uhttp://www.rba.gov.au/PublicationsAndResearch/RBAAnnualReports/index.html zContenu : texte intégral du rapport depuis 19981 b(1980) -(2005)cParisdMagasins/AnnexeeP 8° 5146 aZGRA aexempb201011 aGEO RJ3.01 Australie aDEW 33201005nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000118001502100045002682300024003133260011003375170045003486010044003936060038004377100030004758010013005058560078005188560053005969550005006499920025006549920012006790001133708000113370820130319051824.0 a0001133708 a a19989999k fre 01 ba0 aeng aAU ar aak z  adr 10aReport and financial statements - Reserve Bank of Australiab[Ressource électronique]fReserve Bank of Australia aSydneycReserve Bank of Australiad1998- aRevue électronique aAnnuel10aReserve Bank of Australia -Annual report02aReserve Bank of AustraliaxPériodiques aFinancesyAustraliexPériodiques02aReserve Bank of Australia 0aFRbFNSP4 uhttp://www.rba.gov.au/PublicationsAndResearch/RBAAnnualReports/index.html zContenu : texte intégral du rapport depuis 19981 a aGEO RJ3.01 Australie aDEW 33201041nas 2200277 i 450 002001100000005001700011035001500028100004100043101000800084102000700092110001600099200009100115210004800206326001100254601004500265606004300310710003100353830005300384856012100437955005500558955008100613972000900694991001800703992003000721992001200751000010769120131009095421.0 aFNSP456014 a19900101a19219999 ba0 aeng aZA aaka 10aReport of the ... ordinary general meeting of shareholdersfSouth African Reserve Bank aPretoriacSouth African Reserve Bankd1921- aAnnuel02aSouth African Reserve BankxPériodiques aFinancesyAfrique du SudxPériodiques02aSouth African Reserve Bank a1980-2000 : collection envoyée au CTles en 20134 uhttp://www.resbank.co.za/Publications/Reports/Pages/Annual-Reports.aspxzAccès libre au texte intégral depuis 20011 b(1980) -(2000)cParisdMagasins/AnnexeeP 4° 52601 b(1921) -(1924) ; (1930) ; (1932) -(1979)cParisdMagasins/AnnexeeCOL8°0511 aZGRA aexempb201307 aGEO RF3.19 Afrique du Sud aDEW 33201637cas0 2200445 450 001001000000002001100010005001700021011001400038035002100052035001700073035001700090100004100107101000800148102000700156105001800163110001600181200004200197210004700239423006000286430004900346440008600395512004400481517008200525517004200607517003700649530004200686710003300728801003000761801002300791802000700814856013500821955005500956955004701011955005701058972000901115991001801124992002301142992001201165992001401177038845997000022237120140110115115.0 a0069-1542 a(OCoLC)474115807 accn0069-1542 aissn00691542 a19811010b19432002u y1frey50 ba0 aeng aIE ay  aaku uu 10aReport of the Central Bank of Ireland aDublincCentral Bank of Irelandd1943-2002 1tQuarterly bulletin - Central Bank of Irelandx0332-2645 1tReport of the Currency Commissionx0332-2831 1tAnnual report (Central Bank & Financial Services Authority of Ireland)x1649-594210aAnnual report - Central Bank of Ireland10aAnnual report of the Central Bank and Financial Services Authority of Ireland10aTuarascáil - Central Bank of Ireland10aReport - Central Bank of Ireland00aReport of the Central Bank of Ireland02aCentral Bank of Ireland4340 3aFRbAbesc20130711gAFNOR 3aFRbISSNc20030523 a0n4 uhttp://www.centralbank.ie/Pages/SearchResults.aspx?k=central%20bank%20annual%20reportzAccés libre au texte intégral depuis 19991 b(1995) -(2005)cParisdMagasins/AnnexeeP 4° 67071 b(1985)cParisdMagasins/AnnexeeP 8° 54041 b(1948) -(1979)cParisdMagasins/AnnexeeCOL 8° 2048 aZGRA aexempb201306 aGEO RA4.01 Irlande aDEW 332 aDEW 330.901199nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000126001552100029002813260011003104300077003215170090003986060051004886060042005397100074005818560050006559550065007059550065007709720009008359920025008449920016008690000050014000005001420130319051824.0 a1321-4837 aFNSP246365 a0000050014 a19900101a00019999 ba0 aeng aAU aaka 10aReport of the Council of the Australian Institute of Aboriginal and Torres Strait Islander Studies for the year ended.... aCanberracAIATSISd0001- aAnnuel 1aReport of the Austalian Institute of Aboriginal Studies for the period..11aAnnual report - Australian Institute of Aboriginal and Torres Strait Islander Studies aInsulaires du détroit de TorresxPériodiques aAborigènes d'AustraliexPériodiques02aAustralian Institute of Aboriginal and Torres Strait Islander Studies uhttp://www.aiatsis.gov.au/corporate/info.html1 b(1966/1967) -(1979/1980)cParisdMagasins/AnnexeeCOL8°41461 b(1980/1981) -(2006/2007)cParisdMagasins/AnnexeeP 8° 5568 aZGRA aGEO RJ3.01 Australie aDEW 305-30601205nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210003100181326001500212430005600227440005600283607003500339607005800374607005800432712004500490856002600535856016800561955008700729992002300816992002800839992001200867038035979000002899020130319051824.01 a1058-5397 aFNSP180289 a0000028990 a19900101b19901993 ba0 aeng aUS aaga 10aReport on the Americas aNew YorkcNACLAd1990-1993 aBimestriel 1aNACLA report on the Americas (1977)xISSN 0149-1598 1aNACLA report on the Americas (1993)xISSN 1071-4839 aAmérique latinexPériodiques aEtats-UnisxRelationsyAmérique latinexPériodiques aAmérique latinexRelationsyEtats-UnisxPériodiques02aNorth American Congress on Latin America4 uhttp://www.nacla.org/ ztexte intégral de l'introduction du rapport ainsi que d'une sélection d'articles (pour les autres articles, extraits disponibles) depuis le vol. 25, n° 1, 1991.1 bvol. 24 no. 4 (1990/1991) -vol. 26 no. 4 (1993)cParisdMagasins/AnnexeeP4° 3725 aGEO RC2 Etats-Unis aGEO RD Amérique latine aDEW 98001027cas0 2200301 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200010200139207001200241210005600253326001100309517001600320710006900336801003000405856008800435856005300523955005300576972000900629992005700638992001400695992001600709075128209000099052720130319051824.01 a1611-311X a0000990527 a20031124a20029999k y0frey0103 ba0 aeng aDE aaka 10aReport on the European economyfInstitute for Economic Research, European Economic Advisory Group 0a(2002)- aMunichcIfo, Institute for Economic Researchd2002- aAnnuel10aEEAG report02aIFO-Institut für Wirtschaftsforschungc(Munich, Allemagne)4070 3aFRbAbesc20070202gAFNOR4 uhttp://www.cesifo-group.de/portal/page?_pageid=36,286932&_dad=portal&_schema=PORTAL4 zContenu : texte intégral du rapport depuis 20021 b(2004) -....cParisdMagasins/AnnexeeP 4° 7107 aZSAB aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 330.9 aDEW 310-31901324nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116106000600123110001600129200015700145210010800302326001200410430010800422510003800530601005700568606005900625710004300684856012800727955007200855972000900927991001800936992001800954992001200972992001400984040617548000023137220140115193253.01 a1682-7449 aFNSP822006 a19900101a19969999 f ba0 amul aFR ar aaua 10aReports of judgments and decisions‎fEuropean Court of Human Rights‎d= Recueil des arrêts et décisions‎fCour européenne des droits de l'homme aStrasbourg‎cCouncil of Europe, Registry of the Court = Conseil de l'Europe, Greffe de la Courd1996- aMensuel 1aPublications de la Cour européenne des droits de l'homme.hSérie A,iArrêts et décisionsx0073-390310aRecueil des arrêts et décisions02aCour européenne des droits de l'hommexPériodiques aDroits de l'hommeyEuropexJurisprudencexPériodiques02aCour européenne des droits de l'homme4 uhttp://www.echr.coe.int/Pages/home.aspx?p=caselaw&c=fra#n1347455941453_pointerzAccès libre au texte intégral depuis 19991 bno. 1 (1996) -no. 12 (dec-2005)cParisdMagasins/AnnexeeP 8° 6363 aZCAD aexempb201211 aGEO RA Europe aDEW 323 aDEW 341.201000nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000560015421000430021032600160025360600280026960600440029771000370034185601090037885601080048795500730059597200090066899200210067799200120069811313987X000007162320130319051825.01 a0034-4893 aFNSP328202 a0000071623 a19900101c ba0 aeng aGB aaha 10aRepresentationejournal of representative democracy aLondoncArthur McDougall Libraryd0001 aTrimestriel aElectionsxPériodiques aReprésentation politiquexPériodiques02aArthur McDougall Fundc(Londres)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t741771152db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 30 no. 110 (ete-1991) -....cParisdMagasins/AnnexeeP 4° 6128 aZSAB aGEO RQ Universel aDEW 32400930nas 2200277 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000018001552100028001733260014002013270044002156060029002596070025002888560192003138560108005059550005006139920022006189920012006400000041492000004149220130319051825.01 a0390-1076 aFNSP222420 a0000041492 a19900101a19769999 ba0 aita aIT aaaa 13aLa Repubblica aRomacRepubblicad1976- aQuotidien10aVersion en ligne uniquement via Factiva aActualitéxPériodiques aItaliexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b aGEO RA6.03 Italie aDEW 05000830nas 2200277 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000310013921000290017032600160019943000460021553000310026160700250029285601090031795500650042697200090049199100180050099200120051899200220053004014464X000007826620130730145050.01 a1013-0942 aFNSP352796 a19900101a19899999 ba0 aeng aCN aaza 10aRepublic of China yearbook aTaipeicKwang Hwad1989- aIrrégulier 1aZhōnghuá mínguó niánjiànx0529-577700aRepublic of China yearbook aTaiwanxPériodiques4 uhttp://www.ey.gov.tw/en/cp.aspx?n=575A019C0A39897DzAccés libre au texte intégral de l'année en cours1 b(1983) ; (1989) ; (2000)cParisdMagasins/AnnexeeP 8° 5348 aZPAY aexempb201306 aDEW 951 aGEO RI3.02 Taiwan00892nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002700163210002700190326001600217430007200233606003000305710006700335801001300402856003500415856004000450955007700490972000900567992001400576040530094000043580720130319051826.01 a1278-6209 a0000435807 a b19952004k fre ba0 afre aFR a 0  ar aah z 0 10aRes publica (Créteil) aPariscPUFd1995?-2004 aTrimestriel 1tPerspectives philosophiques (Villeneuve-Saint-Georges)x(1277-3166) aPhilosophiexPériodiques02aUniversité de Paris-Val-de-MarnebDépartement de philosophie 0aFRbFNSP40uhttp://www.revuerespublica.com zSommaires et résumés des articles1 bno. 24 (mar-2001) -no. 39 (nov-2004)cParisdMagasins/AnnexeeP 4° 6908 aZCAD aDEW 10-1401080nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005100139210003100190300007900221326002500300326002200325606003600347606002600383606004300409801002100452856010000473856007800573955007600651972000900727991001800736992001200754039337553000000811720130909155858.01 a0275-5319 aFNSP114133 a19900101a19799999 ba0 aeng aUS aaiu 10aResearch in international business and finance aAmsterdamcElsevierd1979- aPublié par JAI Press de 1979 à 2003, puis par Elsevier à partir de 2004 a3 n°s par anb2004- aAnnuelb1979-2003 aMarché financierxPériodiques aBanquesxPériodiques aFinances internationalesxPériodiques 3aFRbCCN0275-53194 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/02755319 zContenu : accès aux sommaires et aux résumés depuis le volume 18, 20041 bvol. 1 (1979) -vol. 25 no. 3 (2011)cParisdMagasins/AnnexeeP 8° 4183 aZPAY aexempb201106 aDEW 33200959nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005100154210003900205326002300244326002200267606003600289606004100325801002100366856010000387856007800487955005300565972000900618991001800627992001200645039339351000000813320130319051826.01 a0276-5624 aFNSP114173 a0000008133 a19900101a19819999 ba0 aeng aUS aahu 10aResearch in social stratification and mobility aGreenwich, Conn.cJAI Pressd1981- aTrimestrielb2006- aAnnuelb1981-2005 aMobilité socialexPériodiques aStratification socialexPériodiques 3aFRbCCN0276-56244 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/02765624 zContenu : accès aux sommaires et aux résumés depuis le volume 18, 20011 b(1981) -....cParisdMagasins/AnnexeeP 8° 4536 aZPAY aexempb201106 aDEW 30100935nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200002000138210005000158326001900208606002800227606003000255801002100285856006400306856007200370955007100442955009100513972000900604991001800613992001400631038830779000003720320130925155724.01 a0048-7333 aFNSP207777 a0000037203 a19900101a19719999 ba0 aeng aNL00aResearch policy aAmsterdamcElsevier Science Publishersd1971- a10 n°s par an aRecherchexPériodiques aInnovationsxPériodiques 3aFRbCCN0027/657X4 uhttp://www.elsevier.nl/inca/publications/store/5/0/5/5/9/8/ zContenu : sommaires et résumés depuis le vol. 23, n°2, mars 19941 bvol. 38 no. 1 (fev-2009) -....cParisdMagasins/AnnexeeP 4° 72751 bvol. 1 no. 1 (nov-1971) -vol. 37 no. 10 (dec-2008)cParisdMagasins/AnnexeeP 8° 2999 aZSAB aexempb201106 aDEW 001.401551nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007200154210004100226210003800267210004300305210003300348326001500381530003400396606004700430606004100477676000800518710006500526856008700591856010800678856004800786856003700834955006400871955011600935972000901051991001801060991001801078992003301096992001201129039633616000002991120140109135323.01 a0751-7971 aFNSP183097 a0000029911 a19910416a19839999 ba0 afre aFR aaga 10aRéseauxfCNET [Centre national d'études des télécommunications] aIssy-les-MoulineauxcCNETd1983-1998 aPariscHermès scienced1999-2003 aCachanc[Hermès]-Lavoisierd2003-2008 aPariscLa Découverted2009- aBimestriel00aRéseauxbIssy-les-Moulineaux aTechnologie de l'informationxPériodiques aRéseaux d'informationxPériodiques a07002aCentre national d'études des télécommunicationsc(France)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-reseaux.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr/listIssues.do?key=reso zAccès libre au texte intégral.1 bno. 39 (jan-1990) -....cParisdMagasins/AnnexeeP 8° 57081 bno. 3 (dec-1983) - no. 19 (jui-1986) ; no. 25 (jui-1987) -no. 38 (dec-1989)cParisdMagasins/AnnexeeP 4° 6287 aZPAY aexempa201205 aexempb201304 aGEO RS Sans aspect régional aDEW 02001343nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200008000163207002400243210002700267326001600294423003600310423004000346437004000386517003700426517005400463606005500517606007500572676000800647801001300655856004100668856009600709955006700805955006400872972000900936992001200945036081310000053072120130319051827.01 a1268-4783 a0000530721 a a19969999k fre ba0 afre aFR a 0  ar aah z 0 10aResponsabilité & environnementesérie trimestrielle des Annales des mines 1ano. 1 (janv. 1996)- aParis&cEd. Eskad1996- aTrimestriel 1tGérer et comprendrex0295-4397 1tRéalités industriellesx1148-7941 1tAnnales des mines (1947)x0003-428210aResponsabilité et environnement11aAnnales des mines.Responsabilité & environnement aPolitique de l'environnementyFrancexPériodiques aResponsabilité pour dommages à l'environnementyFrancexPériodiques a333 0aFRbFNSP4 uhttp://www.annales.org/re/index.html zContenu : sommaires et résumés depuis 1996 ; texte intégral des articles de 1998 à 20031 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3331 bno. 29 (jan-2003) -....cParisdMagasins/AnnexeeP 4° 6973 aZPAY aDEW 33301194nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001700139210006400156326001900220326002600239326002300265530003000288606005400318606007200372710004600444801002100490856009700511955011400608955007500722972000900797991001800806991001800824992001400842039348717000003721020140102141719.01 a0223-5617 aFNSP207790 a19900101a19569999 ba0 afre aFR aafu 10aResponsables aParis‎cUnion sociale d'ingénieurs catholiques‎d1956- aMensuelb2008- aBimestrielb2006-2007 aMensuelb1956-200510aResponsablesbParis. 1956 aCadres (personnel)xMorale pratiquexPériodiques aGestion d'entreprisexAspect religieuxxChristianismexPériodiques02aMouvement des cadres chrétiensc(France) 3aFRbCCN0223-56174 uhttp://www.mcc.asso.fr/-Responsables-zAccés libre aux sommaires depuis le n°296, mai 19981 bno. 181 (dec-1986) - no. 311 (1999) ; no. 350 (2004) -no. 400 (janv-2010)cParisdMagasins/AnnexeeP 4° 51731 bno. 30 (1971) - no. 180 (nov-1986)cParisdMagasins/AnnexeeP 8° 3042 aZPAY aexempb201112 aexempb201311 aDEW 20-2901040cas0 2200325 450 001001000000002001100010005001700021011001400038035002500052035001500077100004100092101000800133102000700141106000600148110001600154200011500170210003600285326001600321606003600337606003600373801003000409801002900439802000700468856005200475856004600527955009500573972000900668992001200677992002500689104384654000106357320130319051827.01 a1775-0741 aFRBNF40031413000000X a0001063573 a20050907a200 9999k y0frey0103 ba1 afre aFR ar aa 10aRespublica Novaela politique a encore de l'avenirela revue politique des grandes écoles et des universités aPariscRespublica Novad[2004-] aTrimestriel aSciences socialesxPériodiques aScience politiquexPériodiques 3aFRbAbesc20060629gAFNOR 3aFRbBnFc20060327gAFNOR a074 uhttp://www.jeuneciceron.fr/principale/revue.php zContenu : sommaires depuis le n°1 [2004]1 bno. 5 (pri-2005) -no. 7 (hiv-2005) ; no. 18 (dec-2008)cParisdMagasins/AnnexeeP 4° 7170 aZPAY aDEW 320 aGEO RA4.06 France 0101062nls 2200313 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200013900124207001400263210002400277230002400301326001600325336001600341337004900357606005200406606004000458676001300498710006300511801001300574830000800587856012000595992002100715992001200736000125213520131204152226.0 a a20109999k fre 01 ba0 amul aFR ar aay z  adr 10aInfocus :b[Ressource électronique]erevue des affaires internationalesfAssociation Affaires Internationales de Sciences Po ( AAISP) 1aN°1-2010 aPariscAAISPd2010- aDonnées textuelles aIrrégulier aFichier PDF aNavigateur Internet ; lecteur de fichier PDF aRelations internationalesxPériodiques2rameau aGéopolitiquexPériodiques2rameau a327v22a02aAssociation Affaires Internationales de Sciences PocParis 0aFRbFNSP acdj4 uhttp://infocusrevue.com/2013/02/06/issue-six-is-here/zAccès au texte intégral de la revue depuis le n°1 de 2010 aGEO RQ Universel aDEW 32701183nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210002300180326002400203326002700227517002400254530003300278606003700311606003500348710005400383856009900437856010800536955006000644955006800704972000900772991001800781992001800799992001600817040005852000018967820130319051829.01 a1167-4687 aFNSP700872 a0000189678 a19900101a19929999 ba0 afre aFR aaia 10aRetraite et société aPariscCNAVd1992- a3 nos par anb2002- aTrimestrielb1992-200110aRetaite & société 0aRetraite et sociétébParis aRetraitésyFrancexPériodiques aRetraiteyFrancexPériodiques02aCaisse nationale d'assurance vieillessec(France)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-retraite-et-societe.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 18 (1997) -....cParisdMagasins/AnnexeeP 4° 67341 bno. 4 (1993) -no. 17 (1997)cParisdMagasins/AnnexeeP 8° 6233 aZPAY aexempb201211 aGEO RA Europe aDEW 360-36301089cas0 2200337 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123110001600141200006800157210002400225326001100249517003200260530006900292607006000361710006500421801003000486801003000516856005300546856003600599955005300635972000900688991001800697992001400715992002200729094684499000091919320130319051830.0 a1760-9003 a0000919193 a20060106a19999999k y0frey50 ba0 afre aFR ay 0  aakaih 0 13aLa RéunionfInstitut d'émission des départements d'Outre-mer aPariscIEDOMd1999- aAnnuel13aLa Réunionerapport annuel13aLa Réunion - Institut d'émission des départements d'Outre-mer aRéunionxConditions économiquesxPériodiques2rameau02aInstitut d'émission des départements d'Outre-merc(France) 3aFRbAbesc20100315gAFNOR 3aFRbAbesc20060112gAFNOR4 uhttp://www.iedom.fr/dom/reunion/publications.asp4 zAccès libre au texte intégral1 b(1999) -....cParisdMagasins/AnnexeeP 8° 6851 aZGRA aexempb201212 aDEW 330.9 aGEO RA4.06 France00895nas 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000016001502100037001663260014002036060046002177020026002638010013002898560193003029450016004959550083005119910011005949920012006050000472453000047245320131106152003.0 a0000472453 a b18681869k fre ba0 afre aFR a 0  ar aae z 0 13aLe Revenant aPariscTolra et Gatond1868-1869 aBimensuel aSatire politique françaisexPériodiques 1aGrenvillebE. de4070 0aFRbFNSP4 uhttp://books.google.fr/books?id=EZvSAAAAMAAJ&dq=%22Le%20Revenant%22&hl=fr&pg=PA1#v=onepage&q=%22Le%20Revenant%22&f=falsezAccès libre au texte intégral. N°1 numérisé sur Google Livres a12°009.5141 bn°1, 5 oct.1868 --> n° 28, 20 nov. 1869cParisdMagasins/Annexee12°009.514 anumer0 aDEW 05001692cas0 2200445 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101001300156102000700169105001800176106000600194110001600200200007200216210002300288300006600311302003800377326001100415430007700426510004700503510006700550532008000617606006700697606005200764710006700816801003000883801002300913802000700936856012300943856003601066955006501102992001201167992005101179992001601230037372815000111781020130319051830.01 a1560-3660 a058784640 accn1560-3660 aissn15603660 a0001117810 a19980902a19 9999k y0frey0103 ba0 aengafre aZZ ay  ar aauu uu 00aRevenue statisticsfOECD =Statistiques des recettes publiquesfOCDE aPariscOECDd1997- aChaque volume recouvre la période 1965 à l'année écoulée aTextes en français et en anglais aAnnuel 1tStatistiques de recettes publiques des pays membres de l'OCDEx0259-524910aStatistiques des recettes publiques - OCDE10aStatistiques des recettes publiques des pays membres de l'OCDE10aRevenue statistics - Organisation for Economic Co-operation and Development aFinances publiquesyPays de l'OCDExStatistiquesxPériodiques aRecettes fiscalesyPays de l'OCDExPériodiques02aOrganisation de coopération et de développement économiques 3aFRbAbesc20070904gAFNOR 3aFRbISSNc20010829 a004 uhttps://acces-distant.sciences-po.fr/fork?http://titania.sourceocde.org/vl=3932884/cl=32/nw=1/rpsv/outlook_annuals.htm zAccès libre au texte intégral1 b(1965/1996) -(1965-2005)cParisdMagasins/AnnexeeP 4° 5235 aDEW 336 aGEO RN1 Pays industrialisés, pays occidentaux aDEW 360-36901783cas0 2200469 450 00100100000000200110001000500170002101100140003803500140005203500170006603500210008303500150010410000410011910100080016010200070016810500180017511000160019320000530020920700110026221000240027322500910029722500280038830300910041632600110050741000920051841000360061051700430064660600750068960600690076460600570083360600590089067600150094971000830096480100300104780100230107780200070110085600930110795500600120099200160126099200120127699200250128811125728X000120878520130319051830.0 a2110-0888 a146435257 aissn21100888 a(OCoLC)493443528 a0001208785 a20061211a19959999k a0frey50 ba0 afre aFR ay 0  azkaii 0 014aLes Revenus et le patrimoine des ménagesfINSEE 1a1995 - aPariscINSEEd1995-20aSynthèsesfInstitut national de la statistique et des études économiquesx1262-806900aRéférencesx1639-4968 aNotice rédigée d'après l'édition 2006 et complétée d'après le numéro 1 de 1995 aAnnuel 1tSynthèses - Institut national de la statistique et des études économiquesx1262-8069 1tRéférences - INSEEx1639-496814aLes revenus et le patrimoine en France aÉpargne et investissementyFrancexStatistiquesxPériodiques2rameau aRevenuxRépartitionyFrancexStatistiquesxPériodiques2rameau aMénagesyFrancexStatistiquesxPériodiques2rameau aPatrimoineyFrancexStatistiquesxPériodiques2rameau a339.2v22a02aInstitut national de la statistique et des études économiquesc(France)4070 3aFRbAbesc20110323gAFNOR 3aFRbISSNc20100903 a074 uhttp://www.insee.fr/fr/publications-et-services/collection.asp?id=13&numpage=2&nombre=201 b(1995) -(2002/2003)cParisdMagasins/AnnexeeP 4° 7324 aDEW 310-319 aDEW 339 aGEO RA4.06 France 0101315nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210006000200326001500260530004700275606005200322606003900374606002700413710003800440801002100478856004900499856004200548856012800590856010800718955009500826972000900921992002300930992001200953038707403000001937020130319051830.01 a0014-9187 aFNSP152596 a0000019370 a19900101a19629999 ba0 aeng aUS aagu 10aReviewfFederal Reserve Bank of St. Louis aSt Louis, Mo.cFederal Reserve Bank of St. Louisd1962- aBimestriel00aReview - Federal Reserve Bank of St. Louis aBanques de la Réserve fédéralexPériodiques aFinancesyEtats-UnisxPériodiques aFinancesxPériodiques02aFederal Reserve Bank of St. Louis 3aFRbCCN0014-91874 uhttp://www.stls.frb.org/publications/review/ zContenu : texte intégral depuis 19744 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=FSL&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 47 no. 1 (jan-1965) -vol. 90 no. 6 (nov/dec-2008)cParisdMagasins/AnnexeeP 4° 2111 aZGRA aGEO RC2 Etats-Unis aDEW 33201196nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200010100154210005100255326001600306530010200322606003600424710011300460801002100573856003800594856007300632955006600705957007200771972000900843991001800852992001200870039093565000003726820130319051830.01 a0147-9032 aFNSP207899 a0000037268 a19900101a19779999 ba0 aeng aUS aahu 10aReviewfFernand Braudel Center for the Study of Economies, Historical Systems, and Civilizations aBinghampton, NYcFernand Braudel Centerd1977- aTrimestriel 0aReview - Fernand Braudel Center for the Study of Economies, Historical Systems, and Civilizations aSciences socialesxPériodiques02aFernand Braudel Center for the Study of Economies, Historical Systems, and Civilizationsc(Binghamton, N.Y.) 3aFRbCCN0147-90324 uhttp://fbc.binghamton.edu/rev.htm zContenu : sommaires et résumés depuis le vol. 1, no. 1, été 19771 bvol. 1 no. 1 (1977) -....cParisdMagasins/AnnexeeP 8° 40351 bvol. 1 (1977) -vol. 20 (1997)cParisdMagasins/AnnexeeP Index 0616 aZCAD aexempb201103 aDEW 30001296nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004000139210002800179326002300207326003300230452006300263606004500326606003600371606004600407606003700453801002100490856011400511856021400625955005900839972000900898991001800907992001900925992001400944039394158000003742620140108155624.01 a0305-6244 aFNSP208519 a19900101a19749999 ba0 aeng aGB aahu 10aReview of African political economy aSheffieldcROAPEd1974- aTrimestrielb1994- aTrois fois par anb1974-1993 1tReview of African political economy (Online)‎x1740-1720 aScience politiqueyAfriquexPériodiques aScience politiquexPériodiques aEconomie politiqueyAfriquexPériodiques aEconomie politiquexPériodiques 3aFRbCCN0305-62444 uhttp://www.tandf.co.uk/journals/carfax/03056244.htmlzContenu : sommaires depuis le vol. 23, n°67, mars 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713443496db=allzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1974) -....cParisdMagasins/AnnexeeP 8° 4051 aZSAB aexempb199912 aGEO RE Afrique aDEW 338.901361nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210004400198326002300242326002600265430004000291606004600331606004100377606005500418606003200473710006300505856012800568856010800696955008500804972000900889991001800898992003900916992003200955992001200987061149993000015818620130319051830.01 a0925-9880 aFNSP612431 a0000158186 a19900101a19929999 ba0 aeng aNL aaha 10aReview of Central and East European law aDordrechtcKluwer Academic Publ.d1992- aTrimestrielb1999- aBimestrielb1992-1998 1aReview of socialist law,x0165-0300 aDroityRussiexLégislationxPériodiques aDroityEurope de l'EstxPériodiques aDroityEurope de l'EstxLégislationxPériodiques aDroityRussiexPériodiques02aInstitute of East European Law and Russian Studies (Leyde)4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=MZ0&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 20 no. 4/5 (1994) -vol. 29 no. 4 (2004)cParisdMagasins/AnnexeeP 8° 6125 aZSAB aexempb201212 aGEO RA7.21 Russie (depuis 1991-92) aGEO RA2.02 Europe orientale aDEW 34901580nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154207003100185210002900216326001600245606003700261801002100298856010100319856010800420856009000528856010800618856012800726856010800854955012300962957010601085972000901191991001801200992001201218038783894000004940520130319051830.01 a0034-6527 aFNSP245139 a0000049405 a19900101a19339999 ba0 aeng aGB aahu 10aReview of Economic Studies 1avol. 1, no. 1 (jan-1933) - aOxfordcBlackwelld1933- aTrimestriel aEconomie politiquexPériodiques 3aFRbCCN0034-65274 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101101 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00346527.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=REM&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (oct-1933) -vol. 24 no. 3 (jun-1957) ; vol. 26 no. 3 (jun-1959) -....cParisdMagasins/AnnexeeP 8° 01171 bvol. 26 (1959) -vol. 48 (1981) ; vol. 47 (1980) -vol. 56 (1989)cParisdMagasins/AnnexeeP Index 0380 aZPAY aexempb201101 aDEW 33001787nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004300154210005000197326002500247326002700272430004900299530004300348606003700391710004800428801002100476856012800497856010800625856010100733856010800834856009000942856010801032955007101140955009501211957007401306972000901380992001201389038783916000003741020130812105515.01 a0034-6535 aFNSP208481 a0000037410 a19900101a19489999 ba0 aeng aUS aahu 14aThe Review of economics and statistics aAmsterdamcElsevier Science Publishersd1948- a5 n°s par anb2013- aTrimestrielb1948-2012 1aReview of economic statistics < P 4° 0046 >04aThe Review of economics and statistics aEconomie politiquexPériodiques02aHarvard UniversitybDepartment of Economics 3aFRbCCN0034-65354 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=RMS&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101819 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00346535.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 30 no. 1 (fev-1948) -....cParisdMagasins/AnnexeeP 4° 00461 bno. 74 (fev-1992) -vol. 84 no. 4 (nov-2002)cParisdBibliothèque de rechercheeP 4° 00461 b(1948) -(1978) ; (1979) -(1989)cParisdMagasins/AnnexeeP Index 0526 aZPAY aDEW 33000985nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000063001502100051002133000098002643260016003623360058003783370063004364520049004996060027005488010013005758560090005889550005006789920012006830000470131000047013120130319051830.0 a0000470131 a a19889999k fre 01 ba0 aeng aUS az aah z  adr 14aThe Review of financial studiesb[Ressource électronique] aNew-York, N.Y.cOxford University Pressd1988- aAccès au texte intégral (réservé aux sites de Sciences Po) jusqu'aux 3 dernières années aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tThe Review of financial studiesx(0893-9454) aFinancesxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/08939454.html1 r aDEW 33201194nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154210003100190326001600221430002200237606002500259606002900284710007200313801002100385856012800406856010300534856010800637955008400745972000900829991001800838992001200856038783991000003766120131202114253.01 a0034-6586 aFNSP209435 a0000037661 a19900101a19669999 ba0 aeng aUS aahu 14aThe Review of income and wealth aNew York, NYcIARIWd1966- aTrimestriel 1aIncome and wealth aRevenuxPériodiques aPatrimoinexPériodiques02aAssociation internationale de recherche sur le revenu et la fortune 3aFRbCCN0034-65864 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=2GZ&site=ehost-live4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=107607 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (mar-1966) -vol. 58 no. 4 (déc-2012)cParisdMagasins/AnnexeeP 8° 2961 aZPAY aexempb201106 aDEW 33901108nas 2200325 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200011900148210003000267320002300297326001600320517004900336606004400385606004400429676000800473710005300481801001300534856004200547856008300589955008900672972000900761992001200770070079846000048690220131028145812.01 a1475-3553 a a20019999k fre ba0 aeng aGB a 0  ar aah z 0 14aThe Review of international affairsfAvrasya Stratejik Arastirmalar MerkezifCenter for Eurasian Strategic Studies aLondoncFrank Cassd2001- aISSN non vérifié aTrimestriel14aThe Review of international affairs (London) aRelations internationalesxPériodiques aRelations internationalesxPériodiques a32702aAvrasya stratejik arastirmalar merkezic(Ankara) 0aFRbFNSP4 uhttp://www.frankcass.com/jnls/ria.htm zsommaires des numéros et résumés des articles depuis le vol. 1 no. 1 (2001)1 bvol. 1 no. 1 (aut-2001) -vol. 3 no. 4 (ete-2004)cParisdMagasins/AnnexeeP 8° 6651 aZSAB aDEW 32701311nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210002900200326002200229326002800251326002700279326002400306517000900330606003700339606005700376856012800433856010800561856010900669856010800778955006600886972000900952992001200961044740557000013071820140107132627.01 a0969-2290 aFNSP531176 a0000130718 a19940621a19949999 ba0 aeng aGB aaia 10aReview of international political economy aLondoncRoutledged1994- aBimestrielb2013- a5 nos par anb2004-2012 aTrimestrielb1995-2003 a3 n°s par anb199410aRIPE aEconomie politiquexPériodiques aRelations économiques internationalesxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=5C6&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713393878db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1994) -....cParisdMagasins/AnnexeeP 8° 6044 aZSAB aDEW 33701161nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154207003100190210004900221326001600270430006100286606004400347676000800391710004600399801002100445856010600466856010800572955007100680972000900751991001800760992003300778992001200811039309959000003752920140110152615.01 a0260-2105 aFNSP208753 a0000037529 a19900101a19819999 ba0 aeng aGB aahu 10aReview of international studies 1aVol. 7, no. 1 (Jan. 1981)- aCambridgecCambridge University Pressd1981- aTrimestriel 1aBritish journal of international studiesxISSN 0305-8026 aRelations internationalesxPériodiques a32702aBritish International Studies Association 3aFRbCCN0260-21054 uhttps://acces-distant.sciences-po.fr/fork?http://journals.cambridge.org/action/displayJournal?jid=RIS zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 27 no. 1 (jan-1981) -....cParisdMagasins/AnnexeeP 8° 3662 aZSAB aexempb201001 aGEO RS Sans aspect régional aDEW 32700869cas0 2200301 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200003400174210003200208606003100240801003000271801003000301802000700331856006500338856005400403955005300457991002000510992001200530992002500542039400247000110616220130319051830.01 a0307-7985 accn0307-7985 a0001106162 a19890115a19759999 0frey0103 ba0 aeng aGB ay  aau 10aReview of middle east studies aLondoncIthaca Pressd1975- aMoyen-OrientxPériodiques 3aFRbAbesc20081202gAFNOR 3aFRbAbesc20040914gAFNOR a024 uhttp://www.mesa.arizona.edu/publications/review_homepage.htm zContenu: sommaire des n°s depuis le no. 1 (2009)1 bno. 1 (1975)cParisdMagasins/AnnexeeP 8° 3788 aPériobTP06 P8 aDEW 956 aGEO RG2 Moyen-Orient01608nas 2200385 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200003400148210005500182300008500237326002600322326002700348430003800375452005500413530003400468606004900502606003700551710004400588801001300632856012800645856010800773856010100881856010800982955008401090972000901174992002301183992001601206076872106000048292720131119113803.01 a1541-132X a a20022011k fre ba0 aeng aUS a 0  ar aag z 0 14aThe Review of policy research aChampaign, ILLcPolicy Studies Organizationd2002- aDernière édition papier 2011 ; à partir de 2012, version en ligne uniquement. aBimestrielb2004-2011 aTrimestrielb2002-2003 1tPolicy studies review,x0278-4416 1tThe review of policy research (Online),x1541-133814aThe review of policy research aPolitique publiqueyEtats-UnisxPériodiques aPolitique publiquexPériodiques02aPolicy Studies Organizationc(New York) 0aFRbFNSP uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=MJJ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=110495 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 19 no. 1 (2002) -vol. 28, no. 6 (2011)cParisdMagasins/AnnexeeP 8° 4443 aZPAY aGEO RC2 Etats-Unis aDEW 350-35401348nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210002600186326001600212606003700228856012800265856010800393856010300501856010800604856010900712856010800821955006600929972000900995991001801004992001201022040083608000003834820130319051830.01 a0953-8259 aFNSP212739 a0000038348 a19900101a19899999 ba0 aeng aGB aaha 10aReview of political economy aLondoncArnoldd1989- aTrimestriel aEconomie politiquexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=RPE&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=102233 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713444532db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1989) -....cParisdMagasins/AnnexeeP 8° 5743 aZPAY aexempb201111 aDEW 33001245nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154207003200181210005400213326001600267606003600283606004800319710002900367801002100396856002700417856003600444856009000480856010800570955007000678955006900748972000900817991001800826992002300844992001600867038784122000003753120131220101910.01 a0034-6705 aFNSP208756 a0000037531 a19900101a19399999 ba0 aeng aUS aahu 14aThe review of politics 1aVol. 1, no. 1 (Jan. 1939) - aNotre Dame, Ind.cUniversity of Notre Damed1939- aTrimestriel aScience politiquexPériodiques aScience politiqueyEtats-UnisxPériodiques02aUniversity of Notre Dame 3aFRbCCN0034-67054 uhttp://www.nd.edu/rop/ zContenu : sommaires depuis 19924 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00346705.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 9 no. 1 (jan-1947) -....cParisdMagasins/AnnexeeP 8° 01951 bL'année en courscParisdBibliothèque de rechercheeP 8° 0195 aZCAD aexempb201101 aGEO RC2 Etats-Unis aDEW 320-32100914nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210003500200326001600235606003700251710005600288801002100344856007000365856010800435955007000543972000900613992001400622039623912000004941320130319051830.01 a0486-6134 aFNSP245156 a0000049413 a19900101a19699999 ba0 aeng aUS aahu 14aThe Review of radical political economics aRiverside, Calif.cURPEd1969- aTrimestriel aEconomie politiquexPériodiques02aUnion for Radical Political Economicsc(Etats-Unis) 3aFRbCCN0486-61344 uhttps://acces-distant.sciences-po.fr/fork?http://rrp.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 1 (pri-1971) -....cParisdMagasins/AnnexeeP 4° 3173 aZPAY aDEW 330.101534nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006200154210002900216326001600245606004100261606004800302710005100350856012800401856010800529856012800637856010800765856010900873856010800982955006701090972000901157991001801166992001201184038784165000019514720130319051830.01 a0034-6764 aFNSP717048 a0000195147 a19900101a19429999 ba0 aeng aGB aaha 10aReview of social economy Association for Social Economics aLondoncRoutledged1942- aTrimestriel aSociologie économiquexPériodiques aEconomie sociale et solidairexPériodiques02aAssociation for Social Economicsc(Etats-Unis)4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=RSY&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=RSY&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713708792db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 53 no. 1 (1995) -....cParisdMagasins/AnnexeeP 8° 6254 aZSAB aexempb201212 aDEW 33001091nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200009700163210003900260326001600299430004400315530004400359606003700403606005700440710005200497801001300549856004500562856006700607955006800674972000900742992001400751070699631000053958720130319051830.01 a1610-2878 a0000539587 a a20039999k fre ba0 aeng aDE a 0  ar aah z 0 10aReview of World Economics =dWeltwirtschaftliches ArchivfKiel Institute for World Economics aHeidelbergcSpringer-Verlagd2003- aTrimestriel 1tWeltwirtschaftliches Archiv,x0043-263600aReview of World Economicsb(Heidelberg) aEconomie politiquexPériodiques aRelations économiques internationalesxPériodiques02aInstitut für Weltwirtschaftc(Kiel, Allemagne) 0aFRbFNSP4 uhttp://www.uni-kiel.de/ifw/pub/wa/wa.htm zContenu : sommaires et résumés depuis le vol.138, n°1, 20021 bvol. 139 no. 1 (2003) -....cParisdMagasins/AnnexeeP 8° 0309 aZPAY aDEW 330.901007nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002600139210004700165326001600212452004900228530002600277606002900303606003800332710003200370801002100402856010800423955008300531972000900614991001800623992004000641992001200681039480542000003766520130725164132.01 a0350-154X aFNSP209446 a19900101a19719999 ba0 ascr aYU aahu 10aRevija za sociologiju aZagrebcSociolosko drustvo Hrvatsked1971- aTrimestriel 1tRevija za sociologiju (Online)‎x1846-795400aRevija za sociologiju aSociologiexPériodiques aSociologieyCroatiexPériodiques02aSociolosko drustvo Hrvatske 3aFRbCCN0350-154X4 uhttp://www.hsd.hr/revija/zAccès libre au texte intégral (format PDF) depuis le vol. 33, no 3/4, 20021 bvol. 1 no 1 (1971) -vol. 38 no. 3/4 (2007)cParisdMagasins/AnnexeeP 8° 3305 aZPAY aexempb201005 aGEO RA8.23 Croatie (depuis 1991-92) aDEW 30101078nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210003000198326001800228606004500246606003600291710008800327801002100415856009300436856004700529955009300576972000900669991001800678992002100696992002300717992001200740038976722000011001020130319051830.01 a0102-6909 aFNSP464039 a0000110010 a19900101a19869999 ba0 apor aBR aaia 10aRevista brasileira de ciências sociais aSão PaulocANPOCSd1986- a3 n°s par an aSciences socialesyBrésilxPériodiques aSciences socialesxPériodiques02aAssociação nacional de pós-graduação e pesquisa em ciências sociaisc(Bresil) 3aFRbCCN0102-69094 uhttp://www.scielo.br/scielo.php?script=sci_issuetoc&pid=0102-690920060002&lng=en&nrm=iso zContenu : accès aux sommaires depuis 19971 bvol. 12 no. 33 (fev-1997) -vol. 16 no. 47 (oct-2001)cParisdMagasins/AnnexeeP 8° 4971 aZSAB aexempb201003 aGEO RQ Universel aGEO RD4.13 Brésil aDEW 30001281nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154207002500189210005300214326001600267510000800283606004600291606005500337607005800392607004900450710004200499801002100541830003400562856008300596955006700679957005700746972000900803991001800812992002800830992002300858992001400881038784289000003766620130319051830.01 a0034-7140 aFNSP209447 a0000037666 a19900101a19479999 ba0 apor aBR aahu 10aRevista brasileira de economia 1avol. 1 no. 1 (1947)- aRio de JaneirocFundaçâo Getulio Vargasd1947- aTrimestriel10aRBE aEconomie politiqueyBrésilxPériodiques aEconomie politiqueyAmérique latinexPériodiques aAmérique latinexPolitique économiquexPériodiques aBrésilxPolitique économiquexPériodiques02aFundação Getúlio Vargasc(Brésil) 3aFRbCCN0034-7140 a1947 --> 1984 donné au CTLES4 uhttp://www.scielo.br/scielo.php?script=sci_serial&pid=0034-7140&lng=en&nrm=iso1 bvol. 39 no. 2 (1985) -....cParisdMagasins/AnnexeeP 8° 01141 b(1947) -(1976)cParisdMagasins/AnnexeeP Index 0312 aZPAY aexempb201101 aGEO RD Amérique latine aGEO RD4.13 Brésil aDEW 330.901323nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210002800195326001600223430003700239517003200276517010600308530004700414606005700461606004400518710007800562856008800640856003700728955006700765957010200832972000900934991001800943992001200961087943921000012082720130319051830.01 a1133-6595 aFNSP498245 a0000120827 a19940311a19859999 ba0 aspa aES aaja 10aRevista CIDOB d'afers internacionals aBarcelonacCIDOBd1985- aTrimestriel 1aAfers internacionals,x0212-178610aAfers internacionals (1985)10aRevista Centre d'Informació i Documentació Internacionals a Barcelona d'afers internacionals (1985)10aRevista CIDOB d'afers internacionalsb1985 aRelations économiques internationalesxPériodiques aRelations internationalesxPériodiques02aCentre d'informació i documentació internacionalsc(Barcelone, Espagne)4 uhttp://www.cidob.org/es/publicaciones/revistas/revista_cidob_d_afers_internacionals zAccès libre au texte intégral.1 bno. 7 (aut/hiv-1985) -....cParisdMagasins/AnnexeeP 8° 46571 bno. 0 (1982) -no. 23/24 (1992)cParisdMagasins/Annexezse trouve dans le n°25, 1993 de la revue aZSAB aexempb201003 aDEW 32701331nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200006900163210002600232225003600258326001500294430007200309512004400381532007100425606002400496606003300520710003600553801001300589830008400602856006500686856006900751955006000820972000900880992002300889992002100912992001200933038984172000043948020130319051830.01 a0104-3315 a0000439480 a a19689999k fre ba0 apor aBR a 0  ar aaj z 0 10aRevista da Faculdade de direito. Universidade Federal do Paranã aCuritibacUFPRd1968-20aColeção acadêmica de direito aSemestriel 1tRevista da Faculdade de direito, Universidade do Parañax0526-430810aRevista da Faculdade de direito da UFPR10aRevista da Faculdade de direito da Universidade Federal do Paraña aDroitxPériodiques aDroityBrésilxPériodiques02aUniversidade federal do Paraná 0aFRbFNSP aAño 11, n°11, 1968 ---> 1998 < P 8° 2752 > collection donnée au CTL en 20024 uhttp://ojs.c3sl.ufpr.br/ojs2/index.php/direito/issue/archive4 zAccès aux sommaires et texte intégral depuis le volume 1, 19531 bno. 32 (1999) -....cParisdMagasins/AnnexeeP 8° 2752 aZECH aGEO RD4.13 Brésil aGEO RQ Universel aDEW 34901298nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004000139210005300179326001600232430007100248452006100319517000800380530005300388606004600441607004200487710004200529801002100571856011800592955020500710991001800915992002300933992001600956038784599000003777920130524122331.01 a0034-7612 aFNSP209959 a19900101a19679999 ba0 apor aBR aahu 10aRevista de administração pública aRio de JaneirocFundaçâo Getulio Vargasd1967- aTrimestriel 1aBoletim do Centro de pesquisas administrativas da EBAP,x0101-1871 1tRevista de administração pública (Online),x1982-313410aRAP aRevista de administração pública‎bImpresso aPolitique publiqueyBrésilxPériodiques aBrésilxAdministrationxPériodiques02aFundação Getúlio Vargasc(Brésil) 3aFRbCCN0034-76124 uhttp://bibliotecadigital.fgv.br/ojs/index.php/rap$Accès libre au texte intégral à partir du vol. 1, no 1, 19671 bvol. 1 no. 2 (1967) -vol. 31 no. 3 (1997)cParisdMagasins/AnnexeeP 8° 2738wManquant : vol. 20, no 4, 1986 à vol. 22, no 1, 1988 ; vol. 23, no 1, 1989 à vol. 24, no. 4, 1990 ; vol. 31, no 2, 1997 aexempb201305 aGEO RD4.13 Brésil aDEW 350-35401358nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004000154210006800194326001600262530004800278606009400326606004700420607004200467710005000509801002100559856004800580856012200628955009600750957007200846972000900918991001800927992002300945992001600968992001200984038784610000003780720130319051830.01 a0034-7639 aFNSP210039 a0000037807 a19900101a19509999 ba0 aspa aES aaha 10aRevista de administración pública aMadridcCentro de Estudios Políticos y Constitucionalesd1950- aTrimestriel 0aRevista de administración públicabMadrid aAdministration localexDroityEspagnexCommunautés autonomesxPériodiquesxPériodiques aDroit administratifyEspagnexPériodiques aEspagnexAdministrationxPériodiques02aCentro de estudios constitucionalesc(Madrid) 3aFRbCCN0034-76394 uhttp://revistas.cepc.es/revistas.aspx?IDR=1 zContenu : accès aux sommaires depuis le n°1, enero-abril 1950 et texte intégral sauf pour les 4 dernières années1 bno. 1 (1950) -no. 135 (1994) ; no. 160 (jan-2003) -....cParisdMagasins/AnnexeeP 8° 08701 bno. 1 (1950) -no. 129 (1992);cParisdMagasins/AnnexeeP Index 0205 aZCAD aexempb201211 aGEO RA6.02 Espagne aDEW 350-354 aDEW 34201314nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000650013921001010020432600150030545200670032053000550038760600430044260600360048571000530052185600830057485601330065795500640079095700700085497200090092499100180093399200210095199200160097203967830X000003780820130917144505.01 a0716-1417 aFNSP210041 a19900101a19799999 ba0 aspa aCL aaha 10aRevista de ciencia políticafInstituto de Ciencia Política aSantiago‎cInstituto de Ciencia Política. Pontificia Universidad Católica de Chile‎d1979- aSemestriel 1tRevista de ciencia política (Santiago. En línea),x0718-090X aRevista de ciencia política‎bSantiago. Impresa aScience politiqueyChilixPériodiques aScience politiquexPériodiques02aInstituto de ciencia política (Santiago, Chili)4 uhttp://www.scielo.cl/scielo.php?script=sci_issues&pid=0718-090X&lng=es&nrm=iso zContenu: sommaires, résumés et texte intégral depuis le volume 22, n°2, 2002 ; recherche possible par titre, auteur ou sujet1 bvol. 6 no.2 (1984) -....cParis,Magasins/AnnexeeP 8° 49141 bvol.1 (1979) -vol. 20 (1999)cParis,Magasins/AnnexeeP Index 0843 aZCAD aexempb201002 aGEO RD4.14 Chili aDEW 320-32101534nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154207008000187210007200267326001500339530005300354606005400407606004800461710006600509801002100575856003700596856005300633856017000686856003700856955005900893957010300952972000901055991001801064992002801082992002601110992001201136038784769000004927220130319051830.01 a0034-7817 aFNSP244789 a0000049272 a19900101a19579999 ba0 aspa aPR aaju 10aRevista de ciencias sociales 1avol. 1 no. 1 (mar-1957) -vol. 30 no. 3/4 (mai-1995) ; n.s no. 1 (jun-1996)- aRio Piedras, Puerto RicocCentro de investigaciones socialesd1957- aSemestriel02aRevista de ciencias socialesbRío Piedras, P.R. aSciences socialesyAmérique latinexPériodiques aSciences socialesyPorto RicoxPériodiques02aCentro de investigaciones sociales (Rio Piedras, Puerto Rico) 3aFRbCCN0034-78174 uhttp://cis.uprrp.edu/revista.htm zContenu : sommaires et résumés depuis le n°134 uhttp://sala.clacso.org.ar/gsdl/cgi-bin/library?e=d-000-00---0prcisp--00-0-0Date--0prompt-10---4------0-1l--1-es-Zz-1---20-about---00031-001-0-0utfZz-8-00&a=p&p=about zAccès libre au texte intégral.1 bno. 1 (1957) -....cParisdMagasins/AnnexeeP 8° 18811 b(1957) -(2002)cParisdMagasins/Annexezcet index se trouve dans le no. 12, hiver 2003 de la revue aZPAY aexempb201009 aGEO RD Amérique latine aGEO RD3.32 Porto Rico aDEW 97201149nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000330015421000480018732600150023553000440025060600540029460600360034871000300038480100210041485601280043585601080056395500730067199100180074499200210076299200280078399200120081103962241X000003781320130319051831.01 a0482-5276 aFNSP210050 a0000037813 a19900101a19599999 ba0 aspa aCR aahu 10aRevista de ciencias sociales aSan JosécUniversidad de Costa Ricad1959- aSemestriel 0aRevista de ciencias socialesbSan José aSciences socialesyAmérique latinexPériodiques aSciences socialesxPériodiques02aUniversidad de Costa Rica 3aFRbCCN0482-52764 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=L1O&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 11 (avr-1976) -no. 44 (1989)cParisdMagasins/AnnexeeP 8° 4333 aexempb201101 aGEO RQ Universel aGEO RD Amérique latine aDEW 30001199nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004300154210006700197326002400264326002600288430005500314601004400369606003400413606004400447710006200491856003800553856010600591955006600697972000900763991001800772992005700790992001400847036356352000023665720130319051831.01 a1138-4026 aFNSP837005 a0000236657 a19900101a19979999 ba0 aspa aES aaia 10aRevista de derecho comunitario europeo aMadridcCentro de estudios politicos y constitucionalesd1997- a3 nos par anb2002- aSemestrielb1997-2001 1aRevista de instituciones europeas,xISSN 0210-092402aCommunautés européennesxPériodiques aDroit européenxPériodiques aInstitutions européennesxPériodiques02aCentro de estudios politicos y constitucionalesc(Madrid)4 uhttp://www.cepc.es/revistasre.asp zContient : sommaires depuis le n°1, janvier 1997, texte intégral sauf pour les 4 dernières années1 bvol. 1 no. 1 (1997) -....cParisdMagasins/AnnexeeP 8° 3497 aZSAB aexempb201006 aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 341.201117nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210005200188326001600240606005500256607005800311607004900369712003300418856002700451856012600478955007100604972000900675991001800684992002800702992002300730992001200753992001400765038972131000010478120130319051831.01 a0101-3157 aFNSP446315 a0000104781 a19900101a19899999 ba0 apor aBR aaha 10aRevista de economia política aSão PaulocCentro de Economia Políticad1981- aTrimestriel aEconomie politiqueyAmérique latinexPériodiques aAmérique latinexPolitique économiquexPériodiques aBrésilxPolitique économiquexPériodiques02aCentro de economia política4 uhttp://www.rep.org.br/ zContenu : sommaires, résumés et texte intégral (sauf dernière année) depuis le volume 1, n°1, janvier-février 19811 bvol. 9 no. 1 = 33 (1989) -....cParisdMagasins/AnnexeeP 8° 5586 aZPAY aexempb201110 aGEO RD Amérique latine aGEO RD4.13 Brésil aDEW 330 aDEW 338.901203nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009500154210005400249326001500303430004600318517003100364530003500395606003700430606002800467710004800495801002100543830012100564856004000685856003600725955006500761992002300826992001600849038784955000006925320130319051831.01 a0034-8082 aFNSP320353 a0000069253 a19900101a19529999 ba0 aspa aES aagu 10aRevista de educaciónfMinisterio de educación y cienciagSecretaria general de educacion aMadridcMinisterio de educación y cienciad1952- aBimestriel 1aRevista nacional de educaciónx0210-226910aR.E. Revista de educación10aRevista de educación (Madrid) aEducationyEspagnexPériodiques aEducationxPériodiques02aEspagnebMinisterio de educación y ciencia 3aFRbCCN0034-8082 aVol. 7, n°88, 1958 -vol. 31, n°272, 1983 < P 4° 2284 > et < P Index 0444 > collection donnée au CTL en juin 20024 uhttp://www.revistaeducacion.mec.es/ zAccès libre au texte intégral1 bno. 339 (jan-2006) -....cParisdMagasins/AnnexeeP 8° 6997 aGEO RA6.02 Espagne aDEW 370-37901179nls 2200349 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000063001502070011002132100044002242300024002683260016002926060051003086060050003596060050004096060049004596060051005086060050005597120040006098010013006498560113006628560037007759550005008129920012008170001231658000123165820130319051831.0 a0001231658 a a19809999k fre 01 ba0 aspa aES ar aah z  adr 10aRevista de Estudios de Juventudb[Ressource électronique] 1a1980-1 aMadrid;cInstituto de la Juventud$1980- aRevue électronique aTrimestriel aJeunesseyEspagnexConditions sociales2rameau aJeunesseyEuropexConditions sociales2rameau aJeunessexPolitique publiqueyEspagne2rameau aJeunessexPolitique publiqueyEurope2rameau aJeunessexActivité politiqueyEspagne2rameau aJeunessexActivité politiqueyEurope2rameau02aInstituto de la juventudc(Espagne) 0aFRbFNSP4 uhttp://www.injuve.mtas.es/contenidos.type.action?type=1408152728&menuId=1408152728&mimenu=Revista%20Juventud zAccès libre au texte intégral.1 r aDEW 30001423nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154210006700189326001500256606004500271606004000316606004900356606003600405676000800441710006200449711005000511801002100561801001300582856004800595856010900643955006700752955006600819957007400885972000900959991001800968992002300986992001601009038831104000000546120130319051831.01 a0048-7694 aFNSP108367 a0000005461 a19900101a19409999 ba0 aspa aES aagu 10aRevista de estudios políticos aMadridcCentro de estudios politicos y constitucionalesd1941- aBimestriel aScience politiqueyEspagnexPériodiques aDroit constitutionnelxPériodiques aDroit constitutionnelyEspagnexPériodiques aScience politiquexPériodiques a32002aCentro de estudios politicos y constitucionalesc(Madrid)02aCentro de estudios constitucionalesc(Madrid) 3aFRbCCN0048-7694 0aFRbFNSP4 uhttp://revistas.cepc.es/revistas.aspx?IDR=3 zContient : sommaires depuis le numéro 1, janvier/mars 1941 et texte intégral sauf 4 dernières années1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bvol. 1 no. 1 (1941) -....cParisdMagasins/AnnexeeP 8° 00471 b(1941) -(1955) ; (1956) -(1960)cParisdMagasins/AnnexeeP Index 0046 aZGRA aexempb201011 aGEO RA6.02 Espagne aDEW 320-32101072nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000107001642100054002713260015003256060045003406060038003856070026004237120069004498010013005188560026005318560063005579550078006209720009006989920016007079920023007230000476898000047689820130319051831.01 a0104-4478 a0000476898 a a19939999k fre ba0 apor aBR a 0  ar aaj z 0 10aRevista de sociologia e politicafDepartamento de Ciências sociais da Universidade Federal do Paranà aCuritibacDepartamento de ciencias sociaisd1993- aSemestriel aScience politiqueyBrésilxPériodiques aSociologieyBrésilxPériodiques aBrésilxPériodiques02aUniversidade federal do ParanabDepartamento de ciencias sociais 0aFRbFNSP4 uhttp://www.scielo.br/ zContenu : texte intégral de la revue depuis le n°1, 19931 bno. 12 (jun-1999) ; no. 14 (jun-2000)cParisdMagasins/AnnexeeP 4° 6939 aZSAB aDEW 320-321 aGEO RD4.13 Brésil01026nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003900139210004300178326001200221530003800233606003700271606006700308607005200375710008400427801002100511856007500532955007000607972000900677992002400686992001400710038673975000008998420131205161516.01 a0005-4828 aFNSP396573 a19900101a19279999 ba0 aspa aCO aafa 10aRevista del Banco de la República aBogotácBanco de la Repúblicad1927- aMensuel10aRevista del Banco de la Republica aFinancesyColombiexPériodiques aDroit public économiqueyColombiexLégislationxPériodiques aColombiexConditions économiquesxPériodiques02aBanco de la Repúblicac(Colombie)bDepartamento de investigaciones económicas 3aFRbCCN0005-48284 uhttp://www.banrep.gov.co/revista-banco$Accès libre au texte intégral1 bno. 698 (1985) -no 963 (2008)cParisdMagasins/AnnexeeP 4° 1217 aZPAY aGEO RD4.16 Colombie aDEW 330.901426nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005700154210006000211300025700271326001900528606006600547606004000613606004900653606004600702710005400748856005100802856003600853955006800889972000900957991001800966992002300984992005701007992001201064036343714000025664520130319051831.01 a1137-5868 aFNSP895101 a0000256645 a19980929a19979999 ba0 aspa aES aafa 10aRevista del Ministerio de trabajo y asuntos sociales aMadridcMinisterio de trabajo y asuntos socialesd1997- aLa revue comporte 5 séries qui paraissent avec une numérotation continue à raison de 2 n°s dans chacune des séries suivantes : Dercho del trabajo, Seguridad social, Derecho social internacional y comunitario, Economia y sociologia,Asuntos sociales a10 n°s par an aSécurité socialeyPays de l'Union européennexPériodiques aDroit socialyEspagnexPériodiques aDroit social (droit européen)xPériodiques aSécurité socialeyEspagnexPériodiques02aEspagnebMinisterio de trabajo y asuntos sociales4 uhttp://www.mtas.es/publica/revista/default.htm zAccès libre au texte intégral1 bno. 1 (1997) -no. 78 (2008)cParisdMagasins/AnnexeeP 8° 6428 aZPAY aexempb201212 aGEO RA6.02 Espagne aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 33101544nls 2200361 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000084001502100060002342300024002943000258003183260019005764370132005956060066007276060040007936060049008336060046008827100054009288010013009828560054009958560036010499550005010859920023010909920057011139920012011700001162060000116206020130319051831.0 a0001162060 a a20009999k fre 01 ba0 aspa aES ar aaf z  adr 10aRevista del Ministerio de trabajo y asuntos socialesb[Ressource électronique] aMadridcMinisterio de trabajo y asuntos socialesd2000- aRevue électronique aLa revue comporte 5 séries qui paraissent avec une numérotation continue à raison de 2 n°s dans chacune des séries suivantes : Dercho del trabajo, Seguridad social, Derecho social internacional y comunitario, Economia y sociologia, Asuntos sociales a10 n°s par an 1aEconomia y sociologia del trabajo (0214-6029)

et de Revista de trabajo y seguridad social (1132-8584)

 aSécurité socialeyPays de l'Union européennexPériodiques aDroit socialyEspagnexPériodiques aDroit social (droit européen)xPériodiques aSécurité socialeyEspagnexPériodiques02aEspagnebMinisterio de trabajo y asuntos sociales 0aFRbFNSP4 uhttp://www.mtas.es/es/publica/revista/default.htm zAccès libre au texte intégral1 r aGEO RA6.02 Espagne aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 33101446cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200009700162210010700259326001500366530003300381606005400414607005100468710009000519801003000609801002300639802000700662856008800669856009200757856006900849856005500918955007400973992001601047992002101063093357184000116776120130319051831.01 a0718-0241 aissn07180241 a0001167761 a20040609a20039999k y0frey0103 ba0 aspa aCL ar aaja uu 10aRevista enfoqueseciencia política y administración públicafUniversidad Central de Chile aSantiagocFacultad de ciencias politicas y administracion publica, Universidad Central de Chiled2003- aSemestriel10aRevista enfoquesb(Santiago) aScience politiqueyAmérique latinexPériodiques aAmérique latinexAdministrationxPériodiques02aUniversidad Central de ChilebFacultad de ciencias politicas y administracion publica 3aFRbAbesc20090427gAFNOR 3aFRbISSNc20090427 a134 uhttp://dialnet.unirioja.es/servlet/revista?tipo_busqueda=CODIGO&clave_revista=11361 zSommaire des n°s depuis le no. 5 (2004), résumé et/ou texte intégral selon les n°s4 uhttp://redalyc.uaemex.mx/src/inicio/HomRevRed.jsp?iCveEntRev=960 zSommaires et texte intégral depuis le n°3 (2004)1 bvol. 6 no. 8 (jan/jun-2008) -....cParisdMagasins/AnnexeeP 8° 7092 aDEW 320-321 aGEO RD4.14 Chili01055nas 2200313 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200010700148210002400255326001800279530004300297606003600340606004500376710007100421801001300492856004200505856008300547955006300630972000900693992001600702992002300718058381465000040601220130925161512.01 a1575-6548 a a19999999k fre ba0 aspa aES a 0  ar aaj z 0 10aRevista española de ciencia politicafAsociacion española de ciencia politica y de la administracion aMadridcPonsd1999- a3 n°s par an aRevista española de ciencia política aScience politiquexPériodiques aScience politiqueyEspagnexPériodiques02aAsociación española de ciencia política y de la administración 0aFRbFNSP4 uhttp://www.aecpa.es/revista/recp.html zContenu : Sommaires, résumés et texte intégral depuis le n°1, octobre 19991 bno. 1 (oct-1999) -....cParisdMagasins/AnnexeeP 8° 6585 aZSAB aDEW 320-321 aGEO RA6.02 Espagne01268nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004800154210005500202326001800257606004900275606009400324710005000418711006200468801002100530856004800551856011300599955007000712957008600782972000900868991001800877992002300895992001200918039196518000003800620130319051831.01 a0211-5743 aFNSP210877 a0000038006 a19900101a19819999 ba0 aspa aES aaiu 10aRevista española de derecho constitucional aMadridcCentro de estudios constitucionalesd1981- a3 n°s par an aDroit constitutionnelyEspagnexPériodiques aAdministration localexDroityEspagnexCommunautés autonomesxPériodiquesxPériodiques02aCentro de estudios constitucionalesc(Madrid)02aCentro de estudios politicos y constitucionalesc(Madrid) 3aFRbCCN0211-57434 uhttp://revistas.cepc.es/revistas.aspx?IDR=6 zContient : sommaires depuis le n 1, janvier-avril 1981 et texte intégral sauf pour les 4 dernières années1 bvol. 3 no. 7 (jan-1983) -....cParisdMagasins/AnnexeeP 8° 46711 bvol. 1 no. 1 (1981) -vol. 13 no. 39 (1993)cParisdMagasins/Annexe:eP Index 0725 aZSAB aexempb201003 aGEO RA6.02 Espagne aDEW 34201125nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004700154210010100201326001500302606003800317710011600355801002100471856005900492955006700551955008200618957007200700991001800772992001200790992002100802038785536000003801020130319051831.01 a0034-9380 aFNSP210881 a0000038010 a19900101a19489999 ba0 aspa aES aahu 10aRevista española de derecho internacional aaMadridcConsejo Superior de Investigaciones Científicas. Instituto Francisco de Vitoriad1948- aSemestriel aDroit internationalxPériodiques02aInstituto de ciencias jurídicas (Espagne). Departamento de derecho internacional "Francisco de Vitoria‎4070 3aFRbCCN0034-93804 uhttp://dialnet.unirioja.es/servlet/revista?codigo=12201 bvol. 58 no. 1 (2006) -....cParisdMagasins/AnnexeeP 8° 70181 bvol. 1 no. 1 (1948) -vol. 45 no. 2 (1993)cParisdMagasins/AnnexeeP 8° 08581 bvol. 1 (1948) -vol. 35 (1983)cParisdMagasins/AnnexeeP Index 0633 aexempb201101 aDEW 341 aGEO RQ Universel01522nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005500154210006400209326001600273430006100289517006100350530007200411606002900483606003800512676000800550710005500558801002100613856012800634856010800762955006600870955006800936957007001004972000901074991001801083992002301101992001201124039192202000003801220130319051831.01 a0210-5233 aFNSP210883 a0000038012 a19900101a19789999 ba0 aspa aES aahu 10aRevista española de investigaciones sociológicas aMadridcCIS, Centro de investigaciones sociológicasd1978- aTrimestriel 1aRevista española de la opinion públicaxISSN 0034-942910aREIS. Revista española de investigaciones sociológicas00aRevista española de investigaciones sociológicasbEd. en español aSociologiexPériodiques aSociologieyEspagnexPériodiques a30102aCentro de investigaciones sociológicasc(Espagne) 3aFRbCCN0210-52334 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=HHY&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3011 bno. 1 (jan-mar 1978) - ....cParisdMagasins/AnnexeeP 8° 40811 bno. 1 (1978) -no. 68 (1994)cParisdMagasins/AnnexeeP Index 0578 aZGRA aexempb201010 aGEO RA6.02 Espagne aDEW 30101327nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200012100139207001900260210002800279326001500307430006700322510006000389530006200449607003500511607003500546676000800581710007300589856011400662955006600776955006400842972000900906992002200915992002800937992001200965040035166000000795620130826162137.01 a0924-0608 aFNSP113642 a19900521a19899999 ba0 amul aNL aaja 10aRevista europea de estudios latinoamericanos y del Caribed= European review of Latin American and Caribbean studies 1ano. 47 (1989)- aAmsterdamcCEDLAd1989- aSemestriel 1aBoletín de estudios latinoamericanos y del Caribe,x0304-263410aEuropean review of latin american and caribbean studies00aRevista europea de estudios latinoamericanos y del caribe aRégion caraïbexPériodiques aAmérique latinexPériodiques a98002aCentrum voor studien en documentatie van Latijns Amerika (Amsterdam)4 uhttp://www.cedla.uva.nl/50_publications/erlacs_index.htmlzAccès libre au texte intégral depuis no 48, 19901 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9801 bno. 47 (dec-1989) -....cParisdMagasins/AnnexeeP 8° 3196 aZPAY aGEO RD3 Caraïbes aGEO RD Amérique latine aDEW 98001210nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200013200163210011100295326001700406517000900423606004400432606004400476607006600520710008800586801001300674856003400687955008900721972000900810991001800819992001200837992002300849058334319000048888520130319051831.01 a1516-5973 a0000488885 a a19999999k fre ba0 apor aBR a 0  ar aai z 0 10aRevista internacional de estudos politicosfUniversidade do Estado do Rio de Janeiro. Nucleo superior de estudos governamentais aRio de JaneirocUniversidade do Estado do Rio de Janeiro, Nucleo superior de estudos governamentaisd1999- a3 nos par an10aRIEP aRelations internationalesxPériodiques aRelations internationalesxPériodiques aBrésilxPolitique et gouvernementz20e sièclexPériodiques02aUniversidade do Estado do Rio de JaneirobNucleo superior de estudos governamentais 0aFRbFNSP4 uhttp://www.pep.nuseg.uerj.br/1 bvol. 1 no. 1 (avr-1999) -vol. 2 no. 2 (aou-2000)cParisdMagasins/AnnexeeP 8° 6657 aZSAB aexempb201212 aDEW 327 aGEO RD4.13 Brésil01298nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004000154210002400194326002800218326002700246517000800273606003800281606002900319710005500348801002100403856007200424856019500496955011000691957007000801972000900871992002300880992003300903992001200936038785684000003801820130319051831.01 a0034-9712 aFNSP210892 a0000038018 a19900101a19429999 ba0 aspa aES aaiu 10aRevista internacional de sociologia aMadridcCSICd1942- aTrois n° par anb1992- aTrimestrielb1942-198910aRIS aSociologieyEspagnexPériodiques aSociologiexPériodiques02aInstituto de estudios sociales avanzadosc(Madrid) 3aFRbCCN0034-97124 uhttp://revintsociologia.revistas.csic.es/index.php/revintsociologia zContenu : sommaires et résumés (en anglais et en espagnol) depuis le n°1, janvier-avril 1992 ; accès au texte intégral (à l'exception du dernier numéro) depuis le vol 64, n° 43, 20061 bvol. 43 no. 1 (1985) -vol. 47 no. 4 (1989) ; n.s., no. 1 (1992) -....cParisdMagasins/AnnexeeP 8° 00641 bno. 1 (1992) -no. 12 (1995)cParisdMagasins/AnnexeeP Index 0769 aZECH aGEO RA6.02 Espagne aGEO RS Sans aspect régional aDEW 30101178nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210006600176326001200242607002700254710004500281712003700326801002100363856006100384856005900445955007700504955012300581957007300704972000900777991001800786992002400804992001200828039011445000003810820130319051831.01 a0120-3088 aFNSP211307 a0000038108 a19900101a19329999 ba0 aspa aCO aafu 10aRevista javeriana aBogotacProvincia colombiana de la Compañia de Jesúsd1932- aMensuel aColombiexPériodiques02aCompagnie de Jésus. Province (Colombie)02aFundación escritores (Colombie) 3aFRbCCN0028/131X4 uhttp://www.javeriana.edu.co/revistajaveriana/revista.htm zSommaires et résumés depuis le n°691, février 20031 bvol. 70 no. 681 (jan/fev-2002) -....cParisdMagasins/AnnexeeP 4° 69411 bvol. 39 no. 192 (1953) ; vol. 63 no. 12 (mar-1965) -vol. 69 no. 680 (nov/dec-2001)cParisdMagasins/AnnexeeP 8° 21531 bvol. 83 (1975) -vol. 88 (1977)cParisdMagasins/AnnexeeP Index 0325 aZCAD aexempb201003 aGEO RD4.16 Colombie aDEW 98001562nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005500154210002500209326002400234326002700258430005800285606005400343606004500397607004200442607005100484710004600535801002100581856007700602856007100679955019300750957014200943972000901085991001801094992002001112992002801132992001601160039135063000003811320130319051831.01 a0185-1918 aFNSP211324 a0000038113 a19900101a19759999 ba0 aspa aMX aaiu 10aRevista mexicana de ciencias políticas y sociales aMéxicocUNAMd1975- a3 nos par anb2000- aTrimestrielb1975-1999 1aRevista mexicana de ciencia políticaxISSN 0034-9976 aScience politiqueyAmérique latinexPériodiques aScience politiqueyMexiquexPériodiques aMexiquexAdministrationxPériodiques aAmérique latinexAdministrationxPériodiques02aUniversidad nacional autónoma de México 3aFRbCCN0185-19184 uhttp://redalyc.uaemex.mx/redalyc/src/inicio/HomRevRed.jsp?iCveEntRev=421 zContenu : accès libre au texte intégral depuis le no. 183 (2001)1 bvol. 21 no. 81 (jul/sep-1975) -vol. 33 no. 129 (jul/sep-1987) ; vol. 37 no. 147 (jan/mar-1992) -no 190 (jan-2004)cParisdMagasins/AnnexeeP 8° 1676wManquant : no. 130, 1987 à 146, 19911 bno. 1 (1955) -no. 80 (1975)cParisdMagasins/AnnexeeP Index 0201zno. 81 (1975) -no. 159 (1995) : constitue le no. 160, 1995 de la revue aZSAB aexempb201102 aGEO RD1 Mexique aGEO RD Amérique latine aDEW 320-32101650nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200003600138210008700174326001600261606003800277606002900315606004500344606005400389606003600443606004700479710005200526801002100578856004200599856009100641856009000732856010800822856005700930856003700987955008401024957009101108972000901199992002801208992001601236039139255000003811820130319051831.01 a0188-2503 aFNSP211346 a0000038118 a19900101a19399999 ba0 aspa aMX10aRevista mexicana de sociología aInstituto de Investigaciones Sociales de la Universidad Nacional de Méxicod1939- aTrimestriel aSociologieyMexiquexPériodiques aSociologiexPériodiques aScience politiqueyMexiquexPériodiques aScience politiqueyAmérique latinexPériodiques aScience politiquexPériodiques aSociologieyAmérique latinexPériodiques02aInstituto de investigaciones socialesc(Mexico) 3aFRbCCN0028/15064 uhttp://132.248.82.108/rms/indice.html zContenu : résumés en espagnol depuis 1990 ; sommaires et texte intégral depuis 19984 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01882503.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.ejournal.unam.mx/cuadros2.php?r=24&liga=1 zAccès libre au texte intégral.1 bvol. 8 no. 1 (1946) -vol. 63 no. 3/4 (2001)cParisdMagasins/AnnexeeP 8° 00661 b(1939) -(1982) ; (1939) -(1991) ; (1991) -(1995)cParisdMagasins/AnnexeeP Index 0313 aZPAY aGEO RD Amérique latine aDEW 320-32101071nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210002600198326001500224606004700239606005400286710008800340856008900428856006900517955007500586972000900661991001800670992002500688992002800713992001600741039759954000008502120130319051831.01 a0798-9881 aFNSP377559 a0000085021 a19900101a19879999 ba0 aspa aVE aaja 10aRevista venezolana de ciencia política aMeridacCEPSALd1987- aSemestriel aScience politiqueyVenezuelaxPériodiques aScience politiqueyAmérique latinexPériodiques02aCentro de estudios políticos y sociales de la América latina (Mérida, Venezuela)4 uhttp://www.revencyt.ula.ve/scielo.php?script=sci_serial&pid=0798-9881&lng=es&nrm=iso zContenu : accès libre au texte intégral depuis 1987 via Scielo1 bvol. 1 no. 1 (1987) -no. 29 (2006)cParisdMagasins/AnnexeeP 8° 5912 aZSAB aexempb201206 aGEO RD4.20 Venezuela aGEO RD Amérique latine aDEW 320-32101592cas0 2200373 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200007300148207005900221210004600280215004300326314020300369320002900572326002300601326002400624530003000648607005800678676001100736702003600747702004900783712007100832712006500903801003000968856014500998955005501143991002001198037461389000108558220130319051831.0 accn0110/1978 a0001085582 a19830101b18811939k y frey0103 ba0 afre aFR ar aah 103aLa Révolution françaiseerevue d'histoire moderne et contemporaine 0at.1-87, no.4, [Juil. 1881]-1934; n.s. no.1-18, 1935-39 aPariscCharavay frères [etc.]d1881-1939 avol.cplanches, plans, facsims.d25 cm a1899-1934; 1937, no. 11-1938 publiées par La Société de l'histoire de la révolution; 1935-1937, no. 10 par Paris. Université. Faculté des lettres. Centre d'études de la révolution française aTable T.1-28 (1881-1895) aTrimest.bvol. 72- aMensuelbvol. 36-7103aLa Révolution française aFrancez1789-1799 (Révolution)xPériodiques2rameau a944.04 1aDidebAugustef(1839-1918)4340 1aAulardbFrançois-Alphonsef(1840-1928)434002aSociété de l'histoire de la Révolution françaisec(Paris)434002aUniversité de Parisc(1896-1968)bFaculté des lettres4340 3aFRbAbesc20060426gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb32856100s/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1881-1936)1 b(1887) -(1939)cParisdMagasins/AnnexeeP 8° 0474 aPériobTP01 P801292nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210002400179326001500203606004200218606004400260607004800304607004500352607005000397710004800447856004100495856004800536856010900584856010800693955007000801972000900871991001800880992002000898992001200918040085171000020900420130319051831.01 a0954-6545 aFNSP757766 a0000209004 a19900101a19889999 ba0 aeng aGB aaja 10aRevolutionary Russia aLondoncCassd1988- aSemestriel aRévolutionnairesyURSSxPériodiques aRévolutionnairesyRussiexPériodiques aURSSz1917-1921 (Révolution)xPériodiques aRussiez1917 (Révolution)xPériodiques aRussiez1905-1907 (Révolution)xPériodiques02aStudy Group on the Russian Revolutionc(GB)4 uhttp://www.frankcass.com/jnls/rr.htm zContenu : sommaires depuis le vol. 10, n°14 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713636440db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 1 (jun-1992) -....cParisdMagasins/AnnexeeP 8° 6314 aZSAB aexempb201210 aGEO RA7.01 URSS aDEW 94701262cas0 2200397 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012310600060014111000160014720000430016320700220020621000490022832600190027732600260029643000470032251700420036951700300041153000260044160600440046760600370051160600290054867600080057780100300058585600460061585600460066195500730070795500630078097200090084399200120085210896907X000107907520130319051831.01 a1951-1841 a0001079075 a20060922a20069999k y0frey0103 ba0 afre aFR a 0  ar aag 0 13aLa Revueepour l'intelligence du monde 1ano. 2 (mai-2006)- aPariscCIDCOM/Le groupe jeune Afriqued2006- aMensuelb2010- aBimestrielb2006-2009 1tLa Revue de l'intelligent,xISSN 1763-340013aLa Revue pour l'intelligence du monde13aLa Revue de l'intelligent13aLa RevuebParis. 2006 aRelations internationalesxPériodiques aVie intellectuellexPériodiques aActualitéxPériodiques a001 3aFRbAbesc20061010gAFNOR4 uhttp://www.larevue.info/quisommesnous.asp zContenu : sommaires depuis le no. 1, 20061 bLes 3 dernières annéescParisd27, Salle Rez-de-chausséeeDEW 0011 bno. 2 (mai-2006) -....cParisdMagasins/AnnexeeP 8° 6744 aZPAY aDEW 00101218nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210005800182210005600240210002800296326001500324430002900339530003200368607004100400676000800441801002100449830002800470856006100498856003600559955006700595955006300662957005100725972000900776992002200785992001600807992000900823039227405000000539220130319051831.01 a0035-0672 aFNSP108135 a0000005392 a19900101a19489999 ba0 afre aFR aagu 13aLa Revue administrative aPariscEditions de la Revue administratived1948-2005 aaPariscPresses universitaires de Franced2006-2008 aPariscEconomicad2010- aBimestriel 1aL'Administration moderne 0aRevue administrativebParis aFrancexAdministrationxPériodiques a351 3aFRbCCN0035-0672 aDe 1948 à 1999 au 13 U4 uhttp://www.puf.com/wiki/Revues:Revue_administrative_(la) zContenu : sommaires depuis 19991 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3511 bvol. 1 no. 1 (jan-1948) -....cParisdMagasinseP 4° 00241 b(1948) -(1952)cParisdMagasins:eP Index 0075 aZCAD aGEO RA4.06 France aDEW 350-354 aPBUL01117cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200008000197210006100277304002400338305005100362326001600413530002000429531001400449712004200463801003000505802000700535856014500542955007200687991002000759037966758000110423720130319051831.0 a1015-3551 accn1015-3551 accn7207/9452 a0001104237 a19900207b18561962 y0frey0103 ba0 afre aDZ ay 0  ar aaha o 0 010aRevue africaineejournal des travaux de la Société historique algérienne aAlgercOffice des publications universitairesd1856-1962 aLe sous-titre varie aL'année 1856 a donné lieu à une réédition aTrimestriel00aRevue africaine 0aRev. afr.02aSociété historique algérienne4340 3aFRbAbesc20060623gAFNOR a254 uhttp://gallica.bnf.fr/ark:/12148/cb328562033/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1856-1929)1 bno. 362 (1935) ; no. 368 (1936)cParisdMagasins/AnnexeeP 8° 2740 aPériobTP04 P801331cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200007200180210003300252215001000285326001500295327011000310430004900420440009400469530007200563531004300635710003100678801003000709802000700739856014500746955007000891991002000961037959964000108413520130319051831.0 a1013-2945 accn1013-2945 a0001084135 a19881220b18851912 y frey0103 ba0 afre aDZ a 0  ar aag 0 10aRevue algérienne et tunisienne de législation et de jurisprudence aAlgercA. Jourdand1885-1912 d24 cm aBimestriel| aDivisée en 3 parties : 1-Doctrine et légistlation, 2-jurisprudence, 3-lois, décrets, arrêtés etc.... 1tBulletin judiciaire de l'Algériex1013-2937 1tRevue algérienne, tunisienne et marocaine de législation et de jurisprudencex1013-295300aRevue algérienne et tunisienne de législation et de jurisprudence 0aRev. algér. tunis. légis. jurisprud.02aEcole de droitcAlger4070 3aFRbAbesc20050111gAFNOR a254 uhttp://gallica.bnf.fr/ark:/12148/cb32856287z/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1885-1912)1 bvol. 1 (1885) -vol. 28 (1912)cParisdMagasins/AnnexeeP 8° 0201 aPériobTP01 P800902nls 2200289 i 450 0010011000000020011000110050017000221000041000391010008000801020007000881060006000951100016001011350018001172000054001352100005001892300005001943000062001993260016002613360101002773370017003786060030003956070060004257100062004858010013005478560047005609550005006070000432336000043233620131023150524.0 a a20009999k fre 01 ba0 afre aFR az aay z  adr 10aRevue Amérique latineb[Ressource électronique] a a aTexte intégral de la revue depuis le n°1, février 2003 airrégulier aDonnées textuelles accessibles uniquement en ligne ou par abonnement par courrier électronique aFichiers PDF aRisque paysxPériodiques aAmérique du SudxConditions économiquesxPériodiques02aFrancebDirection des relations économiques extérieures 0aFRbFNSP4 uhttp://www.dree.org/publications/index.htm1 r01028nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210003100193326001500224517005100239517004000290606003800330710004300368801002100411856011100432856004500543955007500588991001800663992002100681992001200702038786338000003825020131104103213.01 a0035-0788 aFNSP211909 a0000038250 a19900101a19659999 ba0 afre aBE aaju 10aRevue belge de droit international aBruxellescBruylantd1965- aSemestriel10aBelgisch tijdschrift voor internationaal recht10aBelgian review of international law aDroit internationalxPériodiques02aSociété belge de droit international 3aFRbCCN0035-07884 uhttp://rbdi.bruylant.be/public/index.php?module_id=00000000009&rec_id=00000072572_00000011782#.UndpbTckQkQ zContenu : sommaires depuis le n°1, 19991 bno. 1 (1965) -vol. 31 no. 2 (1998)cParisdMagasins/AnnexeeP 8° 2110 aexempb200908 aGEO RQ Universel aDEW 34101194nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200007900139210005900218326001600277530007700293606004700370676000800417710005100425801002100476856018000497955006600677955007000743972000900813991001800822992002400840992001600864038786419000003825120131015164441.01 a0035-0834 aFNSP211912 a19900101a00019999 ba0 afre aBE aagu 10aRevue belge de sécurité sociale‎fMinistère de la prévoyance sociale aBruxellescMinistère de la prévoyance socialed1959- aTrimestriel 0aRevue belge de sécurité sociale - Ministère de la prévoyance sociale aSécurité socialeyBelgiquexPériodiques a36002aBelgiquebMinistère de la prévoyance sociale 3aFRbCCN0771-15304 uhttp://socialsecurity.fgov.be/fr/nieuws-publicaties/publicaties/btsz/belgisch-tijdschrift-voor-sociale-zekerheid.htmzAccès libre au texte intégral des nos à partir de 20001 bLes 3 dernières annéescParisd27, Salle 4e étageeDEW 3601 bvol. 1 no. 1 (jan-1959) -....cParisdMagasins/AnnexeeP 8° 1741 aZGRA aexempb201305 aGEO RA4.04 Belgique aDEW 360-36301533cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200013000180210007200310215001000382326001600392517015800408517014600566530013000712531008000842801003000922802000700952856014500959955008301104991002001187038834502000109509520130319051831.0 a1257-6298 accn1257-6298 a0001095095 a19941024b18941980k y0frey0103 ba0 afre aFR a 0  ar aaha 0 10aRevue bibliographique des ouvrages de droit, de jurisprudence, d'économie politique, de science financière et de sociologie aPariscLibrairie générale de droit et de jurisprudenced1894-1980 d23 cm aTrimestriel10aRevue bibliographique des ouvrages de droit, de jurisprudence, d'économie politique, de science financière, de sociologie, d'histoire et de philosophie10aRevue bibliographique des ouvrages de droit, de jurisprudence, d'économie politique, de science financière, de philosophie et de sociologie00aRevue bibliographique des ouvrages de droit, de jurisprudence, d'économie politique, de science financière et de sociologie 0aRev. bibliogr. ouvrages droit jurisprud. écon. polit. sci. financ. sociol. 3aFRbAbesc20050302gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb345189201/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1899-1937)1 bno. 1 (1936) -vol. 2 (1939) ; no. 1 (1954)cParisdMagasins/AnnexeeP 8° 0920 aPériobTP02 P801221cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200004600179210002900225326002300254421004100277430004400318434003400362434005100396444003800447517004600485530003600531801003000567801002300597802000700620856014500627955006700772991002000839038586002000109458920130319051831.0 a1153-4044 accn1153-4044 aissn11534044 a0001094589 a19920520b18911903uuuy1frey0103 ba0 afre aFR ar aafu uu 13aLa Revue blanchefdir. Alexandre Natanson aParisc[s.n.]d1891-1903 aMens. puis bimens. |tLe Chasseur de cheveluresx1153-6039 1tLa Revue blanche (Bruxelles)x0778-7375 |tLe Banquet (Paris)x0755-849X |tLa Revue franco-américaine (Paris)x1153-6047 |tLa Revue (Paris. 1900)x1153-601210aRevue blanche et Revue franco-américaine13aLa Revue blancheb(Paris. 1891) 3aFRbAbesc20061213gAFNOR 3aFRbISSNc20050826 a074 uhttp://gallica.bnf.fr/ark:/12148/cb344304470/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1891-1903)1 b(1894) -(1901)w1895, 1896cParisdMagasins/AnnexeeP 8° 0806 aPériobTP02 P801233cas0 2200301 450 00100100000000200110001000500170002103500170003803500150005510000410007010100080011110200070011910500180012610600060014411000160015020001080016621000940027430100550036851700220042353001080044560700470055367600080060080100300060885601340063885600840077295500550085699100200091103746521X000109457120130319051831.0 accn0116/3639 a0001094571 a19830101b18251901 y0frey0103 ba0 afre aFR a 0  ar aaua 0 z 10aRevue britannique ou choix d'articles traduits des meilleurs écrits périodiques de la Grande-Bretagne aPariscDondey-Dupré père et filscJules RenouardcMadame veuve Dondey-Dupréd1825-1901 aDemande de numérotation ISSN en cours par le CR2510aRevue britannique00aRevue britannique ou choix d'articles traduits des meilleurs écrits périodiques de la Grande-Bretagne aGrande-Bretagnez19e sièclezPériodiques a941 3aFRbAbesc20060922gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb32856514k/date.r=.langFRzAccès libre au texte intégral. Année 1887 numérisée sur Gallica4 zAccès libre au texte intégral. Nombreux volumes numérisés sur Google Livres1 b(1825) -(1901)cParisdMagasins/AnnexeeP 8° 0807 aPériobTP02 P801230nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200009500139210004900234326002400283326002600307510004400333530004900377606004600426606004500472710007400517801002100591856011200612955006600724972000900790991001800799992001900817992004200836992001400878039209822000003826020130910175626.01 a0225-5189 aFNSP211934 a19900101a19809999 ba0 amul aCA aaiu 10aRevue canadienne d'études du développement‎d= Canadian journal of development studies aOttawacEd. de l'Université d'Ottawad1980- a3 nos par anb1992- aSemestrielb1980-19911 aCanadian journal of development studies aRevue canadienne d'études du développement aAide économique canadiennexPériodiques aDéveloppement économiquexPériodiques02aInstitut de développement international et de coopérationc(Ottawa) 3aFRbCCN0225-51894 uhttp://www.tandfonline.com/loi/rcjd20zAccès libre aux sommaires et résumés depuis le vol. 1 no. 1, 19801 bvol. 1 no. 1 (1980) -....cParisdMagasins/AnnexeeP 8° 4374 aZSAB aexempb201106 aGEO RC1 Canada aGEO RO Pays en voie de développement aDEW 338.900968cas0 2200265 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200005000148210003900198301004600237303004700283530005000330606005600380801003000436856014500466955007100611991002000682036688592000108557220130319051831.0 accn0102/5694 a0001085572 a19830101c1873 frey0103 ba0 afre aFR ar aaf 10aRevue catholique des institutions et du droit aParisaGrenoblecLarosed1873-1939 aDemande de numérotation ISSN par le CR70 aNotice rev. d'après le n°1 publ. en 187300aRevue catholique des institutions et du droit aReligion et politiqueyFrancexPériodiques2rameau 3aFRbAbesc20060119gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb32856559j/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1872-1939)1 bvol. 27 (1899) -vol. 58 (1920)cParisdMagasins/AnnexeeP 8° 0505 aPériobTP01 P801169cas0 2200313 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119105001800126106000600144110001600150200011100166210006000277421002900337421003400366434002300400530005300423702004200476702003500518702003600553801003000589856014500619955007100764991002000835037457527000109456820130319051831.0 accn0103/4502 a0001094568 a19830101b18541926k y0frey0103 ba0 afre aFR a 0  ar aaf 0 10aRevue chrétiennefpublié sous la direction d'Edmond de Pressensé [puis] Frank Puaux [puis] John Viénot aPariscRevue chrétiennecLibr. Ch. Meyrueisd1854-1926 |tSupplément théologique |tPages de défense protestante |tLa Vie chrétienne10aRevue chrétienne (Ed. mensuelle)b(Paris. 1854) 1aPressensébEdmond def1824-18924651 1aPuauxbFrankf(1844-1922)4651 1aViénotbJohnf(1859-1933)4651 3aFRbAbesc20060502gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb328565942/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1876-1926)1 bvol. 20 (1873) -vol. 53 (1906)cParisdMagasins/AnnexeeP 8° 0808 aPériobTP02 P801077cas0 2200325 450 00100100000000200110001000500170002101100140003803500140005203500170006603500170008303500150010010000410011510100080015610200070016410600060017111000160017720000240019321000290021742100830024644700440032944700580037353000320043180100300046380100230049380200070051685601330052395500750065699100200073103863807X000109508420130319051831.0 a1160-8803 a07381489X accn1160-8803 aissn11608803 a0001095084 a19930708b18521856uuuy0frey0103 ba0 afre aFR ar aaeu uu 10aRevue contemporaine aParisc[s.n.]d1852-1856 |tRépertoire universel de la bibliographie française et étrangèrex1160-9001 1tL'Athenaeum français (1852)x1247-6269 1tRevue contemporaine et Athenaeum françaisx1160-974510aRevue contemporaineb(1852) 3aFRbAbesc20061016gAFNOR 3aFRbISSNc20030523 a074 uhttp://gallica.bnf.fr/ark:/12148/cb32856688d/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 bvol. 1 no. 1 (1852) -no. 60 (1854)cParisdMagasins/AnnexeeP 8° 0877 aPériobTP02 P801710cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200010800162210003100270210007200301320011500373321022500488333002900713436005700742436011100799530005500910606005400965606005501019801003001074856012701104955007601231991002001307991003301327037456504000109456720131015164501.0 a2015-0113 accn0102/5716 a0001094567 a19830101b18531939k y0frey0103 ba0 afre aFR ar aag 110aRevue critique de législation et de jurisprudencefpar MM. V.Marcadé, Paul Pont, Wolowski... [et al.]0 aPariscCotillond1853-19031 aPariscLibrairie générale de droit et de jurisprudenced1904-1939 aTables :1819-1859 (1 vol.) ; 1860-1870 (1 vol.) ; 1860-1899 (1 vol.) ; 1871-1881 (1 vol.) ; 1882-1899 (1 vol.)1 aTables analytiques de la Revue de législation et de la Revue critique de législation et de jurisprudence : précédées des tables de la Thémis, et de la Revue de droit français et étranger. - Paris : Cotillon, 1860 aSuspendu de 1915 à 1923 |tRevue de législation et de jurisprudencex2015-0016 |tRevue critique de la jurisprudence en matière civile administrative, commerciale et criminellex2015-000800aRevue critique de législation et de jurisprudence1 aDroitxLégislationyFrancexPériodiques2rameau1 aDroitxJurisprudenceyFrancexPériodiques2rameau 3aFRbAbesc20070530gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/bpt6k115299xzAccès libre au texte intégral. Années 1855-1939 numérisées sur Gallica1 bvol. 1 no. 1 (1851) -vol. 26 (1897)cParisdMagasins/AnnexeeP 8° 0830 aPériobTP02 P8 anumer0 (complément gallica)01360nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154207001800176210005200194326001600246430003800262517005400300530003400354607002800388607002500416607005600441607002700497676000800524710004900532856009400581856005400675955006600729955006300795972000900858991001800867992002500885992002800910992001200938039227499000000539720130319051831.01 a0035-0974 aFNSP108143 a0000005397 a19900314a19699999 ba0 afre aFR aaha 10aRevue d'Allemagne 1ano. 1 (1969)- aStrasbourgcCentre d'études germaniquesd1969- aTrimestriel 1tAllemagne (Paris)xISSN 0151-195510aRevue d'Allemagne et des pays de langue allemande10aRevue d'AllemagnebStrasbourg aAllemagnexPériodiques aSuissexPériodiques aAllemagne (République démocratique)xPériodiques aAutrichexPériodiques a94002aSociété d'études allemandesc(Strasbourg)4 uhttp://hsozkult.geschichte.hu-berlin.de/zeitschriften/id=114&count=1&recno=1&ausgabe=%2D1 zContenu : sommaires depuis le vol. 33, n°1, 20011 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 bno. 1 (jan-1969) -....cParisdMagasins/AnnexeeP 8° 2635 aZCAD aexempb201105 aGEO RA5.01 Allemagne aGEO RA5 Europe centrale aDEW 94301233nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004000154207001900194210005500213210003200268326001600300530004700316606004500363676001000408710009400418856010700512856010800619955006900727955005800796972000900854991001800863992001400881040131610000009431820130319051831.01 a1245-4060 aFNSP414073 a0000094318 a19900101a19939999 ba0 afre aFR aaha 10aRevue d'économie du développement 1ano. 1 (1993) - aÉvrycPresses universitaires de Franced1993-2001 aaBruxellescDe Boeckd2002- aTrimestriel 0aRevue d'économie du développementbParis aDéveloppement économiquexPériodiques a338.902aCentre d'études et de recherches sur le développement internationalc(Clermont-Ferrand)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-d-economie-du-developpement.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 338.91 bno 1 (1993) -....cParisdMagasins/AnnexeeP 8° 5952 aZPAY aexempb201210 aDEW 338.901304nas 2200361 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000340015420700230018821000510021130000750026232600320033742100560036960600360042560600260046160600270048767600080051471000500052285600270057285601780059995500670077795500590084497200090090399100180091299200120093003984465X000000540520130319051831.01 a0987-3368 aFNSP108159 a0000005405 a19900314a19879999 ba0 afre aFR aaga 10aRevue d'économie financière 1aN°1, (1987,juin)- aPariscPresses universitaires de Franced1987- aLes n°s hors série parus dans l'année sont conservés avec la revue aTrimestriel puis bimestriel 1tRapport moral sur l'argent dans le mondex1260-4275 aMarché financierxPériodiques aBanquesxPériodiques aFinancesxPériodiques a33202aAssociation d'économie financièrec(France)4 uhttp://www.aef.asso.fr zContenu : sommaires et résumés depuis le n°61, janv. 2001; articles consultables à la bibliothèque à l'aide d'un mot de passe à demander à l'accueil bibliographique.1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3321 bno. 1 (1987) -....cParisdMagasins/AnnexeeP 8° 5067 aZPAY aexempb201106 aDEW 33201061nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003500154207001900189210004900208326001600257606003600273606004000309676000800349856004200357856006000399856002600459856003700485955006700522955005900589972000900648991001800657992002200675992001400697013309447000000540720130319051831.01 a0154-3229 aFNSP108167 a0000005407 a19900314a19779999 ba0 afre aFR aaha 10aRevue d'économie industrielle 1ano. 1 (1977) - aPariscEd. techniques et économiquesd1977- aTrimestriel aIndustrieyFrancexPériodiques aEconomie industriellexPériodiques a3384 uhttp://www.editecom.com/index_rei.htm zContenu : sommaires depuis le n°91, 1er trimestre 20004 uhttp://www.persee.fr/ zAccès libre au texte intégral.1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3381 bno. 1 (1977) -....cParisdMagasins/AnnexeeP 8° 3954 aZPAY aexempb201001 aGEO RA4.06 France aDEW 338.401424nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200003200160207009200192210003900284210002500323326002300348326002300371326002600394530003900420606003700459676000800496856020500504856014500709955006700854955006600921957005400987972000901041992001201050013305379000000541020130319051831.01 a0373-2630 aFNSP108182 a0000005410 a19900314a18879999 ba0 afre aFR ar aaga 10aRevue d'économie politique 1avol. 1 no 1 (1887)-vol. 54 no 3 (mai 1940)avol. 54 nos 4 à 6 (juil. 1940-déc. 1944)- aPariscdivers éditeursd1887-1997 aPariscDallozd1998- a$Bimestrielb1911- aMensuelb1891-1910 aBimestrielb1887-189010aRevue d'économie politiquebParis aEconomie politiquexPériodiques a3304 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-d-economie-politique.htm?zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po uhttp://gallica.bnf.fr/ark:/12148/cb343785215/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1887-1939)1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3301 bvol. 1 no. 1 (1887) -....cParisdMagasins/AnnexeeP 8° 01351 b(1887-1906)cParisdMagasins/AnnexeeP Index 0091 aZPAY aDEW 33001408nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210003800198210003100236326001700267517000900284606003600293607007500329676000800404710011800412856003100530856006900561856011000630856010800740955006700848955005900915972000900974991001800983992002201001992001101023039283666000003849020130319051831.01 a0180-7307 aFNSP213018 a0000038490 a19900101a19789999 ba0 afre aFR aaga 10aRevue d'économie régionale et urbaine aPariscÉd. Économicad1978-2005 aPariscArmand Colind2006- a5 nos par an10aRERU aUrbanismeyFrancexPériodiques aFrancexConditions économiquesxDisparités régionalesxPériodiques a33302aAssociation des directeurs d'instituts et des centres universitaires d'études économiques régionalesc(France)4 uhttp://reru.u-bordeaux4.fr zContenu : sommaires et résumés des revues depuis le n°1, 19984 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-d-economie-regionale-et-urbaine.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3331 bno. 1 (1978) -....cParisdMagasins/AnnexeeP 8° 3999 aZPAY aexempb201001 aGEO RA4.06 France aDEW 7101486nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004300154210007500197210005500272210003500327210002800362326001600390430003100406607003400437607003500471676001000506710005900516856005600575856007400631856007100705856006200776955006800838955007000906972000900976991001800985992002901003992003201032992001201064039546659000003849220130611170831.01 a0338-0599 aFNSP213021 a0000038492 a19900101a19759999 ba0 afre aFR aaha 10aRevue d'études comparatives est-ouest aPariscÉd. du Centre national de la recherche scientifiqued1975-1999 aPariscPresses universitaires de Franced2000-2004 aPariscArmand Colind2005-2008 aVineuilcNecplusd2009- aTrimestriel 1aRevue de l'Est,x0035-1415 aEurope de l'EstxPériodiques aPays socialistesxPériodiques a943.702aCentre national de la recherche scientifiquec(France)4 uhttp://www.necplus.eu/action/displayJournal?jid=REC zContenu : sommaires et résumés depuis le volume 39, n°1, mars 20084 uhttp://www.armand-colin.com/revues_info.php?idr=19&par=1&attr=2007 zContenu : sommaires des n°s depuis le vol.36, n°1, 20051 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 943.71 bvol. 6 no. 1 (mar-1975) -....cParisdMagasins/AnnexeeP 8° 2811 aZPAY aexempb200908 aGEO RN2 Pays socialistes aGEO RA2.02 Europe orientale aDEW 94701494cas0 2200325 450 00100100000000200110001000500170002103500170003803500150005510000410007010100080011110200070011910600060012611000160013220000840014820700780023221000360031030000780034630000630042432600160048748802120050353000460071560600540076171000530081580100300086885601450089895500700104399100200111399100350113303745756X000108557820130319051831.0 accn0103/4588 a0001085578 a19830101b19231939k 0frey0103 ba0 afre aFR ar aaha 10aRevue d'histoire de la guerre mondiale...fSociété de l'histoire de la guerre 1a1re Année, N.1 (1923, Avril) - Dix-Septième Année, N.3 (1939, Juillet) aPariscAlfred Costesd1923-1939 aPorte en tête: "Publications de la Société de l'histoire de la guerre" a"Table décennale 1923-1932" contenue dans le vol. de 1933 aTrimestriel |tRevue d'histoire de la Guerre mondialeotable décennale, 1923-1932f[publ. par la] Société de l'histoire de la guerrecParisnA. Costeds.d.p37 p.sPublications de la Société de l'histoire de la guerre00aRevue d'histoire de la guerre mondiale... aGuerre mondiale (1914-1918)xPériodiques2rameau02aSociété de l'histoire de la guerrecParis4070 3aFRbAbesc20070424gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb328568628/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1923-1936)1 bvol. 1 (1923) -vol. 17 (1939)cParisdMagasins/AnnexeeP 8° 0414 aPériobTP01 P8 anumer0 (complément gallica ?)01074nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012310600060014111000160014720000430016321000720020621000720027821000420035032600150039251700090040760600460041680100130046285601090047585601080058495500680069299200120076005092141X000042969820131008112346.01 a1622-468X a0000429698 a b19992011k fre ba0 afre aFR a 0  ar aaj z 0 10aRevue d'histoire des sciences humaines aVilleneuve d'AscqcPresses universitaires du Septentriond1999-2011 aVilleneuve d'AscqcPresses universitaires du Septentriond1999-2003 aAuxerrecSciences humainesd2004-2011 aSemestriel10aRHSH aSciences humainesxHistoirexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-histoire-des-sciences-humaines.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 4 (2001) -no. 25 (2011)cParisdMagasins/AnnexeeP 8° 6607 aDEW 30001547nas 2200385 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000121001642070019002852100101003043000053004053260022004583260022004804300028005025300037005306070038005677100087006058010013006928560028007058560089007338560113008228560108009359550075010439720009011189920012011279920022011390000487193000048719320130319051831.01 a1265-1354 a0000487193 a a19959999k fre ba0 afre aFR a 0  ar aaj z 0 10aRevue d'histoire du XIXe sièclefSociété d'histoire de la Révolution de 1848 et des révolutions du XIXe siècle 1an°11, (1995)- aPariscSociété d'histoire de la Révolution de 1848 et des révolutions du XIXe siècled1995- aContient également des comptes rendus de livres aSemestrielb1996- aAnnuelb1985-1995 1t1848 (Paris)x0765-019100aRevue d'histoire du XIXe siècle aFrancez19e sièclexPériodiques02aSociété d'histoire de la révolution de 1848 et des révolutions du XIXe siècle 0aFRbFNSP4 uhttp://rh19.revues.org/ zContenu : sommaires et résumés en français et en anglais à partir du n° 1, 19854 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-d-histoire-du-dix-neuvieme-siecle.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 20/21 (= no. 1/2) (2000) -....cParisdMagasins/AnnexeeP 8° 6654 aZPAY aDEW 944 aGEO RA4.06 France01044nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200004600160210005100206210003100257326002300288326002600311326002700337606006400364710005000428856014500478955008300623992002200706992001400728046692347000013871020130319051831.01 a0035-2411 aFNSP551946 a0000138710 a19941017a18949999 ba0 afre aFR ar aaga 10aRevue d'histoire littéraire de la France aPariscPresses universitaires de Franced1998- aPariscA. Colind1894-1997 aTrimestrielb2003- aBimestrielb1968-2002 aTrimestrielb1894-1967 aLittérature françaisexHistoire et critiquexPériodiques02aSociété d'histoire littéraire de la France4 uhttp://gallica.bnf.fr/ark:/12148/cb343491539/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1894-2000)1 bno. 1 (jan/mar-1954) -no. 6 (nov/dec-1986)cParisdMagasins/AnnexeeP 8° 1348 aGEO RA4.06 France aDEW 80-8901050nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002900163207003200192210005100224326001600275430006900291440006300360606003900423712006000462801001300522856013300535955006800668992001200736038432862000042134620130319051831.01 a0996-2727 a0000421346 a b19261940k fre ba0 afre aFR a 0  ar aah z 0 10aRevue d'histoire moderne 1ano. 1 (1926) -no. 42 (1940) aPariscSociété d'histoire moderned1926-1940 atrimestriel 1tRevue d'histoire moderne et contemporaine (1899)xISSN 0996-2743 1tEtudes d'histoire moderne et contemporainexISSN 0996-2735 aHistoire universellexPériodiques02aSociété d'histoire moderne et contemporainec(France) 0aFRbFNSP4 uhttp://gallica.bnf.fr/ark:/12148/cb34417274m/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 bno. 1 (1926) -no. 42 (1940)cParisdMagasins/AnnexeeP 8° 0364 aDEW 90901254nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004600163207004900209210005100258326003700309440004200346530005200388606003900440712006000479801001300539856014500552955011300697957007300810991003300883992001200916038432870000042134420130319051831.01 a0996-2743 a0000421344 a b18991914k fre ba0 afre aFR a 0  ar aag z 0 10aRevue d'histoire moderne et contemporaine 1aT. 1 (mai/juin 1899) -t. 19 (mars/juin 1914) aPariscSociété d'histoire moderned1899-1914 a10 n°s par an puis 6 n° par an 1tRevue d'histoire modernex(0996-2727) 0aRevue d'histoire moderne et contemporaineb1899 aHistoire universellexPériodiques02aSociété d'histoire moderne et contemporainec(France) 0aFRbFNSP4 uhttp://gallica.bnf.fr/ark:/12148/cb34349502h/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1906-1907)1 bTome 5 no. 4 (1904) -Tome 19 no. 2/3 (1914)cParisdMagasins/AnnexeeP 8° 0364zFascicules en mauvais état1 bTome 1 ( 1899) -tome 12 (1909)cParisdMagasins/AnnexeeP Index 0609 anumer0 (complément gallica) aDEW 90901468nas 2200373 i 450 001001000000002001100010005001700021011001400038035001600052035001500068100004100083101000800124102000700132110001600139200009300155210002300248326001600271421006400287421003800351430006300389530005200452606003900504676001200543710006000555801002100615856011500636856010800751955006700859955006400926957007400990972000901064992001201073992000901085039237311000000541520130319051831.01 a0048-8003 aFNSPt108187 a0000005415 a19900101a19549999 ba0 afre aFR aaha 10aRevue d'histoire moderne et contemporainefSociété d'histoire moderne et contemporaine aPariscSHMCd1954- aTrimestriel 1tBulletin de la Société d'histoire modernexISSN 0991-1367 1tLe Bulletin de la SHMCx1243-8804 1tEtudes d'histoire moderne et contemporainexISSN 0996-273500aRevue d'histoire moderne et contemporaineb1954 aHistoire universellexPériodiques aDEW 90902aSociété d'histoire moderne et contemporainec(France) 3aFRbCCN0048-80034 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-d-histoire-moderne-et-contemporaine.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étage:eDEW 9091 bvol. 1 (jan-1954) -....cParisdMagasins/AnnexeeP 8° 03641 b(1899) -(1909) ; (1994) -(2002)cParisdMagasins/AnnexeeP Index 0609 aZPAY aDEW 909 aPBUL01380cas0 2200361 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164106000600171110001600177200008000193210003100273430009200304447004700396447005600443447004200499530008000541531005700621711006000678801003000738801002300768802000700791856014500798955005500943991002000998037457578000109324420130319051831.0 a1954-6564 a114560226 accn0103/4650 aissn19546564 a0001093244 a19830101b19011914uuuy0frey0103 ba0 afre aFR ar aafu uu 10aRevue d'histoire rédigée à l'État-major de l'armée, Section historique aPariscChapelotd1901-1914 1tRevue militaire rédigée à l'État-major de l'armée. Archives historiquesx1954-6580 1tJournal des sciences militairesx1954-6637 1tRevue militaire des armées étrangèresx1954-6610 1tRevue militaire françaisex1954-653X00aRevue d'histoire rédigée à l'État-major de l'armée, Section historique 0aRev. hist. rédigée État-major armée, Sect. hist.02aFrancebEtat-major des arméesbService historique4070 3aFRbAbesc20070529gAFNOR 3aFRbISSNc20070518 a074 uhttp://gallica.bnf.fr/ark:/12148/cb32856856b/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1901-1914)1 b(1901) -(1906)cParisdMagasins/AnnexeeP 8° 0627 aPériobTP02 P801675nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007200154210012300226326002500349326002700374326002900401440003600430510004100466601004400507607004400551676001000595710004700605801002100652856005600673856009700729856010900826856010800935955009001043972000901133991001801142992005701160992003401217992001401251039668940000003849420130319051831.01 a0703-6337 aFNSP213023 a0000038494 a19900101b19772006 ba0 amul aCA aagu 10aRevue d'intégration européenned= Journal of european integration aSaskatchewancConseil canadien des affaires européennesd1977-1999aAmsterdamcHarwood Academic Publishersd2000-2006 a5 n°s par anb2006- aTrimestrielb2000-2005 a3 n°s par anb1977-1999 1tJournal of European integration11aJournal of european integrationzeng02aCommunautés européennesxPériodiques aEurope de l'OuestxUnitéxPériodiques a341.802aConseil canadien des affaires européennes 3aFRbCCN0703-63374 uhttp://www.tandf.co.uk/journals/titles/07036337.asp zContenu : présentation de la revue ; sommaires et résumés depuis le volume 24, n°1, 20024 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713393849db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (sep-1977) -vol. 28 no. 5 (dec-2006)cParisdMagasins/AnnexeeP 8° 3952 aZSAB aexempb201001 aGEO RA1.01 Communautés européennes, Pays de la CEE aGEO RA2.01 Europe occidentale aDEW 341.200984nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200006500163210011300228326001500341517007400356606004500430710004100475801001300516856002900529856003600558955006700594972000900661992001200670127790292000055032220130319051832.01 a1962-3941 a0000550322 a b20032007k fre ba0 afre aFR a 0  ar aaj z 0 10aRevue de droit des affaires de l'Université Panthéon-Assas aPariscAssociation de droit des affaires de Panthéon-AssascUniversité Panthéon Assas-Paris IId2003-2007 aSemestriel10aRevue de droit des affaires de l'Université Paris II Panthéon-Assas aDroit des affairesyFrancexPériodiques02aUniversité Panthéon-Assasc(Paris) 0aFRbFNSP4 uhttp://www.rdaparis2.com zAccès libre au texte intégral1 bno. 1 (2003) -no. 3 (2005)cParisdMagasins/AnnexeeP 8° 6708 aZPAY aDEW 34601231nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101001300108102000700121110001600128200008900144210008100233326002200314326002900336430006200365510003900427530004800466606003700514710004000551801002100591856002400612856010500636955005900741957005100800972000900851992002100860992001200881039475883000004987420131002115458.01 a0295-5830 aFNSP246117 a19900101a19859999 ba0 afreaeng aFR aagu 10aRevue de droit des affaires internationales‎d= International business law journal aPariscParis‎cLibrairie générale de droit et de jurisprudence‎d1985- aBimestrielb2004- a8 n°s par anb1985-2003 1aJournal de droit des affaires internationales,x0753-275X1 aInternational business law journal aRevue de droit des affaires internationales aDroit des affairesxPériodiques02aForum européen de la communication 3aFRbCCN0295-58304 uhttp://www.iblj.com zSommaires de la revue depuis 1997 et numéros spéciaux depuis 1985. Certains articles sont gratuits1 bno. 4 (1985) -....cParisdMagasins/AnnexeeP 4° 50171 b(1985) -(2001)zse trouve dans le no. 8 (2001) aZPAY aGEO RQ Universel aDEW 34101030cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200003000162207002300192210002500215326001200240530003900252606004300291606003900334801003000373801002300403802000700426856006700433856010800500955006300608972000900671992001200680103674438000104705920140110135438.01 a1951-0152 aissn19510152 a0001047059 a20060619a20069999k y0frey0103 ba0 afre aFR ar aafu uu 10aRevue de droit du travail 0ano 1 (2006, juin)- aPariscDallozd2006- aMensuel10aRevue de droit du travailb(Paris) aDroit du travailyFrancexPériodiques aDroit socialyFrancexPériodiques 3aFRbAbesc20061005gAFNOR 3aFRbISSNc20060720 a074 uhttps://acces-distant.sciences-po.fr/fork?http://bu.dalloz.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (jun-2006) -....cParisdMagasins/AnnexeeP 4° 7149 aZPAY aDEW 34401145cas0 2200313 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200003300148207003300181210003800214215001000252301005200262304004600314326006000360530003300420702003500453801003000488856014500518955011500663991002000778991003300798036688673000108557320130319051832.0 accn0102/5791 a0001085573 a19830101c1927 0frey0103 ba0 afre aFR ar aaj 10aRevue de droit international 0a1ère année:tome 1er(1927)- aPariscEd. internationalesd1927- a26 cm aDEMANDE DE NUMEROTATION ISSN EN COURS PAR CR 27 aFondateur : A. de Geouffre de la Pradelle aLa périodicité passe de trimestrielle à semestrielle00aRevue de droit international 1aGeouffre de la PradellebA. de 3aFRbAbesc20070424gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb375752592/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1927-1936)1 b(1869) -(1914) ; (1920) -(1939) ; (1869) -(1877) ; (1878) -(1914) ; (1920)cParisdMagasins/AnnexeeP 8° 0372 aPériobTP01 P8 anumer0 (complément gallica)01703cas0 2200385 450 00100100000000200110001000500170002101100140003803500170005203500150006910000410008410100080012510200070013310500180014010600060015811000160016420000620018020701570024221001000039930400850049930500290058431100910061332000330070432600240073732600230076132600240078444000500080853000620085860600460092060600410096680100300100785601450103795501150118299100200129703668869X000108557420130319051832.0 a1782-6217 accn0102/5805 a0001085574 a19830101b18691940k y0frey0103 ba0 afre aBE a 0  ar aaha 0 10aRevue de droit international et de législation comparée 0aT.1(1869)-t.30(1898) ; T. [31] (1899)-t.[46] (1914) = 2ème sér.:t.1(1899)-t.16(1914) ; T. [47] (1920)-t.[67] (1940) = 3ème sér.:t.1(1920)-t.21(1940) aBruxellesaLa HayeaPariscRevue de droit international et de législation comparéed1869-1940 aSous la dir. de T.-M.-C.Asser, Ernest Nys, Alphonse Rivier... [et al.] (en 1893) aPas paru de 1915 à 1919 aParaît plus tard sous le titre : "Revue belge de droit international", ISSN 0035-0788 aTables 1869-1893 ; 1894-1914 aTrimest.b1929-1940 aBimest.b1881-1927 aTrimest.b1869-1880 1tRevue belge de droit internationalx0035-078800aRevue de droit international et de législation comparée aDroit internationalxPériodiques2rameau aDroit comparéxPériodiques2rameau 3aFRbAbesc20060406gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb375752639/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1869-1933)1 b(1869) -(1914) ; (1920) -(1939) ; (1869) -(1877) ; (1878) -(1914) ; (1920)cParisdMagasins/AnnexeeP 8° 0372 aPériobTP01 P801367nas 2200373 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000032001552100052001873260028002393260040002674300072003076060042003796060030004216070037004517100047004888010021005358560029005568560037005858560047006228560108006699550066007779570091008439720009009349920034009439920016009770000038623000003862320130319051832.01 a0035-1121 aFNSP213279 a0000038623 a19900101a19209999 ba0 afre aFR aahu 10aRevue de géographie alpine aGrenoblecInstitut de géographie alpined1920- aTrimestriel (1920-2008) aAnnuel à partir de l'édition 2009 1aRecueil des travaux de l'Institut de géographie alpine (0249-6178) aMontagnesxAménagementxPériodiques aGéographiexPériodiques aAlpesxGéographiexPériodiques02aInstitut de géographie alpinec(Grenoble) 3aFRbCCN0035-1121 uhttp://rga.revues.org/58 zAccès libre au texte intégral.4 uhttp://www.persee.fr/listIssues.do?key=rga zAccès libre au texte intégral à partir de 1913 à 1974 à l'exception des années les plus récentes1 bvol. 15 no. 1 (1927) -...cParisdMagasins/AnnexeeP 8° 00811 b(1923) -(1932) ; (1933) -(1942) ; (1953) -(1962)cParisdMagasins/AnnexeeP Index 0193 aZPAY aGEO RA2.01 Europe occidentale aDEW 914-91901734nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138200009000144210005200234326001600286430012600302440003600428517004700464606006100511606003000572607005500602710006000657801002100717856003300738856007000771856004900841856006500890955008300955955008301038957015801121991001801279992002501297992001401322039227588000003862620130319051832.01 a0035-113X aFNSP213288 a0000038626 a19900101b19491999 ba0 afre aFR ar10aRevue de Géographie de LyonfAssociation des amis de la Revue de géographie de Lyon aLyoncAssociation des amis de la RGLd1951-1999 aTrimestriel 1aRevue de géographie jointe au Bulletin de la Société de géographie de Lyon et de la région lyonnaisexISSN 1164-6284 1tGéocarrefour (Lyon)x1627-487310aRevue de géographie de Lyon Géocarrefour aUrbanismeyFranceyLyon (Rhône ; région)xPériodiques aGéographiexPériodiques aLyon (Rhône ; région)xGéographiexPériodiques02aAssociation des amis de la Revue de géographie de Lyon 3aFRbCCN0035-113X4 uhttp://www.geocarrefour.org/ zContenu : sommaires et résumés depuis le volume 73, no. 1, 19984 uhttp://www.persee.fr/listIssues.do?key=geoca zAccès libre au texte intégral des numéros de 1951 à 19991 bvol. 63 no. 1 (1988) -vol. 74 no. 4 (1999)cParisdMagasins/AnnexeeP 4° 56791 bvol. 26 no. 1 (1951) -vol. 62 no. 4 (1987)cParisdMagasins/AnnexeeP 8° 00841 b(1946) -(1955)cParisdMagasins/AnnexeeP Index 0043z(1955) -(1964) se trouve dans le vol. 52 no. 4 (1977) ; (1985) -(1994) dans le vol. 71 no. 2 (1996) aexempb201101 aGEO RA4.06 France 01 aDEW 330.901007nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004900139210002700188326001200215452006900227530004900296606006000345856018600405955007700591972000900668991001800677992002200695992001200717039928055000003603220131218160019.01 a1156-2935 aFNSP204871 a19900101a19919999 ba0 afre aFR aafa 00aRevue de jurisprudence de droit des affaires aPariscLefebvred1991- aMensuel 1tRevue de jurisprudence de droit des affaires (Online)x2115-979300aRevue de jurisprudence de droit des affaires aDroit des affairesyFrancexJurisprudencexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.efl.fr/si/hp/frm_hp.htmzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (jan-1991) - no. 12 (dec-2006)cParisdMagasins/AnnexeeP 4° 6009 aZPAY aexempb201312 aGEO RA4.06 France aDEW 34601302nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003500139207002200174210002700196326001200223430011000235452010800345517000800453530004800461606005400509856018600563955006800749955006800817972000900885991001800894991001800912992002200930992001200952039543862000000597020140108110911.01 a0337-7393 aFNSP109483 a19900330a19759999 ba0 afre aFR aafa 10aRevue de jurisprudence fiscale 1ano. 1(jan-1975) - aPariscLefebvred1975- aMensuel 1aBulletin des contributions directes, de la taxe à la valeur ajoutée et des impôts indirectsx0037-7385 1tRevue de jurisprudence fiscale‎bRessource électronique‎cParis‎nEd. Francis Lefebvre‎d2006-1 aRJF10aRevue de jurisprudence fiscale‎bImprimé aDroit fiscalyFrancexJurisprudencexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.efl.fr/si/hp/frm_hp.htmzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1990) -no. 12 (2005)cParisdMagasins/AnnexeeP 4° 58951 bno. 1 (1975) -no. 12 (1989)cParisdMagasins/AnnexeeP 8° 3243 aZPAY aexempb200911 aexempb201312 aGEO RA4.06 France aDEW 34301178nas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001800069035001700087035001400104035001500118100004100133101000800174102000700182110001600189200003500205207002700240210004100267326001200308517000800320606005400328676001200382801003000394801002800424801002300452802000700475856008100482856010800563955007500671972000900746992002500755992001200780001421131000074438820130530121257.01 a0997-7422 accn0997-7422 afrBN006778734 aissn09977422 aEvry26351 a0000744388 a19890320a19899999 0fre 0103 ba0 afre aFR aaf 10aRevue de jurisprudence sociale 0a1989, n° 1 (janvier)- aLevallois-PerretcF. Lefebvred1989- aMensuel10aRJS aDroit socialyFrancexJurisprudencexPériodiques aDEW 344 3aFRbAbesc20041008gAFNOR 3aFRbBNc20041008gAFNOR 3aFRbISSNc20011008 a074 uhttps://acces-distant.sciences-po.fr/fork?http://www.efl.fr/si/hp/frm_hp.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (jan-2005) -no. 1 (jan-2013)cParisdMagasins/AnnexeeP 4° 7064 aZPAY aGEO RA4.06 France 01 aDEW 34401235nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200009900163207004300262210003400305326001600339440005100355607007700406710004800483801001300531856013300544955005500677957011400732991002900846992001200875992002200887037984608000057256620130319051832.01 a0399-1377 a0000572566 a b19131931k fre ba0 afre aFR a 0  ar aah z 0 10aRevue de l'histoire des colonies françaisesfSociété de l'histoire des colonies françaises 1a1ère année(1913)-19ème année(1931) aPariscH. Championd1913-1931 aTrimestriel 1tRevue d'histoire des colonies,xISSN 0399-1385 aFrancexDépartements et territoires d'outre-merxHistoirexPériodiques02aSociété française d'histoire d'outre-mer 0aFRbFNSP4 uhttp://gallica.bnf.fr/ark:/12148/cb32857372f/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 b(1913) -(1931)cParisdMagasins/AnnexeeP 8° 00891 rtables bibliographiques (1913/2003) in : Société française d'histoire d'outre-mer : 90 ans de publications anumer0 (lacunes gallica) aDEW 909 aGEO RA4.06 France01772cas0 2200457 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200003800179207002900217210002500246210002900271210005500300210002700355215001000382304006000392320004000452326001600492327022700508423005300735423004000788517006400828530003800892531002200930606003800952801003000990801002301020802000701043856014501050955005501195991002001250991004401270039227723000109460820130319051832.0 a0035-1423 accn0035-1423 aissn00351423 a0001094608 a19910208a18809999u y0frey0103 ba0 afre aFR ar aahu uu 10aRevue de l'histoire des religions 1a1ère année:T. 1(1880)- aPariscLerouxd1880-0 aPariscLerouxd1880-19??0 aPariscPresses universitaires de Franced19??-20041 aPariscA. Colind2005- d24 cm aJusqu'en 19XX porte en tête "Annales du Musée Guimet" aTables des tomes 1 à 44(1880-1901) aTrimestriel1 aDe 1919 à 1938 contient les comptes-rendus de la Société Ernest Renan qui paraissent aussi séparément comme "Bulletin de la Société Ernest Renan" ; de 1952 à 1983 contient le "Bulletin de la Société Ernest Renan" 1tBulletin de la Société Ernest Renanx0765-6521 1tAnnales du Musée Guimetx1155-740010aAnnales du Musée Guimet. Revue de l'histoire des religions00aRevue de l'histoire des religions 0aRev. hist. relig. aReligionsxHistoirexPériodiques 3aFRbAbesc20070416gAFNOR 3aFRbISSNc20060706 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34349095z/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1880-1916)1 b(1880) -(1896)cParisdMagasins/AnnexeeP 8° 0835 aPériobTP02 P8 anumer0 (1882-1896, complément gallica)01050cas0 2200277 450 00100100000000200110001000500170002103500170003810000410005510100080009610200070010410500180011110600060012911000160013520000440015121000480019544700480024344700540029153000520034571000380039780100300043585601860046595500730065199100200072499100280074403860342X000109343720131015160925.0 accn9022/633X a19830101b18961910 0frey0103 ba0 afre aFR a 0  ar aau 0 10aRevue de l'Institut catholique de Paris aPariscLibrairie Ch. Poussielgued1896-1910 1tBulletin du denier de l'institut catholique 1tBulletin de l'Institut catholique de Paris (1910)10aRevue de l'institut catholique de parisb(1896)02aInstitut catholique de Paris4070 3aFRbAbesc20050127gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb32857408m/date.r=Revue+de+l%27Institut+catholique+de+Paris.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1896-1909)1 b(1898) -(1910)w1898, 1899, 1902cParisdMagasins/AnnexeeP 8° 0722 aPériobTP02 P8 anumer0 (seulement 1910)01136nas 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000047001502100028001973260016002254510049002415320105002906060037003957100067004328010013004998560111005128560108006239550082007319720009008139920012008220000421152000042115220130319051832.0 a0000421152 a b20012004k f fre ba0 afre aZZ a 0  ar aah z 0 10aRevue de l'OCDE sur la gestion budgétaire aPariscOCDEd2001- 2004 atrimestriel 1tOECD journal on budgeting (Print)x1608-714310aRevue de l'Organisation de coopération et de développement économiques sur la gestion budgétaire aFinances publiquesxPériodiques02aOrganisation de coopération et de développement économiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/16087151/revocdegestionbudg zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (2001) - vol. 3 no. 4 (2003)cParisdMagasins/AnnexeeP 8° 6600 aZECH aDEW 33601591cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200010600180207002500286210002300311301004900334326001600383327010100399430003500500606006400535606004500599710010100644801003000745801002300775802000700798856011900805856010800924955006901032955006601101992001201167992001401179098977911000117532920130319051832.01 a1992-0490 aissn19920490 a0001175329 a20060406a20069999k y0frey0103 ba0 afre aFR ay  ar aahu uu 10aRevue de l'OCDE sur le développementfOrganisation de coopération et de développement économiques 0avol. 7, n°1 (2006)- aPariscOCDEd2006- aISSN figurant sur la publication : 1816-9376 aTrimestriel0 aLa première livraison annuelle contient le "Rapport sur la coopération pour le développement" 1tLes dossiers du CADx1563-3144 aAide économiquexCoopération internationalexPériodiques aDéveloppement économiquexPériodiques02aOrganisation de coopération et de développement économiquesbComité d'aide au développement 3aFRbAbesc20090610gAFNOR 3aFRbISSNc20090602 a004 uhttps://acces-distant.sciences-po.fr/fork?http://oberon.sourceocde.org/vl=1415277/cl=35/nw=1/rpsv/journal_news.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 338.91 bvol. 7 no. 4 (2006) -....cParisdMagasins/AnnexeeP 4° 7256 aGEO RM4 aDEW 338.901362nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006700154210002300221320005200244326001600296440005600312517012400368606005000492606003700542710006700579856011700646856010800763955008100871972000900952991001800961992001200979992003300991045017832000027008020130319051832.01 a1560-7798 aFNSP933741 a0000270080 a19990409a19999999 ba0 afre aFR aaha 10aRevue de l'OCDE sur le droit et la politique de la concurrence aPariscOCDEd1999- aA partir de 2008, publié uniquement en anglais aTrimestriel 1tOECD journal of competition law & policyx1560-777110aRevue de l'Organisation de coopération et de développement économique sur le droit et la politique de la concurrence aConcurrencexPolitique publiquexPériodiques aConcurrencexDroitxPériodiques02aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/15607798/revocdedroitpolitconcurr zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1999) -vol. 9 no. 3 (2007)cParisdMagasins/AnnexeeP 8° 6478 aZECH aexempb201212 aDEW 346 aGEO RS Sans aspect régional01430nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007400154207004600228210004100274326001600315430005600331488002100387606004200408676000800450710005700458856008900515856010800604856002600712856006500738856005800803856007600861955007800937972000901015991001801024992001401042040446263000013436420130903121950.01 a1265-9576 aFNSP541603 a0000134364 a19940817b19942011 ba0 afre aFR aaha 10aRevue de l'OFCEfObservatoire français des conjonctures économiques 1ano 49 (avril 1994) -no 119 (octobre 2011) aPariscPresses de la FNSPd1994-2011 aTrimestriel 1aObservations et diagnostics économiquesx0751-6614 1aLettre de l'OFCE aConjoncture économiquexPériodiques a33002aObservatoire français des conjonctures économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-de-l-ofce.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr/ zAccès libre au texte intégral des articles de 1982 à 20004 uhttp://www.ofce.sciences-po.fr/publications/revue.htm4 zAccès libre au texte intégral des articles à compter du no 120, 20111 bno. 49 (avr-1994) -no. 119 (oct-2011)cParisdMagasins/AnnexeeP 8° 4548 aZPAY aexempb201204 aDEW 330.901172cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118106000600125110001600131200004000147207002900187210002700216326001500243452006600258510003600324517000800360530004000368606006100408801003000469801002300499802000700522856021400529955007000743972000900813992001200822107982927000105589220131118121137.01 a1951-0187 aissn19510187 a20060904a20069999 y0frey0103 ba0 amul aFR ar aaj 10aRevue de l'organisation responsable 1avol. 1, no 1 (jun-2006)- aPariscEd. Eskad2006- aSemestriel 1tRevue de l'organisation responsable (En ligne)‎,x2105-302210aResponsible organization review10aROR00aRevue de l'organisation responsable aResponsabilité sociétale des entreprisesxPériodiques 3aFRbAbesc20060905gAFNOR 3aFRbISSNc20060801 a074 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-de-l-organisation-responsable.htm?zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jun-2006) -....cParisdMagasins/AnnexeeP 4° 7162 aZPAY aDEW 65001050nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210002700174326003200201430005100233517006000284601006300344606004400407710006300451801003000514801002300544856003900567856003600606955006100642972000900703992001200712039243613000111174920130319051832.01 a0251-3722 aFNSP222648 a0000041594 a19900101a19759999 ba0 afre aBE aahu 10aRevue de l'OTAN aBruxellescOTANd1975- aBimestriel puis trimestriel 1aNouvelles de l'OTAN (1010-2167) < P 4° 1330 >10aRevue de l'Organisation du Traité de l'Atlantique Nord02aOrganisation du traité de l'Atlantique NordxPériodiques aSécurité internationalexPériodiques02aOrganisation du traité de l'Atlantique NordxPériodiques 3aFRbAbesc20061212gAFNOR 3aFRbISSNc200012064 uhttp://www.nato.int/docu/revue.htm zAccès libre au texte intégral1 bvol. 23 no. 1 (1975)cParisdMagasins/AnnexeeP 4° 1330 aZGRA aDEW 32701060nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002000139210002700159326003200186430005100218517006000269601006300329606004400392710006300436801002100499856003900520856009500559955008300654972000900737992001200746039243613000004159420130313092225.01 a0251-3722 aFNSP222648 a19900101a19759999 ba0 afre aBE aahu 10aRevue de l'OTAN aBruxellescOTANd1975- aBimestriel puis trimestriel 1aNouvelles de l'OTAN (1010-2167) < P 4° 1330 >10aRevue de l'Organisation du Traité de l'Atlantique Nord02aOrganisation du traité de l'Atlantique NordxPériodiques aSécurité internationalexPériodiques02aOrganisation du traité de l'Atlantique NordxPériodiques 3aFRbCCN0251-37224 uhttp://www.nato.int/docu/revue.htm zContenu : sommaires le n°4, juil.-août 1996 ; texte intégral (pdf) depuis le n°3, 19981 bvol. 23 no. 1 (1975) -vol. 49 no. 4 (2001)cParisdMagasins/AnnexeeP 4° 1330 aZGRA aDEW 32701067nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004000154210005600194326001600250606003900266606004000305606003600345710003500381801002100416856021700437955006900654991001800723992001200741992001200753039555984000004153820130319051832.01 a0378-4606 aFNSP222521 a0000041538 a19900101a18959999 ba0 afre aBE aahu 10aRevue de l'Université de Bruxelles aBruxellescEd. de l'Université de Bruxellesd1895- aTrimestriel aArts et littératurexPériodiques aPhilosophie politiquexPériodiques aSciences socialesxPériodiques02aUniversité libre de Bruxelles 3aFRbCCN0378-46064 uhttp://digitheque.ulb.ac.be/fr/les-documents-numerises/classement-alphabetique-des-publications/index.html#c7905zAccès libre au texte intégral. Périodique numérisé par l'Université de Bruxelles (1896-1996)1 bno. 1 (1948) -no. 3/4 (1990)cParisdMagasins/AnnexeeP 8° 1048 aexempb201103 aDEW 001 aDEW 30002142cas0 2200433 450 00100100000000200110001000500170002103500140003803500170005203500150006910000410008410100080012510200070013310500180014010600060015811000160016420000390018020700500021921000600026921000600032921000600038930100560044930400600050530500320056530501110059742101110070851701930081951701960101253000960120860600470130460600490135170200260140080100300142680100170145680100150147385601450148895500550163399100200168807739755X000109462120130319051832.0 a036688754 accn0102/5902 a0001094621 a20040413b18841914k y0frey0103 ba0 afre aFR a 0  ar aauu 0 10aRevue de la législation des mines 0a1e année (1884)-31e année (1914,mars-avril) aPariscChevalier-MaresqaBruxellescMuquardtd1884-19140 aPariscChevalier-MaresqaBruxellescMuquardtd1884-19041 aLillecDanelaBruxellescMayolez et Audiarted1905-1914 aDemande de numérotation ISSN en cours par le CR 09 aA partir de 1886, publ. sous la dir. de Emile Delecroix aLe titre varie légèrement aA partir de 1890 publie annuellement et en annexe : "Statistique des houillères en France et en Belgique" 0tStatistique des houillères en France et en Belgique. Annexe annuelle de : Revue de législation des mines10aRevue de législation des mines en France & en Belgique : minières, Usines métallurgiques, Carrières et Sources d'eaux minérales, et statistique des houillères en France & en Belgique10aRevue de législation des mines en France & en Belgique : minières, Usines métallurgiques, Carrières et Sources d'eaux minérales. De la jurisprudence et du droit comparé en ces matières00aRevue de la législation des mines et statistiques des houillères en France et en Belgique aDroit minieryFrancexPériodiques2rameau aDroit minieryBelgiquexPériodiques2rameau 1aDelecroixbEmile4340 3aFRbAbesc20070531gAFNOR 0bNNC-LgAACR2 2bNNCgAACR24 uhttp://gallica.bnf.fr/ark:/12148/cb328576201/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1884-1914)1 b(1891) -(1914)cParisdMagasins/AnnexeeP 8° 0809 aPériobTP02 P801146nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200002100160207003800181210007400219326001200293430002800305444004000333606006700373606002300440710005500463856014500518955009100663991003300754992002100787992001200808037468294000011645920130319051832.01 a2022-8821 aFNSP484394 a0000116459 a19900101b19021909 ba0 afre aFR ar aafa 10aRevue de la paix 1a7e année, n° 1, 25 janvier 1902 aPariscSociété française pour l'arbitrage entre nationsd1902-1909 aMensuel 1aArbitrage entre nations 1aLa Paix par le droit < P 8° 0539 > aRèglement pacifique des conflits internationauxxPériodiques aPaixxPériodiques02aSocieté française pour l'arbitrage entre nations4 uhttp://gallica.bnf.fr/ark:/12148/cb328576650/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1902-1905)1 bvol. 7 no. 1 (jan-1902) -vol. 14 no. 12 (dec-1909)cParisdMagasins/AnnexeeP 8° 0848 anumer0 (complément Gallica) aGEO RQ Universel aDEW 32701568nas 2200421 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005400154207001700208210006700225300010900292326001600401423003900417430004600456517005400502606003200556606002400588676000800612710009000620801002100710856003600731856005600767955006600823955009200889957007100981972000901052991001801061992002201079992003301101992001201134001018426000004168420130319051832.01 a0249-8731 aFNSP222856 a0000041684 a19900101a19819999 ba0 afre aFR aahu 10aRevue de la recherche juridique, droit prospectif 1ano 8 (1981)- aAix-en-ProvencecPresses universitaires d'Aix-Marseilled1981- aLe supplément annuel, publié sous le titre Cahiers de méthodologie juridique est relié avec la revue aTrimestriel 1aCahiers de méthodologie juridique 1aRevue de droit prospectifxISSN 0396-366710aDroit prospectif, revue de la recherche juridique aDroityFrancexPériodiques aDroitxPériodiques a34002aUniversité Paul Cézannec(Aix-Marseille)bFaculté de droit et de science politique 3aFRbCCN0249-87314 uhttp://www.rrj.univ-cezanne.fr/ zContenu : accès aux sommaires depuis le no 2, 20061 bLes 3 dernières années ;Parisd30, Salle 3e étageeDEW 3401 bno. 8 (1979) -....cParisdMagasins/AnnexeeP 8° 4405wManquant : vol. 12, no 28, 19871 bvol. 1 (1976) -vol.19 (1994)cParisdMagasins/AnnexeeP Index 0767 aZPAY aexempb201010 aGEO RA4.06 France aGEO RS Sans aspect régional aDEW 34001049cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200013800180210003200318326001200350326002700362530002800389702005600417801003000473802000700503856012300510955007100633991002000704991001100724038294214000109325720130319051832.0 a0983-6322 accn0983-6322 a0001093257 a19870702b18831889 y0frey0103 ba0 afre aFR a 0  ar aan 0 10aRevue de la Révolutionehistorique, philosophique, économique, littéraire et artistiquefpubl. sous la dir. de Ch. d'Héricault... aPariscA. Sautond1883-1889 aMensuel aTrois fois par semaine00aRevue de la Révolution 1aHéricaultbCharles de Ricault d'f(1823-1899)4651 3aFRbAbesc20050629gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/bpt6k1258991zAccès libre au texte intégral. Janv-juin 1883 numérisés sur Gallica1 bvol. 61 (1888) -vol. 64 (1889)cParisdMagasins/AnnexeeP 8° 0618 aPériobTP02 P8 anumer000838nls 2200265 i 450 002001100000005001700011011001400028100004100042101000800083102000700091106000600098110001600104135001800120200006600138210006600204230002400270326001500294606003700309606003800346801001300384856013700397955000500534992001200539992002100551000118073520130604161034.0 a1637-4681 a a20029999k fre 01 ba0 afre aFR ar aaj z  adr 10aRevue de la stabilité financièreb[Ressource électronique] aPariscBanque de France, Direction de la communicationd2002- aRevue électronique asemestriel aFinances publiquesxPériodiques aQuestion monétairexPériodiques 0aFRbFNSP4 uhttp://www.banque-france.fr/publications/revue-de-la-stabilite-financiere.htmlzAccès livre au texte intégral depuis novembre 20021 r aDEW 336 aGEO RQ Universel01193cas0 2200337 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164105001800171106000600189110001600195200007300211210003200284430007100316440007300387530007300460606004200533801003000575801002300605802000700628856014500635955005500780991002000835038429608000109458320130319051832.0 a0995-8908 a070597081 accn0995-8908 aissn09958908 a0001094583 a19900528b18701876 y0frey0103 ba0 afre aFR a 0  ar aau 0 10aRevue de législation ancienne et moderne, française et étrangère aPariscE. Thorind1870-1876 1tRevue historique de droit français et étranger (1855)x0995-8894 1tNouvelle revue historique de droit français et étrangerx0995-892400aRevue de législation ancienne et moderne, française et étrangère aDroitxHistoirexPériodiques2rameau 3aFRbAbesc20060302gAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34416605n/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1870-1876)1 b(1873) -(1876)cParisdMagasins/AnnexeeP 8° 0801 aPériobTP02 P801425cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200008700180210002900267320003500296321022500331447011100556447006600667517001900733530004600752702006300798801003000861856013300891955005501024991002001079036688770000109455520130319051832.0 a2015-0016 accn0102/5910 a0001094555 a19830101b18351853k y0frey0103 ba0 afre aFR a 0  ar aau 0 10aRevue de législation et de jurisprudencefpubl. sous la dir. de M. L.Wolowski,... aParisc[s.n.]d1835-1853 aTables : 1835-1844 ; 1834-18531 aTables analytiques de la Revue de législation et de la Revue critique de législation et de jurisprudence : précédées des tables de la Thémis, et de la Revue de droit français et étranger. - Paris : Cotillon, 1860 1tRevue critique de la jurisprudence en matière civile administrative, commerciale et criminellex2015-0008 1tRevue critique de législation et de jurisprudencex2015-011310aRevue Wolowski00aRevue de législation et de jurisprudence 1aWolowskibLouis-François-Michel-Raymondf(1810-1876)4651 3aFRbAbesc20070321gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb328578390/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 b(1834) -(1853)cParisdMagasins/AnnexeeP 8° 0829 aPériobTP02 P800978cas0 2200301 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200002400179210004400203430004900247437006700296530003300363801003000396801002300426802000700449856014500456955005500601991002000656038553724000109458820130319051832.0 a1149-1922 accn1149-1922 aissn11491922 a0001094588 a19900320b18991911uuuy0frey0103 ba0 afre aFR ar aauu uu 10aRevue de Madagascar aPariscComité de Madagascard1899-1911 1tBulletin du Comité de Madagascarx1149-1914 1tNotes, reconnaissances et explorations (Tananarive)x1017-221110aRevue de Madagascarb(Paris) 3aFRbAbesc20060724gAFNOR 3aFRbISSNc20060706 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34425275p/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1899-1911)1 b(1899) -(1911)cParisdMagasins/AnnexeeP 8° 0837 aPériobTP02 P801263nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200004000160210002400200326001600224606002500240606003200265710004000297801002100337856021300358856014500571955009000716957009700806972000900903992001100912992001400923039227774000003772920130319051832.01 a0035-1571 aFNSP209836 a0000037729 a19900101a18939999 ba0 afre aFR ar aahu 10aRevue de métaphysique et de morale aPariscColind1893- aTrimestriel aMoralexPériodiques aMétaphysiquexPériodiques02aSociété française de philosophie 3aFRbCCN0035-15714 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-de-metaphysique-et-de-morale.htm?zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po uhttp://gallica.bnf.fr/ark:/12148/cb343491074/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1893-1940)1 b(1893) -(1949) (lac) ; vol. 56 no. 1 (1951) -....cParisdMagasins/AnnexeeP 8° 06701 b(1893) -(1992)cParisdMagasins/Annexezse trouve dans le no. 1/2 (jan/jun-1993) de la revue aZPAY aDEW 17 aDEW 10-1400871cas0 2200301 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164106000600171110001600177200002200193210004000215326001200255530002200267801003000289801002300319802000700342856014500349955005500494991002000549037619918000108412720130319051832.0 a0223-3274 a070535566 accn0223-3274 aissn02233274 a0001084127 a19971118b18941970uuuy0frey0103 ba0 afre aFR ar aafu uu 13aLa Revue de Paris aPariscLa Revue de Parisd1894-1970 aMensuel03aLa Revue de Paris 3aFRbAbesc20060718gAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34404247s/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1894-1940)1 b(1894) -(1970)cParisdMagasins/AnnexeeP 8° 0282 aPériobTP01 P801228nas 2200349 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012310600060014111000160014720000670016320700480023021000470027821000260032532000360035132600150038751700280040251700330043060600420046371000660050580100130057185601040058485601080068895500590079697200090085599200140086405786683X000041491720140106134753.01 a1376-0971 a0000414917 a a20009999k fre ba0 afre aBE a 0  ar aaj z 0 10aRevue de philosophie économiqueerevue semestrielle du GREQAM 1ano.1, 2000-no.14,2006 ; vol.8 (no.1), 2007- aBruxellescDe Boeck universitéd2000-2002 aPariscVuibertd2003- aChange de numérotation en 2007 aSemestriel10aPhilosophie économique10aRevue semestrielle du GREQAM aPhilosophie économiquexPériodiques02aGroupe de recherche en économie quantitative d'Aix-Marseille 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-de-philosophie-economique.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (2000) -....cParisdMagasins/AnnexeeP 8° 6589 aZPAY aDEW 10-1400898nas 2200289 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000028001412100023001693000035001923260012002276010077002396060037003167120063003538560056004168560031004729550062005039720009005659920022005749920012005960000174665000017466520130319051832.0 aFNSP657580 a0000174665 a19900101a19959999 ba0 afre aFR aaza 10aRevue de presse du CERI aPariscCERId1995- aN'est plus édité qu'en ligne aMensuel02aCentre d'études et de recherches internationalesc(Paris)xPériodiques aCoupures de pressexPériodiques02aCentre d'études et de recherches internationalesc(Paris)4 uhttp://10.107.113.100/communication/revue/revue.php zContient : Texte intégral1 b(nov-1995)-(oct-2005)cParisdMagasins/AnnexeeP 4° 6572 aZGRA aGEO RA4.06 France aDEW 32701163nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006000154210002400214326001600238517006500254606003100319606003100350676000800381710004000389801002100429856006700450856010800517955006000625955013100685972000900816992001200825039227847000004170220130319051832.01 a0035-1733 aFNSP222880 a0000041702 a19900101a19369999 ba0 afre aFR aahu 10aRevue de science criminelle et de droit pénal comparé aPariscSireyd1936- aTrimestriel10aRSC. Revue de science criminelle et de droit pénal comparé aCriminologiexPériodiques aDroit pénalxPériodiques a34002aInstitut de droit comparéc(Paris) 3aFRbCCN0035-17334 uhttps://acces-distant.sciences-po.fr/fork?http://www.dalloz.fr zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, 3e étageeDEW 3401 bno. 2 (1948) - no. 4 (1949) ; n. s. no. 1 (1959) - no. 3 (1963) ; n. s. no. 1 (1977) -....cParisdMagasins/AnnexeeP 8° 0585 aZPAY aDEW 34501434cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200005300174207004000227210003900267300003600306304005700342305008600399306010800485326001600593440004400609530005300653531003000706702003100736801003000767802000700797856014500804955005500949991002001004991003601024037714414000108371620130319051832.0 a0246-1617 accn0246-1617 a0001083716 a19900514b19031955k y0frey0103 ba0 afre aFR a 0  aah 0 10aRevue de science et de législation financières 0a1re année(1903) - 47e année(1955) aPariscGiard et Brièred1903-1955 aLa numérotation change en 1951 aFondateurs : Gaston Jèze (1869-1953) et Max Boucard aLa revue cesse de paraître après mai 1940 et reprend au deuxième semestre 1945 aNouvelle adresse bibliographique : Paris : Librairie générale de droit et de jurisprudence, 1935-1955 aTrimestriel 1tRevue de science financièrex0035-174100aRevue de science et de législation financières 0aRev. sci. légis. financ. 1aJèzebGastonf(1869-1953) 3aFRbAbesc20061212gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb34399443v/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1908-1931)1 b(1903) -(1955)cParisdMagasins/AnnexeeP 8° 0108 aPériobTP01 P8 anumer0 (complément de Gallica)01228nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200008500138210004100223210004600264210003500310326001600345430005400361530003000415606003000445710003800475801002100513856004600534856013700580955010500717957005700822972000900879992001400888039227871000004922520130522123318.01 a0035-1776 aFNSP244668 a0000049225 a19900101a19319999 ba0 afre aFR10aRevue de synthèsefFondation pour la science, Centre international de synthèse aPariscSpringer-Verlag Franced2007- aPariscENS éditions-rue d'Ulmd2002-2006 aPariscAlbin Micheld1931-2001 aTrimestriel 1aRevue de synthèse historique (Paris),x0997-054110aRevue de synthèsebParis aPhilosophiexPériodiques02aCentre international de synthèse 3aFRbCCN0101/56054 uhttp://www.revue-de-synthese.eu/index.htm4 zContenu : accès au texte intégral gratuit jusqu'à 2005. Années 1900 à 1935 accessibles en texte intégral gratuit dans Gallica.1 bvol. 1 no. 1 (mar-1931) -vol. 118 (1997) ; vol. 122 (2001) -....cParisdMagasins/AnnexeeP 8° 00921 b(1931) -(1985)cParisdMagasins/AnnexeeP Index 0611 aZPAY aDEW 10-1401899cas0 2200409 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200008800179207014400267210003600411305012600447306009700573311015600670321002200826326002600848446005600874446008100930530004301011531003101054702003401085710004301119801003001162801002301192802000701215856014501222955010201367991002001469038439743000108372320130319051832.0 a0997-0541 accn0997-0541 aissn09970541 a0001083723 a19920402b19001930uuuy0frey0103 ba0 afre aFR ar aahu uu 10aRevue de synthèse historiquefCentre international de synthèseg[dir. Henri Berr] 1a1ère série, tome 1 (1900)-1ère série, tome 26 (1913, juin). Nouvelle série [2e série], tome 27 (1913, août-décembre)-tome 50 (1930) aPariscLéopold Cerfd1900-1930 aEn 1900, seul le 2e semestre est paru ; la publication fut interrompue de 1915 à 1919 (pendant la 1ère Guerre mondiale) aEdité par Léopold Cerf de 1900 à 1922, puis par la Renaissance du livre à partir de 1923 aEn 1930, se scinde en 2 séries : une série générale "Synthèse historique" et une série intitulée "Sciences de la nature et synthèse générale"1 aTablesb1900-1910 aBimestrielb1900-1930 |tRevue de synthèse. Synthèse historiquex1164-6640 |tRevue de synthèse. Sciences de la nature et synthèse généralex1164-665910aRevue de synthèse historiqueb(Paris) 0aRev. synth. hist.b(Paris) 0aBerrbHenrif(1863-1954)465102aCentre international de synthèse4070 3aFRbAbesc20060710gAFNOR 3aFRbISSNc20060706 a074 uhttp://gallica.bnf.fr/ark:/12148/cb41163513g/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1900-1930)1 bvol. 1 (1900) -vol. 26 (1913) ; vol. 1 (1913) -vol. 24 (1930)cParisdMagasins/AnnexeeP 8° 0092 aPériobTP01 P801272cas0 2200361 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002900163207004800192210005800240326001200298430005900310606003800369606004400407607004500451710005300496801003000549856002700579856006500606955006700671955006500738955006900803992002200872992001600894139793313000118035220131219161558.01 a2105-7508 a0001180352 a20100114a20109999k y0frey0103 ba0 afre aFR ay 0  ar aafa 0 10aRevue Défense Nationale 0ano.726 [66ème année, no 1] (2010, janv.)- aPariscComité d'études de défense nationaled2010- aMensuel 1tDéfense nationale et sécurité collectivex1950-3253 aPolitique militairexPériodiques aRelations internationalesxPériodiques aFrancexDéfense nationalexPériodiques02aComité d'études de défense nationalec(Paris) 3aFRbAbesc20100115gAFNOR4 uhttp://www.defnat.com/ zContenu : sommaires et résumés depuis le numéro 726, 20101 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3551 bno. 726 (jan-2010) -....cParisdMagasins/AnnexeeP 8° 02091 bL'année en courscParisdBibliothèque de rechercheeP 8° 0209 aGEO RA4.06 France aDEW 355-35900768nls 2200253 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000050001502100027002002300024002276060035002518010013002868560070002998560108003699920025004779920012005020000941521000094152120130319051832.0 a0000941521 a a20039999k fre 01 ba0 afre aFR ar aaz z  adr 10aRevue des contratsb[Ressource électronique] aPariscLextensoc2003- aRevue électronique aContratsyFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lextenso.com zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aGEO RA4.06 France 01 aDEW 34001380cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200009900197207006400296210004000360326001700400440006300417530006700480606007400547607006600621702003600687801003000723801002300753802000700776856013300783955008200916991002000998037468308000110936920130319051832.0 a2017-6651 accn0119/2701 aissn20176651 a0001109369 a19830101b18631871uuuy0frey0103 ba0 afre aFR ay  ar aacu uu 10aRevue des cours littéraires de la France et de l'étranger...fréd. en chef, M. Odysse-Barot 0a1e année:n.1(1863, 5 déc.)-7e année:n.52(1871, 7 févr.) aPariscGermer Baillièred1863-1871 aHebdomadaire 1tLa Revue politique et littéraire (Paris. 1871)x2017-664300aRevue des cours littéraires de la France et de l'étranger... aLittératurexHistoire et critiquez19e sièclexPériodiques2rameau aFrancexVie intellectuellez19e sièclexPériodiques2rameau 1aBarotbOdyssef(1830-1907)4710 3aFRbAbesc20070823gAFNOR 3aFRbISSNc20070808 a004 uhttp://gallica.bnf.fr/ark:/12148/cb32858333s/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 bvol. 1 no. 1 (1863) -vol. 7 no. 52 (1871)cParisdMagasins/AnnexeeP 4° 0588 aPériobTP01 P401333nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154207002100180210004000201326001200241430005100253530003200304606003700336607004500373676000800418801002100426856003700447856013300484955007300617955011700690957009100807972000900898991001800907992002200925992001200947039624579000004170820130319051832.01 a0750-9278 aFNSP222890 a0000041708 a19900101a19829999 ba0 afre aFR abfu 10aRevue des deux mondes 1ano 5 (mai 1982)- aPariscRevue des deux mondesd1982- aMensuel 1aNouvelle revue des deux mondesxISSN 0151-914X10aRevue des deux mondesb1982 aVie intellectuellexPériodiques aFrancexVie intellectuellexPériodiques a001 3aFRbCCN0750-92784 uhttp://www.revuedesdeuxmondes.fr zContenu : sélection de titres d'articles de 1997 à 2003, puis sommaires et éditorial en texte intégral des six derniers mois1 bLes 3 dernières annéescParisd27, Salle Rez-de-chausséeeDEW 0011 bno. 5 (mai-1982) -....cParisdMagasins/AnnexeeP 8° 0295wManquant : Mai>Septembre, 1995 ; Mai>Septembre, 19961 b(1831) -(1874) ; (1886) -(1921) ; (1921) -(1931)cParisdMagasins/AnnexeeP Index 0041 aZCAD aexempb201011 aGEO RA4.06 France aDEW 00101274nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200003600160210004400196326004100240326004700281440006500328517002700393606003700420607004500457856013500502955017800637957010800815992002500923992001200948037446797000026743320130319051832.01 a0035-1962 aFNSP926125 a0000267433 a19990304b18291971 ba0 afre aFR ar aaea 13aLa Revue des deux mondes (1829) aPariscRevue des deux mondesd1829-1971 aBimensuel jusqu'en 1968 puis mensuel asuspendue entre 16 aout 1944 et déc. 1947 1ala Nouvelle Revue des deux mondes (0151-914X) < P 8° 0295 >13aLa Revue (Paris, 1948) aVie intellectuellexPériodiques aFrancexVie intellectuellexPériodiques uhttp://gallica.bnf.fr/ark:/12148/cb32858360p/datezAccès libre au texte intégral. Périodique numérisé sur Gallica (1829-1930)1 bvol. 20 vol. 15 (1852) -no. 12 (dec-1971)cParisdMagasins/AnnexeeP 8° 0295znnée manquante 1854) (lacunes pour les années 1852--1853, 1855, 1867, 1898 ,1925, 1937,1942)1 b(1831) -(1874) ; (1886) -(1893) ; (1911) -(1921) ; (1921) -(1931)cParisdMagasins/AnnexeeP Index 0041 aGEO RA4.06 France 01 aDEW 00101292nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006900139207005100208210002700259300007900286326001200365430004500377517004400422517003500466530002900501601005700530606005100587606004700638710004300685856008800728955007800816972000900894992002500903992001400928040560732000023968220131218140500.01 a1282-5247 aFNSP845383 a19900101b19972002 ba0 afre aFR aafa 13aLa Revue des entreprisesfConseil national du patronat français 1aN ° 594 (1997,sept./oct.)-n° 647(2002,déc.) aPariscCNPFd1997-2002 aEn nov. 1998 le CNPF devient le MEDEF, Mouvement des entreprises de France aMensuel 1aCNPF La Revue des entreprisesx0399-897510aCNPF Patronat, La Revue des entreprises10aMEDEF,la Revue des entreprises03aLa Revue des entreprises02aConseil national du patronat françaisxPériodiques aEmployeursxAssociationsyFrancexPériodiques aGestion d'entrepriseyFrancexPériodiques02aConseil national du patronat français4 uhttp://www.medef.fr/fr/I/Idoc/I_p-revue.htmzContenu : sommaires des 4 derniers n°1 bno. 589 (mar-1997)-no. 647 (nov-2002)cParisdMagasins/AnnexeeP 4° 0160 aZPAY aGEO RA4.06 France 01 aDEW 330.901611cas0 2200409 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200003200179210004600211326001600257423004600273423006100319423004300380437004600423517007400469517012200543530004400665531003300709606004400742710007600786711005900862801003000921801002300951802000700974856014500981955005501126991002001181039227944000109510120130319051832.0 a0035-2004 accn0035-2004 aissn00352004 a0001095101 a19960829a18999999uuuy0frey0103 ba0 afre aFR ar aahu uu 10aRevue des études anciennes aBordeauxaMarseilleaPariscFéretd1899- aTrimestriel 1tBulletin hispanique (Bordeaux)x0007-4640 1tRevue des lettres françaises et étrangèresx0184-7813 1tBulletin italien (Bordeaux)x0997-4385 1tRevue des universités du Midix0755-163010aAnnales de l'Université de Bordeaux IIIerevue des études anciennes10aAnnales de la Faculté des lettres de Bordeaux et des universités du Midi. 4ème série. Revue des études anciennes10aRevue des études anciennesb(Bordeaux) 0aRev. étud. anc.b(Bordeaux) aHistoire anciennexPériodiques2rameau02aUniversité de BordeauxbFaculté des lettres et sciences humaines407002aUniversité d'Aix-MarseillebFaculté des lettres4070 3aFRbAbesc20070416gAFNOR 3aFRbISSNc20070412 a074 uhttp://gallica.bnf.fr/ark:/12148/cb328584003/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1899-1940)1 b(1899) -(1923)cParisdMagasins/AnnexeeP 8° 0937 aPériobTP02 P801106cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200010800162207003100270210002900301300004900330447005800379530004400437801003000481801002800511802000700539856014500546955004600691991002000737991003500757001598074000108410020130319051832.0 a1149-8056 accn1149-8056 a0001084100 a19901115b19211947k y0frey0103 ba0 afre aFR ar aah 10aRevue des études coopérativeseProblèmes d'économie nationale et internationale. Questions sociales 1ano. 1 (1921) -no.79 (1947) aParisc[s.n.]d1921-1947 aN'a pas paru entre mars 1940 et juillet 1946 1tAnnée politique française et étrangèrex1149-015210aRevue des études coopérativesb(1921) 3aFRbAbesc20060626gAFNOR 3aFRbBNc19990127gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb344272933/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1920-1940)1 b(1921) -(1940)cParisdAnnexeeP 8° 0334 aPériobTP01 P8 anumer0 (complément gallica ?)01254nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200006100160210003100221326001500252434007300267434005100340606002800391606002400419710004200443856019400485955008700679957014200766991001800908992001400926039608778000004917020130319051832.01 a0484-8616 aFNSP244523 a0000049170 a19900101a18809999 ba0 afre aFR ar aaja 10aRevue des études juivesf[Société des études juives] aPariscA. Durlacherd1880- asemestriel 1aActes et conférences de la Société des études juives (1149-8684) 1tHistoria judaica (Moravska Ostrava)x1054-1330 aJudaïsmexPériodiques aJuifsxPériodiques02aSociété des études juives (France)4 uhttp://archive.org/search.php?query=title%3A%28Revue%20des%20%C3%A9tudes%20juives%29&page=1zAccès libre au texte intégral. Périodique numérisé sur Internet Archive (vol. 1--> vol. 77)1 bvol. 118 (1959/1960) - vol. 158 no. 3/4 (1999)cParisdMagasins/AnnexeeP 8° 19501 bvol. 101 (1937) -vol. 125 (1966), vol. 126 (1967) -vol. 131 (1972), vol.132 (1973) -vol. 138 (1979)cParisdMagasins/AnnexeeP Index 0318 aexempb201001 aDEW 20-2901429cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200005000180210010900230423004600339423004300385423005400428437004600482517014000528530005000668531002800718712007600746801003000822802000700852856014500859955005501004991002001059037577948000109506520130319051832.0 a0184-7813 accn0184-7813 a0001095065 a19960829b18991900k y0frey0103 ba0 afre aFR a 0  ar aah 0 10aRevue des lettres françaises et étrangères aBordeauxcFéretaLyoncHenri GeorgaPariscSociété française d'imprimerie et de librairied1899-1900 1tBulletin hispanique (Bordeaux)x0007-4640 1tBulletin italien (Bordeaux)x0997-4385 1tRevue des études anciennes (Bordeaux)x0035-2004 1tRevue des universités du Midix0755-163010aAnnales de la Faculté des lettres de Bordeaux et des universités du Midi. 4ème série. Revue des lettres françaises et étrangères00aRevue des lettres françaises et étrangères 0aRev. lett. fr. étrang.02aUniversité de BordeauxbFaculté des lettres et sciences humaines4340 3aFRbAbesc20070604gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb32858603p/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1899-1900)1 b(1899) -(1900)cParisdMagasins/AnnexeeP 8° 0938 aPériobTP02 P800956cas0 2200277 450 00100100000000200110001000500170002103500170003803500150005510000410007010100080011110200070011910500180012610600060014411000160015020000360016621000320020230500410023432600160027553000360029160600350032780100300036285601450039295501210053799100200065803745773X000108558020130319051832.0 accn0103/4995 a0001085580 a19830101b18661939k y0frey0103 ba0 afre aFR a 0  ar aah 0 10aRevue des questions historiques aPariscV. Palméd1866-1939 aCesse de paraitre entre 1914 et 1923 aTrimestriel00aRevue des questions historiques aHistoirexPériodiques2rameau 3aFRbAbesc20070119gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb32858757w/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1866-1937)1 b(1866) ; (1872) ; (1873) -(1914) ; (1922) -(1939)$73ème et 4ème trimestre 1903cParisdMagasins/AnnexeeP 8° 0477 aPériobTP01 P801180cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200005800179207001400237210004100251320006100292326001500353423003800368530003900406606005100445712002400496801003000520801002300550801001300573802000700586856003000593856005000623955006300673972000900736992001200745992002500757039797198000043592620130319051832.01 a0980-2797 accn0980-2797 aissn09802797 a0000435926 a19910820a19869999k y0frey0103 ba0 afre aFR ar aaju uu 13aLa Revue des revuesfpublié par Association Entrevue 0aN (1986)- aPariscAssociation Ent'revuesd1986- aLe no.21(1996) contient les tables des nos.1-20(1986/95) aSemestriel 1tLa Lettre d'Ent'revuesx0988-853513aLa Revue des revuesb(Paris. 1986) aPériodiques françaisxHistoirexPériodiques02aEnt'revuesc(Paris) 3aFRbAbesc20090429gAFNOR 3aFRbISSNc20080526 0aFRbFNSP a074 uhttp://www.entrevues.org/ zContenu : accès aux sommaires depuis le n°11 bno. 1 (pri-1986) -....cParisdMagasins/AnnexeeP 4° 6909 aZPAY aDEW 020 aGEO RA4.06 France 0101060nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000037001642070043002012100058002443260015003024300037003175170041003546060039003956060038004346060047004728010013005198560032005329550108005649720009006729920025006819920016007060000617099000061709920130319051832.01 a1160-7742 a0000617099 a a20009999 fre 01 ba0 afre aFR a 0  ar aag z 0 13aLa Revue des sciences de gestion 1aVol. 35, n° 182/183 (mars/juin 2000)- aEpinay-sur-OrgecRevue des sciences de gestiond2000- aBimestriel 1tDirection et gestion,x1291-290510aDirection et gestion des entreprises aGestion d'entreprisexPériodiques aEntreprisesyFrancexPériodiques aGestion d'entrepriseyFrancexPériodiques 0aFRbFNSP4 uhttp://larsg.over-blog.com/1 bvol. 35 no. 182/183 (mar/jun-2000) -vol. 43 no. 234 (nov/dec -2008)cParisdMagasins/AnnexeeP 8° 2844 aZPAY aGEO RA4.06 France 01 aDEW 650-65801281nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200009100160210003900251326001600290430012100306530004500427531002900472606003500501606004400536606003600580710005900616801002100675856008200696955007600778972000900854991001800863992002200881992001600903036060364000004176620130319051832.01 a0751-5804 aFNSP223029 a0000041766 a19900101b19822001 ba0 afre aFR ar aahu 10aRevue des sciences morales et politiquesfAcadémie des sciences morales et politiques aPariscGauthier-Villarsd1982-2001 aTrimestriel 1aRevue des travaux de l'Académie des sciences morales & politiques et comptes rendus de ses séancesxISSN 0400-3373 0aRevue des sciences morales et politiques 0aRev. sci. morales polit. aMorale politiquexPériodiques aScience politiqueyFrancexPériodiques aScience politiquexPériodiques02aAcadémie des sciences morales et politiquesc(France) 3aFRbCCN0751-58044 uhttp://www.puf.com/revue.php?revue=EVzSommaires du no.3, 1997 au no. 3, 20001 bvol. 137 no. 1 (1982) -no. 4 (2001)cParisdMagasins/AnnexeeP 8° 0437 aZCAD aexempb201101 aGEO RA4.06 France aDEW 320-32101183nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200004200160210002800202300004400230326001600274430006300290440005900353606003600412606004400448710004900492856014400541955008700685957004700772992002200819992001600841038500930000014159320130319051832.01 a1144-147X aFNSP563003 a0000141593 a19941116b19111936 ba0 afre aFR ar aaha 10aRevue des sciences politiques (Paris) aPariscAlcand1911-1936 acontient un supplément de 1919 à 1936 aTrimestriel 1aAnnales des sciences politiques (1144-1488) < P 8° 0377 > 1aSciences politiques (Paris) (1144-1461) < P 8° 0377 > aScience politiquexPériodiques aScience politiqueyFrancexPériodiques02aEcole libre des sciences politiquesc(Paris)4 uhttp://gallica.bnf.fr/ark:/12148/cb344222300/date.r=.langFRzAccès libre au texte intégral. Années 1911 à 1932 numérisées sur Gallica1 bvol. 26 (jan/fev-1911) -vol. 51 (oct/dec-1936)cParisdMagasins/AnnexeeP 8° 03771 rTable 1926/1935 reliée avec l'année 1935 aGEO RA4.06 France aDEW 320-32101188nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003200163210004600195326002200241326002200263430007000285530004600355606004400401606003600445710005200481801001300533856004800546856013800594955006000732972000900792992002500801992001200826050927183000045588720130319051832.01 a1623-6572 a0000455887 a a20009999k fre ba0 afre aFR a 0  ar aaj z 0 10aRevue des sciences sociales aStrasbourgcUniversité Marc Blochd2000- aSemestrielb2005- aAnnuelb2000-2004 1tRevue des sciences sociales de la France de l'EstxISSN 0336-157810aRevue des sciences socialesb(Strasbourg) aSciences socialesyFrancexPériodiques aSciences socialesxPériodiques02aUniversité des sciences humainesc(Strasbourg) 0aFRbFNSP4 uhttp://www.revue-des-sciences-sociales.com/ zContenu : accès libre au texte intégral d'une sélection d'articles depuis le n°2, 1973, à l'exception des deux derniers numéros1 bno. 27 (2000) -....cParisdMagasins/AnnexeeP 8° 3084 aZPAY aGEO RA4.06 France 01 aDEW 30001245nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004900154210002500203326001900228326002700247436004500274436006300319517003200382606004400414801002100458856006700479856010800546955006300654955007500717957005700792972000900849992002500858992001200883039373053000004207720130319051832.01 a0242-5424 aFNSP223660 a0000042077 a19900101a19759999 ba0 afre aFR aahu 10aRevue des sociétés, Journal des sociétés aPariscDallozd1975- aMensuelb2010- aTrimestrielb1975-2010 1aRevue des sociétés (Paris),x0240-8945 1tJournal des sociétés civiles et commerciales,x0242-541610aRevue des sociétés (1986) aSociétésxDroityFrancexPériodiques 3aFRbCCN0242-54244 uhttps://acces-distant.sciences-po.fr/fork?http://www.dalloz.fr zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (mar-2010) -....cParisdMagasins/AnnexeeP 4° 72311 bvol. 93 no. 1 (1975) -no. 4 (2009)cParisdMagasins/AnnexeeP 8° 28461 b(1970) -(1979)cParisdMagasins/AnnexeeP Index 0354 aZPAY aGEO RA4.06 France 01 aDEW 34601300nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200003300160210003800193326001200231436012400243440006000367606004400427801002100471856017200492856014500664955005500809955005500864991001800919992002500937992001200962037650009000004177020130319051832.01 a0240-8945 aFNSP223033 a0000041770 a19900101b18831974 ba0 afre aFR ar aafa 10aRevue des sociétés (Paris) aPariscMarchal-Billardd1883-1974 aMensuel 1aRevue des sociétés, Journal des sociétésx0242-5424 et de Journal des sociétés civiles et commercialesx0242-5416 1aRevue des sociétés, Journal des sociétésx0242-5424 aSociétésxDroityFrancexPériodiques 3aFRbCCN0240-89454 uhttps://acces-distant.sciences-po.fr/fork?http://bu.dalloz.fr/zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po uhttp://gallica.bnf.fr/ark:/12148/cb343617225/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1883-1928)1 b(1968) -(1974)cParisdMagasins/AnnexeeP 8° 28461 b(1883) -(1946)cParisdMagasins/AnnexeeP 8° 0637 aexempb201105 aGEO RA4.06 France 01 aDEW 34601259cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200003500174210006000209430006200269446006100331512009400392530003500486531002000521710007600541711005900617801003000676802000700706856014500713955005500858991002000913038078643000109506920130319051832.0 a0755-1630 accn0755-1630 a0001095069 a19960829b18951898k y0frey0103 ba0 afre aFR a 0  aaha 0 10aRevue des universités du Midi aPariscLibraires associésaBordeauxcFéretd1895-1898 1tAnnales de la Faculté des lettres de Bordeauxx0184-783X |tRevue des lettres françaises et étrangèresx0184-781310aAnnales de la Faculté des lettres de Bordeaux. 3e série. Revue des universités du Midi00aRevue des universités du Midi 0aRev. univ. Midi02aUniversité de BordeauxbFaculté des lettres et sciences humaines407002aUniversité d'Aix-MarseillebFaculté des lettres4070 3aFRbAbesc20060626gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb328589114/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1895-1898)1 b(1895) -(1898)cParisdMagasins/AnnexeeP 8° 0936 aPériobTP02 P801549nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200008100160207002400241210002300265326001500288517000800303517002600311606003100337606004400368606003900412606003600451676000800487801002100495856017600516856008600692856014500778955006100923955005400984957006701038972000901105992001601114992000901130039228223000000545420130319051832.01 a0035-2578 aFNSP108333 a0000005454 a19900101a18949999 ba0 afre aFR ar aagu 10aRevue du droit public et de la science politique en France et à l'étranger 1aVol.1 no.1 (1894) - aPariscLGDJd1894- aBimestriel10aRDP10aRevue du droit public aDroit publicxPériodiques aScience politiqueyFrancexPériodiques aDroit publicyFrancexPériodiques aScience politiquexPériodiques a320 3aFRbCCN0035-25784 uhttps://acces-distant.sciences-po.fr/fork?http://www.lextenso.com/zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.ucm.es/BUCM/compludoc/S/S/00352578.htmzSommaires depuis le n°1, 19944 uhttp://gallica.bnf.fr/ark:/12148/cb343491628/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1894-1923)1 bno. 1 (1945) -....cParisd30, Salle 1er étageeDEW 3201 bno. 1 (1894) -(1944)cParisdMagasinseP 8° 00341 b(1951) -(1964) ; (1965) -(1974)cParisdMagasinseP Index 0044 aZCAD aDEW 320-321 aPBUL01169nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008800154207001800242210003000260326001500290430003500305517001500340606003600355676000800391710006900399856008800468856010800556955006600664955006200730972000900792991001800801992001200819040155927000022023520130319051832.01 a1247-4819 aFNSP791067 a0000220235 a19900101a19939999 ba0 afre aFR aaja 10aRevue du MAUSS semestriellefMouvement anti-utilitariste dans les sciences sociales 1ano. 1 (1993)- aPariscDécouverted1993- aSemestriel 1aRevue du MAUSSxISSN 0990-564210aRecherches aSciences socialesxPériodiques a30002aMouvement anti-utilitariste dans les sciences socialesc(France)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-du-mauss.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3001 bn.s. no.1(1993) -....cParisdMagasins/AnnexeeP 8° 5125 aZPAY aexempb201206 aDEW 30001390nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200005200138210003200190210003900222326001600261430006800277517005600345517001000401607003400411607003100445607003400476676000800510710010000518856002900618856013200647955006600779955006300845972000900908991001800917992002700935992003000962992001200992039877175000004192620130319051832.00 a0997-1327 aFNSP223338 a0000041926 a19900101a19889999 0 afre aFR10aRevue du monde musulman et de la Méditerranée aAix-en-ProvencecPUPd2008- aAix-en-ProvencecEdisudd1988-2007 aTrimestriel 1aRevue de l'Occident musulman et de la Méditerranéex0035-147410aRevue des mondes musulmans et de la Méditerrannée10aREMMM aPays islamiquesxPériodiques aMoyen-OrientxPériodiques aAfrique du NordxPériodiques a939 aAssociation pour l'étude des sciences humaines en Afrique du Nord et au Proche-Orient (France)40uhttp://remmm.revues.org/ zContenu : sommaires et depuis le n°1, 1966 ; résumés depuis le n° 39, 1986. Index des comptes-rendus par titres ou auteurs.1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9391 bno. 48/49 (1988) -....cParisdMagasins/AnnexeeP 8° 2304 aZCAD aexempb201004 aGEO RL4 Méditerranée aGEO RG.12 Pays islamiques aDEW 90900866nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000062001502100005002122300005002173000061002223260016002833360101002993370017004006060032004177100062004498010013005118560047005249550005005710000432337000043233720130319051832.0 a0000432337 a a20019999k fre 01 ba0 afre aFR az aay z  adr 10aRevue du réseau environnementb[Ressource électronique] a a aTexte intégral de la revue depuis le n°15 janvier 2003 airrégulier aDonnées textuelles accessibles uniquement en ligne ou par abonnement par courrier électronique aFichiers PDF aEnvironnementxPériodiques02aFrancebDirection des relations économiques extérieures 0aFRbFNSP4 uhttp://www.dree.org/publications/index.htm1 r01762nas 2200421 i 450 001001000000002001100010005001700021011001400038035001300052035001500065100004100080101000800121102000700129110001600136200002200152210003100174210007700205326001500282530003500297606003700332676000800369710005800377711005900435711005900494801002100553856009000574856010800664856002600772856007600798856009000874856010800964955006701072955007001139955010101209972000901310992001201319992000901331039228371000000203420130319051832.01 a0035-2764 aFNSP7782 a0000002034 a19900101a19509999 ba0 afre aFR aagu 10aRevue économique aPariscA. Colind1950-1977 aaPariscPresses de la Fondation nationale des sciences politiquesd1978- aBimestriel 0aRevue économiquebParis. 1950 aEconomie politiquexPériodiques a33002aFondation nationale des sciences politiquesc(France)02aEcole des hautes études en sciences socialesc(Paris)02aCentre national de la recherche scientifiquec(France) 3aFRbCCN0035-27644 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-economique.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr/ zContenu : Accès libre au texte intégral des articles de 1950 à 2002.4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00352764.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3301 bvol. 1 no. 1 (mai-1950) -....cParisdMagasins/AnnexeeP 8° 04501 bvol. 1 no. 1 (mai-1950) -vol. 57 no. 6 (nov-2006)cParisdBibliothèque de rechercheeP 8° 0450 aZPAY aDEW 330 aPBUL01353nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009600154207004600250210002700296300003300323326001500356430002900371517009000400606005300490712006700543801002100610856010600631856010800737955006800845972000900913991001800922992005100940992001200991039424022000000547220130319051832.01 a0255-0830 aFNSP108387 a0000005472 a19900101b19832006 f ba0 afre aFR aaju 10aRevue économique de l'OCDEfOrganisation de coopération et de développement économiques 1aN°1, (automne 1983)-N°43 (automne 2006) aPariscOCDEd1983-2006 aN'a pas paru en 1998 et 1999 aSemestriel 1aEtudes spéciales - OCDE10aRevue économique de l'Organisation de coopération et de développement économiques aEconomie politiqueyPays de l'OCDExPériodiques02aOrganisation de coopération et de développement économiques 3aFRbCCN0255-08304 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/02550830/revueeconocde zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1983) -no. 43 (2006)cParisdMagasins/AnnexeeP 8° 4682 aZECH aexempb200911 aGEO RN1 Pays industrialisés, pays occidentaux aDEW 33001199cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200003700197210005500234300015000289434003800439517006600477517003700543801003000580801002300610802000700633856014400640955006900784991002000853039068137000110939120130319051832.0 a2017-9677 accn7109/4199 aissn20179677 a0001109391 a19880318b188019 k y0frey0103 ba0 afre aFR ay  ar aacu uu 10aRevue économique et financière aPariscRevue Économique et Financièred1880-1974 aLe titre devient : "La revue économique & financière et L'économiste français" le 5 novembre 1938 lorsqu'il absorbe "L'économiste français" 0tL'Economiste françaisx1774-246313aLa Revue économique & financière et L'économiste français10aRevue Financière et Économique 3aFRbAbesc20070828gAFNOR 3aFRbISSNc20070808 a004 uhttp://gallica.bnf.fr/ark:/12148/cb32859449p/date.r=.langFRzAccès libre au texte intégral. Années 1880 et 1881 numérisées sur Gallica1 bno. 45 (1938) -no. 23 (1940)cParisdMagasins/AnnexeeP 4° 0387 aPériobTP01 P400918nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000044001552100066001993260016002655300044002816060041003257120060003668010021004268560033004478560057004809550070005379720009006079920012006160000042110000004211020130319051832.0 a0035-2772 aFNSP223740 a0000042110 a19900101a19439999 ba0 amul aCH aahu 10aRevue économique et sociale (Lausanne) aLausannecSociété d'études économiques et socialesd1943- aTrimestriel00aRevue économique et sociale (Lausanne) aSociologie économiquexPériodiques02aSociété d'études économiques et sociales (Lausanne) 3aFRbCCN0035-27724 uhttp://www.hec.unil.ch/sees/4 zContenu : accès aux sommaires depuis décembre 20011 bvol. 5 no. 1 (jan-1947) - …cParisdMagasins/AnnexeeP 8° 0121 aZGRA aDEW 30001393cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001700069035001700086035001500103100004100118101000800159102000700167106000600174110001600180200003700196207007600233210005900309321009100368326001200459327006700471423005100538530003700589531002100626606006500647801003000712801002300742802000700765856013400772955007000906991002000976991001100996036688851000108557520130319051832.0 a1374-4615 accn0102/6046 accn1374-4615 aissn13744615 a0001085575 a19830101b19041940uuuy0frey0103 ba0 afre aBE ar aafu uu 10aRevue économique internationale 0aVol.1(1904, mars)-vol.11(1914, juil.) ; vol.12(1920)-vol.32(1940, mars) aBruxellescRevue économique internationaled1904-1940 aTables : 1904-1909 ; 1909-1914 dans "Collection de tables de revues belges", 1914-1924 aMensuel| aDe 1905 à 1914 contient "Bibliographia economica universalis" 1tBibliographia economica universalisx1378-026300aRevue économique internationale 0aRev. écon. int. aRelations économiques internationalesxPériodiques2rameau 3aFRbAbesc20061215gAFNOR 3aFRbISSNc20020530 a0m4 uhttp://gallica.bnf.fr/ark:/12148/cb32859465x/date.r=.langFRzAccès libre au texte intégral. Année 1924 numérisée sur Gallica1 bvol. 1 (1904) -vol. 32 (1940)cParisdMagasins/AnnexeeP 8° 0378 aPériobTP01 P8 anumer001227cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200009700180207002300277210004300300326001800343606002600361606003800387606003200425676000800457710003800465801003000503801002300533802000700556856002900563856006600592955007400658955006400732992003300796992001200829130918040000118578220130319051832.01 a1967-2756 aissn19672756 a0001185782 a20090203a20079999k y0frey0103 ba0 afre aFR ay  ar aaiu uu 13aLa Revue européenne des médiasfIREBS, Institut de recherche de l'European Business School 1ano. 1 (fev-2007) - aPariscEuropean Business Schoold2007- a3 n°s par an aMédiasxPériodiques aMédias numériquesxPériodiques aCommunicationxPériodiques a07002aEuropean Business Schoolc(Paris) 3aFRbAbesc20090408gAFNOR 3aFRbISSNc20090225 a074 uhttp://irec.u-paris2.fr/ zContient : sommaires et texte intégral depuis le no. 0, 20061 bLes 3 dernières années;cParisd27, Salle Rez-de-chausséeeDEW 0701 bno. 9 (2008/2009) -....cParisdMagasins/AnnexeeP 4° 7277 aGEO RS Sans aspect régional aDEW 07001681nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005300139207002600192210008200218210007300300210008400373326002300457326002800480452007600508517000900584530005300593606004400646676000800690710008400698801002100782856012100803856010800924856002601032856003701058955006701095955007001162972000901232991001801241992001201259039741419000000546320130916142153.01 a0765-0752 aFNSP108369 a19900101a19859999 ba0 afre aFR aaia 10aRevue européenne des migrations internationales 1avol. 1, no. 1 (1985)- aPoitiers‎cREMI, revue européenne des migrations internationales‎d1996- aPoitiers‎cMIGRINTER - CNRS, Université de Poitiers‎d1994-1995 aPoitiers‎cDépartement de géographie, Université de Poitiers‎d1985-1994 aTrimestrielb2012- a3 nos par anb1985-2011 1tRevue européenne des migrations internationales (En ligne),x1777-541810aREMI aRevue européenne des migrations internationales aEmigration et immigrationxPériodiques a32502aCentre national de la recherche scientifiquec(France)bUnité associée (1145) 3aFRbCCN0765-07524 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-europeenne-des-migrations-internationales.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr/ zAccès libre au texte intégral.1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3251 bvol. 1 no. 1 (sep-1985) -....cParisdMagasins/AnnexeeP 8° 4885 aZCAD aexempb201002 aDEW 32501300nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200007200163210002500235326001500260430004000275517002800315530005700343606003600400676000800436801001300444856011100457856010800568955006000676957017500736972000900911991001800920992001200938038831287000060092920131025111146.01 a0048-8046 a0000600929 a a19729999 fre 01 ba0 afre aCH a 0  ar aah z 0 10aRevue européenne des sciences sociales‎ecahiers Vilfredo Pareto aGenèvecDrozd1972- aSemestriel 1tCahiers Vilfredo Pareto,x0008-049710aCahiers Vilfredo Pareto aRevue européenne des sciences sociales‎bImprimé aSciences socialesxPériodiques a300 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-europeenne-des-sciences-sociales.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 27 (1972) -....cParisdMagasins/AnnexeeP 8° 20821 bvol. 1(1963) -vol. 25 (1967) ; vol. 26 (1988) -vol. 32 (1994)cParisdMagasins/Annexe ; ces deux index constituent respectivement les no 78, 1988 et 100, 1994 de la revue aZPAY aexempb201004 aDEW 30001061nas 2200301 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000040001552100038001953260017002334300079002505170028003296060047003576060044004048300096004488560029005448560058005739550091006319920025007229920012007470000256694000025669420130319051832.01 a0223-4718 aFNSP895209 a0000256694 a19980930a19989999 ba0 afre aFR aa a 13aLa Revue fiduciaire. Feuillet-hebdo aPariscLa Revue fiduciaired1998- aHebdomadaire 1aLa revue fiduciaire. Informations hebdomadaires (0223-4718) < P 8° 2743 >13aLa Revue fiduciaire. FH aSociétésyFrancexFinancesxPériodiques aSociétésxDroityFrancexPériodiques aCollection donnée au CTLes en 2008, mais ne semble pas avoir été conservée par le CTLes4 uhttp://www.GroupeRF.com/ zContenu : sommaires depuis le n° 2730, 30 janv. 19991 bLa Bibliothèque conserve les 2 dernières annéescParisdMagasins/AnnexeeP 8° 2743 aGEO RA4.06 France 01 aDEW 34601485nas 2200385 i 450 001001000000002001100010005001700021011001400038035001300052035001500065100004100080101000800121102000700129110001600136200004700152210006700199326001600266430008300282488004300365517000900408606004200417676000800459710006300467801002100530856011500551856010800666955006700774955006300841955006900904957007100973972000901044992002101053992001601074992000901090013304127000000236520140110114658.01 a0152-7401 aFNSP8472 a0000002365 a19900101a19779999 ba0 afre aFR aaha 10aRevue française d'administration publique aPariscInstitut international d'administration publiqued1977- aTrimestriel 1aBulletin de l'Institut international d'administration publiquexISSN 0020-2355 1aAdministration (Paris)xISSN 0244-453410aRFAP aAdministration publiquexPériodiques a35102aInstitut international d'administration publiquec(France) 3aFRbCCN0152-74014 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-francaise-d-administration-publique.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3511 bno. 1 (jan-1977) -....cParisdMagasins/AnnexeeP 8° 24841 bL'année en courscParisdBibliothèque de rechercheeP 8° 24841 bno. 1 (1977) -no. 100 (2001)cParisdMagasins/AnnexeeP Index 0848 aZCAD aGEO RQ Universel aDEW 350-354 aPBUL01036nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210004700187326001600234606005200250606003300302676000800335801002100343856006300364856010000427955006700527955006600594972000900660991001800669992001400687992000900701039785092000000547520130319051832.01 a0769-0479 aFNSP108390 a0000005475 a19900101a19869999 ba0 afre aFR aahu 10aRevue française d'économie aPariscRevue française d'économied1986- aTrimestriel aHistoire économiquez20e sièclexPériodiques aMacroéconomiexPériodiques a330 3aFRbCCN0769-04794 uhttp://www.persee.fr/web/revues/home/prescript/revue/rfeco zAccès libre au texte intégral à partir de 1986 à l'exception des années les plus récentes1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3301 bvol. 1 no. 1 (1986) -....cParisdMagasins/AnnexeeP 8° 4938 aZPAY aexempb201206 aDEW 338.9 aPBUL01162nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210005000198326001600248607004300264607002900307676000800336710005000344801002100394856011000415856010800525955006600633955006300699972000900762991001800771992002300789992001200812039588165000000595620130319051832.01 a0397-7870 aFNSP109467 a0000005956 a19900101a19769999 ba0 amul aFR aaha 10aRevue française d'études américaines aNancycPresses universitaires de Nancyd1976- aTrimestriel aEtats-UnisxCivilisationxPériodiques aEtats-UnisxPériodiques a97002aAssociation française d'études américaines 3aFRbCCN0397-78704 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-francaise-d-etudes-americaines.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9701 bno. 1 (avr-1976) -....cParisdMagasins/AnnexeeP 8° 3774 aZCAD aexempb201104 aGEO RC2 Etats-Unis aDEW 97301209nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004900154210006600203326002200269326002700291607006100318607004800379676000800427710007500435801002100510856005000531856007200581955006600653955007000719972000900789991001800798992003100816992001200847039410803000000548020130319051832.01 a0248-9015 aFNSP108395 a0000005480 a19900101a19809999 ba0 afre aFR aaju 10aRevue française de civilisation britannique aOrléanscRevue française de civilisation britanniqued1980- aSemestrielb1998- aTrimestrielb1980-1997 aGrande-BretagnexPolitique et gouvernementxPériodiques aGrande-BretagnexCivilisationxPériodiques a94002aGroupe de recherche en civilisation britannique contemporainec(Paris) 3aFRbCCN0248-90154 uhttp://www.lcdpu.fr/revues/?collection_id=544 zContient : sommaires et résumés à partir du vol. 11, no. 4, 20021 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 bvol. 1 no. 1 (oct-1980) -....cParisdMagasins/AnnexeeP 8° 4620 aZPAY aexempb201003 aGEO RA4.02 Grande-Bretagne aDEW 94101085nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210002800198210002500226326001500251517000900266606004600275676000800321801002100329830003200350856006700382856010800449955006600557955005600623972000900679992002200688992001600710992000900726039726266000000592520130319051832.01 a0763-1219 aFNSP109435 a0000005925 a19900101a19849999 ba0 afre aFR aaga 10aRevue française de droit administratif aPariscSireyd1984-1998 aPariscDallozd1999- aBimestriel10aRFDA aDroit administratifyFrancexPériodiques a342 3aFRbCCN0763-1219 a1984-1999 conservé au 13 U4 uhttps://acces-distant.sciences-po.fr/fork?http://www.dalloz.fr zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 3e étageeDEW 3421 bno. 1 (mai-1984) -....cParisdMagasinseP 4° 4966 aZCAD aGEO RA4.06 France aDEW 350-354 aPBUL01260nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004600139210005100185326001600236452007100252530004600323606004000369606004800409606006300457676000800520856021900528955006700747955005900814972000900873991001800882992002200900992001200922001643223000001117720130729114543.01 a1151-2385 aFNSP123964 a19900727a19909999 ba0 afre aFR aaha 00aRevue française de droit constitutionnel aPariscPresses universitaires de Franced1990- aTrimestriel 1tRevue française de droit constitutionnel (En ligne)‎x2105-286700aRevue française de droit constitutionnel aDroit constitutionnelxPériodiques aDroit constitutionnelyFrancexPériodiques aDroit constitutionnelyFrancexJurisprudencexPériodiques a3424 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-francaise-de-droit-constitutionnel.htm?zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 3421 bno. 1 (1990) -....cParisdMagasins/AnnexeeP 8° 5659 aZCAD aexempb201202 aGEO RA4.06 France aDEW 34201015nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004300154210006800197326001600265517000900281606003700290606004500327676000800372801002100380856003500401856005400436955006700490955005900557972000900616991001800625992002200643992001200665013302469000000565920130319051832.01 a0294-0833 aFNSP108788 a0000005659 a19900101a19839999 ba0 afre aFR aahu 10aRevue française de finances publiques aPariscLibrairie générale de droit et de jurisprudenced1983- aTrimestriel10aRFFP aFinances publiquesxPériodiques aFinances publiquesyFrancexPériodiques a336 3aFRbCCN0294-08334 uhttp://rffp.gerfip.org/som.php zContenu : sommaires des n°s depuis le n°1, 19831 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3361 bno. 1 (1983) -....cParisdMagasins/AnnexeeP 8° 4608 aZPAY aexempb201011 aGEO RA4.06 France aDEW 33600908nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003800139210003200177326001600209440003700225530003800262606004200300606005700342856004700399856006500446955006800511972000900579991001800588992001200606040577848000021478920130828182542.01 a1284-9340 aFNSP775159 a19900101b19972000 ba0 afre aFR aaha 00aRevue française de géoéconomie aPariscEconomicad1997-2000 aTrimestriel 1tGéoéconomie (Paris)x1620-9869 aRevue française de géoéconomie aGéographie économiquexPériodiques aRelations économiques internationalesxPériodiques4 uhttp://www.geoeconomie.org/rfg/default.htm zContenu : sommaires et résumés depuis le n°1, print. 19971 bno. 1 (1997) -no. 13 (2000)cParisdMagasins/AnnexeeP 8° 6331 aZPAY aexempb201301 aDEW 33701423nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210002400186326001500210434004600225434004400271434004100315437004100356606004700397606003900444676000800483710008400491801002100575856010000596856010800696955006600804955006300870957005700933972000900990992002200999992001601021039550117000000566020130319051832.01 a0338-4551 aFNSP108789 a0000005660 a19900101a19759999 ba0 afre aFR aagu 10aRevue française de gestion aPariscFNEGEd1975- aBimestriel 1aHommes et techniques (Puteaux)x0018-4381 1tFormation et gestion (Paris)x0765-7587 1tManagement France (Paris)x0542-4801 1aManagement France (Paris)x0542-4801 aGestion d'entrepriseyFrancexPériodiques aGestion d'entreprisexPériodiques a65002aFondation nationale pour l'enseignement de la gestion des entreprisesc(France) 3aFRbCCN0338-45514 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-francaise-de-gestion.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 4e étageeDEW 6501 bno. 1 (mai-1975) -....cParisdMagasins/AnnexeeP 4° 38391 b(1975) -(1985)cParisdMagasins/AnnexeeP Index 0502 aZPAY aGEO RA4.06 France aDEW 650-65800951cas0 2200253 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200008900148210002300237436004600260436005200306530008900358801003000447856014500477955005500622991002000677039210065000109327720130319051832.0 accn9021/3084 a0001093277 a19830101b188819 0frey0103 zz0 afre aFR ar aak 10aRevue française de l'étranger et des colonies et Exploration gazette géographique aPariscImpr. Chaix |tla Gazette géographique et l'exploration |tRevue française de l'étranger et des colonies00aRevue française de l'étranger et des colonies et Exploration gazette géographique 3aFRbAbesc20020116gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb413960740/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1890-1914)1 b(1887) -(1904)cParisdMagasins/AnnexeeP 8° 0673 aPériobTP02 P801047nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210005100191326001500242517000800257606003100265710003900296856009100335856010800426955007100534957005700605972000900662991001800671992003300689992001100722039228452000004226920130319051832.01 a0035-2942 aFNSP224063 a0000042269 a19900101a19709999 ba0 afre aFR aaga 10aRevue française de psychanalyse aPariscPresses universitaires de Franced1970- aBimestriel10aRFP aPsychanalysexPériodiques02aSociété psychanalytique de Paris4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue.php?ID_REVUE=RFP zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 34 no. 4 (jul-1970) -....cParisdMagasins/AnnexeeP 8° 29091 b(1926) -(2006)cParisdMagasins/AnnexeeP Index 0772 aZPAY aexempb201004 aGEO RS Sans aspect régional aDEW 1501495nas 2200397 i 450 001001000000002001100010005001700021011001400038035001300052035001500065100004100080101000800121102000700129105001800136110001600154200004200170210003700212326001500249606003600264606004400300676000800344710005800352711004800410801002100458856011000479856010800589856002600697856006700723955006700790955007000857955006900927957006700996972000901063992001601072992000901088039228460000000200920131220102150.01 a0035-2950 aFNSP7751 a0000002009 a19900101a19519999 fre ba0 afre aFR a 0  aag z 0 10aRevue française de science politique aPariscPresses de la FNSPd1951- aBimestriel aScience politiquexPériodiques aScience politiqueyFrancexPériodiques a32002aFondation nationale des sciences politiquesc(France)02aAssociation française de science politique 3aFRbCCN0035-29504 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-francaise-de-science-politique.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr/ zAccès libre au texte intégral du n°1, 1951 au n° 5-6, 20021 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bvol. 1 no. 1 (jan-1951) -....cParisdMagasins/AnnexeeP 8° 10091 bL'année en courscParisdBibliothèque de rechercheeP 8° 10091 b1951-1970 ; 1991-2000cParisdSalle d'actualitéeP Index 0190 aZCAD aDEW 320-321 aPBUL01483cas0 2200397 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101001800139102000700157105001800164106000600182110001600188200014500204207002700349210003800376326001500414517000900429606003700438676000800475712012700483801003000610801002300640801003000663802000700693856010700700856010800807955006600915955005900981992003301040992001201073130342084000115539320130319051832.01 a1966-6608 a127151850 aissn19666608 a0001155393 a20090113a20089999k 0frey0103 ba0 afredfredeng aFR ay  ar aaj 10aRevue française de socio-économief[Faculté des sciences économiques et sociales de l'Université des sciences et technologies de Lille] 0a01 (1er semest. 2008)- aPariscÉd. La Découverted2008- aSemestriel10aRFSE aEconomie politiquexPériodiques a30102aUniversité des sciences et technologies de LillebFaculté des sciences économiques et socialescVilleneuve-d'Ascq, Nord 3aFRbAbesc20090114gAFNOR 3aFRbISSNc20080601 3aFRbAbesc20080925gAFNOR a074 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-francaise-de-socio-economie.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3011 bno. 1 (2008) -....cParisdMagasins/AnnexeeP 8° 7062 aGEO RS Sans aspect régional aDEW 30101915nas 2200457 i 450 001001000000002001100010005001700021011001400038035001300052035001500065100004100080101000800121102000700129110001600136200003500152210004100187210002700228210003500255210003100290326001600321606002900337606003700366676000800403711005900411712007000470801002100540856010300561856010800664856009000772856010800862856004900970856010001019955006601119955006601185955006901251957008501320972000901405992002201414992001201436992000901448039228487000000222120131220102218.01 a0035-2969 aFNSP8018 a0000002221 a19900101a19609999 ba0 afre aFR aaha 10aRevue française de sociologie aPariscPresses de Sciences Pod2013- aGapcOphrysd1995-2012 aPariscÉd. du CNRSd1965-1994 aPariscJulliardd1960-1964 aTrimestriel aSociologiexPériodiques aSociologieyFrancexPériodiques a30102aCentre national de la recherche scientifiquec(France)02aInstitut de recherche sur les sociétés contemporainesc(France) 3aFRbCCN0035-29694 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-francaise-de-sociologie.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00352969.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr/listIssues.do?key=rfsoc zAccès libre au texte intégral à partir de 1960 à l'exception des années les plus récentes1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3011 bvol. 1 no. 1 (1960) -....cParisdMagasins/AnnexeeP 8° 17831 bL'année en courscParisdBibliothèque de rechercheeP 8° 17831 b(1960) -(1980) ; (1981) -(2000)cParisdBibliothèque de rechercheeP Index 0239 aZPAY aGEO RA4.06 France aDEW 301 aPBUL01973nas 2200445 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004300154207002700197210008800224326001800312326002700330421009500357421011700452430004300569606004500612607004600657676000800703710012400711711008300835801002100918856008400939856007601023856011001099856010801209955006601317955006701383972000901450991001801459992002201477992001601499992001201515039228509000000566620130319051832.01 a0035-2985 aFNSP108802 a0000005666 a19900101a19679999 ba0 afre aFR aahu 10aRevue française des affaires sociales 1avol. 21, no. 1 (1967)- aPariscMinistère du travail, de l'emploi et de la formation professionnelled1967- aAnnuelb2009- aTrimestrielb1967-2008 1aRevue française des affaires sociales. Cahier de jurisprudence. Emploi travailx0296-520801tRevue française des affaires sociales. Cahier de jurisprudence. Sécurité sociale aide sociale, ISSN 0296-5216 1aRevue française du travailx1153-6411 aMarché du travailyFrancexPériodiques aFrancexConditions socialesxPériodiques a36002aFrancebMinistère du travail, de l'emploi et de la formation professionnellebService des études et de la statistique02aFrancebMinistère de la solidarité, de la santé et de la protection sociale 3aFRbCCN0035-29854 uhttp://www.sante-sports.gouv.fr/revue-francaise-des-affaires-sociales,3716.html zContenu : sommaires depuis 1996 ; sélection de n°s en texte intégral4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-francaise-des-affaires-sociales.htm4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 4e étageeDEW 3601 bvol. 21 no. 1 (1967) -....cParisdMagasins/AnnexeeP 8° 0193 aZCAD aexempb201011 aGEO RA4.06 France aDEW 360-363 aDEW 33101154cas0 2200301 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200007200174210003800246517000800284530003800292606005400330702003700384710004400421801003000465856014500495955014300640991002000783991004900803037456520000108557720130319051832.0 a2015-0121 accn0102/6089 a0001085577 a19830101b18781928m y0frey0103 ba0 afre aFR a 0  aaza 0 10aRevue générale d'administrationfsous la dir. de M. Maurice Block aPariscBerger-Levraultd1878-192810aRGA00aRevue générale d'administration aDroit administratifyFrancexPériodiques2rameau 1aBlockbMauricef(1816-1901)465102aFrancebMinistère de l'intérieur4070 3aFRbAbesc20070321gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb32859773c/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1878-1928)1 b(1878) -(1928)w1892 (septembre-décembre)-1893 (janvier-avril)-1898 (mai, août)-1921 (mai-décembre)cParisdMagasins/AnnexeeP 8° 0475 aPériobTP01 P8 anumer0 (si de quoi compléter trous gallica)00980nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013110600060013811000160014420000510016020700250021121000250023632600160026160600380027767600080031580100210032385601450034495500670048995500530055697200090060999100360061899200120065403956603X000000566220130319051832.01 a0373-6156 aFNSP108791 a0000005662 a19900101a18949999 ba0 afre aFR ar aahu 10aRevue générale de droit international public 1avol. 1 no. 1 (1894)- aPariscPedoned1894- aTrimestriel aDroit internationalxPériodiques a341 3aFRbCCN0373-61564 uhttp://gallica.bnf.fr/ark:/12148/cb34378576f/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1894-1952)1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 3411 b(1894) -....cParisdMagasins/AnnexeeP 8° 0027 aZCAD anumer0 (complément de Gallica) aDEW 34100920nas 2200277 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000450015421000270019932600160022643000740024260600430031685600700035985601080042995500590053797200090059699200250060599200120063000393862X000018996420130319051832.01 a1273-3407 aFNSP701891 a0000189964 a19900101a19969999 ba0 afre aFR aaha 00aRevue générale du droit des assurances aPariscLextensod1996- aTrimestriel 1aRevue générale des assurances terrestres,x0035-3167 < P 8° 0361 > aAssurancexDroityFrancexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lextenso.com zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1996) -....cParisdMagasins/AnnexeeP 8° 0361 aZPAY aGEO RA4.06 France 01 aDEW 34600782nls 2200241 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001251350018001412000072001592100027002312300024002586060043002828560070003258560108003959920025005039920012005280000941458000094145820130319051832.0 aFNSP701891 a0000941458 a19900101a19959999 ba0 afre aFR aaha  adr 00aRevue générale du droit des assurancesb[Ressource électronique] aPariscLextensod1995- arevue électronique aAssurancexDroityFrancexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lextenso.com zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aGEO RA4.06 France 01 aDEW 34601255cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200002600179210003900205421004300244421006500287421004800352434004000400530004100440531003000481801003000511801002300541802000700564856014500571955018100716991002000897037486322000108558420130319051832.0 a0151-1882 accn0151-1882 aissn01511882 a0001085584 a19810121b18921939uuuy0frey0103 ba0 afre aFR ar aacu uu 13aLa Revue hebdomadaire aPariscE. Plon, Nourritd1892-1939 |tL'Instantané (Paris. 1897)x1764-7967 |tLe Supplément illustré de la Revue hebdomadairex1764-7991 |tCollection nouvelle de la France dramatique |tLe Monde moderne (Paris)x1764-798313aLa Revue hebdomadaireb(Paris. 1892) 0aRev. hebd.b(Paris, 1892) 3aFRbAbesc20070320gAFNOR 3aFRbISSNc20030523 a074 uhttp://gallica.bnf.fr/ark:/12148/cb34350607j/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1892-1938)1 b(1905) ; (1939)wn°27, 1907; n°16, 23 1908 ; 1910 ; 1912 (n°43, 46, 50), 1914 (août-décembre), 1919, 1920, 1921 (n°21), 1926 (n°8, 9)cParisdMagasins/AnnexeeP 8° 0480 aPériobTP01 P801324nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200002100160210005100181326001600232530002800248606002700276607003500303676000800338856019500346856014500541955006700686955006100753955004600814957010500860972000900965992001200974039228649000004231620130319051832.01 a0035-3264 aFNSP224165 a0000042316 a19900101a18769999 ba0 afre aFR ar aaha 10aRevue historique aPariscPresses universitaires de Franced1876- aTrimestriel 0aRevue historiquebParis aHistoirexPériodiques aFrancexHistoirexPériodiques a9094 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-historique.htm?zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po uhttp://gallica.bnf.fr/ark:/12148/cb34349205q/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1876-2000)1 bLes 3 dernières annéescParisd30, Salle 2e étage:eDEW 9091 bno. 195 (1945) -....cParisdMagasins/AnnexeeP 8° 00821 b(1876) -(1944)cParisdAnnexeeP 8° 00821 b1876/1880 ; 1896/1910 ; 1911/1931 ; 1931/1935 ; 1936/1950cParisdSalle d’actualitéeP Index 0076 aZPAY aDEW 90901369cas0 2200349 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109106000600127110001600133200009500149210004800244301005600292303005500348326001600403430004400419606003700463606003500500607005600535710007300591801003000664856008600694856012600780955006600906972000900972992002200981992001601003104550880000119859420130319051832.0 a0001198594 a20060706a19749999k y0frey50 ba0 afre aFR ay 0  ar aaha z 0 10aRevue historique des arméesfMinistère de la Défense. Service historique de la Défense aVincennescMinistère de la défensed1974- aDemande de numérotation ISSN en cours par le CR 28 aNotice rédigée à partir de no.4 publié en 1977 aTrimestriel 1tRevue historique de l'arméex0035-3299 aHistoire militairexPériodiques aGuerrexHistoirexPériodiques aFrancexPolitique militairexHistoirexPériodiques02aFrancebMinistère de la défensebService historique de la Défense 3aFRbAbesc20091116gAFNOR4 uhttp://www.servicehistorique.sga.defense.gouv.fr/Revue-historique-des-armees.html zContient les sommaires et résumés des n°s à partir du no. 256 (2009) et l'index des articles publiés de 1960 à 20051 bno. 258 (mars-2010) -....cParisdMagasins/AnnexeeP 4° 7288 aZPAY aGEO RA4.06 France aDEW 355-35900934nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005000139210005900189326001500248517000900263530005000272606002400322710006700346801002100413856005100434856004900485955005900534972000900593991001800602992001200620039719952000004234620130910162409.01 a0770-2310 aFNSP224248 a19900101a19789999 ba0 afre aBE aaju 10aRevue interdisciplinaire d'études juridiques aBruxellescFacultés universitaires Saint-Louisd1978- aSemestriel1 aRIEJ aRevue interdisciplinaire d'études juridiques aDroitxPériodiques02aSéminaire interdisciplinaire d'études juridiques (Bruxelles) 3aFRbCCN0770-23104 uhttp://www.fusl.ac.be/Files/General/RIEJ0.html zContenu : sommaires à partir du no.29, 19921 bno. 1 (1978) -....cParisdMagasins/AnnexeeP 8° 4268 aZPAY aexempb201106 aDEW 34001031cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200009200174210003300266326001800299430004900317606002800366710005900394801003000453801003000483802000700513856003900520856005700559955006400616972000900680992001600689040261859000073256920130319051832.01 a1254-4590 accn1254-4590 a0000732569 a19940427a19949999m z0frey0103 ba0 afre aFR a 0  aaia 0 10aRevue internationale d'éducation SèvresfCentre international d'études pédagogiques aSèvrescCIEPcDidierd1994- a3 n°s par an 1tEducation & pédagogies (Sèvres)x0998-4356 aEducationxPériodiques02aCentre international d'études pédagogiquesc(France) 3aFRbAbesc20041103gAFNOR 3aFRbAbesc20041103gAFNOR a074 uhttp://www.ciep.fr/ries/ries50.php zContenu : résumes des articles depuis le n°1, 19941 bno. 35 (avr-2004) -....cParisdMagasins/AnnexeeP 8° 6792 aZPAY aDEW 370-37901330nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200004300138207004100181210005400222326001600276430007100292517000900363606003300372676000800405712004000413801002100453856004400474856008600518856002600604856012300630955006600753955006400819957006400883972000900947992001200956039228754000003773120130319051832.01 a0035-3337 aFNSP209839 a0000037731 a19900101a19499999 ba0 afre aFR10aRevue internationale de droit comparé 1a1ère année, no 1/2 (jan-jun 1949)- aPariscSociété de législation comparéed1949- aTrimestriel 1aBulletin de la Société de législation comparéexISSN 1247-974810aRIDC aDroit comparéxPériodiques a34002aSociété de législation comparée 3aFRbCCN0035-33374 uhttp://www.legiscompare.com/index1.html zContenu : sommaires et résumés en français et en anglais des derniers numéros4 uhttp://www.persee.fr/ zContenu : accès libre au texte intégral des articles à partir de 1949 à l'exception des années les plus récentes1 bLes 3 dernières annéescParisd30, Salle 3e étageeDEW 3401 bno. 1 (jan-1949) - ....cParisdMagasins/AnnexeeP 8° 00301 b(1999) -(2008)cPariscParisdMagasins/AnnexeeP Index 0873 aZCAD aDEW 34001212nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004600139210003900185326001600224452006700240517000900307530004600316606003700362676000800399710005200407801002100459856011400480856010800594955006700702955006600769972000900835991001800844992001200862040133664000004235220131002162916.01 a1010-8831 aFNSP224257 a19900101a19869999 f ba0 afre aBE aahu 10aRevue internationale de droit économique aBruxellescDe Boeck-Wesmaeld1986- aTrimestriel 1tRevue internationale de droit économique (Online),x1782-15251 aRIDE aRevue internationale de droit économique aDroit des affairesxPériodiques a34602aAssociation internationale de droit économique 3aFRbCCN1010-88314 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-internationale-de-droit-economique.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 3461 bvol. 1 no. 1 (1986) -....cParisdMagasins/AnnexeeP 8° 5021 aZPAY aexempb201106 aDEW 34601082nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007600154210002700230326002200257326002700279510003800306606003100344710004700375801002100422856010900443856010800552955006900660972000900729991001800738992001200756013305360000004235520140110123046.01 a0223-5404 aFNSP224261 a0000042355 a19900101a19249999 y ba0 afre aFR aaju 10aRevue internationale de droit pénaldInternational review of penal law aToulousecErèsd1924- aSemestrielb1979- aTrimestrielb1924-197812aInternational review of penal law aDroit pénalxPériodiques02aAssociation internationale de droit pénal 3aFRbCCN0223-54044 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-internationale-de-droit-penal.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 17 no. 1/2 (1946) -....cParisdMagasins/AnnexeeP 8° 0051 aZPAY aexempb201011 aDEW 34501117nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006500139210002500204326001600229451006100245530006500306606004800371710009800419801002100517856009300538856007600631955006600707972000900773992002100782992001200803039375854000004810420130930110548.01 a0303-8947 aFNSP242167 a19900101a19749999 f ba0 afre aAT aahu 10aRevue internationale de la vérification des comptes publics aWiencINTOSAId1974- aTrimestriel 1aInternational journal of government auditing,x0047-072410aRevue internationale de la vérification des comptes publics aFinances publiquesxContrôlexPériodiques02aOrganisation internationale des institutions supérieures de contrôle des finances publiques 3aFRbCCN0303-89474 uhttp://www.intosai.org/fr/sur-lintosai/international-journal-of-government-auditing.html zContenu : accès libre au texte intégral depuis le vol. 26, no 1, 19991 bvol. 2 no. 1 (1975) -....cParisdMagasins/AnnexeeP 4° 3663 aZGRA aGEO RQ Universel aDEW 33601239nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004800154210003900202326002300241326002800264606005300292606005800345676000800403856011600411856010800527955006700635955006900702955006600771972000900837991001800846992002100864992001600885036841498000012976920131220102510.01 a1370-0731 aFNSP528066 a0000129769 a19940613a19949999 ba0 afre aBE aaha 00aRevue internationale de politique comparée aBruxellescDe Boeck-Wesmaeld1994- aTrimestrielb2003- a3 nos par anb1994-2002 aInstitutions politiques comparéesxPériodiques aScience politiquexMéthode comparativexPériodiques a3204 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-internationale-de-politique-comparee.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bL'année en courscParisdBibliothèque de rechercheeP 8° 60391 bvol. 1 no. 1 (1994) -....cParisdMagasins/AnnexeeP 8° 6039 aZCAD aexempb201103 aGEO RQ Universel aDEW 320-32100857nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004700154210002900201326001600230430006800246606003700314712005600351801002100407856004300428955008300471972000900554992001600563039560759000000566320130319051832.01 a0379-0312 aFNSP108792 a0000005663 a19900101a19679999 f ba0 afre aCH aahu 10aRevue internationale de sécurité sociale aGenèvecAISSd1967-2007 aTrimestriel 1aBulletin de l' Association internationale de sécurité sociale aSécurité socialexPériodiques02aAssociation internationale de la sécurité sociale 3aFRbCCN0379-03124 uhttp://www.issa.int/fren/publ/revf.htm1 bvol. 1 no. 1 (1967) - vol. 60 no. 4 (2007)cParisdMagasins/AnnexeeP 8° 1031 aZPAY aDEW 360-36301312nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154207014800193210002800341300008100369326001700450510003800467710004500505856005700550856005300607856010900660856010800769955007000877972000900947991001800956992001200974039581837000023977520130319051832.01 a0390-6701 aFNSP845591 a0000239775 a19900101a18939999 ba0 aeng aGB aaia 10aRevue internationale de sociologie 0avol. 1 no 1(1893)-vol. 47 no 9/12 (1939) ; [2e sér., vol.1] no 1(1954)-vol.21, no 3 (1985) ; n.s. no 1(1987)-no 3 (1994) ; vol. 6, no 1(1996)- aAbingdoncCarfaxd1893- aTitre parallèle en anglais à partir de 1964, texte en différentes langues a3 nos par an10aInternational review of sociology02aAssociation internationale de sociologie4 uhttp://www.tandf.co.uk/journals/carfax/03906701.html zContenu : sommaires depuis le vol. 6, n°1, 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713427609db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 7 no. 1 (mar-1997) -....cParisdMagasins/AnnexeeP 8° 6380 aZSAB aexempb201211 aDEW 30101350cas0 2200397 450 001001000000002001100010005001700021011001400038035004000052035001700092035001500109100004100124101000800165102000700173105001800180106000600198110001600204200005200220207004900272210002700321326001500348440004500363517005300408606005300461606002600514801003000540801002900570801002300599802000700622856003100629856004900660955006900709955012700778992001400905992003300919120069644000115366120130319051832.01 a1959-6758 aFRBNF411610670000004zFRBNF41161067 aissn19596758 a0001153661 a20071217b20072009k y0frey0103 ba1 afre aFR a z 0 y  ar aagu uu 13aLa Revue internationale des livres & des idées 0aNo 1 (sept./oct. 2007)-no 14 (nov/déc 2009) aPariscRILId2007-2009 aBimestriel 1tRdl, la revue des livres, ISSN 2118-570013aLa Revue internationale des livres et des idées aLittératurexHistoire et critiquexPériodiques aCulturexPériodiques 3aFRbAbesc20080918gAFNOR 0aFRbBNFc20071124gAFNOR 3aFRbISSNc20080909 a074 uhttp://revuedeslivres.net/ zContient les sommaires depuis le no. 1, 20071 bL'année en courscParisd27, Salle Rez-de-chausséeeP F° 05561 bno 1 (sep/oct-2007) ; no 3 (jan/fev-2008) ; no 6 (jul/aou-2008) -no 14 (nov/déc 2009)cParisdMagasins/AnnexeeP F° 0556 aDEW 80-89 aGEO RS Sans aspect régional01482nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200005400138210007400192326001600266434005300282451006300335606003700398606004200435676000800477710005600485712005600541801002100597856005000618856007200668856008000740856010800820955006700928955006700995972000901062992002101071992001601092039376664000004266020130625142731.01 a0773-2961 aFNSP224870 a0000042660 a19900101a19579999 ba0 afre aBE10aRevue internationale des sciences administratives aBruxellescInstitut international des sciences administrativesd1928- aTrimestriel 1tProgrès de l'administration publiquex0478-4820 1aInternational review of administrative sciencesx0020-8523 aPolitique publiquexPériodiques aAdministration publiquexPériodiques a35102aInstitut international des sciences administratives02aInstitut international des sciences administratives 3aFRbCCN7104/59024 uhttp://www.iiasiisa.be/iisa/firisa/firisa.htm zContenu : les sommaires de la revue depuis le volume 64, n°1, 19984 uhttp://www.cairn.info/revue-internationale-des-sciences-administratives.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3511 bvol. 22 no. 1 (1957) -....cParisdMagasins/AnnexeeP 4° 1490 aZSAB aGEO RQ Universel aDEW 350-35401374aas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005500139210003900194210003500233326001600268430006100284451005300345606003600398676000800434710001100442801002100453856003200474856008600506856010900592856010600701955006600807955006700873972000900940991001800949992002100967992001200988013307193000004266420130626175424.01 a0304-3037 aFNSP224881 a19900101a19599999 f ba0 afre aFR aahu 10aRevue internationale des sciences socialesfUnesco aToulouse‎cÉd. Érès‎d1986- aParis‎cUnesco‎d1959-1985 aTrimestriel 1tBulletin international des sciences sociales,x1011-114X 1aInternational social science journal,x0020-8701 aSciences socialesxPériodiques a30002aUnesco 3aFRbCCN0304-30374 uhttp://www.unesco.org/issj/ zContenu : texte intégral (pour version en espagnol) depuis le n°149, sept. 19964 uhttps://acces-distant.sciences-po.fr/http/www.cairn.info/revue-internationale-des-sciences-sociales.htm? zAccès au texte intégral réservé aux lecteurs inscrits à la Bibliothèque, via Cairn, depuis 20011 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3001 bvol. 11 no. 1 (1959) -....cParisdMagasins/AnnexeeP 8° 0324 aZPAY aexempb201101 aGEO RQ Universel aDEW 30001408nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200006900160207003200229210002800261210002900289326002300318326002500341606003800366676000800404710004800412801002100460856002900481856005500510856014500565955006700710955005300777957007300830972000900903991001800912991003500930992002100965992001200986039556824000000567320131015144629.01 a0378-5599 aFNSP108826 a0000005673 a19900101a19219999 f ba0 afre aCH ar aahu 10aRevue internationale du travailfBureau international du travail 1avol. 1, no. 1 (janv. 1921)- aGenèvecBITd1921-2006 aOxfordcBlackwelld2007- aTrimestrielb1997- aBimensuelb1921-1996 aEconomie du travailxPériodiques a33102aOrganisation internationale du travail4070 3aFRbCCN0378-55994 uhttp://www.ilo.org/revue zContenu : sommaires depuis le vol. 135, n°2, 19964 uhttp://gallica.bnf.fr/ark:/12148/cb34470464d/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1921-1925)1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3311 b(1921) -....cParisdMagasins/AnnexeeP 8° 01881 bvol. 31 (1935) -vol. 73 (1956)cParisdMagasins/AnnexeeP Index 0468 aZECH aexempb201011 anumer0 (complément gallica ?) aGEO RQ Universel aDEW 33101277nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210003100198210002900229210003400258326001600292430005800308606003200366606004400398676000800442710009400450856010900544856010800653955006700761955006000828972000900888991001800897992001200915004386892000024427520130319051832.01 a1287-1672 aFNSP858162 a0000244275 a19900101a19989999 ba0 afre aFR aaha 13aLa Revue internationale et stratégique aPariscArmand Colind2010- aPariscDallozd2005-2009 aPariscIRIS pressed1998-2004 aTrimestriel 1aRelations internationales et stratégiquesx1157-5417 aGéopolitiquexPériodiques aRelations internationalesxPériodiques a32702aInstitut de relations internationales et stratégiquesc(Villetaneuse, Seine-Saint-Denis)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-internationale-et-strategique.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bno. 29 (1998) -....cParisdMagasins/AnnexeeP 8° 5703 aZCAD aexempb201111 aDEW 32700960nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210005500193326001600248606003900264676000800303801002100311856004700332856004500379955006700424955005900491957005700550972000900607991001800616992001200634039581543000004267220130319051832.01 a0397-0299 aFNSP224896 a0000042672 a19900101a19769999 ba0 afre aFR aahu 10aRevue juridique de l'environnement aLimogescRevue juridique de l'environnementd1976- aTrimestriel aEnvironnementxDroitxPériodiques a333 3aFRbCCN0397-02994 uhttp://www-sfde.u-strasbg.fr/sommaires.htm zContenu : sommaires depuis le n°1, 20021 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3331 bno. 1 (1976) -....cParisdMagasins/AnnexeeP 8° 39581 b(1976) -(1995)cParisdMagasins/AnnexeeP Index 0683 aZPAY aexempb201001 aDEW 34400903nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000067001502100034002172300024002513260005002756060044002806060041003248010013003658560085003788560108004639550005005719920025005769920012006010000969202000096920220130319051832.0 a0000969202 a a19999999k fre 01 ba0 afre aFR ar aaz z  adr 10aRevue juridique personnes & familleb[Ressource électronique] aPariscLamyline Reflexc1999- aRevue électronique a aPersonnes (droit)yFrancexPériodiques aFamillexDroityFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 34600858nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000071001502100034002212300024002553260005002796060048002848010013003328560085003458560108004309550005005389920025005439920012005680000969205000096920520130319051832.0 a0000969205 a a20049999k fre 01 ba0 afre aFR ar aaz z  adr 10aRevue Lamy collectivités territorialesb[Ressource électronique] aPariscLamyline Reflexc2004- aRevue électronique a aAdministration localeyFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 35101392cas0 2200397 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147105001800154106000600172110001600178200006400194207001900258210002300277326001600300430012600316452005600442517001600498517003800514606003700552801003000589801002300619801003000642802000700672856008500679856010800764955010100872972000900973992001200982082391165000079416820130319051832.0 a1770-9377 a090055748 aissn17709377 a0000794168 a20041210a20049999k y0frey0103 ba0 afre aFR ay  ar aahu uu 10aRevue Lamy de la concurrenceedroit, économie, régulation 0ano. 1 (2004) - aPariscLamyd2004- aTrimestriel 1tAvis de la Commission de la concurrence et de la Commission technique des ententes et des positions dominantesx1283-8691 1tRevue Lamy de la concurrence (Cédérom)x1956-189X10aConcurrence10aRLC. Revue Lamy de la concurrence aConcurrencexDroitxPériodiques 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20081014 3aFRbAbesc20050112gAFNOR a074 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (nov-2004) - no. 8 (sep-2006) ; no.19 (avr-2009) -....cParisdMagasins/AnnexeeP 4° 7070 aZPAY aDEW 34600831nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000054001502100034002042300024002383260005002626060038002678010013003058560085003188560108004039550005005119920025005169920012005410000969204000096920420130319051832.0 a0000969204 a a20049999k fre 01 ba0 afre aFR ar aaz z  adr 10aRevue Lamy droit civilb[Ressource électronique] aPariscLamyline Reflexc2004- aRevue électronique a aDroit civilyFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/acces.jsp zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 34600881nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000065001502100034002152300024002493260005002736060054002788010013003328560112003458560108004579550005005659920021005709920012005910000969207000096920720130319051832.0 a0000969207 a a20059999k fre 01 ba0 afre aFR ar aaz z  adr 10aRevue Lamy droit de l'immatérielb[Ressource électronique] aPariscLamyline Reflexc2005- aRevue électronique a aInvestissements immatérielsxDroitxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lamylinereflex.fr/lamy/AccesBis.htm?acces=KoEjMqEjBeKq zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RQ Universel aDEW 34001710cas0 2200421 450 00100100000000200110001000500170002101100250003803500140006303500170007703500170009403500150011110000410012610100080016710200070017510600060018211000160018820000190020420701710022321000560039430401010045042100460055142100470059742100660064443000430071044700450075344700320079844700420083053000280087253100250090071000490092580100300097480100230100480200070102785601450103495500890117999100200126803787585X000108413220130319051832.0 a0335-380Xy0373-3688 a073787930 accn0335-380X aissn0335380X a0001084132 a19850608b18961971uuuy0frey0103 ba0 afre aFR ar aafu uu 10aRevue maritime 0aTome 129, n °415 (1896, avr.)-tome 202, n °633 (1914, sept./déc.) ; N.s., n °1 (1920, janv.)-n °236 (1939, août) ; N.s., n °1 (1946, mai)-n °293 (1971, déc.) aPariscLibrairie militaire de L. Baudoind1896-1971 aLe titre et la numérotation sont repris en 1974 par la "Revue maritime (1974)" = ISSN 0335-3796 |tBulletin des pêches maritimesx1245-978X |tBulletin de la marine marchandex1245-9798 |tBulletin de la navigation et des pêches maritimesx1245-9801 1tRevue maritime et colonialex1245-9755 1tForces aériennes françaisesx0015-6965 1tL'Armée (Paris)x0004-2234 1tForces armées françaisesx0338-351210aRevue maritimeb(Paris) 0aRev. marit.b(Paris)01aFrancebService historique de la marine4070 3aFRbAbesc20070212gAFNOR 3aFRbISSNc20030523 a074 uhttp://gallica.bnf.fr/ark:/12148/cb343749904/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1896-1914)1 b(1896) -(1919) ; (1920) -(1939) ; (1946) -(1965)cParisdMagasins/AnnexeeP 8° 0294 aPériobTP01 P801166cas0 2200361 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164106000600171110001600177200003200193210004700225326001000272421004600282430004600328440003800374530003200412531002300444710005700467801003000524801002300554802000700577856014500584955005500729991002000784038752719000108416420130319051832.0 a1245-9755 a070628920 accn1245-9755 aissn12459755 a0001084164 a19950421b18611896uuuy0frey0103 ba0 afre aFR ar aafu uu 10aRevue maritime et coloniale aPariscLibrairie de L. Hachetted1861-1896 aMens. |tBulletin des pêches maritimesx1245-978X 1tRevue algérienne et colonialex1245-9763 1tRevue maritime (Paris)x0335-380X00aRevue maritime et coloniale 0aRev. marit. colon.02aFrancebMinistère de la marine et des colonies4070 3aFRbAbesc20060724gAFNOR 3aFRbISSNc20030203 a074 uhttp://gallica.bnf.fr/ark:/12148/cb32860483w/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1861-1896)1 b(1872) -(1896)cParisdMagasins/AnnexeeP 8° 0294 aPériobTP01 P801155nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005500163207003100218210005600249326001200305430004400317517002900361530002700390606004400417606003300461710004600494801001300540856008500553856003700638955007500675972000900750992002200759992001200781079535240000059499620130319051832.01 a1767-848X a0000594996 a b20042009 fre 01 ba0 afre aFR a 0  ar aaf z 0 10aRevue mensuellefAutorité des marchés financiers 1ano. 1( 2004)-no. 54 (2009) aPariscAutorité des marchés financiersd2004-2009 aMensuel 1aBulletin mensuel - COB,xISSN 0999-647810aRevue mensuelle de l'AMF10aRevue mensuelleb(AMF) aMarché financieryFrancexPériodiques aBourseyFrancexPériodiques02aFrancebAutorité des marchés financiers 0aFRbFNSP uhttp://www.amf-france.org/affiche_plan.asp?IdSec=6&IdRub=143&IdPlan=216&Id_Tab=0 zAccès libre au texte intégral.1 bno. 1 (mar-2004)-no. 54 (jan-2009)cParisdMagasins/AnnexeeP 4° 5414 aZPAY aGEO RA4.06 France aDEW 33200811nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210003700173326001200210606004400222607004700266676000800313801002100321856003300342955007100375972000900446991001800455992002400473992001200497038786974000004271920140109161348.01 a0035-3809 aFNSP225221 a0000042719 a19900101a19459999 ba0 afre aBE aafu 10aRevue nouvelle aBruxellescRevue nouvelled1945- aMensuel aRelations internationalesxPériodiques aBelgiquexVie intellectuellexPériodiques a001 3aFRbCCN0035-38094 uhttp://www.revuenouvelle.be/1 bvol. 13 no. 1 (jan-1951) -....cParisdMagasins/AnnexeeP 8° 1047 aZECH aexempb201201 aGEO RA4.04 Belgique aDEW 00101113nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200005500160210005100215326001600266606003800282606003000320856012700350856014500477955007000622957007400692972000900766992002200775992001400797039228967000004791820130319051832.01 a0035-3833 aFNSP241591 a0000047918 a19900101a18769999 ba0 afre aFR ar aaha 10aRevue philosophique de la France et de l'étranger aPariscPresses universitaires de Franced1876- aTrimestriel aPhilosophieyFrancexPériodiques aPhilosophiexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-philosophique.htm?zAccès libre au texte intégral.4 uhttp://gallica.bnf.fr/ark:/12148/cb34349223n/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1876-1940)1 bvol. 1 no. 1 (jan-1876) -....cParisdMagasins/AnnexeeP 8° 02461 b(1876) -(1905) ; (1906) -(1912)cParisdMagasins/AnnexeeP Index 0028 aZPAY aGEO RA4.06 France aDEW 10-1401653cas0 2200433 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200003800197207011500235210003900350326001200389421001300401430007800414434003900492440005200531517001600583530005300599606007400652606007200726607006600798607006400864676000800928801003000936801002300966802000700989856013300996955007001129991002001199037457861000110936820130319051832.0 a2017-6643 accn0103/5320 aissn20176643 a0001109368 a19830101b18711933uuuy0frey0103 ba0 afre aFR ay  ar aafa uu 13aLa Revue politique et littéraire 0a2e s., I (1871)-XIX (1880)a3e s., I (1881)-LII (1893)a4e s., I (1904)-XX (1908)a5e s., I (1909)-LXXI (1933) aPariscGermer Baillèred1871-1933 aMensuel 1tCamarade 1tRevue des cours littéraires de la France et de l'étranger...x2017-6651 1tRevue des conférences et des arts 1tRevue bleue politique et littérairex2017-663510aRevue bleue13aLa Revue politique et littéraireb(Paris. 1871) aLittératurexHistoire et critiquez19e sièclexPériodiques2rameau aLittératurexHistoire et critiquez1900-1945xPériodiques2rameau aFrancexVie intellectuellez19e sièclexPériodiques2rameau aFrancexVie intellectuellez1900-1945xPériodiques2rameau a944 3aFRbAbesc20070823gAFNOR 3aFRbISSNc20070808 a004 uhttp://gallica.bnf.fr/ark:/12148/cb32861147f/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 bvol. 1 (1871) -vol. 71 (1933)cParisdMagasins/AnnexeeP 4° 0588 aPériobTP01 P401182nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200003700160207002900197210002400226326001600250517000800266607004500274607005200319676000800371801002100379856014500400955006700545955007000612957007400682972000900756991001800765992002500783992001200808045328307000000569320140113094212.01 a0035-385X aFNSP108879 a0000005693 a19900101a18949999 ba0 afre aFR ar aagu 10aRevue politique et parlementaire 1avol. 1 no. 1 (jul-1894)- aPariscColind1894- aTrimestriel10aRPP aFrancexVie intellectuellexPériodiques aFrancexPolitique et gouvernementxPériodiques a320 3aFRbCCN0035-385X4 uhttp://gallica.bnf.fr/ark:/12148/cb328611494/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1894-1940)1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 b(1894) -(1940) ; (1945) -....cParisdMagasins/AnnexeeP 8° 02401 b(1894) -(1933) ; (1934) -(1945)cParisdMagasins/AnnexeeP Index 0079 aZCAD aexempb201011 aGEO RA4.06 France 01 aDEW 32000912nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000062001502070047002122100005002592300024002646060043002886060046003318010013003778560082003908560108004729550005005809920012005859920025005970001147911000114791120130319051832.0 a0001147911 a a20049999k fre 01 ba0 afre aFR ar aaz z  adr 10aRevue Propriété industrielleb[Ressource électronique] 1aParis :$cLexisNexis Jurisclasseur :$c2004- a aRevue électronique aPropriété industriellexPériodiques aBrevets d'inventionyFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.com/fr/droit/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aDEW 340 aGEO RA4.06 France 0100946cas0 2200277 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119105001800126106000600144110001600150200007100166207002200237210002400259437005600283607005900339801003000398801003000428856011800458955008000576992001200656039167461000104508520130319051833.0 accn7136/9031 a0001045085 a19950710b18481848 0frey0103 ba0 afre aFR a 0  ar aauu 0 10aRevue rétrospective ou Archives secrètes du dernier gouvernement 0a1848 (n°1-32/33) aPariscPaulind1848 1tRevue rétrospective ou bibliothèque historique... aFrancexpolitique et gouvernementz1830-1848xArchives 3aFRbAbesc20060522gAFNOR 3aFRbAbesc20060522gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/bpt6k94732b/f3zAccès libre au texte intégral. Document numérisé sur Gallica1 bno. 1 (1848)-no. 31 (1848)cParisdMagasins/AnnexeeP 4° 7151zvol. relié aDEW 32000951nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101001300123102000700136110001600143200003000159210006700189326001500256607003700271710002100308801002100329830007400350856004500424856003600469955006700505972000900572991001800581992002400599992001400623039648656000004813720130319051833.01 a0556-8072 aFNSP242244 a0000048137 a19900101a19629999 ba0 afreaeng aRO aaju 10aRevue roumaine d'histoire aBucuresticEd. Academiei Republicii socialiste Româniad1962- aSemestriel aRoumaniexHistoirexPériodiques02aAcademia româna 3aFRbCCN0556-8072 aVol. 1, no 1, 1962 ---> vol. 23, no 4, 1984 collection donnée au CTL4 uhttp://www.ear.ro/3brevist/rv18/rv18.htm zAccès libre au texte intégral1 bvol. 24 no. 1 (1985) -....cParisdMagasins/AnnexeeP 8° 2395 aZGRA aexempb201203 aGEO RA8.13 Roumanie aDEW 949.800921nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210004400188326001600232430005600248606004000304606003000344710002100374856004500395856003600440955008700476991001800563992002400581992001400605036555096000005834420130319051833.01 a1220-5400 aFNSP269944 a0000058344 a19900101a19919999 ba0 amul aRO aaha 10aRevue roumaine de philosophie aBucuresticEd. Academiei româned1991- aTrimestriel 1aRevue roumaine de philosophie et logiquex1220-5486 aPhilosophieyRoumaniexPériodiques aPhilosophiexPériodiques02aAcademia româna4 uhttp://www.ear.ro/3brevist/rv75/rv75.htm zAccès libre au texte intégral1 bvol. 35 no. 1/2 (1991) -vol. 40 no. 3/4 (1996)cParisdMagasins/AnnexeeP 8° 2168 aexempb201203 aGEO RA8.13 Roumanie aDEW 10-1401104nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000730015421000440022732600180027132600260028943000860031551700290040160700500043060700520048071000210053285600450055385600360059895500670063497200090070199100180071099200240072899200140075203655507X000009032220130319051833.01 a1220-5397 aFNSP397951 a0000090322 a19900101a19899999 ba0 amul aRO aaja 10aRevue roumaine des sciences économiquesd= Romanian economic review aBucuresticEd. Academiei româned1989- aAnnuelb2004- aSemestrielb1989-2003 1aRevue roumaine des sciences sociales. Série des sciences économiquesx0035-404X10aRomanian economic review aRoumaniexPolitique économiquexPériodiques aRoumaniexConditions économiquesxPériodiques02aAcademia româna4 uhttp://www.ear.ro/3brevist/rv68/rv68.htm zAccès libre au texte intégral1 btome 33 no. 2 (1989) -....cParisdMagasins/AnnexeeP 8° 2504 aZGRA aexempb201203 aGEO RA8.13 Roumanie aDEW 338.901280cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200010500179210002900284434005100313440005100364517005100415530003900466710004100505711003600546712005100582801003000633801002300663802000700686856014500693955007200838991002000910037447874000108412120130319051833.0 a0035-4139 accn0035-4139 aissn00354139 a0001084121 a19890308b18851973uuuy0frey0103 ba0 afre aFR ar aafu uu 13aLa Revue socialistefEditée par le Parti socialiste et le Cercle d'études socialistes Jean-Jaurès aParisc[s.n.]d1885-1973 |tLa Revue syndicaliste (Paris. 1905)x1246-0001 1tLa Nouvelle revue socialiste (1974)x0222-428310aRevue socialiste, syndicaliste et coopérative13aLa Revue socialisteb(Paris. 1885)02aParti socialiste SFIOc(France)407002aParti socialistec(France)407002aCercle d'études socialistes Jean-Jaurès4340 3aFRbAbesc20070423gAFNOR 3aFRbISSNc20030523 a074 uhttp://gallica.bnf.fr/ark:/12148/cb32861464v/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1880-1914)1 b(1897) -(1913) ; (1946) -(1973)cParisdMagasins/AnnexeeP 8° 0242 aPériobTP01 P801172nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004600163207002800209210004000237326001600277430004800293517000900341601005700350606003600407676001100443801001300454856002400467856006800491955007000559955007200629957008800701972000900789992001200798039738264000057605320130319051833.01 a0777-3579 a0000576053 a a19909999k fre ba0 afre aBE a 0  ar aah z 0 10aRevue trimestrielle des droits de l'homme 1ano. 1 (1990, janvier) - aBruxellescNemesiscBruylantd1990- aTrimestriel 1tRevue des droits de l'hommexISSN 0035-198910aRTDH02aCour européenne des droits de l'hommexPériodiques aDroits de l'hommexPériodiques a341.48 0aFRbFNSP uhttp://www.rtdh.eu/ zContient : tables et sommaires de la revue depuis le n° 1,19901 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 341.481 bvol. 12 no. 45 (jan-2001) -....cParisdMagasins/AnnexeeP 8° 67211 bTable cumulative des matières 1990-2010cParisd30, Salle 3e étage:eP Index 0874 aZPAY aDEW 32300989nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003300163210004200196326001200238430003700250532004600287606003900333676000800372801001300380856002800393856005600421856004700477955008100524972000900605992002500614992001200639059383437000042192720130530155653.01 a1630-3873 a0000421927 a a20019999k fre ba0 afre aFR a 0  ar aaf z 0 10aRF social.iCahier juridique aPariscGroupe Revue Fiduciaired2001- aMensuel 1tLégi social. Dossierx1271-181010aRevue fiduciaire social. Cahier juridique aDroit socialyFrancexPériodiques a344 0aFRbFNSP uhttp://www.RFSocial.com4 uhttp://rfsocial.grouperf.com/catalogue/revue/00002/ zContenu : sommaires depuis le no. 49, 20061 bno. 1 (sep-2001) -no. 126 (jan-2013)cParisdMagasins/AnnexeeP 8° 3190 bis aZPAY aGEO RA4.06 France 01 aDEW 34400936nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003500163210004200198326001200240430004000252532004800292606003900340676000800379801001300387856002800400955007700428957005900505972000900564992002500573992001200598059383054000042192620130530155407.01 a1630-3865 a0000421926 a a20019999k fre ba0 afre aFR a 0  ar aaf z 0 10aRF social.iRevue d'actualité aPariscGroupe Revue Fiduciaired2001- aMensuel 1tLégi social. Actualitéx1271-180210aRevue fiduciaire social. Revue d'actualité aDroit socialyFrancexPériodiques a344 0aFRbFNSP uhttp://www.RFSocial.com1 bno. 1 (sep-2001)- no. 126 (jan-2013)cParisdMagasins/AnnexeeP 8° 62701 b2001-2008cParisdSalle des périodiqueseP Index 0801 aZPAY aGEO RA4.06 France 01 aDEW 34401195cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157110001600175200003000191207003300221210006100254326001600315517003200331517003900363606003600402606003800438710007300476801003000549801002300579802000700602856006500609856005400674955007000728992001200798992001100810044760515000113276320130319051833.01 a1094-8392 accn1094-8392 aissn10948392 a0001132763 a20000406a19989999k b1frey0103 ba0 aeng aUS ay 0  aaha 0uu 10aRhetoric & public affairs 0aVol. 1, no. 1 (spring 1998)- aEast Lansing, MIcMichigan State University Pressd1998- aTrimestriel10aRhetoric and public affairs10aRhetoric and public affairs series aLangage politiquexPériodiques aEloquence politiquexPériodiques10aBaylor university (Waco, Tex.)bDepartement of communication studies 3aFRbAbesc20080128gAFNOR 3aFRbISSNc20051021 a014 uhttp://msupress.msu.edu/journals/rpa/index.php?Page=contents zContenu : sommaires depuis le vol. 1 no. 1 (1998)1 bvol. 9 no. 1 (pri-2006) -....cParisdMagasins/AnnexeeP 8° 7014 aDEW 320 aDEW 4101172cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200003200162210003000194210005600224320002500280326002400305326002200329606003900351606004400390710005500434801003000489801003000519802000700549856007600556856006800632955005900700972000900759991001800768992001200786036253286000079414020130319051833.01 a1120-9526 accn1120-9526 a0000794140 a19920323a19869999 0frey0103 ba0 aita aIT ar aai 10aRicerche di storia politica aBolognacIl Mulinod1998- aBolognacCentro ricerche storia politicad1986-1996 aN'a pas paru en 1997 a3 nos par anb1998- aAnnuelb1986-1996 aHistoire universellexPériodiques aRelations internationalesxPériodiques02aCentro ricerche storia politicac(Bologne, Italie) 3aFRbAbesc20041004gAFNOR 3aFRbAbesc20041004gAFNOR a0D4 uhttp://www.mulino.it/edizioni/riviste/scheda_rivista.php?issn=0394-7297 zSommaires et résumés en anglais des n°s depuis le n°1, 19981 bno. 1 (1986) -....cParisdMagasins/AnnexeeP 8° 6816 aZGRA aexempb201301 aDEW 90901015nas 2200313 i 450 0010010000000020011000100050017000210110014000380350015000520350015000671000041000821010008001231020007001311100016001382000040001542070023001942100026002173260016002435170012002595170031002715300019003026060028003218560081003498560050004309550063004809570133005439720009006769920016006851152-9253000001759520140114101318.01 a1152-9253 aFNSP148053 a0000017595 a19901115a19909999 ba0 afre aFR aaha 10aRisqueseles cahiers de l'assurance 1ano 1 (1990, juin)- aPariscRisquesd1990- aTrimestriel10aRisques10aLes Cahiers de l'assurance00aRisquesbParis aAssurancexPériodiques4 uhttp://www.ffsa.fr/webffsa/webffsa.nsf/html/EB1862BCE6FCA967C1256DB000562301 zContenu : sommaires depuis le n°1, juin 19901 bno. 1 (jun-1990) -....cParisdMagasins/AnnexeeP 4° 59561 bno. 1 (1990) -no. 20 (1994)zMots clefs des textes publiés ; no. 25 (1996) -no. 30 (1997)cParisdMagasins/AnnexeeP Index 0747 aZPAY aDEW 360-36301097cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200003900174207003000213210003400243326001500277517004000292530003900332531002800371801003000399801002300429801003000452801002300482802000700505856008000512856004600592955007600638972000900714992001200723075929996000074574520130319051834.01 a1760-2009 aissn17602009 a0000745745 a20040115b20032005uuuy0frey0103 ba0 afre aFR ay  aaju uu 10aRisques & management international 0ano. 1 (2003)-no. 4 (2005) aPariscL'Harmattand2003-2005 aSemestriel10aRisques et management international00aRisques & management international 0aRisques management int. 3aFRbAbesc20081203gAFNOR 3aFRbISSNc20081014 3aFRbAbesc20041011gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.editions-harmattan.fr/index.asp?navig=catalogue&obj=revue&no=1004 zContenu : sommaires depuis le no. 1 ,20031 bno. 1 (mai-2003) - no. 4 (sep-2005)cParisdMagasins/AnnexeeP 8° 6811 aZPAY aDEW 65000736nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001200154210002600166326001700192606002900209607002500238801002100263856002800284856004300312955006600355992002500421992001200446039229092000004322720130319051834.01 a0035-5666 aFNSP226715 a0000043227 a19900101a19519999 ba0 afre aFR aa u 10aRivarol aPariscRivarold1951- aHebdomadaire aActualitéxPériodiques aFrancexPériodiques 3aFRbCCN0035-56664 uhttp://www.rivarol.com/ zcontenu : sommaire du dernier numéro.1 bno. 1 (18 jan-1951) -....cParisdMagasins/AnnexeeP F° 1182 aGEO RA4.06 France 01 aDEW 05001000nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004500154210006100199326001600260606004400276801002100320856005200341856006900393955010200462957013700564972000900701992001200710038788225000004309220130319051834.01 a0035-6611 aFNSP226232 a0000043092 a19900101a19349999 ba0 aita aIT aahu 10aRivista di studi politici internazionali aFirenzecRivista di studi politici internazionalid1934- aTrimestriel aRelations internationalesxPériodiques 3aFRbCCN0035-66114 uhttp://padis2.uniroma1.it:81/ojs/index.php/rspi4 zContenu : sommaires et résumés depuis le Vol. 69, no 2 , 2002,1 bvol. 1 no. 1/2 (jan/jun-1934) -vol. 72 no. 288 (oct/dec-2005)cParisdMagasins/AnnexeeP 8° 00041 b(1934) -(1983)cParisdMagasins/AnnexeeP Index 0561zvol. 51 (1984) -vol. 60 (1993): se trouve dans le vol. 61 no. 1 (jan/mar-1994) aZSAB aDEW 32701009nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154210002700192326001600219437002800235606007700263607005600340710006400396856006400460856004500524955008400569991001800653992002200671992001400693036253308000009349020130319051834.01 a1120-9534 aFNSP411978 a0000093490 a19900101a19879999 ba0 aita aIT aaha 10aRivista economica del Mezzogiorno aBolognacMulinod1987- aTrimestriel 1aStudi SVIMEZx0393-3105 aAide au développement économique régionalyItalie (sud)xPériodiques aItalie (sud)xConditions économiquesxPériodiques02aAssociazione per lo sviluppo dell'industria nel Mezzogiorno4 uhttp://www.mulino.it/rivisteweb/riviste_list.php?type=alpha zContenu : sommaires des nos depuis 199901 bvol. 2 no. 1 (1988) -vol. 13 no. 3/4 (1999)cParisdMagasins/AnnexeeP 8° 5946 aexempb201112 aGEO RA6.03 Italie aDEW 330.901032cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200004400174210002700218326001800245517000900263606003700272710006600309801003000375801002300405802000700428856007600435856009400511955006300605992002200668992001600690070103186000118096820130319051834.01 a1722-1137 aissn17221137 a0001180968 a20030203a20029999k y0frey0103 ba0 aita aIT ay  aaiu uu 10aRivista italiana di politiche pubbliche aRomacIl mulinod2006- a3 n°s par an10aRIPP aPolitique publiquexPériodiques01aCentro di analisi delle politiche pubbliche (Bologne, Italie) 3aFRbAbesc20080630gAFNOR 3aFRbISSNc20030203 a0d4 uhttp://www.mulino.it/edizioni/riviste/scheda_rivista.php?issn=1722-1137 zContient : sommaires depuis le no. 1, 2002 ; sommaires et résumés depuis le no. 1, 20061 bno. 1 (avr-2009) -....cParisdMagasins/AnnexeeP 8° 7114 aGEO RA6.03 Italie aDEW 350-35400879nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004100139207002200180210002700202326001700229606003600246676000800282801002100290856005100311856004200362955006700404955006300471972000900534991001800543992001600561038831465000004310820131029115938.01 a0048-8402 aFNSP226273 a19900101a19719999 ba0 aita aIT aaiu 10aRivista italiana di scienza politica 1an. 1 (apr. 1971)- aBolognacMulinod1971- a3 n° par an aScience politiquexPériodiques a320 3aFRbCCN0048-84024 uhttp://www.mulino.it/edizioni/riviste/risp.htm zContenu : sommaire du dernier numéro1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 1 (avr-1971) -....cParisdMagasins/AnnexeeP 8° 2960 aZCAD aexempb201106 aDEW 320-32101008nas 2200301 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200005100160210002900211326001400240430004700254517002400301607006300325676000800388856014400396955005100540955005000591955005300641992001200694090054059000004655920130319051834.01 a1770-619X aFNSP237436 a0000046559 a19900101b18141944 ba0 afre aFR ar aaaa 03aJournal des débats politiques et littéraires aParisc[s.n.]d1814-1944 aQuotidien 1tJournal de l'Empire (1805), ISSN 1770-618110aJournal des débats aFrancexPolitique et gouvernementz1789-....xPériodiques a9444 uhttp://gallica.bnf.fr/ark:/12148/cb39294634r/date.r=.langFRzAccès libre au texte intégral. Années 1814 à 1944 numérisées sur Gallica1 b1816 (inc)cParisdMagasins/AnnexeeP F° 00271 b1840-1870cParisdMagasins/AnnexeeP F° 11221 b1914-1919cParisdMagasins/AnnexeeP MIC 35 (30) aDEW 05000956nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000050001502100005002002300024002053260014002296060029002436070025002728010013002978560192003108560108005029550005006109920012006159920039006270001145138000114513820130319051836.0 a0001145138 a a20029999k fre 01 ba0 arus aRU ar aaa z  adr 10aRossijskaâ gazetab[Ressource électronique] a aRevue électronique aquotidien aActualitéxPériodiques aRussiexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aDEW 050 aGEO RA7.21 Russie (depuis 1991-92)01009nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004500139210002800184326001700212440003500229601006200264606002900326606002900355607002500384710004800409801002100457856003000478856007200508955007800580992002500658992001200683039229130000006740420131029105135.01 a0035-8509 aFNSP312930 a19900101b19689999 ba0 afre aFR aa a 10aRougefLigue communiste révolutionnaire aPariscRouged1968-2009 aHebdomadaire 1tTout est à nous !,x1969-817802aLigue communiste révolutionnairec(France)xPériodiques aActualitéxPériodiques aTrotskismexPériodiques aFrancexPériodiques02aLigue communiste révolutionnairec(France) 3aFRbCCN0035-85094 uhttp://www.lcr-rouge.org/ zContenu : sommaire et articles en texte intégral depuis juin 1999.1 bno. 1 (sep-1968) -no. 2286 (fev-2009)cParisdMagasins/AnnexeeP F° 0286 aGEO RA4.06 France 01 aDEW 05001342nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001600154210002800170326002200198326002900220326002700249530002400276607005800300801002100358856015000379856004900529856010900578856010800687955007000795957005700865972000900922992004900931992001200980038788977000004313020130319051836.01 a0035-8533 aFNSP226325 a0000043130 a19900101a19109999 ba0 aeng aGB aagu 10aRound table aAbingdoncCarfaxd1910- aBimestrielb2007- a5 n°s par anb2000-2006 aTrimestrielb1945-1999 0aRound tablebLondon aCommonwealthxPolitique et gouvernementxPériodiques 3aFRbCCN0035-85334 uhttp://www.journalsonline.tandf.co.uk/(20wlxk45gp2kfuzqlnr3doiv)/app/home/journal.asp?referrer=parent&backto=linkingpublicationresults,1:102235,1 zContenu : sommaires n°349 / January 1, 19994 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713448095db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (nov-1910) -....cParisdMagasins/AnnexeeP 8° 00351 b(1910) -(1935)cParisdMagasins/AnnexeeP Index 0019 aZSAB aGEO RP Autres groupes de pays ou de régions aDEW 90901078nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004900163207002600212210002500238326001600263430005400279606003800333676000800371801001300379856006700392856010800459955006700567955006300634972000900697992001200706992002200718061054763000046782820130319051837.01 a1635-4273 a0000467828 a a20029999k fre ba0 afre aFR a 0  ar aah z 0 10aRTD civ.erevue trimestrielle de droit civil 1ano. 1 (jan/mar-2002)- aPariscDallozd2002- aTrimestriel 1tRevue trimestrielle de droit civilxISSN0397-9873 aDroit civilyFrancexPériodiques a346 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://bu.dalloz.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 3461 bno. 1 (jan-2002) -....cParisdMagasins/AnnexeeP 8° 2144 aZPAY aDEW 346 aGEO RA4.06 France01197nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200007800163207002600241210002500267326001600292430008300308606004300391606004400434676000800478801001300486856006700499856010800566955006700674955006300741972000900804992002200813992001200835061056901000046248920130319051837.01 a1635-3234 a0000462489 a a20029999k fre ba0 afre aFR a 0  ar aah z 0 10aRTD com.eRevue trimestrielle de droit commercial et de droit économique 1ano. 1 (jan/mar-2002)- aPariscDallozd2002- aTrimestriel 1tRevue trimestrielle de droit commercial et de droit économiquexISSN0244-9358 aDroit commercialyFrancexPériodiques aSociétésxDroityFrancexPériodiques a346 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.dalloz.fr zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 3461 bno. 1 (jan-2002) -....cParisdMagasins/AnnexeeP 8° 0281 aZPAY aGEO RA4.06 France aDEW 34600970nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001800154210003100172326001600203430006500219606003000284710005100314856009300365856010800458955007300566972000900639991001800648992001400666039895335000005958220140110143155.01 a1144-0821 aFNSP274026 a0000059582 a19900101a00019999 ba0 afre aFR aaha 10aRue Descartes aPariscAlbin Micheld0001- aTrimestriel 1aLe Cahier - Collège international de philosophiex0980-1626 aPhilosophiexPériodiques02aCollège international de philosophiec(Paris)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-rue-descartes.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1/2 (avr-1991) -no 70 (2010)cParisdMagasins/AnnexeeP 8° 5797 aZPAY aexempb201112 aDEW 10-1401390nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210002400173326003200197430006100229517006500290606002400355606003300379606004400412676000800456710006200464856002500526856006300551856010900614856010800723955006700831955007200898972000900970992002100979992001601000039398528000004323420130319051837.01 a0307-1847 aFNSP226728 a0000043234 a19900101a19729999 ba0 aeng aGB aaga 10aRUSI (Journal) aLondoncRUSId1972- aTrimestriel puis bimestriel 1aJournal of the Institute for Defence Studies (0953-3559)10aRoyal United Service Institute for Defence Studies (Journal) aArmesxPériodiques aForces arméesxPériodiques aArt et science militairesxPériodiques a35502aRoyal United Services Institute for Defence Studiesc(GB)4 uhttp://www.rusi.org/ zSommaires des numéros parus depuis le vol.145, n°1, 20004 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t777285713db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3551 bvol. 126 no. 1 (mar-1981) -....cParisdMagasins/AnnexeeP 4° 4841 aZCAD aGEO RQ Universel aDEW 355-35901222cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200002900156207001700185210004300202326001600245453004300261606004400304606003200348607004900380676000800429801003000437801002300467802000700490856004100497856006400538955006700602955007400669972000900743992003900752992003300791992001200824077583361000106785120130319051838.01 a1810-6374 aissn18106374 a0001067851 a20030523a20029999 0fre 0103 ba0 aeng aRU aah 10aRussia in global affairs 1aN°1 (2002)- aMoscowcGlobus Publishing Housed2002- aTrimestriel 1tRossiâ v globalʹnoj politike (Print) aRelations internationalesxPériodiques aGéopolitiquexPériodiques aRussiexRelations extérieuresxPériodiques a327 3aFRbAbesc20040428gAFNOR 3aFRbISSNc20030523 a004 uhttp://eng.globalaffairs.ru/numbers/ zContenu : texte intégral des articles depuis le n°1, 20021 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 3 no. 1 (jan/mar-2005) -....cParisdMagasins/AnnexeeP 8° 6945 aZPAY aGEO RA7.21 Russie (depuis 1991-92) aGEO RS Sans aspect régional aDEW 32701251nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210002900182300004100211326001600252421005900268607006100327710004700388711003900435856003900474856004700513856010100560856010800661955008200769972000900851992003900860992001400899040102033000008405920130319051838.01 a0967-0793 aFNSP374110 a0000084059 a19900101b19922002 ba0 aeng aGB aaha 10aRussian economic trends aLondoncWhurrd1992-2002 aRevue suspendue avec le vol.11, 2002 aTrimestriel 1aRussian economic trends. Monthly update < P 4° 6326 > aRussiexConditions économiquesz1991-....xPériodiques02aCentre for Economic Performancec(Londres)02aRussie. Centre for Economic Reform4 uhttp://www.hhs.se/site/ret/ret.htm zContenu : texte intégral depuis avr. 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=102581 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1992) -vol. 11 no. 4 (2002)cParisdMagasins/AnnexeeP 4° 6190 aZPAY aGEO RA7.21 Russie (depuis 1991-92) aDEW 330.901309nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154207000500177210005500182326001600237530002900253607002500282607002300307801002100330856010100351856010800452856009000560856010800650955009100758972000900849991001800858992003900876992002000915992001200935038789906000004831420131202115444.01 a0036-0341 aFNSP242642 a0000048314 a19900101a19419999 ba0 aeng aUS aahu 14aThe Russian review 1a aColumbus, OhiocOhio State University Pressd1941- aTrimestriel00aRussian reviewbStanford aRussiexPériodiques aURSSxPériodiques 3aFRbCCN0036-03414 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101808 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00360341.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 30 no. 3 (jul-1971) -vol. 71 no. 4 (oct-2012)cParisdMagasins/AnnexeeP 8° 3052 aZPAY aexempb200910 aGEO RA7.21 Russie (depuis 1991-92) aGEO RA7.01 URSS aDEW 94701118nas0 2200325 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123110001600141200007400157210002600231326001100257410009000268517003800358607008100396710006500477801003000542856005600572856003600628955005200664972000900716992002500725992002800750992001400778117681407000111156420130319051840.01 a2111-9007 a0001111564 a20070921j1999x k y frey0103 ba0 afre aFR ay 0  aakaih 0 10aSaint-BarthélemyfInstitut d'émission des départements d'Outre-mer aPariscIEDOMd[200.]- aAnnuel 1aRapport annuel - Institut d'émission des départements d'Outre-merxISSN 1632-420X10aSaint-Barthélemyerapport annuel aSaint-Barthélemy (Guadeloupe ; île)xConditions économiquesxPériodiques02aInstitut d'émission des départements d'Outre-merc(France) 3aFRbAbesc20070921gAFNOR4 uhttp://www.iedom.fr/dom/guadeloupe/publications.asp4 zAccès libre au texte intégral1 b(2006)-....cParisdMagasins/AnnexeeP 8° 6982 aZGRA aGEO RA4.06 France 01 aGEO RD3.71 Autres îles aDEW 330.901001nas0 2200313 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012311000160014120000690015721000260022632600110025251700330026360700760029671000650037280100300043785600560046785600360052395500520055997200090061199200250062099200280064599200140067311768645X000111157820130319051840.01 a2111-9015 a0001111578 a20070921a19999999k y frey0103 ba0 afre aFR ay 0  aaka h 0 10aSaint-MartinfInstitut d'émission des départements d'Outre-mer aPariscIEDOMd[200.]- aAnnuel10aSaint-Martinerapport annuel aSaint-Martin (Guadeloupe ; île)xConditions économiquesxPériodiques02aInstitut d'émission des départements d'Outre-merc(France) 3aFRbAbesc20070921gAFNOR4 uhttp://www.iedom.fr/dom/guadeloupe/publications.asp4 zAccès libre au texte intégral1 b(2006)-....cParisdMagasins/AnnexeeP 8° 6983 aZGRA aGEO RA4.06 France 01 aGEO RD3.71 Autres îles aDEW 330.901312cas0 2200397 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147105001800154110001600172200008100188210002400269326001100293410008300304512003500387517004500422530002900467607007600496712006500572801003000637801002300667801003000690802000700720856005400727856003600781955005200817972000900869992002200878992001400900094684758000091919620130319051840.0 a1760-9011 a131723146 aissn17609011 a0000919196 a20060106a19999999k y0frey50 ba0 afre aFR ay  azku uu 10aSaint-Pierre-et-MiquelonfInstitut d'émission des départements d'Outre-mer aPariscIEDOMd1999- aAnnuel 1tRapport annuel - Institut d'émission des départements d'Outre-merx1632-420X10aSaint-Pierre-et-Miquelon en...10aSaint-Pierre-et-Miquelonerapport annuel00aSaint-Pierre-et-Miquelon aSaint-Pierre et MiquelonxConditions économiquesxPériodiques2rameau02aInstitut d'émission des départements d'Outre-merc(France) 3aFRbAbesc20090422gAFNOR 3aFRbISSNc20090225 3aFRbAbesc20060112gAFNOR a074 uhttp://www.iedom.fr/dom/stpierre/publications.asp4 zAccès libre au texte intégral1 b(1999)-....cParisdMagasins/AnnexeeP 8° 6854 aZGRA aGEO RA4.06 France aDEW 330.901511nas 2200349 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000160013921001110015532600150026644000520028145200960033353000160042960600440044560600440048967600080053371000640054180100210060585601800062685601720080695501230097897200090110199100180111099200210112899200120114903879019X000011062020130725120156.01 a0036-0775 aFNSP467045 a19900101b19562003 ba0 aeng aUS aaju 10aSAIS review aWashington, D.C., etccSchool of Advanced International Studies of the Johns Hopkins Universityd1956-2003 aSemestriel 1tSAIS review of international affairsx1945-4716 1tSAIS review - Paul H. Nitze School of Advanced International Studies (Online)‎x1088-314200aSAIS review aRelations internationalesxPériodiques aRelations internationalesxPériodiques a32702aSchool of Advanced International Studies (Washington, D.C.) 3aFRbCCN0036-07754 uhttp://muse.jhu.edu/journals/sais_review/zContient : sommaires et résumés à partir du volume 15, automne 1995 (ce n° de 1995 est également disponible en texte intégral)4 uhttp://www.saisreview.orgzContient : thèmes des dossiers depuis le n° de l'hiver-printemps 1994, sommaires et résumés depuis le vol.20, n°1, hiver-printemps 20001 bvol.16 no. 2 (1972) - vol.19 no. 3 (1975) ; vol.6 no. 1 (1986) -vol.23 no 2 (2003)cParisdMagasins/AnnexeeP 8° 3286 aZSAB aexempb200905 aGEO RQ Universel aDEW 32701559nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200008000163207004100243210005200284326001500336430002700351606004400378606004400422676000800466710006300474801001300537856004600550856013700596856003000733856023400763955006700997955006701064972000901131992002101140992001201161123194377000067774720130319051840.01 a0036-0775 a0000677747 a a20049999 fre 01 ba0 aeng aUS a 0  ar aaj z 0 10aSAIS review of international affairsfJohn Hopkins Foreign Policy Institute 1aVol. 24, no. 1 (Winter/Spring-2004)- aBaltimorecJohn Hopkins University Pressd2004- aSemestriel 1tSAIS reviewx0036-0775 aRelations internationalesxPériodiques aRelations internationalesxPériodiques a32702aJohns Hopkins Foreign Policy Institutec(Washington, D.C.) 0aFRbFNSP4 uhttp://muse.jhu.edu/journals/sais_review/ zContient : sommaires et résumés à partir du volume 15, automne 1995 (ce n° de 1995 est également disponible en texte intégral)4 uhttp://www.saisreview.org zContient : thèmes des dossiers depuis le n° de l'hiver-printemps 1994, sommaires et résumés depuis le vol.20, n°1, hiver-printemps 2000, sélection d'articles en texte intégral depuis le vol. 24, n° 1, hiver-printemps 20041 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 24 no. 1 (2004) -....cParisdMagasins/AnnexeeP 8° 3286 aZSAB aGEO RQ Universel aDEW 32701270cas0 2200397 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147105001800154106000600172110001600178200009200194210003700286225002300323326001100346410003600357606003500393607006400428676000800492710007800500801003000578801002300608802000700631856007300638955006200711955005300773972000900826992002500835992001200860090231546000113841020130319051840.0 a1953-535X a112770223 aissn1953535X a0001138410 a20050913a20059999m y0frey0103 ba0 afre aFR ay 0  ar aakuii 0xx014aLes Salaires en FrancefInstitut national de la statistique et des études économiques aPariscInsee info serviced2005-20aINSEE références aAnnuel 1tRéférences - INSEEx1639-4968 aSalairesyFrancexPériodiques aFrancexConditions économiquesxStatistiquesxPériodiques a33102aInstitut national de la statistique et des études économiquesc(France) 3aFRbAbesc20080201gAFNOR 3aFRbISSNc20070222 a074 uhttp://www.insee.fr/fr/publications-et-services/collection.asp?id=131 bLa dernière annéecParisd27, Salle 1er étageeDEW 3311 b(2007) -....cParisdMagasins/AnnexeeP 8° 7021 aZGRA aGEO RA4.06 France 01 aDEW 33101268nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000530013921000620019232600160025445200340027060600360030471000550034080100210039585601190041685601080053585600740064385600760071795500870079397200090088099100180088999200230090799200120093003879067X000004127420131119114843.01 a0036-4037 aFNSP221310 a19900101a19649999 ba0 aeng aUS aaha 10aSan Diego law review‎fUniversity of San Diego aSan Diego, CalifcSan Diego Law Review Associationd1964- aTrimestriel 1tSan Diego law review (Online) aDroityEtats-UnisxPériodiques02aUniversity of California, San DiegobSchool of Law 3aFRbCCN0036-40374 uhttps://acces-distant.sciences-po.fr/fork?http://www.westlaw.com/signon/default.wl?RS=UKIS1.0&VR=1.0&sp=intiep-000 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.sandiego.edu/usdlaw/about/publications/journals/lawreview/4 zContenu : Accès aux sommaires et résumés depuis le vol.1, n°1, 19641 bvol. 17 no. 1 (dec-1979) -vol. 46 no. 4 (2009)cParisdMagasins/AnnexeeP 8° 4452 aZPAY aexempb201106 aGEO RC2 Etats-Unis aDEW 34901176nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210003900174326002200213326002700235530004300262606004200305676000800347710004400355856009400399856004200493955006600535955007600601955008800677972000900765991001800774992002200792992001200814039873099000017237620130823115656.01 a0995-3914 aFNSP651478 a0000172376 a19900101a19889999 ba0 afre aFR aaga 10aSanté publique aVandoeuvre-lès-NancycSFSPd1988- aBimestrielb2007- aTrimestrielb1988-200610aSanté publiquebVandoeuvre-lès-Nancy aSanté publiqueyFrancexPériodiques a36002aSociété française de santé publique4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-sante-publique.htm? zAccès aux sommaires et aux résumés1 bLes 3 dernières annéescParisd27, Salle 4e étageeDEW 3601 bvol. 25 no. 1 (jan/fév-2013) -....cParisdMagasins/AnnexeeP 4° 73361 bno. 1 (mar-1995) -vol. 24 no. 6 (nov/déc-2012)cParisdMagasins/AnnexeeP 8° 6188 aZPAY aexempb201211 aGEO RA4.06 France aDEW 36001136cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200007200180210005000252326001600302517001600318530002700334606004500361606004400406676000800450710001900458801003000477801002300507802000700530856003300537856004600570955006700616955006300683992001600746119524422000113294720130319051842.01 a1958-7856 aissn19587856 a0001132947 a20071123a20079999k y0frey0103 ba0 afre aFR ay  ar aahu uu 10aSavoir - agirerevue trimestrielle de l' Association Raisons d'agir aBellecombe-en-BaugescÉd. du Croquantd2007- aTrimestriel10aSavoir agir10aSavoir - agirb(Revue) aGauche (science politique)xPériodiques aIdées politiquesyFrancexPériodiques a32002aRaisons d'agir 3aFRbAbesc20071126gAFNOR 3aFRbISSNc20071123 a074 uhttp://www.raisonsdagir.org/ zContenu : sommaires depuis le no. 1, 20071 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 1 (sep-2007) -....cParisdMagasins/AnnexeeP 8° 7015 aDEW 320-32101445nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009200154207002700246210004500273210002900318326001600347430004400363606003700407710002700444801002100471830006100492856009000553856010800643856010100751856010800852955008400960972000901044991001801053992001201071002660350000004129620131202120018.01 a0347-0520 aFNSP221368 a0000041296 a19900101a19769999 ba0 aswe aSE aaha 14aThe Scandinavian journal of economicsfUniversity of Stockholm, Department of economics 1avol. 78, no 1 (1976) - aStockholmcAlmqvist & Wikselld1976-199X aOxfordcBlackwelld199X- aTrimestriel 1aSwedish journal of economicsx0039-7318 aEconomie politiquexPériodiques02aStockholms universitet 3aFRbCCN0347-0520 a1899 -->1979 : collection donnée au CTL (divers titres)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03470520.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100923 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 82 no. 1 (1980) -vol. 114 no. 4 (2012)cParisdMagasins/AnnexeeP 8° 0119 aZPAY aexempb201101 aDEW 33001198nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003500139210003800174326002800212452005600240530004500296606004900341607005700390676000800447710004600455801002100501856009600522955006700618955010400685972000900789991001900798992002700817992001600844002936410000004129520130703145007.01 a0080-6757 aFNSP221367 a19900101a19669999 ba0 aeng aNO aaha 10aScandinavian political studies aOslocUniversitetsforlagetd1966- aAnnuel puis trimestriel 1tScandinavian political studies (Online),x1467-947710aScandinavian political studies‎bPrint aScience politiqueyScandinaviexPériodiques aScandinaviexPolitique et gouvernementxPériodiques a32002aAssociation nordique de science politique 3aFRbCCN0080-67574 uhttp://nopsa.net/sps.htmlzAccès libre au texte intégral à partir du vol. 20, no 1, 19961 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bvol. 1 (1966) - vol. 12 (1977) ; n.s. vol. 1 no. 1 (1978) -....cParisdMagasins/AnnexeeP 8° 4062 aZSAB aexemplb201001 aGEO RA3 Europe du Nord aDEW 320-32100935nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002400163210003900187326001600226430006000242606003600302606003700338801001300375856007400388856004900462955006800511972000900579992002100588992001200609056714157000040430220130319051842.01 a1439-121X a0000404302 a a20009999k fre ba0 amul aDE a 0  ar aah z 0 10aSchmollers Jahrbuch aBerlincDuncker und Humblotd2000- aTrimestriel 1tZeitschrift für Wirtschafts- und- Sozialwissenschaften aSciences socialesxPériodiques aEconomie politiquexPériodiques 0aFRbFNSP4 uhttp://www.diw.de/deutsch/produkte/publikationen/schmoller/index.html zContenu : Sommaires et abstracts depuis 20001 bvol. 120 no. 1 (2000) -....cParisdMagasins/AnnexeeP 8° 1409 aZPAY aGEO RQ Universel aDEW 33001021nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000039001502070030001892100029002192300005002483000070002533260017003233360056003403370083003966060054004796060056005338010013005898560041006029550005006439920016006489920031006640000617367000061736720130319051842.0 a0000617367 a a19949999k fre 01 ba0 aeng aGB az aac z  adr 10aSchNEWSb[Ressource électronique] 1aN°0 (16 novembre 1994) - aBrightoncSchNEWSd1994- a aLettre d'information en texte intégral depuis le n°1, nov. 1994 aHebdomadaire aDonnées textuelles accessibles uniquement en ligne aFichiers PDF ou HTML. Il existe aussi la possibilité de s'abonner par e-mail. aMouvements sociauxyGrande-BretagnexPériodiques aJustice et politiqueyGrande-BretagnexPériodiques 0aFRbFNSP4 uhttp://www.schnews.org.uk/index.html1 r aDEW 324.2-5 aGEO RA4.02 Grande-Bretagne01383nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200009300163210004200256210003200298326001600330430007600346510003800422510003500460606004400495606003600539710004400575801001300619856008700632856006200719955006900781955008200850972000900932991001800941992002200959992001600981058226486000059513820140115104920.01 a1424-7755 a0000595138 a a19999999 fre 01 ba0 amul aCH a 0  ar aah z 0 10aSchweizerische Zeitschrift für PolitikwissenschaftfSwiss Political Science Association aHoboken, N.J.cWiley-Blackwelld2011- aZurichcRüeggerd1999-2010 aTrimestriel 1tSchweizerische Zeitschrift für Politische WissenschaftxISSN 1420-352910aRevue suisse de science politique10aSwiss political science review aScience politiqueySuissexPériodiques aScience politiquexPériodiques02aAssociation suisse de science politique 0aFRbFNSP4 uhttp://www.ingentaconnect.com/content/spsa/spsr;jsessionid=a4mlsnru811ra.henrietta zContenu : texte intégral gratuit depuis 1995 via Ingenta1 bL'année en courscParisdBibliothèque de rechercheeP 8° 54821 bvol. 5 no. 1 (1999) -vol. 18 no. 4 (2012)cParisdMagasins/AnnexeeP 8° 5482 aZCAD aexempb201110 aGEO RA5.14 Suisse aDEW 320-32101301nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009700154210003800251326001600289430002900305440006600334517003500400517003800435530006000473606004400533606003600577710004400613856006600657856008400723955008800807991001800895992002200913992001600935037082426000017136720131220102821.00 a1420-3529 aFNSP647961 a0000171367 a19900101b19951998 ba0 amul aCH aaha 10aSchweizerische Zeitschrift für Politische WissenschaftfSwiss Political Science Association aZürichcSeismo Verlagd1995-1998 aTrimestriel 1aSVPW-Jahrbuchx1420-4177 1tSchweizerische Zeitschrift fur Politikwissenschaftx1424-775510aSwiss political science review10aRevue suisse de science politique00aSchweizerische Zeitschrift für Politische Wissenschaft aScience politiqueySuissexPériodiques aScience politiquexPériodiques02aAssociation suisse de science politique4 uhttps://acces-distant.sciences-po.fr/fork?http://www.spsr.ch/ zContenu : texte intégral du vol.1, n°1, été 1995 au vol.4, n°4, hiver 19981 bvol.1 no.1 (été-1995) -vol.4 no. 4 (hiv-1998)cParisdMagasins/AnnexeeP 8° 5482 aexempb201110 aGEO RA5.14 Suisse aDEW 320-32101037nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004700154210006800201326001800269517003100287606002900318606003700347710003500384801002100419856006000440856008400500955006600584972000900650991001800659992002200677992001200699039563847000004726220130319051843.01 a0379-3664 aFNSP239973 a0000047262 a19900101a19799999 ba0 ager aCH aaiu 10aSchweizerische Zeitschrift für Soziologie aGrand-LancycSchweizerische Gesellschaft für Soziologied1979- a3 n°s par an10aRevue suisse de sociologie aSociologiexPériodiques aSociologieySuissexPériodiques02aSociété suisse de sociologie 3aFRbCCN0379-36644 uhttp://www.sociojournal.ch/index.php?page=start&lang=fr zContenu : Sommaires et résumés en français, anglais et allemand depuis 2000.1 bvol. 5 no. 1 (1979) -....cParisdMagasins/AnnexeeP 8° 4315 aZPAY aexempb201103 aGEO RA5.14 Suisse aDEW 30100825nas 2200241 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210005300184326001600237856010900253856010800362955008300470991001800553992001200571039992209000001490620130319051843.01 a0892-9882 aFNSP140988 a0000014906 a19901016a19899999 ba0 aeng aUS aaha 10aScience & global security aNew YorkcGordon and Breach Science Publ.d1989- aTrimestriel4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713618359db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1/2 (1989) -vol. 1 no. 4 (1989)cParisdMagasins/AnnexeeP 8° 5673 aexempb201110 aDEW 32701484nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210008200193210004300275210004100318210004800359210004500407326002200452326002700474517004100501710005600542856009000598856010800688856010800796856010800904955006901012972000901081991001801090992001401108039105628000000527720130319051843.01 a0162-2439 aFNSP107787 a0000005277 a19900312a19789999 ba0 aeng aUS aaga 10aScience, technology & human values aCambridge, Mass.cAiken Computation Laboratory, Harvard Universityd1978-1979 aCambridge, Mass.cMIT Pressd1979-1982 aNew YorkcJ. Wiley & Sonsd1983-1987 aNewbury Park, Calif.cSage Publ.d1987-1993 aThousand Oaks, Calif.cSage Publ.d1993- aBimestrielb2006- aTrimestrielb1978-200510aScience, technology and human values02aSociety for Social Studies of Sciencec(Etats-Unis)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01622439.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 13 no. 1/2 (1988) -....cParisdMagasins/AnnexeeP 8° 5622 aZSAB aexempb201204 aDEW 10-1400976nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154207004500178210003600223326001600259530004300275606002700318606004200345801002100387856004400408856006300452955007300515972000900588991001800597992001400615992002100629038792206000004168820130319051843.01 a0036-8237 aFNSP222862 a0000041688 a19900101a19369999 ba0 aeng aUS aaha 00aScience and society 1aVol.1, no.1 (1936) -vol. 54, no. 4(1991) aNew YorkcGuilford Pressd1936- aTrimestriel00aScience & societybNew York, N.Y. 1936 aMarxismexPériodiques aSciencesxAspect socialxPériodiques 3aFRbCCN0036-82374 uhttp://www.atypon-link.com/GPI/loi/siso zContenu : sommaires depuis le vol.65, n°1, printemps 20011 bvol. 13 no. 3 (été-1949) -....cParisdMagasins/AnnexeeP 8° 0522 aZSAB aexempb201104 aDEW 320.5 aGEO RQ Universel01608cas0 2200433 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200005700197210004300254215001000297303004300307326001200350421004900362421007400411423004600485447005100531447004400582517005400626517003700680530005700717606004400774801003000818801002300848802000700871856014500878955009301023991002001116991003801136038591480000109459320130319051843.0 a1153-9984 accn1153-9984 aissn11539984 a0001094593 a19930109b18861935k y0frey0103 ba0 afre aFR a 0  ar aaf 0 13aLa Science sociale suivant la méthode de F. Le Play aPariscla Science socialed1886-[1935] d23 cm aNotice réd d'après le n. de jan 1897 aMensuel |tLe Mouvement social (Paris. 1892)x1154-0141 |tBulletin de la Société internationale de science socialex1154-0133 1tJournal de l'École des Rochesx1154-015X 1tRevue d'économie sociale et ruralex1153-9976 1tLes Études sociales (Paris)x0014-220410aScience sociale suivant la méthode d'observation13aLa Science sociale (Paris. 1886)03aLa Science sociale suivant la méthode de F. Le Play0 aSciences socialesxPériodiques2rameau 3aFRbAbesc20051129gAFNOR 3aFRbISSNc20030523 a074 uhttp://gallica.bnf.fr/ark:/12148/cb32865965j/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1886-1931)1 bvol. 1 no. 1 (1886) -vol. 19 (1904) ; (1912) -(1915)cParisdMagasins/AnnexeeP 8° 0818 aPériobTP02 P8 anumer0 1915 (complément gallica)01346nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210003800176326001200214421005500226421004600281421005700327517002200384530003100406606003600437856003500473856004500508856010000553856010800653955006900761955006300830957007000893972000900963992001200972039875830000003492020130319051843.01 a0996-6994 aFNSP201996 a0000034920 a19900101a19899999 ba0 afre aFR aazb 10aSciences humaines aAuxerrecSciences humainesd1989- aMensuel 1tSciences humaines. Hors-série spécialx1778-056X 1tSciences humaines. Hors sériex1252-3429 1tLes Grands dossiers des sciences humainesx1777-375X10aSciences humaines00aSciences humainesbAuxerre aSciences humainesxPériodiques4 uhttp://www.scienceshumaines.fr zContenu : sommaires depuis le n°1, 19904 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/magazine-sciences-humaines.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 60061 bno. 1 (nov-1990) -....cParisdMagasins/AnnexeeP 4° 60061 bno. 1 (1990) -no. 32 (1993)cParisdMagasins/AnnexeeP Index 0734 aZPAY aDEW 30000932nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200003500160207004300195210004200238326001600280422004300296440005700339606003600396676000800432856003500440856004500475955007700520972000900597992001200606040224813000008725820130319051843.01 a1252-3429 aFNSP386236 a0000087258 a19900101b19932005 ba0 afre aFR ar aaia 10aSciences humaines. Hors série 1ano. 1 (févr-1993) -no. 50 (sept-2005) aAuxerrecSciences humainesd1993-2005 aTrimestriel 1tSciences humaines (Auxerre)x0996-6994 1tLes grands dossiers des sciences humainesx1777-375X aSciences humainesxPériodiques a3004 uhttp://www.scienceshumaines.fr zContenu : sommaires depuis le n°1, 19931 bno. 1 (fev-1993) -no. 50 (nov- 2005)cParisdMagasins/AnnexeeP 4° 6218 aZPAY aDEW 30001170nas 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000058001502070015002082100041002233260011002644370072002755170028003475170040003756010079004156760010004947100043005047110058005478010013006058560114006189550063007329920025007959920012008200001227071000122707120130319051843.0 a0001227071 a a20099999 fre 01 ba0 afre aFR a 0  ar aak z 0 10aSciences Poe[programmes d'enseignement]fSciences Po 1a2009/2010- aPariscPresses de Sciences Pod2009- aAnnuel 1tSciences Po : admissions, scolarités, programmes des enseignements12aL'annuel de Sciences Po10aLivret de l'étudiant - Sciences Po02aInstitut d'études politiquesc(Paris)xProgrammes d'étudesxPériodiques a378.102aInstitut d'études politiquesc(Paris)02aFondation nationale des sciences politiquesc(France) 0aFRbFNSP4 uhttp://www.sciencespo.fr/content/125/dipl%C3%B4mes-programmeszAccés au texte intégral de l'année en cours1 b(2009/2010) -....cParisdMagasins/AnnexeeFNSP P 4° 7323 aGEO RA4.06 France 01 aDEW 37001002nas 2200301 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000025001412100025001663260011001914300070002026010081002726060072003537100068004258560032004938560042005259550065005679720009006329910018006419920025006599920016006840000258869000025886920130319051843.0 aFNSP901478 a0000258869 a19981102a19979999 ba0 afre aFR aaka 10aSciences po Grenoble aGrenoblecIEPd1997- aAnnuel 1aLivret de l'étudiant - Institut d'études politiques de Grenoble02aInstitut d'études politiquesc(Saint-Martin-d'Hères, Isère)xPériodiques aEnseignement supérieuryFrancexProgrammes d'étudesxPériodiques02aInstitut d'études politiquesc(Saint-Martin-d'Hères, Isère )4 uhttp://www.iep-grenoble.fr/ zContenu : présentation de l'institut1 b(1996/1997) -(2002/2003)cParisdMagasins/AnnexeeP 8° 6436 aZGRA aexempb201301 aGEO RA4.06 France 01 aDEW 370-37901115nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210003800186326001600224606003400240710008300274801002100357856002800378856006900406955006300475957023600538972000900774991001800783992001200801039461920000004194420130319051843.01 a0294-0337 aFNSP223369 a0000041944 a19900101a19829999 ba0 amul aFR aaha 10aSciences sociales et santé aMontrougecLibbey Eurotextd1982- aTrimestriel aSanté publiquexPériodiques02aAssociation pour le développement des sciences sociales de la santé (France) 3aFRbCCN0294-03374 uhttp://www.revue-sss.fr4 zAccès libre aux sommaires et résumés des articles depuis 19971 bno. 1 (dec-1982) -....cParisdMagasins/AnnexeeP 8° 48401 bvol. 6 (1988) -vol. 9 (1991) ; vol. 10 (1992) -vol. 13 (1995) ; vol. 14 (1996) -vol. 17 (1999) ; vol. 18 (2000) -vol. 20 (2002) ; vol. 21 (2003) -vol. 23 (2005) ; vol. 24 (2006) -vol. 26 (2008)cParisdMagasins/AnnexeeP Index 0682 aZPAY aexempb200912 aDEW 36001036cas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002400139210004100163326001200204434004400216530002400260606004200284606003900326606004000365801002100405830005300426856002600479955007200505957005700577972000900634991001800643992002300661992001400684038792435000004199420130930152113.01 a0036-8733 aFNSP223474 a19900101a18459999 ba0 aeng aUS aafa 10aScientific American aNew YorkcScientific Americand1845- aMensuel 1aScientific American monthly,x0740-6495 aScientific American aSciencesxVulgarisationxPériodiques aSciencesyEtats-UnisxPériodiques aRechercheyEtats-UnisxPériodiques 3aFRbCCN0036-8733 a1967-2012 : collection envoyée au Ctles en 20134 uhttp://www.sciam.com/1 bvol. 216 no. 1 (jan-1967) -....cParisdMagasins/AnnexeeP 4° 23361 b(1948) -(1978)cParisdMagasins/AnnexeeP Index 0519 aZPAY aexempb201306 aGEO RC2 Etats-Unis aDEW 50-5901346nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004200154207002600196210002900222326002300251326002800274606005400302606003700356607005900393801002100452856007100473856007300544856010100617856010800718955008600826972000900912991001800921992003100939992001400970038792559000004194020131202120225.01 a0036-9292 aFNSP223364 a0000041940 a19900101a19549999 ba0 aeng aGB aaga 10aScottish journal of political economy 1avol. 1 no. 1 (1954) - aOxfordcBlackwelld1954- aTrimestrielb1986- a3 nos par anb1954-1985 aEconomie politiqueyGrande-BretagnexPériodiques aEconomie politiquexPériodiques aGrande-BretagnexConditions économiquesxPériodiques 3aFRbCCN0036-92924 uhttp://www.blackwellpublishers.co.uk/asp/journal.asp?ref=0036-9292 zContenu : sommaires et résumés depuis le vol. 44, n°1, fév. 19974 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100926 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1954) -vol. 59 no. 5 (nov-2012)cParisdMagasins/AnnexeeP 8° 1345 aZPAY aexempb201102 aGEO RA4.02 Grande-Bretagne aDEW 330.901506cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150106000600157110001600163200007400179210003500253320012800288440011600416530007400532531004500606606004400651606004400695710006400739801003000803801002300833802000700856856013300863955014000996991002001136038761203000108559920130319051843.0 a1246-6980 accn1246-6980 aissn12466980 a0001085599 a19931213b18421935uuuy0frey0103 ba0 afre aFR ar azku uu 10aSéances et travaux de l'Académie des sciences morales et politiques aPariscFélix Alcand1842-1935 aTable générale alphabétique et chronologique 1842-1874. Tables alphabétiques et bibliographiques 1860-1889 et 1889-1900 1tRevue des travaux de l'Académie des sciences morales & politiques et comptes rendus de ses séancesx0400-337300aSéances et travaux de l'Académie des sciences morales et politiques 0aSéances trav. Acad. sci. morales polit. aSciences socialesxPériodiques2rameau aScience politiquexPériodiques2rameau02aAcadémie des sciences morales et politiquesc(France)4070 3aFRbAbesc20061016gAFNOR 3aFRbISSNc20061002 a074 uhttp://gallica.bnf.fr/ark:/12148/cb344869126/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 b(1842) -(1935)wlacunes 1851, 1860, 1863-1880, 1886, 1889, 1891, 1892, 1897, 1898, 1899, 1900, 1928cParisdMagasins/AnnexeeP 8° 0437 aPériobTP01 P801201nas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200012500180210002300305326001500328532002900343606004900372606005300421606004000474710006400514801003000578801002300608802000700631856004400638856005700682955006300739992002100802992001600823135944600000118458620130319051845.01 a2101-4736 aissn21014736 a0001184586 a20090818a20099999k y0frey0103 ba0 afre aFR ay  ar aaju uu 10aSécurité & stratégieerevue des directeurs sécurité d'entreprisefClub des directeurs de sécurité des entreprises aPariscCDSEd2009- aSemestriel10aSécurité et stratégie aStratégiexAspect économiquexPériodiques aEntreprisesxMesures de sécuritéxPériodiques aEspionnage industrielxPériodiques02aClub des directeurs de sécurité des entreprisesc(France) 3aFRbAbesc20090818gAFNOR 3aFRbISSNc20090617 a074 uhttps://www.cdse.fr/spip.php?rubrique32 zContient le sommaire des n°s depuis le no. 1 (2009)1 bno. 1 (mar-2009) -....cParisdMagasins/AnnexeeP 8° 7122 aGEO RQ Universel aDEW 360-36301073nas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200002300180210003200203326001600235606004400251676000800295710008400303801003000387801002300417802000700440856008200447856003200529955006700561955005800628992002100686992001600707120569442000112731520130319051845.01 a1959-6782 aissn19596782 a0001127315 a20080115a20079999k y0frey0103 ba0 afre aFR ay 0  ar aah 0 10aSécurité globale aPariscChoiseul Éd.d2007- aTrimestriel aSécurité internationalexPériodiques a35502aInstitut Choiseul pour la politique internationale et la géoéconomiec(Paris) 3aFRbAbesc20080115gAFNOR 3aFRbISSNc20080101 a074 uhttp://www.choiseul-editions.com/revues-geopolitique-Securite-Globale-23.html zContenu : sommaire des n°s1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3551 bno. 1(2007) -....cParisdMagasins/AnnexeeP 8° 6991 aGEO RQ Universel aDEW 355-35901159nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000038001642100046002023000094002483260011003424300094003536060061004477100076005088010013005848560064005978560042006619550055007039720009007589920022007679920016007899920016008050000552768000055276820130319051845.01 a1631-3046 a0000552768 a a20019999k fre ba0 afre aFR a 0  ar aak z 0 13aLa sécurité routière en France aPariscLa Documentation françaised2001- aLe rapport est disponible en ligne depuis 2000 via le site de la Documentation française aAnnuel 1tBilan annuel - Observatoire national interministériel de sécurité routièrex1240-6074 aSécurité routièreyFrancexStatistiquesxPériodiques02aFrancebObservatoire national interministériel de sécurité routière 0aFRbFNSP4 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml4 zAccés au texte intégral depuis 20001 b(2000) -(2006)cParisdMagasins/AnnexeeP 4° 6358 aZPAY aGEO RA4.06 France aDEW 383-389 aDEW 310-31901454cas0 2200421 450 00100100000000200110001000500170002101100140003803500170005203500150006910000410008410100080012510200070013310500180014010600060015811000160016420000440018021000510022421000550027521000460033041000750037643000490045153000260050060600450052667600080057171000340057980100300061380100230064380200070066685600640067385600560073795500640079395500730085795500520093097200090098299200250099199200160101613908987X000123155520130319051845.0 a2106-7449 aissn21067449 a0001231555 a20091209a20009999k y0frey50 ba0 afre aFR ay  ar aaku uu 13aLa Sécurité socialefCour des comptes aPariscDirection des journaux officielsd2000-0 aPariscDirection des journaux officielsd2000-20051 aPariscLa Documentation françaised2006- 1tJournal officiel de la République française (Paris. 1953)x0767-4538 1tRapport sur la sécurité socialex1297-207X03aLa Sécurité sociale aSécurité socialexPériodiques2rameau a36002aFrancebCour des comptes4070 3aFRbAbesc20120705gAFNOR 3aFRbISSNc20101104 a074 uhttp://www.ladocumentationfrancaise.fr/rapports/index.shtml zContenu : Sommaire des rapports depuis l'éd. 2000.1 bLa dernière année ; Paris, 27, Salle 4 e étage : DEW 3601 bLa dernière année ; Paris, Bibliothèque de recherche : P 4° 65701 b(2000)-....cParisdMagasins/AnnexeeP 4° 6570 aZCAD aGEO RA4.06 France 01 aDEW 360-36301032nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006200154210002400216326002200240326002700262430004300289606004400332676000800376710004300384856007000427856010800497955007100605972000900676991001700685992001600702040101819000007721420140110160551.01 a0967-0106 aFNSP350153 a0000077214 a19900101a19929999 ba0 aeng aGB aaha 10aSecurity dialoguefInternational Peace Research Institute aLondoncSaged1992- aBimestrielb2008- aTrimestrielb1992-2007 1aBulletin of peace proposalsx0007-5035 aSécurité internationalexPériodiques a35502aInternational Peace Research Institute4 uhttps://acces-distant.sciences-po.fr/fork?http://sdi.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 23 no. 3 (sep-1992) -....cParisdMagasins/AnnexeeP 8° 2766 aZSAB aexemp$201202 aDEW 355-35900987nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210002400175326001600199606004400215676000800259856010900267856010800376955006700484955007000551972000900621991001800630992002100648992001600669040098567000009605320130319051846.01 a0963-6412 aFNSP419787 a0000096053 a19900101a19919999 ba0 aeng aUS aaha 00aSecurity studies aLondoncCassd1991- aTrimestriel aSécurité internationalexPériodiques a3554 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713636712db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3551 bvol. 2 no. 1 (aut-1992) -....cParisdMagasins/AnnexeeP 8° 5956 aZSAB aexempb201210 aGEO RQ Universel aDEW 355-35900979nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000101001502100043002512300024002943260005003186060061003236060070003848010013004548560072004678560108005399550005006479920012006529920025006640000977517000097751720130319051846.0 a0000977517 a a20029999k fre 01 ba0 afre aFR ar aaz z  adr 13aLa Semaine juridique. Administrations et collectivités territorialesb[Ressource électronique] aPariscLexisNexis Jurisclasseurc2002- aRevue électronique a aDroit administratifyFrancexJurisprudencexPériodiques aAdministration localexDroityFrancexJurisprudencexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aDEW 342 aGEO RA4.06 France 0101266nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131106000600138110001600144200004500160210004500205326001700250430004400267517003600311606004700347606003200394676000800426801002100434856018700455955005100642955005600693955010300749972000900852992002200861992001200883992000900895039373126000000536220130319051846.01 a0242-5777 aFNSP108023 a0000005362 a19900313a19429999 ba0 afre aFR ar aacu 13aLa Semaine juridique. Edition générale aPariscEditions du Juris-classeurd1942- aHebdomadaire 1aLa Semaine juridique (Paris)x0049-015610aJCP, Juris-classeur périodique aDroityFrancexJurisprudencexPériodiques aDroityFrancexPériodiques a340 3aFRbCCN0242-57774 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.com/fr/droit/zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b2000-....cParisd30, Salle 3e étageeDEW 3401 b(1945) -(1994)cParisd30, Salle 3e étageeDEW 3401 bno. 5 (jan-1995) -....cParisdMagasins/AnnexeeP 4° 0193wManquant : no. 1>4, 1995 (vol. relié) aZPAY aGEO RA4.06 France aDEW 348 aPBUL00919nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000072001502070047002222100005002692300024002743260005002986060047003036060032003508010013003828560072003958560108004679550005005759920025005809920012006050000977515000097751520130319051846.0 a0000977515 a a19959999k fre 01 ba0 afre aFR ar aaz z  adr 13aLa Semaine juridique. Edition généraleb[Ressource électronique] 1aParis :$cLexisNexis Jurisclasseur :$c1995- a aRevue électronique a aDroityFrancexJurisprudencexPériodiques aDroityFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 34801194nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004900154210004500203326001700248421009800265430010600363606004400469676000800513856007600521856010800597955006700705955006500772972000900837992002200846992001200868040609502000023696320130319051846.01 a1290-5119 aFNSP837738 a0000236963 a19900101a19989999 ba0 afre aFR aa a 13aLa Semaine juridique. Entreprise et affaires aPariscEditions du Juris-classeurd1998- aHebdomadaire 1aLa Semaine juridique. Entreprise et affaires. Cahiers de droit de l'entreprise < P 4° 3300 > 1aLa Semaine juridique. Cahiers de droit de l'entreprise, Edition entreprise (0758-458X) < P 4° 5877 > aSociétésxDroityFrancexPériodiques a3464 uhttps://acces-distant.sciences-po.fr/fork?http://www.juris-classeur.com zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 3e étage:eDEW 3461 bno. 1/2 (jan-1998) -....cParisdMagasins/AnnexeeP 4° 5877 aZPAY aGEO RA4.06 France aDEW 34600851nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000075001502100043002252300024002683260005002926060044002978010013003418560072003548560108004269550005005349920022005399920012005610000977516000097751620130319051846.0 a0000977516 a a19959999k fre 01 ba0 afre aFR ar aaz z  adr 13aLa Semaine juridique. Entreprise et affairesb[Resource électronique] aPariscLexisNexis Jurisclasseurc1995- aRevue électronique a aSociétésxDroityFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France aDEW 34601326nas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200007700180210006900257326001600326517002600342601004600368606004800414606005100462606004900513710007400562801003000636801002300666802000700689856008200696856005800778955007500836992001600911992002500927118106910000113392220130319051847.01 a1958-3176 aissn19583176 a0001133922 a20071003b20072008k y0frey0103 ba0 afre aFR ay  ar aahu uu 10aSénat & territoiresela revue du sénat au service de la gestion locale aPariscService des collectivités territoriales du Sénatd2007- aTrimestriel10aSénat et territoires02aFrancebSénatc(1958-....)xPériodiques aAdministration localeyFrancexPériodiques aAdministration communaleyFrancexPériodiques aCollectivités localesyFrancexPériodiques02aFrancebSénatc(1958-....)bService des collectivités territoriales 3aFRbAbesc20071003gAFNOR 3aFRbISSNc20071003 a074 uhttp://carrefourlocal.senat.fr/carrefourlocal/senat_et_territoires/index.html zContenu : texte intégral depuis le n° 1 de Mai 20071 bno. 1 (mai-2007) -no. 4 (jan-2008)cParisdMagasins/AnnexeeP 4° 7218 aDEW 350-354 aGEO RA4.06 France 0101210nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200006700163207001700230210003600247326001600283517002400299530002300323606003600346676000800382710003100390801001300421856003300434856008200467856009800549856010800647955007200755972000900827992001200836080063497000069187620130523105137.01 a1767-9397 a0000691876 a a20049999 fre 01 ba0 afre aFR a 0  ar aah z 0 10a[Sens] [public]fSens public-puzzlefParrainé par Sciences-po 1aN°1 (2004)- aLyoncSens public-puzzled2004- aTrimestriel10aCahiers Sens public00aSens publicbRevue aSciences socialesxPériodiques a30002aSens public-puzzlec(Lyon) 0aFRbFNSP4 uhttp://www.sens-public.org//4 zContenu : sommaires et résumés d' articles depuis 2004 (accès thématique)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-cahiers-sens-public.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (2004) -no. 13/14, (2010)cParisdMagasins/AnnexeeP 8° 6778 aZPAY aDEW 30000985nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000026001552100035001813260016002166060053002326060044002858010021003298560109003508560108004599550086005679720009006539920021006629920012006830000047379000004737920130319051847.01 a0361-526X aFNSP240236 a0000047379 a19900101a19769999 ba0 aeng aUS aahu 14aThe Serials librarian aNew YorkcHaworth Pressd1976- aTrimestriel aCatalogagexPublications en sériexPériodiques aSciences de l'informationxPériodiques 3aFRbCCN0361-526X4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t792306962db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (aut-1976) -vol. 43 no. 2 (2002)cParisdMagasins/AnnexeeP 8° 4070 aZPAY aGEO RQ Universel aDEW 02000988nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035000500067100004100072101000800113102000700121110001600128200001900144210005000163326001200213452004200225517001900267530003200286606004300318606004100361710009000402856005800492955007700550972000900627992002200636992001600658040004244000005997020131028142127.01 a1167-1688 aFNSP275133 a a19900101a19929999 ba0 afre aFR aafa 10aService public aParis‎cTemps public édition‎d1992-2009 aMensuel 1tService public (En ligne),x1630-770410aService public10aService public‎bImprimé aServices publicsyFrancexPériodiques aFonctionnairesyFrancexPériodiques02aFrancebMinistère de la fonction publique et de la modernisation de l'administration4 uhttp://www.fonction-publique.gouv.fr/rubrique254.html1 bno. 1 (jan-1992) -no. 147 (dec-2009)cParisdMagasins/AnnexeeP 4° 6083 aZGRA aGEO RA4.06 France aDEW 350-35401163cas0 2200373 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147106000600154110001600160200003400176207001500210210002400225304007600249326001100325430003800336606004900374710007800423801003000501801002300531802000700554856008900561856003600650955005500686972000900741992002500750992001400775096353279000107839220130319051848.01 a1779-0883 a104773626 aissn17790883 a0001078392 a20060216a20059999u y0frey0103 ba0 afre aFR ar azku uu 14aLes Services en FrancefINSEE 0a2005/2006- aPariscINSEEd2005- aINSEE = Institut national de la statistique et des études économiques aAnnuel 1tLa France des servicesx1274-8560 aServicesyFrancexStatistiquesxPériodiques02aInstitut national de la statistique et des études économiquesc(France) 3aFRbAbesc20060919gAFNOR 3aFRbISSNc20060706 a074 uhttp://www.insee.fr/fr/ppp/publications/collect_ref.asp?coll=13&paru=1&avis=2&pres=14 zAccès libre au texte intégral1 b(2006) -(2008)cParisdMagasins/AnnexeeP 8° 6788 aZPAY aGEO RA4.06 France 01 aDEW 338.401147nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003700163207002300200210004500223210003600268326001600304440003000320530001900350606003400369606003800403676000800441801001300449856009200462856010800554955007600662972000900738992002600747992001200773078577128000062166420130319051848.01 a1765-8888 a0000621664 a b20032008 fre 01 ba0 afre aFR a 0  ar aah z 0 10aSèveeles tribunes de la santé 1aN°1 (hiver 2003)- aPariscPresses de Sciences-Pod2007-2008 aPariscEd. de santéd2003-2006 aTrimestriel 1tLes tribunes de la santé10aSèveb(Paris) aSanté publiquexPériodiques aPolitique sanitairexPériodiques a360 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue.php?ID_REVUE=SEVE zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (hiv-2003) -no. 18 (pri-2008)cParisdMagasins/AnnexeeP 8° 6765 aZPAY aGEO RA4. 06 France 01 aDEW 36001058cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001700069035001700086035002000103035001500123100004100138101000800179102000700187105001800194110001600212200001600228207002400244210002400268452004400292530002600336606002900362801003000391801002300421802000700444856007800451856005200529955007000581992003300651992001200684037423061000121929520130319051848.01 a1363-4607 accn1363-4607 accn7204/1870 aissn13634607 a(OCoLC)38877323 a0001219295 a19980821a19989999u y0frey50 ba0 aeng aGB ay 0  aaha 0uu 10aSexualities 0aVol.1, no.1 (1998)- aLondoncSaged1998- 1tSexualities (London. Online)x1461-738210aSexualitiesb(London) aSexualitéxPériodiques 3aFRbAbesc20110224gAFNOR 3aFRbISSNc20070412 a024 uhttps://acces-distant.sciences-po.fr/fork?http://sexualities.sagepub.com/ zContenu : accès au texte intégral depuis 19981 bvol. 9 no. 5 (dec-2006) -....cParisdMagasins/AnnexeeP 8° 7175 aGEO RS Sans aspect régional aDEW 15501189cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200002000180210004000200326001200240606004600252606003600298607005400334710003300388801003000421801002300451802000700474856003400481856006400515955007300579955011600652972000900768992002400777992001400801089746325000119030120131112160644.01 a1221-6720 aissn12216720 a0001190301 a19930721a19929999k y0frey50 ba0 arum aRO ay  ar aafu uu 10aSfera politicii aBucuresticSocietatea civilad1992- aMensuel aScience politiqueyRoumaniexPériodiques aScience politiquexPériodiques aRoumaniexPolitique et gouvernementxPériodiques02aSocietatea civila (Bucarest) 3aFRbAbesc20081014gAFNOR 3aFRbISSNc20081014 a264 uhttp://www.sferapoliticii.ro/ zContenu : accès au texte intégral depuis le no. 78 (2000)1 bno. 131/132 (jan/fev-2009) -....cParisdMagasins/AnnexeeP 8° 71411 bvol. 1 no. 1 (dec-1992) -no. 26 (mar-1995)cParisdMagasins/AnnexeeP F° 0527wManquants: no. 14, 15, 16 et 18 aZSAB aGEO RA8.13 Roumanie aDEW 949.801069cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101001300125102000700138106000600145110001600151200005300167210004000220326001600260510002700276607002400303607004300327607003800370710002600408801003000434801002300464802000700487856004900494856005100543955007100594972000900665992002100674992001200695077582268000108387820130319051849.01 a1810-147X aissn1810147X a0001083878 a20030523a20049999k y0frec0103 ea0 achiaeng aMO ar aaha 10aShén zhōu jiāo liú =dChinese cross currents aMacaucMacau Ricci Instituted2004- aTrimestriel10aChinese cross currents aChinexPériodiques aChinexSciences socialesxPériodiques aChinexCivilisationxPériodiques02aMacau Ricci Institute 3aFRbAbesc20061009gAFNOR 3aFRbISSNc20030523 a004 uhttp://www.riccimac.org/eng/ccc/previous.htm zContenu : sommaires depuis vol. 1, no. 1, 20041 bvol. 1 no. 1 (jan-2004) -....cParisdMagasins/AnnexeseP 8° 6972 aZPAY aGEO RI3.01 Chine aDEW 95101181cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001700069035001700086035001500103100004100118101000800159102000700167105001800174110001600192200006000208207002700268210003800295320003300333326002200366430004000388530002200428607003600450607004600486801003000532801002300562802000700585856007400592856005900666955007000725992001200795036750050000113276220130319051849.01 a1361-7362 accn1361-7362 zccn7135/1256 aissn13617362 a0001132762 a19980709a19939999k y0frey0103 ba0 aeng aGB ay 0  aaja 0uu 10aSibiricaeinterdisciplanary journal of siberian studies 0aVol.1, no.1 (1993/94)- aOxfordaNew YorkcBerghahnd2002- aN'a pas paru de 1996 à 2001 aTrois n°s par an 1tSiberica (Portland, Or.)x1049-928810aSibiricab(Keele) aSibérie (Russie)xPériodiques aSibérie (Russie)xHistoirexPériodiques 3aFRbAbesc20080304gAFNOR 3aFRbISSNc20060706 a024 uhttp://berghahn.publisher.ingentaconnect.com/content/berghahn/sibiric zContenu : sommaires depuis le vol. 2 n° 1, April 20021 bvol. 5 no. 1 (pri-2006) -....cParisdMagasins/AnnexeeP 8° 7013 aDEW 95701046nas 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000145001502100032002953260011003276060047003386070046003857100083004318010013005148560028005278560059005559550053006149720009006679910018006769920016006949920022007100000329295000032929520130319051849.0 a0000329295 a a19 9999k fre ba0 ager aCH a 0  ar aak z 0 10aSicherheitfForschungstelle für Sicherheitspolitik und Konfliktanalyse der ETH Zürich und Militärische Führungsschule an der ETH Zürich aZürichcETH Zürichd198?- aAnnuel aSécurité nationaleySuissexPériodiques aSuissexPolitique militairexPériodiques02aForschungsstelle für Sicherheitspolitik und Konfliktanalysec(Zurich, Suisse) 0aFRbFNSP uhttp://www.fsk.ethz.ch/ z:Contenu : texte intégral du dernier rapport en ligne1 b(1999) -....cParisdMagasins/AnnexeeP 8° 6523 aZGRA aexempb201212 aDEW 355-359 aGEO RA5.14 Suisse01160nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000510013921000540019032600160024445200470026053000260030760600250033360600290035880100210038785602330040895500700064195701040071197200090081599100180082499200160084203896340X000004194920130920144136.01 a0097-9740 aFNSP223379 a19900101a19759999 ba0 aeng aUS aaha 10aSignsejournal of women in culture and society aChicago, Ill.cUniversity of Chicago Pressd1975- aTrimestriel 1tSigns (Chicago, Ill. Online)‎x1545-694310aSigns (Chicago, Ill.) aFemmesxPériodiques aFéminismexPériodiques 3aFRbCCN0097-97404 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=SIG&site=ehost-livezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 3 (pri-1978) -....cParisdMagasisn/AnnexeeP 8° 40311 bvol. 1 (1975) -vol. 10 (1985) ; vol. 1 (1975) -vol. 20 (1995)cParisdMagasins/AnnexeeP Index 0588 aZCAD aexempb201001 aDEW 305-30601380nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154207004500178210004200223326001500265430003500280517002600315606003700341606004300378710008700421711007000508711005300578856010800631856010800739955014400847972000900991991001801000992001201018040266702000000708220130319051850.01 a1046-8781 aFNSP111598 a0000007082 a19900426b19902009 ba0 aeng aUS aaha 10aSimulation & gaming 1aVol. 21 no 1 (1990)-vol. 40 no. 6 (2009) aNewbury Park, Calif.cSaged1990-2009 aBimestriel 1aSimulation & games,x0037-550010aSimulation and gaming aJeux, Théorie desxPériodiques aSimulation, Méthodes dexPériodiques02aAssociation for Business Simulation and Experiential Learningc(Winter Park, Fla.)02aAssociation internationale de simulation et de jeux d'entreprises02aNorth American Simulation and Gaming Association4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 21 no. 1 (mar-1990) -vol. 27 no. 1 (mar-1996) ; vol. 32 no. 1 (mar-2001) -vol. 40 no. 6 (dec-2009)cParisdMagasins/AnnexeeP 8° 2763 aZSAB aexempb201105 aDEW 30101092nls 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000109001502070010002592100032002692300024003013000032003253260011003573370017003686070050003856070064004357100019004998010013005188560094005318560077006259920022007029920014007249920016007380001046990000104699020130319051850.0 a0001046990 a a19979999k fre 01 ba0 aita aIT ar aa z  adr 10aSintesi delle note sull'andamento dell'economia delle regioni italiane nel...b[Ressource électronique] 1a1997- aRomacBanca d'Italiad1998- aRevue électronique aTexte intégral depuis 1997 aAnnuel aFichiers PDF aItaliexConditions économiquesxPériodiques aItaliexConditions économiquesxStatistiquesxPériodiques02aBanca d'Italia 0aFRbFNSP4 uhttp://www.bancaditalia.it/pubblicazioni;internal&action=_framecontent.action&Target=_top zContenu : texte intégral depuis 1997, existe aussi en version anglaise. aGEO RA6.03 Italie aDEW 330.9 aDEW 310-31901084nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001300154210010900167530002100276606005400297712009000351856006000441856004000501955008600541957010900627991001800736992002800754992001200782039203271000001083920130319051850.01 a0213-7577 aFNSP120768 a0000010839 a19900716b19872000 ba0 aspa aES aaub 10aSintesis aMadridcAIETI, Asociación de investigación y especialización sobre temas iberoamericanosd1987-[2000] 0aSintesisbMadrid aSciences socialesyAmérique latinexPériodiques02aAsociación de investigación y especialización sobre temas iberoamericanos (Madrid)4 uhttp://www.arce.es/din/AR_sumarios_esp.idc?IdRevista=58 zContenu : sommaires depuis le n°241 bno. 2 (1987) ; no. 6 (1988) -no. 27/28 (1997)cParisdMagasins/AnnexeeP 8° 52151 bno. 1 (1987)- no. 24 (1995)cParisdMagasins/Annexezcet index se trouve dans le n°25, 1996 de la revue aexempb201109 aGEO RD Amérique latine aDEW 98000895nls 2200301 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000050001502100071002002300024002713260031002953360024003263370024003506060041003746760013004157100054004288010013004828300007004958560055005028560036005570000756429000075642920130827154118.0 a0000756429 a a20029999k fre 01 ba0 aeng aSE ar aby z  adr 10aSIPRI policy paperb[Ressource électronique] aSolnacStockholm International Peace Research Instituted2002-.... aDonnées textuelles aCollection de monographies aDonnées textuelles aAccès par Internet aSécurité internationalez1990-.... a327v21a02aInstitut international de recherches pour la paix 0aFRbFNSP adm4 uhttp://books.sipri.org/index_html?c_category_id=50 zAccès libre au texte intégral01170nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210004300173326001100216430004900227517006200276530002700338606004400365606002800409606003100437676000800468710005400476801002100530856009400551955006700645955005300712972000900765991001800774992001600792040082709000000497120131202172833.01 a0953-0282 aFNSP107118 a0000004971 a19900101a19879999 ba0 aeng aSE aaku 10aSIPRI yearbook aOxfordcOxford University Pressd1987- aAnnuel 1aWorld armaments and disarmamentx(0347-2205)10aStockholm International Peace Research Institute yearbook00aSIPRI yearbookb(1987) aSécurité internationalexPériodiques aArmementsxPériodiques aDésarmementxPériodiques a35502aInstitut international de recherches pour la paix 3aFRbCCN0579-5508 uhttp://editors.sipri.se/pubs/yb01/pr01.htmlzContenu : sommaires et résumés depuis 19941 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3551 b(1987) -....cParisdMagasins/AnnexeeP 8° 5423 aZPAY aexempb200009 aDEW 355-35901414nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001200139210003700151326001500188530002000203606003600223606004500259676000800304710004700312801002100359856019100380856024600571955006600817955009400883972000900977991001800986992002101004992002301025992001601048039189295000006949020130904112404.01 a0210-0223 aFNSP321447 a19900101a19739999 ba0 aspa aES aagu 10aSistema aMadridcFundacion Sistemad1973- aBimestriel10aSistemabMadrid aScience politiquexPériodiques aScience politiqueyEspagnexPériodiques a94002aInstituto de técnicas socialesc(Espagne) 3aFRbCCN0210-02234 uhttp://www.fundacionsistema.comzContenu : sommaire du dernier numéro ; recherche par titre d'article, auteur, n°, date de parution sur tous les sommaires à partir du n°1, janv. 19734 uhttp://www.revistasculturales.com/revistas/83/sistema.htmlzContenu : sommaires des trois derniers numéros en page d'accueil ; recherche par titre d'article, auteur, n°, date de parution sur tous les sommaires à partir du n°1, janv. 19731 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 bno. 1 (1973) -no. 80/81 (1987) ; no. 112 (1993) -....cParisdMagasins/AnnexeeP 8° 3470 aZCAD aexempb200905 aGEO RQ Universel aGEO RA6.02 Espagne aDEW 320-32101285nls 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001341350018001502000125001682100027002932300024003203200103003443200089004473260015005366070059005516070051006106070068006616070049007297120061007788010013008398300008008528560058008609550029009180000314400000031440020130319051850.0 a0000314400 a a19909999k fre ba0 aeng aSE a 0  az aau z 0  adr 10aSITE working papers - Stockholm Institute of Transition Economics and East European Economiesb[Ressource électronique] aStockholmcSITEd1990- aDonnées textuelles aAccès au 21/04/2000 : World-Wide Web. URL : http://www.hhs.se/site/Publications/workingpapers.htm aTexte intégral en anglais, russe ou suédois télédéchargeable avec Adobe Acrobat aCollection aEurope de l'EstxConditions économiquesxPériodiques aEx-URSSxConditions économiquesxPériodiques aEurope de l'EstxPolitique économiquez1989-....xPériodiques aEx-URSSxPolitique économiquexPériodiques02aHandelshögskolan i StockholmbÖstekonomiska institutet 0aFRbFNSP amfo4 uhttp://www.hhs.se/site/Publications/workingpapers.htm1 rConsultable sur Internet00849nas 2200277 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000043001552100028001983260011002266060047002376060056002847100043003408560055003839550092004389720009005309920016005399920016005550000134059000013405920130319051850.0 a1020-2129 aFNSP540981 a0000134059 a19940810a19819999 f ba0 afre aUS aaka 13aLa Situation des enfants dans le monde aNew YorkcUNICEFd1981- aAnnuel aEnfantsxConditions socialesxPériodiques aEnfantsxProtection, assistance, etc.xPériodiques02aFonds des Nations Unies pour l'enfance uhttp://www.unicef.org/french/infores/pubstitle.htm1 b(1981/1982) -(1985) ; (1988) -(1990) ; (1993) -....cParisdMagasins/AnnexeeP 4° 6385 aZGRA aDEW 305-306 aDEW 360-36301324nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006400139210002100203215005700224225003200281326001100313452008400324530007700408606004600485606003000531676000800561710007200569801002100641856008400662955006200746955005500808955008600863972000900949992001600958039241742000012080120131018115244.01 a0251-1460 aFNSP497899 a19900101a19479999 f ba0 afre aIT aaku 13aLa Situation mondiale de l'alimentation et de l'agriculture aRomecFAOd1947- a+ disquette "Time series for SOFA" à partir de 199321aCollection FAO. Agriculture aAnnuel 1tSituation mondiale de l'alimentation et de l'agriculture (En ligne),x1564-336013aLa Situation mondiale de l'alimentation et de l'agriculture‎bImprimé aAlimentsxApprovisionnementxPériodiques aAgriculturexPériodiques a33802aOrganisation des Nations Unies pour l'alimentation et l'agriculture 3aFRbCCN0251-1460 uhttp://www.fao.org/publications/sofa/fr/zAccès au texte intégral depuis 19471 bLa dernière annéecParisd27, Salle 1er étageeDEW 3381 b(1947) -(1979)cParisdMagasins/AnnexeeCOL4°00401 b(1980) -(1990) ; (1992) -(1997) ; (2002) -...cParisdMagasins/AnnexeeP 4° 5455 aZPAY aDEW 338.1-301529nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008600154210008100240326001600321430006100337607002300398607003000421607002500451607003400476710006300510801002100573856009000594856010800684856008100792856009000873856003800963955007101001972000901072991001801081992003201099992001201131038794586000004240120140108104938.01 a0037-6779 aFNSP224339 a0000042401 a19900101a19619999 ba0 aeng aUS aaha 10aSlavic revieweAmerican quarterly of Russian, Eurasian, and East European studies a[Seattle]cAmerican Association for the Advancement of Slavic Studiesd1961- aTrimestriel 1aAmerican Slavic and East European reviewxISSN 0037-6779 aURSSxPériodiques aPays slavesxPériodiques aRussiexPériodiques aEurope de l'EstxPériodiques02aAmerican Association for the Advancement of Slavic Studies 3aFRbCCN0037-67794 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00376779.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po zPour American Slavic and East European review via JSTOR, voir URL ci-dessous uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/10497544.html4 uhttp://www.slavicreview.uiuc.edu/1 bvol. 20 no. 3 (oct-1961) -....cParisdMagasins/AnnexeeP 8° 1273 aZPAY aexempb201102 aGEO RA2.02 Europe orientale aDEW 94701247nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210006900182326001600251430004500267440004300312606003900355606005100394710007000445801002100515856004300536856006700579955009100646955009100737972000900828992002100837992002300858992001600881038724332000004241820130319051851.01 a0019-848X aFNSP224366 a0000042418 a19900101b19702000 ba0 aeng aUS aaha 10aSloan management review aCambridge, Mass.cSloan Management Review Associationd1970-2000 aTrimestriel 1aIndustrial management review (0884-8211) 1tMIT Sloan management reviewx1532-9194 aGestion d'entreprisexPériodiques aGestion d'entrepriseyEtats-UnisxPériodiques02aMassachusetts Institute of Technology. Sloan School of Management 3aFRbCCN0019-848X4 uhttp://mitsloan.mit.edu/smr/index.html zContenu : sommaires et résumés depuis le vol. 37, n°1, 19951 bvol. 20 no. 1 (aut-1978) -vol. 42 no. 1 (hiv-2000)cParisdMagasins/AnnexeeP 4° 44311 bvol. 15 no. 1 (aut-1973) -vol. 19 no. 3 (pri-1978)cParisdMagasins/AnnexeeP 8° 3367 aZPAY aGEO RQ Universel aGEO RC2 Etats-Unis aDEW 650-65801136nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000095001642100061002593260015003204400069003356070060004046070042004646070052005067100050005588010013006088560026006218560056006479550086007039720009007899920012007980000613877000061387720130319051851.01 a1335-6259 a0000613877 a b20002005 fre 01 ba0 aeng aSK a 0  ar aaj z 0 10aSlovak foreign policy affairsereview for international politics, security and integration aBratislavacSlovak Foreign Policy Associationd2000-2005 aSemestriel 1tInternational issues & Slovak foreign policy affairs,x1337-5482 aEurope de l'EstxIntégration économiquexPériodiques aEurope de l'EstxUnitéxPériodiques aSlovaquiexRelations extérieuresxPériodiques02aSlovenska spolocnost' pre zahranicnu politiku 0aFRbFNSP4 uhttp://www.ceeol.com/ zContenu: sommaires et résumés des n° depuis 20031 bvol. 3 no. 2 (aut-2002) -vol. 6 no. 2 (2005)cParisdMagasins/AnnnexeeP 8° 6753 aZPAY aDEW 32701072nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210004100178326002500219607002500244607002300269607002600292710005600318856008500374856006100459955006000520972000900580991001800589992003900607992002000646992005600666992001200722039305716000004669420130319051851.01 a0183-6080 aFNSP237969 a0000046694 a19900101a19789999 ba0 afre aFR aaky 10aSlovo (Paris, 1978) aPariscPublications Langues'Od1978- aUn n° double par an aRussiexPériodiques aURSSxPériodiques aEx-URSSxPériodiques02aCentre d'études russes et ex-soviétiquesc(Paris)4 uhttp://www.inalco.fr/ina_gabarit_rubrique.php3?pub=1&id_rubrique=1886&cat_rub=654 zContenu : sommaires en format Word depuis le n°14, 19941 bvol. 4 (1982) -....cParisdMagasins/AnnexeeP 8° 5761 aZPAY aexempb201111 aGEO RA7.21 Russie (depuis 1991-92) aGEO RA7.01 URSS aGEO RA7.02 Etats successeurs de l'Union soviétique aDEW 94701247nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154207002400184210002400208326002500232326002700257326002900284434005800313517003200371606002900403606003100432606002900463606004700492676000800539856010900547856010800656955006600764972000900830991001800839992001600857037392379000008264320140110161308.01 a0959-2318 aFNSP368527 a0000082643 a19900101a19909999 ba0 aeng aGB aaia 10aSmall wars & insurgencies 1aVol.1, no.1 (1990)- aLondoncCassd1990- a5 n°s par anb2011- aTrimestrielb2006-2010 a3 n°s par anb1990-2005 1tLow intensity conflict and law enforcementx0966-284710aSmall wars and insurgencies aTerrorismexPériodiques aRévolutionsxPériodiques aGuérillasxPériodiques aConflits de basse intensitéxPériodiques a3554 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713636778db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 3 no. 1 (1992) -....cParisdMagasins/AnnexeeP 8° 5906 aZSAB aexempb201111 aDEW 355-35901091nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154207002400181210002400205326001600229517002900245606002400274856009500298856008200393856008500475856010800560955007000668972000900738991001800747992001200765040099326000019676820130319051852.01 a0964-6639 aFNSP722198 a0000196768 a19900101a19929999 ba0 aeng aGB aaha 10aSocial & legal studies 1aVol.1, no.1 (1992)- aLondoncSaged1992- aTrimestriel10aSocial and legal studies aDroitxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sagepub.co.uk/journal.aspx?pid=105776 zContenu : sommaires depuis le vol. 6, n°1, mars 1997 ; résumés depuis 19984 uhttps://acces-distant.sciences-po.fr/fork?http://sls.sagepub.com/content/by/year zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 1 (mar-1996) -....cParisdMagasins/AnnexeeP 8° 6269 aZPAY aexempb201301 aDEW 34001591nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200009100154207001800245210007600263210002400339326002300363326002600386517006800412606004000480710009000520801002100610856007000631856010800701955011600809955010300925957009301028972000901121991002001130991001801150992002101168992001601189038795000000004238520140109172008.01 a0037-7686 aFNSP224312 a0000042385 a19900101a19539999 ba0 amul aBE aaha 10aSocial compasserevue des études socio-religieusesdreview of socio-religious studies 1ano. 1 (1953)- aLouvain, etc.cCentre de recherches socio-religieuses, etc.]d1953-1988 aLondoncSaged1989- aTrimestrielb1969- aBimestrielb1953-196810aSocial compasseinternational review of socio-religious studies aSociologie religieusexPériodiques02aFédération internationale des instituts de recherches sociales et socio-religieuses 3aFRbCCN0037-76864 uhttps://acces-distant.sciences-po.fr/fork?http://scp.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 17 no. 1 (1960) -....cParisdMagasins/AnnexeeP 8° 1915wManquant (épuisés) : vol. 36,1989 et 37, 19901 bvol. 2 no. 5 (1953) ; vol. 6 no. 1 (1959) -vol. 6 no. 6 (1959)cParisdMagasins/AnnexeeP 4° 19311 bvol. 11 (1964) -vol. 20 (1973)zIndex se trouve dans le vol. 21, no. 3, 1974 de la revue aZSAB aPériobTP03 P4 aexempb201009 aGEO RQ Universel aDEW 305-30601066nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210007400174326001500248606002900263606003800292710004400330801002100374856010900395856010800504955008200612972000900694991001800703992001900721992001200740039261697000004237820130319051852.01 a0253-3952 aFNSP224298 a0000042378 a19900101a19759999 ba0 aeng aZA aaja 10aSocial dynamics aRondeboschcUniversity of Cape Town, Faculty of Social Scienced1975- aSemestriel aSociologiexPériodiques aSociologieyAfriquexPériodiques02aCentre for African Studies (Rondebosch) 3aFRbCCN0253-39524 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t791476125db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jun-1975) -vol.33 no. 2 (dec-2007)cParisdMagasinseP 8° 4444 aZPAY aexempb200911 aGEO RE Afrique aDEW 30101514nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001800154210006500172210005000237326001600287606004100303801002100344856012800365856010800493856009000601856010800691955013300799957018200932972000901114991001801123992002301141992001201164038795051000004752820130319051852.01 a0037-7732 aFNSP240776 a0000047528 a19900101a19259999 ba0 aeng aUS aahu 10aSocial forces aChapel Hill, N.C.cUniversity of North Carolina Pressd1962- aBaltimore, Md.cWilliams & Wilkinsd1925-1962 aTrimestriel aSociologieyEtats-UnisxPériodiques 3aFRbCCN0037-77324 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=SFR&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00377732.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 4 no. 4 (1928) ; vol. 27 no. 1 (1948) -vol. 84 no. 4 (2006)cParisdMagasins/AnnexeeP 8° 0076wmanque vol. 36 (1957/1958)1 bvol. 1 (1922) -vol. 50 (1972)cParisdMagasins/AnnexeeP Index 0242zvol. 49 (1971) -vol. 63 (1985): années indexées dans Cumulative index of sociology journals (P Index 0614) aZSAB aexempb200906 aGEO RC2 Etats-Unis aDEW 30101479nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210003200176210003100208326002200239326002700261326002800288530002900316606003900345606004300384856005700427856005900484856012800543856010800671856010900779856010800888955006600996972000901062991001801071992001601089036737690000015465920130319051852.01 a1350-4630 aFNSP603575 a0000154659 a19900101a19959999 ba0 aeng aGB aaga 10aSocial identities aAbingdoncCarfaxd1995-2004 aAbingdoncRoutledged2005- aBimestrielb2004- aTrimestrielb1999-2003 a3 nos par anb1995-1998 0aSocial identitiesbPrint aIdentité collectivexPériodiques aRelations interethniquesxPériodiques4 uhttp://www.tandf.co.uk/journals/carfax/13504630.html zContenu : sommaires depuis le vol. 2, n°1, fév. 19964 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=SEN&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713445719db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1995) -....cParisdMagasins/AnnexeeP 8° 6111 aZSAB aexempb201212 aDEW 305-30601016nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210004500173326001600218430004000234606003600274606003600310801002100346856012800367856010800495955007200603972000900675991001800684992001200702040260283000001498520130319051852.01 a1043-1578 aFNSP141122 a0000014985 a19900101a19889999 ba0 aeng aUS aahu 00aSocial justice aSan Francisco, CacSocial justiced1988- aTrimestriel 1aCrime and social justicex0094-7571 aSciences socialesxPériodiques aScience politiquexPériodiques 3aFRbCCN7109/89334 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=JUS&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 15 no. 1 = 31 (1988) -....cParisdMagasins/AnnexeeP 8° 4739 aZPAY aexempb201106 aDEW 30001177nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200007400163210004900237326001600286606003600302606003600338607005300374710003600427801001300463856010100476856010800577955012000685972000900805992001600814992002100830067778429000048863520130319051853.01 a1474-7464 a0000488635 a a20029999k fre ba0 aeng aGB a 0  ar aah z 0 10aSocial policy and societyea journal of the Social Policy Association aCambridgecCambridge University Pressd2002- aTrimestriel aPolitique socialexPériodiques aChangement socialxPériodiques aGrande-BretagnexPolitique socialexPériodiques02aSocial Policy Associationc(GB) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=109371 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (2002) -....cParisdMagasins/AnnexeeP 8° 6655wlacunes: vol. 2 (2003), vol. 3 (2004), vol. 4 (2005) aZPAY aDEW 360-363 aGEO RQ Universel01056nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012310600060014111000160014720000710016321000490023432600160028344000420029960600360034171000440037780100130042185601090043485601080054395500820065197200090073399200120074207679136X000057774820130319051853.01 a1533-2942 a0000577748 a b20022005k fre ba0 aeng aUS a 0  ar aah z 0 14aThe social policy journalfSocial Policy and Policy Practice Group aBinghamton, NYcThe Haworth Pressd2002-2005 aTrimestriel 1tJournal of policy practicex1558-8742 aPolitique socialexPériodiques02aSocial Policy and Policy Practice Group 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t904096502db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no 1 (2002) -vol. 4 no 3/4 (2005)cParisdMagasins/AnnexeseP 8° 6692 aZSAB aDEW 36000755nas 2200253 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210004300174326001800217606003600235856004200271856007300313955008100386991001800467992001600485040313492000023151520130319051853.01 a1072-4745 aFNSP822365 a0000231515 a19900101a19949999 ba0 aeng aUS aaia 10aSocial politics aOxfordcOxford University Pressd1994- a3 n°s par an aPolitique socialexPériodiques4 uhttp://www.oup.co.uk/socpol/contents/ zContenu : sommaires et résumés depuis le vol. 4, no.1, print. 19971 bvol. 4 no. 2 (1997) -vol. 6 no. 3 (1999)cParisdMagasins/AnnexeeP 8° 6362 aexempb201301 aDEW 360-36301337nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200002000138210006000158326001600218606003300234606002900267710005900296801002100355856009000376856010800466856010300574856010800677955007000785957007200855972000900927991001800936992003300954992001200987038795124000004338120130319051853.01 a0037-7791 aFNSP227474 a0000043381 a19900101a19539999 ba0 aeng aUS10aSocial problems aBerkeley, Calif.cUniversity of California Pressd1953- aTrimestriel aDiscriminationxPériodiques aSociologiexPériodiques02aSociety for the Study of Social Problemsc(Etats-Unis) 3aFRbCCN0030/58474 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00377791.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=106449 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jun-1953) -....cParisdMagasins/AnnexeeP 8° 20331 bvol. 1 (1952) -vol. 17 (1970)cParisdMagasins/AnnexeeP Index 0258 aZPAY aexempb201105 aGEO RS Sans aspect régional aDEW 30101174nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210006300186326001600249430003300265606003800298710003800336856009000374856010800464856010100572856010800673955007100781972000900852992001100861039141748000004348520130319051853.01 a0190-2725 aFNSP227721 a0000043485 a19900101a19799999 ba0 aeng aUS aaha 10aSocial psychology quarterly aWashington, D.C.cAmerican Sociological Associationd1979- aTrimestriel 1aSocial psychologyx0147-829X aPsychologie socialexPériodiques02aAmerican Sociological Association4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01902725.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=111307 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 48 no. 1 (mar-1985) -....cParisdMagasins/AnnexeeP 8° 0072 aZPAY aDEW 1501292nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210005200174326001600226606003600242710009700278801002100375856012800396856010800524856012800632856010800760955007100868972000900939991001800948992001200966038795175000004748620131025111523.01 a0037-783X aFNSP240687 a0000047486 a19900101a19349999 ba0 aeng aUS aahu 10aSocial research aNew YorkcNew School for Social Researchd1934- aTrimestriel aSciences socialesxPériodiques02aNew School for Social Researchc(New York)bGraduate Faculty of Political and Social Science 3aFRbCCN0037-783X4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=SRE&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=SRE&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 14 no. 1 (mar-1947) -....cParisdMagasins/AnnexeeP 8° 0067 aZPAY aexempb201101 aDEW 30001084nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210004700181326001600228606004600244710003900290801002100329856004100350856007200391856009000463856010800553955007000661972000900731991001800740992001200758039087654000004332020130319051853.01 a0145-5532 aFNSP227333 a0000043320 a19900101a19769999 ba0 aeng aUS aaha 10aSocial science history aDurham, N.C.cDuke University Pressd1976- aTrimestriel aSciences socialesxHistoirexPériodiques02aSocial Science History Association 3aFRbCCN0145-55324 uhttp://www.pitt.edu/sshist/tocs.html zContenu : sommaires et résumés depuis le vol. 21, n°3, aut. 19974 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01455532.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 9 no. 1 (hiv-1985) -....cParisdMagasins/AnnexeeP 8° 4963 aZSAB aexempb201003 aDEW 30001327nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007200154210002400226326002300250326002600273326002700299530004900326606003600375801002100411856007000432856007400502856007800576856010800654955006900762957007400831972000900905991001800914992002100932992001200953039641899000004339020130319051853.01 a0539-0184 aFNSP227490 a0000043390 a19900101a19629999 ba0 amul aGB aaha 10aSocial science informationd= Information sur les sciences sociales aLondoncSaged1962- aTrimestrielb1985- aBimestrielb1967-1984 aTrimestrielb1962-1966 1aInformation sur les sciences socialesbParis aSciences socialesxPériodiques 3aFRbCCN0539-01844 uhttps://acces-distant.sciences-po.fr/fork?http://ssi.sagepub.com/ zContenu : sommaires et résumés depuis le volume 1, n°1, avril 19624 uhttps://acces-distant.sciences-po.fr/fork?http://ssi.sagepub.com/archive/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol.1 no. 1 (avr-1962) -....cParisdMagasins/AnnexeeP 8° 18961 b(1961) -(1965) ; (1967) -(1968)cParisdMagasins/AnnexeeP Index 0003 aZSAB aexempb201112 aGEO RQ Universel aDEW 30000949nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210004300187326001500230437005700245607004900302607002400351710004000375856003300415856006700448955008100515991001800596992002100614992001200635044837879000025537720130319051853.01 a1369-1465 aFNSP891336 a0000255377 a19900101a19989999 ba0 aeng aGB aaja 10aSocial science Japan journal aOxfordcOxford University Pressd1998- aSemestriel 1aAnnals of the Institute of Social Sciencex0563-8054 aJaponxConditions économiquesxPériodiques aJaponxPériodiques02aInstitute of Social Science (Tokyo)4 uhttp://www.oup.co.uk/ssjapj/ zContenu : sommaires et résumés depuis le vol. 1, no. 1, 19981 bvol. 1 no. 1 (1998) -vol. 1 no. 2 (1998)cParisdMagasins/AnnexeeP 8° 6422 aexempb199804 aGEO RI3.22 Japon aDEW 95201018nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210005100183326001600234606004800250710005800298801002100356856012800377856010800505955007100613972000900684992002300693992001200716038799944000004335020130319051853.01 a0038-4941 aFNSP227388 a0000043350 a19900101a19689999 ba0 aeng aUS aaha 10aSocial science quarterly aAustin, Tex.cUniversity of Texas Pressd1968- aTrimestriel aSciences socialesyEtats-UnisxPériodiques02aSouthwestern Social Science Associationc(Etats-Unis) 3aFRbCCN0038-49414 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=SSQ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 49 no. 1 (jun-1968) -....cParisdMagasins/AnnexeeP 8° 2439 aZSAB aGEO RC2 Etats-Unis aDEW 30001170nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154207003000183210003400213210005700247326001600304606004300320710003900363801002100402856010900423856010800532955012000640972000900760991001800769992004500787992001200832039257770000004752620140108152637.01 a0252-9203 aFNSP240774 a0000047526 a19900101a19809999 ba0 aeng aCN aahu 10aSocial sciences in China 1avol. 1, no. 1 (mar-1980)- aBasingstokecRoutledged2009- aBeijingcSocial Sciences Publishing Housed1980-2008 aTrimestriel aSciences socialesyChinexPériodiques02aChinese Academy of Social Sciences 3aFRbCCN0252-92034 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t792221890db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mar-1980) -....cParisdMagasins/AnnexeeP 8° 4294wManquants : nos 1 à 4, 1988 et nos 1 à 4, 1989 aZPAY aexempb201010 aGEO RI3.03 Chine (République populaire) aDEW 30001617nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004000154210005400194326001600248606003300264710008200297801002100379856012800400856010800528856010100636856010800737856012800845856010800973955007101081957010201152972000901254992001601263036426830000004346820130319051853.01 a0037-7961 aFNSP227660 a0000043468 a19900101a19279999 ba0 aeng aUS aaha 14aThe Social service review (Chicago) aChicago, Ill.cUniversity of Chicago Pressd1927- aTrimestriel aService socialxPériodiques02aUniversity of ChicagobFaculty of the School of Social Service Administration 3aFRbCCN0037-79614 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=SSR&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=106569 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=SSR&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 24 no. 1 (mar-1950) -....cParisdMagasins/AnnexeeP 8° 07811 bvol. 1 (1927) -vol. 40 (1966)cParisdMagasins/Annexezse trouve dans le vol. 42 no. 1 (mar-1968) aZPAY aDEW 360-36301143nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210002400184326001500208430003100223606002800254606004200282856009500324856008400419856010800503856010800611955007100719972000900790991001800799992001200817039396304000016165420130319051853.01 a0306-3127 aFNSP621500 a0000161654 a19900101a19759999 ba0 aeng aGB aaha 10aSocial studies of science aLondoncSaged1975- aBimestriel 1aScience studiesx0036-8539 aRecherchexPériodiques aSciencesxAspect socialxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sagepub.co.uk/journal.aspx?pid=105780 zContenu : sommaires depuis le vol. 27, n°1, fév. 1997 ; résumés depuis 19984 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 25 no. 1 (fev-1995) -....cParisdMagasins/AnnexeeP 8° 6141 aZSAB aexempb201202 aDEW 30000869nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002700163207002700190210004300217326001500260532002900275606003400304801001300338856008400351856003700435955007000472972000900542992001600551074394770000059497620130319051853.01 a1477-8211 a0000594976 a a20039999 fre 01 ba0 aeng aGB a 0  ar aaj z 0 10aSocial theory & health 1aVol.1, n°1 (May 2003) aBasingstokecPalgrave Macmilland2003- aSemestriel12aSocial theory and health aSanté publiquexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.palgrave-journals.com/sth/ zContenu : sommaires et résumés1 bvol. 1 no. 1 (mai-2003) -....cParisdMagasins/AnnexeeP 8° 6735 aZSAB aDEW 360-36301075nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210004900185326002300234326002900257530003100286606003800317710005500355801002100410856023300431955007000664972000900734991001800743992001200761038795256000004333720130528171822.01 a0037-802X aFNSP227354 a0000043337 a19900101a19709999 ba0 aeng aUS aaha 10aSocial theory and practice aTallahasseecFlorida State Universityd1970- aTrimestrielb2001- a3 n°s par anb1970-200000aSocial theory and practice aPhilosophie socialexPériodiques02aFlorida State UniversitybDepartment of Philosophy 3aFRbCCN0037-802X4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=STP&site=ehost-livezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (pri-1970) -....cParisdMagasins/AnnexeeP 8° 3035 aZPAY aexempb201106 aDEW 30000833nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000018001552100024001733260011001975300018002086070055002267120048002818560064003298560036003939550058004299720009004879920031004969920016005270000119636000011963620130319051854.0 a0306-7742 aFNSP494318 a0000119636 a19940301a19709999 ba0 aeng aGB aaka 10aSocial trends aLondoncHMSOd1970- aAnnuel00aSocial trends aGrande-BretagnexConditions socialesxPériodiques02aGrande-BretagnebCentral Statistical Office4 uhttp://www.statistics.gov.uk/StatBase/Product.asp?vlnk=57484 zAccès libre au texte intégral1 bno. 1 (1970)-....cParisdMagasins/AnnexeeP 4° 3025 aZPAY aGEO RA4.02 Grande-Bretagne aDEW 360-36301232cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200003300180207003500213210003900248430004900287606005000336606004800386801003000434801002300464801003000487801002300517802000700540856010900547856010800656955006700764992002300831992001600854125010923000114507920130319051854.01 a1937-1918 aissn19371918 a0001145079 a20080618a20079999k y0frey0103 ba0 aeng aUS ay 0  ar aaga 0uu 10aSocial work in public health 0aBegan with v. 23, no. 1 (2007) aBinghamton, NYcHaworth Press, Inc 1tJournal of health & social policyx0897-7186 aPolitique sanitaireyEtats-UnisxPériodiques aMédecine socialeyEtats-UnisxPériodiques 3aFRbAbesc20090308gAFNOR 3aFRbISSNc20090225 3aFRbAbesc20080619gAFNOR 3aFRbISSNc20080618 a014 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t792306869db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 23 no. 1 (2007) -....cParisdMagasins/AnnexeeP 8° 5800 aGEO RC2 Etats-Unis aDEW 360-36301396nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002800139210006300167326001800230451005100248452005200299530002800351710005800379801002100437856040700458955006300865957012500928972000901053991001801062992001401080039976912000004331820131011161016.01 a0885-4300 aFNSP227329 a19900101a19859999 ba0 aeng aUS aaia 10aSocialism and democracy aNew YorkcResearch Group on Socialism and Democracyd1985- a3 n°s par an 1tSocialism and democracy (Online)‎x1745-2635 1ttSocialism and democracy (Online)‎x1745-263500aSocialism and democracy02aResearch Group on Socialism and Democracyc(New York) 3aFRbCCN0885-43004 uhttp://www.sdonline.orgzContenu : sommaires depuis le vol.11, n°1 = n°20, printemps-été 1997 ; sélection d'articles en texte intégral depuis le vol.16, n°1 = n°31, été-automne 2002uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713727607db=allzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (aut-1985) -....cParisdMagasins/AnnexeeP 8° 50191 bno. 11 (1990) -no. 22 (1997)cParisdMagasins/AnnexeeP 8° 5019wse trouve dans le vol. 11 no. 2 (aut-1997) de la revue aZSAB aexempb201007 aDEW 320.500793nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210003200177326001100209606002900220801002100249856003200270856003600302955007100338955005300409972000900462991001800471992001400489038877821000013177620130319051854.01 a0081-0606 aFNSP535637 a0000131776 a19900101a19649999 ba0 aeng aGB aaku 10aSocialist register aLondoncMerlin Pressd1964- aAnnuel aSocialismexPériodiques 3aFRbCCN0081-06064 uhttp://www.yorku.ca/socreg/ zContenu : sommaires depuis 19901 b(1964) -(1965) ; (1967)-(1979)cParisdMagasins/AnnexeeCOL8°33881 b(1980) -....cParisdMagasins/AnnexeeP 8° 5236 aZPAY aexempb201108 aDEW 320.500975nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002800163210002400191326001900215326002700234422004000261710007500301801001300376856004600389856010000435955007600535972000900611992001600620992002500636050893270000028775720130319051854.01 a1299-6734 a0000287757 a a19999999k fre ba0 afre aFR a 0  ar aau z 0 10aSociété civilefIFRAP aPariscIFRAPd1999- aMensuelb2003- aIrrégulierb1999-2002 1tLes Dossiers de l'IFRAP,x1166-821002aInstitut français pour la recherche sur les administrations publiques 0aFRbFNSP4 uhttp://www.ifrap.org/archives/listeSC.htm zContenu : accès à une séléction d'articles en texte intégral depuis le n°1, novembre 19991 bno. 1 (nov-1999) -no. 41 (nov-2004)cParisdMagasins/AnnexeeP 4° 6828 aZCAD aDEW 350-354 aGEO RA4.06 France 0101055cas0 2200289 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200003300162210005100195423006900246440006400315530004200379712006500421801003000486802000700516856014500523955007700668991002000745038459752000109343220130319051854.01 a0999-2529 accn0999-2529 a0001093432 a19890627b19011908 0frey0103 ba0 afre aFR ar aaf 10aSociété d'histoire moderne aPariscSociété d'histoire moderned1901-1908 1tRevue d'histoire moderne et contemporaine (1899)xISSN 0996-2743 1tBulletin de la Société d'histoire modernexISSN 0991-136710aSociété d'histoire moderneb(Paris)02aSociété d'histoire moderne et contemporainec(France)4340 3aFRbAbesc20070530gAFNOR a074 uhttp://gallica.bnf.fr/ark:/12148/cb34417332z/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1901-1908)1 bno. 1 (1928) -no. 16 (1939) ; (1959)cParisdMagasins/AnnexeeP 8° 0728 aPériobTP02 P801034nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005600139210004300195210003200238210005600270326002300326326002800349530002200377606002900399801002100428856008800449856010800537955006600645972000900711992001200720039745805000004358920131007120302.01 a0765-3697 aFNSP227934 a19900101a19849999 ba0 afre aFR aahb 10aSociétéserevue des sciences humaines et sociales aBruxellescDe Boeck Universitéd1997- aMontrougecDunodd198?-1996 aPariscMassonaVineuilcESI publicationsd1984-198? aTrimestrielb1990- a5 nos par anb1984-1989 0aSociétésbParis aSociologiexPériodiques 3aFRbCCN0765-36974 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-societes.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1984) -....cParisdMagasins/AnnexeeP 4° 5353 aZPAY aDEW 30101142nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210004100183210003200224326001600256606002900272606003700301676000800338856010300346856010800449955006600557955006300623957005700686972000900743991001800752992002200770992001200792001600028000000931520131209092239.01 a1150-1944 aFNSP116517 a0000009315 a19900613a19909999 ba0 afre aFR aaha 00aSociétes contemporaines aPariscPresses de sciences-pod2007- aPariscHarmattand1990-2006 aTrimestriel aSociologiexPériodiques aSociologieyFrancexPériodiques a3014 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-societes-contemporaines.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3011 bno. 1 (mar-1990) -....cParisdMagasins/AnnexeeP 8° 56471 b(1990) -(1999)cParisdMagasins/AnnexeeP Index 0864 aZPAY aexempb201011 aGEO RA4.06 France aDEW 30101180nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200006000139210005200199210004800251210004100299210004600340326001500386530003400401606002900435710010100464856021100565955006300776972000900839991001800848992001200866040389936000027694720130919122953.01 a1262-2966 aFNSP950852 a19990705a19959999 ba0 afre aFR aaja 10aSociétés et représentationseles cahiers du CREDHESS aPariscUniversité Paris I, CREDHESSd1997-2005 aPariscUniversité Paris I, ISORd2006-2007 aPariscNouveau monde éd.d2008-2010 aPariscPublications de la Sorbonned2011- aSemestriel00aSociétés & représentations aSociologiexPériodiques02aCentre de recherches et d'études en droit, histoire, économie et sociologie du socialc(Paris)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-societes-et-representations.htmzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 4 (mai-1997) -....cParisdMagasins/AnnexeeP 8° 6502 aZPAY aexempb201301 aDEW 30101187nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006000154210003600214210004800250326001500298430004300313434002500356530003500381606002900416606003600445607005000481801002100531856005000552856006400602955011900666992002100785992001900806992001200825039091988000004359420130319051854.01 a0147-2011 aFNSP227942 a0000043594 a19900101a19729999 ba0 aeng aUS aaga 10aSocietyetransactionesocial science and modern society aNew York, N.J.cSpringerd2007- aNew Brunswick, N.J.cTransactiond1972-2007 aBimestriel 1aTrans-action (Philadelphia)x0041-1035 1tWorldviewx0084-255910aSocietyb(New Brunswick, N.J.) aSociologiexPériodiques aSciences socialesxPériodiques aEtats-UnisxConditions socialesxPériodiques 3aFRbCCN0147-20114 uhttp://www.springerlink.com/content/0147-2011 zContenu : texte intégral depuis le vol. 1 no. 5 (jul-1964)1 bvol. 2 no. 2 (1965) -vol. 20 no. 1 (1982) ; vol. 44 no. 1 (nov/dec-2006) -....cParisdMagasins/AnnexeeP 4° 2141 aGEO RQ Universel aGEO RC1 Canada aDEW 30101180cas0 2200373 450 001001000000002001100010005001700021011001400038100004100052101001800093102000700111105001800118106000600136110001600142200001000158207002000168210006000188300007300248300004900321326002200370517001600392530005800408606002900466606003600495676000800531801003000539856003600569856003400605955006600639955005900705972000900764992001200773992002100785168120127000124297920140103172445.01 a2266-3134 a20130318a20139999k y0frey50 ba0 afredfreeeng aFR ay 0  ar aaia z 0xx010aSocio 0a01 (mars 2013)- aPariscÉd. de la Maison des sciences de l'hommed2013- aTexte en français avec résumés dans la même langue et en anglais aChaque livraison portera aussi sur un thème aTrois n°s par an10aRevue Socio10aSocio - Maison des sciences de l'hommeb(Paris. 2013) aSociologiexPériodiques aSciences socialesxPériodiques a301 3aFRbAbesc20130327gAFNOR40uhttp://socio.hypotheses.org/109 zContenu: sommaire de la revue1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3011 bno. 1 (2013) -....cParisdMagasins/AnnexeeP 8° 7204 aZPAY aDEW 301 aGEO RQ Universel01072nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200007400163210004300237326002300280326002900303452005400332606003600386606003700422710005100459801001300510856005600523856007800579955006600657972000900723992001400732074953648000057557020130319051855.01 a1475-1461 a0000575570 a a20039999k fre ba0 aeng aGB a 0  ar aah z 0 10aSocio-economic reviewfSociety for the Advancement of socio-economics aOxfordcOxford University Pressd2003- aTrimestrielb2007- a3 n°s par anb2003-2006 1tSocio-economic review ( on-line)xISSN 1475-147X) aPolitique socialexPériodiques aEconomie politiquexPériodiques02aSociety for the Advancement of Socio-Economics 0aFRbFNSP4 uhttp://www.ser.oupjournals.org/content/vol1/issue1/ zContenu : sommaires et résumés des articles depuis le vol.1, n°1, 20031 bvol. 1 no. 1 (2003) -....cParisdMagasins/AnnexeeP 8° 6719 aZPAY aDEW 338.901066nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210002800176326001800204430007100222606003700293710003400330856002600364856004600390955006700436955009800503957010800601972000900709992002200718992001200740038797690000004372520130319051855.01 a0038-0156 aFNSP228316 a0000043725 a19900101a19679999 ba0 aita aIT aaia 10aSociologia (Roma) aRomacSociologiad1967- a3 n°s par an 1aBolletino di sociologia dell' Istituto Luigi Sturzo < P 8° 1578 > aSociologieyItaliexPériodiques02aIstituto Luigi Sturzoc(Rome)4 uhttp://www.sturzo.it/ zContenu : sommaires des derniers numéros1 bvol. 33 no. 1 (1999) -....cParisdMagasins/AnnexeeP 4° 69831 bno. 1 (sep-1967) -vol. 32 no. 2/3 (1998)cParisdMagasins/AnnexeeP 8° 1578wManquant : 19871 b(1956) -(1961) ; (1967) -(1972) ; (1956) -(1993) ; (1956) -(2000)cParisdMagasins/AnnexeeP Index 0297 aZPAY aGEO RA6.03 Italie aDEW 30101417nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210002900177326001600206510005900222510007400281606003600355710004700391801002100438856012800459856010800587856011800695856007900813955006600892957007200958972000901030991001601039992001201055038797739000004371720130319051855.01 a0038-0199 aFNSP228266 a0000043717 a19900101a19609999 ba0 aeng aNL aaia 10aSociologia ruralis aAssencVan Gorcumd1960- aTrimestriel10aRevue de la Société Européenne de Sociologie Rurale10aZeitschrift der Europäischen Gesellschaft für Ländliche Soziologie aSociologie ruralexPériodiques02aSociété européenne de sociologie rurale 3aFRbCCN0038-01994 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=7QF&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=100930&Hide=100930_38 zContenu : articles en texte intégral depuis le vol. 38, n° 1, March 19981 bvol. 1 no. 1 (1960) -....cParisdMagasins/AnnexeeP 8° 21701 bvol. 1 (1960) -vol. 30 (1990)cParisdMagasins/AnnexeeP Index 0170 aZPAY aexemp201010 aDEW 30101503nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008500154210003700239326001600276430005700292440003700349517000700386530004400393606005400437606006600491606004100557710006000598801002100658801001300679856009000692856010800782955008200890957005700972991001801029992002301047992002101070992001401091036427640000004369920130319051855.01 a0038-0210 aFNSP228161 a0000043699 a19900101b19641992 ba0 aeng aUS aaha 10aSociological analysisfpublication of the American Catholic Sociological Society aWashington, D.C.cASRd1964-1992 aTrimestriel 1aThe American catholic sociological reviewx0362-515X 1aSociology of religionx1069-440410aSA00aSociological analysisbWorcester, Mass. aEglise catholiquexDoctrine socialexPériodiques aSociologiexAspect religieuxxEglise catholiquexPériodiques aSociologieyEtats-UnisxPériodiques02aAssociation for the Sociology of Religionc(Etats-Unis) 3aFRbCCN0038-0210 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00380210.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 30 no.1 (1964) -vol. 53 no. 4 (1992)cParisdMagasins/AnnexeeP 8° 27541 b(1940) -(1990)cParisdMagasins/AnnexeeP Index 0658 aexempb201010 aGEO RC2 Etats-Unis aGEO RQ Universel aDEW 20-2901238nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210005100179326001600230430002300246606002900269710004200298856012800340856010800468856010100576856010800677955006700785972000900852991001800861992002100879992001200900038797801000004366120130319051855.01 a0038-0245 aFNSP228077 a0000043661 a19900101a19619999 ba0 aeng aUS aaha 10aSociological inquiry aAustin, Tex.cUniversity of Texas Pressd1961- aTrimestriel 1aAlpha Kappa Deltan aSociologiexPériodiques02aInternational Sociology Honor Society4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=SIN&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=108650 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 45 no. 1 (1975) -....cParisdMagasins/AnnexeeP 8° 3646 aZPAY aexempb200912 aGEO RQ Universel aDEW 30101259nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000029001552100063001843260011002475300029002586060044002877120038003318560090003698560108004598560128005678560108006959550058008039720009008619910018008709920033008889920012009210000140237000014023720130319051855.01 a0081-1750 aFNSP558337 a0000140237 a19941102a19699999 ba0 aeng aGB aaka 10aSociological methodology aWashington, D.C.cAmerican Sociological Associationd1969- aAnnuel00aSociological methodology aSociologiexMéthodologiexPériodiques02aAmerican Sociological Association4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00811750.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=86F&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1(1969) -....cParisdMagasins/AnnexeeP 8° 3866 aZPAY aexempb201001 aGEO RS Sans aspect régional aDEW 30101254nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154210003800184326001600222430004200238606005000280606002900330710003700359801002100396856004100417856006700458856009000525856010800615955012800723991001800851992003500869992001200904039691705000004364020130319051855.01 a0731-1214 aFNSP228038 a0000043640 a19900101a19839999 ba0 aeng aUS aaha 10aSociological perspectives aNewbury Park, Calif.cSaged1983- aTrimestriel 1aPacific sociological reviewx0030-8919 aSociologieyPacifique (région)xPériodiques aSociologiexPériodiques02aPacific Sociological Association 3aFRbCCN0731-12144 uhttp://www.ucpress.edu/journals/sop/ zContenu : sommaires et résumés depuis le vol. 42, n°1, 19994 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/07311214.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 26 no. 1 (1983) -vol. 31 no. 4 (1988) ; vol. 39 no. 1 (1996) -vol. 41 no. 4 (1998)cParisdMagasins/AnnexeeP 8° 2538 aexempb201001 aGEO RJ Océanie, Pacifique Sud aDEW 30101015nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000270015421000390018132600160022051700070023660600290024371000470027280100210031985601280034085601080046895500650057697200090064199100180065099200210066899200120068903879781X000004748820130319051855.01 a0038-0253 aFNSP240693 a0000047488 a19900101a19609999 ba0 aeng aUS aahu 10aSociological quarterly aGreenwich, Conn.cJAI Pressd1960- aTrimestriel10aSQ aSociologiexPériodiques02aMidwest Sociological Societyc(Etats-Unis) 3aFRbCCN0038-02534 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=SQR&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 8 no.1 (1967) -....cParisdMagasins/AnnexeeP 8° 2393 aZSAB aexempb200908 aGEO RQ Universel aDEW 30101315nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210002900178326001600207530003800223606002900261801002100290856012800311856010800439856010100547856010800648955010400756957005700860972000900917991001800926992002100944992001200965038797828000004359620130319051855.01 a0038-0261 aFNSP227945 a0000043596 a19900101a19089999 ba0 aeng aGB aaha 10aSociological review aLondoncRoutledged1908- aTrimestriel 0aSociological reviewbKeele. Print aSociologiexPériodiques 3aFRbCCN0038-02614 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=SOR&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=100932 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 27 no. 2 (avr-1935) ; vol. 37 no. 1/4 (jan/oct-1945) -....cParisdMagasins/AnnexeeP 8° 00611 b(1953) -(1982)cParisdMagasins/AnnexeeP Index 0392 aZPAY aexempb200904 aGEO RQ Universel aDEW 30101019nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200003500138210005800173326001200231606003800243606002900281606003500310606003700345710005200382801002100434856003500455955006700490972000900557992002000566992005600586992003900642992001200681039049760000004374520130319051855.01 a0132-1625 aFNSP228373 a0000043745 a19900101a19759999 ca0 arus aRU10aSociologičeskie issledovaniâ aMoskvacInstitut sociologičeskih issledovanijd1975- aMensuel aSociologieyEx-URSSxPériodiques aSociologiexPériodiques aSociologieyURSSxPériodiques aSociologieyRussiexPériodiques02aInstitut sociologičeskih issledovanij (Moscou) 3aFRbCCN0132-16254 uhttp://www.isras.ru/socis.html1 bno. 4 (jul/aou-1988) -....cParisdMagasins/AnnexeeP 8° 5160 aZPAY aGEO RA7.01 URSS aGEO RA7.02 Etats successeurs de l'Union soviétique aGEO RA7.21 Russie (depuis 1991-92) aDEW 30101113cas0 2200349 450 001001000000002001100010005001700021011001400038035001400052035001700066035001500083100004100098101000800139102000700147105001800154106000600172110001600178200001500194207002900209210007600238326001600314530002400330676000800354801003000362802000700392856009000399856010800489955006600597955006600663992002200729992001200751145447901000119014020130319051855.0 a2108-8845 a143870653 aissn21088845 a0001190140 a20100629a20109999k y0frey50 ba0 afre aFR ay  ar aahu uu 10aSociologie 0aVol. 1 no. 1 (avr-2010)- aPariscPresses universitaires de France, Département des revuesd2010- aTrimestriel10aSociologieb(Paris) a301 3aFRbAbesc20100503gAFNOR a074 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-sociologie.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3011 bvol. 1 no. 1 (2010) -....cParisdMagasins/AnnexeeP 4° 7280 aGEO RA4.06 France aDEW 30101007nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154207003000183210006000213326001500273606002900288801002100317856005700338856003600395856004000431856004400471955007000515957005700585972000900642991001800651992001200669038797844000004386720130319051856.01 a0038-030X aFNSP228788 a0000043867 a19900101a19699999 ba0 afre aCA aaja 10aSociologie et sociétés 1aVol. 1, no 1 (mai-1969) - aMontréalcPresses de l'Université de Montréald1969- aSemestriel aSociologiexPériodiques 3aFRbCCN0038-030X4 uhttp://www.pum.umontreal.ca/revues/SocSoc/index.html zAccès libre au texte intégral4 uhttp://www.erudit.org/revue/socsoc/ zAccès libre aux sommaires et résumés1 bvol. 1 no. 1 (mai-1969) -....cParisdMagasins/AnnexeeP 8° 26631 b(1969) -(1977)cParisdMagasins/AnnexeeP Index 0309 aZSAB aexempb201103 aDEW 30101565nas 2200421 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200009000148207002300238210002300261210002700284210002600311210004100337326001500378452004900393530002600442606004700468606004000515606004200555676000800597710007400605801001300679856010100692856010800793955006600901955007400967955006301041972000901104991001801113992001201131045103240000038502620130902115034.01 a1295-9278 a a19999999k fre ba0 afre aFR a 0  ar aaj z 0 10aSociologies pratiquesf[Association des professionnels en sociologie de l'entreprise] 1ano. 1 (juin 1999)- aPariscAPSEd1999- aPariscAPSEd1999-2004 aPariscPUFd2005-2009 aPariscPresses de Sciences-Pod2010- aSemestriel 1tSociologies pratiques (En ligne),x2104-3787 aSociologies pratiques aSociologie des organisationsxPériodiques aSociologie du travailxPériodiques aEntreprisesxSociologiexPériodiques a30100aAssociation des professionnels en sociologie de l'entreprisec(Paris) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-sociologies-pratiques.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 3e étageeDEW 3011 bno. 1 (jun-1999) -....cParisdBibliothèque de rechercheeP 8° 65561 bno. 1 (jun-1999) -....cParisdMagasins/AnnexeeP 8° 6556 aZPAY aexempb201212 aDEW 30101021cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101001300142102000700155105001800162110001600180200003600196210006400232326001500296606002900311607002700340710004900367801003000416801002300446802000700469856005600476856006500532955005900597992001200656992001500668036918512000111605520130319051856.01 a1392-3358 accn1392-3358 aissn13923358 a0001116055 a19980721a19979999 0fre 0103 ba0 alitaeng aLT ay  aaj 10aSociologija. Mintis ir veiksmas aVilniuscVilniaus universiteto. Sociologijos katedrad1997- aSemestriel aSociologiexPériodiques aLituaniexPériodiques02aVilniaus universitetasbSociologijos katedra 3aFRbAbesc20050105gAFNOR 3aFRbISSNc20030523 a384 uhttp://www.ku.lt/smf/sociologija/zurnalas/index.php zContenu : texte intégral des n°s depuis le n° 3/4 de 20001 bno. 1 (2005) -....cParisdMagasins/AnnexeeP 4° 7204 aDEW 301 aGEO RA7.1401279nas 2200337 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000230015421000230017732600150020060600290021571000370024480100210028185601050030285601080040785601080051585601080062395500660073195700720079797200090086999100180087899200330089699200120092903879795X000004387120130319051856.01 a0038-0385 aFNSP228794 a0000043871 a19900101a19679999 ba0 aeng aGB aaga 10aSociology (Oxford) aLondoncBSAd1967- aBimestriel aSociologiexPériodiques02aBritish Sociological Association 3aFRbCCN0038-03854 uhttps://acces-distant.sciences-po.fr/fork?http://www-fr.ebsco.com/online/direct.asp?JournalID=103296 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1967) -....cParisdMagasins/AnnexeeP 8° 23671 bvol. 1 (1967) -vol. 10 (1987)cParisdMagasins/AnnexeeP Index 0634 aZSAB aexempb200910 aGEO RS Sans aspect régional aDEW 30101208nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210003300180326001600213430005300229606004000282710006000322856009000382856010800472856012800580856010800708955006700816972000900883992001400892040305740000009686420130319051856.01 a1069-4404 aFNSP422099 a0000096864 a19900101a19939999 ba0 aeng aUS aaha 10aSociology of religion aWashington, D.C.cASRd1993- aTrimestriel 1aSociological analysis (0038-0210) < P 8° 2754 > aSociologie religieusexPériodiques02aAssociation for the Sociology of Religionc(Etats-Unis)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/10694404.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=SOG&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 54 no. 1 (1993) -....cParisdMagasins/AnnexeeP 8° 2754 aZPAY aDEW 20-2900757nas 2200265 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181060006001251100016001312000024001472100030001713260014002016060029002156070027002448300096002718560026003679550062003939920024004559920012004790000071543000007154320130319051856.0 aFNSP328035 a0000071543 a19900101a18879999 ba0 afre aBE ar acaa 03aLe Soir (Bruxelles) aBruxellescLe Soird1887- aQuotidien aActualitéxPériodiques aBelgiquexPériodiques anumérisé par les Archives de la Ville de Bruxelles mais en intranet pour raisons de droit4 uhttp://www.lesoir.be/1 bLe mois en courscParisdSalle de référenceeP F° 1108 aGEO RA4.04 Belgique aDEW 05001023nls 2200337 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000039001642100005002032300005002083000053002133260011002663360056002773370018003336060032003516060030003836060047004136060044004607100096005048010013006008560067006139550005006800000432324000043232420130319051856.0 a1265-4876 a0000432324 a a19949999k fre 01 ba0 afre aFR az aak z  adr 10aSolarisb[Ressource électronique] a a aTexte intégral de la revue depuis le n°1, 1994 aannuel aDonnées textuelles accessibles uniquement en ligne aFichiers HTML aCommunicationxPériodiques aInformationxPériodiques aTechnologie de l'informationxPériodiques aSciences de l'informationxPériodiques02aGroupe Interuniversitaire de Recherches en Sciences de l'Information et de la Documentation 0aFRbFNSP4 uhttp://biblio-fr.info.unicaen.fr/bnum/jelec/Solaris/index.html1 r01038cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200006200180210006600242512000800308512003900316610003400355710006000389801003000449801002300479802000700502856002700509856004200536955005900578992001200637992001600649992002300665116930454000113173520130319051857.0 a1886-1598 aissn18861598 a0001131735 a20070807a20029999uuuy0frey0103 ba0 aspa aES ay  ar aaku uu 10aSondeo de opinión del Observatorio Político Autonómico aBarcelonacInstitut de Ciències Polítiques i Socialsd2002-10aOPA10aObservatorio Político Autonómico0 a* Sondages d'opinionyEspagne02aInstitut de ciències politiques i socialsc(Barcelone) 3aFRbAbesc20080201gAFNOR 3aFRbISSNc20070808 a0u4 uhttp://www.opa151.com/4 zAccés au texte intégral depuis 20011 bno. 5 (2006) -....cParisdMagasins/AnnexeeP 8° 7012 aDEW 303 aDEW 360-369 aGEO RA6.02 Espagne00903nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000026001642100026001903260011002164300028002276070033002557100040002888010013003288560047003418560042003889550074004309720009005049910018005139920030005319920016005610000367234000036723420130319051858.0 a1022-9515 a0000367234 a a19949999k fre ba0 aeng aZA a 0  ar aak z 0 10aSouth Africa yearbook aPretoriacGCISd1994- aAnnuel 1tSouth Africax0302-0681 aAfrique du SudxPériodiques02aSouth African Communication Service 0aFRbFNSP4 uhttp://www.info.gov.za/documents/index.htm4 zPublication en ligne depuis 1998/19991 b(1995) -(1999) ; (2004/2005)-....cParisdMagasins/AnnexeeP 8° 3618 aZGRA aexempb201108 aGEO RF3.19 Afrique du Sud aDEW 966-96901490cas0 2200409 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035001500100100004100115101000800156102000700164105001800171110001600189200010500205210007400310326001800384436004600402436003800448517001000486606004400496607003300540607005700573710005300630801003000683802000700713856010900720856010800829955007100937972000901008992003001017992002101047992001201068037403958000120312320130319051858.01 a1022-0461 a040190129 accn1022-0461 accn7132/1101 a0001203123 a19941025a19939999 0frey50 ba0 aeng aZA ay  aai 14aThe South African journal of international affairsfSouth African Institute of International Affairs aJohannesburgcSouth African Institute of International Affairsd1993- a3 n°s par an 1tInternational affairs bulletinx0258-7270 1tSouthern Africa recordx0377-544510aSAJIA aRelations internationalesxPériodiques aAfrique du SudxPériodiques aAfrique du SudxRelations extérieuresxPériodiques02aSouth African Institute of International Affairs 3aFRbAbesc20081202gAFNOR a004 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t792221889db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 16 no. 1 (avr-2009) -....cParisdMagasins/AnnexeeP 8° 7153 aZSAB aGEO RF3.19 Afrique du Sud aGEO RQ Universel aDEW 32701060nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004200154210003700196326002300233326002900256530004200285606002600327606005200353712006800405801002100473856003700494856003600531955008600567972000900653991001800662992003000680992001200710039300625000004383620130319051858.01 a0258-7203 aFNSP228729 a0000043836 a19900101a19859999 ba0 aeng aZA aaia 10aSouth African journal on human rights aBraamfonteincRavan Pressd1985- aTrimestrielb1995- a3 n°s par anb1985-199400aSouth African journal on human rights aDroityAfrique du Sud aDroits de l'hommeyAfrique du SudxPériodiques02aCentre for Applied Legal Sudiesc(Johannesburg, Afrique du Sud) 3aFRbCCN0258-72034 uhttp://www.law.wits.ac.za/sajhr/ zAccès libre au texte intégral1 bvol. 1 no. 1 (mai-1985) -vol. 18 no. 4 (2002)cParisdMagasins/AnnexeeP 8° 4935 aZSAB aexempb201003 aGEO RF3.19 Afrique du Sud aDEW 32301189nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210002700177326001500204430003900219607003000258676000800288710004700296856010800343856010800451955006600559955007000625957009300695972000900788991001800797992002400815992001200839037407864000013757820130319051858.01 a0971-5231 aFNSP549101 a0000137578 a19941006a19949999 ba0 aeng aIN aaja 10aSouth Asian survey aNew DelhicSaged1994- aSemestriel 1tSouth Asia JournalxISSN 0970-4868 aAsie du SudxPériodiques a95002aIndian Council for South Asian Cooperation uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9501 bvol. 1 no. 1 (jan-1994) -....cParisdMagasins/AnnexeeP 8° 60701 bvol. 1 (1994) -vol. 4 (1997)zCet index se trouve dans le vol.4, n° 2, 1997 de la revue aZSAB aexempb201207 aGEO RI1 Asie du Sud aDEW 95401429nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154210002400192326002300216326002900239517004000268607003200308856008300340856007200423856012800495856010800623856010900731856010800840955006600948972000901014991001801023992002601041992001201067036749036000021338320140108102956.01 a1360-8746 aFNSP770820 a0000213383 a19900101a19969999 ba0 aeng aGB aaha 10aSouth European society & politics aLondoncCassd1996- aTrimestrielb2006- a3 n°s par anb1996-200510aSouth European society and politics aEurope du SudxPériodiques4 uhttp://taylorandfrancis.metapress.com/openurl.asp?genre=journal&issn=1360-8746 zContenu : sommaires et résumés depuis le vol. 6, n°1, été 20014 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=LUS&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713636479db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1996) -....cParisdMagasins/AnnexeeP 8° 6327 aZCAD aexempb201211 aGEO RA6 Europe du Sud aDEW 94001177nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210004300200326001600243436004100259436007000300607003400370710006200404801002100466856012800487856010800615955008200723991001800805992002800823992001200851039374777000004422220130319051859.01 a0303-8246 aFNSP229606 a0000044222 a19900101a19739999 ba0 aeng aSG aaha 10aSoutheast Asian journal of social science aSingaporecTimes Academic Pressd1973- aTrimestriel 1aSoutheast asian journal of sociology 1tSoutheast asian journal of economic development and social change aAsie du Sud-EstxPériodiques02aNational University of SingaporebDepartment of Sociology 3aFRbCCN0303-82464 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=C5J&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1973) -vol. 27 no. 2 (1999)cParisdMagasins/AnnexeeP 8° 3658 aexempb201001 aGEO RI2 Asie du Sud-Est aDEW 95901082nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000300015421000600018432600160024460700600026071000550032071100480037580100210042385600900044485601080053495500830064299100180072599200230074399200140076603649416X000004674620130319051859.01 a0038-4038 aFNSP238289 a0000046746 a19900101c ba0 aeng aUS aahu 10aSouthern economic journal aChapel Hill, N.CcSouthern Economic Associationd1933-? aTrimestriel aEtats-Unis (sud)xConditions économiquesxPériodiques02aSouthern Economic Associationc(Chapel Hill, N.C.)02aUniversity of North Carolina at Chapel Hill 3aFRbCCN0038-40384 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00384038.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 18 no. 1 (1951) -vol. 51 no. 3 (1985)cParisdMagasins/AnnexeeP 8° 1098 aexempb201103 aGEO RC2 Etats-Unis aDEW 330.901467nas 2200409 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200011700154207004700271210005200318210003300370326002700403326002700430326002100457440004000478607002300518607003400541607003500575710002600610801002100636856009000657856010800747955008600855991001800941991000500959992002900964992003200993992002001025992001201045036495352000004402320130319051859.01 a0038-5859 aFNSP229134 a0000044023 a19900101b19491992 ba0 aeng aGB aaga 10aSoviet studiesea quarterly review of the social and economic institutions of the U.S.S.RfUniversity of Glasgow 1avol. 1 no. 1 (1949) - vol. 44 no. 6 (1992) aGlasgowcUniversity of Glasgow Pressd1949-19?? aOxfordcBlackwelld19??-1992 aaBimestrielb1991-1992 aTrimestrielb1950-1990 aSemestrielb1949 1aEurope-Asia studiesxISSN 0966-8136 aURSSxPériodiques aEurope de l'EstxPériodiques aPays socialistesxPériodiques02aUniversity of Glasgow 3aFRbCCN0038-58594 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00385859.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (jun-1949) -vol. 44 no. 6 (1992)cParisdMagasins/AnnexeeP 8° 0235 aexempb201101 a aGEO RN2 Pays socialistes aGEO RA2.02 Europe orientale aGEO RA7.01 URSS aDEW 94701015nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210002800173326002500201326002600226517002100252856005700273856005700330856010900387856010800496955006600604972000900670991001800679992001600697036743046000023186620130319051900.01 a1356-2576 aFNSP823421 a0000231866 a19900101a19979999 ba0 aeng aGB aaia 10aSpace & polity aAbingdoncCarfaxd1997- a3 n°s par anb2000- aSemestrielb1997-199910aSpace and polity4 uhttp://www.tandf.co.uk/journals/carfax/13562576.html zContenu : sommaires depuis le vol. 1, n°1, mai 19974 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713446924db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1997) -....cParisdMagasins/AnnexeeP 8° 6366 aZSAB aexempb201301 aDEW 320-32102392cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200003000180210005600210440005000266530003000316531001800346606003800364801003000402801001300432802000700445856018600452856018600638856018700824856018601011856019101197856018601388856019101574856018601765955005501951038085534000112006120130319051901.0 a1105-039X accn1105-039X a0001120061 a19891110b18531857 0frey0103 ba0 afre aGR ay  ar aay 13aLe Spectateur de l'Orient aAthènescC. Nikolaïdes de Philadelphied1853-18.. 1tBulletin du Spectateur de l'Orientx1105-125603aLe Spectateur de l'Orient 0aSpect. Orient aOrient, Question d'xPériodiques 3aFRbAbesc20030729gAFNOR 0aFRbFNSP a234 uhttp://books.google.fr/books?id=vudMAAAAcAAJ&dq=editions%3A9PRp42nLwPAC&hl=fr&pg=PP5#v=onepage&q&f=falsezAccès libre au texte intégral. Tome 1 (1853) numérisé sur Google Livres4 uhttp://books.google.fr/books?id=k-dMAAAAcAAJ&dq=editions%3A9PRp42nLwPAC&hl=fr&pg=PP5#v=onepage&q&f=falsezAccès libre au texte intégral. Tome 2 (1854) numérisé sur Google Livres4 uhttp://books.google.fr/books?id=YedMAAAAcAAJ&dq=editions%3A9PRp42nLwPAC&hl=fr&pg=PA67#v=onepage&q&f=falsezAccès libre au texte intégral. Tome 3 (1854) numérisé sur Google Livres4 uhttp://books.google.fr/books?id=5uZMAAAAcAAJ&dq=editions%3A9PRp42nLwPAC&hl=fr&pg=PP5#v=onepage&q&f=falsezAccès libre au texte intégral. Tome 4 (1855) numérisé sur Google Livres4 uhttp://books.google.fr/books?id=GJJMAAAAcAAJ&dq=editions%3A9PRp42nLwPAC&hl=fr&pg=PP7#v=onepage&q&f=falsezAccès libre au texte intégral. Tome 5 (1855-1856) numérisé sur Google Livres4 uhttp://books.google.fr/books?id=OedMAAAAcAAJ&dq=editions%3A9PRp42nLwPAC&hl=fr&pg=PP5#v=onepage&q&f=falsezAccès libre au texte intégral. Tome 6 (1856) numérisé sur Google Livres4 uhttp://books.google.fr/books?id=RZJMAAAAcAAJ&dq=editions%3A9PRp42nLwPAC&hl=fr&pg=PP7#v=onepage&q&f=falsezAccès libre au texte intégral. Tome 7 (1856-1857) numérisé sur Google Livres4 uhttp://books.google.fr/books?id=bJJMAAAAcAAJ&dq=editions%3A9PRp42nLwPAC&hl=fr&pg=PR3#v=onepage&q&f=falsezAccès libre au texte intégral. Tome 8 (1857) numérisé sur Google Livres1 b(1855) -(1857)cParisdMagasins/Annexee8°006.41002050cas0 2200385 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157106000600175110001600181200011100197210002400308300007100332453001500403517003200418530009200450607002200542676000800564700003600572801003000608801002300638801001300661802000700674856036500681856026801046856028201314955006801596039181766000112006220130422130202.0 a2018-8404 accn7140/4902 aissn20188404 a0001120062 a19961107b18141815m y0frey0103 ba0 afre aFR ay  ar aafu uu 13aLe Spectateur ou Variétés historiques, littéraires, critiques, politiques et moralesfpar M. Malte-Brun aPariscLibr. Poulet aContinué par la suite fermée "Minerve ou variétés historiques" 1tSpettatore13aLe Spectateur (Paris. 1814)03aLe Spectateur ou Variétés historiques, littéraires, critiques, politiques et morales aFrancez1814-1815 a944 1aMalte-BrunbConradf(1775-1826) 3aFRbAbesc20071004gAFNOR 3aFRbISSNc20071003 0aFRbFNSP a004 uhttp://books.google.fr/books?id=Wljm5HYKZagC&printsec=frontcover&dq=%22Le+Spectateur+ou+Vari%C3%A9t%C3%A9s+historiques,+litt%C3%A9raires,+critiques,+politiques+et+morales%22&hl=fr&ei=iem3ToqAHJPA8QOS15SFBQ&sa=X&oi=book_result&ct=book-preview-link&resnum=1&ved=0CC8QuwUwAA#v=onepage&q&f=falsezAccès libre au texte intégral. Numéros 1 à 10 sur Google Livres4 uhttp://books.google.fr/books?id=CsnrGd5Vb_4C&pg=PA241&dq=editions:p6MlMezHn6oC&hl=fr&ei=y-u3TvTnMozb8gPN5PjuBA&sa=X&oi=book_result&ct=book-thumbnail&resnum=6&ved=0CEMQ6wEwBQ#v=onepage&q&f=falsezAccès libre au texte intégral. Numéros 11 à 20 sur Google Livres4 uhttp://books.google.fr/books?id=CE-rndJN6I0C&printsec=frontcover&dq=editions:p6MlMezHn6oC&hl=fr&ei=H-u3TtStJ9D88QPo9cn9BA&sa=X&oi=book_result&ct=book-preview-link&resnum=2&ved=0CDMQuwUwAQ#v=onepage&q&f=falsezAccès libre au texte intégral. Numéros 21 à 30 sur Google Livres1 bno. 1 (1814) -no. 30 (1814)cParisdMagasins/Annexee8°006.41400943nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000026001552100044001813260017002256060029002426070028002718010021002998560027003208560074003479550071004219550124004929920025006169920012006410000037705000003770520130319051901.01 a0038-7452 aFNSP209588 a0000037705 a19900101a19479999 ba0 ager aDE aa u 14aDer Spiegel (Hamburg) aHamburgcSpiegel-Verlag Augsteind1947- aHebdomadaire aActualitéxPériodiques aAllemagnexPériodiques 3aFRbCCN0038-74524 uhttp://www.spiegel.de/4 zcontenu : sommaire et articles en texte intégral du dernier numéro.1 bLes 6 derniers moiscParisd27, Salle Rez-de-chausséeeP 4° 10541 bvol. 7 (no. 2 (jan-1953) -vol. 7 no. 24 (jun-1953) ; vol. 15 no. 1 (jan-1961) -....cParisdMagasins/AnnexeeP 4° 1054 aGEO RA5.01 Allemagne aDEW 05001127nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001400154210003900168326001600207421003500223606005100258607004400309801002100353856007600374856009900450955006500549957012300614972000900737991001800746992002500764992001200789038801086000004425220130319051901.01 a0038-884X aFNSP229654 a0000044252 a19900101a19629999 ba0 ager aDE aaha 14aDer Staat aBerlincDuncker und Humblotd1962- aTrimestriel 1aDer Staat. Beiheft (0720-6828) aDroit constitutionnelyAllemagnexPériodiques aAllemagnexAdministrationxPériodiques 3aFRbCCN0038-884X4 uhttp://www.duncker-humblot.de/?mnu=1000&cmd=1002&tid=1&pid=2#per_issues zContenu : Sommaires depuis 2003, Résumés et certains articles en texte intégral depuis 20081 bvol.1 no. 1 (1962) -....cParisdMagasins/AnnexeeP 8° 22501 bvol. 1 (1962) -vol. 35 (1996)cParisdMagasins/AnnexeeP Index 0822zCorrespond au n°13 spécial : Der Staat. Beiheft aZCAD aexempb200904 aGEO RA5.01 Allemagne aDEW 34201371nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154207004700200210006200247326001600309440003300325530004700358606003900405606006400444710003500508801002100543856005900564856020600623955008200829957005700911991001800968992001400986992002101000038728281000000570520130319051902.01 a0020-8027 aFNSP108892 a0000005705 a19900323b19501998 f ba0 aeng aUS aahu 10aStaff papersfInternational Monetary Fund 1avol. 1 no. 1 (1950) - vol. 45 no. 4 (1998) aWashington, D.C.cInternational Monetary Fundd1950- 1998 aTrimestriel 1tIMF Staff papers,x1020-763510aStaff papers - International Monetary Fund aPolitique monétairexPériodiques aAide économiquexCoopération internationalexPériodiques02aFonds monétaire international 3aFRbCCN0020-80274 uhttp://www.imf.org/external/pubs/ft/staffp/archive.htm4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=111793zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1950) -vol. 45 no. 4 (1998)cParisdMagasins/AnnexeeP 8° 04381 b(1950) -(1980)cParisdMagasins/AnnexeeP Index 0155 aexempb201111 aDEW 338.9 aGEO RQ Universel01197nls 2200349 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000051001642100048002152300005002633000058002683260015003263300056003413370071003976060036004688010013005048560090005178560108006078560035007158560057007509550005008079920023008129920012008350000801861000080186120130319051902.01 a0038-9765 a0000801861 a a19489999k fre 01 ba0 aeng aUS az aag z  adr 10aStanford law reviewb[Ressource électronique] aStanford, CalifcStanford law reviewd1948- a aTexte intégral depuis le vol. 1, n°1, November 1948 aBimestriel aDonnées textuelles accessibles uniquement en ligne aTéléchargement de fichiers TIFF, PDF (recommandé) et PostScript aDroityEtats-UnisxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00389765.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://lawreview.stanford.edu/ zContenu : sommaires en ligne depuis le vol. 54, n°11 r aGEO RC2 Etats-Unis aDEW 34901058nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154210005900192326002300251326002900274606004900303606005900352710005500411856005800466856006400524955012000588972000900708992002300717992001600740039102009000006071620130402120115.01 a0160-323X aFNSP278293 a0000060716 a19900101a19769999 ba0 aeng aUS aaia 10aState and local government review aAthens, GacCarl Vinson Institute of Governmentd1976- aTrimestrielb2013- a3 n°s par anb1976-2012 aPolitique publiqueyEtats-UnisxPériodiques aAdministration localeyEtats-UnisxEtatsxPériodiques02aCarl Vinson Institute of Governmentc(Athens, Ga.)4 uhttp://www.cviog.uga.edu/publications/slgr/issues.php zContenu : accès aux sommaires depuis le Vol.25, n°1, 19931 bvol. 20 no. 3 (aut-1988) -vol. 37 no. 3 (2005) ; vol. 43 no. 1 (avr-2011) -....cParisdMagasins/AnnexeeP 4° 6088 aZSAB aGEO RC2 Etats-Unis aDEW 350-35401187nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000201001502100039003512300024003903260011004146060044004256060071004697100081005407110068006218010013006898560080007028560053007829550005008359920021008409920012008610001239018000123901820130319051903.0 a0001239018 a a20109999k fre 01 ba0 aeng aFR ar aak z  adr 14aThe State of Environmental migrationb[Ressource électronique] / Institut du Développement Durable et des Relations Internationales (IDDRI) /Organisation Internationale pour les migrations (OMI) aPariscIddriaGenève:cOMId2010- aRevue électronique aAnnuel aEmigration et immigrationxPériodiques aEmigration et immigrationxAspect de l'environnementxPériodiques02aInstitut du développement durable et des relations internationalesc(Paris)02aOrganisation internationale pour les migrations (OMI)c(Suisse) 0aFRbFNSP4 uhttp://www.iddri.org/Publications/The-State-of-Environmental-Migration-20104 zContenu : texte intégral du rapport depuis 20101 r aGEO RQ Universel aDEW 32501070nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200004500163210002800208326001100236451003700247606003200284606006700316676000800383710002500391801001300416856003000429856004900459955006200508955007800570972000900648991001800657992002100675992001200696039980707000061558820130319051903.01 a0887-364X a0000615588 a a19849999 fre 01 ba0 aeng aUS a 0  ar aak z 0 10aState of the worldfWorldwatch Institute aNew-YorkcNortond1984- aAnnuel 1tL'Etat de la planètex1157-7177 aEnvironnementxPériodiques aPolitique de l'environnementxAspect économiquexPériodiques a33302aWorldwatch Institute 0aFRbFNSP4 uhttp://www.worldwatch.org zContenu : résumés depuis le volume 1, 19841 bLa dernière annéecParisd27, Salle 1er étageeDEW 3331 b(1985)-(1986) ; (1988) ; (2004) -....cParisdMagasins/AnnexeeP 8° 4872 aZPAY aexempb201209 aGEO RQ Universel aDEW 33301145nas0 2200349 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102105001800109106000600127110001600133200007900149207001200228210005500240300007200295301004300367326001100410517005800421606002900479606003600508676001000544710002600554801003000580856008500610955005400695972000900749992002100758992001600779127660577000115276020130528122628.0 a0001152760 a20080925a20069999k y0frey0103 ba0 aeng aGB ay 0  ar aaka 0 10aState of the World's minoritiesfMinority Rights Group International (MRG) 0a(2006)- aLondoncMinority Rights Group Internationald2006- a2012, dernière éd. papier voir en suite en version électronique. aDemande de numérotation ISSN en cours aAnnuel10aState of the World's minorities and indigenous People aMinoritésxPériodiques aDroits de l'hommexPériodiques a305.802aMinority Rights Group 3aFRbAbesc20080925gAFNOR4 uhttp://www.minorityrights.org/zAccès au texte intégral du rapport depuis 20061 b(2007)-(2012)cParisdMagasins/AnnexeeP 8° 7051 aZPAY aGEO RQ Universel aDEW 305-30600817nls 2200265 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200010600124210005500230230002400285326001100309606002900320606003600349710002600385801001300411856008500424955000500509992002100514992001600535000124484020130528114037.0 a a20069999k fre 01 ba0 aeng aGB ar aak z  adr 10aState of the World's minoritiesb[Ressource électronique]fMinority Rights Group International (MRG) aLondoncMinority Rights Group Internationald2006- arevue électronique aAnnuel02aMinoritésxPériodiques02aDroits de l'hommexPériodiques02aMinority Rights Group 0aFRbFNSP4 uhttp://www.minorityrights.org/zAccès au texte intégral du rapport depuis 20061 r aGEO RQ Universel aDEW 305-30601153cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140110001600158200011300174207003300287210005600320326001600376606005800392606005800450710007800508801003000586801002300616802000700639856003200646856004400678955006900722992001200791992001200803058777601000111415420130319051903.01 a1532-4400 aissn15324400 a0001114154 a20010521a20019999k y1frey0103 ba0 aeng aUS ay 0  aaha 0uu 10aState politics & policy quarterlyfAmerican Political Science Association. State politics and policy section 0aVol. 1, no. 1 (Spring 2001)- aChampaign, ILcUniversity of Illinois Pressdc2001- aTrimestriel aSociologie politiqueyEtats-UnisxEtatsxPériodiques aPratiques politiquesyEtats-UnisxEtatsxPériodiques02aAmerican Political Science AssociationbState Politics and Policy Section 3aFRbAbesc20060105gAFNOR 3aFRbISSNc20010521 a014 uhttp://sppq.press.uiuc.edu/ zContient: sommaire et résumé des n°s1 bvol.6 no. 1 (mar-2006) -....cParisdMagasins/AnnexeeP 8° 6984 aDEW 320 aGEO RC201043nas 2200301 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101110001600108200007400124210003600198326001200234517006700246530007200313606002700385606002700412712001800439801002100457830003700478856013200515955005500647972000900702991001800711992001200729039245853000005032820131008173119.01 a0251-7582 a19900101a19479999 f ba0 amul aUS aafu 10aStatement of treaties and international agreements‎fUnited Nations aNew YorkcUnited Nationsd1947- aMensuel10aRelevé des traités et accords internationaux - Nations Unies10aStatement of treaties and international agreements - United Nations aTraitésxPériodiques aTraitésxRépertoires02aNations Unies 3aFRbCCN0251-7582 aenvoyé au CTLES en juillet 20134 uhttp://treaties.un.org/Pages/Publications.aspx?pathpub=Publication/MS/Page1_fr.xmlzAccès libre au texte intégral depuis 19701 b(1985) -(2005)cParisdMagasins/AnnexeeP 4° 0452 aZECH aexempb201304 aDEW 34101114nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210005700185326001100242607003700253712004300290830007600333856025400409955010400663972000900767992002000776992001200796992001600808038857723000008048020130521144611.0 a0073-6155 aFNSP358358 a0000080480 a19900101a00019999 ba0 aeng aIN aaka 10aStatistical abstract India aNew DelhicCentral Statistical Organisationd[19..]- aAnnuel aIndexStatistiquesxPériodiques02aIndebCentral Statistical Organisation a1952/1953-1953/1954 ; 1957/1958 ; 1963/1964 ; 1969---> 1984 , P 4°38234 uhttp://delhi.gov.in/wps/wcm/connect/doit/Delhi+Govt/search+results/?cx=005353914135659445069%3Awt_bv4tf_ja&cof=FORID%3A9&ie=UTF-8&q=statistical+abstract+india&sa=GozAccès au texte intégral des rapports 2007, 2008, 2010 et dernier rapport en ligne1 bConservons les 2 dernières annéescParisdMagasins/AnnexeeP 4° 3823 plus rien à partir de 2008 aZPAY aGEO RI1.13 Inde aDEW 954 aDEW 310-31901042nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000093001502100055002432300028002983260011003266070037003377100043003748010013004178560169004308560088005999550005006879920020006929920012007129920016007240001241172000124117220130319051904.0 a0001241172 a a20079999k fre 01 ba0 aeng aIN ar aak z  adr 10aStatistical abstract Indiab[Ressource électronique]/fCentral Statistical Organisation aNew DelhicCentral Statistical Organisationd2007- aRessource électronique aAnnuel aIndexStatistiquesxPériodiques02aIndebCentral Statistical Organisation 0aFRbFNSP4 uhttp://delhi.gov.in/wps/wcm/connect/doit/Delhi+Govt/search+results/?cx=005353914135659445069%3Awt_bv4tf_ja&cof=FORID%3A9&ie=UTF-8&q=statistical+abstract+india&sa=Go4 zContenu : texte intégral des rapports 2007, 2008, 2010 et dernier rapport en ligne1 r aGEO RI1.13 Inde aDEW 954 aDEW 310-31901087nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003500139210005100174300004100225326001100266430003800277510003600315607004000351710004200391856006000433856006200493955006000555955005600615972000900671991001800680992002300698992001200721992001600733038879417000007825920130425121315.0 a0081-4679 aFNSP352773 a19900101a19499999 ba0 amul aIL aaka 10aStatistical abstract of Israel aJerusalemcCentral Bureau of Statisticsd1949- aPublication en hébreu et en anglais aAnnuel 1aStatistical abstract of Palestine12aŠnatôn statîstî le-Yisra'el aIsraëlxStatistiquesxPériodiques02aIsraëlbCentral Bureau of Statistics4 uhttp://www.cbs.gov.il/reader/archive/archive_e_new.html4 zContenu : texte intégral du rapport en ligne depuis 19961 b(1954/1955) -(1979)cParisdMagasins/AnnexeeCOL8°18221 b(1981) -.(2010)cParisdMagasins/AnnexeeP 8° 5246 aZPAY aexempb201109 aGEO RG2.15 Israël aDEW 956 aDEW 310-31900910nls 2200289 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200010000124210005100224230002400275300004100299326001100340607004000351710004200391801001300433830000800446856011000454955000500564992002300569992001200592992001600604000124339520130522152603.0 a a19969999k fre 01 ba0 amul aIL ar aak z  adr 10aStatistical abstract of Israelb[Ressource électronique]/fIsrael Central Bureau of Statistics aJerusalemcCentral Bureau of Statisticsd1996- aRevue électronique aPublication en hébreu et en anglais aAnnuel aIsraëlxStatistiquesxPériodiques02aIsraëlbCentral Bureau of Statistics 0aFRbFNSP acdj4 uhttp://www.cbs.gov.il/reader/archive/archive_e_new.htmlzAccès au texte intégral du rapport depuis 19961 r aGEO RG2.15 Israël aDEW 956 aDEW 310-31901200nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200004600138210003900184326001100223440005500234607004300289676000800332710003700340801002100377856005900398856006600457955006200523955005500585955018000640972000900820992002900829992001600858038879433000008318020130426094343.01 a0081-4741 aFNSP370808 a0000083180 a19900101a18782012 ba0 aeng aUS10aStatistical abstract of the United States aWashington, D.C.cUSGPOd1878-2012 aAnnuel 1tProquest Statistical abstract of the United States aEtats-UnisxStatistiquesxPériodiques a3170 aEtats-UnisbBureau of the Census 3aFRbCCN0081-47414 uhttp://www.census.gov/compendia/statab/past_years.html zContenu : texte intégral du rapport en ligne partir de 1878.1 bLa dernière annéecParisd27, Salle 1er étageeDEW 3171 b(1980) -(2012)cParisdMagasins/AnnexeeP 8° 52491 b(1883) ; (1887) ; (1890) ; (1895) ; (1899) ; (1900) ; (1904) -(1905) ; (1908) ; (1919) ; (1925) ; (1930) ; (1944) -(1945) ; (1947) -(1979);cParisdMagasins/AnnexeeCOL8°0136 aZPAY aGEO RC Amérique du Nord aDEW 310-31900827nls 2200265 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200010900124210003800233230002400271326001100295607004300306710003700349801001300386830000800399856010400407955000500511992002900516992001600545000124356020130522153355.0 a a20129999k fre 01 ba0 aeng aUS ar aak z  adr 10aStatistical abstract of the United Statesb[Ressource électronique] /fEtats-Unis.bBureau of the Census a;aWashington, D.C.cUSGPOd2012- aRevue électronique aAnnuel aEtats-UnisxStatistiquesxPériodiques02aEtats-UnisbBureau of the Census 0aFRbFNSP acdj4 uhttp://www.census.gov/compendia/statab/past_years.htmlzAccès au texte intégral à partir de 18781 r aGEO RC Amérique du Nord aDEW 310-31901341cas0 2200361 450 001001000000002001100010005001700021020002000038035001500058100004100073101000800114102000700122105001800129106000600147110001600153200006000169207006400229210005600293215001600349300008200365326001100447440008600458517006300544517005200607607003700659712003900696801003000735801001500765801001300780801001300793856004100806955013200847077151208000114786820130319051904.0 aUSbsn 85063935 a0001147868 a20040326b18651930 a0frey0103 ba0 aeng aGB ay 0  ar aakad# 0yy 00aStatistical abstract relating to British India from ... 1a[1st] no. (1840/65); ceased with 40th no. (1895-96/1904-05) aLondoncPrinted by Eyre and Spottiswooded1865-1905 avol.d24 cm a"Vols. for issued in the series of Parliamentary papers as Papers by command" aAnnuel 1tEast India (statistical abstract). Statistical abstract relating to British India10aEast India. Statistical abstract relating to British India10aStatistical abstract for British India from ... aIndexStatistiquesxPériodiques01aGrande-BretagnebIndia Office4070 3aFRbAbesc20080602gAFNOR 0bNcDgAACR2 2bNgAACR2 0aFRbFNSP uhttp://dsal.uchicago.edu/statistics/1 bvol. 1 (1840) -(1865) ; vol. 16 (1871) -vol. 20 (1885) ; vol. 22 (1877) -vol. 32 (1897)cParisdMagasins/AnnexeeCOL8°1628(BI)00995nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003400139210003600173326001100209530003400220607003800254676000800292710002900300856012300329856004900452955006200501955005400563972000900617991001800626992002100644992001600665036433950000010164520130903170900.01 a0081-4792 aFNSP436747 a19900101a19589999 ba0 aeng aJP aaka 10aStatistical handbook of Japan aTokyocStatistics Bureaud1958- aAnnuel00aStatistical handbook of Japan aJaponxStatistiquesxPériodiques a31502aJaponbStatistics Bureau4 uhttp://www.stat.go.jp/english/data/handbook/index.htmzAccés libre au texte intégral de la dernière année en cours4 zContenu : texte intégral du dernier rapport1 bLa dernière annéecParisd27, Salle 1er étageeDEW 3151 b(1972) -.....cParisdMagasins/AnnexeeP 8° 3436 aZGRA aexempb201303 aGEO RI3.22 Japon aDEW 310-31901010nas 2200313 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000042001642100027002064300042002334400037002755300042003126070053003547100088004078010013004958560056005088560039005649550055006039720009006589920029006670000448359000044835920130319051904.0 a0081-4806 a0000448359 a b19972002k a fre ba0 aeng aKR a 0  ar aak z 0 10aStatistical handbook of Koreab(1997) aSéoulbNSOd1997-2002 1tKorea statistical handbookx0256-8055 1tExplore Korea through statistics00aStatistical handbook of Koreab(1997) aCorée (République)xStatistiquesxPériodiques02aCorée (République)bNational Statistical OfficebStatistical Publication Division 0aFRbFNSP4 uhttp://www.nso.go.kr/eng/publications/pa-list.shtml zContenu : sommaire du rapport 20021 b(2000) -(2002)cParisdMagasins/AnnexeeP 8° 6614 aZGRA aGEO RI3.13 Corée du Sud00980nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004200139210003600181326001100217517004100228606005300269676000800322710004300330801002100373856008700394955006200481955005800543955005200601972000900653992001600662038883317000000542620131219142514.0 a0082-8459 aFNSP108242 a19900101a19499999 f ba0 amul aUS aaku 10aStatistical yearbook - United Nations aNew YorkcUnited Nationsd1949- aAnnuel10aAnnuaire statistique - Nations Unies aHistoire économiquexStatistiquesxPériodiques a31002aNations UniesbDivision de statistique 3aFRbCCN0082-84594 uhttp://unstats.un.org/unsd/syb/previous.htmzaccès au texte intégral depuis 20051 bLa dernière annéecParisd27, Salle 1er étageeDEW 3101 b(1948) -(2004);cParisdMagasins/AnnexeeNU 4°00.0511 b(2005) -...cParisdMagasins/AnnexeeP 4° 7236 aZGRA aDEW 310-31901017nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003900139210005300178326001100231530003900242607004300281710004400324856010700368955007200475955008700547972000900634991001800643992002600661992001200687992001600699036434264000008056420140107120311.01 a0857-9067 aFNSP358729 a19900101a19169999 ba0 amul aTH aaka 10aStatistical yearbook [of] Thailand aBangkokcStatistical Information Divisiond1916- aAnnuel aStatistical yearbook [of] Thailand aThaïlandexStatistiquesxPériodiques02aThaïlandebNational Statistical Office4 uhttp://web.nso.go.th/eng/en/pub/pub.htmzAccès libre au texte intégral pour les années 2004 et 20071 bno 32 (1976/1980) -no 48 (2001)cParisdMagasins/AnnexeeP 4° 54941 b(1937/1939) -(1956/1958) ; (1964) -(1974/1975)cParisdMagasins/AnnexeeCOL4°0170 aZGRA aexempb201312 aGEO RI2.16 Thaïlande aDEW 959 aDEW 310-31901453nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200017200154210009100326326001100417430006200428510005300490607005200543607003700595676000800632710008100640856005500721856004200776955006200818955005300880955005800933972000900991992001601000992003501016992001201051992001601063039252035000015721420130319051904.01 a0252-3655 aFNSP609971 a0000157214 a19900101a19739999 f ba0 amul aTH aaka 10aStatistical yearbook for Asia and the PacificdAnnuaire statistique pour l'Asie et le PacifiquefUnited Nations Economic and Social Commission for Asia and the Pacific aBangkokcUnited Nations Economic and Social commission for Asia and the Pacificd1973- aAnnuel 1aStatistical yearbook for Asia and the Far Eastx0085-671110aAnnuaire statistique pour l'Asie et le Pacifique aPacifique (région)xStatistiquesxPériodiques aAsiexStatistiquesxPériodiques a31502aNations UniesbCommission économique et sociale pour l'Asie et le Pacifique4 uhttp://www.unescap.org/stat/data/syb2011/index.asp zAccés au texte intégral depuis 20071 bLa dernière annéecParisd27, Salle 1er étageeDEW 3151 b(2011) -....cParisdMagasins/AnnexeeP 4° 73271 b(1973) -(2009)cParisdMagasins/AnnexeeNU 4° 00.805 aZGRA aGEO RH Asie aGEO RJ Océanie, Pacifique Sud aDEW 950 aDEW 310-31900892nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200006300163210003700226430005100263607004000314710003900354801001300393856004400406856003700450955005500487972000900542992002300551992001600574059239387000068050020130319051904.01 a1649-1408 a0000680500 a a20019999 fre 01 ba0 aeng aIE a 0  ar aak z 0 10aStatistical yearbook of IrelandfCentral Statistics Office aDublincStationery Officed2001- 1tStatistical abstract (Dublin, 1986)x0790-8970 aIrlandexStatistiquesxPériodiques02aIrlandebCentral Statistics Office 0aFRbFNSP4 uhttp://www.cso.ie/releasespublications/ zAccès libre au texte intégral.1 b(2002) -(2007)cParisdMagasins/annexeeP 8° 6775 aZPAY aGEO RA4.01 Irlande aDEW 360-36301011nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210002400198326001100222607004100233710004900274856006400323856003600387955006400423955005500487955011800542972000900660992002400669992001600693039373584000016388120130319051904.01 a0303-6448 aFNSP627155 a0000163881 a19900101a00019999 ba0 aeng aNL aaka 10aStatistical yearbook of the Netherlands aLa HayecSDUd0001- aAnnuel aPays-BasxStatistiquesxPériodiques02aPays-BasbCentraal bureau voor de statistiek4 uhttp://www.cbs.nl/en-GB/menu/publicaties/boeken/default.htm zAccès libre au texte intégral1 b(2000) ; (2004) -(2007)cParisdMagasins/AnnexeeP 8° 67661 b(1994) -(1999)cParisdMagasins/AnnexeeP 4° 55301 b(1943/1946) -(1947/1950) ; (1961/1962) -(1963/1964) ; (1971) ; (1975) -(1979)cParisdMagasins/AnnexeeCOL4°0267 aZPAY aGEO RA4.03 Pays-Bas aDEW 310-31901111nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200005000139210005100189300008100240326001100321530005000332607003900382710005900421801002100480856018800501955005500689972000900744991001800753992002200771992001600793039286096000009044020131120100705.01 a0256-7857 aFNSP398197 a19900101a19759999 ba0 aeng aTW aaku 10aStatistical yearbook of the Republic of China aTaipeicBudget, Accounting & Statisticsd1975- a2009, dernière édition papier, à partir de 2010 en version électronique. aAnnuel00aStatistical yearbook of the Republic of China aTaiwanxStatistiquesxPériodiques02aChine (République)bBudget, Accounting and Statistics 3aFRbCCN0256-78574 uhttp://169.237.158.143/dvn/dv/ssds/faces/study/StudyPage.xhtml?globalId=hdl:IGA/10678&tab=files&studyListingIndex=0_15831e5259d251ecb92b541b3941zAccès au texte intégral depuis 20071 b(1975) -(2009)cParisdMagasins/AnnexeeP 4° 3960 aZGRA aexempb201311 aGEO RI3.02 Taiwan aDEW 310-31900885nls 2200253 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200013300124210005100257230000500308300002400313326001100337607003900348801001300387856018800400955000500588992002200593992001600615000124489220130529154828.0 a a20079999k fre 01 ba0 aeng aTW ar aak z  adr 10aStatistical yearbook of the Republic of Chinab[Ressource électronique]fChine (République). Budget, Accounting and Statistics aTaipeicBudget, Accounting & Statisticsd2007- a aRevue électronique aAnnuel aTaiwanxStatistiquesxPériodiques 0aFRbFNSP4 uhttp://169.237.158.143/dvn/dv/ssds/faces/study/StudyPage.xhtml?globalId=hdl:IGA/10678&tab=files&studyListingIndex=0_15831e5259d251ecb92b541b3941zAccès au texte intégral depuis 20071 r aGEO RI3.02 Taiwan aDEW 310-31901053nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000053001502100045002033000117002483260016003653360058003813370063004394300056005024520039005586060030005978010013006278560090006409550005007309920016007350000491582000049158220130319051904.0 a0000491582 a a19619999k fre 01 ba0 aeng aGB az aah z  adr 10aStatistician (London)b[Ressource électronique] aLondoncRoyal Statistical Societyd1961- aAccès au texte intégral (réservé aux sites de Sciences .Po) à partir de 1962 jusqu'aux 4 dernières années aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tIncorporated statistician [Ressource électronique] 1tStatistician (London)x(0039-0526) aStatistiquexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00390526.html1 r aDEW 310-31900974nas 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000044001502100051001943260011002454300038002566010062002946060093003568010013004498560055004629550085005179720009006029920016006119920014006279920031006410000286122000028612220130319051904.0 a0000286122 a a19989999k fre ba0 aeng aGB a 0  ar aak z 0 10aStatistics on international development aLondoncGovernement Statistical Serviced1998- aAnnuel 1tBritish aid statisticsx0068-121001aGrande-BretagnebDepartment for International Development aAide économique britanniqueyPays en voie de développementxStatistiquesxPériodiques 0aFRbFNSP4 uhttp://www.dfid.gov.uk/public/what/what_frame.html1 b(1994/1995-1998/1999) -(1995/1996-1999/2000)cParisdMagasins/AnnexeeP 4° 6826 aZPAY aDew 310-319 aDew 338.9 aGEO RA4.02 Grande-Bretagne01111cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200003400180207001800214210002900232440005100261530004300312710004500355801003000400801003000430856014500460955008900605991001900694991008400713036815748000108077420130319051904.01 a1962-5731 accn0116/5119 a0001080774 a19830101b18861960 y0frey0103 ba0 afre aFR ay 0  ar aak 0 10aStatistique agricole annuelle 0a(1885)-(1959) aParisc[s.n.]d1886-1960 1tStatistique agricole ... (Annuaire)x0243-682510aStatistique agricole annuelleb(Paris)02aFrancebMinistère de l'agriculture4070 3aFRbAbesc20070917gAFNOR 3aFRbAbesc20050830gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb328726954/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1885-1906)1 b(1890) -(1897) ; (1911) -(1914) ; (1916) -(1979)cParisdMagasins/AnnexeeCOL4°0042 aPériobTP01 4 anumer0 (complément de gallica : 1890, 1892 à 1897, 1911-1914, 1916 à 1938 ?)01736cas0 2200337 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200006600148210003800214301004600252303004700298440012800345517008100473517009000554517014200644517007700786517013100863530006600994712005701060801003001117856013301147955009901280991001901379039098958000108113820130319051904.0 accn7117/2386 a0001081138 a19900329b18531882k y0frey0103 ba0 afre aFR ar aaka 10aStatistique des prisons et établissements pénitentiaires... aPariscImpr. P. Dupontd1853-1882 aDemande de numérotation ISSN par le CR70 aNotice rev. d'après un vol. publ. en 1878 1tStatistique pénitentiaire pour l'année... Exposé général de la situation des services et des divers établissements...10aStatistique des prisons et établissements pénitentiaires pour l'année ...10aStatistique centrale des prisons et établissements pénitentiaires pour l'année ...10aStatistique centrale de l'administration des prisons, établissements pénitentiaires, colonies publiques et privées des jeunes détenus10aStatistique des prisons et établissements pénitentiaires pour l'année10aStatistique des prisons et établissements pénitentiaires et compte-rendu à M. le ministre de l'intérieur pour l'année ...00aStatistique des prisons et établissements pénitentiaires...02aFrancebMinistère de l'intérieurc(....-1981)4340 3aFRbAbesc20060921gAFNOR4 uhttp://gallica.bnf.fr/ark:/12148/cb41286428j/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica1 b(1853) -(1871) ; (1874) ; (1879) ; (1880) ; (1884) -(1888)cParisdMagasins/AnnexeeCOL4°0436 aPériobTP01 401997cas0 2200409 450 001001000000002001100010005001700021035001700038035001500055100004100070101000800111102000700119106000600126110001600132200004600148210004300194301004200237305003200279311012500311423004100436441004000477441005000517441004200567441004000609441024000649441021000889530004801099607003501147676001001182712003301192712005201225801003001277856016301307955008901470991001701559991001101576050927140000107558020130319051904.0 accn7210/2012 a0001075580 a20000713b18 1899 frey0103 ba0 afre aFR ar aak 10aStatistiques coloniales pour l' année... aMeluncImpr. administratived18..-1899 aDEMANDE DE NUMEROTATION ISSN EN COURS aNon publié de 1891 à 1898 aLes statistiques coloniales des années 1892-1893-1894-1895 sont publiées dans : "Résumé des statistiques coloniales" 1tRésumé des statistiques coloniales 1tStatistiques coloniales... Commerce 1tStatistiques coloniales... Industrie minière 1tStatistiques coloniales... Navigation 1tStatistiques coloniales... Finances 1tStatistiques de la population dans les colonies françaises pour l'année...bTexte impriméosuivies du relevé de la superficie des colonies françaisesfMinistère des colonies, Office colonialcMelunnImp. administratived1909-1923 1tStatistiques des chemins de fer des colonies françaises jusqu'à l'année...bTexte impriméfOffice colonial, Ministère des coloniescParisnBureau de vente des publications coloniales officiellesd191100aStatistiques coloniales pour les années... aFrancexColoniesxStatistiques a325.301aFrancebOffice colonial434001aFrancebMinistère de la marine et des colonies 3aFRbAbesc20060516gAFNOR4 uhttp://archive.org/stream/statistiquescol00unkngoog#page/n2/mode/2upzAccès libre au texte intégral. Année 1904 (Commerce) numérisée sur Internet Archive1 b(1884) -(1889) ; (1897) -(1900) ; (1902) -(1905)cParisdMagasins/AnnexeeCOL8°0637 aPériobTP01 anumer001433cas0 2200409 450 00100100000000200110001000500170002101100140003803500170005203500150006910000410008410100080012510200070013310500180014010600060015811000160016420000780018020700250025821000240028332600110030748800660031851700640038451700500044860100520049860600440055060600410059467600130063571000380064880100300068680100230071685601160073995500670085595500520092299200210097499200160099599200120101107782167X000113793520131008150025.0 a1819-8147 aissn18198147 a0001137935 a20040504a20009999u y0frey0103 ba0 afre aZZ ay  ar aak 10aStatistiques du commerce internationalfOrganisation mondiale du commerce 0aRapport annuel 2000- aGenèvecOMCd2000- aAnnuel 1tRapport annuel - Organisation mondiale du commercex1020-500410aOMC. Rapport annuel. Statistiques du commerce international10aOMC... Statistiques du commerce international02aOrganisation mondiale du commercexPériodiques aStatistiques commercialesxPériodiques aCommerce internationalxPériodiques a382v22a02aOrganisation mondiale du commerce 3aFRbAbesc20080415gAFNOR 3aFRbISSNc200804014 uhttp://www.wto.org/french/res_f/statis_f/its2012_f/its12_toc_f.htmzAccès libre au texte intégral depuis 20011 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3371 b(2000) -...cParisdMagasins/AnnexeeP 4° 6733 aGEO RQ Universel aDEW 310-319 aDEW 33702127cas0 2200457 450 001001000000002001100010005001700021011001400038035001400052035001700066035001700083035002500100035002000125035001500145100004100160101000800201102000700209105001800216106000600234110001600240200011400256210004700370517003100417517013100448517015800579530006100737607002900798607002900827710002000856801003000876801002300906801003000929801002900959802000700988830000900995856056201004945001501566955005501581991001501636991001801651039174212000112642120130319051904.0 a2021-1244 a119095505 accn7139/6225 aissn20211244 aFRBNF328727790000001 aPR049802590001J a0001126421 a19960723b190 190 0frey0103 ba0 afre aFR ay  ar aak 10aStatistiques généralesiSituation de la colonie au...fGouvernement général de Madagascar et dépendances aMeluncImpr. administratived[190.]-[190.]10aStatistiques de Madagascar10aStatistiques généraleseSituation de la Colonie au... Population, administration, agriculture, élevage, industrie, commerce10aStatistiques généraleseSituation de la Colonie au... Population, administration, justice, enseignement, agriculture, industrie, commerce et navigation10aStatistiques générales. Situation de la colonie au ... aMadagascarxStatistiques aMadagascarxPériodiques02aMadagascar4070 3aFRbAbesc20080911gAFNOR 3aFRbISSNc20080107 3aFRbAbesc20071112gAFNOR 0aFRbBNFc19970701gAFNOR a00 asdy04 uhttp://gallica.bnf.fr/Search?idArk=&n=15&p=1&lang=FR&adva=1&adv=1&reset=&urlReferer=%2Fadvancedsearch%3Flang%3DFR&enreg=&tri=&submit1=Lancer+la+recherche&catsel1=f_title&cat1=Statistiques+g%C3%A9n%C3%A9rales&ope2=MUST&catsel2=f_creator&cat2=madagascar&ope3=MUST&catsel3=f_tdm&cat3=&date=daTo&daFr=&daTo=&sel_provenance_Part=toutPartenaires&sel_provenance_Edist=toutSNE&sel_source=toutSources&dateMiseEnLigne=indexDateFrom&firstIndexationDateDebut=&firstIndexationDateFin=&tri=zAccès libre au texte intégral. Périodique numérisé sur Gallica (1905-1908) bCOL.F.01891 b(1904) -(1907)cParisdMagasins/AnnexeeCOL.F.0189 aPériobTZ anumer0 (1904)01477cas0 2200409 450 00100100000000200110001000500170002101100140003803500170005203500170006903500150008610000410010110100080014210200070015010500180015710600060017511000160018120000670019720700130026421000460027732600110032342300590033443000720039351000650046551700810053060700420061167600080065371000390066180100300070080100230073080200070075385601510076095500630091195500520097499200160102699200250104204006350X000119868620130827111146.0 a0943-5743 accn0943-5743 aissn09435743 a0001198686 a19930802a19929999k a0frey50 ba0 ager aDE ay 0  ar azka 0 10aStatistisches Jahrbuch ... für die Bundesrepublik Deutschland 1a1(1992)- aWiesbadencStatistisches Bundesamtd1992- aAnnuel 1tStatistisches Jahrbuch ... für das Auslandx0938-1376 1tStatistisches Jahrbuch ... für das vereinte Deutschlandx0941-377410aStatistical yearbook ... for the Federal Republic of Germany10aDeutschland : Statistisches Jahrbuch ... für die Bundesrepublik Deutschland aAllemagnexStatistiquesxPériodiques a31402aAllemagnebStatistisches Bundesamt 3aFRbAbesc20091021gAFNOR 3aFRbISSNc20000630 a064 uhttps://www.destatis.de/DE/Publikationen/StatistischesJahrbuch/StatistischesJahrbuch_AeltereAusgaben.htmlzTexte intégral ds rapports depuis 20061 bLa dernière annéecParisd27, Salle 1er étage:eDEW 3141 b(1992) -...cParisdMagasins/AnnexeeP 4° 5521 aDEW 310-319 aGEO RA5.01 Allemagne01179nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004100139210004100180326001100221452006500232510004600297510005100343530005600394607004100450710002400491856012400515955005700639955009000696972000900786991001800795992002400813992001600837038849143000008259220140107120958.01 a0070-3567 aFNSP368386 a19900101a18969999 ba0 amul aNL aaka 10aStatistisk arbogfDanmarks Statistik aKobenhavncDanmarks Statistikd1896- aAnnuel 1tStatistisk årbog (Danmarks Statistik. Online)‎x1601-104X10aStatistical yearbook - Danmarks Statistik10aAnnuaire statistique - Statistique de Danemark10aStatistisk årbog‎bDanmarks Statistik. Papirform aDanemarkxStatistiquesxPériodiques02aDanemarkbStatistik uhttp://www.dst.dk/en/Statistik/Publikationer/VisPub.aspx?cid=16251zAccés au texte intégral au format pdf depuis 20001 b(1980) - (1999);cParisdMagasins/AnnexeeP 4° 55321 b(1942) -(1958) ; (1966) ; (1969) ; (1973) -(1979)cParisdMagasins/AnnexeeCOL4°0282 aZPAY aexempb201312 aGEO RA3.04 Danemark aDEW 310-31901007nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004700154210004100201326001100242430004200253510003500295530005600330607004100386710003700427856004000464955005500504955005500559972000900614991001800623992002400641992001600665039552268000007826920130319051904.0 a0377-8908 aFNSP352801 a0000078269 a19900101a19649999 ba0 amul aNO aaka 10aStatistisk årbokfStatistisk sentralbyrå aOslocStatistisk sentralbyråd1964- aAnnuel 1aStatistisk arbok for Norgex0801-042010aStatistical yearbook of Norway10aStatistisk årbok - Statistisk sentralbyråb(Oslo) aNorvègexStatistiquesxPériodiques02aNorvègebStatistisk sentralbyra4 uhttp://www.ssb.no/english/yearbook/1 b(1964) -(1979)cParisdMagasins/AnnexeeCOL8°13121 b(1980) -(2006)cParisdMagasins/AnnexeeP 8° 5316 aZPAY aexempb201109 aGEO RA3.03 Norvège aDEW 310-31901090nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003500139210006100174326001100235517003500246607003900281676000800320710003700328801002100365856014300386955006200529955005300591955005500644972000900699991001800708992002200726992001600748000901148000007844920131119161802.01 a0081-5381 aFNSP353196 a19900101a19149999 ba0 amul aSE aaku 10aStatistisk arsbok för Sverige aaStockholm‎cSCB‎aÖrebro‎cSCB förlag‎d1914- aAnnuel10aStatistical yearbook of Sweden aSuèdexStatistiquesxPériodiques a31402aSuèdebStatistiska centralbyran 3aFRbCCN0081-53814 uhttp://www.scb.se/Pages/Product____30937.aspx?Produktkod=OV0904&displaypublications=truezAccès au texte intégral depuis l'édition 20021 bLa dernière annéecParisd27, Salle 1er étageeDEW 3141 b(1980) -....cParisdMagasins/AnnexeeP 8° 52681 b(1946) -(1974)cParisdMagasins/AnnexeeCOL8°0019 aZPAY aexempb201110 aGEO RA3.02 Suède aDEW 310-31900763nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210002700174326001800201606003700219801002100256856005900277856004200336955006600378972000900444991001800453992001400471039592227000004422420140106161226.01 a0392-9701 aFNSP229608 a0000044224 a19900101a19819999 ba0 aita aIT aaia 10aStato e mercato aBolognacMulinod1981- a3 n°s par an aEconomie politiquexPériodiques 3aFRbCCN0392-97014 uhttp://www.mulino.it/edizioni/riviste/statomercato.htm zContenu : sommaire du dernier numéro1 bvol. 1 no. 1 (1981) -....cParisdMagasins/AnnexeeP 8° 4474 aZPAY aexempb201106 aDEW 338.900831nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210004300177326001800220606004100238710002400279856003400303856006700337955006700404972000900471991001800480992003100498992001200529039084981000022237920130319051904.01 a0144-3593 aFNSP797180 a0000222379 a19900101a19809999 ba0 aeng aGB aaia 10aStatute law review aOxfordcOxford University Pressd1980- a3 n°s par an aDroityGrande-BretagnexPériodiques02aStatute Law Society4 uhttp://www3.oup.co.uk/stalaw/ zContenu : sommaires et résumés depuis le vol. 17, n°1, 19961 bvol. 17 no. 1 (1996) -....cParisdMagasins/AnnexeeP 8° 6342 aZSAB aexempb201301 aGEO RA4.02 Grande-Bretagne aDEW 34801275nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200007800139210002700217326001500244451004400259452003700303517004000340517006500380530001400445606003000459606002800489710006700517801002100584856009900605856010800704955007200812972000900884991001800893992001400911064228878000004425020131002164656.01 a1010-5239 aFNSP229649 a19900101b19862000 f ba0 afre aFR aaja 10aSTI revuefOrganisation de coopération et de développement économiques aPariscOCDEd1986-2000 aSemestriel 1aSTI review (English edition)x1010-5247 1tSTI revue (En ligne),x2225-646610aScience technologie industrie revue10aSTI revue de la science, de la technologie et de l'industrie10aSTI revue aTechnologiexPériodiques aIndustriexPériodiques02aOrganisation de coopération et de développement économiques 3aFRbCCN1010-52394 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/10105239/revsti zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (aut-1986) -no. 26 (2000)cParisdMagasins/AnnexeeP 8° 5025 aZECH aexempb201106 aDEW 60-6901188nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002300139210006500162326002200227326002300249606002900272606004400301607004700345710006000392856010900452856010800561955017600669972000900845992002000854992001200874040105679000004433620131121123201.01 a0970-0161 aFNSP229862 a19900101a19779999 ba0 aeng aIN aaga 10aStrategic analysis aNew DelhicInstitute for Defence Studies and Analysesd1977- aBimestrielb2002- aMensuelb1977-2001 aStratégiexPériodiques aSécurité internationalexPériodiques aIndexRelations extérieuresxPériodiques02aInstitute for Defense Studies and Analysesc(New Delhi)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t780586780db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (avr-1977) -vol. 9 no. 12 (mar-1986) ; vol. 12 no. 3 (jun-1988) -vol. 26 no. 1 (jan-2002) ; vol. 31 no. 1 (jan-2007) -....cParisdMagasins/AnnexeeP 8° 4024 aZSAB aGEO RI1.13 Inde aDEW 32701080nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003300163210005900196326001200255606003900267801001300306856010200319856006300421856009000484856010800574955007100682972000900753992001600762039081818000046398120130319051905.01 a0143-2095 a0000463981 a a19809999k fre ba0 aeng aUS a 0  ar aaf z 0 10aStrategic management journal aNew York, N.Y.aChichester (West Sussex)cWileyd1980- aMensuel aGestion d'entreprisexPériodiques 0aFRbFNSP uhttps://acces-distant.sciences-po.fr/fork?http://www3.interscience.wiley.com/cgi-bin/jtoc?ID=2144 zSommaires et résumés des articles depuis le vol.17, 19964 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/01432095.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 22 no. 1 (jan-2001) -....cParisdMagasins/AnnexeeP 4° 6927 aZPAY aDEW 650-65801217nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002100139210002900160326001100189606004400200606002900244676000800273710005100281856021400332856020800546955006000754955006200814972000900876991001800885992001200903039617661000010015020131018092442.0 a0459-7230 aFNSP433031 a19900101a19669999 ba0 aeng aGB aaka 10aStrategic survey aLondoncBrassey'sd1966- aAnnuel aSécurité internationalexPériodiques aStratégiexPériodiques a35502aInstitut international d'études stratégiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713697399db=allzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://eJournals.ebsco.com/Journal2.asp?JournalID=111408zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1984/1985) -(2013)cParisdMagasins/AnnexeeP 8° 64041 b(1966) -(1983/1984)cParisdMagasins/AnnexeeCOL 8° 4840 aZPAY aexempb201301 aDEW 32701327nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001600154210006000170300005900230326001700289421003700306530002300343606003700366606003400403606003600437606004800473856019200521856010800713955006900821955006500890992002200955992001200977013741012000000547320130319051906.01 a0180-6424 aFNSP108388 a0000005473 a19900316a19719999 ba0 afre aFR aa u 10aStratégies aPariscPublications professionnelles françaisesd1971- aLes n°s hors séries sont reliés avec le périodique aHebdomadaire 1aStratégies. Dossier / Guide ...10aStratégiesbParis aPublicitéyFrancexPériodiques aMédiasyFrancexPériodiques aMarketingyFrancexPériodiques aEntreprises de presseyFrancexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 42771 bno. 181 (fev-1979) -....cParisdMagasins/AnnexeeP 4° 4277 aGEO RA4.06 France aDEW 65901315nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001700154210005100171300007600222300006400298326002300362530002400385606002900409606004400438606004400482676000800526710004600534801002100580856002800601856008800629955006700717955009000784972000900874991001800883992001200901992001600913039351610000000546620130319051906.01 a0224-0424 aFNSP108379 a0000005466 a19900316a19799999 ba0 afre aFR aahu 10aStratégique aPariscInstitut de stratégie comparéed1979- aFondée en 1979 par la Fondation pour les études de défense nationale aN'a pas paru en 1993 et 1994 ainsi qu'en 2002, 2003 et 2004 a2 ou 3 n°s par an00aStratégiquebParis aStratégiexPériodiques aSécurité internationalexPériodiques aRelations internationalesxPériodiques a35502aInstitut de stratégie comparéec(Paris) 3aFRbCCN0224-04244 uhttp://www.stratisc.org zsommaire des numéros depuis le n° 1, 1979 et choix de numéros en texte intégral1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3551 bno. 1 (1979) -no. 56 (1992) ; no. 57 (1995) -....cParisdMagasins/AnnexeeP 8° 4146 aZCAD aexempb201103 aDEW 327 aDEW 355-35901193nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101001300108102000700121110001600128200002200144210004200166300006500208300000500273326001600278510002200294510003700316510003200353530002200385606004400407710002900451801002100480856003300501856010300534955007000637957008500707972000900792991001800801992001200819038802775000004461620130709172114.01 a0039-2936 aFNSP230637 a19900101a19649999 ba0 aitaafre aIT aaha 10aStudi emigrazione aRomacCentro studi emigrazioned1964- aTitre parallèle français, 1974-1992 : "Études migrations" a aTrimestriel10aEtudes migrations1 aÉtudes migrations‎j1974-19921 aMigration studies‎j1997- aStudi emigrazione aEmigration et immigrationxPériodiques02aCentro studi emigrazione 3aFRbCCN0039-29364 uhttp://www.cser.it/studi.htm zContenu : sommaires et souvent résumés des articles en italien, français et anglais depuis 19971 bvol. 1 no. 1 (oct-1964) -....cParisdMagasins/AnnexeeP 8° 21091 bno. 1 (1964) -no. 99 (1990)zse trouve dans le vol. 27 no. 100, 1990 de la revue aZPAY aexempb200908 aDEW 32501245nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210006700177326002300244326002600267430005500293530002300348606004400371676000800415712006100423801002100484856005000505856005500555955006700610955007400677957012300751972000900874992001200883039720209000004460420130319051907.01 a0770-2965 aFNSP230598 a0000044604 a19900101a19749999 ba0 amul aBE aaha 10aStudia diplomatica aBruxellescInstitut royal des relations internationalesd1974- atrimestrielb2006- abimestrielb1974-2005 1aChronique de politique étrangèrexISSN 0009-605900aStudia diplomatica aRelations internationalesxPériodiques a32702aInstitut royal des relations internationalesc(Belgique) 3aFRbCCN0770-29654 uhttp://www.egmontinstitute.be/FR/SD-irri.html zContenu : sommaires depuis le volume 2, no 1, 19491 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 27 no. 5/6 (nov-1974) - ....cParisdMagasins/AnnexeeP 8° 00061 bvol. 1(1948)-vol.44 (1991)cParisdMagasins/AnnexeeP Indexzcet index se trouve dans le vol.44 no.6, 1991 de la revue aZSAB aDEW 32701163nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004600139210004800185326005200233452006700285530004600352606003600398606004800434856007000482856005400552955007100606955010600677972000900783991001800792992002300810992001600833040003302000008167020131003170703.01 a0898-588X aFNSP363080 a19900101a19869999 ba0 aeng aUS aaja 10aStudies in American political development aNew YorkcCambridge University Pressd1986- aAnnuel puis semestriel à partir du vol.6, 1992 1tStudies in American political development (Online),x1469-8692 aStudies in American political development aScience politiquexPériodiques aScience politiqueyEtats-UnisxPériodiques4 uhttp://www.journals.cup.org/owa_dba/owa/ISSUES_IN_JOURNAL?JID=SAP zContenu : sommaires depuis le vol. 11, n°1, 19971 bvol. 14 no. 1 (pri-2000) -....cParisdMagasins/AnnexeeP 4° 69441 bvol. 1 (1986) ; vol. 6 no. 1 (pri-1992) -vol. 13 no. 2 (aut-1999)cParisdMagasins/AnnexeeP 8° 5095 aZSAB aexempb201106 aGEO RC2 Etats-Unis aDEW 320-32101298nas 2200301 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101110001600108200005300124210004400177326001600221452007300237530005300310606004500363607004900408801002100457856023300478955011500711955008700826972000900913991001800922992004200940992001400982038803496000004464520130607113906.01 a0039-3606 a19900101a19659999 ba0 aeng aUS aaha 10aStudies in comparative international development aNew Brunswick, N.J.cTransactiond1965- aTrimestriel 1tStudies in comparative international development (Online)x1936-616700aStudies in comparative international development aDéveloppement économiquexPériodiques aPays en voie de développementxPériodiques 3aFRbCCN0039-36064 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=CID&site=ehost-livezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 8 no. 1 (jan-1972) -vol. 38 no. 4 (2004) ; vol. 42 no. 1/2 (jun-2007)cParisdMagasins/AnnexeeP 8° 30931 bvol. 5 no. 1 (1969/1970) -vol. 7 no. 12 (1971)cParisdMagasins/AnnexeeP 4° 3154 aZSAB aexempb201004 aGEO RO Pays en voie de développement aDEW 338.901831nas 2200433 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154210003800192326001900230326002900249326002600278326002700304436002500331436004100356606002900397606002500426606002900451676000800480856010300488856010800591856012800699856010800827856010900935856010801044955006701152955007101219955006901290972000901359991001701368992001201385040282953000006333420131220102941.01 a1057-610X aFNSP291569 a0000063334 a19900101a19929999 ba0 aeng aGB aafa 10aStudies in conflict and terrorism aLondoncTaylor and Francisd1992- aMensuel$d2007- a8 n°s par an$d2006-2006 aBimestriel$d2001-2005 aTrimestriel$d1992-2000 1tTerrorismx0149-0389 1tConflict (New York. 1978)x0149-5941 aTerrorismexPériodiques aGuerrexPériodiques aGuérillasxPériodiques a3204 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=102492 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=CNF&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713742821db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bvol. 15 no. 1 (jan-1992) -....cParisdMagasins/AnnexeeP 8° 58071 bL'année en courscParisdBibliothèque de rechercheeP 8° 5807 aZCAD aexemp$201112 aDEW 32000987nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000370015421000440019132600160023543000410025160600530029260600360034560600400038185600490042185600610047095500690053197200090060099100180060999200320062799200140065903739827X000009746420130319051907.01 a0925-9392 aFNSP424062 a0000097464 a19900101a19939999 ba0 aeng aNL aaha 00aStudies in East-European thought aDordrechtcKluwer Academic Publ.d1993- aTrimestriel 1aStudies in Soviet thoughtx0039-3797 aScience politiqueyEurope de l'EstxPériodiques aScience politiquexPériodiques aPhilosophie politiquexPériodiques4 uhttp://www.wkap.nl/journalhome.htm/0925-9392 zContenu : sommaires depuis le vol. 47, n°1-2, juin 19951 bvol. 45 no. 1/2 (1993) -....cParisdMagasins/AnnexeeP 8° 1947 aZSAB aexempb201002 aGEO RA2.02 Europe orientale aDEW 320.501023nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210004000185326001500225606002900240606004500269710002900314801002100343856009000364856010800454955008600562957007300648992001200721038803550000004461020130319051907.01 a0039-3665 aFNSP230609 a0000044610 a19900101a19639999 ba0 aeng aUS aaga 10aStudies in family planning aNew YorkcPopulation Councild1963- aBimestriel aPopulationxPériodiques aRégulation des naissancesxPériodiques02aConseil de la population 3aFRbCCN0039-36654 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00393665.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 7 no. 5 (mai-1976) -vol. 22 no. 6 (1991)cParisdMagasins/AnnexeeP 4° 39421 bvol. 18 (1979) -vol. 21 (1990)cParisdMagasins/AnnexeeP Index 0665 aDEW 30401883cas0 2200445 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086040001100101100004100112101000800153102000700161105001800168106000600186110001600192200004900208207002400257210003900281210003800320210003300358300015400391326002700545326002600572326002300598517005600621517005700677606003700734606004300771801003000814801002300844802000700867830029600874856010301170856006201273955008401335991001801419038803577000120675520130319051907.01 a0039-3681 accn0039-3681 aissn00393681 a0001206755 aSHPSB5 a19770419a1970 u y0frey50 ba0 aeng aGB ay 0  ar aaha 0uu 10aStudies in history and philosophy of science 0aVol. 1, no.1(1970)- aAmsterdamcElsevier Scienced1999- aOxfordcPergamon Pressd1975-1998 aLondoncMacmilland1970-1974 aQuelques nos sont constitués par la section "Studies in history and philosophy of modern physics" qui devient publication indépendante en avr. 1995 aTrimestrielb1970-1992 aBimestrielb1993-1994 aTrimestrielb1995-10aStudies in history and philosophy of modern physics10aStudies in history and philosophy of science. Part A aSciencesxHistoirexPériodiques aPhilosophie des sciencesxPériodiques 3aFRbAbesc20090302gAFNOR 3aFRbISSNc20090225 a0j atraitement différent du Sudoc qui a fait des changements de titre ; les différentes séries sont regroupées sous ce titre car la pagination est continue toutes séries confondues (A, Studies in history and philosophy of modern physics) et l'ISSN qui figure sur les fascicules est le même4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sciencedirect.com/science/journal/00393681/23 zContient : sommaires des nos depuis le vol. 1, no 1, 19701 bvol. 23 no. 2 (1992) -vol. 37 no 4 (2006)cParisdMagasins / AnnexeeP 8° 7162 aexempb20130100911nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210004800187326001500235606004500250606003700295801002100332856003200353955006400385957010000449972000900549991001800558992001900576992001400595039672727000004433320130319051907.01 a0707-8552 aFNSP229858 a0000044333 a19900101a19799999 ba0 aeng aCA aaja 10aStudies in political economy aOttawacStudies in political economyd1979- aSemestriel aEconomie politiqueyCanadaxPériodiques aEconomie politiquexPériodiques 3aFRbCCN0707-85524 uhttp://www.carleton.ca/spe/1 bno. 18 (aut-1985) -....cParisdMagasins/AnnexeeP 8° 49361 bno. 61 (2000) -no. 70 (2003)cParisdMagasins/Annexezse trouve dans le n°70, 2003 de la revue aZSAB aexempb201003 aGEO RC1 Canada aDEW 338.901053nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210009100182326001100273440002900284606002600313606004600339710005300385801002100438856004600459856004600505955006800551957005700619991001800676992001200694992002100706036441430000000946920130319051907.01 a0585-7325 aFNSP116777 a0000009469 a19900101b19631999 ba0 aeng aJP aaku 10aStudies of broadcasting aTokyocNHK. Radio & Culture Research Institute. Theoretical Research Centerd1963-1999 aAnnuel 1tNHK broadcasting studies aMédiasxPériodiques aCommunication audiovisuellexPériodiques02aBroadcasting Culture Research Institutec(Tokyo) 3aFRbCCN0032/18344 uhttp://www.nhk.or.jp/bunken/en/b46-e.html zContenu : sommaires depuis le n°31, 19951 bno. 1 (1963) -no. 34 (1999)cParisdMagasins/AnnexeeP 8° 25061 b(1963) -(1981)cParisdMagasins/AnnexeeP Index 0620 aexempb201204 aDEW 070 aGEO RI3.22 Japon01113cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001700069035001500086100004100101101000800142102000700150105001800157110001600175200002500191210004900216326001600265440004700281607003400328710005200362801003000414801002300444801003000467802000700497856007800504856005500582955008300637992003100720992001200751039685624000114945420130319051908.01 a0722-8821 accn0722-8821 aissn07228821 a0001149454 a19841109a19829999k y0frey0103 ba0 ager aDE ay  aagu uu 10aSüdostasien aktuell aHamburgcInstitut für Asienkunded1982-2008 aTrimestriel 1tJournal of current Southeast Asian affairs aAsie du Sud-EstxPériodiques02aInstitut für Asienkundec(Hambourg, Allemagne) 3aFRbAbesc20090703gAFNOR 3aFRbISSNc20090225 3aFRbAbesc20080819gAFNOR a064 uhttp://www.giga-hamburg.de/index.php?file=z_soa.html&folder=publikationen zContenu : sommaires depuis le vol. 25 no. 1 (2006)1 bvol. 26 no. 2 (2007) -vol. 27 no. 4 (2008)cParisdMagasins/AnnexeeP 8° 7044 aGEO RI2.02 Asie du Sud-Est aDEW 95901161nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004600154210006700200320002500267326002300292326002300315430006000338517004100398607002600439676000800465710003000473801002100503856003700524856005200561955006600613955006700679972000900746992003000755992001400785039685039000004469920130319051908.01 a0722-480X aFNSP231041 a0000044699 a19900101a19829999 ba0 ager aDE aaha 10aSüdosteuropa (München, Südostinstitut) aMünchencOldenbourgaGilchingcVerlegerdienst Münchend1982- aN'a pas paru en 2004 aTrimestrielb2005- aMensuelb1982-2003 1aWissenschaftlicher Dienst SüdosteuropaxISSN 0043-695X10aSüdosteuropa (München, Oldenbourg) aBalkansxPériodiques a94002aSüdost-Institut (Munich) 3aFRbCCN0722-480X4 uhttp://www.oldenbourg.de/verlag/ zContenu : index annuels depuis le vol. 47, 19981 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 bvol. 31 no. 1 (1982) -....cParisdMagasins/AnnexeeP 8° 4499 aZSAB aGEO RA8 Europe du Sud-Est aDEW 949.601159nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003100154210004800185326002200233326002700255430006400282607002600346676000800372710004400380856007400424856003600498955006600534955006700600957007200667972000900739991001700748992003000765992001400795039463443000007582420130319051908.01 a0340-174X aFNSP344727 a0000075824 a19900101a197?9999 ba0 ager aDE aaha 10aSüdosteuropa-Mitteilungen aMünchencSüdosteuropa-Gesellschaftd0001- aBimestrielb2002- aTrimestrielb197?-2001 1aMitteilungen der Südosteuropa GesellschaftxISSN 0039-4572 aBalkansxPériodiques a94002aSüdosteuropa-Gesellschaftc(Allemagne)4 uhttp://www.suedosteuropa-gesellschaft.com/index.cfm?page=mitteilungen zContenu : sommaires depuis 20031 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 bvol. 32 no. 1 (1992) -....cParisdMagasins/AnnexeeP 8° 58911 bvol. 1 (1961) -vol. 30 (1990)cParisdMagasins/AnnexeeP Index 0702 aZSAB aexemp$201201 aGEO RA8 Europe du Sud-Est aDEW 949.600936nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000026001502100005001762300024001813260017002056060029002226070034002518010013002858560192002988560108004909550005005989920012006039920031006150001145139000114513920130319051908.0 a0001145139 a a19819999k fre 01 ba0 aeng aGB ar aac z  adr 10aSunday times (London) a aRevue électronique ahebdomadaire aActualitéxPériodiques aGrande-BretagnexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aDEW 050 aGEO RA4.02 Grande-Bretagne01229nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000090001502100049002403000039002893260015003283360058003433370063004014400097004644520076005616060030006377100036006678010013007038560195007169920016009110000491572000049157220130319051909.0 a0000491572 a b19341947k fre 01 ba0 aeng aGB az aaj z  adr 10aSupplement to the Journal of the Royal Statistical Societyb[Ressource électronique] aLondoncRoyal Statistical Societyd1934-1947 aAucune parution entre 1942 et 1945 aSemestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tJournal of the Royal Statistical Society. Series B. Methodological [Ressource électronique] 1tSupplement to the Journal of the Royal Statistical Societyx(1466-6162) aStatistiquexPériodiques02aRoyal Statistical Societyc(GB) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/14666162.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po aDEW 310-31901086nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210005400183326001100237601004400248606005200292710003800344801002100382856019500403955005500598955005700653972000900710991001800719992002300737992001200760038880563000010581720130319051909.01 a0081-9557 aFNSP449681 a0000105817 a19900101a19609999 ba0 aeng aUS aaku 14aThe Supreme Court review aChicago, Ill.cUniversity of Chicago Pressd1960- aAnnuel02aEtats-UnisbSupreme CourtxPériodiques aDroit constitutionnelyEtats-UnisxPériodiques02aUniversity of ChicagobLaw School 3aFRbCCN0081-9557 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/07369921.htmlzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1980) -(2009)cParisdMagasins/AnnexeeP 8° 55821 b(1964) -(1979)cParisdMagasins/AnnexeeCOL 8° 4265 aZCAD aexempb201110 aGEO RC2 Etats-Unis aDEW 34201261cas0 2200361 450 001001000000002001100010005001700021011001400038035004000052100004100092101001800133102000700151105001800158106000600176110001600182200005900198207002700257210004100284300004500325304004600370326001100416452010500427510002600532510002600558606003000584801003000614801003800644856010900682955006600791972000900857992002100866992001200887169283542000124537720140115165438.00 a2266-5579 aFRBNF435766530000002zFRBNF43576653 a20130516a20129999k y0frey50 ba0 afreaengapor aFR ay  ar aakah y 10aSur le journalismedAbout journalismdSobre jornalismo 0aVol. 1, n ̊ 1 (2012)- a[Lannion]cSur le journalismed2012- aTexte en français, anglais et portugais aDirecteur de la publication Denis Ruellan aAnnuel 1tPublication également disponible en ligne à l'adresse http://www.surlejournalisme.com (2013-04-22)10aAbout journalismzeng10aSobre jornalismozpor aJournalismexPériodiques 3aFRbAbesc20130613gAFNOR 0aFRbFR-751131015c20130422gAFNOR4 uhttp://surlejournalisme.com/rev/index.php/sljzAccès au texte intégral à partir du Vol. 1, n°1, 20121 bvol. 1 no. 1 (2012) -....cParisdMagasins/AnnexeeP 4° 7335 aZGRA aGEO RQ Universel aDEW 07001331nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000031001552100035001863260012002214210061002336060044002946070053003386070068003917100044004598010021005038560153005248560108006779550144007859720009009299920023009389920016009619920016009770000005476000000547620130319051910.01 a0039-6222 aFNSP108391 a0000005476 a19900316a19219999 ba0 aeng aUS aafu 10aSurvey of current business aWashington, D.C.cUSGPOd1921- aMensuel 1aBusiness statistics (Biennal),x0083-2545 < P 4° 5608 > aStatistiques commercialesxPériodiques aEtats-UnisxCommercexStatistiquesxPériodiques aEtats-UnisxConditions économiquesxStatistiquesxPériodiques02aEtats-UnisbBureau of Economic Analysis 3aFRbCCN0039-62224 uhttps://acces-distant.sciences-po.fr/fork?http://web.ebscohost.com/bsi/detail?vid=4&hid=109&sid=e8ce8a0d-2c83-49f1-ac60-eeff721d00d6%40sessionmgr102 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1927) -(1940) ; (1946) -vol. 85 no. 5 (mai-2005) ; vol. 87 no. 8 (aou-2007) -vol. 87 no. 12 (dec-2007)cParisdMagasins/AnnexeeP 4° 0051 aZPAY aGEO RC2 Etats-Unis aDEW 310-319 aDEW 380-38201055nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006700154210003600221326001100257430008100268517009800349607005600447710007700503856005400580955007900634972000900713992002900722992001400751039277364000015984520140108154728.01 a0255-5123 aFNSP616730 a0000159845 a19900101a00019999 ba0 aeng aIN aaka 10aSurvey of economic and social developments in the ESCWA region aNew YorkcUnited Nationsd0001- aAnnuel 1aSurvey of economic and social developments in the ECWA region < P 4° 6471 >10aSurvey of economic and social developments in the Economic Commission for Western Asia region aMoyen-OrientxConditions économiquesxPériodiques02aNations UniesbCommission économique et sociale pour l'Asie occidentale4 uhttp://www.escwa.org.lb/information/pubsearch.asp1 b(1981) ; (1985) -(1987) ; (1989) -....cParisdMagasins/AnnexeeP 4° 6471 aZPAY aGEO RG4 Asie occidentale aDEW 338.901071nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200003100163210004600194326001600240430003100256440004100287607004100328801001300369856007700382856009500459955008300554957005800637972000900695992001400704992002700718078546257000052856720130319051910.01 a1451-477X a0000528567 a b20032006k fre ba0 aeng aYU a 0  ar aah z 0 10aSurvey Serbia & Montenegro aBeogradcJugoslovenski pregledd2003-2006 aTrimestriel 1tYugoslav surveyx0044-1341 1tSurvey Republic of Serbiax1452-709X aSerbie-et-MonténégroxPériodiques 0aFRbFNSP4 uhttp://www.yusurvey.co.yu/new/yusurvey_index_of_titles_subject.php?user= zContient les sommaires des numéros à partir de 2000 et index par sujet à partir de 19891 bvol. 44 no. 1 (2003)-vol. 47 no. 1 (2006)cParisdMagasins/AnnexeseP 8° 18131 b(2000) -(2004)cParisdMagasins/AnnexeseP Index 0005 aZCAD aDEW 949.7 aGEO RA8.11 Yougoslavie01561nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001300154207003600167210002900203326002200232326002700254530002700281606004400308606004400352676000800396710005100404801002100455856010900476856010800585856010300693856010800796955006700904955009600971957005701067972000901124991001801133992001201151038804492000004462720130319051910.01 a0039-6338 aFNSP230669 a0000044627 a19900101a19599999 ba0 aeng aGB aaha 10aSurvival 1aVol. 1, no. 1 (Mar./Apr. 1959)- aLondoncBrassey'sd1959- aBimestrielb2008- aTrimestrielb1959-2007 0aSurvivalbLondon. 1959 aRelations internationalesxPériodiques aSécurité internationalexPériodiques a32702aInstitut international d'études stratégiques 3aFRbCCN0039-63384 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713659919db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://eJournals.ebsco.com/Journal2.asp?JournalID=111409 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 4 no. 2 (mar-1962) ; vol. 7 no. 4 (jul-1965) -....cParisdMagasins/AnnexeeP 8° 21581 b(1959) -(1965)cParisdMagasins/AnnexeeP Index 0034 aZCAD aexempb201105 aDEW 32701153nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002100139210002600160326002200186326002300208430003500231452004300266530003300309606003600342606004400378606003600422606004400458856007700502856007700579955006500656972000900721991001800730992003900748992001600787044730217000005425520131016164556.01 a0869-4435 aFNSP255921 a19900101a19919999 y ca0 arus aRU aafa 00aSvobodnaâ mysl' aMoskvacPravdad1991- aBimestrielb2012- aMensuelb1991-2011 1aKommunist (Moskva),x0131-1212 1tSvobodnaâ mislʹ (Moskva),x0869-443500aSvobodnaâ mislʹ‎bMoskva aScience politiquexPériodiques aSciences socialesyRussiexPériodiques aSciences socialesxPériodiques aScience politiqueyRussiexPériodiques4 uhttp://www.postindustrial.net/content1/index.php?table=free&lang=russian zContient : sélection d'articles en texte intégral depuis le n°3, 20021 bno. 14 (sept-1991) -....cParisdMagasins/AnnexeeP 8° 0423 aZCAD aexempb201310 aGEO RA7.21 Russie (depuis 1991-92) aDEW 320-32101001nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116200002400123210006200147326001600209530004300225607005000268710003500318801002100353830007600374856006600450955005700516955006300573972000900636991001800645992002200663992001400685038804883000004612720140109163311.01 a0039-7296 aFNSP235733 a19900101a19609999 ba0 aeng aSE14aThe Swedish economy aStockholmcNational Institute of Economic Researchd1961- aTrimestriel14aThe Swedish economyb(Stockholm. 1961) aSuèdexConditions économiquesxPériodiques02aKonjunkturinstitutetc(Suède) 3aFRbCCN0032/6526 a1961--->1984 < P 8° 1888 > : collection donnée au CTL en juillet 20014 uhttp://www.konj.se/1414.htmlzAccès libre au texte intégral1 b(dec-1994) -....cParisdMagasins/AnnexeeP 4° 64481 b(avr-1985) -(aut-1994)cParisdMagasins/AnnexeeP 8° 1888 aZPAY aexempb200908 aGEO RA3.02 Suède aDEW 330.901127cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200003700162210008300199430003500282440005300317530003700370531001900407712006100426801003000487802000700517856009000524856010800614955007100722991002000793036503924000108370320130319051910.0 a0039-7318 accn0039-7318 a0001083703 a19880915b19651975 0frey0103 ba0 aeng aSE ar aah 14aThe Swedish journal of economics aStockholmcNationalekonomiska institutionen, Stockholms universitetd1965-1975 1tEkonomisk tidskriftx0284-7310 1tThe Scandinavian journal of economicsx0347-052004aThe Swedish journal of economics 0aSwed. j. econ.02aStockholms universitet. Nationalekonomiska institutionen 3aFRbAbesc20070417gAFNOR a0F4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00397318.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 67 (1965) -vol. 77 (1975)cParisdMagasins/AnnexeeP 8° 0119 aPériobTP01 P801011nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116200001800123210005300141326001600194437004500210517006000255530001800315606003900333710004800372801002100420856013800441955006700579972000900646991001800655992002400673992001200697040145158000004433020130911162245.01 a1013-1469 aFNSP229849 a19900101a19879999 ba0 ager aAT10aSWS-Rundschau aWiencÖsterreichischer Gewerkschaftsbundd1987- aTrimestriel 1tJournal für Sozialforschung,x0253-399510aSozialwissenschaftliche Studiengesellschaft - Rundschau10aSWS-Rundschau aSociologieyAutrichexPériodiques02aSozialwissenschaftliche Studiengesellschaft 3aFRbCCN7110/03694 uhttp://www.sws-rundschau.at/zAccès libre aux sommaires et résumés depuis 2000 et beaucoup de numéros en ligne en texte intégral1 bvol. 27 no. 1 (1987) -....cParisdMagasins/AnnexeeP 8° 5110 aZPAY aexempb201106 aGEO RA5.13 Autriche aDEW 30101146nls 2200337 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000057001502070021002072100086002282300005003143000070003193260016003893360056004053370017004616060070004786060073005487100081006218010013007028560062007159550005007779920014007829920012007960000622049000062204920130319051911.0 a0000622049 a a20039999k fre 01 ba0 amul aFR az aaz z  adr 14aLes synthèses de l'Iddrib[Ressource électronique] 1aN°1(mars 2003)- aPariscInstitut du développement durable et des relations internationalesd2003- a aSynthèse de 4 pages en texte intégral depuis le n°1, mars 2003 aIrrégulier aDonnées textuelles accessibles uniquement en ligne aFichiers PDF aDéveloppement durablexCoopération internationalexPériodiques aEnvironnementxProtectionxCoopération internationalexPériodiques02aInstitut du développement durable et des relations internationalesc(Paris) 0aFRbFNSP4 uhttp://www.iddri.org/iddri/html/publi/publi.htm#syntheses1 r aDEW 330.9 aDEW 32700966nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200014500154210012700299326001100426601003200437710007700469856005800546955005500604972000900659991001800668992001400686053567986000015974020130319051912.01 a1291-2522 aFNSP616535 a0000159740 a19900101a00019999 ba0 afre aFR aaka 13aLe Système des Nations-Unies en ...fMinistère des affaires étrangères, Direction des Nations-Unies et des organisations internationales aPariscMinistère des affaires étrangères, Direction des Nations-Unies et des organisations internationalesd0001-[200.] aAnnuel02aNations UniesxPériodiques02aFrancebDirection des Nations Unies et des organisations internationales uhttp://www.diplomatie.gouv.fr/frmonde/nuoi/index.html1 b(1995) -(2002)cParisdMagasins/AnnexeeP 8° 6229 aZGRA aexempb201301 aDEW 341.200959nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210002900198326001500227430003500242436008500277606004300362712005000405856010200455955009900557972000900656992001600665040409082000021930120130319051912.01 a1092-7026 aFNSP787541 a0000219301 a19900101a19979999 ba0 aeng aGB aaga 10aSystems research and behavioral science aChichestercWileyd1997- aBimestriel 1tBehavioral science (0005-7940) 1aSystems research (0731-7239) et de Behavioral science (0005-7940) < P 8° 1691 > aSciences du comportementxPériodiques02aInternational Federation for Systems Research4 uhttps://acces-distant.sciences-po.fr/fork?http://www3.interscience.wiley.com/cgi-bin/jtoc?ID=62531 bvol. 14 no. 1 (jan/fev-1997) -vol. 19 no. 6 (nov/dec-2002)cParisdMagasins/annexeeP 8° 1691 aZPAY aDEW 305-30601819nas 2200373 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200008100148210002700229300011200256326001400368430006600382440008800448530008100536532013800617606005800755606005800813606006000871710012900931801001301060856022901073955005301302972000901355992005101364992001401415992001601429048858781000043264020130618144526.01 a1562-9848 a a19992004k f fre ba0 afre aFR a 0  ar aal z 0 10aTableau de bord de l'OCDE de la science, de la technologie et de l'industrie aPariscOCDEd1999-2004 aPublié tous les 2 ans en alternance avec "Perspectives de la science, de la technologie et de l'industrie" aBisannuel 1tScience, technologie et industrie. Tableau de bordx1029-4279 1tScience, technologie et industrie : tableau de bord de l OCDE (Imprimé)x2074-720900aTableau de bord de l'OCDE de la science, de la technologie et de l'industrie11aTableau de bord de l'Organisation de coopération et de développment économiques de la science, de la technologie et de l'industrie aIndustrieyPays de l'OCDExStatistiquesxPériodiques aRechercheyPays de l'OCDExStatistiquesxPériodiques aTechnologieyPays de l'OCDExStatistiquesxPériodiques02aOrganisation de coopération et de développement économiquesbDirection de la science, de la technologie et de l'industrie 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://lysander.sourceocde.org/vl=6761407/cl=49/nw=1/rpsv/outlook_annuals.htmzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(2001) -(2003)cParisdMagasins/AnnexeP 4° 6500 aZPAY aGEO RN1 Pays industrialisés, pays occidentaux aDEW 338.4 aDEW 310-31901370nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154207001500193210005300208300006900261326001100330422004100341430006000382517000800442607008100450607006400531607002700595710010900622856012100731955006500852972000900917991001800926992002200944992001400966992001600980036646598000011373320130319051912.0 a1249-4305 aFNSP477871 a0000113733 a19900101a19929999 ba0 afre aRE aaka 10aTableau économique de La Réunion 1a1992/1993- aSte-ClotildecINSEE, Direction régionaled1992- aMise à jour annuelle des données dans chaque chapitre en ligne aAnnuel 1aL'Economie de La Réunionx0750-0769 1aEconomie de La Réunion, Tableau économiquex0994-415X10aTER aFrancexDépartements et territoires d'outre-merxStatistiquesxPériodiques aFrancexConditions économiquesxStatistiquesxPériodiques aRéunionxPériodiques02aInstitut national de la statistique et des études économiquesc(France)bService régionalc(Réunion)4 uhttp://www.insee.fr/fr/regions/reunion/default.asp?page=themes/dossiers/ter/ter.htmzAccès libre au texte intégral1 b(1992/1993) -(2006/2007)cParisdMagasins/AnnexeeP 8° 5736 aZPAY aexempb201111 aGEO RA4.06 France aDEW 330.9 aDEW 310-31901098nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004200154210008700196326001900283517004700302607008900349607003700438710010900475856006600584955005500650972000900705991001800714992002200732992001400754992001600768039785203000009049520130319051912.01 a0769-0630 aFNSP398609 a0000090495 a19900101a19809999 ba0 afre aFR aama 10aTableaux de l'économie bourguignonne aaDijoncInstitut national de la statistique et des études économiquesd1980-1996 aTous les 3 ans10aTEB. Tableaux de l'économie bourguignonne aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques aBourgogne (France)xPériodiques02aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Dijon)4 uhttp://www.insee.fr/fr/regions/bourgogne/collection.asp?id=551 b(1980) -(2006)cParisdMagasins/AnnexeeP 8° 4478 aZPAY aexempb200912 aGEO RA4.06 France aDEW 330.9 aDEW 310-31900999nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210005200191326001100243430003800254607008900292607003600381710011000417856004500527955006400572972000900636992002200645992001400667992001600681039819116000010636720130319051912.01 a0984-5402 aFNSP451233 a0000106367 a19900101b19879999 ba0 afre aFR aaka 10aTableaux de l'économie bretonne aINSEE, Direction régionale : Rennesd1987-2008 aAnnuel 1aBilan annuel. Bretagnex0984-5771 aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques aBretagne (France)xPériodiques02aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Rennes)4 uhttp://www.insee.fr/fr/regions/bretagne/1 b(1987) -(2003) ; (2008)cParisdMagasins/AnnexeeP 8° 4211 aZPAY aGEO RA4.06 France aDEW 330.9 aDEW 310-31901327nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131105001800138200011700156210004800273326001600321430003400337440005500371517000800426607004500434607008900479710010900568801001300677856012100690856003600811955006000847991001800907992002200925992001400947992001600961040406369000017739420130319051912.01 a1263-235X aFNSP664474 a0000177394 a19900101b1978199. fre 0 afre aXX ay z b 10aTableaux de l'économie champenoisefObservatoire économique Champagne-Ardenne ; [puis] INSEE Champagne-Ardenne aReimscINSEE Champagne-Ardenned1978-[199.] aIrrégulier 1aEconomie champenoise (annuel) 1tTableaux de l'économie champardennaisex1760-915110aTEC aChampagne-Ardenne (France)xPériodiques aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Reims) 0aFRbFNSP4 uhttp://www.insee.fr/fr/regions/champagne-ardenne/default.asp?page=publications/hors_collections/hors_collections.htm zAccès libre au texte intégral1 b(1978) -(2000/2001)cPariddMagasins/AnnexeeP 8° 3587 aexempb201006 aGEO RA4.06 France aDEW 330.9 aDEW 310-31901027nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210004800188326001600236517000800252607008900260607003300349710011100382856008600493955005500579972000900634991001800643992002200661992001400683992001600697059483415000005043320130319051912.01 a1630-6759 aFNSP247051 a0000050433 a19900101a19869999 ba0 afre aFR aaka 10aTableaux de l'économie corse aAjacciocINSEE, Direction régionaled1986- aIrrégulier10aTEC aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques aCorse (France)xPériodiques01aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Ajaccio)4 uhttp://www.insee.fr/fr/regions/corse/default.asp?page=publications/tabeco/tec.htm1 b(1986) -(2005)cParisdMagasins/AnnexeeP 8° 4994 aZPAY aexempb201106 aGEO RA4.06 France aDEW 330.9 aDEW 310-31901219nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004800154210005300202326001100255430005500266517004500321607008900366607004400455710011200499856009900611856003600710955005600746972000900802991001800811992002200829992001400851992001600865039812227000010744220130319051912.0 a0983-5725 aFNSP455438 a0000107442 a19900101b19842005 ba0 afre aFR aaka 10aTableaux de l'économie du Poitou-Charentes aPoitierscINSEE, Direction régionaled1984-2005 aAnnuel 1aRecueil statistique du Poitou-Charentesx0755-324210aTableaux de l'économie Poitou-Charentes aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques aPoitou-Charentes (France)xPériodiques02aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Poitiers)4 uhttp://www.insee.fr/fr/regions/poitou-charentes/default.asp?page=themes/dossiers/tepc/tepc.htm4 zAccès libre au texte intégral1 b(1984) -(2005);cParisdMagasins/AnnexeeP 8° 4850 aZPAY aexempb201011 aGEO RA4.06 France aDEW 330.9 aDEW 310-31901253nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200010600154210002400260225002800284300003200312326001100344517000800355607006400363676001100427710007800438856011800516955007000634955005300704955005500757972000900812991001800821992002200839992001400861992001600875003936902000000496020130319051912.01 a0039-8802 aFNSP107086 a0000004960 a19900305a19569999 ba0 afre aFR aaua 10aTableaux de l'économie françaisef[Institut national de la statistique et des études économiques] aPariscINSEEd1956-20aRéférencesx1639-4968 aPas de publication en 2009. aAnnuel10aTEF aFrancexConditions économiquesxStatistiquesxPériodiques a330.9402aInstitut national de la statistique et des études économiquesc(France)4 uhttp://www.insee.fr/fr/publications-et-services/collection.asp?id=13zMise à jour en ligne annuelle des tableaux1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 330.941 b(1980) -....cParisdMagasins/AnnexeeP 8° 54221 b(1956) -(1979)cParisdMagasins/AnnexeeCOL8°3009 aZPAY aexempb201111 aGEO RA4.06 France aDEW 330.9 aDEW 310-31901188nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210006000191326001100251430005100262530004300313607003600356607008900392710010900481856008600590856003600676955005900712972000900771991001800780992002200798992001400820992001600834032995997000002051520130319051912.0 a1152-4553 aFNSP155827 a0000020515 a19901218b19902007 ba0 afre aFR aaka 10aTableaux de l'économie lorraine aaNancycDirection régionale de l'INSEE-Lorrained1990- aAnnuel 1aAnnuaire statistique de la Lorrainex0762-1140 0aTableaux de l'économie lorraineb1990 aLorraine (France)xPériodiques aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Nancy)4 uhttp://www.insee.fr/fr/regions/lor/default.asp?page=publications/publications.htm4 zAccès libre au texte intégral1 b(1990)-(2004/2005)cParisdMagasins/AnnexeeP 8° 4798 aZPAY aexempb201106 aGEO RA4.06 France aDEW 330.9 aDEW 310-31901162nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000036001552100034001913260016002254300060002415170008003016070089003096070040003987100110004388560110005488560036006589550072006949910018007669920022007849920014008069920016008200000106369000010636920130319051912.0 a1140-6909 aFNSP451238 a0000106369 a19900101a19839999 ba0 afre aFR aa a 10aTableaux de l'économie picarde aAmienscINSEE Picardied1983- airrégulier 1aIndicateurs économiques et sociaux (Amiens)x1166-404510aTEP aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques aRhône-Alpes (France)yPériodiques02aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Amiens)4 uhttp://www.insee.fr/fr/regions/picardie/default.asp?page=publications/dossier/Insee_Picardie_Dossiers.htm4 zAccès libre au texte intégral1 b(1983) ; (1985) ; (1992)-(2007)cParisdMagasins/AnnexeeP 8° 4779 aexempb201106 aGEO RA4.06 France aDEW 330.9 aDEW 310-31901146nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000041001552100045001963260019002414300037002606070089002976070040003867100108004268560073005348560036006079550095006439720009007389910018007479920025007659920014007909920016008040000106371000010637120130319051912.0 a0755-3455 aFNSP451245 a0000106371 a19900101a19809999 ba0 afre aFR aaka 10aTableaux de l'économie Rhône-Alpes aLyoncINSEE, Direction régionaled1980- aTous les 2 ans 1aAnnuaire Rhône-Alpesx0755-3447 aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques aRhône-Alpes (France)xPériodiques aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Lyon)4 uhttp://www.insee.fr/fr/insee_regions/rhone-alpes/publi/pub_econo.htm4 zAccès libre au texte intégral1 b(1980) ; (1982) ; (1984) ; (1987) ; (1989)-(2006/2007)cParisdMagasins/AnnexeeP 8° 3588 aZPAY aexempb200911 aGEO RA4.06 France 01 aDEW 330.9 aDEW 310-31901149nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004500154210004500199326001100244430004400255517004100299607004300340607008900383710010800472856010300580955008200683991001800765992002200783992001600805992001400821040047776000010343220130319051912.01 a1240-6732 aFNSP443347 a0000103432 a19900101a1993 ba0 afre aFR aaka 10aTableaux économiques de Basse-Normandie aCaencINSEE, Direction régionaled1993- aAnnuel 1aBilan annuel Basse-Normandiex0762-092610aTableaux de l'économie bas-normande aBasse-Normandie (France)xPériodiques aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques02aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Caen)4 uhttp://www.insee.fr/fr/regions/basse-normandie/default.asp?page=publications/dossiers/dossiers.htm1 b(1992/1993) -(1993/1994) ; (1996) -(2006)cParisdMagasins/AnnexeeP 8° 6266 aexempb201203 aGEO RA4.06 France aDEW 310-319 aDEW 330.901352nas 2200361 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000150001642070010003142100068003243260016003924300054004085170009004626070089004716070042005607100113006028010013007158560110007288560037008389550054008759720009009299920022009389920014009609920016009740000597020000059702020130319051912.01 a1760-1916 a0000597020 a a20039999 fre 01 ba0 afre aFR a 0  ar aak z 0 10aTableaux économiques de Franche-ComtéfInstitut national de la statistique et des études économiques. Direction régionale de Franche-Comté. 1a2003- aBesançoncINSEE, Direction régionale de Franche-Comtéd2003- aIrrégulier 1tTableaux de l'économie franc-comtoisex0999-027510aTEFC aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques aFranche-Comté (France)xPériodiques02aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Besançon) 0aFRbFNSP4 uhttp://www.insee.fr/fr/regions/f-comte/default.asp?page=publications/multithemes/dossiers_multithemes.htm4 zAccès libre au texte intégral.1 b(2003)-(2007)cParisdMagasins/AnnexeeP 8° 5972 aZPAY aGEO RA4.06 France aDEW 330.9 aDEW 310-31901058nas 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000040001502100053001903260014002436070089002576070036003467100120003828010013005028560073005158560036005889550059006249720009006839920022006929920014007149920016007280000433771000043377120130319051912.0 a0000433771 a a20019999k a fre ba0 afre aFR a 0  ar aal z 0 10aTableaux économiques de l'Auvergne aChamalièrescINSEE, Direction régionaled2001- aBisannuel aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques aAuvergne (France)xPériodiques aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Clermont-Ferrand) 0aFRbFNSP4 uhttp://www.insee.fr/fr/insee_regions/auvergne/publi/tableaux_eco.htm4 zAccès libre au texte intégral1 b(2001)-(2007/2008)cParisdMagasins/AnnexeeP 8° 6609 aZPAY aGEO RA4.06 France aDEW 330.9 aDEW 310-31901301nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004800154210004600202326001100248430012100259517000900380530004800389607008900437607004300526710010900569856007900678856006000757955005500817972000900872991001800881992002200899992001400921992001600935039819639000016499620130910115215.01 a0984-5798 aFNSP630211 a0000164996 a19900101a19859999 ba0 afre aFR aaka 10aTableaux économiques de la Haute-Normandie aRouencINSEE, Direction régionaled1985- aAnnuel 1aDonnées - Institut national de la statistique et des études économiques, Direction régionale de Rouenx0984-580110aTEHN aTableaux économiques de la Haute-Normandie aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques aHaute-Normandie (France)xPériodiques02aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Rouen)4 uhttp://www.insee.fr/fr/regions/haute-normandie/faitsetchiffres/default.asp4 zActualisation en ligne de tableaux classés par thèmes1 b(1987) -(2006)cParisdMagasins/AnnexeeP 8° 4215 aZPAY aexempb201106 aGEO RA4.06 France aDEW 330.9 aDEW 310-31901155nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004500139210004300184300006900227326001600296517000900312530004500321607008900366607004300455710011200498856011500610955005500725972000900780992002200789992001400811992001600825039443426000011162020131104104740.0 a0291-8692 aFNSP471524 a19900101a19819999 ba0 afre aFR aaza 10aTableaux économiques de Midi-Pyrénées aToulousecINSEE Midi-Pyrénéesd1981- aMise à jour annuelle des données dans chaque chapitre en ligne aIrrégulier10aTEMP00aTableaux économiques de Midi-Pyrénées aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques aMidi-Pyrénées (France)xPériodiques02aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Toulouse)4 uhttp://www.insee.fr/fr/regions/midi-pyrenees/collection.asp?id=28zAccés libre au texte intégral depuis 20081 b(1981) -(2007)cParisdMagasins/AnnexeeP 8° 4523 aZPAY aGEO RA4.06 France aDEW 330.9 aDEW 310-31901124nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003800154210004800192326001600240430004400256530004400300607003600344607010300380710011100483856006500594955006000659972000900719991001800728992002200746992001400768992001600782040411206000000819820130319051913.01 a1263-4751 aFNSP114259 a0000008198 a19900529a19959999 ba0 afre aFR aaza 10aTableaux économiques du Limousin aLimogescINSEE, Direction régionaled1995- aIrrégulier 1aLe Limousin en chiffresxISSN 0995-4988 0aTableaux économiques du Limousinb1995 aLimousin (France)xPériodiques aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiquesxPériodiques02aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Limoges)4 uhttp://www.insee.fr/fr/regions/limousin/collection.asp?id=481 b(1994/1995) -(2007)cParisdMagasins/AnnexeeP 8° 3417 aZPAY aexempb201104 aGEO RA4.06 France aDEW 330.9 aDEW 310-31901073nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004500154210004600199326001600245517001500261607008100276607003500357710010700392856012000499955006100619972000900680991001800689992002200707992001400729992001600743040111768000003448420130319051913.0 a0999-128X aFNSP199381 a0000034484 a19900101a19889999 ba0 afre aGY aaka 10aTableaux économiques régionaux. Guyane aINSEE, Service régional : Cayenned1988- aIrrégulier10aTER Guyane aFrancexDépartements et territoires d'outre-merxStatistiquesxPériodiques aCayenne (Guyane)xPériodiques02aInstitut national de la statistique et des études économiquesc(France)bService régionalc(Guyane)4 uhttp://www.insee.fr/fr/regions/guyane/default.asp?page=publications/ter/ter_gy.htmzAccès libre au texte intégral1 b(1988) -(2007/2008);cParisdMagasins/AnnexeeP 8° 5732 aZPAY aexempb201111 aGEO RA4.06 France aDEW 330.9 aDEW 310-31901094nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004900154210005300203326001100256517001900267607008100286607002900367710011100396856012400507955007000631972000900701991001800710992002200728992001400750992001600764040111776000003521920130319051913.0 a0999-1409 aFNSP199369 a0000034479 a19900101a19889999 ba0 afre aMQ aaka 10aTableaux économiques régionaux. Martinique aINSEE, Service régional : Fort-de-Franced1988- aAnnuel10aTER Martinique aFrancexDépartements et territoires d'outre-merxStatistiquesxPériodiques aMartiniquexPériodiques02aInstitut national de la statistique et des études économiquesc(France)bService régionalc(Martinique)4 uhttp://www.insee.fr/fr/regions/martinique/default.asp?page=publications/ter/TER_ma.htmzAccès libre au texte intégral1 b(1988) -(2003) ; (2007/2008);cParisdMagasins/AnnexeeP 8° 5737 aZPAY aexempb201111 aGEO RA4.06 France aDEW 330.9 aDEW 310-31901118nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004900139210005300188326001100241517001900252607008100271607002900352710011100381856015700492955008800649972000900737991001800746992002200764992001400786992001600800040111776000003447920130313093146.0 a0999-1409 aFNSP199369 a19900101a19889999 ba0 afre aMQ aaka 10aTableaux économiques régionaux. Martinique aINSEE, Service régional : Fort-de-Franced1988- aAnnuel10aTER Martinique aFrancexDépartements et territoires d'outre-merxStatistiquesxPériodiques aMartiniquexPériodiques02aInstitut national de la statistique et des études économiquesc(France)bService régionalc(Martinique)4 uhttp://www.insee.fr/fr/regions/martinique/default.asp?page=publications/ter/TER_ma.htmzAccés au texte intégral au format pdf des 2 dernières années1 b(1988) -(1991) ; (1995) ; (2000) ; (2007/2008);cParisdMagasins/AnnexeeP 8° 5733 aZPAY aexempb201111 aGEO RA4.06 France aDEW 330.9 aDEW 310-31901360nas 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000154001502100124003043260014004284300056004426070089004986070041005877100109006288010013007378560067007508560069008179550084008869720009009709920025009799920014010049920016010180000461357000046135720130319051913.0 a0000461357 a a20029999k fre ba0 afre aFR a 0  ar aal z 0 10aTableaux économiques régionaux Ile-de-FrancefInstitut national de la statistique et des études économiques. Direction régionale d'Ile de France aSaint-Quentin-en-YvelinescInstitut national de la statistique et des études économiques, Direction régionaled2002- aBisannuel 1tTableaux économiques de l'Ile-de-Francex0983-5733 aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques aIle-de-France (France)xPériodiques aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Paris) 0aFRbFNSP4 uhttp://www.insee.fr/fr/regions/idf/faitsetchiffres/default.asp4 zActualisation annuelle en ligne de tableaux classés par thèmes1 b11éme éd. (2000/2001)-13 ème éd. (2006)cParisdMagasins/AnnexeeP 4° 4384 aZPAY aGEO RA4.06 France 01 aDEW 330.9 aDEW 310-31901370nas 2200325 i 450 001001000000002001100010005001700021011001400038100004100052101000800093102000700101105001800108106000600126110001600132200015900148210010300307300005300410326001100463530005600474607008900530607004600619710010900665801001300774856013600787955005500923972000900978991001800987992001401005992002501019040048128000027809920130919143351.01 a1240-6929 a a19929999k fre ba0 afre aFR a 0  ar aak i 0 10aTableaux économiques régionaux Nord-Pas-CalaisfInstitut national de la statistique et des études économiques, Direction régionale Nord-Pas-de-Calais aLillecInstitut national de la statistique et des études économiques,Direction régionaled1992- aEdition 2005 uniquement disponible sur Cédérom aAnnuel00aTableaux économiques régionaux Nord-Pas-de-Calais aFrancexConditions économiquesxDisparités régionalesxStatistiquesxPériodiques aNord Pas-de-Calais (France)xPériodiques aInstitut national de la statistique et des études économiquesc(France)bDirection régionalec(Lille) 0aFRbFNSP40uhttp://www.insee.fr/fr/regions/nord-pas-de-calais/default.asp?page=themes/ouvrages/ter/ter_maj.htmzAccès libre au texte intégral1 b(1998) -(2002)cParisdMagasins/AnnexeeP 8° 6506 aZPAY aexempb201309 aDEW 330.9 aGEO RA4.06 France 0100779nls 2200265 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000059001502100052002092300024002616060030002856070050003158010013003658560041003788560056004199920022004759920016004970000984336000098433620130319051913.0 a0000984336 a a20059999k fre 01 ba0 aeng aTW ar aaj z  adr 10aTaiwan Journal of Democracyb[Ressource électronique] aTaipei:cTaiwan foundation for democracyd2005- aRevue électronique aDémocratiexPériodiques aAsiexPolitique et gouvernementxPériodiques 0aFRbFNSP4 uhttp://www.tfd.org.tw/HTML/0605.html zContenu : texte intégral depuis le numéro 1, 2005 aGEO RI3.02 Taiwan aDEW 320-32100999nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004100139210003300180326001100213530004100224607005600265676001200321702001800333830012000351856008800471955010000559972000900659992002500668992001600693038880954000008123520131104144332.01 a0082-1829 aFNSP361473 a19900101a19509999 ba0 ager aDE aaka 10aTaschenbuch des öffentlichen Lebens aBonncFestland Verlagd1950- aAnnuel00aTaschenbuch des öffentlichen Lebens aAllemagnexBiographiesxDictionnairesxPériodiques a320.943 1aOecklbAlbert a1 seul accés limité à la version en ligne, login : birgit.hallerberg@sciences-po.fr mot de passe : BibSciencesPo4 uhttp://www.oeckl-online.de.aPour les codes d'accès voir l'accueil bibliographique1 rConservation limitée à l'année en courscParisd30, Salle 1er étageeP 8° 5389 DEW 320.943 aZPAY aGEO RA5.01 Allemagne aDEW 920-92801414nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116200003100123210006000154300009300214326001100307606002500318606004800343710005500391801002100446856026600467856025800733955005900991972000901050991001801059992002301077992001201100032945523000008336120130605154506.0 a0892-8649 aFNSP371817 a19900101a19879999 ba0 aeng aUS10aTax policy and the economy aCambridge, MA‎cNBER and MIT Press Journals‎d1987- aA partir de l'édition 2002, périodique consultable en ligne pour les abonnés inscrits aAnnuel aImpôtxPériodiques aPolitique fiscaleyEtats-UnisxPériodiques02aNational Bureau of Economic Researchc(Etats-Unis) 3aFRbCCN0892-86494 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/direct.asp?db=bth&jid=88GC&scope=sitezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po, texte intégral à partir de2008 à il ya un an4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/direct.asp?db=bth&jid=TPE&scope=sitezAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po, texte intégral à partir de1997 à 20071 bvol. 1 (1987) -...cParisdMagasins/AnnexeeP 8° 5122 aZPAY aexempb201011 aGEO RC2 Etats-Unis aDEW 33601045nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171050018001241060006001421100016001482000079001642100054002433000062002973260015003595170028003745300036004026060031004386060039004698010013005088560048005218560045005699550084006149720009006989920012007070000574172000057417220130319051915.01 a1253-6032 a0000574172 a b19972005k fre ba0 afre aFR a 0  ar aaj z 0 10aTDPeTribune du droit publicerevue semestrielle de droit public général aTourscPresses universitaires de Toursd1997-2005 apubl.sous l'égide de l'Ecole doctorale de Droit de Tours asemestriel10aTribune du droit public10aTDP. La Tribune du droit public aDroit publicxPériodiques aDroit publicyFrancexPériodiques 0aFRbFNSP4 uhttp://www.univ-tours.fr/editions/droit.htm zContenu : sommaires depuis le n°1, 19971 bVol. 5 no. 10 (2002) - vol. 9 no. 18 (2005)cParisdMagasins/AnnexeeP 8° 6713 aZPAY aDEW 34200980nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004500154210004200199326001600241430004000257517000800297517004600305606003600351606004300387710003800430856006000468856005300528955006400581972000900645992001200654003067688000010747620130319051915.01 a1250-4165 aFNSP455512 a0000107476 a19900101a19939999 ba0 afre aFR aaha 10aTechniques financières & développement aPariscEpargne sans frontièred1993- aTrimestriel 1aEpargne sans frontière,x0765-745510aTFD10aTechniques financières et développement aMarché financierxPériodiques aFinances internationalesxPériodiques02aEpargne sans frontièrec(France)4 uhttp://esf.asso.fr/portail/rubrique.php3?id_rubrique=52 zContenu : sommaires et une sélection d'articles1 bno. 30 (mar-1993) -....cParisdMagasins/AnnexeeP 4° 6300 aZPAY aDEW 33200908nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004900154210003100203326001100234430006800245607003800313712004300351856010100394955005900495972000900554991001800563992002500581992001200606040046621000003847920130827112625.01 a0932-8408 aFNSP212993 a0000038479 a19900101a19879999 ba0 ager aDE aaka 10aTel Aviver Jahrbuch für deutsche Geschichte aGerlingencBleicherd1987- aAnnuel 1aJahrbuch des Instituts für deutsche GeschichtexISSN 0334-4606 aAllemagnexHistoirexPériodiques02aInstitute of German History (Tel Aviv)4 uhttp://www.tau.ac.il/GermanHistory/yearbook.htmlzContenu : sommaires et éditoriaux depuis 20021 bno. 16 (1987)-....cParisdMagasins/annexeeP 8° 3734 aZPAY aexempb201103 aGEO RA5.01 Allemagne aDEW 94300907nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001000154207001800164210003900182326001600221530002600237606003700263607004900300801002100349856003500370856005000405955006400455972000900519991001800528992002300546992001200569038892219000004615120130319051916.01 a0090-6514 aFNSP235781 a0000046151 a19900101a19689999 ba0 aeng aUS aahu 10aTelos 1ano. 1 (1968)- aNew York, N.Y.cTelos Pressd1968- aTrimestriel 0aTelosbNew York, N.Y. aVie intellectuellexPériodiques aEtats-UnisxVie intellectuellexPériodiques 3aFRbCCN0090-65144 uhttp://journal.telospress.com/4 zAccès aux sommaires et résumés depuis 19681 bno. 39 (pri-1979) -....cParisdMagasins/AnnexeeP 8° 4223 aZCAD aexempb201010 aGEO RC2 Etats-Unis aDEW 00101108nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200002500138210002500163326001200188517001000200607005100210607004700261607005300308676000800361856003700369856021500406955006600621955006300687972000900750992002300759992001200782037406507000016339120130319051916.01 a1134-6574 aFNSP626139 a0000163391 a19900101a19949999 0 aspa aES00aTemas para el debate aMadridcTemasd1994- aMensuel10aTemas aEspagnexConditions économiquesxPériodiques aEspagnexConditions socialesxPériodiques aEspagnexPolitique et gouvernementxPériodiques a9404 uhttp://www.fundacionsistema.com/ zContenu : sélection d'articles en texte intégral depuis le n°140, juillet 2006 ; sommaires et recherche par titre d'article, auteur, n°, date de parution sur tous les sommaires à partir du n°1, déc. 19941 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 9401 bno. 1 (dec-1994) -....cParisdMagasins/AnnexeeP 4° 6487 aZPAY aGEO RA6.02 Espagne aDEW 94601103nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210004000180326001700220430004800237530003200285606002900317607002500346801002100371856003700392856008700429955006900516955006900585955008900654992002200743992001200765039382125000004373920130319051916.01 a0244-1462 aFNSP228351 a0000043739 a19900101a19809999 ba0 afre aFR aa u 10aTémoignage chrétien aPariscTémoignage chrétiend1980- aHebdomadaire 1aTC. Témoignage chrétien (1977)x0180-151110aTémoignage chrétienb1980 aActualitéxPériodiques aFrancexPériodiques 3aFRbCCN0244-14624 uhttp://www.temoignagechretien.fr4 zContenu : sommaire et sélection d'articles en texte intégral du dernier numéro.1 bL'année en courscParisd27, Salle Rez-de-chausséeeP 4° 68811 bno. 2961 (12 avr-2001) -....cParisdMagasins/AnnexeeP 4° 68811 bno. 1901 (15/21 dec-1980) -no. 2960 (5 avr-2001)cParisdMagasins/AnnexeeP F° 1102 aGEO RA4.06 France aDEW 05001096nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001700154210007800171326001500249606003800264606002900302710005900331856017800390856012800568955006600696972000900762992002300771992001200794038978520000014481320130530101801.01 a0103-2070 aFNSP571329 a0000144813 a19941221a19899999 ba0 apor aBR aaja 10aTempo social aSão PaulocUniversidade de São Paulo, Departamento de sociologiad1989- aSemestriel aSociologieyBrésilxPériodiques aSociologiexPériodiques02aUniversidade de São PaulobDepartamento de sociologia4 uhttp://www.fflch.usp.br/sociologia/temposocial_2/zContenu : sommaires, résumés et texte intégral depuis le vol. 1, n°1, mai 1989 (à l'exception de la dernière année)4 uhttp://www.scielo.br/scielo.php/script_sci_serial/pid_0103-2070/lng_en/nrm_isozAccès libre au texte intégral depuis 19971 bvol. 1 no. 1 (1989) -....cParisdMagasins/AnnexeeP 4° 6420 aZSAB aGEO RD4.13 Brésil aDEW 30101086nas 2200289 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321060006001391100016001452000027001612100027001883260014002155170013002295300027002426060029002696070025002988560145003239550085004689570231005539920012007840000087407000008740720130319051916.0 a1150-1073 aFNSP386647 a0000087407 a19900101b18611942 ba0 afre aFR ar acaa 13aLe Temps (Paris, 1861) aPariscs.n.d1861-1942 aquotidien10aLe Temps03aLe Temps (Paris, 1861) aActualitéxPériodiques aFrancexPériodiques4 uhttp://gallica.bnf.fr/ark:/12148/cb34431794k/date.r=.langFRzAccès libre au texte intégral. Périodique numérisé sur Gallica (1861-1942)1 bed. en microfilm : 1894 ---> 30 nov. 1942cParisdMagasins/AnnexeeP Mic 35 (24)1 bTables : vol.1,1861/1865, vol.2,1866/1870, vol. 3, 1871/1875, vol. 4, 1876/1880, vol. 5, 1881/1885, vol.6, 1886/1888, vol. 7, 1889/1891, vol.8, 1892/1894,vol.9, 1895/1897, vol. 10, 1898/1900cParisdMagasins/AnnexeeP Index 15 aDEW 05001182nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200008200163207001700245210004200262320013900304326001500443606003600458676000800494710005000502801001300552856009900565856010800664955006300772972000900835992001200844075228408000055973720140109140030.01 a1764-2507 a0000559737 a a20039999k fre ba0 afre aFR a 0  ar aaj z 0 13aLe Temps des médiaserevue d'histoirefSociété pour l'histoire des médias 1ano 1 (2003)- aPariscNouveau Monde éditionsd2003- aPublié avec le concours scientifique du groupe de recherche Temps, médias et société (Fondation nationale des sciences politiques) aSemestriel aMédiasxHistoirexPériodiques a07002aSociété pour l'histoire des médias (Paris) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-le-temps-des-medias.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (aut-2003) -....cParisdMagasins/AnnexeeP 8° 6711 aZPAY aDEW 07001210nas 2200277 i 450 0010011000000020011000110050017000220110018000390350015000570350015000721000041000871010008001281020007001361100016001432000045001592100023002044530038002276060061002657100067003268560305003938560108006989550054008069720009008609920051008699920012009200000182998000018299820130319051916.01 aSSN 1028-8171 aFNSP680528 a0000182998 a19900101a19959999 ba0 afre aFR aaya 10aTendance des impôts sur la consommation aPariscOCDEd1995- 1tConsumption tax trendsx1562-8752 aImpôt sur la consommationyPays de l'OCDExPériodiques aOrganisation de coopération et de développement économiques4 uhttps://acces-distant.sciences-po.fr/fork?http://oberon.sourceocde.org/vl=1691227/cl=33/nw=1/rpsv/cgi-bin/jsearch_oecd?limittitles=&cheese=searchdb&oecd-select=home.htm&form=expert&search0=tendances+des+impots+sur+la+consommation&search=&field0=tka&system=oecd_all&sortresultsby=rev_timestamp&what=d14 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1995)-(2004)cParisdMagasins/AnnexeeP 4° 6597 aZPAY aGEO RN1 Pays industrialisés, pays occidentaux aDEW 33601222cas0 2200349 450 001001000000002001100010005001700021011001400038035001700052035001700069035001700086100004100103101000800144102000700152106000600159110001600165200005200181210002300233452006900256453003800325530004600363606006100409710006700470801003000537801002300567802000700590856013900597955005500736991001800791992001200809992005100821040231925000116572820140115115917.0 a1028-8171 zccn7200/9853 accn1028-8171 aissn10288171 a19980115a19959999 0frey0103 ba0 afre aZZ ar aak 10aTendances des impôts sur la consommationfOCDE aPariscOCDEd1995- 1tTendances des impôts sur la consommation (En ligne),x1999-0987 1tConsumption tax trendsx1562-8752 aTendances des impôts sur la consommation aImpôt sur la consommationyPays de l'OCDExPériodiques02aOrganisation de coopération et de développement économiques 3aFRbAbesc20090106gAFNOR 3aFRbISSNc20080314 a004 uhttp://www.oecd-ilibrary.org/zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bb(1995)-(2004)cParisdMagasins/AnnexeeP 4° 6597 aexempb201401 aDEW 336 aGEO RN1 Pays industrialisés, pays occidentaux01206nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005600163210005200219326002200271326002700293517007500320606003200395606002200427606004400449710003800493801001300531856002700544856006600571955007000637955008700707972000900794992001600803992002500819039459616000053982020130319051916.01 a0293-8812 a0000539820 a a19819999k fre ba0 afre aFR a 0  ar aag z 0 10aTenou'afrevue du Mouvement juif libéral de France aPariscMouvement juif libéral de Franced1981- aBimestrielb2005- aTrimestrielb1981-200410aLe Mouvement = Tenou'a : la revue du mouvement juif libéral de France aJuifsyFrancexPériodiques aJudaïsmeyFrance aJuifsyFrancexEt IsraëlxPériodiques02aMouvement juif libéral de France 0aFRbFNSP uhttp://www.mjlf.col.fr zContenu : sommaires et résumés depuis le n° 92, déc. 19991 bno. 118 (fev/mar- 2006) -....cParisdMagasins/AnnexeeP 4° 71101 bno. 93 (avr-2000) -no. 117 (dec-2005/jan-2006)cParisdMagasins/AnnexeeP 8° 6704 aZCAD aDEW 305-306 aGEO RA4.06 France 0101199nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002000154210003000174326003300204326002900237530003600266606004000302606003600342801002100378856006500399856005500464955000500519955008200524955005200606957006600658957007200724972000900796991001800805992001400823039597407000004353520130716152123.01 a0394-1248 aFNSP227862 a0000043535 a19900101b19852009 ba0 aita aIT aaku 10aTeoria politica aMilanocAngelid1985-2009 aQuadrimestriel jusqu'en 2009 aAnnuel à partir de 201100aTeoria politicabTesto stampato aPhilosophie politiquexPériodiques aScience politiquexPériodiques 3aFRbCCN0394-12484 uhttp://www.francoangeli.it/riviste/sommario.asp?IDRivista=61 zSommaires depuis 1990 ; avec résumés depuis 20001 a1 bvol. 1 no. 1 (1985) -vol. 25 no. 3 (2009)cParisdMagasins/AnnexeeP 8° 48221 b(2011)-....cParisdMagasins/AnnexeeP 8° 48221 bvol. 11 (1995) -vol. 15 (1999)zse trouve dans le no 1 (2000)1 bvol. 1 (1985) -vol. 10 (1994)cParisdMagasins/AnnexeeP Index 0757 aZPAY aexempb200912 aDEW 320.501036nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200002200138210006000160326001200220517000800232606003600240606005300276607002800329607003300357710005600390801002100446856004400467856003600511955006600547972000900613991001800622992004400640992001400684038807106000004353720130319051916.01 a0040-3598 aFNSP227864 a0000043537 a19900101a19649999 ba0 ascr aYU10aTeorija in praksa aLjubljanacUniverza Edvarda Kardelja v Ljubljanid1964- aMensuel10aTIP aScience politiquexPériodiques aScience politiqueyEurope de l'EstxPériodiques aSlovéniexPériodiques aEx-YougoslaviexPériodiques02aUniverza Edvarda Kardeljac(Ljubljana, Yougoslavie) 3aFRbCCN0033/17834 uhttp://www.uni-lj.si/fd_tip/index2.html zContenu : résumés depuis 19961 bvol. 1 no. 1 (1964) -....cParisdMagasins/AnnexeeP 8° 2104 aZSAB aexempb201302 aGEO RA8.22 Slovénie (depuis 1991-1992) aDEW 949.701140nas 2200361 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000130015420700220016721000230018921000300021232600160024243000360025853000280029460600470032267600080036971000720037785600390044985600890048885600380057785600590061595500710067497200090074599200120075499200120076603987866X000004354720140109141049.01 a0997-5551 aFNSP227875 a0000043547 a19900101a19879999 ba0 afre aFR aaha 10aTerminal 1aNo 35 (1987,oct)- aPariscCIIId1987- aPariscL'Harmattand1993- aTrimestriel 1tTerminal 19-84,xissn 0292-772110aTerminalb(Paris. 1987) aTechnologie de l'informationxPériodiques a07002aCentre d'information et d'initiative sur l'informatisationc(Paris)4 uhttp://www.revue-terminal.org/www/ zContenu : sommaires depuis le n°61, 1993 ; sélection d'articles en texte intégral4 uhttp://www.editions-harmattan.fr/ zContenu : sommaires et résumés depuis le n°61, 19931 bno. 35 (1987) -....cParisd27, Salle Rez-de-chausséeeP 4° 4593 aZPAY aDEW 020 aDEW 00401046cas0 2200337 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011610500180012310600060014111000160014720000140016320700220017721000350019932600120023443000310024660600410027760600270031860600440034580100300038985600370041985600730045695500710052995500630060099200120066399200330067513150049X000116444620130319051916.01 a2100-1472 a0001164446 a20090302a20099999m y0frey0103 ba0 afre aFR ay 0  ar aafa 0xy010aTerra eco 0aNo 1 (mars 2009)- aNantescTerra economicad2009- aMensuel 1tTerra economicax1766-4667 aDéveloppement durablexPériodiques aEcologiexPériodiques aEnvironnementxProtectionxPériodiques 3aFRbAbesc20090309gAFNOR4 uhttp://www.terra-economica.info/ zContenu : sommaires des n°s et texte intégral de certains articles1 bL’année en courscParisd27, Salle Rez-de chausséeeP 4° 71601 bno. 1 (mar-2009) -....cParisdMagasins/AnnexeeP 4° 7160 aDEW 333 aGEO RS Sans aspect régional01034cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200006200156210003800218326002300256326002500279326002800304440001400332606003700346606004100383801003000424801002300454802000700477856003700484856007300521955008100594972000900675992001200684078578256000105204320130319051916.01 a1766-4667 aissn17664667 a0001052043 a20030523b20049999k y0frey0103 ba0 afre aFR aaeu uu 10aTerra economicaeRemettez l'homme au coeur de l'économie aPariscTerra economicad2004-2009 aMensuelb2008-2009 aBimensuelb2005-2007 aHebdomadaireb2004-2005 1tTerra eco aEconomie politiquexPériodiques aDéveloppement durablexPériodiques 3aFRbAbesc20060920gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.terra-economica.info/ zContenu : sommaires des n°s et texte intégral de certains articles1 bno. 27 (oct/nov-2006) -no. 63 (fev-2009)cParisdMagasins/AnnexeeP 4° 7160 aZPAY aDEW 33001211nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008400154210006600238326001500304530002700319606003600346606003700382710004700419801002100466856003100487856005400518856008700572856010800659955006300767972000900830992002200839992001200861013662678000004355120131025125602.01 a0760-5668 aFNSP227880 a0000043551 a19900101a19839999 ba0 afre aFR aaju 10aTerrainecarnets du patrimoine ethnologiquefMission du patrimoine ethnologique aPariscMinistère de la CulturecMission du patrimoined1983- aSemestriel10aTerrainb(Paris, 1983) aArtisanatyFrancexPériodiques aEthnologieyFrancexPériodiques02aFrancebMission du patrimoine ethnologique 3aFRbCCN0760-56684 uhttp://terrain.revues.org/ zContenu : texte intégral depuis le le n°1, 19834 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-terrain.htm?4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 2 (mar-1984) -....cParisdMagasins/AnnexeeP 4° 5249 aZPAY aGEO RA4.06 France aDEW 30101150nas 2200325 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000062001552100028002173260012002454220073002575300031003306060053003616060048004147120090004628560026005528560061005789550062006399550073007019720009007749920025007839920016008080000203569000020356920130319051917.01 a0223-5951 aFNSP741704 a0000203569 a19900101b19962006 ba0 afre aFR aafa 10aTerritoiresela revue de la démocratie locale.icahier 1 aPariscADELSd1996-2006 aMensuel 1aTerritoiresela revue de la démocratie locale.icahier 2x0991-242810aTerritoiresb(Paris, 1996) aAménagement du territoireyFrancexPériodiques aAdministration localeyFrancexPériodiques02aAssociation démocratique d'élus et animateurs de la vie locale et socialec(France)4 uhttp://www.adels.org/4 zcontenu : sommaire et article du mois depuis janv. 2002.1 b(mai-1996) -no 413 (déc-2000)cParisdAnnexeeP F° 05361 bno 414 (janv-2001)-no 473 (dec-2006)cParisdMagasins 27eP F° 0536 aZGRA aGEO RA4.06 France 01 aDEW 350-35401162cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200002100162210005000183326001500233440002100248517005500269606004500324676000800369710008300377801003000460801002300490802000700513856009800520856005700618955007000675972000900745992003400754992001200788057915946000073306320130319051917.01 a1622-891X aissn1622891X a0000733063 a20001206b20002004 z0frey0103 ba0 afre aFR ar aaj 10aTerritoires 2020 aPariscla Documentation françaised2000-2004 aSemestriel 1tTerritoires 203010aTerritoire 2020erevue d'études et de prospective aAménagement du territoirexPériodiques a33301aFrancebDélégation à l'aménagement du territoire et à l'action régionale 3aFRbAbesc20041005gAFNOR 3aFRbISSNc20001206 a074 uhttp://www.datar.gouv.fr/datar_site/datar_framedef.nsf/webmaster/bib_framedef_vf?OpenDocument zContenu : texte intégral depuis le N° 1, Juin 20001 bno. 10 (2004) - no. 11 (2004)cParisdMagasins/AnnexeeP 4° 7060 aZGRA aGEO RA2.01 Europe occidentale aDEW 33301124nas0 2200349 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005600163207001700219210004600236326001500282430002100297517003400318606004500352676000800397710008300405801003000488856009800518856003600616955006700652972000900719992003400728992001200762088603695000090290320130319051917.01 a1777-6171 a0000902903 a20050713a20059999k y0frey0103 ba0 afre aFR a 0  ar aaja 0 10aTerritoires 2030erevue d'études et de prospective 1aNo.1 (2005)- aPariscla Documentation françaised2005- aSemestriel 1tTerritoires 202010aTerritoires deux mille trente aAménagement du territoirexPériodiques a33301aFrancebDélégation à l'aménagement du territoire et à l'action régionale 3aFRbAbesc20050713gAFNOR4 uhttp://www.datar.gouv.fr/datar_site/datar_framedef.nsf/webmaster/bib_framedef_vf?OpenDocument zAccès libre au texte intégral1 bno. 5 (2005) -no. 4 (2007)cParisdMagasins/AnnexeeP 4° 7060 aZGRA aGEO RA2.01 Europe occidentale aDEW 33300941nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154207002800191210002400219326001600243606002900259606003700288856010900325856010800434955007000542972000900612991001800621992001200639040085198000000594220140114173252.01 a0954-6553 aFNSP109452 a0000005942 a19900329a19899999 ba0 aeng aGB aaha 10aTerrorism and political violence 1aVol.1, no.1 (jan-1989)- aLondoncCassd1989- aTrimestriel aTerrorismexPériodiques aViolence politiquexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713636843db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 2 (avr-1989) -....cParisdMagasins/AnnexeeP 8° 5629 aZSAB aexempb201106 aDEW 32000878nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001800154210005000172326001500222606005500237606004700292801002100339856003400360856005000394955006900444972000900513991001800522992002200540992001400562038807378000004614220130319051918.01 a0040-3989 aFNSP235767 a0000046142 a19900101a19589999 ba0 aita aIT aafu 10aTestimonianze aSan Domenico di FiesolecTestimonianzed1958- aBimestriel aEglise et problèmes sociauxyItaliexPériodiques aThéologie de la libérationxPériodiques 3aFRbCCN0040-39894 uhttp://www.testimonianze.org/ zSommaires et résumés depuis le n°409, 20001 bvol. 12 no. 111 (1969) -....cParisdMagasins/AnnexeeP 8° 2642 aZPAY aexempb201105 aGEO RA6.03 Italie aDEW 20-2900986nls 2200289 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200011300124210000500237230002800242326001100270606007000281606005400351710005700405801001300462856010200475856005900577955000500636992002300641992001600664992001600680000124239820130522102711.0 a a20119999k fre 01 ba0 aeng aUS ar aak z  ad 10aThe Condition of educationb[Ressource électronique] / Etats-UnisbNational Center for Education Statistics a aRessource électronique aAnnuel aFormation professionnelleyEtats-UnisxStatistiquesxPériodiques aEducationyEtats-UnisxStatistiquesxPériodiques02aEtats-UnisbNational Center for Education Statistics 0aFRbFNSP4 uhttp://nces.ed.gov/programs/coe/zAccès au texte intégral des deux dernières édition en ligne4 zTexte intégral des deux dernières éditions en ligne1 r aGEO RC2 Etats-Unis aDEW 370-379 aDEW 310-31901372nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003000154207002600184210002400210326002500234326002600259326002700285517003200312606002900344606003900373710009500412856010100507856007700608856010800685856010800793955007000901972000900971991001800980992001200998013561154000007179320130319051919.01 a0263-2764 aFNSP328557 a0000071793 a19900101a19829999 ba0 aeng aGB aaga 10aTheory, culture & society 1aVol. 1, no. 1 (1982)- aLondoncSaged1982- a8 N°s par anb2006- aBimestrielb1999-2005 aTrimestrielb1982-199810aTheory, culture and society aSociologiexPériodiques aIdentité collectivexPériodiques02aTeesside Polytechnicc(Middlesbrough, GB)bDepartment of Administrative and Social Studies4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=101644 zContenu : sommaires et résumés depuis le volume 15, n°3, octobre 19984 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 9 no. 1 (fev-1992) -....cParisdMagasins/AnnexeeP 8° 5873 aZSAB aexempb201112 aDEW 30100785nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210004400178326001500222606003600237801002100273856004500294856005900339955007000398972000900468991001800477992001200495038808307000004614720130319051919.01 a0040-5833 aFNSP235775 a0000046147 a19900101a19709999 ba0 aeng aNL aagu 10aTheory and decision aDordrechtcKluwer Academic Publ.d1970- aBimestriel aSciences socialesxPériodiques 3aFRbCCN0040-58334 uhttp://www.wkap.nl/jrnltoc.htm/0040-5833 zContenu : somaires depuis le vol. 38, n°1, janv. 19951 bvol. 1 no. 1 (oct-1970) -....cParisdMagasins/AnnexeeP 8° 2900 aZSAB aexempb200910 aDEW 30001258nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002300154210004400177326001500221606002900236801002100265856004500286856006000331856009000391856010800481856012800589856010800717955006600825972000900891991001800900992001400918039379248000004614820130319051919.01 a0304-2421 aFNSP235776 a0000046148 a19900101a19749999 ba0 aeng aNL aagu 10aTheory and society aDordrechtcKluwer Academic Publ.d1974- aBimestriel aSociologiexPériodiques 3aFRbCCN0304-24214 uhttp://www.wkap.nl/jrnltoc.htm/0304-2421 zContenu : sommaires depuis le vol. 24, n°1, fév. 19954 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/03042421.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=TSY&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1974) -....cParisdMagasins/AnnexeeP 8° 3594 aZSAB aexempb200911 aDEW 320.501236nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001800154210002400172326001600196606003800212606004000250606002900290801002100319856009500340856007800435856010800513856010800621955006000729957006800789972000900857991001800866992001400884039687651000004359020130319051919.01 a0725-5136 aFNSP227936 a0000043590 a19900101a19809999 ba0 aeng aGB aahu 10aThesis eleven aLondoncSaged1980- aTrimestriel aPhilosophie socialexPériodiques aPhilosophie politiquexPériodiques aSocialismexPériodiques 3aFRbCCN0725-51364 uhttps://acces-distant.sciences-po.fr/fork?http://www.sagepub.co.uk/journal.aspx?pid=105796 zContenu : sommaires depuis le vol. 48, fév. 1997 ; résumés depuis 19984 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 12 (1985) -....cParisdMagasins/AnnexeeP 8° 49621 bno. 1 (1980) -no. 63 (2000)cParisdMagasins/AnnexeeP 8° 4962 aZSAB aexempb201003 aDEW 320.501713nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002600154210002800180326002500208606003500233607004900268676001000317710006800327801002100395856012800416856010800544856012800652856010800780856010900888856010800997955006901105955007001174972000901244991001801253992004201271992001401313039082946000000553220130319051920.01 a0143-6597 aFNSP108493 a0000005532 a19900319a19799999 ba0 aeng aGB aagu 10aThird world quarterly aAbingdoncCarfaxd1979- a8 n°s par anb2004- aAide économiquexPériodiques aPays en voie de développementxPériodiques a338.902aThird World Foundation for Social and Economic Studies (London) 3aFRbCCN0143-65974 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=TWQ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=TWQ&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713448481db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 338.91 bvol. 1 no. 1 (jan-1979) -....cParisdMagasins/AnnexeeP 8° 4151 aZSAB aexempb201103 aGEO RO Pays en voie de développement aDEW 338.901329nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001600154210005500170326001600225440003300241530002300274606003500297607004900332710007100381801002100452856006300473856010000536856009000636856010800726955008000834972000900914992004200923992001400965013321374000000553520140103105648.01 a0040-7356 aFNSP108496 a0000005535 a19900319b19601996 ba0 afre aFR aaha 10aTiers monde aPariscPresses universitaires de Franced1960-1996 aTrimestriel 1tRevue tiers mondex1293-888210aTiers mondebParis aAide économiquexPériodiques aPays en voie de développementxPériodiques02aInstitut d'étude du développement économique et socialc(Paris) 3aFRbCCN0040-73564 uhttp://www.persee.fr/web/revues/home/prescript/revue/tiers zAccès libre au texte intégral à partir de 1960 à l'exception des années les plus récentes4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-tiers-monde.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1960) -no. 148 (dec-1996)cParisdMagasins/AnnexeeP 8° 1804 aZGRA aGEO RO Pays en voie de développement aDEW 338.901112cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200001300180210002700193326002100220326002600241517003100267530002200298606004600320606002900366801003000395801002300425802000700448856002900455955006900484955006300553955008500616992001200701992002500713104482826000117441720130319051920.01 a1778-9796 aissn17789796 a0001174417 a20060704a20069999m y0frey0103 ba0 afre aFR ay  ar accu uu 13aLe Tigre aPariscLe Tigred2006- aBimensuel$d2010- aBimestriel$d2006-200913aLe Tigreemagazine curieux13aLe Tigreb(Paris) aSatire politique françaisexPériodiques aActualitéxPériodiques 3aFRbAbesc20090312gAFNOR 3aFRbISSNc20080909 a074 uhttp://www.le-tigre.net/1 bL'année en courscParisd27, Salle Rez-de-chausséeeP F° 05591 bno. 1 (fev-2010) -....cParisdMagasins/AnnexeeP F° 05591 bno. 28 (nov/dec-2008) -no. 34 (nov/dec-2009)cParisdMagasins/AnnexeeP 4° 7254 aDEW 050 aGEO RA4.06 France 0101131nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210002400173326001800197517002100215606003800236606003600274856009500310856008800405856010800493856010800601955006900709972000900778991001800787992001200805040095681000005557020130319051920.01 a0961-463X aFNSP260125 a0000055570 a19900101a19929999 ba0 aeng aGB aaia 10aTime & society aLondoncSaged1992- a3 n°s par an10aTime and society aTemps (philosophie)xPériodiques aTempsxSociologiexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://www.sagepub.co.uk/journal.aspx?pid=105797 zContenu : sommaires depuis le vol. 6, n°2, juil. 1997, résumés à partir de 19994 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no 1 (jan-1992) -....cParisdMagasins/AnnexeeP 8° 5788 aZSAB aexempb201111 aDEW 30100879nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003900154210003600193300007200229326001700301422003000318430004800348606005300396801002100449856003000470955008700500992001400587039399524000003838420130919095729.01 a0307-661X aFNSP212806 a0000038384 a19900101a19699999 ba0 aeng aGB aa u 10aTLSethe Times literary supplement aLondoncTimes Newspapersd1969- aaPublication interrompue entre le 1er déc. 1978 et le 23 nov. 1979 aHebdomadaire 1aTimes (London)x0140-0460 1tTimes literary supplement (1902)x0040-7895 aLittératurexHistoire et critiquexPériodiques 3aFRbCCN0307-661X4 uhttp://www.the-tls.co.uk/1 bConservation limitée aux 5 dernières annéescParisdMagasins/AnnexeeP F° 1006 aDEW 80-8901041nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200005100154207003100205210004000236326001500276517002200291606003600313676000800349710002600357801002100383856006700404856005600471955006700527955007000594972000900664991001800673992001200691039690717000001443920130319051921.01 a0730-479X aFNSP139537 a0000014439 a19900101a19799999 ba0 aeng aUS aaju 14aThe Tocqueville reviewd= La revue Tocqueville 1avol. 1, no. 1 (fall 1979)- aPariscSociété Tocquevilled1979- aSemestriel10aRevue Tocqueville aSciences socialesxPériodiques a32002aSociété Tocqueville 3aFRbCCN0730-479X4 uhttp://americancenter.sciences-po.fr/Research/Tocqueville1.htm zContient : sommaires depuis le vol. 13, no. 1, 19921 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bvol. 1 no. 1 (aut-1979) -....cParisdMagasins/AnnexeeP 8° 4256 aZSAB aexempb201104 aDEW 30000778nas 2200265 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000022001552100059001773260016002365300022002526070024002747120045002988560040003438560037003839550071004209920021004910000043649000004364920130319051921.01 a0916-3085 aFNSP228056 a0000043649 a19900101a19889999 ba0 aeng aJP aaha 10aTokyo Club papers aTokyocTokyo Club Foundation for Global Studiesd1988- aTrimestriel00aTokyo Club papers aJaponxPériodiques02aTokyo Club Foundation for Global Studies4 uhttp://www.tcf.or.jp/tcp/tcptop.htm zAccès libre au texte intégral.1 bno. 1 (1988) -no. 6 (2) (1993)cParisdMagasins/annexeeP 4° 5433 aGEO RI3.22 Japon01195nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200005100163210003400214326002700248326002900275440004500304606005000349606003500399606004000434606003200474801001300506856010900519856010800628955009600736972000900832992001600841058262474000040231120130319051921.01 a1469-0764 a0000402311 a b20002010k fre ba0 aeng aGB a 0  ar aah z 0 10aTotalitarian movements and political religions aIlfordcFrank Cassd2000-2010 aTrimestrielb2006-2010 a3 n°s par anb2000-2005 1tPolitics, religion & ideologyx2156-7689 aTotalitarismexAspect religieuxxPériodiques aReligion et EtatxPériodiques aReligion et politiquexPériodiques aAutoritarismexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713636813db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (ete-2000) -vol. 11 no. 3/4 (sep/dec-2010)cParisdMagasins/AnnexeeP 8° 6579 aZSAB aDEW 320-32100975cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200003400156210004700190326001500237606003200252606003000284710007700314801003000391801002300421802000700444856004700451856007200498955006600570972000900636992001600645078925592000091296520130319051921.01 a1612-9008 aissn16129008 a0000912965 a20030523a20049999 0fre 0103 ba0 amul aDE aaj 10aTotalitarismus und Demokratie aGöttingencVandenhoeck u. Ruprechtd2004- aSemestriel aTotalitarismexPériodiques aDémocratiexPériodiques02aHannah-Arendt-Institut für Totalitarismusforschungc(Dresde, Allemagne) 3aFRbAbesc20040615gAFNOR 3aFRbISSNc20030523 a064 uhttp://www.v-r.de/de/zeitschriften/500056/ zAccès aux sommaires et résumés d'articles en anglais depuis 20051 bvol. 1 no. 1 (2004) -....cParisdMagasins/AnnexeeP 8° 6848 aZPAY aDEW 320-32101535cas0 2200433 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101001300125102000700138105001800145106000600163110001600169200006300185207002400248210007000272300003800342304007100380326002200451326002700473430007500500530002000575532005600595607004000651607005100691607002600742607003700768710006200805801003000867802000700897856005500904856004600959955006401005992002001069992001201089039136027000117423720130319051923.01 a0185-6286 accn0185-6286 a0001174237 a19980721a19849999k 0frey0103 ba0 aspaafre aMX ay  ar aay 10aTraceetravaux et recherches dans les amériques du centre 0aNo 7 (oct. [1984])- aMexicocCentre d'études mexicaines et centraméricainesd[1984]- aTexte en français et en espagnol aCoéd., jusqu'en 1986, par l'Institut français d'Amérique latine aSemestrielb1988- aIrrégulierb1984-1987 1tBulletin - Centre d'études mexicaines et centraméricainesx0185-413510aTraceb(Mexico)10aTravaux et recherches dans les amériques du centre aMexiquexCivilisationxPériodiques aAmérique centralexCivilisationxPériodiques aMexiquexPériodiques aAmérique centralexPériodiques02aCentro de estudios mexicanos y centroamericanosc(Mexico) 3aFRbAbesc20090304gAFNOR a0Q4 uhttp://www.cemca.org.mx/contenido.php?contenido=39 zContenu : sommaires des derniers numéros1 bno. 46 (dec-2004) -....cParisdMagasins/AnnexeeP 4° 7252 aGEO RD1 Mexique aDEW 97201440cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200009700180207001700277210002600294305010800320326001500428517001800443606003600461606003600497710006800533801003000601801002300631802000700654856004100661856004200702856008500744856010800829955006900937992001201006992002401018076270394000112783120130531142715.01 a1763-0061 aissn17630061 a0001127831 a20030523a20039999k y0frey0103 ba0 afre aFR ay  ar aaju uu 10aTracéserevue de sciences humainesfÉcole normale supérieure Lettres et sciences humaines 0aNo 3 (2003)-1 aLyoncENS éd.d2003- aLes numéros 1 et 2 ont été publiés uniquement sur le net à l'adresse : www.ens-lsh.fr/assoc/traces aSemestriel10aRevue Tracés aSciences humainesxPériodiques aSciences socialesxPériodiques02aÉcole normale supérieure-Lettres et sciences humainesc(Lyon) 3aFRbAbesc20071128gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.revues.org/index1973.html zContenu : texte intégral depuis 20044 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-traces.htm zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 12 (2007) -no. 23 (2012)cParisdMagasins/AnnexeeP 8° 6992 aDEW 300 aGEO RA4 . 06 France01009nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210002600187326001100213451006000224601008500284606004100369710007100410801002100481856010000502955005900602972000900661992002100670992001600691039276996000010033320130417172402.01 a0255-4607 aFNSP433724 a0000100333 a19900101a19819999 f ba0 aeng aCH aaku 10aTrade and development report aGenevacUNCTADd1981- aAnnuel 1aRapport sur le commerce et le développementx0256-088702aConférence des Nations Unies sur le commerce et le développementxPériodiques aCommerce internationalxPériodiques02aConférence des Nations Unies sur le commerce et le développement 3aFRbCCN0255-46074 uhttp://www.unctad.org/Templates/Page.asp?intItemID=2508&lang=1zAccès libre au texte intégral1 b(1981) -(2006)cParisdMagasins/AnnexeeP 4° 4829 bis aZPAY aGEO RQ Universel aDEW 380-38201067nas 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000101001502070010002512100034002613260011002956060067003066060068003737100071004418010013005128560052005258560036005779550075006139720009006889920042006979920014007390000630860000063086020130319051923.0 a0000630860 a a20049999 fre 01 ba0 aeng aCH a 0  ar aak z 0 10aTrade and environment reviewfConférence des Nations Unies sur le commerce et le développement 1a2004- aGenèvecNations Uniesd2004- aAnnuel aPolitique de l'environnementxAspect économiquexPériodiques aCommerce internationalxAspect de l'environnementxPériodiques02aConférence des Nations Unies sur le commerce et le développement 0aFRbFNSP4 uhttp://r0.unctad.org/trade_env/test1/openF1.htm zAccès libre au texte intégral1 b(2003) ; (2006) ; (2009/2010)-....cParisdMagasins/AnnexeeP 4° 7038 aZGRA aGEO RO Pays en voie de développement aDEW 330.900914nas 2200301 i 450 0010011000000020011000110050017000220110014000390110005000530350015000580350015000731000041000881010008001291020007001371100016001442000071001602100035002313260011002664300115002776060027003926060027004197100018004468560051004649550055005159720009005709920012005799920021005910000134479000013447920130319051924.0 a0255-72581 a aFNSP541826 a0000134479 a19940819a19829999 f ba0 afre aUS aaka 10aTraités multilatéraux déposés auprès du Secrétaire général aNew YorkcNations Uniesd1982- aannuel 1aTraités multilatéraux pour lesquels le Secrétaire général exerce les fonctions de dépositairex0251-7876 aTraitésxRépertoires aTraitésxPériodiques aNations Unies4 uhttp://treaties.un.org/Pages/Home.aspx?lang=fr1 b(1981)-(2004)cParisdMagasins/AnnexeeNU 4° 0714 aZGRA aDEW 341 aGEO RQ Universel01003cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101001800125102000700143105001800150106000600168110001600174200006600190210003100256326001500287606003600302606004400338676000800382801003000390801002300420802000700443856006800450955006700518955005900585972000900644992001200653099272237000101177620130319051925.01 a1950-1684 aissn19501684 a0001011776 a20060419a20059999k y0frey0103 ba0 afredfredeng aFR a 0  ar aaj 0 10aTranscontinentalesesociétés, idéologies, système mondial aPariscArmand Colind2005- aSemestriel aSciences socialesxPériodiques aRelations internationalesxPériodiques a320 3aFRbAbesc20060727gAFNOR 3aFRbISSNc20060401 a074 uhttp://www.revues.msh-paris.fr/Modele2/perbook2.asp?id_perio=711 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bno. 1 (2005) -....cParisdMagasins/AnnexeeP 8° 6911 aZPAY aDEW 32000751nls 2200265 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000046001502100065001962300024002616060051002858010013003368560034003498560051003839550005004349920012004399920034004510001166444000116644420130319051925.0 a0001166444 a a20099999k fre 01 ba0 afre aFR ar aaz z  adr 10aTranseo Reviewb[Ressource électronique] aPariscPour un espace des sciences sociales européend2009- aRevue électronique aSociologie de la culturexPériodiquesyEurope 0aFRbFNSP4 uhttp://www.transeo-review.eu/ zContenu : texte intégral depuis le n°1, 20091 r aDEW 301 aGEO RA2.01 Europe occidentale01182cas0 2200361 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200008900180210003300269326001500302423004600317530002500363606004400388606004500432710002600477801003000503801002300533802000700556856007400563856007900637955005900716992001200775992003300787133934713000117084620130319051925.01 a2102-0663 aissn21020663 a0001170846 a20090602a200 9999k y0frey0103 ba0 afre aFR ay  ar aaju uu 10aTransform !erevue européenne pour une pensée alternative et un dialogue politique aPariscEspaces Marxd[200.]- aSemestriel 1tRevue Espaces Marx (Hellemmes)x1162-762X10aTransform !b(Paris) aIdées politiquesyFrancexPériodiques aGauche (science politique)xPériodiques02aEspaces Marx (France) 3aFRbAbesc20090702gAFNOR 3aFRbISSNc20090602 a074 uhttp://www.transform-network.net/en/home/journal-transformeurope.html zContenu : articles en texte intégral en anglais à partir du no. 2 (2008)1 bno. 2 (2008) -....cParisdMagasins/AnnexeeP 8° 7098 aDEW 320 aGEO RS Sans aspect régional00852nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210004000173326001700213530002700230607003300257856004900290856008200339955006800421972000900489991001800498992003000516992001600546039300919000008546620130531165131.01 a0258-7696 aFNSP379785 a0000085466 a19900101a19869999 ba0 aeng aZA aaia 10aTransformation aaDurbancUniversity of Natald1986- a3 nos par an10aTransformationbDurban aAfrique du SudxPériodiques4 uhttp://muse.jhu.edu/journals/transformation/ zContenu : accès aux sommaires et résumés des articles depuis le n°49,20021 bno. 7 (1988) -no. 69 (2009)cParisdMagasins/AnnexeeP 8° 5919 aZCAD aexempb201111 aGEO RF3.19 Afrique du Sud aDEW 966-96900886nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001200154210004200166326001500208530002300223606004000246710005000286856007800336856004700414955005900461972000900520991001800529992002500547992001200572040054926000008529020130319051926.01 a0938-2062 aFNSP379119 a0000085290 a19900101a19909999 ba0 ager aDE aaja 10aTransit aFrankfurt am MaincNeue Kritikd1990- aSemestriel 0aTransitbFrankfurt aSociologieyAllemagnexPériodiques02aInstitut für die Wissenschaften vom Menschen4 uhttp://www.iwm.at/index.php?option=com_content&task=view&id=63&Itemid=273 zContenu : sommaires depuis le n°1 en 19901 bno. 1 (1990) -....cParisdMagasins/AnnexeeP 8° 5916 aZCAD aexempb201202 aGEO RA5.01 Allemagne aDEW 30101594nas 2200385 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000720015421000680022630001080029430000720040232600110047443000250048560100810051060700510059160700700064260700680071260700490078067600100082971000670083985601180090695500550102497200090107999100180108899200560110699200320116299200140119404877989X000020929620140117121816.0 a1151-3713 aFNSP758438 a0000209296 a19900101a19949999 ba0 aeng aGB aaka 10aTransition reportfEuropean Bank for Reconstruction and Development aLondoncEuropean Bank for Reconstruction and Developmentd1994- aMises à jour entre 2 éditions appelées : Transition report update, et conservées sous la même cote a2009 dernière édition papier, à partir de 2010 version en ligne. aAnnuel 1aEBRD economic review02aBanque européenne pour la reconstruction et le développementxPériodiques aEx-URSSxConditions économiquesxPériodiques aEurope de l'EstxConditions économiquesz1989-....xPériodiques aEurope de l'EstxPolitique économiquez1989-....xPériodiques aEx-URSSxPolitique économiquexPériodiques a338.902aBanque européenne pour la reconstruction et le développement4 uhttp://www.ebrd.com/pages/research/publications/flagships/transition.shtmlzAccès au texte intégral depuis 19981 b(1994) -(2009)cParisdMagasins/Annexe :P 4° 6661 aZPAY aexempb201401 aGEO RA7.02 Etats successeurs de l'Union soviétique aGEO RA2.02 Europe orientale aDEW 338.901357nls 2200349 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000099001502100069002492300024003183260011003426010081003536070051004346070070004856070068005556070049006236760010006727100067006828010013007498560138007629550005009009920056009059920032009619920014009930001239076000123907620130521100717.0 a0001239076 a a19989999k fre 01 ba0 aeng aGB ar aak z  adr 10aTransition reportb[Ressource électronique]fEuropean Bank for Reconstruction and Development aaLondoncEuropean Bank for Reconstruction and Developmentd1998- aRevue électronique aAnnuel02aBanque européenne pour la reconstruction et le développementxPériodiques aEx-URSSxConditions économiquesxPériodiques aEurope de l'EstxConditions économiquesz1989-....xPériodiques aEurope de l'EstxPolitique économiquez1989-....xPériodiques aEx-URSSxPolitique économiquexPériodiques a338.902aBanque européenne pour la reconstruction et le développement 0aFRbFNSP4 uhttp://www.ebrd.com/pages/research/publications/flagships/transition.shtmlzaccès au texteintégral du rapport en ligne depuis 1998.1 r aGEO RA7.02 Etats successeurs de l'Union soviétique aGEO RA2.02 Europe orientale aDEW 338.901243nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001600154210003000170300003200200326001500232430003900247530003300286607003400319607007200353676001000425710012200435856006300557856005400620955006800674955006800742972000900810991001800819992003200837992001200869039741877000008920420130319051926.01 a0779-3812 aFNSP393272 a0000089204 a19900101a19939999 ba0 afre aBE aaja 10aTransitions aBruxellescCRITEMEd1993- aArrive avec 2 ans de retard aSemestriel 1aRevue des pays de l'Estx0303-961710aTransitionsbBruxelles. 1993 aEurope de l'EstxPériodiques aEurope de l'EstxPolitique et gouvernementz1989-....xPériodiques a943.702aCentre de recherches interdisciplinaires sur la transition vers l'économie de marché des pays de l'Estc(Bruxelles)4 uhttp://www.ulb.ac.be/soco/cevipol/GASSPECO/Transitions.htm zContenu : sommaires depuis le vol. 34, no 2, 19931 bLes 3 dernières annéescParisd30, Salle 2e étageeDEW 943.71 bvol. 34, no. 1 (1993) -....cParisdMagasins/AnnexeeP 8° 2006 aZPAY aexempb201004 aGEO RA2.02 Europe orientale aDEW 30001033nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004700154210003500201326001700236430003200253606004600285676000800331710006400339856006700403856007300470955006700543955007000610972000900680991001800689992001200707040152928000008612120130319051926.01 a1014-9562 aFNSP381996 a0000086121 a19900101a19929999 f ba0 aeng aUS aaia 10aTransnational corporationsfUnited Nations aNew YorkcNations Uniesd1992- a3 nos par an 1aCTC reporterxISSN0255-4216 aEntreprises multinationalesxPériodiques a33802aCentre des Nations Unies sur les sociétés transnationales4 uhttp://www.unctad.org/Templates/Page.asp?intItemID=2926&lang=1 zContient : texte intégral des articles depuis le vol. 1 no. 1, 19921 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3381 bvol. 1 no. 1 (fev-1992) -....cParisdMagasins/AnnexeeP 8° 5923 aZSAB aexempb201202 aDEW 33800748nas 2200253 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003400154210002400188326001600212606003400228856004200262856007300304955008300377991001800460992001600478110659554000018147320130319051927.01 a1357-7387 aFNSP675860 a0000181473 a19900101a19959999 ba0 aeng aGB aaha 10aTransnational organized crime aIlfordcCassd1995- aTrimestriel aCrime organiséxPériodiques4 uhttp://www.frankcass.com/jnls/toc.htm zContenu : sommaires depuis le vol. 1, n°1 ; résumés du n° actuel1 bvol. 1 no. 1 (1995) -vol. 4 no. 3/4 (1998)cParisdMagasins/AnnexeeP 8° 6215 aexempb201211 aDEW 364-36501226nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210004500187210003100232210003300263326001500296430003600311606003400347606004700381676000800428710009200436856010500528856010800633955006700741955005900808972000900867992001200876045092052000027283720130319051927.01 a1294-6303 aFNSP941337 a0000272837 a19990518a19999999 ba0 afre aFR aaja 10aTravail, genre et sociétés aParisaMontréalcL'Harmattand1999-2004 aPariscA. Colind2005-2008 aPariscLa Découverted2009- aSemestriel 1aLes Cahiers du MAGE,x1269-0236 aFemmesxTravailxPériodiques aDivision sexuelle du travailxPériodiques a33102aCentre national de la recherche scientifiquec(France)bGroupement de recherchec(1176)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-travail-genre-et-societes.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3311 bno. 1 (1999) -....cParisdMagasins/AnnexeeP 8° 6237 aZPAY aDEW 33101372cas0 2200397 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200009400180210009000274300009200364430003500456517000800491517002900499530005200528540002000580710008100600801003000681801002300711801001300734802000700747856003600754856007000790955006900860972000900929992002400938992001200962055391605000040531020130319051927.01 a1377-4573 aissn13774573 a0000405310 a20010427b20002005k y0frey0103 ba0 afre aBE ay  ar aahu uu 10aTravail emploi formationfCentre de sociologie du travail, de l'emploi et de la formation aBruxellescCentre de sociologie du travail, de l'emploi et de la formationd2000-2005 aLa version papier s'arrête en 2005. Elle est remplacée par une version électronique. 1tCritique régionalex0770-007510aTEF10aTravail emploi formation00aCahiers de sociologie et d'économie régionale10atef (Bruxelles)02aCentre de sociologie du travail, de l'emploi et de la formationc(Bruxelles) 3aFRbAbesc20091020gAFNOR 3aFRbISSNc20020530 0aFRbFNSP a0m4 uhttp://www.ulb.ac.be/socio/tef/ zContenu : texte intégral depuis le n° 18 de Critique Régionale1 bno. 1/2 (2000) -no. 3 (2004)cParisdMagasins/AnnexeeP 8° 4419 aZPAY aGEO RA4.04 Belgique aDEW 30301313nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200006800154210006400222326001600286606004800302606004500350606005200395710008200447801002100529856014600550856006600696955006300762957007000825957003700895972000900932992002200941992001200963013304461000000553720140106174822.01 a0224-4365 aFNSP108499 a0000005537 a19900319a19799999 ba0 afre aFR aahu 10aTravail et emploifMinistère du travail et de la participation aaPariscMinistère du travail et de la participationd1979- aTrimestriel aPolitique de l'emploiyFrancexPériodiques aMarché du travailyFrancexPériodiques aFormation professionnelleyFrancexPériodiques02aFrancebMinistère du travail, de l'emploi et de la formation professionnelle 3aFRbCCN0224-43654 uhttp://travail-emploi.gouv.fr/etudes-recherches-statistiques-de,76/etudes-et-recherches,77/publications-dares,98/revue-travail-et-emploi,103/ zcontenu : accès au texte intégral depuis le n°1, juin 19791 bno. 1 (jun-1979) -....cParisdMagasins/AnnexeeP 4° 43991 bno. 1 (1979) -no. 78 (1999)cParisdMagasins/AnnexeeP Index 04571 zvoir aussi BALISESeP Index 0752 aZPAY aGEO RA4.06 France aDEW 33100839nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000061001502100043002112300024002543260005002786060043002838010013003268560072003398560108004119550005005199920025005249920012005490000977514000097751420130319051927.0 a0000977514 a a20049999k fre 01 ba0 afre aFR ar aaz z  adr 10aTravail et protection socialeb[Ressource électronique] aPariscLexisNexis Jurisclasseurc2004- aRevue électronique a aDroit du travailyFrancexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.lexisnexis.fr/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RA4.06 France 01 aDEW 34400906nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200008200154210005100236326001600287606004000303606003700343801002100380856009700401856004200498955006700540972000900607992001200616039235750000004403720130319051928.01 a0041-1868 aFNSP229166 a0000044037 a19900101a19339999 ba0 afre aFR aahu 13aLe Travail humainea bilingual and multidisciplinary journal in human factors aPariscPresses universitaires de Franced1933- aTrimestriel aConditions de travailxPériodiques aMarché du travailxPériodiques 3aFRbCCN0041-18684 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-le-travail-humain.htm? zAccès aux sommaires et aux résumés1 bvol. 48 no. 1 (1985) -....cParisdMagasins/AnnexeeP 8° 0168 aZPAY aDEW 33101169cas0 2200337 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118110001600125200008500141207001000226210004600236326001600282423009200298517003400390606004400424606002800468710007800496801003000574801002300604802000700627856008200634955006500716972000900781992002500790992001600815058809945000083055420131029095921.01 a1626-7192 aissn16267192 a20010721a20009999 0fre 0103 ba0 afre aFR aau 14aLes Travaux de l'Observatoire national de la pauvreté et de l'exclusion sociale 0a2000- aPariscla Documentation françaised2000- aIrrégulier 1tRapport de l'Observatoire national de la pauvreté et de l'exclusion socialex1626-720614aLes Travaux de l'Observatoire aExclusion socialeyFrancexPériodiques aPauvretéxPériodiques02aObservatoire national de la pauvreté et de l'exclusion socialec(France) 3aFRbAbesc20050315gAFNOR 3aFRbISSNc20010721 a074 uhttp://www.ladocumentationfrancaise.fr/rapports-publics/084000261/index.shtml1 b(2003/2004) -(2007/2008)cParisdMagasins/AnnexeeP 8° 6829 aZCAD aGEO RA4.06 France 01 aDEW 360-36301002nas 2200289 i 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102110001600109200005700125207001100182210004100193422005300234430004200287606005100329606007300380710005800453856007800511955005500589991001800644992002200662992001200684992001600696167146955000010502220131104104526.0 aFNSP447278 a19900101b19922000 ba0 afre aFR aaka 10aTravaux universitaires inédits de science politique 1aAnnuel aPariscPresses de la FNSPd1992-2000 1tRevue française de science politiquex0035-2954 1aTravaux inédits de science politique aScience politiquexBibliographiexPériodiques aThèses et écrits académiquesyFrancexBibliographiexPériodiques02aFondation nationale des sciences politiquesc(France) uhttp://tuisp.online.fr/sommaire.phpzAccés libre au sommaire depuis 19621 b(1992) -(1999)cParisdMagasins/AnnexeeP 8° 5540 aexempb201306 aGEO RA4.06 France aDEW 010 aDEW 320-32101150nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001400154210004700168326002200215326002700237517004800264601004200312606004400354606005700398710002800455801002100483856005900504856007800563955006600641972000900707992005100716992002100767992001200788039337626000004404520130319051928.0 a0275-5351 aFNSP229188 a0000044045 a19900101b19732002 ba0 aeng aUS aaku 10aTrialogue aNew YorkcTrilateral Commissiond1973-2002 aAnnuelb1985-2002 aTrimestrielb1973-198410aAnnual meeting of the Trilateral Commission02aCommission trilatéralexPériodiques aRelations internationalesxPériodiques aRelations économiques internationalesxPériodiques02aCommission trilatérale 3aFRbCCN0275-53514 uhttp://www.trilateral.org/annmtgs/trialog/trlglist.htm zsommaire de la réunion annuelle de la Commission trilaterale depuis 19731 rno 2 (1973) -no 55 (2001)cParisdMagasins/AnnexeeP 4° 4212 aZGRA aGEO RN1 Pays industrialisés, pays occidentaux aGEO RQ Universel aDEW 32701248nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001200139207007000151210004100221210004300262300004800305326001700353430003700370530002500407856002900432856019200461856010800653955006900761955006700830992002500897992001200922040521427000020331820131126151926.01 a1277-2380 aFNSP741133 a19900101a19962012 ba0 afre aFR acaa 00aTribune 1aNo 1027 (nov1996)- no 4903 ( janv. 2012) ; No 001 (13 avr. 2012)- aPariscTribune Desfossésd1996-2012 aPariscLa Tribune nouvelle, SASd2012- aHebdomadaire (2012-).-Quotidien (1996-2012) aHebdomadiare 1aLa Tribune Desfossésx1277-238010aTribunebParis. 19964 uhttp://www.latribune.fr/4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bL'année en courscParisd27, Salle Rez-de-chausséeeP F° 12881 bNo 001 (13 avr. 2012-....)cParisdMagasins/AnnexeeP F° 1288 aGEO RA4.06 France 01 aDEW 05000978nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001800139210005100157326002300208326002800231422005400259430002700313530003400340606002800374606003200402801002100434856002200455955011400477972000900591992002200600992001400622992001600636039323161000004407220131015114240.01 a0220-4398 aFNSP229257 a19900101b19782010 ba0 afre aFR aafu 10aTribune juive aPariscPublications juives réuniesd1978-2010 aMensuelb2004-2010 aHebdomadaireb1978-2003 1aTribune des étudiants amis d'Israël,x0244-4615 1aT.J. hebdo,x0220-4851 aTribune juive‎bParis. 1978 aJudaïsmexPériodiques aJuifsyFrancexPériodiques 3aFRbCCN0220-43984 uhttp://www.col.fr1 bno 535 (sep-1978) -no 1751 (mai-2003) ; no 1 (oct-2004) -no 59 (aou-2010)cParisdMagasins/AnnexeeP 4° 2535 aZPAY aGEO RA4.06 France aDEW 20-29 aDEW 305-30601068nas0 2200289 i 450 001001000000002001100010005001700021035001500038100004100053101000800094102000700102110001600109200002600125207002300151210006500174326001600239430003900255606003400294606003800328801003000366856010400396856010800500955006600608955006600674992002600740992001200766132450259000116573620130319051928.0 a0001165736 a20090402a2008 k 1frey0103 ba0 afre aFR aaha 10aTribunes de la santé 0aN°19 (Eté 2008)- aPariscles Editions de santécPresses de Sciences Pod2008- aTrimestriel 1tSève :eles tribunes de la santé aSanté publiquexPériodiques aPolitique sanitairexPériodiques 3aFRbAbesc20090402gAFNOR4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-les-tribunes-de-la-sante.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd27, Salle 4e étageeDEW 3601 bno. 19 (été-2008) -....cParisdMagasins/AnnexeeP 8° 6765 aGEO RA4. 06 France 01 aDEW 36001060nls 2200253 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000108001502100131002582300024003893260033004133370112004468010013005588300007005718560053005789550175006310000708960000070896020130319051929.0 a0000708960 a a19949999k fre 01 ba0 ager aDE ar aau z  adr 10aTübinger Arbeitspapiere zur internationalen Politik und Friedensforschungb[Ressource électronique]f aTübingencInstitut für Politikwissenschaft, Abteilung Internationale Beziehungen, Friedens- und Konfliktforschungd1994-.... aDonnées textuelles aCollection de working papers aTexte intégral au format pdf, télédéchargeable à partir du n° 23, 1994 avec Adobe Acrobat sur le site 0aFRbFNSP aBH4 uhttp://www.uni-tuebingen.de/uni/spi/tapliste.htm1 rLa bibliothèque possède la collection papier des n° parus en 1996 et 2003, à rechercher dans l'index Collection. A partir de 2004, consultable uniquement sur Internet01161nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001300154210005900167210003400226210002900260326001500289530002000304606003900324606003700363607004500400710008300445856008900528856010800617955005900725972000900784991001800793992001200811040092836000012992020130319051929.01 a1243-549X aFNSP528380 a0000129920 a19940614a19929999 ba0 afre aFR aaja 10aTumultes aPariscCSPRP, Université Paris VII Diderotd1992-1994 aPariscL'Harmattand1994-1997 aPariscÉd. Kiméd1998- aSemestriel00aTumultesbParis aSociologie politiquexPériodiques aVie intellectuellexPériodiques aFrancexVie intellectuellexPériodiques02aCentre de sociologie des pratiques et des représentations politiquesc(Paris)4 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/accueil.php?PG=START zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bno. 1 (1992) -....cParisdMagasins/AnnexeeP 8° 6040 aZCAD aexempb201201 aDEW 00101222nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200002000163210003000183326002500213326002600238607005000264607005300314801001300367856010300380856006800483856010900551856010800660955007000768972000900838992001400847992002300861058261117000040516620130319051930.01 a1468-3849 a0000405166 a a20009999k fre ba0 aeng aGB a 0  ar aai z 0 10aTurkish studies aIlfordcFrank Cassd2000- a3 n°s par anb2003- aSemestrielb2000-2002 aTurquiexRelations extérieuresxPériodiques aTurquiexPolitique et gouvernementxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713636933 zContenu : sommaires et résumés depuis le volume 1, n°1, 20004 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713636933db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (pri-2000) -....cParisdMagasins/AnnexeeP 8° 6563 aZSAB aDEW 956.1 aGEO RA6.06 Turquie00966nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200001200138210006100150326001800211607003200229710004800261801002100309856005400330856004000384955008900424957007200513972000900585991001800594992003600612992001600648036520462000004422720130319051931.01 a0041-5715 aFNSP229614 a0000044227 a19900101b19702008 ba0 aeng aUS10aUfahamu aLos Angeles, Calif.cUniversity of Californiad1970-2008 a3 n°s par an aAfrique noirexPériodiques02aAfrican Activities Association (Etats Unis) 3aFRbCCN0048/08514 uhttp://www.international.ucla.edu/africa/ufahamu/ zContenu : informations sur la revue1 bvol. 1 no. 1 (1970) -vol. 34 no. 1/2 (2007/2008)cParisdMagasins/AnnexeeP 8° 27911 bvol. 1 (1970) -vol. 29 (2003)cParisdMagasins/AnnexeeP Index 0857 aZCAD aexempb201105 aGEO RF Afrique au sud du Sahara aDEW 966-96900791nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210003300182326001600215607002600231710004400257801002100301856004300322955008700365972000900452992004000461992001200501038811251000004422820130530164817.01 a0041-6010 aFNSP229615 a0000044228 a19900101a19449999 ba0 aeng aUS aahu 14aThe Ukrainian quarterly aNew York, N.Y.cUKCCAd1944- aTrimestriel aUkrainexPériodiques02aUkrainian Congress Committee of America 3aFRbCCN0041-60104 uhttp://ucca.org/en/ukrainian-quarterly1 bvol. 8 no. 4 (1952) -vol. 66 no 3/4 (win-2010)cParisdMagasins/AnnexeeP 8° 1219 aZPAY aGEO RA7.32 Ukraine (depuis 1991-92) aDEW 94700963nas0 2200301 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123110001600141200003000157210009600187326001600283606004400299606004400343607002600387801003000413856004200443856006600485955007200551972000900623992001200632992001700644113737246000107928520130319051932.01 a1304-7310 a0001079285 a20070403a20049999k y0frey0103 ba0 atur aTR a 0  aahan 0 10aUluslararası İlişkiler aAnkaracBaşkent Üniversitesi Siyaset Bilimi ve Uluslararası İlişkiler Bölümüd2004- aTrimestriel aRelations internationalesxPériodiques aRelations internationalesxPériodiques aTurquiexPériodiques 3aFRbAbesc20070403gAFNOR4 uhttp://www.uidergisi.com/sayilar.html4 zContenu : sommaires et résumés depuis le vol. 1, no 1, 20041 bvol. 1 no. 1 (mar-2004) - ....cParisdMagasins/AnnexeseP 8° 6955 aZSAB aDEW 327 aGEO RA6 . 0601957cas0 2200457 450 001001000000002001100010005001700021011001400038020001700052035001400069035001500083100004100098101001300139102000700152105001800159106000600177110001600183200019300199207001900392210003600411430009100447452025500538510004000793517007800833606003900911606004500950676000800995710007101003801003001074801001501104801001501119801001601134801003001150856009801180856005101278955006201329955006201391972000901453992002101462992001601483088099369000071381620130319051933.01 a0251-9461 aUSb00224716 a073461040 a0000713816 a20050630a20009999k f0undy0103 ba0 aengafre aUS a 0  ar azkai# 0yy 00aUNCTAD handbook of statisticsfUnited Nations Conference on Trade and Developmentd= Manuel de statistiques de la CNUCEDfConférence des Nations unies sur le commerce et le développement 0aNo. 25 (2000)- aNew YorkcUnited Nationsd2000- 1tHandbook of international trade and development statistics - United Nationsx0251-9461 |tUNCTAD handbook of statistics on CD-RombRessource electroniquel= Manuel de statistiques de la CNUCED sur CD-RomfUnited NationscNew YorknUnited Nations conference on trade and developmentd2002p1 disque optique numérique (CD-ROM)y92-1-012047-710aManuel de statistiques de la CNUCED10aUnited Nations Conference on Trade and Development handbook of statistics aCommercial statisticsxPeriodicals aCommercexStatistiquesxPériodiques2lc a33700aConférence des Nations Unies sur le commerce et le développement 3aFRbAbesc20060222gAFNOR 0bNICgAACR2 1bDLCgAACR2 2bMH-LgAACR2 3aFRbAbesc20040119gAFNOR4 uhttp://www.unctad.org/Templates/webflyer.asp?docid=4324&intItemID=1397&lang=1&mode=highlights zAccés au texte intégral de l'année en cours1 bLa dernière annéecParisd27, Salle 1er étageeDEW 3371 b(2000) ; (2002) -....cParisdMagasins/AnnexeeP 4° 7056 aZGRA aGEO RQ Universel aDEW 310-31901068nas 2200301 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000390013921000240017832600110020251700180021353000390023160600570027071000520032771100480037985601730042795500550060095500550065597200090071099200310071999200160075003646306X000013799920130717151815.0 a0950-7558 aFNSP550139 a19941011a19489999 ba0 aeng aGB aaka 10aUnited Kingdom balance of payments aLondoncHMSOd1948- aAnnuel10aThe Pink book00aUnited Kingdom balance of payments aBalance des paiementsyGrande-BretagnexPériodiques02aGrande-BretagnebGovernment Statistical Service02aGrande-BretagnebCentral Statistical Office4 uhttp://www.ons.gov.uk/ons/publications/index.html?pageSize=50&sortBy=none&sortDirection=none&newquery=pink+book&content-type=BookzAccés au texte intégral depuis 20011 b(2002) -(2007)cParisdMagasins/AnnexeeP 4° 70101 b(1963) -(2001)cParisdMagasins/AnnexeeCOL4°1668 aZPAY aGEO RA4.02 Grande-Bretagne aDEW 380-38201246nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116200004300123210003900166326001100205430011500216436005300331440010100384530004300485606004900528710004300577801002100620830005300641856011000694955005500804972000900859991001700868992002300885992001200908039974987000010024920131008111212.01 a0884-1063 aFNSP433553 a19900101b19842001 ba0 aeng aUS10aUnited States government annual report aWashington, D.C.cUSGPOd1984-2001 aAnnuel 1aTreasury combined statement of receipts, expenditures, and balances of the United States Governmentx0191-2062 1tUnited States government annual report. Appendix 1tCombined statement of receipts, outlays, and balances of the United States governmentx1936-001000aUnited States government annual report aFinances publiquesyEtats-UnisxPériodiques01aEtats-UnisbDepartment of the Treasury 3aFRbCCN0884-1063 a1985-1994 : collection envoyée au CTles en 20134 uhttp://www.fms.treas.gov/annualreport/backissues.htmlzAccés au texte intégral des rapports depuis 19951 b(1985) -(1994)cParisdMagasins/AnnexeeP 4° 5175 aZCAD aexemp$201306 aGEO RC2 Etats-Unis aDEW 33601318nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003600154210013100190300003800321326001100359430006000370530004200430607004500472710004700517856017100564856006500735955006000800955005400860972000900914991001800923992002300941992001600964038895366000007444820140115110302.01 a0092-1904 aFNSP339764 a0000074448 a19900101a19739999 ba0 aeng aUS aaka 10aUnited States government manual aWashington, D.CcOffice of the Federal Register, National Archives and Records Service, General Services Administrationd1974- aA partir de 2012 version en ligne aAnnuel 1aUnited States government organization manualx0083-117400aUnited States government manualb1974 aEtats-UnisxAdministrationxPériodiques02aEtats-UnisbOffice of the Federal Register4 uhttp://www.gpo.gov/fdsys/browse/collection.action?collectionCode=GOVMAN&browsePath=1995-1996%3BGOVMAN-1995-07-01%3B&isCollapsed=false&leafLevelBrowse=false&ycord=18194 zContenu : texte intégral du rapport en ligne depuis 1995-961 b(1979/1980) -(2011)cParisdMagasins/AnnexeeP 8° 52861 b(1973/1974)cParisdMagasins/AnnexeeCOL 8° 0355 aZCAD aexempb201109 aGEO RC2 Etats-Unis aDEW 350-35401044nls 2200265 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200010700124210013100231230002400362326001100386607004500397710004700442801001300489830000800502856022400510955000500734992002300739992001600762000124367420130522153526.0 a a19969999k fre 01 ba0 aeng aUS ar aak z  adr 10aUnited States government manualb[Ressource électronique]fEtats-Unis. Office of the Federal Register aWashington, D.CcOffice of the Federal Register, National Archives and Records Service, General Services Administrationd1996- aRevue électronique aAnnuel aEtats-UnisxAdministrationxPériodiques02aEtats-UnisbOffice of the Federal Register 0aFRbFNSP acdj4 uhttp://www.gpo.gov/fdsys/browse/collection.action?collectionCode=GOVMAN&browsePath=1995-1996%3BGOVMAN-1995-07-01%3B&isCollapsed=false&leafLevelBrowse=false&ycord=1819zAccès au texte intégral du rapport depuis 1995-961 r aGEO RC2 Etats-Unis aDEW 350-35401222nls 2200325 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000066001502100058002163000124002743260016003983360058004143370063004724400083005354520052006186060027006706060027006977120048007248010013007728560090007859550005008759920016008800000470117000047011720130319051936.0 a0000470117 a b19221927k fre 01 ba0 aeng aUS az aah z  adr 14aThe University journal of businessb[Ressource électronique] aChicago, Ill.cUniversity of Chicago Pressd1922-1927 aAccès au texte intégral (réservé aux sites de Sciences Po) à partir du vol.1 de 1922 jusqu'au vol.5, n°1, de 1927 aTrimestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tThe Journal of business of the University of Chicago [Ressource électronique] 1tThe University journal of businessx(1525-6979) aAffairesxPériodiques aFinancesxPériodiques02aGraduate School of Business (Chicago, Ill.) 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/15256979.html1 r aDEW 650-65801268nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200013800139210002300277326001200300452006500312530002700377710004800404711004900452801002100501830005300522856020600575955005500781972000900836991001800845992001600863992001200879992005100891039257754000007752820131008172606.0 a0252-9173 aFNSP350988 a19900101a19699999 f ba0 afre aFR aalu 10aUraniumeressources, production et demandefAgence de l'OCDE pour l'énergie nucléairegAgence internationale de l'énergie atomique aPariscOCDEd1969- aBiennal 1tUranium ...: ressources, production et demande‎x2072-532910aUranium‎b(Imprimé)02aAgence de l'OCDE pour l'énergie nucléaire02aAgence internationale de l'énergie atomique 3aFRbCCN0252-9173 a1977-1997 : collection envoyée au CTles en 20134 uhttps://acces-distant.sciences-po.fr/fork?http://new.sourceocde.org/periodique/1605959X/aeninfoszAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 b(1977) -(1997)cParisdMagasins/AnnexeeP 4° 5234 aZPAY aexempb201307 aDEW 310-319 aDEW 333 aGEO RN1 Pays industrialisés, pays occidentaux01073nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154207004600182210004200228326001600270440006500286606003700351606002800388606002500416801002100441856007000462856010800532955009000640991001800730992001100748036528323000004423320130319051937.01 a0042-0816 aFNSP229620 a0000044233 a19900101b19651994 ba0 aeng aUS aaha 10aUrban affairs quarterly 1avol. 1 no. 1 (1965) -vol. 30 no. 2 (1994) aNewbury Park, Calif.cSaged1965-1994 aTrimestriel 1aUrban affairs review (Thousand Oaks, Calif.)xISSN 1078-0874 aSociologie urbainexPériodiques aUrbanismexPériodiques aVillesxPériodiques 3aFRbCCN0042-08164 uhttps://acces-distant.sciences-po.fr/fork?http://uar.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (sep-1965) -vol. 30 no. 2 (dec-1994)cParisdMagasins/AnnexeeP 8° 2682 aexempb201009 aDEW 7101036nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210003900179326001500218430004400233530004800277606002500325606002800350606003700378856007000415856010800485955009100593972000900684991001800693992001100711040325466000015491220130319051937.01 a1078-0874 aFNSP604103 a0000154912 a19900101a19959999 ba0 aeng aUS aaga 10aUrban affairs review aThousand Oaks, Calif.cSaged1995- aBimestriel 1aUrban affairs quarterlyxISSN 0042-0816 0aUrban affairs reviewbThousand Oaks, Calif. aVillesxPériodiques aUrbanismexPériodiques aSociologie urbainexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://uar.sagepub.com/ zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 30 no. 3 (jan-1995) -vol. 38 no. 2 (nov-2002)cParisdMagasins/AnnexeeP 8° 2682 aZSAB aexempb201009 aDEW 7100892nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200002000138207002800158210004300186326001800229606003800247606002800285801002100313856009200334856006800426955007000494972000900564991001800573992001100591039333167000004423420140107130050.01 a0272-3638 aFNSP229622 a0000044234 a19900101a19809999 ba0 aeng aUS10aUrban geography 1a[Vol. 1, no. 1] (1980)- aSilver Spring, MDcV.H. Winstond1980- a8 n°s par an aGéographie urbainexPériodiques aUrbanismexPériodiques 3aFRbCCN0123/35484 uhttps://acces-distant.sciences-po.fr/fork?http://bellwether.metapress.com/home/main.mpx zContient : sommaires et résumés depuis le vol. 1, no. 4, 19801 bvol. 1 no. 1 (jan-1981) -....cParisdMagasins/AnnexeeP 8° 4342 aZSAB aexempb201011 aDEW 7101726nas 2200385 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001800154210002800172326001800200517008700218530002600305606003700331606003600368710002600404801002100430856012800451856010800579856012800687856010800815856010900923856010801032955009001140957007201230972000901302991001801311992001101329038812797000004423620130319051937.01 a0042-0980 aFNSP229624 a0000044236 a19900101a19649999 ba0 aeng aGB aauu 10aUrban studies aAbingdoncCarfaxd1964- a7 n°s par an10aUrban studies : an international journal of research in urban and regional studies00aUrban studiesbHarlow aSociologie urbainexPériodiques aPolitique urbainexPériodiques02aUniversity of Glasgow 3aFRbCCN0042-09804 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=UST&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=sih&jid=UST&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713449163db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (mai-1964) -vol. 42 no. 8 (jul-2005)cParisdMagasins/AnnexeeP 8° 21601 bvol. 1 (1964) -vol. 30 (1993)cParisdMagasins/AnnexeeP Index 0754 aZGRA aexempb201105 aDEW 7101171nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001400154210006100168326002300229326002600252326002300278421003800301430005400339517005000393530002000443606003600463676000800499856002800507856010000535955006700635955006500702972000900767992002200776992001100798013803522000007490720130429104407.01 a1240-0874 aFNSP341586 a0000074907 a19900101a19929999 ba0 afre aFR aaha 00aUrbanisme aPariscPublications d'architecture et d'urbanismed1992- aTrimestrielb2013- aBimestrielb????-2012 aMensuelb1992-???? 1tUrbanisme.Hors série,x1246-2233 1aUrbanismes & Architecture (Paris)xISSN 1145-518711aRevue urbanismeevilles, sociétés, cultures00aUrbanismeb1992 aUrbanismeyFrancexPériodiques a3334 uhttp://www.urbanisme.fr zContenu : sommaires depuis le n°324, mai/juin 2002 et sélection d'articles en texte intégral1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3331 bno. 256 (sep-1992) -....cParisdMagasins/AnnexeeP 4° 0538 aZPAY aGEO RA4.06 France aDEW 7101150nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200006600138210007100204326001700275532008300292606004900375606003600424710006700460801002100527856002500548955006100573955007500634955007700709992002200786992001200808992001600820039631680000006740620130319051938.01 a0751-5839 aFNSP312934 a0000067406 a19900101a19679999 ba0 afre aFR12aL'US.il'Université syndicaliste classique moderne technique aPariscSyndicat national des enseignements de second degréd1967- aHebdomadaire00aUniversité syndicaliste :université syndicaliste classique moderne technique aEnseignantsxSyndicatsyFrancexPériodiques aEducationyFrancexPériodiques02aSyndicat national des enseignements de second degréc(France) 3aFRbCCN0114/57624 uhttp://www.snes.edu/1 bno. 580 (13 jan-2003) -....cParisdMagasinseP 4° 69551 bno. 550 (27 aou-2001) -no. 579 (4 dec-2002)cParisdAnnexeeP F° 05421 bno. 1 (sep-1967) -no. 549 (jun-2001)cParisdMagasins/AnnexeeP 4° 0367 aGEO RA4.06 France aDEW 331 aDEW 370-37901034nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002700139210005200166326001900218326002800237436002300265436003300288517003100321517003600352606002900388607002900417801002100446856002600467856008700493955007200580972000900652992002300661992001200684038811154000004429720131129142914.01 a0041-5537 aFNSP229777 a19900101a19489999 ba0 aeng aUS aa a 10aUS news & world report aWashington, D.C.cUS news & world reportd1948- aMensuelb2009- aHebdomadaireb1948-2008 1tUnited States news 1tWorld reportxISSN 0363-115X10aU.S. news and world report10aUnited States news world report aActualitéxPériodiques aEtats-UnisxPériodiques 3aFRbCCN0041-55374 uhttp://www.usnews.com zContenu : sommaire et sélection d'articles en texte intégral du dernier numéro.1 bvol. 24 no. 12 (mar-1948) -....cParisdMagasins/AnnexeeP 4° 0759 aZPAY aGEO RC2 Etats-Unis aDEW 05000682nas 2200241 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002000139210002700159326001600186530002700202606004400229856008700273955005900360972000900419992001200428040161315000012025820130523155158.01 a1247-8989 aFNSP496106 a19940307a19939999 ba0 afre aFR aaha 00aUtopie critique aPariscSyllepsed1993- aTrimestriel10aUtopie critiquebParis aRelations internationalesxPériodiques4 uhttp://www.utopie-critique.fr/zsommaires et résumés des nos depuis janvier 20101 bno. 1 (1993) -....cParisdMagasins/AnnexeeP 8° 6019 aZCAD aDEW 32700876nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200002000138210002600158326001600184606002900200607002500229607005200254676000800306856002700314856005100341955007300392955006300465972000900528992002500537992001200562040239160000023911820130319051940.01 a1253-2479 aFNSP844102 a0000239118 a19900101a19979999 0 afre aFR10aVacarme (Paris) aPariscVacarmed1997- aTrimestriel aActualitéxPériodiques aFrancexPériodiques aFrancexPolitique et gouvernementxPériodiques a0014 uhttp://vacarme.eu.org/ zsommaires et extraits d'articles par rubriques1 bLes 3 dernières annéescParisd27, Salle Rez-de-chausséeeDEW 0011 bno. 0 (mai-1996) -....cParisdMagasins/AnnexeeP 4° 6738 aZPAY aGEO RA4.06 France 01 aDEW 05000918nas 2200253 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200004500139210008900184326001100273601007200284710004200356856013300398955005500531972000900586992005700595992001200652040164330000000695320130321141925.0 a1016-7889 aFNSP111316 a19900424a19889999 ba0 afre aFR aaka 10aVade-mecum budgétaire de la Communauté aLuxembourgcOffice des publications officielles des Communautés européennesd1988- aAnnuel02aUnion européennexCrédits budgétaires et dépensesxPériodiques02aCommunautés européennesbCommission4 uhttp://www.europarl.europa.eu/transl_nl/docs/budget/vade-mecum_budgetaire_2000.pdfzAccés au texte intégral pour l'année 20001 b(1988) -(2000)cParisdMagasins/AnnexeeP 4° 5951 aZPAY aGEO RA1.01 Communautés européennes, Pays de la CEE aDEW 33601292cas0 2200385 i 450 001001000000002001100010005001700021035002500038035002000063035001500083100004100098101000800139102000700147105001800154106000600172110001600178200001700194210002500211215002700236300005300263300005000316301003500366326001700401482001600418606004600434676000800480801003000488801002900518801003000547801001300577856020200590945001500792955008700807992001200894119206803000112002020130319051941.0 aFRBNF328871400000000 aPR054401130001J a0001120020 a20071114b18681868m y0frey0103 ba0 afre aFR ay z 0  ar aau y 13aLa Veilleuse aParisc[s.n.?]d1868 a1 vol. (317 p.)d15 cm aNuméros 1 à 5 (15 juillet 1868- 15 août 1868) arelié avec l'Eteignoir par Hardi de Ragefort aDemande d'ISSN en cours (FNSP) aHebdomadaire 1tL'Eteignoir aSatire politique françaisexPériodiques a944 3aFRbAbesc20071120gAFNOR 0aFRbBNFc19970701gAFNOR 3aFRbAbesc20071114gAFNOR 0aFRbFNSP4 uhttp://books.google.fr/books?id=p04WAAAAYAAJ&dq=%22La%20Veilleuse%22&hl=fr&pg=PP3#v=onepage&q=%22La%20Veilleuse%22&f=falsezAccès libre au texte intégral. Périodique numérisé sur Google Livres b12*009.4871 bn°1, 15 juil. 1868 ---> n° 5, 15 août 1868cParisdMagasins/Annexee12°009.487 aDEW 05001196nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101001300123102000700136110001600143200003700159210003000196326001600226517005500242606004900297606005800346606004600404710006900450801002100519856006000540856006600600955006600666972000900732991001800741992002800759992001900787992001600806992001200822039628221000004446820130319051941.01 a0506-7286 aFNSP230265 a0000044468 a19900101a19689999 ba0 ageraeng aDE aahu 10aVerfassung und Recht in Übersee aBaden-BadencNomosd1968- aTrimestriel10aLaw and politics in Africa, Asia and Latin America aDroit constitutionnelyAfriquexPériodiques aDroit constitutionnelyAmérique latinexPériodiques aDroit constitutionnelyAsiexPériodiques02aHamburger Gesellschaft für Völkerrecht und Auswärtige Politik 3aFRbCCN0506-72864 uhttp://www.verfassung-und-recht.de/vrue/vrue_heft.lasso zContenu : Sommaires depuis 2000, texte intégral 2000 à 20041 bvol. 1 no. 1 (1968) -....cParisdMagasins/AnnexeeP 8° 2521 aZSAB aexempb199901 aGEO RD Amérique latine aGEO RE Afrique aGEO RH Asie aDEW 34200961nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002800154210003900182326001600221607004400237801002100281856004300302856010800345955006600453957007200519972000900591991001800600992002500618992001600643038813947000004447220130319051942.01 a0042-4498 aFNSP230271 a0000044472 a19900101a19689999 ba0 ager aDE aahu 14aDie Verwaltung (Berlin) aBerlincDuncker und Humblotd1968- aTrimestriel aAllemagnexAdministrationxPériodiques 3aFRbCCN0042-44984 uhttp://www.atypon-link.com/DH/loi/verw4 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1968) -....cParisdMagasins/AnnexeeP 8° 25091 bvol. 1 (1968) -vol. 25 (1992)cParisdMagasins/AnnexeeP Index 0724 aZCAD aexempb200910 aGEO RA5.01 Allemagne aDEW 350-35400808nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003700154210002500191326001200216430005800228606003600286710003100322856005200353955006300405972000900468992003900477992001400516039957691000007159120130319051942.01 a0869-5873 aFNSP328148 a0000071591 a19900101a19929999 ca0 arus aRU aafa 10aVestnik rossijskoj Akademii nauk aMoskvacNaukad1992- aMensuel 1aVestnik Akademii nauk SSSR,x0002-3442 < P 4° 0340 > aRechercheyRussiexPériodiques02aRossijskaâ akademiâ nauk uhttp://www.maik.ru/cgi-bin/list.pl?page=vestnik1 bno. 2 (fev-1992) -....cParisdMagasins/AnnexeeP 4° 0340 aZECH aGEO RA7.21 Russie (depuis 1991-92) aDEW 001.400960cls0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200002200156210004800178326001200226422004100238606003700279710003600316801003000352801002300382801003000405802000700435856003300442856008400475955007500559992001200634080064981000084749420130319051942.01 a1768-4390 aissn17684390 a0000847494 a20030523b20022007k y1frey0103 ba0 afre aFR aagu uu 13aLa Vie des idées aPariscLa République des idéesd2002-2007 aMensuel 1tLa République des idéesx1636-9440 aVie intellectuellexPériodiques02aRépublique des idéesc(Paris) 3aFRbAbesc20061208gAFNOR 3aFRbISSNc20030523 3aFRbAbesc20040901gAFNOR a074 uhttp://www.laviedesidees.fr/ zContenu : accès libre au texte intégral des articles à partir d'octobre 20071 bno. 1 (avr-2005) -no.24 (jul-2007)cParisdMagasins/AnnexeeP 8° 6832 aDEW 00101042nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210003700176326001700213421006200230430006000292440002300352606004400375606004800419606003500467801002100502830006300523856002500586955007100611992002200682992001200704039324540000004447820130319051942.01 a0220-5858 aFNSP230281 a0000044478 a19900101b19781999 ba0 afre aFR aa u 13aLa Vie française aPariscVie françaised1978-1999 aHebdomadaire 1aValeurs clés de la bourse (0755-2815) < Coll. 4° 2910 > 1aLa Vie Française, l'Opinion (0151-2382) < P 4° 3679 > 1tLa Vie financière aMarché financieryFrancexPériodiques aEntreprisesyFrancexFinancesxPériodiques aFinancesyFrancexPériodiques 3aFRbCCN0220-5858 a1985-->n°2836, 16 oct. 1999 : collection donnée au CTLes4 uhttp://www.lavf.com/1 bno. 1716 (29 avr-1978) -(1984)cParisdMagasins/AnnexeeP 4° 3679 aGEO RA4.06 France aDEW 33201355nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004700154207014800201210003900349326001700388440004700405530003600452712005200488801002100540856014100561955004600702955023500748955008200983037984357000004485420130319051942.01 a0399-1164 aFNSP231552 a0000044854 a19900101b19091993 ba0 afre aFR aa u 13aLa Vie ouvrièreel'hebdomadaire de la CGT 1a(1909)-(1914) ; n.s. no.1 (1919) -no. 1052 (1939) ; no. 1053 (1940) -no. 1056 (1940) ; no. 1(1940 )-no. 221(1944) ; no. 1(1944) -no. 2561(1993) aPariscLa Vie ouvrièred1909-1993 aHebdomadaire 1aL'Hebdo de l'actualité socialex1250-387803aLa Vie ouvrièreb(Paris. 1909)02aConfédération générale du travailc(France) 3aFRbCCN0399-11644 uhttp://gallica.bnf.fr/ark:/12148/cb32889252n/date.r=.langFRzAccès libre au texte intégral. Années 1940-1944 numérisées sur Gallica1 b(1909) -(1914)cParisdAnnexeeP 4° 12691 bno. 125 (1947) -no. 287 (1950) ; no. 378 (1951) -no. 503 (1954) ; no. 602 (1956) -no. 637 (1957) ; no. isolés 1959 ; no. 841 (1960) -no. 954 ( 1962) ; nos isolés 1963 ; no. 1062 (1965) -no. 2561 (1993)cParisdAnnexeeP F° 00631 b(avr-1919) -(sep-1939)cParisdMagasinseP MIC 35 (29)zEdition sur microfilm01311cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052100004100069101000800110102000700118106000600125110001600131200004200147210003100189326001100220512008200231530004200313607005100355607005400406676000800460801003000468802000700498856013900505856013900644955017400783991001700957991001100974038724987000107556120131007175223.0 a1241-8323 accn1241-8323 a19921211b19081922 frey0103 ba0 afre aFR ar aak 13aLa Vie politique dans les deux mondes aPariscF. Alcand1908-1922 aAnnuel10aBibliothèque d'histoire contemporaine, la vie politique dans les deux mondes03aLa Vie politique dans les deux mondes aEuropexPolitique et gouvernementz20e siècle aAmériquexPolitique et gouvernementz20e siècle a320 3aFRbAbesc20041214gAFNOR a074 zAccès libre au texte intégral. 1906-1907 sur Internet Archiveuhttp://archive.org/stream/laviepolitiqued00caudgoog#page/n11/mode/2up4 zAccès libre au texte intégral. 1912-1913 sur Internet Archiveuhttp://archive.org/stream/laviepolitiq191213pariuoft#page/n5/mode/2up1 b(1906) -(1907) ; (1907) -(1908) ; (1908) -(1909) ; (1909) -(1910) ; (1910) -(1911) ; (1911) -(1912) ; (1912) -(1913) ; (1914) -(1918)cParisdMagasins/AnnexeeCOL8°0659 aPériobTP01 anumer001316nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004200154210003200196300016400228326001600392421004900408606002700457676000800484710006100492801002100553856005600574856006200630955006700692955005900759957010500818972000900923991001800932992001600950038814544000004455820130319051944.01 a0042-5702 aFNSP230476 a0000044558 a19900101a19539999 ba0 ager aDE aahu 10aVierteljahrshefte für Zeitgeschichte aMünchencOldenbourgd1953- ajusqu'en 1988 la bibliographie est publiée à la fin de chaque n° de la revue , à partir de 1989 la bibliographie forme un supplément annuel (P8°1162 bis) aTrimestriel 1aBibliographie zur Zeitgeschichte (0523-2759) aHistoirexPériodiques a90902aInstitut für Zeitgeschichtec(Munich-Berlin, Allemagne) 3aFRbCCN0042-57024 uhttp://www.ifz-muenchen.de/heftarchiv.html?&L=00997 zContenu : texte intégral en accès libre de 1953 à 20051 bLes 3 dernières annéescParisd30, Salle 2e étage:eDEW 9091 bno. 1 (1953) -....cParisdMagasins/AnnexeeP 8° 11621 bvol. 1 (1953) -vol. 22 (1974) ; vol. 35 (1987) -vol. 36 (1988)cParisdMagasins/AnnexeeP Index 0276 aZSAB aexempb201102 aDEW 900-90701396nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200009200139210003900231326001600270430004600286517002800332517006800360606004800428606003700476607005100513710004900564801002100613830011300634856012900747856006400876955006000940972000901000992002501009992001201034039463400000010909220130518175143.01 a0340-1707 aFNSP461110 a19900101a19379999 ba0 ager aDE aaha 10aVierteljahrshefte zur WirtschaftsforschungfDeutsches Institut fur Wirtschaftsforschung aBerlincDuncker und Humblotd1937- aTrimestriel 1aVierteljahrshefte zur Konjunkturforschung10aVierteljahresheft - DIW10aVierteljahrsheft - Deutsches Institut für Wirtschaftsforschung aEconomie politiqueyAllemagnexPériodiques aEconomie politiquexPériodiques aAllemagnexPolitique économiquexPériodiques02aDeutsches Institut für Wirtschaftsforschung 3aFRbCCN0340-1707 a1937/38-1938/1939 ; 1952-1969 (P8°1066) et 1970-1984 (P 4° 2898) : années cédées au CTL en juillet 20014 uhttp://www.diw.de/de/diw_01.c.100405.de/publikationen_veranstaltungen/publikationen/vierteljahrshefte/vierteljahrshefte.html zContenu : accés intégral à certains numéros depuis 19951 bno. 1 (1985) -.....cParisdMagasins/AnnexeeP 4° 2898 aZPAY aGEO RA5.01 Allemagne aDEW 33001464nas 2200385 i 450 001001000000002001100010005001700021011001400038035001300052035001500065100004100080101000800121102000700129110001600136200004100152210003700193326001600230517002000246606003900266607003500305676000800340801002100348856011300369856010800482856002600590856008600616856009000702856010800792955006700900955005900967972000901026992002201035992001201057992000901069001020196000000203220131220103022.01 a0294-1759 aFNSP7777 a0000002032 a19900101a19849999 ba0 afre aFR aahu 10aVingtième siècle, revue d'histoire aPariscPresses de la FNSPd1984- atrimestriel10a20 ème siècle aHistoire universellexPériodiques aFrancexHistoirexPériodiques a909 3aFRbCCN0294-17594 uhttps://acces-distant.sciences-po.fr/fork?http://www.cairn.info/revue-vingtieme-siecle-revue-d-histoire.htm? zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttp://www.persee.fr/ zContenu : Accès libre au texte intégral depuis le 1er n° jusqu'au n° 72, 20014 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/02941759.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 2e étage:eDEW 9091 bno. 1 (1984) -....cParisdMagasins/AnnexeeP 8° 4685 aZCAD aGEO RA4.06 France aDEW 909 aPBUL01033nas0 2200265 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108200013200116207003900248210007700287326001500364607003500379710010400414801003000518856004200548856005300590955007500643972000900718992001200727992002800739113692668000107908520130319051946.01 a1954-9237 a0001079085 a20070402b20042004k frey0103 ba0 afre10aVisages d'Amérique latinefProjet collectif Visages d'Amérique latine du premier cycle ibéro-américain de Sciences-po Paris 0ano. 1 (juin 2004)-no. 6 (nov-2008) aPoitierscPremier cycle ibéroaméricain de Sciences Po Parisd2004-2008 aSemestriel aAmérique latinexPériodiques02aProjet collectif Visages d'Amérique latine du premier cycle ibéro-américain de Sciences-po Paris 3aFRbAbesc20070402gAFNOR4 uhttp://www.visagesameriquelatine.org/ zContenu : texte intégral depuis le n°1 de 20041 bno. 1 (jun-2004) -no.6 (nov-2008)cParisdMagasins/AnnexeseP 8° 6928 aZGRA aDEW 980 aGEO RD Amérique latine01063cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200008800156210004500244320006600289326001500355530002800370606004400398606004400442710006100486801003000547801002300577802000700600856003400607955007500641972000900716992001200725077567609000098688420130319051946.01 a1762-5157 aissn17625157 a0000986884 a20030523b20032006 0fre 0103 ba0 afre aFR aaj 10aVoltaireeactualité internationalefRéseau Voltaire pour la liberté d'expression aSaint-DeniscEd. Thomas Pained2003-2006 aSélection d'articles parus dans Voltaire, magazine quotidien aSemestriel10aVoltaireb(Saint-Denis) aRelations internationalesxPériodiques aRelations internationalesxPériodiques02aRéseau Voltaire pour la liberté d'expressionc(France) 3aFRbAbesc20050426gAFNOR 3aFRbISSNc20030523 a074 uhttp://www.voltairenet.org/fr1 bno. 1 (mar/avr-2005) -no. 3 (2006)cParisdMagasins/AnnexeeP 8° 6901 aZPAY aDEW 32700859nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001400139210003800153326001600191530001400207606003700221607002800258801002100286856013100307955006700438972000900505991001800514992002500532992001200557039628655000004479620130726155423.01 a0507-4150 aFNSP231234 a19900101a19629999 ba0 ager aDE aahu 10aVorgänge aOpladencLeske und Budrichd1962- aTrimestriel00aVorgänge aProblèmes sociauxxPériodiques aAllemagnexPériodiques 3aFRbCCN0507-41504 uhttp://www.humanistische-union.de/publikationen/vorgaenge/zContenu : sommaires depuis 1969 grand choix d'articles TI en ligne1 bvol. 12 no. 1 (1973) -....cParisdMagasins/AnnexeeP 8° 3315 aZCAD aexempb201005 aGEO RA5.01 Allemagne aDEW 30101021nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003200154210003000186326001400216606002900230606005200259607002900311856019200340856010800532955006800640992002300708992001200731040033325000007148820130319051948.01 a0921-9986 aFNSP327931 a0000071488 a19900101a19839999 ba0 aeng aNL acaa 10aWall Street journal. Europe aHeerlencDow Jonesd1983- aQuotidien aActualitéxPériodiques aHistoire économiquez20e sièclexPériodiques aEtats-UnisxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLe mois en courscParisd27, Salle Rez-de-chausséeeP F° 1329 aGEO RC2 Etats-Unis aDEW 05001289cas0 2200409 450 001001000000002001100010005001700021011001400038035001400052035001700066100004100083101000800124102000700132105001800139110001600157200005500173210002300228326001100251410006500262512002700327517003700354530002100391607006800412710004700480801003000527801002300557801003000580802000700610856004500617856003600662955005300698972000900751991001800760992001400778992002500792992006200817094685118000091919920131028154707.0 a1760-9089 a131723219 aissn17609089 a20060106a19999999k y0frey50 ba0 afre aFR ay  azku uu 10aWallis et FutunafInstitut d'émission d'Outre-mer aPariscIEOMd1999- aAnnuel 1tRapport annuel - Institut d'émission d'Outre-merx1635-226210aWallis et Futuna en...10aWallis et Futunaerapport annuel00aWallis et Futuna aWallis et FutunaxConditions économiquesxPériodiques2rameau02aInstitut d'émission d'Outre-merc(France) 3aFRbAbesc20090423gAFNOR 3aFRbISSNc20090225 3aFRbAbesc20060112gAFNOR a074 uhttp://www.ieom.fr/ieom/publications-24/4 zAccès libre au texte intégral1 b(1999) -....cParisdMagasins/AnnexeeP 8° 6857 aZGRA aexempb201212 aDEW 330.9 aGEO RA4.06 France 01 aGEO RJ7 Autres régions de l'Océanie et du Pacifique Sud01121nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002700154210004600181326001200227607005600239801002100295856003800316856004800354955013300402955022200535972000900757991001800766992002300784992001200807038815893000008905120130319051949.01 a0043-0633 aFNSP392714 a0000089051 a19900101a19699999 ba0 aeng aUS aafu 14aThe Washington monthly aWashingtoncWashington Monthly Co.d1969- aMensuel aEtats-UnisxPolitique et gouvernementxPériodiques 3aFRbCCN0043-06334 uhttp://www.washingtonmonthly.com/ zContenu : sélection d'articles depuis 20021 bvol. 35 no. 1/2 (2003) -vol. 36 no. 3 (2004) ; vol. 37 no. 1 (2005) -vol. 43 no. 9/10 (2011)cParisdMagasins/AnnexeeP 4° 71811 bvol. 2 no 11 (1971) -vol. 17 no. 11 (1985) ; vol. 18 no. 5 (1986) -vol. 18 no. 6/7 (1986) ; vol. 19 no. 1 (1987) -vol. 21 no. 9 (1989) ; vol. 25 no. 12 (1993) -vol. 34 no. 12 (2002)cParisdMagasins/AnnexeeP 8° 2799 aZCAD aexempb201105 aGEO RC2 Etats-Unis aDEW 32400945nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000051001502100005002012300024002063260014002306060029002446070029002738010013003028560192003158560108005079550005006159920023006209920012006430001131866000113186620130319051949.0 a0001131866 a a19849999k fre 01 ba0 aeng aUS ar aaa z  adr 14aThe Washington postb[Ressource électronique] a aRevue électronique aquotidien aActualitéxPériodiques aEtats-UnisxPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 r aGEO RC2 Etats-Unis aDEW 05001217nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002900139210003900168326001600207430007600223452005400299530003000353606004400383606004400427676000800471710007100479801002100550856021400571955006700785972000900852991001800861992001200879039107620000000565820140110153348.01 a0163-660X aFNSP108787 a19900323a19799999 ba0 aeng aUS aahu 14aThe Washington quarterly aCambridge, Mass.cMIT Pressd1979- aTrimestriel 1aThe Washington review of strategic and international studiesx0147-1465 1tThe œWashington quarterly (Online)‎x1530-917704aThe @Washington quarterly aRelations internationalesxPériodiques aSécurité internationalexPériodiques a32702aCenter for Strategic and International Studiesc(Washington, D.C.) 3aFRbCCN0163-660X4 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t794176680db=allzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol . 2 no. 1 (1979) -....cParisdMagasins/AnnexeeP 8° 4050 aZSAB aexempb200302 aDEW 32701207cas0 2200397 450 001001000000002001100010005001700021011001400038035002100052035001700073100004100090101000800131102000700139105001800146106000600164110001600170200004800186207002300234210005200257530001400309606003400323606003800357606003700395606006400432676001100496801003000507801002300537802000700560856002800567856004900595955006900644955005400713972000900767992001200776992002100788161404901000124312720131105191623.0 a2259-0242 a(OCoLC)793489983 aissn22590242 a20120529a20129999m y0frey50 ba0 afre aFR ay 0  ar aahu 0uu 10aWe demaineune revue pour changer d'époque 0aN° 1 (avril 2012) aIssy-les-MoulineauxcWe demain Groupe GSd2012-00aWe demain aUtopiesxPériodiques2rameau aInnovationsxPériodiques2rameau aPrévisionxPériodiques2rameau aVingt et unième sièclexPrévisionsxPériodiques2rameau a303.49 3aFRbAbesc20130418gAFNOR 3aFRbISSNc20120529 a074 uhttp://www.wedemain.fr/4 zContenu : texte intégral du dernier numéro1 bL'année en courscParisd27, salle Rez-de-chausséeeP 4° 73321 bno. 1(avr 2012)-....dMagasins/AnnexeeP 4° 7332 aZPAY aDEW 303 aGeo RQ Universel01547nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002700139210002400166326002500190326002700215326003000242326003100272530002700303607006300330676000800393801002100401856012300422856005400545856010900599856010800708955006700816955006900883955007000952957005401022972000901076991001801085992003401103992001201137039075354000000554620131220103111.01 a0140-2382 aFNSP108510 a19900319a19789999 ba0 aeng aGB aahu 10aWest European politics aLondoncCassd1978- aBimestriel‎b2008- a5 par an‎b2004-2007 aTrimestriel‎b1982-2003 a3 nos par an‎b1978-1981 aWest European politics aEurope de l'OuestxPolitique et gouvernementxPériodiques a320 3aFRbCCN0140-23824 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titledb=allcontent=t713395181tab=issueslist zContenu : sommaires depuis le vol. 25, n°1, 20024 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t713395181db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3201 bL'année en courscParisdBibliothèque de rechercheeP 8° 41761 bvol. 1 no. 1 (fev-1978) -....cParisdMagasins/AnnexeeP 8° 41761 b(1978-2002)cParisdMagasins/AnnexeeP Index 0860 aZCAD aexempb200302 aGEO RA2.01 Europe occidentale aDEW 94001205cas0 2200325 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133105001800140106000600158110001600164200006700180207004000247210011800287430007500405801003000480801002300510801001300533802000700546856012300553856010800676955007400784972000900858992001200867113877641000088702820130319051953.01 a1936-3419 aissn19363419 a0000887028 a20070412a20059999k y0frey0103 ba0 aeng aUS ay 0  ar aaja 0uu 14aThe Whitehead journal of diplomacy and international relations 0aVol. 6, no. 1 (winter/spring 2005)- aSouth Orange, NJcJohn C. Whitehead School of Diplomacy and International Relations, Seton Hall Universityd2005- 1tSeton Hall journal of diplomacy and international relationsx1538-6589 3aFRbAbesc20080514gAFNOR 3aFRbISSNc20070412 0aFRbFNSP a014 uhttps://acces-distant.sciences-po.fr/fork?http://www.heinonline.org/HOL/Index?index=journals/whith&collection=journals zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 6 no. 1 (hiv/pri-2005) -....cParisdMagasins/AnnexeeP 8° 6646 aZSAB aDEW 32701259nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002500154210003800179326001100217607005600228676000800284856015900292955006000451955013400511955017700645955008900822972000900911992002100920992001600941038885379000008277320130319051953.01 a0083-9396 aFNSP369321 a0000082773 a19900101a19009999 ba0 aeng aUS aaka 10aWho's who in America aChicagocMarquis Who's Whod1900- aAnnuel aAmériquexBiographiesxDictionnairesxPériodiques a9274 uhttp://www.archive.org/stream/whoswhoinamerica02marq#page/n5/mode/2upzAccès libre au texte intégral. Le volume 1901-1902 est numérisé sur Archive.org1 bLa dernière annéecParisd30,Salle 2e étageeDEW 9271 b(1980/1981) ; (1984/1985) ; (1989/1990) ; (1995) ; (2000) ; (2005)cParisdMagasins/AnnexeeP 4° 5851zconservons tous les 5 ans1 b(1930/1931) ; (1934/1935) ; (1944/1945) ; (1948/1949) ; (1958/1959) ; (1964/1965) ; (1970/1971) ; (1974/1975)cParisdMagasins/AnnexeeCOL4°0010zconservons tous les 5 ans1 b(1899) -(1902)-(1910) -(1911) ; (1920) -(1921)cParisdMagasins/AnnexeeCOL 8° 0015 aZPAY aGEO RB Amérique aDEW 920-92801303nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210002600178326011600204607005300320676000900373856019200382856010800574955006100682955007400743955006700817955005800884972000900942992002200951992001600973032915853000001121220130319051953.01 a0083-9531 aFNSP124104 a0000011212 a19900730a19539999 ba0 afre aFR aaka 10aWho's who in France aPariscLafitted1953- aTous les 2 ans de la 1ère éd. 1953/54 à la 19ème éd. 1987/1988, annuel à partir de la 20ème éd. 1988/89 aFrancexBiographiesxDictionnairesxPériodiques a/9244 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLa dernière annéecParisd30, Salle 2e étageeDEW 9241 bL' année précédentecParisdBibliothèque de rechercheeP 4° 58021 b(1953/1954) -(1979/1980)cParisdMagasins/AnnexeeCOL 8° 05271 b(1981/1982) -....cParisdMagasins/AnnexeeP 4° 5802 aZPAY aGEO RA4.06 France aDEW 920-92800842nas 2200301 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001600154210003100170326001500201530002500216606003700241607004500278856003100323856005700354955006800411972000900479991001800488992002200506992001200528139889957000019197420130319051954.01 a1420-0945 aFNSP708437 a0000191974 a19900101a19819999 ba0 ager aCH aaja 10aWiderspruch aZurichcWiderspruchd1981- aSemestriel 0aWiderspruchbZürich aVie intellectuellexPériodiques aSuissexVie intellectuellexPériodiques4 uhttp://www.widerspruch.ch/ zContenu : sommaires et abstracts depuis janvier 20001 bvol. 15 no. 29 (1995) -....cParisdMagasins/AnnexeeP 8° 6244 aZPAY aexempb201301 aGEO RA5.14 Suisse aDEW 00101151nls 2200325 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281350018001342000039001522100032001912150005002232250057002282300005002853000196002906070062004866070062005486070062006106760008006727100026006807120047007068010013007538300008007668560051007740001168713000116871320130319051954.0 a0001168713 a d1990 k a fre 01 0 aeng aUS ay z y  ar adr 10a[William J. Clinton, G.W. Bush...] aWashingtoncUSGPOd1990-... a20aPublic papers of the Presidents of the United States a aA partir de George Bush (1991-1993), les Public papers of the Presidents of the United States sont consultables en ligne sur le site GPO Access, a service of the US Government Printing Office aEtats-UnisxPolitique et gouvernementz1989-1993xSources aEtats-UnisxPolitique et gouvernementz1993-2001xSources aEtats-UnisxPolitique et gouvernementz2001-2009xSources a97301aEtats-UnisbPresident01aEtats-UnisbOffice of the Federal Register 0aFRbFNSP asdy4 uhttp://www.gpoaccess.gov/pubpapers/search.html01055nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200002900138210003900167326001200206421011400218607005300332710003900385801002100424856009000445856004200535955014000577972000900717992002500726992001400751038817799000004576320130603145638.01 a0043-6143 aFNSP234866 a0000045763 a19900101a19219999 ba0 ager aDE10aWirtschaft und Statistik aStuttgartcMetzler-Poescheld1921- aMensuel 1aStatistischer Wochendienst - Statistisches Bundesamt Wiesbaden (0177-2554) et Wirtschaftskalender (0435-7957) aAllemagnexConditions économiquesxPériodiques02aAllemagnebStatistisches Bundesamt 3aFRbCCN0043-61434 uhttps://www.destatis.de/DE/Publikationen/WirtschaftStatistik/WirtschaftStatistik.html zAccés au texte intégral depuis 20011 bvol.10 no. 1 (jan-1930) -vol. 24 no. 3 (mai-1944) ; n.s. vol. 1 no. 2 (mai-1949) -no. 12 (dec-2012)cParisdMagasins/AnnexeeP 4° 0766 aZPAY aGEO RA5.01 Allemagne aDEW 330.901028nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210003100176326001200207530003300219607005100252607005300303710006700356801002100423856004600444856005000490955012600540972000900666992002500675992001400700038817845000004570420130319051955.01 a0043-6275 aFNSP234758 a0000045704 a19900101a19169999 ba0 ager aDE aafa 10aWirtschaftsdienst aHamburgcWeltarchivd1916- aMensuel10aWirtschaftsdienstb(Hamburg) aAllemagnexPolitique économiquexPériodiques aAllemagnexConditions économiquesxPériodiques02aHWWA-Institut für Wirtschaftsforschungc(Hambourg, Allemagne) 3aFRbCCN0043-62754 uhttp://www.wirtschaftsdienst.eu/index.php zContenu : texte intégral gratuit depuis 19981 bvol. 24 no. 27 (jul-1939) -vol. 25 no. 16 (avr-1940) ; vol. 39 no. 1 (jun-1949) -....cParisdMagasins/AnnexeeP 4° 0230 aZPAY aGEO RA5.01 Allemagne aDEW 330.900834nas 2200265 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002100139210004700160326001700207434003400224607005300258801002100311856002800332955008200360955008700442992002500529992001400554038815338000004573020140106161136.01 a0042-8582 aFNSP234794 a19900101a19709999 ba0 ager aDE aa a 10aWirtschaftswoche aDüsseldorfcVerl.-Gruppe Handelsbld1970- aHebdomadaire 1aPlus (Düsseldorf)x0032-1702 aAllemagnexConditions économiquesxPériodiques 3aFRbCCN0042-85824 uhttp://www.wiwo.de/news1 bLes six derniers mois de l'année en courscParisd27, Salle Rez-de chaussée1 bConservation limitée aux 5 dernières annéescParisdMagasins/AnnexeeP 4° 0724 aGEO RA5.01 Allemagne aDEW 330.901410nas 2200397 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002100139207004900160210003900209326001600248440005200264452004200316517002300358530002100381606002900402606002500431606004600456676000800502801002100510856004300531856006100574856010900635856010800744955008400852972000900936991001800945992003300963992001600996039150291000004520120130910173622.01 a0195-7732 aFNSP232940 a19900101b19802004 ba0 aeng aUS aaha 10aWomen & politics 1aVol. 1, no. 1 (1980)-vol. 26, no. 3/4 (2004) aNew YorkcHaworth Pressd1980-2004 aTrimestriel 1tJournal of women, politics & policy,x1554-477X 1tWomen & politics (Online),x1540-947310aWomen and politics aWomen & politics aFéminismexPériodiques aFemmesxPériodiques aFemmesxActivité politiquexPériodiques a320 3aFRbCCN0195-77324 uhttp://www.american.edu/oconnor/wandp/ zContenu : sommaires et résumés depuis le vol. 15, n°34 uhttps://acces-distant.sciences-po.fr/fork?http://www.informaworld.com/smpp/titlecontent=t904098947db=all zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1980) -vol. 26 no. 3/4 (2004)cParisdMagasins/AnnexeeP 8° 4371 aZSAB aexempb201106 aGEO RS Sans aspect régional aDEW 305-30601337nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200003300154210005200187326001500239517003000254606005900284606005400343710003700397856010100434856010800535856010800643856010800751955007000859972000900929991001800938992003100956992001200987040077152000003152320130319051956.01 a0950-0170 aFNSP187564 a0000031523 a19910513a19879999 ba0 aeng aGB aaha 10aWork, employment and society aLondoncBritish Sociological Associationd1987- aBimestriel10aWork employment & society aRelations industriellesyGrande-BretagnexPériodiques aMarché du travailyGrande-BretagnexPériodiques02aBritish Sociological Association4 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=108807 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 5 no. 1 (mar-1991) -....cParisdMagasins/AnnexeeP 8° 5717 aZPAY aexempb201111 aGEO RA4.02 Grande-Bretagne aDEW 33100888nls 2200301 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000076001502100056002262300024002823000085003063260015003915170029004066060054004356760016004897120032005058010013005378300007005508560024005579550005005810000412118000041211820130319051957.0 a0000412118 a a19999999k f fre 01 ba0 aeng aDE az aby z  adr 10aWorking paper series - European Central Bankb[Ressource électronique] aFrankfurt am MaincEuropean Central Bankd1999-.... aDonnées textuelles aRésumé. - Texte intégral au format pdf télédéchargeable avec Adobe Acrobat aCollection10aECB working paper series aPolitique monétaireyPays de l'Union européenne a332.46v21a02aBanque centrale européenne 0aFRbFNSP adm4 uhttp://www.ecb.int/1 r00976nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001341350018001502000083001682100053002512300024003043000083003283000109004113260015005206060029005357120042005648010013006068560038006199550029006570000311802000031180220130319051957.0 a0000311802 a a19809999k fre ba0 aeng aCH a 0  az aau z 0  adr 10aWorking papers - Bank for International Settlementsb[Ressource électronique] aBaslecBank for International Settlementsd1980- aDonnées textuelles aAccès au 18/04/2000 : World Wide Web. URL : http://www.bis.org/publ/index.htm aTexte intégral à partir du n° 35, juillet 1996, au format pdf, télédéchargeable avec Adobe Acrobat aCollection aFinances internationales02aBanque des règlements internationaux 0aFRbFNSP4 uhttp://www.bis.org/publ/index.htm1 rConsultable sur Internet00940nls 2200277 i 450 0010011000000020011000110050017000220350015000391000041000541010013000951020007001081060006001151100016001211350018001372000148001552100041003032300024003443260034003683370093004025170025004957100032005208010013005528300007005658560050005729550040006220000550341000055034120130319051957.0 a0000550341 a a20019999k fre 01 ba0 afreager aDE az abu z  adr 10aWorking papers =dDocuments de travailb[Ressource électronique]fCentre franco-allemand de recherches en sciences sociales, Centre Marc Bloch aBerlincCentre Marc Blochd2001-.... aDonnées textuelles aCollection de working papers. aTexte intégral au format pdf, télédéchargeable à partir de 2001 avec Adobe Acrobat.10aDocuments de travail02aCentre Marc Blochc(Berlin) 0aFRbFNSP aBH4 uhttp://www.cmb.hu-berlin.de/publi/index1.html1 rConsultable uniquement sur Internet00887nas 2200241 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000074001502100055002243260015002795170023002947120046003178010013003638560042003769550227004180000380019000038001920130319051957.0 a0000380019 a a19949999k fre ba0 aeng aIT a 0  ar aay z 0 10aWorking papers - European University Institute, Robert Schuman Centre aFlorencecEuropean University Instituted1994-.... aCollection10aEUI Working papers02aCentre Robert Schumanc(Florence, Italie) 0aFRbFNSP4 uhttp://www.eui.eu/RSCAS/Publications/1 rCette collection, depuis 1995, est conservée dans la Salle de 3e cycle. A partir de 2002, les EUI Working papers in economics sont publiés uniquement sous forme électronique sur le site du European University Institute.00913nls 2200301 450 0010011000000020011000110050017000220110014000390350015000531000041000681010008001091020007001171060006001241100016001301350018001462000091001642100070002552300028003253260031003533360024003843370024004086760013004327100060004458010013005058300007005188560050005258560036005750000579578000057957820130319051957.0# a1133-8962 a0000579578 a a19899999k fre 01 ba0 amul aES ar aby z  adr 10aWorking papersb[Ressource électronique]fInstitut de ciències polítiques i socials aBarcelonacInstitut de ciències polítiques i socialsd1989-.... aDonnées électroniques aCollection de monographies aDonnées textuelles aAccès par Internet a300v21a02aInstitut de ciències politiques i socialsc(Barcelone) 0aFRbFNSP aET uhttp://www.diba.es/icps/working_papers/wp.htm zAccès libre au texte intégral01278nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200001800139210005200157326001600209452006000225530003300285606004400318710002700362801004600389856030800435955006800743955009300811972000900904991001800913992002100931992001200952038818337000004568820130725120532.01 a0043-8200 aFNSP234733 a19900101a19329999 ba0 aeng aUS aaha 10aWorld affairs aWashington, D.C.cAmerican Peace Societyd1932- aTrimestriel 1tWorld affairs (Washington, D.C. : Online)‎x1940-158210aWorld affairs‎bWashington aRelations internationalesxPériodiques02aAmerican Peace Society 3aFRbCCN0043-8200cAmerican Peace Society.4 uhttps://acces-distant.sciences-po.fr/fork?http://web.ebscohost.com/ehost/detail?hid=14&sid=883feaa6-636a-42bb-b78e-e8031b96c985%40sessionmgr14&vid=1&bdata=JnNpdGU9ZWhvc3QtbGl2ZQ%3d%3d#db=poh&jid=WAFzAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 148 no. 1 (1986) -....cParisdMagasins/AnnexeeP 4° 51241 bvol. 135 no. 1 (ete-1972) -vol. 147 no. 4 (pri-1985)cParisdMagasins/AnnexeeP 8° 3303 aZSAB aexempb200905 aGEO RQ Universel aDEW 32701075nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003600139210003900175326001100214430006100225530003800286606004400324607002900368676001000397830007300407856012300480955007200603972000900675991001800684992002300702992001200725992001200737038885697000014501320131121113030.01 a0084-1382 aFNSP571795 a19941226a19239999 ba0 aeng aUS aaka 10aWorld almanac and book of facts aMahwah, N.J.cWorld Almanacd1923- aAnnuel 1aWorld almanach [and encyclopedia ; and book of facts]...14aThe World almanac & book of facts aRelations internationalesxPériodiques aEtats-UnisxPériodiques a320.9 aManquants : (1923)-(1979) ;$cParis,$dMagasins/Annexe :$eCOL 8° 00164 uhttp://www.worldalmanac.com/world-almanac.aspxzAccés à la table des matières et index de la dernière année parue1 b(1980) -(1991) ; (2008) -(2012)cParisdMagasins/AnnexeeP 8° 5224 aZPAY aexempb201306 aGEO RC2 Etats-Unis aDEW 973 aDEW 90901426nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003100139207003200170210004900202210005000251326001700301452005200318530004100370606004500411606004000456710007000496856003300566856006800599856010300667856010800770955007000878972000900948991001800957992002100975992004200996992001401038039300471000014214020140107142552.01 a0258-6770 aFNSP564269 a19941122a19869999 f ba0 aeng aUS aaia 10aWorld Bank economic review 1aVol. 1, no. 1 (Sept. 1986)- aOxford‎cOxford University Press‎d199X- aWashington, D.C.‎cWorld Bank‎d1986-199X a3 nos par an 1tWorld Bank economic review (Online),x1564-698X aWorld Bank economic review‎bPrint aDéveloppement économiquexPériodiques aPolitique économiquexPériodiques02aBanque internationale pour la reconstruction et le développement4 uhttp://wber.oupjournals.org/ zContenu : sommaires et résumés depuis le volume 1, no 1, 19864 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/Journal2.asp?JournalID=106103 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (sep-1986) -....cParisdMagasins/AnnexeeP 8° 5030 aZPAY aexempb201106 aGEO RQ Universel aGEO RO Pays en voie de développement aDEW 338.901502nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003700139207003200176210004300208210004400251326001500295452005400310530004700364606004500411607007400456710007000530801002100600856006100621856005300682856010100735856010800836955010100944972000901045991001801054992004201072992001401114039290654000010247220140107143113.01 a0257-3032 aFNSP440114 a19900101a19869999 f ba0 aeng aUS aaju 14aThe World Bank research observer 1aaVol. 1, no. 1 (Jan. 1986)- aOxfordcOxford University Pressd199?- aWashington, D.C.cWorld Bankd1986-199? aSemestriel 1tWorld Bank research observer (Online),x1564-697114aThe World Bank research observer‎bPrint aDéveloppement économiquexPériodiques aPays en voie de développementxConditions économiquesxPériodiques02aBanque internationale pour la reconstruction et le développement 3aFRbCCN0257-30324 uhttp://www.worldbank.org/html/extpb/observer/obscont.htm zContenu : sommaires et résumés de 1992 à 19984 uhttps://acces-distant.sciences-po.fr/fork?http://ejournals.ebsco.com/direct.asp?JournalID=106104 zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (1986) -....cParisdMagasins/AnnexeeP 8° 4902wManque no. 2 (1986), no. 1 (1989) aZPAY aexempb200301 aGEO RO Pays en voie de développement aDEW 338.901160nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200012400139207003100263210002800294326001200322606004500334607004900379801002100428856005800449856006000507955007100567955009200638972000900730991001800739992004200757992002100799992001400820039394700000004520420140107143410.01 a0305-750X aFNSP232950 a19900101a19739999 ba0 aeng aGB aafa 10aWorld developmentethe multi-disciplinary international journal devoted to the study and promotion of world development 1avol. 1 no. 1/2, Feb. 1973- aOxfordcPergamond1973- aMensuel aDéveloppement économiquexPériodiques aPays en voie de développementxPériodiques 3aFRbCCN0305-750X4 uhttp://www.elsevier.nl/inca/publications/store/3/8/6/ zContenu : sommaires depuis le vol. 23, n°1, janv. 19951 bvol. 37 no. 1 (jan-2009) -....cParisdMagasins/AnnexeeP 4° 72401 bvol. 10 no. 1 (jan-1982) -vol. 36 no. 12 (dec-2008)cParisdMagasins/AnnexeeP 8° 4578 aZPAY aexempb201003 aGEO RO Pays en voie de développement aGEO RQ Universel aDEW 338.900957nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200012700154210004500281326001100326510003900337517003200376606002900408710003400437856010100471955005300572972000900625992002100634992001200655168600447000001094120130410144354.0 a1013-0365 aFNSP121082 a0000010941 a19900718a19799999 f ba0 amul aCH aaka 10aWorld directory of parliaments/fInter-Parliamentary Uniond= Répertoire mondial des parlementsfUnion interparlementaire aGenèvecUnion interparlementaired1979- aAnnuel10aRépertoire mondial des parlements10aParliaments world directory aParlementsxPériodiques02aUnion interparlementaire40704 uhttp://www.ipu.org/english/perdcls.htm#DirectoryzAccés au texte intégral de l'année en cours1 b(1990) -....cParisdMagasins/AnnexeeP 4° 5929 aZGRA aGEO RQ Universel aDEW 32800891nas 2200277 i 450 0010011000000020011000110050017000220350015000390350015000541000041000691010008001101020007001181100016001252000022001412100043001633260016002064530036002226060040002587100076002988560058003748560042004329550055004749550059005299720009005889920016005970000242968000024296820130912133418.0 aFNSP855169 a0000242968 a19900101a19979999 ba0 aeng aGB aaka 10aWorld drug report aOxfordcOxford University Pressd1997- aIrrégulier 1tRapport mondial sur les drogues aDroguesxLutte contrexPériodiques02aProgramme des Nations Unies pour le contrôle international des drogues4 uhttp://www.unodc.org/unodc/data-and-analysis/WDR.html4 zAccés au texte intégral depuis 19971 b(1997) -(2000)cParisdMagasins/AnnexeeP 8° 63501 b(2004) -(2006)cParisdMagasins/AnnexeeP 4° 7148 bis aZPAY aDEW 364-36501321nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004000154210005700194225005000251225004100301300004200342300008900384326001500473451006000488530004000548606004200588606003900630710003500669801002100704856009400725955009600819972000900915992002100924992001400945039285154000000497520130605135523.01 a0256-6877 aFNSP107122 a0000004975 a19900101a19809999 f ba0 aeng aUS aaju 10aWorld economic outlook (Washington) aWashington, D.C.cInternational Monetary Fundd1980-21aOccasional paperfInternational Monetary Fund21aWorld economic and financial surveys aVoir aussi la collection en français a2009 dernière éd. papier, à partir de 2010 voir ensuite en version électronique. aSemestriel 1aPerspectives de l'économie mondiale < P 4° 4857 bis >00aWorld economic outlook (Washington) aConjoncture économiquexPériodiques aHistoire économiquexPériodiques02aFonds monétaire international 3aFRbCCN0256-68774 uhttp://www.imf.org/external/ns/cs.aspx?id=29zAccès libre au texte intégral depuis 19931 b(1980) ; (dec-2001) -(sep-2003) ; (avr-2007)-(oct-2009)cParisdMagasins/AnnexeeP 4° 4857 aZPAY aGEO RQ Universel aDEW 330.900953nls 2200301 i 450 002001100000005001700011100004100028101000800069102000700077106000600084110001600090135001800106200006700124210005700191225005000248225004100298230002400339326001500363606004200378606003900420710003500459801001300494830000800507856009600515955000500611992002100616992001400637000124508520130605135505.0 a a19939999k fre 01 ba0 aeng aUS ar aaj z  adr 10aWorld economic outlook (Washington)b[Ressource électronique] aWashington, D.C.cInternational Monetary Fundd1993-21aOccasional paperfInternational Monetary Fund21aWorld economic and financial surveys aRevue électronique aSemestriel aConjoncture économiquexPériodiques aHistoire économiquexPériodiques02aFonds monétaire international 0aFRbFNSP acdj4 uuhttp://www.imf.org/external/ns/cs.aspx?id=29zAccès libre au texte intégral depuis 19931 r aGEO RQ Universel aDEW 330.901309nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001800154207003100172210003000203326001900233326005500252606003700307801002100344856012800365856010800493856010400601856010800705955013100813972000900944991001800953992001200971039557065000004519920131202121905.01 a0378-5920 aFNSP232937 a0000045199 a19900101a19779999 ba0 aeng aGB aafa 10aWorld economy 1avol. 1, no. 1 (Oct. 1977)- aOxford:cBlackwelld1977- aMensuelb2006- aTrimestriel puis 8 n°s, 10 n°s et 11 n°s par an aEconomie politiquexPériodiques 3aFRbCCN0378-59204 uhttps://acces-distant.sciences-po.fr/fork?http://search.ebscohost.com/login.aspx?direct=true&db=buh&jid=WEC&site=ehost-live zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po4 uhttps://acces-distant.sciences-po.fr/fork?http://www3.interscience.wiley.com/journal/117965403/home zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 1 no. 1 (oct-1977) -vol. 35 no. 12 (dec-2012)cParisdMagasins/AnnexeeP 8° 4006wManquants : vol. 15, nos 4, 5, 6, 1992 aZPAY aexempb201001 aDEW 33700841nas 2200289 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000270013921000490016632600110021543000380022660600430026471000410030785600680034895500550041697200090047199100180048099200160049899200160051499200210053004021852X000015028220140107152711.01 a1027-6467 aFNSP588157 a19950217c19919999 ba0 aeng aGB aaka 10aWorld grain statistics aLondoncInternational Wheat Councild[19..]- aAnnuel 1aWorld wheat statisticsx0512-3844 aCéréalesxStatistiquesxPériodiques02aConseil international des céréales4 uhttp://www.igc.org.uk/en/publications/worldgrainstatistics.aspx1 b(1991) -(2007)cParisdMagasins/AnnexeeP 4° 6435 aZPAY aexempb201401 aDEW 310-319 aDEW 338.1-3 ageo rq uNIVERSEL01008nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154207001000198210003600208326001100244606004600255606004500301676000800346710007100354856005900425856003600484955006700520955005300587972000900640992001200649992002100661040180891000020088820130319051957.01 a1020-2218 aFNSP732767 a0000200888 a19900101a19919999 ba0 aeng aUS aaka 10aWorld investment reportfUnited Nations 1a1991- aNew YorkcUnited Nationsd1991- aAnnuel aEntreprises multinationalesxPériodiques aInvestissements étrangersxPériodiques a33202aConférence des Nations Unies sur le commerce et le développement4 uhttp://www.unctad.org/wir/contents/wir01content.en.htm zAccès libre au texte intégral1 bLes 3 dernières annéescParisd27, Salle 1er étageeDEW 3321 b(1991) -....cParisdMagasins/AnnexeeP 4° 6644 aZGRA aDEW 332 aGEO RQ Universel00907nas 2200289 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131200002500138207002600163210004400189326001600233606004400249606004400293710002700337856004000364856010400404955007000508972000900578991001800587992001200605039703541000004519420130319051957.01 a0740-2775 aFNSP232930 a0000045194 a19900101a19839999 0 aeng aUS10aWorld policy journal 1aVol. 1, no. 1 (1983)- aNew YorkcWorld Policy Instituted1983- aTrimestriel aRelations internationalesxPériodiques aRelations internationalesxPériodiques02aWorld Policy Institute4 uhttp://www.worldpolicy.org/journal/ zContenu : sommaires depuis le vol 15, n°1, Spring 1998 et sélection d'articles en texte intégral1 bvol. 1 no. 1 (aut-1983) -....cParisdMagasins/AnnexeeP 8° 4700 aZSAB aexempb201104 aDEW 32701228nas 2200349 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001900154210005800173326001600231606004400247676000800291710005500299801002100354856004900375856005900424856009000483856010800573955006700681955007000748972000900818991001800827992002100845992001200866038818655000004516020131220103626.01 a0043-8871 aFNSP232852 a0000045160 a19900101a19489999 ba0 aeng aUS aaha 10aWorld politics aBaltimore, Md.cJohns Hopkins University Pressd1948- aTrimestriel aRelations internationalesxPériodiques a32702aCenter of International Studiesc(Princeton, N.J.) 3aFRbCCN0043-88714 uhttp://muse.jhu.edu/journals/world_politics/ zContenu : sommaires depuis le vol. 48, n°1, oct. 19954 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00438871.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 1 no. 1 (oct-1948) -....cParisdMagasins/AnnexeeP 8° 0009 aZCAD aexempb201010 aGEO RQ Universel aDEW 32701056nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000160015421000600017032600220023032600230025243000470027560600440032271000510036680100210041785600490043885600510048795500670053895500830060597200090068899200210069799200120071803881871X000004568620130319051957.01 a0043-9134 aFNSP234731 a0000045686 a19900101a19459999 ba0 aeng aGB aafa 10aWorld today aLondoncRoyal Institute of International Affairsd1945- aBimestrielb2012- aMensuelb1985-2011 1tBulletin of international news,x2044-3986 aRelations internationalesxPériodiques02aRoyal Institute of International Affairsc(GB) 3aFRbCCN0043-91344 uhttp://www.chathamhouse.org/publications/twt zrésumés et sélection d'articles depuis 19981 bvol. 41 no. 1 (1985) -....cParisdMagasins/AnnexeeP 4° 49761 bvol. 1 no. 1 (1945) -vol. 40 no. 12 (1984)cParisdMagasins/AnnexeeP 8° 0019 aZSAB aGEO RQ Universel aDEW 32701044nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116105001800123106000600141110001600147200009300163207003000256210004900286326001600335601005200351606004100403710003800444801001300482856006400495856007800559955007000637972000900707992001400716067229794000061043020140107133040.01 a1474-7456 a0000610430 a a20029999 fre 01 ba0 aeng aGB a 0  ar aai z 0 10aWorld trade revieweeconomics, law, international institutionsfWorld Trade Organization 1avol. 1, no 1 (mars 2002)- aCambridgecCambridge University Pressd2002- aTrimestriel02aOrganisation mondiale du commercexPériodiques aCommerce internationalxPériodiques02aOrganisation mondiale du commerce 0aFRbFNSP4 uhttp://journals.cambridge.org/action/displayJournal?jid=WTR zcontient : sommaires et résumés d'articles depuis le vol. 1 no. 1, 20021 bvol. 1 no. 1 (mar-2002) -....cParisdMagasins/AnnexeeP 8° 6749 aZPAY aDEW 341.201352nas 2200361 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002100154210003000175326002500205326002300230430004800253517006700301517008900368606003900457607005300496607004900549710008900598801002100687856007800708856008700786955007100873972000900944992002500953992001200978039470253000004572020130918130023.01 a0342-300X aFNSP234783 a0000045720 a19900101a19729999 ba0 ager aDE aafa 10aWSI-Mitteilungen aKölncBund-Verlagd1972- a8 n°s par an$d2012- aMensuel$d1972-2011 1aWWI-Mitteilungen (0042-9872) < P 4° 0370 >10aWirtschafts-und-Sozialwissenschaftliches-Institut-Mitteilungen10aWirtschafts - und Sozialwissenschaftliches Institut : WSI-Mitteilungen aSyndicatsyAllemagnexPériodiques aAllemagnexConditions économiquesxPériodiques aAllemagnexConditions socialesxPériodiques02aWirtschafts und Sozialwissenschaftlichen Instituts des Deutschen Gewerkschaftsbundes 3aFRbCCN0342-300X4 uhttp://www.boeckler.de/rde/xchg/SID-3D0AB75F-5F281CC1/hbs/hs.xsl/119.html zContenu : sommaires et abstracts depuis 1999, certains articles en texte intégral1 bvol. 25 no. 4 (avr-1972) -....cParisdMagasins/AnnexeeP 4° 0370 aZPAY aGEO RA5.01 Allemagne aDEW 33101054nls 2200301 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000051001502100049002013000098002503260015003483360058003633370063004214520037004846060064005216070045005858010013006308560090006439550005007339920014007380000480110000048011020130319051958.0 a0000480110 a a19489999k fre 01 ba0 aeng aUS az aaj z  adr 10aYale French studiesb[Ressource électronique] aNew Haven, Conn.cYale French studiesd1948- aAccès au texte intégral (réservé aux sites de Sciences Po) jusqu'aux 2 dernières années aSemestriel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tYale French studiesx(0044-0078) aLittérature françaisexHistoire et critiquexPériodiques aFrancexVie intellectuellexPériodiques 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00440078.html1 r aDEW 80-8901065nas 2200313 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000250015421000460017932600180022560600360024380100210027985600320030085600670033285600900039985601080048995500920059797200090068999100180069899200230071699200120073903881921X000004518820130319051958.01 a0044-0094 aFNSP232919 a0000045188 a19900101a18919999 ba0 aeng aUS aafa 14aThe Yale law journal aNew Haven, Conn.cYale law journald1891- a8 n°s par an aDroityEtats-UnisxPériodiques 3aFRbCCN0044-00944 uhttp://www.yale.edu/yalelj/ zContenu : sommaires et résumés depuis le vol. 101, 1991-19924 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/00440094.html zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 79 no. 8 (jul-1970) -vol. 116 no. 3 (dec-2006)cParisdMagasins/AnnexeeP 8° 2880 aZPAY aexempb201106 aGEO RC2 Etats-Unis aDEW 34901060nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002400154210005300178326001100231430004600242530002400288607002800312712003600340856010400376955006000480955013800540972000900678991001800687992002500705992001600730143713396000009585620130522101608.0 a0810-8633 aFNSP419069 a0000095856 a19900101a19789999 ba0 aeng aAU aaka 10aYear book Australia aCanberracAustralian Bureau of Statisticsd1977- aAnnuel 1aOfficial yearbook of Australiax0312-474600aYear book Australia aAustraliexPériodiques02aAustraliebBureau of Statistics4 uhttp://www.abs.gov.au/ausstats/abs@.nsf/mf/1301.0zAccès au texte intégral du rapport depuis 19081 bvol. 62 (1977/1978)cParisdMagasins/AnnexeeCOL8°01131 bvol. 64 (1980)-vol. 65 (1981) ; vol. 70 (1986)-vol. 73 (1990) ; vol. 75 (1992)-vol. 91(2009/2010)cParisdMagasins/AnnexeeP 8° 5243 aZPAY aexempb201109 aGEO RJ3.01 Australie aDEW 990-99600852nls 2200289 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000084001502100053002342300024002873260011003116070028003227100036003508010013003868560054003998560063004539550005005169920025005219920016005460001241627000124162720130319051958.0 a0001241627 a a20129999k fre 01 ba0 aeng aAU ar aak z  adr 10aYear book Australiab[Ressource électronique]fAustralian Bureau of Statistics aCanberracAustralian Bureau of Statisticsd2012- aRevue électronique aAnnuel aAustraliexPériodiques02aAustraliebBureau of Statistics 0aFRbFNSP4 uhttp://www.abs.gov.au/ausstats/abs@.nsf/mf/1301.04 zContenu : texte intégral du rapport en ligne depuis 1908.1 r aGEO RJ3.01 Australie aDEW 990-99601407nas 2200373 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200014400139210002700283300011700310326001100427510004100438510004100479517003400520530003400554606005100588676000800639710004300647801002100690830005300711856009700764955009600861972000900957991001800966992002100984992001201005992001601017038886472000000286020131008112311.01 a0084-3857 aFNSP101575 a19900101b19352009 f ba0 aeng aCH aaku 10aYear-book of labour statisticsd= Annuaire des statistiques du travaild= Anuario de estadisticas del trabajosfInternational Labour Office aGenevacILOd1935-2009 ale 1er vol est tout en français, les vols suivants en français et anglais, puis français, anglais et espagnol aAnnuel10aAnnuaire des statistiques du travail10aAnuario de estadisticas del trabajos10aYearbook of labour statistics00aYearbook of labour statistics aMarché du travailxStatistiquesxPériodiques a33102aOrganisation internationale du travail 3aFRbCCN0084-3857 a1935-2009 : collection envoyée au CTles en 20134 uhttp://www.ilo.org/stat/Publications/Yearbook/WCMS_CON_TXT_STA_PUB_YRB_EN/lang--fr/index.htm1 b1ère ed. (1935/1936) ; (1937) -(1942)- (2006) ; (2009)cParisdMagasins/AnnexeeP 4° 5214 aZECH aexempb201306 aGEO RQ Universel aDEW 331 aDEW 310-31901153nas 2200337 i 450 0010011000000020011000110050017000220110014000390350015000530350015000681000041000831010008001241020007001321100016001392000064001552100027002193000051002463260011002975170059003085300064003676060051004316060051004827120051005338560069005848560059006539550056007129550005007689720009007739920021007829920012008030000135080000013508020130319051958.0 a0074-4387 aFNSP543217 a0000135080 a19940902b19542002 f ba0 aeng aFR aaka 10aYear book of the International Council of Scientific Unions aPariscICSUd1954-2002 aA partir de 2005, version en ligne uniquement. aannuel10aYear book - International Council of Scientific Unions00aYear book of the International Council of Scientific Unions aSociétés savantes et institutsxRépertoires aSociétés savantes et institutsxPériodiques02aConseil international des unions scientifiques4 uhttp://www.icsu.org/2_resourcecentre/Resource.php4?rub=11&id=166 zContenu : texte intégral du dernier rapport en ligne.1 b(2000) ; (2002)cParisdMagasins/AnnexeeP 8° 43021 b aZGRA aGEO RQ Universel aDEW 50701117nls 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031060006001101100016001161350018001322000056001502100077002063000087002833260011003703360058003813370063004394400051005024520042005536060032005957120056006278010013006838560090006969550005007869920012007910000463642000046364220130319051958.0 a0000463642 a b19551955k fre 01 ba0 aeng aUS az aak z  adr 10aYearbook of anthropologyb[Ressource électronique] aNew-YorkcWenner-Gren Foundation for Anthropological Researchd1955-1955 aAccès au texte intégral (réservé aux sites de Sciences Po) pour le n° de 1955 aAnnuel aDonnées numérisées accessibles uniquement en ligne aFichiers images et PDF en consultation ou téléchargement 1tCurrent anthropology [Ressource électronique] 1tYearbook of anthropologyx(1524-4555) aAnthropologiexPériodiques02aWenner-Gren Foundation for Anthropological Research 0aFRbFNSP4 uhttps://acces-distant.sciences-po.fr/fork?http://www.jstor.org/journals/15244555.html1 r aDEW 30101026nas 2200313 i 450 0010011000000020011000110050017000220350015000391000041000541010008000951020007001031050018001101060006001281100016001342000087001502100064002373260011003014300037003126070047003496070051003967100044004478010013004918560072005048560044005769550047006209720009006679920024006769920012007000000518692000051869220130319051958.0 a0000518692 a a20029999k fre ba0 aeng aFI a 0  ar aak z 0 10aYearbook of Finnish foreign policyfThe Finnish Institute of International Affairs aHelsinkicFinnish Institute of International Affairsd2002- aAnnuel 1tNorthern dimensionsx(1456-1255) aFinlandexDéfense nationalexPériodiques aFinlandexRelations extérieuresxPériodiques02aUlkopoliittinen instituuttic(Finlande) 0aFRbFNSP uhttp://www.upi-fiia.fi/english/navigation/publications_frameset.htm zsommaires des volumes à partir de 19991 b(2002)cParisdMagasins/AnnexeeP 8° 3462 aZGRA aGEO RA3.01 Finlande aDEW 32700955nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002200154210003800176326001600214530002000230606003900250856010800289856010800397955012400505972000900629992002300638992001600661038819457000007471620130319051958.01 a0044-118X aFNSP341169 a0000074716 a19900101a19699999 ba0 aeng aUS aaha 00aYouth and society aNewbury Park, Calif.cSaged1969- aTrimestriel00aYouth & society aJeunesseyEtats-UnisxPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?http://online.sagepub.com/browsejournals.dtl?source=available zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bvol. 23 no. 3 (mar-1992) -vol. 30 no. 3 (mar-1999) ; vol. 32 no. 3 (mar-2001) -....cParisdMagasins/AnnexeeP 8° 5886 aZSAB aGEO RC2 Etats-Unis aDEW 305-30601317nas 2200361 i 450 00100100000000200110001000500170002101100140003803500150005203500150006710000410008210100080012310200070013111000160013820000200015420700500017421000530022432600160027744000420029345400370033560700660037260700530043860700300049180100210052185600400054285600930058295501200067595700920079597200090088799100180089699200270091499200140094103881949X000002617120130319051958.01 a0044-1341 aFNSP169797 a0000026171 a19900101b19602002 ba0 aeng aYU aahu 10aYugoslav survey 1avol. 1, no. 1 (1960) - vol. 43, no. 4 ( 2002) aaBeogradcJugoslavia Publishing Housed1960-2002 aTrimestriel 1tSurvey Serbia & Montenegrox1451-477X 1tJugoslovenski pregledx0022-6114 aYougoslaviexPolitique et gouvernementxSourcesxPériodiques aYougoslaviexHistoirexChronologiexPériodiques aYougoslaviexPériodiques 3aFRbCCN0044-1341 uhttp://www.yusurvey.co.yu/index.php zcontenu : sommaires des numéros à partir de 2000 et index des sujets à partir de 20001 bvol. 1 no. 1 (apr-1960) -vol. 43 no. 4 (2002)cParisdMagasins/AnnexeseP 8° 1813wManquant : vol. 32, no. 1, 19911 b(1960) -(1970) ; (1971) -(1976) ; (1989) -(2000)cParisdMagasins/AnnexeseP Index 0005 aZCAD aexempb201102 aGEO RA8.11 Yougoslavie aDEW 949.701003nas 2200277 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200001300154210002900167326001700196421003100213606002900244607002800273856019200301856010800493955008700601992002500688992001200713038819856000006736920130319051959.01 a0044-2070 aFNSP312862 a0000067369 a19900101a19469999 ba0 ager aDE aa a 14aDie Zeit aHamburgcDie Zeitd1946- aHebdomadaire 1aDas Zeitmagazinx0720-5023 aActualitéxPériodiques aAllemagnexPériodiques4 uhttps://acces-distant.sciences-po.fr/fork?https://global.factiva.com/en/sess/login.asp?XSID=S00ZczkZWva5DEs5DEnOT2oNpQuMpByMHn0YqYvMq382rbRQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQQAA zAccès local pour tous les lecteurs et accès à distance réservé aux membres internes de Sciences Po1 bConservation limitée aux 3 dernières annéescParisdMagasins/AnnexeeP F° 1205 aGEO RA5.01 Allemagne aDEW 05000927cas0 2200313 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133110001600140200003200156210004000188326001700228510004900245606002700294801003000321801002300351802000700374856004700381856006200428955006500490972000900555992003300564992001600597080045243000073308020140107172456.01 a1612-6033 aissn16126033 a0000733080 a20030523a20049999 0fre 0103 ba0 amul aDE aai 10aZeithistorische Forschungen aGöttingencVandenhoeck u. Ruprecht a3 nos par an10aStudies in contemporary history (Göttingen) aHistoirexPériodiques 3aFRbAbesc20040901gAFNOR 3aFRbISSNc20030523 a064 uhttp://www.zeithistorische-forschungen.de/ zContenu : texte intégral disponible depuis le n°1, 20041 bvol. 1 no 1 (2004) -....cParisdMagasins/AnnexeeP 8° 6798 aZPAY aGEO RS Sans aspect régional aDEW 900-90701140nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200007300154210003300227326001600260517001100276606003800287801002100325856003500346856014200381955007100523955008500594957010500679972000900784992002100793992001200814038820048000004522120130319051959.01 a0044-2348 aFNSP232996 a0000045221 a19900101a19299999 ba0 ager aDE aaha 10aZeitschrift für ausländisches öffentliches Recht und Völkerrecht aStuttgartcKohlhammerd1929- aTrimestriel10aZaöRV aDroit internationalxPériodiques 3aFRbCCN0044-23484 uhttp://www.zaoerv.de/index.cfm zContenu : sommaires des deux dernières années et de l'année en cours, texte intégral depuis le début de la collection (Vol. 1, 1929)1 bvol. 13 no. 1 (fev-1950) -....cParisdMagasins/AnnexeeP 8° 11761 bvol. 1 no. 1 (1929) -vol. 9 no. 4 (fev-1940)cParisdMagasins/AnnexeeP 4° 07691 bvol. 1 (1929) -vol. 20 (1960) ; vol. 41 (1981) -vol. 50 (1990)cParisdMagasins/AnnexeeP Index 0296 aZCAD aGEO RQ Universel aDEW 34101244cas0 2200373 450 001001000000002001100010005001700021011001400038035001700052035001500069100004100084101000800125102000700133106000600140110001600146200005200162210004800214326001600262517001700278530006100295606004400356606004400400606005000444676000800494801002800502801002300530802000700553856007600560856006000636955006700696955007000763992001200833992002500845131674390000116916420130319051959.01 a1866-2188 aissn18662188 a0001169164 a20090223a20089999k y0frey0103 ba0 ager aDE ar aazu uu 10aZeitschrift für Aussen- und Sicherheitspolitik aWiesbadencVerlag für Sozialwissenschaften aTrimestriel10aZFAS (Print)10aZeitschrift für Aussen- und Sicherheitspolitikb(Print) aRelations internationalesxPériodiques aSécurité internationalexPériodiques aSécurité nationaleyAllemagnexPériodiques a327 3abAbesc20090308gAFNOR 3aFRbISSNc20090225 a064 uhttp://www.vsjournals.de/index.php;sid=5272211adc4f81cf14fc6b783e7033be zContient : sommaires et résumés depuis le no. 1, 20081 bLes 3 dernières annéescParisd30, Salle 1er étageeDEW 3271 bvol. 1 no. 1 (oct-2008) -....cParisdMagasins/AnnexeeP 8° 7094 aDEW 327 aGEO RA5.01 Allemagne00969nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004400154210005500198326001200253517000800265606002700273607003800300801002100338856004900359856003600408955006100444957007400505972000900579991001800588992002500606992001200631038820285000004523720130319051959.01 a0044-2828 aFNSP233027 a0000045237 a19900101a19539999 ba0 ager aDE aafa 10aZeitschrift für Geschichtswissenschaft aBerlincDeutscher Verlag der Wissenschaftend1953- aMensuel10aZfG aHistoirexPériodiques aAllemagnexHistoirexPériodiques 3aFRbCCN0044-28284 uhttp://www.metropol-verlag.de/pp/zfg/zfg.htm zContenu : sommaires depuis 19941 b(jan/fev-1956) -....cParisdMagasins/AnnexeeP 8° 14251 b(1953) -(1962) ; (1963) -(1972)cParisdMagasins/AnnexeeP Index 0057 aZPAY aexempb201103 aGEO RA5.01 Allemagne aDEW 90900991nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004800154210003000202326001500232606004400247607005200291676000800343710008600351856003200437856007400469955007000543972000900613991001800622992002500640992001200665069435758000019560020140110153836.01 a0946-7165 aFNSP718619 a0000195600 a19900101a19949999 ba0 ager aDE aaja 10aZeitschrift für Internationale Beziehungen aBaden-BadencNomosd1994- aSemestriel aRelations internationalesxPériodiques aAllemagnexRelations extérieuresxPériodiques a32702aDeutsche Vereinigung für Politische WissenschaftbSektion Internationale Politik4 uhttp://www.zib-online.info/ zContenu : sommaires depuis le vol. 1, 1994 ; résumés du dernier n°1 bvol. 1 no. 1 (dec-1994) -....cParisdMagasins/AnnexeeP 8° 6265 aZSAB aexempb201212 aGEO RA5.01 Allemagne aDEW 32701066nas 2200325 i 450 00100100000000200110001000500170002101100140003803500150005210000410006710100080010810200070011611000160012320000380013921000410017732600160021845200630023451700480029751700330034553000380037853200210041660100390043771000470047685600870052395500660061097200090067699100180068599200250070399200120072803946346X000004561120131024170438.01 a0340-1758 aFNSP234341 a19900101a19709999 ba0 ager aDE aaha 10aZeitschrift für Parlamentsfragen aOpladencWestdeutscher Verlagd1970- aTrimestriel 1tZeitschrift für Parlamentsfragen (Internet)‎x1862-253410aZeitschrift für Parlamamentsfragen (Print)10aParlamentsfragen (Wiesbaden)00aZeitschrift für Parlamentsfragen10aParlamentsfragen02aAllemagnebBundestagxPériodiques02aDeutsche Vereinigung für Parlamentsfragen4 uhttp://www2.politik.uni-halle.de/zparl/zContenu : Sommaires depuis le Nr. 0, 19691 bvol. 1 no. 1 (1970) -....cParisdMagasins/AnnexeeP 8° 2872 aZSAB aexempb201105 aGEO RA5.01 Allemagne aDEW 32801127nas 2200325 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200002900154210004800183210003000231300004400261326001600305606004700321607005500368801002100423856006200444856007500506955015200581972000900733991001800742992002500760992001600785038820471000004521920130319051959.01 a0044-3360 aFNSP232990 a0000045219 a19900101a19079999 ba0 ager aDE aaha 10aZeitschrift für Politik aKölnaBerlin [etc]cC. Heymannsd1907-2003 aBaden-BadencNomosd2003- aPublication interrompue de 1945 à 1953 aTrimestriel aScience politiqueyAllemagnexPériodiques aAllemagnexPolitique et gouvernementxPériodiques 3aFRbCCN0044-33604 uhttp://www.zeitschrift-fuer-politik.de/zfp/zfp_heft.lasso zContenu : Sommaires et abstracts en allemand et en anglais depuis 20041 bvol. 31 no. 10 (oct-1941) -vol. 31 no. 12 (dec-1941) ; vol. 34 no.3/4 et 5/6 (1944) ; n.s. no. 1/2 (1954) -....cParisdMagasins/AnnexeeP 8° 0982 aZGRA aexempb201101 aGEO RA5.01 Allemagne aDEW 320-32101053nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052035001500067100004100082101000800123102000700131110001600138200004100154210003000195326001600225430005300241517003300294517000900327607006100336607005500397856002400452856005700476955008200533972000900615991001800624992003200642992002500674992001600699037135686000021103120130319051959.01 a1430-6387 aFNSP763149 a0000211031 a19900101a19969999 ba0 ager aDE aaha 10aZeitschrift für Politikwissenschaft aBaden-BadencNomosd1996- aTrimestriel 1aJahrbuch für Politik,x0940-8673 < P 8° 5861 >10aJournal of political science10aZPol aEurope de l'EstxPolitique et gouvernementxPériodiques aAllemagnexPolitique et gouvernementxPériodiques4 uhttp://www.zpol.de/ zContenu : accès au sommaire du dernier numéro paru1 bvol. 6 no. 1 (1996) -vol. 15 no. 4 (2005)cParisdMagasins/AnnexeeP 8° 5861 aZSAB aexempb201201 aGEO RA2.02 Europe orientale aGEO RA5.01 Allemagne aDEW 320-32101047nas 2200313 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200003700139210006400176326001600240430004600256530003700302606005900339710006200398711004100460801002100501856007500522955007200597972000900669991001800678992002500696992001200721039683214000004564120131021145909.01 a0721-0752 aFNSP234415 a19900101a19799999 ba0 ager aDE aaha 10aZeitschrift für Sozialökonomie aHann.-MündencFachverlag für Sozialökonomie Gauked1979- aTrimestriel 1aMensch, Technik, Gesellschaft,x0342-1163 aZeitschrift für Sozialökonomie aEconomie sociale et solidaireyAllemagnexPériodiques02aStiftung für persönliche Freiheitund soziale Sicherheit02aSozialwissenschaftliche Gesellschaft 3aFRbCCN0721-07524 uhttp://www.sozialoekonomie-online.de/zAccès libre au texte intégral1 bvol. 21 no. 60 (mar-1984) -....cParisdMagasins/AnnexeeP 8° 4733 aZPAY aexempb201310 aGEO RA5.01 Allemagne aDEW 33001154nas 2200337 i 450 001001000000002001100010005001700021011001400038035001500052100004100067101000800108102000700116110001600123200002400139210005400163326001100217452004100228512003600269517005800305530002400363606004300387710005000430711002100480856015000501955005500651955005500706972000900761991001800770992001600788992001200804039607259000009223620140108134649.01 a0429-338X aFNSP407225 a19900101a19539999 ba0 afre aFR aaka 13aLa Zone franc en... aPariscComité monétaire de la zone francd1953- aAnnuel 1tLa Zone franc (En ligne),x2263-364210aRapport annuel de la zone franc10aRapport annuel du Comité monétaire de la zone franc13aLa Zone franc en... aZone francxStatistiquesxPériodiques02aComité monétaire de la zone francc(France)02aBanque de France uhttp://www.banque-france.fr/eurosysteme-et-international/zone-franc/rapports-annuels-de-la-zone-franc.htmlzAccès au texte intégral depuis 19941 b(1980) -(1993)cParisdMagasins/AnnexeeP 4° 55861 b(1953) -(1979)cParisdMagasins/AnnexeeCOL4°0500 aZGRA aexempb201312 aDEW 310-319 aDEW 332 \ No newline at end of file diff --git a/datastructures-io/src/test/resources/sequential.groupstream b/datastructures-io/src/test/resources/sequential.groupstream new file mode 100644 index 0000000..c4d2c8e --- /dev/null +++ b/datastructures-io/src/test/resources/sequential.groupstream @@ -0,0 +1,10 @@ +00671nM2.01200024 h001 5-x002a19991118003 20090303214806004 20090320025a010000011025z5-x026 ZDB5-x030 b|1dcz|z|||37036aXA-DE037bger050 a|a|||||||||||052 p||||||z|||||||070 9001070aDNB070b9999200bDeutschland / Bundesminister fur Gesamtdeutsche Fragen202a2028926-1331 A bis Z335 ein Taschen- u. Nachschlagebuch uber d. anderen Teil Deutschlands359 hrsg. vom Bundesministerium fur Gesamtdeutsche Fragen. Red. Gunter Fischbach405 Aufl. 11.1969410 Bonn412 Dt. Bundes-Verl.425b1969425c1969531z874-6 Vorg. --->SBZ von A bis Z533z130385-5 Forts. --->DDR-Handbuch537 F/BAC*090383.700z|100700z|335 +01020nM2.01200024 h001 7-3002a19991118003 20080527235407004 20090320016 550147969DNB025a01000002X025z7-3026 ZDB7-3030 b|1dcz|z|||37036aXA-DDDEXA-DE037bger050 a|a|||||||||||052 p||||||zz||||||070 9001070aDNB070b9999073 12,2200bStaatliches Museum fur Tierkunde 202a35521-5331 Faunistische Abhandlungen359 Publ.: Museum fur Tierkunde Dresden, Staatliche Naturhistorische Sammlungen Dresden376 FAUN ABH (DRES)376bSMTFB405 1.1963/66 - 26.2008; damit Ersch. eingest.406aj1963/66k2008410 Dresden412 Museum fur Tierkunde418 aLeipziggGeest & Portighanfangs425b1963425c2008435 24 cm523 Ersch. unregelmaig527z2233959-0 Internetausg. --->Faunistische Abhandlungen531z6068-9 Vorg. --->Staatliches Museum fur Tierkunde : Abhandlungen und Berichte aus dem Staatlichen Museum fur Tierkunde in Dresden537 84!(22-02-08)542aISSN 0070-7252542aISSN 0375-2135545aaISSN 0070-7252574 08,B23,0382700 |590DNB700 |YDNB700z|730710aZoologie +01174nM2.01200024 h001 9-7002a19991118003 20071002103424004 20090320016 550196447DNB025a010000038025z9-7026 ZDB9-7030 b|1dcz|z|||37036aXA-DDDEXA-DE037bger050 a|a|||||||||||052 p||||||zz||||||070 9001070aDNB070b9999073 12,2076cmg200bStaatliches Museum fur Tierkunde 202a35521-5331 Malakologische Abhandlungen359 Staatliches Museum fur Tierkunde Dresden. anfangs hrsg. von W. Gotz370aMalakologische Abhandlungen aus dem Staatlichen Museum fur Tierkunde Dresden376 MALAKOL ABH (DRES)376 Malakol. Abh.376bSMTMB405 1.1964/67 - 24.2006406aj1964/67k2006410 Dresden412 Museum fur Tierkunde418 aLeipziggGeest & Portinghanfangs425b1964425c2006435 24 cm507 Nebent. ab 13.1988: Malakologische Abhandlungen aus dem Staatlichen Museum fur Tierkunde Dresden523 Ersch. unregelmaig531z6068-9 Vorg. --->Staatliches Museum fur Tierkunde : Abhandlungen und Berichte aus dem Staatlichen Museum fur Tierkunde in Dresden533z2280187-X Forts. --->Mollusca537 14!IIA!(07-05-07)C!(06-08-07)542aISSN 0070-7260542zbrosch. : M 19.50 (Einzelbd.)574 97,B12,0347700 |590DNB700z|730710aWeichtiere +00644nM2.01200024 h001 10-3002a19991118003 20070627061749004 20090320025a010000046025z10-3026 ZDB10-3030 b|1dcz|z|||35036aXA-IT050 a|a|||||||||||052 pbi||||z|||||||070 9001070aDNB070b0012310 Bibliografia polarografica / 1331 Bibliografia polarografica359 Consiglio Nazionale delle Ricerche, Centro di Studio per la Polarografia360 P. 1, Elenco dei lavori e indice degli autori405 [1/3.]1922/49(1949); 4.1922/51(1951) - 15.1922/62(1964)410 Spoleto425b1949425c1964530z205482-6 Beil. zu --->La ricerca scientifica533z3564-6 Forts. --->Bibliografia polarografica / 1 2537 C*240386700z|740 +00764nM2.01200024 h001 12-7002a19991118003 20090210013335004 20090320025a010000054025z12-7026 ZDB12-7030 b|1dcz|z|||27036aXA-DE037bger050 a|a|||||||||||052 p||||||zz||||||070 9001070aDNB070b9999200 Osram-Gesellschaft 202a35536-7331 Technisch-wissenschaftliche Abhandlungen der Osram-Gesellschaft359 hrsg. unter Mitw. ... von Wilfried Meyer376 Tech.-Wiss. Abh. Osram-Ges.376bTAOGA405 5.1943; 6.1953 - 11.1973; 12.1986; damit Ersch. eingest.410 Berlin ; Gottingen ; Heidelberg412 Springer425b1943425c1986531z502428-6 Vorg. --->Osram-Konzern : Technisch-wissenschaftliche Abhandlungen aus dem Osram-Konzern537 C*25!6!(lauft wieder)Kopie188!542aISSN 0078-6799542aISSN 0371-5264700z|900 +01635nM2.01200024 h001 13-9002a19991118003 20090123102505004 20090320016 540322814DNB025a010000062025z13-9026 ZDB13-9030 b|1dcz|z|||37036aXA-DDDEXA-DE037bgereng050 a|a|||||||||||052 p||||||zz||||||070 9001070aDNB070b1242073 12,2200bStaatliches Museum fur Tierkunde 202a35521-5331 Zoologische Abhandlungen359 Staatliche Naturhistorische Sammlungen Dresden, Museum fur Tierkunde370aZoologische Abhandlungen aus dem Staatlichen Museum fur Tierkunde Dresden370aAbhandlungen und Berichte aus dem Staatlichen Museum fur Tierkunde in Dresden370aZoologische Abhandlungen und Berichte376 ZOOL ABH (DRESD)376bZASMA405 26.1961/64 - 56.2006406aj1961/64k2006410 Dresden412 Museum fur Tierkunde418 aLeipziggGeest & Portighanfangs425b1961425c2006435 25 cm507 Hauptsacht. auf d. Jg.-Titelbl. 42.1986/87 - 51.2000/01: Zoologische Abhandlungen aus dem Staatlichen Museum fur Tierkunde Dresden. - Nebent. 26.1961/64: Abhandlungen und Berichte aus dem Staatlichen Museum fur Tierkunde in Dresden. - Hauptsacht. teils: Zoologische Abhandlungen und Berichte523 Ersch. unregelmaig527z2392089-0 Internetausg. --->Zoologische Abhandlungen531z6068-9 Vorg. --->Staatliches Museum fur Tierkunde : Abhandlungen und Berichte aus dem Staatlichen Museum fur Tierkunde in Dresden533z2383989-2 Forts. --->Vertebrate zoology537 F/C*18!21!(lauft noch; Kopie)84!(04-09-07)542aISSN 0070-7287542aISSN 0375-5231545aaISSN 0375-5231 = Zoologische Abhandlungen574 96,B09,0553700 |590DNB700z|730705 a590.5c590eDDC22gerf05710aZoologie / Periodika +00792nM2.01200024 h001 15-2002a19991118003 20050603141946004 20090320025a010000070025z15-2026 ZDB15-2030 b|1dcz|z|||35036aXD-US037beng050 a|a|||||||||||052 pbi||||z|||||||070 9001070aDNB070b9999310 The American behavioral scientist / The ABS guide to recent publications in the social and behavioral sciences331 The American behavioral scientist360 The ABS guide to recent publications in the social and behavioral sciences370aThe ABS guide to recent publications in the social and behavioral sciences405 1965410 New York, NY412 American Behavioral Scientist415 Oxford [u.a.] ; Frankfurt, M.417 Pergamon Press425b1965425c1965533z1355410-4 Forts. --->Recent publications in the social and behavioral sciences537 F/PC*B!24!700z|390700z|620 +00772nM2.01200024 h001 16-4002a19991118003 20071204010107004 20090320025a010000089025z16-4026 ZDB16-4030 b|1dcz|z|||37036aXA-GB050 a|a|||||||||||052 pab||||z|||||||070 9001070aDNB070b9999200bInternational African Institute202a1005929-5331 African abstracts335 a quarterly review of ethnographic, social, and linguistic studies appearing in current periodicals341 Bulletin analytique africaniste343 revue trimestr. d'etudes ethnologiques, sociales et linguistiques paraissant dans les periodiques du jour405 1.1950 - 23.1972; damit Ersch. eingest.410 London412 Internat. African Inst.425b1950425c1972510 Repr.: Folkestone : Dawson527z1084053-9 Franz. Ausg. --->Analyses africanistes537 F/A!C*251182542aISSN 0001-9895700z|390 +00817nM2.01200024 h001 17-6002a19991118003 20071211002727004 20090320025a010000097025z17-6026 ZDB17-6030 b|1dcz|z|||27036aXA-GB037beng050 a|a|||||||||||052 pstab||z|||||||070 9001070aDNB070b9999200 Great Britain / Central Statistical Office202a35545-8204bGreat Britain206a20010-4331 Annual abstract of statistics333 Central Statistical Office405 84.1935/46(1948) - 132.1996406aj1935/46k1996410 London412 HMSO425b1948425c1996510 Repr.: Nendeln, Liechtenstein : Kraus; Bad Feilnbach : Schmidt Periodicals531z127303-6 Vorg. --->Great Britain: Statistical abstracts for the United Kingdom533z1361914-7 Forts. --->Great Britain / Office for National Statistics: Annual abstract of statistics537 F/SCQ!H3!206!(20-06-07)385!(17-08-07)542aISSN 0072-5730700z|601 +01398nM2.01200024 h001 18-8002a19991118003 20080922222913004 20090320025a010000100025z18-8026 ZDB18-8030 b|1dcz|z|||37036aXD-US037beng050 a|a|||||||||||052 pab||||z|||||||070 9001070aDNB070b9999073 12331 Biological abstracts335 BA ; publ. with coop. of individual biologists, biolog. industries, and biolog. journals generally. Covering the world's biolog. research literature359 staff of the central ed. off. John E. Flynn [u.a.]370aBA376 Biol. Abstr.376bBIABA405 1.1926/27(1927) -410 Philadelphia, Pa.412 Biological Abstracts425b1927510 Repr.: New York, NY : Johnson522 13.1939 - 40.1962 auch in Sect. A-E ersch.527z1101955-4 CD-ROM-Ausg. --->Biological abstracts on compact disc527z2108051-3 Internetausg. --->Biological abstracts527z2188093-1 DVD-ROM-Ausg. --->Biological abstracts529z162322-9 Subject index 1962[?] bis 1969 --->BASIC530z795326-4 In 46.1965,21 u. 47.1966,21 --->Biosciences Information Service of Biological Abstracts : List of serials531z210064-2 Vorg. --->Abstracts of bacteriology531z210065-4 Vorg. --->Botanical abstracts531z282104-7 Darin aufgeg. --->Subjects classification outline for Biological abstracts and Bioresearch index531z162322-9 Darin aufgeg. --->BASIC537 (Kopie)542aISSN 0006-3169700z|720 diff --git a/datastructures-io/src/test/resources/summerland.mrc b/datastructures-io/src/test/resources/summerland.mrc new file mode 100644 index 0000000..b24f959 --- /dev/null +++ b/datastructures-io/src/test/resources/summerland.mrc @@ -0,0 +1 @@ +00714cam a2200205 a 45000010009000000050017000090080041000260200015000670200022000820400018001041000021001222450034001432500012001772600067001893000021002565200175002776500013004526500023004656500020004881288337620030616111422.0020805s2002 nyu j 000 1 eng  a0786808772 a0786816155 (pbk.) aDLCcDLCdDLC1 aChabon, Michael.10aSummerland /cMichael Chabon. a1st ed. aNew York :bMiramax Books/Hyperion Books for Children,cc2002. a500 p. ;c22 cm. aEthan Feld, the worst baseball player in the history of the game, finds himself recruited by a 100-year-old scout to help a band of fairies triumph over an ancient enemy. 1aFantasy. 1aBaseballvFiction. 1aMagicvFiction. \ No newline at end of file diff --git a/datastructures-json-boon/NOTICE.txt b/datastructures-json-boon/NOTICE.txt new file mode 100644 index 0000000..8f2060b --- /dev/null +++ b/datastructures-json-boon/NOTICE.txt @@ -0,0 +1,5 @@ +This work is a derived work of + +https://github.com/boonproject/boon/tree/master/boon/src/main/java/org/boon/json + +Apache License 2.0, master branch, as of 2021-02-01 diff --git a/datastructures-json-boon/src/main/java/org/boon/Boon.java b/datastructures-json-boon/src/main/java/org/boon/Boon.java new file mode 100644 index 0000000..b12c33e --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/Boon.java @@ -0,0 +1,1579 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon; + + +import org.boon.config.ContextConfigReader; +import org.boon.core.Conversions; +import org.boon.core.Sys; +import org.boon.core.Typ; +import org.boon.core.reflection.*; +import org.boon.core.reflection.fields.FieldAccessMode; +import org.boon.di.Context; +import org.boon.json.JsonFactory; +import org.boon.logging.LogLevel; +import org.boon.logging.Logging; +import org.boon.logging.TerminalLogger; +import org.boon.primitive.CharBuf; +import org.boon.template.BoonTemplate; + +import java.nio.file.Path; +import java.util.*; +import java.util.concurrent.atomic.AtomicBoolean; + +import static org.boon.Exceptions.die; +import static org.boon.Lists.toListOrSingletonList; +import static org.boon.Maps.fromMap; +import static org.boon.Str.camelCaseLower; +import static org.boon.Str.underBarCase; + +/** + * This class contains some utility methods and acts as facade + * over the most popular Boon features. + */ +public class Boon { + + + /** + * Sets where Boon looks for config information. + */ + public static final String BOON_SYSTEM_CONF_DIR = "BOON_SYSTEM_CONF_DIR"; + + + /** + * Turns debugging on. + */ + private static AtomicBoolean debug = new AtomicBoolean(false); + + + /** + * Logger for utility logging. + */ + private final static Logger logger; + + + static //we do this so it runs in a container like tomcat, resin or jboss. + { + if (Sys.inContainer()) { + logger = null; + } else { + logger = configurableLogger(Boon.class); + } + } + + + /** + * Checks to see if two objects are equal. + * + * @param a + * @param b + * @return + */ + public static boolean equals(Object a, Object b) { + return (a == b) || (a != null && a.equals(b)); + } + + /** + * Prints a simple message to the console. + * + * @param message string to print. + */ + public static void println(String message) { + Sys.println(message); + } + + /** + * Adds a newline to the console. + */ + public static void println() { + Sys.println(""); + } + + /** + * Prints an object to the console. + * + * @param message object to print. + */ + public static void println(Object message) { + + print(message); + println(); + } + + /** + * Prints to console. + * + * @param message + */ + public static void print(String message) { + Sys.print(message); + } + + /** + * Print a single object to the console. + * If null prints out + * If char[] converts to String. + * If array prints out string version of array + * by first converting array to a list. + * If any object, then it uses the toString to print out the object. + * + * @param message the object that you wish to print. + */ + public static void print(Object message) { + + if (message == null) { + print(""); + } else if (message instanceof char[]) { + print(FastStringUtils.noCopyStringFromChars((char[]) message)); + } else if (message.getClass().isArray()) { + print(toListOrSingletonList(message).toString()); + } else { + print(message.toString()); + } + } + + /** + * Like print, but prints out a whole slew of objects on the same line. + * + * @param messages objects you want to print on the same line. + */ + public static void puts(Object... messages) { + + for (Object message : messages) { + print(message); + if (!(message instanceof Terminal.Escape)) print(' '); + } + println(); + + } + + + /** + * Like puts, but prints out a whole slew of objects on the same + * line using the template if the message is a character sequence. + * Uses JSTL style templates. + * + * @param messages objects you want to print on the same line. + */ + public static void putc(Object context, Object... messages) { + + for (Object message : messages) { + if (message instanceof CharSequence) { + String transformedMessage = + jstl(message.toString(), context); + print(message); + } else { + print(message); + } + print(' '); + } + println(); + } + + + /** + * Like puts, but prints out a whole slew of objects on the same + * line using the template if the message is a character sequence. + * Uses Handlebar style templates. + * + * @param messages objects you want to print on the same line. + */ + public static void puth(Object context, Object... messages) { + + for (Object message : messages) { + if (message instanceof CharSequence) { + String transformedMessage = + handlebars(message.toString(), context); + print(message); + } else { + print(message); + } + print(' '); + } + println(); + } + + /** + *

+ * Like puts but prints out each object on its own line. + * If the object is a list or array, + * then each item in the list gets printed out on its own line. + *

+ * + * @param messages the stuff you want to print out. + */ + public static void putl(Object... messages) { + + for (Object message : messages) { + + if (message instanceof Collection || Typ.isArray(message)) { + Iterator iterator = Conversions.iterator(message); + while (iterator.hasNext()) { + puts(iterator.next()); + } + continue; + } + print(message); + println(); + } + println(); + + } + + /** + * like putl but writes to a string. + * + * @param messages the stuff you want to print out. + * @return + */ + public static String sputl(Object... messages) { + CharBuf buf = CharBuf.create(100); + return sputl(buf, messages).toString(); + } + + /** + * Like puts but writes to a String. + * + * @param messages the stuff you want to print out. + * @return + */ + public static String sputs(Object... messages) { + CharBuf buf = CharBuf.create(80); + return sputs(buf, messages).toString(); + } + + + /** + * Writes to a char buf. A char buf is like a StringBuilder. + * + * @param buf char buf + * @param messages messages + * @return + */ + public static CharBuf sputl(CharBuf buf, Object... messages) { + + for (Object message : messages) { + if (message == null) { + buf.add(""); + } else if (message.getClass().isArray()) { + buf.add(toListOrSingletonList(message).toString()); + } else { + buf.add(message.toString()); + } + buf.add('\n'); + } + buf.add('\n'); + + return buf; + + + } + + /** + * Like puts but writes to a CharBuf. + * + * @param buf char buf + * @param messages messages to write. + * @return string created. + */ + public static CharBuf sputs(CharBuf buf, Object... messages) { + + int index = 0; + for (Object message : messages) { + if (index != 0) { + buf.add(' '); + } + index++; + + if (message == null) { + buf.add(""); + } else if (message.getClass().isArray()) { + buf.add(toListOrSingletonList(message).toString()); + } else { + buf.add(message.toString()); + } + } + buf.add('\n'); + + return buf; + + } + + public static StringBuilder sputs(StringBuilder buf, Object... messages) { + + int index = 0; + for (Object message : messages) { + if (index != 0) { + buf.append(' '); + } + index++; + + if (message == null) { + buf.append(""); + } else if (message.getClass().isArray()) { + buf.append(toListOrSingletonList(message).toString()); + } else { + buf.append(message.toString()); + } + } + buf.append('\n'); + + return buf; + + } + + public static boolean isArray(Object obj) { + return Typ.isArray(obj); + } + + public static boolean isStringArray(Object obj) { + return Typ.isStringArray(obj); + } + + public static int len(Object obj) { + return Conversions.len(obj); + } + + + public static Iterator iterator(final Object o) { + return Conversions.iterator(o); + } + + /** + * Join by for array. + */ + public static String joinBy(char delim, Object... args) { + CharBuf builder = CharBuf.create(256); + int index = 0; + for (Object arg : args) { + builder.add(arg.toString()); + if (!(index == args.length - 1)) { + builder.add(delim); + } + index++; + } + return builder.toString(); + } + + /** + * Join by for collection. + */ + public static String joinBy(char delim, Collection collection) { + CharBuf builder = CharBuf.create(256); + int index = 0; + int size = collection.size(); + for (Object arg : collection) { + builder.add(arg.toString()); + if (!(index == size - 1)) { + builder.add(delim); + } + index++; + } + return builder.toString(); + } + + + /** + * Join by for iterable. + */ + public static String joinBy(char delim, Iterable iterable) { + CharBuf builder = CharBuf.create(256); + int index = 0; + for (Object arg : iterable) { + builder.add(arg.toString()); + builder.add(delim); + index++; + } + if (index > 1) { + builder.removeLastChar(); + } + return builder.toString(); + } + + + /** + * Map by which is really contained in Lists + * + * @param objects objects to map + * @param function function to use for mapping + * @return list + */ + public static List mapBy(Iterable objects, Object function) { + return Lists.mapBy(objects, function); + } + + /** + * Each is really in Functional. + * + * @param objects + * @param function + */ + public static void each(Iterable objects, Object function) { + Functional.each(objects, function); + } + + /** + * Helper method to quickly convert a Java object into JSON. + * Facade into the JSON system. + * + * @param value Java object + * @return JSON-ified Java object + */ + public static String toJson(Object value) { + return JsonFactory.toJson(value); + } + + + /** + * Helper method to quickly convert JSON into a Java object. + * Facade into the JSON system. + * + * @param value JSON content + * @return Java object + */ + public static Object fromJson(String value) { + return JsonFactory.fromJson(value); + } + + /** + * Helper method to quickly convert JSON into a Java object. + * Facade into the JSON system. + * + * @param value JSON content + * @param clazz type you want to convert the JSON to + * @return Java object + */ + public static T fromJson(String value, Class clazz) { + return JsonFactory.fromJson(value, clazz); + } + + /** + * converts JSON into strongly typed list + * + * @param value value + * @param clazz class + * @param T + * @return new list + */ + public static List fromJsonArray(String value, Class clazz) { + return JsonFactory.fromJsonArray(value, clazz); + } + + + /** + * Does path lookupWithDefault. + * Facade over BeanUtils. + * + * @param value value to read + * @param path property path to read from value + * @return value from property path + */ + public static Object atIndex(Object value, String path) { + return BeanUtils.idx(value, path); + } + + + /** + * Gets input from console. + * + * @return String from console. + */ + public static String gets() { + Scanner console = new Scanner(System.in); + String input = console.nextLine(); + return input.trim(); + } + + /** + * Creates JSTL/JSP style template results from string template and context + * Facade over boon template system. + * + * @param template template + * @param context context that the template uses + * @return template results + */ + public static String jstl(String template, Object context) { + return BoonTemplate.jstl().replace(template, context).toString(); + } + + + /** + * Creates Handlebars style template results from string template and context + * + * @param template template + * @param context context that the template uses + * @return template results + */ + public static String handlebars(String template, Object context) { + return BoonTemplate.template().replace(template, context); + } + + + /** + * Adds a bunch of Strings together. + */ + public static String add(String... args) { + return Str.add(args); + } + + /** + * Gets the string value of an object path. + * + * @param value object value + * @param path property path to read from value + * @return string version of results + */ + public static String stringAtIndex(Object value, String path) { + return Conversions.toString(BeanUtils.idx(value, path)); + } + + + /** + * Facade method over Boon invoker system. + * Allow you to easily invoke methods from Java objects using reflection. + *

+ * TODO change this to invoke missingMethod if the method is not found. + * First arg is the name of the missing method. + * (If missingMethod is implemented on the object value). + * + * @param value object value + * @param method method you want to invoke on the object value + * @return results of object invocation. + */ + public static Object call(Object value, String method) { + if (value instanceof Class) { + return Invoker.invoke((Class) value, method); + } else { + return Invoker.invoke(value, method); + } + } + + + /** + * Common helper method for string slice. + * + * @param string string you want to slice + * @param start start location + * @param stop end location + * @return new sliced up string. + */ + public static String sliceOf(String string, int start, int stop) { + return Str.sliceOf(string, start, stop); + } + + + public static String sliceOf(String string, int start) { + return Str.sliceOf(string, start); + } + + + public static String endSliceOf(String string, int end) { + return Str.endSliceOf(string, end); + } + + + /** + *

+ * Searches a set of well known directories (explained below) + * and classpath for resources denoted by the path. + *

+ * If the namespace is foo.bar.dev and the path is /myapp/conf/ + *

+ * Then by defaults this searches for json files with matching namespaces in: + *

+ *

+     *     /etc/myapp/conf/*.json
+     *     ~./fooBarDev/myapp/conf/*.json
+     *     classpath://myapp/conf/*.json
+     * 
+ *

+ *

+ * The path can refer to a single JSON file or a directory of + * JSON files for configuration. + *

+ *

+ *

+ * /etc/ is called the SYSTEM CONFIG DIR. + * You can change this by setting the system property + *

+ *

+ * In order for the JSON file to be read, its META map namespace must match this + * namespace. + *

+ * + * @param namespace namespace to load. + * @param path path to find config files. + * @return returns a DependencyInjection/Config context + */ + public static Context readConfig(String namespace, String path) { + String localConfigDir = + add(System.getProperty("user.home"), "/.", + camelCaseLower(underBarCase(namespace))); + + + return readConfig(namespace, path, + "classpath:/", + localConfigDir,//look in local dir + sysProp(BOON_SYSTEM_CONF_DIR, "/etc/") //look in /etc/{path} + ); //look in classpath + } + + + /** + * Reads a configuration context from many possible roots. + * The roots can be filesystem or classpath:// + * + * @param namespace namespace to load. + * @param path path to find config files. + * @param roots roots to find paths. + * @return context + */ + public static Context readConfig(String namespace, String path, String... roots) { + + trace("readConfig(namespace, path, roots)", "IN", namespace, path, roots); + + if (path.startsWith("/")) { + path = sliceOf(path, 1); + + } + + if (!path.endsWith(".json")) { + if (!path.endsWith("/")) { + path = add(path, "/"); + } + } + ContextConfigReader contextConfigReader = ContextConfigReader.config().namespace(namespace); + + for (String root : roots) { + + if (!root.endsWith("/")) { + root = add(root, "/"); + } + + + debug("readConfig", "adding root", root); + contextConfigReader.resource(add(root, path)); + } + + trace("readConfig(namespace, path, roots)", "OUT", namespace, path, roots); + + return contextConfigReader.read(); + + } + + + /** + * Quickly grab a system property. + * + * @param propertyName property value + * @param defaultValue default value if not found. + * @return value of system property + */ + public static String sysProp(String propertyName, Object defaultValue) { + return Sys.sysProp(propertyName, defaultValue); + } + + + public static boolean hasSysProp(String propertyName) { + return Sys.hasSysProp(propertyName); + } + + + public static void putSysProp(String propertyName, Object value) { + Sys.putSysProp(propertyName, value); + } + + + /** + *

+ * Searches a set of well known directories (explained below) + * and classpath for resources denoted by the path. + *

+ * If the namespace is foo.bar.dev and the path is /myapp/conf/ + *

+ * Then by defaults this searches for json files with matching namespaces in: + *

+ *

+     *     /etc/myapp/conf/*.json
+     *     ~./fooBarDev/myapp/conf/*.json
+     *     classpath://myapp/conf/*.json
+     * 
+ *

+ *

+ * The path can refer to a single JSON file or a directory of + * JSON files for configuration. + *

+ *

+ *

+ * /etc/ is called the SYSTEM CONFIG DIR. + * You can change this by setting the system property + *

+ *

+ * In order for the JSON file to be read, its META map namespace must match this + * namespace. + *

+ *

+ *

+ *

+ * The name space and search path is specified by + * BOON.APP.NAMESPACE and + * BOON.APP.CONFIG.PATH + *

+ *

+ * This allows you to configure the namespace and path as a command JVM argument. + * + * @return returns a DependencyInjection/Config context + */ + public static Context readConfig() { + return readConfig( + sysProp("BOON.APP.NAMESPACE", "boon.app"), + sysProp("BOON.APP.CONFIG.PATH", "boon/app")); + + } + + /** + * Press enter to continue. Used for console apps. + * + * @param pressEnterKeyMessage + */ + public static void pressEnterKey(String pressEnterKeyMessage) { + puts(pressEnterKeyMessage); + gets(); + } + + + /** + * Used by console apps. + */ + public static void pressEnterKey() { + puts("Press enter key to continue"); + gets(); + } + + /** + * Checks to see if an object responds to a method. + * Helper facade over Reflection library. + * + * @param object object in question + * @param method method name in question. + * @return true or false + */ + public static boolean respondsTo(Object object, String method) { + if (object instanceof Class) { + return Reflection.respondsTo((Class) object, method); + } else { + return Reflection.respondsTo(object, method); + } + } + + + /** + * Loads a resource from the file system or classpath if not found. + * This allows you to have resources that exist in the jar + * and that can be configured outside of the jar easily. + *

+ * Classpath is only used if file system resource is not found. + * + * @param path path to resource + * @return resource returned. + */ + public static String resource(String path) { + if (!IO.exists(IO.path(path))) { + path = add("classpath:/", path); + } + + String str = IO.read(path); + return str; + } + + + /** + * Loads a resource from the file system or classpath if not found. + * This allows you to have resources that exist in the jar + * and that can be configured outside of the jar easily. + *

+ * Classpath is only used if file system resource is not found. + * + * @param path path to resource + * @return resource returned. + */ + public static String resource(Path path) { + String str = IO.read(path); + return str; + } + + + /** + * Load a resource and apply the given template against it. + * If file resource is not found, tries to load the resource from classpath. + * + * @param path path to resource + * @param context context that the template uses + * @return the resource as a string + */ + public static String resourceFromHandleBarsTemplate(String path, Object context) { + if (!IO.exists(IO.path(path))) { + path = add("classpath:/", path); + } + + String str = IO.read(path); + + if (str != null) { + str = Boon.handlebars(str, context); + } + + return str; + } + + + /** + * Load a resource and apply the given template against it. + * If file resource is not found, tries to load the resource from classpath. + * + * @param path path to resource + * @param context context that the template uses + * @return the resource as a string + */ + public static String resourceFromHandleBarsTemplate(Path path, Object context) { + String str = IO.read(path); + + if (str != null) { + str = Boon.handlebars(str, context); + } + + return str; + } + + + /** + * Load a resource and apply the given template against it. + * If file resource is not found, tries to load the resource from classpath. + * Uses JSTL style template. + * + * @param path path to resource + * @param context context that the template uses + * @return the resource as a string + */ + public static String resourceFromTemplate(String path, Object context) { + if (!IO.exists(IO.path(path))) { + path = add("classpath:/", path); + } + + String str = IO.read(path); + + if (str != null) { + str = Boon.jstl(str, context); + } + + return str; + } + + + /** + * Load a resource and apply the given template against it. + * If file resource is not found, tries to load the resource from classpath. + * Uses JSTL style template + * + * @param path path to resource + * @param context context that the template uses + * @return the resource as a string + */ + public static String resourceFromTemplate(Path path, Object context) { + + String str = IO.read(path); + + if (str != null) { + str = Boon.jstl(str, context); + } + + return str; + } + + + /** + * Load JSON object as resource + * Looks in file system first and then classpath. + * + * @param path path to resource + * @return JSON object loaded as resource + */ + public static Object jsonResource(String path) { + if (!IO.exists(IO.path(path))) { + path = add("classpath:/", path); + } + + String str = IO.read(path); + if (str != null) { + return fromJson(str); + } + return null; + } + + + /** + * Load JSON object as resource + * Looks in file system. + * + * @param path path to resource + * @return JSON object loaded as resource + */ + public static Object jsonResource(Path path) { + + String str = IO.read(path); + if (str != null) { + return fromJson(str); + } + return null; + } + + + /** + *

+ * Load JSON object as resource but first applies the template to the JSON file. + * LOAD STRING -> RUN TEMPLATE -> JSON PARSE. + *

+ * Looks in file system first and then classpath. + * + * @param path path to resource + * @return JSON object loaded as resource + */ + public static Object jsonResourceFromTemplate(String path, Object context) { + if (!IO.exists(IO.path(path))) { + path = add("classpath:/", path); + } + + String str = IO.read(path); + if (str != null) { + str = Boon.jstl(str, context); + return fromJson(str); + } + return null; + } + + + /** + *

+ * Load JSON object as resource but first applies the template to the JSON file. + * LOAD STRING -> RUN TEMPLATE -> JSON PARSE. + *

+ * Looks in file system. + * + * @param path path to resource + * @return JSON object loaded as resource + */ + public static Object jsonResourceFromTemplate(Path path, Object context) { + + String str = IO.read(path); + if (str != null) { + str = Boon.jstl(str, context); + return fromJson(str); + } + return null; + } + + + /** + *

+ * Load JSON Map as resource but first applies the template to the JSON file. + * LOAD STRING -> RUN TEMPLATE -> JSON PARSE. + *

+ * Looks in file system first and then classpath. + * + * @param path path to resource + * @return JSON object loaded as resource + */ + public static Map resourceMap(String path) { + return (Map) jsonResource(path); + } + + + /** + *

+ * Load JSON object as resource but first applies the template to the JSON file. + * LOAD STRING -> RUN TEMPLATE -> JSON PARSE. + *

+ * Looks in file system first. + * + * @param path path to resource + * @return JSON object loaded as resource + */ + public static Map resourceMap(Path path) { + return (Map) jsonResource(path); + } + + + /** + *

+ * Load JSON object as resource but first applies the template to the JSON file. + * LOAD STRING -> RUN TEMPLATE -> JSON PARSE. + *

+ * Looks in file system first. + * + * @param path path to resource + * @return JSON object loaded as resource + */ + public static Map resourceMapFromTemplate(String path, + Object context) { + return (Map) jsonResourceFromTemplate(path, context); + } + + + /** + *

+ * Load JSON map as resource but first applies the template to the JSON file. + * LOAD STRING -> RUN TEMPLATE -> JSON PARSE. + *

+ * Looks in file system first and then classpath. + * + * @param path path to resource + * @return JSON object loaded as resource + */ + public static Map resourceMapFromTemplate(Path path, Object context) { + return (Map) jsonResourceFromTemplate(path, context); + } + + + /** + *

+ * Load JSON list as resource. + *

+ *

+ * Looks in file system first and then classpath. + * + * @param path path to resource + * @return JSON object loaded as resource + */ + public static T resourceObject(String path, Class type) { + return fromMap(resourceMap(path), type); + } + + + /** + *

+ * Load JSON object as resource. + *

+ * Looks in file system. + * + * @param path path to resource + * @return JSON object loaded as resource + */ + public static T resourceObject(Path path, Class type) { + return fromMap(resourceMap(path), type); + } + + + /** + *

+ * Load JSON list as resource but first applies the template to the JSON file. + * LOAD STRING -> RUN TEMPLATE -> JSON PARSE. + *

+ * Looks in file system first and then classpath. + * + * @param path path to resource + * @return JSON object loaded as resource + */ + public static T resourceObjectFromTemplate(String path, Class type, Object context) { + return fromMap(resourceMapFromTemplate(path, context), type); + } + + + /** + *

+ * Load JSON object as resource but first applies the template to the JSON file. + * LOAD STRING -> RUN TEMPLATE -> JSON PARSE. + *

+ * Looks in file system first and then classpath. + * + * @param path path to resource + * @return JSON object loaded as resource + */ + public static T resourceObjectFromTemplate(Path path, Class type, Object context) { + return fromMap(resourceMapFromTemplate(path, context), type); + } + + + /** + *

+ * Load JSON list as resource . + *

+ * Looks in file system first and then classpath. + * + * @param path path to resource + * @return JSON object loaded as resource + */ + public static List resourceList(String path) { + return (List) jsonResource(path); + } + + + /** + *

+ * Load JSON list as resource . + *

+ * Looks in file system first. + * + * @param path path to resource + * @return JSON object loaded as resource + */ + public static List resourceList(Path path) { + return (List) jsonResource(path); + } + + + /** + *

+ * Load JSON list as resource . + *

+ * Looks in file system first and then classpath. + * + * @param path path to resource + * @return JSON object loaded as resource + */ + public static List resourceListFromTemplate(String path, Class listOf, Object context) { + List list = (List) jsonResourceFromTemplate(path, context); + + return MapObjectConversion.convertListOfMapsToObjects(true, null, + FieldAccessMode.FIELD_THEN_PROPERTY.create(true), listOf, (List) list, Collections.EMPTY_SET); + } + + + /** + *

+ * Load JSON list as resource . + *

+ * Looks in file system first. + * + * @param path path to resource + * @return JSON object loaded as resource + */ + public static List resourceListFromTemplate(Path path, Class listOf, Object context) { + List list = (List) jsonResourceFromTemplate(path, context); + + return MapObjectConversion.convertListOfMapsToObjects(listOf, list); + } + + /** + *

+ * Load JSON list as resource . + *

+ * Looks in file system first and then classpath. + * + * @param path path to resource + * @return JSON object loaded as resource + */ + public static List resourceList(String path, Class listOf) { + + List list = (List) jsonResource(path); + + return MapObjectConversion.convertListOfMapsToObjects(listOf, list); + + } + + + /** + *

+ * Load JSON list as resource . + *

+ * Looks in file system. + * + * @param path path to resource + * @return JSON object loaded as resource + */ + public static List resourceList(Path path, Class listOf) { + + List list = (List) jsonResource(path); + + return MapObjectConversion.convertListOfMapsToObjects(listOf, list); + + } + + + /** + *

+ * Load JSON list as resource. + *

+ * Looks in file system first and then classpath. + * + * @param path path to resource + * @return JSON object loaded as resource + */ + public static List resourceListFromTemplate(String path, Object context) { + return (List) jsonResourceFromTemplate(path, context); + } + + + /** + *

+ * Load JSON list as resource. + *

+ * Looks in file system first and then classpath. + * + * @param path path to resource + * @return JSON object loaded as resource + */ + public static List resourceListFromTemplate(Path path, Object context) { + return (List) jsonResourceFromTemplate(path, context); + } + + + /** + * Gets class name from object. + * It is null safe. + * + * @param object class name + * @return class name of object + */ + public static String className(Object object) { + return object == null ? "CLASS" : object.getClass().getName(); + } + + /** + * Gets class name from object. + * It is null safe. + * + * @param object class name + * @return class name of object + */ + public static Class cls(Object object) { + return object == null ? null : object.getClass(); + } + + /** + * Gets simple class name from object. + * + * @param object object to get class name from + * @return returns the class name + */ + public static String simpleName(Object object) { + return object == null ? "CLASS" : object.getClass().getSimpleName(); + } + + + /** + * Returns a logger. + * Facade into config system. + * + * @param clazz name of logger based on classname. + * @return logger. + */ + public static Logger logger(final Class clazz) { + return new Logger(Logging.logger(clazz)); + } + + + /** + * Returns a logger. + * Facade into config system. + * + * @param name name of logger based. + * @return logger. + */ + public static Logger logger(String name) { + return new Logger(Logging.logger(name)); + } + + + /** + * Returns a configurable logger. + * Facade into config system. + * + * @param name name of logger based. + * @return logger. + */ + public static Logger configurableLogger(String name) { + return new Logger(Logging.configurableLogger(name)); + } + + + /** + * Returns a configurable logger. + * Facade into config system. + * + * @param clazz name of logger based on classname. + * @return logger. + */ + public static Logger configurableLogger(final Class clazz) { + return new Logger(Logging.configurableLogger(clazz.getName())); + } + + + /** + * Checks to see if debugging is turned on. + * + * @return on? + */ + public static boolean debugOn() { + return debug.get(); + } + + + /** + * Turns debugging on. + */ + public static void turnDebugOn() { + debug.set(true); + } + + + /** + * Turns debugging off. + */ + public static void turnDebugOff() { + debug.set(false); + } + + + /** + * Gets a console logger if in debug mode otherwise gets a logger with the name + * BOON.SYSTEM. + * + * @return logger for utility logger. + */ + private static Logger _log() { + if (debugOn()) { + return new Logger(new TerminalLogger().level(LogLevel.DEBUG)); + } else { + return logger == null ? configurableLogger("BOON.SYSTEM") : logger; + } + } + + + /** + * Is logging info on? + * + * @return + */ + public static boolean logInfoOn() { + return _log().infoOn(); + } + + + /** + * Is logging info on? + * + * @return + */ + public static boolean logTraceOn() { + return _log().traceOn(); + } + + + /** + * Is logging debug on? + * + * @return + */ + public static boolean logDebugOn() { + return _log().debugOn(); + } + + + /** + * Like puts but for fatal logging. + * + * @param messages messages to write. + */ + public static void fatal(Object... messages) { + _log().fatal(messages); + } + + + /** + * Like puts but for error logging. + * + * @param messages messages to write. + */ + public static void error(Object... messages) { + _log().error(messages); + } + + /** + * Like puts but for warn logging. + * + * @param messages messages to write. + */ + public static void warn(Object... messages) { + _log().warn(messages); + } + + + /** + * Like puts but for info logging. + * + * @param messages messages to write. + */ + public static void info(Object... messages) { + _log().info(messages); + } + + + /** + * Like puts but for debug logging. + * + * @param messages messages to write. + */ + public static void debug(Object... messages) { + _log().debug(messages); + } + + /** + * Like puts but for trace logging. + * + * @param messages messages to write. + */ + public static void trace(Object... messages) { + _log().trace(messages); + } + + + /** + * Like puts but for config logging. + * + * @param messages messages to write. + */ + public static void config(Object... messages) { + _log().config(messages); + } + + + /** + * Like puts but for warn exception logging. + * + * @param t throwable + * @param messages messages to write. + */ + public static void fatal(Throwable t, Object... messages) { + _log().fatal(t, messages); + } + + + /** + * Like puts but for warn exception logging. + * + * @param t throwable + * @param messages messages to write. + */ + public static void error(Throwable t, Object... messages) { + _log().error(t, messages); + } + + + /** + * Like puts but for warn exception logging. + * + * @param t throwable + * @param messages messages to write. + */ + public static void warn(Throwable t, Object... messages) { + _log().warn(t, messages); + } + + + /** + * Like puts but for warn exception logging. + * + * @param t throwable + * @param messages messages to write. + */ + public static void info(Throwable t, Object... messages) { + _log().info(t, messages); + } + + + /** + * Like puts but for warn exception logging. + * + * @param t throwable + * @param messages messages to write. + */ + public static void config(Throwable t, Object... messages) { + _log().config(t, messages); + } + + + /** + * Like puts but for warn exception logging. + * + * @param t throwable + * @param messages messages to write. + */ + public static void debug(Throwable t, Object... messages) { + _log().debug(t, messages); + } + + + /** + * Like puts but for warn exception logging. + * + * @param t throwable + * @param messages messages to write. + */ + public static void trace(Throwable t, Object... messages) { + _log().trace(t, messages); + } + + + public static boolean equalsOrDie(Object expected, Object got) { + + if (expected == null && got == null) { + return true; + } + + if (expected == null && got != null) die(); + if (!expected.equals(got)) die("Expected was", expected, "but we got", got); + + return true; + } + + + public static boolean equalsOrDie(String message, Object expected, Object got) { + + if (expected == null && got != null) die(message, "Expected was", expected, "but we got", got); + if (!expected.equals(got)) die(message, "Expected was", expected, "but we got", got); + + return true; + } + + public static String toPrettyJson(Object object) { + + CharBuf buf = CharBuf.createCharBuf(); + return buf.prettyPrintObject(object, false, 0).toString(); + } + + + public static String toPrettyJsonWithTypes(Object object) { + + CharBuf buf = CharBuf.createCharBuf(); + return buf.prettyPrintObject(object, true, 0).toString(); + } + + public static boolean isEmpty(Object object) { + return len(object) == 0; + } +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/Classpaths.java b/datastructures-json-boon/src/main/java/org/boon/Classpaths.java new file mode 100644 index 0000000..ee76000 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/Classpaths.java @@ -0,0 +1,254 @@ + +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon; + + +import java.net.URI; +import java.net.URL; +import java.nio.file.FileSystem; +import java.nio.file.Path; +import java.util.*; + +import static org.boon.Boon.sputs; +import static org.boon.Exceptions.requireNonNull; +import static org.boon.Lists.*; + +public class Classpaths { + + + public static List classpathResources( ClassLoader loader, String resource ) { + try { + + Enumeration resources = loader.getResources( resource ); + List list = list( resources ); + + if ( isEmpty( list ) && resource.startsWith( "/" ) ) { + resource = resource.substring( 1 ); + return classpathResources( loader, resource ); + } + + return list; + + + } catch ( Exception ex ) { + + return Exceptions.handle( List.class, sputs( "Unable to load listFromClassLoader for", resource ), + ex ); + } + + + } + + public static List classpathResources( Class clazz, String resource ) { + + + List list = classpathResources( Thread.currentThread().getContextClassLoader(), resource ); + + if ( isEmpty( list ) ) { + list = classpathResources( clazz.getClassLoader(), resource ); + } + + + if ( isEmpty( list ) && resource.startsWith( "/" ) ) { + resource = resource.substring( 1 ); + return classpathResources( clazz, resource ); + } + + return list; + } + + public static List resources( Class clazz, String resource ) { + + + List list = listFromClassLoader(Thread.currentThread().getContextClassLoader(), resource); + + if ( isEmpty( list ) ) { + list = listFromClassLoader(clazz.getClassLoader(), resource); + } + + + if ( isEmpty( list ) && resource.startsWith( "/" ) ) { + resource = resource.substring( 1 ); + return resources( clazz, resource ); + } + + return list; + } + + + public static List paths( Class clazz, String resource ) { + + + List list = pathsFromClassLoader(Thread.currentThread().getContextClassLoader(), resource); + + if ( isEmpty( list ) ) { + list = pathsFromClassLoader(clazz.getClassLoader(), resource); + } + + + if ( isEmpty( list ) && resource.startsWith( "/" ) ) { + resource = resource.substring( 1 ); + return paths( clazz, resource ); + } + + return list; + } + + /** + * Load the listFromClassLoader + * @param loader + * @param resource + * @return + */ + public static List listFromClassLoader(ClassLoader loader, String resource) { + final List resourceURLs = Classpaths.classpathResources( loader, resource ); + final List resourcePaths = Lists.list( String.class ); + final Map pathToZipFileSystems = new HashMap<>(); //So you don't have to keep loading the same jar/zip file. + for ( URL resourceURL : resourceURLs ) { + + if ( resourceURL.getProtocol().equals( "jar" ) ) { + resourcesFromJar( resourcePaths, resourceURL, pathToZipFileSystems ); + + } else { + resourcesFromFileSystem( resourcePaths, resourceURL ); + } + } + return resourcePaths; + } + + + /** + * Load the listFromClassLoader + * @param loader + * @param resource + * @return + */ + public static List pathsFromClassLoader(ClassLoader loader, String resource) { + final List resourceURLs = Classpaths.classpathResources( loader, resource ); + final List resourcePaths = Lists.list( Path.class ); + final Map pathToZipFileSystems = new HashMap<>(); //So you don't have to keep loading the same jar/zip file. + for ( URL resourceURL : resourceURLs ) { + + if ( resourceURL.getProtocol().equals( "jar" ) ) { + pathsFromJar( resourcePaths, resourceURL, pathToZipFileSystems ); + + } else { + pathsFromFileSystem( resourcePaths, resourceURL ); + } + } + return resourcePaths; + } + + + + private static void resourcesFromFileSystem( List resourcePaths, URL u ) { + URI fileURI = IO.createURI( u.toString() ); + + + add( resourcePaths, IO.uriToPath( fileURI ).toString() ); + } + + + + private static void pathsFromFileSystem( List resourcePaths, URL u ) { + URI fileURI = IO.createURI( u.toString() ); + + + add( resourcePaths, IO.uriToPath( fileURI ) ); + } + + private static void resourcesFromJar( List resourcePaths, URL resourceURL, Map pathToZipFileSystems ) { + + String str = resourceURL.toString(); + + final String[] strings = StringScanner.split( str, '!' ); + + URI fileJarURI = URI.create( strings[ 0 ] ); + String resourcePath = strings[ 1 ]; + + if ( !pathToZipFileSystems.containsKey( fileJarURI ) ) { + pathToZipFileSystems.put( fileJarURI, IO.zipFileSystem(fileJarURI) ); + } + + FileSystem fileSystem = pathToZipFileSystems.get( fileJarURI ); + + Path path = fileSystem.getPath(resourcePath); + + if (path != null) { + add( resourcePaths, str); + } + } + + private static void pathsFromJar( List resourcePaths, URL resourceURL, Map pathToZipFileSystems ) { + + String str = resourceURL.toString(); + + final String[] strings = StringScanner.split( str, '!' ); + + URI fileJarURI = URI.create( strings[ 0 ] ); + String resourcePath = strings[ 1 ]; + + if ( !pathToZipFileSystems.containsKey( fileJarURI ) ) { + pathToZipFileSystems.put( fileJarURI, IO.zipFileSystem(fileJarURI) ); + } + + FileSystem fileSystem = pathToZipFileSystems.get( fileJarURI ); + + Path path = fileSystem.getPath(resourcePath); + + if (path != null) { + add( resourcePaths, path); + } + } + + + private static void resourcePathsFromJar( List resourcePaths, URL resourceURL, Map pathToZipFileSystems ) { + + String str = resourceURL.toString(); + + final String[] strings = StringScanner.split( str, '!' ); + + URI fileJarURI = URI.create( strings[ 0 ] ); + String resourcePath = strings[ 1 ]; + + if ( !pathToZipFileSystems.containsKey( fileJarURI ) ) { + pathToZipFileSystems.put( fileJarURI, IO.zipFileSystem(fileJarURI) ); + } + + FileSystem fileSystem = pathToZipFileSystems.get( fileJarURI ); + + Path path = fileSystem.getPath(resourcePath); + + if (path != null) { + add( resourcePaths, path); + } + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/Entry.java b/datastructures-json-boon/src/main/java/org/boon/Entry.java new file mode 100644 index 0000000..71d1279 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/Entry.java @@ -0,0 +1,16 @@ +package org.boon; + +import java.io.Serializable; +import java.util.Map; + +/** +* Created by Richard on 9/9/14. +*/ +public interface Entry extends Comparable, Map.Entry, + Serializable, Cloneable { + K key(); + + V value(); + + boolean equals(Entry o); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/Exceptions.java b/datastructures-json-boon/src/main/java/org/boon/Exceptions.java new file mode 100644 index 0000000..831b33f --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/Exceptions.java @@ -0,0 +1,504 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon; + +import org.boon.primitive.CharBuf; + +import java.io.PrintStream; +import java.io.PrintWriter; +import java.io.StringWriter; +import java.util.*; + +import static org.boon.Maps.map; +import static org.boon.primitive.Arry.add; +import static org.boon.primitive.Arry.array; +import static org.boon.Boon.sputs; +import static org.boon.Sets.set; +import static org.boon.Str.startsWithItemInCollection; + +public class Exceptions { + + + + private static final Set ignorePackages = set("sun.", "com.sun.", + "javax.java", "java.", "oracle.", "com.oracle.", "org.junit", "org.boon.Exceptions", + "com.intellij"); + + + public static void requireNonNull(Object obj) { + if (obj == null) + die("Required object assertion exception"); + } + + public static void requireNonNulls(String message, Object... array) { + + int index = 0; + for (Object obj : array) { + if (obj == null) + die(message, index); + + index++; + + } + } + + public static void dieIfAnyParametersAreNull(String methodName, Object... parameters) { + + requireNonNull(sputs("METHOD", methodName, "Parameter at index was null: index=")); + } + + public static void requireNonNull(Object obj, String message) { + if (obj == null) + die(message); + + } + + public static boolean die() { + throw new SoftenedException( "died" ); + } + + public static boolean die( String message ) { + throw new SoftenedException( message ); + } + + + public static boolean die( Object... messages ) { + throw new SoftenedException( sputs(messages) ); + } + + + public static T die( Class clazz, String message ) { + throw new SoftenedException( message ); + } + + + + public static T die( Class clazz, Object... messages ) { + throw new SoftenedException( sputs(messages) ); + } + + public static void handle( Exception e ) { + throw new SoftenedException( e ); + } + + + public static T handle( Class clazz, Exception e ) { + + if ( e instanceof SoftenedException ) { + throw ( SoftenedException ) e; + } + throw new SoftenedException( e ); + } + + public static T handle( Class clazz, String message, Throwable e ) { + + throw new SoftenedException( message, e ); + } + + + + public static T handle( Class clazz, Throwable e, Object... messages ) { + + throw new SoftenedException( sputs(messages), e ); + } + + public static void handle( Throwable e, Object... messages ) { + + throw new SoftenedException( sputs(messages), e ); + } + + + public static void printStackTrace(CharBuf charBuf, StackTraceElement[] stackTrace) { + for (StackTraceElement st : stackTrace) { + if (st.getClassName().contains("org.boon.Exceptions")) { + continue; + } + charBuf.indent(10).println(st); + } + } + + public static T tryIt( Class clazz, TrialWithReturn tryIt ) { + try { + return tryIt.tryIt(); + } catch ( Exception ex ) { + throw new SoftenedException( ex ); + } + } + + + public static void tryIt( Trial tryIt ) { + try { + tryIt.tryIt(); + } catch ( Exception ex ) { + throw new SoftenedException( ex ); + } + } + + public static void handle( String message, Throwable e ) { + throw new SoftenedException( message, e ); + } + + public static void tryIt( String message, Trial tryIt ) { + try { + tryIt.tryIt(); + } catch ( Exception ex ) { + throw new SoftenedException( message, ex ); + } + } + + + public static interface Trial { + void tryIt() throws Exception; + } + + public static interface TrialWithReturn { + T tryIt() throws Exception; + } + + + + + public static StackTraceElement[] getFilteredStackTrace(StackTraceElement[] stackTrace) { + + + if (stackTrace == null || stackTrace.length == 0) { + return new StackTraceElement[0]; + } + List list = new ArrayList<>(); + Set seenThisBefore = new HashSet<>(); + + for (StackTraceElement st : stackTrace) { + if ( startsWithItemInCollection( st.getClassName(), ignorePackages ) ) { + + continue; + } + + String key = Boon.sputs(st.getClassName(), st.getFileName(), st.getMethodName(), st.getLineNumber()); + if (seenThisBefore.contains(key)) { + continue; + } else { + seenThisBefore.add(key); + } + + list.add(st); + } + + return array( StackTraceElement.class, list ); + + } + + + public static class SoftenedException extends RuntimeException { + + public SoftenedException( String message ) { + super( message ); + } + + public SoftenedException( String message, Throwable cause ) { + super( message, cause ); + } + + public SoftenedException( Throwable cause ) { + super( "Wrapped Exception", cause ); + } + + + + @Override + public String getMessage() { + return super.getMessage() + ( getCause() == null ? "" : + getCauseMessage() ); + } + + private String getCauseMessage() { + return "\n CAUSE " + getCause().getClass().getName() + " :: " + + getCause().getMessage(); + } + + @Override + public String getLocalizedMessage() { + return this.getMessage(); + } + + @Override + public StackTraceElement[] getStackTrace() { + if ( getRootCause() != null ) { + return add(getRootCause().getStackTrace(), super.getStackTrace()); + } else { + return super.getStackTrace(); + } + } + + @Override + public Throwable getCause() { + return super.getCause(); + } + + + public Throwable getRootCause() { + + Throwable cause = super.getCause(); + + Throwable lastCause = super.getCause(); + + while (cause != null) { + lastCause = cause; + cause = cause.getCause(); + + } + return lastCause; + } + + + + public void printStackTrace( CharBuf charBuf) { + + + charBuf.puts("MESSAGE:", this.getMessage()); + if (this.getRootCause() !=null) { + charBuf.puts("ROOT CAUSE MESSAGE:", this.getRootCause().getMessage()); + } else if (this.getCause()!=null) { + charBuf.puts("CAUSE MESSAGE:", this.getCause().getMessage()); + } + + + StackTraceElement[] stackTrace = this.getFilteredStackTrace(); + + if (stackTrace.length > 0) { + charBuf.indent(5).addLine("This happens around this area in your code."); + Exceptions.printStackTrace(charBuf, stackTrace); + } + + + + if ( getRootCause() != null ) { + charBuf.addLine().puts("Caused by:", "message:", this.getRootCause().getMessage(), "type", this.getRootCause().getClass().getName()); + stackTrace = this.getRootCause().getStackTrace(); + Exceptions.printStackTrace(charBuf, stackTrace); + } + + charBuf.addLine().multiply('-', 50).addLine().multiply('-', 50).addLine(); + + StringWriter writer = new StringWriter(); + + super.printStackTrace( new PrintWriter(writer) ); + + charBuf.add(writer); + + charBuf.addLine().multiply('-', 50).addLine(); + + + } + + + public StackTraceElement[] getFilteredStackTrace() { + + + StackTraceElement[] filteredStackTrace = Exceptions.getFilteredStackTrace(super.getStackTrace()); + if ( filteredStackTrace.length > 0 ) { + + if (super.getCause() != null) { + StackTraceElement[] cause = Exceptions.getFilteredStackTrace(super.getCause().getStackTrace()); + + if (cause.length > 0) { + filteredStackTrace= add(cause, filteredStackTrace); + } + } + } else { + if (super.getCause() != null) { + + filteredStackTrace = Exceptions.getFilteredStackTrace(super.getCause().getStackTrace()); + } + } + + return Exceptions.getFilteredStackTrace(super.getStackTrace()); + + } + + + public CharBuf printStackTraceIntoCharBuf( ) { + + CharBuf out = CharBuf.create(100); + printStackTrace(out); + return out; + + } + + @Override + public void printStackTrace( PrintStream s ) { + s.print(printStackTraceIntoCharBuf().toString()); + } + + + @Override + public void printStackTrace( PrintWriter s ) { + s.print(printStackTraceIntoCharBuf().toString()); + } + + @Override + public void printStackTrace() { + System.err.print(printStackTraceIntoCharBuf().toString()); + } + } + + + public static String toString( Exception ex ) { + CharBuf buffer = CharBuf.create( 255 ); + buffer.addLine( ex.getLocalizedMessage() ); + + final StackTraceElement[] stackTrace = ex.getStackTrace(); + for ( StackTraceElement element : stackTrace ) { + buffer.add( element.getClassName() ); + sputs( " ", buffer, "class", element.getClassName(), + "method", element.getMethodName(), "line", element.getLineNumber() ); + } + + return buffer.toString(); + + } + + + public static String asJson(Exception ex) { + CharBuf buffer = CharBuf.create( 255 ); + + buffer.add('{'); + + buffer.addLine().indent(5).addJsonFieldName("message") + .asJsonString(ex.getMessage()).addLine(','); + + if (ex.getCause()!=null) { + buffer.addLine().indent(5).addJsonFieldName("causeMessage") + .asJsonString(ex.getCause().getMessage()).addLine(','); + + + if (ex.getCause().getCause()!=null) { + buffer.addLine().indent(5).addJsonFieldName("cause2Message") + .asJsonString(ex.getCause().getCause().getMessage()).addLine(','); + + if (ex.getCause().getCause().getCause()!=null) { + buffer.addLine().indent(5).addJsonFieldName("cause3Message") + .asJsonString(ex.getCause().getCause().getCause().getMessage()).addLine(','); + + if (ex.getCause().getCause().getCause().getCause()!=null) { + buffer.addLine().indent(5).addJsonFieldName("cause4Message") + .asJsonString(ex.getCause().getCause().getCause().getCause().getMessage()).addLine(','); + + } + + } + + } + + } + + + + + + StackTraceElement[] stackTrace = getFilteredStackTrace(ex.getStackTrace()); + + if ( stackTrace!=null && stackTrace.length > 0 ) { + + buffer.addLine().indent(5).addJsonFieldName("stackTrace").addLine(); + + stackTraceToJson(buffer, stackTrace); + + buffer.add(','); + } + + buffer.addLine().indent(5).addJsonFieldName("fullStackTrace").addLine(); + stackTrace = ex.getStackTrace(); + stackTraceToJson(buffer, stackTrace); + + buffer.add( '}' ); + return buffer.toString(); + + } + + + public static Map asMap(Exception ex) { + StackTraceElement[] stackTrace = getFilteredStackTrace(ex.getStackTrace()); + + List stackTraceList = Lists.list(stackTrace); + + List fullStackTrace = Lists.list(ex.getStackTrace()); + + + return map( + + "message", ex.getMessage(), + "causeMessage", ex.getCause()!=null ? ex.getCause().getMessage() : "none", + "stackTrace", stackTraceList, + "fullStackTrace", fullStackTrace + + ); + + } + + + public static void stackTraceToJson(CharBuf buffer, StackTraceElement[] stackTrace) { + + if (stackTrace.length==0) { + buffer.addLine("[]"); + return; + } + + + buffer.multiply(' ', 16).addLine('['); + + for ( int index = 0; index < stackTrace.length; index++ ) { + StackTraceElement element = stackTrace[ index ]; + + if (element.getClassName().contains("org.boon.Exceptions")) { + continue; + } + buffer.indent(17).add("[ ").asJsonString(element.getMethodName()) + .add(','); + + + buffer.indent(3).asJsonString(element.getClassName()); + + + if (element.getLineNumber()>0) { + buffer.add(","); + buffer.indent(3).asJsonString(""+element.getLineNumber()) + .addLine(" ],"); + } else { + buffer.addLine(" ],"); + } + + } + buffer.removeLastChar(); //trailing \n + buffer.removeLastChar(); //trailing , + + buffer.addLine().multiply(' ', 15).add(']'); + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/Functional.java b/datastructures-json-boon/src/main/java/org/boon/Functional.java new file mode 100644 index 0000000..dafc34e --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/Functional.java @@ -0,0 +1,180 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon; + +import org.boon.core.Function; +import org.boon.core.reflection.Invoker; +import org.boon.core.reflection.MethodAccess; + +import java.util.ArrayList; +import java.util.Collection; +import java.util.List; +import java.util.Map; + +/** + * Created by Richard on 2/28/14. + */ +public class Functional { + + + public static void each(Iterable objects, Class cls, String methodName) { + + for (Object o : objects) { + Invoker.invoke(cls, methodName, o); + } + } + + public static void each( Object[] objects, Object instance, String methodName) { + + for (Object o : objects) { + Invoker.invoke(instance, methodName, o); + } + } + + + public static void each (Object[] objects, Class cls, String methodName) { + for (Object o : objects) { + Invoker.invoke(cls, methodName, o); + } + } + + + + + + public static void each(Iterable objects, Object instance, String methodName) { + + for (Object o : objects) { + Invoker.invoke(instance, methodName, o); + } + } + + + public static void each(Collection objects, Class cls, String methodName) { + + MethodAccess methodAccess = Invoker.invokeMethodAccess(cls, methodName); + + for (Object o : objects) { + methodAccess.invokeStatic(o); + } + } + + public static void each(Collection objects, Object function) { + + + MethodAccess methodAccess = Invoker.invokeFunctionMethodAccess(function); + + for (Object o : objects) { + methodAccess.invoke(function, o); + } + + } + + + public static void each(Map map, Object object) { + + + MethodAccess methodAccess = Invoker.invokeFunctionMethodAccess(object); + + for (Object o : map.entrySet()) { + Map.Entry entry = (Map.Entry) o; + + methodAccess.invoke(object, ((Map.Entry) o).getKey(), ((Map.Entry) o).getValue()); + } + } + + + public static void each(Iterable objects, Object function) { + + + MethodAccess methodAccess = Invoker.invokeFunctionMethodAccess(function); + + for (Object o : objects) { + methodAccess.invoke(function, o); + } + } + + + public static void each (Object[] objects, Object function) { + + MethodAccess methodAccess = Invoker.invokeFunctionMethodAccess(function); + + for (Object o : objects) { + methodAccess.invoke(function, o); + } + } + + + + public static void each(Collection objects, Object object, String methodName) { + + + MethodAccess methodAccess = Invoker.invokeMethodAccess(object.getClass(), methodName); + + for (Object o : objects) { + methodAccess.invoke(object, o); + } + } + + + public static void each(Map map, Object object, String methodName) { + + + MethodAccess methodAccess = Invoker.invokeMethodAccess(object.getClass(), methodName); + + for (Object o : map.entrySet()) { + Map.Entry entry = (Map.Entry) o; + + methodAccess.invoke(object, ((Map.Entry) o).getKey(), ((Map.Entry) o).getValue()); + } + } + + + public static void each( final V[] array, Function function ) { + + for ( V v : array ) { + function.apply(v); + } + } + + public static void each( final Collection array, Function function ) { + + for ( V v : array ) { + function.apply(v); + } + } + + public static void each( final Iterable array, Function function ) { + + for ( V v : array ) { + function.apply(v); + } + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/HTTP.java b/datastructures-json-boon/src/main/java/org/boon/HTTP.java new file mode 100644 index 0000000..065fbb9 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/HTTP.java @@ -0,0 +1,639 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon; + + +import org.boon.core.Sys; +import org.boon.primitive.ByteBuf; +import org.boon.service.Response; + +import java.io.IOException; +import java.io.InputStream; +import java.net.HttpURLConnection; +import java.net.URL; +import java.net.URLConnection; +import java.net.URLEncoder; +import java.nio.charset.StandardCharsets; +import java.util.Collections; +import java.util.Map; +import java.util.Set; + +public class HTTP { + + public static final int DEFAULT_TIMEOUT_SECONDS = Sys.sysProp("org.boon.HTTP.timeout.seconds", 30 ); + public static final String APPLICATION_JSON = "application/json"; + + public static String get( + final String url ) { + + return Exceptions.tryIt( String.class, new Exceptions.TrialWithReturn() { + @Override + public String tryIt() throws Exception { + URLConnection connection; + + final Map accept = Maps.map( + "Accept", "text/html,application/xhtml+xml,application/xml,application/json,text/plain;" + ); + + connection = doGet( url, accept, null, null ); + return extractResponseString( connection ); + } + } ); + + } + + + public static String post( + final String url, + final String body ) { + + return postBodyTextWithContentType( url, "text/plain", body ); + } + + + public static Response getResponse( + final String url ) { + + return Exceptions.tryIt( Response.class, new Exceptions.TrialWithReturn() { + @Override + public Response tryIt() throws Exception { + URLConnection connection; + + final Map accept = Maps.map( + "Accept", "text/html,application/xhtml+xml,application/xml,application/json,text/plain;" + ); + + connection = doGet( url, accept, null, null ); + return extractResponseObject(connection); + } + } + + ); + + } + + public static byte[] getBytes( + final String url, final String contentType ) { + + return Exceptions.tryIt( byte[].class, new Exceptions.TrialWithReturn() { + @Override + public byte[] tryIt() throws Exception { + URLConnection connection; + connection = doGet( url, null, contentType, null, true ); + return extractResponseBytes( connection ); + } + } ); + + } + + public static byte[] getBytesWithHeaders( + final String url, final String contentType, final Map headers ) { + + return Exceptions.tryIt( byte[].class, new Exceptions.TrialWithReturn() { + @Override + public byte[] tryIt() throws Exception { + URLConnection connection; + connection = doGet( url, headers, contentType, null, true ); + return extractResponseBytes( connection ); + } + } ); + + } + + public static String getWithHeaders( + final String url, + final Map headers ) { + + return Exceptions.tryIt( String.class, new Exceptions.TrialWithReturn() { + @Override + public String tryIt() throws Exception { + URLConnection connection; + connection = doGet( url, headers, null, null ); + return extractResponseString( connection ); + } + } ); + + } + + public static String getWithContentType( + final String url, + final Map headers, + final String contentType ) { + + return Exceptions.tryIt( String.class, new Exceptions.TrialWithReturn() { + @Override + public String tryIt() throws Exception { + URLConnection connection; + connection = doGet( url, headers, contentType, null ); + return extractResponseString( connection ); + } + } ); + + } + + public static String getWithCharSet( + final String url, + final Map headers, + final String contentType, + final String charSet ) { + + + return Exceptions.tryIt( String.class, new Exceptions.TrialWithReturn() { + @Override + public String tryIt() throws Exception { + URLConnection connection; + connection = doGet( url, headers, contentType, charSet ); + return extractResponseString( connection ); + } + } ); + + } + + public static String postText( + final String url, + final String body ) { + return postBodyTextWithContentType( url, "text/plain", body ); + } + + public static String postBodyTextWithContentType( + final String url, + final String contentType, + final String body ) { + + + return Exceptions.tryIt( String.class, new Exceptions.TrialWithReturn() { + @Override + public String tryIt() throws Exception { + URLConnection connection; + connection = doPost( url, null, contentType, null, body ); + return extractResponseString( connection ); + } + } ); + + } + + + public static String postJSON( + final String url, + final String jsonString ) { + + return postBodyTextWithContentType( url, APPLICATION_JSON, jsonString ); + } + + public static Response jsonRestCallViaPOST( + final String url, + final String jsonString ) { + + return postBodyTextWithContentTypeReturnResponse(url, APPLICATION_JSON, jsonString); + } + + + public static String getJSON( + final String url, + final Map headers + ) { + + return Exceptions.tryIt( String.class, new Exceptions.TrialWithReturn() { + @Override + public String tryIt() throws Exception { + URLConnection connection; + connection = doGet( url, headers, APPLICATION_JSON, null ); + return extractResponseString( connection ); + } + } ); + + } + + + public static Response jsonRestCallWithHeaders( + final String url, + final Map headers + ) { + + return Exceptions.tryIt( Response.class, new Exceptions.TrialWithReturn() { + @Override + public Response tryIt() throws Exception { + URLConnection connection; + connection = doGet( url, headers, APPLICATION_JSON, null ); + return extractResponseObject(connection); + } + } ); + + } + + public static Response jsonRestCall( + final String url + ) { + + return Exceptions.tryIt( Response.class, new Exceptions.TrialWithReturn() { + @Override + public Response tryIt() throws Exception { + URLConnection connection; + connection = doGet( url, null, APPLICATION_JSON, null ); + return extractResponseObject( connection ); + } + } ); + + } + + + + public static Response postBodyTextWithContentTypeReturnResponse( final String url, + final String contentType, + final String body ) { + + + return Exceptions.tryIt( Response.class, new Exceptions.TrialWithReturn() { + @Override + public Response tryIt() throws Exception { + URLConnection connection; + connection = doPost( url, null, contentType, null, body ); + return extractResponseObject( connection ); + } + } ); + + } + + + + public static String getJSONWithParams( + final String url, + final Map headers, final Map params + ) { + + return Exceptions.tryIt( String.class, new Exceptions.TrialWithReturn() { + @Override + public String tryIt() throws Exception { + URLConnection connection; + connection = doGet( url, headers, APPLICATION_JSON, null, params ); + return extractResponseString( connection ); + } + } ); + + } + + public static String postXML( + final String url, + final String jsonString ) { + + return postBodyTextWithContentType( url, "text/xml", jsonString ); + } + + public static String postWithHeaders( + final String url, + final Map headers, + final String body ) { + + return Exceptions.tryIt( String.class, new Exceptions.TrialWithReturn() { + @Override + public String tryIt() throws Exception { + URLConnection connection; + connection = doPost( url, headers, "text/plain", null, body ); + return extractResponseString( connection ); + } + } ); + + } + + + public static String postWithContentType( + final String url, + final Map headers, + final String contentType, + final String body ) { + + + return Exceptions.tryIt( String.class, new Exceptions.TrialWithReturn() { + @Override + public String tryIt() throws Exception { + URLConnection connection; + connection = doPost( url, headers, contentType, null, body ); + return extractResponseString( connection ); + } + } ); + + } + + + public static String postWithCharset( + final String url, + final Map headers, + final String contentType, + final String charSet, + final String body ) { + + + return Exceptions.tryIt( String.class, new Exceptions.TrialWithReturn() { + @Override + public String tryIt() throws Exception { + URLConnection connection; + connection = doPost( url, headers, contentType, charSet, body ); + return extractResponseString( connection ); + } + } ); + + } + + private static URLConnection doPost( String url, Map headers, + String contentType, String charset, String body + ) throws IOException { + HttpURLConnection connection;/* Handle output. */ + + + connection = ( HttpURLConnection ) new URL( url ).openConnection(); + connection.setConnectTimeout( DEFAULT_TIMEOUT_SECONDS * 1000 ); + + connection.setDoOutput( true ); + manageContentTypeHeaders( contentType, charset, connection ); + + manageHeaders( headers, connection ); + + + IO.write( connection.getOutputStream(), body, IO.DEFAULT_CHARSET ); + return connection; + } + + public static String postForm( final String url, final Map headers, + final Map formData + ) { + return Exceptions.tryIt( String.class, new Exceptions.TrialWithReturn() { + @Override + public String tryIt() throws Exception { + URLConnection connection; + connection = doPostFormData( url, headers, formData ); + return extractResponseString( connection ); + } + } ); + + } + + private static URLConnection doPostFormData( String url, Map headers, + Map formData + ) throws IOException { + HttpURLConnection connection;/* Handle output. */ + + + connection = ( HttpURLConnection ) new URL( url ).openConnection(); + connection.setConnectTimeout( DEFAULT_TIMEOUT_SECONDS * 1000 ); + + connection.setDoOutput( true ); + + connection.addRequestProperty( "Content-Type", "application/x-www-form-urlencoded" ); + + ByteBuf buf = ByteBuf.create( 244 ); + + final Set keys = formData.keySet(); + + int index = 0; + for ( String key : keys ) { + + Object value = formData.get( key ); + + if ( index > 0 ) { + buf.addByte( '&' ); + } + + + buf.addUrlEncoded( key ); + buf.addByte( '=' ); + + if ( !( value instanceof byte[] ) ) { + buf.addUrlEncoded( value.toString() ); + } else { + buf.addUrlEncodedByteArray( ( byte[] ) value ); + } + index++; + } + + manageContentTypeHeaders( "application/x-www-form-urlencoded", + StandardCharsets.UTF_8.name(), connection ); + + manageHeaders( headers, connection ); + + + int len = buf.len(); + IO.write( connection.getOutputStream(), + new String( buf.readForRecycle(), 0, len, StandardCharsets.UTF_8 ), IO.DEFAULT_CHARSET ); + return connection; + } + + private static void manageHeaders( Map headers, URLConnection connection ) { + if ( headers != null ) { + for ( Map.Entry entry : headers.entrySet() ) { + connection.setRequestProperty( entry.getKey(), entry.getValue().toString() ); + } + } + } + + + private static void manageContentTypeHeaders( String contentType, String charset, URLConnection connection, boolean binary ) { + + if ( !binary ) { + connection.setRequestProperty( "Accept-Charset", charset == null ? StandardCharsets.UTF_8.displayName() : charset ); + } + if ( contentType != null && !contentType.isEmpty() ) { + connection.setRequestProperty( "Content-Type", contentType ); + } + + } + + private static URLConnection doGet( String url, Map headers, + String contentType, String charset, boolean binary ) throws IOException { + URLConnection connection;/* Handle output. */ + connection = new URL( url ).openConnection(); + connection.setConnectTimeout( DEFAULT_TIMEOUT_SECONDS * 1000 ); + + manageContentTypeHeaders( contentType, charset, connection, binary ); + + manageHeaders( headers, connection ); + + return connection; + } + + + private static String extractResponseString( URLConnection connection ) throws IOException { + + /* Handle input. */ + HttpURLConnection http = ( HttpURLConnection ) connection; + int status = http.getResponseCode(); + String charset = getCharset( connection.getHeaderField( "Content-Type" ) ); + + + + + if ( status == 200 ) { + return readResponseBody( http, charset ); + } else { + return readErrorResponseBody( http, status, charset ); + } + } + + + private static Response extractResponseObject( URLConnection connection ) throws IOException { + + /* Handle input. */ + HttpURLConnection http = ( HttpURLConnection ) connection; + int status = http.getResponseCode(); + + String charset = getCharset( connection.getHeaderField( "Content-Type" ) ); + + + + String body; + + if ( status == 200 ) { + body = readResponseBody( http, charset ); + } else { + body = readErrorResponseBodyDoNotDie( http, status, charset ); + } + + return Response.response(status, http.getHeaderFields(), http.getResponseMessage(), body); + } + + private static byte[] extractResponseBytes( URLConnection connection ) throws IOException { + + /* Handle input. */ + HttpURLConnection http = ( HttpURLConnection ) connection; + int status = http.getResponseCode(); + + //System.out.println("CONTENT-TYPE" + connection.getHeaderField("Content-TypeT")); + + + if ( status == 200 ) { + return readResponseBodyAsBytes( http ); + } else { + String charset = getCharset( connection.getHeaderField( "Content-Type" ) ); + + readErrorResponseBody( http, status, charset ); + return null; + } + } + + private static byte[] readResponseBodyAsBytes( HttpURLConnection http ) { + try { + return IO.input( http.getInputStream() ); + } catch ( IOException e ) { + return Exceptions.handle( byte[].class, e ); + } + + } + + private static String readErrorResponseBody( HttpURLConnection http, int status, String charset ) { + InputStream errorStream = http.getErrorStream(); + if ( errorStream != null ) { + String error = charset == null ? IO.read( errorStream ) : + IO.read( errorStream, charset ); + return Exceptions.die( String.class, "STATUS CODE =" + status + "\n\n" + error ); + } else { + return Exceptions.die( String.class, "STATUS CODE =" + status ); + } + } + + + private static String readErrorResponseBodyDoNotDie( HttpURLConnection http, int status, String charset ) { + InputStream errorStream = http.getErrorStream(); + if ( errorStream != null ) { + String error = charset == null ? IO.read( errorStream ) : + IO.read( errorStream, charset ); + return error; + } else { + return ""; + } + } + + private static String readResponseBody( HttpURLConnection http, String charset ) throws IOException { + if ( charset != null ) { + return IO.read( http.getInputStream(), charset ); + } else { + return IO.read( http.getInputStream() ); + } + } + + private static String getCharset( String contentType ) { + if ( contentType == null ) { + return null; + } + String charset = null; + for ( String param : contentType.replace( " ", "" ).split( ";" ) ) { + if ( param.startsWith( "charset=" ) ) { + charset = param.split( "=", 2 )[ 1 ]; + break; + } + } + charset = charset == null ? StandardCharsets.UTF_8.displayName() : charset; + + return charset; + } + + + private static void manageContentTypeHeaders( String contentType, String charset, URLConnection connection ) { + connection.setRequestProperty( "Accept-Charset", charset == null ? StandardCharsets.UTF_8.displayName() : charset ); + if ( contentType != null && !contentType.isEmpty() ) { + connection.setRequestProperty( "Content-Type", contentType ); + } + } + + private static URLConnection doGet( String url, Map headers, + String contentType, String charset ) throws IOException { + URLConnection connection;/* Handle output. */ + connection = new URL( url ).openConnection(); + connection.setConnectTimeout( DEFAULT_TIMEOUT_SECONDS * 1000 ); + + manageContentTypeHeaders ( contentType, charset, connection ); + + manageHeaders( headers, connection ); + + return connection; + } + + private static URLConnection doGet( String url, Map headers, + String contentType, String charset, Map params ) throws IOException { + + if (charset==null) { + charset = StandardCharsets.UTF_8.name (); + } + URLConnection connection;/* Handle output. */ + connection = new URL( url ).openConnection(); + connection.setConnectTimeout( DEFAULT_TIMEOUT_SECONDS * 1000 ); + + manageContentTypeHeaders( contentType, charset, connection ); + + manageHeaders( headers, connection ); + + final Set keys = params.keySet(); + + for ( String key : keys ) { + + Object value = params.get( key ); + connection.addRequestProperty ( URLEncoder.encode (key, charset), URLEncoder.encode ( value.toString(), charset) ); + } + return connection; + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/IO.java b/datastructures-json-boon/src/main/java/org/boon/IO.java new file mode 100644 index 0000000..c4bc699 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/IO.java @@ -0,0 +1,1357 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon; + +import org.boon.core.Sys; +import org.boon.core.Typ; +import org.boon.core.Function; +import org.boon.primitive.ByteBuf; +import org.boon.primitive.CharBuf; + +import java.io.*; +import java.net.URI; +import java.nio.charset.Charset; +import java.nio.charset.StandardCharsets; +import java.nio.file.*; +import java.nio.file.FileSystem; +import java.nio.file.spi.FileSystemProvider; +import java.util.*; +import java.util.concurrent.ConcurrentHashMap; + +import static org.boon.Boon.sputs; +import static org.boon.Exceptions.die; +import static org.boon.Exceptions.requireNonNull; +import static org.boon.Lists.add; +import static org.boon.Lists.len; +import static org.boon.Str.slc; + +//import java.util.stream.CloseableStream; + + +@SuppressWarnings ( "unchecked" ) +public class IO { + + + public final static Charset DEFAULT_CHARSET = StandardCharsets.UTF_8; + public final static String FILE_SCHEMA = "file"; + public final static String JAR_SCHEMA = "jar"; + public final static String CLASSPATH_SCHEMA = "classpath"; + + public final static String JAR_FILE_SCHEMA = "jar:file"; + + + + private static final int DEFAULT_BUFFER_SIZE = 1024 * 4; + private static final int EOF = -1; + + + private static ConcurrentHashMap pathToZipFileSystems = new ConcurrentHashMap<>(); + + private static Path convertJarFileSystemURIToPath( String resourceURL ) { + + String str = resourceURL; + + final String[] strings = StringScanner.split( str, '!' ); + + URI fileJarURI = URI.create( strings[ 0 ] ); + String resourcePath = strings[ 1 ]; + + String key = slc(strings[ 0 ], JAR_FILE_SCHEMA.length()+1); + if ( !pathToZipFileSystems.containsKey( fileJarURI ) ) { + pathToZipFileSystems.put( key, IO.zipFileSystem(fileJarURI) ); + + cleanPathToZipFileSystemMap(); + } + + FileSystem fileSystem = pathToZipFileSystems.get( key ); + + Path path = fileSystem.getPath(resourcePath); + + return path; + } + + private static void cleanPathToZipFileSystemMap() { + + Set paths = pathToZipFileSystems.keySet(); + for (String path : paths) { + if (!Files.exists( IO.path(path) )) { + pathToZipFileSystems.remove(path); + } + } + } + + public static FileSystem zipFileSystem( URI fileJarURI ) { + + + + final Map env = Maps.map( "create", ( Object ) "true" ); + + FileSystemProvider provider = loadFileSystemProvider("jar"); + + requireNonNull( provider, "Zip file provider not found" ); + + FileSystem fs = null; + + try { + fs = provider.getFileSystem( fileJarURI ); + } catch ( Exception ex ) { + if ( provider != null ) { + try { + fs = provider.newFileSystem( fileJarURI, env ); + } catch ( IOException ex2 ) { + Exceptions.handle( FileSystem.class, + sputs( "unable to load", fileJarURI, "as zip file system" ), + ex2 ); + } + } + } + + requireNonNull( provider, "Zip file system was not found" ); + + return fs; + } + + private static FileSystemProvider loadFileSystemProvider(String providerType) { + FileSystemProvider provider = null; + for ( FileSystemProvider p : FileSystemProvider.installedProviders() ) { + if ( providerType.equals(p.getScheme()) ) { + provider = p; + break; + } + } + return provider; + } + + + public static class ConvertToPathFunction implements Function { + + @Override + public Path apply( String s ) { + return IO.path( s ); + } + } + + public static ConvertToPathFunction convertToPathFunction = new ConvertToPathFunction(); + + + public static List list( final Path path ) { + + if ( !exists (path) ) { + return Collections.EMPTY_LIST; + } + + List result = new ArrayList<>(); + + + try { + try ( DirectoryStream directoryStream = Files.newDirectoryStream( path ) ) { + for ( Path entry : directoryStream ) { + result.add( entry.toAbsolutePath().toString() ); + } + } + return result; + } catch ( IOException ex ) { + return Exceptions.handle( List.class, ex ); + } + + } + + + public static List listPath( final Path path ) { + + if ( !exists (path) ) { + return Collections.EMPTY_LIST; + } + + List result = new ArrayList<>(); + + + try { + try ( DirectoryStream directoryStream = Files.newDirectoryStream( path ) ) { + for ( Path entry : directoryStream ) { + result.add( entry.toAbsolutePath() ); + } + } + return result; + } catch ( IOException ex ) { + return Exceptions.handle( List.class, ex ); + } + + } + public static List listByGlob( final String path, final String glob ) { + final Path pathFromFileSystem = path( path ); + return listByGlob( pathFromFileSystem, glob ); + } + + + public static List listByGlob( Path pathFromFileSystem, String glob ) { + + List result = new ArrayList<>(); + + try { + try ( DirectoryStream stream = Files.newDirectoryStream( pathFromFileSystem, glob ) ) { + for ( Path entry : stream ) { + result.add( entry.toAbsolutePath().toString() ); + } + } + return result; + } catch ( IOException ex ) { + return Exceptions.handle( List.class, ex ); + } + + } + + + public static List listByFileExtension( final String path, final String ext ) { + final Path pathFromFileSystem = path( path ); + return listByFileExtension( pathFromFileSystem, ext ); + } + + public static List listByFileExtension( final Path pathFromFileSystem, final String ext ) { + final String extToLookForGlob = "*." + ext; + + List result = new ArrayList<>(); + + try { + try ( DirectoryStream stream = Files.newDirectoryStream( pathFromFileSystem, extToLookForGlob ) ) { + for ( Path entry : stream ) { + result.add( entry.toAbsolutePath().toString() ); + } + } + return result; + } catch ( IOException ex ) { + return Exceptions.handle( List.class, ex ); + } + + } + + + public static List listByFileExtensionRecursive( final String path, final String ext ) { + final Path pathFromFileSystem = path( path ); + return listByFileExtensionRecursive( pathFromFileSystem, ext ); + } + + + public static List listByFileExtensionRecursive( final Path pathFromFileSystem, final String ext ) { + + final String extToLookForGlob = "*." + ext; + + List result = new ArrayList<>(); + + return doListByFileExtensionRecursive( result, pathFromFileSystem, extToLookForGlob ); + } + + private static List doListByFileExtensionRecursive( final List result, + final Path pathFromFileSystem, + final String glob ) { + + + try { + try ( DirectoryStream stream = Files.newDirectoryStream( pathFromFileSystem, glob ) ) { + for ( Path entry : stream ) { + result.add( entry.toAbsolutePath().toString() ); + } + } + try ( DirectoryStream stream = Files.newDirectoryStream( pathFromFileSystem ) ) { + for ( Path entry : stream ) { + if ( Files.isDirectory( entry ) ) { + doListByFileExtensionRecursive( result, entry, glob ); + } + } + } + + return result; + } catch ( IOException ex ) { + return Exceptions.handle( List.class, ex ); + } + + } + + public static String readChild( Path parentDir, String childFileName ) { + try { + + final Path newFilePath = path( parentDir.toString(), + childFileName ); + + return read( newFilePath ); + } catch ( Exception ex ) { + return Exceptions.handle( String.class, ex ); + } + } + + + public static char[] readCharBuffer( Path path ) { + try { + + long bufSize = Files.size( path ); + return readCharBuffer( Files.newBufferedReader( path, DEFAULT_CHARSET ), ( int ) bufSize ); + + } catch ( IOException ex ) { + return Exceptions.handle( char[].class, ex ); + } + } + + public static String read( InputStream inputStream, Charset charset ) { + + try ( Reader reader = new InputStreamReader( inputStream, charset ) ) { + return read( reader ); + } catch ( Exception ex ) { + return Exceptions.handle( String.class, ex ); + } + } + + + public static String read( InputStream inputStream, String charset ) { + + try ( Reader reader = new InputStreamReader( inputStream, charset ) ) { + return read( reader ); + } catch ( Exception ex ) { + return Exceptions.handle( String.class, ex ); + } + } + + public static String readCharBuffer( InputStream inputStream, Charset charset ) { + + try ( Reader reader = new InputStreamReader( inputStream, charset ) ) { + return read( reader ); + } catch ( Exception ex ) { + return Exceptions.handle( String.class, ex ); + } + } + + public static String read( InputStream inputStream ) { + + try ( Reader reader = new InputStreamReader( inputStream, DEFAULT_CHARSET ) ) { + return read( reader ); + } catch ( Exception ex ) { + return Exceptions.handle( String.class, ex ); + } + + } + + + public static char[] readCharBuffer( InputStream inputStream ) { + + try ( Reader reader = new InputStreamReader( inputStream ) ) { + return readCharBuffer( reader ); + } catch ( Exception ex ) { + return Exceptions.handle( char[].class, ex ); + } + + } + + public static CharBuf read( InputStream inputStream, CharBuf charBuf ) { + + try ( Reader reader = new InputStreamReader( inputStream ) ) { + return read( reader, charBuf ); + } catch ( Exception ex ) { + return Exceptions.handle( CharBuf.class, ex ); + } + + } + + + public static CharBuf read( InputStream inputStream, CharBuf charBuf, Charset charset ) { + + try ( Reader reader = new InputStreamReader( inputStream, charset ) ) { + return read( reader, charBuf ); + } catch ( Exception ex ) { + return Exceptions.handle( CharBuf.class, ex ); + } + + } + + + public static CharBuf read( InputStream inputStream, CharBuf charBuf, Charset charset, int bufSize, char[] copyBuf ) { + + try ( Reader reader = new InputStreamReader( inputStream, charset ) ) { + return read( reader, charBuf, bufSize, copyBuf ); + } catch ( Exception ex ) { + return Exceptions.handle( CharBuf.class, ex ); + } + + } + + public static byte[] input( String fileName ) { + try { + return input( Files.newInputStream( IO.path( fileName ) ) ); + } catch ( IOException e ) { + return Exceptions.handle( byte[].class, e ); + } + } + + + public static byte[] input( InputStream inputStream ) { + + try ( InputStream is = inputStream ) { + + ByteBuf buf = ByteBuf.create( DEFAULT_BUFFER_SIZE ); + byte[] bytes = new byte[ DEFAULT_BUFFER_SIZE ]; + + int read = -2; + + + while ( read != -1 ) { + + read = inputStream.read( bytes ); + + if ( read == DEFAULT_BUFFER_SIZE ) { + buf.add( bytes ); + } else if ( read > 0 ) { + buf.add( bytes, read ); + } + } + return buf.toBytes(); + } catch ( Exception ex ) { + return Exceptions.handle( byte[].class, ex ); + } + } + + + public static long copyLarge( Reader reader, Writer writer ) { + return copyLarge( reader, writer, null); + } + + public static long copyLarge( Reader reader, Writer writer, char[] buffer ) { + long count = 0; + int n; + + if (buffer==null) { + buffer = new char[ DEFAULT_BUFFER_SIZE ]; + } + try { + while ( EOF != ( n = reader.read( buffer ) ) ) { + writer.write( buffer, 0, n ); + count += n; + } + } catch ( IOException e ) { + Exceptions.handle( e ); + } + return count; + } + + + public static String read( Reader input ) { + try { + + CharBuf sw = CharBuf.create( DEFAULT_BUFFER_SIZE ); + copy( input, sw ); + return sw.toString(); + + } finally { + try { + input.close(); + } catch ( IOException e ) { + Exceptions.handle( e ); + } + } + } + + public static CharBuf read( Reader input, CharBuf charBuf, final int bufSize, char[] copyBuffer ) { + + if ( charBuf == null ) { + charBuf = CharBuf.create( bufSize ); + } else { + charBuf.readForRecycle(); + } + + try { + + + char[] buffer = charBuf.toCharArray(); + int size = input.read( buffer ); + if ( size != -1 ) { + charBuf._len( size ); + } + if ( size < buffer.length ) { + return charBuf; + } + + copy( input, charBuf, copyBuffer ); + + } catch ( IOException e ) { + Exceptions.handle( e ); + } finally { + try { + input.close(); + } catch ( IOException e ) { + Exceptions.handle( e ); + } + } + + return charBuf; + + + } + + public static CharBuf read( Reader input, CharBuf charBuf ) { + return read( input, charBuf, 2048, null ); + } + + public static char[] readCharBuffer( Reader input ) { + + try { + CharBuf sw = CharBuf.create( DEFAULT_BUFFER_SIZE ); + copy( input, sw ); + return sw.toCharArray(); + + } finally { + try { + input.close(); + } catch ( IOException e ) { + Exceptions.handle( e ); + } + } + + } + + public static int copy( Reader input, Writer output ) { + long count = copyLarge( input, output ); + if ( count > Integer.MAX_VALUE ) { + return -1; + } + return ( int ) count; + } + + public static int copy( Reader input, Writer output, char[] copyBuf ) { + long count = copyLarge( input, output, copyBuf ); + if ( count > Integer.MAX_VALUE ) { + return -1; + } + return ( int ) count; + } + + public static char[] readCharBuffer( Reader reader, int size ) { + + + char[] buffer = new char[ size ]; + + try ( Reader r = reader ) { + + reader.read( buffer ); + + + } catch ( Exception ex ) { + return Exceptions.handle( char[].class, ex ); + } + + return buffer; + + } + + + public static String read( File file ) { + try ( Reader reader = new FileReader( file ) ) { + return read( reader ); + } catch ( Exception ex ) { + return Exceptions.handle( String.class, ex ); + } + } + + public static List readLines( Reader reader ) { + + try ( BufferedReader bufferedReader = new BufferedReader( reader ) ) { + + return readLines( bufferedReader ); + + } catch ( Exception ex ) { + + return Exceptions.handle( List.class, ex ); + } + } + + public static void eachLine( Reader reader, EachLine eachLine ) { + + try ( BufferedReader bufferedReader = new BufferedReader( reader ) ) { + + eachLine( bufferedReader, eachLine ); + + } catch ( Exception ex ) { + + Exceptions.handle( List.class, ex ); + } + } + + public static List readLines( InputStream is ) { + + try ( Reader reader = new InputStreamReader( is, DEFAULT_CHARSET ) ) { + + return readLines( reader ); + + } catch ( Exception ex ) { + + return Exceptions.handle( List.class, ex ); + } + } + + public static void eachLine( InputStream is, EachLine eachLine ) { + + try ( Reader reader = new InputStreamReader( is, DEFAULT_CHARSET ) ) { + + eachLine( reader, eachLine ); + + } catch ( Exception ex ) { + + Exceptions.handle( ex ); + } + } + + + public static List readLines( BufferedReader reader ) { + List lines = new ArrayList<>( 80 ); + + try ( BufferedReader bufferedReader = reader ) { + + + String line; + while ( ( line = bufferedReader.readLine() ) != null ) { + lines.add( line ); + } + + + } catch ( Exception ex ) { + + return Exceptions.handle( List.class, ex ); + } + return lines; + } + + public static interface EachLine { + public boolean line( String line, int index ); + } + + public static void eachLine( BufferedReader reader, EachLine eachLine ) { + + try ( BufferedReader bufferedReader = reader ) { + + + String line; + int lineNumber = 0; + + while ( ( line = bufferedReader.readLine() ) != null && + eachLine.line( line, lineNumber++ ) ) { // + // no op + } + } catch ( Exception ex ) { + + Exceptions.handle( ex ); + } + + } + + public static void eachLine( File file, EachLine eachLine ) { + try ( FileReader reader = new FileReader( file ) ) { + eachLine( reader, eachLine ); + } catch ( Exception ex ) { + Exceptions.handle( List.class, ex ); + } + } + + + public static List readLines( File file ) { + try ( FileReader reader = new FileReader( file ) ) { + return readLines( reader ); + } catch ( Exception ex ) { + return Exceptions.handle( List.class, ex ); + } + } + + + public static List readLines( final String location ) { + + + final String path = getWindowsPathIfNeeded( location ); + + final URI uri = createURI( path ); + + return ( List ) Exceptions.tryIt( Typ.list, new Exceptions.TrialWithReturn() { + @Override + public List tryIt() throws Exception { + if ( uri.getScheme() == null ) { + + Path thePath = FileSystems.getDefault().getPath( path ); + return Files.readAllLines( thePath, DEFAULT_CHARSET ); + + } else if ( uri.getScheme().equals( FILE_SCHEMA ) ) { + + Path thePath = FileSystems.getDefault().getPath( uri.getPath() ); + return Files.readAllLines( thePath, DEFAULT_CHARSET ); + + } else { + return readLines( location, uri ); + } + } + } ); + } + + public static URI createURI( final String path ) { + if ( !Sys.isWindows() ) { + return URI.create( path ); + + } else { + + if ( path.contains( "\\" ) || path.startsWith( "C:" ) || path.startsWith( "D:" ) ) { + String newPath = new File( path ).toURI().toString(); + if ( newPath.startsWith( "file:/C:" ) ) { + newPath = slc( newPath, 8 ); + return URI.create( newPath ); + } else { + return URI.create( newPath ); + } + + } else { + return URI.create( path ); + } + } + } + + + public static void eachLine( final String location, final EachLine eachLine ) { + + final URI uri = createURI( location ); + + Exceptions.tryIt( new Exceptions.Trial() { + @Override + public void tryIt() throws Exception { + + + if ( uri.getScheme() == null ) { + + Path thePath = FileSystems.getDefault().getPath( location ); + BufferedReader buf = Files.newBufferedReader( + thePath, DEFAULT_CHARSET ); + eachLine( buf, eachLine ); + + } else if ( uri.getScheme().equals( FILE_SCHEMA ) ) { + + + Path thePath = null; + + if ( Sys.isWindows() ) { + String path = uri.toString(); + + path = path.replace( '/', Sys.windowsPathSeparator() ); + if ( slc( path, 0, 6 ).equals( "file:\\" ) ) { + path = slc( path, 6 ); + } + thePath = FileSystems.getDefault().getPath( path ); + } else { + thePath = FileSystems.getDefault().getPath( uri.getPath() ); + + } + BufferedReader buf = Files.newBufferedReader( + thePath, DEFAULT_CHARSET ); + eachLine( buf, eachLine ); + + + } else { + eachLine( location, uri, eachLine ); + } + + } + + } ); + } + + private static String getWindowsPathIfNeeded( String path ) { + if ( Sys.isWindows() ) { + + if ( !path.startsWith( "http" ) && !path.startsWith( CLASSPATH_SCHEMA ) + && !path.startsWith( JAR_SCHEMA ) ) { + path = path.replace( '/', Sys.windowsPathSeparator() ); + if ( slc( path, 0, 6 ).equals( "file:\\" ) ) { + path = slc( path, 6 ); + } + } + + if ( path.startsWith( ".\\" ) ) { + path = slc( path, 2 ); + } + } + return path; + } + + + + public static String read( final Path path ) { + return readPath(path); + } + + public static String readPath( final Path path ) { + + return Exceptions.tryIt( String.class, new Exceptions.TrialWithReturn() { + + @Override + public String tryIt() throws Exception { + + return read( Files.newBufferedReader( path, DEFAULT_CHARSET ) ); + + } + } ); + + } + + + + + public static String read( final String location ) { + final URI uri = createURI( location ); + + return Exceptions.tryIt( String.class, new Exceptions.TrialWithReturn() { + + @Override + public String tryIt() throws Exception { + + String path = location; + + path = getWindowsPathIfNeeded( path ); + + if ( uri.getScheme() == null ) { + + Path thePath = FileSystems.getDefault().getPath( path ); + return read( Files.newBufferedReader( thePath, DEFAULT_CHARSET ) ); + + } else if ( uri.getScheme().equals( FILE_SCHEMA ) ) { + + return readFromFileSchema( uri ); + + } else if ( uri.getScheme().equals( CLASSPATH_SCHEMA ) + || uri.getScheme().equals( JAR_SCHEMA ) ) { + + return readFromClasspath( uri.toString() ); + + } else { + return read( location, uri ); + } + + + } + } ); + + } + + + + + public static String readResource( final String location ) { + final URI uri = createURI( location ); + + return Exceptions.tryIt( String.class, new Exceptions.TrialWithReturn() { + + @Override + public String tryIt() throws Exception { + + String path = location; + + path = getWindowsPathIfNeeded( path ); + + if ( uri.getScheme() == null ) { + + Path thePath = FileSystems.getDefault().getPath( path ); + if (IO.exists(thePath)) { + return read( Files.newBufferedReader( thePath, DEFAULT_CHARSET ) ); + } else { + path = CLASSPATH_SCHEMA + ":/" + location; + thePath = IO.path(path); + if (IO.exists(thePath)) { + return read( Files.newBufferedReader( thePath, DEFAULT_CHARSET ) ); + } else { + return null; + } + } + + } else if ( uri.getScheme().equals( FILE_SCHEMA ) ) { + + return readFromFileSchema( uri ); + + } else if ( uri.getScheme().equals( CLASSPATH_SCHEMA ) + || uri.getScheme().equals( JAR_SCHEMA ) ) { + + return readFromClasspath( uri.toString() ); + + } else { + return read( location, uri ); + } + + + } + } ); + + } + + + private static String readFromFileSchema( URI uri ) { + Path thePath = uriToPath( uri ); + + try { + return read( Files.newBufferedReader( thePath, DEFAULT_CHARSET ) ); + } catch ( IOException e ) { + + return Exceptions.handle( Typ.string, e ); // + } + } + + public static Path uriToPath( URI uri ) { + Path thePath = null; + if ( Sys.isWindows() ) { + String newPath = uri.getPath(); + if ( newPath.startsWith( "/C:" ) ) { + newPath = slc( newPath, 3 ); + } + thePath = FileSystems.getDefault().getPath( newPath ); + } else { + thePath = FileSystems.getDefault().getPath( uri.getPath() ); + } + return thePath; + } + + private static List readLines( String location, URI uri ) throws Exception { + try { + String path = location; + path = getWindowsPathIfNeeded( path ); + + FileSystem fileSystem = FileSystems.getFileSystem( uri ); + Path fsPath = fileSystem.getPath( path ); + + //Paths.get() + return Files.readAllLines( fsPath, DEFAULT_CHARSET ); + } catch ( ProviderNotFoundException ex ) { + return readLines( uri.toURL().openStream() ); + } + } + + + private static void eachLine( String location, URI uri, EachLine eachLine ) throws Exception { + try { + FileSystem fileSystem = FileSystems.getFileSystem( uri ); + Path fsPath = fileSystem.getPath( location ); + BufferedReader buf = Files.newBufferedReader( fsPath, DEFAULT_CHARSET ); + eachLine( buf, eachLine ); + + + } catch ( ProviderNotFoundException ex ) { + eachLine( uri.toURL().openStream(), eachLine ); + } + } + + private static String read( String location, URI uri ) throws Exception { + try { + FileSystem fileSystem = FileSystems.getFileSystem( uri ); + Path fsPath = fileSystem.getPath( location ); + return read( Files.newBufferedReader( fsPath, DEFAULT_CHARSET ) ); + } catch ( ProviderNotFoundException ex ) { + return read( uri.toURL().openStream() ); + } + } + + + public static void write( OutputStream out, String content, Charset charset ) { + + try ( OutputStream o = out ) { + o.write( content.getBytes( charset ) ); + } catch ( Exception ex ) { + Exceptions.handle( ex ); + } + + } + + public static void writeChild( Path parentDir, String childFileName, String childContents ) { + + try { + + final Path newFilePath = path( parentDir.toString(), + childFileName ); + + write( newFilePath, childContents ); + } catch ( Exception ex ) { + Exceptions.handle( ex ); + } + } + + public static Path createChildDirectory( Path parentDir, String childDir ) { + + try { + + + final Path newDir = path( parentDir.toString(), + childDir ); + + + if ( !Files.exists( newDir ) ) { + Files.createDirectory( newDir ); + } + + return newDir; + + } catch ( Exception ex ) { + return Exceptions.handle( Path.class, ex ); + } + } + + public static Path createDirectory( Path dir ) { + + try { + + + if ( !Files.exists( dir ) ) { + return Files.createDirectory( dir ); + } else { + return null; + } + + } catch ( Exception ex ) { + return Exceptions.handle( Path.class, ex ); + } + } + + public static Path createDirectory( String dir ) { + + try { + + final Path newDir = path( dir ); + createDirectory( newDir ); + + return newDir; + + } catch ( Exception ex ) { + return Exceptions.handle( Path.class, ex ); + } + } + + public static FileSystem fileSystem() { + return FileSystems.getDefault(); + } + + + public static Path path( String path, String... more ) { + return Paths.get( path, more ); + } + + public static Path path( Path path, String... more ) { + return Paths.get( path.toString(), more ); + } + + public static void write( Path file, String contents ) { + write( file, contents.getBytes( DEFAULT_CHARSET ) ); + } + + public static void write( String file, String contents ) { + write( IO.path(file), contents.getBytes( DEFAULT_CHARSET ) ); + } + + + public static void output( String file, byte[] bytes ) { + IO.write( IO.path(file), bytes ); + } + + public static void output( Path file, byte[] bytes ) { + IO.write( file, bytes ); + } + + + public static void write( String file, byte[] contents ) { + write (IO.path(file), contents); + } + + public static void write( Path file, byte[] contents ) { + try { + Files.write( file, contents ); + + } catch ( Exception ex ) { + Exceptions.handle( ex ); + } + } + + public static void write( OutputStream out, String content ) { + + try ( OutputStream o = out ) { + o.write( content.getBytes( DEFAULT_CHARSET ) ); + } catch ( Exception ex ) { + Exceptions.handle( ex ); + } + + } + + public static void writeNoClose( OutputStream out, String content ) { + + try { + out.write( content.getBytes( DEFAULT_CHARSET ) ); + } catch ( Exception ex ) { + Exceptions.handle( ex ); + } + + } + + public static String readFromClasspath( Class clazz, String location ) { + List resources = Classpaths.resources( clazz, location ); + + + + if ( len( resources ) > 0 ) { + try { + return read( Files.newBufferedReader( IO.path(resources.get(0)), DEFAULT_CHARSET ) ); + } catch ( IOException e ) { + return Exceptions.handle( String.class, "unable to read classpath resource " + location, e ); + } + } else { + return null; + } + } + + private static List listFromDefaultClassLoader( String s ) { + List result = new ArrayList<>(); + + String newPath = s; + + final List resources = Classpaths.resources( + IO.class, newPath ); + + + for ( String resourcePath : resources ) { + Path path = IO.path(resourcePath); + if ( Files.isDirectory( path ) ) { + result.addAll( IO.list( resourcePath ) ); + } else { + result.add( resourcePath.toString() ); + } + } + + + return result; + } + + + private static List pathsFromDefaultClassLoader( String s ) { + List result = new ArrayList<>(); + + String newPath = s; + + final List resources = Classpaths.paths( + IO.class, newPath ); + + + for ( Path resourcePath : resources ) { + if ( Files.isDirectory( resourcePath ) ) { + result.addAll( IO.paths( resourcePath ) ); + } else { + result.add( resourcePath); + } + } + + + return result; + } + + + + public static Path path( String location ) { + if ( location.startsWith( CLASSPATH_SCHEMA + ":" ) ) { + String path = StringScanner.split( location, ':' )[ 1 ]; + + final List resources = Classpaths.resources( + IO.class, path ); + + if (resources == null || resources.size() == 0) { + die("Resource not found", location); + } + + String result = Lists.idx( resources, 0 ); + if ( result == null ) { + return path( path ); + } + return IO.path(result); + + } else if (location.startsWith( JAR_FILE_SCHEMA + ":" )) { + return convertJarFileSystemURIToPath(location); + } else { + return Paths.get( location ); + } + } + + public static String readFromClasspath( String location ) { + + requireNonNull( location, "location can't be null" ); + + if ( !location.startsWith( CLASSPATH_SCHEMA + ":" ) ) { + die( "Location must starts with " + CLASSPATH_SCHEMA ); + } + + Path path = path( location ); + + if ( path == null ) { + return null; + } + try { + return read( Files.newBufferedReader( path, DEFAULT_CHARSET ) ); + } catch ( IOException e ) { + return Exceptions.handle( String.class, "unable to read classpath resource " + location, e ); + + } + } + + + public static InputStream inputStream( String resource ) { + Path path = path( resource ); + try { + return Files.newInputStream( path ); + } catch ( IOException e ) { + return Exceptions.handle( InputStream.class, "unable to open " + resource, e ); + } + } + + // + + public static List list( final String path ) { + + URI uri = URI.create( path ); + if ( uri.getScheme() == null ) { + final Path pathFromFileSystem = path( path ); + return list( pathFromFileSystem ); + } else if ( uri.getScheme().equals( CLASSPATH_SCHEMA ) ) { + + return listFromDefaultClassLoader( StringScanner.split( path, ':' )[ 1 ] ); + + } else { + final Path pathFromFileSystem = path( path ); + return list( pathFromFileSystem ); + } + } + + + + public static List paths( final String path ) { + + URI uri = URI.create( path ); + if ( uri.getScheme() == null ) { + final Path pathFromFileSystem = path( path ); + return listPath(pathFromFileSystem); + } else if ( uri.getScheme().equals( CLASSPATH_SCHEMA ) ) { + + return pathsFromDefaultClassLoader( StringScanner.split( path, ':' )[ 1 ] ); + + } else { + final Path pathFromFileSystem = path( path ); + return listPath(pathFromFileSystem); + } + } + + public static List pathsByExt( final String path, String ext ) { + + List list = paths(path); + + + final List newList = new ArrayList<>(); + + for ( Path file : list ) { + if ( file.toString().endsWith( ext ) ) { + newList.add( file ); + } + } + + return newList; + } + + + + public static List paths( final Path path ) { + return listPath(path); + } + + + + + public static List listByExt( final String path, String ext ) { + + final List list = list( path ); + final List newList = new ArrayList<>(); + + for ( String file : list ) { + if ( file.endsWith( ext ) ) { + newList.add( file ); + } + } + + return newList; + + } + + + + public static void delete(Path path) { + try { + Files.delete(path); + } catch (IOException e) { + Exceptions.handle(e); + } + } + + public static void createDirectories(Path path) { + try { + Files.createDirectories(path); + } catch (IOException e) { + Exceptions.handle(e); + } + } + + + public static void delete(String path) { + try { + Files.delete(IO.path(path)); + } catch (IOException e) { + Exceptions.handle(e); + } + } + + public static void createDirectories(String path) { + try { + Files.createDirectories(IO.path(path)); + } catch (IOException e) { + Exceptions.handle(e); + } + } + + + + public static boolean exists (Path path ) { + return Files.exists(path); + } + + + public static boolean exists (String path ) { + return Files.exists(IO.path(path)); + } + + public static void move(Path source, Path target) { + try { + Files.move(source, target); + } catch (IOException e) { + Exceptions.handle(e); + } + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/Lists.java b/datastructures-json-boon/src/main/java/org/boon/Lists.java new file mode 100644 index 0000000..a536035 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/Lists.java @@ -0,0 +1,929 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon; + + +import org.boon.collections.DoubleList; +import org.boon.collections.FloatList; +import org.boon.collections.IntList; +import org.boon.collections.LongList; +import org.boon.core.*; +import org.boon.core.reflection.*; +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.primitive.CharBuf; + +import java.lang.reflect.Array; +import java.util.*; +import java.util.concurrent.CopyOnWriteArrayList; + + +public class Lists { + + + public static List lazyAdd(List list, T... items) { + list = list == null ? new ArrayList() : list; + + for (T item : items) { + list.add(item); + } + return list; + } + + + public static List lazyAdd(ArrayList list, T... items) { + list = list == null ? new ArrayList() : list; + + for (T item : items) { + list.add(item); + } + return list; } + + public static List safeLazyAdd(CopyOnWriteArrayList list, T... items) { + list = list == null ? new CopyOnWriteArrayList() : list; + for (T item : items) { + list.add(item); + } + return list; + } + + public static List lazyAdd(CopyOnWriteArrayList list, T... items) { + list = list == null ? new CopyOnWriteArrayList() : list; + for (T item : items) { + list.add(item); + } + return list; + } + + + + + public static List lazyCreate(List list) { + return list == null ? new ArrayList() : list; + } + + + + public static List lazyCreate(ArrayList list) { + return list == null ? new ArrayList() : list; + } + + + public static List lazyCreate(CopyOnWriteArrayList list) { + return list == null ? new CopyOnWriteArrayList() : list; + } + + + public static List safeLazyCreate(CopyOnWriteArrayList list) { + return list == null ? new CopyOnWriteArrayList() : list; + } + + public static T fromList( List list, Class clazz ) { + return MapObjectConversion.fromList( list, clazz ); + } + + public static List list( Class clazz ) { + return new ArrayList<>(); + } + + + public static List copy( Collection collection ) { + return new ArrayList<>( collection ); + } + + + public static List deepCopy( Collection collection ) { + List list = new ArrayList<>(collection.size()); + + for (V v : collection) { + list.add( BeanUtils.copy( v )); + } + return list; + } + + public static List deepCopyToList( Collection src, List dst) { + + for (V v : src) { + dst.add( BeanUtils.copy( v )); + } + return dst; + } + + + public static List deepCopy( Collection src, Class dest ) { + List list = new ArrayList<>(src.size()); + + for (V v : src) { + list.add( BeanUtils.createFromSrc( v, dest )); + } + return list; + } + + /** + * Clones each list item into a new instance with copied fields. + * It is like doing a clone operation. + * + * If the passed list is a LinkedList then the returned list will be a + * LinkedList. + * + * If the passed list is a CopyOnWriteArrayList then the returned list will + * be a CopyOnWriteArrayList list. + * + * All other lists become ArrayList. + * + * @param list list to clone + * @param generics + * @return new list + */ + @Universal + public static List deepCopy( List list ) { + if ( list instanceof LinkedList ) { + return deepCopyToList( list, new LinkedList( ) ); + } else if ( list instanceof CopyOnWriteArrayList ) { + return deepCopyToList( list, new CopyOnWriteArrayList( )); + } else { + return deepCopy( (Collection)list); + } + } + + + public static List> lists( Collection... collections ) { + List> lists = new ArrayList<>(collections.length); + for (Collection collection : collections) { + lists.add(new ArrayList<>(collection)); + } + return lists; + } + + + + public static List list( Iterable iterable ) { + List list = new ArrayList<>(); + for ( V o : iterable ) { + list.add( o ); + } + return list; + } + + + + public static List list( Collection collection ) { + return new ArrayList<>(collection); + } + + public static List linkedList( Iterable iterable ) { + List list = new LinkedList<>(); + for ( V o : iterable ) { + list.add( o ); + } + return list; + } + + public static List toListOrSingletonList( Object item ) { + if ( item == null ) { + return new ArrayList<>(); + } else if ( item.getClass().isArray() ) { + final int length = Array.getLength( item ); + List list = new ArrayList<>(); + for ( int index = 0; index < length; index++ ) { + list.add( Array.get( item, index ) ); + } + return list; + } else if ( item instanceof Collection ) { + return list( ( Collection ) item ); + } else if ( item instanceof Iterator ) { + return list( ( Iterator ) item ); + } else if ( item instanceof Enumeration ) { + return list( ( Enumeration ) item ); + } else if ( item instanceof Iterable ) { + return list( ( Iterable ) item ); + } else { + List list = new ArrayList<>(); + list.add( item ); + return list; + } + } + + + public static List toList( List inputList, Class cls, String propertyPath ) { + List outputList = new ArrayList<>(); + + for (Object o : inputList) { + outputList.add((PROP) BeanUtils.idx(o, propertyPath)); + } + + return outputList; + } + + public static IntList toIntList( List inputList, String propertyPath ) { + + return IntList.toIntList(inputList, propertyPath); + } + + + public static FloatList toFloatList( List inputList, String propertyPath ) { + + return FloatList.toFloatList(inputList, propertyPath); + } + + + public static DoubleList toDoubleList( List inputList, String propertyPath ) { + + return DoubleList.toDoubleList(inputList, propertyPath); + } + + + public static LongList toLongList( List inputList, String propertyPath ) { + + return LongList.toLongList(inputList, propertyPath); + } + + public static List toList( List inputList, String propertyPath ) { + List outputList = new ArrayList<>(); + + for (Object o : inputList) { + outputList.add(BeanUtils.idx(o, propertyPath)); + } + + return outputList; + } + + public static List toList( Object item ) { + if ( item!= null && item.getClass().isArray() ) { + final int length = Array.getLength( item ); + List list = new ArrayList<>(); + for ( int index = 0; index < length; index++ ) { + list.add( Array.get( item, index ) ); + } + return list; + } else if ( item instanceof Collection ) { + return list( ( Collection ) item ); + } else if ( item instanceof Iterator ) { + return list( ( Iterator ) item ); + } else if ( item instanceof Enumeration ) { + return list( ( Enumeration ) item ); + } else if ( item instanceof Iterable ) { + return list( ( Iterable ) item ); + } else { + return MapObjectConversion.toList( item ); + } + } + + + + public static List convert(Class wrapper, Iterable collection ) { + List list = new ArrayList<>( ); + + for (V v : collection) { + + list.add ( Conversions.coerce(wrapper, v) ); + } + return list; + } + + public static List convert(Class wrapper, Collection collection ) { + List list = new ArrayList<>( collection.size() ); + + for (V v : collection) { + + list.add ( Conversions.coerce(wrapper, v) ); + } + return list; + } + + + public static List convert(Class wrapper, V[] collection ) { + List list = new ArrayList<>( collection.length ); + + for (V v : collection) { + + list.add ( Conversions.coerce(wrapper, v) ); + } + return list; + } + + + public static List wrap(Class wrapper, Iterable collection ) { + List list = new ArrayList<>( ); + + for (V v : collection) { + WRAP wrap = Reflection.newInstance ( wrapper, v ); + list.add ( wrap ); + } + return list; + } + + public static List wrap(Class wrapper, Collection collection ) { + + if (collection.size()==0) { + return Collections.EMPTY_LIST; + } + + List list = new ArrayList<>( collection.size () ); + + + + ClassMeta cls = ClassMeta.classMeta(wrapper); + ConstructorAccess declaredConstructor = cls.declaredConstructor(collection.iterator().next().getClass()); + + for (V v : collection) { + WRAP wrap = declaredConstructor.create ( v ); + list.add ( wrap ); + } + return list; + } + + + public static List wrap(Class wrapper, V[] collection ) { + List list = new ArrayList<>( collection.length ); + + for (V v : collection) { + WRAP wrap = Reflection.newInstance ( wrapper, v ); + list.add ( wrap ); + } + return list; + } + + public static List list( Enumeration enumeration ) { + List list = new ArrayList<>(); + while ( enumeration.hasMoreElements() ) { + list.add( enumeration.nextElement() ); + } + return list; + } + + + public static Enumeration enumeration( final List list ) { + final Iterator iter = list.iterator(); + return new Enumeration() { + @Override + public boolean hasMoreElements() { + return iter.hasNext(); + } + + @Override + public V nextElement() { + return iter.next(); + } + }; + + } + + + public static List list( Iterator iterator ) { + List list = new ArrayList<>(); + while ( iterator.hasNext() ) { + list.add( iterator.next() ); + } + return list; + } + + + + @SafeVarargs + public static List list( final V... array ) { + if ( array == null ) { + return new ArrayList<>(); + } + List list = new ArrayList<>( array.length ); + Collections.addAll( list, array ); + return list; + } + + public static List safeList(Class cls) { + return new CopyOnWriteArrayList<>( ); + } + + @SafeVarargs + public static List safeList( final V... array ) { + return new CopyOnWriteArrayList<>( array ); + } + + @SafeVarargs + public static List linkedList( final V... array ) { + if ( array == null ) { + return new LinkedList<>(); + } + List list = new LinkedList<>(); + Collections.addAll( list, array ); + return list; + } + + + public static List safeList( Collection collection ) { + return new CopyOnWriteArrayList<>( collection ); + } + + public static List linkedList( Collection collection ) { + return new LinkedList<>( collection ); + } + + /** + * Universal methods + */ + @Universal + public static int len( List list ) { + return list.size(); + } + + + @Universal + public static int lengthOf( List list ) { + return len (list); + } + + public static boolean isEmpty( List list ) { + return list == null || list.size() == 0; + } + + @Universal + public static boolean in( V value, List list ) { + return list.contains( value ); + } + + @Universal + public static void add( List list, V value ) { + list.add( value ); + } + + + @Universal + public static void add( List list, V... values ) { + for (V v : values) { + list.add( v ); + } + } + + @Universal + public static T atIndex( List list, final int index ) { + + return idx(list, index); + + } + + @Universal + public static T idx( List list, final int index ) { + int i = calculateIndex( list, index ); + if ( i > list.size() - 1 ) { + i = list.size() - 1; + } + return list.get( i ); + + } + + public static List idxList( List list, final int index ) { + return (List) idx(list, index); + } + + + public static Map idxMap( List list, final int index ) { + return (Map) idx(list, index); + } + + + @Universal + public static void atIndex( List list, int index, V v ) { + idx (list, index, v); + } + + @Universal + public static void idx( List list, int index, V v ) { + int i = calculateIndex( list, index ); + list.set( i, v ); + } + + + @Universal + public static List sliceOf( List list, int startIndex, int endIndex ) { + return slc(list, startIndex, endIndex); + } + + @Universal + public static List slc( List list, int startIndex, int endIndex ) { + int start = calculateIndex( list, startIndex ); + int end = calculateIndex( list, endIndex ); + return list.subList( start, end ); + } + + + @Universal + public static List sliceOf( List list, int startIndex ) { + return slc(list, startIndex); + } + + @Universal + public static List slc( List list, int startIndex ) { + return slc( list, startIndex, list.size() ); + } + + @Universal + public static List endSliceOf( List list, int endIndex ) { + return slcEnd( list, endIndex ); + } + + + @Universal + public static List slcEnd( List list, int endIndex ) { + return slc( list, 0, endIndex ); + } + + + @Universal + public static List copy( List list ) { + if ( list instanceof LinkedList ) { + return new LinkedList<>( list ); + } else if ( list instanceof CopyOnWriteArrayList ) { + return new CopyOnWriteArrayList<>( list ); + } else { + return new ArrayList<>( list ); + } + } + + + @Universal + public static List copy( CopyOnWriteArrayList list ) { + return new CopyOnWriteArrayList<>( list ); + } + + @Universal + public static List copy( ArrayList list ) { + return new ArrayList<>( list ); + } + + @Universal + public static List copy( LinkedList list ) { + return new LinkedList<>( list ); + } + + + @Universal + public static void insert( List list, int index, V v ) { + int i = calculateIndex( list, index ); + list.add( i, v ); + } + + + /* End universal methods. */ + private static int calculateIndex( List list, int originalIndex ) { + final int length = list.size(); + + int index = originalIndex; + + /* Adjust for reading from the right as in + -1 reads the 4th element if the length is 5 + */ + if ( index < 0 ) { + index = ( length + index ); + } + + + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + if ( index < 0 ) { + index = 0; + } + if ( index > length ) { + index = length; + } + return index; + } + + + public static List listFromProperty( Class propertyType, String propertyPath, Collection list ) { + List newList = new ArrayList<>( list.size() ); + + for ( Object item : list ) { + T newItem = ( T ) BeanUtils.idx( item, propertyPath ); + newList.add( newItem ); + } + + return newList; + + } + + + public static List listFromProperty( Class propertyType, String propertyPath, Iterable list ) { + List newList = new ArrayList<>( ); + + for ( Object item : list ) { + T newItem = ( T ) BeanUtils.idx( item, propertyPath ); + newList.add( newItem ); + } + + return newList; + + } + public static List> toListOfMaps( List list ) { + return MapObjectConversion.toListOfMaps( list ); + } + + public static void setListProperty(List list, String propertyName, Object value) { + for (Object object : list) { + BeanUtils.idx(object, propertyName, value); + } + } + + + public static List mapBy( Object[] objects, Object instance, String methodName) { + + List list = new ArrayList(objects.length); + for (Object o : objects) { + list.add( Invoker.invoke(instance, methodName, o )); + } + return list; + } + + + public static List mapBy(Object[] objects, Class cls, String methodName) { + + List list = new ArrayList(objects.length); + for (Object o : objects) { + list.add( Invoker.invoke(cls,methodName, o )); + } + return list; + } + + + + public static List mapBy(Iterable objects, Class cls, String methodName) { + + List list = new ArrayList(); + for (Object o : objects) { + list.add( Invoker.invoke(cls, methodName, o )); + } + return list; + } + + + public static List mapBy(Iterable objects, Object instance, String methodName) { + + List list = new ArrayList(); + for (Object o : objects) { + list.add( Invoker.invoke(instance, methodName, o )); + } + return list; + } + + + public static List mapBy(Collection objects, Class cls, String methodName) { + + List list = new ArrayList(objects.size()); + + MethodAccess methodAccess = Invoker.invokeMethodAccess(cls, methodName); + + for (Object o : objects) { + list.add( methodAccess.invokeStatic(o)); + } + return list; + } + + public static List mapBy(Collection objects, Object function) { + + + MethodAccess methodAccess = Invoker.invokeFunctionMethodAccess(function); + + List list = new ArrayList(); + for (Object o : objects) { + list.add( methodAccess.invoke(function, o)); + } + + return list; + } + + + public static List mapBy(Class cls, Collection objects, Object function) { + return (List) mapBy(objects, function); + } + + public static List mapBy(Iterable objects, Object function) { + + + MethodAccess methodAccess = Invoker.invokeFunctionMethodAccess(function); + + List list = new ArrayList(); + for (Object o : objects) { + list.add( methodAccess.invoke(function, o)); + } + return list; + } + + + public static List mapBy(Object[] objects, Object function) { + + MethodAccess methodAccess = Invoker.invokeFunctionMethodAccess(function); + + List list = new ArrayList(objects.length); + for (Object o : objects) { + list.add( methodAccess.invoke(function, o)); + } + return list; + } + + + + public static List mapBy(Collection objects, Object object, String methodName) { + + + MethodAccess methodAccess = Invoker.invokeMethodAccess(object.getClass(), methodName); + + List list = new ArrayList(objects.size()); + for (Object o : objects) { + list.add( methodAccess.invoke(object, o)); + } + return list; + } + + + public static List mapBy( final V[] array, Function function ) { + List list = new ArrayList<>( array.length ); + + for ( V v : array ) { + list.add( function.apply( v ) ); + } + return list; + } + + public static List mapBy( final Collection array, Function function ) { + List list = new ArrayList<>( array.size() ); + + for ( V v : array ) { + list.add( function.apply( v ) ); + } + return list; + } + + public static List mapBy( final Iterable array, Function function ) { + List list = new ArrayList<>( ); + + for ( V v : array ) { + list.add( function.apply( v ) ); + } + return list; + } + + + public static SUM reduceBy( final Iterable array, Reducer function ) { + + SUM sum = null; + for ( V v : array ) { + sum = function.apply( sum, v ) ; + } + return sum; + } + + + public static Object reduceBy( final Iterable array, Object object ) { + + Object sum = null; + for ( Object v : array ) { + sum = Invoker.invokeReducer(object, sum, v); + } + return sum; + } + + + + public static List filterBy( final Iterable array, Predicate predicate ) { + List list = new ArrayList<>( ); + + for ( T v : array ) { + if ( predicate.test(v)) { + list.add( v ); + } + } + return list; + } + + + public static List filterBy( final Collection array, Predicate predicate ) { + List list = new ArrayList<>( array.size() ); + + for ( T v : array ) { + if ( predicate.test(v)) { + list.add( v ); + } + } + return list; + } + + + public static List filterBy( Predicate predicate, final T[] array ) { + List list = new ArrayList<>( array.length ); + + for ( T v : array ) { + if ( predicate.test(v)) { + list.add( v ); + } + } + return list; + } + + + + public static List filterBy( final Iterable array, Object object ) { + List list = new ArrayList<>( ); + + for ( T v : array ) { + if ( Invoker.invokeBooleanReturn(object, v) ) { + list.add( v ); + } + } + return list; + } + + + public static List filterBy( final Collection array, Object object ) { + List list = new ArrayList<>( array.size() ); + + for ( T v : array ) { + if ( Invoker.invokeBooleanReturn(object, v) ) { + list.add( v ); + } + } + return list; + } + + + public static List filterBy( final T[] array, Object object ) { + List list = new ArrayList<>( array.length ); + + for ( T v : array ) { + if ( Invoker.invokeBooleanReturn(object, v) ) { + list.add( v ); + } + } + return list; + } + + + + + public static List filterBy( final Iterable array, Object object, String methodName ) { + List list = new ArrayList<>( ); + + for ( T v : array ) { + if ( (boolean) Invoker.invokeEither(object, methodName, v) ) { + list.add( v ); + } + } + return list; + } + + + public static List filterBy( final Collection array, Object object, String methodName ) { + List list = new ArrayList<>( array.size() ); + + for ( T v : array ) { + if ( (boolean) Invoker.invokeEither(object, methodName, v) ) { + list.add( v ); + } + } + return list; + } + + + public static List filterBy( final T[] array, Object object, String methodName ) { + List list = new ArrayList<>( array.length ); + + for ( T v : array ) { + if ( (boolean) Invoker.invokeEither(object, methodName, v) ) { + list.add( v ); + } + } + return list; + } + + + + public static String toPrettyJson(List list) { + CharBuf buf = CharBuf.createCharBuf(); + return buf.prettyPrintCollection(list, false, 0).toString(); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/Logger.java b/datastructures-json-boon/src/main/java/org/boon/Logger.java new file mode 100644 index 0000000..80bac75 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/Logger.java @@ -0,0 +1,226 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon; + + +import org.boon.core.Handler; +import org.boon.logging.*; + +/** + *

This class allows isolation of all logging dependencies in one place. + * + * There is 0 dependencies on third party logs

+ * + *

By default logging uses uses JDK logging. + * The logging configuration file (logging.properties). + * You can use standard JDK logging config.

+ * + * I wrote similar facilities in Crank and EasyJava, + * but this style was heavily inspired by Vertx which was inspired by JBoss. + * + * @author Rick Hightower + */ +public class Logger { + + + private transient volatile LoggerDelegate logger; + final LoggerDelegate original; + + + public Logger(final LoggerDelegate delegate) { + logger = delegate; + original = logger; + } + + public synchronized void tee(LoggerDelegate newLogger) { + logger = new TeeLoggerWrapper(logger, newLogger); + } + + + public synchronized void handler(Handler handler) { + logger = new ConfigurableLogger(logger, handler); + } + + + public synchronized void teeAndHandler(LoggerDelegate newLogger, Handler handler) { + logger = new TeeLoggerWrapper(logger, newLogger); + } + + + public synchronized void unwrap() { + logger = original; + } + + public boolean infoOn() { + return logger.infoOn(); + } + + public boolean debugOn() { + return logger.debugOn(); + } + + public boolean traceOn() { + return logger.traceOn(); + } + + public void fatal(final Object message) { + logger.fatal(message); + } + + + public void fatal(final Exception message) { + logger.fatal("", message); + } + + + public void error(final Exception message) { + logger.error("", message); + } + + + public void warn(final Exception message) { + logger.warn("", message); + } + + + public void fatal(final Object message, final Throwable t) { + logger.fatal(message, t); + } + + public void error(final Object message) { + logger.error(message); + } + + public void error(final Object message, final Throwable t) { + logger.error(message, t); + } + + public void warn(final Object message) { + logger.warn(message); + } + + public void warn(final Object message, final Throwable t) { + logger.warn(message, t); + } + + public void info(final Object message) { + logger.info(message); + } + + public void info(final Object message, final Throwable t) { + logger.info(message, t); + } + + public void debug(final Object message) { + logger.debug(message); + } + + public void debug(final Object message, final Throwable t) { + logger.debug(message, t); + } + + public void trace(final Object message) { + logger.trace(message); + } + + public void trace(final Object message, final Throwable t) { + logger.trace(message, t); + } + + + public void level(LogLevel level) { + logger.level(level); + } + + + + public void turnOff() { + logger.turnOff(); + } + + public void fatal(Object... messages) { + logger.fatal(messages); + } + + public void fatal(Throwable t, Object... messages) { + logger.fatal(t, messages); + } + + public void error(Object... messages) { + logger.error(messages); + } + + public void error(Throwable t, Object... messages) { + logger.error(t, messages); + } + + public void warn(Object... messages) { + logger.warn(messages); + } + + public void warn(Throwable t, Object... messages) { + + logger.warn(t, messages); + } + + public void info(Object... messages) { + logger.info(messages); + } + + public void info(Throwable t, Object... messages) { + logger.info(t, messages); + } + + public void config(Object... messages) { + logger.config(messages); + } + + public void config(Throwable t, Object... messages) { + logger.config(t, messages); + } + + public void debug(Object... messages) { + logger.debug(messages); + } + + public void debug(Throwable t, Object... messages) { + logger.debug(t, messages); + } + + public void trace(Object... messages) { + logger.trace(messages); + + } + + public void trace(Throwable t, Object... messages) { + logger.trace(t, messages); + + } + +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/MBeans.java b/datastructures-json-boon/src/main/java/org/boon/MBeans.java new file mode 100644 index 0000000..ef8cecc --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/MBeans.java @@ -0,0 +1,244 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon; + +import javax.management.*; +import javax.management.openmbean.CompositeData; +import javax.management.openmbean.TabularData; +import java.lang.management.ManagementFactory; +import java.lang.reflect.Array; +import java.util.*; + +import static org.boon.Boon.toJson; +import static org.boon.Exceptions.requireNonNull; + + +/** + * Utility methods to convert MBeans to a Map. + */ +public class MBeans { + + public static String toJson () { + MBeanServer server = ManagementFactory.getPlatformMBeanServer(); + return toJson(server); + + } + + + public static String toJson (final MBeanServer server) { + Set objectNames = server.queryNames( null, null ); + + Map> map = new LinkedHashMap<>(); + + for ( ObjectName name : objectNames ) { + + map.put(name.toString(), MBeans.map(server, name)); + + } + + return Boon.toJson(map); + } + + public static Map map( final ObjectName name ) { + MBeanServer server = ManagementFactory.getPlatformMBeanServer(); + return map(server, name); + } + + + public static Map map( final MBeanServer server, + final ObjectName name ) { + + + requireNonNull( server, "server cannot be null" ); + requireNonNull( name, "name cannot be null" ); + + + /* Return the bean attributes converted to a map. */ + Map result; + MBeanInfo info = null; + + try { + + + info = server.getMBeanInfo( name ); + + final String[] attributeNames = getAttributeNames( info ); + result = new HashMap<>( attributeNames.length ); + + + final AttributeList attributeList = server.getAttributes( name, attributeNames ); + + + for ( Object obj : attributeList ) { + final Attribute attribute = ( Attribute ) obj; + result.put( attribute.getName(), convertValue( attribute.getValue() ) ); + } + + return result; + + } catch ( Exception ex ) { + + return Exceptions.handle( Map.class, String.format( + "Unable to turn mbean into map %s ", name.getCanonicalName() + ), ex ); + } + + } + + public static String[] getAttributeNames( MBeanInfo info ) { + final MBeanAttributeInfo[] attributes = info.getAttributes(); + final String[] attributeNames = new String[ attributes.length ]; + + for ( int index = 0; index < attributes.length; index++ ) { + + attributeNames[ index ] = attributes[ index ].getName(); + } + return attributeNames; + } + + private static Object convertValue( Object value ) { + + + /* convert nulls */ + if ( value == null ) { + value = "null"; + } + + /* convert an array to a List and convert the component objects of the array. + */ + if ( value.getClass().isArray() ) { + + value = convertFromArrayToList( value ); + + } else if ( value instanceof CompositeData ) { + + value = convertFromCompositeDataToToMap( value ); + + } else if ( value instanceof TabularData ) { + value = convertFromTabularDataToMap( value ); + } + + return value; + } + + private static Object convertFromTabularDataToMap( Object value ) { + final TabularData data = ( TabularData ) value; + + final Set> keys = ( Set> ) data.keySet(); + + final Map map = new HashMap<>(); + for ( final List key : keys ) { + final Object subValue = convertValue( data.get( key.toArray() ) ); + + if ( key.size() == 1 ) { + map.put( convertValue( key.get( 0 ) ).toString(), subValue ); + } else { + map.put( convertValue( key ).toString(), subValue ); + } + } + + value = map; + return value; + } + + private static Object convertFromCompositeDataToToMap( Object value ) { + final CompositeData data = ( CompositeData ) value; + final Map map = new HashMap(); + final Set keySet = data.getCompositeType().keySet(); + + for ( final String key : keySet ) { + map.put( key, convertValue( data.get( key ) ) ); + } + + value = map; + return value; + } + + private static Object convertFromArrayToList( Object value ) { + final List list = new ArrayList(); + + final int length = Array.getLength( value ); + + for ( int index = 0; index < length; index++ ) { + list.add( convertValue( Array.get( value, index ) ) ); + } + + value = list; + return value; + } + + + public static DynamicMBean createMBean( final Object instance, final Class managedInterface ) { + + requireNonNull( instance, "instance cannot be null" ); + requireNonNull( managedInterface, "managedInterface cannot be null" ); + + + try { + + /* Create the bean. */ + return new StandardMBean( instance, ( Class ) managedInterface ); + + } catch ( final NotCompliantMBeanException ex ) { + return Exceptions.handle( DynamicMBean.class, String.format( + "createMBean unable to register %s under interface %s", + instance.getClass().getName(), managedInterface.getClass().getName() + ), ex ); + + } + } + + public static void registerMBean( final String prefix, final String name, final Object mbean ) { + + Exceptions.requireNonNull( prefix, "prefix can't be null" ); + Exceptions.requireNonNull( name, "name can't be null" ); + Exceptions.requireNonNull( mbean, "mbean can't be null" ); + + String nameOfBean = nameOfBean = String.format( "%s.%s:type=%s", + prefix, mbean.getClass().getSimpleName(), + name ); + + try { + + + final ObjectName objectName = new ObjectName( nameOfBean ); + + final MBeanServer beanServer = ManagementFactory.getPlatformMBeanServer(); + + beanServer.registerMBean( mbean, objectName ); + + } catch ( final Exception ex ) { + Exceptions.handle( String.format( + "registerMBean %s %s %s %s", prefix, name, mbean, nameOfBean + ), ex ); + + } + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/Maps.java b/datastructures-json-boon/src/main/java/org/boon/Maps.java new file mode 100644 index 0000000..37c0499 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/Maps.java @@ -0,0 +1,1736 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon; + + +import org.boon.core.Typ; +import org.boon.core.reflection.BeanUtils; +import org.boon.core.Conversions; +import org.boon.core.reflection.MapObjectConversion; +import org.boon.primitive.CharBuf; + +import java.util.*; +import java.util.concurrent.ConcurrentHashMap; +import java.util.concurrent.ConcurrentSkipListMap; + +import static org.boon.Exceptions.die; +import static org.boon.Exceptions.requireNonNull; + +public class Maps { + + + + public static List lazyCreate( List lazy ) { + if (lazy == null) { + + lazy = new ArrayList<>(); + } + return lazy; + } + + public static Map lazyCreate( Map lazy ) { + if (lazy == null) { + + lazy = new LinkedHashMap(); + } + return lazy; + } + + + public static Map lazyCreate( HashMap lazy ) { + if (lazy == null) { + + lazy = new HashMap(); + } + return lazy; + } + + + public static Map lazyCreate( LinkedHashMap lazy ) { + if (lazy == null) { + + lazy = new LinkedHashMap(); + } + return lazy; + } + + + public static Map lazyCreateLinked( Map lazy ) { + if (lazy == null) { + + lazy = new LinkedHashMap(); + } + return lazy; + } + + + + public static Map lazyCreate( ConcurrentHashMap lazy ) { + if (lazy == null) { + + lazy = new ConcurrentHashMap(); + } + return lazy; + } + + public static Map lazyCreateSafe( Map lazy ) { + if (lazy == null) { + + lazy = new ConcurrentHashMap(); + } + return lazy; + } + + + @Universal + public static int lengthOf( Map map ) { + return len ( map ); + } + + @Universal + public static V atIndex( Map map, K k ) { + return idx(map, k ); + } + + @Universal + public static SortedMap sliceOf( NavigableMap map, K startIndex, K endIndex ) { + return slc(map, startIndex, endIndex); + } + + + @Universal + public static SortedMap endSliceOf( NavigableMap map, K fromKey ) { + return slcEnd(map, fromKey); + } + + /** + * Universal methods. + */ + @Universal + public static int len( Map map ) { + return map.size(); + } + + + @Universal + public static boolean in( K key, Map map ) { + return map.containsKey( key ); + } + + @Universal + public static void add( Map map, Entry entry ) { + map.put( entry.key(), entry.value() ); + } + + @Universal + public static V idx( Map map, K k ) { + return map.get( k ); + } + + @Universal + public static void idx( Map map, K k, V v ) { + map.put( k, v ); + } + + + + public static String idxStr( Map map, K k ) { + return Str.toString(map.get( k )); + } + + + public static Integer idxInt( Map map, K k ) { + return (Integer)map.get( k ); + } + + + + public static Long idxLong( Map map, K k ) { + return (Long)map.get( k ); + } + + + public static Map idxMap( Map map, K k ) { + return (Map) map.get( k ); + } + + + public static List idxList( Map map, K k ) { + return (List) map.get( k ); + } + + + + public static long toLong( Map map, K key ) { + V value = map.get(key); + long l = Conversions.toLong ( value, Long.MIN_VALUE ); + if ( l == Long.MIN_VALUE ) { + die("Cannot convert", key, "into long value", value); + } + return l; + } + + + public static int toInt( Map map, K key ) { + V value = map.get(key); + int v = Conversions.toInt ( value, Integer.MIN_VALUE ); + if ( v == Integer.MIN_VALUE ) { + die("Cannot convert", key, "into int value", value); + } + return v; + } + + @Universal + public static SortedMap copy( SortedMap map ) { + if ( map instanceof TreeMap ) { + return new TreeMap<>( map ); + } else if ( map instanceof ConcurrentSkipListMap ) { + return new ConcurrentSkipListMap<>( map ); + } else { + return new TreeMap<>( map ); + } + } + + @Universal + public static Map copy( Map map ) { + if ( map instanceof LinkedHashMap ) { + return new LinkedHashMap<>( map ); + } else if ( map instanceof ConcurrentHashMap ) { + return new ConcurrentHashMap<>( map ); + } else { + return new LinkedHashMap<>( map ); + } + } + + + /** Grabs the first value from a tree map (Navigable map). */ + @Universal + public static V first( NavigableMap map ) { + return map.firstEntry().getValue(); + } + + + + /** Grabs the last value from a tree map (Navigable map). */ + @Universal + public static V last( NavigableMap map ) { + return map.lastEntry().getValue() ; + } + + + + /** Grabs the value after this key from a tree map (Navigable map). */ + @Universal + public static V after( NavigableMap map, final K index ) { + return map.get( map.higherKey( index ) ); + } + + /** Grabs the value before this key from a tree map (Navigable map). */ + @Universal + public static V before( NavigableMap map, final K index ) { + return map.get( map.lowerKey( index ) ); + } + + + @Universal + public static SortedMap slc( NavigableMap map, K startIndex, K endIndex ) { + return map.subMap( startIndex, endIndex ); + } + + + @Universal + public static SortedMap slcEnd( NavigableMap map, K fromKey ) { + return map.tailMap( fromKey ); + } + + @Universal + public static SortedMap slc( NavigableMap map, K toKey ) { + return map.headMap( toKey ); + } + + /** + * End universal methods. + */ + + public static boolean valueIn( V value, Map map ) { + return map.containsValue( value ); + } + + + public static Entry entry( final K k, final V v ) { + return new Pair<>( k, v ); + } + + public static Entry entry( Entry entry ) { + return new Pair<>( entry ); + } + + public static Map mapFromArray( Object... args ) { + Map map = map(Object.class, Object.class); + + if (args.length % 2 != 0) { + return die(Map.class, "mapFromArray arguments must be equal"); + } + + Object lastKey = null; + for (int index = 0; index < args.length; index++) { + + if (index % 2 == 0) { + lastKey = args[index]; + } else { + map.put( lastKey, args[index] ); + } + + } + return map; + + } + + + public static Map map( Class keyClass, Class valueClass ) { + return new LinkedHashMap<>( 10 ); + } + + public static Map safeMap( Class keyClass, Class valueClass ) { + return new ConcurrentHashMap<>( 10 ); + } + + public static Map map( K k0, V v0 ) { + Map map = new LinkedHashMap<>( 10 ); + map.put( k0, v0 ); + return map; + } + + public static Map map( K k0, V v0, K k1, V v1 ) { + Map map = new LinkedHashMap<>( 10 ); + map.put( k0, v0 ); + map.put( k1, v1 ); + return map; + } + + + public static Map map( K k0, V v0, K k1, V v1, K k2, V v2 ) { + Map map = new LinkedHashMap<>( 10 ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + return map; + } + + public static Map map( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3 ) { + Map map = new LinkedHashMap<>( 10 ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + return map; + } + + public static Map map( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4 ) { + Map map = new LinkedHashMap<>( 10 ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + return map; + } + + public static Map map( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5 ) { + Map map = new LinkedHashMap<>( 10 ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + return map; + } + + public static Map map( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6 ) { + Map map = new LinkedHashMap<>( 10 ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + return map; + } + + public static Map map( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7 ) { + Map map = new LinkedHashMap<>( 10 ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + map.put( k7, v7 ); + return map; + } + + public static Map map( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8 ) { + Map map = new LinkedHashMap<>( 10 ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + map.put( k7, v7 ); + map.put( k8, v8 ); + return map; + } + + public static Map map( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8, + K k9, V v9 ) { + Map map = new LinkedHashMap<>( 10 ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + map.put( k7, v7 ); + map.put( k8, v8 ); + map.put( k9, v9 ); + return map; + } + + + public static Map map( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8, + K k9, V v9, K k10, V v10 ) { + Map map = new LinkedHashMap<>( 11 ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + map.put( k7, v7 ); + map.put( k8, v8 ); + map.put( k9, v9 ); + map.put( k10, v10 ); + + return map; + } + + public static Map map( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8, + K k9, V v9, K k10, V v10, K k11, V v11 ) { + Map map = new LinkedHashMap<>( 12 ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + map.put( k7, v7 ); + map.put( k8, v8 ); + map.put( k9, v9 ); + map.put( k10, v10 ); + map.put( k11, v11 ); + + return map; + } + + public static Map map( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8, + K k9, V v9, K k10, V v10, K k11, V v11, K k12, V v12 ) { + Map map = new LinkedHashMap<>( 13 ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + map.put( k7, v7 ); + map.put( k8, v8 ); + map.put( k9, v9 ); + map.put( k10, v10 ); + map.put( k11, v11 ); + map.put( k12, v12 ); + + return map; + } + + + + public static Map map( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8, + K k9, V v9, K k10, V v10, K k11, V v11, K k12, V v12, K k13, V v13 ) { + Map map = new LinkedHashMap<>( 14 ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + map.put( k7, v7 ); + map.put( k8, v8 ); + map.put( k9, v9 ); + map.put( k10, v10 ); + map.put( k11, v11 ); + map.put( k12, v12 ); + map.put( k13, v13 ); + + return map; + } + + + public static Map map( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8, + K k9, V v9, K k10, V v10, K k11, V v11, K k12, V v12, K k13, V v13, + K k14, V v14) { + Map map = new LinkedHashMap<>( 15 ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + map.put( k7, v7 ); + map.put( k8, v8 ); + map.put( k9, v9 ); + map.put( k10, v10 ); + map.put( k11, v11 ); + map.put( k12, v12 ); + map.put( k13, v13 ); + map.put( k14, v14 ); + + return map; + } + + public static Map map( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8, + K k9, V v9, K k10, V v10, K k11, V v11, K k12, V v12, K k13, V v13, + K k14, V v14, K k15, V v15) { + Map map = new LinkedHashMap<>( 16 ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + map.put( k7, v7 ); + map.put( k8, v8 ); + map.put( k9, v9 ); + map.put( k10, v10 ); + map.put( k11, v11 ); + map.put( k12, v12 ); + map.put( k13, v13 ); + map.put( k14, v14 ); + map.put( k15, v15 ); + + return map; + } + + + public static Map map( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8, + K k9, V v9, K k10, V v10, K k11, V v11, K k12, V v12, K k13, V v13, + K k14, V v14, K k15, V v15, K k16, V v16) { + Map map = new LinkedHashMap<>( 17 ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + map.put( k7, v7 ); + map.put( k8, v8 ); + map.put( k9, v9 ); + map.put( k10, v10 ); + map.put( k11, v11 ); + map.put( k12, v12 ); + map.put( k13, v13 ); + map.put( k14, v14 ); + map.put( k15, v15 ); + map.put( k16, v16 ); + + return map; + } + + + public static Map map( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8, + K k9, V v9, K k10, V v10, K k11, V v11, K k12, V v12, K k13, V v13, + K k14, V v14, K k15, V v15, K k16, V v16, K k17, V v17) { + Map map = new LinkedHashMap<>( 18 ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + map.put( k7, v7 ); + map.put( k8, v8 ); + map.put( k9, v9 ); + map.put( k10, v10 ); + map.put( k11, v11 ); + map.put( k12, v12 ); + map.put( k13, v13 ); + map.put( k14, v14 ); + map.put( k15, v15 ); + map.put( k16, v16 ); + map.put( k17, v17 ); + + + return map; + } + + public static Map map( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8, + K k9, V v9, K k10, V v10, K k11, V v11, K k12, V v12, K k13, V v13, + K k14, V v14, K k15, V v15, K k16, V v16, K k17, V v17, + K k18, V v18) { + Map map = new LinkedHashMap<>( 19 ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + map.put( k7, v7 ); + map.put( k8, v8 ); + map.put( k9, v9 ); + map.put( k10, v10 ); + map.put( k11, v11 ); + map.put( k12, v12 ); + map.put( k13, v13 ); + map.put( k14, v14 ); + map.put( k15, v15 ); + map.put( k16, v16 ); + map.put( k17, v17 ); + map.put( k18, v18 ); + + return map; + } + + + public static Map map( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8, + K k9, V v9, K k10, V v10, K k11, V v11, K k12, V v12, K k13, V v13, + K k14, V v14, K k15, V v15, K k16, V v16, K k17, V v17, + K k18, V v18, K k19, V v19) { + Map map = new LinkedHashMap<>( 20 ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + map.put( k7, v7 ); + map.put( k8, v8 ); + map.put( k9, v9 ); + map.put( k10, v10 ); + map.put( k11, v11 ); + map.put( k12, v12 ); + map.put( k13, v13 ); + map.put( k14, v14 ); + map.put( k15, v15 ); + map.put( k16, v16 ); + map.put( k17, v17 ); + map.put( k18, v18 ); + map.put( k19, v19 ); + + return map; + } + + + + + + public static Map map( List keys, List values ) { + Map map = new LinkedHashMap<>( 10 + keys.size() ); + Iterator iterator = values.iterator(); + for ( K k : keys ) { + if ( iterator.hasNext() ) { + V v = iterator.next(); + map.put( k, v ); + } else { + map.put( k, null ); + } + } + return map; + } + + + public static Map map( LinkedHashSet keys, LinkedHashSet values ) { + Map map = new LinkedHashMap<>( 10 + keys.size() ); + Iterator iterator = values.iterator(); + for ( K k : keys ) { + if ( iterator.hasNext() ) { + V v = iterator.next(); + map.put( k, v ); + } else { + map.put( k, null ); + } + } + return map; + } + + /** + * Note, you need to make sure that the iterators are from some sort of ordered collection. + * @param keys + * @param values + * @param + * @param + * @return + */ + public static Map map( Iterable keys, Iterable values ) { + Map map = new LinkedHashMap<>(); + Iterator iterator = values.iterator(); + for ( K k : keys ) { + if ( iterator.hasNext() ) { + V v = iterator.next(); + map.put( k, v ); + } else { + map.put( k, null ); + } + } + return map; + } + + public static Map map( K[] keys, V[] values ) { + + Map map = new LinkedHashMap<>( 10 + keys.length ); + int index = 0; + for ( K k : keys ) { + if ( index < keys.length ) { + V v = values[ index ]; + map.put( k, v ); + } else { + map.put( k, null ); + } + index++; + } + return map; + } + + + @SafeVarargs + public static Map map( Entry... entries ) { + Map map = new LinkedHashMap<>( entries.length ); + for ( Entry entry : entries ) { + map.put( entry.key(), entry.value() ); + } + return map; + } + + + @SafeVarargs + public static Map mapByEntries( Entry... entries ) { + Map map = new LinkedHashMap<>( entries.length ); + for ( Entry entry : entries ) { + map.put( entry.key(), entry.value() ); + } + return map; + } + + + public static NavigableMap sortedMap( K k0, V v0 ) { + NavigableMap map = new TreeMap<>(); + map.put( k0, v0 ); + return map; + } + + public static NavigableMap sortedMap( K k0, V v0, K k1, V v1 ) { + NavigableMap map = new TreeMap<>(); + map.put( k0, v0 ); + map.put( k1, v1 ); + return map; + } + + public static NavigableMap sortedMap( K k0, V v0, K k1, V v1, K k2, V v2 ) { + NavigableMap map = new TreeMap<>(); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + return map; + } + + public static NavigableMap sortedMap( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3 ) { + NavigableMap map = new TreeMap<>(); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + return map; + } + + public static NavigableMap sortedMap( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4 ) { + NavigableMap map = new TreeMap<>(); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + return map; + } + + public static NavigableMap sortedMap( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5 ) { + NavigableMap map = new TreeMap<>(); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + return map; + } + + public static NavigableMap sortedMap( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6 ) { + NavigableMap map = new TreeMap<>(); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + return map; + } + + public static NavigableMap sortedMap( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7 ) { + NavigableMap map = new TreeMap<>(); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + map.put( k7, v7 ); + return map; + } + + public static NavigableMap sortedMap( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8 ) { + NavigableMap map = new TreeMap<>(); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + map.put( k7, v7 ); + map.put( k8, v8 ); + return map; + } + + public static NavigableMap sortedMap( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8, + K k9, V v9 ) { + NavigableMap map = new TreeMap<>(); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + map.put( k7, v7 ); + map.put( k8, v8 ); + map.put( k9, v9 ); + return map; + } + + public static NavigableMap sortedMap( Collection keys, Collection values ) { + NavigableMap map = new TreeMap<>(); + Iterator iterator = values.iterator(); + for ( K k : keys ) { + if ( iterator.hasNext() ) { + V v = iterator.next(); + map.put( k, v ); + } else { + map.put( k, null ); + } + } + return map; + } + + + public static NavigableMap sortedMap( Iterable keys, Iterable values ) { + NavigableMap map = new TreeMap<>(); + Iterator iterator = values.iterator(); + for ( K k : keys ) { + if ( iterator.hasNext() ) { + V v = iterator.next(); + map.put( k, v ); + } else { + map.put( k, null ); + } + } + return map; + } + + + public static NavigableMap sortedMap( K[] keys, V[] values ) { + + NavigableMap map = new TreeMap<>(); + int index = 0; + for ( K k : keys ) { + if ( index < keys.length ) { + V v = values[ index ]; + map.put( k, v ); + } else { + map.put( k, null ); + } + index++; + } + return map; + } + + + public static NavigableMap sortedMap( List> entries ) { + NavigableMap map = new TreeMap<>(); + for ( Entry entry : entries ) { + map.put( entry.key(), entry.value() ); + } + return map; + } + + + // + + public static NavigableMap sortedMap( Comparator comparator, K k0, V v0 ) { + NavigableMap map = new TreeMap<>( comparator ); + map.put( k0, v0 ); + return map; + } + + public static NavigableMap sortedMap( Comparator comparator, K k0, V v0, K k1, V v1 ) { + NavigableMap map = new TreeMap<>( comparator ); + map.put( k0, v0 ); + map.put( k1, v1 ); + return map; + } + + public static NavigableMap sortedMap( Comparator comparator, K k0, V v0, K k1, V v1, K k2, V v2 ) { + NavigableMap map = new TreeMap<>( comparator ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + return map; + } + + public static NavigableMap sortedMap( Comparator comparator, K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3 ) { + NavigableMap map = new TreeMap<>( comparator ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + return map; + } + + public static NavigableMap sortedMap( Comparator comparator, K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4 ) { + NavigableMap map = new TreeMap<>( comparator ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + return map; + } + + public static NavigableMap sortedMap( Comparator comparator, K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5 ) { + NavigableMap map = new TreeMap<>( comparator ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + return map; + } + + public static NavigableMap sortedMap( Comparator comparator, K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6 ) { + NavigableMap map = new TreeMap<>( comparator ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + return map; + } + + public static NavigableMap sortedMap( Comparator comparator, K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7 ) { + NavigableMap map = new TreeMap<>( comparator ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + map.put( k7, v7 ); + return map; + } + + public static NavigableMap sortedMap( Comparator comparator, K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8 ) { + NavigableMap map = new TreeMap<>( comparator ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + map.put( k7, v7 ); + map.put( k8, v8 ); + return map; + } + + public static NavigableMap sortedMap( Comparator comparator, K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8, + K k9, V v9 ) { + NavigableMap map = new TreeMap<>( comparator ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + map.put( k7, v7 ); + map.put( k8, v8 ); + map.put( k9, v9 ); + return map; + } + + public static NavigableMap sortedMap( Comparator comparator, Collection keys, Collection values ) { + NavigableMap map = new TreeMap<>( comparator ); + Iterator iterator = values.iterator(); + for ( K k : keys ) { + if ( iterator.hasNext() ) { + V v = iterator.next(); + map.put( k, v ); + } else { + map.put( k, null ); + } + } + return map; + } + + public static NavigableMap sortedMap( Comparator comparator, K[] keys, V[] values ) { + + NavigableMap map = new TreeMap<>( comparator ); + int index = 0; + for ( K k : keys ) { + if ( index < keys.length ) { + V v = values[ index ]; + map.put( k, v ); + } else { + map.put( k, null ); + } + index++; + } + return map; + } + + + public static NavigableMap sortedMap( Comparator comparator, List> entries ) { + NavigableMap map = new TreeMap<>( comparator ); + for ( Entry entry : entries ) { + map.put( entry.key(), entry.value() ); + } + return map; + } + + + public static Map safeMap( Map map ) { + return new ConcurrentHashMap<>(map); + } + + public static Map safeMap( K k0, V v0 ) { + Map map = new ConcurrentHashMap<>( 10 ); + map.put( k0, v0 ); + return map; + } + + public static Map safeMap( K k0, V v0, K k1, V v1 ) { + Map map = new ConcurrentHashMap<>( 10 ); + map.put( k0, v0 ); + map.put( k1, v1 ); + return map; + } + + + public static Map safeMap( K k0, V v0, K k1, V v1, K k2, V v2 ) { + Map map = new ConcurrentHashMap<>( 10 ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + return map; + } + + public static Map safeMap( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3 ) { + Map map = new ConcurrentHashMap<>( 10 ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + return map; + } + + public static Map safeMap( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4 ) { + Map map = new ConcurrentHashMap<>( 10 ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + return map; + } + + public static Map safeMap( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5 ) { + Map map = new ConcurrentHashMap<>( 10 ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + return map; + } + + public static Map safeMap( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6 ) { + Map map = new ConcurrentHashMap<>( 10 ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + return map; + } + + public static Map safeMap( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7 ) { + Map map = new ConcurrentHashMap<>( 10 ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + map.put( k7, v7 ); + return map; + } + + public static Map safeMap( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8 ) { + Map map = new ConcurrentHashMap<>( 10 ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + map.put( k7, v7 ); + map.put( k8, v8 ); + return map; + } + + public static Map safeMap( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8, + K k9, V v9 ) { + Map map = new ConcurrentHashMap<>( 10 ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + map.put( k7, v7 ); + map.put( k8, v8 ); + map.put( k9, v9 ); + return map; + } + + public static Map safeMap( Collection keys, Collection values ) { + Map map = new ConcurrentHashMap<>( 10 + keys.size() ); + Iterator iterator = values.iterator(); + for ( K k : keys ) { + if ( iterator.hasNext() ) { + V v = iterator.next(); + map.put( k, v ); + } else { + map.put( k, null ); + } + } + return map; + } + + public static Map safeMap( Iterable keys, Iterable values ) { + Map map = new ConcurrentHashMap<>(); + Iterator iterator = values.iterator(); + for ( K k : keys ) { + if ( iterator.hasNext() ) { + V v = iterator.next(); + map.put( k, v ); + } else { + map.put( k, null ); + } + } + return map; + } + + public static Map safeMap( K[] keys, V[] values ) { + + Map map = new ConcurrentHashMap<>( 10 + keys.length ); + int index = 0; + for ( K k : keys ) { + if ( index < keys.length ) { + V v = values[ index ]; + map.put( k, v ); + } else { + map.put( k, null ); + } + index++; + } + return map; + } + + + @SafeVarargs + public static Map safeMap( Entry... entries ) { + Map map = new ConcurrentHashMap<>( entries.length ); + for ( Entry entry : entries ) { + map.put( entry.key(), entry.value() ); + } + return map; + } + + + public static NavigableMap safeSortedMap( K k0, V v0 ) { + NavigableMap map = new ConcurrentSkipListMap<>(); + map.put( k0, v0 ); + return map; + } + + public static NavigableMap safeSortedMap( K k0, V v0, K k1, V v1 ) { + NavigableMap map = new ConcurrentSkipListMap<>(); + map.put( k0, v0 ); + map.put( k1, v1 ); + return map; + } + + + public static NavigableMap safeSortedMap( K k0, V v0, K k1, V v1, K k2, V v2 ) { + NavigableMap map = new ConcurrentSkipListMap<>(); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + return map; + } + + public static NavigableMap safeSortedMap( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3 ) { + NavigableMap map = new ConcurrentSkipListMap<>(); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + return map; + } + + public static NavigableMap safeSortedMap( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4 ) { + NavigableMap map = new ConcurrentSkipListMap<>(); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + return map; + } + + public static NavigableMap safeSortedMap( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5 ) { + NavigableMap map = new ConcurrentSkipListMap<>(); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + return map; + } + + public static NavigableMap safeSortedMap( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6 ) { + NavigableMap map = new ConcurrentSkipListMap<>(); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + return map; + } + + public static NavigableMap safeSortedMap( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7 ) { + NavigableMap map = new ConcurrentSkipListMap<>(); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + map.put( k7, v7 ); + return map; + } + + public static NavigableMap safeSortedMap( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8 ) { + NavigableMap map = new ConcurrentSkipListMap<>(); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + map.put( k7, v7 ); + map.put( k8, v8 ); + return map; + } + + public static NavigableMap safeSortedMap( K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8, + K k9, V v9 ) { + NavigableMap map = new ConcurrentSkipListMap<>(); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + map.put( k7, v7 ); + map.put( k8, v8 ); + map.put( k9, v9 ); + return map; + } + + public static NavigableMap safeSortedMap( Collection keys, Collection values ) { + NavigableMap map = new ConcurrentSkipListMap<>(); + Iterator iterator = values.iterator(); + for ( K k : keys ) { + if ( iterator.hasNext() ) { + V v = iterator.next(); + map.put( k, v ); + } else { + map.put( k, null ); + } + } + return map; + } + + public static NavigableMap safeSortedMap( Iterable keys, Iterable values ) { + NavigableMap map = new ConcurrentSkipListMap<>(); + Iterator iterator = values.iterator(); + for ( K k : keys ) { + if ( iterator.hasNext() ) { + V v = iterator.next(); + map.put( k, v ); + } else { + map.put( k, null ); + } + } + return map; + } + + public static NavigableMap safeSortedMap( K[] keys, V[] values ) { + + NavigableMap map = new ConcurrentSkipListMap<>(); + int index = 0; + for ( K k : keys ) { + if ( index < keys.length ) { + V v = values[ index ]; + map.put( k, v ); + } else { + map.put( k, null ); + } + index++; + } + return map; + } + + + @SafeVarargs + public static NavigableMap safeSortedMap( Entry... entries ) { + NavigableMap map = new ConcurrentSkipListMap<>(); + for ( Entry entry : entries ) { + map.put( entry.key(), entry.value() ); + } + return map; + } + + + public static NavigableMap safeSortedMap( Comparator comparator, K k0, V v0 ) { + NavigableMap map = new ConcurrentSkipListMap<>( comparator ); + map.put( k0, v0 ); + return map; + } + + public static NavigableMap safeSortedMap( Comparator comparator, K k0, V v0, K k1, V v1 ) { + NavigableMap map = new ConcurrentSkipListMap<>( comparator ); + map.put( k0, v0 ); + map.put( k1, v1 ); + return map; + } + + public static NavigableMap safeSortedMap( Comparator comparator, K k0, V v0, K k1, V v1, K k2, V v2 ) { + NavigableMap map = new ConcurrentSkipListMap<>( comparator ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + return map; + } + + public static NavigableMap safeSortedMap( Comparator comparator, K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3 ) { + NavigableMap map = new ConcurrentSkipListMap<>( comparator ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + return map; + } + + public static NavigableMap safeSortedMap( Comparator comparator, K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4 ) { + NavigableMap map = new ConcurrentSkipListMap<>( comparator ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + return map; + } + + public static NavigableMap safeSortedMap( Comparator comparator, K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5 ) { + NavigableMap map = new ConcurrentSkipListMap<>( comparator ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + return map; + } + + public static NavigableMap safeSortedMap( Comparator comparator, K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6 ) { + NavigableMap map = new ConcurrentSkipListMap<>( comparator ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + return map; + } + + public static NavigableMap safeSortedMap( Comparator comparator, K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7 ) { + NavigableMap map = new ConcurrentSkipListMap<>( comparator ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + map.put( k7, v7 ); + return map; + } + + public static NavigableMap safeSortedMap( Comparator comparator, K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8 ) { + NavigableMap map = new ConcurrentSkipListMap<>( comparator ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + map.put( k7, v7 ); + map.put( k8, v8 ); + return map; + } + + public static NavigableMap safeSortedMap( Comparator comparator, K k0, V v0, K k1, V v1, K k2, V v2, K k3, + V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8, + K k9, V v9 ) { + NavigableMap map = new ConcurrentSkipListMap<>( comparator ); + map.put( k0, v0 ); + map.put( k1, v1 ); + map.put( k2, v2 ); + map.put( k3, v3 ); + map.put( k4, v4 ); + map.put( k5, v5 ); + map.put( k6, v6 ); + map.put( k7, v7 ); + map.put( k8, v8 ); + map.put( k9, v9 ); + return map; + } + + public static NavigableMap safeSortedMap( Comparator comparator, Collection keys, Collection values ) { + NavigableMap map = new ConcurrentSkipListMap<>( comparator ); + Iterator iterator = values.iterator(); + for ( K k : keys ) { + if ( iterator.hasNext() ) { + V v = iterator.next(); + map.put( k, v ); + } else { + map.put( k, null ); + } + } + return map; + } + + public static NavigableMap safeSortedMap( Comparator comparator, K[] keys, V[] values ) { + + NavigableMap map = new ConcurrentSkipListMap<>( comparator ); + int index = 0; + for ( K k : keys ) { + if ( index < keys.length ) { + V v = values[ index ]; + map.put( k, v ); + } else { + map.put( k, null ); + } + index++; + } + return map; + } + + + public static NavigableMap safeSortedMap( Comparator comparator, List> entries ) { + NavigableMap map = new ConcurrentSkipListMap<>( comparator ); + for ( Entry entry : entries ) { + map.put( entry.key(), entry.value() ); + } + return map; + } + + + @SuppressWarnings ( { "unchecked", "rawtypes" } ) + public static T idx( Class clz, Map map, Object key ) { + Object value = map.get( key.toString() ); + if ( value == null ) { + return ( T ) value; + } + if ( value.getClass() != clz ) { + T t = Conversions.coerce( clz, value ); + return t; + } else { + return ( T ) value; + } + } + + + public static T fromMap( Map map, Class clazz ) { + return MapObjectConversion.fromMap( map, clazz ); + } + + public static Object fromMap( final Map map ) { + return MapObjectConversion.fromMap ( map ); + } + + + public static Map toMap( final Object object ) { + return MapObjectConversion.toMap ( object ); + } + + + public static Map> toMultiValueMap( final String propertyPath, final Collection collection ) { + LinkedHashMap> map = new LinkedHashMap<>( collection.size() ); + + for ( T item : collection ) { + Object oKey = BeanUtils.idx( item, propertyPath ); + if ( oKey == null ) { + continue; + } + String key = Conversions.coerce( Typ.string, oKey ); + + List list = map.get( key ); + if ( list == null ) { + list = new ArrayList<>(); + map.put( key, list ); + } + list.add( item ); + + } + return map; + + } + + + public static Map toMap( final String propertyPath, final Collection collection ) { + return toMap( Typ.string, propertyPath, collection ); + } + + public static NavigableMap toSortedMap( final String propertyPath, final Collection collection ) { + return toSortedMap( Typ.string, propertyPath, collection ); + } + + public static NavigableMap toSafeSortedMap( final String propertyPath, final Collection collection ) { + return toSafeSortedMap( Typ.string, propertyPath, collection ); + } + + public static Map toSafeMap( final String propertyPath, final Collection collection ) { + return toSafeMap( Typ.string, propertyPath, collection ); + } + + + public static Map toMap( Class keyType, final String propertyPath, final Collection collection ) { + LinkedHashMap map = new LinkedHashMap<>( collection.size() ); + doPopulateMapWithCollectionAndPropPath( keyType, propertyPath, collection, map ); + return map; + } + + public static NavigableMap toSortedMap( Class keyType, final String propertyPath, final Collection collection ) { + TreeMap map = new TreeMap<>(); + doPopulateMapWithCollectionAndPropPath( keyType, propertyPath, collection, map ); + return map; + } + + public static NavigableMap toSafeSortedMap( Class keyType, final String propertyPath, final Collection collection ) { + ConcurrentSkipListMap map = new ConcurrentSkipListMap<>(); + doPopulateMapWithCollectionAndPropPath( keyType, propertyPath, collection, map ); + return map; + } + + public static Map toSafeMap( Class keyType, final String propertyPath, final Collection collection ) { + ConcurrentHashMap map = new ConcurrentHashMap<>(); + doPopulateMapWithCollectionAndPropPath( keyType, propertyPath, collection, map ); + return map; + } + + + private static void doPopulateMapWithCollectionAndPropPath( Class keyType, String propertyPath, Collection collection, Map map ) { + for ( T item : collection ) { + Object oKey = BeanUtils.idx( item, propertyPath ); + if ( oKey == null ) { + continue; + } + K key = Conversions.coerce( keyType, oKey ); + map.put( key, item ); + + } + } + + + public static void copyKeys(Collection keys, Map sourceMap, Map destinationMap) { + for (K key : keys) { + V value = sourceMap.get(key); + if (value != null) { + destinationMap.put(key, value); + } + } + } + + public static Map copyKeys(Collection keys, Map sourceMap) { + Map destinationMap = new ConcurrentHashMap<>(); + for (K key : keys) { + V value = sourceMap.get(key); + if (value != null) { + destinationMap.put(key, value); + } + } + return destinationMap; + } + + + public static String asPrettyJsonString(Map map) { + CharBuf buf = CharBuf.createCharBuf(); + return buf.prettyPrintMap(map).toString(); + } + + public static Map toPrettyMap(Object object) { + return MapObjectConversion.toPrettyMap(object); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/Ok.java b/datastructures-json-boon/src/main/java/org/boon/Ok.java new file mode 100644 index 0000000..762c7d4 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/Ok.java @@ -0,0 +1,149 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon; + +import java.util.Collection; +import java.util.Map; + +import static org.boon.Exceptions.die; + +/** + * Created by Richard on 3/7/14. + */ +public class Ok { + + public static boolean ok(Object object) { + return object!=null; + } + + + public static boolean ok(boolean value) { + return value; + } + + public static boolean ok(Number i) { + return i!=null && i.intValue()!=0; + } + + public static boolean ok(int i) { + return i!=0; + } + + public static boolean ok(long i) { + return i!=0; + } + + public static boolean ok(Map map) { + return map!=null && map.size() >0; + } + + public static boolean ok(Collection c) { + return c!=null && c.size() >0; + } + + + public static boolean ok(CharSequence cs) { + return cs!=null && cs.length() >0; + } + + + + + public static boolean okOrDie(Object object) { + return object!=null || die(); + } + + + public static boolean okOrDie(boolean value) { + return value || die(); + } + + public static boolean okOrDie(Number i) { + return (i!=null && i.intValue() !=0) || die(); + } + + + public static boolean okOrDie(int i) { + return i!=0 || die(); + } + + public static boolean okOrDie(long i) { + return i!=0 || die(); + } + + public static boolean okOrDie(Map map) { + return (map!=null && map.size() >0) || die(); + } + + public static boolean okOrDie(Collection c) { + return (c!=null && c.size() >0) || die(); + } + + + public static boolean okOrDie(CharSequence cs) { + return (cs!=null && cs.length() >0) || die(); + } + + + public static boolean okOrDie(String message, Object object) { + return object!=null || die(message); + } + + public static boolean okOrDie(String message, int i) { + return i!=0 || die(message); + } + + public static boolean okOrDie(String message, long i) { + return i!=0 || die(message); + } + + public static boolean okOrDie(String message, Map map) { + return (map!=null && map.size() >0) || die(message); + } + + public static boolean okOrDie(String message, Collection c) { + return (c!=null && c.size() >0) || die(message); + } + + + public static boolean okOrDie(String message, CharSequence cs) { + return (cs!=null && cs.length() >0) || die(message); + } + + + public static boolean okOrDie(String message, boolean value) { + return value || die(message); + } + + public static boolean okOrDie(String message, Number i) { + return (i!=null && i.intValue() !=0) || die(message); + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/Pair.java b/datastructures-json-boon/src/main/java/org/boon/Pair.java new file mode 100644 index 0000000..40943c1 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/Pair.java @@ -0,0 +1,136 @@ +package org.boon; + + +import static org.boon.Exceptions.requireNonNull; + +/** +* Created by Richard on 9/9/14. +*/ +public class Pair implements Entry { + + + public static Entry entry( final K k, final V v ) { + return new Pair<>( k, v ); + } + + + public static Pair pair( final K k, final V v ) { + return new Pair<>( k, v ); + } + + public static Entry entry( Entry entry ) { + return new Pair<>( entry ); + } + + private K k; + private V v; + + public Pair() { + + } + + public Pair(Pair impl) { + requireNonNull( impl ); + requireNonNull( impl.k ); + + this.k = impl.k; + this.v = impl.v; + } + + public Pair(Entry entry) { + requireNonNull( entry ); + requireNonNull( entry.key() ); + + this.k = entry.key(); + this.v = entry.value(); + } + + public Pair(K k, V v) { + Exceptions.requireNonNull( k ); + + this.k = k; + this.v = v; + } + + @Override + public K key() { + return k; + } + + + public K getFirst() { + return k; + } + public V getSecond() { + return v; + } + + @Override + public V value() { + return v; + } + + + @Override + public K getKey() { + return k; + } + + @Override + public V getValue() { + return v; + } + + @Override + public V setValue(V value) { + V old = this.v; + this.v = value; + return old; + } + + @Override + public boolean equals( Object o ) { + if ( this == o ) return true; + if ( o == null || getClass() != o.getClass() ) return false; + + Pair entry = (Pair) o; + return this.equals( entry ); + } + + @Override + public boolean equals( Entry entry ) { + + if ( k != null ? !k.equals( entry.key() ) : entry.key() != null ) return false; + return !( v != null ? !v.equals( entry.value() ) : entry.value() != null ); + + } + + @Override + public int hashCode() { + int result = k != null ? k.hashCode() : 0; + result = 31 * result + ( v != null ? v.hashCode() : 0 ); + return result; + } + + @Override + public int compareTo( Entry entry ) { + requireNonNull( entry ); + return this.key().toString().compareTo( entry.key().toString() ); + } + + @Override + public String toString() { + return "{" + + "\"k\":" + k + + ", \"v\":" + v + + '}'; + } + + public void setFirst(K first) { + this.k = first; + } + + public void setSecond(V v) { + this.v = v; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/Runner.java b/datastructures-json-boon/src/main/java/org/boon/Runner.java new file mode 100644 index 0000000..0340fa9 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/Runner.java @@ -0,0 +1,600 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon; + +import java.io.File; +import java.io.IOException; +import java.io.OutputStreamWriter; +import java.io.PrintWriter; +import java.nio.file.Files; +import java.nio.file.Path; +import java.util.ArrayList; +import java.util.List; +import java.util.Scanner; +import java.util.concurrent.*; +import java.util.concurrent.atomic.AtomicBoolean; + +import static org.boon.Boon.puts; +import static org.boon.Boon.sputs; + +/** + * Ported this form EasyJava/Facile. Got rid of the FileObject stuff. + * + * @author Rick Hightower + */ +public class Runner { + + + private final static String shell; + private final static String shellArgument; + + static { + // Windows + if ( System.getProperty( "os.name" ).toLowerCase().indexOf( "win" ) >= 0 ) { + shell = "cmd.exe"; + shellArgument = "/C"; + } + + // Everyone else + else { + shell = "/bin/sh"; + shellArgument = "-c"; + } + } + + public static List path() { + + final String[] paths = StringScanner.splitByDelimiters( System.getenv().get( "PATH" ), ":;" ); + return Lists.mapBy( paths, IO.convertToPathFunction ); + + } + + public static int exec( String... args ) { + ProcessRunner runner = new ProcessRunner( null, null, 0, null, false, args ); + return runner.exec(); + } + + public static int exec( int timeout, String... args ) { + ProcessRunner runner = new ProcessRunner( null, null, timeout, null, false, args ); + return runner.exec(); + } + + + public static String run( int timeout, String... args ) { + + return run( timeout, null, args ); + } + + + public static String runAt( String cwd, int timeout, String... args ) { + + return runAt( cwd, timeout, null, args ); + } + + + public static String run( int timeout, List path, String... args ) { + return doRun( timeout, path, false, args ); + } + + + public static String runAt( String cwd, int timeout, List path, String... args ) { + return doRunAt( cwd, timeout, path, false, args ); + } + + public static ProcessOut runProcess( int timeout, List path, boolean verbose, String... args ) { + return runProcessAt( null, timeout, path, verbose, args ); + } + + public static ProcessOut runProcessAt( String cwd, int timeout, List path, boolean verbose, String... args ) { + + + ProcessOut out = new ProcessOut(); + ProcessRunner runner = new ProcessRunner( null, null, timeout, path, verbose, args ); + runner.cwd = cwd; + out.exit = runner.exec(); + out.stdout = runner.stdOut(); + out.stderr = runner.stdErr(); + out.commandLine = Str.joinCollection( ' ', runner.commandLine ); + return out; + } + + + private static String doRun( int timeout, List path, boolean verbose, String... args ) { + + + ProcessOut out = runProcess( timeout, path, verbose, args ); + if ( out.getExit() != 0 ) { + throw new ProcessException( sputs( "EXIT CODE", out.getExit(), out.getStderr() ) ); + } else { + return out.getStdout(); + } + + + } + + + private static String doRunAt( String cwd, int timeout, List path, boolean verbose, String... args ) { + + + ProcessOut out = runProcessAt( cwd, timeout, path, verbose, args ); + if ( out.getExit() != 0 ) { + throw new ProcessException( sputs( "EXIT CODE", out.getExit(), out.getStderr() ) ); + } else { + return out.getStdout(); + } + + + } + + public static ProcessInOut launchProcess( int timeout, List path, boolean verbose, String... args ) { + + ProcessInOut process = new ProcessInOut(); + process.run( timeout, path, verbose, args ); + + return process; + + } + + public static String run( String... args ) { + return run( 0, args ); + } + + + public static String runAt( String cwd, String... args ) { + return runAt( cwd, 0, args ); + } + + + public static String runShell( String... args ) { + + List list = new ArrayList<>( args.length + 2 ); + list.add( shell ); + list.add( shellArgument ); + for ( String arg : args ) { + list.add( arg ); + + } + return run( 0, list.toArray( new String[ list.size() ] ) ); + } + + public static String runShell( int timeout, String... args ) { + + List list = new ArrayList<>( args.length + 2 ); + list.add( shell ); + list.add( shellArgument ); + for ( String arg : args ) { + list.add( arg ); + + } + return run( timeout, list.toArray( new String[ list.size() ] ) ); + } + + + public static int execShell( String... args ) { + + List list = new ArrayList<>( args.length + 2 ); + list.add( shell ); + list.add( shellArgument ); + for ( String arg : args ) { + list.add( arg ); + + } + return exec( 0, list.toArray( new String[ list.size() ] ) ); + } + + + public static int execShell( int timeout, String... args ) { + + List list = new ArrayList<>( args.length + 2 ); + list.add( shell ); + list.add( shellArgument ); + for ( String arg : args ) { + list.add( arg ); + + } + return exec( timeout, list.toArray( new String[ list.size() ] ) ); + } + + + public static class ProcessInOut { + + private ProcessRunner runner; + private ProcessOut out; + + private AtomicBoolean done = new AtomicBoolean( false ); + + private BlockingQueue queueOut; + private BlockingQueue queueErr; + + + private ExecutorService executorService; + + + public ProcessInOut() { + this.queueOut = new ArrayBlockingQueue<>( 100 ); + this.queueErr = new ArrayBlockingQueue<>( 100 ); + } + + public void run( final int timeout, final List path, final boolean verbose, final String... args ) { + done.set( false ); + out = new ProcessOut(); + runner = new ProcessRunner( ProcessInOut.this, null, timeout, path, verbose, args ); + + executorService = Executors.newSingleThreadExecutor(); + + Runnable task = new Runnable() { + + @Override + public void run() { + out.exit = runner.exec(); + out.stdout = runner.stdOut(); + out.stderr = runner.stdErr(); + out.commandLine = Str.joinCollection( ' ', runner.commandLine ); + done.set( true ); + } + }; + + + executorService.submit( task ); + + } + + public boolean isDone() { + return done.get(); + } + + public ProcessOut processOut() { + return out; + } + + public BlockingQueue getStdOut() { + return queueOut; + } + + public BlockingQueue getStdErr() { + return queueErr; + } + + + public void kill() { + runner.process.destroy(); + } + + } + + + public static class ProcessOut { + private int exit; + private String stdout; + private String stderr; + private String commandLine; + + public int getExit() { + return exit; + } + + + public String getStdout() { + return stdout; + } + + + public String getStderr() { + return stderr; + } + + public String getCommandLine() { + return commandLine; + } + + + @Override + public String toString() { + return "ProcessOut [\nexit=" + exit + ", \nstdout=" + stdout + + ", \nstderr=" + stderr + ", \ncommandLine=" + commandLine + + "\n]"; + } + + } + + private static void handle( Exception ex ) { + throw new ProcessException( ex ); + } + + + @SuppressWarnings ( "serial" ) + public static class ProcessException extends RuntimeException { + + public ProcessException() { + super(); + } + + public ProcessException( String m, Throwable t ) { + super( m, t ); + } + + public ProcessException( String m ) { + super( m ); + } + + public ProcessException( Throwable t ) { + super( t ); + } + } + + public static class ProcessRunner { + private List commandLine; + private String password; + private List path; + + private ProcessIODrainer fromProcessOutput; + private ProcessIODrainer fromProcessError; + private int timeoutInSeconds = 0; + private boolean verbose; + + private PrintWriter toProcess; + + + private ProcessInOut inout; + private Process process; + + + private ExecutorService executorService; + + private ScheduledExecutorService scheduledExecutorService; + + private String cwd; + + public ProcessRunner( ProcessInOut inout, String password, int timeoutInSeconds, + List path, boolean verbose, String... cmdLine ) { + + + if ( timeoutInSeconds == 0 ) { + timeoutInSeconds = 5; + } + if ( cmdLine.length == 1 ) { + cmdLine = Str.split( cmdLine[ 0 ] ); + } + + + this.inout = inout; + this.commandLine = Lists.list( cmdLine ); + this.password = password; + this.timeoutInSeconds = timeoutInSeconds; + this.path = path; + this.verbose = verbose; + + + if ( this.path == null ) { + this.path = Runner.path(); + } + + executorService = Executors.newFixedThreadPool( 2 ); + + } + + public int exec() throws ProcessException { + int exit = -666; + + initializePath(); + + + ProcessBuilder processBuilder = new ProcessBuilder( commandLine ); + + if ( cwd != null ) { + processBuilder.directory( new File( cwd ) ); + } + + String envPath = Str.joinCollection( File.pathSeparatorChar, path ); + processBuilder.environment().put( "PATH", envPath ); + + + try { + initializeDrainersScannersAndWriters( processBuilder ); + + + final Future fromProcessErrorFuture = executorService.submit( fromProcessError ); + final Future fromProcessOutputFuture = executorService.submit( fromProcessOutput ); + + + if ( timeoutInSeconds == -1 ) { + exit = process.waitFor(); + + } else { + + exit = runWithTimeoutTimer( fromProcessErrorFuture, fromProcessOutputFuture ); + + } + + + fromProcessErrorFuture.get(); + fromProcessOutputFuture.get(); + + + } catch ( Exception e ) { + Thread.interrupted(); + handle( e ); + } + return exit; + } + + private void initializePath() { + String cmd = commandLine.get( 0 ); + Path pathCommand = IO.path( cmd ); + if ( !Files.exists( pathCommand ) ) { + for ( Path dir : path ) { + pathCommand = IO.path( dir, cmd ); + if ( Files.exists( pathCommand ) ) { + cmd = pathCommand.toAbsolutePath().toString(); + break; + } + } + } + commandLine.set( 0, cmd ); + + } + + private void initializeDrainersScannersAndWriters( ProcessBuilder processBuilder ) throws IOException { + process = processBuilder.start(); + + toProcess = new PrintWriter( new OutputStreamWriter( process.getOutputStream() ) ); + + Scanner stdOut = new Scanner( process.getInputStream() ); + Scanner stdErr = new Scanner( process.getErrorStream() ); + + if ( inout == null ) { + fromProcessError = new ProcessIODrainer( stdErr, verbose ); + fromProcessOutput = new ProcessIODrainer( stdOut, toProcess, + password, false, verbose ); + } else { + fromProcessError = new ProcessIODrainer( inout.queueErr, stdErr, verbose ); + fromProcessOutput = new ProcessIODrainer( inout.queueOut, stdOut, toProcess, + password, false, verbose ); + + } + } + + private int runWithTimeoutTimer( final Future fromProcessErrorFuture, final Future fromProcessOutputFuture ) throws InterruptedException { + Runnable command = new Runnable() { + + @Override + public void run() { + process.destroy(); + fromProcessErrorFuture.cancel( true ); + fromProcessOutputFuture.cancel( true ); + } + }; + + + scheduledExecutorService = Executors.newSingleThreadScheduledExecutor(); + final ScheduledFuture scheduledFuture = scheduledExecutorService.scheduleWithFixedDelay( command, timeoutInSeconds, timeoutInSeconds, TimeUnit.SECONDS ); + int exit = process.waitFor(); + scheduledFuture.cancel( true ); + return exit; + } + + public String stdOut() { + return fromProcessOutput.getOutput(); + } + + public String stdErr() { + return fromProcessError.getOutput(); + } + + } + + static class ProcessIODrainer implements Runnable { + private Scanner fromProcess; + private String password; + private PrintWriter toProcess; + private StringBuilder outputBuffer = new StringBuilder( 1024 ); + private boolean sudo; + private boolean verbose; + private BlockingQueue queue; + + ProcessIODrainer( Scanner fromProcess, boolean verbose ) { + this.fromProcess = fromProcess; + this.verbose = verbose; + } + + ProcessIODrainer( BlockingQueue queueOut, Scanner fromProcess, boolean verbose ) { + this.queue = queueOut; + this.fromProcess = fromProcess; + this.verbose = verbose; + } + + ProcessIODrainer( Scanner fromProcess, + PrintWriter toProcess, String password, boolean sudo, boolean verbose ) { + this.sudo = sudo; + this.fromProcess = fromProcess; + this.toProcess = toProcess; + this.verbose = verbose; + this.password = password; + } + + public ProcessIODrainer( BlockingQueue queueOut, Scanner fromProcess, + PrintWriter toProcess, String password, boolean sudo, boolean verbose ) { + this.queue = queueOut; + this.sudo = sudo; + this.fromProcess = fromProcess; + this.toProcess = toProcess; + this.verbose = verbose; + this.password = password; + } + + public void run() { + if ( sudo ) { + try { + Thread.sleep( 100 ); + } catch ( InterruptedException e ) { + Thread.interrupted(); + } + toProcess.println( password ); + toProcess.flush(); + } + + try { + while ( fromProcess.hasNextLine() ) { + String line = fromProcess.nextLine(); + + if ( queue != null ) { + while ( true ) { + try { + queue.put( line ); + break; + } catch ( InterruptedException e ) { + if ( Thread.currentThread().isInterrupted() ) { + break; + } else { + continue; + } + } + } + } + + if ( verbose ) { + puts( line ); + } + outputBuffer.append( line ).append( '\n' ); + } + + } finally { + fromProcess.close(); + } + } + + public String getOutput() { + return outputBuffer.toString(); + } + + } + +} + + diff --git a/datastructures-json-boon/src/main/java/org/boon/Sets.java b/datastructures-json-boon/src/main/java/org/boon/Sets.java new file mode 100644 index 0000000..9c6aa96 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/Sets.java @@ -0,0 +1,451 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon; + + +import org.boon.core.reflection.BeanUtils; +import org.boon.core.reflection.MapObjectConversion; +import org.boon.primitive.CharBuf; + +import java.util.*; +import java.util.concurrent.ConcurrentSkipListSet; +import java.util.concurrent.CopyOnWriteArraySet; + +public class Sets { + + /* Creation */ + public static Set set( Collection collection ) { + if (collection instanceof Set) { + return (Set ) collection; + } + if (collection==null) { + return Collections.EMPTY_SET; + } + return new LinkedHashSet<>( collection ); + } + + + public static Enumeration enumeration( final Set set ) { + final Iterator iter = set.iterator(); + return new Enumeration() { + @Override + public boolean hasMoreElements() { + return iter.hasNext(); + } + + @Override + public V nextElement() { + return iter.next(); + } + }; + + } + + + public static Set set( Class clazz ) { + return new LinkedHashSet<>(); + } + + public static Set set( Iterable iterable ) { + Set set = new LinkedHashSet<>(); + for ( V o : iterable ) { + set.add( o ); + } + return set; + } + + public static Set set( Enumeration enumeration ) { + Set set = new LinkedHashSet<>(); + while ( enumeration.hasMoreElements() ) { + set.add( enumeration.nextElement() ); + } + return set; + } + + + public static Set set( Iterator iterator ) { + Set set = new LinkedHashSet<>(); + while ( iterator.hasNext() ) { + set.add( iterator.next() ); + } + return set; + } + + + @SafeVarargs + public static Set set( final V... array ) { + + + Set set = new LinkedHashSet<>(); + + for ( V v : array ) { + set.add( v ); + } + return set; + } + + @SafeVarargs + public static Set set( int size, final V... array ) { + + int index=0; + Set set = new LinkedHashSet<>(); + + for ( V v : array ) { + set.add( v ); + index++; + if (index == size) { + break; + } + } + return set; + } + + + public static NavigableSet sortedSet( Iterator iterator ) { + NavigableSet set = new TreeSet<>(); + while ( iterator.hasNext() ) { + set.add( iterator.next() ); + } + return set; + } + + public static NavigableSet sortedSet( Class clazz ) { + return new TreeSet<>(); + } + + public static NavigableSet sortedSet( Iterable iterable ) { + NavigableSet set = new TreeSet<>(); + for ( V o : iterable ) { + set.add( o ); + } + return set; + } + + public static NavigableSet sortedSet( Enumeration enumeration ) { + NavigableSet set = new TreeSet<>(); + while ( enumeration.hasMoreElements() ) { + set.add( enumeration.nextElement() ); + } + return set; + } + + @SafeVarargs + public static NavigableSet sortedSet( final V... array ) { + NavigableSet set = new TreeSet<>(); + + for ( V v : array ) { + set.add( v ); + } + return set; + } + + public static NavigableSet sortedSet( Collection collection ) { + return new TreeSet<>( collection ); + } + + + public static NavigableSet safeSortedSet( Iterator iterator ) { + NavigableSet set = new ConcurrentSkipListSet<>(); + while ( iterator.hasNext() ) { + set.add( iterator.next() ); + } + return set; + } + + public static NavigableSet safeSortedSet( Class clazz ) { + return new ConcurrentSkipListSet<>(); + } + + public static NavigableSet safeSortedSet( Iterable iterable ) { + NavigableSet set = new ConcurrentSkipListSet<>(); + for ( V o : iterable ) { + set.add( o ); + } + return set; + } + + public static NavigableSet safeSortedSet( Enumeration enumeration ) { + NavigableSet set = new ConcurrentSkipListSet<>(); + while ( enumeration.hasMoreElements() ) { + set.add( enumeration.nextElement() ); + } + return set; + } + + @SafeVarargs + public static NavigableSet safeSortedSet( final V... array ) { + + NavigableSet set = new ConcurrentSkipListSet<>(); + + for ( V v : array ) { + set.add( v ); + } + return set; + + } + + + public static NavigableSet safeSortedSet( Collection collection ) { + return new ConcurrentSkipListSet<>( collection ); + } + + public static Set safeSet( Class clazz ) { + return new CopyOnWriteArraySet<>(); + } + + public static Set safeSet( Iterable iterable ) { + Set set = new CopyOnWriteArraySet<>(); + for ( V o : iterable ) { + set.add( o ); + } + return set; + } + + public static Set safeSet( Enumeration enumeration ) { + Set set = new CopyOnWriteArraySet<>(); + while ( enumeration.hasMoreElements() ) { + set.add( enumeration.nextElement() ); + } + return set; + } + + + public static Set safeSet( Iterator iterator ) { + Set set = new CopyOnWriteArraySet<>(); + while ( iterator.hasNext() ) { + set.add( iterator.next() ); + } + return set; + } + + + @SafeVarargs + public static Set safeSet( final V... array ) { + + List list = Lists.list( array ); + Set set = new CopyOnWriteArraySet<>( list ); + + return set; + } + + public static Set safeSet( Collection collection ) { + return new CopyOnWriteArraySet<>( collection ); + } + + + @Universal + public static int len( Set set ) { + return set.size(); + } + + @Universal + public static boolean in( V value, Set set ) { + return set.contains( value ); + } + + @Universal + public static void add( Set set, V value ) { + set.add( value ); + } + + @Universal + public static T idx( NavigableSet set, final T index ) { + + return set.higher( index ); + } + + @Universal + public static T idx( Set set, final T index ) { + + if ( set instanceof NavigableSet ) { + return idx( ( NavigableSet ) set, index ); + } else { + throw new IllegalArgumentException( "Set must be a NavigableSet for idx operation to work" ); + } + } + + public static T after( NavigableSet set, final T index ) { + + return set.higher( index ); + } + + public static T before( NavigableSet set, final T index ) { + + return set.lower( index ); + } + + @Universal + public static SortedSet slc( NavigableSet set, V startIndex, V endIndex ) { + return set.subSet( startIndex, endIndex ); + } + + + @Universal + public static SortedSet slcEnd( NavigableSet set, V fromIndex ) { + return set.tailSet( fromIndex ); + } + + + @Universal + public static SortedSet slc( NavigableSet set, V toIndex ) { + return set.headSet( toIndex ); + } + + @Universal + public static Set copy( HashSet collection ) { + return new LinkedHashSet<>( collection ); + } + + @Universal + public static NavigableSet copy( TreeSet collection ) { + return new TreeSet<>( collection ); + } + + @Universal + public static Set copy( CopyOnWriteArraySet collection ) { + return new CopyOnWriteArraySet<>( collection ); + } + + @Universal + public static NavigableSet copy( ConcurrentSkipListSet collection ) { + return new ConcurrentSkipListSet<>( collection ); + } + + + @Universal + public static NavigableSet copy( NavigableSet collection ) { + if ( collection instanceof ConcurrentSkipListSet ) { + return copy( ( ConcurrentSkipListSet ) collection ); + } else { + return copy( ( TreeSet ) collection ); + } + } + + + @Universal + public static Set copy( Set collection ) { + if ( collection instanceof NavigableSet ) { + + return copy( ( NavigableSet ) collection ); + + + } else if ( collection instanceof CopyOnWriteArraySet ) { + + return copy( ( CopyOnWriteArraySet ) collection ); + + } else { + + return copy( ( LinkedHashSet ) collection ); + } + } + + + + + public static Set deepCopy( Collection collection ) { + Set newSet = new LinkedHashSet<>(collection.size()); + + for (V v : collection) { + newSet.add(BeanUtils.copy(v)); + } + return newSet; + } + + public static Set deepCopyToSet( Collection src, Set dst) { + + for (V v : src) { + dst.add( BeanUtils.copy( v )); + } + return dst; + } + + + public static List deepCopy( Collection src, Class dest ) { + List list = new ArrayList<>(src.size()); + + for (V v : src) { + list.add( BeanUtils.createFromSrc( v, dest )); + } + return list; + } + + @Universal + public static Set deepCopy( Set set ) { + if ( set instanceof LinkedHashSet ) { + return deepCopyToSet(set, new LinkedHashSet()); + } else if ( set instanceof CopyOnWriteArraySet ) { + return deepCopyToSet(set, new CopyOnWriteArraySet()); + } else if ( set instanceof HashSet ) { + return deepCopyToSet(set, new HashSet()); + } else { + return deepCopy( (Collection)set); + } + } + + //end universal + + public static List> toListOfMaps( Set set ) { + return MapObjectConversion.toListOfMaps( set ); + + } + + + public static Set setFromProperty( Class propertyType, String propertyPath, Collection list ) { + Set newSet = new LinkedHashSet<>( list.size() ); + + for ( Object item : list ) { + T newItem = ( T ) BeanUtils.idx( item, propertyPath ); + newSet.add(newItem); + } + + return newSet; + + } + + + public static Set setFromProperty( Class propertyType, String propertyPath, Iterable list ) { + Set newSet = new LinkedHashSet<>( ); + + for ( Object item : list ) { + T newItem = ( T ) BeanUtils.idx( item, propertyPath ); + newSet.add(newItem); + } + + return newSet; + + } + + + public static String toPrettyJson(Set set) { + CharBuf buf = CharBuf.createCharBuf(); + return buf.prettyPrintCollection(set, false, 0).toString(); + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/Str.java b/datastructures-json-boon/src/main/java/org/boon/Str.java new file mode 100644 index 0000000..91b77a4 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/Str.java @@ -0,0 +1,1054 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon; + +import java.math.BigDecimal; +import java.math.BigInteger; +import java.nio.charset.StandardCharsets; +import java.util.Collection; +import java.util.List; +import org.boon.core.reflection.FastStringUtils; +import org.boon.primitive.CharBuf; +import org.boon.primitive.CharScanner; +import org.boon.primitive.Chr; + + +import static org.boon.Exceptions.die; + +public class Str { + + + /** + * Empty string + */ + public final static String EMPTY_STRING = ""; + + + /** + * gets length + * @param str string + * @return length + */ + @Universal + public static int lengthOf( String str ) { + return len(str); + } + + + /** + * Gets slice of a string. + * @param str string + * @param start start index of slice + * @return new string + */ + @Universal + public static String sliceOf( String str, int start ) { + return slc(str, start); + } + + + /** + * Get slice of string + * @param str string + * @param start start index + * @param end end index + * @return new string + */ + @Universal + public static String sliceOf( String str, int start, int end ) { + return slc(str, start, end); + } + + + /** + * Gets end slice of a string. + * @param str string + * @param end end index of slice + * @return new string + */ + @Universal + public static String endSliceOf( String str, int end ) { + return slcEnd(str, end); + } + + + /** + * Gets character at index + * @param str string + * @param index index + * @return char at + */ + @Universal + public static char atIndex( String str, int index ) { + return idx(str, index); + } + + + /** + * Puts character at index + * @param str string + * @param index index + * @param c char to put in + * @return new string + */ + @Universal + public static String atIndex( String str, int index, char c ) { + return idx (str, index, c); + } + + + /** + * gets length + * @param str string + * @return length + */ + @Universal + public static int len( String str ) { + return str.length(); + } + + + + /** + * Gets slice of a string. + * @param str string + * @param start start index of slice + * @return new string + */ + @Universal + public static String slc( String str, int start ) { + + return FastStringUtils.noCopyStringFromChars( Chr.slc( FastStringUtils.toCharArray(str), start ) ); + } + + + /** + * Get slice of string + * @param str string + * @param start start index + * @param end end index + * @return new string + */ + @Universal + public static String slc( String str, int start, int end ) { + return FastStringUtils.noCopyStringFromChars(Chr.slc(FastStringUtils.toCharArray(str), start, end)); + } + + + /** + * Gets end slice of a string. + * @param str string + * @param end end index of slice + * @return new string + */ + @Universal + public static String slcEnd( String str, int end ) { + return FastStringUtils.noCopyStringFromChars( Chr.slcEnd( FastStringUtils.toCharArray(str), end ) ); + } + + + + /** + * Gets character at index + * @param str string + * @param index index + * @return char at + */ + @Universal + public static char idx( String str, int index ) { + int i = calculateIndex( str.length(), index ); + + char c = str.charAt( i ); + return c; + } + + + /** + * Puts character at index + * @param str string + * @param index index + * @param c char to put in + * @return new string + */ + @Universal + public static String idx( String str, int index, char c ) { + + char[] chars = str.toCharArray(); + Chr.idx( chars, index, c ); + return new String( chars ); + } + + /** + * See if chars is in another string + * @param chars chars + * @param str string + * @return true or false + */ + @Universal + public static boolean in( char[] chars, String str ) { + return Chr.in ( chars, FastStringUtils.toCharArray(str) ); + } + + + /** + * See if a char is in another string + * @param c char + * @param str string + * @return true or false + */ + @Universal + public static boolean in( char c, String str ) { + return Chr.in ( c, FastStringUtils.toCharArray(str) ); + } + + + /** + * See if a char is in a string + * @param c char + * @param offset offset + * @param str string + * @return true or false + */ + @Universal + public static boolean in( char c, int offset, String str ) { + return Chr.in ( c, offset, FastStringUtils.toCharArray(str) ); + } + + + /** + * See if a char is in a string but in a certain bounds of string + * @param c char + * @param offset offset + * @param end end of span to search + * @param str string + * @return true or false + */ + @Universal + public static boolean in( char c, int offset, int end, String str ) { + return Chr.in ( c, offset, end, FastStringUtils.toCharArray(str) ); + } + + + /** + * Add a char to a string + * @param str string + * @param c char + * @return new string + */ + @Universal + public static String add( String str, char c ) { + return FastStringUtils.noCopyStringFromChars( Chr.add( FastStringUtils.toCharArray(str), c ) ); + } + + + /** + * Add one string to another + * @param str string 1 + * @param str2 string 2 + * @return new string + */ + @Universal + public static String add( String str, String str2 ) { + return FastStringUtils.noCopyStringFromChars( + Chr.add( + FastStringUtils.toCharArray(str), + FastStringUtils.toCharArray(str2) ) + ); + } + + + /** + * Add many strings together to another + * @param strings strings + * @return new string + */ + @Universal + public static String add( String... strings ) { + int length = 0; + for ( String str : strings ) { + if ( str == null ) { + continue; + } + length += str.length(); + } + CharBuf builder = CharBuf.createExact( length ); + for ( String str : strings ) { + if ( str == null ) { + continue; + } + builder.add( str ); + } + return builder.toString(); + } + + + + /** + * Add many objects converted to strings together. + * Null are ignored so be careful. + * @param objects objects to convert to strings + * @return new string + */ + public static String addObjects( Object... objects ) { + int length = 0; + for ( Object obj : objects ) { + if ( obj == null ) { + continue; + } + length += obj.toString().length(); + } + CharBuf builder = CharBuf.createExact( length ); + for ( Object str : objects ) { + if ( str == null ) { + continue; + } + builder.add( str.toString() ); + } + return builder.toString(); + } + + /** + * Gets rid of null characters lurking in the string + * @param str string + * @return new string + */ + public static String compact( String str ) { + return FastStringUtils.noCopyStringFromChars( Chr.compact( FastStringUtils.toCharArray(str) ) ); + } + + + /** + * calculates an index for slicing. + * @param length length of index + * @param originalIndex original index might be negative + * @return new index + */ + private static int calculateIndex( final int length, int originalIndex ) { + + + int index = originalIndex; + + /* Adjust for reading from the right as in + -1 reads the 4th element if the length is 5 + */ + if ( index < 0 ) { + index = length + index; + } + + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + if ( index < 0 ) { + index = 0; + } + if ( index >= length ) { + index = length - 1; + } + return index; + } + + + /** + * Split a string + * @param str string to split + * @return string array + */ + public static String[] split( String str ) { + char[][] split = Chr.split( FastStringUtils.toCharArray(str) ); + return fromCharArrayOfArrayToStringArray( split ); + } + + + /** + * Split a string by lines + * @param str string to split + * @return string array + */ + public static String[] splitLines( String str ) { + char[][] split = Chr.splitLines( FastStringUtils.toCharArray(str) ); + return fromCharArrayOfArrayToStringArray( split ); + } + + + /** + * Split a string by commas + * @param str string to split + * @return string array + */ + public static String[] splitComma( String str ) { + char[][] split = Chr.splitComma( FastStringUtils.toCharArray(str) ); + return fromCharArrayOfArrayToStringArray( split ); + } + + + /** + * Split a string by space + * @param str string to split + * @return string array + */ + public static String[] splitBySpace( String str ) { + char[][] split = CharScanner.splitBySpace( FastStringUtils.toCharArray(str) ); + return fromCharArrayOfArrayToStringArray( split ); + } + + + /** + * Split a string by pipe + * @param str string to split + * @return string array + */ + public static String[] splitByPipe( String str ) { + char[][] split = CharScanner.splitByPipe( FastStringUtils.toCharArray(str) ); + return fromCharArrayOfArrayToStringArray( split ); + } + + + /** + * Convert arrays of chars to arrays of strings + * @param split array of chars + * @return string array + */ + public static String[] fromCharArrayOfArrayToStringArray( char[][] split ) { + String[] results = new String[ split.length ]; + + char[] array; + + for ( int index = 0; index < split.length; index++ ) { + array = split[ index ]; + + results[ index ] = array.length == 0 ? + EMPTY_STRING : FastStringUtils.noCopyStringFromChars( array ); + } + return results; + } + + + /** + * Convert to upper case + * @param str string to convert + * @return new string + */ + public static String upper( String str ) { + return str.toUpperCase(); + } + + + /** + * Convert to lower case + * @param str string to convert + * @return new string + */ + public static String lower( String str ) { + return str.toLowerCase(); + } + + + /** + * Convert to camel case upper (starts with upper case) + * @param in string to convert + * @return new string + */ + public static String camelCaseUpper( String in ) { + return camelCase( in, true ); + } + + + /** + * Convert to camel case lower (starts with lower case) + * @param in string to convert + * @return new string + */ + public static String camelCaseLower( String in ) { + return camelCase( in, false ); + } + + + /** + * Convert to camel case + * @param in string to convert + * @return new string + */ + public static String camelCase( String in ) { + return camelCase( in, false ); + } + + + /** + * Convert to camel case and pass upper or lower + * @param inStr string to convert + * @param upper upper flag + * @return new string + */ + public static String camelCase( String inStr, boolean upper ) { + char[] in = FastStringUtils.toCharArray(inStr); + char[] out = Chr.camelCase( in, upper ); + return FastStringUtils.noCopyStringFromChars( out ); + } + + + /** + * Checks to see if a string is inside of another + * @param start start + * @param inStr input string + * @param end index at end + * @return + */ + public static boolean insideOf(String start, String inStr, String end) { + return Chr.insideOf(FastStringUtils.toCharArray(start), FastStringUtils.toCharArray(inStr), FastStringUtils.toCharArray(end)); + } + + /** + * Convert to under bar case + * @param inStr input string + * @return new string + */ + public static String underBarCase( String inStr ) { + char[] in = FastStringUtils.toCharArray(inStr); + char[] out = Chr.underBarCase( in ); + return FastStringUtils.noCopyStringFromChars( out ); + } + + + /** + * See if they are equal or die + * @param a a + * @param b b + */ + public static void equalsOrDie(CharSequence a, CharSequence b) { + char[] ac = FastStringUtils.toCharArray(a); + char[] bc = FastStringUtils.toCharArray(b); + Chr.equalsOrDie(ac, bc); + } + + + /** + * See if they are equal or die + * @param a a + * @param b b + */ + public static void equalsOrDie(String a, String b) { + if (a == null && b == null) { + return; + } + if (a == null || b == null) { + die("Values not equal value a=", a, "value b=", b); + } + + char[] ac = FastStringUtils.toCharArray(a); + char[] bc = FastStringUtils.toCharArray(b); + Chr.equalsOrDie(ac, bc); + } + + + /** + * + * @param inStr + * @param size + * @param fill + * @return + */ + public static String lpad( String inStr, int size, char fill ) { + return new String( Chr.lpad( inStr.toCharArray(), size, fill ) ); + } + + + /** + * + * @param inStr + * @param size + * @return + */ + public static String lpad( String inStr, int size ) { + return new String( Chr.lpad( inStr.toCharArray(), size, ' ' ) ); + } + + + /** + * + * @param inStr + * @param size + * @return + */ + public static String lpad( Object inStr, int size ) { + return new String( Chr.lpad(inStr == null ? "".toCharArray() : inStr.toString().toCharArray(), size, ' ') ); + } + + + /** + * + * @param inStr + * @return + */ + public static String lpad( Object inStr) { + return new String( Chr.lpad( inStr == null ? "".toCharArray() : inStr.toString().toCharArray(), 20, ' ' ) ); + } + + + /** + * + * @param num + * @param size + * @return + */ + public static String zfill( int num, int size ) { + return new String( Chr.lpad( Integer.toString( num ).toCharArray(), + size, '0' ) ); + } + + + /** + * + * @param inStr + * @param size + * @param fill + * @return + */ + public static String rpad( String inStr, int size, char fill ) { + return new String( Chr.rpad( inStr.toCharArray(), size, fill ) ); + } + + + /** + * + * @param inStr + * @param size + * @return + */ + public static String rpad( String inStr, int size) { + return new String( Chr.rpad( inStr.toCharArray(), size, ' ' ) ); + } + + + /** + * + * @param obj + * @param size + * @return + */ + public static String rpad( Object obj, int size) { + if (obj != null) { + return new String( Chr.rpad( obj.toString().toCharArray(), size, ' ' ) ); + } else { + return new String( Chr.rpad( "".toCharArray(), size, ' ' ) ); + } + } + + + /** + * + * @param obj + * @return + */ + public static String rpad( Object obj) { + if (obj != null) { + return new String( Chr.rpad( obj.toString().toCharArray(), 20, ' ' ) ); + } else { + return new String( Chr.rpad( "".toCharArray(), 20, ' ' ) ); + } + } + + /** + * + * @param obj + * @param size + * @param fill + * @return + */ + public static String rpad( Object obj, int size, char fill ) { + if (obj != null) { + return new String( Chr.rpad( obj.toString().toCharArray(), size, fill ) ); + } else { + return new String( Chr.rpad( "".toCharArray(), size, fill ) ); + } + } + + /** + * + * @param input + * @param split + * @return + */ + public static String[] split( final String input, + final char split ) { + return StringScanner.split( input, split ); + + } + + /** + * + * @param value + * @param str + * @return + */ + @Universal + public static boolean in( String value, String str ) { + return str.contains( value ); + } + + + /** + * + * @param lines + * @return + */ + public static String lines( String... lines ) { + return join( '\n', lines ); + } + + + /** + * + * @param lines + * @return + */ + public static String linesConvertQuotes( String... lines ) { + + for (int index=0; index < lines.length; index++) { + lines[index]=lines[index].replace( '\'', '"' ); + } + return join( '\n', lines ); + } + + + /** + * + * @param delim + * @param args + * @return + */ + public static String join( char delim, String... args ) { + CharBuf builder = CharBuf.create( 10 * args.length ); + + int index = 0; + for ( String arg : args ) { + builder.add( arg ); + if ( !( index == args.length - 1 ) ) { + builder.add( delim ); + } + index++; + } + return builder.toString(); + } + + /** + * + * @param delim + * @param args + * @return + */ + public static String joinObjects( char delim, Object... args ) { + CharBuf builder = CharBuf.create( 10 * args.length ); + + int index = 0; + for ( Object arg : args ) { + builder.add( arg == null ? "null" : arg.toString() ); + if ( !( index == args.length - 1 ) ) { + builder.add( delim ); + } + index++; + } + return builder.toString(); + } + + + + /** + * + * @param args + * @return + */ + public static String join( String... args ) { + CharBuf builder = CharBuf.create( 10 * args.length ); + + for ( String arg : args ) { + builder.add( arg ); + } + return builder.toString(); + } + + /** + * + * @param delim + * @param args + * @return + */ + public static String joinCollection( char delim, List args ) { + CharBuf builder = CharBuf.create( 10 * args.size() ); + + int index = 0; + for ( Object arg : args ) { + if ( arg == null ) { + continue; + } + builder.add( arg.toString() ); + if ( !( index == args.size() - 1 ) ) { + builder.add( delim ); + } + index++; + } + return builder.toString(); + + } + + + /** + * + * @param delim + * @param args + * @return + */ + public static String joinCollection( String delim, List args ) { + CharBuf builder = CharBuf.create( 10 * args.size() ); + + int index = 0; + for ( Object arg : args ) { + if ( arg == null ) { + continue; + } + builder.add( arg.toString() ); + if ( !( index == args.size() - 1 ) ) { + builder.add( delim ); + } + index++; + } + return builder.toString(); + + } + + /** + * + * @param str + * @return + */ + @Universal + public static boolean isEmpty( String str ) { + if ( str == null ) { + return true; + } else { + return str.isEmpty(); + } + + } + + @Universal + public static boolean isEmpty( Object str ) { + if ( str == null ) { + return true; + } else { + return str.toString().isEmpty(); + } + + } + + + /** + * + * @param string + * @return + */ + public static String uncapitalize( String string ) { + StringBuilder rv = new StringBuilder(); + if ( string.length() > 0 ) { + rv.append( Character.toLowerCase( string.charAt( 0 ) ) ); + if ( string.length() > 1 ) { + rv.append( string.substring( 1 ) ); + } + } + return rv.toString(); + } + + /** + * + * @param object + * @param defaultString + * @return + */ + public static String toString(Object object, String defaultString) { + if (object == null) { + return defaultString; + } else { + return object.toString(); + } + } + + + /** + * + * @param object + * @return + */ + public static String toString(Object object) { + if (object == null) { + return ""; + } else { + return object.toString(); + } + } + + + /** + * + * @param str + * @return + */ + public static String str(Object str) { + return str == null ? "" : str.toString(); + } + + /** + * + * @param name + * @param startsWithList + * @return + */ + public static boolean startsWithItemInCollection(String name, Collection startsWithList) { + for (String startsWith : startsWithList) { + if (name.startsWith(startsWith)) { + return true; + } + } + return false; + } + + public static String readable(String s) { + return s.replace("\\n", "\n"); + } + + + /** + * Quote a string + * @param s input string + * @return new String + */ + public static String quote(String s) { + return add("\"", s, "\""); + } + + + /** + * single Quote a string + * @param s input string + * @return new String + */ + public static String singleQuote(String s) { + return add("\'", s, "\'"); + } + + + /** + * double Quote a string + * @param s input string + * @return new String + */ + public static String doubleQuote(String s) { + return add("\"", s, "\""); + } + + /** Create a string from bytes. + * @param bytes bytes in + * @return string out + */ + public static String str(byte[] bytes) { + return new String(bytes, StandardCharsets.UTF_8); + + } + + /** + * Do a nice pretty print of a number. + * Add commas and such. + * @param count number + * @return string format of number + */ + public static String num(Number count) { + + if (count == null) { + return ""; + } + if (count instanceof Double || count instanceof BigDecimal) { + String s = count.toString(); + if (idx(s, 1) == '.' && s.length() > 7) { + s = slc(s, 0, 5); + return s; + } else { + return s; + } + + } else if (count instanceof Integer || count instanceof Long || count instanceof Short || count instanceof BigInteger){ + String s = count.toString(); + s = new StringBuilder(s).reverse().toString(); + + CharBuf buf = CharBuf.create(s.length()); + + int index = 0; + for (char c : s.toCharArray()) { + + + index++; + + buf.add(c); + + + if (index % 3 == 0) { + buf.add(','); + } + + + } + + if (buf.lastChar() == ',') { + buf.removeLastChar(); + } + + s = buf.toString(); + + s = new StringBuilder(s).reverse().toString(); + + return s; + + } + + return count.toString(); + + + } + + /** + * Null safe empty check. + * + * @param str - the String to check + * @return whether the String is null || empty + */ + public static boolean empty(String str) { return str == null || str.isEmpty(); } + +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/StringScanner.java b/datastructures-json-boon/src/main/java/org/boon/StringScanner.java new file mode 100644 index 0000000..9b2b20e --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/StringScanner.java @@ -0,0 +1,316 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon; + +import org.boon.core.reflection.FastStringUtils; +import org.boon.primitive.CharScanner; +import org.boon.primitive.Chr; + + +public class StringScanner { + + + private static final char[] WHITE_SPACE = new char[] {'\n', '\t', ' ', '\r'}; + + /** + * Checks the input string to see if it is only digits + * @param input digits + * @return true or false + */ + public static boolean isDigits( String input ) { + return CharScanner.isDigits( FastStringUtils.toCharArray( input ) ); + } + + + /** + * Splits a string into many parts + * @param string input string + * @param split char to split by + * @param limit the limit of the times you want it split up + * @return the split string + */ + public static String[] split( final String string, + final char split, final int limit ) { + + + char[][] comps = CharScanner.split( FastStringUtils.toCharArray( string ), split, limit ); + + return Str.fromCharArrayOfArrayToStringArray( comps ); + + + } + + /** + * Splits a string + * @param string string to split + * @param split what you want to split it by + * @return the split up string + */ + public static String[] split( final String string, + final char split ) { + + char[][] comps = CharScanner.split( FastStringUtils.toCharArray( string ), split ); + + return Str.fromCharArrayOfArrayToStringArray( comps ); + + } + + /** + * Split string by a list of delimiters + * @param string string to split + * @param delimiters delimeters to split it by + * @return the split up string + */ + public static String[] splitByChars( final String string, + final char... delimiters ) { + + char[][] comps = CharScanner.splitByChars( FastStringUtils.toCharArray( string ), delimiters ); + + return Str.fromCharArrayOfArrayToStringArray( comps ); + + } + + public static String[] splitByCharsFromToDelims( final String string, int from, int to, + final char... delimiters ) { + + char[][] comps = CharScanner.splitByCharsFromToDelims( FastStringUtils.toCharArray( string ), from, to, delimiters ); + + return Str.fromCharArrayOfArrayToStringArray( comps ); + + } + + public static String[] splitByCharsFrom( final String string, int from, + final char... delimiters ) { + + char[][] comps = CharScanner.splitByCharsFromToDelims( FastStringUtils.toCharArray( string ), from, string.length(), delimiters ); + + return Str.fromCharArrayOfArrayToStringArray( comps ); + + } + + /** + * Split string by white space + * @param string string to split + * @return the split up string + */ + public static String[] splitByWhiteSpace( final String string + ) { + + char[][] comps = CharScanner.splitByChars( FastStringUtils.toCharArray( string ), WHITE_SPACE ); + + return Str.fromCharArrayOfArrayToStringArray( comps ); + + } + + /** + * Split string by a list of delimiters + * @param string string to split + * @param delimiters delimeters to split it by + * @return the split up string + */ + public static String[] splitByDelimiters( final String string, + final String delimiters ) { + + char[][] comps = CharScanner.splitByChars( FastStringUtils.toCharArray( string ), delimiters.toCharArray() ); + + return Str.fromCharArrayOfArrayToStringArray( comps ); + + } + + + + /** + * Split string by a list of delimiters but none are empty + * @param string string to split + * @param delimiters delimeters to split it by + * @return the split up string + */ + public static String[] splitByCharsNoneEmpty( final String string, final char... delimiters ) { + + char[][] comps = CharScanner.splitByCharsNoneEmpty( FastStringUtils.toCharArray( string ), delimiters ); + return Str.fromCharArrayOfArrayToStringArray( comps ); + } + + + /** + * remove chars from a string + * @param string string to split + * @param delimiters delimeters to remove + * @return the split up string + */ + public static String removeChars( final String string, final char... delimiters ) { + char[][] comps = CharScanner.splitByCharsNoneEmpty( FastStringUtils.toCharArray( string ), delimiters ); + return new String(Chr.add ( comps )); + } + + + + /** + * Split string by a list of delimiters but none are empty within a range + * @param string string to split + * @param delimiters delimeters to split it by + * @return the split up string + */ + public static String[] splitByCharsNoneEmpty( final String string, int start, int end, final char... delimiters ) { + Exceptions.requireNonNull( string ); + + char[][] comps = CharScanner.splitByCharsNoneEmpty( FastStringUtils.toCharArray( string ), start, end, delimiters ); + return Str.fromCharArrayOfArrayToStringArray( comps ); + } + + /** + * Parse float + * @param buffer input buffer + * @param from from + * @param to to + * @return value + */ + public static float parseFloat( String buffer, int from, int to ) { + return CharScanner.parseFloat( FastStringUtils.toCharArray(buffer), from , to ); + } + + /** + * parse a float + * @param buffer input string + * @return value + */ + public static float parseFloat( String buffer ) { + return CharScanner.parseFloat( FastStringUtils.toCharArray(buffer) ); + } + + + /** + * parse a double + * @param buffer input string + * @return value + */ + public static double parseDouble( String buffer, int from, int to ) { + return CharScanner.parseDouble( FastStringUtils.toCharArray(buffer), from , to ); + } + + + /** + * parse a double + * @param buffer input string + * @return value + */ + public static double parseDouble( String buffer ) { + return CharScanner.parseDouble( FastStringUtils.toCharArray(buffer) ); + } + + + + /** + * parse an int within a range + * @param buffer input string + * @return value + */ + public static int parseInt( String buffer, int from, int to ) { + return CharScanner.parseInt( FastStringUtils.toCharArray(buffer), from , to ); + } + + /** + * parse an int within a range + * @param buffer input string + * @return value + */ + public static int parseInt( String buffer ) { + return CharScanner.parseInt( FastStringUtils.toCharArray(buffer) ); + } + + + /** + * parse an long within a range + * @param buffer input string + * @return value + */ + public static long parseLong( String buffer, int from, int to ) { + return CharScanner.parseLong( FastStringUtils.toCharArray(buffer), from , to ); + } + + + /** + * parse an long within a range + * @param buffer input string + * @return value + */ + public static long parseLong( String buffer ) { + return CharScanner.parseLong( FastStringUtils.toCharArray(buffer) ); + } + + + + public static short parseShort( String buffer, int from, int to ) { + return (short) CharScanner.parseInt( FastStringUtils.toCharArray(buffer), from , to ); + } + + public static short parseShort( String buffer ) { + return (short) CharScanner.parseInt( FastStringUtils.toCharArray(buffer) ); + } + + + public static short parseByte( String buffer, int from, int to ) { + return (byte) CharScanner.parseInt( FastStringUtils.toCharArray(buffer), from , to ); + } + + public static short parseByte( String buffer ) { + return (byte) CharScanner.parseInt( FastStringUtils.toCharArray(buffer) ); + } + + + public static int findWhiteSpace(String buffer) { + return CharScanner.findWhiteSpace(FastStringUtils.toCharArray(buffer)); + } + + public static String substringAfter(String string, String after) { + + int index = StringScanner.findString(string, after); + if (index==-1) { + return ""; + } else { + return Str.slc(string, index+after.length()); + } + + } + + private static int findString(String string, String after) { + return CharScanner.findChars(FastStringUtils.toCharArray(after), + FastStringUtils.toCharArray(string)); + } + + public static String substringBefore(String string, String before) { + + int index = StringScanner.findString(string, before); + if (index==-1) { + return ""; + } else { + return Str.slcEnd(string, index); + } + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/Terminal.java b/datastructures-json-boon/src/main/java/org/boon/Terminal.java new file mode 100644 index 0000000..23f8226 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/Terminal.java @@ -0,0 +1,54 @@ +package org.boon; + +/** + * Created by gcc on 1/15/15. + */ +public class Terminal { + + public enum Escape { + + RESET("\u001B[0m"), + BOLD_ON("\u001B[1m"), + ITALICS_ON("\u001B[3m"), + UNDERLINE_ON("\u001B[4m"), + INVERSE_ON("\u001B[7m"), + STRIKETHROUGH_ON("\u001B[9m"), + + BOLD_OFF("\u001B[22m"), + ITALICS_OFF("\u001B[23m"), + UNDERLINE_OFF("\u001B[24m"), + INVERSE_OFF("\u001B[27m"), + STRIKETHROUGH_OFF("\u001B[29m"), + + FG_BLACK("\u001B[30m"), + FG_RED("\u001B[31m"), + FG_GREEN("\u001B[32m"), + FG_YELLOW("\u001B[33m"), + FG_BLUE("\u001B[34m"), + FG_MAGENTA("\u001B[35m"), + FG_CYAN("\u001B[36m"), + FG_WHITE("\u001B[37m"), + FG_DEFAULT("\u001B[39m"), + + BG_BLACK("\u001B[40m"), + BG_RED("\u001B[41m"), + BG_GREEN("\u001B[42m"), + BG_YELLOW("\u001B[43m"), + BG_BLUE("\u001B[44m"), + BG_MAGENTA("\u001B[45m"), + BG_CYAN("\u001B[46m"), + BG_WHITE("\u001B[47m"), + BG_DEFAULT("\u001B[49m"); + + private final String value; + + Escape(String s) { + this.value = s; + } + + @Override + public String toString() { + return this.value; + } + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/Universal.java b/datastructures-json-boon/src/main/java/org/boon/Universal.java new file mode 100644 index 0000000..bb0adc2 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/Universal.java @@ -0,0 +1,38 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon; + +/** + * This is for documentation purposes. + * It means a method is universal. + * + * @see UniversalOperations + */ +public @interface Universal { +} diff --git a/datastructures-json-boon/src/main/java/org/boon/UniversalOperations.java b/datastructures-json-boon/src/main/java/org/boon/UniversalOperations.java new file mode 100644 index 0000000..0ce1622 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/UniversalOperations.java @@ -0,0 +1,567 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon; + + +/** + * This is more for documentation then actually using. + * Nothing will likely implement this. + * It is more conceptional. + *

+ * There are examples in the documentation. + *

+ * The following is a basis for many of the examples. + *

+ *

+ *
+ *
+ *
+ * //Works with lists, arrays, sets, maps, sorted maps, etc.
+ * List fruitList;
+ * String [] fruitArray;
+ * Set veggiesSet;
+ * char [] letters;
+ * byte [] bytes;
+ * NavigableMap  favoritesMap;
+ * Map map;
+ *
+ * // These helper methods are used to create common Java types.
+ * // Sets and lists have concurrent and non concurrent variants
+ * // Set also has sorted and non sorted variants
+ * // This makes safeList, listStream, set, sortedSet, safeSet, safeSortedSet
+ * veggiesSet  =  set( "salad", "broccoli", "spinach");
+ * fruitList   =  listStream( "apple", "oranges", "pineapple");
+ * fruitArray  =  array( "apple", "oranges", "pineapple");
+ * letters     =  array( 'a', 'b', 'c');
+ * bytes       =  array( new byte[]{0x1, 0x2, 0x3, 0x4});
+ *
+ * //You addObject up name / value pairs as a pseudo literal for map
+ * favoritesMap = sortedMap(
+ * 2, "pineapple",
+ * 1, "oranges",
+ * 3, "apple"
+ * );
+ *
+ *
+ * // You addObject up name / value pairs as a pseudo literal for map
+ * // map, sortedMap, safeMap (thread safe concurrent), and sortedSafeMap are
+ * // supported.
+ * map =    map (
+ * "pineapple",  2,
+ * "oranges",    1,
+ * "apple",      3
+ * );
+ *
+ *
+ * 
+ *
+ */ +public interface UniversalOperations { + + public enum Returns { + VARIES + } + + ; + + /** + * Get the item at the index. + * This works with Maps, TreeSets, Strings, Object arrays, primitive arrays, + * etc. + *

+ * Implemented by: + *

+     * org.boon.primitive.Byt
+     * org.boon.primitive.Chr
+     * org.boon.primitive.Int (in progress)
+     * org.boon.primitive.Lng (in progress)
+     * org.boon.primitive.Arry
+     * org.boon.core.Strings (planned)
+     * org.boon.core.StrBuf (planned)
+     * org.boon.Lists
+     * org.boon.Maps
+     * org.boon.Sets
+     * 
+ *

+ * Works with maps and sets + *

+ *

+     *     Map dogMap; //map of dogs
+     *
+     *     Dog dog = new Dog("dog");
+     *
+     *     NavigableSet set; //set of strings
+     *
+     *     List listStream;
+     *
+     *     char[] letters;
+     *
+     *
+     *
+     * 
+ * Initialize our examples + *
+     *        dogMap = map("dog", dog);
+     *        set = sortedSet("apple", "kiwi", "oranges", "pears", "pineapple");
+     *        listStream = listStream("apple", "oranges", "pears");
+     *        letters = array('a', 'b', 'c', 'd');
+     *
+     * 
+ * The methods map, listStream, sortedSet, arrays + * are utility methods for creating Maps, lists sets, etc. + *
+ *

+ * Using + *

+     *
+     *              //Get the dog at the index "dog" in the map
+     *              assertEquals(
+     *
+     *                  dog, idx(dogMap, "dog")
+     *
+     *              );
+     *
+     *              //Get the string "oranges" at index "ora"
+     *              assertEquals(
+     *
+     *                  "oranges",
+     *                  idx(set, "ora")
+     *
+     *              );
+     *
+     *              //Get the string "oranges" at index "o"
+     *              assertEquals(
+     *
+     *                  "oranges",
+     *                  idx(set, "o")
+     *
+     *               );
+     *
+     *               //Get the string "oranges" at index 1 of the listStream.
+     *               assertEquals(
+     *                   "oranges",
+     *                   idx(listStream, 1)
+     *               );
+     *
+     *               // Get the string "pears" at index -1 (using Python style slice notation)
+     *               // of the listStream.
+     *               assertEquals(
+     *                   "pears",
+     *                   idx(listStream, -1)
+     *                );
+     *
+     *               //oranges are two from the back
+     *               assertEquals(
+     *               "oranges",
+     *               idx(listStream, -2));
+     *
+     *
+     *               //apple are two from the back
+     *               assertEquals(
+     *               "apple",
+     *               idx(listStream, -3));
+     *
+     *
+     *
+     * 
+ *

+ * Based on the example at top {@link UniversalOperations}: + *

+ *
+     *
+     * //Using idx to access a value.
+     *
+     * assert idx( veggiesSet, "b").equals("broccoli");
+     *
+     * assert idx( fruitList, 1 ).equals("oranges");
+     *
+     * assert idx( fruitArray, 1 ).equals("oranges");
+     *
+     * assert idx( letters, 1 ) == 'b';
+     *
+     * assert idx( bytes, 1 )      == 0x2;
+     *
+     * assert idx( favoritesMap, 2 ).equals("pineapple");
+     *
+     * assert idx( map, "pineapple" )  == 2;
+     *
+     * 
+ *
+ *

+ * Negative index works with listStream like, array like things. + *

+ *

+ *
+     *
+     *          //Negative indexes
+     *
+     *          assert idx( fruitList, -2 ).equals("oranges");
+     *
+     *          assert idx( fruitArray, -2 ).equals("oranges");
+     *
+     *          assert idx( letters, -2 ) == 'b';
+     *
+     *          assert idx( bytes, -3 )   == 0x2;
+     * 
+ *
+ * + * @param index the index of the item + * @return the item at the index + * @see org.boon.primitive.Byt + * @see org.boon.primitive.Chr + * @see org.boon.primitive.Int + * @see org.boon.primitive.Arry + * @see Lists + * @see Maps + * @see Sets#idx(java.util.NavigableSet, Object) + * @see org.boon.primitive.Byt#idx(byte[], int) + * @see org.boon.primitive.Chr#idx(char[], int) + * @see org.boon.primitive.Int + * @see org.boon.primitive.Arry#idx(Object[], int) + * @see Lists + * @see Maps + * @see Sets + */ + ITEM idx( INDEX index ); + + /** + * Sets the value at an index. + * + * @param index index + * @param item item you are setting + */ + void idx( INDEX index, ITEM item ); + + /** + * Gets the length + * This works with Maps, TreeSets, Strings, Object arrays, primitive arrays, + * etc. + *

+ *

+ *
+ * Building from the example at top ({@link UniversalOperations}). + *

+ *
+     *
+     * // Getting the length
+     * assert len( veggiesSet )        == 3;
+     * assert len( fruitList )         == 3;
+     * assert len( fruitArray )        == 3;
+     * assert len( letters )           == 3;
+     * assert len( bytes )             == 4;
+     * assert len( favoritesMap )      == 3;
+     * assert len( map )               == 3;
+     *
+     *
+     *
+     * 
+ *
+ *

+ * Implemented by: + *

+     * org.boon.primitive.Byt
+     * org.boon.primitive.Chr
+     * org.boon.primitive.Int (in progress)
+     * org.boon.primitive.Lng (in progress)
+     * org.boon.primitive.Arry
+     * org.boon.core.Strings (planned)
+     * org.boon.core.StrBuf (planned)
+     * org.boon.Lists
+     * org.boon.Maps
+     * org.boon.Sets
+     * 
+ * + * @return the length + * @see org.boon.primitive.Byt + * @see org.boon.primitive.Chr + * @see org.boon.primitive.Int + * @see org.boon.primitive.Arry + * @see Lists + * @see Maps + * @see Sets + */ + int len(); + + + /** + * Adds something to a collection, map or array + *

+ * For maps you addObject an entry + *

+ *

+ * Implemented by: + *

+     * org.boon.primitive.Byt
+     * org.boon.primitive.Chr
+     * org.boon.primitive.Int (in progress)
+     * org.boon.primitive.Lng (in progress)
+     * org.boon.primitive.Arry
+     * org.boon.core.Strings (planned)
+     * org.boon.core.StrBuf (planned)
+     * org.boon.Lists
+     * org.boon.Maps
+     * org.boon.Sets
+     * 
+ * + * @return for arrays, this will return the new array, + * for all other collection like things, it returns void. + * @see org.boon.primitive.Byt + * @see org.boon.primitive.Chr + * @see org.boon.primitive.Int + * @see org.boon.primitive.Arry + * @see Lists + * @see Maps + * @see Sets + */ + Returns add( ITEM item ); + + + /** + * Copies something. + * This does a shallow copy. + * There will be a clone that does a deep invasive copy. + *

+ *

+ *

+ * Implemented by: + *

+     * org.boon.primitive.Byt
+     * org.boon.primitive.Chr
+     * org.boon.primitive.Int (in progress)
+     * org.boon.primitive.Lng (in progress)
+     * org.boon.primitive.Arry
+     * org.boon.core.Strings (planned)
+     * org.boon.core.StrBuf (planned)
+     * org.boon.Lists
+     * org.boon.Maps
+     * org.boon.Sets
+     * 
+ * + * @return the copied object + * @see org.boon.primitive.Byt + * @see org.boon.primitive.Chr + * @see org.boon.primitive.Int + * @see org.boon.primitive.Arry + * @see Lists + * @see Maps + * @see Sets + */ + UniversalOperations copy( UniversalOperations thing ); + + + /** + * NOT IMPLEMENTED YET. + * Clone does a deep recursive copy. + *

+ *

+ *

+ * Implemented by: + *

+     * org.boon.primitive.Byt
+     * org.boon.primitive.Chr
+     * org.boon.primitive.Int (in progress)
+     * org.boon.primitive.Lng (in progress)
+     * org.boon.primitive.Arry
+     * org.boon.core.Strings (planned)
+     * org.boon.core.StrBuf (planned)
+     * org.boon.Lists
+     * org.boon.Maps
+     * org.boon.Sets
+     * 
+ * + * @return the length + * @see org.boon.primitive.Byt + * @see org.boon.primitive.Chr + * @see org.boon.primitive.Int + * @see org.boon.primitive.Arry + * @see Lists + * @see Maps + * @see Sets + */ + UniversalOperations clone( UniversalOperations thing ); + + + /** + * This does not work with Sets or Maps (use idx for those) + *

+ * Implemented by: + *

+     * org.boon.primitive.Byt
+     * org.boon.primitive.Chr
+     * org.boon.primitive.Int (in progress)
+     * org.boon.primitive.Lng (in progress)
+     * org.boon.primitive.Arry
+     * org.boon.core.Strings (planned)
+     * org.boon.core.StrBuf (planned)
+     * org.boon.Lists
+     * 
+ * + * @see org.boon.primitive.Byt + * @see org.boon.primitive.Chr + * @see org.boon.primitive.Int + * @see org.boon.primitive.Arry + * @see Lists + * @see Maps + * @see Sets + * @see org.boon.primitive.Byt#insert + * @see org.boon.primitive.Chr#insert + * @see org.boon.primitive.Int + * @see org.boon.primitive.Arry#insert + * @see Lists#insert + */ + void insert( ITEM item ); + + + /** + * Slice a string, array, TreeSet, or TreeMap. + * Works like python slice notation + *

+ *

+     *     >>> string [0:3]
+     *     'foo'
+     *     >>> string [-3:7]
+     *     'bar'
+     * 
+ *

+ * What follows is derived from + * + * Python's slice notation + * . + *

+ *

+ * It's pretty simple really (Python): + *

+     *
+     *      a[ start : end ] # items start through end-1
+     *      a[ start : ]     # items start through the rest of the array
+     *      a[ : end ]       # items from the beginning through end-1
+     *      a[ : ]           # a copy of the whole array
+     *
+     * 
+ *

+ * Boon would be (Java): + *

+     *
+     *      slc( a, start, end ) // items start through end-1
+     *      slc( a, start )      // items start through the rest of the array
+     *      slcEnd( a, end )     // items from the beginning through end-1
+     *      copy( a )            // a copy of the whole array
+     * 
+ *

+ * NOT IMPLEMENTED YET:
+ *

+ * There is also the step value, which can be used with any of the above: + *

+ *
+ * Python + *

+     *
+     *      a[ start : end : step] # start through not past end, by step
+     *
+     * 
+ * Boon + *
+     *
+     *      slc(a, start , end, step) // start through not past end, by step
+     *
+     * 
+ * The key point to remember is that the :end value represents the + * first value that is not in the selected slice. So, the difference + * between end and start is the number of elements selected + * (if step is 1, the default). + *
+ * The other feature is that start or end may be a + * negative number, which means it counts from the end of the + * array instead of the beginning. So: + *

+ *
+ * Python slice notation + *

+     *          a[ -1 ]    # last item in the array
+     *          a[ -2: ]   # last two items in the array
+     *          a[ :-2 ]   # everything except the last two items
+     * 
+ * Boon slice notation + *
+     *          slc( a, -1)     # last item in the array
+     *          slc( -2 )       # last two items in the array
+     *          slcEnd( -2 )    # everything except the last two items
+     * 
+ *

+ * Python and boon are kind to the programmer + * if there are fewer items than you ask for. + * For example, if you ask for a[:-2] and a only contains one element, + * you get an empty listStream instead of an error. + * Sometimes you would prefer the error, so you have to + * be aware that this may happen. + *

+ * Implemented by: + *

+     *
+     * org.boon.primitive.Byt
+     * org.boon.primitive.Chr
+     * org.boon.primitive.Int (in progress)
+     * org.boon.primitive.Lng (in progress)
+     * org.boon.primitive.Arry
+     * org.boon.core.Strings (planned)
+     * org.boon.core.StrBuf (planned)
+     * org.boon.Lists
+     * 
+ * + * @see org.boon.primitive.Byt + * @see org.boon.primitive.Chr + * @see org.boon.primitive.Int + * @see org.boon.primitive.Arry + * @see Lists + * @see Maps + * @see Sets + * @see org.boon.primitive.Byt#slc + * @see org.boon.primitive.Chr#slc + * @see org.boon.primitive.Int + * @see org.boon.primitive.Arry#slc + * @see Lists#slc + * @see Maps#slc + * @see Sets#slc + */ + void slc( INDEX start, INDEX end ); + + /** + * @param start index start + * @see UniversalOperations#slc(Object, Object) + */ + void slc( INDEX start ); + + /** + * @param end index end + * @see UniversalOperations#slc(Object, Object) + */ + void slcEnd( INDEX end ); + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/cache/Cache.java b/datastructures-json-boon/src/main/java/org/boon/cache/Cache.java new file mode 100644 index 0000000..bb560ac --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/cache/Cache.java @@ -0,0 +1,58 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.cache; + +/** + * Holds a set of key value pairs in a cache interface. + * + * @param key + * @param value + */ +public interface Cache { + + /** + * Puts the key in. + * @param key the key + * @param value the value + */ + void put( KEY key, VALUE value ); + + /** + * return the value given the key. + * @param key the key + * @return the value + */ + VALUE get( KEY key ); + + VALUE getSilent( KEY key ); + + void remove( KEY key ); + + int size(); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/cache/CacheEntry.java b/datastructures-json-boon/src/main/java/org/boon/cache/CacheEntry.java new file mode 100644 index 0000000..b1b5748 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/cache/CacheEntry.java @@ -0,0 +1,232 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.cache; + +import java.util.concurrent.atomic.AtomicInteger; + +import static org.boon.Exceptions.die; + +/** + * A cache entry. + * @param the key for the cache entry + * @param the value + */ +class CacheEntry implements Comparable { + + /** Keep track of the read count. */ + final AtomicInteger readCount = new AtomicInteger(); + + /** order. */ + final int order; + + /** The value. */ + VALUE value; + + /** The key. */ + final KEY key; + + /** The type of cache.*/ + final CacheType type; + + /** The time the entry was added. */ + final long time; + + + /** Creates a cache entry. + * + * @param key key + * @param value value + * @param order order + * @param type type + * @param time time of entry + */ + CacheEntry( KEY key, VALUE value, int order, CacheType type, long time ) { + this.order = order; + this.value = value; + this.key = key; + this.time = time; + this.type = type; + + } + + /** + * Comparison of entries this determines what we will order the cache by + * which determines which type of cache it is. + * @param other the other entry + * @return results + */ + @Override + public final int compareTo( CacheEntry other ) { + switch ( type ) { + + case LFU: + return compareToLFU( other ); + case LRU: + return compareToLRU( other ); + case FIFO: + return compareToFIFO( other ); + default: + die(); + return 0; + + } + } + + + /** + * + * @param other other entry to compare to + * @return + */ + private final int compareReadCount( CacheEntry other ) { + + if ( readCount.get() > other.readCount.get() ) { //this read count is greater so it has higher priority + return 1; + } else if ( readCount.get() < other.readCount.get() ) {//this read count is lower so it has lower priority + return -1; + } else if ( readCount.get() == other.readCount.get() ) { + return 0; + } + die(); + return 0; + } + + /** + * Compare the time. + * @param other the other entry + * @return results + */ + private final int compareTime( CacheEntry other ) { + + if ( time > other.time ) { //this time stamp is greater so it has higher priority + return 1; + } else if ( time < other.time ) {//this time stamp is lower so it has lower priority + return -1; + } else if ( time == other.time ) {//equal priority + return 0; + } + die(); + return 0; + } + + /** + * Compare the order. + * @param other the other entry + * @return results + */ + private final int compareOrder( CacheEntry other ) { + + if ( order > other.order ) { //this order is lower so it has higher priority + return 1; + } else if ( order < other.order ) {//this order is higher so it has lower priority + return -1; + } else if ( order == other.order ) {//equal priority + return 0; + } + die(); + return 0; + } + + /** + * Compares the read counts. + * @param other read count + * @return results + */ + private final int compareToLFU( CacheEntry other ) { + + int cmp = compareReadCount( other ); + if ( cmp != 0 ) { + return cmp; + } + + cmp = compareTime( other ); + if ( cmp != 0 ) { + return cmp; + } + + return compareOrder( other ); + } + + + /** + * Compare the time. + * @param other other entry to compare to + * @return results + */ + private final int compareToLRU( CacheEntry other ) { + + int cmp = compareTime( other ); + if ( cmp != 0 ) { + return cmp; + } + + + cmp = compareOrder( other ); + if ( cmp != 0 ) { + return cmp; + } + + + return compareReadCount( other ); + } + + + /** + * Compare for FIFO + * @param other the other entry + * @return results + */ + private final int compareToFIFO( CacheEntry other ) { + int cmp = compareOrder( other ); + if ( cmp != 0 ) { + return cmp; + } + + + cmp = compareTime( other ); + if ( cmp != 0 ) { + return cmp; + } + + + return cmp = compareReadCount( other ); + } + + @Override + public String toString() { + return "CE{" + + "c=" + readCount + + ", ord=" + order + + ", val=" + value + + ", ky=" + key + + ", typ=" + type + + ", t=" + time + + '}'; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/cache/CacheType.java b/datastructures-json-boon/src/main/java/org/boon/cache/CacheType.java new file mode 100644 index 0000000..68e4614 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/cache/CacheType.java @@ -0,0 +1,36 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.cache; + +public enum CacheType { + + LRU, + LFU, + FIFO +} diff --git a/datastructures-json-boon/src/main/java/org/boon/cache/ConcurrentLruCache.java b/datastructures-json-boon/src/main/java/org/boon/cache/ConcurrentLruCache.java new file mode 100644 index 0000000..828c612 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/cache/ConcurrentLruCache.java @@ -0,0 +1,165 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.cache; + +import java.util.Deque; +import java.util.LinkedList; +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; +import java.util.concurrent.ConcurrentLinkedDeque; +import java.util.concurrent.locks.ReentrantLock; + +/** + * ConcurrentLruCache cache. + * This has the limitation of using a single lock to update live status of key. + * + * @param the key + * @param the value + */ +public class ConcurrentLruCache implements Cache { + + + + /** + * Map to hold the cache values + */ + private final Map map = new ConcurrentHashMap<>(); + + /** Queue to hold keys in the LRU cache. + */ + private final Deque queue = new ConcurrentLinkedDeque<>(); + + /** Limit the amount you can hold in the map. */ + private final int limit; + + + /** Creates an LRU Cache with a given limit. */ + public ConcurrentLruCache( int limit ) { + this.limit = limit; + } + + /** + * Key + * @param key the key + * @param value the value + */ + @Override + public void put( KEY key, VALUE value ) { + VALUE oldValue = map.put( key, value ); + if ( oldValue != null ) { + removeThenAddKey( key ); + } else { + addKey( key ); + } + if ( map.size() > limit ) { + map.remove( removeLast() ); + } + } + + + /** + * Get the value at key + * @param key the key + * @return value + */ + @Override + public VALUE get( KEY key ) { + removeThenAddKey( key ); + return map.get( key ); + } + + + /** + * Get the key without updating the LRU status for testing + * @param key key + * @return + */ + @Override + public VALUE getSilent( KEY key ) { + return map.get( key ); + } + + /** + * Remove the key. + * @param key + */ + @Override + public void remove( KEY key ) { + removeFirstOccurrence( key ); + map.remove( key ); + } + + /** + * Size of the cache. + * @return size + */ + @Override + public int size() { + return map.size(); + } + + + /** Add a key. */ + private void addKey( KEY key ) { + queue.addFirst(key); + } + + /** Remove the last key. */ + private KEY removeLast() { + final KEY removedKey = queue.removeLast(); + return removedKey; + } + + /** + * This removes the item from the queue and then re-adds it to increment the + * live-ness of the item. It updates the LRU since this key was read. + * + * @param key key + */ + private void removeThenAddKey( KEY key ) { + queue.removeFirstOccurrence( key ); + queue.addFirst( key ); + + } + + /** + * Remove the key. + * @param key + */ + private void removeFirstOccurrence( KEY key ) { + queue.removeFirstOccurrence(key); + + } + + + + public String toString() { + return map.toString(); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/cache/FastConcurrentReadLruLfuFifoCache.java b/datastructures-json-boon/src/main/java/org/boon/cache/FastConcurrentReadLruLfuFifoCache.java new file mode 100644 index 0000000..f99b9ba --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/cache/FastConcurrentReadLruLfuFifoCache.java @@ -0,0 +1,250 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.cache; + +import org.boon.collections.SortableConcurrentList; +import org.boon.core.timer.TimeKeeper; +import org.boon.core.timer.TimeKeeperBasic; + +import java.util.ArrayList; +import java.util.LinkedList; +import java.util.List; +import java.util.concurrent.ConcurrentHashMap; +import java.util.concurrent.atomic.AtomicInteger; + + +/** + * Fast concurrent read cache with many options. + * + * Writes are slow (single threaded lock) + * Reads are very fast no lock. + * Compaction (if you are over the limit) is slow. + * + * + * @param key + * @param value + */ +public class FastConcurrentReadLruLfuFifoCache implements Cache { + + + /** + * Map to hold cache items. + */ + private final ConcurrentHashMap> map = new ConcurrentHashMap<>(); + + /** + * A list that can be sorted easily. It is concurrent. + */ + private final SortableConcurrentList> list; + + /** + * Eviction size. + */ + private final int evictSize; + + /** + * Count which determines order. + */ + private final AtomicInteger count = new AtomicInteger(); + + /** + * CacheType. + */ + private final CacheType type; + + /** + * How do we determine time of entry. + */ + private final TimeKeeper timeKeeper; + + /** + * New cache LFU is the default. + * @param evictSize + */ + public FastConcurrentReadLruLfuFifoCache( int evictSize ) { + this.evictSize = ( int ) ( evictSize + ( evictSize * 0.20f ) ); + list = new SortableConcurrentList<>(); + this.type = CacheType.LFU; + timeKeeper = new TimeKeeperBasic(); + + } + + + /** + * New cache + * @param evictSize eviction size + * @param tradeoffs tradeoffs + * @param type cache type. + */ + public FastConcurrentReadLruLfuFifoCache( int evictSize, Tradeoffs tradeoffs, CacheType type ) { + this.evictSize = ( int ) ( evictSize + ( evictSize * 0.20f ) ); + + this.type = type; + + if ( tradeoffs == Tradeoffs.FAST_REMOVE ) { + list = new SortableConcurrentList<>( new LinkedList>() ); + } else if ( tradeoffs == Tradeoffs.FAST_SORT ) { + list = new SortableConcurrentList<>( new ArrayList>() ); + } else { + list = new SortableConcurrentList<>(); + } + + + timeKeeper = new TimeKeeperBasic(); + + } + + /** + * Just for testing + * + * @param evictSize + * @param type + */ + FastConcurrentReadLruLfuFifoCache( boolean test, int evictSize, CacheType type ) { + this.evictSize = ( int ) ( evictSize + ( evictSize * 0.20f ) ); + list = new SortableConcurrentList<>(); + this.type = type; + + timeKeeper = new TimeKeeper() { + int i; + + @Override + public long time() { + return System.currentTimeMillis() + i++; + } + }; + + } + + /** Get the value from the cache. It does not touch the lock so + * reads are fast. + * This does not touch the order list so it is fast. + * @param key the key + * @return value + */ + public VALUE get( KEY key ) { + CacheEntry cacheEntry = map.get( key ); + if ( cacheEntry != null ) { + cacheEntry.readCount.incrementAndGet(); + return cacheEntry.value; + } else { + return null; + } + + } + + /** + * Used for testing as it gets the value without updating stats + * @param key key + * @return value + */ + public VALUE getSilent( KEY key ) { + CacheEntry cacheEntry = map.get( key ); + if ( cacheEntry != null ) { + return cacheEntry.value; + } else { + return null; + } + + } + + /** + * Remove the key. This touches the lock. + * So removes are **not** fast. + * @param key key + */ + @Override + public void remove( KEY key ) { + CacheEntry entry = map.remove( key ); + if ( entry != null ) { + list.remove( entry ); + } + } + + /** Put the value. This touches the lock so puts are **not** fast. + * + * @param key the key key + * @param value the value value + */ + public void put( KEY key, VALUE value ) { + CacheEntry entry = map.get( key ); + + + if ( entry == null ) { + entry = new CacheEntry<>( key, value, order(), type, time() ); + list.add( entry ); + map.put( key, entry ); + } else { + entry.readCount.incrementAndGet(); + entry.value = value; + } + evictIfNeeded(); + } + + /** Gets the time. */ + private long time() { + return this.timeKeeper.time(); + } + + + /** Avoid overflow. */ + private final int order() { + int order = count.incrementAndGet(); + if ( order > Integer.MAX_VALUE - 100 ) { + count.set( 0 ); + } + return order; + } + + /** Evict if we are over the size limit.*/ + private final void evictIfNeeded() { + if ( list.size() > evictSize ) { + + final List> killList = list.sortAndReturnPurgeList( 0.1f ); + + for ( CacheEntry cacheEntry : killList ) { + map.remove( cacheEntry.key ); + } + } + + } + + public String toString() { + return map.toString(); + } + + + /** + * How many items do we have in the cache? + * @return size + */ + public int size() { + return this.map.size(); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/cache/FastReaderSingleThreadedCache.java b/datastructures-json-boon/src/main/java/org/boon/cache/FastReaderSingleThreadedCache.java new file mode 100644 index 0000000..c7d8336 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/cache/FastReaderSingleThreadedCache.java @@ -0,0 +1,96 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.cache; + + +import java.util.Deque; +import java.util.HashMap; +import java.util.LinkedList; +import java.util.Map; + +public class FastReaderSingleThreadedCache implements Cache { + + private final Map map = new HashMap<>(); + private final Deque queue = new LinkedList<>(); + private final int limit; + + + public FastReaderSingleThreadedCache( int limit ) { + this.limit = limit; + } + + public void put( KEY key, VALUE value ) { + VALUE oldValue = map.put( key, value ); + + /*If there was already an object under this key, + then remove it before adding to queue + Frequently used keys will be at the top so the search could be fast. + */ + if ( oldValue != null ) { + queue.removeFirstOccurrence( key ); + } + queue.addFirst( key ); + + if ( map.size() > limit ) { + final KEY removedKey = queue.removeLast(); + map.remove( removedKey ); + } + + } + + + public VALUE get( KEY key ) { + + /* Frequently used keys will be at the top so the search could be fast.*/ + queue.removeFirstOccurrence( key ); + queue.addFirst( key ); + return map.get( key ); + } + + + public VALUE getSilent( KEY key ) { + + return map.get( key ); + } + + public void remove( KEY key ) { + + /* Frequently used keys will be at the top so the search could be fast.*/ + queue.removeFirstOccurrence( key ); + map.remove( key ); + } + + public int size() { + return map.size(); + } + + public String toString() { + return map.toString(); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/cache/SimpleCache.java b/datastructures-json-boon/src/main/java/org/boon/cache/SimpleCache.java new file mode 100644 index 0000000..85fe629 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/cache/SimpleCache.java @@ -0,0 +1,118 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.cache; + + +import java.util.ArrayList; +import java.util.Collection; +import java.util.LinkedHashMap; +import java.util.Map; + + +/** This supports both LRU and FIFO. + * Single threaded access. + */ +public class SimpleCache implements Cache { + + Map map = new LinkedHashMap(); + + + private static class InternalCacheLinkedList extends LinkedHashMap { + final int limit; + + InternalCacheLinkedList( final int limit, final boolean lru ) { + super( 16, 0.75f, lru ); + this.limit = limit; + } + + protected final boolean removeEldestEntry( final Map.Entry eldest ) { + return super.size() > limit; + } + } + + + public SimpleCache( final int limit, CacheType type ) { + + if ( type.equals( CacheType.LRU ) ) { + map = new InternalCacheLinkedList<>( limit, true ); + } else { + map = new InternalCacheLinkedList<>( limit, false ); + } + } + + public SimpleCache( final int limit ) { + + map = new InternalCacheLinkedList<>( limit, true ); + + } + + @Override + public void put( K key, V value ) { + map.put( key, value ); + } + + @Override + public V get( K key ) { + return map.get( key ); + } + + //For testing only + @Override + public V getSilent( K key ) { + V value = map.get( key ); + if ( value != null ) { + map.remove( key ); + map.put( key, value ); + } + return value; + } + + @Override + public void remove( K key ) { + map.remove( key ); + } + + @Override + public int size() { + return map.size(); + } + + public String toString() { + return map.toString(); + } + + public Collection values() { + return new ArrayList<>(this.map.values()); + } + + public Collection keys() { + return new ArrayList<>(this.map.keySet()); + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/cache/SimpleConcurrentCache.java b/datastructures-json-boon/src/main/java/org/boon/cache/SimpleConcurrentCache.java new file mode 100644 index 0000000..5777af2 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/cache/SimpleConcurrentCache.java @@ -0,0 +1,389 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.cache; + + +import org.boon.core.reflection.ClassMeta; +import org.boon.core.reflection.MethodAccess; +import org.boon.core.reflection.Reflection; + +import java.util.concurrent.ConcurrentHashMap; +import java.util.concurrent.locks.ReadWriteLock; +import java.util.concurrent.locks.ReentrantReadWriteLock; + +import static org.boon.primitive.Int.roundUpToPowerOf2; + +/** + * Uses striping to allow more than one thread to operate on the cache at a time, but + * due to the nature of the independent tracking of each strip the exact LRUness liveness + * is only an approximation. The tradeoff is speed for LRU approximation. + * + * Basically the very least recently used is not always harvested but one of the stripes + * will harvest one of the least recently used. + * + * So if you cache size was 10,000 and you had 8 CPUs, then a reaping would only + * get one of the least recently used, but maybe not the most least but within the least +-8. + * + * @param + * @param + */ +public class SimpleConcurrentCache implements Cache { + + /** Cache regions.*/ + final SimpleCache[] cacheRegions; + + private static final boolean useFastHash; + + private transient final int hashSeed = randomHashSeed( this ); + + + + /** + * Cache class + * @param key + * @param value + */ + private static class SimpleThreadSafeCache extends SimpleCache { + private final ReadWriteLock readWriteLock; + + SimpleThreadSafeCache( final int limit, CacheType type, boolean fair ) { + + super( limit, type ); + readWriteLock = new ReentrantReadWriteLock( fair ); + } + + + @Override + public void put( K key, V value ) { + readWriteLock.writeLock().lock(); + try { + + super.put( key, value ); + } finally { + readWriteLock.writeLock().unlock(); + } + } + + + @Override + public V get( K key ) { + readWriteLock.writeLock().lock(); + V value; + + try { + + value = super.get( key ); + } finally { + readWriteLock.writeLock().unlock(); + } + return value; + } + + @Override + public void remove( K key ) { + + readWriteLock.writeLock().lock(); + + try { + + super.remove( key ); + } finally { + readWriteLock.writeLock().unlock(); + } + + } + + public V getSilent( K key ) { + readWriteLock.writeLock().lock(); + + V value; + + + try { + value = super.getSilent( key ); + } finally { + readWriteLock.writeLock().unlock(); + } + + return value; + + } + + public int size() { + readWriteLock.readLock().lock(); + int size = -1; + try { + size = super.size(); + } finally { + readWriteLock.readLock().unlock(); + } + return size; + } + + public String toString() { + readWriteLock.readLock().lock(); + String str; + try { + str = super.toString(); + } finally { + readWriteLock.readLock().unlock(); + } + return str; + } + + + } + + + /** + * New + * @param limit limit of the cache size + */ + public SimpleConcurrentCache( final int limit ) { + this( limit, false, CacheType.LRU ); + } + + /** + * New + * @param limit limit of the cache size + * @param type type of cache + */ + public SimpleConcurrentCache( final int limit, CacheType type ) { + this( limit, false, type ); + } + + /** + * Limit of hte cache size + * @param limit limit of the cache size + * @param fair should we be fair? + * @param type type of cache + */ + public SimpleConcurrentCache( final int limit, boolean fair, CacheType type ) { + int cores = Runtime.getRuntime().availableProcessors(); + int stripeSize = cores < 2 ? 8 : cores * 4; + stripeSize = roundUpToPowerOf2( stripeSize ); + cacheRegions = new SimpleCache[ stripeSize ]; + for ( int index = 0; index < cacheRegions.length; index++ ) { + cacheRegions[ index ] = new SimpleThreadSafeCache<>( limit / cacheRegions.length, type, fair ); + } + } + + /** + * + * The more stripes the less accurate the LRU but the faster the access. + * Life is all about engineering trade-offs. + * + * 100,000 entries ok with 100 stripes, but 10 entries not so cool with 10 stripes. + * + * Try to keep the accuracy in the 1% to 5% range. + * + * @param concurrency how many stripes + * @param limit limit of the cache size + * @param fair should we be fair? + * @param type type of cache + */ + public SimpleConcurrentCache( final int concurrency, final int limit, boolean fair, CacheType type ) { + + + final int stripeSize = roundUpToPowerOf2( concurrency ); + cacheRegions = new SimpleCache[ stripeSize ]; + for ( int index = 0; index < cacheRegions.length; index++ ) { + cacheRegions[ index ] = new SimpleThreadSafeCache<>( limit / cacheRegions.length, type, fair ); + } + } + + /** + * The more stripes the less accurate the LRU but the faster the access. + * Life is all about engineering trade-offs. + * + * @param concurrency how many stripes + * @param limit limit of the cache size + * @param fair should we be fair? + */ + public SimpleConcurrentCache( final int concurrency, final int limit, boolean fair ) { + + + final int stripeSize = roundUpToPowerOf2( concurrency ); + cacheRegions = new SimpleCache[ stripeSize ]; + for ( int index = 0; index < cacheRegions.length; index++ ) { + cacheRegions[ index ] = new SimpleThreadSafeCache<>( limit / cacheRegions.length, CacheType.LRU, fair ); + } + } + + /** Get the map for this region. */ + private SimpleCache map( K key ) { + return cacheRegions[ stripeIndex( key ) ]; + } + + /** + * Put the key in. + * @param key the key + * @param value the value + */ + @Override + public void put( K key, V value ) { + + map( key ).put( key, value ); + } + + /** + * Take the key out. + * @param key the key + * @return value + */ + @Override + public V get( K key ) { + return map( key ).get( key ); + } + + + /** + * for testing only. + * @param key key to get the value with + * @return the value + */ + @Override + public V getSilent( K key ) { + return map( key ).getSilent( key ); + + } + + /** + * Remove the key + * @param key the key + */ + @Override + public void remove( K key ) { + map( key ).remove( key ); + } + + /** Get the size of the cache. + * This is not 100% accurate if cache is being concurrenly accessed. + */ + @Override + public int size() { + int size = 0; + for ( SimpleCache cache : cacheRegions ) { + size += cache.size(); + } + return size; + } + + /** + * toString + * @return string + */ + public String toString() { + + StringBuilder builder = new StringBuilder(); + for ( SimpleCache cache : cacheRegions ) { + builder.append( cache.toString() ).append( '\n' ); + } + + return builder.toString(); + } + + + static final MethodAccess randomHashSeedMethod; + + static { + + boolean yes; + MethodAccess randomHashSeed = null; + try { + Class cls = Class.forName( "sun.misc.Hashing" ); + + ClassMeta classMeta = ClassMeta.classMeta(cls); + + yes = classMeta.respondsTo("randomHashSeed", Object.class) + && classMeta.classMethods().contains("randomHashSeed"); + + randomHashSeed = classMeta.method("randomHashSeed"); + + + } catch ( Exception ex ) { + yes = false; + } + + useFastHash = yes; + randomHashSeedMethod = randomHashSeed; + } + + + /** Create a hash seed. + * + * @param instance for me? + * @return hash seed + */ + private static int randomHashSeed( SimpleConcurrentCache instance ) { + + + if ( useFastHash ) { + //return sun.misc.Hashing.randomHashSeed( instance ); + return (int) randomHashSeedMethod.invoke(instance); + } + + return 0; + } + + + /** + * Calculate the hash. + * @param k key + * @return + */ + private final int hash( Object k ) { + int h = hashSeed; + + h ^= k.hashCode(); + + h ^= ( h >>> 20 ) ^ ( h >>> 12 ); + return h ^ ( h >>> 7 ) ^ ( h >>> 4 ); + } + + + /** + * Returns index for hash code h. + */ + static int indexFor( int h, int length ) { + return h & ( length - 1 ); + } + + + /** + * Striping + * @param key key to stripe + * @return stripe + */ + private int stripeIndex( K key ) { + return indexFor( hash( key ), cacheRegions.length ); + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/cache/Tradeoffs.java b/datastructures-json-boon/src/main/java/org/boon/cache/Tradeoffs.java new file mode 100644 index 0000000..6d40fcb --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/cache/Tradeoffs.java @@ -0,0 +1,37 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.cache; + +/** + * Created by rick on 12/17/13. + */ +public enum Tradeoffs { + FAST_SORT, + FAST_REMOVE +} diff --git a/datastructures-json-boon/src/main/java/org/boon/collections/CollectionConstants.java b/datastructures-json-boon/src/main/java/org/boon/collections/CollectionConstants.java new file mode 100644 index 0000000..04c2a13 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/collections/CollectionConstants.java @@ -0,0 +1,138 @@ +package org.boon.collections; + +import java.util.*; + +/** + * Created by Richard on 9/26/14. + */ +public class CollectionConstants { + + + + public static MultiMap EMPTY_MULTI_MAP = new MultiMap() { + + Map empty = Collections.emptyMap(); + @Override + public Iterator iterator() { + return empty.entrySet().iterator(); + } + + @Override + public void add(Object key, Object o) { + + + } + + @Override + public Object getFirst(Object key) { + return null; + } + + @Override + public Iterable getAll(Object key) { + return Collections.EMPTY_LIST; + } + + @Override + public boolean removeValueFrom(Object key, Object o) { + return false; + } + + + @Override + public boolean removeMulti(Object key) { + return false; + } + + @Override + public Iterable keySetMulti() { + return Collections.EMPTY_LIST; + } + + @Override + public Iterable valueMulti() { + return Collections.EMPTY_LIST; + } + + @Override + public void putAll(MultiMap params) { + + } + + @Override + public Map baseMap() { + return empty; + } + + @Override + public Object getSingleObject(Object name) { + return null; + } + + @Override + public int size() { + return 0; + } + + @Override + public boolean isEmpty() { + return true; + } + + @Override + public boolean containsKey(Object key) { + return false; + } + + @Override + public boolean containsValue(Object value) { + return false; + } + + @Override + public Object get(Object key) { + return empty.get(key); + } + + @Override + public Object put(Object key, Object value) { + return empty.put(key, value); + } + + @Override + public Object remove(Object key) { + return empty.remove(key); + } + + @Override + public void putAll(Map m) { + + empty.putAll(m); + } + + @Override + public void clear() { + empty.clear(); + } + + @Override + public Set keySet() { + return empty.keySet(); + } + + @Override + public Collection values() { + return empty.values(); + } + + @Override + public Set entrySet() { + return empty.entrySet(); + } + }; + + + public static final MultiMap emptyMultiMap() { + return (MultiMap) EMPTY_MULTI_MAP; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/collections/ConcurrentHashSet.java b/datastructures-json-boon/src/main/java/org/boon/collections/ConcurrentHashSet.java new file mode 100644 index 0000000..188ab15 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/collections/ConcurrentHashSet.java @@ -0,0 +1,127 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.collections; + +import java.util.Collection; +import java.util.Iterator; +import java.util.Map; +import java.util.Set; +import java.util.concurrent.ConcurrentHashMap; + +/** + * Concurrent HashSet. + * + * @param + */ +public class ConcurrentHashSet implements Set { + + private static final Object NOTHING = new Object(); + private final Map map; + + public ConcurrentHashSet(int size) { + map = new ConcurrentHashMap<>(size); + } + + public ConcurrentHashSet() { + map = new ConcurrentHashMap<>(); + } + + + @Override + public boolean add(T e) { + return map.put(e, NOTHING) == null; + } + + @Override + public boolean remove(Object o) { + return map.remove(o) == null; + } + + @Override + public boolean containsAll(Collection collection) { + return map.keySet().containsAll(collection); + } + + @Override + public boolean addAll(Collection collection) { + boolean added = false; + for (T e : collection) { + if (map.put(e, NOTHING) == null) { + added = true; + } + } + return added; + } + + @Override + public boolean retainAll(Collection c) { + throw new UnsupportedOperationException(); + } + + @Override + public boolean removeAll(Collection c) { + throw new UnsupportedOperationException(); + } + + @Override + public void clear() { + map.clear(); + } + + + @Override + public int size() { + return map.size(); + } + + @Override + public boolean isEmpty() { + return map.isEmpty(); + } + + @Override + public boolean contains(Object o) { + return map.containsKey(o); + } + + @Override + public Iterator iterator() { + return map.keySet().iterator(); + } + + @Override + public Object[] toArray() { + return map.keySet().toArray(); + } + + @Override + public T[] toArray(T[] a) { + return map.keySet().toArray(a); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/collections/ConcurrentLinkedHashSet.java b/datastructures-json-boon/src/main/java/org/boon/collections/ConcurrentLinkedHashSet.java new file mode 100644 index 0000000..1a3ad80 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/collections/ConcurrentLinkedHashSet.java @@ -0,0 +1,121 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.collections; + + +import java.util.Collection; +import java.util.Iterator; +import java.util.List; +import java.util.Set; +import java.util.concurrent.CopyOnWriteArrayList; + +public class ConcurrentLinkedHashSet implements Set { + + List list = new CopyOnWriteArrayList<>(); + Set set = new ConcurrentHashSet<>(); + + @Override + public int size() { + return list.size(); + } + + @Override + public boolean isEmpty() { + return set.isEmpty(); + } + + @Override + public boolean contains(Object o) { + return set.contains(o); + } + + @Override + public Iterator iterator() { + return list.iterator(); + } + + @Override + public Object[] toArray() { + return list.toArray(new Object[list.size()]); + } + + @Override + public T1[] toArray(T1[] a) { + + return list.toArray(a); + } + + @Override + public synchronized boolean add(T t) { + list.remove(t); + list.add(t); + return set.add(t); + } + + + public synchronized boolean addFirst(T t) { + list.remove(t); + list.add(0, t); + return set.add(t); + } + + @Override + public synchronized boolean remove(Object o) { + list.remove(o); + return set.remove(o); + } + + @Override + public boolean containsAll(Collection c) { + return set.containsAll(c); + } + + @Override + public boolean addAll(Collection c) { + return set.addAll(c); + } + + @Override + public synchronized boolean retainAll(Collection c) { + list.retainAll(c); + return set.retainAll(c); + } + + @Override + public synchronized boolean removeAll(Collection c) { + list.removeAll(c); + return set.removeAll(c); + } + + @Override + public synchronized void clear() { + set.clear(); + list.clear(); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/collections/ConcurrentWeakHashMap.java b/datastructures-json-boon/src/main/java/org/boon/collections/ConcurrentWeakHashMap.java new file mode 100644 index 0000000..1739152 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/collections/ConcurrentWeakHashMap.java @@ -0,0 +1,422 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.collections; + + +import org.boon.Pair; + +import java.lang.ref.ReferenceQueue; +import java.lang.ref.WeakReference; +import java.util.*; +import java.util.concurrent.ConcurrentHashMap; +import java.util.concurrent.ConcurrentMap; + +import static org.boon.Exceptions.die; + +/** + * I got a lot of ideas from concurrent java books. and looking at open source implementations of this + * This is written from scratch. It was heavily influenced by IntelliJ's ConcurrentWeakHashMap open source + * project. Theirs is better. Mine is good enough for boon's needs. + * + * @param key + * @param value + */ +public class ConcurrentWeakHashMap extends AbstractMap implements ConcurrentMap { + + static final int DEFAULT_CONCURRENCY_LEVEL = 16; + static final float DEFAULT_LOAD_FACTOR = 0.75f; + static final int DEFAULT_INITIAL_CAPACITY = 16; + private static final ThreadLocal HARD_REF = new ThreadLocal() { + @Override + protected HardRefKeyValue initialValue() { + return new HardRefKeyValue(); + } + }; + private final ConcurrentHashMap, V> map; + private final ReferenceQueue referenceQueue = new ReferenceQueue<>(); + private EntrySet entrySet; + + public ConcurrentWeakHashMap(int initialCapacity, + float loadFactor, + int concurrencyLevel ) { + + map = new ConcurrentHashMap<>(initialCapacity, loadFactor, concurrencyLevel); + } + + public ConcurrentWeakHashMap(int initialCapacity, float loadFactor) { + this(initialCapacity, loadFactor, DEFAULT_CONCURRENCY_LEVEL); + } + + + public ConcurrentWeakHashMap(int initialCapacity) { + this(initialCapacity, DEFAULT_LOAD_FACTOR, DEFAULT_CONCURRENCY_LEVEL); + } + + + public ConcurrentWeakHashMap() { + this(DEFAULT_INITIAL_CAPACITY, DEFAULT_LOAD_FACTOR, DEFAULT_CONCURRENCY_LEVEL); + } + + private HardRefKeyValue createHardRef(K k) { + HardRefKeyValue hardKey = HARD_REF.get(); + hardKey.set(k, null, k.hashCode()); + return hardKey; + } + + + @Override + public V get(Object key) { + + if (key == null) { + die("Null keys not allowed"); + } + final HardRefKeyValue hardRef = createHardRef((K) key); + + V result = map.get(hardRef); + hardRef.clear(); + return result; + } + + @Override + public V put(K key, V value) { + evictEntires(); + + if (key == null) { + die("No null keys"); + } + KeyValue weakKey = createWeakKey(key, value); + return map.put(weakKey, value); + + } + + @Override + public V remove(Object key) { + evictEntires(); + + + if (key == null) { + die("Null keys not allowed"); + } + final HardRefKeyValue hardRef = createHardRef((K) key); + + V removedValue = map.remove(hardRef); + + hardRef.clear(); + + return removedValue; + } + + @Override + public void putAll(Map map) { + + final Set> entries = map.entrySet(); + + for (Entry entry : entries) { + this.put(entry.getKey(), entry.getValue()); + } + + } + + + @Override + public int size() { + return entrySet().size(); + } + + @Override + public void clear() { + evictEntires(); + map.clear(); + } + + + @Override + public Collection values() { + evictEntires(); + return map.values(); + } + + @Override + public boolean isEmpty() { + return entrySet().isEmpty(); + } + + @Override + public boolean containsKey(Object key) { + + + if (key == null) { + die("Null keys not allowed"); + } + final HardRefKeyValue hardRef = createHardRef((K) key); + + boolean containsKey = map.containsKey(hardRef); + + hardRef.clear(); + return containsKey; + } + + @Override + public boolean containsValue(Object value) { + + + return map.containsKey(value); + + } + + private boolean evictEntires() { + WeakRefKeyValue weakKeyValue = (WeakRefKeyValue) referenceQueue.poll(); + + boolean processed = false; + + while (weakKeyValue != null) { + V value = weakKeyValue.getValue(); + map.remove(weakKeyValue, value); + processed = true; + } + return processed; + } + + @Override + public Set> entrySet() { + if (entrySet == null) entrySet = new EntrySet(); + return entrySet; + } + + @Override + public V putIfAbsent(final K key, final V value) { + evictEntires(); + return map.putIfAbsent(createWeakKey(key, value), value); + } + + private KeyValue createWeakKey(K key, V value) { + return new WeakRefKeyValue<>(key, value, referenceQueue); + } + + @Override + public boolean remove(final Object key, final Object value) { + evictEntires(); + return map.remove(createWeakKey((K) key, (V) value), value); + } + + @Override + public boolean replace(final K key, final V oldValue, final V newValue) { + evictEntires(); + return map.replace(createWeakKey(key, oldValue), oldValue, newValue); + } + + @Override + public V replace(final K key, final V value) { + evictEntires(); + return map.replace(createWeakKey(key, value), value); + } + + private static interface KeyValue { + + + public K getKey(); + + public V getValue(); + + + public int hashCode(); + + } + + private static class HardRefKeyValue implements KeyValue { + + K key; + V value; + int hashCode; + + + void set(K key, V value, int hashCode) { + this.key = key; + this.value = value; + this.hashCode = hashCode; + } + + @Override + public K getKey() { + return key; + } + + @Override + public V getValue() { + return value; + } + + public void clear() { + value = null; + hashCode = 0; + key = null; + } + + + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof KeyValue)) { + return false; + } + Object ours = getKey(); + + Object theirs = ((KeyValue) o).getKey(); + if (theirs == null || ours == null) { + return false; + } + + if (ours == theirs) { + return true; + } + return ours.equals(theirs); + } + + public int hashCode() { + return hashCode; + } + } + + private static class WeakRefKeyValue extends WeakReference implements KeyValue { + protected final ReferenceQueue referenceQueue; + private final int hashCode; + private final V value; + + private WeakRefKeyValue(K referent, V v, ReferenceQueue q) { + super(referent, q); + value = v; + this.hashCode = referent.hashCode(); + this.referenceQueue = q; + } + + public K getKey() { + return this.get(); + } + + public V getValue() { + return value; + } + + + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof KeyValue)) { + return false; + } + Object ours = get(); + + Object theirs = ((KeyValue) o).getKey(); + if (theirs == null || ours == null) { + return false; + } + + if (ours == theirs) { + return true; + } + return ours.equals(theirs); + } + + public int hashCode() { + return hashCode; + } + } + + /* Internal class for entry sets */ + private class EntrySet extends AbstractSet> { + + final Iterator, V>> iterator = map.entrySet().iterator(); + + @Override + public Iterator> iterator() { + return new Iterator>() { + Pair next = null; + + @Override + public boolean hasNext() { + next = null; + + while (iterator.hasNext()) { + Entry, V> entry = iterator.next(); + KeyValue kv = entry.getKey(); + K key = kv != null ? kv.getKey() : null; + if (key == null) { + continue; + } + next = new Pair<>(key, kv.getValue()); + + } + return next != null; + } + + @Override + public Entry next() { + return next; + } + + @Override + public void remove() { + iterator.remove(); + } + }; + } + + @Override + public boolean isEmpty() { + return !iterator().hasNext(); + } + + @Override + public int size() { + int count = 0; + for (Iterator i = iterator(); i.hasNext(); i.next()) { + count++; + } + return count; + } + + @Override + public boolean remove(Object o) { + evictEntires(); + + + HardRefKeyValue key = createHardRef((K) o); + + + boolean removed = map.remove(key) != null; + + key.clear(); + return removed; + } + + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/collections/DoubleList.java b/datastructures-json-boon/src/main/java/org/boon/collections/DoubleList.java new file mode 100644 index 0000000..658d5fc --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/collections/DoubleList.java @@ -0,0 +1,442 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.collections; + +import org.boon.StringScanner; +import org.boon.core.reflection.BeanUtils; +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.primitive.Dbl; + +import java.util.AbstractList; +import java.util.Arrays; +import java.util.Collection; +import java.util.Map; + +import static org.boon.primitive.Dbl.grow; + +/** + * Holds primitive values in a list like object for ints. + *

+ *

+ * Has sum, mean, median, standardDeviation, reduceBy, + * variance. + *

+ * + * @author Rick Hightower + */ +public class DoubleList extends AbstractList { + + + /** + * Values in this list. + */ + private double[] values; + /** + * Index of last value added. + */ + private int end; + + /** + * Create a new list with this many items in it. + */ + public DoubleList(int capacity) { + this.values = new double[capacity]; + } + + + /** + * Create a new list with exactly 10 items in it. + */ + public DoubleList() { + this.values = new double[10]; + } + + + /** + * Create a new list with this many items in it. + */ + public DoubleList(double values[]) { + this.values = values; + this.end = values.length; + } + + /** + * Creates a primitive list based on an input list and a property path + * + * @param inputList input list + * @param propertyPath property path + * @return primitive list + */ + public static DoubleList toDoubleList(Collection inputList, String propertyPath) { + if (inputList.size() == 0) { + return new DoubleList(0); + } + + DoubleList outputList = new DoubleList(inputList.size()); + + if (propertyPath.contains(".") || propertyPath.contains("[")) { + + String[] properties = StringScanner.splitByDelimiters(propertyPath, ".[]"); + + for (Object o : inputList) { + outputList.add(BeanUtils.getPropertyDouble(o, properties)); + } + + } else { + + Map fields = BeanUtils.getFieldsFromObject(inputList.iterator().next()); + FieldAccess fieldAccess = fields.get(propertyPath); + for (Object o : inputList) { + outputList.add(fieldAccess.getDouble(o)); + } + } + + return outputList; + } + + /** + * Get the value at index + * + * @param index index + * @return value + */ + @Override + public Double get(int index) { + return values[index]; + } + + + /** + * Get the value at index + * + * @param index index + * @return value + */ + public double idx(int index) { + return values[index]; + } + + + /** + * Get the value at index + * + * @param index index + * @return value + */ + public double atIndex(int index) { + return values[index]; + } + + + /** + * Get the value at index but don't use a wrapper + * + * @param index index + * @return value + */ + public final double getFloat(int index) { + return values[index]; + } + + /** + * Add a new value to the list. + * + * @param integer new value + * @return was able to add. + */ + @Override + public boolean add(Double integer) { + if (end + 1 >= values.length) { + values = grow(values); + } + values[end] = integer; + end++; + return true; + } + + /** + * Add a new value to the list but don't employ a wrapper. + * + * @param value new value + * @return was able to add. + */ + public boolean addFloat(double value) { + if (end + 1 >= values.length) { + values = grow(values); + } + values[end] = value; + end++; + return true; + } + + /** + * Add a new value to the list but don't employ a wrapper. + * + * @param integer new value + * @return was able to add. + */ + public DoubleList add(double integer) { + if (end + 1 >= values.length) { + values = grow(values); + } + values[end] = integer; + end++; + return this; + } + + /** + * Add a new array to the list. + * + * @return was able to add. + */ + public boolean addArray(double... integers) { + if (end + integers.length >= values.length) { + values = grow(values, (values.length + integers.length) * 2); + } + + System.arraycopy(integers, 0, values, end, integers.length); + end += integers.length; + return true; + } + + /** + * Set a value in the list. + * + * @param index index + * @param element new value + * @return old value at this index + */ + @Override + public Double set(int index, Double element) { + double oldValue = values[index]; + values[index] = element; + return oldValue; + } + + + /** + * Set a value in the list. + * + * @param index index + * @param element new value + * @return old value at this index + */ + public double idx(int index, double element) { + double oldValue = values[index]; + values[index] = element; + return oldValue; + } + + + /** + * Set a value in the list. + * + * @param index index + * @param element new value + * @return old value at this index + */ + public double atIndex(int index, double element) { + double oldValue = values[index]; + values[index] = element; + return oldValue; + } + + + /** + * Set in a new value no wrapper + * + * @param index index + * @param element new value + * @return old value at this index + */ + public double setFloat(int index, double element) { + double oldValue = values[index]; + values[index] = element; + return oldValue; + } + + /** + * Return the current size. + * + * @return + */ + @Override + public int size() { + return end; + } + + + /** + * Sums the values with bounds checking. + */ + public double sum() { + + return Dbl.sum(values, end); + } + + + /** + * Get a copy of the array up to the end element. + * + * @return + */ + public double[] toValueArray() { + + return Arrays.copyOfRange(values, 0, end); + } + + + /** + * This would be a good opportunity to reintroduce dynamic invoke + * + * @param function function + * @return + */ + public double reduceBy(Object function) { + return Dbl.reduceBy(values, end, function); + } + + + /** + * This would be a good opportunity to reintroduce dynamic invoke + * + * @param function function + * @return + */ + public double reduceBy(Object function, String name) { + return Dbl.reduceBy(values, end, function, name); + } + + + /** + * @param reduceBy reduceBy function + * @return the reduction + */ + public double reduceBy(Dbl.ReduceBy reduceBy) { + return Dbl.reduceBy(values, end, reduceBy); + } + + /** + * Mean + * + * @return mean + */ + public double mean() { + return Dbl.mean(values, end); + } + + + /** + * standardDeviation + * + * @return standardDeviation + */ + public double standardDeviation() { + return Dbl.standardDeviation(values, end); + } + + + /** + * variance + * + * @return variance + */ + public double variance() { + return Dbl.variance(values, end); + } + + + /** + * max + * + * @return max + */ + public double max() { + return Dbl.max(values, end); + } + + + /** + * min + * + * @return min + */ + public double min() { + return Dbl.min(values, end); + } + + + /** + * median + * + * @return median + */ + public double median() { + return Dbl.median(values, end); + } + + + /** + * sort + * + * @return sort + */ + public void sort() { + Arrays.sort(values, 0, end); + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + + DoubleList values = (DoubleList) o; + + if (end != values.end) return false; + if (!Dbl.equals(0, end, this.values, values.values)) return false; + + return true; + } + + @Override + public int hashCode() { + int result = 1; + result = 31 * result + (values != null ? Dbl.hashCode(0, end, values) : 0); + result = 31 * result + end; + return result; + } + + + public void clear() { + this.values = new double[10]; + this.end = 0; + } + +} + diff --git a/datastructures-json-boon/src/main/java/org/boon/collections/FakeMapEntrySet.java b/datastructures-json-boon/src/main/java/org/boon/collections/FakeMapEntrySet.java new file mode 100644 index 0000000..5b378a9 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/collections/FakeMapEntrySet.java @@ -0,0 +1,36 @@ +package org.boon.collections; + +import org.boon.Lists; +import org.boon.Maps; + +import java.util.AbstractSet; +import java.util.Iterator; +import java.util.Map; + +/** + * Created by Richard on 9/1/14. + */ +public class FakeMapEntrySet extends AbstractSet> { + + + Map.Entry[] array; + + public FakeMapEntrySet(int size, String[] keys, Object[] values) { + + array = new Map.Entry[size]; + + for (int index = 0; index < size; index++) { + array[index] = Maps.entry(keys[index], values[index]); + } + } + + @Override + public Iterator> iterator() { + return Lists.list(this.array).iterator(); + } + + @Override + public int size() { + return array.length; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/collections/FloatList.java b/datastructures-json-boon/src/main/java/org/boon/collections/FloatList.java new file mode 100644 index 0000000..a1953bf --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/collections/FloatList.java @@ -0,0 +1,441 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.collections; + +import org.boon.StringScanner; +import org.boon.core.reflection.BeanUtils; +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.primitive.Flt; + +import java.util.AbstractList; +import java.util.Arrays; +import java.util.Collection; +import java.util.Map; + +import static org.boon.primitive.Flt.grow; + +/** + * Holds primitive values in a list like object for ints. + *

+ *

+ * Has sum, mean, median, standardDeviation, reduceBy, + * variance. + *

+ * + * @author Rick Hightower + */ +public class FloatList extends AbstractList { + + + /** + * Values in this list. + */ + private float[] values; + /** + * Index of last value added. + */ + private int end; + + /** + * Create a new list with this many items in it. + */ + public FloatList(int capacity) { + this.values = new float[capacity]; + } + + + /** + * Create a new list with exactly 10 items in it. + */ + public FloatList() { + this.values = new float[10]; + } + + + /** + * Create a new list with this many items in it. + */ + public FloatList(float values[]) { + this.values = values; + this.end = values.length; + } + + /** + * Creates a primitive list based on an input list and a property path + * + * @param inputList input list + * @param propertyPath property path + * @return primitive list + */ + public static FloatList toFloatList(Collection inputList, String propertyPath) { + if (inputList.size() == 0) { + return new FloatList(0); + } + + FloatList outputList = new FloatList(inputList.size()); + + if (propertyPath.contains(".") || propertyPath.contains("[")) { + + String[] properties = StringScanner.splitByDelimiters(propertyPath, ".[]"); + + for (Object o : inputList) { + outputList.add(BeanUtils.getPropertyFloat(o, properties)); + } + + } else { + + Map fields = BeanUtils.getFieldsFromObject(inputList.iterator().next()); + FieldAccess fieldAccess = fields.get(propertyPath); + for (Object o : inputList) { + outputList.add(fieldAccess.getFloat(o)); + } + } + + return outputList; + } + + /** + * Get the value at index + * + * @param index index + * @return value + */ + @Override + public Float get(int index) { + return values[index]; + } + + + /** + * Get the value at index + * + * @param index index + * @return value + */ + public float idx(int index) { + return values[index]; + } + + + /** + * Get the value at index + * + * @param index index + * @return value + */ + public float atIndex(int index) { + return values[index]; + } + + + /** + * Get the value at index but don't use a wrapper + * + * @param index index + * @return value + */ + public final float getFloat(int index) { + return values[index]; + } + + /** + * Add a new value to the list. + * + * @param integer new value + * @return was able to add. + */ + @Override + public boolean add(Float integer) { + if (end + 1 >= values.length) { + values = grow(values); + } + values[end] = integer; + end++; + return true; + } + + /** + * Add a new value to the list but don't employ a wrapper. + * + * @param value new value + * @return was able to add. + */ + public boolean addFloat(float value) { + if (end + 1 >= values.length) { + values = grow(values); + } + values[end] = value; + end++; + return true; + } + + /** + * Add a new value to the list but don't employ a wrapper. + * + * @param integer new value + * @return was able to add. + */ + public FloatList add(float integer) { + if (end + 1 >= values.length) { + values = grow(values); + } + values[end] = integer; + end++; + return this; + } + + /** + * Add a new array to the list. + * + * @return was able to add. + */ + public boolean addArray(float... integers) { + if (end + integers.length >= values.length) { + values = grow(values, (values.length + integers.length) * 2); + } + + System.arraycopy(integers, 0, values, end, integers.length); + end += integers.length; + return true; + } + + /** + * Set a value in the list. + * + * @param index index + * @param element new value + * @return old value at this index + */ + @Override + public Float set(int index, Float element) { + float oldValue = values[index]; + values[index] = element; + return oldValue; + } + + + /** + * Set a value in the list. + * + * @param index index + * @param element new value + * @return old value at this index + */ + public float idx(int index, float element) { + float oldValue = values[index]; + values[index] = element; + return oldValue; + } + + + /** + * Set a value in the list. + * + * @param index index + * @param element new value + * @return old value at this index + */ + public float atIndex(int index, float element) { + float oldValue = values[index]; + values[index] = element; + return oldValue; + } + + + /** + * Set in a new value no wrapper + * + * @param index index + * @param element new value + * @return old value at this index + */ + public float setFloat(int index, float element) { + float oldValue = values[index]; + values[index] = element; + return oldValue; + } + + /** + * Return the current size. + * + * @return + */ + @Override + public int size() { + return end; + } + + + /** + * Sums the values with bounds checking. + */ + public float sum() { + + return Flt.sum(values, end); + } + + + /** + * Get a copy of the array up to the end element. + * + * @return + */ + public float[] toValueArray() { + + return Arrays.copyOfRange(values, 0, end); + } + + + /** + * This would be a good opportunity to reintroduce dynamic invoke + * + * @param function function + * @return + */ + public double reduceBy(Object function) { + return Flt.reduceBy(values, end, function); + } + + + /** + * This would be a good opportunity to reintroduce dynamic invoke + * + * @param function function + * @return + */ + public double reduceBy(Object function, String name) { + return Flt.reduceBy(values, end, function, name); + } + + + /** + * @param reduceBy reduceBy function + * @return the reduction + */ + public double reduceBy(Flt.ReduceBy reduceBy) { + return Flt.reduceBy(values, end, reduceBy); + } + + /** + * Mean + * + * @return mean + */ + public float mean() { + return Flt.mean(values, end); + } + + + /** + * standardDeviation + * + * @return standardDeviation + */ + public float standardDeviation() { + return Flt.standardDeviation(values, end); + } + + + /** + * variance + * + * @return variance + */ + public float variance() { + return Flt.variance(values, end); + } + + + /** + * max + * + * @return max + */ + public float max() { + return Flt.max(values, end); + } + + + /** + * min + * + * @return min + */ + public float min() { + return Flt.min(values, end); + } + + + /** + * median + * + * @return median + */ + public float median() { + return Flt.median(values, end); + } + + + /** + * sort + * + * @return sort + */ + public void sort() { + Arrays.sort(values, 0, end); + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + + FloatList values = (FloatList) o; + + if (end != values.end) return false; + if (!Flt.equals(0, end, this.values, values.values)) return false; + + return true; + } + + @Override + public int hashCode() { + int result = 1; + result = 31 * result + (values != null ? Flt.hashCode(0, end, values) : 0); + result = 31 * result + end; + return result; + } + + + public void clear() { + this.values = new float[10]; + this.end = 0; + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/collections/IntList.java b/datastructures-json-boon/src/main/java/org/boon/collections/IntList.java new file mode 100644 index 0000000..92cab07 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/collections/IntList.java @@ -0,0 +1,389 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.collections; + +import org.boon.StringScanner; +import org.boon.core.reflection.BeanUtils; +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.primitive.Int; + +import java.util.AbstractList; +import java.util.Arrays; +import java.util.Collection; +import java.util.Map; + +import static org.boon.primitive.Int.grow; + +/** + * Holds primitive values in a list like object for ints. + *

+ *

+ * Has sum, mean, median, standardDeviation, reduceBy, + * variance. + *

+ * + * @author Rick Hightower + */ +public class IntList extends AbstractList { + + + /** + * Values in this list. + */ + private int[] values; + /** + * Index of last value added. + */ + private int end; + + /** + * Create a new list with this many items in it. + */ + public IntList(int capacity) { + this.values = new int[capacity]; + } + + + /** + * Create a new list with exactly 10 items in it. + */ + public IntList() { + this.values = new int[10]; + } + + + /** + * Create a new list with this many items in it. + */ + public IntList(int values[]) { + this.values = values; + this.end = values.length; + } + + /** + * Creates a primitive list based on an input list and a property path + * + * @param inputList input list + * @param propertyPath property path + * @return primitive list + */ + public static IntList toIntList(Collection inputList, String propertyPath) { + if (inputList.size() == 0) { + return new IntList(0); + } + + IntList outputList = new IntList(inputList.size()); + + if (propertyPath.contains(".") || propertyPath.contains("[")) { + + String[] properties = StringScanner.splitByDelimiters(propertyPath, ".[]"); + + for (Object o : inputList) { + outputList.add(BeanUtils.getPropertyInt(o, properties)); + } + + } else { + + Map fields = BeanUtils.getFieldsFromObject(inputList.iterator().next()); + FieldAccess fieldAccess = fields.get(propertyPath); + for (Object o : inputList) { + outputList.add(fieldAccess.getInt(o)); + } + } + + return outputList; + } + + public void clear() { + this.values = new int[10]; + this.end = 0; + } + + /** + * Get the value at index + * + * @param index index + * @return value + */ + @Override + public Integer get(int index) { + return values[index]; + } + + + /** + * Get the value at index but don't use a wrapper + * + * @param index index + * @return value + */ + public final int getInt(int index) { + return values[index]; + } + + /** + * Add a new value to the list. + * + * @param integer new value + * @return was able to add. + */ + @Override + public boolean add(Integer integer) { + if (end + 1 >= values.length) { + values = grow(values); + } + values[end] = integer; + end++; + return true; + } + + /** + * Add a new value to the list but don't employ a wrapper. + * + * @param integer new value + * @return was able to add. + */ + public boolean addInt(int integer) { + if (end + 1 >= values.length) { + values = grow(values); + } + values[end] = integer; + end++; + return true; + } + + /** + * Add a new value to the list but don't employ a wrapper. + * + * @param integer new value + * @return was able to add. + */ + public IntList add(int integer) { + if (end + 1 >= values.length) { + values = grow(values); + } + values[end] = integer; + end++; + return this; + } + + /** + * Add a new array to the list. + * + * @return was able to add. + */ + public boolean addArray(int... integers) { + if (end + integers.length >= values.length) { + values = grow(values, (values.length + integers.length) * 2); + } + + System.arraycopy(integers, 0, values, end, integers.length); + end += integers.length; + return true; + } + + /** + * Set a value in the list. + * + * @param index index + * @param element new value + * @return old value at this index + */ + @Override + public Integer set(int index, Integer element) { + int oldValue = values[index]; + values[index] = element; + return oldValue; + } + + + /** + * Set in a new value no wrapper + * + * @param index index + * @param element new value + * @return old value at this index + */ + public int setInt(int index, int element) { + int oldValue = values[index]; + values[index] = element; + return oldValue; + } + + /** + * Return the current size. + * + * @return + */ + @Override + public int size() { + return end; + } + + + /** + * Sums the values with bounds checking. + */ + public int sum() { + + return Int.sum(values, end); + } + + + /** + * Get a copy of the array up to the end element. + * + * @return + */ + public int[] toValueArray() { + + return Arrays.copyOfRange(values, 0, end); + } + + + /** + * This would be a good opportunity to reintroduce dynamic invoke + * + * @param function function + * @return + */ + public long reduceBy(Object function) { + return Int.reduceBy(values, end, function); + } + + + /** + * This would be a good opportunity to reintroduce dynamic invoke + * + * @param function function + * @return + */ + public long reduceBy(Object function, String name) { + return Int.reduceBy(values, end, function, name); + } + + + /** + * @param reduceBy reduceBy function + * @return the reduction + */ + public long reduceBy(Int.ReduceBy reduceBy) { + return Int.reduceBy(values, end, reduceBy); + } + + /** + * Mean + * + * @return mean + */ + public int mean() { + return Int.mean(values, end); + } + + + /** + * standardDeviation + * + * @return standardDeviation + */ + public int standardDeviation() { + return Int.standardDeviation(values, end); + } + + + /** + * variance + * + * @return variance + */ + public int variance() { + return Int.variance(values, end); + } + + + /** + * max + * + * @return max + */ + public int max() { + return Int.max(values, end); + } + + + /** + * min + * + * @return min + */ + public int min() { + return Int.min(values, end); + } + + + /** + * median + * + * @return median + */ + public int median() { + return Int.median(values, end); + } + + + /** + * sort + * + * @return sort + */ + public void sort() { + Arrays.sort(values, 0, end); + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + + IntList integers = (IntList) o; + + if (end != integers.end) return false; + if (!Int.equals(0, end, values, integers.values)) return false; + + return true; + } + + @Override + public int hashCode() { + int result = 1; + result = 31 * result + (values != null ? Int.hashCode(0, end, values) : 0); + result = 31 * result + end; + return result; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/collections/LazyMap.java b/datastructures-json-boon/src/main/java/org/boon/collections/LazyMap.java new file mode 100644 index 0000000..eb0f620 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/collections/LazyMap.java @@ -0,0 +1,260 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.collections; + +import org.boon.Maps; +import org.boon.Sets; +import org.boon.core.Sys; +import org.boon.primitive.Arry; + +import java.util.*; + +/** + * This maps only builds once you ask for a key for the first time. + * It is designed to not incur the overhead of creating a map unless needed. + */ +public class LazyMap extends AbstractMap { + + + final static boolean althashingThreshold = System.getProperty("jdk.map.althashing.threshold") != null; + private final boolean delayMap; + /* Holds the actual map that will be lazily created. */ + private Map map; + /* The size of the map. */ + private int size; + /* The keys stored in the map. */ + private String[] keys; + /* The values stored in the map. */ + private Object[] values; + + public LazyMap() { + keys = new String[5]; + values = new Object[5]; + this.delayMap = false; + } + + + public LazyMap(int initialSize) { + keys = new String[initialSize]; + values = new Object[initialSize]; + this.delayMap = false; + + } + + + public LazyMap(int initialSize, boolean delayMap) { + keys = new String[initialSize]; + values = new Object[initialSize]; + this.delayMap = delayMap; + + } + + public LazyMap(final List keys, final List values, boolean delayMap) { + + this.keys = Arry.array(String.class, keys); + this.values = Arry.array(Object.class, values); + + this.size = this.keys.length; + + this.delayMap = delayMap; + + } + + public Object put(String key, Object value) { + if (map == null) { + keys[size] = key; + values[size] = value; + size++; + if (size == keys.length) { + keys = Arry.grow(keys); + values = Arry.grow(values); + } + return null; + } else { + return map.put(key, value); + } + } + + @Override + public Set> entrySet() { + if (map != null) map.entrySet(); + + if (delayMap) { + + return new FakeMapEntrySet(size, keys, values); + } else { + buildIfNeeded(); + return map.entrySet(); + } + } + + @Override + public int size() { + if (map == null) { + return size; + } else { + return map.size(); + } + } + + @Override + public boolean isEmpty() { + if (map == null) { + return size == 0; + } else { + return map.isEmpty(); + } + } + + @Override + public boolean containsValue(Object value) { + if (map == null) { + throw new RuntimeException("wrong type of map"); + } else { + return map.containsValue(value); + } + } + + @Override + public boolean containsKey(Object key) { + buildIfNeeded(); + return map.containsKey(key); + } + + @Override + public Object get(Object key) { + buildIfNeeded(); + return map.get(key); + } + + private void buildIfNeeded() { + if (map == null) { + + /** added to avoid hash collision attack. */ + if (Sys.is1_7OrLater() && althashingThreshold) { + map = new LinkedHashMap<>(size, 0.01f); + } else { + map = new TreeMap<>(); + } + + for (int index = 0; index < size; index++) { + map.put(keys[index], values[index]); + } + this.keys = null; + this.values = null; + } + } + + @Override + public Object remove(Object key) { + + buildIfNeeded(); + return map.remove(key); + + } + + @Override + public void putAll(Map m) { + buildIfNeeded(); + map.putAll(m); + } + + @Override + public void clear() { + if (map == null) { + size = 0; + } else { + map.clear(); + } + } + + @Override + public Set keySet() { + + + if (map == null) { + return Sets.set(size, keys); + } else { + return map.keySet(); + } + + } + + @Override + public Collection values() { + if (map == null) { + return Arrays.asList(values); + } else { + return map.values(); + } + + } + + @Override + public boolean equals(Object o) { + buildIfNeeded(); + return map.equals(o); + } + + @Override + public int hashCode() { + buildIfNeeded(); + return map.hashCode(); + } + + @Override + public String toString() { + + buildIfNeeded(); + return map.toString(); + } + + @Override + protected Object clone() throws CloneNotSupportedException { + + if (map == null) { + return null; + } else { + if (map instanceof LinkedHashMap) { + return ((LinkedHashMap) map).clone(); + } else { + return Maps.copy(this); + } + } + } + + public LazyMap clearAndCopy() { + LazyMap map = new LazyMap(size); + for (int index = 0; index < size; index++) { + map.put(keys[index], values[index]); + } + size = 0; + return map; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/collections/LongList.java b/datastructures-json-boon/src/main/java/org/boon/collections/LongList.java new file mode 100644 index 0000000..0bcfa31 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/collections/LongList.java @@ -0,0 +1,395 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.collections; + +import org.boon.StringScanner; +import org.boon.core.reflection.BeanUtils; +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.primitive.Lng; + +import java.util.AbstractList; +import java.util.Arrays; +import java.util.Collection; +import java.util.Map; + +import static org.boon.primitive.Lng.grow; + + +/** + * Holds primitive values in a list like object for long. + *

+ *

+ * Has sum, mean, median, standardDeviation, reduceBy, + * variance. + *

+ * + * @author Rick Hightower + */ +public class LongList extends AbstractList { + + + /** + * Values in this list. + */ + private long[] values; + /** + * Index of last value added. + */ + private int end; + + /** + * Create a new list with this many items in it. + */ + public LongList(int capacity) { + this.values = new long[capacity]; + } + + + /** + * Create a new list with exactly 10 items in it. + */ + public LongList() { + this.values = new long[10]; + } + + + /** + * Create a new list with this many items in it. + */ + public LongList(long values[]) { + this.values = values; + this.end = values.length; + } + + /** + * Creates a primitive list based on an input list and a property path + * + * @param inputList input list + * @param propertyPath property path + * @return primitive list + */ + public static LongList toLongList(Collection inputList, String propertyPath) { + if (inputList.size() == 0) { + return new LongList(0); + } + + LongList outputList = new LongList(inputList.size()); + + if (propertyPath.contains(".") || propertyPath.contains("[")) { + + String[] properties = StringScanner.splitByDelimiters(propertyPath, ".[]"); + + for (Object o : inputList) { + outputList.add(BeanUtils.getPropertyLong(o, properties)); + } + + } else { + + Map fields = BeanUtils.getFieldsFromObject(inputList.iterator().next()); + FieldAccess fieldAccess = fields.get(propertyPath); + for (Object o : inputList) { + outputList.add(fieldAccess.getLong(o)); + } + } + + return outputList; + } + + /** + * Get the value at index + * + * @param index index + * @return value + */ + @Override + public Long get(int index) { + return values[index]; + } + + + /** + * Get the value at index but don't use a wrapper + * + * @param index index + * @return value + */ + public final long getInt(int index) { + return values[index]; + } + + /** + * Add a new value to the list. + * + * @param integer new value + * @return was able to add. + */ + @Override + public boolean add(Long integer) { + if (end + 1 >= values.length) { + values = grow(values); + } + values[end] = integer; + end++; + return true; + } + + /** + * Add a new value to the list but don't employ a wrapper. + * + * @param integer new value + * @return was able to add. + */ + public boolean addLong(long integer) { + if (end + 1 >= values.length) { + values = grow(values); + } + values[end] = integer; + end++; + return true; + } + + + /** + * Add a new value to the list but don't employ a wrapper. + * + * @param integer new value + * @return was able to add. + */ + public LongList add(long integer) { + if (end + 1 >= values.length) { + values = grow(values); + } + values[end] = integer; + end++; + return this; + } + + + /** + * Add a new array to the list. + * + * @return was able to add. + */ + public boolean addArray(long... integers) { + if (end + integers.length >= values.length) { + values = grow(values, (values.length + integers.length) * 2); + } + + System.arraycopy(integers, 0, values, end, integers.length); + end += integers.length; + return true; + } + + /** + * Set a value in the list. + * + * @param index index + * @param element new value + * @return old value at this index + */ + @Override + public Long set(int index, Long element) { + long oldValue = values[index]; + values[index] = element; + return oldValue; + } + + + /** + * Set in a new value no wrapper + * + * @param index index + * @param element new value + * @return old value at this index + */ + public long setLong(int index, int element) { + long oldValue = values[index]; + values[index] = element; + return oldValue; + } + + /** + * Return the current size. + * + * @return + */ + @Override + public int size() { + return end; + } + + + /** + * Sums the values with bounds checking. + */ + public long sum() { + + return Lng.sum(values, end); + } + + + /** + * Get a copy of the array up to the end element. + * + * @return + */ + public long[] toValueArray() { + + return Arrays.copyOfRange(values, 0, end); + } + + + /** + * This would be a good opportunity to reintroduce dynamic invoke + * + * @param function function + * @return + */ + public long reduceBy(Object function) { + return Lng.reduceBy(values, end, function); + } + + + /** + * This would be a good opportunity to reintroduce dynamic invoke + * + * @param function function + * @return + */ + public long reduceBy(Object function, String name) { + return Lng.reduceBy(values, end, function, name); + } + + + /** + * @param reduceBy reduceBy function + * @return the reduction + */ + public long reduceBy(Lng.ReduceBy reduceBy) { + return Lng.reduceBy(values, end, reduceBy); + } + + /** + * Mean + * + * @return mean + */ + public long mean() { + return Lng.mean(values, end); + } + + + /** + * standardDeviation + * + * @return standardDeviation + */ + public long standardDeviation() { + return Lng.standardDeviation(values, end); + } + + + /** + * variance + * + * @return variance + */ + public long variance() { + return Lng.variance(values, end); + } + + + /** + * max + * + * @return max + */ + public long max() { + return Lng.max(values, end); + } + + + /** + * min + * + * @return min + */ + public long min() { + return Lng.min(values, end); + } + + + /** + * median + * + * @return median + */ + public long median() { + return Lng.median(values, end); + } + + + /** + * sort + * + * @return sort + */ + public void sort() { + Arrays.sort(values, 0, end); + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + + LongList longs = (LongList) o; + + if (end != longs.end) return false; + if (!Lng.equals(0, end, values, longs.values)) return false; + + return true; + } + + @Override + public int hashCode() { + int result = 131313; + result = 31 * result + (values != null ? Lng.hashCode(0, end, values) : 0); + result = 31 * result + end; + return result; + } + + + public void clear() { + this.values = new long[10]; + this.end = 0; + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/collections/MultiMap.java b/datastructures-json-boon/src/main/java/org/boon/collections/MultiMap.java new file mode 100644 index 0000000..94d3cda --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/collections/MultiMap.java @@ -0,0 +1,33 @@ +package org.boon.collections; + +import java.util.Collection; +import java.util.Iterator; +import java.util.Map; + +/** + * Created by Richard on 9/26/14. + */ +public interface MultiMap extends Iterable>>, Map{ + Iterator>> iterator(); + + void add(K key, V v); + + V getFirst(K key); + + Iterable getAll(K key); + + boolean removeValueFrom(K key, V v); + + boolean removeMulti(K key); + + Iterable keySetMulti(); + + Iterable valueMulti(); + + void putAll(MultiMap params); + + Map> baseMap(); + + + public V getSingleObject(K name); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/collections/MultiMapImpl.java b/datastructures-json-boon/src/main/java/org/boon/collections/MultiMapImpl.java new file mode 100644 index 0000000..4a06169 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/collections/MultiMapImpl.java @@ -0,0 +1,388 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.collections; + +import org.boon.core.Conversions; + +import java.util.*; +import java.util.concurrent.ConcurrentHashMap; + +import static org.boon.Exceptions.die; + +public class MultiMapImpl implements MultiMap { + + private int initialSize = 10; + private Map> map = new ConcurrentHashMap<>(); + private Class collectionClass = ArrayList.class; + + + public MultiMapImpl(Class collectionClass, int initialSize) { + this.collectionClass = collectionClass; + this.initialSize = initialSize; + } + + public MultiMapImpl(Class collectionClass) { + this.collectionClass = collectionClass; + } + + + public MultiMapImpl() { + } + + @Override + public Iterator>> iterator() { + return map.entrySet().iterator(); + } + + + @Override + public void add(K key, V v) { + Collection collection = map.get(key); + if (collection == null) { + collection = createCollection(key); + } + collection.add(v); + } + + + @Override + public V put(K key, V value) { + Collection collection = map.get(key); + if (collection == null) { + collection = createCollection(key); + } + collection.add(value); + return null; + } + + @Override + public V remove(Object key) { + map.remove(key); + return null; + } + + + @Override + public void putAll(Map m) { + final Set> entries = m.entrySet(); + for (Entry entry : entries) { + this.add(entry.getKey(), entry.getValue()); + } + } + + @Override + public void clear() { + map.clear(); + } + + @Override + public Set keySet() { + return map.keySet(); + } + + + @Override + public V get(Object key) { + return getFirst((K)key); + } + + + + @Override + public V getFirst(K key) { + Collection collection = map.get(key); + if (collection == null || collection.size() == 0) { + return null; + } + return collection.iterator().next(); + } + + + + @Override + public Iterable getAll(K key) { + Collection collection = map.get(key); + if (collection == null) { + return Collections.emptyList(); + } + return collection; + } + + + + @Override + public boolean removeValueFrom(K key, V v) { + Collection collection = map.get(key); + if (collection == null) { + return false; + } + return collection.remove(v); + } + + + + + @Override + public boolean removeMulti(K key) { + return map.remove(key) !=null; + } + + private Collection createCollection(K key) { + Collection collection = (Collection) Conversions.createCollection(collectionClass, initialSize); + map.put(key, collection); + return collection; + } + + @Override + public Iterable keySetMulti() { + return map.keySet(); + } + + @Override + public Iterable valueMulti() { + + List list = new ArrayList(); + Collection> values = map.values(); + + for (Collection c : values) { + for (Object o : c) { + list.add(o); + } + } + return list; + } + + + @Override + public Collection values() { + + List list = new ArrayList(); + Collection> values = map.values(); + + for (Collection c : values) { + for (Object o : c) { + list.add(o); + } + } + return list; + + } + + + @Override + public Set> entrySet() { + + + final Set>> entries = map.entrySet(); + + return new Set>() { + + @Override + public int size() { + return entries.size(); + } + + @Override + public boolean isEmpty() { + return entries.isEmpty(); + } + + @Override + public boolean contains(Object o) { + return entries.contains(o); + } + + @Override + public Iterator> iterator() { + final Iterator>> iterator = entries.iterator(); + return new Iterator>() { + + @Override + public boolean hasNext() { + return iterator.hasNext(); + } + + @Override + public Entry next() { + final Entry> next = iterator.next(); + final Collection value = next.getValue(); + V theValue = null; + if (value instanceof List) { + theValue = ((List) value).get(0); + } + + final V item = theValue; + + return new Entry() { + @Override + public K getKey() { + return next.getKey(); + } + + @Override + public V getValue() { + return item; + } + + @Override + public V setValue(V value) { + return null; + } + }; + } + + @Override + public void remove() { + + } + }; + + } + + + @Override + public Object[] toArray() { + die("Not supported"); + return null; + } + + @Override + public T[] toArray(T[] a) { + die("Not supported"); + return null; + } + + @Override + public boolean add(Entry kvEntry) { + die("Not supported"); + + return false; + } + + @Override + public boolean remove(Object o) { + return false; + } + + @Override + public boolean containsAll(Collection c) { + die("Not supported"); + + return false; + } + + @Override + public boolean addAll(Collection> c) { + die("Not supported"); + + return false; + } + + @Override + public boolean retainAll(Collection c) { + die("Not supported"); + + return false; + } + + @Override + public boolean removeAll(Collection c) { + die("Not supported"); + + return false; + } + + @Override + public void clear() { + die("Not supported"); + + } + }; + } + + public int size() { + return map.size(); + } + + @Override + public boolean isEmpty() { + return map.size() == 0; + } + + @Override + public boolean containsKey(Object key) { + if (!map.containsKey(key)) { + return false; + } else { + Collection collection = map.get(key); + if (collection == null || collection.size() == 0) { + return false; + } + return true; + } + } + + + + @Override + public boolean containsValue(Object value) { + die("Not supported by MultiMap"); + return false; + } + + + + @Override + public void putAll(MultiMap params) { + map.putAll(params.baseMap()); + + } + + @Override + public Map> baseMap() { + return map; + } + + @Override + public V getSingleObject(K name) { + final Collection vs = map.get(name); + if (vs == null || vs.size()==0) { + return null; + } + if (vs.size() == 1) { + vs.iterator().hasNext(); + return vs.iterator().next(); + } else { + return null; + } + + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/collections/MultiMaps.java b/datastructures-json-boon/src/main/java/org/boon/collections/MultiMaps.java new file mode 100644 index 0000000..73d2f7b --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/collections/MultiMaps.java @@ -0,0 +1,17 @@ +package org.boon.collections; + +import java.util.ArrayList; + +/** + * Created by Richard on 9/28/14. + */ +public class MultiMaps { + + public static MultiMap multiMap() { + return new MultiMapImpl(ArrayList.class); + } + + public static MultiMap safeMultiMap() { + return new MultiMapImpl(ConcurrentLinkedHashSet.class); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/collections/SortableConcurrentList.java b/datastructures-json-boon/src/main/java/org/boon/collections/SortableConcurrentList.java new file mode 100644 index 0000000..7600217 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/collections/SortableConcurrentList.java @@ -0,0 +1,323 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.collections; + + +import java.util.*; +import java.util.concurrent.locks.ReadWriteLock; +import java.util.concurrent.locks.ReentrantReadWriteLock; + +/** + * Just a concurrent list. + * + * @param + */ +public class SortableConcurrentList implements List { + private final ReadWriteLock readWriteLock = new ReentrantReadWriteLock(); + private final List list; + + public SortableConcurrentList(List list) { + this.list = list; + } + + public SortableConcurrentList() { + this.list = new ArrayList<>(); + } + + public boolean remove(Object o) { + readWriteLock.writeLock().lock(); + boolean ret; + try { + ret = list.remove(o); + } finally { + readWriteLock.writeLock().unlock(); + } + return ret; + } + + @Override + public boolean containsAll(Collection c) { + readWriteLock.readLock().lock(); + try { + return list.containsAll(c); + } finally { + readWriteLock.readLock().unlock(); + } + } + + @Override + public boolean addAll(Collection c) { + readWriteLock.writeLock().lock(); + try { + return list.addAll(c); + } finally { + readWriteLock.writeLock().unlock(); + } + } + + @Override + public boolean addAll(int index, Collection c) { + readWriteLock.writeLock().lock(); + try { + return list.addAll(index, c); + } finally { + readWriteLock.writeLock().unlock(); + } + } + + @Override + public boolean removeAll(Collection c) { + readWriteLock.writeLock().lock(); + try { + return list.removeAll(c); + } finally { + readWriteLock.writeLock().unlock(); + } + } + + @Override + public boolean retainAll(Collection c) { + readWriteLock.writeLock().lock(); + try { + return list.retainAll(c); + } finally { + readWriteLock.writeLock().unlock(); + } + } + + public boolean add(T t) { + readWriteLock.writeLock().lock(); + boolean ret; + try { + ret = list.add(t); + } finally { + readWriteLock.writeLock().unlock(); + } + return ret; + } + + public void clear() { + readWriteLock.writeLock().lock(); + try { + list.clear(); + } finally { + readWriteLock.writeLock().unlock(); + } + } + + + public int size() { + readWriteLock.readLock().lock(); + try { + return list.size(); + } finally { + readWriteLock.readLock().unlock(); + } + } + + @Override + public boolean isEmpty() { + readWriteLock.readLock().lock(); + try { + return list.isEmpty(); + } finally { + readWriteLock.readLock().unlock(); + } + } + + public boolean contains(Object o) { + readWriteLock.readLock().lock(); + try { + return list.contains(o); + } finally { + readWriteLock.readLock().unlock(); + } + } + + @Override + public Iterator iterator() { + readWriteLock.readLock().lock(); + try { + return new ArrayList<>(list).iterator(); + } finally { + readWriteLock.readLock().unlock(); + } + } + + @Override + public Object[] toArray() { + + readWriteLock.readLock().lock(); + try { + return list.toArray(); + } finally { + readWriteLock.readLock().unlock(); + } + } + + @Override + public T[] toArray(final T[] a) { + + readWriteLock.readLock().lock(); + try { + return list.toArray(a); + } finally { + readWriteLock.readLock().unlock(); + } + } + + public T get(int index) { + readWriteLock.readLock().lock(); + try { + return list.get(index); + } finally { + readWriteLock.readLock().unlock(); + } + } + + @Override + public T set(int index, T element) { + readWriteLock.writeLock().lock(); + try { + return list.set(index, element); + } finally { + readWriteLock.writeLock().unlock(); + } + } + + @Override + public void add(int index, T element) { + readWriteLock.writeLock().lock(); + try { + list.add(index, element); + } finally { + readWriteLock.writeLock().unlock(); + } + + } + + @Override + public T remove(int index) { + readWriteLock.writeLock().lock(); + try { + return list.remove(index); + } finally { + readWriteLock.writeLock().unlock(); + } + } + + @Override + public int indexOf(Object o) { + readWriteLock.readLock().lock(); + try { + return list.indexOf(o); + } finally { + readWriteLock.readLock().unlock(); + } + } + + @Override + public int lastIndexOf(Object o) { + readWriteLock.readLock().lock(); + try { + return list.lastIndexOf(o); + } finally { + readWriteLock.readLock().unlock(); + } + } + + @Override + public ListIterator listIterator() { + readWriteLock.readLock().lock(); + try { + return new ArrayList(list).listIterator(); + } finally { + readWriteLock.readLock().unlock(); + } + } + + @Override + public ListIterator listIterator(int index) { + readWriteLock.readLock().lock(); + try { + return new ArrayList(list).listIterator(index); + } finally { + readWriteLock.readLock().unlock(); + } + } + + @Override + public List subList(int fromIndex, int toIndex) { + readWriteLock.readLock().lock(); + try { + return list.subList(fromIndex, toIndex); + } finally { + readWriteLock.readLock().unlock(); + } + } + + @Override + public String toString() { + readWriteLock.readLock().lock(); + try { + return list.toString(); + } finally { + readWriteLock.readLock().unlock(); + } + } + + + public void sort() { + readWriteLock.writeLock().lock(); + try { + + Collections.sort(list); + } finally { + readWriteLock.writeLock().unlock(); + } + } + + + public List sortAndReturnPurgeList(float removePercent) { + readWriteLock.writeLock().lock(); + try { + int size = list.size(); + int removeSize = (int) (size - (size * removePercent)); + int start = size - removeSize; + + Collections.sort(list); + + List removeList = new ArrayList<>(list.subList(0, start)); + list.removeAll(removeList); + return removeList; + } finally { + readWriteLock.writeLock().unlock(); + } + } +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/concurrent/Counter.java b/datastructures-json-boon/src/main/java/org/boon/concurrent/Counter.java new file mode 100644 index 0000000..c17ec93 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/concurrent/Counter.java @@ -0,0 +1,95 @@ +package org.boon.concurrent; + +import java.util.concurrent.atomic.AtomicLong; + +/** + * Created by Richard on 7/2/14. + */ +public class Counter { + + + private AtomicLong count = new AtomicLong(); + long _count = 0; + + + public void increment() { + long __count = _count; + + if (__count >= 100) { + count.addAndGet(__count); + __count = 0; + } + + __count++; + + _count = __count; + } + + public long incrementAndGet() { + long __count = _count; + + if (__count >= 100) { + count.addAndGet(__count); + __count = 0; + } + + __count++; + + _count = __count; + return _count; + } + + public void add(int size) { + long __count = _count; + + + + __count += size; + + if (__count >= 1000) { + count.addAndGet(__count); + __count = 0; + } + + _count = __count; + + } + + + public long addAndGet(int size) { + long __count = _count; + + + + __count += size; + + if (__count >= 1000) { + count.addAndGet(__count); + __count = 0; + } + + _count = __count; + + return _count; + + } + + public synchronized void reset() { + _count=0; + count.set(0); + } + + public synchronized long get() { + + + count.addAndGet(_count); + _count=0; + return count.get(); + } + + + @Override + public synchronized String toString() { + return "" + get(); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/concurrent/SimpleExecutors.java b/datastructures-json-boon/src/main/java/org/boon/concurrent/SimpleExecutors.java new file mode 100644 index 0000000..b6934d5 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/concurrent/SimpleExecutors.java @@ -0,0 +1,43 @@ +package org.boon.concurrent; + +import java.util.concurrent.ExecutorService; +import java.util.concurrent.Executors; +import java.util.concurrent.ThreadFactory; + +/** + * Created by Richard on 9/10/14. + */ +public class SimpleExecutors { + + public static ExecutorService threadPool(int size, final String poolName) { + + final int [] threadId = new int[1]; + threadId[0] = 0; + return Executors.newFixedThreadPool(size, + new ThreadFactory() { + @Override + public Thread newThread(Runnable runnable) { + threadId[0] = threadId[0]++; + Thread thread = new Thread(runnable); + thread.setName(poolName + " " + threadId[0]); + return thread; + } + } + ); + } + + + public static ExecutorService threadPool(final String poolName) { + + return Executors.newCachedThreadPool( + new ThreadFactory() { + @Override + public Thread newThread(Runnable runnable) { + Thread thread = new Thread(runnable); + thread.setName(poolName ); + return thread; + } + } + ); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/concurrent/Timer.java b/datastructures-json-boon/src/main/java/org/boon/concurrent/Timer.java new file mode 100644 index 0000000..ce3360b --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/concurrent/Timer.java @@ -0,0 +1,110 @@ +package org.boon.concurrent; + +import org.boon.Logger; +import org.boon.core.Sys; + +import java.util.concurrent.*; +import java.util.concurrent.atomic.AtomicLong; +import java.util.concurrent.atomic.AtomicReference; + +import static org.boon.Boon.configurableLogger; + + +public class Timer { + + + + + private Logger logger = configurableLogger(Timer.class); + + private AtomicLong time = new AtomicLong(System.nanoTime() / 1_000_000); + + + ScheduledExecutorService monitor; + + ScheduledFuture future; + + private static AtomicReference timeHolder = new AtomicReference<>(); + + public static Timer timer() { + if (timeHolder.get()==null) { + + if (timeHolder.compareAndSet(timeHolder.get(), new Timer())) { + timeHolder.get().start(); + } + + } + return timeHolder.get(); + } + + + public void stop() { + future.cancel(true); + monitor.shutdownNow(); + monitor = null; + } + + + private void start() { + + + + if (monitor == null) + monitor = Executors.newScheduledThreadPool(1, + new ThreadFactory() { + @Override + public Thread newThread(Runnable runnable) { + Thread thread = new Thread(runnable); + thread.setPriority(Thread.MAX_PRIORITY); + thread.setName("Timer OutputQueue Manager"); + return thread; + } + } + ); + + + future = monitor.scheduleAtFixedRate(new Runnable() { + @Override + public void run() { + try { + manageTimer(); + } catch (Exception ex) { + logger.error(ex, "can't manage timeHolder"); + } + } + }, 50, 50, TimeUnit.MILLISECONDS); + + + + + } + + private void manageTimer() { + + int count=0; + while (true) { + + count++; + Sys.sleep(5); + time.addAndGet(5); + + if (count > 100) { + time.set(System.nanoTime() / 1_000_000); + count = 0; + } + + } + } + + + public long time() { + return time.get(); + } + + + public long now() { + return time.get(); + } + + +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/config/ContextConfig.java b/datastructures-json-boon/src/main/java/org/boon/config/ContextConfig.java new file mode 100644 index 0000000..07ce1bf --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/config/ContextConfig.java @@ -0,0 +1,170 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.config; + +import org.boon.IO; +import org.boon.Str; +import org.boon.di.Context; +import org.boon.di.DependencyInjection; +import org.boon.json.JsonParserAndMapper; +import org.boon.json.JsonParserFactory; + +import java.nio.file.Path; +import java.util.*; + +import static org.boon.Boon.puts; + + +public enum ContextConfig { + + + JSON { + + + @Override + public Context createContext( String configNamespace, boolean startsWith, MetaConfigEvents events, List resources ) { + return createContext( configNamespace, startsWith, events, resources.toArray( new String[resources.size()] ) ); + } + + public Context createContext( String... resources ) { + return createContext( null, false, null, resources ); + } + + + public Context createContext( List resources ) { + return createContext( null, false, null, resources.toArray( new String[resources.size()] ) ); + } + + + + public Context createContext( String namespace, boolean startsWith, String... resources ) { + return createContext( namespace, startsWith, null, resources ); + } + + @Override + public Context createContext( MetaConfigEvents events, String... resources ) { + return createContext( null, false, events, resources ); + } + + public Context createContext( String namespace, boolean startsWith, MetaConfigEvents events, String... resources ) { + return DependencyInjection.fromMap(createConfigMap(namespace, startsWith, events, resources)); + } + + + private Map createConfigMap( String namespace, boolean startsWith, + MetaConfigEvents events, String... resources ) { + return createConfigMap( namespace, startsWith, events, Arrays.asList( resources ) ); + } + + + + private Map createConfigMap( String namespace, boolean startsWith, + MetaConfigEvents events, + List resources ) { + + Map all = new HashMap<>( ); + + Map child; + + for ( String resource : resources ) { + if (startsWith) { + if (!resource.startsWith( namespace + "." ) ){ + continue; + } + } + if ( resource.endsWith( "/" ) ) { + child = createMapFromDir( namespace, startsWith, events, resource ); + all.putAll( child ); + } else if ( resource.endsWith( ".json" ) ) { + child = createMapFromFile( namespace, startsWith, events, IO.path(resource) ); + all.putAll(child); + } + + } + return all; + } + + private Map createMapFromFile( String namespace, boolean startsWith, + MetaConfigEvents events, Path resource ) { + NamespaceEventHandler jsonCreatorEventHandler = new NamespaceEventHandler( namespace, events ); + JsonParserAndMapper laxParser = new JsonParserFactory().createParserWithEvents( jsonCreatorEventHandler ); + + + Map all; + + Map fileConfig = laxParser.parseMap( IO.read( resource ) ); + if ( fileConfig.containsKey( "META" ) ) { + fileConfig.remove( "META" ); + } + + if (jsonCreatorEventHandler.include().size() > 0) { + all = createConfigMap( namespace, startsWith, events, jsonCreatorEventHandler.include() ); + all.putAll( fileConfig ); + } else { + all = fileConfig; + } + + + return all; + } + + + private Map createMapFromDir( String namespace, boolean startWith, MetaConfigEvents events, String resource ) { + + Map all = new HashMap<>( ); + + Map child; + + List jsonFiles = IO.pathsByExt(resource, ".json"); + for ( Path jsonFile : jsonFiles ) { + child = createMapFromFile( namespace, startWith, events, jsonFile ); + all.putAll(child); + } + return all; + } + + }; + + + public abstract Context createContext( String... resources ); + + + public abstract Context createContext( List resources ); + + + + public abstract Context createContext( String configNamespace, boolean startsWith, String... resources ); + + public abstract Context createContext( MetaConfigEvents events, String... resources ); + + public abstract Context createContext( String configNamespace, boolean startsWith, MetaConfigEvents events, String... resources ); + + public abstract Context createContext( String configNamespace, boolean startsWith, MetaConfigEvents events, List resources ); + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/config/ContextConfigReader.java b/datastructures-json-boon/src/main/java/org/boon/config/ContextConfigReader.java new file mode 100644 index 0000000..0776edf --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/config/ContextConfigReader.java @@ -0,0 +1,138 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.config; + + +import org.boon.di.Context; +import org.boon.di.Inject; +import org.boon.core.Predicate; + +import java.util.ArrayList; +import java.util.List; +import java.util.Map; + +public class ContextConfigReader { + + + private static final String CONFIG_CLASSPATH_RESOURCE = System.getProperty( "BOON_CONFIG_CLASSPATH_RESOURCE", "classpath://etc/boon/"); + + private static final String CONFIG_DIR = System.getProperty( "BOON_CONFIG_DIR", "/etc/boon/"); + + private static final String RUNTIME_MODULE_NAME = System.getProperty( "BOON_RUNTIME_MODULE_NAME", "boon"); + + private static final String MODULE_CONFIG_DIR = System.getProperty( "BOON_MODULE_CONFIG_DIR", CONFIG_DIR + RUNTIME_MODULE_NAME + "/"); + + + + @Inject + private boolean useNameSpacePrefix = false; + + + @Inject + private ContextConfig contextConfig = ContextConfig.JSON; + + + @Inject + private String namespace; + + + @Inject + private List resources = new ArrayList<>( ); + + + @Inject + private Predicate rules; + + public Context read() { + + if (resources.size() == 0 ) { + resources.add( MODULE_CONFIG_DIR ); + resources.add( CONFIG_CLASSPATH_RESOURCE ); + } + + MetaConfigEvents metaConfigEvents = null; + if ( rules != null ) { + + metaConfigEvents = new MetaConfigEvents() { + @Override + public boolean parsedMeta( Map meta ) { + return handleMeta(meta); + } + }; + } + + return contextConfig.createContext( namespace, useNameSpacePrefix, metaConfigEvents, resources ); + + } + + private boolean handleMeta( Map meta ) { + return rules.test(meta); + } + + + public ContextConfigReader resource(String resource) { + resources.add( resource ); + return this; + } + + + public ContextConfigReader resources(String... resources) { + for ( String resource : resources ) { + this.resources.add( resource ); + } + return this; + } + + + + public ContextConfigReader userNamespacePrefix() { + useNameSpacePrefix = true; + return this; + } + + + + public ContextConfigReader rule( Predicate criteria ) { + this.rules = criteria; + return this; + } + + + public ContextConfigReader namespace( String namespace ) { + this.namespace = namespace; + return this; + } + + + public static ContextConfigReader config() { + return new ContextConfigReader(); + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/config/MetaConfigEvents.java b/datastructures-json-boon/src/main/java/org/boon/config/MetaConfigEvents.java new file mode 100644 index 0000000..99de535 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/config/MetaConfigEvents.java @@ -0,0 +1,37 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.config; + +import java.util.Map; + +public interface MetaConfigEvents { + + public boolean parsedMeta(Map meta); + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/config/NamespaceEventHandler.java b/datastructures-json-boon/src/main/java/org/boon/config/NamespaceEventHandler.java new file mode 100644 index 0000000..1434f76 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/config/NamespaceEventHandler.java @@ -0,0 +1,160 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.config; + +import org.boon.core.Value; +import org.boon.json.JsonParserEvents; + +import java.util.List; +import java.util.Map; + +import static org.boon.Boon.puts; + + +/** + * Created by Richard on 2/5/14. + */ +public class NamespaceEventHandler implements JsonParserEvents { + + + private final MetaConfigEvents events; + private String namespace; + + private List include; + boolean continueParse = true; + + boolean inMeta = false; + + public List include() { + return include == null ? java.util.Collections.EMPTY_LIST : include; + } + + public NamespaceEventHandler( String namespace, MetaConfigEvents events ) { + this.namespace = namespace; + this.events = events; + } + + @Override + public boolean objectStart( int index ) { + return continueParse; + } + + @Override + public boolean objectEnd( int index, Map object ) { + + return continueParse; + } + + @Override + public boolean objectFieldName( int index, Map map, CharSequence name ) { + if (name!=null && name.toString().equals( "META" ) ) { + inMeta = true; + } + return continueParse; + } + + @Override + public boolean objectField( int index, Map map, CharSequence name, Object value ) { + + if ( inMeta && name!=null && name.toString().equals( "namespace" ) + && value instanceof CharSequence && !value.toString().equals( namespace )) { + + return continueParse=false; + } + + if (name!=null && name.toString().equals( "META" ) ) { + + Map meta = toMap( value ); + if (meta.containsKey( "include" )) { + include = toList( meta.get( "include" ) ); + puts ("include", include); + } + inMeta = false; + if (events!=null) { + continueParse = events.parsedMeta( meta ); + } + } + + return continueParse; + } + + private List toList( Object include ) { + if (include instanceof Value ) { + Value value = ( Value ) include; + return (List) value.toValue(); + } else { + return (List) include; + } + + } + + private Map toMap( Object field ) { + if (field instanceof Value ) { + Value value = ( Value ) field; + return (Map) value.toValue(); + } else { + return (Map) field; + } + } + + @Override + public boolean arrayStart( int index ) { + return continueParse; + } + + @Override + public boolean arrayEnd( int index, List list ) { + return continueParse; + } + + @Override + public boolean arrayItem( int index, List list, Object item ) { + return continueParse; + } + + @Override + public boolean number( int startIndex, int endIndex, Number number ) { + return continueParse; + } + + @Override + public boolean string( int startIndex, int endIndex, CharSequence string ) { + return continueParse; + } + + @Override + public boolean bool( int endIndex, boolean value ) { + return continueParse; + } + + @Override + public boolean nullValue( int endIndex ) { + return continueParse; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/AsyncFunction.java b/datastructures-json-boon/src/main/java/org/boon/core/AsyncFunction.java new file mode 100644 index 0000000..de16e67 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/AsyncFunction.java @@ -0,0 +1,44 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core; + +/** + * Created by Richard on 2/20/14. + */ +public interface AsyncFunction { + + /** + * Compute the result of applying the function to the input argument + * + * @param in the input object + * @return the function result + */ + void apply( IN in, Handler handler); + +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/core/Conversions.java b/datastructures-json-boon/src/main/java/org/boon/core/Conversions.java new file mode 100644 index 0000000..bd7b8d6 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/Conversions.java @@ -0,0 +1,1638 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core; + +import org.boon.*; +import org.boon.core.reflection.*; +import org.boon.primitive.Arry; + +import java.lang.reflect.Array; +import java.math.BigDecimal; +import java.math.BigInteger; +import java.text.DateFormat; +import java.text.ParseException; +import java.util.*; +import java.util.concurrent.ConcurrentHashMap; +import java.util.logging.Logger; + +import static org.boon.Boon.sputs; +import static org.boon.Exceptions.die; +import static org.boon.Exceptions.handle; +import static org.boon.core.Typ.getComponentType; +import static org.boon.core.Typ.isArray; + + +public class Conversions { + + private static final Logger log = Logger.getLogger(Conversions.class.getName()); + + + public static BigDecimal toBigDecimal(Object obj) { + if (obj instanceof BigDecimal) { + return (BigDecimal) obj; + } + + if (obj instanceof Value) { + return ((Value) obj).bigDecimalValue(); + } else if (obj instanceof String) { + return new BigDecimal((String) obj); + } else if (obj instanceof Number) { + double val = ((Number) obj).doubleValue(); + return BigDecimal.valueOf(val); + } + + return null; + } + + + public static BigInteger toBigInteger(Object obj) { + if (obj instanceof BigInteger) { + return (BigInteger) obj; + } + + if (obj instanceof Value) { + return ((Value) obj).bigIntegerValue(); + } else if (obj instanceof String) { + return new BigInteger((String) obj); + } else if (obj instanceof Number) { + long val = ((Number) obj).longValue(); + return BigInteger.valueOf(val); + } + + return null; + + } + + + public static int toInt(Object obj) { + return toInt(obj, Integer.MIN_VALUE); + } + + public static int toInt(Object obj, int defaultValue) { + if (obj.getClass() == int.class) { + return int.class.cast(obj); + } + if (obj instanceof Number) { + return ((Number) obj).intValue(); + } else if (obj instanceof Boolean || obj.getClass() == Boolean.class) { + boolean value = toBoolean(obj); + return value ? 1 : 0; + } else if (obj instanceof CharSequence) { + try { + return StringScanner.parseInt(Str.toString(obj)); + } catch (Exception ex) { + return defaultValue; + } + } + return defaultValue; + + } + + + public static byte toByte(Object obj) { + return toByte(obj, Byte.MIN_VALUE); + } + + public static byte toByte(Object obj, byte defaultByte) { + if (obj.getClass() == byte.class) { + return byte.class.cast(obj); + } else if (obj instanceof Number) { + return ((Number) obj).byteValue(); + } else { + return (byte) toInt(obj, defaultByte); + } + } + + public static short toShort(Object obj) { + return toShort(obj, Short.MIN_VALUE); + } + + public static short toShort(Object obj, final short shortDefault) { + + if (obj.getClass() == short.class) { + return short.class.cast(obj); + } else if (obj instanceof Number) { + return ((Number) obj).shortValue(); + } else { + return (short) toInt(obj, shortDefault); + } + } + + public static char toChar(Object obj) { + return toChar(obj, (char) 0); + } + + public static char toChar(Object obj, final char defaultChar) { + if (obj.getClass() == char.class) { + return char.class.cast(obj); + } else if (obj instanceof Character) { + return ((Character) obj).charValue(); + } else if (obj instanceof CharSequence) { + return obj.toString().charAt(0); + } else if (obj instanceof Number) { + return (char) toInt(obj); + } else if (obj instanceof Boolean || obj.getClass() == Boolean.class) { + boolean value = toBoolean(obj); + return value ? 'T' : 'F'; + } else if (obj.getClass().isPrimitive()) { + return (char) toInt(obj); + } else { + String str = toString(obj); + if (str.length() > 0) { + return str.charAt(0); + } else { + return defaultChar; + } + } + } + + public static long toLong(Object obj) { + return toLong(obj, Long.MIN_VALUE); + } + + + public static long toLongOrDie(Object obj) { + long l = toLong(obj, Long.MIN_VALUE); + if (l == Long.MIN_VALUE) { + die("Cannot convert", obj, "into long value", obj); + } + return l; + } + + public static long toLong(Object obj, final long longDefault) { + + if (obj instanceof Long) { + return (Long) obj; + } + + if (obj instanceof Number) { + return ((Number) obj).longValue(); + } else if (obj instanceof CharSequence) { + String str = Str.toString(obj); + if (Dates.isJsonDate(str)) { + return Dates.fromJsonDate(str).getTime(); + } + + try { + return StringScanner.parseLong(str); + } catch (Exception ex) { + return longDefault; + } + } else if (obj instanceof Date) { + return ((Date) obj).getTime(); + } else { + return toInt(obj); + } + + } + + public static Currency toCurrency(Object obj) { + if (obj instanceof Currency) { + return (Currency) obj; + } + + if (obj instanceof String) { + String str = Str.toString(obj); + return Currency.getInstance(str); + } + + return null; + } + + /** + * Converts the value to boolean. + * + * @param value value + * @return value converted to boolean + */ + public static boolean toBoolean(Object value) { + return toBoolean(value, false); + } + + + /** + * Converts the value to boolean, and if it is null, it uses the default value passed. + * + * @param obj value to convert to boolean + * @param defaultValue default value + * @return obj converted to boolean + */ + public static boolean toBoolean(Object obj, boolean defaultValue) { + + if (obj == null) { + return defaultValue; + } + + if (obj instanceof Boolean) { + return ((Boolean) obj).booleanValue(); + } else if (obj instanceof Number || obj.getClass().isPrimitive()) { + int value = toInt(obj); + return value != 0 ? true : false; + } else if (obj instanceof String || obj instanceof CharSequence) { + String str = Conversions.toString(obj); + if (str.length() == 0) { + return false; + } + if (str.equals("false")) { + return false; + } else { + return true; + } + } else if (Boon.isArray(obj)) { + return Boon.len(obj) > 0; + } else if (obj instanceof Collection) { + + if (len(obj) > 0) { + List list = Lists.list((Collection) obj); + while (list.remove(null)) { + + } + return Lists.len(list) > 0; + }else { + return false; + } + } else { + return toBoolean(Conversions.toString(obj)); + } + } + + public static boolean toBooleanOrDie(Object obj) { + + if (obj == null) { + die("Can't convert boolean from a null"); + } + + if (obj instanceof Boolean) { + return ((Boolean) obj).booleanValue(); + } else if (obj instanceof String || obj instanceof CharSequence) { + String str = Conversions.toString(obj); + if (str.length() == 0) { + return false; + } + if (str.equals("false")) { + return false; + } else if (str.equals("true")) { + return true; + } + die("Can't convert string", obj, "to boolean "); + return false; + } else { + die("Can't convert", obj, "to boolean "); + return false; + + } + } + + public static double toDouble(Object obj) { + + try { + if (obj instanceof Double) { + return (Double) obj; + } else if (obj instanceof Number) { + return ((Number) obj).doubleValue(); + } else if (obj instanceof CharSequence) { + try { + return Double.parseDouble(((CharSequence) obj).toString()); + } catch (Exception ex) { + die(String.format("Unable to convert %s to a double", obj.getClass())); + return Double.MIN_VALUE; + } + } else { + } + } catch (Exception ex) { + log.warning(String.format( + "unable to convert to double and there was an exception %s", + ex.getMessage())); + } + + die(String.format("Unable to convert %s to a double", obj.getClass())); + return Double.MIN_VALUE; // die throws an exception + + } + + public static float toFloat(Object obj) { + if (obj.getClass() == float.class) { + return (Float) obj; + } + + try { + if (obj instanceof Float) { + return (Float) obj; + } else if (obj instanceof Number) { + return ((Number) obj).floatValue(); + } else if (obj instanceof CharSequence) { + try { + return Float.parseFloat(Str.toString(obj)); + } catch (Exception ex) { + die(String.format("Unable to convert %s to a float", obj.getClass())); + return Float.MIN_VALUE; + } + } else { + } + } catch (Exception ex) { + + log.warning(String.format( + "unable to convert to float and there was an exception %s", + ex.getMessage())); + } + + die(String.format("Unable to convert %s to a float", obj.getClass())); + return Float.MIN_VALUE; + + } + + + public static T coerce(Class clz, Object value) { + if (value != null) { + if (clz == value.getClass()) { + return (T) value; + } + } + + return coerce(TypeType.getType(clz), clz, value); + } + + public static T createFromArg(Class clz, Object value) { + if (value == null) { + return null; + } + ClassMeta meta = ClassMeta.classMeta(clz); + List constructors = meta.oneArgumentConstructors(); + + if (constructors.size() == 0) { + return null; + } else if (constructors.size() == 1) { + ConstructorAccess constructorAccess = constructors.get(0); + Class arg1Type = constructorAccess.parameterTypes()[0]; + if (arg1Type.isInstance(value)) { + return (T) constructorAccess.create(value); + } else { + return (T) constructorAccess.create(coerce(arg1Type, value)); + } + } else { + for (ConstructorAccess c : constructors) { + Class arg1Type = c.parameterTypes()[0]; + if (arg1Type.isInstance(value)) { + return (T) c.create(value); + } + } + + + for (ConstructorAccess c : constructors) { + Class arg1Type = c.parameterTypes()[0]; + if (arg1Type.isAssignableFrom(value.getClass())) { + return (T) c.create(value); + } + } + } + return null; + } + + public static T coerce(TypeType coerceTo, Class clz, Object value) { + if (value == null) { + if (coerceTo != TypeType.INSTANCE && !clz.isPrimitive()) { + + return null; + } else if (clz.isPrimitive()) { + if (clz == boolean.class) { + return (T) (Boolean) false; + } + return (T) (Number) 0; + } + } + + switch (coerceTo) { + case STRING: + case CHAR_SEQUENCE: + return (T) value.toString(); + + + + case NUMBER: + if (value instanceof Number) { + return (T)value; + } else { + Double d = toDouble(value); + return (T) d; + } + + case INT: + case INTEGER_WRAPPER: + Integer i = toInt(value); + return (T) i; + + case SHORT: + case SHORT_WRAPPER: + Short s = toShort(value); + return (T) s; + + + case BYTE: + case BYTE_WRAPPER: + Byte by = toByte(value); + return (T) by; + + + case CHAR: + case CHAR_WRAPPER: + Character ch = toChar(value); + return (T) ch; + + case LONG: + case LONG_WRAPPER: + Long l = toLong(value); + return (T) l; + + case DOUBLE: + case DOUBLE_WRAPPER: + Double d = toDouble(value); + return (T) d; + + + case FLOAT: + case FLOAT_WRAPPER: + Float f = toFloat(value); + return (T) f; + + + case DATE: + return (T) toDate(value); + + case BIG_DECIMAL: + return (T) toBigDecimal(value); + + + case BIG_INT: + return (T) toBigInteger(value); + + case CALENDAR: + return (T) toCalendar(toDate(value)); + + case BOOLEAN: + case BOOLEAN_WRAPPER: + return (T) (Boolean) toBoolean(value); + + case MAP: + return (T) toMap(value); + + + case ARRAY: + case ARRAY_INT: + case ARRAY_BYTE: + case ARRAY_SHORT: + case ARRAY_FLOAT: + case ARRAY_DOUBLE: + case ARRAY_LONG: + case ARRAY_STRING: + case ARRAY_OBJECT: + return toPrimitiveArrayIfPossible(clz, value); + + + case LIST: + case SET: + case COLLECTION: + return toCollection(clz, value); + + case INSTANCE: + + if (value instanceof Value) { + value = ((Value)value).toValue(); + } + if (value instanceof Map) { + return MapObjectConversion.fromMap((Map) value, clz); + } else if (value instanceof List) { + return MapObjectConversion.fromList((List) value, clz); + } else if (clz.isInstance(value)) { + return (T) value; + } else { + return createFromArg(clz, value); + } + + case ENUM: + return (T) toEnum((Class) clz, value); + + + case PATH: + return (T) IO.path(value.toString()); + + + case CLASS: + return (T) toClass(value); + + case TIME_ZONE: + return (T) toTimeZone( value); + + + + case UUID: + return (T) toUUID(value); + + case CURRENCY: + return (T) toCurrency(value); + + case OBJECT: + return (T) value; + + + case HANDLER: + return (T) value; + + default: + return createFromArg(clz, value); + } + } + + private static UUID toUUID(Object value) { + return UUID.fromString(value.toString()); + } + + + public static T coerceWithFlag(Class clz, boolean [] flag, Object value) { + + return coerceWithFlag(TypeType.getType(clz), clz, flag, value); + } + + public static T coerceWithFlag(TypeType coerceTo, Class clz, boolean [] flag, Object value) { + + flag[0] = true; + if (value == null) { + return null; + } + + if (clz.isInstance(value)) { + return (T) value; + } + + switch (coerceTo) { + case STRING: + case CHAR_SEQUENCE: + return (T) value.toString(); + + case INT: + case INTEGER_WRAPPER: + Integer i = toInt(value); + if (i == Integer.MIN_VALUE) { + flag[0] = false; + } + return (T) i; + + + case SHORT: + case SHORT_WRAPPER: + Short s = toShort(value); + if (s == Short.MIN_VALUE) { + flag[0] = false; + } + return (T) s; + + + + case BYTE: + case BYTE_WRAPPER: + Byte by = toByte(value); + if (by == Byte.MIN_VALUE) { + flag[0] = false; + } + return (T) by; + + + case CHAR: + case CHAR_WRAPPER: + Character ch = toChar(value); + if (ch == (char) 0) { + flag[0] = false; + } + return (T) ch; + + case LONG: + case LONG_WRAPPER: + Long l = toLong(value); + if (l == Long.MIN_VALUE) { + flag[0] = false; + } + + return (T) l; + + case DOUBLE: + case DOUBLE_WRAPPER: + Double d = toDouble(value); + if (d == Double.MIN_VALUE) { + flag[0] = false; + } + + return (T) d; + + + case FLOAT: + case FLOAT_WRAPPER: + Float f = toFloat(value); + if (f == Float.MIN_VALUE) { + flag[0] = false; + } + return (T) f; + + case DATE: + return (T) toDate(value); + + case BIG_DECIMAL: + return (T) toBigDecimal(value); + + + case BIG_INT: + return (T) toBigInteger(value); + + case CALENDAR: + return (T) toCalendar(toDate(value)); + + + case BOOLEAN: + case BOOLEAN_WRAPPER: + return (T) (Boolean) toBooleanOrDie(value); + + case MAP: + return (T) toMap(value); + + + case ARRAY: + case ARRAY_INT: + case ARRAY_BYTE: + case ARRAY_SHORT: + case ARRAY_FLOAT: + case ARRAY_DOUBLE: + case ARRAY_LONG: + case ARRAY_STRING: + case ARRAY_OBJECT: + return toPrimitiveArrayIfPossible(clz, value); + + case COLLECTION: + return toCollection(clz, value); + + case INSTANCE: + if (value instanceof Map) { + return MapObjectConversion.fromMap((Map) value, clz); + } else if (value instanceof List) { + return MapObjectConversion.fromList((List) value, clz); + } else if (clz.isInstance(value)) { + return (T) value; + } else { + ClassMeta meta = ClassMeta.classMeta(clz); + List constructors = meta.oneArgumentConstructors(); + + if (constructors.size() == 0) { + return null; + } else if (constructors.size() == 1) { + ConstructorAccess constructorAccess = constructors.get(0); + Class arg1Type = constructorAccess.parameterTypes()[0]; + if (arg1Type.isInstance(value)) { + return (T) constructorAccess.create(value); + } else { + return (T) constructorAccess.create(coerce(arg1Type, value)); + } + } else { + for (ConstructorAccess c : constructors) { + Class arg1Type = c.parameterTypes()[0]; + if (arg1Type.isInstance(value)) { + return (T) c.create(value); + } + } + + + for (ConstructorAccess c : constructors) { + Class arg1Type = c.parameterTypes()[0]; + if (arg1Type.isAssignableFrom(value.getClass())) { + return (T) c.create(value); + } + } + + flag[0] = false; + break; + + } + } + + + case ENUM: + return (T) toEnum((Class) clz, value); + + case CLASS: + return (T) toClass(value); + + + case TIME_ZONE: + return (T) toTimeZone(flag, value); + + + case UUID: + return (T) toUUID(flag, value); + + case CURRENCY: + return (T) toCurrency(value); + + case OBJECT: + return (T) value; + + default: + flag[0] = false; + break; + } + return null; + } + + private static UUID toUUID(boolean[] flag, Object value) { + return toUUID(value); + } + + public static TimeZone toTimeZone(boolean[] flag, Object value) { + String id = value.toString(); + return TimeZone.getTimeZone(id); + } + + + public static TimeZone toTimeZone(Object value) { + String id = value.toString(); + return TimeZone.getTimeZone(id); + } + + @SuppressWarnings("unchecked") + public static T coerceClassic(Class clz, Object value) { + + if (value == null) { + return null; + } + + if (clz == value.getClass()) { + return (T) value; + } + + if (clz == Typ.string || clz == Typ.chars) { + return (T) value.toString(); + } else if (clz == Typ.integer || clz == Typ.intgr) { + Integer i = toInt(value); + return (T) i; + } else if (clz == Typ.longWrapper || clz == Typ.lng) { + Long l = toLong(value); + return (T) l; + } else if (clz == Typ.doubleWrapper || clz == Typ.dbl) { + Double i = toDouble(value); + return (T) i; + } else if (clz == Typ.date) { + return (T) toDate(value); + } else if (clz == Typ.bigInteger) { + return (T) toBigInteger(value); + } else if (clz == Typ.bigDecimal) { + return (T) toBigDecimal(value); + } else if (clz == Typ.calendar) { + return (T) toCalendar(toDate(value)); + } else if (clz == Typ.floatWrapper || clz == Typ.flt) { + Float i = toFloat(value); + return (T) i; + } else if (clz == Typ.stringArray) { + die("Need to fix this"); + return null; + } else if (clz == Typ.bool || clz == Typ.bln) { + Boolean b = toBoolean(value); + return (T) b; + } else if (Typ.isMap(clz)) { + return (T) toMap(value); + } else if (clz.isArray()) { + return toPrimitiveArrayIfPossible(clz, value); + } else if (Typ.isCollection(clz)) { + return toCollection(clz, value); + } else if (clz != null && clz.getPackage() != null && !clz.getPackage().getName().startsWith("java") + && Typ.isMap(value.getClass()) && Typ.doesMapHaveKeyTypeString(value)) { + return (T) MapObjectConversion.fromMap((Map) value); + } else if (clz.isEnum()) { + return (T) toEnum((Class) clz, value); + + } else { + return null; + } + } + + public static T toEnumOld(Class cls, String value) { + try { + return (T) Enum.valueOf(cls, value); + } catch (Exception ex) { + return (T) Enum.valueOf(cls, value.toUpperCase().replace('-', '_')); + } + } + + public static T toEnum(Class cls, String value) { + + return toEnum(cls, value, null); + } + + public static T toEnum(Class cls, String value, Enum defaultEnum) { + + T[] enumConstants = cls.getEnumConstants(); + for (T e : enumConstants) { + if (e.name().equals(value)) { + return e; + } + } + + + value = value.toUpperCase().replace('-', '_'); + for (T e : enumConstants) { + if (e.name().equals(value)) { + return e; + } + } + + value = Str.underBarCase(value); + for (T e : enumConstants) { + if (e.name().equals(value)) { + return e; + } + } + + + return (T) defaultEnum; + } + + public static T toEnum(Class cls, int value) { + + T[] enumConstants = cls.getEnumConstants(); + for (T e : enumConstants) { + if (e.ordinal() == value) { + return e; + } + } + return null; + } + + public static T toEnumOrDie(Class cls, int value) { + + T[] enumConstants = cls.getEnumConstants(); + for (T e : enumConstants) { + if (e.ordinal() == value) { + return e; + } + } + die("Can't convert ordinal value " + value + " into enum of type " + cls); + return null; + } + + + public static T toEnum(Class cls, Object value) { + + if (value instanceof Value) { + return ((Value) value).toEnum(cls); + } else if (value instanceof CharSequence) { + return toEnum(cls, value.toString()); + } else if (value instanceof Number || value.getClass().isPrimitive()) { + + int i = toInt(value); + return toEnum(cls, i); + } else { + + if (value instanceof Collection) { + return toEnum(cls, ((Collection) value).iterator().next()); + } + die( "Can't convert value " + value + " into enum of type " + cls ); + return null; + } + } + + @SuppressWarnings("unchecked") + public static T toPrimitiveArrayIfPossible(Class clz, Object value) { + if (clz == Typ.intArray) { + return (T) iarray(value); + } else if (clz == Typ.byteArray) { + return (T) barray(value); + } else if (clz == Typ.charArray) { + return (T) carray(value); + } else if (clz == Typ.shortArray) { + return (T) sarray(value); + } else if (clz == Typ.longArray) { + return (T) larray(value); + } else if (clz == Typ.floatArray) { + return (T) farray(value); + } else if (clz == Typ.doubleArray) { + return (T) darray(value); + } else if (value.getClass() == clz) { + return (T) value; + } else { + int index = 0; + Object newInstance = Array.newInstance(clz.getComponentType(), Boon.len(value)); + Iterator iterator = iterator(Typ.object, value); + while (iterator.hasNext()) { + + Object item = iterator.next(); + + if (clz.getComponentType().isAssignableFrom(item.getClass())) { + + BeanUtils.idx(newInstance, index, item); + + } else { + + item = coerce(clz.getComponentType(), item); + + BeanUtils.idx(newInstance, index, item); + } + index++; + } + return (T) newInstance; + } + } + + + public static double[] darray(Object value) { + //You could handleUnexpectedException shorts, bytes, longs and chars more efficiently + if (value.getClass() == Typ.doubleArray) { + return (double[]) value; + } + double[] values = new double[Boon.len(value)]; + int index = 0; + Iterator iterator = iterator(Object.class, value); + while (iterator.hasNext()) { + values[index] = toFloat(iterator.next()); + index++; + } + return values; + } + + public static float[] farray(Object value) { + //You could handleUnexpectedException shorts, bytes, longs and chars more efficiently + if (value.getClass() == Typ.floatArray) { + return (float[]) value; + } + float[] values = new float[Boon.len(value)]; + int index = 0; + Iterator iterator = iterator(Object.class, value); + while (iterator.hasNext()) { + values[index] = toFloat(iterator.next()); + index++; + } + return values; + } + + public static long[] larray(Object value) { + //You could handleUnexpectedException shorts, bytes, longs and chars more efficiently + if (value.getClass() == Typ.shortArray) { + return (long[]) value; + } + long[] values = new long[Boon.len(value)]; + int index = 0; + Iterator iterator = iterator(Object.class, value); + while (iterator.hasNext()) { + values[index] = toLong(iterator.next()); + index++; + } + return values; + } + + public static short[] sarray(Object value) { + //You could handleUnexpectedException shorts, bytes, longs and chars more efficiently + if (value.getClass() == Typ.shortArray) { + return (short[]) value; + } + short[] values = new short[Boon.len(value)]; + int index = 0; + Iterator iterator = iterator(Object.class, value); + while (iterator.hasNext()) { + values[index] = toShort(iterator.next()); + index++; + } + return values; + } + + public static int[] iarray(Object value) { + //You could handleUnexpectedException shorts, bytes, longs and chars more efficiently + if (value.getClass() == Typ.intArray) { + return (int[]) value; + } + int[] values = new int[Boon.len(value)]; + int index = 0; + Iterator iterator = iterator(Object.class, value); + while (iterator.hasNext()) { + values[index] = toInt(iterator.next()); + index++; + } + return values; + } + + public static byte[] barray(Object value) { + //You could handleUnexpectedException shorts, ints, longs and chars more efficiently + if (value.getClass() == Typ.byteArray) { + return (byte[]) value; + } + byte[] values = new byte[Boon.len(value)]; + int index = 0; + Iterator iterator = iterator(Object.class, value); + while (iterator.hasNext()) { + values[index] = toByte(iterator.next()); + index++; + } + return values; + } + + public static char[] carray(Object value) { + //You could handleUnexpectedException shorts, ints, longs and chars more efficiently + if (value.getClass() == Typ.charArray) { + return (char[]) value; + } + char[] values = new char[Boon.len(value)]; + int index = 0; + Iterator iterator = iterator(Typ.object, value); + while (iterator.hasNext()) { + values[index] = toChar(iterator.next()); + index++; + } + return values; + } + + @SuppressWarnings("unchecked") + public static Iterator iterator(final Object value) { + return iterator(null, value); + } + + public static Iterator iterator(Class class1, final Object value) { + + if (value == null) { + return Collections.EMPTY_LIST.iterator(); + } + + if (Boon.isArray(value)) { + final int length = Arry.len(value); + + return new Iterator() { + int i = 0; + + @Override + public boolean hasNext() { + return i < length; + } + + @Override + public T next() { + T next = (T) BeanUtils.idx(value, i); + i++; + return next; + } + + @Override + public void remove() { + } + }; + } else if (Typ.isCollection(value.getClass())) { + return ((Collection) value).iterator(); + } else { + return (Iterator) Collections.singleton(value).iterator(); + } + } + + @SuppressWarnings("unchecked") + public static T toCollection(Class clz, Object value) { + if (Typ.isList(clz)) { + return (T) toList(value); + } else if (Typ.isSortedSet(clz)) { + return (T) toSortedSet(value); + } else if (Typ.isSet(clz)) { + return (T) toSet(value); + } else { + return (T) toList(value); + } + } + + @SuppressWarnings({"rawtypes", "unchecked"}) + public static List toList(Object value) { + if (value instanceof List) { + return (List) value; + } else if (value instanceof Collection) { + return new ArrayList((Collection) value); + } else if (value == null) { + return new ArrayList(); + } else if (value instanceof Map) { + return new ArrayList(((Map)value).entrySet()); + } + else { + ArrayList list = new ArrayList(Boon.len(value)); + Iterator iterator = iterator(Typ.object, value); + while (iterator.hasNext()) { + list.add(iterator.next()); + } + return list; + } + } + + + public static Collection toCollection(Object value) { + if (value instanceof Collection) { + return (Collection) value; + } else if (value == null) { + return new ArrayList(); + } else if (value instanceof Map) { + return ((Map)value).entrySet(); + } + else { + ArrayList list = new ArrayList(Boon.len(value)); + Iterator iterator = iterator(Typ.object, value); + while (iterator.hasNext()) { + list.add(iterator.next()); + } + return list; + } + } + + @SuppressWarnings({"rawtypes", "unchecked"}) + public static Set toSet(Object value) { + if (value instanceof Set) { + return (Set) value; + } else if (value instanceof Collection) { + return new HashSet((Collection) value); + } else { + HashSet set = new HashSet(Boon.len(value)); + Iterator iterator = iterator(Typ.object, value); + while (iterator.hasNext()) { + set.add(iterator.next()); + } + return set; + } + } + + @SuppressWarnings({"rawtypes", "unchecked"}) + public static SortedSet toSortedSet(Object value) { + if (value instanceof Set) { + return (SortedSet) value; + } else if (value instanceof Collection) { + return new TreeSet((Collection) value); + } else { + TreeSet set = new TreeSet(); + Iterator iterator = iterator(Typ.object, value); + while (iterator.hasNext()) { + set.add(iterator.next()); + } + return set; + } + } + + + public static Map toMap(Object value) { + return MapObjectConversion.toMap(value); + } + + + + public static Number toWrapper(long l) { + if (l >= Integer.MIN_VALUE && l <= Integer.MAX_VALUE) { + return toWrapper((int) l); + } else { + return Long.valueOf(l); + } + } + + public static Number toWrapper(int i) { + if (i >= Byte.MIN_VALUE && i <= Byte.MAX_VALUE) { + return Byte.valueOf((byte) i); + } else if (i >= Short.MIN_VALUE && i <= Short.MAX_VALUE) { + return Short.valueOf((short) i); + } else { + return Integer.valueOf(i); + } + } + + public static Object wrapAsObject(boolean i) { + return Boolean.valueOf(i); + } + + + public static Object wrapAsObject(byte i) { + return Byte.valueOf(i); + } + + public static Object wrapAsObject(short i) { + return Short.valueOf(i); + } + + public static Object wrapAsObject(int i) { + return Integer.valueOf(i); + } + + public static Object wrapAsObject(long i) { + return Long.valueOf(i); + } + + public static Object wrapAsObject(double i) { + return Double.valueOf(i); + } + + public static Object wrapAsObject(float i) { + return Float.valueOf(i); + } + + public static Object toArrayGuessType(Collection value) { + Class componentType = Reflection.getComponentType(value); + Object array = Array.newInstance(componentType, value.size()); + @SuppressWarnings("unchecked") + Iterator iterator = (Iterator) value.iterator(); + int index = 0; + while (iterator.hasNext()) { + BeanUtils.idx(array, index, iterator.next()); + index++; + } + return array; + } + + +// public static Object toArray( Class componentType, Collection value ) { +// Object array = Array.newInstance( componentType, value.size() ); +// @SuppressWarnings ( "unchecked" ) +// Iterator iterator = ( Iterator ) value.iterator(); +// int index = 0; +// while ( iterator.hasNext() ) { +// BeanUtils.idx ( array, index, iterator.next () ); +// index++; +// } +// return array; +// } + + + public static T[] toArray(Class componentType, Collection collection) { + T[] array = (T[]) Array.newInstance(componentType, collection.size()); + + if (componentType.isAssignableFrom(getComponentType(collection))) { + return collection.toArray(array); + } else { + + int index = 0; + for (Object o : collection) { + array[index] = Conversions.coerce(componentType, o); + index++; + } + return array; + } + } + +// public static V[] array( Class type, final Collection array ) { +// return ( V[] ) Conversions.toArray( type, array ); +// } + + public static V[] array(Class type, final Collection array) { + return Conversions.toArray(type, array); + } + + public static Date toDate(Object object) { + + if (object instanceof Date) { + return (Date) object; + } else if (object instanceof Value) { + return ((Value) object).dateValue(); + } else if (object instanceof Calendar) { + return ((Calendar) object).getTime(); + } else if (object instanceof Long) { + return new Date((long) object); + } else if (object instanceof String) { + String val = (String) object; + char[] chars = FastStringUtils.toCharArray(val); + if (Dates.isISO8601QuickCheck(chars)) { + return Dates.fromISO8601DateLoose(chars); + } else { + return toDateUS(val); + } + } + return null; + } + + public static Calendar toCalendar(Date date) { + + final Calendar calendar = Calendar.getInstance(); + calendar.setTime(date); + return calendar; + + } + + public static Date toDate(Calendar c) { + return c.getTime(); + + } + + public static Date toDate(long value) { + return new Date(value); + } + + public static Date toDate(Long value) { + return new Date(value); + } + + public static Date toDate(String value) { + try { + return toDateUS(value); + } catch (Exception ex) { + try { + return DateFormat.getDateInstance(DateFormat.SHORT).parse(value); + } catch (ParseException e) { + die("Unable to parse date"); + return null; + } + + } + } + + + public static Date toDateUS(String string) { + + String[] split = StringScanner.splitByChars(string, new char[]{'.', '\\', '/', ':'}); + + if (split.length == 3) { + return Dates.getUSDate(toInt(split[0]), toInt(split[1]), toInt(split[2])); + } else if (split.length >= 6) { + return Dates.getUSDate(toInt(split[0]), toInt(split[1]), toInt(split[2]), + toInt(split[3]), toInt(split[4]), toInt(split[5]) + ); + } else { + die(String.format("Not able to parse %s into a US date", string)); + return null; + } + + } + + public static Date toEuroDate(String string) { + + String[] split = StringScanner.splitByChars(string, new char[]{'.', '\\', '/', ':'}); + + if (split.length == 3) { + return Dates.getEuroDate(toInt(split[0]), toInt(split[1]), toInt(split[2])); + } else if (split.length >= 6) { + return Dates.getEuroDate(toInt(split[0]), toInt(split[1]), toInt(split[2]), + toInt(split[3]), toInt(split[4]), toInt(split[5]) + ); + } else { + die(String.format("Not able to parse %s into a Euro date", string)); + return null; + } + + } + + public static Collection createCollection(Class type, int size) { + + if (type == List.class) { + return new ArrayList<>(size); + } else if (type == SortedSet.class) { + return new TreeSet<>(); + } else if (type == Set.class) { + return new LinkedHashSet<>(size); + } else if (Typ.isList(type)) { + return new ArrayList<>(); + } else if (Typ.isSortedSet(type)) { + return new TreeSet<>(); + } else if (Typ.isSet(type)) { + return new LinkedHashSet<>(size); + } else { + return new ArrayList(size); + } + + } + + + public static Map createMap(Class type, int size) { + + if (type == HashMap.class) { + return new HashMap<>(size); + } else if (type == TreeMap.class) { + return new TreeMap<>(); + } else if (type == SortedMap.class) { + return new TreeMap<>(); + } else if (type == ConcurrentHashMap.class) { + return new ConcurrentHashMap<>(); + } else { + return new HashMap(size); + } + + } + + + + public static List mapFilterNulls(Function converter, + Collection fromCollection) { + + ArrayList toList = new ArrayList<>(fromCollection.size()); + + for (FROM from : fromCollection) { + TO converted = converter.apply(from); + if (converted != null) { + toList.add(converted); + } + } + + return toList; + } + + + public static Object unifyListOrArray(Object o) { + return unifyListOrArray(o, null); + } + + /** + * This flattens a list. + * @param o object that might be a list + * @param list list to add o to or all of o's items to. + * @return an object or a list + */ + public static Object unifyListOrArray(Object o, List list) { + + if (o==null) { + return null; + } + + boolean isArray = o.getClass().isArray(); + + if (list == null && !isArray && !(o instanceof Iterable)) { + return o; + } + + if (list == null) { + list = new LinkedList(); + } + + + if (isArray) { + int length = Array.getLength( o ); + + for (int index = 0; index < length; index++) { + + Object o1 = Array.get(o, index); + if (o1 instanceof Iterable || o.getClass().isArray()) { + unifyListOrArray(o1, list); + } else { + list.add(o1); + } + } + } else if (o instanceof Collection) { + + Collection i = ((Collection) o); + + + + for (Object item : i) { + + if (item instanceof Iterable || o.getClass().isArray()) { + unifyListOrArray(item, list); + } else { + list.add(item); + } + + } + + + } else { + + list.add(o); + } + + return list; + + + } + + + + public static Object unifyList(List list) { + return unifyListOrArray(list, null); + } + + /** + * This flattens a list. + * @param o object that might be a list + * @param list list to add o to or all of o's items to. + * @return an object or a list + */ + public static Object unifyList(Object o, List list) { + + if (o==null) { + return null; + } + + + if (list == null) { + list = new ArrayList(); + } + + if (o instanceof Iterable) { + Iterable i = ((Iterable) o); + + + for (Object item : i) { + + unifyListOrArray(item, list); + + } + + + + } else { + list.add(o); + } + + return list; + + + } + + /** + * Cast an object to a comparable object. + * + * @param comparable + * @return + */ + public static Comparable comparable(Object comparable) { + return (Comparable) comparable; + } + + + public Number coerceNumber(Object inputArgument, Class paraType) { + Number number = (Number) inputArgument; + if (paraType == int.class || paraType == Integer.class) { + return number.intValue(); + } else if (paraType == double.class || paraType == Double.class) { + return number.doubleValue(); + } else if (paraType == float.class || paraType == Float.class) { + return number.floatValue(); + } else if (paraType == short.class || paraType == Short.class) { + return number.shortValue(); + } else if (paraType == byte.class || paraType == Byte.class) { + return number.byteValue(); + } + return null; + } + + + public static int lengthOf(Object obj) { + return len(obj); + } + + public static int len(Object obj) { + if (isArray(obj)) { + return Arry.len(obj); + } else if (obj instanceof CharSequence) { + return ((CharSequence) obj).length(); + } else if (obj instanceof Collection) { + return ((Collection) obj).size(); + } else if (obj instanceof Map) { + return ((Map) obj).size(); + } else if (obj == null) { + return 0; + } else { + return 1; + } + + } + + + + public static Class toClass(Object value) { + + if (value instanceof Class || value == null) { + return (Class) value; + } + return toClass(value.toString()); + } + + public static Class toClass(String str) { + + try { + return Class.forName(str); + } catch (ClassNotFoundException ex) { + return (Class) handle(Object.class, ex); + } + } + + public static String toString(Object obj, String defaultValue) { + + return (obj == null) ? defaultValue : obj.toString(); + + } + + + + public static String toString(Object obj) { + return (obj == null) ? "" : obj.toString(); + + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/Dates.java b/datastructures-json-boon/src/main/java/org/boon/core/Dates.java new file mode 100644 index 0000000..b72443c --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/Dates.java @@ -0,0 +1,976 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core; + +import org.boon.Exceptions; +import org.boon.Str; +import org.boon.core.reflection.FastStringUtils; +import org.boon.json.JsonException; +import org.boon.primitive.CharBuf; +import org.boon.primitive.CharScanner; + +import java.text.ParseException; +import java.text.SimpleDateFormat; +import java.util.Calendar; +import java.util.Date; +import java.util.TimeZone; + +public class Dates { + + public static final TimeZone GMT = TimeZone.getTimeZone("GMT"); + private static final TimeZone UTC_TIME_ZONE = TimeZone.getTimeZone( "UTC" ); + private static volatile long lastNow; + private static long MILLI_SECOND = 1; + private static long SECOND = MILLI_SECOND * 1000; + private static long MINUTE = 60 * SECOND; + private static long HOUR = 60 * MINUTE; + private static long DAY = 24 * HOUR; + private static long WEEK = 7 * DAY; + private static long MONTH = ( long ) ( 30.4167 * DAY ); + private static long YEAR = ( long ) ( 365.2425 * DAY ); + + + public static long utcNow() { + long now = System.currentTimeMillis(); + Calendar calendar = Calendar.getInstance(); + calendar.setTimeInMillis( now ); + calendar.setTimeZone( UTC_TIME_ZONE ); + long utcNow = calendar.getTime().getTime(); + lastNow = now; + return utcNow; + } + + public static long now() { + return System.currentTimeMillis(); + } + + + public static long timeZoneNow(TimeZone timeZone) { + Calendar calendar = Calendar.getInstance(); + return timeZoneNow(timeZone); + } + + + public static long timeZoneNow(TimeZone timeZone, Calendar calendar) { + long now = System.currentTimeMillis(); + calendar.setTimeInMillis( now ); + calendar.setTimeZone( timeZone ); + long timeZoneNow = calendar.getTime().getTime(); + return timeZoneNow; + } + + + + public static Calendar utcCalendar() { + Calendar calendar = Calendar.getInstance(); + calendar.setTimeZone( UTC_TIME_ZONE ); + return calendar; + } + + public static int durationInHours(long to, long from) { + long duration = Math.abs ( to - from ); + + return (int) (duration / HOUR); + + } + + + public static int durationInMinutes(long to, long from) { + long duration = Math.abs ( to - from ); + + return (int) (duration / MINUTE); + + } + + + public static long durationInSeconds(long to, long from) { + long duration = Math.abs ( to - from ); + + return (int) (duration / SECOND); + + } + + + public static long durationInMilis(long to, long from) { + long duration = Math.abs ( to - from ); + + return (int) (duration / MILLI_SECOND); + + } + + + public static long utcNowFast(Calendar utcCalendar) { + long now = Sys.time(); + long utcNow = utcCalendar.getTime().getTime(); + lastNow = now; + return utcNow; + } + + public static long utc( long time ) { + Calendar calendar = Calendar.getInstance(); + calendar.setTimeInMillis( time ); + calendar.setTimeZone( UTC_TIME_ZONE ); + long utcNow = calendar.getTime().getTime(); + lastNow = time; + return utcNow; + } + + + + public static long utcFast( long time, Calendar utcCalendar ) { + long utcNow = utcCalendar.getTime().getTime(); + lastNow = time; + return utcNow; + } + + /** + * For testing only, avoids potential timing issue. + */ + static long lastNow() { + return lastNow; + } + + + public static long fromUtcTimeToTimeZone( long utcTime, TimeZone timeZone ) { + + Calendar calendar = Calendar.getInstance( UTC_TIME_ZONE ); + calendar.setTimeInMillis( utcTime ); + calendar.setTimeZone( timeZone ); + return calendar.getTime().getTime(); + } + + + public static boolean before( long isThis, long beforeThis ) { + return isThis < beforeThis; + } + + + public static boolean after( long isThis, long afterThis ) { + return isThis > afterThis; + } + + public static long hourDuration (int count ) { + return count * HOUR; + } + + + public static long minuteDuration (int count ) { + return count * MINUTE; + } + + + public static long secondDuration (int count ) { + return count * SECOND; + } + + + public static long dayDuration (int count ) { + return count * DAY; + } + + public static long secondsFrom( long time, int seconds ) { + return time + ( seconds * SECOND ); + } + + public static long minutesFrom( long time, int minutes ) { + return time + ( minutes * MINUTE ); + } + + public static long hoursFrom( long time, int hours ) { + return time + ( hours * HOUR ); + } + + public static long daysFrom( long time, int days ) { + return time + ( days * DAY ); + } + + public static long weeksFrom( long time, int weeks ) { + return time + ( weeks * WEEK ); + } + + public static long monthsFrom( long time, int months ) { + return time + ( months * MONTH ); + } + + public static long yearsFrom( long time, int years ) { + return time + ( years * YEAR ); + } + + public static long utcDate( int year, int month, int day ) { + Calendar calendar = Calendar.getInstance(); + + /* Set to midnight. */ + midnight( calendar ); + + /* This might change the date, but when you convert it + back to the clocktime timezone, it will be correct. + */ + calendar.setTimeZone( UTC_TIME_ZONE ); + + + return internalDate( year, month, day, calendar ); + } + + public static long utcDate( int year, int month, int day, + int hour, int minute ) { + Calendar calendar = Calendar.getInstance(); + midnight( calendar ); + + /* This might change the date, but when you convert it + back to the clocktime timezone, it will be correct. + */ + calendar.setTimeZone( UTC_TIME_ZONE ); + + return internalDateLong( year, month, day, hour, minute, calendar ); + } + + private static long internalDateLong( int year, int month, int day, int hour, int minute, Calendar calendar ) { + + return internalDate( year, month, day, hour, minute, calendar ).getTime(); + + } + + + private static Date internalDate( int year, int month, int day, int hour, int minute, Calendar calendar ) { + calendar.set( Calendar.YEAR, year ); + calendar.set( Calendar.MONTH, month ); + calendar.set( Calendar.DAY_OF_MONTH, day ); + calendar.set( Calendar.HOUR_OF_DAY, hour ); + calendar.set( Calendar.MINUTE, minute ); + calendar.set( Calendar.SECOND, 0 ); + calendar.set( Calendar.MILLISECOND, 0 ); + + + return calendar.getTime(); + } + + + private static Date internalDate( TimeZone tz, int year, int month, int day, int hour, int minute, int second ) { + + Calendar calendar = Calendar.getInstance(); + + calendar.set( Calendar.YEAR, year ); + calendar.set( Calendar.MONTH, month - 1 ); + calendar.set( Calendar.DAY_OF_MONTH, day ); + calendar.set( Calendar.HOUR_OF_DAY, hour ); + calendar.set( Calendar.MINUTE, minute ); + calendar.set( Calendar.SECOND, second ); + calendar.set( Calendar.MILLISECOND, 0 ); + + calendar.setTimeZone( tz ); + + return calendar.getTime(); + } + + + private static Date internalDate( TimeZone tz, int year, int month, int day, int hour, + int minute, int second, int miliseconds ) { + + Calendar calendar = Calendar.getInstance(); + + calendar.set( Calendar.YEAR, year ); + calendar.set( Calendar.MONTH, month - 1 ); + calendar.set( Calendar.DAY_OF_MONTH, day ); + calendar.set( Calendar.HOUR_OF_DAY, hour ); + calendar.set( Calendar.MINUTE, minute ); + calendar.set( Calendar.SECOND, second ); + calendar.set( Calendar.MILLISECOND, miliseconds ); + + calendar.setTimeZone( tz ); + + return calendar.getTime(); + } + + public static long wallTimeDate( int year, int month, int day ) { + Calendar calendar = Calendar.getInstance(); + + /* Set to midnight. */ + midnight( calendar ); + + + return internalDate( year, month, day, calendar ); + } + + + public static long date( int year, int month, int day ) { + return utcDate( year, month, day ); + } + + public static long date( int year, int month, int day, + int hour, int minute ) { + return utcDate( year, month, day, hour, minute ); + + } + + + public static long date( TimeZone tz, int year, int month, int day ) { + Calendar calendar = Calendar.getInstance(); + + /* Set to midnight. */ + midnight( calendar ); + + calendar.setTimeZone( tz ); + + return internalDate( year, month, day, calendar ); + } + + private static long internalDate( int year, int month, int day, Calendar calendar ) { + calendar.set( Calendar.YEAR, year ); + calendar.set( Calendar.MONTH, month ); + calendar.set( Calendar.DAY_OF_MONTH, day ); + + calendar.set( Calendar.HOUR_OF_DAY, 0 ); + + calendar.set( Calendar.MINUTE, 0 ); + + calendar.set( Calendar.SECOND, 0 ); + + calendar.set( Calendar.MILLISECOND, 0 ); + + + return calendar.getTime().getTime(); + } + + public static long wallTimeDate( int year, int month, int day, + int hour, int minute ) { + Calendar calendar = Calendar.getInstance(); + midnight( calendar ); + + + return internalDateLong( year, month, day, hour, minute, calendar ); + } + + + public static Date toDate( TimeZone tz, int year, int month, int day, + int hour, int minute, int second ) { + return internalDate( tz, year, month, day, hour, minute, second ); + } + + + public static Date toDate( TimeZone tz, int year, int month, int day, + int hour, int minute, int second, int miliseconds ) { + return internalDate( tz, year, month, day, hour, minute, second, miliseconds ); + } + + public static Date toDate( int year, int month, int day, + int hour, int minute, int second, int miliseconds ) { + return internalDate( TimeZone.getDefault(), year, month, day, hour, minute, second, miliseconds ); + } + + public static long date( TimeZone tz, int year, int month, int day, + int hour, int minute ) { + Calendar calendar = Calendar.getInstance(); + midnight( calendar ); + calendar.setTimeZone( tz ); + + return internalDateLong( year, month, day, hour, minute, calendar ); + } + + private static void midnight( Calendar calendar ) { + /* Set to midnight. */ + calendar.set( Calendar.HOUR_OF_DAY, 0 ); + calendar.set( Calendar.MINUTE, 0 ); + calendar.set( Calendar.SECOND, 0 ); + calendar.set( Calendar.MILLISECOND, 0 ); + } + + /** + * Useful for generating string versions of timestamps + * + * @return euro style format. + */ + public static String euroUTCSystemDateNowString() { + long now = System.currentTimeMillis(); + return euroUTCSystemDateString( now ); + } + + + /** + * Useful for generated file names and generated work directories. + * + * @param timestamp the timestamp + * @return euro style format. + */ + public static String euroUTCSystemDateString( long timestamp ) { + Calendar calendar = Calendar.getInstance(); + calendar.setTimeInMillis( timestamp ); + calendar.setTimeZone( UTC_TIME_ZONE ); + int day = calendar.get( Calendar.DAY_OF_MONTH ); + int month = calendar.get( Calendar.MONTH ); + int year = calendar.get( Calendar.YEAR ); + int hour = calendar.get( Calendar.HOUR_OF_DAY ); + int minute = calendar.get( Calendar.MINUTE ); + int second = calendar.get( Calendar.SECOND ); + + CharBuf buf = CharBuf.create( 16 ); + buf.add( Str.zfill ( day, 2 ) ).add( '_' ); + buf.add( Str.zfill( month, 2 ) ).add( '_' ); + buf.add( year ).add( '_' ); + buf.add( Str.zfill( hour, 2 ) ).add( '_' ); + buf.add( Str.zfill( minute, 2 ) ).add( '_' ); + buf.add( Str.zfill( second, 2 ) ).add( "_utc_euro" ); + + return buf.toString(); + } + + + public static void main( String... args ) { + + Sys.println( euroUTCSystemDateNowString() ); + + } + + + public static Date year( int year ) { + Calendar c = Calendar.getInstance(); + c.setTimeZone(GMT); + c.set( 1970, Calendar.JANUARY, 2, 0, 0, 0 ); + c.set( Calendar.YEAR, year ); + c.set( Calendar.MILLISECOND, 0 ); + return c.getTime(); + } + + public static Date getUSDate( int month, int day, int year ) { + Calendar c = Calendar.getInstance(); + c.setTimeZone(GMT); + c.set( year, month - 1, day + 1, 0, 0, 0 ); + c.set( Calendar.MILLISECOND, 0 ); + return c.getTime(); + } + + + public static Date getUSDate( int month, int day, int year, int hour, int minute, int second ) { + Calendar c = Calendar.getInstance(); + c.setTimeZone(GMT); + c.set( year, month - 1, day + 1, hour, minute, second ); + c.set( Calendar.MILLISECOND, 0 ); + return c.getTime(); + } + + public static Date getEuroDate( int day, int month, int year ) { + Calendar c = Calendar.getInstance(); + c.setTimeZone(GMT); + c.set( year, month - 1, day + 1, 0, 0, 0 ); + c.set( Calendar.MILLISECOND, 0 ); + return c.getTime(); + } + + public static Date getEuroDate( int day, int month, int year, int hour, int minute, int second ) { + Calendar c = Calendar.getInstance(); + c.setTimeZone(GMT); + c.set( year, month - 1, day + 1, hour, minute, second ); + c.set( Calendar.MILLISECOND, 0 ); + return c.getTime(); + } + + + public static Date fromISO8601_( String string ) { + + try { + + return new SimpleDateFormat( "yyyy-MM-dd'T'HH:mm:ssXXX" ).parse( string ); + } catch ( ParseException e ) { + return Exceptions.handle ( Date.class, "Not a valid ISO8601", e ); + } + + + } + + public static Date fromISO8601Jackson_(String string) { + + + if (string.length() == 29 && Str.idx(string, -3) == ':') { + + try { + + return new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSXXX").parse(string); + } catch (ParseException e) { + return Exceptions.handle(Date.class, "Not a valid ISO8601 \"Jackson\" date", e); + } + + + } else { + + try { + + return new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ").parse(string); + } catch (ParseException e) { + return Exceptions.handle(Date.class, "Not a valid ISO8601 \"Jackson\" date", e); + } + + } + + + } + + public static Date fromJsonDate_( String string ) { + + try { + + return new SimpleDateFormat( "yyyy-MM-dd'T'HH:mm:ss.SSSXXX" ).parse( string ); + } catch ( ParseException e ) { + return Exceptions.handle( Date.class, "Not a valid JSON date", e ); + } + + + } + + + public static Date fromJsonDate( String string ) { + + return fromJsonDate( FastStringUtils.toCharArray( string ), 0, string.length() ); + + } + + public static Date fromISO8601( String string ) { + + return fromISO8601( FastStringUtils.toCharArray( string ), 0, string.length() ); + + } + + public static Date fromISO8601Jackson(String string) { + + return fromISO8601Jackson(FastStringUtils.toCharArray(string), 0, string.length()); + + } + + public static Date fromISO8601DateLoose( String string ) { + return fromISO8601DateLoose( FastStringUtils.toCharArray( string ), 0, string.length() ); + + } + + public static Date fromISO8601DateLoose( char [] chars ) { + return fromISO8601DateLoose( chars, 0, chars.length ); + + } + + + final static int SHORT_ISO_8601_TIME_LENGTH = "1994-11-05T08:15:30Z".length(); + final static int LONG_ISO_8601_TIME_LENGTH = "1994-11-05T08:15:30-05:00".length(); + final static int LONG_ISO_8601_JACKSON_TIME_LENGTH = "1994-11-05T08:11:22.123-0500".length(); + public final static int JSON_TIME_LENGTH = "2013-12-14T01:55:33.412Z".length(); + + + /** + * + * @param date the timestamp + * @return json style format. + */ + public static String jsonDate( Date date ) { + CharBuf buf = CharBuf.create( JSON_TIME_LENGTH ); + jsonDateChars ( date, buf ); + return buf.toString(); + } + + + private final static boolean isGMT; + static { + if (TimeZone.getDefault () == GMT) { + isGMT = true; + } else { + isGMT = false; + } + + } + + public static void jsonDateChars( Date date, CharBuf buf ) { + Calendar calendar = Calendar.getInstance(); + calendar.setTimeZone (GMT); + jsonDateChars( calendar, date, buf ); + } + + + public static void jsonDateChars( long milis, CharBuf buf ) { + Calendar calendar = Calendar.getInstance(); + calendar.setTimeZone (GMT); + jsonDateChars( calendar, milis, buf ); + } + + public static void jsonDateChars( Calendar calendar, Date date, CharBuf buf ) { + jsonDateChars(calendar, date.getTime(), buf); + } + + public static void jsonDateChars( Calendar calendar, long milis, CharBuf buf ) { + if (isGMT) { + /* For the Unix admins of the world who avoid it all and just GMT it. */ + fastJsonDateChars ( new Date(milis), buf ); + return; + } + + calendar.setTimeInMillis( milis ); + + + int day = calendar.get( Calendar.DAY_OF_MONTH ); + int month = calendar.get( Calendar.MONTH ) +1; + int year = calendar.get( Calendar.YEAR ); + int hour = calendar.get( Calendar.HOUR_OF_DAY ); + int minute = calendar.get( Calendar.MINUTE ); + int second = calendar.get( Calendar.SECOND ); + int mili = calendar.get( Calendar.MILLISECOND ); + + buf.add( '"' ); + buf.add( year ).add( '-' ); + buf.add( Str.zfill( month, 2 ) ).add( '-' ); + buf.add( Str.zfill ( day, 2 ) ).add('T'); + + buf.add( Str.zfill( hour, 2 ) ).add( ':' ); + buf.add( Str.zfill( minute, 2 ) ).add( ':' ); + buf.add( Str.zfill( second, 2 ) ).add( "." ); + buf.add( Str.zfill( mili, 3 ) ).add( "Z" ); + + buf.add( '"' ); + + } + + public static void fastJsonDateChars( Date date, CharBuf buf ) { + + int day = date.getDate (); + int month = date.getMonth () +1; + int year = date.getYear () + 1900; + int hour = date.getHours (); + int minute = date.getMinutes (); + int second = date.getSeconds (); + int offset = date.getTimezoneOffset (); + int mili = 1; + + buf.add( '"' ); + buf.add( year ).add( '-' ); + buf.add( Str.zfill( month, 2 ) ).add( '-' ); + buf.add( Str.zfill ( day, 2 ) ).add('T'); + + buf.add( Str.zfill( hour, 2 ) ).add( ':' ); + buf.add( Str.zfill( minute, 2 ) ).add( ':' ); + buf.add( Str.zfill( second, 2 ) ).add( "." ); + buf.add( Str.zfill( mili, 3 ) ).add( "Z" ); + + buf.add( '"' ); + + } + + public static Date fromISO8601DateLoose( char[] buffer, int startIndex, int endIndex ) { + + if ( Dates.isISO8601QuickCheck( buffer, startIndex, endIndex ) ) { + + if ( Dates.isJsonDate( buffer, startIndex, endIndex ) ) { + return Dates.fromJsonDate( buffer, startIndex, endIndex ); + + } else if ( Dates.isISO8601( buffer, startIndex, endIndex ) ) { + return Dates.fromISO8601( buffer, startIndex, endIndex ); + } else { + try { + return looseParse( buffer, startIndex, endIndex ); + } catch ( Exception ex ) { + throw new JsonException( "unable to do a loose parse", ex ); + } + } + } else { + + try { + return looseParse( buffer, startIndex, endIndex ); + } catch ( Exception ex ) { + throw new JsonException( "unable to do a loose parse", ex ); + } + } + + + } + + private static Date looseParse( char[] buffer, int startIndex, int endIndex ) { + final char[][] parts = CharScanner.splitByCharsNoneEmpty( buffer, startIndex, endIndex, '-', ':', 'T', '.' ); + int year = 0; + int month = 0; + int day = 0; + + int hour = 0; + int minutes = 0; + int seconds = 0; + + int mili = 0; + + if ( parts.length >= 3 ) { + year = CharScanner.parseInt( parts[ 0 ] ); + month = CharScanner.parseInt( parts[ 1 ] ); + day = CharScanner.parseInt( parts[ 2 ] ); + } + + if ( parts.length >= 6 ) { + hour = CharScanner.parseInt( parts[ 3 ] ); + minutes = CharScanner.parseInt( parts[ 4 ] ); + seconds = CharScanner.parseInt( parts[ 5 ] ); + } + + if ( parts.length >= 7 ) { + mili = CharScanner.parseInt( parts[ 6 ] ); + } + + + return toDate( year, month, day, hour, minutes, seconds, mili ); + } + + public static Date fromISO8601Jackson(char[] charArray, int from, int to) { + + try { + if ( isISO8601Jackson(charArray, from, to) ) { + int year = CharScanner.parseInt(charArray, from + 0, from + 4); + int month = CharScanner.parseInt(charArray, from + 5, from + 7); + int day = CharScanner.parseInt(charArray, from + 8, from + 10); + int hour = CharScanner.parseInt(charArray, from + 11, from + 13); + + int minute = CharScanner.parseInt(charArray, from + 14, from + 16); + + int second = CharScanner.parseInt(charArray, from + 17, from + 19); + int millisecond = CharScanner.parseInt(charArray, from + 20, from + 23); + + TimeZone tz = null; + + if ( charArray[ from + 19 ] == 'Z' ) { + + tz = GMT; + + } + + else { + StringBuilder builder = new StringBuilder( 8 ); + builder.append("GMT"); + + for (int index = from + 23; index < to; index++ ) { + if (charArray[index] == ':') { + continue; + } + builder.append( charArray[index] ); + } + String tzStr = builder.toString(); + tz = TimeZone.getTimeZone(tzStr); + } + return toDate( tz, year, month, day, hour, minute, second, millisecond ); + + } else { + return null; + } + } catch (Exception ex) { + return null; + } + + } + + public static Date fromISO8601( char[] charArray, int from, int to ) { + + try { + int length = to - from; + if ( isISO8601( charArray, from, to ) ) { + int year = CharScanner.parseInt(charArray, from + 0, from + 4); + int month = CharScanner.parseInt(charArray, from + 5, from + 7); + int day = CharScanner.parseInt(charArray, from + 8, from + 10); + int hour = CharScanner.parseInt(charArray, from + 11, from + 13); + + int minute = CharScanner.parseInt(charArray, from + 14, from + 16); + + int second = CharScanner.parseInt(charArray, from + 17, from + 19); + TimeZone tz = null; + + if ( charArray[ from + 19 ] == 'Z' ) { + + tz = GMT; + + } else { + + StringBuilder builder = new StringBuilder( 9 ); + builder.append( "GMT" ); + builder.append( charArray, from + 19, 6 ); + String tzStr = builder.toString(); + tz = TimeZone.getTimeZone( tzStr ); + + } + return toDate( tz, year, month, day, hour, minute, second ); + + } else { + return null; + } + } catch (Exception ex) { + return null; + } + + } + + public static Date fromJsonDate( char[] charArray, int from, int to ) { + try { + if ( isJsonDate( charArray, from, to ) ) { + int year = CharScanner.parseInt(charArray, from + 0, from + 4); + int month = CharScanner.parseInt(charArray, from + 5, from + 7); + int day = CharScanner.parseInt(charArray, from + 8, from + 10); + int hour = CharScanner.parseInt(charArray, from + 11, from + 13); + + int minute = CharScanner.parseInt(charArray, from + 14, from + 16); + + int second = CharScanner.parseInt(charArray, from + 17, from + 19); + + int milliseconds = CharScanner.parseInt(charArray, from + 20, from + 23); + + TimeZone tz = GMT; + + + return toDate( tz, year, month, day, hour, minute, second, milliseconds ); + + } else { + return null; + } + } catch (Exception ex) { + return null; + } + + } + + public static boolean isISO8601( String string ) { + + return isISO8601( FastStringUtils.toCharArray( string ) ); + } + + + public static boolean isISO8601( char[] charArray ) { + return isISO8601( charArray, 0, charArray.length ); + } + + public static boolean isISO8601( char[] charArray, int start, int to ) { + boolean valid = true; + final int length = to - start; + + if ( length == SHORT_ISO_8601_TIME_LENGTH ) { + valid &= ( charArray[ start + 19 ] == 'Z' ); + + } else if ( length == LONG_ISO_8601_TIME_LENGTH ) { + valid &= ( charArray[ start + 19 ] == '-' || charArray[ start + 19 ] == '+' ); + valid &= ( charArray[ start + 22 ] == ':' ); + + } else { + return false; + } + + // 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 + // "1 9 9 4 - 1 1 - 0 5 T 0 8 : 1 5 : 3 0 - 0 5 : 0 0 + + valid &= ( charArray[ start + 4 ] == '-' ) && + ( charArray[ start + 7 ] == '-' ) && + ( charArray[ start + 10 ] == 'T' ) && + ( charArray[ start + 13 ] == ':' ) && + ( charArray[ start + 16 ] == ':' ); + + return valid; + } + + public static boolean isISO8601Jackson(char[] charArray, int start, int to) { + boolean valid = true; + final int length = to - start; + + if ( length == SHORT_ISO_8601_TIME_LENGTH ) { + valid &= ( charArray[ start + 19 ] == 'Z' ); + + } else if ( length == LONG_ISO_8601_JACKSON_TIME_LENGTH || length == 29) { + valid &= ( charArray[ start + 23 ] == '-' || charArray[ start + 23 ] == '+' ); + } else { + return false; + } + + // 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 + // "1 9 9 4 - 1 1 - 0 5 T 0 8 : 1 5 : 3 0 - 0 5 : 0 0 + + valid &= ( charArray[ start + 4 ] == '-' ) && + ( charArray[ start + 7 ] == '-' ) && + ( charArray[ start + 10 ] == 'T' ) && + ( charArray[ start + 13 ] == ':' ) && + ( charArray[ start + 16 ] == ':' ); + + return valid; + } + + public static boolean isISO8601QuickCheck( char[] charArray, int start, int to ) { + final int length = to - start; + + try { + + if ( length == JSON_TIME_LENGTH || length == LONG_ISO_8601_TIME_LENGTH + || length == SHORT_ISO_8601_TIME_LENGTH || ( length >= 17 && ( charArray[ start + 16 ] == ':' ) ) + ) { + return true; + } + + return false; + } catch (Exception ex) { + ex.printStackTrace(); + return false; + } + + } + + public static boolean isISO8601QuickCheck( char[] charArray ) { + final int length = charArray.length; + + if ( length == JSON_TIME_LENGTH || length == LONG_ISO_8601_TIME_LENGTH + || length == SHORT_ISO_8601_TIME_LENGTH || ( length >= 16 && ( charArray[ 16 ] == ':' ) ) + ) { + + if ( length >= 16 && ( charArray[ 16 ] == ':' ) ) { + return true; + } + } + + return false; + + } + + + public static boolean isJsonDate( String str ) { + + return isJsonDate(FastStringUtils.toCharArray(str), 0, str.length()); + } + + public static boolean isJsonDate( char[] charArray, int start, int to ) { + boolean valid = true; + final int length = to - start; + + if ( length != JSON_TIME_LENGTH ) { + return false; + } + + valid &= ( charArray[ start + 19 ] == '.' ); + + if ( !valid ) { + return false; + } + + + valid &= ( charArray[ start + 4 ] == '-' ) && + ( charArray[ start + 7 ] == '-' ) && + ( charArray[ start + 10 ] == 'T' ) && + ( charArray[ start + 13 ] == ':' ) && + ( charArray[ start + 16 ] == ':' ); + + return valid; + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/Fn.java b/datastructures-json-boon/src/main/java/org/boon/core/Fn.java new file mode 100644 index 0000000..7fc42a9 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/Fn.java @@ -0,0 +1,35 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core; + +/** + * Created by Richard on 2/23/14. + */ +public interface Fn { +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/Function.java b/datastructures-json-boon/src/main/java/org/boon/core/Function.java new file mode 100644 index 0000000..68191bb --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/Function.java @@ -0,0 +1,44 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core; + +/** + * Place holder for JDK 1.8 Function + */ +public interface Function { + + /** + * Compute the result of applying the function to the input argument + * + * @param in the input object + * @return the function result + */ + OUT apply( IN in ); + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/Handler.java b/datastructures-json-boon/src/main/java/org/boon/core/Handler.java new file mode 100644 index 0000000..dc34f2b --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/Handler.java @@ -0,0 +1,37 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core; + +/* Generic event handler. +* @author Rick Hightower +*/ +public interface Handler { + + void handle(E event); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/HandlerWithErrorHandling.java b/datastructures-json-boon/src/main/java/org/boon/core/HandlerWithErrorHandling.java new file mode 100644 index 0000000..700bec1 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/HandlerWithErrorHandling.java @@ -0,0 +1,6 @@ +package org.boon.core; + +public interface HandlerWithErrorHandling extends Handler { + + Handler errorHandler(); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/Handlers.java b/datastructures-json-boon/src/main/java/org/boon/core/Handlers.java new file mode 100644 index 0000000..1cb79d1 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/Handlers.java @@ -0,0 +1,24 @@ +package org.boon.core; + +/** + * Created by Richard on 10/1/14. + */ +public class Handlers { + + public static Handler handler(final Handler handler, final Handler errorHandler) { + return new HandlerWithErrorHandling() { + + @Override + public Handler errorHandler() { + return errorHandler; + } + + @Override + public void handle(T event) { + handler.handle(event); + } + }; + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/NameAware.java b/datastructures-json-boon/src/main/java/org/boon/core/NameAware.java new file mode 100644 index 0000000..d87ab13 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/NameAware.java @@ -0,0 +1,49 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core; + + +/** + *

+ * Make objects nameable. + * + *

+ * + *

+ * + * @author Rick Hightower + */ +public interface NameAware { + void setName( String name ); + + String getName(); + + void init(); + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/Predicate.java b/datastructures-json-boon/src/main/java/org/boon/core/Predicate.java new file mode 100644 index 0000000..f85e978 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/Predicate.java @@ -0,0 +1,34 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core; + +public interface Predicate { + + boolean test( T input ); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/Reducer.java b/datastructures-json-boon/src/main/java/org/boon/core/Reducer.java new file mode 100644 index 0000000..5ae90cf --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/Reducer.java @@ -0,0 +1,45 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core; + + +/** + * Place holder or JDK 1.8 Function + */ +public interface Reducer { + + /** + * Compute the result of applying the function to the input argument + * + * @param in the input object + * @return the function result + */ + SUM apply( SUM sum, IN in ); + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/Supplier.java b/datastructures-json-boon/src/main/java/org/boon/core/Supplier.java new file mode 100644 index 0000000..2aa085d --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/Supplier.java @@ -0,0 +1,39 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core; + +public interface Supplier { + + /** + * Returns an object. + * + * @return an object + */ + T get(); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/Sys.java b/datastructures-json-boon/src/main/java/org/boon/core/Sys.java new file mode 100644 index 0000000..1dff2d9 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/Sys.java @@ -0,0 +1,809 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core; + + +import com.sun.management.UnixOperatingSystemMXBean; +import org.boon.Exceptions; +import org.boon.IO; +import org.boon.Lists; +import org.boon.Str; +import org.boon.core.reflection.Annotations; +import org.boon.core.reflection.Reflection; +import org.boon.core.timer.TimeKeeper; +import org.boon.core.timer.TimeKeeperBasic; +import org.boon.json.JsonParserFactory; +import org.boon.logging.Logging; + +import java.io.File; +import java.lang.management.GarbageCollectorMXBean; +import java.lang.management.ManagementFactory; +import java.lang.management.MemoryUsage; +import java.math.BigDecimal; +import java.math.BigInteger; +import java.nio.file.Path; +import java.util.List; +import java.util.concurrent.ConcurrentHashMap; +import java.util.concurrent.atomic.AtomicReference; + + +public class Sys { + + + public static ConcurrentHashMap systemProperties = new ConcurrentHashMap<>(System.getProperties()); + + public static ConcurrentHashMap env = new ConcurrentHashMap<>(System.getenv()); + + + private final static boolean isWindows = System.getProperty ( "os.name" ).contains ( "Windows" ); + private final static boolean inContainer; + private final static boolean is1_7OorLater; + private final static int buildNumber; + private final static BigDecimal version; + private final static boolean is1_7; + private final static boolean is1_8; + public final static Object DEFAULT_NULL_NOT_EMPTY = new Object(); + + + static { + BigDecimal v = new BigDecimal ( "-1" ); + int b = -1; + String sversion = System.getProperty ( "java.version" ); + + // get rid of build suffix, like ea or icedtea + int dash = sversion.indexOf("-"); + if (dash != - 1) { + sversion = sversion.substring(0, dash); + } + + if ( sversion.indexOf ( "_" ) != -1 ) { + final String[] split = sversion.split ( "_" ); + try { + + String ver = split [0]; + if (ver.startsWith ( "1.8" )) { + v = new BigDecimal ("1.8" ); + } + if (ver.startsWith ( "1.7" )) { + v = new BigDecimal ("1.7" ); + } + + if (ver.startsWith ( "1.6" )) { + v = new BigDecimal ("1.6" ); + } + + + if (ver.startsWith ( "1.5" )) { + v = new BigDecimal ("1.5" ); + } + + + if (ver.startsWith ( "1.9" )) { + v = new BigDecimal ("1.9" ); + } + + String build = split[ 1 ]; + if (build.endsWith("-ea")) { + build = build.substring(0, build.length() - 3); + } + b = Integer.parseInt ( build ); + } catch ( Exception ex ) { + ex.printStackTrace (); + System.err.println ( "Unable to determine build number or version" ); + } + } else if ("1.8.0".equals(sversion)) { + b = -1; + v = new BigDecimal("1.8"); + } else { + + try { + v = new BigDecimal(sversion); + b = -1; + }catch (Exception ex) { + + if (sversion.startsWith ( "1.7" )) { + v = new BigDecimal ("1.7" ); + } else if (sversion.startsWith ( "1.8" )) { + v = new BigDecimal ("1.8" ); + } else { + v = new BigDecimal ("-1.0" ); + } + } + } + + buildNumber = b; + version = v; + + is1_7OorLater = version.compareTo ( new BigDecimal ( "1.7" )) >=0; + is1_7 = version.compareTo ( new BigDecimal ( "1.7" ))==0; + is1_8 = version.compareTo ( new BigDecimal ( "1.8" ))==0; + } + + + public static void println ( String message ) { + System.out.println ( message ); + } + + public static void print ( String message ) { + System.out.print ( message ); + } + + + public static boolean isWindows () { + return isWindows; + } + + public static boolean is1_7OrLater () { + return is1_7OorLater; + } + + public static boolean is1_7() { + return is1_7; + } + public static boolean is1_8() { + return is1_8; + } + + public static int buildNumber () { + return buildNumber; + } + + public static char windowsPathSeparator () { + return '\\'; + } + + + final static AtomicReference timer = new AtomicReference ( new TimeKeeperBasic () ); + + public static TimeKeeper timer () { + return timer.get (); + } + + public static long time () { + return timer.get ().time (); + } + + + static { + boolean _inContainer; + boolean forceInContainer = Boolean.parseBoolean ( System.getProperty ( "org.boon.forceInContainer", "false" ) ); + boolean forceNoContainer = Boolean.parseBoolean ( System.getProperty ( "org.boon.forceNoContainer", "false" ) ); + + if ( forceNoContainer ) { + _inContainer = false; + } else if ( forceInContainer ) { + _inContainer = true; + } else { + _inContainer = detectContainer (); + } + + inContainer = _inContainer; + } + + private static boolean detectContainer () { + + boolean _inContainer; + + try { + Class.forName ( "javax.servlet.http.HttpServlet" ); + + _inContainer = true; + } catch ( Throwable e ) { + _inContainer = false; + } + if ( !_inContainer ) { + try { + Class.forName ( "javax.ejb.EJBContext" ); + + _inContainer = true; + } catch ( Throwable e ) { + _inContainer = false; + } + + } + + return _inContainer; + + } + + + public static boolean inContainer () { + return inContainer; + } + + + /* Everything that has a cache you need to hold on to, should use this so they can + * all be stuffed into application context of web-app or ear if you use Java EE. */ + public static Object contextToHold () { + + return Lists.list ( Reflection.contextToHold (), + Annotations.contextToHold (), + Logging.contextToHold() ); + } + + public static String sysPropMultipleKeys(String... keys) { + for (String key : keys) { + String value = _sysProp(key, DEFAULT_NULL_NOT_EMPTY); + if (value != null) { + return value; + } + } + return null; + } + + public static String sysProp(String key) { + return _sysProp(key, null); + } + + public static String sysPropDefaultNull(String key) { + return _sysProp(key, DEFAULT_NULL_NOT_EMPTY); + } + + + /** + * Checks for the key under system property. + * Then checks it as an environment variable. + * (Looks up in env using straight key and performing underBarCase on it.) + * Then converts defaultValue into a string. + * @param key + * @param defaultValue + * @return + */ + public static String sysProp(String key, Object defaultValue) { + return _sysProp(key, defaultValue); + } + + private static String _sysProp(String key, Object defaultValue) { + String property = (String) systemProperties.get(key); + if (property == null) { + property = env.get(key); + + if (property == null) { + String newKey = Str.underBarCase(key); + property = env.get(newKey); + + if (property == null && defaultValue != DEFAULT_NULL_NOT_EMPTY) { + property = Conversions.toString(defaultValue); + } + } + } + + return property; + } + + + public static boolean sysPropBoolean(String key) { + return sysProp(key, false); + } + + + public static boolean sysProp(String key, boolean defaultValue) { + + String property = (String) systemProperties.get(key); + if (property == null) { + property = env.get(key); + } + + if (property == null) { + String newKey = Str.underBarCase(key); + property = env.get(newKey); + } + + if (property == null) { + return defaultValue; + } + + return Conversions.toBoolean(property); + + } + + + public static int sysPropInt(String key) { + return sysProp(key, -1); + } + + + + public static int sysProp(String key, int defaultValue) { + + String property = (String) systemProperties.get(key); + if (property == null) { + property = env.get(key); + } + + if (property == null) { + String newKey = Str.underBarCase(key); + property = env.get(newKey); + } + + if (property == null) { + return defaultValue; + } + + return Conversions.toInt(property); + + } + + public static File sysProp(String key, File defaultValue) { + + String property = (String) systemProperties.get(key); + if (property == null) { + property = env.get(key); + } + + if (property == null) { + String newKey = Str.underBarCase(key); + property = env.get(newKey); + } + + if (property == null) { + return defaultValue; + } + + return new File(property); + + } + + + public static Path sysProp(String key, Path defaultValue) { + + String property = (String) systemProperties.get(key); + if (property == null) { + property = env.get(key); + } + + if (property == null) { + String newKey = Str.underBarCase(key); + property = env.get(newKey); + } + + if (property == null) { + return defaultValue; + } + + return IO.path(property); + } + + + public static int sysPropLong(String key) { + return sysProp(key, -1); + } + + + public static long sysProp(String key, long defaultValue) { + + String property = (String) systemProperties.get(key); + if (property == null) { + property = env.get(key); + } + + if (property == null) { + String newKey = Str.underBarCase(key); + property = env.get(newKey); + } + + if (property == null) { + return defaultValue; + } + + return Conversions.toLong(property); + + } + + + public static short sysPropShort(String key) { + return sysProp(key, (short) -1); + } + + + public static short sysProp(String key, short defaultValue) { + + String property = (String) systemProperties.get(key); + if (property == null) { + property = env.get(key); + } + + if (property == null) { + String newKey = Str.underBarCase(key); + property = env.get(newKey); + } + + if (property == null) { + return defaultValue; + } + + return Conversions.toShort(property); + + } + + + public static byte sysPropByte(String key) { + return sysProp(key, (byte) -1); + } + + + public static byte sysProp(String key, byte defaultValue) { + + String property = (String) systemProperties.get(key); + if (property == null) { + property = env.get(key); + } + + if (property == null) { + String newKey = Str.underBarCase(key); + property = env.get(newKey); + } + + if (property == null) { + return defaultValue; + } + + return Conversions.toByte(property); + + } + + + public static BigDecimal sysPropBigDecimal(String key) { + return sysPropBigDecima(key, (BigDecimal) null); + } + + + public static BigDecimal sysPropBigDecima(String key, BigDecimal defaultValue) { + + String property = (String) systemProperties.get(key); + if (property == null) { + property = env.get(key); + } + + if (property == null) { + String newKey = Str.underBarCase(key); + property = env.get(newKey); + } + + if (property == null) { + return defaultValue; + } + + return Conversions.toBigDecimal(property); + + } + + + public static BigInteger sysPropBigInteger(String key) { + return sysPropBigInteger(key, (BigInteger) null); + } + + + public static BigInteger sysPropBigInteger(String key, BigInteger defaultValue) { + + String property = (String) systemProperties.get(key); + if (property == null) { + property = env.get(key); + } + + if (property == null) { + String newKey = Str.underBarCase(key); + property = env.get(newKey); + } + + if (property == null) { + return defaultValue; + } + + return Conversions.toBigInteger(property); + + } + + + public static T sysPropEnum(Class cls, String key) { + return sysProp(cls, key, null); + } + + public static T sysProp(Class cls, String key, T defaultValue) { + + String property = (String) systemProperties.get(key); + if (property == null) { + property = env.get(key); + } + + if (property == null) { + String newKey = Str.underBarCase(key); + property = env.get(newKey); + } + + if (property == null) { + return defaultValue; + } + + return Conversions.toEnum(cls, property); + + } + + + + + public static String putSysProp(String key, Object value) { + return (String) systemProperties.put(key, Conversions.toString(value)); + } + + public static boolean hasSysProp(String propertyName) { + return systemProperties.containsKey(propertyName); + } + + public static void sleep(long duration) { + try { + Thread.sleep(duration); + } catch (InterruptedException e) { + Thread.interrupted(); + } + } + + public static int availableProcessors() { + return Runtime.getRuntime().availableProcessors(); + } + + + public static long freeMemory() { + return Runtime.getRuntime().freeMemory(); + } + + + public static long totalMemory() { + return Runtime.getRuntime().totalMemory(); + } + + + public static long maxMemory() { + return Runtime.getRuntime().maxMemory(); + } + + + static boolean _oracleJVMAndUnix = false; + static { + try { + Class.forName("com.sun.management.UnixOperatingSystemMXBean"); + _oracleJVMAndUnix = true; + } catch (ClassNotFoundException e) { + _oracleJVMAndUnix = false; + } + } + + private final static boolean oracleJVMAndUnix = _oracleJVMAndUnix; + + + public static List gc() { + return ManagementFactory.getGarbageCollectorMXBeans(); + } + + public static double loadAverage() { + return ManagementFactory.getOperatingSystemMXBean().getSystemLoadAverage(); + } + + + + public static long maxFileDescriptorCount() { + + if (oracleJVMAndUnix) { + + UnixOperatingSystemMXBean unix = (UnixOperatingSystemMXBean) ManagementFactory.getOperatingSystemMXBean(); + return unix.getMaxFileDescriptorCount(); + }else { + return -1; + } + } + + + public static long openFileDescriptorCount() { + + if (oracleJVMAndUnix) { + + UnixOperatingSystemMXBean unix = (UnixOperatingSystemMXBean) ManagementFactory.getOperatingSystemMXBean(); + return unix.getOpenFileDescriptorCount(); + }else { + return -1; + } + } + + + public static long committedVirtualMemorySize() { + + if (oracleJVMAndUnix) { + + UnixOperatingSystemMXBean unix = (UnixOperatingSystemMXBean) ManagementFactory.getOperatingSystemMXBean(); + return unix.getCommittedVirtualMemorySize(); + }else { + return -1; + } + } + + + public static long totalSwapSpaceSize() { + + if (oracleJVMAndUnix) { + + UnixOperatingSystemMXBean unix = (UnixOperatingSystemMXBean) ManagementFactory.getOperatingSystemMXBean(); + return unix.getTotalSwapSpaceSize(); + }else { + return -1; + } + } + + + public static long freeSwapSpaceSize() { + + if (oracleJVMAndUnix) { + + UnixOperatingSystemMXBean unix = (UnixOperatingSystemMXBean) ManagementFactory.getOperatingSystemMXBean(); + return unix.getFreeSwapSpaceSize(); + }else { + return -1; + } + } + + + public static long processCpuTime() { + + if (oracleJVMAndUnix) { + + UnixOperatingSystemMXBean unix = (UnixOperatingSystemMXBean) ManagementFactory.getOperatingSystemMXBean(); + return unix.getProcessCpuTime(); + }else { + return -1; + } + } + + + public static long freePhysicalMemorySize() { + + if (oracleJVMAndUnix) { + + UnixOperatingSystemMXBean unix = (UnixOperatingSystemMXBean) ManagementFactory.getOperatingSystemMXBean(); + return unix.getFreePhysicalMemorySize(); + }else { + return -1; + } + } + + + public static long totalPhysicalMemorySize() { + + if (oracleJVMAndUnix) { + + UnixOperatingSystemMXBean unix = (UnixOperatingSystemMXBean) ManagementFactory.getOperatingSystemMXBean(); + return unix.getTotalPhysicalMemorySize(); + }else { + return -1; + } + } + + + + public static double systemCpuLoad() { + + if (oracleJVMAndUnix) { + + UnixOperatingSystemMXBean unix = (UnixOperatingSystemMXBean) ManagementFactory.getOperatingSystemMXBean(); + return unix.getSystemCpuLoad(); + }else { + return -1; + } + } + + + public static double processCpuLoad() { + + if (oracleJVMAndUnix) { + + UnixOperatingSystemMXBean unix = (UnixOperatingSystemMXBean) ManagementFactory.getOperatingSystemMXBean(); + return unix.getProcessCpuLoad(); + }else { + return -1; + } + } + + + + public static long uptime() { + return ManagementFactory.getRuntimeMXBean().getUptime(); + } + + public static long startTime() { + return ManagementFactory.getRuntimeMXBean().getStartTime(); + } + + public static int pendingFinalizationCount() { + return ManagementFactory.getMemoryMXBean().getObjectPendingFinalizationCount(); + } + + + public static MemoryUsage heapMemoryUsage() { + return ManagementFactory.getMemoryMXBean().getHeapMemoryUsage(); + } + + public static MemoryUsage nonHeapMemoryUsage() { + return ManagementFactory.getMemoryMXBean().getNonHeapMemoryUsage(); + } + + + public static int threadPeakCount() { + + return ManagementFactory.getThreadMXBean().getPeakThreadCount(); + } + + + public static int threadCount() { + + return ManagementFactory.getThreadMXBean().getThreadCount(); + } + + + public static long threadsStarted() { + + return ManagementFactory.getThreadMXBean().getTotalStartedThreadCount(); + } + + public static long threadCPUTime() { + + return ManagementFactory.getThreadMXBean().getCurrentThreadCpuTime(); + } + + public static long threadUserTime() { + + return ManagementFactory.getThreadMXBean().getCurrentThreadUserTime(); + } + + + public static int threadDaemonCount() { + + return ManagementFactory.getThreadMXBean().getDaemonThreadCount(); + } + + public static T loadFromFileLocation(Class clazz, String... fileLocations) { + for (String fileLocation : fileLocations) { + if (fileLocation != null && IO.exists(fileLocation)) { + try { + return new JsonParserFactory().create().parseFile(clazz, fileLocation); + } + catch (Exception ex) { + ex.printStackTrace(); + Exceptions.handle(ex, "Unable to read file from ", fileLocation); + return null; + } + } + } + + try { + return clazz.newInstance(); + } + catch (InstantiationException | IllegalAccessException e) { + Exceptions.handle(e, "Unable to create instance of " + clazz.getName()); + return null; + } + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/SystemTimeKeeper.java b/datastructures-json-boon/src/main/java/org/boon/core/SystemTimeKeeper.java new file mode 100644 index 0000000..d56f56b --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/SystemTimeKeeper.java @@ -0,0 +1,75 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core; + +import org.boon.core.timer.TimeKeeper; + +import java.util.concurrent.Executors; +import java.util.concurrent.ScheduledExecutorService; +import java.util.concurrent.TimeUnit; +import java.util.concurrent.atomic.AtomicBoolean; +import java.util.concurrent.atomic.AtomicLong; + +/** + * Created by rick on 12/20/13. + */ +public class SystemTimeKeeper implements TimeKeeper { + + private static final AtomicLong time = new AtomicLong(); + private static final AtomicBoolean started = new AtomicBoolean(); + + private static ScheduledExecutorService executorService; + + @Override + public long time() { + return time.get(); + + } + + public static void start() { + + if ( !started.getAndSet (true) ) { + executorService = Executors.newSingleThreadScheduledExecutor(); + + executorService.scheduleAtFixedRate( new Runnable() { + @Override + public void run() { + time.set( System.nanoTime() / 1_000_000 ); + } + }, 5, 5, TimeUnit.MILLISECONDS ); + } + + Sys.timer.set ( new SystemTimeKeeper () ); + } + + public static void shutDown() { + executorService.shutdown (); + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/Typ.java b/datastructures-json-boon/src/main/java/org/boon/core/Typ.java new file mode 100644 index 0000000..912e210 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/Typ.java @@ -0,0 +1,239 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core; + + +import org.boon.Sets; + +import java.io.File; +import java.lang.reflect.Modifier; +import java.math.BigDecimal; +import java.math.BigInteger; +import java.nio.file.Path; +import java.util.*; + +public class Typ { + + /* Core */ + public static final Class object = Object.class; + public static final Class string = String.class; + public static final Class list = List.class; + public static final Class chars = CharSequence.class; + public static final Class set = Set.class; + public static final Class collection = Collection.class; + + + public static final Class comparable = Comparable.class; + /* Wrapper */ + public static final Class bool = Boolean.class; + public static final Class integer = Integer.class; + public static final Class longWrapper = Long.class; + public static final Class doubleWrapper = Double.class; + public static final Class floatWrapper = Float.class; + public static final Class byteWrapper = Byte.class; + public static final Class shortWrapper = Short.class; + public static final Class bigInteger = BigInteger.class; + public static final Class bigDecimal = BigDecimal.class; + + public static final Class number = Number.class; + + + /* primitive */ + public static final Class flt = float.class; + public static final Class lng = long.class; + public static final Class dbl = double.class; + public static final Class intgr = int.class; + public static final Class bln = boolean.class; + public static final Class shrt = short.class; + public static final Class chr = char.class; + public static final Class bt = byte.class; + + + /* Utility */ + public static final Class date = Date.class; + public static final Class calendar = Calendar.class; + public static final Class file = File.class; + public static final Class path = Path.class; + + + /* Arry. */ + public static final Class stringArray = String[].class; + public static final Class intArray = int[].class; + public static final Class byteArray = byte[].class; + public static final Class shortArray = short[].class; + public static final Class charArray = char[].class; + public static final Class longArray = long[].class; + public static final Class floatArray = float[].class; + public static final Class doubleArray = double[].class; + public static final Class objectArray = Object[].class; + + public static boolean doesMapHaveKeyTypeString( Object value ) { + return getKeyType( ( Map ) value ) == string; + } + + public static boolean isBasicType( Object value ) { + return ( value instanceof Number || value instanceof CharSequence + || value instanceof Date || value instanceof Calendar || value instanceof Currency + || value instanceof Boolean ); + } + + + public static boolean isPrimitiveOrWrapper( Class theClass ) { + return ( number.isAssignableFrom( theClass ) + || date.isAssignableFrom( theClass ) + || calendar.isAssignableFrom( theClass ) + || bool.isAssignableFrom( theClass ) + || theClass.isPrimitive() ); + } + + public static boolean isBasicType( Class theClass ) { + return ( number.isAssignableFrom( theClass ) + || chars.isAssignableFrom( theClass ) + || date.isAssignableFrom( theClass ) + || calendar.isAssignableFrom( theClass ) + || bool.isAssignableFrom( theClass ) + || theClass.isPrimitive() ); + } + + public static boolean isMap( Class thisType ) { + return isSuperType( thisType, Map.class ); + } + + + public static boolean isValue( Class thisType ) { + return isSuperType( thisType, Value.class ); + } + + public static boolean isCharSequence( Class thisType ) { + return isSuperType( thisType, CharSequence.class ); + } + + public static boolean isCollection( Class thisType ) { + return isSuperType( thisType, Collection.class ); + } + + public static boolean isList( Class thisType ) { + return isSuperType( thisType, List.class ); + } + + public static boolean isSet( Class thisType ) { + return isSuperType( thisType, Set.class ); + } + + public static boolean isSortedSet( Class thisType ) { + return isSuperType( thisType, SortedSet.class ); + } + + public static boolean isType( Class thisType, Class isThisType ) { + return isSuperType( thisType, isThisType ); + } + + public static boolean isComparable( Object o ) { + return o instanceof Comparable; + } + + public static boolean isComparable( Class type ) { + return implementsInterface( type, comparable ); + } + + public static boolean isSuperClass( Class type, Class possibleSuperType ) { + if ( possibleSuperType.isInterface() ) { + return false; + } else { + return possibleSuperType.isAssignableFrom( type ); + } + + } + + public static boolean isSuperType( Class type, Class possibleSuperType ) { + return possibleSuperType.isAssignableFrom( type ); + } + + public static boolean implementsInterface( Class type, Class interfaceType ) { + if ( !interfaceType.isInterface() ) { + return false; + } else { + return interfaceType.isAssignableFrom( type ); + } + + } + + public static Class getKeyType( Map value ) { + if ( value.size() > 0 ) { + return value.keySet().iterator().next().getClass(); + } else { + return Object.class; + } + } + + public static Class getComponentType( Collection value ) { + if ( value.size() > 0 ) { + return value.iterator().next().getClass(); + } else { + return Object.class; + } + } + + public static boolean isAbstract ( Class clazz ) { + return Modifier.isAbstract ( clazz.getModifiers () ); + } + + + private static Set basicTypeOrCollection = Sets.safeSet((Class)int.class, float.class, short.class, + char.class, byte.class, double.class, long.class, Long.class, List.class, Set.class, Map.class, String.class, + StringBuilder.class, Integer.class, Float.class, Double.class, Short.class, Byte.class, Character.class, + BigInteger.class, BigDecimal.class, boolean.class, Boolean.class); + + + private static Set primitiveNumber = Sets.safeSet((Class)int.class, float.class, short.class, + char.class, byte.class, double.class, long.class); + + public static boolean isBasicTypeOrCollection( Class type ) { + return basicTypeOrCollection.contains( type ); + } + + public static boolean isPrimitiveNumber(Class arg1) { + return primitiveNumber.contains(arg1); + } + + public static boolean isArray(Object obj) { + if ( obj == null ) return false; + return obj.getClass().isArray(); + } + + public static boolean isStringArray(Object obj) { + if ( obj == null ) return false; + return obj.getClass().isArray() && obj.getClass().getComponentType()==String.class; + } + + public static boolean isEnum(Class componentType) { + + return componentType.isEnum(); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/TypeType.java b/datastructures-json-boon/src/main/java/org/boon/core/TypeType.java new file mode 100644 index 0000000..6367e49 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/TypeType.java @@ -0,0 +1,492 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core; + +import java.util.*; + +public enum TypeType { + + + //PRIMITIVE + BOOLEAN(false, true), BYTE(false, true), SHORT(false, true), CHAR(false, true), + INT(false, true), FLOAT(false, true), LONG(false, true), DOUBLE(false, true), + + //Wrappers + LONG_WRAPPER(LONG), INTEGER_WRAPPER(INT), SHORT_WRAPPER(SHORT), + CHAR_WRAPPER(CHAR), BOOLEAN_WRAPPER(BOOLEAN), + BYTE_WRAPPER(BYTE), FLOAT_WRAPPER(FLOAT), DOUBLE_WRAPPER(DOUBLE), + + + //Concepts + TRUE(BOOLEAN), FALSE(BOOLEAN), INSTANCE, NULL, + INTERFACE, ABSTRACT, SYSTEM, VOID, UNKNOWN, BASIC_TYPE, + + //BASE + CHAR_SEQUENCE, NUMBER, OBJECT, CLASS, ENUM, + + + //BASIC TYPES 1st Class + STRING(CHAR_SEQUENCE), CALENDAR, DATE, + + + //SECOND TIER BASIC TYPES + URL(BASIC_TYPE), URI(BASIC_TYPE), LOCALE(BASIC_TYPE), + TIME_ZONE(BASIC_TYPE), CURRENCY(BASIC_TYPE), + FILE(BASIC_TYPE), PATH(BASIC_TYPE), UUID(BASIC_TYPE), + + + + //Numeric + BIG_INT(NUMBER), BIG_DECIMAL(NUMBER), + + //COLLECTIONS + COLLECTION, LIST(COLLECTION), SET(COLLECTION), + MAP, + MAP_STRING_OBJECT(MAP), + + ARRAY(true), + ARRAY_INT(true, INT), + ARRAY_BYTE(true, SHORT), + ARRAY_SHORT(true, SHORT), + ARRAY_FLOAT(true, FLOAT), + ARRAY_DOUBLE(true, DOUBLE), + ARRAY_LONG(true, LONG), + ARRAY_STRING(true, STRING), + ARRAY_OBJECT(true, OBJECT), + + + + //BOON + VALUE_MAP, VALUE, HANDLER; + + + final TypeType baseTypeOrWrapper; + private final boolean array; + private final boolean primitive; + + TypeType() { + baseTypeOrWrapper =null; + array=false; + primitive=false; + } + + + TypeType(TypeType type) { + baseTypeOrWrapper =type; + array=false; + primitive=false; + + } + + TypeType(boolean isarray) { + this.array = isarray; + baseTypeOrWrapper=null; + primitive=false; + + } + + + TypeType(boolean isarray, TypeType type) { + this.array = isarray; + baseTypeOrWrapper=type; + primitive=false; + + } + + TypeType(boolean array, boolean primitive) { + this.array = array; + this.primitive = primitive; + baseTypeOrWrapper = null; + } + + public static TypeType getInstanceType ( Object object ) { + + + if (object == null) { + return NULL; + } else { + return getType(object.getClass (), object); + } + } + + + + public static TypeType getType ( Class clazz ) { + return getType(clazz, null); + } + + public static TypeType getType ( Class clazz, Object object ) { + + final String className = clazz.getName(); + TypeType type = getType( className ); + + if (type != UNKNOWN) { + return type; + } + + if ( clazz.isInterface() ) { + type = INTERFACE; + } else if (clazz.isEnum()) { + type = ENUM; + } else if (clazz.isArray()) { + type = getArrayType(clazz); + } else if (Typ.isAbstract(clazz)) { + type = ABSTRACT; + } else if ( className.startsWith("java")) { + if ( Typ.isCharSequence ( clazz ) ) { + type = CHAR_SEQUENCE; + } else if (Typ.isCollection ( clazz )) { + if (Typ.isList ( clazz )) { + type = LIST; + } else if (Typ.isSet ( clazz )) { + type = SET; + } else { + type = COLLECTION; + } + } else if (Typ.isMap ( clazz )) { + type = MAP; + } + else { + type = SYSTEM; + } + } else if (className.startsWith("com.sun") || className.startsWith("sun.")) { + type = SYSTEM; + } else if (object !=null) { + + + if (object instanceof Map) { + type = MAP; + } else if (object instanceof Collection) { + + type = COLLECTION; + if (object instanceof List) { + type = LIST; + } else if (object instanceof Set) { + type = SET; + } + } else { + type = INSTANCE; + } + + } else { + type = INSTANCE; + } + + return type; + + + + } + + private static TypeType getArrayType(Class clazz) { + TypeType type; + final TypeType componentType = getType(clazz.getComponentType()); + switch(componentType) { + + + case BYTE: + type = ARRAY_BYTE; + break; + + case SHORT: + type = ARRAY_SHORT; + break; + + case INT: + type = ARRAY_INT; + break; + + case FLOAT: + type = ARRAY_FLOAT; + break; + + case DOUBLE: + type = ARRAY_DOUBLE; + break; + + case LONG: + type = ARRAY_LONG; + break; + + case STRING: + type = ARRAY_STRING; + break; + + case OBJECT: + type = ARRAY_OBJECT; + break; + + default: + type = ARRAY; + break; + + } + return type; + } + + public static TypeType getType ( String typeName ) { + + switch ( typeName ) { + case "int": + return TypeType.INT; + case "short": + return TypeType.SHORT; + case "byte": + return TypeType.BYTE; + case "float": + return TypeType.FLOAT; + case "double": + return TypeType.DOUBLE; + case "boolean": + return TypeType.BOOLEAN; + case "char": + return TypeType.CHAR; + case "long": + return TypeType.LONG; + + case "java.lang.String": + return TypeType.STRING; + case "java.lang.Boolean": + return TypeType.BOOLEAN_WRAPPER; + case "java.lang.Byte": + return TypeType.BYTE_WRAPPER; + case "java.lang.Short": + return TypeType.SHORT_WRAPPER; + case "java.lang.Integer": + return TypeType.INTEGER_WRAPPER; + case "java.lang.Double": + return TypeType.DOUBLE_WRAPPER; + case "java.lang.Float": + return TypeType.FLOAT_WRAPPER; + case "java.lang.Character": + return TypeType.CHAR_WRAPPER; + case "java.lang.Number": + return TypeType.NUMBER; + + case "java.lang.Class": + return TypeType.CLASS; + + + + + case "java.lang.Void": + return TypeType.VOID; + + + + + + case "java.lang.Long": + return TypeType.LONG_WRAPPER; + + + case "java.util.Set": + case "java.util.HashSet": + case "java.util.TreeSet": + return TypeType.SET; + + case "java.util.List": + case "java.util.ArrayList": + case "java.util.LinkedList": + case "org.boon.core.value.ValueList": + return TypeType.LIST; + + case "java.util.Map": + case "org.boon.collections.LazyMap": + case "java.util.HashMap": + case "java.util.LinkedHashMap": + case "java.util.TreeMap": + case "org.boon.core.value.LazyValueMap": + return TypeType.MAP; + + case "java.lang.CharSequence": + return TypeType.CHAR_SEQUENCE; + + case "java.math.BigDecimal": + return TypeType.BIG_DECIMAL; + case "java.math.BigInteger": + return TypeType.BIG_INT; + + case "java.util.Date": + case "java.sql.Date": + case "java.sql.Time": + case "java.sql.Timestamp": + return TypeType.DATE; + + + + case "java.util.Calendar": + return TypeType.CALENDAR; + + case "org.boon.core.value.ValueMapImpl": + return TypeType.VALUE_MAP; + + case "org.boon.core.value.NumberValue": + case "org.boon.core.value.CharSequenceValue": + return TypeType.VALUE; + + case "org.boon.core.Handler": + return TypeType.HANDLER; + + case "java.lang.Object": + return TypeType.OBJECT; + + case "java.io.File": + return TypeType.FILE; + + case "java.net.URI": + return TypeType.URI; + + case "java.net.URL": + return TypeType.URL; + + case "java.nio.file.Path": + return TypeType.PATH; + + case "java.util.UUID": + return TypeType.UUID; + + + case "java.util.Locale": + return TypeType.LOCALE; + + + case "java.util.TimeZone": + return TypeType.TIME_ZONE; + + case "java.util.Currency": + return TypeType.CURRENCY; + + } + return TypeType.UNKNOWN; + + } + + + public boolean hasLength ( ) { + + switch ( this ) { + case LIST: + case MAP: + case STRING: + case CHAR_SEQUENCE: + case SET: + case COLLECTION: + return true; + default: + return this.isArray() || this.isCollection(); + } + } + + public boolean isCollection ( ) { + + switch ( this ) { + case LIST: + case SET: + case COLLECTION: + return true; + default: + return false; + } + } + + + + public static List gatherTypes ( List list ) { + + List types = new ArrayList<>(); + + for (Object o : list) { + if (o instanceof List) { + types.add(gatherTypes((List) o)); + } + else { + types.add(TypeType.getInstanceType(o)); + } + } + + return types; + } + + + + public static List gatherActualTypes ( List list ) { + + List types = new ArrayList<>(); + + for (Object o : list) { + if (o instanceof List) { + types.add(gatherActualTypes((List) o)); + } + else { + types.add(TypeType.getActualType(o)); + } + } + + return types; + } + + private static Object getActualType(Object o) { + if (o == null) { + return NULL; + } else { + return o.getClass().getSimpleName(); + } + } + + public static List gatherTypes ( Object... list ) { + + List types = new ArrayList(); + + for (Object o : list) { + types.add(TypeType.getInstanceType(o)) ; + } + + return types; + } + + public TypeType wraps() { + return baseTypeOrWrapper; + } + + + public TypeType componentType() { + return baseTypeOrWrapper == null ? OBJECT : baseTypeOrWrapper; + } + + + public boolean isArray() { + return array; + } + + + public boolean isPrimitive() { + return primitive; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/Value.java b/datastructures-json-boon/src/main/java/org/boon/core/Value.java new file mode 100644 index 0000000..993bde4 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/Value.java @@ -0,0 +1,82 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core; + +import org.boon.primitive.CharBuf; + +import java.math.BigDecimal; +import java.math.BigInteger; +import java.util.Currency; +import java.util.Date; + +public interface Value { + + + byte byteValue(); + + short shortValue(); + + int intValue(); + + long longValue(); + + BigDecimal bigDecimalValue(); + + BigInteger bigIntegerValue(); + + float floatValue(); + + double doubleValue(); + + boolean booleanValue(); + + Date dateValue(); + + String stringValue(); + + + String stringValue(CharBuf charBuf); + + String stringValueEncoded(); + + Currency currencyValue(); + + Object toValue(); + + T toEnum( Class cls ); + + boolean isContainer(); //either a map or a collection + + public void chop(); + + char charValue (); + + + TypeType type (); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/Annotated.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/Annotated.java new file mode 100644 index 0000000..f96046d --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/Annotated.java @@ -0,0 +1,41 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.reflection; + +/** + * Created by Richard on 2/20/14. + */ +public interface Annotated { + + public Iterable annotationData(); + + boolean hasAnnotation(String annotationName) ; + AnnotationData annotation(String annotationName) ; + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/AnnotationData.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/AnnotationData.java new file mode 100644 index 0000000..8bc939d --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/AnnotationData.java @@ -0,0 +1,165 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.reflection; + + +import java.lang.annotation.Annotation; +import java.lang.reflect.Method; +import java.util.HashMap; +import java.util.HashSet; +import java.util.Map; +import java.util.Set; + +import static org.boon.Str.uncapitalize; + + +/** + * This is a helper class that helps us extract annotation data + * from the Annotations. + *

+ * This was pulled over from crank. I have not given in a thorough review yet. + * + * @author Rick Hightower + */ +public class AnnotationData { + + /** + * The name of the classname of the annotation. + */ + private String annotationClassName; + + /** + * The simple name of the annotation. + */ + private String annotationSimpleName; + + /** + * The package of the annotation. + */ + private String annotationPackageName; + + private Set allowedAnnotations; + + private String name; + + private Map values; + + public AnnotationData( Annotation annotation ) { + this( annotation, new HashSet() ); + } + + public AnnotationData( Annotation annotation, Set allowedAnnotations ) { + + this.annotationSimpleName = annotation.annotationType().getSimpleName (); + this.annotationClassName = annotation.annotationType().getName (); + this.annotationPackageName = annotationClassName.substring ( 0, annotationClassName.length () + - annotationSimpleName.length () - 1 ); + this.allowedAnnotations = allowedAnnotations; + this.name = uncapitalize( annotationSimpleName ); + this.values = doGetValues(annotation); + } + + + + + /** + * Determines if this is an annotation we care about. + * Checks to see if the package name is in the set. + */ + public boolean isAllowed() { + if (allowedAnnotations ==null || allowedAnnotations.size ()==0) return true; + return allowedAnnotations.contains( annotationPackageName ); + } + + /** + * Get the name of the annotation by lowercasing the first letter + * of the simple name, e.g., short name Required becomes required. + * + * @return + */ + public String getName() { + return name; + } + + /** + * Get the values from the annotation. + * We use reflection to turn the annotation into a simple HashMap + * of values. + * + * @return + */ + Map doGetValues(Annotation annotation) { + /* Holds the value map. */ + Map values = new HashMap(); + /* Get the declared staticMethodMap from the actual annotation. */ + Method[] methods = annotation.annotationType().getDeclaredMethods(); + + final Object[] noargs = ( Object[] ) null; + + /* Iterate through declared staticMethodMap and extract values + * by invoking decalared staticMethodMap if they are no arg staticMethodMap. + */ + for ( Method method : methods ) { + /* If it is a no arg method assume it is an annoation value. */ + if ( method.getParameterTypes().length == 0 ) { + try { + /* Get the value. */ + Object value = method.invoke( annotation, noargs ); + if (value instanceof Enum) { + Enum enumVal = (Enum)value; + value = enumVal.name (); + } + values.put( method.getName(), value ); + } catch ( Exception ex ) { + throw new RuntimeException( ex ); + } + } + } + return values; + } + + public Map getValues() { + return values; + } + + public String toString() { + return name; + } + + + public String getFullClassName () { + return annotationClassName; + } + + + public String getSimpleClassName () { + return annotationSimpleName; + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/Annotations.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/Annotations.java new file mode 100644 index 0000000..9aa439b --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/Annotations.java @@ -0,0 +1,487 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.reflection; + +import org.boon.Exceptions; +import org.boon.core.Sys; + +import java.beans.BeanInfo; +import java.beans.IntrospectionException; +import java.beans.Introspector; +import java.beans.PropertyDescriptor; +import java.lang.annotation.Annotation; +import java.lang.ref.WeakReference; +import java.lang.reflect.Constructor; +import java.lang.reflect.Field; +import java.lang.reflect.Method; +import java.util.*; +import java.util.concurrent.ConcurrentHashMap; + +import static org.boon.Boon.sputs; +import static org.boon.Exceptions.requireNonNull; + +public class Annotations { + + private final static Context _context; + private static WeakReference weakContext = new WeakReference<>( null ); + + + private static class Context { + + private Map< + Class, + Map + >> annotationDataCacheProperty = new ConcurrentHashMap<> ( ); + + + + private Map< + Class, + Map + >> annotationDataCacheField = new ConcurrentHashMap<> ( ); + + + private Map, List> annotationDataCacheClass + = new ConcurrentHashMap<>( ); + + + private Map< + Class, + Map + > annotationDataCacheClassAsMap + = new ConcurrentHashMap<>( ); + + + } + + static { + + boolean noStatics = Boolean.getBoolean( "org.boon.noStatics" ); + if ( noStatics || Sys.inContainer () ) { + + _context = null; + weakContext = new WeakReference<>( new Context() ); + + } else { + _context = new Context(); + } + } + + + + /* Manages weak references. */ + private static Context context() { + + if ( _context != null ) { + return _context; + } else { + Context context = weakContext.get(); + if ( context == null ) { + context = new Context(); + weakContext = new WeakReference<>( context ); + } + return context; + } + } + + public static List getAnnotationDataForProperty( Class clazz, String propertyName, boolean useReadMethod, Set allowedPackages ) { + + final Map, Map>> cacheProperty = context ().annotationDataCacheProperty; + + Map> classMap = cacheProperty.get(clazz); + + if (classMap == null) { + classMap = new ConcurrentHashMap<> ( ); + cacheProperty.put ( clazz, classMap ); + } + + List annotationDataList = classMap.get ( propertyName ); + if (annotationDataList == null ) { + + annotationDataList = extractValidationAnnotationData ( extractAllAnnotationsForProperty ( clazz, propertyName, useReadMethod ), allowedPackages ); + if (annotationDataList == null) { + annotationDataList = Collections.EMPTY_LIST; + } + classMap.put (propertyName, annotationDataList ); + + } + + return annotationDataList; + + } + + public static List getAnnotationDataForField( Class clazz, String propertyName, Set allowedPackages ) { + + final Map, Map>> cacheProperty = context ().annotationDataCacheField; + + Map> classMap = cacheProperty.get(clazz); + + if (classMap == null) { + classMap = new ConcurrentHashMap<> ( ); + cacheProperty.put ( clazz, classMap ); + } + + List annotationDataList = classMap.get ( propertyName ); + if (annotationDataList == null ) { + + annotationDataList = extractValidationAnnotationData( findFieldAnnotations( clazz, propertyName ), allowedPackages ); + + if (annotationDataList == null) { + annotationDataList = Collections.EMPTY_LIST; + } + classMap.put (propertyName, annotationDataList ); + + } + + return annotationDataList; + + } + + public static List getAnnotationDataForClass( Class clazz ) { + return getAnnotationDataForClass ( clazz, Collections.EMPTY_SET ); + + } + + + + public static List getAnnotationDataForMethod( Method method ) { + List list = extractValidationAnnotationData( method.getDeclaredAnnotations(), Collections.EMPTY_SET ); + return list; + } + + + public static List> getAnnotationDataForMethodParams( Method method ) { + + + final Annotation[][] parameterAnnotations = method.getParameterAnnotations(); + + final List> parameterAnnotationsList = new ArrayList<>(parameterAnnotations.length); + + for (Annotation[] paramAnnotaions : parameterAnnotations) { + List list = extractValidationAnnotationData( paramAnnotaions, Collections.EMPTY_SET ); + parameterAnnotationsList.add(list); + + } + + return parameterAnnotationsList; + } + + public static List getAnnotationDataForMethod( Constructor method ) { + List list = extractValidationAnnotationData( method.getDeclaredAnnotations(), Collections.EMPTY_SET ); + return list; + } + + + public static Map getAnnotationDataForClassAsMap( Class clazz ) { + + final Map, Map> cache = context ().annotationDataCacheClassAsMap; + + Map map = cache.get ( clazz ); + + if (map == null) { + final List list = getAnnotationDataForClass ( clazz ); + + if (list.size () == 0) { + map = Collections.EMPTY_MAP; + } else { + map = new ConcurrentHashMap<> ( list.size () ); + + for (AnnotationData data : list) { + map.put ( data.getFullClassName (), data ); + map.put ( data.getSimpleClassName (), data); + map.put ( data.getName (), data); + } + } + cache.put ( clazz, map ); + } + return map; + } + + public static List getAnnotationDataForClass( Class clazz, Set allowedPackages ) { + + final Map, List> cache = context ().annotationDataCacheClass; + + List annotationDataList = cache.get ( clazz ); + if (annotationDataList == null) { + annotationDataList = extractValidationAnnotationData( findClassAnnotations( clazz ), allowedPackages ); + cache.put ( clazz, annotationDataList ); + } + return annotationDataList; + } + + private static Annotation[] findClassAnnotations( Class clazz ) { + return clazz.getAnnotations(); + } + + public static Collection getAnnotationDataForFieldAndProperty( Class clazz, String propertyName, Set allowedPackages ) { + /* Extract the AnnotationData from the Java annotation. */ + List propertyAnnotationDataList = + getAnnotationDataForProperty( clazz, propertyName, false, allowedPackages ); + + /* Read the field annotation. */ + List fieldAnnotationDataList = + getAnnotationDataForField( clazz, propertyName, allowedPackages ); + + /* Combine the annotation from field and properties. Field validations take precedence over property validations. */ + Map map = new HashMap( propertyAnnotationDataList.size() + fieldAnnotationDataList.size() ); + + /* Add the property annotation to the map. */ + for ( AnnotationData annotationData : propertyAnnotationDataList ) { + map.put( annotationData.getName(), annotationData ); + } + + /* Add the field annotation to the map allowing them to override the property annotation. */ + for ( AnnotationData annotationData : fieldAnnotationDataList ) { + map.put( annotationData.getName(), annotationData ); + } + return map.values(); + } + + + /** + * Create an annotation data list. + * + * @param annotations list of annotation. + * @return + */ + public static List extractValidationAnnotationData( + Annotation[] annotations, Set allowedPackages ) { + List annotationsList = new ArrayList<>(); + for ( Annotation annotation : annotations ) { + AnnotationData annotationData = new AnnotationData( annotation, allowedPackages ); + if ( annotationData.isAllowed() ) { + annotationsList.add( annotationData ); + } + } + return annotationsList; + } + + /** + * Extract all annotation for a given property. + * Searches current class and if none found searches + * super class for annotation. We do this because the class + * could be proxied with AOP. + * + * @param clazz Class containing the property. + * @param propertyName The name of the property. + * @return + */ + private static Annotation[] extractAllAnnotationsForProperty( Class clazz, String propertyName, boolean useRead ) { + try { + + Annotation[] annotations = findPropertyAnnotations( clazz, propertyName, useRead ); + + /* In the land of dynamic proxied AOP classes, + * this class could be a proxy. This seems like a bug + * waiting to happen. So far it has worked... */ + if ( annotations.length == 0 ) { + annotations = findPropertyAnnotations( clazz.getSuperclass(), propertyName, useRead ); + } + return annotations; + } catch ( Exception ex ) { + return Exceptions.handle ( Annotation[].class, + sputs ( + "Unable to extract annotation for property", + propertyName, " of class ", clazz, + " useRead ", useRead ), ex ); + } + + } + + /** + * Find annotation given a particular property name and clazz. This figures + * out the writeMethod for the property, and uses the write method + * to look up the annotation. + * + * @param clazz The class that holds the property. + * @param propertyName The name of the property. + * @return + * @throws IntrospectionException + * + */ + private static Annotation[] findPropertyAnnotations( Class clazz, String propertyName, boolean useRead ) + throws IntrospectionException { + + PropertyDescriptor propertyDescriptor = getPropertyDescriptor( clazz, propertyName ); + if ( propertyDescriptor == null ) { + return new Annotation[]{ }; + } + Method accessMethod = null; + + if ( useRead ) { + accessMethod = propertyDescriptor.getReadMethod(); + } else { + accessMethod = propertyDescriptor.getWriteMethod(); + } + + if ( accessMethod != null ) { + Annotation[] annotations = accessMethod.getAnnotations(); + return annotations; + } else { + return new Annotation[]{ }; + } + } + + + /** + * This needs refactor and put into Refleciton. + */ + private static PropertyDescriptor getPropertyDescriptor( final Class type, final String propertyName ) { + + requireNonNull( type ); + requireNonNull( propertyName ); + + if ( !propertyName.contains( "." ) ) { + return doGetPropertyDescriptor( type, propertyName ); + } else { + String[] propertyNames = propertyName.split( "[.]" ); + Class clazz = type; + PropertyDescriptor propertyDescriptor = null; + for ( String pName : propertyNames ) { + propertyDescriptor = doGetPropertyDescriptor( clazz, pName ); + if ( propertyDescriptor == null ) { + return null; + } + clazz = propertyDescriptor.getPropertyType(); + } + return propertyDescriptor; + } + } + + + private static Annotation[] findFieldAnnotations( Class clazz, String propertyName ) { + Field field = getField( clazz, propertyName ); + + if ( field == null ) { + return new Annotation[]{ }; + } + Annotation[] annotations = field.getAnnotations(); + return annotations; + } + + + /** + * This needs to be refactored and put into Reflection or something. + */ + private static PropertyDescriptor doGetPropertyDescriptor( final Class type, final String propertyName ) { + try { + BeanInfo beanInfo = Introspector.getBeanInfo( type ); + PropertyDescriptor[] propertyDescriptors = beanInfo.getPropertyDescriptors(); + for ( PropertyDescriptor pd : propertyDescriptors ) { + if ( pd.getName().equals( propertyName ) ) { + return pd; + } + } + Class superclass = type.getSuperclass(); + if ( superclass != null ) { + return doGetPropertyDescriptor( superclass, propertyName ); + } + return null; + + } catch ( Exception ex ) { + throw new RuntimeException( "Unable to get property " + propertyName + " for class " + type, + ex ); + } + } + + + private static Field getField( final Class type, final String fieldName ) { + if ( !fieldName.contains( "." ) ) { + return doFindFieldInHeirarchy( type, fieldName ); + } else { + String[] fieldNames = fieldName.split( "[.]" ); + Class clazz = type; + Field field = null; + for ( String fName : fieldNames ) { + field = doFindFieldInHeirarchy( clazz, fName ); + if ( field == null ) { + return null; + } + clazz = field.getType(); + } + + field.setAccessible( true ); + return field; + } + } + + + private static Field doFindFieldInHeirarchy( Class clazz, String propertyName ) { + Field field = doGetField( clazz, propertyName ); + + Class sclazz = clazz.getSuperclass(); + if ( field == null ) { + while ( true ) { + if ( sclazz != null ) { + field = doGetField( sclazz, propertyName ); + sclazz = sclazz.getSuperclass(); + } + if ( field != null ) { + break; + } + if ( sclazz == null ) { + break; + } + } + } + + if (field!=null)field.setAccessible( true ); + return field; + } + + private static Field doGetField( Class clazz, String fieldName ) { + Field field = null; + try { + field = clazz.getDeclaredField( fieldName ); + } catch ( SecurityException se ) { + field = null; + } catch ( NoSuchFieldException nsfe ) { + field = null; + } + if ( field == null ) { + Field[] fields = clazz.getDeclaredFields(); + for ( Field f : fields ) { + if ( f.getName().equals( fieldName ) ) { + field = f; + } + } + } + if ( field != null ) { + field.setAccessible( true ); + } + return field; + } + + + + public static Object contextToHold() { + return context(); + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/BaseAccess.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/BaseAccess.java new file mode 100644 index 0000000..9f7a7e3 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/BaseAccess.java @@ -0,0 +1,45 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.reflection; + +import java.lang.reflect.Type; + +/** + * Created by Richard on 2/20/14. + */ +public interface BaseAccess extends Annotated{ + + + + Class[] parameterTypes() ; + + + + Type[] getGenericParameterTypes(); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/BeanUtils.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/BeanUtils.java new file mode 100644 index 0000000..9e0f550 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/BeanUtils.java @@ -0,0 +1,2023 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.reflection; + +import org.boon.*; +import org.boon.core.Conversions; +import org.boon.core.Typ; +import org.boon.core.TypeType; +import org.boon.core.Value; +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.primitive.CharBuf; + +import java.lang.reflect.Array; +import java.lang.reflect.Field; +import java.lang.reflect.ParameterizedType; +import java.util.*; +import java.util.concurrent.ConcurrentHashMap; + +import static org.boon.Boon.className; +import static org.boon.Boon.sputs; +import static org.boon.Exceptions.*; +import static org.boon.Str.lines; +import static org.boon.StringScanner.isDigits; +import static org.boon.primitive.CharScanner.isDigit; + +/** + * Created by rick on 12/20/13. + */ +public class BeanUtils { + + /** + * This method handles walking lists of lists. + * + * @param item + * @param path + * @return + */ + public static Object getPropByPath( Object item, String... path ) { + + Object o = item; + for ( int index = 0; index < path.length; index++ ) { + String propName = path[ index ]; + if ( o == null ) { + return null; + } else if ( o.getClass().isArray() || o instanceof Collection ) { + + + o = getCollectionProp(o, propName, index, path); + break; + } else { + o = getProp( o, propName ); + } + } + + return Conversions.unifyListOrArray(o); + } + + + /** + * This returns getPropertyFieldFieldAccessMap(clazz, true, true); + * + * @param clazz gets the properties or fields of this class. + * @return + */ + private static Map getPropertyFieldAccessMap( Class clazz ) { + return Reflection.getPropertyFieldAccessMapFieldFirst( clazz ); + } + + + public static FieldAccess getField( Class clazz, String name ) { + + Map fields = getPropertyFieldAccessMap( clazz ); + if ( fields != null) { + return fields.get(name); + } else { + return null; + } + } + + + public static FieldAccess getField( Object object, String name ) { + + Map fields = getFieldsFromObject( object ); + if ( fields != null) { + return fields.get(name); + } else { + return null; + } + } + + public static Map getFieldsFromObject( Class cls ) { + return getPropertyFieldAccessMap( cls ); + } + + /** + * Get fields from object or Map. + * Allows maps to act like they have fields. + * + * @param object + * @return + */ + public static Map getFieldsFromObject( Object object ) { + + try { + Map fields; + + if ( object instanceof Map ) { + + fields = getFieldsFromMap( ( Map ) object ); + } else { + fields = getPropertyFieldAccessMap( object.getClass() ); + + } + + + return fields; + } catch (Exception ex) { + requireNonNull(object, "Item cannot be null" ); + return handle(Map.class, ex, "Unable to get fields from object", className(object)); + } + + } + + + /** + * Get fields from map. + * + * @param map + * @return + */ + private static Map getFieldsFromMap(final Map map ) { + + + return new Map() { + @Override + public int size() { + return map.size(); + } + + @Override + public boolean isEmpty() { + return map.isEmpty(); + } + + @Override + public boolean containsKey(Object key) { + return map.containsKey(key); + } + + @Override + public boolean containsValue(Object value) { + return true; + } + + @Override + public FieldAccess get(final Object key) { + return new FieldAccess() { + @Override + public boolean injectable() { + return false; + } + + @Override + public boolean requiresInjection() { + return false; + } + + @Override + public boolean isNamed() { + return false; + } + + @Override + public boolean hasAlias() { + return false; + } + + @Override + public String alias() { + return null; + } + + @Override + public String named() { + return key.toString(); + } + + @Override + public String name() { + return key.toString(); + } + + @Override + public Object getValue(Object obj) { + return map.get(key); + } + + @Override + public void setValue(Object obj, Object value) { + map.put(key.toString(), value); + } + + @Override + public void setFromValue(Object obj, Value value) { + map.put(key.toString(), value.toValue()); + } + + @Override + public boolean getBoolean(Object obj) { + return Conversions.toBoolean(getValue(key)); + } + + @Override + public void setBoolean(Object obj, boolean value) { + + setValue(map, value); + + } + + @Override + public int getInt(Object obj) { + + return Conversions.toInt(getValue(key)); + } + + @Override + public void setInt(Object obj, int value) { + + setValue(map, value); + } + + @Override + public short getShort(Object obj) { + + return Conversions.toShort(getValue(key)); + } + + @Override + public void setShort(Object obj, short value) { + + setValue(map, value); + + } + + @Override + public char getChar(Object obj) { + + return Conversions.toChar(getValue(key)); + } + + @Override + public void setChar(Object obj, char value) { + + setValue(map, value); + + } + + @Override + public long getLong(Object obj) { + + return Conversions.toChar(getValue(key)); + } + + @Override + public void setLong(Object obj, long value) { + + setValue(map, value); + } + + @Override + public double getDouble(Object obj) { + + return Conversions.toDouble(getValue(key)); + } + + @Override + public void setDouble(Object obj, double value) { + + + setValue(map, value); + + } + + @Override + public float getFloat(Object obj) { + + return Conversions.toFloat(getValue(key)); + } + + @Override + public void setFloat(Object obj, float value) { + + setValue(map, value); + + } + + @Override + public byte getByte(Object obj) { + + return Conversions.toByte(getValue(key)); + } + + @Override + public void setByte(Object obj, byte value) { + + setValue(map, value); + + } + + @Override + public Object getObject(Object obj) { + + return getValue(obj); + } + + @Override + public void setObject(Object obj, Object value) { + + this.setValue(obj, value); + } + + @Override + public TypeType typeEnum() { + return TypeType.OBJECT; + } + + @Override + public boolean isPrimitive() { + return false; + } + + @Override + public boolean isFinal() { + return false; + } + + @Override + public boolean isStatic() { + return false; + } + + @Override + public boolean isVolatile() { + return false; + } + + @Override + public boolean isQualified() { + return false; + } + + @Override + public boolean isReadOnly() { + return false; + } + + @Override + public boolean isWriteOnly() { + return false; + } + + @Override + public Class type() { + return Object.class; + } + + @Override + public Class declaringParent() { + return null; + } + + @Override + public Object parent() { + return map; + } + + @Override + public Field getField() { + return null; + } + + @Override + public boolean include() { + return true; + } + + @Override + public boolean ignore() { + return false; + } + + @Override + public ParameterizedType getParameterizedType() { + return null; + } + + @Override + public Class getComponentClass() { + return null; + } + + @Override + public boolean hasAnnotation(String annotationName) { + return false; + } + + @Override + public Map getAnnotationData(String annotationName) { + return null; + } + + @Override + public boolean isViewActive(String activeView) { + return false; + } + + @Override + public void setStaticValue(Object newValue) { + + } + + @Override + public TypeType componentType() { + return null; + } + }; + } + + @Override + public FieldAccess put(String key, FieldAccess value) { + return null; + } + + @Override + public FieldAccess remove(Object key) { + return null; + } + + @Override + public void putAll(Map m) { + + } + + @Override + public void clear() { + + } + + @Override + public Set keySet() { + return null; + } + + @Override + public Collection values() { + return null; + } + + @Override + public Set> entrySet() { + return null; + } + }; + + + } + + + /** + * Get property value, loads nested properties + * + * @param root + * @param properties + * @return + */ + public static void setPropertyValue( final Object root, final Object newValue, final String... properties ) { + + Object object = root; + + int index = 0; + + + try { + + for ( String property : properties ) { + + + Map fields = getFieldsFromObject( object ); + FieldAccess field = fields.get( property ); + + + if ( isDigits( property ) ) { + /* We can index numbers and names. */ + object = idx ( object, StringScanner.parseInt ( property ) ); + + } else { + + if ( field == null ) { + die( sputs( + "We were unable to access property=", property, + "\nThe properties passed were=", properties, + "\nThe root object is =", root.getClass().getName(), + "\nThe current object is =", object.getClass().getName() + ) + ); + } + + + if ( index == properties.length - 1 ) { + field.setValue( object, newValue ); + } else { + object = field.getObject( object ); + } + } + + index++; + } + } catch (Exception ex) { + requireNonNull(root, "Root cannot be null"); + handle(ex, "Unable to set property for root object", className(root), + "for property path", properties, "with new value", newValue, + "last object in the tree was", + className(object), "current property index", index); + } + + } + + + + /** + * Get property value, loads nested properties + * + * @param root + * @param properties + * @return + */ + public static void setPropertyValue( final Class root, final Object newValue, final String... properties ) { + + Object object = root; + + int index = 0; + + + Map fields = getFieldsFromObject( root ); + + + try { + + for ( String property : properties ) { + + FieldAccess field = fields.get( property ); + + + if ( isDigits( property ) ) { + /* We can index numbers and names. */ + object = idx ( object, StringScanner.parseInt ( property ) ); + + } else { + + if ( field == null ) { + die( sputs( + "We were unable to access property=", property, + "\nThe properties passed were=", properties, + "\nThe root object is =", root.getClass().getName(), + "\nThe current object is =", object.getClass().getName() + ) + ); + } + + + if ( index == properties.length - 1 ) { + if (object instanceof Class) { + field.setStaticValue( newValue ); + } else { + field.setValue( object, newValue ); + + } + } else { + object = field.getObject( object ); + if (object != null) { + fields = getFieldsFromObject( root ); + } + } + } + + index++; + } + } catch (Exception ex) { + requireNonNull(root, "Root cannot be null"); + handle(ex, "Unable to set property for root object", className(root), + "for property path", properties, "with new value", newValue, + "last object in the tree was", + className(object), "current property index", index); + } + + } + + + + /** + * Get property value, loads nested properties + * + * @param root + * @param properties + * @return + */ + public static Object getPropertyValue( final Object root, final String... properties ) { + + + + Object object = root; + + + + for ( String property : properties ) { + + if (object == null) { + return null; + } + + if (property.equals("this")) { + if (!(object instanceof Map)) { + continue; + } else { + Object aThis = ((Map) object).get("this"); + if (aThis!=null) { + object = aThis; + continue; + } else { + continue; + } + } + } + + if (object instanceof Map) { + object = ((Map) object).get(property); + continue; + } + + + char c = property.charAt(0); + if ( isDigit(c) ) { + /* We can index numbers and names. */ + object = idx ( object, StringScanner.parseInt ( property ) ); + + } else { + + + if (object instanceof Collection) { + + object = _getFieldValuesFromCollectionOrArray( object, property); + continue; + } else if (Typ.isArray(object)) { + + + Iterator iter = Conversions.iterator(object); + List list = Lists.list(iter); + object = _getFieldValuesFromCollectionOrArray(list, property); + + continue; + } + + + Map fields = + getPropertyFieldAccessMap( object.getClass() ); + + FieldAccess field = fields.get( property ); + + if ( field == null ) { + return null; + } + + object = field.getValue( object ); + } + } + return object; + } + + /** + * Get property value, loads nested properties + * + * @param root + * @param property + * @return + */ + public static Class getPropertyType( final Object root, final String property ) { + + Map fields = getPropertyFieldAccessMap( root.getClass() ); + + FieldAccess field = fields.get( property ); + return field.type(); + } + + + @SuppressWarnings ( "unchecked" ) + public static T idxGeneric( Class t, Object object, final String path ) { + + + String[] properties = propertyPathAsStringArray(path); + + return ( T ) getPropertyValue( object, properties ); + + + } + + public static List idxList( Class cls, Object items, String path ) { + + String[] properties = propertyPathAsStringArray(path); + return ( List ) getPropByPath( items, properties ); + } + + public static List idxList( Object items, String path ) { + + String[] properties = propertyPathAsStringArray(path); + return ( List ) getPropByPath( items, properties ); + } + + public static List idxRecurse( Class cls, Object items, String path ) { + + String[] properties = propertyPathAsStringArray(path); + return ( List ) getPropByPath( items, properties ); + } + + public static List idxRecurse( Object items, String path ) { + + String[] properties = propertyPathAsStringArray(path); + return ( List ) getPropByPath( items, properties ); + } + + + + + /** + * Get property value + * + * @param object + * @param path in dotted notation + * @return + */ + public static Object idx( Object object, String path ) { + + + String[] properties = propertyPathAsStringArray(path); + + return getPropertyValue( object, properties ); + } + + + /** + * Get property value + * + * @deprecated use atIndex or idx. + * @param object + * @param path in dotted notation + * @return + */ + public static Object indexOf(Object object, String path) { + return atIndex(object, path); + } + + + + + /** + * Get property value + * + * @param object + * @param path in dotted notation + * @return + */ + public static Object atIndex(Object object, String path) { + + + String[] properties = propertyPathAsStringArray(path); + + return getPropertyValue( object, properties ); + } + + static Map splitsPathsCache = new ConcurrentHashMap<>(); + + private static String[] propertyPathAsStringArray(String path) { + String[] split = splitsPathsCache.get(path); + if (split!=null) { + return split; + } + + + split = StringScanner.splitByCharsNoneEmpty(path, '.', '[', ']', '/'); + splitsPathsCache.put(path, split); + return split; + } + + + public static Object findProperty(Object context, String propertyPath) { + + + int index = propertyPath.indexOf('|'); + + Object defaultValue; + + if (index!=-1) { + + String[] splitByPipe = Str.splitByPipe(propertyPath); + defaultValue = splitByPipe[1]; + propertyPath = splitByPipe[0]; + + } else { + defaultValue = null; + } + + Object object; + Iterator iterator = Conversions.iterator(context); + while (iterator.hasNext()) { + Object ctx = iterator.next(); + object = idx(ctx, propertyPath); + if (object != null) { + + if (object instanceof List) { + List list = (List) object; + int nulls = 0; + for (Object o : list) { + if (o == null) { + nulls++; + } + } + if (nulls == list.size()) { + break; + } + } + return object; + } + } + + return defaultValue; + + } + + /** + * Set property value to simulate dependency injection. + * + * @param object + * @param path in dotted notation + * @return + */ + public static void injectIntoProperty( Object object, String path, Object value ) { + + + String[] properties = propertyPathAsStringArray(path); + + setPropertyValue( object, value, properties ); + } + + /** + * Set property value + * + * @param object + * @param path in dotted notation + * @return + */ + public static void idx( Object object, String path, Object value ) { + + + String[] properties = propertyPathAsStringArray(path); + + setPropertyValue( object, value, properties ); + } + + /** + * Set a static value + * + * @param cls + * @param path in dotted notation + * @return + */ + public static void idx( Class cls, String path, Object value ) { + + + String[] properties = propertyPathAsStringArray(path); + + setPropertyValue( cls, value, properties ); + } + + + /** + * This is an amazing little recursive method. It walks a fanout of + * nested collection to pull out the leaf nodes + */ + private static Object getCollectionProp(Object o, String propName, int index, String[] path + ) { + o = _getFieldValuesFromCollectionOrArray(o, propName); + + if ( index + 1 == path.length ) { + return o; + } else { + index++; + return getCollectionProp(o, path[index], index, path); + } + } + + + /** + * This is one is forgiving of null paths. + * This works with getters first, i.e., properties. + * + * @param object + * @param property + * @return + */ + public static Object getProp( Object object, final String property ) { + if ( object == null ) { + return null; + } + + if ( isDigits( property ) ) { + /* We can index numbers and names. */ + object = idx(object, StringScanner.parseInt(property)); + + } + + Class cls = object.getClass(); + + /** Tries the getters first. */ + Map fields = Reflection.getPropertyFieldAccessors( cls ); + + if ( !fields.containsKey( property ) ) { + fields = Reflection.getAllAccessorFields( cls ); + } + + if ( !fields.containsKey( property ) ) { + return null; + } else { + return fields.get( property ).getValue( object ); + } + + } + + + /** + * Get an int property. + */ + public static int getPropertyInt( final Object root, final String... properties ) { + + + final String lastProperty = properties[ properties.length - 1 ]; + + + + + if ( isDigits( lastProperty ) ) { + + return Conversions.toInt(getPropertyValue(root, properties)); + + } + + + Object object = baseForGetProperty( root, properties ); + + Map fields = getFieldsFromObject( object ); + + FieldAccess field = fields.get( lastProperty ); + + + if ( field.type() == Typ.intgr ) { + return field.getInt( object ); + } else { + return Conversions.toInt( field.getValue( object ) ); + } + + } + + + /** + * @param root + * @param properties + * @return + */ + private static Object baseForGetProperty( Object root, String[] properties ) { + Object object = root; + + Map fields = null; + + for ( int index = 0; index < properties.length - 1; index++ ) { + if (object == null) { + return null; + } + + + String property = properties[ index ]; + + + if (property.equals("this")) { + continue; + } + + if ( isDigits( property ) ) { + /* We can index numbers and names. */ + object = idx ( object, StringScanner.parseInt ( property ) ); + + } else { + + if (object instanceof Collection) { + object = _getFieldValuesFromCollectionOrArray( object, property); + + continue; + } else if (Typ.isArray(object)) { + + Iterator iter = Conversions.iterator(object); + List list = Lists.list(iter); + object = _getFieldValuesFromCollectionOrArray(list, property); + + + continue; + } + + + fields = getPropertyFieldAccessMap( object.getClass() ); + + FieldAccess field = fields.get( property ); + + + if ( field == null ) { + return null; + } + + object = field.getObject( object ); + } + } + return object; + } + + + /** + * @param root + * @param properties + * @return + */ + private static Class baseForGetProperty( Class root, String[] properties ) { + Class cls = root; + + Map fields = null; + + for ( int index = 0; index < properties.length - 1; index++ ) { + fields = getPropertyFieldAccessMap( cls ); + + String property = properties[ index ]; + FieldAccess field = fields.get( property ); + cls = field.type(); + } + return cls; + } + /** + * Get property value + * + * @param object + * @param path in dotted notation + * @return + */ + public static int idxInt( Object object, String path ) { + + + String[] properties = propertyPathAsStringArray(path); + + return getPropertyInt( object, properties ); + } + + /** + * Get property value + * + * @param object + * @param path in dotted notation + * @return + */ + public static String idxStr( Object object, String path ) { + + + final Object val = idx(object, path); + return Conversions.toString(val); + } + + private static String getPropertyString(Object root, String[] properties) { + + + + Object object = baseForGetProperty( root, properties ); + + Map fields = getFieldsFromObject( object ); + + final String lastProperty = properties[ properties.length - 1 ]; + FieldAccess field = fields.get( lastProperty ); + + if ( field.type() == Typ.string ) { + return (String) field.getObject( object ); + } else { + return Conversions.toString(field.getValue(object)); + } + + + } + + + /** + * @param root + * @param properties + * @return + */ + public static byte getPropertyByte( final Object root, final String... properties ) { + + + + final String lastProperty = properties[ properties.length - 1 ]; + + if ( isDigits( lastProperty ) ) { + + return Conversions.toByte(getPropertyValue(root, properties)); + + } + + Object object = baseForGetProperty( root, properties ); + + Map fields = getFieldsFromObject( object ); + + FieldAccess field = fields.get( lastProperty ); + + if ( field.type() == Typ.bt ) { + return field.getByte( object ); + } else { + return Conversions.toByte( field.getValue( object ) ); + } + } + + /** + * @param object + * @param path + * @return + */ + public static byte idxByte( Object object, String path ) { + + String[] properties = propertyPathAsStringArray(path); + + return getPropertyByte( object, properties ); + } + + /** + * @param root + * @param properties + * @return + */ + public static float getPropertyFloat( final Object root, final String... properties ) { + + final String lastProperty = properties[ properties.length - 1 ]; + + if ( isDigits( lastProperty ) ) { + + return Conversions.toFloat(getPropertyValue(root, properties)); + + } + + Object object = baseForGetProperty( root, properties ); + + Map fields = getFieldsFromObject( object ); + + FieldAccess field = fields.get( lastProperty ); + + if ( field.type() == Typ.flt ) { + return field.getFloat( object ); + } else { + return Conversions.toFloat( field.getValue( object ) ); + } + } + + + /** + * @param object + * @param path + * @return + */ + public static float idxFloat( Object object, String path ) { + + + String[] properties = propertyPathAsStringArray(path); + + return getPropertyFloat( object, properties ); + } + + + /** + * @param root + * @param properties + * @return + */ + public static short getPropertyShort( final Object root, + final String... properties ) { + + final String lastProperty = properties[ properties.length - 1 ]; + + + + + if ( isDigits( lastProperty ) ) { + + return Conversions.toShort(getPropertyValue(root, properties)); + + } + + + + Object object = baseForGetProperty( root, properties ); + + Map fields = getFieldsFromObject( object ); + FieldAccess field = fields.get( lastProperty ); + + + if ( field.type() == Typ.shrt ) { + return field.getShort( object ); + } else { + return Conversions.toShort( field.getValue( object ) ); + } + } + + + /** + * Get Property Path TypeType + * @param root + * @param properties + * @return + */ + public static Class getPropertyPathType( final Object root, + final String... properties ) { + + + Object object = baseForGetProperty( root, properties ); + + Map fields = getFieldsFromObject( object ); + final String lastProperty = properties[ properties.length - 1 ]; + FieldAccess field = fields.get( lastProperty ); + + return field.type(); + } + + + /** + * Get Property Path TypeType + * @param root + * @param properties + * @return + */ + public static FieldAccess getPropertyPathField( final Object root, + final String... properties ) { + + + Object object = baseForGetProperty( root, properties ); + + Map fields = getFieldsFromObject( object ); + final String lastProperty = properties[ properties.length - 1 ]; + FieldAccess field = fields.get( lastProperty ); + + return field; + } + + + /** + * Get Property Path TypeType + * @param root + * @param properties + * @return + */ + public static FieldAccess getPropertyPathField( final Class root, + final String... properties ) { + + + Class cls = baseForGetProperty( root, properties ); + + Map fields = getFieldsFromObject( cls ); + final String lastProperty = properties[ properties.length - 1 ]; + FieldAccess field = fields.get( lastProperty ); + + return field; + } + + /** + * @param object + * @param path + * @return + */ + public static short idxShort( Object object, String path ) { + + + String[] properties = propertyPathAsStringArray(path); + + return getPropertyShort( object, properties ); + } + + /** + * @param object + * @param path + * @return + */ + public static Class idxType( Object object, String path ) { + + + String[] properties = propertyPathAsStringArray(path); + + return getPropertyPathType( object, properties ); + } + + + /** + * @param object + * @param path + * @return + */ + public static FieldAccess idxField( Object object, String path ) { + + + String[] properties = propertyPathAsStringArray(path); + + return getPropertyPathField( object, properties ); + } + + + /** + * @param cls + * @param path + * @return + */ + public static FieldAccess idxField( Class cls, String path ) { + + + String[] properties = propertyPathAsStringArray(path); + + return getPropertyPathField( cls, properties ); + } + + /** + * @param root + * @param properties + * @return + */ + public static char getPropertyChar( final Object root, + final String... properties ) { + + + final String lastProperty = properties[ properties.length - 1 ]; + + + if ( isDigits( lastProperty ) ) { + + return Conversions.toChar(getPropertyValue(root, properties)); + + } + + Object object = baseForGetProperty( root, properties ); + + Map fields = getFieldsFromObject( object ); + + FieldAccess field = fields.get( lastProperty ); + + if ( field.type() == Typ.chr ) { + return field.getChar( object ); + } else { + return Conversions.toChar( field.getValue( object ) ); + } + } + + + /** + * @param object + * @param path + * @return + */ + public static char idxChar( Object object, String path ) { + + + String[] properties = propertyPathAsStringArray(path); + + return getPropertyChar( object, properties ); + } + + + /** + * @param root + * @param properties + * @return + */ + public static double getPropertyDouble( final Object root, + final String... properties ) { + + + + final String lastProperty = properties[ properties.length - 1 ]; + + + if ( isDigits( lastProperty ) ) { + + return Conversions.toDouble(getPropertyValue(root, properties)); + + } + + + Object object = baseForGetProperty( root, properties ); + + Map fields = getFieldsFromObject( object ); + + FieldAccess field = fields.get( lastProperty ); + + if ( field.type() == Typ.dbl ) { + return field.getDouble( object ); + } else { + return Conversions.toDouble( field.getValue( object ) ); + } + } + + + /** + * @param object + * @param path + * @return + */ + public static double idxDouble( Object object, String path ) { + + + String[] properties = propertyPathAsStringArray(path); + + return getPropertyDouble( object, properties ); + } + + + /** + * @param root + * @param properties + * @return + */ + public static long getPropertyLong( final Object root, + final String... properties ) { + + final String lastProperty = properties[ properties.length - 1 ]; + + + if ( isDigits( lastProperty ) ) { + + return Conversions.toLong(getPropertyValue(root, properties)); + + } + + + Object object = baseForGetProperty( root, properties ); + + Map fields = getFieldsFromObject( object ); + + FieldAccess field = fields.get( lastProperty ); + + if ( field.type() == Typ.lng ) { + return field.getLong( object ); + } else { + return Conversions.toLong( field.getValue( object ) ); + } + } + + + /** + * @param object + * @param path + * @return + */ + public static long idxLong( Object object, String path ) { + + + String[] properties = propertyPathAsStringArray(path); + + return getPropertyLong( object, properties ); + } + + + /** + * @param root + * @param properties + * @return + */ + public static boolean getPropertyBoolean( final Object root, + final String... properties ) { + + + final String lastProperty = properties[ properties.length - 1 ]; + + + if ( isDigits( lastProperty ) ) { + + return Conversions.toBoolean(getPropertyValue(root, properties)); + + } + + + Object object = baseForGetProperty( root, properties ); + + Map fields = getFieldsFromObject( object ); + + FieldAccess field = fields.get( lastProperty ); + + if ( field.type() == Typ.bln ) { + return field.getBoolean( object ); + } else { + return Conversions.toBoolean( field.getValue( object ) ); + } + } + + + public static boolean idxBoolean( Object object, String path ) { + + + String[] properties = propertyPathAsStringArray(path); + + return getPropertyBoolean( object, properties ); + } + + + public static Map collectionToMap( String propertyKey, Collection values ) { + LinkedHashMap map = new LinkedHashMap<>( values.size() ); + for ( V v : values ) { + String key = idxGeneric( Typ.string, v, propertyKey ); + map.put( key, v ); + } + return map; + } + + + public static void copyPropertiesFromMap( final Object dest, final Map src ) { + + Set> props = src.entrySet(); + for ( Map.Entry entry : props ) { + + if (entry.getValue() instanceof Map) { + + + Object newDest; + if (dest instanceof Map) { + newDest = ((Map) dest).get(entry.getKey()); + } else { + newDest = BeanUtils.getPropByPath(dest, entry.getKey()); + } + + if (newDest == null) { + if (dest instanceof Map) { + newDest = new LinkedHashMap<>(); + ((Map) dest).put(entry.getKey(), newDest); + } + } + final Map newSrc = ((Map) entry.getValue()); + copyPropertiesFromMap(newDest, newSrc); + } else { + setPropertyValue(dest, entry.getValue(), entry.getKey()); + } + } + } + + public static void copyProperties( Object object, Map properties ) { + + Set> props = properties.entrySet(); + for ( Map.Entry entry : props ) { + setPropertyValue( object, entry.getValue(), entry.getKey() ); + } + } + + + + private static Object _getFieldValuesFromCollectionOrArray(Object object, + final String key) { + if ( object == null ) { + return null; + } + + if (object instanceof Collection ) { + Collection collection = (Collection) object; + + + if (collection.size() == 0) { + return Collections.EMPTY_LIST; + } + List list = new ArrayList( collection.size() ); + + + Class lastClass=null; + Map fields=null; + FieldAccess field=null; + + + for (Object item : collection) { + + if (item instanceof Map) { + Map map = (Map) item; + list.add(map.get(key)); + }else { + + Class currentClass = Boon.cls(item); + + if (lastClass==null || currentClass != lastClass) { + + fields = getPropertyFieldAccessMap(currentClass); + field = fields.get(key); + lastClass = currentClass; + + } + + if (field == null) { + list.add(idx(item, key)); + } else { + + list.add(field.getValue(item)); + } + } + } + return list; + + } else if ( object.getClass().isArray() ) { + int len = Array.getLength(object); + List list = new ArrayList( len ); + + + Map fields = + getPropertyFieldAccessMap( object.getClass().getComponentType()); + + for (int index = 0; index < len; index++) { + list.add( fields.get(key).getValue(Array.get(object, index))); + } + return list; + } + else { + return atIndex(object, key); + } + + } + + + public static T copy( T item ) { + if ( item instanceof Cloneable ) { + return (T) ClassMeta.classMeta(item.getClass()).invokeUntyped(item, "clone", ( Class[] ) null); + } else { + return fieldByFieldCopy( item ); + } + } + + + public static T fieldByFieldCopy( T item ) { + + final Class aClass = (Class) item.getClass(); + Map fields = Reflection.getAllAccessorFields( aClass ); + + T clone = Reflection.newInstance( aClass ); + + for ( FieldAccess field : fields.values() ) { + + + try { + + /* If the field is static or write only continue. */ + if (field.isStatic() || field.isWriteOnly()) { + continue; + } + + + /* if the field is primitive then just inject it + and allow for conversion if needed. */ + if (field.isPrimitive()) { + field.setValue(clone, field.getValue(item)); + continue; + } + + + Object value = field.getObject(item); + + if (value == null ) { + + field.setObject(clone, null); + continue; + } + + /* If the field is not a basic type and not a primitive then + then recursively copy a version into the field field. + */ + if (!field.isPrimitive() && !Typ.isBasicType(field.type())) { + + + field.setObject(clone, copy(value)); + + continue; + } + + + + /* It was a basic type so just copy a reference to it. */ + /* It is a basic type. */ + if (Typ.isBasicType(field.type())) { + + field.setObject(clone, value); + + continue; + } + + if (Typ.isCollection(field.type())) { + + Collection src = ( Collection ) value; + Class collectionType = field.type(); + Collection dst = Conversions.createCollection(collectionType, src.size()); + + for (Object o : src) { + dst.add( copy ( o ) ); + } + + field.setObject(clone, dst); + + continue; + } + + + /** We don't handle maps yet. */ + if (Typ.isMap(field.type())) { + + + continue; + } + + if (field.type().isArray()) { + + int length = Array.getLength(value); + Object dst = Array.newInstance(field.getComponentClass(), length); + + for (int index =0; index < length; index++) { + Object o = Array.get(value, index); + Array.set(dst, index, copy (o)); + } + + field.setObject(clone, dst); + + continue; + } + + + } catch (Exception ex) { + + return (T) Exceptions.handle(Object.class, "" + field, ex ); + } + } + return clone; + } + + + + + public static void copyProperties( Object src, Object dest ) { + fieldByFieldCopy( src, dest ); + } + + + public static T createFromSrc( Object src, Class dest ) { + T instance = Reflection.newInstance(dest); + fieldByFieldCopy( src, instance ); + return instance; + } + + + public static void copyProperties( Object src, Object dest, String... ignore) { + fieldByFieldCopy( src, dest, Sets.set ( ignore ) ); + } + + public static void copyProperties( Object src, Object dest, Set ignore) { + fieldByFieldCopy( src, dest, ignore ); + } + + private static void fieldByFieldCopy( Object src, Object dst, Set ignore ) { + + final Class srcClass = src.getClass(); + Map srcFields = Reflection.getAllAccessorFields( srcClass ); + + + final Class dstClass = dst.getClass(); + Map dstFields = Reflection.getAllAccessorFields ( dstClass ); + + for ( FieldAccess srcField : srcFields.values() ) { + + if (ignore.contains ( srcField.name() )) { + continue; + } + + FieldAccess dstField = dstFields.get ( srcField.name() ); + try { + + copySrcFieldToDestField ( src, dst, dstField, srcField, ignore ); + + }catch (Exception ex) { + Exceptions.handle( sputs("copying field", srcField.name(), srcClass, " to ", dstField.name(), dstClass), ex ); + } + } + } + + private static void fieldByFieldCopy( Object src, Object dst ) { + + final Class srcClass = src.getClass(); + Map srcFields = Reflection.getAllAccessorFields( srcClass ); + + + final Class dstClass = dst.getClass(); + Map dstFields = Reflection.getAllAccessorFields ( dstClass ); + + for ( FieldAccess srcField : srcFields.values() ) { + + FieldAccess dstField = dstFields.get ( srcField.name() ); + try { + + copySrcFieldToDestField ( src, dst, dstField, srcField, null ); + + }catch (Exception ex) { + Exceptions.handle( sputs("copying field", srcField.name(), srcClass, " to ", dstField.name(), dstClass), ex ); + } + } + } + + private static void copySrcFieldToDestField( Object src, Object dst, FieldAccess dstField, FieldAccess srcField, Set ignore ) { + if ( srcField.isStatic() ) { + return ; + } + + if (dstField == null ) { + return ; + } + + /* If its primitive handle it. */ + if ( srcField.isPrimitive() ) { + dstField.setValue( dst, srcField.getValue( src ) ); + return ; + } + + Object srcValue = srcField.getObject( src ); + + /* if value is null then handle it unless it is primitive.*/ + if (srcValue == null) { + if ( !dstField.isPrimitive () ) { + dstField.setObject(dst, null); + } + return ; + } + + + + + + /* Basic type. */ + if ( Typ.isBasicType( srcField.type() ) ) { + /* Handle non primitive copy. */ + Object value = srcField.getObject( src ); + dstField.setValue( dst, value ); + return ; + } + + /* Types match and not a collection so just copy. */ + if ( !(srcValue instanceof Collection ) && dstField.type() == srcValue.getClass() || + Typ.isSuperType ( dstField.type(), srcValue.getClass () ) ) { + + dstField.setObject(dst, copy( srcField.getObject ( src ) )); + return ; + } + + + + /* Collection field copy. */ + if ( srcValue instanceof Collection && dstField.getComponentClass() != null + && Typ.isCollection ( dstField.type() ) + ) { + + handleCollectionFieldCopy ( dst, dstField, ( Collection ) srcValue ); + return ; + + } + + + /* Non identical object copy. */ + if (dstField.typeEnum () == TypeType.ABSTRACT || dstField.typeEnum () == TypeType.INTERFACE) { + //no op + } else { + Object newInstance = Reflection.newInstance ( dstField.type() ); + if (ignore == null) { + fieldByFieldCopy( srcField.getObject( src ), newInstance ); + } else { + fieldByFieldCopy( srcField.getObject( src ), newInstance, ignore ); + } + dstField.setObject ( dst, newInstance ); + } + } + + private static void handleCollectionFieldCopy( Object dst, FieldAccess dstField, Collection srcValue ) { + if ( dstField.getComponentClass () != Typ.string ) { + + Collection dstCollection = Conversions.createCollection( dstField.type(), srcValue.size() ); + for ( Object srcComponentValue : srcValue ) { + + Object newInstance = Reflection.newInstance( dstField.getComponentClass() ); + fieldByFieldCopy( srcComponentValue, newInstance ); + dstCollection.add ( newInstance ); + } + + dstField.setObject ( dst, dstCollection ); + } else { + + Collection dstCollection = Conversions.createCollection( dstField.type(), srcValue.size() ); + for ( Object srcComponentValue : srcValue ) { + + if (srcComponentValue!=null) { + dstCollection.add ( srcComponentValue.toString () ); + } + } + + dstField.setObject ( dst, dstCollection ); + + } + } + + public static Object idx( Object object, int index ) { + if ( Boon.isArray( object ) ) { + object = Array.get ( object, index ); + } else if ( object instanceof List ) { + object = Lists.idx ( ( List ) object, index ); + } + return object; + } + + public static void idx( Object object, int index, Object value ) { + try { + if ( Boon.isArray( object ) ) { + Array.set( object, index, value ); + } else if ( object instanceof List ) { + Lists.idx( ( List ) object, index, value ); + } + } catch ( Exception notExpected ) { + String msg = lines( "An unexpected error has occurred", + "This is likely a programming error!", + String.format( "Object is %s, index is %s, and set is %s", object, index, value ), + String.format( "The object is an array? %s", object == null ? "null" : object.getClass().isArray() ), + String.format( "The object is of type %s", object == null ? "null" : object.getClass().getName() ), + String.format( "The set is of type %s", value == null ? "null" : value.getClass().getName() ), + + "" + + ); + Exceptions.handle( msg, notExpected ); + } + } + + public static T idx( Class type, Object object, String property ) { + return (T) idx(object, property); + } + + + public static T atIndex( Class type, Object object, String property ) { + return (T) idx(object, property); + } + + + + /** + * Is this a property path? + * @param prop property + * @return true or false + */ + public static boolean isPropPath(String prop) { + if (prop.contains(".")) return true; + if (prop.equals("this")) return true; + if (prop.contains("[")) return true; + + return false; + } + + + + public static void setCollectionProperty(Collection list, String propertyName, Object value) { + for (Object object : list) { + BeanUtils.idx(object, propertyName, value); + } + } + + + public static void setIterableProperty(Iterable list, String propertyName, Object value) { + for (Object object : list) { + BeanUtils.idx(object, propertyName, value); + } + } + + + public static String asPrettyJsonString(Object bean) { + CharBuf buf = CharBuf.createCharBuf(); + return buf.prettyPrintBean(bean).toString(); + } + + public static String asPrettyJsonString(Mapper mapper, Object bean) { + CharBuf buf = CharBuf.createCharBuf(); + return buf.prettyPrintBean(mapper, bean).toString(); + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/ClassMeta.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/ClassMeta.java new file mode 100644 index 0000000..994c01d --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/ClassMeta.java @@ -0,0 +1,556 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.reflection; + +import org.boon.Lists; +import org.boon.collections.MultiMap; +import org.boon.collections.MultiMapImpl; +import org.boon.core.Typ; +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.core.reflection.impl.ConstructorAccessImpl; +import org.boon.core.reflection.impl.MethodAccessImpl; + +import java.lang.invoke.ConstantCallSite; +import java.lang.reflect.Constructor; +import java.lang.reflect.Method; +import java.lang.reflect.Type; +import java.util.*; +import java.util.concurrent.ConcurrentHashMap; + +import static org.boon.Exceptions.die; +import static org.boon.Exceptions.requireNonNull; +import static org.boon.Lists.list; + + +/** + * Created by Richard on 2/17/14. + */ +public class ClassMeta implements Annotated{ + + final Class cls; + + final Map methodMap; + + final List> constructorAccessSet; + + final MultiMapImpl methodsMulti; + final List methods; + + final Map fieldMap; + final Map propertyMap; + + + final List fields; + final List properties; + + + final Set instanceMethods; + + + final Set classMethods; + + + final ConstructorAccess noArgConstructor; + + final static MethodAccess MANY_METHODS = new MethodAccessImpl(){ + @Override + public Object invokeDynamic(Object object, Object... args) { + return null; + } + + @Override + public Object invoke( Object object, Object... args ) { + return die(Object.class, "Unable to invoke method as there are more than one with that same name", object, args); + } + + @Override + public boolean respondsTo(Class[] parametersToMatch) { + return false; + } + + @Override + public Iterable annotationData() { + return die(Iterable.class, "Unable to use method as there are more than one with that same name"); + } + + @Override + public boolean hasAnnotation( String annotationName ) { + return die(Boolean.class, "Unable to invoke method as there are more than one with that same name"); + } + + @Override + public AnnotationData annotation(String annotationName) { + return die(AnnotationData.class, "Unable to invoke method as there are more than one with that same name"); + } + + @Override + public Class[] parameterTypes() { + return die(Class[].class, "Unable to invoke method as there are more than one with that same name"); + } + + @Override + public Type[] getGenericParameterTypes() { + return die(Type[].class, "Unable to invoke method as there are more than one with that same name"); + } + }; + private final Map annotationMap; + private final List annotations; + + + public Set instanceMethods() { + return new LinkedHashSet<>(instanceMethods); + } + + + public Set classMethods() { + return new LinkedHashSet<>(classMethods); + } + + public ClassMeta( Class cls ) { + + requireNonNull(cls); + + this.cls = cls; + + if (!cls.isInterface()) { + + fieldMap = Reflection.getAllAccessorFields( this.cls ); + fields = list(fieldMap.values()); + } else { + fieldMap = Collections.EMPTY_MAP; + fields = Collections.EMPTY_LIST; + } + propertyMap = Reflection.getPropertyFieldAccessors( this.cls ); + properties = list(propertyMap.values()); + + + Constructor[] constructors = cls.getDeclaredConstructors(); + + + ConstructorAccess noArg = null; + + Set set = new LinkedHashSet(); + + for (Constructor constructor : constructors ) { + if (constructor.getParameterTypes().length == 0 ) { + noArg = new ConstructorAccessImpl<>(constructor); + } + set.add(new ConstructorAccessImpl(constructor)); + } + + + this.noArgConstructor = noArg; + + this.constructorAccessSet = (List> ) Lists.safeList(set); + + List> classes = getBaseClassesSuperFirst(cls); + + + + methodMap = new ConcurrentHashMap<>( ); + methodsMulti = new MultiMapImpl<>( ); + instanceMethods = new LinkedHashSet<>(); + classMethods = new LinkedHashSet<>(); + + + + for (Class clasz : classes) { + Method[] methods_ = clasz.getDeclaredMethods(); + + for (Method m : methods_) { + if ( methodMap.containsKey( m.getName() )) { + + /** Checking for duplicates */ + MethodAccessImpl invoker = ( MethodAccessImpl ) methodMap.get( m.getName() ); + if (invoker == MANY_METHODS) { + //do nothing + } + else if (invoker.method.getParameterTypes().length != m.getParameterTypes().length) { + methodMap.put( m.getName(), MANY_METHODS ); + } else { + boolean match = true; + for (int index =0; index < m.getParameterTypes().length; index++) { + if (m.getParameterTypes()[index] != invoker.method.getParameterTypes()[index]) { + match = false; + } + } + /* A match means a subclass overrode a base class. */ + if ( match ) { + methodMap.put( m.getName(), new MethodAccessImpl( m ) ); + } else { + /* Don't allow overloads. */ + methodMap.put( m.getName(), MANY_METHODS ); + } + } + + } else { + methodMap.put( m.getName(), new MethodAccessImpl( m )); + } + + MethodAccessImpl mai = new MethodAccessImpl( m ); + + if (!mai.isStatic()) { + + instanceMethods.add(mai.name()); + + } else { + classMethods.add(mai.name()); + } + + methodsMulti.put( m.getName(), mai); + } + } + + methods = list(methodsMulti.values()); + + + + annotationMap = Annotations.getAnnotationDataForClassAsMap( cls ); + annotations = Annotations.getAnnotationDataForClass(cls); + + } + + public static ClassMeta classMeta( Class aClass ) { + ClassMeta meta = Reflection.context()._classMetaMap.get( aClass ); + if (meta == null) { + meta = new ClassMeta( aClass ); + Reflection.context()._classMetaMap.put( aClass, meta ); + } + return meta; + } + + + public static ClassMeta classMetaUnTyped( Class aClass ) { + ClassMeta meta = Reflection.context()._classMetaMap.get( aClass ); + if (meta == null) { + meta = new ClassMeta( aClass ); + Reflection.context()._classMetaMap.put( aClass, meta ); + } + return meta; + } + + + public static ClassMeta classMetaEither(Object obj) { + if (obj instanceof Class) { + return classMeta((Class) obj); + } else { + return classMeta(obj.getClass()); + } + } + + public MethodAccess method(String name) { + return methodMap.get( name ); + } + + + public Iterable methods(String name) { + return methodsMulti.getAll( name ); + } + + private List> getBaseClassesSuperFirst(Class cls) { + + if (!cls.isInterface()) { + List> classes = new ArrayList( 10 ); + Class currentClass = cls; + while (currentClass != Object.class) { + classes.add( currentClass ); + currentClass = currentClass.getSuperclass(); + } + Collections.reverse( classes ); + + return classes; + } else { + List> classes = list(cls.getInterfaces()); + classes.add(cls); + return classes; + } + + } + + + + public Map fieldMap() { + return fieldMap; + } + + public Map propertyMap() { + return propertyMap; + } + + public Iterator fields() { + return fields.iterator(); + } + + + public Iterable methods() { + return new Iterable() { + @Override + public Iterator iterator() { + return methods.iterator(); + } + }; + } + + public Iterator properties() { + return properties.iterator(); + } + + + + public Iterable> constructors() { + return new Iterable>() { + @Override + public Iterator> iterator() { + return constructorAccessSet.iterator(); + } + }; + } + + public ConstructorAccess noArgConstructor() { + return this.noArgConstructor; + } + + public ConstructorAccess declaredConstructor(Class singleArg) { + for (ConstructorAccess constructorAccess : constructorAccessSet) { + if (constructorAccess.parameterTypes().length==1) { + if (constructorAccess.parameterTypes()[0].isAssignableFrom(singleArg)) { + return constructorAccess; + } + } + } + return null; + } + + + + public List oneArgumentConstructors() { + List constructors = new ArrayList<>(); + for (ConstructorAccess constructorAccess : constructorAccessSet) { + if (constructorAccess.parameterTypes().length==1) { + + constructors.add(constructorAccess); + } + } + + return constructors; + + } + + public Iterable annotationData() { + return new Iterable() { + @Override + public Iterator iterator() { + return annotations.iterator(); + } + }; + } + + public boolean hasAnnotation(String annotationName) { + return annotationMap.containsKey(annotationName); + } + + public AnnotationData annotation(String annotationName) { + return annotationMap.get(annotationName); + } + + + public boolean respondsTo(String methodName) { + return methodMap.containsKey(methodName); + } + + + public boolean respondsTo(String methodName, Class... types) { + + Iterable methods = this.methodsMulti.getAll(methodName); + for (MethodAccess methodAccess : methods) { + if (methodAccess.isStatic()) continue; + if (methodAccess.respondsTo(types) ) { + return true; + }; + } + return false; + + } + + + public boolean respondsTo(String methodName, Object... args) { + + Iterable methods = this.methodsMulti.getAll(methodName); + for (MethodAccess methodAccess : methods) { + if (methodAccess.isStatic()) continue; + if (methodAccess.respondsTo(args) ) { + return true; + }; + } + return false; + + } + + + + public boolean respondsTo(String methodName, List list) { + + Object[] args = list.toArray(new Object[list.size()]); + return respondsTo(methodName, args); + } + + + public boolean handles(Class interfaceMethods) { + Method[] declaredMethods = interfaceMethods.getDeclaredMethods(); + for (Method method : declaredMethods) { + if (!respondsTo(method.getName(), method.getParameterTypes())) { + return false; + } + } + return true; + } + + + public Object invoke(T instance, String methodName, Object... args) { + return methodMap.get(methodName).invoke(instance, args); + } + + public Object invokeUntyped(Object instance, String methodName, Object... args) { + return methodMap.get(methodName).invoke(instance, args); + } + + + public MethodAccess invokeMethodAccess(String methodName) { + return methodMap.get(methodName); + } + + public Object invokeStatic(String methodName, Object... args) { + return methodMap.get(methodName).invokeStatic(args); + } + + + public Object invoke(T instance, String methodName, List args) { + + Object[] array = args.toArray(new Object[args.size()]); + return methodMap.get(methodName).invoke(instance, array); + } + + + public boolean invokePredicate(Object instance, Object arg) { + MethodAccess methodAccess = null; + + if (methods.size()==1) { + methodAccess = methods.get(0); + } else { + methodAccess = methodMap.get("test"); + } + + return (boolean) methodAccess.invoke(instance, arg); + } + + public Object invokeReducer(Object instance, Object sum, Object value) { + + MethodAccess methodAccess; + + if (methods.size()==1) { + methodAccess = methods.get(0); + } else { + methodAccess = methodMap.get("test"); + } + + Class arg1 = methodAccess.parameterTypes()[0]; + if (Typ.isPrimitiveNumber(arg1) && sum == null) { + return methodAccess.invoke(instance, 0, value); + } else { + return methodAccess.invoke(instance, sum, value); + } + } + + public Object invokeFunction(Object instance, Object arg) { + + MethodAccess methodAccess = invokeFunctionMethodAccess(); + return methodAccess.invoke(instance, arg); + } + + + public MethodAccess invokeFunctionMethodAccess() { + + if (methods.size()==1) { + return methods.get(0).methodAccess(); + } else { + return methodMap.get("apply").methodAccess(); + } + } + + public String name() { + return this.cls.getSimpleName(); + } + + + public Class cls() { + return this.cls; + } + + + public String longName() { + return this.cls.getName(); + } + + + public ConstantCallSite invokeReducerLongIntReturnLongMethodHandle(Object object) { + MethodAccess methodAccess; + if (methods.size()==1) { + methodAccess = methods.get(0); + } else { + methodAccess = methodMap.get("reduce"); + } + ConstantCallSite methodHandle = methodAccess.invokeReducerLongIntReturnLongMethodHandle(object); + return methodHandle; + } + + public ConstantCallSite invokeReducerLongIntReturnLongMethodHandle(Object object, String methodName) { + MethodAccess methodAccess; + methodAccess = methodMap.get(methodName); + ConstantCallSite methodHandle = methodAccess.invokeReducerLongIntReturnLongMethodHandle(object); + return methodHandle; + } + + + + public Method invokeReducerLongIntReturnLongMethod(Object object) { + MethodAccess methodAccess; + if (methods.size()==1) { + methodAccess = methods.get(0); + } else { + methodAccess = methodMap.get("reduce"); + } + return methodAccess.method(); + } + + public Method invokeReducerLongIntReturnLongMethod(Object object, String methodName) { + MethodAccess methodAccess; + methodAccess = methodMap.get(methodName); + return methodAccess.method(); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/ConstructorAccess.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/ConstructorAccess.java new file mode 100644 index 0000000..5c725b9 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/ConstructorAccess.java @@ -0,0 +1,39 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.reflection; + +/** + * Created by Richard on 2/20/14. + */ +public interface ConstructorAccess extends BaseAccess { + + + + public T create(Object... args); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/FastStringUtils.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/FastStringUtils.java new file mode 100644 index 0000000..2c18377 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/FastStringUtils.java @@ -0,0 +1,216 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.reflection; + +import sun.misc.Unsafe; + +import java.lang.reflect.Field; +import java.nio.charset.Charset; +import java.nio.charset.StandardCharsets; + +/** + * Created by rick on 12/15/13. + * @author Stéphane Landelle + * J'ai écrit JSON parser du Boon. Sans Stéphane, l'analyseur n'existerait pas. Stéphane est la muse de Boon JSON, et mon entraîneur pour l'open source, github, et plus encore. Stéphane n'est pas le créateur directe, mais il est le maître architecte et je l'appelle mon ami. + */ +public class FastStringUtils { + + public static final Unsafe UNSAFE; + public static final long STRING_VALUE_FIELD_OFFSET; + public static final long STRING_OFFSET_FIELD_OFFSET; + public static final long STRING_COUNT_FIELD_OFFSET; + public static final boolean ENABLED; + + private static final boolean WRITE_TO_FINAL_FIELDS = Boolean.parseBoolean(System.getProperty("org.boon.write.to.final.string.fields", "true")); + private static final boolean DISABLE = Boolean.parseBoolean(System.getProperty("org.boon.faststringutils.disable", "false")); + + private static Unsafe loadUnsafe() { + try { + Field unsafeField = Unsafe.class.getDeclaredField("theUnsafe"); + unsafeField.setAccessible(true); + return (Unsafe) unsafeField.get(null); + + } catch (NoSuchFieldException e) { + return null; + } catch (IllegalAccessException e) { + return null; + } + } + + static { + UNSAFE = DISABLE ? null : loadUnsafe(); + ENABLED = UNSAFE != null; + } + + private static long getFieldOffset(String fieldName) { + if (ENABLED) { + try { + return UNSAFE.objectFieldOffset(String.class.getDeclaredField(fieldName)); + } catch (NoSuchFieldException e) { + // field undefined + } + } + return -1L; + } + + static { + STRING_VALUE_FIELD_OFFSET = getFieldOffset("value"); + STRING_OFFSET_FIELD_OFFSET = getFieldOffset("offset"); + STRING_COUNT_FIELD_OFFSET = getFieldOffset("count"); + } + + private enum StringImplementation { + DIRECT_CHARS { + @Override + public char[] toCharArray(String string) { + return (char[]) UNSAFE.getObject(string, STRING_VALUE_FIELD_OFFSET); + } + + @Override + public String noCopyStringFromChars(char[] chars) { + if (WRITE_TO_FINAL_FIELDS) { + String string = new String(); + UNSAFE.putObject(string, STRING_VALUE_FIELD_OFFSET, chars); + return string; + } else { + return new String(chars); + } + } + }, + OFFSET { + @Override + public char[] toCharArray(String string) { + char[] value = (char[]) UNSAFE.getObject(string, STRING_VALUE_FIELD_OFFSET); + int offset = UNSAFE.getInt(string, STRING_OFFSET_FIELD_OFFSET); + int count = UNSAFE.getInt(string, STRING_COUNT_FIELD_OFFSET); + if (offset == 0 && count == value.length) + // no need to copy + return value; + else + return string.toCharArray(); + } + + @Override + public String noCopyStringFromChars(char[] chars) { + if (WRITE_TO_FINAL_FIELDS) { + String string = new String(); + UNSAFE.putObject(string, STRING_VALUE_FIELD_OFFSET, chars); + UNSAFE.putInt(string, STRING_COUNT_FIELD_OFFSET, chars.length); + return string; + } else { + return new String(chars); + } + } + }, + UNKNOWN { + @Override + public char[] toCharArray(String string) { + return string.toCharArray(); + } + + @Override + public String noCopyStringFromChars(char[] chars) { + return new String(chars); + } + }; + + public abstract char[] toCharArray(String string); + public abstract String noCopyStringFromChars(char[] chars); + } + + public static StringImplementation STRING_IMPLEMENTATION = computeStringImplementation(); + + private static StringImplementation computeStringImplementation() { + + if (STRING_VALUE_FIELD_OFFSET != -1L) { + if (STRING_OFFSET_FIELD_OFFSET != -1L && STRING_COUNT_FIELD_OFFSET != -1L) { + return StringImplementation.OFFSET; + + } else if (STRING_OFFSET_FIELD_OFFSET == -1L && STRING_COUNT_FIELD_OFFSET == -1L) { + return StringImplementation.DIRECT_CHARS; + } else { + // WTF + return StringImplementation.UNKNOWN; + } + } else { + return StringImplementation.UNKNOWN; + } + } + + public static boolean hasUnsafe() { + return ENABLED; + } + + public static final char [] EMPTY_CHARS = new char[0]; + public static final String EMPTY_STRING = ""; + + public static char[] toCharArray(final String string) { + if (string == null) return EMPTY_CHARS; + return STRING_IMPLEMENTATION.toCharArray(string); + + } + + public static char[] toCharArrayNoCheck(final CharSequence charSequence) { + return toCharArray(charSequence.toString()); + } + + public static char[] toCharArray(final CharSequence charSequence) { + if (charSequence == null) return EMPTY_CHARS; + return toCharArray(charSequence.toString()); + } + + public static char[] toCharArrayFromBytes(final byte[] bytes, Charset charset) { + return toCharArray(new String(bytes, charset != null ? charset : StandardCharsets.UTF_8)); + } + + public static String noCopyStringFromChars(final char[] chars) { + if (chars==null) return EMPTY_STRING; + return STRING_IMPLEMENTATION.noCopyStringFromChars(chars); + } + + + public static String noCopyStringFromCharsNoCheck(final char[] chars, int len) { + char[] newChars = new char[len]; + System.arraycopy(chars, 0, newChars, 0, len); + return STRING_IMPLEMENTATION.noCopyStringFromChars(newChars); + } + + public static String noCopyStringFromCharsNoCheck(final char[] chars, int start, int len) { + char[] newChars = new char[len]; + System.arraycopy(chars, start, newChars, 0, len); + return STRING_IMPLEMENTATION.noCopyStringFromChars(newChars); + } + + + public static String noCopyStringFromCharsNoCheck(final char[] chars) { + + return STRING_IMPLEMENTATION.noCopyStringFromChars(chars); + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/Fields.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/Fields.java new file mode 100644 index 0000000..ac866ec --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/Fields.java @@ -0,0 +1,311 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.reflection; + +import org.boon.Sets; +import org.boon.core.Typ; +import org.boon.core.reflection.fields.FieldAccess; + +import java.lang.reflect.Field; +import java.lang.reflect.Modifier; +import java.util.List; +import java.util.Map; +import java.util.Set; + +import static org.boon.Exceptions.die; + +/** + * Created by Richard on 2/17/14. + */ +public class Fields { + private final static Set fieldSortNames = Sets.safeSet( "name", "orderBy", "title", "key" ); + private final static Set fieldSortNamesSuffixes = Sets.safeSet( "Name", "Title", "Key" ); + + private static void setSortableField( Class clazz, String fieldName ) { + Reflection.context()._sortableFields.put( clazz.getName(), fieldName ); + } + + private static String getSortableField( Class clazz ) { + return Reflection.context()._sortableFields.get( clazz.getName() ); + } + + /** + * Checks to see if we have a string field. + * + * @param value1 + * @param name + * @return + */ + public static boolean hasStringField( final Object value1, final String name ) { + + Class clz = value1.getClass(); + return classHasStringField( clz, name ); + } + + /** + * Checks to see if this class has a string field. + * + * @param clz + * @param name + * @return + */ + public static boolean classHasStringField( Class clz, String name ) { + + List fields = Reflection.getAllFields( clz ); + for ( Field field : fields ) { + if ( + field.getType().equals( Typ.string ) && + field.getName().equals( name ) && + !Modifier.isStatic( field.getModifiers() ) && + field.getDeclaringClass() == clz + ) { + return true; + } + } + + return false; + } + + /** + * Checks to if an instance has a field + * + * @param value1 + * @param name + * @return + */ + public static boolean hasField( Object value1, String name ) { + return classHasField( value1.getClass(), name ); + } + + /** + * Checks to see if a class has a field. + * + * @param clz + * @param name + * @return + */ + public static boolean classHasField( Class clz, String name ) { + List fields = Reflection.getAllFields( clz ); + for ( Field field : fields ) { + if ( field.getName().equals( name ) + && !Modifier.isStatic( field.getModifiers() ) + && field.getDeclaringClass() == clz ) { + return true; + } + } + + return false; + } + + /** + * This can be used for default sort. + * + * @param value1 value we are analyzing + * @return first field that is comparable or primitive. + */ + public static String getFirstComparableOrPrimitive( Object value1 ) { + return getFirstComparableOrPrimitiveFromClass( value1.getClass() ); + } + + /** + * This can be used for default sort. + * + * @param clz class we are analyzing + * @return first field that is comparable or primitive or null if not found. + */ + public static String getFirstComparableOrPrimitiveFromClass( Class clz ) { + List fields = Reflection.getAllFields( clz ); + for ( Field field : fields ) { + + if ( ( field.getType().isPrimitive() || Typ.isComparable( field.getType() ) + && !Modifier.isStatic( field.getModifiers() ) + && field.getDeclaringClass() == clz ) + ) { + return field.getName(); + } + } + + return null; + } + + /** + * getFirstStringFieldNameEndsWith + * + * @param value object we are looking at + * @param name name + * @return field name or null + */ + public static String getFirstStringFieldNameEndsWith( Object value, String name ) { + return getFirstStringFieldNameEndsWithFromClass( value.getClass(), name ); + } + + /** + * getFirstStringFieldNameEndsWithFromClass + * + * @param clz class we are looking at + * @param name name + * @return field name or null + */ + public static String getFirstStringFieldNameEndsWithFromClass( Class clz, String name ) { + List fields = Reflection.getAllFields( clz ); + for ( Field field : fields ) { + if ( + field.getName().endsWith( name ) + && field.getType().equals( Typ.string ) + && !Modifier.isStatic( field.getModifiers() ) + && field.getDeclaringClass() == clz ) { + + return field.getName(); + } + } + + return null; + } + + /** + * Gets the first sortable fields found. + * + * @param value1 + * @return sortable field + */ + public static String getSortableField( Object value1 ) { + + if (value1 instanceof Map) { + return getSortableFieldFromMap( (Map) value1); + } else { + return getSortableFieldFromClass( value1.getClass() ); + } + } + + private static String getSortableFieldFromMap(Map map) { + + + + /* See if we have this sortable field and look for string first. */ + for (String name : fieldSortNames) { + if (map.containsKey(name)) { + return name; + } + } + + /* + Now see if we can find one of our predefined suffixes. + */ + for (String suffix : fieldSortNamesSuffixes) { + for (String key : map.keySet()) { + if (key.endsWith(suffix)) { + return key; + } + } + } + + + for (Object object : map.entrySet()) { + Map.Entry entry = (Map.Entry) object; + if (Typ.isBasicType(entry.getValue())) { + return entry.getKey(); + } + } + + + for (Object object : map.entrySet()) { + Map.Entry entry = (Map.Entry) object; + if (entry.getValue() instanceof Comparable) { + return entry.getKey(); + } + } + + return die(String.class, "No suitable sort key was found"); + } + + /** + * Gets the first sortable field. + * + * @param clazz the class we are getting the sortable field from. + * @return sortable field + */ + public static String getSortableFieldFromClass( Class clazz ) { + + /** See if the fieldName is in the field listStream already. + * We keep a hash-map cache. + * */ + String fieldName = getSortableField( clazz ); + + /** + * Not found in cache. + */ + if ( fieldName == null ) { + + /* See if we have this sortable field and look for string first. */ + for ( String name : fieldSortNames ) { + if ( classHasStringField( clazz, name ) ) { + fieldName = name; + break; + } + } + + /* + Now see if we can find one of our predefined suffixes. + */ + if ( fieldName == null ) { + for ( String name : fieldSortNamesSuffixes ) { + fieldName = getFirstStringFieldNameEndsWithFromClass( clazz, name ); + if ( fieldName != null ) { + break; + } + } + } + + /** + * Ok. We still did not find it so give us the first comparable or + * primitive that we can find. + */ + if ( fieldName == null ) { + fieldName = getFirstComparableOrPrimitiveFromClass( clazz ); + } + + /* We could not find a sortable field. */ + if ( fieldName == null ) { + setSortableField( clazz, "NOT FOUND" ); + die( "Could not find a sortable field for type " + clazz ); + + } + + /* We found a sortable field. */ + setSortableField( clazz, fieldName ); + } + return fieldName; + + } + + public static boolean hasField( Class aClass, String name ) { + Map fields = Reflection.getAllAccessorFields( aClass ); + return fields.containsKey( name ); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/Invoker.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/Invoker.java new file mode 100644 index 0000000..b0d9dd8 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/Invoker.java @@ -0,0 +1,995 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.reflection; + + +import org.boon.Boon; +import org.boon.Exceptions; +import org.boon.Lists; +import org.boon.core.Conversions; +import org.boon.core.Typ; +import org.boon.core.TypeType; +import org.boon.core.reflection.fields.FieldAccessMode; +import org.boon.core.reflection.fields.FieldsAccessor; +import org.boon.core.value.ValueContainer; +import org.boon.primitive.CharBuf; + +import java.lang.invoke.ConstantCallSite; +import java.lang.reflect.Method; +import java.lang.reflect.ParameterizedType; +import java.util.*; + +import static org.boon.Boon.className; +import static org.boon.Boon.puts; +import static org.boon.Exceptions.die; +import static org.boon.Exceptions.handle; +import static org.boon.core.Conversions.coerce; +import static org.boon.core.TypeType.gatherTypes; +import static org.boon.core.reflection.MapObjectConversion.*; + +/** + * + * @author Rick Hightower + * Created by Richard on 2/17/14. + */ +public class Invoker { + + + public static Object invokeOverloadedFromObject(Object object, String name, Object args) { + return invokeOverloadedFromObject(false, null, null, object, name, args); + } + + public static Object invokeOverloadedFromObject(boolean respectIgnore, String view, + Set ignoreProperties, + Object object, String name, + Object args) { + + try { + if (args instanceof Map) { + return invokeOverloadedFromList(respectIgnore, view, ignoreProperties, object, name, Lists.list(args)); + } else if (args instanceof List) { + List list = (List) args; + ClassMeta classMeta = ClassMeta.classMeta(object.getClass()); + MethodAccess m = classMeta.method(name); + if (m.parameterTypes().length == 1 && list.size() > 0) { + + Object firstArg = list.get(0); + if (firstArg instanceof Map || firstArg instanceof List) { + return invokeOverloadedFromList(respectIgnore, view, ignoreProperties, object, name, list); + + } else { + return invokeOverloadedFromList(respectIgnore, view, ignoreProperties, object, name, Lists.list(args)); + } + } else { + + return invokeOverloadedFromList(respectIgnore, view, ignoreProperties, object, name, list); + + } + } else if (args == null) { + return invoke(object, name); + } else { + return invokeOverloadedFromList(respectIgnore, view, ignoreProperties, object, name, Lists.list(args)); + } + } + catch(Exception ex) { + return Exceptions.handle(Object.class, ex, "Unable to invoke method object", object, "name", name, "args", args); + } + } + + + public static Object invokeFromObject(Object object, String name, Object args) { + return invokeFromObject(false, null, null, object, name, args); + + } + + + public static Object invokeFromObject(Class cls, String name, Object args) { + return invokeFromObject(false, null, null, cls, null, name, args); + + } + + + /** + * Invokes method from list or map depending on what the Object arg is. + * @param object + * @param method + * @param args + * @return + */ + public static Object invokeMethodFromObjectArg(Object object, MethodAccess method, Object args) { + return invokeMethodFromObjectArg(false, null, null, object, method, args); + + } + + + public static Object invokeMethodFromObjectArg(boolean respectIgnore, String view, Set ignoreProperties, + Object object, MethodAccess method, Object args) { + + try { + if (args instanceof Map) { + return invokeMethodFromList(respectIgnore, view, ignoreProperties, object, method, Lists.list(args)); + } else if (args instanceof List) { + List list = (List) args; + + Class[] paramTypes = method.parameterTypes(); + + if (paramTypes.length == 1 && list.size() > 0) { + + Class firstParamType = paramTypes[0]; + Object firstArg = list.get(0); + + + if ( firstArg instanceof Map ) { + return invokeMethodFromList(respectIgnore, view, ignoreProperties, object, method, list); + + } + + else if (firstArg instanceof List && + !Typ.isCollection(firstParamType) + && !firstParamType.isArray()) { + return invokeMethodFromList(respectIgnore, view, ignoreProperties, object, method, list); + } + else { + return invokeMethodFromList(respectIgnore, view, ignoreProperties, object, method, + Lists.list(args)); + } + } else { + + return invokeMethodFromList(respectIgnore, view, ignoreProperties, object, method, list); + + } + } else if (args == null) { + return method.invoke(object); + } else { + return invokeMethodFromList(respectIgnore, view, ignoreProperties, object, method, Lists.list(args)); + } + }catch (Exception ex) { + return Exceptions.handle(Object.class, ex, "Unable to invoke method object", object, "method", method, "args", args); + + } + + } + + + + public static Object invokeFromObject(boolean respectIgnore, String view, Set ignoreProperties, + Object object, String name, Object args) { + return invokeFromObject(respectIgnore, view, ignoreProperties, object.getClass(), object, name, args); + + } + + public static Object invokeFromObject(boolean respectIgnore, String view, Set ignoreProperties, + Class cls, Object object, String name, Object args) { + + try { + if (args instanceof Map) { + return invokeFromList(respectIgnore, view, ignoreProperties, cls, object, name, Lists.list(args)); + } else if (args instanceof List) { + List list = (List) args; + ClassMeta classMeta = ClassMeta.classMeta(cls); + MethodAccess m = classMeta.method(name); + if (m.parameterTypes().length == 1 && list.size() > 0) { + + Object firstArg = list.get(0); + if (firstArg instanceof Map || firstArg instanceof List) { + return invokeFromList(respectIgnore, view, ignoreProperties, cls, object, name, list); + + } else { + final Class aClass = m.parameterTypes()[0]; + final TypeType type = TypeType.getType(aClass); + switch (type) { + case INSTANCE: + return invokeFromList(respectIgnore, view, ignoreProperties, cls, object, name, Lists.list(args)); + + default: + return invokeFromList(respectIgnore, view, ignoreProperties, cls, object, name, list); + + } + } + } else { + + return invokeFromList(respectIgnore, view, ignoreProperties, cls, object, name, list); + + } + } else if (args == null) { + return invoke(object, name); + } else { + return invokeFromList(respectIgnore, view, ignoreProperties, cls, object, name, Lists.list(args)); + } + } catch (Exception ex) { + return Exceptions.handle(Object.class, ex, "Unable to invoke method object", object, "name", name, "args", args); + } + + } + + public static Object invokeFromList(Object object, String name, List args) { + return invokeFromList(true, null, null, object, name, args); + } + + + public static Object invokeFromList(Class cls, String name, List args) { + return invokeFromList(true, null, null, cls, null, name, args); + } + + public static Object invokeFromList(boolean respectIgnore, String view, Set ignoreProperties, Object object, String name, List args) { + + + return invokeFromList(respectIgnore, view, ignoreProperties, object.getClass(), object, name, args); + + } + + private static Object[] convertArguments(boolean respectIgnore, String view, Set ignoreProperties, + Object object, List argsList, MethodAccess methodAccess + ) { + + List convertedArguments = new ArrayList(argsList); + Class[] parameterTypes = methodAccess.parameterTypes(); + + boolean[] flag = new boolean[1]; + + if (convertedArguments.size() != parameterTypes.length) { + return die(Object[].class, "The list size does not match the parameter" + + " length of the method. Unable to invoke method", methodAccess.name(), "on object", object, "with arguments", convertedArguments); + } + + FieldsAccessor fieldsAccessor = FieldAccessMode.FIELD.create(true); + + + + for (int index = 0; index < parameterTypes.length; index++) { + + if (!matchAndConvertArgs(respectIgnore, view, fieldsAccessor, convertedArguments, methodAccess, parameterTypes, index, ignoreProperties, flag, true)) { + return die(Object[].class, index, "Unable to invoke method as argument types did not match", + methodAccess.name(), "on object", object, "with arguments", convertedArguments, + "\nValue at index = ", convertedArguments.get(index)); + } + + } + + return convertedArguments.toArray(new Object[convertedArguments.size()]); + } + + + public static Object invokeFromList(boolean respectIgnore, String view, Set ignoreProperties, + Class cls, Object object, + String name, List argsList) { + + + + + Object[] finalArgs=null; + ClassMeta classMeta; + MethodAccess methodAccess; + + + classMeta = ClassMeta.classMeta(cls); + methodAccess = classMeta.method(name); + + + try { + finalArgs = convertArguments(respectIgnore, view, ignoreProperties, + object, argsList, methodAccess + ); + + return methodAccess.invoke(object, finalArgs); + + + } catch (Exception ex) { + + + + if (methodAccess != null) { + + + CharBuf buf = CharBuf.create(200); + buf.addLine(); + buf.multiply('-', 10).add("FINAL ARGUMENTS").multiply('-', 10).addLine(); + if (finalArgs!=null) { + for (Object o : finalArgs) { + buf.puts("argument type ", className(o)); + } + } + + + buf.multiply('-', 10).add("INVOKE METHOD").add(methodAccess).multiply('-', 10).addLine(); + buf.multiply('-', 10).add("INVOKE METHOD PARAMS").multiply('-', 10).addLine(); + for (Class c : methodAccess.parameterTypes()) { + buf.puts("constructor type ", c); + } + + buf.multiply('-', 35).addLine(); + + if (Boon.debugOn()) { + puts(buf); + } + + Boon.error( ex, "unable to create invoke method", buf ); + + + return handle(Object.class, ex, buf.toString(), + "\nconstructor parameter types", methodAccess.parameterTypes(), + "\noriginal args\n", argsList, + "\nlist args after conversion", finalArgs, "\nconverted types\n", + gatherTypes(finalArgs), + "original types\n", gatherTypes(argsList), "\n"); + } else { + return handle(Object.class, ex, + "\nlist args after conversion", finalArgs, "types", + gatherTypes(finalArgs), + "\noriginal args", argsList, + "original types\n", gatherTypes(argsList), "\n"); + + } + + + } + + + } + + + public static Object invokeMethodFromList(boolean respectIgnore, String view, Set ignoreProperties, + Object object, MethodAccess method, List argsList) { + + try { + + + if (argsList == null && method.parameterTypes().length == 0) { + return method.invoke(object); + } else { + + Object [] finalArgs = convertArguments(respectIgnore, view, ignoreProperties, + object, argsList, method + ); + + + return method.invoke(object, finalArgs); + } + }catch (Exception ex) { + return Exceptions.handle(Object.class, ex, "Unable to invoke method object", object, "method", method, "args", argsList); + } + + } + + + public static Object invokeEither(Object object, String name, Object... args) { + if (object instanceof Class) { + return invoke((Class)object, name, args); + } else { + return invoke(object, name, args); + } + } + + public static Object invoke(Object object, String name, Object... args) { + return ClassMeta.classMetaUnTyped(object.getClass()).invokeUntyped(object, name, args); + } + + + public static MethodAccess invokeMethodAccess( Object object, String name ) { + return ClassMeta.classMeta(object.getClass()).invokeMethodAccess(name); + } + + + public static MethodAccess invokeMethodAccess(Class cls, String name) { + return ClassMeta.classMeta(cls).invokeMethodAccess(name); + } + + public static Object invoke(Class cls, String name, Object... args) { + return ClassMeta.classMeta(cls).invokeStatic(name, args); + } + + + public static Object invokeOverloaded(Object object, String name, Object... args) { + ClassMeta classMeta = ClassMeta.classMeta(object.getClass()); + Iterable invokers = classMeta.methods(name); + + for (MethodAccess m : invokers) { + if (m.respondsTo(args)) { + return m.invoke(object, args); + } + } + return die(Object.class, "Unable to invoke method", name, "on object", object, "with arguments", args); + } + + + public static Object invokeOverloadedFromList(Object object, String name, List args) { + + return invokeOverloadedFromList(true, null, null, object, name, args); + + } + + public static Object invokeOverloadedFromList(boolean respectIgnore, + String view, + Set ignoreProperties, + Object object, + String name, + List args) { + ClassMeta classMeta = ClassMeta.classMeta(object.getClass()); + Iterable invokers = classMeta.methods(name); + + List list = new ArrayList(args); + FieldsAccessor fieldsAccessor = FieldAccessMode.FIELD.create(true); + + boolean[] flag = new boolean[1]; + + MethodAccess method = lookupOverloadedMethod(respectIgnore, view, ignoreProperties, invokers, list, fieldsAccessor, flag, false); + + if (method == null) { + method = lookupOverloadedMethod(respectIgnore, view, ignoreProperties, invokers, list, fieldsAccessor, flag, true); + } + + if (method!=null) { + return method.invoke(object, list.toArray(new Object[list.size()])); + } else { + return die(Object.class, "Unable to invoke method", name, "on object", object, "with arguments", args); + } + } + + private static + MethodAccess + lookupOverloadedMethod(boolean respectIgnore, String view, Set ignoreProperties, + Iterable invokers, List list, + FieldsAccessor fieldsAccessor, boolean[] flag, boolean loose) { + + MethodAccess method = null; + + loop: + for (MethodAccess m : invokers) { + Class[] parameterTypes = m.parameterTypes(); + if (!(parameterTypes.length == list.size())) { + continue; + } + for (int index = 0; index < parameterTypes.length; index++) { + if (!matchAndConvertArgs(respectIgnore, view, fieldsAccessor, list, m, + parameterTypes, index, ignoreProperties, flag, loose)) { + + continue loop; + } + } + method = m; + break; + } + + return method; + } + + public static void invokeMethodWithAnnotationNoReturn(Object object, String annotation) { + invokeMethodWithAnnotationWithReturnType(object, annotation, void.class); + } + + public static void invokeMethodWithAnnotationWithReturnType(Object object, String annotation, Class returnType) { + invokeMethodWithAnnotationWithReturnType(object.getClass(), object, annotation, returnType); + } + + public static void invokeMethodWithAnnotationWithReturnType(Class type, Object object, String annotation, Class returnType) { + ClassMeta classMeta = ClassMeta.classMeta(type); + Iterable iterate = classMeta.methods(); + for (MethodAccess m : iterate) { + if (m.hasAnnotation(annotation)) { + if (m.parameterTypes().length == 0 && m.returnType() == void.class) { + m.invoke(object); + break; + } + } + } + } + + + public static boolean invokeBooleanReturn(Object object, T v) { + Class cls; + Object instance = null; + if (object instanceof Class) { + cls = (Class) object; + } else { + cls = object.getClass(); + instance = object; + } + + ClassMeta meta = ClassMeta.classMeta(cls); + return meta.invokePredicate(instance, v); + + } + + public static Object invokeReducer(Object object, Object sum, Object value) { + if (object instanceof Class) { + ClassMeta meta = ClassMeta.classMeta((Class)object); + return meta.invokeReducer(null, sum, value); + } else { + ClassMeta meta = ClassMeta.classMeta(object.getClass()); + + return meta.invokeReducer(object, sum, value); + + } + } + + public static Object invokeFunction(Object object, Object arg) { + + if (object instanceof Class) { + ClassMeta meta = ClassMeta.classMeta((Class)object); + return meta.invokeFunction(null, arg); + } else { + ClassMeta meta = ClassMeta.classMeta(object.getClass()); + + return meta.invokeFunction(object, arg); + + } + } + + + + public static MethodAccess invokeFunctionMethodAccess(Object object) { + + if (object instanceof Class) { + ClassMeta meta = ClassMeta.classMeta((Class)object); + return meta.invokeFunctionMethodAccess(); + } else { + ClassMeta meta = ClassMeta.classMeta(object.getClass()); + + return meta.invokeFunctionMethodAccess(); + + } + } + + public static ConstantCallSite invokeReducerLongIntReturnLongMethodHandle(Object object ) { + + ClassMeta meta = ClassMeta.classMeta(object.getClass()); + return meta.invokeReducerLongIntReturnLongMethodHandle(object); + } + + + public static ConstantCallSite invokeReducerLongIntReturnLongMethodHandle(T object, String methodName ) { + + ClassMeta meta = ClassMeta.classMeta(object.getClass()); + return meta.invokeReducerLongIntReturnLongMethodHandle(object, methodName); + } + + public static Method invokeReducerLongIntReturnLongMethod(Object object ) { + + ClassMeta meta = ClassMeta.classMeta(object.getClass()); + return meta.invokeReducerLongIntReturnLongMethod(object); + } + + + public static Method invokeReducerLongIntReturnLongMethod(T object, String methodName ) { + + ClassMeta meta = ClassMeta.classMeta(object.getClass()); + return meta.invokeReducerLongIntReturnLongMethod(object, methodName); + } + + + + /** + * This converts/coerce a constructor argument to the given parameter type. + * + * REFACTOR: + * This method was automatically refactored and its functionality gets duplicated in a few places. + * Namely Invoker lib. It needs to be documented. Refactored to use org.boon.core.TypeType. + * And code coverage. I have used it on several projects and have modified to work on + * edge cases for certain customers and have not updated the unit test. + * This method is beastly and important. It is currently 250 lines of code. + * It started off small, and kept getting added to. It needs love, but it was a bitch to write. + * REFACTOR + * + * @param view honor views for fields + * @param fieldsAccessor how we are going to access the fields (by field, by property, combination) + * @param ignoreSet a set of properties to ignore + * @param respectIgnore honor @JsonIgnore, transients, etc. of the field + * @param convertedArgumentList arguments being converted to match parameter types + * @param methodAccess constructor + * @param parameterTypes parameterTypes + * @param index index of argument + * @return true or false + */ + public static boolean matchAndConvertArgs( boolean respectIgnore, + String view, + FieldsAccessor fieldsAccessor, + List convertedArgumentList, + BaseAccess methodAccess, + Class[] parameterTypes, + int index, + Set ignoreSet, + boolean[] flag, boolean loose) { + + + Object value; + + try { + + Class parameterClass; + Object item; + + parameterClass = parameterTypes[index]; + item = convertedArgumentList.get( index ); + + + final TypeType parameterType = TypeType.getType(parameterClass); + + + if ( item instanceof ValueContainer) { + item = ( ( ValueContainer ) item ).toValue(); + + convertedArgumentList.set( index, item ); + } + + + + + if (item == null) { + return true; + } + + switch (parameterType) { + case INT: + case SHORT: + case BYTE: + case BOOLEAN: + case CHAR: + case FLOAT: + case DOUBLE: + case LONG: + if (item == null) { + return false; + } + + + case INTEGER_WRAPPER: + case BYTE_WRAPPER: + case SHORT_WRAPPER: + case BOOLEAN_WRAPPER: + case CHAR_WRAPPER: + case FLOAT_WRAPPER: + case DOUBLE_WRAPPER: + case CHAR_SEQUENCE: + case NUMBER: + case LONG_WRAPPER: + + if (!loose ) { + if (item instanceof Number) { + value = Conversions.coerceWithFlag(parameterType, parameterClass, flag, item ); + convertedArgumentList.set( index, value ); + + return flag[0]; + } else { + return false; + } + + } else { + value = Conversions.coerceWithFlag(parameterType, parameterClass, flag, item ); + convertedArgumentList.set( index, value ); + + return flag[0]; + + } + + + + + case CLASS: + case ENUM: + case STRING: + if (!loose && !(item instanceof CharSequence)) { + return false; + } + + + value = Conversions.coerceWithFlag(parameterType, parameterClass, flag, item ); + + if (flag[0] == false) { + return false; + } + convertedArgumentList.set( index, value ); + return true; + + case MAP: + case VALUE_MAP: + + if (item instanceof Map) { + Map itemMap = (Map)item; + + /* This code creates a map based on the parameterized types of the constructor arg. + * This does ninja level generics manipulations and needs to be captured in some + * reusable way. + * */ + java.lang.reflect.Type type = methodAccess.getGenericParameterTypes()[index]; + if ( type instanceof ParameterizedType) { + ParameterizedType pType = (ParameterizedType) type; + Class keyType = (Class) pType.getActualTypeArguments()[0]; + + Class valueType = (Class) pType.getActualTypeArguments()[1]; + + + Map newMap = Conversions.createMap(parameterClass, itemMap.size()); + + + /* Iterate through the map items and convert the keys/values to match + the parameterized constructor parameter args. + */ + + for (Object o : itemMap.entrySet()) { + Map.Entry entry = (Map.Entry) o; + + Object key = entry.getKey(); + value = entry.getValue(); + + key = ValueContainer.toObject(key); + + value = ValueContainer.toObject(value); + + + /* Here is the actual conversion from a list or a map of some object. + This can be captured in helper method the duplication is obvious. + */ + if (value instanceof List) { + value = fromList(respectIgnore, view, fieldsAccessor, (List) value, valueType, ignoreSet); + + } else if (value instanceof Map) { + value = fromMap(respectIgnore, view, fieldsAccessor, (Map) value, valueType, ignoreSet); + + } else { + value = coerce(valueType, value); + } + + + if (key instanceof List) { + key = fromList(respectIgnore, view, fieldsAccessor, (List) key, keyType, ignoreSet); + + } else if (value instanceof Map) { + key = fromMap(respectIgnore, view, fieldsAccessor, (Map) key, keyType, ignoreSet); + + } else { + key = coerce(keyType, key); + } + + newMap.put(key, value); + } + convertedArgumentList.set(index, newMap); + return true; + } + } + break; + case INSTANCE: + if ( parameterClass.isInstance( item ) ) { + return true; + } + + if (item instanceof Map) { + item = fromMap( respectIgnore, view, fieldsAccessor, ( Map ) item, parameterClass, ignoreSet ); + convertedArgumentList.set( index, item ); + return true; + } else if ( item instanceof List ) { + + List listItem = null; + + listItem = ( List ) item; + + value = fromList(respectIgnore, view, fieldsAccessor, listItem, parameterClass, ignoreSet ); + + convertedArgumentList.set( index, value ); + return true; + + } else { + convertedArgumentList.set( index, coerce( parameterClass, item ) ); + return true; + } + //break; + case INTERFACE: + case ABSTRACT: + if ( parameterClass.isInstance( item ) ) { + return true; + } + + if (item instanceof Map) { + + /** Handle conversion of user define interfaces. */ + String className = (String) ((Map) item).get("class"); + if (className != null) { + item = fromMap(respectIgnore, view, fieldsAccessor, (Map) item, Reflection.loadClass(className), ignoreSet); + convertedArgumentList.set(index, item); + return true; + } else { + return false; + } + + } + break; + + + case SET: + case COLLECTION: + case LIST: + if (item instanceof List ) { + + List itemList = ( List ) item; + + /* Items have stuff in it, the item is a list of lists. + * This is like we did earlier with the map. + * Here is some more ninja generics Java programming that needs to be captured in one place. + * */ + if ( itemList.size() > 0 && (itemList.get( 0 ) instanceof List || + itemList.get(0) instanceof ValueContainer) ) { + + /** Grab the generic type of the list. */ + java.lang.reflect.Type type = methodAccess.getGenericParameterTypes()[index]; + + /* Try to pull the generic type information out so you can create + a strongly typed list to inject. + */ + if ( type instanceof ParameterizedType ) { + ParameterizedType pType = ( ParameterizedType ) type; + + + Class componentType; + if (! (pType.getActualTypeArguments()[0] instanceof Class)) { + componentType = Object.class; + } else { + componentType = (Class) pType.getActualTypeArguments()[0]; + } + + Collection newList = Conversions.createCollection( parameterClass, itemList.size() ); + + for ( Object o : itemList ) { + if ( o instanceof ValueContainer ) { + o = ( ( ValueContainer ) o ).toValue(); + } + + if (componentType==Object.class) { + newList.add(o); + } else { + + List fromList = ( List ) o; + o = fromList( respectIgnore, view, fieldsAccessor, fromList, componentType, ignoreSet ); + newList.add( o ); + } + } + convertedArgumentList.set( index, newList ); + return true; + + } + } else { + + /* Just a list not a list of lists so see if it has generics and pull out the + * type information and created a strong typed list. This looks a bit familiar. + * There is a big opportunity for some reuse here. */ + java.lang.reflect.Type type = methodAccess.getGenericParameterTypes()[index]; + if ( type instanceof ParameterizedType ) { + ParameterizedType pType = ( ParameterizedType ) type; + + Class componentType = pType.getActualTypeArguments()[0] instanceof Class ? (Class) pType.getActualTypeArguments()[0] : Object.class; + + Collection newList = Conversions.createCollection( parameterClass, itemList.size() ); + + + for ( Object o : itemList ) { + if ( o instanceof ValueContainer ) { + o = ( ( ValueContainer ) o ).toValue(); + } + if (o instanceof List) { + + if (componentType != Object.class) { + + List fromList = ( List ) o; + o = fromList(fieldsAccessor, fromList, componentType); + } + newList.add( o ); + } else if (o instanceof Map) { + Map fromMap = ( Map ) o; + o = fromMap(respectIgnore, view, fieldsAccessor, fromMap, componentType, ignoreSet); + newList.add( o ); + + } else { + newList.add( Conversions.coerce(componentType, o)); + } + } + convertedArgumentList.set( index, newList ); + return true; + + } + + } + } + return false; + + + default: + final TypeType itemType = TypeType.getInstanceType(item); + + switch (itemType) { + case LIST: + convertedArgumentList.set(index, fromList(respectIgnore, view, fieldsAccessor, (List) item, parameterClass, ignoreSet)); + case MAP: + case VALUE_MAP: + convertedArgumentList.set(index, fromMap(respectIgnore, view, fieldsAccessor, (Map) item, parameterClass, ignoreSet)); + + case NUMBER: + case BOOLEAN: + case INT: + case SHORT: + case BYTE: + case FLOAT: + case DOUBLE: + case LONG: + case DOUBLE_WRAPPER: + case FLOAT_WRAPPER: + case INTEGER_WRAPPER: + case SHORT_WRAPPER: + case BOOLEAN_WRAPPER: + case BYTE_WRAPPER: + case LONG_WRAPPER: + case CLASS: + case VALUE: + value = Conversions.coerceWithFlag( parameterClass, flag, item ); + + if (flag[0] == false) { + return false; + } + convertedArgumentList.set( index, value ); + return true; + + + + case CHAR_SEQUENCE: + case STRING: + + value = Conversions.coerceWithFlag( parameterClass, flag, item ); + + if (flag[0] == false) { + return false; + } + convertedArgumentList.set( index, value ); + return true; + + + + } + + + + } + + + if ( parameterClass.isInstance( item ) ) { + return true; + } + + + } catch (Exception ex) { + Boon.error(ex, "PROBLEM WITH oldMatchAndConvertArgs", + "respectIgnore", respectIgnore, "view", view, + "fieldsAccessor", fieldsAccessor, "list", convertedArgumentList, + "constructor", methodAccess, "parameters", parameterTypes, + "index", index, "ignoreSet", ignoreSet); + return false; + } + + return false; + } + + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/MapObjectConversion.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/MapObjectConversion.java new file mode 100644 index 0000000..1c6c924 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/MapObjectConversion.java @@ -0,0 +1,323 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.reflection; + +import org.boon.*; +import org.boon.core.Value; +import org.boon.core.reflection.fields.FieldAccessMode; +import org.boon.core.reflection.fields.FieldsAccessor; + +import java.util.*; + +import static org.boon.Exceptions.die; +import static org.boon.Exceptions.handle; +import static org.boon.core.Conversions.coerce; + + +/** + * Created by rick on 12/26/13. + * @author Richard Hightower + *

+ * This class creates Java objects from java.util.Lists and java.util.Maps. + * It is used by the JSON parser lib. + * There are map like objects that are index overlays of the parsed JSON. + * This set of utilties makes Java a bit more dynamic. + * This is the core of the serialization for JSON and works in conjunction with org.boon.core.TypeType. + *

+ */ +public class MapObjectConversion { + + private static final Mapper mapper = new MapperSimple(); + + private static final Mapper mapperWithType = new MapperComplex(); + + + + private static final Mapper prettyMapper = new MapperComplex( + false, //outputType + FieldAccessMode.PROPERTY_THEN_FIELD, //fieldAccessType + true, //useAnnotations + false, //caseInsensitiveFields + null, //ignoreSet + null, //view + true, true); + + + + + /** Convert an item from a list into a class using the classes constructor. + * + * REFACTOR: Can't this just be from collection? + * REFACTOR + * + * @param argList list if arguments + * @param clazz the type of the object we are creating + * @param generics + * @return the new object that we just created. + */ + public static T fromList( List argList, Class clazz ) { + return mapper.fromList(argList, clazz); + } + + + /** Convert an item from a list into a class using the classes constructor. + * + * REFACTOR: Can't this just be from collection? + * REFACTOR + * + * @param respectIgnore honor @JsonIgnore, transients, etc. of the field + * @param view honor views for fields + * @param fieldsAccessor how we are going to access the fields (by field, by property, combination) + * @param argList list if arguments + * @param clazz the type of the object we are creating + * @param ignoreSet a set of properties to ignore + * @param generics + * @return the new object that we just created. + */ + public static T fromList( boolean respectIgnore, String view, FieldsAccessor fieldsAccessor, + List argList, Class clazz, Set ignoreSet ) { + + return new MapperComplex(fieldsAccessor, ignoreSet, view, respectIgnore).fromList(argList, clazz); + + } + + + /** Convert an item from a list into a class using the classes constructor. + * + * REFACTOR: Can't this just be from collection? + * REFACTOR + * + * @param fieldsAccessor how we are going to access the fields (by field, by property, combination) + * @param argList list if arguments + * @param clazz the type of the object we are creating + * @param generics + * @return the new object that we just created. + */ + public static T fromList( FieldsAccessor fieldsAccessor, List argList, Class clazz ) { + return new MapperComplex(fieldsAccessor, null, null, false).fromList(argList, clazz); + } + + + + /** Convert an object to a list. + * + * @param object the object we want to convert to a list + * @return new list from an object + */ + public static List toList( Object object) { + + return mapper.toList(object); + } + + + /** + * From map. + * @param map map to create the object from. + * @param clazz the new instance type + * @param generic type capture + * @return new object + */ + @SuppressWarnings( "unchecked" ) + public static T fromMap( Map map, Class clazz ) { + return mapper.fromMap(map, clazz); + } + + + + + /** + * fromMap converts a map into a java object. + * @param map map to create the object from. + * @param clazz the new instance type + * @param excludeProperties the properties to exclude + * @param generic type capture + * @return the new object + */ + @SuppressWarnings( "unchecked" ) + public static T fromMap( Map map, Class clazz, String... excludeProperties ) { + Set ignoreProps = excludeProperties.length > 0 ? Sets.set(excludeProperties) : null; + return new MapperComplex(FieldAccessMode.FIELD_THEN_PROPERTY.create( false ), ignoreProps, null, true).fromMap(map, clazz); + + + } + + + /** + * fromMap converts a map into a Java object. + * This version will see if there is a class parameter in the map, and dies if there is not. + * @param map map to create the object from. + * @return new object + */ + public static Object fromMap( Map map ) { + return mapper.fromMap(map); + } + + + /** + * fromMap converts a map into a java object + * @param respectIgnore honor @JsonIgnore, transients, etc. of the field + * @param view the view of the object which can ignore certain fields given certain views + * @param fieldsAccessor how we are going to access the fields (by field, by property, combination) + * @param map map to create the object from. + * @param cls class type of new object + * @param ignoreSet a set of properties to ignore + * @param map to create teh object from. + * @return new object of type cls + */ + @SuppressWarnings("unchecked") + public static T fromMap( boolean respectIgnore, String view, FieldsAccessor fieldsAccessor, Map map, Class cls, Set ignoreSet ) { + + Mapper mapper = new MapperComplex(ignoreSet, view, respectIgnore); + + return mapper.fromMap(map, cls); + } + + + /** + * Creates an object from a value map. + * + * This does some special handling to take advantage of us using the value map so it avoids creating + * a bunch of array objects and collections. Things you have to worry about when writing a + * high-speed JSON serializer. + * @param respectIgnore honor @JsonIgnore, transients, etc. of the field + * @param view the view of the object which can ignore certain fields given certain views + * @param fieldsAccessor how we are going to access the fields (by field, by property, combination) + * @param cls the new type + * @param ignoreSet a set of properties to ignore + * @return new object from value map + */ + @SuppressWarnings("unchecked") + public static T fromValueMap( boolean respectIgnore, String view, final FieldsAccessor fieldsAccessor, + final Map valueMap, + final Class cls, Set ignoreSet ) { + + + Mapper mapper = new MapperComplex(fieldsAccessor, ignoreSet, view, respectIgnore); + return mapper.fromValueMap(valueMap, cls); + + } + + + /** + * Basic toMap to create an object into a map. + * @param object the object we want to convert to a list + * @param ignore do we honor ignore properties + * @return new map + */ + public static Map toMap( final Object object, final String... ignore ) { + return toMap( object, Sets.set( ignore ) ); + } + + + + /** + * This could be refactored to use core.TypeType class and it would run faster. + * Converts an object into a map + * @param object the object that we want to convert + * @param ignore the map + * @return map map representation of the object + */ + public static Map toMap( final Object object, Set ignore ) { + + return new MapperComplex(ignore).toMap(object); + + } + + + + + /** + * This could be refactored to use core.TypeType class and it would run faster. + * + * Converts an object into a map + * @param object the object that we want to convert + * @return map map representation of the object + */ + public static Map toMap( final Object object ) { + + return mapper.toMap(object); + } + + + /** + * This could be refactored to use core.TypeType class and it would run faster. + * + * Converts an object into a map + * @param object the object that we want to convert + * @return map map representation of the object + */ + public static Map toMapWithType( final Object object ) { + + return mapperWithType.toMap(object); + } + + /** + * This converts a list of maps to objects. + * I always forget that this exists. I need to remember. + * + * @param respectIgnore honor @JsonIgnore, transients, etc. of the field + * @param view the view of the object which can ignore certain fields given certain views + * @param fieldsAccessor how we are going to access the fields (by field, by property, combination) + * @param componentType The component type of the created list + * @param list the input list + * @param ignoreProperties properties to ignore + * @param generics + * @return a new list + */ + public static List convertListOfMapsToObjects( boolean respectIgnore, String view, + FieldsAccessor fieldsAccessor, + Class componentType, List list, Set ignoreProperties) { + return new MapperComplex(fieldsAccessor, ignoreProperties,view, respectIgnore).convertListOfMapsToObjects(list, componentType); + } + + /** + * + * @param componentType The component type of the created list + * @param list the input list + * @param + * @return + */ + public static List convertListOfMapsToObjects(Class componentType, List list) { + return mapper.convertListOfMapsToObjects(list, componentType); + } + + /** + * Creates a list of maps from a list of class instances. + * @param collection the collection we are coercing into a field value + * @return the return value. + */ + public static List> toListOfMaps( Collection collection ) { + + return mapper.toListOfMaps(collection); + } + + public static Map toPrettyMap(Object object) { + return prettyMapper.toMap(object); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/Mapper.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/Mapper.java new file mode 100644 index 0000000..f379990 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/Mapper.java @@ -0,0 +1,34 @@ +package org.boon.core.reflection; + +import org.boon.core.Value; + +import java.util.Collection; +import java.util.List; +import java.util.Map; + +/** + * Created by Richard on 9/18/14. + */ +public interface Mapper { + List convertListOfMapsToObjects(List list, Class componentType); + + T fromMap(Map map, Class cls); + + T fromList(List argList, Class clazz); + + @SuppressWarnings("unchecked") + Object fromValueMap(Map valueMap + ); + + @SuppressWarnings("unchecked") + T fromValueMap(Map valueMap, + Class cls); + + Object fromMap(Map map); + + Map toMap(Object object); + + List> toListOfMaps(Collection collection); + + List toList(Object object); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/MapperComplex.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/MapperComplex.java new file mode 100644 index 0000000..6b7bc42 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/MapperComplex.java @@ -0,0 +1,1845 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.reflection; + +import org.boon.*; +import org.boon.core.Conversions; +import org.boon.core.Typ; +import org.boon.core.TypeType; +import org.boon.core.Value; +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.core.reflection.fields.FieldAccessMode; +import org.boon.core.reflection.fields.FieldsAccessor; +import org.boon.core.reflection.fields.FieldsAccessorFieldThenProp; +import org.boon.core.value.ValueContainer; +import org.boon.core.value.ValueList; +import org.boon.core.value.ValueMap; +import org.boon.core.value.ValueMapImpl; +import org.boon.primitive.Arry; +import org.boon.primitive.CharBuf; + +import java.lang.reflect.Array; +import java.lang.reflect.ParameterizedType; +import java.lang.reflect.Type; +import java.util.*; + +import static org.boon.Boon.className; +import static org.boon.Boon.puts; +import static org.boon.Boon.sputs; +import static org.boon.Exceptions.die; +import static org.boon.Exceptions.handle; +import static org.boon.core.Conversions.coerce; +import static org.boon.core.Conversions.toClass; +import static org.boon.core.Conversions.toEnum; +import static org.boon.core.TypeType.*; + +/** + * Created by Richard on 2/17/14. + */ +public class MapperComplex implements Mapper { + + private final FieldsAccessor fieldsAccessor; + private final Set ignoreSet; + private final String view; + private final boolean respectIgnore; + private final boolean acceptSingleValueAsArray; + private final boolean outputType; + + + public MapperComplex(boolean outputType, FieldAccessMode fieldAccessType, boolean useAnnotations, + boolean caseInsensitiveFields, Set ignoreSet, + String view, boolean respectIgnore, boolean acceptSingleValueAsArray) { + fieldsAccessor = FieldAccessMode.create( fieldAccessType, useAnnotations, caseInsensitiveFields ); + this.ignoreSet = ignoreSet; + this.view = view; + this.respectIgnore = respectIgnore; + this.acceptSingleValueAsArray = acceptSingleValueAsArray; + this.outputType = outputType; + } + + public MapperComplex(FieldAccessMode fieldAccessType, boolean useAnnotations, + boolean caseInsensitiveFields, Set ignoreSet, + String view, boolean respectIgnore, boolean acceptSingleValueAsArray) { + fieldsAccessor = FieldAccessMode.create( fieldAccessType, useAnnotations, caseInsensitiveFields ); + this.ignoreSet = ignoreSet; + this.view = view; + this.respectIgnore = respectIgnore; + this.acceptSingleValueAsArray = acceptSingleValueAsArray; + this.outputType = true; + } + public MapperComplex(FieldsAccessor fieldsAccessor, Set ignoreSet, String view, boolean respectIgnore) { + this.fieldsAccessor = fieldsAccessor; + this.ignoreSet = ignoreSet; + this.view = view; + this.respectIgnore = respectIgnore; + this.acceptSingleValueAsArray = false; + this.outputType = true; + } + + public MapperComplex(Set ignoreSet, String view, boolean respectIgnore) { + this.fieldsAccessor = new FieldsAccessorFieldThenProp(true); + this.ignoreSet = ignoreSet; + this.view = view; + this.respectIgnore = respectIgnore; + this.acceptSingleValueAsArray = false; + this.outputType = true; + } + + + public MapperComplex(Set ignoreSet) { + this.fieldsAccessor = new FieldsAccessorFieldThenProp(true);; + this.ignoreSet = ignoreSet; + this.view = null; + this.respectIgnore = true; + this.acceptSingleValueAsArray = false; + this.outputType = true; + } + + public MapperComplex(boolean acceptSingleValueAsArray) { + fieldsAccessor = new FieldsAccessorFieldThenProp(true); + + ignoreSet = null; + view = null; + respectIgnore = true; + this.acceptSingleValueAsArray = acceptSingleValueAsArray; + this.outputType = true; + + } + + public MapperComplex() { + fieldsAccessor = new FieldsAccessorFieldThenProp(true); + + ignoreSet = null; + view = null; + respectIgnore = true; + acceptSingleValueAsArray = false; + this.outputType = true; + } + + + /** + * This converts a list of maps to objects. + * I always forget that this exists. I need to remember. + * + * @param list the input list + * @param generics + * @return a new list + */ + @Override + public List convertListOfMapsToObjects(List list, Class componentType) { + List newList = new ArrayList<>( list.size() ); + for ( Object obj : list ) { + + if ( obj instanceof Value ) { + obj = ( ( Value ) obj ).toValue(); + } + + if ( obj instanceof Map ) { + + Map map = ( Map ) obj; + if ( map instanceof ValueMapImpl) { + newList.add( fromValueMap( ( Map ) map, componentType ) ); + } else { + newList.add( fromMap( map, componentType ) ); + } + } else { + newList.add( Conversions.coerce( componentType, obj ) ); + } + } + return ( List ) newList; + } + + + + /** + * fromMap converts a map into a java object + * @param map map to create the object from. + * @param cls class type of new object + * @param map to create teh object from. + * @return new object of type cls + */ + @Override + public T fromMap(final Map map, final Class cls) { + + + T toObject = Reflection.newInstance( cls ); + Map fields = fieldsAccessor.getFields( toObject.getClass() ); + Set> mapKeyValuesEntrySet = map.entrySet(); + + + /* Iterate through the map keys/values. */ + for ( Map.Entry mapEntry : mapKeyValuesEntrySet ) { + + /* Get the field name. */ + String key = mapEntry.getKey(); + + if ( ignoreSet != null ) { + if ( ignoreSet.contains( key ) ) { + continue; + } + } + + /* Get the field and if it missing then ignore this map entry. */ + FieldAccess field = fields.get( fieldsAccessor.isCaseInsensitive() ? key.toLowerCase() : key ); + + + if ( field == null ) { + continue; + } + + + + /* Check the view if it is active. */ + if ( view != null ) { + if ( !field.isViewActive( view ) ) { + continue; + } + } + + + /* Check respects ignore is active. + * Then needs to be a chain of responsibilities. + * */ + if ( respectIgnore ) { + if ( field.ignore() ) { + continue; + } + } + + /* Get the value from the map. */ + Object value = mapEntry.getValue(); + + + /* If the value is a Value (a index overlay), then convert ensure it is not a container and inject + it into the field, and we are done so continue. + */ + if ( value instanceof Value ) { + if ( ( ( Value ) value ).isContainer() ) { + value = ( ( Value ) value ).toValue(); + } else { + field.setFromValue( toObject, ( Value ) value ); + continue; + } + } + + /* If the value is null, then inject an null value into the field. + * Notice we do not check to see if the field is a primitive, if + * it is we die which is the expected behavior. + */ + if ( value == null ) { + field.setObject( toObject, null ); + continue; + } + + /* if the value's type and the field type are the same or + the field just takes an object, then inject what we have as is. + */ + if ( value.getClass() == field.type() || field.type() == Object.class) { + field.setValue(toObject, value); + } else if ( Typ.isBasicType(value) ) { + + field.setValue(toObject, value); + } + + + /* See if it is a map, and if it is then process it. + * REFACTOR: + * It looks like we are using some utility classes here that we could have used in + * oldMatchAndConvertArgs. + * REFACTOR + * */ + else if ( value instanceof Map ) { + setFieldValueFromMap(toObject, field, (Map)value); + } else if ( value instanceof Collection) { + /*It is a collection so process it that way. */ + processCollectionFromMapUsingFields( toObject, field, ( Collection ) value); + } else if ( value instanceof Map[] ) { + /* It is an array of maps so, we need to process it as such. */ + processArrayOfMaps(toObject, field, ( Map[] )value ); + } else { + /* If we could not determine how to convert it into some field + object then we just go ahead an inject it using setValue which + will call Conversion.coerce. + */ + field.setValue( toObject, value ); + } + + } + + return toObject; + + } + + + + /** Convert an item from a list into a class using the classes constructor. + * + * REFACTOR: Can't this just be from collection? + * REFACTOR + * + * @param argList list if arguments + * @param clazz the type of the object we are creating + * @param generics + * @return the new object that we just created. + */ + @Override + public T fromList(List argList, Class clazz) { + + /* Size of the arguments. */ + int size = argList.size(); + + + /* Meta data holder of the class. */ + ClassMeta classMeta = ClassMeta.classMeta( clazz ); + + /* The constructor to match. */ + ConstructorAccess constructorToMatch = null; + + /* The final arguments. */ + Object[] finalArgs = null; + + + boolean[] flag = new boolean[1]; + List convertedArguments = null; + + + try { + + + /* List to hold items that we coerce into parameter types. */ + convertedArguments = new ArrayList<>( argList ); + + constructorToMatch = lookupConstructorMeta( size, + convertedArguments, classMeta, constructorToMatch, flag, false); + + + + /* List to hold items that we coerce into parameter types. */ + if (constructorToMatch == null) { + convertedArguments = new ArrayList<>( argList ); + constructorToMatch = lookupConstructorMeta( size, + convertedArguments, classMeta, constructorToMatch, flag, true); + } + + + + + /* If we were not able to match then we bail. */ + if ( constructorToMatch != null ) { + finalArgs = convertedArguments.toArray( new Object[argList.size()] ); + return constructorToMatch.create( finalArgs ); + } else { + return (T) die(Object.class, "Unable to convert list", convertedArguments, "into", clazz); + } + + /* Catch all of the exceptions and try to report why this failed. + * Since we are doing reflection and a bit of "magic", we have to be clear as to why/how things failed. + * */ + } catch ( Exception e ) { + + + if (constructorToMatch != null) { + + + CharBuf buf = CharBuf.create(200); + buf.addLine(); + buf.multiply('-', 10).add("FINAL ARGUMENTS").multiply('-', 10).addLine(); + if (finalArgs!=null) { + for (Object o : finalArgs) { + buf.puts("argument type ", className(o)); + } + } + + + buf.multiply('-', 10).add("CONSTRUCTOR").add(constructorToMatch).multiply('-', 10).addLine(); + buf.multiply('-', 10).add("CONSTRUCTOR PARAMS").multiply('-', 10).addLine(); + for (Class c : constructorToMatch.parameterTypes()) { + buf.puts("constructor type ", c); + } + + buf.multiply('-', 35).addLine(); + + if (Boon.debugOn()) { + puts(buf); + } + + + + buf.addLine("PARAMETER TYPES"); + buf.add(Lists.list(constructorToMatch.parameterTypes())).addLine(); + + buf.addLine("ORIGINAL TYPES PASSED"); + buf.add(gatherTypes(convertedArguments)).addLine(); + + buf.add(gatherActualTypes(convertedArguments)).addLine(); + + buf.addLine("CONVERTED ARGUMENT TYPES"); + buf.add(gatherTypes(convertedArguments)).addLine(); + buf.add(gatherActualTypes(convertedArguments)).addLine(); + + Boon.error( e, "unable to create object based on constructor", buf ); + + + return ( T ) handle(Object.class, e, buf.toString()); + } else { + return ( T ) handle(Object.class, e, + "\nlist args after conversion", convertedArguments, "types", + gatherTypes(convertedArguments), + "\noriginal args", argList, + "original types", gatherTypes(argList)); + + } + } + + } + + + + + + /** + * Processes an array of maps. + * @param newInstance new instance we are injecting field into + * @param field field we are injecting a value into + */ + private void processArrayOfMaps( Object newInstance, FieldAccess field, Map[] maps) { + List> list = Lists.list(maps); + handleCollectionOfMaps( newInstance, field, + list); + + } + + + /** + * Processes an collection of maps. + * @param newInstance new instance we are injecting field into + * @param field field we are injecting a value into + */ + @SuppressWarnings("unchecked") + private void handleCollectionOfMaps( Object newInstance, + FieldAccess field, Collection> collectionOfMaps + ) { + + Collection newCollection = Conversions.createCollection( field.type(), collectionOfMaps.size() ); + + + Class componentClass = field.getComponentClass(); + + if ( componentClass != null ) { + + + for ( Map mapComponent : collectionOfMaps ) { + + newCollection.add( fromMap( mapComponent, componentClass ) ); + + } + field.setObject( newInstance, newCollection ); + + } + + } + + + + + + private ConstructorAccess lookupConstructorMeta(int size, + List convertedArguments, + ClassMeta classMeta, + ConstructorAccess constructorToMatch, + boolean[] flag, boolean loose) { + + + /* Iterate through the constructors and see if one matches the arguments passed after coercion. */ + loop: + for ( ConstructorAccess constructor : classMeta.constructors() ) { + + /* Get the parameters on the constructor and see if the size matches what was passed. */ + Class[] parameterTypes = constructor.parameterTypes(); + if ( parameterTypes.length == size ) { + + /* Iterate through each parameter and see if it can be converted. */ + for ( int index = 0; index < size; index++ ) { + /* The match and convert does the bulk of the work. */ + if ( !matchAndConvertArgs( convertedArguments, constructor, + parameterTypes, index, flag, loose ) ) continue loop; + } + constructorToMatch = constructor; + } + } + return constructorToMatch; + } + + + + /** + * This converts/coerce a constructor argument to the given parameter type. + * + * REFACTOR: + * This method was automatically refactored and its functionality gets duplicated in a few places. + * Namely Invoker lib. It needs to be documented. Refactored to use org.boon.core.TypeType. + * And code coverage. I have used it on several projects and have modified to work on + * edge cases for certain customers and have not updated the unit test. + * This method is beastly and important. It is currently 250 lines of code. + * It started off small, and kept getting added to. It needs love, but it was a bitch to write. + * REFACTOR + * + * @param convertedArgumentList arguments being converted to match parameter types + * @param methodAccess constructor + * @param parameterTypes parameterTypes + * @param index index of argument + * @return true or false + */ + private boolean matchAndConvertArgs( List convertedArgumentList, + BaseAccess methodAccess, + Class[] parameterTypes, + int index, + boolean[] flag, boolean loose) { + + + Object value = null; + + try { + + Class parameterClass; + Object item; + + parameterClass = parameterTypes[index]; + item = convertedArgumentList.get( index ); + + + final TypeType parameterType = TypeType.getType(parameterClass); + + + if ( item instanceof ValueContainer ) { + item = ( ( ValueContainer ) item ).toValue(); + + convertedArgumentList.set( index, item ); + } + + + + + if (item == null) { + return true; + } + + switch (parameterType) { + case INT: + case SHORT: + case BYTE: + case BOOLEAN: + case CHAR: + case FLOAT: + case DOUBLE: + case LONG: + if (item == null) { + return false; + } + + + case INTEGER_WRAPPER: + case BYTE_WRAPPER: + case SHORT_WRAPPER: + case BOOLEAN_WRAPPER: + case CHAR_WRAPPER: + case FLOAT_WRAPPER: + case DOUBLE_WRAPPER: + case CHAR_SEQUENCE: + case NUMBER: + case LONG_WRAPPER: + + if (!loose ) { + if (item instanceof Number) { + value = Conversions.coerceWithFlag(parameterType, parameterClass, flag, item ); + convertedArgumentList.set( index, value ); + + return flag[0]; + } else { + return false; + } + + } else { + value = Conversions.coerceWithFlag(parameterType, parameterClass, flag, item ); + convertedArgumentList.set( index, value ); + + return flag[0]; + + } + + + + case ENUM: + + + if (item instanceof Enum) { + return true; + } + + if (item instanceof CharSequence) { + value = toEnum(parameterClass, item.toString()); + convertedArgumentList.set( index, value ); + + return value!=null; + + } else if (item instanceof Number){ + value = toEnum(parameterClass, ((Number)item).intValue()); + convertedArgumentList.set( index, value ); + + return value!=null; + + } else { + return false; + } + + + case CLASS: + if (item instanceof Class) { + return true; + } + + value = Conversions.coerceWithFlag(parameterType, parameterClass, flag, item ); + convertedArgumentList.set( index, value ); + + return flag[0]; + + + case STRING: + + if (item instanceof String) { + return true; + } + + if (item instanceof CharSequence) { + + value = item.toString(); + convertedArgumentList.set( index, value ); + return true; + + + } else if (loose) { + + value = item.toString(); + convertedArgumentList.set( index, value ); + return true; + } else { + return false; + } + + case MAP: + case VALUE_MAP: + + if (item instanceof Map) { + Map itemMap = (Map)item; + + /* This code creates a map based on the parameterized types of the constructor arg. + * This does ninja level generics manipulations and needs to be captured in some + * reusable way. + * */ + Type type = methodAccess.getGenericParameterTypes()[index]; + if ( type instanceof ParameterizedType) { + ParameterizedType pType = (ParameterizedType) type; + Class keyType = (Class) pType.getActualTypeArguments()[0]; + + Class valueType = (Class) pType.getActualTypeArguments()[1]; + + + Map newMap = Conversions.createMap(parameterClass, itemMap.size()); + + + /* Iterate through the map items and convert the keys/values to match + the parameterized constructor parameter args. + */ + + for (Object o : itemMap.entrySet()) { + Map.Entry entry = (Map.Entry) o; + + Object key = entry.getKey(); + value = entry.getValue(); + + key = ValueContainer.toObject(key); + + value = ValueContainer.toObject(value); + + + /* Here is the actual conversion from a list or a map of some object. + This can be captured in helper method the duplication is obvious. + */ + if (value instanceof List) { + value = fromList((List) value, valueType); + + } else if (value instanceof Map) { + value = fromMap((Map) value, valueType); + + } else { + value = coerce(valueType, value); + } + + + if (key instanceof List) { + key = fromList((List) key, keyType); + + } else if (value instanceof Map) { + key = fromMap((Map) key, keyType); + + } else { + key = coerce(keyType, key); + } + + newMap.put(key, value); + } + convertedArgumentList.set(index, newMap); + return true; + } + } + break; + case INSTANCE: + if ( parameterClass.isInstance( item ) ) { + return true; + } + + if (item instanceof Map) { + item = fromMap( ( Map ) item, parameterClass ); + convertedArgumentList.set( index, item ); + return true; + } else if ( item instanceof List ) { + + List listItem = null; + + listItem = ( List ) item; + + value = fromList(listItem, parameterClass ); + + convertedArgumentList.set( index, value ); + return true; + + } else { + convertedArgumentList.set( index, coerce( parameterClass, item ) ); + return true; + } + //break; + case INTERFACE: + case ABSTRACT: + if ( parameterClass.isInstance( item ) ) { + return true; + } + + if (item instanceof Map) { + + /** Handle conversion of user define interfaces. */ + String className = (String) ((Map) item).get("class"); + if (className != null) { + item = fromMap( (Map) item, Reflection.loadClass(className)); + convertedArgumentList.set(index, item); + return true; + } else { + return false; + } + + } + break; + + + case ARRAY: + item = Conversions.toList(item); + return true; + + case SET: + case COLLECTION: + case LIST: + if (item instanceof List ) { + + List itemList = ( List ) item; + + /* Items have stuff in it, the item is a list of lists. + * This is like we did earlier with the map. + * Here is some more ninja generics Java programming that needs to be captured in one place. + * */ + if ( itemList.size() > 0 && (itemList.get( 0 ) instanceof List || + itemList.get(0) instanceof ValueContainer) ) { + + /** Grab the generic type of the list. */ + Type type = methodAccess.getGenericParameterTypes()[index]; + + /* Try to pull the generic type information out so you can create + a strongly typed list to inject. + */ + if ( type instanceof ParameterizedType ) { + ParameterizedType pType = ( ParameterizedType ) type; + + + Class componentType; + if (! (pType.getActualTypeArguments()[0] instanceof Class)) { + componentType = Object.class; + } else { + componentType = (Class) pType.getActualTypeArguments()[0]; + } + + Collection newList = Conversions.createCollection( parameterClass, itemList.size() ); + + for ( Object o : itemList ) { + if ( o instanceof ValueContainer ) { + o = ( ( ValueContainer ) o ).toValue(); + } + + if (componentType==Object.class) { + newList.add(o); + } else { + + List fromList = ( List ) o; + o = fromList( fromList, componentType ); + newList.add( o ); + } + } + convertedArgumentList.set( index, newList ); + return true; + + } + } else { + + /* Just a list not a list of lists so see if it has generics and pull out the + * type information and created a strong typed list. This looks a bit familiar. + * There is a big opportunity for some reuse here. */ + Type type = methodAccess.getGenericParameterTypes()[index]; + if ( type instanceof ParameterizedType ) { + ParameterizedType pType = ( ParameterizedType ) type; + + Class componentType = pType.getActualTypeArguments()[0] instanceof Class ? (Class) pType.getActualTypeArguments()[0] : Object.class; + + Collection newList = Conversions.createCollection( parameterClass, itemList.size() ); + + + for ( Object o : itemList ) { + if ( o instanceof ValueContainer ) { + o = ( ( ValueContainer ) o ).toValue(); + } + if (o instanceof List) { + + if (componentType != Object.class) { + + List fromList = ( List ) o; + o = fromList(fromList, componentType); + } + newList.add( o ); + } else if (o instanceof Map) { + Map fromMap = ( Map ) o; + o = fromMap( fromMap, componentType ); + newList.add( o ); + + } else { + newList.add( Conversions.coerce(componentType, o)); + } + } + convertedArgumentList.set( index, newList ); + return true; + + } + + } + } + return false; + + + default: + final TypeType itemType = TypeType.getInstanceType(item); + + switch (itemType) { + case LIST: + convertedArgumentList.set(index, fromList((List) item, parameterClass)); + return true; + case MAP: + case VALUE_MAP: + convertedArgumentList.set(index, fromMap( (Map) item, parameterClass)); + return true; + + case NUMBER: + case BOOLEAN: + case INT: + case SHORT: + case BYTE: + case FLOAT: + case DOUBLE: + case LONG: + case DOUBLE_WRAPPER: + case FLOAT_WRAPPER: + case INTEGER_WRAPPER: + case SHORT_WRAPPER: + case BOOLEAN_WRAPPER: + case BYTE_WRAPPER: + case LONG_WRAPPER: + case CLASS: + case VALUE: + value = Conversions.coerceWithFlag( parameterClass, flag, item ); + + if (flag[0] == false) { + return false; + } + convertedArgumentList.set( index, value ); + return true; + + + + case CHAR_SEQUENCE: + case STRING: + + value = Conversions.coerceWithFlag( parameterClass, flag, item ); + + if (flag[0] == false) { + return false; + } + convertedArgumentList.set( index, value ); + return true; + + + + } + + + + } + + + if ( parameterClass.isInstance( item ) ) { + return true; + } + + + } catch (Exception ex) { + Boon.error(ex, "PROBLEM WITH oldMatchAndConvertArgs", + "respectIgnore", respectIgnore, "view", view, + "fieldsAccessor", fieldsAccessor, "list", convertedArgumentList, + "constructor", methodAccess, "parameters", parameterTypes, + "index", index, "ignoreSet", ignoreSet); + return false; + } + + return false; + } + + + + /** + * Processes an collection of maps. + * This can inject into an array and appears to be using some of the TypeType lib. + * @param newInstance new instance we are injecting field into + * @param field field we are injecting a value into + */ + @SuppressWarnings("unchecked") + private void handleCollectionOfValues( + Object newInstance, + FieldAccess field, Collection acollectionOfValues ) { + + Collection collectionOfValues = acollectionOfValues; + if (null == collectionOfValues) { + field.setObject(newInstance, null); + return; + } + + if(field.typeEnum() == INSTANCE) { + + field.setObject(newInstance, fromList((List) acollectionOfValues, field.type())); + return; + + } + + if ( collectionOfValues instanceof ValueList) { + collectionOfValues = ( ( ValueList ) collectionOfValues ).list(); + } + + + Class componentClass = field.getComponentClass(); + + + + /** If the field is a collection than try to convert the items in the collection to + * the field type. + */ + switch (field.typeEnum() ) { + + + case LIST: + case SET: + case COLLECTION: + + + Collection newCollection = Conversions.createCollection( field.type(), collectionOfValues.size() ); + + + for ( Value value : ( List ) collectionOfValues ) { + + if ( value.isContainer() ) { + Object oValue = value.toValue(); + if ( oValue instanceof Map ) { + newCollection.add( fromValueMap( ( Map ) oValue, componentClass ) ); + } + } else { + newCollection.add( Conversions.coerce( componentClass, value.toValue() ) ); + } + + + } + field.setObject( newInstance, newCollection ); + break; + + + case ARRAY: + case ARRAY_INT: + case ARRAY_BYTE: + case ARRAY_SHORT: + case ARRAY_FLOAT: + case ARRAY_DOUBLE: + case ARRAY_LONG: + case ARRAY_STRING: + case ARRAY_OBJECT: + TypeType componentType = field.componentType(); + int index = 0; + + switch (componentType) { + case INT: + int [] iarray = new int[collectionOfValues.size()]; + for ( Value value : ( List ) collectionOfValues ) { + iarray[index] = value.intValue(); + index++; + + } + field.setObject( newInstance, iarray); + return; + case SHORT: + short [] sarray = new short[collectionOfValues.size()]; + for ( Value value : ( List ) collectionOfValues ) { + sarray[index] = value.shortValue(); + index++; + + } + field.setObject( newInstance, sarray); + return; + case DOUBLE: + double [] darray = new double[collectionOfValues.size()]; + for ( Value value : ( List ) collectionOfValues ) { + darray[index] = value.doubleValue(); + index++; + + } + field.setObject( newInstance, darray); + return; + case FLOAT: + float [] farray = new float[collectionOfValues.size()]; + for ( Value value : ( List ) collectionOfValues ) { + farray[index] = value.floatValue(); + index++; + + } + field.setObject( newInstance, farray); + return; + + case LONG: + long [] larray = new long[collectionOfValues.size()]; + for ( Value value : ( List ) collectionOfValues ) { + larray[index] = value.longValue(); + index++; + + } + field.setObject( newInstance, larray); + return; + + + case BYTE: + byte [] barray = new byte[collectionOfValues.size()]; + for ( Value value : ( List ) collectionOfValues ) { + barray[index] = value.byteValue(); + index++; + + } + field.setObject( newInstance, barray); + return; + + + case CHAR: + char [] chars = new char[collectionOfValues.size()]; + for ( Value value : ( List ) collectionOfValues ) { + chars[index] = value.charValue(); + index++; + } + field.setObject( newInstance, chars); + return; + + case STRING: + CharBuf buffer = CharBuf.create(100); + String [] strings = new String[collectionOfValues.size()]; + for ( Value value : ( List ) collectionOfValues ) { + strings[index] = value.stringValue(buffer); + index++; + } + field.setObject( newInstance, strings); + return; + + + default: + Object array = Array.newInstance(componentClass, collectionOfValues.size()); + Object o; + + for ( Value value : ( List ) collectionOfValues ) { + if (value instanceof ValueContainer) { + o = value.toValue(); + if (o instanceof List) { + o = fromList( (List)o, componentClass); + if (componentClass.isInstance( o )) { + Array.set(array, index, o); + } else { + break; + } + } else if (o instanceof Map) { + o = fromMap((Map) o, componentClass); + if (componentClass.isInstance( o )) { + Array.set(array, index, o); + } else { + break; + } + } + } else { + o = value.toValue(); + if (componentClass.isInstance( o )) { + Array.set(array, index, o); + } else { + Array.set(array, index, Conversions.coerce( componentClass, o )); + } + } + index++; + } + field.setValue( newInstance, array); + } + break; + } + + } + + + /** + * Creates an object from a value map. + * + * This does some special handling to take advantage of us using the value map so it avoids creating + * a bunch of array objects and collections. Things you have to worry about when writing a + * high-speed JSON serializer. + * @return new object from value map + */ + @Override + @SuppressWarnings("unchecked") + public Object fromValueMap(final Map valueMap + ) { + + + try { + String className = valueMap.get( "class" ).toString(); + Class cls = Reflection.loadClass( className ); + return fromValueMap( valueMap, cls ); + } catch ( Exception ex ) { + return handle(Object.class, sputs("fromValueMap", "map", valueMap, "fieldAccessor", fieldsAccessor), ex); + } + } + + + + /** + * Creates an object from a value map. + * + * This does some special handling to take advantage of us using the value map so it avoids creating + * a bunch of array objects and collections. Things you have to worry about when writing a + * high-speed JSON serializer. + * @param cls the new type + * @return new object from value map + */ + @Override + @SuppressWarnings("unchecked") + public T fromValueMap(final Map valueMap, + final Class cls) { + + T newInstance = Reflection.newInstance( cls ); + ValueMap map = ( ValueMap ) ( Map ) valueMap; + + + Map fields = fieldsAccessor.getFields( cls); + Map.Entry[] entries; + + FieldAccess field = null; + String fieldName = null; + Map.Entry entry; + + + int size; + + + /* if the map is not hydrated get its entries right form the array to avoid collection creations. */ + if ( !map.hydrated() ) { + size = map.len(); + entries = map.items(); + } else { + size = map.size(); + entries = ( Map.Entry[] ) map.entrySet().toArray( new Map.Entry[size] ); + } + + /* guard. We should check if this is still needed. + * I might have added it for debugging and forgot to remove it.*/ + if ( size == 0 || entries == null ) { + return newInstance; + } + + + /* Iterate through the entries. */ + for ( int index = 0; index < size; index++ ) { + Object value = null; + try { + + entry = entries[index]; + + fieldName = entry.getKey(); + + + if ( ignoreSet != null ) { + if ( ignoreSet.contains( fieldName ) ) { + continue; + } + } + + field = fields.get(fieldsAccessor.isCaseInsensitive() ? fieldName.toLowerCase() : fieldName); + + + if ( field == null ) { + continue; + } + + if ( view != null ) { + if ( !field.isViewActive( view ) ) { + continue; + } + } + + + if ( respectIgnore ) { + if ( field.ignore() ) { + continue; + } + } + + + value = entry.getValue(); + + + if ( value instanceof Value ) { + fromValueMapHandleValueCase( newInstance, field, ( Value ) value ); + } else { + fromMapHandleNonValueCase( newInstance, field, value ); + } + }catch (Exception ex) { + return (T) handle(Object.class, ex, "fieldName", fieldName, "of class", cls, "had issues for value", value, "for field", field); + } + + } + + return newInstance; + } + + /** + * + * Gets called by fromValueMap + * This does some special handling to take advantage of us using the value map so it avoids creating + * a bunch of array objects and collections. Things you have to worry about when writing a + * high-speed JSON serializer. + * @param field field we want to inject something into + * @param newInstance the thing we want to inject a field value into + * @param objectValue object value we want to inject into the field. + * @return new object from value map + */ + private void fromMapHandleNonValueCase( T newInstance, FieldAccess field, + Object objectValue ) { + try { + if ( objectValue instanceof Map ) { + Class clazz = field.type(); + if ( !clazz.isInterface() && !Typ.isAbstract( clazz ) ) { + objectValue = fromValueMap( ( Map ) objectValue, field.type() ); + } else { + String className = (( Map ) objectValue) + .get("class").toString(); + Class cls = Reflection.loadClass( className ); + + objectValue = fromValueMap( ( Map ) objectValue, cls ); + } + field.setValue(newInstance, objectValue); + } else if ( objectValue instanceof Collection ) { + handleCollectionOfValues( newInstance, field, + ( Collection ) objectValue ); + } else { + field.setValue( newInstance, objectValue ); + } + } catch ( Exception ex ) { + handle(sputs("Problem handling non value case of fromValueMap", "field", field.name(), + "fieldType", field.type().getName(), "object from map", objectValue), ex); + } + } + + + + /** + * + * Gets called by fromValueMap + * This does some special handling to take advantage of us using the value map so it avoids creating + * a bunch of array objects and collections. Things you have to worry about when writing a + * high-speed JSON serializer. + * @param field field we want to inject something into + * @param newInstance the thing we want to inject a field value into + * @param value object value of type Value we want to inject into the field. + * @return new object from value map + */ + private void fromValueMapHandleValueCase( + T newInstance, FieldAccess field, Value value ) { + + + Object objValue = + ValueContainer.toObject(value); + + Class clazz = field.type(); + + + switch (field.typeEnum()) { + + case OBJECT: + case ABSTRACT: + case INTERFACE: + if (objValue instanceof Map) { + final Map valueMap = (Map) objValue; + + final Value aClass = valueMap.get("class"); + clazz = Reflection.loadClass(aClass.stringValue()); + + } + case INSTANCE: + switch (value.type()) { + case MAP: + objValue = fromValueMap( ( Map ) objValue, clazz ); + break; + case LIST: + objValue = fromList((List) objValue, clazz); + break; + + + } + field.setValue(newInstance, objValue); + + break; + + case MAP: + case VALUE_MAP: + + + Class keyType = (Class)field.getParameterizedType().getActualTypeArguments()[0]; + Class valueType = (Class)field.getParameterizedType().getActualTypeArguments()[1]; + + Map mapInner = (Map)objValue; + Set set = mapInner.entrySet(); + Map newMap = new LinkedHashMap( ); + + for (Map.Entry entry : set) { + Object evalue = entry.getValue(); + + Object key = entry.getKey(); + + if (evalue instanceof ValueContainer) { + evalue = ((ValueContainer) evalue).toValue(); + } + + key = Conversions.coerce( keyType, key ); + evalue = Conversions.coerce( valueType, evalue ); + newMap.put( key, evalue ); + } + + objValue = newMap; + + field.setValue(newInstance, objValue); + + break; + + case LIST: + case COLLECTION: + case SET: + case ARRAY: + case ARRAY_INT: + case ARRAY_BYTE: + case ARRAY_SHORT: + case ARRAY_FLOAT: + case ARRAY_DOUBLE: + case ARRAY_LONG: + case ARRAY_STRING: + case ARRAY_OBJECT: + if (acceptSingleValueAsArray && ValueContainer.NULL != value && !(objValue instanceof Collection)) { + if (objValue instanceof ValueMapImpl) { + objValue = Arrays.asList(new ValueContainer(objValue, MAP, false)); + } else { + objValue = Arrays.asList(objValue); + } + } + + handleCollectionOfValues( newInstance, field, + ( Collection ) objValue ); + + break; + + default: + field.setFromValue(newInstance, value); + + } + } + + + + /** + * Inject a map into an object's field. + * @param field field we are injecting a value into + */ + private void setFieldValueFromMap( final Object parentObject, + final FieldAccess field, final Map mapInner ) { + + + Class fieldClassType = field.type(); + Object value = null; + + /* Is the field not a map. */ + if ( !Typ.isMap( fieldClassType ) ) { + + if ( !fieldClassType.isInterface() && !Typ.isAbstract( fieldClassType ) ) { + value = fromMap( mapInner, field.type() ); + + } else { + Object oClassName = mapInner.get( "class" ); + if (oClassName != null) { + value = fromMap( mapInner, Reflection.loadClass( oClassName.toString() )); + } else { + value = null; + } + } + + /* + REFACTOR: + This is at least the third time that I have seen this code in the class. + It was either cut and pasted or I forgot I wrote it three times. + REFACTOR: + */ + } else if (Typ.isMap( fieldClassType )) { + Class keyType = (Class)field.getParameterizedType().getActualTypeArguments()[0]; + Class valueType = (Class)field.getParameterizedType().getActualTypeArguments()[1]; + + Set set = mapInner.entrySet(); + Map newMap = new LinkedHashMap( ); + + for (Map.Entry entry : set) { + Object evalue = entry.getValue(); + + Object key = entry.getKey(); + + if (evalue instanceof ValueContainer) { + evalue = ((ValueContainer) evalue).toValue(); + } + + key = Conversions.coerce(keyType, key); + evalue = Conversions.coerce( valueType, evalue ); + newMap.put( key, evalue ); + } + + value = newMap; + + } + + field.setValue(parentObject, value); + + } + + + + /** + * Helper method to extract collection of values into some field collection. + * REFACTOR: + * This could be refactored to use the org.boon.core.TypeType system which should be faster. + * REFACTOR + * @param collection the collection we are coercing into a field value + */ + private void processCollectionFromMapUsingFields(final Object newInstance, + final FieldAccess field, + final Collection collection ) { + final Class fieldComponentClass = field.getComponentClass(); + + final Class valueComponentClass = Reflection.getComponentType(collection); + + + /** See if we have a collection of maps because if we do, then we have some + * recursive processing to do. + */ + if ( Typ.isMap( valueComponentClass ) ) { + handleCollectionOfMaps( newInstance, field, + ( Collection> ) collection ); + return; + + } + + /** See if this is a value object of some sort. */ + if ( Typ.isValue( valueComponentClass ) ) { + handleCollectionOfValues( newInstance, field, + ( Collection ) collection ); + return; + } + + + /** + * See if the collection implements the same type as the field. + * I saw a few places that could have used this helper method earlier in the file but were not. + */ + if (Typ.implementsInterface( collection.getClass(), field.type() )) { + + if (fieldComponentClass!=null && fieldComponentClass.isAssignableFrom(valueComponentClass)) { + field.setValue(newInstance, collection); + + return; + } + + } + + /** See if this is some sort of collection. + * TODO we need a coerce that needs a respectIgnore + * + * REFACTOR: + * Note we are assuming it is a collection of instances. + * We don't handle enums here. + * + * We do in other places. + * + * We handle all sorts of generics but not here. + * + * REFACTOR + * + **/ + if (!field.typeEnum().isCollection()) { + if (collection instanceof List) { + try { + Object value = fromList( (List) collection, field.getComponentClass()); + field.setValue(newInstance, value); + } catch (Exception ex) { + //There is an edge case that needs this. We need a coerce that takes respectIngore, etc. + field.setValue(newInstance, collection); + } + } else { + field.setValue(newInstance, collection); + } + return; + } + + + /** + * Create a new collection. if the types already match then just copy them over. + * Note that this is currently untyped in the null case. + * We are relying on the fact that the field.setValue calls the Conversion.coerce. + */ + Collection newCollection = Conversions.createCollection( field.type(), collection.size() ); + + if ( fieldComponentClass == null || fieldComponentClass.isAssignableFrom(valueComponentClass)) { + + newCollection.addAll(collection); + field.setValue( newInstance, newCollection ); + return; + } + + + + /* Here we try to do the coercion for each individual collection item. */ + for (Object itemValue : collection) { + newCollection.add(Conversions.coerce(fieldComponentClass, itemValue)); + field.setValue(newInstance, newCollection); + } + + } + + + /** + * fromMap converts a map into a Java object. + * This version will see if there is a class parameter in the map, and dies if there is not. + * @param map map to create the object from. + * @return new object + */ + @Override + public Object fromMap(Map map) { + String clazz = (String) map.get( "class" ); + Class cls = Reflection.loadClass( clazz ); + return fromMap(map, cls); + } + + + + + /** + * This could be refactored to use core.TypeType class and it would run faster. + * Converts an object into a map + * @param object the object that we want to convert + * @return map map representation of the object + */ + @Override + public Map toMap(final Object object) { + + if ( object == null ) { + return null; + } + + if (object instanceof Map) { + return (Map) object; + } + Map map = new LinkedHashMap<>(); + + + + final Map fieldMap = Reflection.getAllAccessorFields( object.getClass() ); + List fields = new ArrayList( fieldMap.values() ); + + + Collections.reverse( fields ); // make super classes fields first that + + + + if (outputType) { + map.put("class", object.getClass().getName()); + } + + for ( FieldAccess access : fields ) { + + String fieldName = access.name(); + + if (access.isStatic()) { + continue; + } + + if (ignoreSet!=null) { + if ( ignoreSet.contains( fieldName ) ) { + continue; + } + } + + Object value = access.getValue(object); + + + if ( value == null ) { + continue; + } + + + switch (access.typeEnum()) { + case BYTE: + case BYTE_WRAPPER: + case SHORT: + case SHORT_WRAPPER: + case INT: + case INTEGER_WRAPPER: + case LONG: + case LONG_WRAPPER: + case FLOAT: + case FLOAT_WRAPPER: + case DOUBLE: + case DOUBLE_WRAPPER: + case CHAR: + case CHAR_WRAPPER: + case BIG_DECIMAL: + case BIG_INT: + case BOOLEAN: + case BOOLEAN_WRAPPER: + case CURRENCY: + case CALENDAR: + case DATE: + map.put( fieldName, value ); + break; + + case ARRAY: + case ARRAY_INT: + case ARRAY_BYTE: + case ARRAY_SHORT: + case ARRAY_FLOAT: + case ARRAY_DOUBLE: + case ARRAY_LONG: + case ARRAY_STRING: + case ARRAY_OBJECT: + if (Typ.isBasicType( access.getComponentClass() )) { + map.put(fieldName, value); + } else { + int length = Arry.len(value); + List> list = new ArrayList<>( length ); + for ( int index = 0; index < length; index++ ) { + Object item = Arry.fastIndex( value, index ); + list.add( toMap( item ) ); + } + map.put( fieldName, list ); + } + break; + case COLLECTION: + case LIST: + case SET: + Collection collection = ( Collection ) value; + Class componentType = access.getComponentClass(); + if ( Typ.isBasicType( componentType ) ) { + map.put(fieldName, value); + } else if (Typ.isEnum(componentType)) { + List list = new ArrayList<>( + collection.size() ); + for ( Object item : collection ) { + if ( item != null ) { + list.add( item.toString() ); + } + } + map.put( fieldName, list ); + + } else { + List> list = new ArrayList<>( + collection.size() ); + for ( Object item : collection ) { + if ( item != null ) { + list.add( toMap( item ) ); + } + } + map.put( fieldName, list ); + } + break; + case MAP: + map.put(fieldName, value); + break; + + case INSTANCE: + map.put(fieldName, toMap(value)); + break; + + + case INTERFACE: + case ABSTRACT: + final Map abstractMap = toMap(value); + abstractMap.put("class", Boon.className(value)); + map.put(fieldName, abstractMap); + break; + + case ENUM: + map.put(fieldName, value); + break; + + + + + default: + map.put(fieldName, Conversions.toString(value)); + break; + + + + + + } + + } + return map; + + + } + + +// +// /** +// * Converts a field access set into a collection of map entries. +// */ +// public static class FieldToEntryConverter implements +// Function> { +// +// final Object object; +// +// public FieldToEntryConverter(Object object) { +// this.object = object; +// } +// +// @Override +// public Entry apply( FieldAccess from ) { +//// if ( from.isReadOnly() ) { +//// return null; +//// } +// Entry entry = new Pair<>( from.name(), +// from.getValue( object ) ); +// return entry; +// } +// } + + + + /** + * Creates a list of maps from a list of class instances. + * @param collection the collection we are coercing into a field value + * @return the return value. + */ + @Override + public List> toListOfMaps(Collection collection) { + List> list = new ArrayList<>(); + for ( Object o : collection ) { + list.add( toMap( o ) ); + } + return list; + } + + + /** Convert an object to a list. + * + * @param object the object we want to convert to a list + * @return new list from an object + */ + @Override + public List toList(Object object) { + + TypeType instanceType = TypeType.getInstanceType(object); + + switch (instanceType) { + case NULL: + return Lists.list((Object)null); + + + case ARRAY: + case ARRAY_INT: + case ARRAY_BYTE: + case ARRAY_SHORT: + case ARRAY_FLOAT: + case ARRAY_DOUBLE: + case ARRAY_LONG: + case ARRAY_STRING: + case ARRAY_OBJECT: + return Conversions.toList(object); + + case INSTANCE: + if (Reflection.respondsTo(object, "toList")) { + return (List) Reflection.invoke(object, "toList"); + } + break; + } + return Lists.list(object); + } + + +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/MapperSimple.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/MapperSimple.java new file mode 100644 index 0000000..87fe1ea --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/MapperSimple.java @@ -0,0 +1,1689 @@ +package org.boon.core.reflection; + +import org.boon.Boon; +import org.boon.Lists; +import org.boon.core.Conversions; +import org.boon.core.Typ; +import org.boon.core.TypeType; +import org.boon.core.Value; +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.core.reflection.fields.FieldAccessMode; +import org.boon.core.reflection.fields.FieldsAccessor; +import org.boon.core.value.ValueContainer; +import org.boon.core.value.ValueList; +import org.boon.core.value.ValueMap; +import org.boon.core.value.ValueMapImpl; +import org.boon.primitive.Arry; +import org.boon.primitive.CharBuf; + +import java.lang.reflect.Array; +import java.lang.reflect.ParameterizedType; +import java.lang.reflect.Type; +import java.util.*; + +import static org.boon.Boon.className; +import static org.boon.Boon.puts; +import static org.boon.Boon.sputs; +import static org.boon.Exceptions.die; +import static org.boon.Exceptions.handle; +import static org.boon.core.Conversions.coerce; +import static org.boon.core.Conversions.toEnum; +import static org.boon.core.TypeType.*; + +/** + * Created by Richard on 9/18/14. + */ +public class MapperSimple implements Mapper { + + + private FieldsAccessor fieldsAccessor; + + + public MapperSimple() { + this.fieldsAccessor = FieldAccessMode.FIELD_THEN_PROPERTY.create(true); + } + + public MapperSimple(FieldsAccessor fieldsAccessor) { + this.fieldsAccessor = fieldsAccessor; + } + + /** + * This converts a list of maps to objects. + * I always forget that this exists. I need to remember. + * + * @param list the input list + * @param generics + * @return a new list + */ + @Override + public List convertListOfMapsToObjects(List list, Class componentType) { + List newList = new ArrayList<>( list.size() ); + for ( Object obj : list ) { + + if ( obj instanceof Value) { + obj = ( ( Value ) obj ).toValue(); + } + + if ( obj instanceof Map ) { + + Map map = ( Map ) obj; + if ( map instanceof ValueMapImpl) { + newList.add( fromValueMap( ( Map ) map, componentType ) ); + } else { + newList.add( fromMap( map, componentType ) ); + } + } else { + newList.add( Conversions.coerce(componentType, obj) ); + } + } + return ( List ) newList; + } + + + + /** + * fromMap converts a map into a java object + * @param map map to create the object from. + * @param cls class type of new object + * @param map to create teh object from. + * @return new object of type cls + */ + @Override + public T fromMap(final Map map, final Class cls) { + + + T toObject = Reflection.newInstance( cls ); + Map fields = fieldsAccessor.getFields( toObject.getClass() ); + Set> mapKeyValuesEntrySet = map.entrySet(); + + + /* Iterate through the map keys/values. */ + for ( Map.Entry mapEntry : mapKeyValuesEntrySet ) { + + /* Get the field name. */ + String key = mapEntry.getKey(); + + + /* Get the field and if it missing then ignore this map entry. */ + FieldAccess field = fields.get( fieldsAccessor.isCaseInsensitive() ? key.toLowerCase() : key ); + + + if ( field == null ) { + continue; + } + + + if ( field.ignore() ) { + continue; + } + + /* Get the value from the map. */ + Object value = mapEntry.getValue(); + + + /* If the value is a Value (a index overlay), then convert ensure it is not a container and inject + it into the field, and we are done so continue. + */ + if ( value instanceof Value ) { + if ( ( ( Value ) value ).isContainer() ) { + value = ( ( Value ) value ).toValue(); + } else { + field.setFromValue( toObject, ( Value ) value ); + continue; + } + } + + /* If the value is null, then inject an null value into the field. + * Notice we do not check to see if the field is a primitive, if + * it is we die which is the expected behavior. + */ + if ( value == null ) { + field.setObject( toObject, null ); + continue; + } + + /* if the value's type and the field type are the same or + the field just takes an object, then inject what we have as is. + */ + if ( value.getClass() == field.type() || field.type() == Object.class) { + field.setValue(toObject, value); + } else if ( Typ.isBasicType(value) ) { + + field.setValue(toObject, value); + } + + + /* See if it is a map, and if it is then process it. + * REFACTOR: + * It looks like we are using some utility classes here that we could have used in + * oldMatchAndConvertArgs. + * REFACTOR + * */ + else if ( value instanceof Map ) { + setFieldValueFromMap(toObject, field, (Map)value); + } else if ( value instanceof Collection) { + /*It is a collection so process it that way. */ + processCollectionFromMapUsingFields( toObject, field, ( Collection ) value); + } else if ( value instanceof Map[] ) { + /* It is an array of maps so, we need to process it as such. */ + processArrayOfMaps(toObject, field, ( Map[] )value ); + } else { + /* If we could not determine how to convert it into some field + object then we just go ahead an inject it using setValue which + will call Conversion.coerce. + */ + field.setValue( toObject, value ); + } + + } + + return toObject; + + } + + + + /** Convert an item from a list into a class using the classes constructor. + * + * REFACTOR: Can't this just be from collection? + * REFACTOR + * + * @param argList list if arguments + * @param clazz the type of the object we are creating + * @param generics + * @return the new object that we just created. + */ + @Override + public T fromList(List argList, Class clazz) { + + /* Size of the arguments. */ + int size = argList.size(); + + + /* Meta data holder of the class. */ + ClassMeta classMeta = ClassMeta.classMeta( clazz ); + + /* The constructor to match. */ + ConstructorAccess constructorToMatch = null; + + /* The final arguments. */ + Object[] finalArgs = null; + + + boolean[] flag = new boolean[1]; + List convertedArguments = null; + + + try { + + + /* List to hold items that we coerce into parameter types. */ + convertedArguments = new ArrayList<>( argList ); + + constructorToMatch = lookupConstructorMeta( size, + convertedArguments, classMeta, constructorToMatch, flag, false); + + + + /* List to hold items that we coerce into parameter types. */ + if (constructorToMatch == null) { + convertedArguments = new ArrayList<>( argList ); + constructorToMatch = lookupConstructorMeta( size, + convertedArguments, classMeta, constructorToMatch, flag, true); + } + + + + + /* If we were not able to match then we bail. */ + if ( constructorToMatch != null ) { + finalArgs = convertedArguments.toArray( new Object[argList.size()] ); + return constructorToMatch.create( finalArgs ); + } else { + return (T) die(Object.class, "Unable to convert list", convertedArguments, "into", clazz); + } + + /* Catch all of the exceptions and try to report why this failed. + * Since we are doing reflection and a bit of "magic", we have to be clear as to why/how things failed. + * */ + } catch ( Exception e ) { + + + if (constructorToMatch != null) { + + + CharBuf buf = CharBuf.create(200); + buf.addLine(); + buf.multiply('-', 10).add("FINAL ARGUMENTS").multiply('-', 10).addLine(); + if (finalArgs!=null) { + for (Object o : finalArgs) { + buf.puts("argument type ", className(o)); + } + } + + + buf.multiply('-', 10).add("CONSTRUCTOR").add(constructorToMatch).multiply('-', 10).addLine(); + buf.multiply('-', 10).add("CONSTRUCTOR PARAMS").multiply('-', 10).addLine(); + for (Class c : constructorToMatch.parameterTypes()) { + buf.puts("constructor type ", c); + } + + buf.multiply('-', 35).addLine(); + + if (Boon.debugOn()) { + puts(buf); + } + + + + buf.addLine("PARAMETER TYPES"); + buf.add(Lists.list(constructorToMatch.parameterTypes())).addLine(); + + buf.addLine("ORIGINAL TYPES PASSED"); + buf.add(gatherTypes(convertedArguments)).addLine(); + + buf.add(gatherActualTypes(convertedArguments)).addLine(); + + buf.addLine("CONVERTED ARGUMENT TYPES"); + buf.add(gatherTypes(convertedArguments)).addLine(); + buf.add(gatherActualTypes(convertedArguments)).addLine(); + + Boon.error( e, "unable to create object based on constructor", buf ); + + + return ( T ) handle(Object.class, e, buf.toString()); + } else { + return ( T ) handle(Object.class, e, + "\nlist args after conversion", convertedArguments, "types", + gatherTypes(convertedArguments), + "\noriginal args", argList, + "original types", gatherTypes(argList)); + + } + } + + } + + + + + + /** + * Processes an array of maps. + * @param newInstance new instance we are injecting field into + * @param field field we are injecting a value into + */ + private void processArrayOfMaps( Object newInstance, FieldAccess field, Map[] maps) { + List> list = Lists.list(maps); + handleCollectionOfMaps( newInstance, field, + list); + + } + + + /** + * Processes an collection of maps. + * @param newInstance new instance we are injecting field into + * @param field field we are injecting a value into + */ + @SuppressWarnings("unchecked") + private void handleCollectionOfMaps( Object newInstance, + FieldAccess field, Collection> collectionOfMaps + ) { + + Collection newCollection = Conversions.createCollection( field.type(), collectionOfMaps.size() ); + + + Class componentClass = field.getComponentClass(); + + if ( componentClass != null ) { + + + for ( Map mapComponent : collectionOfMaps ) { + + newCollection.add( fromMap( mapComponent, componentClass ) ); + + } + field.setObject( newInstance, newCollection ); + + } + + } + + + + + + private ConstructorAccess lookupConstructorMeta(int size, + List convertedArguments, + ClassMeta classMeta, + ConstructorAccess constructorToMatch, + boolean[] flag, boolean loose) { + + + /* Iterate through the constructors and see if one matches the arguments passed after coercion. */ + loop: + for ( ConstructorAccess constructor : classMeta.constructors() ) { + + /* Get the parameters on the constructor and see if the size matches what was passed. */ + Class[] parameterTypes = constructor.parameterTypes(); + if ( parameterTypes.length == size ) { + + /* Iterate through each parameter and see if it can be converted. */ + for ( int index = 0; index < size; index++ ) { + /* The match and convert does the bulk of the work. */ + if ( !matchAndConvertArgs( convertedArguments, constructor, + parameterTypes, index, flag, loose ) ) continue loop; + } + constructorToMatch = constructor; + } + } + return constructorToMatch; + } + + + + /** + * This converts/coerce a constructor argument to the given parameter type. + * + * REFACTOR: + * This method was automatically refactored and its functionality gets duplicated in a few places. + * Namely Invoker lib. It needs to be documented. Refactored to use org.boon.core.TypeType. + * And code coverage. I have used it on several projects and have modified to work on + * edge cases for certain customers and have not updated the unit test. + * This method is beastly and important. It is currently 250 lines of code. + * It started off small, and kept getting added to. It needs love, but it was a bitch to write. + * REFACTOR + * + * @param convertedArgumentList arguments being converted to match parameter types + * @param methodAccess constructor + * @param parameterTypes parameterTypes + * @param index index of argument + * @return true or false + */ + private boolean matchAndConvertArgs( List convertedArgumentList, + BaseAccess methodAccess, + Class[] parameterTypes, + int index, + boolean[] flag, boolean loose) { + + + Object value = null; + + try { + + Class parameterClass; + Object item; + + parameterClass = parameterTypes[index]; + item = convertedArgumentList.get( index ); + + + final TypeType parameterType = TypeType.getType(parameterClass); + + + if ( item instanceof ValueContainer) { + item = ( ( ValueContainer ) item ).toValue(); + + convertedArgumentList.set( index, item ); + } + + + + + if (item == null) { + return true; + } + + switch (parameterType) { + case INT: + case SHORT: + case BYTE: + case BOOLEAN: + case CHAR: + case FLOAT: + case DOUBLE: + case LONG: + if (item == null) { + return false; + } + + + case INTEGER_WRAPPER: + case BYTE_WRAPPER: + case SHORT_WRAPPER: + case BOOLEAN_WRAPPER: + case CHAR_WRAPPER: + case FLOAT_WRAPPER: + case DOUBLE_WRAPPER: + case CHAR_SEQUENCE: + case NUMBER: + case LONG_WRAPPER: + + if (!loose ) { + if (item instanceof Number) { + value = Conversions.coerceWithFlag(parameterType, parameterClass, flag, item ); + convertedArgumentList.set( index, value ); + + return flag[0]; + } else { + return false; + } + + } else { + value = Conversions.coerceWithFlag(parameterType, parameterClass, flag, item ); + convertedArgumentList.set( index, value ); + + return flag[0]; + + } + + + + case ENUM: + + + if (item instanceof Enum) { + return true; + } + + if (item instanceof CharSequence) { + value = toEnum(parameterClass, item.toString()); + convertedArgumentList.set( index, value ); + + return value!=null; + + } else if (item instanceof Number){ + value = toEnum(parameterClass, ((Number)item).intValue()); + convertedArgumentList.set( index, value ); + + return value!=null; + + } else { + return false; + } + + + case CLASS: + if (item instanceof Class) { + return true; + } + + value = Conversions.coerceWithFlag(parameterType, parameterClass, flag, item ); + convertedArgumentList.set( index, value ); + + return flag[0]; + + + case STRING: + + if (item instanceof String) { + return true; + } + + if (item instanceof CharSequence) { + + value = item.toString(); + convertedArgumentList.set( index, value ); + return true; + + + } else if (loose) { + + value = item.toString(); + convertedArgumentList.set( index, value ); + return true; + } else { + return false; + } + + case MAP: + case VALUE_MAP: + + if (item instanceof Map) { + Map itemMap = (Map)item; + + /* This code creates a map based on the parameterized types of the constructor arg. + * This does ninja level generics manipulations and needs to be captured in some + * reusable way. + * */ + Type type = methodAccess.getGenericParameterTypes()[index]; + if ( type instanceof ParameterizedType) { + ParameterizedType pType = (ParameterizedType) type; + Class keyType = (Class) pType.getActualTypeArguments()[0]; + + Class valueType = (Class) pType.getActualTypeArguments()[1]; + + + Map newMap = Conversions.createMap(parameterClass, itemMap.size()); + + + /* Iterate through the map items and convert the keys/values to match + the parameterized constructor parameter args. + */ + + for (Object o : itemMap.entrySet()) { + Map.Entry entry = (Map.Entry) o; + + Object key = entry.getKey(); + value = entry.getValue(); + + key = ValueContainer.toObject(key); + + value = ValueContainer.toObject(value); + + + /* Here is the actual conversion from a list or a map of some object. + This can be captured in helper method the duplication is obvious. + */ + if (value instanceof List) { + value = fromList((List) value, valueType); + + } else if (value instanceof Map) { + value = fromMap((Map) value, valueType); + + } else { + value = coerce(valueType, value); + } + + + if (key instanceof List) { + key = fromList((List) key, keyType); + + } else if (value instanceof Map) { + key = fromMap((Map) key, keyType); + + } else { + key = coerce(keyType, key); + } + + newMap.put(key, value); + } + convertedArgumentList.set(index, newMap); + return true; + } + } + break; + case INSTANCE: + if ( parameterClass.isInstance( item ) ) { + return true; + } + + if (item instanceof Map) { + item = fromMap( ( Map ) item, parameterClass ); + convertedArgumentList.set( index, item ); + return true; + } else if ( item instanceof List ) { + + List listItem = null; + + listItem = ( List ) item; + + value = fromList(listItem, parameterClass ); + + convertedArgumentList.set( index, value ); + return true; + + } else { + convertedArgumentList.set( index, coerce( parameterClass, item ) ); + return true; + } + //break; + case INTERFACE: + case ABSTRACT: + if ( parameterClass.isInstance( item ) ) { + return true; + } + + if (item instanceof Map) { + + /** Handle conversion of user define interfaces. */ + String className = (String) ((Map) item).get("class"); + if (className != null) { + item = fromMap( (Map) item, Reflection.loadClass(className)); + convertedArgumentList.set(index, item); + return true; + } else { + return false; + } + + } + break; + + + + case ARRAY: + case ARRAY_INT: + case ARRAY_BYTE: + case ARRAY_SHORT: + case ARRAY_FLOAT: + case ARRAY_DOUBLE: + case ARRAY_LONG: + case ARRAY_STRING: + case ARRAY_OBJECT: + item = Conversions.toList(item); + case SET: + case COLLECTION: + case LIST: + if (item instanceof List ) { + + List itemList = ( List ) item; + + /* Items have stuff in it, the item is a list of lists. + * This is like we did earlier with the map. + * Here is some more ninja generics Java programming that needs to be captured in one place. + * */ + if ( itemList.size() > 0 && (itemList.get( 0 ) instanceof List || + itemList.get(0) instanceof ValueContainer) ) { + + /** Grab the generic type of the list. */ + Type type = methodAccess.getGenericParameterTypes()[index]; + + /* Try to pull the generic type information out so you can create + a strongly typed list to inject. + */ + if ( type instanceof ParameterizedType ) { + ParameterizedType pType = ( ParameterizedType ) type; + + + Class componentType; + if (! (pType.getActualTypeArguments()[0] instanceof Class)) { + componentType = Object.class; + } else { + componentType = (Class) pType.getActualTypeArguments()[0]; + } + + Collection newList = Conversions.createCollection( parameterClass, itemList.size() ); + + for ( Object o : itemList ) { + if ( o instanceof ValueContainer ) { + o = ( ( ValueContainer ) o ).toValue(); + } + + if (componentType==Object.class) { + newList.add(o); + } else { + + List fromList = ( List ) o; + o = fromList( fromList, componentType ); + newList.add( o ); + } + } + convertedArgumentList.set( index, newList ); + return true; + + } + } else { + + /* Just a list not a list of lists so see if it has generics and pull out the + * type information and created a strong typed list. This looks a bit familiar. + * There is a big opportunity for some reuse here. */ + Type type = methodAccess.getGenericParameterTypes()[index]; + if ( type instanceof ParameterizedType ) { + ParameterizedType pType = ( ParameterizedType ) type; + + Class componentType = pType.getActualTypeArguments()[0] instanceof Class ? (Class) pType.getActualTypeArguments()[0] : Object.class; + + Collection newList = Conversions.createCollection( parameterClass, itemList.size() ); + + + for ( Object o : itemList ) { + if ( o instanceof ValueContainer ) { + o = ( ( ValueContainer ) o ).toValue(); + } + if (o instanceof List) { + + if (componentType != Object.class) { + + List fromList = ( List ) o; + o = fromList(fromList, componentType); + } + newList.add( o ); + } else if (o instanceof Map) { + Map fromMap = ( Map ) o; + o = fromMap( fromMap, componentType ); + newList.add( o ); + + } else { + newList.add( Conversions.coerce(componentType, o)); + } + } + convertedArgumentList.set( index, newList ); + return true; + + } + + } + } + return false; + + + default: + final TypeType itemType = TypeType.getInstanceType(item); + + switch (itemType) { + case LIST: + convertedArgumentList.set(index, fromList((List) item, parameterClass)); + return true; + case MAP: + case VALUE_MAP: + convertedArgumentList.set(index, fromMap( (Map) item, parameterClass)); + return true; + + case NUMBER: + case BOOLEAN: + case INT: + case SHORT: + case BYTE: + case FLOAT: + case DOUBLE: + case LONG: + case DOUBLE_WRAPPER: + case FLOAT_WRAPPER: + case INTEGER_WRAPPER: + case SHORT_WRAPPER: + case BOOLEAN_WRAPPER: + case BYTE_WRAPPER: + case LONG_WRAPPER: + case CLASS: + case VALUE: + value = Conversions.coerceWithFlag( parameterClass, flag, item ); + + if (flag[0] == false) { + return false; + } + convertedArgumentList.set( index, value ); + return true; + + + + case CHAR_SEQUENCE: + case STRING: + + value = Conversions.coerceWithFlag( parameterClass, flag, item ); + + if (flag[0] == false) { + return false; + } + convertedArgumentList.set( index, value ); + return true; + + + + } + + + + } + + + if ( parameterClass.isInstance( item ) ) { + return true; + } + + + } catch (Exception ex) { + Boon.error(ex, "PROBLEM WITH oldMatchAndConvertArgs", + "fieldsAccessor", fieldsAccessor, "list", convertedArgumentList, + "constructor", methodAccess, "parameters", parameterTypes, + "index", index); + return false; + } + + return false; + } + + + + /** + * Processes an collection of maps. + * This can inject into an array and appears to be using some of the TypeType lib. + * @param newInstance new instance we are injecting field into + * @param field field we are injecting a value into + */ + @SuppressWarnings("unchecked") + private void handleCollectionOfValues( + Object newInstance, + FieldAccess field, Collection acollectionOfValues ) { + + Collection collectionOfValues = acollectionOfValues; + if (null == collectionOfValues) { + field.setObject(newInstance, null); + return; + } + + if(field.typeEnum() == INSTANCE) { + + field.setObject(newInstance, fromList((List) acollectionOfValues, field.type())); + return; + + } + + if ( collectionOfValues instanceof ValueList) { + collectionOfValues = ( ( ValueList ) collectionOfValues ).list(); + } + + + Class componentClass = field.getComponentClass(); + + + + /** If the field is a collection than try to convert the items in the collection to + * the field type. + */ + switch (field.typeEnum() ) { + + + case LIST: + case SET: + case COLLECTION: + + + Collection newCollection = Conversions.createCollection( field.type(), collectionOfValues.size() ); + + + for ( Value value : ( List ) collectionOfValues ) { + + if ( value.isContainer() ) { + Object oValue = value.toValue(); + if ( oValue instanceof Map ) { + newCollection.add( fromValueMap( ( Map ) oValue, componentClass ) ); + } + } else { + newCollection.add( Conversions.coerce( componentClass, value.toValue() ) ); + } + + + } + field.setObject( newInstance, newCollection ); + break; + + + case ARRAY: + case ARRAY_INT: + case ARRAY_BYTE: + case ARRAY_SHORT: + case ARRAY_FLOAT: + case ARRAY_DOUBLE: + case ARRAY_LONG: + case ARRAY_STRING: + case ARRAY_OBJECT: + + TypeType componentType = field.componentType(); + int index = 0; + + switch (componentType) { + case INT: + int [] iarray = new int[collectionOfValues.size()]; + for ( Value value : ( List ) collectionOfValues ) { + iarray[index] = value.intValue(); + index++; + + } + field.setObject( newInstance, iarray); + return; + case SHORT: + short [] sarray = new short[collectionOfValues.size()]; + for ( Value value : ( List ) collectionOfValues ) { + sarray[index] = value.shortValue(); + index++; + + } + field.setObject( newInstance, sarray); + return; + case DOUBLE: + double [] darray = new double[collectionOfValues.size()]; + for ( Value value : ( List ) collectionOfValues ) { + darray[index] = value.doubleValue(); + index++; + + } + field.setObject( newInstance, darray); + return; + case FLOAT: + float [] farray = new float[collectionOfValues.size()]; + for ( Value value : ( List ) collectionOfValues ) { + farray[index] = value.floatValue(); + index++; + + } + field.setObject( newInstance, farray); + return; + + case LONG: + long [] larray = new long[collectionOfValues.size()]; + for ( Value value : ( List ) collectionOfValues ) { + larray[index] = value.longValue(); + index++; + + } + field.setObject( newInstance, larray); + return; + + + case BYTE: + byte [] barray = new byte[collectionOfValues.size()]; + for ( Value value : ( List ) collectionOfValues ) { + barray[index] = value.byteValue(); + index++; + + } + field.setObject( newInstance, barray); + return; + + + case CHAR: + char [] chars = new char[collectionOfValues.size()]; + for ( Value value : ( List ) collectionOfValues ) { + chars[index] = value.charValue(); + index++; + } + field.setObject( newInstance, chars); + return; + + case STRING: + CharBuf buffer = CharBuf.create(100); + String [] strings = new String[collectionOfValues.size()]; + for ( Value value : ( List ) collectionOfValues ) { + strings[index] = value.stringValue(buffer); + index++; + } + field.setObject( newInstance, strings); + return; + + + default: + Object array = Array.newInstance(componentClass, collectionOfValues.size()); + Object o; + + for ( Value value : ( List ) collectionOfValues ) { + if (value instanceof ValueContainer) { + o = value.toValue(); + if (o instanceof List) { + o = fromList( (List)o, componentClass); + if (componentClass.isInstance( o )) { + Array.set(array, index, o); + } else { + break; + } + } else if (o instanceof Map) { + o = fromMap((Map) o, componentClass); + if (componentClass.isInstance( o )) { + Array.set(array, index, o); + } else { + break; + } + } + } else { + o = value.toValue(); + if (componentClass.isInstance( o )) { + Array.set(array, index, o); + } else { + Array.set(array, index, Conversions.coerce( componentClass, o )); + } + } + index++; + } + field.setValue( newInstance, array); + } + break; + } + + } + + + /** + * Creates an object from a value map. + * + * This does some special handling to take advantage of us using the value map so it avoids creating + * a bunch of array objects and collections. Things you have to worry about when writing a + * high-speed JSON serializer. + * @return new object from value map + */ + @Override + @SuppressWarnings("unchecked") + public Object fromValueMap(final Map valueMap + ) { + + + try { + String className = valueMap.get( "class" ).toString(); + Class cls = Reflection.loadClass( className ); + return fromValueMap( valueMap, cls ); + } catch ( Exception ex ) { + return handle(Object.class, sputs("fromValueMap", "map", valueMap, "fieldAccessor", fieldsAccessor), ex); + } + } + + + + /** + * Creates an object from a value map. + * + * This does some special handling to take advantage of us using the value map so it avoids creating + * a bunch of array objects and collections. Things you have to worry about when writing a + * high-speed JSON serializer. + * @param cls the new type + * @return new object from value map + */ + @Override + @SuppressWarnings("unchecked") + public T fromValueMap(final Map valueMap, + final Class cls) { + + T newInstance = Reflection.newInstance( cls ); + ValueMap map = ( ValueMap ) ( Map ) valueMap; + + + Map fields = fieldsAccessor.getFields( cls); + Map.Entry[] entries; + + FieldAccess field = null; + String fieldName = null; + Map.Entry entry; + + + int size; + + + /* if the map is not hydrated get its entries right form the array to avoid collection creations. */ + if ( !map.hydrated() ) { + size = map.len(); + entries = map.items(); + } else { + size = map.size(); + entries = ( Map.Entry[] ) map.entrySet().toArray( new Map.Entry[size] ); + } + + /* guard. We should check if this is still needed. + * I might have added it for debugging and forgot to remove it.*/ + if ( size == 0 || entries == null ) { + return newInstance; + } + + + /* Iterate through the entries. */ + for ( int index = 0; index < size; index++ ) { + Object value = null; + try { + + entry = entries[index]; + + fieldName = entry.getKey(); + + + + field = fields.get(fieldsAccessor.isCaseInsensitive() ? fieldName.toLowerCase() : fieldName); + + + if ( field == null ) { + continue; + } + + + + if ( field.ignore() ) { + continue; + } + + + value = entry.getValue(); + + + if ( value instanceof Value ) { + fromValueMapHandleValueCase( newInstance, field, ( Value ) value ); + } else { + fromMapHandleNonValueCase( newInstance, field, value ); + } + }catch (Exception ex) { + return (T) handle(Object.class, ex, "fieldName", fieldName, "of class", cls, "had issues for value", value, "for field", field); + } + + } + + return newInstance; + } + + /** + * + * Gets called by fromValueMap + * This does some special handling to take advantage of us using the value map so it avoids creating + * a bunch of array objects and collections. Things you have to worry about when writing a + * high-speed JSON serializer. + * @param field field we want to inject something into + * @param newInstance the thing we want to inject a field value into + * @param objectValue object value we want to inject into the field. + * @return new object from value map + */ + private void fromMapHandleNonValueCase( T newInstance, FieldAccess field, + Object objectValue ) { + try { + if ( objectValue instanceof Map ) { + Class clazz = field.type(); + if ( !clazz.isInterface() && !Typ.isAbstract( clazz ) ) { + objectValue = fromValueMap( ( Map ) objectValue, field.type() ); + } else { + String className = (( Map ) objectValue) + .get("class").toString(); + Class cls = Reflection.loadClass( className ); + + objectValue = fromValueMap( ( Map ) objectValue, cls ); + } + field.setValue(newInstance, objectValue); + } else if ( objectValue instanceof Collection ) { + handleCollectionOfValues( newInstance, field, + ( Collection ) objectValue ); + } else { + field.setValue( newInstance, objectValue ); + } + } catch ( Exception ex ) { + handle(sputs("Problem handling non value case of fromValueMap", "field", field.name(), + "fieldType", field.type().getName(), "object from map", objectValue), ex); + } + } + + + + /** + * + * Gets called by fromValueMap + * This does some special handling to take advantage of us using the value map so it avoids creating + * a bunch of array objects and collections. Things you have to worry about when writing a + * high-speed JSON serializer. + * @param field field we want to inject something into + * @param newInstance the thing we want to inject a field value into + * @param value object value of type Value we want to inject into the field. + * @return new object from value map + */ + private void fromValueMapHandleValueCase( + T newInstance, FieldAccess field, Value value ) { + + + Object objValue = + ValueContainer.toObject(value); + + Class clazz = field.type(); + + + switch (field.typeEnum()) { + + case OBJECT: + case ABSTRACT: + case INTERFACE: + if (objValue instanceof Map) { + final Map valueMap = (Map) objValue; + + final Value aClass = valueMap.get("class"); + clazz = Reflection.loadClass(aClass.stringValue()); + + } + case INSTANCE: + switch (value.type()) { + case MAP: + objValue = fromValueMap( ( Map ) objValue, clazz ); + break; + case LIST: + objValue = fromList((List) objValue, clazz); + break; + + + } + field.setValue(newInstance, objValue); + + break; + + case MAP: + case VALUE_MAP: + + if (objValue==null) { + + field.setValue(newInstance, null); + break; + } + + + Class keyType = (Class)field.getParameterizedType().getActualTypeArguments()[0]; + Class valueType = (Class)field.getParameterizedType().getActualTypeArguments()[1]; + + Map mapInner = (Map)objValue; + Set set = mapInner.entrySet(); + Map newMap = new LinkedHashMap( ); + + for (Map.Entry entry : set) { + Object evalue = entry.getValue(); + + Object key = entry.getKey(); + + if (evalue instanceof ValueContainer) { + evalue = ((ValueContainer) evalue).toValue(); + } + + key = Conversions.coerce( keyType, key ); + evalue = Conversions.coerce( valueType, evalue ); + newMap.put( key, evalue ); + } + + objValue = newMap; + + field.setValue(newInstance, objValue); + + break; + + case LIST: + case COLLECTION: + case SET: + case ARRAY: + case ARRAY_INT: + case ARRAY_BYTE: + case ARRAY_SHORT: + case ARRAY_FLOAT: + case ARRAY_DOUBLE: + case ARRAY_LONG: + case ARRAY_STRING: + case ARRAY_OBJECT: + handleCollectionOfValues( newInstance, field, + ( Collection ) objValue ); + + break; + + default: + field.setFromValue(newInstance, value); + + } + } + + + + /** + * Inject a map into an object's field. + * @param field field we are injecting a value into + */ + private void setFieldValueFromMap( final Object parentObject, + final FieldAccess field, final Map mapInner ) { + + + Class fieldClassType = field.type(); + Object value = null; + + /* Is the field not a map. */ + if ( !Typ.isMap( fieldClassType ) ) { + + if ( !fieldClassType.isInterface() && !Typ.isAbstract( fieldClassType ) ) { + value = fromMap( mapInner, field.type() ); + + } else { + Object oClassName = mapInner.get( "class" ); + if (oClassName != null) { + value = fromMap( mapInner, Reflection.loadClass( oClassName.toString() )); + } else { + value = null; + } + } + + /* + REFACTOR: + This is at least the third time that I have seen this code in the class. + It was either cut and pasted or I forgot I wrote it three times. + REFACTOR: + */ + } else if (Typ.isMap( fieldClassType )) { + + Class keyType; + Class valueType; + + if (field.getParameterizedType() == null) { + keyType = String.class; + valueType = Object.class; + } else { + keyType = (Class) field.getParameterizedType().getActualTypeArguments()[0]; + valueType = (Class) field.getParameterizedType().getActualTypeArguments()[1]; + } + + Set set = mapInner.entrySet(); + Map newMap = new LinkedHashMap( ); + + for (Map.Entry entry : set) { + Object evalue = entry.getValue(); + + Object key = entry.getKey(); + + if (evalue instanceof ValueContainer) { + evalue = ((ValueContainer) evalue).toValue(); + } + + key = Conversions.coerce(keyType, key); + evalue = Conversions.coerce( valueType, evalue ); + newMap.put( key, evalue ); + } + + value = newMap; + + } + + field.setValue(parentObject, value); + + } + + + + /** + * Helper method to extract collection of values into some field collection. + * REFACTOR: + * This could be refactored to use the org.boon.core.TypeType system which should be faster. + * REFACTOR + * @param collection the collection we are coercing into a field value + */ + private void processCollectionFromMapUsingFields(final Object newInstance, + final FieldAccess field, + final Collection collection ) { + final Class fieldComponentClass = field.getComponentClass(); + + final Class valueComponentClass = Reflection.getComponentType(collection); + + + /** See if we have a collection of maps because if we do, then we have some + * recursive processing to do. + */ + if ( Typ.isMap( valueComponentClass ) ) { + handleCollectionOfMaps( newInstance, field, + ( Collection> ) collection ); + return; + + } + + /** See if this is a value object of some sort. */ + if ( Typ.isValue( valueComponentClass ) ) { + handleCollectionOfValues( newInstance, field, + ( Collection ) collection ); + return; + } + + + /** + * See if the collection implements the same type as the field. + * I saw a few places that could have used this helper method earlier in the file but were not. + */ + if (Typ.implementsInterface( collection.getClass(), field.type() )) { + + if (fieldComponentClass!=null && fieldComponentClass.isAssignableFrom(valueComponentClass)) { + field.setValue(newInstance, collection); + + return; + } + + } + + /** See if this is some sort of collection. + * TODO we need a coerce that needs a respectIgnore + * + * REFACTOR: + * Note we are assuming it is a collection of instances. + * We don't handle enums here. + * + * We do in other places. + * + * We handle all sorts of generics but not here. + * + * REFACTOR + * + **/ + if (!field.typeEnum().isCollection()) { + if (collection instanceof List) { + try { + Object value = fromList( (List) collection, field.getComponentClass()); + field.setValue(newInstance, value); + } catch (Exception ex) { + //There is an edge case that needs this. We need a coerce that takes respectIngore, etc. + field.setValue(newInstance, collection); + } + } else { + field.setValue(newInstance, collection); + } + return; + } + + + /** + * Create a new collection. if the types already match then just copy them over. + * Note that this is currently untyped in the null case. + * We are relying on the fact that the field.setValue calls the Conversion.coerce. + */ + Collection newCollection = Conversions.createCollection( field.type(), collection.size() ); + + if ( fieldComponentClass == null || fieldComponentClass.isAssignableFrom(valueComponentClass)) { + + newCollection.addAll(collection); + field.setValue( newInstance, newCollection ); + return; + } + + + + /* Here we try to do the coercion for each individual collection item. */ + for (Object itemValue : collection) { + newCollection.add(Conversions.coerce(fieldComponentClass, itemValue)); + field.setValue(newInstance, newCollection); + } + + } + + + /** + * fromMap converts a map into a Java object. + * This version will see if there is a class parameter in the map, and dies if there is not. + * @param map map to create the object from. + * @return new object + */ + @Override + public Object fromMap(Map map) { + String clazz = (String) map.get( "class" ); + Class cls = Reflection.loadClass( clazz ); + return fromMap(map, cls); + } + + + + + /** + * This could be refactored to use core.TypeType class and it would run faster. + * Converts an object into a map + * @param object the object that we want to convert + * @return map map representation of the object + */ + @Override + public Map toMap(final Object object) { + + if ( object == null ) { + return null; + } + + if (object instanceof Map) { + return (Map) object; + } + Map map = new LinkedHashMap<>(); + + + + final Map fieldMap = Reflection.getAllAccessorFields( object.getClass() ); + List fields = new ArrayList( fieldMap.values() ); + + + Collections.reverse( fields ); // make super classes fields first that + + + for ( FieldAccess access : fields ) { + + String fieldName = access.name(); + + if (access.isStatic()) { + continue; + } + + + Object value = access.getValue(object); + + + if ( value == null ) { + continue; + } + + + switch (access.typeEnum()) { + case BYTE: + case BYTE_WRAPPER: + case SHORT: + case SHORT_WRAPPER: + case INT: + case INTEGER_WRAPPER: + case LONG: + case LONG_WRAPPER: + case FLOAT: + case FLOAT_WRAPPER: + case DOUBLE: + case DOUBLE_WRAPPER: + case CHAR: + case CHAR_WRAPPER: + case BIG_DECIMAL: + case BIG_INT: + case BOOLEAN: + case BOOLEAN_WRAPPER: + case CURRENCY: + case CALENDAR: + case DATE: + map.put( fieldName, value ); + break; + + case ARRAY: + case ARRAY_INT: + case ARRAY_BYTE: + case ARRAY_SHORT: + case ARRAY_FLOAT: + case ARRAY_DOUBLE: + case ARRAY_LONG: + case ARRAY_STRING: + case ARRAY_OBJECT: + if (Typ.isBasicType( access.getComponentClass() )) { + map.put(fieldName, value); + } else { + int length = Arry.len(value); + List> list = new ArrayList<>( length ); + for ( int index = 0; index < length; index++ ) { + Object item = Arry.fastIndex( value, index ); + list.add( toMap( item ) ); + } + map.put( fieldName, list ); + } + break; + case COLLECTION: + case LIST: + case SET: + Collection collection = ( Collection ) value; + Class componentType = access.getComponentClass(); + if ( Typ.isBasicType( componentType ) ) { + map.put(fieldName, value); + } else if (Typ.isEnum(componentType)) { + List list = new ArrayList<>( + collection.size() ); + for ( Object item : collection ) { + if ( item != null ) { + list.add( item.toString() ); + } + } + map.put( fieldName, list ); + + } else { + List> list = new ArrayList<>( + collection.size() ); + for ( Object item : collection ) { + if ( item != null ) { + list.add( toMap( item ) ); + } + } + map.put( fieldName, list ); + } + break; + case MAP: + map.put(fieldName, value); + break; + + case INSTANCE: + map.put(fieldName, toMap(value)); + break; + + case INTERFACE: + case ABSTRACT: + final Map abstractMap = toMap(value); + abstractMap.put("class", Boon.className(value)); + map.put(fieldName, abstractMap); + break; + + case ENUM: + map.put(fieldName, value); + break; + + + + + default: + map.put(fieldName, Conversions.toString(value)); + break; + + + + + + } + + } + return map; + + + } + + + /** + * Creates a list of maps from a list of class instances. + * @param collection the collection we are coercing into a field value + * @return the return value. + */ + @Override + public List> toListOfMaps(Collection collection) { + List> list = new ArrayList<>(); + for ( Object o : collection ) { + list.add( toMap( o ) ); + } + return list; + } + + + /** Convert an object to a list. + * + * @param object the object we want to convert to a list + * @return new list from an object + */ + @Override + public List toList(Object object) { + + TypeType instanceType = TypeType.getInstanceType(object); + + switch (instanceType) { + case NULL: + return Lists.list((Object)null); + + case ARRAY: + case ARRAY_INT: + case ARRAY_BYTE: + case ARRAY_SHORT: + case ARRAY_FLOAT: + case ARRAY_DOUBLE: + case ARRAY_LONG: + case ARRAY_STRING: + case ARRAY_OBJECT: + return Conversions.toList(object); + + } + return Lists.list(object); + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/MethodAccess.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/MethodAccess.java new file mode 100644 index 0000000..a1cafd5 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/MethodAccess.java @@ -0,0 +1,86 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.reflection; + +import org.boon.core.TypeType; + +import java.lang.invoke.ConstantCallSite; +import java.lang.invoke.MethodHandle; +import java.lang.reflect.Method; +import java.util.List; + +/** + * Created by Richard on 2/17/14. + */ +public interface MethodAccess extends BaseAccess, Comparable{ + + public Object invokeDynamic(Object object, Object... args); + public Object invoke(Object object, Object... args); + boolean isStatic(); + boolean isPublic(); + boolean isPrivate(); + + String name(); + + Class declaringType() ; + + + Class returnType() ; + + boolean respondsTo(Class... types); + + boolean respondsTo(Object... args); + + + Object invokeStatic(Object... args); + + MethodAccess bind(Object instance); + + MethodHandle methodHandle(); + + MethodAccess methodAccess(); + + Object bound(); + + ConstantCallSite invokeReducerLongIntReturnLongMethodHandle(T object); + + Method method(); + + int score(); + + + List paramTypeEnumList(); + + + Object invokeDynamicObject(Object object, Object args); + + List> annotationDataForParams(); + + +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/Reflection.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/Reflection.java new file mode 100644 index 0000000..01a2966 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/Reflection.java @@ -0,0 +1,799 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.reflection; + +import org.boon.Exceptions; +import org.boon.Lists; +import org.boon.core.Function; +import org.boon.Pair; +import org.boon.core.Sys; +import org.boon.core.Typ; +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.core.reflection.fields.PropertyField; +import org.boon.core.reflection.fields.ReflectField; +import org.boon.core.reflection.fields.UnsafeField; +import sun.misc.Unsafe; + +import java.lang.ref.WeakReference; +import java.lang.reflect.Field; +import java.lang.reflect.Method; +import java.util.*; +import java.util.concurrent.ConcurrentHashMap; +import java.util.logging.Logger; + +import static org.boon.Boon.sputs; +import static org.boon.Exceptions.die; +import static org.boon.Str.lower; +import static org.boon.Str.slc; + + +public class Reflection { + + + + public static List getFields( Class theClass ) { + + + List fields = context().__fields.get(theClass); + if (fields!=null) { + return fields; + } + + fields = Lists.list( theClass.getDeclaredFields() ); + boolean foundCrap = false; + for ( Field field : fields ) { + if (field.getName().indexOf('$')!=-1) { + foundCrap = true; + continue; + } + field.setAccessible( true ); + } + + + if (foundCrap) { + List copy = Lists.copy(fields); + + for (Field field : copy) { + if (field.getName().indexOf('$')!=-1) { + fields.remove(field); + } + + + } + } + + return fields; + } + + + private static final Logger log = Logger.getLogger( Reflection.class.getName() ); + + private static boolean _useUnsafe; + + static { + try { + Class.forName( "sun.misc.Unsafe" ); + _useUnsafe = true; + } catch ( ClassNotFoundException e ) { + e.printStackTrace(); + _useUnsafe = false; + } + + _useUnsafe = _useUnsafe && !Boolean.getBoolean( "org.boon.noUnsafe" ); + } + + private static final boolean useUnsafe = _useUnsafe; + + + + private final static Context _context; + private static WeakReference weakContext = new WeakReference<>( null ); + + + static { + + boolean noStatics = Boolean.getBoolean( "org.boon.noStatics" ); + if ( noStatics || Sys.inContainer() ) { + + _context = null; + weakContext = new WeakReference<>( new Context() ); + + } else { + ; + _context = new Context(); + } + } + + + + + public static Unsafe getUnsafe() { + if ( context().control == null ) { + try { + Field f = Unsafe.class.getDeclaredField( "theUnsafe" ); + f.setAccessible( true ); + context().control = ( Unsafe ) f.get( null ); + return context().control; + } catch ( Exception e ) { + return null; + } + } else { + return context().control; + } + } + + + public static Object contextToHold() { + return context(); + } + + /* Manages weak references. */ + static Context context() { + + if ( _context != null ) { + return _context; + } else { + Context context = weakContext.get(); + if ( context == null ) { + context = new Context(); + weakContext = new WeakReference<>( context ); + } + return context; + } + } + + static class Context { + + + Map, List> __fields = new ConcurrentHashMap<>( 200 ); + + Unsafe control; + Map _sortableFields = new ConcurrentHashMap<>(); + + Map, ClassMeta> _classMetaMap = new ConcurrentHashMap<>( 200 ); + + Map, Map> _allAccessorReflectionFieldsCache = new ConcurrentHashMap<>( 200 ); + Map, Map> _allAccessorPropertyFieldsCache = new ConcurrentHashMap<>( 200 ); + Map, Map> _allAccessorUnsafeFieldsCache = new ConcurrentHashMap<>( 200 ); + + Map, Map> _combinedFieldsFieldsFirst = new ConcurrentHashMap<>( 200 ); + Map, Map> _combinedFieldsFieldsFirstForSerializer = new ConcurrentHashMap<>( 200 ); + + Map, Map> _combinedFieldsPropertyFirst = new ConcurrentHashMap<>( 200 ); + Map, Map> _combinedFieldsPropertyFirstForSerializer = new ConcurrentHashMap<>( 200 ); + + } + + + + private static Map getCombinedFieldsPropertyFirst(Class theClass) { + return context()._combinedFieldsPropertyFirst.get(theClass); + } + + + private static Map getCombinedFieldsPropertyFirstForSerializer(Class theClass) { + return context()._combinedFieldsPropertyFirstForSerializer.get(theClass); + } + + private static Map getCombinedFieldsFieldFirst(Class theClass) { + return context()._combinedFieldsFieldsFirst.get(theClass); + } + + private static Map getCombinedFieldsFieldFirstForSerializer(Class theClass) { + return context()._combinedFieldsFieldsFirstForSerializer.get(theClass); + } + + private static void putCombinedFieldsPropertyFirst(Class theClass, Map map) { + context()._combinedFieldsPropertyFirst.put(theClass, map); + } + + + private static void putCombinedFieldsPropertyFirstForSerializer(Class theClass, Map map) { + context()._combinedFieldsPropertyFirst.put(theClass, map); + } + + private static void putCombinedFieldsFieldFirst(Class theClass, Map map) { + context()._combinedFieldsFieldsFirst.put(theClass, map); + } + + private static void putCombinedFieldsFieldFirstForSerializer(Class theClass, Map map) { + context()._combinedFieldsFieldsFirstForSerializer.put(theClass, map); + } + + static { + try { + if ( _useUnsafe ) { + Field field = String.class.getDeclaredField( "value" ); + } + } catch ( Exception ex ) { + Exceptions.handle( ex ); + } + } + + + private static void setAccessorFieldInCache( Class theClass, boolean useUnsafe, Map map ) { + if ( useUnsafe ) { + context()._allAccessorUnsafeFieldsCache.put( theClass, map ); + } else { + context()._allAccessorReflectionFieldsCache.put( theClass, map ); + + } + } + + private static void setPropertyAccessorFieldsInCache( Class theClass, Map map ) { + context()._allAccessorPropertyFieldsCache.put( theClass, map ); + } + + + private static Map getPropertyAccessorFieldsFromCache( Class theClass ) { + return context()._allAccessorPropertyFieldsCache.get( theClass ); + } + + private static Map getAccessorFieldsFromCache(Class theClass, boolean useUnsafe) { + + if ( useUnsafe ) { + return context()._allAccessorUnsafeFieldsCache.get( theClass ); + } else { + return context()._allAccessorReflectionFieldsCache.get( theClass ); + + } + } + + + + + /** + * Gets a list of fields merges with properties if field is not found. + * + * @param clazz get the properties or fields + * @return + */ + public static Map getPropertyFieldAccessMapFieldFirst( Class clazz ) { + Map combinedFieldsFieldFirst = getCombinedFieldsFieldFirst(clazz); + + if (combinedFieldsFieldFirst!=null) { + return combinedFieldsFieldFirst; + } else { + + /* Fallback map. */ + Map fieldsFallbacks = null; + + /* Primary merge into this one. */ + Map fieldsPrimary = null; + + + /* Try to find the fields first if this is set. */ + fieldsPrimary = Reflection.getAllAccessorFields(clazz, true); + + fieldsFallbacks = Reflection.getPropertyFieldAccessors(clazz); + + + combineFieldMaps(fieldsFallbacks, fieldsPrimary); + + combinedFieldsFieldFirst = fieldsPrimary; + + putCombinedFieldsFieldFirst(clazz, combinedFieldsFieldFirst); + return combinedFieldsFieldFirst; + + } + + + } + + + + /** + * Gets a list of fields merges with properties if field is not found. + * + * @param clazz get the properties or fields + * @return + */ + public static Map getPropertyFieldAccessMapFieldFirstForSerializer( Class clazz ) { + Map combinedFieldsFieldFirst = getCombinedFieldsFieldFirstForSerializer(clazz); + + if (combinedFieldsFieldFirst!=null) { + return combinedFieldsFieldFirst; + } else { + + /* Fallback map. */ + Map fieldsFallbacks = null; + + /* Primary merge into this one. */ + Map fieldsPrimary = null; + + + /* Try to find the fields first if this is set. */ + fieldsPrimary = Reflection.getAllAccessorFields(clazz, true); + fieldsFallbacks = Reflection.getPropertyFieldAccessors(clazz); + + fieldsPrimary = removeNonSerializable(fieldsPrimary); + fieldsFallbacks = removeNonSerializable(fieldsFallbacks); + + combineFieldMaps(fieldsFallbacks, fieldsPrimary); + + combinedFieldsFieldFirst = fieldsPrimary; + + putCombinedFieldsFieldFirstForSerializer(clazz, combinedFieldsFieldFirst); + return combinedFieldsFieldFirst; + + } + + + } + + + private static void combineFieldMaps( Map fieldsFallbacks, Map fieldsPrimary ) { + /* Add missing fields */ + for ( Map.Entry field : fieldsFallbacks.entrySet() ) { + if ( !fieldsPrimary.containsKey( field.getKey() ) ) { + fieldsPrimary.put( field.getKey(), field.getValue() ); + } + } + } + + public static Map getPropertyFieldAccessMapPropertyFirst( Class clazz ) { + + Map combinedFields = getCombinedFieldsPropertyFirst(clazz); + + if (combinedFields!=null) { + return combinedFields; + } else { + /* Fallback map. */ + Map fieldsFallbacks = null; + + /* Primary merge into this one. */ + Map fieldsPrimary = null; + + + + /* Try to find the properties first if this is set. */ + fieldsFallbacks = Reflection.getAllAccessorFields(clazz, true); + fieldsPrimary = Reflection.getPropertyFieldAccessors(clazz); + + + /* Add missing fields */ + combineFieldMaps(fieldsFallbacks, fieldsPrimary); + + combinedFields = fieldsPrimary; + putCombinedFieldsPropertyFirst(clazz, combinedFields); + return combinedFields; + } + } + + + public static Map getPropertyFieldAccessMapPropertyFirstForSerializer( Class clazz ) { + + Map combinedFields = getCombinedFieldsPropertyFirstForSerializer(clazz); + + if (combinedFields!=null) { + return combinedFields; + } else { + /* Fallback map. */ + Map fieldsFallbacks = null; + + /* Primary merge into this one. */ + Map fieldsPrimary = null; + + + + /* Try to find the properties first if this is set. */ + fieldsFallbacks = Reflection.getAllAccessorFields(clazz, true); + fieldsFallbacks = removeNonSerializable(fieldsFallbacks); + + fieldsPrimary = Reflection.getPropertyFieldAccessors(clazz); + fieldsPrimary = removeNonSerializable(fieldsPrimary); + + /* Add missing fields */ + combineFieldMaps(fieldsFallbacks, fieldsPrimary); + + combinedFields = fieldsPrimary; + putCombinedFieldsPropertyFirstForSerializer(clazz, combinedFields); + return combinedFields; + } + } + + private static Map removeNonSerializable(Map fieldAccessMap) { + + LinkedHashMap map = new LinkedHashMap<>(fieldAccessMap); + final List set = new ArrayList(fieldAccessMap.keySet()); + for (String key : set) { + final FieldAccess fieldAccess = fieldAccessMap.get(key); + if (fieldAccess.isStatic() || fieldAccess.ignore() ) { + map.remove(key); + } + } + return map; + } + + @SuppressWarnings ( "serial" ) + public static class ReflectionException extends RuntimeException { + + public ReflectionException() { + super(); + } + + public ReflectionException( String message, Throwable cause ) { + super( message, cause ); + } + + public ReflectionException( String message ) { + super( message ); + } + + public ReflectionException( Throwable cause ) { + super( cause ); + } + } + + + private static void handle( Exception ex ) { + throw new ReflectionException( ex ); + } + + + + + + public static Class loadClass( String className ) { + + try { + Class clazz = Class.forName( className ); + + + return clazz; + + + } catch ( Exception ex ) { + log.info( String.format( "Unable to create load class %s", className ) ); + return null; + } + } + public static Object newInstance( String className ) { + + try { + Class clazz = Class.forName( className ); + + + return newInstance( clazz ); + + + } catch ( Exception ex ) { + log.info( String.format( "Unable to create this class %s", className ) ); + return null; + } + } + + public static T newInstance( Class clazz ) { + T newInstance = null; + ClassMeta cls = ClassMeta.classMeta(clazz); + + try { + /* See if there is a no arg constructor. */ + ConstructorAccess declaredConstructor = cls.noArgConstructor(); + if (declaredConstructor !=null ) { + /* If there was a no argument constructor, then use it. */ + newInstance = declaredConstructor.create(); + } else { + if ( _useUnsafe ) { + newInstance = ( T ) getUnsafe().allocateInstance( clazz ); + } else { + die ( sputs( clazz.getName (), "does not have a no arg constructor and unsafe is not turned on" ) ); + } + + } + } catch ( Exception ex ) { + try { + if ( _useUnsafe ) { + newInstance = ( T ) getUnsafe().allocateInstance( clazz ); + return newInstance; //we handled it. + } + } catch ( Exception ex2 ) { + handle( ex2 ); + } + + handle( ex ); + } + + return newInstance; + + } + + public static T newInstance( Class clazz, Object arg ) { + T newInstance = null; + + + ClassMeta cls = ClassMeta.classMeta(clazz); + try { + /* See if there is a no arg constructor. */ + ConstructorAccess declaredConstructor = cls.declaredConstructor(arg.getClass()); + if (declaredConstructor !=null ) { + /* If there was a no argument constructor, then use it. */ + newInstance = declaredConstructor.create(arg); + } + } catch ( Exception ex ) { + handle( ex ); + } + return newInstance; + } + + public static Class getComponentType( Collection collection, FieldAccess fieldAccess ) { + Class clz = fieldAccess.getComponentClass(); + if ( clz == null ) { + clz = getComponentType( collection ); + } + return clz; + + } + + public static Class getComponentType( Collection value ) { + if ( value.size() > 0 ) { + Object next = value.iterator().next(); + return next.getClass(); + } else { + return Typ.object; + } + } + + private static class FieldConverter implements Function { + + boolean thisUseUnsafe; + + FieldConverter( boolean useUnsafe ) { + this.thisUseUnsafe = useUnsafe; + } + + @Override + public FieldAccess apply( Field from ) { + if ( useUnsafe && thisUseUnsafe ) { + return UnsafeField.createUnsafeField( from ); + } else { + return new ReflectField( from ); + } + } + } + + public static Map getAllAccessorFields( + Class theClass ) { + return getAllAccessorFields( theClass, true ); + } + + public static Map getAllAccessorFields( + Class theClass, boolean useUnsafe ) { + Map map = getAccessorFieldsFromCache(theClass, useUnsafe); + if ( map == null ) { + List list = Lists.mapBy( getAllFields( theClass ), new FieldConverter( useUnsafe ) ); + map = new LinkedHashMap<>( list.size() ); + for ( FieldAccess fieldAccess : list ) { + map.put( fieldAccess.name(), fieldAccess ); + } + setAccessorFieldInCache( theClass, useUnsafe, map ); + } + return map; + } + + + public static List getAllFields( Class theClass ) { + + try { + List list = getFields( theClass ); + while ( theClass != Typ.object ) { + + theClass = theClass.getSuperclass(); + getFields( theClass, list ); + } + return list; + } catch (Exception ex) { + return Exceptions.handle(List.class, ex, "getAllFields the class", theClass); + } + } + + + public static Map getPropertyFieldAccessors( + Class theClass ) { + + + Map fields = getPropertyAccessorFieldsFromCache( theClass ); + if ( fields == null ) { + Map> methods = getPropertySetterGetterMethods( theClass ); + + fields = new LinkedHashMap<>(); + + for ( Map.Entry> entry : + methods.entrySet() ) { + + final Pair methodPair = entry.getValue(); + final String key = entry.getKey(); + + PropertyField pf = new PropertyField( key, methodPair.getFirst(), methodPair.getSecond() ); + + fields.put( pf.alias(), pf ); + + } + + setPropertyAccessorFieldsInCache( theClass, fields ); + } + + + return fields; + } + + public static Map> getPropertySetterGetterMethods( + Class theClass ) { + + try { + Method[] methods = theClass.getMethods(); + + Map> methodMap = new LinkedHashMap<>( methods.length ); + List getterMethodList = new ArrayList<>( methods.length ); + + for ( int index = 0; index < methods.length; index++ ) { + Method method = methods[ index ]; + if (extractPropertyInfoFromMethodPair(methodMap, getterMethodList, method)) continue; + } + + for ( Method method : getterMethodList ) { + extractProperty(methodMap, method); + + } + return methodMap; + } catch (Exception ex) { + ex.printStackTrace(); + return Exceptions.handle(Map.class, ex, theClass); + } + } + + private static boolean extractPropertyInfoFromMethodPair(Map> methodMap, + List getterMethodList, + Method method) { + String name = method.getName(); + + try { + + if ( method.getParameterTypes().length == 1 + && name.startsWith( "set" ) ) { + Pair pair = new Pair<>(); + pair.setFirst( method ); + String propertyName = slc( name, 3 ); + + propertyName = lower( slc( propertyName, 0, 1 ) ) + slc( propertyName, 1 ); + methodMap.put( propertyName, pair ); + } + + if ( method.getParameterTypes().length > 0 + || method.getReturnType() == void.class + || !( name.startsWith( "get" ) || name.startsWith( "is" ) ) + || name.equals( "getClass" ) || name.equals("get") || name.equals("is") ) { + return true; + } + getterMethodList.add( method ); + return false; + + } catch (Exception ex) { + return Exceptions.handle(Boolean.class, ex, name, method); + } + } + + private static void extractProperty(Map> methodMap, + Method method) { + try { + String name = method.getName(); + String propertyName = null; + if ( name.startsWith( "is" ) ) { + propertyName = name.substring( 2 ); + } else if ( name.startsWith( "get" ) ) { + propertyName = name.substring( 3 ); + } + + propertyName = lower( propertyName.substring( 0, 1 ) ) + propertyName.substring( 1 ); + + Pair pair = methodMap.get( propertyName ); + if ( pair == null ) { + pair = new Pair<>(); + methodMap.put( propertyName, pair ); + } + pair.setSecond(method); + + } catch (Exception ex) { + Exceptions.handle(ex, "extractProperty property extract of getPropertySetterGetterMethods", method); + } + } + + public static void getFields( Class theClass, + List list ) { + + try { + List more = getFields( theClass ); + list.addAll( more ); + + }catch (Exception ex) { + Exceptions.handle(ex, "getFields", theClass, list); + } + } + + + public static boolean respondsTo( Class type, String methodName) { + return ClassMeta.classMeta(type).respondsTo(methodName); + } + + public static boolean respondsTo( Class type, String methodName, Class... params) { + return ClassMeta.classMeta(type).respondsTo(methodName, params); + } + + + public static boolean respondsTo( Class type, String methodName, Object... params) { + return ClassMeta.classMeta(type).respondsTo(methodName, params); + } + + + public static boolean respondsTo( Class type, String methodName, List params) { + return ClassMeta.classMeta(type).respondsTo(methodName, params); + } + + + public static boolean respondsTo( Object object, String methodName) { + if (object == null || methodName == null) { + return false; + } + return ClassMeta.classMeta(object.getClass()).respondsTo(methodName); + } + + public static boolean respondsTo( Object object, String methodName, Class... params) { + return ClassMeta.classMeta(object.getClass()).respondsTo(methodName, params); + } + + + public static boolean respondsTo( Object object, String methodName, Object... params) { + return ClassMeta.classMeta(object.getClass()).respondsTo(methodName, params); + } + + + public static boolean respondsTo( Object object, String methodName, List params) { + return ClassMeta.classMeta(object.getClass()).respondsTo(methodName, params); + } + + + public static boolean handles( Object object, Class interfaceCls) { + return ClassMeta.classMeta(object.getClass()).handles(interfaceCls); + } + + + public static boolean handles( Class cls, Class interfaceCls) { + return ClassMeta.classMeta(cls).handles(interfaceCls); + } + + + public static Object invoke (Object object, String name, Object... args){ + return ClassMeta.classMeta( object.getClass() ).invokeUntyped(object, name, args ); + } + + + public static Object invoke (Object object, String name, List args){ + return ClassMeta.classMeta( object.getClass() ).invokeUntyped(object, name, args.toArray(new Object[args.size()])); + } +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/BaseField.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/BaseField.java new file mode 100644 index 0000000..4955f39 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/BaseField.java @@ -0,0 +1,844 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.reflection.fields; + +import org.boon.Exceptions; +import org.boon.Sets; +import org.boon.Str; +import org.boon.core.Conversions; +import org.boon.core.TypeType; +import org.boon.core.Value; +import org.boon.core.reflection.AnnotationData; +import org.boon.core.reflection.Annotations; +import org.boon.core.value.ValueContainer; + +import java.lang.reflect.*; +import java.math.BigDecimal; +import java.math.BigInteger; +import java.util.*; +import java.util.concurrent.ConcurrentHashMap; + +import static org.boon.Boon.sputs; +import static org.boon.Exceptions.die; +import static org.boon.core.Conversions.*; + +public abstract class BaseField implements FieldAccess { + + private static final int PRIMITIVE = 0; + private static final int FINAL = 1; + private static final int STATIC = 2; + private static final int VOLATILE = 3; + private static final int QUALIFIED = 4; + private static final int READ_ONLY = 5; + private static final int INCLUDE = 6; + private static final int IGNORE = 7; + private static final int WRITE_ONLY = 8; + private static final int HAS_INJECT = 9; + private static final int NAMED = 10; + + private static final int REQUIRES_INJECTION = 11; + + protected final BitSet bits = new BitSet ( ); + protected final Class type; + protected final Class parentType; + protected final String name; + protected final ParameterizedType parameterizedType; + protected final Class componentClass; + protected final String typeName; + public final TypeType typeEnum; + private final TypeType componentType; + private Map> annotationMap = new ConcurrentHashMap<> ( ); + private HashSet includedViews; + private HashSet ignoreWithViews; + private final String alias; + private static Set annotationsThatHaveAliases = Sets.set("JsonProperty","SerializedName", "Named", "id", "In", "Qualifier" ); + + + + private void initAnnotationData(Class clazz ) { + + final Collection annotationDataForFieldAndProperty = + Annotations.getAnnotationDataForFieldAndProperty ( clazz, name, Collections.EMPTY_SET ); + + for (AnnotationData data : annotationDataForFieldAndProperty) { + annotationMap.put ( data.getSimpleClassName (), data.getValues () ); + annotationMap.put ( data.getFullClassName (), data.getValues () ); + } + + + if (hasAnnotation ( "JsonViews" )) { + final Map jsonViews = getAnnotationData ( "JsonViews" ); + final String[] includeWithViews = (String[]) jsonViews.get ( "includeWithViews" ); + final String[] ignoreWithViews = (String[]) jsonViews.get ( "ignoreWithViews" ); + + + if (includeWithViews!=null) { + this.includedViews = new HashSet<>( ); + for (String view : includeWithViews) { + this.includedViews.add( view ); + } + } + + + if (ignoreWithViews!=null) { + this.ignoreWithViews = new HashSet<>( ); + for (String view : ignoreWithViews) { + this.ignoreWithViews.add( view ); + } + } + } + + + if (hasAnnotation ( "JsonIgnore" )) { + final Map jsonIgnore = getAnnotationData ( "JsonIgnore" ); + boolean ignore = (Boolean) jsonIgnore.get ( "value" ); + bits.set( IGNORE, ignore); + } + + if (hasAnnotation ( "JsonInclude" )) { + final Map jsonIgnore = getAnnotationData ( "JsonInclude" ); + String include = (String) jsonIgnore.get ( "value" ); + if ( include.equals ( "ALWAYS" ) ) { + bits.set( INCLUDE ); + } + } + + if (hasAnnotation ( "Expose" )) { + final Map jsonIgnore = getAnnotationData ( "Expose" ); + boolean serialize = (boolean) jsonIgnore.get ( "serialize" ); + bits.set( INCLUDE, serialize ); + bits.set( IGNORE, !serialize); + } + + if (hasAnnotation ( "Inject" ) || hasAnnotation( "Autowired" ) || hasAnnotation( "In" )) { + bits.set( HAS_INJECT ); + } + + if (hasAnnotation( "Autowired" )) { + final Map props = getAnnotationData ( "Autowired" ); + + boolean required = (boolean) props.get ( "required" ); + if (required) + bits.set( REQUIRES_INJECTION ); + + } + + if (hasAnnotation( "In" )) { + final Map props = getAnnotationData ( "In" ); + + boolean required = (boolean) props.get ( "required" ); + if (required) + bits.set( REQUIRES_INJECTION ); + + } + + if (hasAnnotation( "Required" )) { + bits.set( REQUIRES_INJECTION ); + } + + + + + + if (parentType!=null) { + final Map classAnnotations = + Annotations.getAnnotationDataForClassAsMap( parentType ); + + final AnnotationData jsonIgnoreProperties = classAnnotations.get( "JsonIgnoreProperties" ); + + if (jsonIgnoreProperties!=null) { + String[] props = (String [])jsonIgnoreProperties.getValues().get( "value" ); + if (props!=null) { + for (String prop : props) { + if (prop.equals ( name ) ) { + bits.set( IGNORE, true); + break; + } + } + } + } + + } + + + } + + private String findAlias() { + String alias = null; + for (String aliasAnnotation : annotationsThatHaveAliases) { + alias = getAlias(aliasAnnotation); + if (! Str.isEmpty(alias)) { + bits.set( NAMED ); + break; + } + } + + return Str.isEmpty( alias ) ? name : alias; + } + + + private String getAlias(String annotationName) { + + String alias = null; + if ( hasAnnotation ( annotationName )) { + + Map aliasD = getAnnotationData ( annotationName ); + alias = (String) aliasD.get ( "value" ); + } + + return alias; + } + + protected BaseField ( String name, Method getter, Method setter ) { + + try { + if (setter==null) { + bits.set(READ_ONLY); + + } else if (getter == null) { + bits.set( WRITE_ONLY ); + bits.set( IGNORE ); + } + + this.name = name.intern(); + + bits.set( VOLATILE, false); + bits.set( QUALIFIED, false); + + String alias; + + if ( getter != null ) { + bits.set(STATIC, Modifier.isStatic ( getter.getModifiers () )); + bits.set(FINAL, Modifier.isFinal ( getter.getModifiers () )); + + type = getter.getReturnType (); + parentType = getter.getDeclaringClass(); + bits.set( PRIMITIVE, type.isPrimitive ()); + typeName = type.getName().intern (); + Object obj = getter.getGenericReturnType (); + + if ( obj instanceof ParameterizedType ) { + + parameterizedType = ( ParameterizedType ) obj; + } else { + parameterizedType = null; + } + + + if (name.startsWith ( "$" )) { + this.typeEnum = TypeType.SYSTEM; + } else { + this.typeEnum = TypeType.getType(type); + } + + if ( this.typeEnum.isArray()) { + componentClass = this.type.getComponentType(); + componentType = TypeType.getType(componentClass); + } else if ( parameterizedType == null ) { + componentClass = Object.class; + componentType = TypeType.OBJECT; + } else { + Object obj2 = parameterizedType.getActualTypeArguments ()[ 0 ]; + if (obj2 instanceof Class) { + componentClass = ( Class ) parameterizedType.getActualTypeArguments ()[ 0 ]; + }else { + componentClass=Object.class; + } + + componentType = TypeType.getType(componentClass); + + } + + getter.setAccessible(true); + + initAnnotationData ( getter.getDeclaringClass () ); + + } else { + bits.set(STATIC, Modifier.isStatic ( setter.getModifiers () )); + bits.set(FINAL, Modifier.isFinal ( setter.getModifiers () )); + type = setter.getParameterTypes ()[ 0 ]; + + if (name.startsWith ( "$" )) { + this.typeEnum = TypeType.SYSTEM; + } else { + this.typeEnum = TypeType.getType(type); + } + bits.set( PRIMITIVE, type.isPrimitive ()); + typeName = type.getName ().intern (); + parameterizedType = null; + componentClass = Object.class; + componentType = TypeType.getType(componentClass); + + parentType = setter.getDeclaringClass(); + + initAnnotationData ( setter.getDeclaringClass () ); + + + } + + + alias = findAlias(); + + + + this.alias = alias != null ? alias : name; + + } catch ( Exception ex ) { + Exceptions.handle ( "name " + name + " setter " + setter + " getter " + getter, ex ); + throw new RuntimeException ( "die" ); + } + + + + } + + + protected BaseField ( Field field ) { + name = field.getName().intern (); + + bits.set(STATIC, Modifier.isStatic ( field.getModifiers () )); + bits.set(FINAL, Modifier.isFinal ( field.getModifiers () )); + bits.set(VOLATILE, Modifier.isVolatile ( field.getModifiers () )); + bits.set(QUALIFIED, bits.get(FINAL) || bits.get(VOLATILE)); + bits.set(READ_ONLY, bits.get(FINAL) ); + bits.set(IGNORE, Modifier.isTransient ( field.getModifiers () ) || Modifier.isStatic ( field.getModifiers () )); +// bits.set(IGNORE, Modifier.isStatic ( field.getModifiers () )); + + parentType = field.getDeclaringClass(); + + + type = field.getType (); + typeName = type.getName().intern (); + + bits.set(PRIMITIVE, type.isPrimitive ()); + + if ( field != null ) { + Object obj = field.getGenericType (); + + if ( obj instanceof ParameterizedType ) { + + parameterizedType = ( ParameterizedType ) obj; + } else { + parameterizedType = null; + } + + } else { + parameterizedType = null; + } + + + if (name.startsWith ( "$" )) { + this.typeEnum = TypeType.SYSTEM; + } else { + this.typeEnum = TypeType.getType(type); + } + + if ( this.typeEnum.isArray()) { + + componentClass = this.type.getComponentType(); + + } + else if ( parameterizedType == null ) { + componentClass = Object.class; + } else { + + + final Type[] actualTypeArguments = parameterizedType.getActualTypeArguments(); + + if (actualTypeArguments.length>0) { + + Object obj = parameterizedType.getActualTypeArguments()[0]; + if (obj instanceof Class) { + componentClass = (Class) parameterizedType.getActualTypeArguments()[0]; + } else { + componentClass = Object.class; + } + } else { + componentClass = Object.class; + } + + } + + componentType = TypeType.getType(componentClass); + + + + + initAnnotationData ( field.getDeclaringClass () ); + + alias = findAlias(); + + + + } + + + @Override + public final Object getValue ( Object obj ) { + + switch ( typeEnum ) { + case INT: + return this.getInt ( obj ); + case LONG: + return this.getLong ( obj ); + case BOOLEAN: + return this.getBoolean ( obj ); + case BYTE: + return this.getByte ( obj ); + case SHORT: + return this.getShort ( obj ); + case CHAR: + return this.getChar ( obj ); + case DOUBLE: + return this.getDouble ( obj ); + case FLOAT: + return this.getFloat ( obj ); + default: + return this.getObject ( obj ); + + } + } + + + @Override + public final void setValue ( Object obj, Object value ) { + + if (this.isPrimitive() && value == null) { + return; + } + + switch ( typeEnum ) { + case INT: + this.setInt ( obj, toInt ( value ) ); + return; + case LONG: + this.setLong ( obj, toLong ( value ) ); + return; + case BOOLEAN: + this.setBoolean ( obj, toBoolean ( value ) ); + return; + case BYTE: + this.setByte ( obj, toByte ( value ) ); + return; + case SHORT: + this.setShort ( obj, toShort ( value ) ); + return; + case CHAR: + this.setChar ( obj, toChar ( value ) ); + return; + case DOUBLE: + this.setDouble ( obj, toDouble ( value ) ); + return; + case FLOAT: + this.setFloat ( obj, toFloat ( value ) ); + return; + case DATE: + this.setObject ( obj, toDate ( value ) ); + return; + + case STRING: + if (value instanceof String) { + this.setObject ( obj, value ); + } else { + this.setObject ( obj, Conversions.toString (value) ); + } + return; + case ENUM: + if ( value.getClass () == this.type ) { + this.setObject ( obj, value ); + } else { + this.setObject ( obj, toEnum ( (Class) type, value ) ); + } + return; + case BIG_DECIMAL: + if ( value instanceof BigDecimal ) { + this.setObject ( obj, value ); + } else { + this.setObject ( obj, toBigDecimal ( value ) ); + } + return; + case NUMBER: + if ( value instanceof Number ) { + this.setObject ( obj, value ); + } else { + this.setObject ( obj, toDouble ( value ) ); + } + return; + + case BIG_INT: + if ( value instanceof BigInteger ) { + this.setObject ( obj, value ); + } else { + this.setObject ( obj, toBigInteger ( value ) ); + } + return; + case COLLECTION: + case LIST: + case SET: + this.setObject ( obj, Conversions.toCollection ( type, value ) ); + return; + case CURRENCY: + if ( value instanceof Currency ) { + this.setObject ( obj, value ); + } else { + this.setObject ( obj, toCurrency ( value ) ); + } + return; + + default: + if ( value == null ) { + this.setObject ( obj, null ); + return; + } + + if ( value.getClass () == this.type ) { + this.setObject ( obj, value ); + return; + } else if ( type.isInstance( value)) { + this.setObject ( obj, value ); + return; + } else { + + Object object = Conversions.coerce( typeEnum, type, value ); + + if (object == null) { + die("Unable to convert", value, "to", typeEnum, type); + return; + } + + if ( object.getClass () == this.type ) { + this.setObject ( obj, object ); + return; + } else if ( type.isInstance( object)) { + this.setObject ( obj, object ); + return; + } else if (object != null) { + die(sputs("Unable to set value into field after conversion was called", + this, "converted value", object, "original value", value, "field", this, + "converted object type", object.getClass() + )); + + + } + } + + } + + } + + + public final void setFromValue ( Object obj, Value value ) { + + + if (value == ValueContainer.NULL) { + this.setObject ( obj, null ); + return; + } + + + switch ( typeEnum ) { + case INT: + this.setInt ( obj, value.intValue() ); + return; + case LONG: + this.setLong ( obj, value.longValue () ); + return; + case BOOLEAN: + this.setBoolean ( obj, value.booleanValue () ); + return; + case BYTE: + this.setByte ( obj, value.byteValue () ); + return; + case SHORT: + this.setShort ( obj, value.shortValue () ); + return; + case CHAR: + this.setChar ( obj, value.charValue () ); + return; + case DOUBLE: + this.setDouble ( obj, value.doubleValue () ); + return; + case FLOAT: + this.setFloat ( obj, value.floatValue () ); + return; + case INTEGER_WRAPPER: + this.setObject ( obj, value.intValue () ); + return; + case LONG_WRAPPER: + this.setObject ( obj, value.longValue () ); + return; + case BOOLEAN_WRAPPER: + this.setObject ( obj, value.booleanValue () ); + return; + case BYTE_WRAPPER: + this.setObject ( obj, value.byteValue () ); + return; + case SHORT_WRAPPER: + this.setObject ( obj, value.shortValue () ); + return; + case CHAR_WRAPPER: + this.setObject ( obj, value.charValue () ); + return; + case DOUBLE_WRAPPER: + this.setObject ( obj, value.doubleValue () ); + return; + case FLOAT_WRAPPER: + this.setObject ( obj, value.floatValue () ); + return; + case STRING: + case CHAR_SEQUENCE: + this.setObject ( obj, value.stringValue() ); + return; + case BIG_DECIMAL: + this.setObject ( obj, value.bigDecimalValue () ); + return; + case BIG_INT: + this.setObject ( obj, value.bigIntegerValue () ); + return; + case DATE: + this.setObject ( obj, value.dateValue () ); + return; + + + + + case ENUM: + this.setObject ( obj, value.toEnum ( ( Class )type ) ); + return; + case CURRENCY: + this.setObject ( obj, value.currencyValue () ); + return; + default: + setValue(obj, value.toValue()); + } + + } + + + public final ParameterizedType getParameterizedType () { + + return parameterizedType; + + } + + + public final Class getComponentClass () { + return componentClass; + } + + + + protected void analyzeError( Exception e, Object obj ) { + Exceptions.handle( Str.lines ( + e.getClass ().getName (), + String.format ( "cause %s", e.getCause () ), + String.format ( "Field info name %s, type %s, class that declared field %s", this.name(), this.type(), this.getField ().getDeclaringClass () ), + String.format ( "TypeType of object passed %s", obj.getClass ().getName () ) + ), e ); + + } + + + + @Override + public final boolean hasAnnotation ( String annotationName ) { + return this.annotationMap.containsKey ( annotationName ); + } + + @Override + public final Map getAnnotationData ( String annotationName ) { + + return this.annotationMap.get ( annotationName ); + } + + + public final boolean isPrimitive() { + return bits.get ( PRIMITIVE ); + } + + + + + + + @Override + public final TypeType typeEnum () { + return this.typeEnum; + } + + + + @Override + public final boolean isFinal() { + return bits.get(FINAL); + } + + + @Override + public final boolean isStatic() { + + + return bits.get(STATIC); + } + + @Override + public final boolean isVolatile() { + return bits.get(VOLATILE); + } + + + @Override + public final boolean isQualified() { + return bits.get( QUALIFIED ); + } + + @Override + public final boolean isReadOnly() { + return bits.get(READ_ONLY); + } + + + @Override + public boolean isWriteOnly() { + return bits.get(WRITE_ONLY); + } + + + @Override + public final Class type() { + return type; + } + + @Override + public final String name() { + return name; + } + + + + @Override + public final String alias() { + return alias; + } + + @Override + public String toString() { + return "FieldInfo [name=" + name + + ", type=" + type + + ", parentType=" + parentType + + + "]"; + } + + + + + public final boolean isViewActive (String activeView) { + + if (this.includedViews == null && this.ignoreWithViews == null) { + return true; + } + if (this.includedViews!=null) { + if (this.includedViews.contains( activeView )) { + return true; + } else { + return false; + } + } + if (this.ignoreWithViews!=null) { + if (this.ignoreWithViews.contains( activeView )) { + return false; + } else { + return true; + } + } + return true; + } + + @Override + public final boolean include () { + return bits.get( INCLUDE ); + } + + @Override + public final boolean ignore () { + return bits.get( IGNORE ); + } + + + @Override + public boolean injectable() { + return bits.get( HAS_INJECT ); + } + + @Override + public boolean requiresInjection() { + + return bits.get( REQUIRES_INJECTION ); + } + + @Override + public boolean isNamed() { + + return bits.get( NAMED ); + } + + @Override + public boolean hasAlias() { + return bits.get( NAMED ); + } + + + + @Override + public String named() { + return this.alias; + } + + + + @Override + public Object parent() { + return this.parentType; + } + + + @Override + public Class declaringParent() { + return this.parentType; + } + + + @Override + public TypeType componentType() { + return this.componentType; + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/FieldAccess.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/FieldAccess.java new file mode 100644 index 0000000..b170416 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/FieldAccess.java @@ -0,0 +1,124 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.reflection.fields; + +import org.boon.core.TypeType; +import org.boon.core.Value; + +import java.lang.reflect.Field; +import java.lang.reflect.ParameterizedType; +import java.util.Map; + + +public interface FieldAccess { + boolean injectable(); + boolean requiresInjection(); + boolean isNamed(); + boolean hasAlias(); + + String alias(); + + String named(); + + String name(); + Object getValue( Object obj ); + + void setValue( Object obj, Object value ); + public void setFromValue( Object obj, Value value ); + + boolean getBoolean( Object obj ); + void setBoolean( Object obj, boolean value ); + + + int getInt( Object obj ); + void setInt( Object obj, int value ); + + + short getShort( Object obj ); + void setShort( Object obj, short value ); + + char getChar( Object obj ); + void setChar( Object obj, char value ); + + + long getLong( Object obj ); + void setLong( Object obj, long value ); + + + double getDouble( Object obj ); + void setDouble( Object obj, double value ); + + + float getFloat( Object obj ); + void setFloat( Object obj, float value ); + + + byte getByte( Object obj ); + void setByte( Object obj, byte value ); + + Object getObject( Object obj ); + void setObject( Object obj, Object value ); + + + TypeType typeEnum(); + + + boolean isPrimitive(); + + boolean isFinal(); + boolean isStatic(); + boolean isVolatile(); + boolean isQualified(); + boolean isReadOnly(); + boolean isWriteOnly(); + + Class type(); + + + Class declaringParent(); + + Object parent(); + Field getField(); + + + + boolean include(); + boolean ignore(); + + ParameterizedType getParameterizedType(); + Class getComponentClass(); + boolean hasAnnotation(String annotationName) ; + Map getAnnotationData(String annotationName) ; + boolean isViewActive (String activeView); + + + void setStaticValue(Object newValue); + + TypeType componentType(); +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/FieldAccessMode.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/FieldAccessMode.java new file mode 100644 index 0000000..390b902 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/FieldAccessMode.java @@ -0,0 +1,76 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.reflection.fields; + + +public enum FieldAccessMode { + PROPERTY, + FIELD, + FIELD_THEN_PROPERTY, + PROPERTY_THEN_FIELD; + + + public FieldsAccessor create(boolean useAlias) { + return FieldAccessMode.create (this, useAlias, false); + } + + public FieldsAccessor create(boolean useAlias, boolean caseInsensitive) { + return FieldAccessMode.create (this, useAlias, caseInsensitive); + } + + public static FieldsAccessor create(FieldAccessMode fieldAccessType, boolean useAlias) { + return FieldAccessMode.create (fieldAccessType, useAlias, false); + } + + public static FieldsAccessor create(FieldAccessMode fieldAccessType, boolean useAlias, boolean caseInsensitive) { + FieldsAccessor fieldsAccessor = null; + + switch ( fieldAccessType ) { + case FIELD: + fieldsAccessor = new FieldFieldsAccessor( useAlias, caseInsensitive); + break; + case PROPERTY: + fieldsAccessor = new PropertyFieldAccessor ( useAlias, caseInsensitive); + break; + case FIELD_THEN_PROPERTY: + fieldsAccessor = new FieldsAccessorFieldThenProp( useAlias, caseInsensitive); + break; + case PROPERTY_THEN_FIELD: + fieldsAccessor = new FieldsAccessorsPropertyThenField( useAlias, caseInsensitive); + break; + default: + fieldsAccessor = new FieldFieldsAccessor( useAlias, caseInsensitive); + + } + + return fieldsAccessor; + + + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/FieldFieldsAccessor.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/FieldFieldsAccessor.java new file mode 100644 index 0000000..7eb2870 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/FieldFieldsAccessor.java @@ -0,0 +1,126 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.reflection.fields; + +import org.boon.Maps; +import org.boon.core.reflection.Reflection; + +import java.util.LinkedHashMap; +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; + +/** + * Created by rick on 1/3/14. + */ +public class FieldFieldsAccessor implements FieldsAccessor { + + + private final Map, Map> fieldMap = new ConcurrentHashMap<> (); + + private final boolean useAlias; + private final boolean caseInsensitive; + + + public FieldFieldsAccessor(boolean useAlias) { + this(useAlias, false); + } + + public FieldFieldsAccessor(boolean useAlias, boolean caseInsensitive) { + this.useAlias = useAlias; + this.caseInsensitive = caseInsensitive; + } + + + + public final Map getFields ( Class aClass ) { + Map map = fieldMap.get ( aClass ); + if ( map == null ) { + map = doGetFields ( aClass ); + fieldMap.put ( aClass, map ); + } + return map; + } + + + + @Override + public boolean isCaseInsensitive() { + return caseInsensitive; + } + + + private final Map doGetFields ( Class aClass ) { + + Map fieldAccessMap = Reflection.getAllAccessorFields ( aClass, true ); + + Map mapOld = fieldAccessMap; + fieldAccessMap = new LinkedHashMap<>(); + for (Map.Entry entry : mapOld.entrySet()) { + if (entry.getValue().isStatic()) { + continue; + } + fieldAccessMap.put(entry.getKey(), entry.getValue()); + } + + if (caseInsensitive) { + mapOld = fieldAccessMap; + fieldAccessMap = new LinkedHashMap<>(); + for (Map.Entry entry : mapOld.entrySet()) { + if (entry.getValue().isStatic()) { + continue; + } + fieldAccessMap.put(entry.getKey().toLowerCase(), entry.getValue()); + + fieldAccessMap.put(entry.getKey(), entry.getValue()); + + fieldAccessMap.put(entry.getKey().toUpperCase(), entry.getValue()); + } + } + + if ( useAlias ) { + Map fieldAccessMap2 = new LinkedHashMap<> ( fieldAccessMap.size () ); + + for (FieldAccess fa : fieldAccessMap.values ()) { + if (fa.isStatic()) { + continue; + } + String alias = fa.alias(); + if (caseInsensitive) { + alias = alias.toLowerCase(); + } + fieldAccessMap2.put (alias, fa ); + } + return fieldAccessMap2; + } else { + return fieldAccessMap; + } + + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/FieldsAccessor.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/FieldsAccessor.java new file mode 100644 index 0000000..11fa876 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/FieldsAccessor.java @@ -0,0 +1,41 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.reflection.fields; + + +import java.util.Map; + +/** + * Created by rick on 1/1/14. + */ +public interface FieldsAccessor { + Map getFields ( Class aClass ); + + boolean isCaseInsensitive(); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/FieldsAccessorFieldThenProp.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/FieldsAccessorFieldThenProp.java new file mode 100644 index 0000000..97094d9 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/FieldsAccessorFieldThenProp.java @@ -0,0 +1,121 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.reflection.fields; + +import org.boon.core.reflection.Reflection; + +import java.util.LinkedHashMap; +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; + +public class FieldsAccessorFieldThenProp implements FieldsAccessor { + + private final Map , Map> fieldMap = new ConcurrentHashMap<> ( ); + + + private final boolean useAlias; + private final boolean caseInsensitive; + + + public FieldsAccessorFieldThenProp(boolean useAlias) { + this(useAlias, false); + } + + public FieldsAccessorFieldThenProp(boolean useAlias, boolean caseInsensitive) { + this.useAlias = useAlias; + this.caseInsensitive = caseInsensitive; + } + + + public final Map getFields ( Class aClass ) { + Map map = fieldMap.get( aClass ); + if (map == null) { + map = doGetFields ( aClass ); + fieldMap.put ( aClass, map ); + } + return map; + } + + @Override + public boolean isCaseInsensitive() { + return caseInsensitive; + } + + private final Map doGetFields ( Class aClass ) { + Map fieldAccessMap = Reflection.getPropertyFieldAccessMapFieldFirstForSerializer ( aClass ); + + + Map mapOld = fieldAccessMap; + fieldAccessMap = new LinkedHashMap<>(); + for (Map.Entry entry : mapOld.entrySet()) { + if (entry.getValue().isStatic()) { + continue; + } + fieldAccessMap.put(entry.getKey(), entry.getValue()); + } + + if (caseInsensitive) { + mapOld = fieldAccessMap; + fieldAccessMap = new LinkedHashMap<>(); + for (Map.Entry entry : mapOld.entrySet()) { + if (entry.getValue().isStatic()) { + continue; + } + fieldAccessMap.put(entry.getKey().toLowerCase(), entry.getValue()); + + fieldAccessMap.put(entry.getKey().toUpperCase(), entry.getValue()); + + fieldAccessMap.put(entry.getKey(), entry.getValue()); + } + } + + if ( useAlias ) { + Map fieldAccessMap2 = new LinkedHashMap<> ( fieldAccessMap.size () ); + + for (FieldAccess fa : fieldAccessMap.values ()) { + if (fa.isStatic()) { + continue; + } + String alias = fa.alias(); + if (caseInsensitive) { + alias = alias.toLowerCase(); + } + fieldAccessMap2.put (alias, fa ); + } + return fieldAccessMap2; + } else { + return fieldAccessMap; + } + + } + + + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/FieldsAccessorsPropertyThenField.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/FieldsAccessorsPropertyThenField.java new file mode 100644 index 0000000..93bf88f --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/FieldsAccessorsPropertyThenField.java @@ -0,0 +1,117 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.reflection.fields; + +import org.boon.core.reflection.Reflection; + +import java.util.LinkedHashMap; +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; + +public class FieldsAccessorsPropertyThenField implements FieldsAccessor { + + private final Map , Map> fieldMap = new ConcurrentHashMap<> ( ); + private final boolean useAlias; + private final boolean caseInsensitive; + + public FieldsAccessorsPropertyThenField(boolean useAlias) { + this(useAlias, false); + } + + public FieldsAccessorsPropertyThenField(boolean useAlias, boolean caseInsensitive) { + this.useAlias = useAlias; + this.caseInsensitive = caseInsensitive; + } + + public final Map getFields ( Class aClass ) { + Map map = fieldMap.get( aClass ); + if (map == null) { + map = doGetFields ( aClass ); + fieldMap.put ( aClass, map ); + } + return map; + } + + @Override + public boolean isCaseInsensitive() { + return caseInsensitive; + } + + + private final Map doGetFields ( Class aClass ) { + Map fieldAccessMap = Reflection.getPropertyFieldAccessMapPropertyFirstForSerializer( aClass ); + + + Map mapOld = fieldAccessMap; + fieldAccessMap = new LinkedHashMap<>(); + for (Map.Entry entry : mapOld.entrySet()) { + if (entry.getValue().isStatic()) { + continue; + } + fieldAccessMap.put(entry.getKey(), entry.getValue()); + } + + if (caseInsensitive) { + mapOld = fieldAccessMap; + fieldAccessMap = new LinkedHashMap<>(); + for (Map.Entry entry : mapOld.entrySet()) { + if (entry.getValue().isStatic()) { + continue; + } + + fieldAccessMap.put(entry.getKey().toLowerCase(), entry.getValue()); + + fieldAccessMap.put(entry.getKey().toUpperCase(), entry.getValue()); + + fieldAccessMap.put(entry.getKey(), entry.getValue()); + } + } + + if ( useAlias ) { + Map fieldAccessMap2 = new LinkedHashMap<> ( fieldAccessMap.size () ); + + for (FieldAccess fa : fieldAccessMap.values ()) { + if (fa.isStatic()) { + continue; + } + String alias = fa.alias(); + if (caseInsensitive) { + alias = alias.toLowerCase(); + } + fieldAccessMap2.put (alias, fa ); + } + return fieldAccessMap2; + } else { + return fieldAccessMap; + } + + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/MapField.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/MapField.java new file mode 100644 index 0000000..88d8976 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/MapField.java @@ -0,0 +1,387 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.reflection.fields; + +import org.boon.core.Conversions; +import org.boon.core.TypeType; +import org.boon.core.Value; + +import java.lang.reflect.Field; +import java.lang.reflect.ParameterizedType; +import java.util.Collections; +import java.util.Map; + +import static org.boon.Exceptions.die; + +public class MapField implements FieldAccess { + + private final String name; + + public MapField( String name ) { + this.name = name; + } + + @Override + public boolean injectable() { + return false; + } + + @Override + public boolean requiresInjection() { + return false; + } + + @Override + public boolean isNamed() { + return false; + } + + @Override + public boolean hasAlias() { + return false; + } + + @Override + public String alias() { + return name; + } + + @Override + public String named() { + return alias(); + } + + @Override + public final String name() { + return name; + } + + @Override + public final Object getValue( Object obj ) { + if ( obj instanceof Map ) { + Map map = ( Map ) obj; + return map.get( name ); + } + return die( Object.class, "Object must be a map but was a " + obj.getClass().getName() ); + } + + @Override + public final void setValue( Object obj, Object value ) { + if ( obj instanceof Map ) { + Map map = ( Map ) obj; + map.put( name, value ); + return; + } + die( "Object must be a map" ); + } + + @Override + public final void setFromValue( Object obj, Value value ) { + setValue( obj, value.toValue() ); + } + + @Override + public final boolean getBoolean( Object obj ) { + if ( obj instanceof Map ) { + Map map = ( Map ) obj; + return Conversions.toBoolean( map.get( name ) ); + } + return die( Boolean.class, "Object must be a map" ); + } + + @Override + public final void setBoolean( Object obj, boolean value ) { + if ( obj instanceof Map ) { + Map map = ( Map ) obj; + map.put( name, value ); + } + die( "Object must be a map" ); + } + + @Override + public final int getInt( Object obj ) { + if ( obj instanceof Map ) { + Map map = ( Map ) obj; + return Conversions.toInt( map.get( name ) ); + } + die( "Object must be a map" ); + return -1; + } + + @Override + public final void setInt( Object obj, int value ) { + if ( obj instanceof Map ) { + Map map = ( Map ) obj; + map.put( name, value ); + } + die( "Object must be a map" ); + } + + @Override + public final short getShort( Object obj ) { + if ( obj instanceof Map ) { + Map map = ( Map ) obj; + return Conversions.toShort( map.get( name ) ); + } + die( "Object must be a map" ); + return -1; + } + + @Override + public final void setShort( Object obj, short value ) { + if ( obj instanceof Map ) { + Map map = ( Map ) obj; + map.put( name, value ); + } + die( "Object must be a map" ); + } + + @Override + public final char getChar( Object obj ) { + if ( obj instanceof Map ) { + Map map = ( Map ) obj; + return Conversions.toChar( map.get( name ) ); + } + die( "Object must be a map" ); + return 0; + } + + @Override + public final void setChar( Object obj, char value ) { + if ( obj instanceof Map ) { + Map map = ( Map ) obj; + map.put( name, value ); + } + die( "Object must be a map" ); + } + + @Override + public final long getLong( Object obj ) { + if ( obj instanceof Map ) { + Map map = ( Map ) obj; + return Conversions.toLong( map.get( name ) ); + } + die( "Object must be a map" ); + return -1; + } + + @Override + public final void setLong( Object obj, long value ) { + if ( obj instanceof Map ) { + Map map = ( Map ) obj; + map.put( name, value ); + } + die( "Object must be a map" ); + } + + @Override + public final double getDouble( Object obj ) { + if ( obj instanceof Map ) { + Map map = ( Map ) obj; + return Conversions.toDouble( map.get( name ) ); + } + die( "Object must be a map" ); + return Double.NaN; + } + + @Override + public final void setDouble( Object obj, double value ) { + if ( obj instanceof Map ) { + Map map = ( Map ) obj; + map.put( name, value ); + } + die( "Object must be a map" ); + } + + @Override + public final float getFloat( Object obj ) { + if ( obj instanceof Map ) { + Map map = ( Map ) obj; + return Conversions.toFloat( map.get( name ) ); + } + die( "Object must be a map" ); + return Float.NaN; + } + + @Override + public final void setFloat( Object obj, float value ) { + if ( obj instanceof Map ) { + Map map = ( Map ) obj; + map.put( name, value ); + } + die( "Object must be a map" ); + } + + @Override + public final byte getByte( Object obj ) { + if ( obj instanceof Map ) { + Map map = ( Map ) obj; + return Conversions.toByte( map.get( name ) ); + } + die( "Object must be a map" ); + return Byte.MAX_VALUE; + } + + @Override + public final void setByte( Object obj, byte value ) { + if ( obj instanceof Map ) { + Map map = ( Map ) obj; + map.put( name, value ); + } + die( "Object must be a map" ); + + } + + @Override + public final Object getObject( Object obj ) { + if ( obj instanceof Map ) { + Map map = ( Map ) obj; + return map.get( name ); + } + die( "Object must be a map" ); + return -1; + } + + @Override + public final void setObject( Object obj, Object value ) { + if ( obj instanceof Map ) { + Map map = ( Map ) obj; + map.put( name, value ); + } + die( "Object must be a map" ); + } + + @Override + public final TypeType typeEnum () { + return TypeType.OBJECT; + } + + + @Override + public final boolean isPrimitive () { + return false; + } + + + @Override + public final Field getField() { + return die( Field.class, "Unsupported operation" ); + + } + + @Override + public final boolean include () { + return false; + } + + @Override + public final boolean ignore () { + return false; + } + + @Override + public final ParameterizedType getParameterizedType() { + return null; + } + + @Override + public final Class getComponentClass() { + return null; + } + + @Override + public final boolean hasAnnotation ( String annotationName ) { + return false; + } + + @Override + public final Map getAnnotationData ( String annotationName ) { + return Collections.EMPTY_MAP; + } + + @Override + public boolean isViewActive( String activeView ) { + return true; + } + + @Override + public void setStaticValue(Object newValue) { + + } + + @Override + public TypeType componentType() { + return null; + } + + @Override + public final boolean isFinal() { + return false; + } + + @Override + public final boolean isStatic() { + return false; + } + + @Override + public final boolean isVolatile() { + return false; + } + + @Override + public final boolean isQualified() { + return false; + } + + @Override + public final boolean isReadOnly() { + return false; + } + + @Override + public boolean isWriteOnly() { + return false; + } + + @Override + public final Class type() { + return Object.class; + } + + @Override + public Class declaringParent() { + return null; + } + + @Override + public Object parent() { + return null; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/PropertyField.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/PropertyField.java new file mode 100644 index 0000000..2f1bd62 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/PropertyField.java @@ -0,0 +1,290 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.reflection.fields; + +import org.boon.Exceptions; + +import java.lang.reflect.Field; +import java.lang.reflect.Method; + +import static org.boon.Boon.sputs; + +public class PropertyField extends BaseField { + final Method getter; + final Method setter; + + + public PropertyField( String name, Method setter, Method getter ) { + + super ( name, getter, setter); + + this.getter = getter; + this.setter = setter; + + + +// MethodHandles.Lookup lookupWithDefault = MethodHandles.lookupWithDefault(); +// MethodType methodType +// = MethodType.methodType ( this.type ); +// MethodHandle methodHandle = null; +// CallSite callSiteMethod; +// +// if ( parentType != null && getter != null ) { +// try { +// methodHandle = lookupWithDefault.findVirtual ( this.parentType, getter.name (), methodType ); +// } catch ( NoSuchMethodException e ) { +// Exceptions.handle ( e ); +// } catch ( IllegalAccessException e ) { +// Exceptions.handle ( e ); +// } +// callSiteMethod = new ConstantCallSite(methodHandle); +// this.getter = callSiteMethod.dynamicInvoker(); +// +// } else { +// this.getter = null; +// } +// +// +// if ( parentType != null && setter != null ) { +// +// methodType +// = MethodType.methodType ( void.class, this.type() ); +// +// +// try { +// methodHandle = lookupWithDefault.findVirtual ( this.parentType, setter.name(), methodType ); +// } catch ( NoSuchMethodException e ) { +// Exceptions.handle ( e ); +// } catch ( IllegalAccessException e ) { +// Exceptions.handle ( e ); +// } +// +// callSiteMethod = new ConstantCallSite(methodHandle); +// this.setter = callSiteMethod.dynamicInvoker (); +// } else { +// this.setter = null; +// } + } + + @Override + public Object getObject( Object obj ) { + try { + return getter.invoke ( obj ); + } catch ( Throwable e ) { + return Exceptions.handle( Object.class, sputs( "unable to call getObject for property ", this.name, + "for class ", this.type ), e ); + } + } + + + + + @Override + public final void setObject( Object obj, Object value ) { + try { + if (!isReadOnly()) + setter.invoke ( obj, value ); + } catch ( Throwable e ) { + Exceptions.handle( String.format( "You tried to modify property %s of %s for instance %s " + + "with set %s using %s, and this property read only status is %s", + name, obj.getClass().getSimpleName(), obj, value, name(), isReadOnly () ), e ); + + } + + } + + + + public final boolean getBoolean( Object obj ) { + try { + return ( Boolean ) this.getObject ( obj ); + } catch ( Exception e ) { + return Exceptions.handle( boolean.class, sputs( "unable to call getObject for property", this.name ), e ); + } + + } + + @Override + public final int getInt( Object obj ) { + try { + return ( Integer ) this.getObject ( obj ); + } catch ( Exception e ) { + return Exceptions.handle( int.class, sputs( "unable to call getObject for property", this.name ), e ); + } + } + + @Override + public final short getShort( Object obj ) { + try { + return ( Short ) this.getObject ( obj ); + } catch ( Exception e ) { + return Exceptions.handle( short.class, sputs( "unable to call getObject for property", this.name ), e ); + } + } + + @Override + public final char getChar( Object obj ) { + try { + return ( Character ) this.getObject ( obj ); + } catch ( Exception e ) { + return Exceptions.handle( char.class, sputs( "unable to call getObject for property", this.name ), e ); + } + } + + @Override + public final long getLong( Object obj ) { + try { + return ( Long ) this.getObject ( obj ); + } catch ( Exception e ) { + throw new RuntimeException( e ); + } + } + + @Override + public final double getDouble( Object obj ) { + try { + return ( Double ) this.getObject ( obj ); + } catch ( Exception e ) { + throw new RuntimeException( e ); + } + + } + + @Override + public final float getFloat( Object obj ) { + try { + return ( Float ) this.getObject ( obj ); + } catch ( Exception e ) { + throw new RuntimeException( e ); + } + } + + @Override + public final byte getByte( Object obj ) { + try { + return ( Byte ) this.getObject ( obj ); + } catch ( Exception e ) { + throw new RuntimeException( e ); + } + } + + + @Override + public final Field getField() { + return null; + } + + @Override + public void setStaticValue(Object newValue) { + + } + + + @Override + public final void setBoolean( Object obj, boolean value ) { + try { + this.setObject( obj, value ); + } catch ( Exception e ) { + throw new RuntimeException( e ); + } + + } + + @Override + public final void setInt( Object obj, int value ) { + try { + this.setObject( obj, value ); + } catch ( Exception e ) { + throw new RuntimeException( e ); + } + + } + + @Override + public final void setShort( Object obj, short value ) { + try { + this.setObject( obj, value ); + } catch ( Exception e ) { + throw new RuntimeException( e ); + } + + } + + @Override + public final void setChar( Object obj, char value ) { + try { + this.setObject( obj, value ); + } catch ( Exception e ) { + throw new RuntimeException( e ); + } + + } + + @Override + public final void setLong( Object obj, long value ) { + try { + this.setObject( obj, value ); + } catch ( Exception e ) { + throw new RuntimeException( e ); + } + + } + + @Override + public final void setDouble( Object obj, double value ) { + try { + this.setObject( obj, value ); + } catch ( Exception e ) { + throw new RuntimeException( e ); + } + + } + + @Override + public final void setFloat( Object obj, float value ) { + try { + this.setObject( obj, value ); + } catch ( Exception e ) { + throw new RuntimeException( e ); + } + + } + + @Override + public final void setByte( Object obj, byte value ) { + try { + this.setObject ( obj, value ); + } catch ( Exception e ) { + throw new RuntimeException( e ); + + } + + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/PropertyFieldAccessor.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/PropertyFieldAccessor.java new file mode 100644 index 0000000..b8bca50 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/PropertyFieldAccessor.java @@ -0,0 +1,123 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.reflection.fields; + +import org.boon.core.reflection.Reflection; + +import java.util.LinkedHashMap; +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; + +/** + * Created by rick on 1/3/14. + */ +public class PropertyFieldAccessor implements FieldsAccessor { + + private final Map, Map> fieldMap = new ConcurrentHashMap<> (); + + + private final boolean useAlias; + private final boolean caseInsensitive; + + public PropertyFieldAccessor(boolean useAlias) { + this(useAlias, false); + } + + public PropertyFieldAccessor(boolean useAlias, boolean caseInsensitive) { + this.useAlias = useAlias; + this.caseInsensitive = caseInsensitive; + } + + + public final Map getFields ( Class aClass ) { + Map map = fieldMap.get ( aClass ); + if ( map == null ) { + map = doGetFields ( aClass ); + fieldMap.put ( aClass, map ); + } + return map; + } + + @Override + public boolean isCaseInsensitive() { + return caseInsensitive; + } + + + + private final Map doGetFields ( Class aClass ) { + Map fieldAccessMap =Reflection.getPropertyFieldAccessors ( aClass ); + + + Map mapOld = fieldAccessMap; + fieldAccessMap = new LinkedHashMap<>(); + for (Map.Entry entry : mapOld.entrySet()) { + if (entry.getValue().isStatic()) { + continue; + } + fieldAccessMap.put(entry.getKey(), entry.getValue()); + } + + if (caseInsensitive) { + mapOld = fieldAccessMap; + fieldAccessMap = new LinkedHashMap<>(); + for (Map.Entry entry : mapOld.entrySet()) { + if (entry.getValue().isStatic()) { + continue; + } + fieldAccessMap.put(entry.getKey().toLowerCase(), entry.getValue()); + + fieldAccessMap.put(entry.getKey().toUpperCase(), entry.getValue()); + + fieldAccessMap.put(entry.getKey(), entry.getValue()); + } + } + + if ( useAlias ) { + Map fieldAccessMap2 = new LinkedHashMap<> ( fieldAccessMap.size () ); + + for (FieldAccess fa : fieldAccessMap.values ()) { + if (fa.isStatic()) { + continue; + } + String alias = fa.alias(); + if(caseInsensitive) { + alias = alias.toLowerCase(); + } + fieldAccessMap2.put (alias, fa ); + } + return fieldAccessMap2; + } else { + return fieldAccessMap; + } + + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/ReflectField.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/ReflectField.java new file mode 100644 index 0000000..7378962 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/ReflectField.java @@ -0,0 +1,285 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.reflection.fields; + + + +import org.boon.Exceptions; + +import java.lang.reflect.Field; + + +public class ReflectField extends BaseField { + private final Field field; + + public ReflectField ( Field field ) { + super ( field ); + this.field = field; + } + + + + @Override + public Object getObject( Object obj ) { + try { + return field.get( obj ); + } catch ( Exception e ) { + e.printStackTrace(); + analyzeError( e, obj ); + return null; + } + } + + + public boolean getBoolean( Object obj ) { + try { + return field.getBoolean( obj ); + } catch ( Exception e ) { + analyzeError( e, obj ); + return false; + } + + } + + @Override + public int getInt( Object obj ) { + try { + return field.getInt( obj ); + } catch ( Exception e ) { + analyzeError( e, obj ); + return 0; + } + } + + @Override + public short getShort( Object obj ) { + try { + return field.getShort( obj ); + } catch ( Exception e ) { + analyzeError( e, obj ); + return 0; + } + } + + @Override + public char getChar( Object obj ) { + try { + return field.getChar( obj ); + } catch ( Exception e ) { + analyzeError( e, obj ); + return 0; + } + } + + @Override + public long getLong( Object obj ) { + try { + return field.getLong( obj ); + } catch ( Exception e ) { + analyzeError( e, obj ); + return 0; + } + } + + @Override + public double getDouble( Object obj ) { + try { + return field.getDouble( obj ); + } catch ( Exception e ) { + analyzeError( e, obj ); + return 0; + } + + } + + @Override + public float getFloat( Object obj ) { + try { + return field.getFloat( obj ); + } catch ( Exception e ) { + analyzeError( e, obj ); + return 0; + } + } + + @Override + public byte getByte( Object obj ) { + try { + return field.getByte( obj ); + } catch ( Exception e ) { + analyzeError( e, obj ); + return 0; + } + } + + + public boolean getStaticBoolean() { + return getBoolean( null ); + } + + public int getStaticInt() { + return getInt( null ); + + } + + public short getStaticShort() { + return getShort( null ); + } + + + public long getStaticLong() { + return getLong( null ); + } + + + public double getStaticDouble() { + return getDouble( null ); + } + + public float getStaticFloat() { + return getFloat( null ); + } + + public byte getStaticByte() { + return getByte( null ); + } + + public Object getObject() { + return getObject( null ); + } + + @Override + public final Field getField() { + return field; + } + + + @Override + public void setStaticValue(Object newValue) { + try { + field.set(null, newValue); + } catch (IllegalAccessException e) { + Exceptions.handle(e); + } + } + + + @Override + public void setBoolean( Object obj, boolean value ) { + try { + field.setBoolean( obj, value ); + } catch ( IllegalAccessException e ) { + analyzeError( e, obj ); + } + + } + + @Override + public void setInt( Object obj, int value ) { + try { + field.setInt( obj, value ); + } catch ( IllegalAccessException e ) { + analyzeError( e, obj ); + } + + } + + @Override + public void setShort( Object obj, short value ) { + try { + field.setShort( obj, value ); + } catch ( IllegalAccessException e ) { + analyzeError( e, obj ); + } + + } + + @Override + public void setChar( Object obj, char value ) { + try { + field.setChar( obj, value ); + } catch ( IllegalAccessException e ) { + analyzeError( e, obj ); + } + + } + + @Override + public void setLong( Object obj, long value ) { + try { + field.setLong( obj, value ); + } catch ( IllegalAccessException e ) { + analyzeError( e, obj ); + } + + } + + @Override + public void setDouble( Object obj, double value ) { + try { + field.setDouble( obj, value ); + } catch ( IllegalAccessException e ) { + analyzeError( e, obj ); + } + + } + + @Override + public void setFloat( Object obj, float value ) { + try { + field.setFloat( obj, value ); + } catch ( IllegalAccessException e ) { + analyzeError( e, obj ); + } + + } + + @Override + public void setByte( Object obj, byte value ) { + try { + field.setByte( obj, value ); + } catch ( IllegalAccessException e ) { + analyzeError( e, obj ); + } + + } + + @Override + public void setObject( Object obj, Object value ) { + try { + field.set( obj, value ); + } catch ( IllegalAccessException e ) { + analyzeError( e, obj ); + } + + } + + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/UnsafeField.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/UnsafeField.java new file mode 100644 index 0000000..a1d9e1a --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/fields/UnsafeField.java @@ -0,0 +1,626 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.reflection.fields; + +import org.boon.Exceptions; +import org.boon.core.Typ; +import sun.misc.Unsafe; + +import java.lang.reflect.Field; +import java.lang.reflect.Modifier; + +import static org.boon.Exceptions.die; + + +public abstract class UnsafeField extends BaseField { + + protected long offset; + protected final Object base; + + private final Field field; + + + protected UnsafeField ( Field field ) { + super(field); + if ( super.isStatic() ) { + base = unsafe.staticFieldBase( field ); + offset = unsafe.staticFieldOffset( field ); + } else { + offset = unsafe.objectFieldOffset( field ); + base = null; + } + this.field = field; + } + + + private static Unsafe getUnsafe() { + try { + Field f = Unsafe.class.getDeclaredField( "theUnsafe" ); + f.setAccessible( true ); + return ( Unsafe ) f.get( null ); + } catch ( Exception e ) { + return null; + } + } + + protected static final Unsafe unsafe = getUnsafe(); + + public static UnsafeField createUnsafeField( Field field ) { + Class type = field.getType(); + boolean isVolatile = Modifier.isVolatile( field.getModifiers() ); + if ( !isVolatile ) { + if ( type == Typ.intgr ) { + return new IntUnsafeField( field ); + } else if ( type == Typ.lng ) { + return new LongUnsafeField( field ); + } else if ( type == Typ.bt ) { + return new ByteUnsafeField( field ); + } else if ( type == Typ.shrt ) { + return new ShortUnsafeField( field ); + } else if ( type == Typ.chr ) { + return new CharUnsafeField( field ); + } else if ( type == Typ.dbl ) { + return new DoubleUnsafeField( field ); + } else if ( type == Typ.flt ) { + return new FloatUnsafeField( field ); + } else if ( type == Typ.bln ) { + return new BooleanUnsafeField( field ); + } else { + return new ObjectUnsafeField( field ); + } + } else { + if ( type == Typ.intgr ) { + return new VolatileIntUnsafeField( field ); + } else if ( type == Typ.lng ) { + return new VolatileLongUnsafeField( field ); + } else if ( type == Typ.bt ) { + return new VolatileByteUnsafeField( field ); + } else if ( type == Typ.shrt ) { + return new VolatileShortUnsafeField( field ); + } else if ( type == Typ.chr ) { + return new VolatileCharUnsafeField( field ); + } else if ( type == Typ.dbl ) { + return new VolatileDoubleUnsafeField( field ); + } else if ( type == Typ.flt ) { + return new VolatileFloatUnsafeField( field ); + } else if ( type == Typ.bln ) { + return new VolatileBooleanUnsafeField( field ); + } else { + return new ObjectUnsafeField( field ); + } + + } + } + + + @Override + public void setStaticValue(Object newValue) { + try { + field.set(null, newValue); + } catch (IllegalAccessException e) { + Exceptions.handle(e); + } + + } + + + + @Override + public int getInt( Object obj ) { + die( String.format( "Can't call this method on this type %s", this.type ) ); + return 0; + } + + @Override + public boolean getBoolean( Object obj ) { + die( String.format( "Can't call this method on this type %s", this.type ) ); + return false; + } + + + @Override + public short getShort( Object obj ) { + die( String.format( "Can't call this method on this type %s", this.type ) ); + return 0; + } + + + @Override + public char getChar( Object obj ) { + die( String.format( "Can't call this method on this type %s", this.type ) ); + return 0; + } + + + @Override + public long getLong( Object obj ) { + die( String.format( "Can't call this method on this type %s", this.type ) ); + return 0; + } + + + @Override + public double getDouble( Object obj ) { + die( String.format( "Can't call this method on this type %s", this.type ) ); + return 0; + } + + + @Override + public float getFloat( Object obj ) { + die( String.format( "Can't call this method on this type %s", this.type ) ); + return 0; + } + + + @Override + public byte getByte( Object obj ) { + die( String.format( "Can't call this method on this type %s", this.type ) ); + return 0; + } + + + @Override + public Object getObject( Object obj ) { + die( String.format( "Can't call this method on this type %s for field %s", this.type, this.name ) ); + return 0; + } + + + public boolean getStaticBoolean() { + return getBoolean( base ); + } + + + public int getStaticInt() { + return getInt( base ); + } + + + public short getStaticShort() { + return getShort( base ); + } + + + public long getStaticLong() { + return getLong( base ); + } + + public double getStaticDouble() { + return getDouble( base ); + } + + + public float getStaticFloat() { + return getFloat( base ); + } + + + public byte getStaticByte() { + return getByte( base ); + } + + + public Object getObject() { + return getObject( base ); + } + + + @Override + public Field getField() { + return field; + } + + + + public Object getBase() { + return base; + } + + + + + @Override + public void setBoolean( Object obj, boolean value ) { + + die( String.format( "Can't call this method on this type %s", this.type ) ); + + } + + + @Override + public void setInt( Object obj, int value ) { + die( String.format( "Can't call this method on this type %s", this.type ) ); + + } + + + @Override + public void setShort( Object obj, short value ) { + die( String.format( "Can't call this method on this type %s", this.type ) ); + + + } + + + @Override + public void setChar( Object obj, char value ) { + die( String.format( "Can't call this method on this type %s", this.type ) ); + + } + + + @Override + public void setLong( Object obj, long value ) { + die( String.format( "Can't call this method on this type %s", this.type ) ); + + } + + + @Override + public void setDouble( Object obj, double value ) { + die( String.format( "Can't call this method on this type %s", this.type ) ); + + } + + + @Override + public void setFloat( Object obj, float value ) { + die( String.format( "Can't call this method on this type %s", this.type ) ); + } + + + @Override + public void setByte( Object obj, byte value ) { + die( String.format( "Can't call this method on this type %s", this.type ) ); + } + + + @Override + public void setObject( Object obj, Object value ) { + die( String.format( "Can't call this method on this type %s name = %s value type = %s", this.type, this.name, + value == null ? "null" : value.getClass() ) ); + + } + + + + + private static final class IntUnsafeField extends UnsafeField { + + protected IntUnsafeField( Field f ) { + super( f ); + } + + @Override + public final void setInt( Object obj, int value ) { + unsafe.putInt( obj, offset, value ); + } + + + @Override + public final int getInt( Object obj ) { + return unsafe.getInt( obj, offset ); + } + } + + private static class LongUnsafeField extends UnsafeField { + + protected LongUnsafeField( Field f ) { + super( f ); + } + + @Override + public void setLong( Object obj, long value ) { + unsafe.putLong( obj, offset, value ); + } + + @Override + public long getLong( Object obj ) { + return unsafe.getLong( obj, offset ); + } + } + + private static class CharUnsafeField extends UnsafeField { + + protected CharUnsafeField( Field f ) { + super( f ); + } + + @Override + public void setChar( Object obj, char value ) { + unsafe.putChar( obj, offset, value ); + } + + @Override + public char getChar( Object obj ) { + return unsafe.getChar( obj, offset ); + } + } + + private static class ByteUnsafeField extends UnsafeField { + + protected ByteUnsafeField( Field f ) { + super( f ); + } + + @Override + public void setByte( Object obj, byte value ) { + unsafe.putByte( obj, offset, value ); + } + + @Override + public byte getByte( Object obj ) { + return unsafe.getByte( obj, offset ); + } + } + + private static class ShortUnsafeField extends UnsafeField { + + protected ShortUnsafeField( Field f ) { + super( f ); + } + + @Override + public void setShort( Object obj, short value ) { + unsafe.putShort( obj, offset, value ); + } + + @Override + public short getShort( Object obj ) { + return unsafe.getShort( obj, offset ); + } + } + + private static class ObjectUnsafeField extends UnsafeField { + + protected ObjectUnsafeField( Field f ) { + super( f ); + } + + @Override + public void setObject( Object obj, Object value ) { + unsafe.putObject( obj, offset, value ); + } + + @Override + public Object getObject( Object obj ) { + return unsafe.getObject( obj, offset ); + } + } + + private static class FloatUnsafeField extends UnsafeField { + + protected FloatUnsafeField( Field f ) { + super( f ); + } + + @Override + public void setFloat( Object obj, float value ) { + unsafe.putFloat( obj, offset, value ); + } + + @Override + public float getFloat( Object obj ) { + return unsafe.getFloat( obj, offset ); + } + } + + private static class DoubleUnsafeField extends UnsafeField { + + protected DoubleUnsafeField( Field f ) { + super( f ); + } + + @Override + public void setDouble( Object obj, double value ) { + unsafe.putDouble( obj, offset, value ); + } + + @Override + public double getDouble( Object obj ) { + return unsafe.getDouble( obj, offset ); + } + } + + + private static class BooleanUnsafeField extends UnsafeField { + + protected BooleanUnsafeField( Field f ) { + super( f ); + } + + @Override + public void setBoolean( Object obj, boolean value ) { + unsafe.putBoolean( obj, offset, value ); + } + + @Override + public boolean getBoolean( Object obj ) { + return unsafe.getBoolean( obj, offset ); + } + } + + + private static class VolatileIntUnsafeField extends UnsafeField { + + protected VolatileIntUnsafeField( Field f ) { + super( f ); + } + + @Override + public void setInt( Object obj, int value ) { + unsafe.putIntVolatile( obj, offset, value ); + } + + @Override + public int getInt( Object obj ) { + return unsafe.getIntVolatile( obj, offset ); + } + } + + + private static class VolatileBooleanUnsafeField extends UnsafeField { + + protected VolatileBooleanUnsafeField( Field f ) { + super( f ); + } + + @Override + public void setBoolean( Object obj, boolean value ) { + unsafe.putBooleanVolatile( obj, offset, value ); + } + + @Override + public boolean getBoolean( Object obj ) { + return unsafe.getBooleanVolatile( obj, offset ); + } + } + + private static class VolatileLongUnsafeField extends UnsafeField { + + protected VolatileLongUnsafeField( Field f ) { + super( f ); + } + + @Override + public void setLong( Object obj, long value ) { + unsafe.putLongVolatile( obj, offset, value ); + } + + @Override + public long getLong( Object obj ) { + return unsafe.getLongVolatile( obj, offset ); + } + } + + private static class VolatileCharUnsafeField extends UnsafeField { + + protected VolatileCharUnsafeField( Field f ) { + super( f ); + } + + @Override + public void setChar( Object obj, char value ) { + unsafe.putCharVolatile( obj, offset, value ); + } + + @Override + public char getChar( Object obj ) { + return unsafe.getCharVolatile( obj, offset ); + } + } + + private static class VolatileByteUnsafeField extends UnsafeField { + + protected VolatileByteUnsafeField( Field f ) { + super( f ); + } + + @Override + public void setByte( Object obj, byte value ) { + unsafe.putByteVolatile( obj, offset, value ); + } + + @Override + public byte getByte( Object obj ) { + return unsafe.getByteVolatile( obj, offset ); + } + } + + private static class VolatileShortUnsafeField extends UnsafeField { + + protected VolatileShortUnsafeField( Field f ) { + super( f ); + } + + @Override + public void setShort( Object obj, short value ) { + unsafe.putShortVolatile( obj, offset, value ); + } + + @Override + public short getShort( Object obj ) { + return unsafe.getShortVolatile( obj, offset ); + } + } + + private static class VolatileObjectUnsafeField extends UnsafeField { + + protected VolatileObjectUnsafeField( Field f ) { + super( f ); + } + + @Override + public void setObject( Object obj, Object value ) { + unsafe.putObjectVolatile( obj, offset, value ); + } + + @Override + public Object getObject( Object obj ) { + return unsafe.getObjectVolatile( obj, offset ); + } + } + + private static class VolatileFloatUnsafeField extends UnsafeField { + + protected VolatileFloatUnsafeField( Field f ) { + super( f ); + } + + @Override + public void setFloat( Object obj, float value ) { + unsafe.putFloatVolatile( obj, offset, value ); + } + + @Override + public float getFloat( Object obj ) { + return unsafe.getFloatVolatile( obj, offset ); + } + } + + private static class VolatileDoubleUnsafeField extends UnsafeField { + + protected VolatileDoubleUnsafeField( Field f ) { + super( f ); + } + + @Override + public void setDouble( Object obj, double value ) { + unsafe.putDoubleVolatile( obj, offset, value ); + } + + @Override + public double getDouble( Object obj ) { + return unsafe.getDoubleVolatile( obj, offset ); + } + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/impl/ConstructorAccessImpl.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/impl/ConstructorAccessImpl.java new file mode 100644 index 0000000..c19c181 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/impl/ConstructorAccessImpl.java @@ -0,0 +1,125 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.reflection.impl; + +import org.boon.core.reflection.AnnotationData; +import org.boon.core.reflection.Annotations; +import org.boon.core.reflection.ConstructorAccess; + +import java.lang.reflect.Constructor; +import java.lang.reflect.Type; +import java.util.Iterator; +import java.util.List; +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; + +import static org.boon.Exceptions.handle; + +/** + * Created by Richard on 2/20/14. + * @author Rick Hightower + */ +public class ConstructorAccessImpl implements ConstructorAccess { + + + final Constructor constructor; + final List annotationData; + final Map annotationMap; + + ConstructorAccessImpl() { + constructor =null; + annotationData=null; + annotationMap=null; + } + + public ConstructorAccessImpl( Constructor method ) { + this.constructor = method; + this.constructor.setAccessible(true); + this.annotationData = Annotations.getAnnotationDataForMethod(method); + + annotationMap = new ConcurrentHashMap<>( ); + for (AnnotationData data : annotationData) { + annotationMap.put( data.getName(), data ); + annotationMap.put( data.getSimpleClassName(), data ); + annotationMap.put( data.getFullClassName(), data ); + } + + } + + + @Override + public Iterable annotationData() { + return new Iterable() { + @Override + public Iterator iterator() { + return annotationData.iterator(); + } + }; + } + + @Override + public boolean hasAnnotation( String annotationName ) { + return this.annotationMap.containsKey( annotationName ); + } + + @Override + public AnnotationData annotation(String annotationName) { + return this.annotationMap.get(annotationName); + } + + @Override + public Class[] parameterTypes() { + return constructor.getParameterTypes(); + } + + @Override + public Type[] getGenericParameterTypes() { + return constructor.getGenericParameterTypes(); + } + + @Override + public T create(Object... args) { + try { + return constructor.newInstance( args ); + } catch ( Exception ex ) { + return handle(constructor.getDeclaringClass(), ex, + "\nunable to invoke constructor", constructor, + "\n on object ", constructor.getDeclaringClass(), + "\nwith arguments", args, + "\nparams", constructor.getParameterTypes()); + + } + + } + + @Override + public String toString() { + return constructor.toString(); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/impl/MethodAccessImpl.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/impl/MethodAccessImpl.java new file mode 100644 index 0000000..b63676e --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/impl/MethodAccessImpl.java @@ -0,0 +1,584 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.reflection.impl; + +import org.boon.Lists; +import org.boon.core.Conversions; +import org.boon.core.TypeType; +import org.boon.core.reflection.*; +import org.boon.primitive.Arry; + +import java.lang.invoke.ConstantCallSite; +import java.lang.invoke.MethodHandle; +import java.lang.invoke.MethodHandles; +import java.lang.invoke.MethodType; +import java.lang.reflect.Method; +import java.lang.reflect.Modifier; +import java.lang.reflect.Type; +import java.util.ArrayList; +import java.util.Iterator; +import java.util.List; +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; + +import static org.boon.Exceptions.die; +import static org.boon.Exceptions.handle; + +/** + * Created by Richard on 2/17/14. + */ +public class MethodAccessImpl implements MethodAccess { + + final public Method method; + final List annotationData; + + final List> annotationDataForParams; + final Map annotationMap; + + + final List paramTypeEnumList = new ArrayList<>(); + + + final MethodHandles.Lookup lookup = MethodHandles.lookup(); + MethodHandle methodHandle; + + Object instance; + private int score; + + public MethodAccessImpl() { + method=null; + annotationData=null; + annotationMap=null; + methodHandle = null; + this.annotationDataForParams = null; + } + + public List> annotationDataForParams() { + return annotationDataForParams; + } + + + public MethodAccessImpl( Method method ) { + this.method = method; + this.method.setAccessible( true ); + this.annotationData = Annotations.getAnnotationDataForMethod(method); + this.annotationDataForParams = Annotations.getAnnotationDataForMethodParams(method); + + + + for (Class cls : method.getParameterTypes()) { + paramTypeEnumList.add(TypeType.getType(cls)); + + } + + + annotationMap = new ConcurrentHashMap<>( ); + for (AnnotationData data : annotationData) { + annotationMap.put( data.getName(), data ); + annotationMap.put( data.getSimpleClassName(), data ); + annotationMap.put( data.getFullClassName(), data ); + } + + score(method); + + } + + private void score(Method method) { + final Class[] parameterTypes = method.getParameterTypes(); + int index=0; + + for (Class paramType : parameterTypes) { + + + if (paramType.isPrimitive()) { + score+=100; + continue; + } + final TypeType type = this.paramTypeEnumList.get(index); + + switch (type) { + + case LONG_WRAPPER: + score+=85; + break; + + case INTEGER_WRAPPER: + score+=75; + break; + + case SHORT_WRAPPER: + case BYTE_WRAPPER: + score+=65; + break; + + case BOOLEAN_WRAPPER: + score+=60; + break; + + + case FLOAT_WRAPPER: + score+=55; + break; + + case DOUBLE_WRAPPER: + score+=50; + break; + + case BIG_INT: + score+=45; + break; + + + case BIG_DECIMAL: + score+=40; + break; + + case STRING: + score+=30; + break; + + + case INSTANCE: + score+=25; + break; + + + } + + index++; + } + + if (method.isVarArgs()) { + score += -10_000; + } + + + } + + + public Object invokeDynamicList(final Object object, List args) { + + return invokeDynamic(object, Arry.objectArray(args)); + } + + public Object invokeDynamicObject(final Object object, final Object args) { + + if (args instanceof List) { + return invokeDynamicList(object, (List)args); + } else { + return invokeDynamic(object, args); + } + } + + @Override + public Object invokeDynamic(final Object object, final Object... args) { + + final Class[] parameterTypes = parameterTypes(); + final int paramLength = parameterTypes.length; + final int argsLength = args.length; + + + /* If there are no parameters, just invoke it. */ + if (paramLength == 0) { + return invoke(object); + + } + + if (paramLength == argsLength) { + + if (argsLength == 1) { + + Object arg = args[0]; + Class paramType = parameterTypes[0]; + if (!paramType.isInstance(arg)) { + TypeType type = paramTypeEnumList.get(0); + arg = Conversions.coerce(type, paramType, arg); + } + + return invoke(object, arg); + } + /* If the paramLength and argument are greater than one and + sizes match then invoke using invokeFromList. */ + else { + + Object[] newArgs = new Object[argsLength]; + + for (int index = 0; index < argsLength; index++) { + + Object arg = args[index]; + Class paramType = parameterTypes[index]; + + if (!paramType.isInstance(arg)) { + TypeType type = paramTypeEnumList.get(index); + newArgs[index] = Conversions.coerce(type, paramType, arg); + } else { + newArgs[index] = arg; + } + + } + + + return invoke(object, newArgs); + + } + }else { + if (method.isVarArgs() && paramLength == 1) { + + return this.invoke(object, (Object)args); + } else { + return Invoker.invokeOverloadedFromList(object, name(), Lists.list(args)); + } + + } + + } + + public Object invoke(Object object, Object... args) { + try { + + return method.invoke( object, args ); + } catch ( Throwable ex ) { + + return handle( Object.class, ex, "unable to invoke method", method, + " on object ", object, "with arguments", args, + "\nparameter types", parameterTypes(), "\nargument types are", args ); + + } + } + + + public Object invokeBound(Object... args) { + try { + return method.invoke( instance, args ); + } catch ( Throwable ex ) { + + return handle( Object.class, ex, "unable to invoke method", method, + " on object with arguments", args, + "\nparameter types", parameterTypes(), "\nargument types are" ); + + } + } + + @Override + public Object invokeStatic(Object... args) { + try { + + return method.invoke(null, args); + } catch ( Throwable ex ) { + return handle( Object.class, ex, "unable to invoke method", method, + " with arguments", args ); + + } + } + + @Override + public MethodAccess bind(Object instance) { + die("Bind does not work for cached methodAccess make a copy with methodAccsess() first"); + return null; + } + + @Override + public MethodHandle methodHandle() { + + + MethodHandle m; + try { + m = lookup.unreflect(method); + + } catch (Exception e) { + m = null; + handle(e); + } + + return m; + } + + @Override + public MethodAccess methodAccess() { + if (methodHandle == null) { + methodHandle = methodHandle(); + } + return new MethodAccessImpl(this.method){ + + + @Override + public MethodAccess bind(Object instance) { + methodHandle.bindTo(instance); + this.instance = instance; + return this; + } + + + @Override + public Object bound() { + return instance; + } + + + }; + } + + @Override + public Object bound() { + return null; + } + + @Override + public ConstantCallSite invokeReducerLongIntReturnLongMethodHandle(T object) { + + MethodType methodType = MethodType.methodType(long.class, long.class, int.class); + try { + return new ConstantCallSite(this.lookup.bind(object, this.name(), methodType)); + } catch (NoSuchMethodException e) { + handle(e, "Method not found", this.name()); + } catch (IllegalAccessException e) { + handle(e, "Illegal access to method", this.name()); + } + return null; + } + + @Override + public Method method() { + return this.method; + } + + @Override + public int score() { + return score; + } + + + @Override + public Iterable annotationData() { + return new Iterable() { + @Override + public Iterator iterator() { + return annotationData.iterator(); + } + }; + } + + @Override + public boolean hasAnnotation( String annotationName ) { + return this.annotationMap.containsKey( annotationName ); + } + + @Override + public AnnotationData annotation(String annotationName) { + return this.annotationMap.get(annotationName); + } + + @Override + public boolean isStatic() { + return Modifier.isStatic(method.getModifiers()); + } + + + @Override + public boolean isPublic() { + return Modifier.isPublic(method.getModifiers()); + } + + + @Override + public boolean isPrivate() { + return Modifier.isPrivate(method.getModifiers()); + } + + @Override + public String name() { + return method.getName(); + } + + @Override + public Class declaringType() { + return method.getDeclaringClass(); + } + + @Override + public Class returnType() { + return method.getReturnType(); + } + + @Override + public boolean respondsTo(Class[] parametersToMatch) { + boolean match = true; + + Class[] parameterTypes = method.getParameterTypes(); + + + if ( parameterTypes.length != parametersToMatch.length ) { + return false; + } + + + for (int index = 0; index < parameterTypes.length; index++) { + Class type = parameterTypes[index]; + Class matchToType = parametersToMatch[index]; + if (type.isPrimitive()) { + + if (!(type == int.class && ( matchToType == Integer.class || matchToType == int.class) || + type == boolean.class && ( matchToType == Boolean.class || matchToType == boolean.class) || + type == long.class && ( matchToType == Long.class || matchToType == long.class) || + type == float.class && ( matchToType == Float.class || matchToType == float.class) || + type == double.class && ( matchToType == Double.class || matchToType == double.class) || + type == short.class && ( matchToType == Short.class || matchToType == short.class) || + type == byte.class && ( matchToType == Byte.class || matchToType == byte.class) || + type == char.class && ( matchToType == Character.class || matchToType == char.class) ) + ) + { + match = false; + break; + } + + + } else if (!type.isAssignableFrom( matchToType )) { + match = false; + break; + } + } + + return match; + } + + @Override + public boolean respondsTo(Object... args) { + + + + boolean match = true; + Class[] parameterTypes = method.getParameterTypes(); + + + + if ( parameterTypes.length != args.length ) { + return false; + } + + for (int index = 0; index < parameterTypes.length; index++) { + Object arg = args[index]; + Class type = parameterTypes[index]; + Class matchToType = arg != null ? arg.getClass() : null; + + if (type.isPrimitive()) { + + if (arg == null) { + match = false; + break; + } + if (!(type == int.class && matchToType == Integer.class || + type == boolean.class && matchToType == Boolean.class || + type == long.class && matchToType == Long.class || + type == float.class && matchToType == Float.class || + type == double.class && matchToType == Double.class || + type == short.class && matchToType == Short.class || + type == byte.class && matchToType == Byte.class || + type == char.class && matchToType == Character.class + )) + { + match = false; + break; + } + + + } else if (arg == null) { + + } else if (!type.isInstance( arg )) { + match = false; + break; + } + } + + return match; + } + + + @Override + public Class[] parameterTypes() { + return method.getParameterTypes(); + } + + @Override + public Type[] getGenericParameterTypes() { + return method.getGenericParameterTypes(); + } + + + @Override + public String toString() { + return "MethodAccessImpl{" + + "method=" + method + + ", annotationData=" + annotationData + + ", instance=" + instance + + '}'; + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + + MethodAccessImpl that = (MethodAccessImpl) o; + + if (annotationData != null ? !annotationData.equals(that.annotationData) : that.annotationData != null) + return false; + if (annotationMap != null ? !annotationMap.equals(that.annotationMap) : that.annotationMap != null) + return false; + if (instance != null ? !instance.equals(that.instance) : that.instance != null) return false; + if (method != null ? !method.equals(that.method) : that.method != null) return false; + + return true; + } + + @Override + public int hashCode() { + int result = method != null ? method.hashCode() : 0; + result = 31 * result + (annotationData != null ? annotationData.hashCode() : 0); + result = 31 * result + (annotationMap != null ? annotationMap.hashCode() : 0); + result = 31 * result + (instance != null ? instance.hashCode() : 0); + return result; + } + + @Override + public int compareTo(MethodAccess o2) { + + if (this.score() > o2.score()) { + return -1; + } else if (this.score() < o2.score()){ + return 1; + } else { + return 0; + } + } + + + public List paramTypeEnumList() { + return paramTypeEnumList; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/reflection/impl/OverloadedMethod.java b/datastructures-json-boon/src/main/java/org/boon/core/reflection/impl/OverloadedMethod.java new file mode 100644 index 0000000..555cadb --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/reflection/impl/OverloadedMethod.java @@ -0,0 +1,582 @@ +package org.boon.core.reflection.impl; + +import org.boon.core.TypeType; +import org.boon.core.reflection.AnnotationData; +import org.boon.core.reflection.MethodAccess; +import org.boon.primitive.Arry; + +import java.lang.invoke.ConstantCallSite; +import java.lang.invoke.MethodHandle; +import java.lang.reflect.Method; +import java.lang.reflect.Type; +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; + +import static org.boon.Exceptions.die; + +/** + * Created by Richard on 9/22/14. + */ +public class OverloadedMethod implements MethodAccess { + + List methodAccessList = new ArrayList<>(); + + List> methodAccessListByArgNumber = new ArrayList<>(); + + + List> methodAccessListByArgNumberWithVarArg = new ArrayList<>(); + + + { + for (int index =0; index < 25; index++) { + methodAccessListByArgNumberWithVarArg.add(null); + methodAccessListByArgNumber.add(null); + } + } + + private boolean lock; + + + public OverloadedMethod add(MethodAccess methodAccess) { + + if (lock) { + die(); + } + + methodAccessList.add(methodAccess); + + if (!methodAccess.method().isVarArgs()) { + List methodAccesses = methodAccessListByArgNumber.get(methodAccess.parameterTypes().length); + if (methodAccesses == null) { + methodAccesses = new ArrayList<>(); + methodAccessListByArgNumber.set(methodAccess.parameterTypes().length, methodAccesses); + } + methodAccesses.add(methodAccess); + } else { + List methodAccesses = methodAccessListByArgNumberWithVarArg.get(methodAccess.parameterTypes().length); + if (methodAccesses == null) { + methodAccesses = new ArrayList<>(); + methodAccessListByArgNumberWithVarArg.set(methodAccess.parameterTypes().length, methodAccesses); + } + methodAccesses.add(methodAccess); + } + return this; + } + + public OverloadedMethod init() { + + if (lock) { + die(); + } + + for (List methodAccesses : methodAccessListByArgNumber) { + Collections.sort(methodAccesses); + } + + lock(); + return this; + } + + public void lock() { + + + lock = true; + } + + @Override + public Object invokeDynamic(Object object, Object... args) { + + final int length = args.length; + + + final List methodAccesses = this.methodAccessListByArgNumber.get(length); + + + int maxScore = Integer.MIN_VALUE; + MethodAccess methodAccess = null; + + for (MethodAccess m : methodAccesses) { + int score = 1; + final List paramTypeEnumList = m.paramTypeEnumList(); + + if (object == null && !m.isStatic()) { + continue; + } + + + loop: + for (int argIndex=0; argIndex < args.length; argIndex++) { + + TypeType type =paramTypeEnumList.get(argIndex); + Object arg = args[argIndex]; + + final TypeType instanceType = TypeType.getInstanceType(arg); + + if (instanceType == type) { + score += 2_000; + continue; + } + + switch (type){ + case BYTE_WRAPPER: + case BYTE: + score = handleByteArg(score, arg, instanceType); + break; + + case SHORT_WRAPPER: + case SHORT: + score = handleShortArg(score, arg, instanceType); + break; + + case INTEGER_WRAPPER: + case INT: + score = handleIntArg(score, arg, instanceType); + break; + + + case NULL: + score--; + break; + + case LONG_WRAPPER: + case LONG: + score = handleLongArg(score, arg, instanceType); + break; + + case FLOAT_WRAPPER: + case FLOAT: + score = handleFloatArg(score, arg, instanceType); + break; + + + case DOUBLE_WRAPPER: + case DOUBLE: + score = handleDoubleArg(score, arg, instanceType); + break; + + + case CHAR_WRAPPER: + case CHAR: + if (instanceType == TypeType.CHAR || + instanceType == TypeType.CHAR_WRAPPER) { + score+=1000; + } + break; + + case STRING: + if (instanceType == TypeType.STRING) { + score +=1_000; + } else if (instanceType == TypeType.CHAR_SEQUENCE + || arg instanceof CharSequence) { + score +=500; + } + break; + + + case INSTANCE: + if (instanceType == TypeType.INSTANCE) { + if (m.parameterTypes()[argIndex].isInstance(arg)){ + score+=1000; + + } + } else if (instanceType == TypeType.MAP) { + score +=1_000; + } else if (instanceType == TypeType.LIST) { + score +=500; + } + break; + + default: + if (instanceType == type) { + score+=1000; + } else { + if (m.parameterTypes()[argIndex].isInstance(arg)){ + score+=1000; + + } + } + + } + + } + + if (score>maxScore) { + maxScore = score; + methodAccess = m; + } + } + + if (methodAccess!=null) { + return methodAccess.invokeDynamic(object, args); + } else { + /* Place holder for now. */ + List varargMethods = this.methodAccessListByArgNumberWithVarArg.get(0); + if (varargMethods!=null) { + varargMethods.get(0).invokeDynamic(args); + } + } + + return null; + } + + private int handleLongArg(int score, Object arg, TypeType instanceType) { + switch (instanceType) { + + + case LONG: + score += 1000; + break; + + case LONG_WRAPPER: + score += 1000; + break; + + case INT: + score += 800; + break; + + case INTEGER_WRAPPER: + score += 700; + break; + + case DOUBLE: + score += 700; + break; + + case FLOAT: + case SHORT: + case BYTE: + score += 600; + break; + + + + case SHORT_WRAPPER: + case BYTE_WRAPPER: + case FLOAT_WRAPPER: + case DOUBLE_WRAPPER: + score += 500; + break; + + + + case STRING: + score += 400; + try { + arg = Integer.valueOf(arg.toString()); + + }catch (Exception ex) { + score = Integer.MIN_VALUE; + } + break; + } + return score; + + } + + private int handleByteArg(int score, Object arg, TypeType instanceType) { + if (instanceType== TypeType.BYTE|| instanceType == TypeType.BYTE_WRAPPER) { + return score + 1010; + } else { + return handleIntArg(score, arg, instanceType); + } + } + + private int handleShortArg(int score, Object arg, TypeType instanceType) { + if (instanceType== TypeType.SHORT || instanceType == TypeType.SHORT_WRAPPER) { + return score + 1010; + } else { + return handleIntArg(score, arg, instanceType); + } + } + + private int handleIntArg(int score, Object arg, TypeType instanceType) { + switch (instanceType) { + + case INT: + score += 1000; + break; + + case INTEGER_WRAPPER: + score += 900; + break; + + case SHORT: + case BYTE: + score += 800; + break; + + case LONG: + case FLOAT: + case DOUBLE: + score += 700; + break; + + + case SHORT_WRAPPER: + case BYTE_WRAPPER: + score += 600; + break; + + + case LONG_WRAPPER: + case FLOAT_WRAPPER: + case DOUBLE_WRAPPER: + score += 500; + break; + + + case STRING: + score += 400; + try { + arg = Integer.valueOf(arg.toString()); + + }catch (Exception ex) { + score = Integer.MIN_VALUE; + } + break; + } + return score; + } + + + private int handleFloatArg(int score, Object arg, TypeType instanceType) { + switch (instanceType) { + + case FLOAT: + score += 1000; + break; + + case FLOAT_WRAPPER: + score += 900; + break; + + case SHORT: + case BYTE: + score += 800; + break; + + case DOUBLE: + score += 700; + break; + + + case LONG: + case INT: + case SHORT_WRAPPER: + case BYTE_WRAPPER: + score += 600; + break; + + + case LONG_WRAPPER: + case INTEGER_WRAPPER: + case DOUBLE_WRAPPER: + score += 500; + break; + + + case STRING: + score += 400; + try { + arg = Float.valueOf(arg.toString()); + + }catch (Exception ex) { + score = Integer.MIN_VALUE; + } + break; + } + return score; + } + + + private int handleDoubleArg(int score, Object arg, TypeType instanceType) { + switch (instanceType) { + + case DOUBLE: + score += 1000; + break; + + case DOUBLE_WRAPPER: + score += 900; + break; + + case SHORT: + case BYTE: + score += 800; + break; + + case FLOAT: + score += 700; + break; + + + case LONG: + case INT: + case SHORT_WRAPPER: + case BYTE_WRAPPER: + score += 600; + break; + + + case LONG_WRAPPER: + case FLOAT_WRAPPER: + case INTEGER_WRAPPER: + score += 500; + break; + + + case STRING: + score += 400; + try { + arg = Double.valueOf(arg.toString()); + }catch (Exception ex) { + score = Integer.MIN_VALUE; + } + break; + } + return score; + } + + @Override + public Object invoke(Object object, Object... args) { + return null; + } + + @Override + public boolean isStatic() { + return false; + } + + @Override + public boolean isPublic() { + return false; + } + + @Override + public boolean isPrivate() { + return false; + } + + @Override + public String name() { + return null; + } + + @Override + public Class declaringType() { + return null; + } + + @Override + public Class returnType() { + return null; + } + + @Override + public boolean respondsTo(Class... types) { + return false; + } + + @Override + public boolean respondsTo(Object... args) { + return false; + } + + @Override + public Object invokeStatic(Object... args) { + return null; + } + + @Override + public MethodAccess bind(Object instance) { + return null; + } + + @Override + public MethodHandle methodHandle() { + return null; + } + + @Override + public MethodAccess methodAccess() { + return null; + } + + @Override + public Object bound() { + return null; + } + + @Override + public ConstantCallSite invokeReducerLongIntReturnLongMethodHandle(T object) { + return null; + } + + @Override + public Method method() { + return null; + } + + @Override + public int score() { + return 0; + } + + @Override + public List paramTypeEnumList() { + return Collections.emptyList(); + } + + + public Object invokeDynamicObject(final Object object, final Object args) { + + if (args instanceof List) { + return invokeDynamicList(object, (List)args); + } else { + return invokeDynamic(object, args); + } + } + + @Override + public List> annotationDataForParams() { + return null; + } + + public Object invokeDynamicList(final Object object, List args) { + + return invokeDynamic(object, Arry.objectArray(args)); + } + + + @Override + public Class[] parameterTypes() { + return new Class[0]; + } + + @Override + public Type[] getGenericParameterTypes() { + return new Type[0]; + } + + @Override + public Iterable annotationData() { + return null; + } + + @Override + public boolean hasAnnotation(String annotationName) { + return false; + } + + @Override + public AnnotationData annotation(String annotationName) { + return null; + } + + @Override + public int compareTo(MethodAccess o) { + return 0; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/timer/TimeKeeper.java b/datastructures-json-boon/src/main/java/org/boon/core/timer/TimeKeeper.java new file mode 100644 index 0000000..7b69206 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/timer/TimeKeeper.java @@ -0,0 +1,35 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.timer; + + +public interface TimeKeeper { + + long time(); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/timer/TimeKeeperBasic.java b/datastructures-json-boon/src/main/java/org/boon/core/timer/TimeKeeperBasic.java new file mode 100644 index 0000000..8937d4f --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/timer/TimeKeeperBasic.java @@ -0,0 +1,109 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.timer; + + +import org.boon.core.Sys; + +import java.util.concurrent.atomic.AtomicInteger; +import java.util.concurrent.atomic.AtomicLong; +import java.util.concurrent.locks.ReentrantLock; + +/* This timer is used for caches and such + * It is a default timer. + * It should never be used direct. + * There should always be a fall back. + * By default this will reset the time every 100 times it is called to the latest + * System.nanoTime + * At most 1 thread will incur the cost of calling nanoTime about every 100 invocations. + * + */ +public class TimeKeeperBasic implements TimeKeeper { + + + private final AtomicInteger callEveryNowAndThen = new AtomicInteger(); + private final AtomicLong time = new AtomicLong(); + private final int TIME_KEEPER_FREQUENCY = Sys.sysProp( "org.boon.timekeeper.frequency", 100 ); + + private final ReentrantLock lock = new ReentrantLock(); + + private final AtomicLong lastDeltaTime = new AtomicLong(); + + + @Override + public final long time() { + + long limit = callEveryNowAndThen.incrementAndGet(); + long time; + boolean shouldGetTime = false; + + if ( limit > TIME_KEEPER_FREQUENCY ) { + callEveryNowAndThen.set( 0 ); + shouldGetTime = true; + + } + + /* Somewhat Ensure two calls to time do not return the exact same value. */ + time = this.time.get() + limit; + + if ( !shouldGetTime && ( limit % 20 == 0 ) ) { + checkForDrift( time ); + } + + return time; + + } + + /* Never let the drift get greater than 200 ms. */ + private long checkForDrift( long time ) { + long delta = Math.abs( System.currentTimeMillis() - time ); + long lastDelta = lastDeltaTime.getAndSet( delta ); + if ( delta > lastDelta + 200 ) { + return getTheTime( time ); + } + return time; + } + + private long getTheTime( long time ) { + boolean locked = lock.tryLock(); //make sure two or more threads are not calling nanoTime. + if ( locked ) { + try { + //I don't want more than one thread calling nanoTime + time = System.nanoTime() / 1_000_000; + this.time.set( time ); + return time; + + } finally { + lock.unlock(); + } + } + return time; + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/value/CharSequenceValue.java b/datastructures-json-boon/src/main/java/org/boon/core/value/CharSequenceValue.java new file mode 100644 index 0000000..a36ea7b --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/value/CharSequenceValue.java @@ -0,0 +1,343 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.value; + +import org.boon.Exceptions; +import org.boon.core.Conversions; +import org.boon.core.Dates; +import org.boon.core.TypeType; +import org.boon.core.Value; +import org.boon.core.reflection.FastStringUtils; +import org.boon.json.JsonException; +import org.boon.json.implementation.JsonStringDecoder; +import org.boon.primitive.CharBuf; +import org.boon.primitive.CharScanner; + +import java.math.BigDecimal; +import java.math.BigInteger; +import java.util.Arrays; +import java.util.Currency; +import java.util.Date; + +import static org.boon.Exceptions.die; +import static org.boon.primitive.CharScanner.*; + +public class CharSequenceValue implements Value, CharSequence { + + private final TypeType type; + private final boolean checkDate; + private final boolean decodeStrings; + + private char[] buffer; + private boolean chopped; + private int startIndex; + private int endIndex; + private Object value; + + public CharSequenceValue( boolean chop, TypeType type, int startIndex, int endIndex, char[] buffer, + boolean encoded, boolean checkDate ) { + this.type = type; + this.checkDate = checkDate; + this.decodeStrings = encoded; + + if ( chop ) { + try { + this.buffer = Arrays.copyOfRange ( buffer, startIndex, endIndex ); + } catch ( Exception ex ) { + Exceptions.handle ( ex ); + } + this.startIndex = 0; + this.endIndex = this.buffer.length; + this.chopped = true; + + } else { + this.startIndex = startIndex; + this.endIndex = endIndex; + this.buffer = buffer; + } + } + + public String toString () { + + if (this.decodeStrings) { + return stringValue(); + } else if ( startIndex == 0 && endIndex == buffer.length ) { + return FastStringUtils.noCopyStringFromCharsNoCheck( buffer ); + } else { + return new String ( buffer, startIndex, ( endIndex - startIndex ) ); + } + } + + @Override + public final Object toValue () { + return value != null ? value : (value = doToValue ()) ; + } + + @Override + public T toEnum( Class cls ) { + + switch ( type ) { + case STRING: + return Conversions.toEnum ( cls, stringValue () ); + case INT: + case INTEGER_WRAPPER: + return Conversions.toEnum( cls, intValue() ); + case NULL: + return null; + } + die( "toEnum " + cls + " value was " + stringValue() ); + return null; + } + + @Override + public boolean isContainer() { + return false; + } + + private final Object doToValue () { + + switch ( type ) { + case DOUBLE: + return doubleValue (); + + case INT: + case INTEGER_WRAPPER: + + + + if ( isInteger ( buffer, startIndex, endIndex - startIndex ) ) { + return intValue () ; + } else { + return longValue () ; + } + case STRING: + if ( checkDate ) { + Date date = null; + if ( Dates.isISO8601QuickCheck ( buffer, startIndex, endIndex ) ) { + if (Dates.isJsonDate ( buffer,startIndex, endIndex )) { + date = Dates.fromJsonDate ( buffer, startIndex, endIndex ); + } else if (Dates.isISO8601( buffer, startIndex, endIndex )) { + date = Dates.fromISO8601( buffer, startIndex, endIndex ); + } else { + return stringValue(); + } + + if (date == null) { + return stringValue (); + } else { + return date; + } + } + } + return stringValue (); + } + die (); + return null; + } + + @Override + public boolean equals ( Object o ) { + if ( this == o ) return true; + if ( !( o instanceof Value ) ) return false; + + CharSequenceValue value1 = ( CharSequenceValue ) o; + + if ( endIndex != value1.endIndex ) return false; + if ( startIndex != value1.startIndex ) return false; + if ( !Arrays.equals ( buffer, value1.buffer ) ) return false; + if ( type != value1.type ) return false; + if ( value != null ? !value.equals ( value1.value ) : value1.value != null ) return false; + + return true; + } + + @Override + public int hashCode () { + int result = type != null ? type.hashCode () : 0; + result = 31 * result + ( buffer != null ? Arrays.hashCode ( buffer ) : 0 ); + result = 31 * result + startIndex; + result = 31 * result + endIndex; + result = 31 * result + ( value != null ? value.hashCode () : 0 ); + return result; + } + + + @Override + public final int length () { + return buffer.length; + } + + @Override + public final char charAt ( int index ) { + return buffer[ index ]; + } + + @Override + public final CharSequence subSequence ( int start, int end ) { + return new CharSequenceValue (false, type, start, end, buffer, decodeStrings, checkDate); + } + + public BigDecimal bigDecimalValue () { + return new BigDecimal ( buffer, startIndex, endIndex - startIndex ); + } + + @Override + public BigInteger bigIntegerValue() { + return new BigInteger ( toString () ); + } + + public String stringValue () { + if ( this.decodeStrings ) { + return JsonStringDecoder.decodeForSure ( buffer, startIndex, endIndex ); + } else { + return toString (); + } + } + + @Override + public String stringValue(CharBuf charBuf) { + if ( this.decodeStrings ) { + return JsonStringDecoder.decodeForSure ( charBuf, buffer, startIndex, endIndex ); + } else { + return toString (); + } + } + + @Override + public String stringValueEncoded () { + return JsonStringDecoder.decode ( buffer, startIndex, endIndex ); + } + + @Override + public Date dateValue () { + + + if ( type == TypeType.STRING ) { + + if ( Dates.isISO8601QuickCheck ( buffer, startIndex, endIndex ) ) { + + if ( Dates.isJsonDate ( buffer, startIndex, endIndex ) ) { + return Dates.fromJsonDate ( buffer, startIndex, endIndex ); + + } else if ( Dates.isISO8601Jackson(buffer, startIndex, endIndex) ) { + return Dates.fromISO8601Jackson(buffer, startIndex, endIndex); + } else if ( Dates.isISO8601 ( buffer, startIndex, endIndex ) ) { + return Dates.fromISO8601 ( buffer, startIndex, endIndex ); + } else { + throw new JsonException ( "Unable to convert " + stringValue () + " to date " ); + } + } else { + + throw new JsonException ( "Unable to convert " + stringValue () + " to date " ); + } + } else { + + return new Date ( Dates.utc ( longValue () ) ); + } + } + + @Override + public int intValue () { + if ( isInteger ( buffer, startIndex, endIndex - startIndex ) ){ + + return parseInt(buffer, startIndex, endIndex); + } else { + return die(int.class, "not an int"); + } + } + + @Override + public long longValue () { + if ( isInteger ( buffer, startIndex, endIndex - startIndex ) ){ + return parseInt(buffer, startIndex, endIndex); + } else { + return parseLong(buffer, startIndex, endIndex); + } + } + + public byte byteValue () { + return ( byte ) intValue (); + } + + public short shortValue () { + return ( short ) intValue (); + } + + private static float fpowersOf10[] = { + 1.0f, + 10.0f, + 100.0f, + 1_000.0f, + 10_000.0f, + 100_000.0f, + 1_000_000.0f, + 10_000_000.0f, + 100_000_000.0f, + 1_000_000_000.0f, + }; + + @Override + public double doubleValue () { + return CharScanner.parseDouble( this.buffer, startIndex, endIndex ); + } + + @Override + public boolean booleanValue() { + return Boolean.parseBoolean ( toString () ); + } + + @Override + public float floatValue () { + return CharScanner.parseFloat( this.buffer, startIndex, endIndex ); + } + + @Override + public Currency currencyValue () { + return Currency.getInstance( toString() ); + } + + public final void chop () { + if ( !chopped ) { + this.chopped = true; + this.buffer = Arrays.copyOfRange ( buffer, startIndex, endIndex ); + this.startIndex = 0; + this.endIndex = this.buffer.length; + } + } + + @Override + public char charValue () { + return buffer[startIndex]; + } + + @Override + public TypeType type() { + return TypeType.CHAR_SEQUENCE; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/value/LazyValueMap.java b/datastructures-json-boon/src/main/java/org/boon/core/value/LazyValueMap.java new file mode 100644 index 0000000..6748f3e --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/value/LazyValueMap.java @@ -0,0 +1,276 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.value; + +import org.boon.core.Sys; +import org.boon.core.Value; +import org.boon.primitive.Arry; + +import java.util.*; + +import static org.boon.Exceptions.die; + +/** + * This class is important to the performance of the parser. + * It stores Value objects in a map where they are evaluated lazily. + * This is great for JSONPath types of application, and Object Serialization but not for maps that are going to be stored in a cache. + * + * This is because the Value construct is a type of index overlay that merely tracks where the token is located in the buffer, + * and what if any thing we noted about it (like can be converted to a decimal number, etc.). + * + * To mitigate memory leaks this class along with CharSequenceValue implement two constructs, namely, + * chop, and lazyChop. + * + * A chop is when we convert backing buffer of a Value object into a smaller buffer. + * A lazyChop is when we do a chop but only when a get operation is called. + * + * The lazyChop is performed on the tree that is touched by the JSONPath expression or its ilk. + * + * The chop operation can be done during parsing or lazily by storing the values in this construct. + * + */ +public class LazyValueMap extends AbstractMap implements ValueMap { + + /** holds the map that gets lazily created on first access. */ + private Map map = null; + /** holds the list of items that we are managing. */ + private Entry[] items; + /** Holds the current number mapping managed by this map. */ + private int len = 0; + /** Holds whether or not we ae in lazy chop mode or not. */ + private final boolean lazyChop; + + /** Keep track if this map has already been chopped so we don't waste time trying to chop it again. */ + boolean mapChopped = false; + + + + + + public LazyValueMap( boolean lazyChop ) { + + this.items = new Entry[ 5 ]; + this.lazyChop = lazyChop; + } + + public LazyValueMap( boolean lazyChop, int initialSize ) { + this.items = new Entry[ initialSize ]; + this.lazyChop = lazyChop; + } + + /** Adds a new MapItemValue to the mapping. + * + * @param miv miv we are adding. + */ + public final void add( MapItemValue miv ) { + if ( len >= items.length ) { + items = Arry.grow(items); + } + items[ len ] = miv; + len++; + + } + + + /** Gets the item by key from the mapping. + * + * @param key to lookupWithDefault + * @return + */ + @Override + public final Object get( Object key ) { + + Object object=null; + + /* if the map is null, then we create it. */ + if ( map == null ) { + buildMap (); + } + object = map.get ( key ); + + lazyChopIfNeeded ( object ); + + return object; + } + + /** If in lazy chop mode, and the object is a Lazy Value Map or a ValueList + * then we force a chop operation for each of its items. */ + private void lazyChopIfNeeded( Object object ) { + if ( lazyChop ) { + if ( object instanceof LazyValueMap ) { + LazyValueMap m = ( LazyValueMap ) object; + m.chopMap(); + } else if ( object instanceof ValueList ) { + ValueList list = ( ValueList ) object; + list.chopList(); + } + } + + } + + /** Chop this map. + * + */ + public final void chopMap() { + /* if it has been chopped then you have to return. */ + if ( mapChopped ) { + return; + } + mapChopped = true; + + + /* If the internal map was not create yet, don't. We can chop the value w/o creating the internal map.*/ + if ( this.map == null ) { + for ( int index = 0; index < len; index++ ) { + MapItemValue entry = ( MapItemValue ) items [index] ; + + Value value = entry.getValue(); + if ( value == null ) continue; + if ( value.isContainer() ) { + chopContainer( value ); + } else { + value.chop(); + } + } + } else { + /* Iterate through the map and do the same thing. Make sure children and children of children are chopped. */ + for (Entry entry : map.entrySet ()) { + + Object object = entry.getValue(); + if ( object instanceof Value ) { + Value value = (Value) object; + if ( value.isContainer() ) { + chopContainer( value ); + } else { + value.chop(); + } + } else if (object instanceof LazyValueMap) { + LazyValueMap m = ( LazyValueMap ) object; + m.chopMap(); + } else if ( object instanceof ValueList ) { + ValueList list = ( ValueList ) object; + list.chopList(); + } + } + } + + } + + /* We need to chop up this child container. */ + private void chopContainer( Value value ) { + Object obj = value.toValue(); + if ( obj instanceof LazyValueMap ) { + LazyValueMap map = ( LazyValueMap ) obj; + map.chopMap(); + } else if ( obj instanceof ValueList ) { + ValueList list = ( ValueList ) obj; + list.chopList(); + } + } + + + @Override + public Object put( String key, Object value ) { + + + if ( map == null ) { + buildMap(); + } + + return map.put(key, value); + + } + + + @Override + public Set> entrySet() { + if ( map == null ) { + buildMap(); + } + return map.entrySet(); + } + + final static boolean althashingThreshold = System.getProperty("jdk.map.althashing.threshold") != null; + + private final void buildMap() { + + + /** added to avoid hash collision attack. */ + if (Sys.is1_7OrLater() && althashingThreshold) { + map = new HashMap<>( items.length ); + } else { + map = new TreeMap<>(); + } + + + for ( Entry miv : items ) { + if ( miv == null ) { + break; + } + map.put( miv.getKey(), miv.getValue().toValue() ); + } + + len = 0; + items = null; + } + + + public Collection values() { + if ( map == null ) buildMap(); + return map.values(); + } + + + public int size() { + if (map == null) buildMap(); + return map.size(); + } + + public String toString() { + + if (map == null) buildMap(); + return map.toString(); + + } + + public int len() { + return len; + } + + + public boolean hydrated() { + return map!=null; + } + + + public Entry[] items() { + return items; + } + +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/core/value/MapItemValue.java b/datastructures-json-boon/src/main/java/org/boon/core/value/MapItemValue.java new file mode 100644 index 0000000..4abcf8c --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/value/MapItemValue.java @@ -0,0 +1,102 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.value; + +import org.boon.core.Value; + +import java.util.Map; +import java.util.concurrent.ConcurrentHashMap; + +import static org.boon.Exceptions.die; + +/** This holds a mapping from value key to value value to mazimize lazyness. + * + */ +public class MapItemValue implements Map.Entry { + + final Value name; + final Value value; + + private String key = null; + + private static final boolean internKeys = Boolean.parseBoolean( System.getProperty( "org.boon.json.implementation.internKeys", "false" ) ); + + + + protected static ConcurrentHashMap internedKeysCache; + + + + static { + if ( internKeys ) { + internedKeysCache = new ConcurrentHashMap<> (); + } + } + + + public MapItemValue( Value name, Value value ) { + this.name = name; + this.value = value; + + } + + @Override + public String getKey() { + if ( key == null ) { + if ( internKeys ) { + + key = name.toString(); + + String keyPrime = internedKeysCache.get( key ); + if ( keyPrime == null ) { + key = key.intern(); + internedKeysCache.put( key, key ); + } else { + key = keyPrime; + } + } else { + + key = name.toString(); + } + } + return key; + } + + @Override + public Value getValue() { + return value; + } + + @Override + public Value setValue( Value value ) { + die( "not that kind of Entry" ); + return null; + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/value/NumberValue.java b/datastructures-json-boon/src/main/java/org/boon/core/value/NumberValue.java new file mode 100644 index 0000000..750a4eb --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/value/NumberValue.java @@ -0,0 +1,297 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.value; + +import org.boon.Exceptions; +import org.boon.core.Conversions; +import org.boon.core.Dates; +import org.boon.core.TypeType; +import org.boon.core.Value; +import org.boon.core.reflection.FastStringUtils; +import org.boon.primitive.CharBuf; +import org.boon.primitive.CharScanner; + +import java.math.BigDecimal; +import java.math.BigInteger; +import java.util.Arrays; +import java.util.Currency; +import java.util.Date; + +import static org.boon.Boon.puts; +import static org.boon.Exceptions.die; +import static org.boon.primitive.CharScanner.*; + +public class NumberValue extends Number implements Value { + + + private char[] buffer; + private boolean chopped; + private int startIndex; + private int endIndex; + private TypeType type; + private Object value; + + + public NumberValue( TypeType type ) { + this.type = type; + } + + public NumberValue() { + + } + + public NumberValue( boolean chop, TypeType type, int startIndex, int endIndex, char[] buffer ) { + this.type = type; + + + try { + if ( chop ) { + + this.buffer = Arrays.copyOfRange ( buffer, startIndex, endIndex ); + this.startIndex = 0; + this.endIndex = this.buffer.length; + chopped = true; + } else { + this.startIndex = startIndex; + this.endIndex = endIndex; + this.buffer = buffer; + } + } catch ( Exception ex ) { + puts ( "exception", ex, "start", startIndex, "end", endIndex ); + Exceptions.handle ( ex ); + + } + } + + + + public String toString () { + if ( startIndex == 0 && endIndex == buffer.length ) { + return FastStringUtils.noCopyStringFromCharsNoCheck( buffer ); + } else { + return new String ( buffer, startIndex, ( endIndex - startIndex ) ); + } + } + + + @Override + public final Object toValue () { + return value != null ? value : (value = doToValue ()) ; + } + + @Override + public T toEnum( Class cls ) { + + return Conversions.toEnum( cls, intValue() ); + } + + @Override + public boolean isContainer() { + return false; + } + + private final Object doToValue () { + + switch ( type ) { + case DOUBLE: + case DOUBLE_WRAPPER: + return doubleValue (); + case INT: + case INTEGER_WRAPPER: + + if ( isInteger ( buffer, startIndex, endIndex - startIndex ) ) { + return intValue (); + } else { + return longValue (); + } + } + die (); + return null; + } + + @Override + public boolean equals ( Object o ) { + + if (o instanceof Integer) { + Integer i = (Integer) o; + return toValue().equals(i); + } else if (o instanceof Float) { + Float i = (Float) o; + return floatValue() == i; + } else if (o instanceof Double) { + Double i = (Double) o; + return toValue().equals(i); + } else if (o instanceof Short) { + Short i = (Short) o; + return shortValue() == i; + } else if (o instanceof Byte) { + Byte i = (Byte) o; + return byteValue() == i; + } else if (o instanceof Date) { + Date i = (Date) o; + return dateValue().equals(i); + } else if (o instanceof Long) { + Long i = (Long) o; + return longValue()==i; + } + if ( this == o ) return true; + if ( !( o instanceof Value ) ) return false; + + NumberValue value1 = ( NumberValue ) o; + + if ( endIndex != value1.endIndex ) return false; + if ( startIndex != value1.startIndex ) return false; + if ( !Arrays.equals ( buffer, value1.buffer ) ) return false; + if ( type != value1.type ) return false; + if ( value != null ? !value.equals ( value1.value ) : value1.value != null ) return false; + + return true; + } + + @Override + public int hashCode () { + int result = type != null ? type.hashCode () : 0; + result = 31 * result + ( buffer != null ? Arrays.hashCode ( buffer ) : 0 ); + result = 31 * result + startIndex; + result = 31 * result + endIndex; + result = 31 * result + ( value != null ? value.hashCode () : 0 ); + return result; + } + + + public BigDecimal bigDecimalValue () { + return new BigDecimal ( buffer, startIndex, endIndex - startIndex ); + } + + @Override + public BigInteger bigIntegerValue() { + return new BigInteger ( toString () ); + } + + public String stringValue () { + return toString (); + } + + @Override + public String stringValue(CharBuf charBuf) { + return toString(); + } + + @Override + public String stringValueEncoded () { + return toString (); + } + + + @Override + public Date dateValue () { + return new Date ( Dates.utc ( longValue () ) ); + } + + + @Override + public int intValue () { + if ( isInteger ( buffer, startIndex, endIndex - startIndex ) ){ + return parseInt(buffer, startIndex, endIndex); + } else { + return 0; + } + } + + @Override + public long longValue () { + + if ( isInteger ( buffer, startIndex, endIndex - startIndex ) ){ + return parseInt(buffer, startIndex, endIndex); + } else if( isLong( buffer, startIndex, endIndex - startIndex)){ + return parseLong(buffer, startIndex, endIndex); + } else { + return 0L; + } + } + + + public byte byteValue () { + return ( byte ) intValue (); + } + + public short shortValue () { + return ( short ) intValue (); + } + + + @Override + public double doubleValue () { + + return CharScanner.parseDouble( this.buffer, startIndex, endIndex ); + + } + + @Override + public boolean booleanValue() { + return Boolean.parseBoolean ( toString () ); + } + + @Override + public float floatValue () { + + return CharScanner.parseFloat( this.buffer, startIndex, endIndex ); + } + + @Override + public Currency currencyValue () { + return Currency.getInstance( toString() ); + } + + public final void chop () { + if ( !chopped ) { + this.chopped = true; + this.buffer = Arrays.copyOfRange ( buffer, startIndex, endIndex ); + this.startIndex = 0; + this.endIndex = this.buffer.length; + } + } + + + + + @Override + public char charValue () { + return buffer[startIndex]; + } + + @Override + public TypeType type() { + return TypeType.NUMBER; + } + + + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/value/ValueContainer.java b/datastructures-json-boon/src/main/java/org/boon/core/value/ValueContainer.java new file mode 100644 index 0000000..ed1f341 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/value/ValueContainer.java @@ -0,0 +1,241 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.value; + + +import org.boon.core.TypeType; +import org.boon.core.Value; +import org.boon.primitive.CharBuf; + +import java.math.BigDecimal; +import java.math.BigInteger; +import java.util.Currency; +import java.util.Date; +import java.util.List; +import java.util.Map; + +import static org.boon.Boon.sputs; +import static org.boon.Exceptions.die; + +public class ValueContainer implements CharSequence, Value { + + public static final Value TRUE = new ValueContainer ( TypeType.TRUE ); + public static final Value FALSE = new ValueContainer ( TypeType.FALSE ); + public static final Value NULL = new ValueContainer ( TypeType.NULL ); + + public Object value; + + public final TypeType type; + private boolean container; + + public boolean decodeStrings; + + public static Object toObject(Object o) { + if ( o instanceof ValueContainer ) { + o = ( ( ValueContainer ) o ).toValue(); + } + return o; + + } + + public ValueContainer( Object value, TypeType type, boolean decodeStrings ) { + this.value = value; + this.type = type; + this.decodeStrings = decodeStrings; + } + + public ValueContainer( TypeType type ) { + this.type = type; + } + + public ValueContainer( Map map ) { + this.value = map; + this.type = TypeType.MAP; + this.container = true; + } + + public ValueContainer( List list ) { + this.value = list; + this.type = TypeType.LIST; + this.container = true; + } + + @Override + public int intValue() { + return die(int.class, sputs("intValue not supported for type ", type) ); + } + + @Override + public long longValue() { + return die(int.class, sputs("intValue not supported for type ", type) ); + } + + + @Override + public boolean booleanValue() { + + switch ( type ) { + case FALSE: + return false; + case TRUE: + return true; + } + die(); + return false; + + } + + + @Override + public String stringValue() { + if (type == TypeType.NULL) { + return null; + } else { + return type.toString(); + } + } + + @Override + public String stringValue(CharBuf charBuf) { + if (type == TypeType.NULL) { + return null; + } else { + return type.toString(); + } + } + + @Override + public String stringValueEncoded() { + return toString(); + } + + + public String toString() { + return type.toString(); + } + + @Override + public Object toValue() { + if ( value != null ) { + return value; + } + switch ( type ) { + case FALSE: + return (value = false); + + case TRUE: + return (value = true); + case NULL: + return null; + } + die(); + return null; + + } + + @Override + public T toEnum( Class cls ) { + return (T) value; + } + + @Override + public boolean isContainer() { + return container; + } + + @Override + public void chop() { + } + + @Override + public char charValue () { + return 0; + } + + @Override + public TypeType type() { + return type; + } + + @Override + public int length() { + return 0; + } + + @Override + public char charAt( int index ) { + return '0'; + } + + @Override + public CharSequence subSequence( int start, int end ) { + return ""; + } + + + @Override + public Date dateValue() { + return null; + } + + + public byte byteValue() { + return 0; + } + + public short shortValue() { + return 0; + } + + + public BigDecimal bigDecimalValue() { + return null; + } + + public BigInteger bigIntegerValue() { + return null; + } + + + @Override + public double doubleValue() { + return 0; + } + + + @Override + public float floatValue() { + return 0; + } + + @Override + public Currency currencyValue () { + return null; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/value/ValueList.java b/datastructures-json-boon/src/main/java/org/boon/core/value/ValueList.java new file mode 100644 index 0000000..5ed592a --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/value/ValueList.java @@ -0,0 +1,157 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.value; + +import org.boon.core.Value; + +import java.util.*; + +public class ValueList extends AbstractList implements List { + + List list = new ArrayList<>( 5 ); + + private final boolean lazyChop; + boolean converted = false; + + + + public ValueList( boolean lazyChop ) { + this.lazyChop = lazyChop; + } + + @Override + public Object get( int index ) { + + Object obj = list.get( index ); + + if ( obj instanceof Value ) { + obj = convert( ( Value ) obj ); + list.set( index, obj ); + } + + chopIfNeeded( obj ); + return obj; + + } + + + private Object convert( Value value ) { + return value.toValue(); + } + + @Override + public int size() { + return list.size(); + } + + @Override + + public Iterator iterator() { + convertAllIfNeeded(); + return list.iterator(); + } + + + private void convertAllIfNeeded() { + if ( !converted ) { + converted = true; + for ( int index = 0; index < list.size(); index++ ) { + this.get( index ); + } + } + + } + + + @Override + public void clear() { + list.clear(); + } + + + public boolean add( Object obj ) { + return list.add( obj ); + } + + public Object set(int index, Object element) { + return list.set(index, element); + } + + public void chopList() { + + for ( Object obj : list ) { + if ( obj == null ) continue; + + if ( obj instanceof Value ) { + Value value = ( Value ) obj; + if ( value.isContainer() ) { + chopContainer( value ); + } else { + value.chop(); + } + } + } + } + + private void chopIfNeeded( Object object ) { + if ( lazyChop ) { + if ( object instanceof LazyValueMap ) { + LazyValueMap m = ( LazyValueMap ) object; + m.chopMap(); + } else if ( object instanceof ValueList ) { + ValueList list = ( ValueList ) object; + list.chopList(); + } + } + + } + + + void chopContainer( Value value ) { + Object obj = value.toValue(); + if ( obj instanceof LazyValueMap ) { + LazyValueMap map = ( LazyValueMap ) obj; + map.chopMap(); + } else if ( obj instanceof ValueList ) { + ValueList list = ( ValueList ) obj; + list.chopList(); + } + } + + + + public ListIterator listIterator() { + convertAllIfNeeded(); + return list.listIterator(); + } + + public List list () { + return this.list; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/value/ValueMap.java b/datastructures-json-boon/src/main/java/org/boon/core/value/ValueMap.java new file mode 100644 index 0000000..9b1435f --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/value/ValueMap.java @@ -0,0 +1,48 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.value; + +import org.boon.core.Value; + +import java.util.Map; + +public interface ValueMap extends Map { + + /* add a map item value. */ + void add( MapItemValue miv ); + /** Return size w/o hydrating the map. */ + int len(); + /** Has the map been hydrated. */ + boolean hydrated(); + /** Give me the items in the map without hydrating the map. + * Realize that the array is likely larger than the length so array items can be null. + * */ + Entry[] items(); + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/core/value/ValueMapImpl.java b/datastructures-json-boon/src/main/java/org/boon/core/value/ValueMapImpl.java new file mode 100644 index 0000000..2e446fe --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/core/value/ValueMapImpl.java @@ -0,0 +1,153 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.core.value; + + +import org.boon.core.Value; +import org.boon.primitive.Arry; + +import java.util.*; + +import static org.boon.Exceptions.die; + +/** + * This map is for object serialization mainly. + * The idea is the final conversion of + * the Value objects are delayed until the last possible moment, i.e., just before injected into a bean. + */ +public class ValueMapImpl extends AbstractMap implements ValueMap { + + /** The internal map to hold the Value map. */ + private Map map = null; + + /** The items held in the map. */ + private Entry[] items = new Entry[ 20 ]; + + /* The current length of the map. */ + private int len = 0; + + + /** + * Add a MapItemValue to the map. + * @param miv map value item. + */ + @Override + public void add( MapItemValue miv ) { + if ( len >= items.length ) { + items = Arry.grow(items); + } + items[ len ] = miv; + len++; + } + + @Override + public int len() { + return len; + } + + @Override + public boolean hydrated() { + return map!=null; + } + + @Override + public Entry[] items() { + return items; + } + + + /** + * Get the items for the key. + * @param key + * @return + */ + @Override + public Value get( Object key ) { + /* If the length is under and we are asking for the key, then just look for the key. Don't build the map. */ + if ( map == null && items.length < 20 ) { + for ( Object item : items ) { + MapItemValue miv = ( MapItemValue ) item; + if ( key.equals( miv.name.toValue() ) ) { + return miv.value; + } + } + return null; + } else { + if ( map == null ) buildIfNeededMap(); + return map.get( key ); + } + } + + + @Override + public Value put( String key, Value value ) { + die( "Not that kind of map" ); + return null; + } + + + /** If the map has not been built yet, then we just return a fake entry set. */ + @Override + public Set> entrySet() { + buildIfNeededMap(); + return map.entrySet(); + } + + /** Build the map if requested to, it does this lazily. */ + private final void buildIfNeededMap() { + if ( map == null ) { + map = new HashMap<>( items.length ); + + for ( Entry miv : items ) { + if ( miv == null ) { + break; + } + map.put( miv.getKey(), miv.getValue() ); + } + } + } + + + /** Return a collection of values. */ + public Collection values() { + this.buildIfNeededMap(); + return map.values(); + } + + + /** + * Return the size of the map. Use the map if it has already been created. + * @return size + */ + public int size() { + this.buildIfNeededMap(); + return map.size(); + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/criteria/Criterion.java b/datastructures-json-boon/src/main/java/org/boon/criteria/Criterion.java new file mode 100644 index 0000000..82e88f0 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/criteria/Criterion.java @@ -0,0 +1,1727 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.criteria; + +import org.boon.Exceptions; +import org.boon.Str; +import org.boon.core.Typ; +import org.boon.core.Conversions; +import org.boon.core.TypeType; +import org.boon.core.Value; +import org.boon.core.reflection.BeanUtils; +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.criteria.internal.Criteria; +import org.boon.criteria.internal.Operator; +import org.boon.primitive.CharBuf; + +import java.lang.reflect.Field; +import java.lang.reflect.ParameterizedType; +import java.util.*; + +import static org.boon.Boon.sputl; +import static org.boon.Boon.sputs; +import static org.boon.Exceptions.*; + + + +public abstract class Criterion extends Criteria { + + + + private Object name; + private Operator operator; + protected VALUE value; + protected VALUE value2; + + protected VALUE[] values; + private final int hashCode; + private final String toString; + + private boolean initialized; + private Criterion nativeDelegate; + private boolean useDelegate; + + private FieldAccess field; + + protected Object objectUnderTest; + + private Map fields; + + private ThisField fakeField = null; + + private boolean path; + + public Criterion( String name, Operator operator, VALUE... values ) { + requireNonNull( name, "name cannot be null" ); + requireNonNull( operator, "operator cannot be null" ); + requireNonNull( values, "values cannot be null" ); + + + path = isPropPath(name); + + this.name = name; + this.operator = operator; + this.setValues( values ); + hashCode = doHashCode(); + toString = doToString(); + } + + + /** + * Gets the field value. + * @return the value of the field + */ + public FieldAccess field( ) { + + + FieldAccess field; + + if (path) { + field = BeanUtils.idxField(objectUnderTest, name.toString()); + + + if (field == null) { + return fakeField(); + } + + return field; + } + + if (name instanceof Enum) { + name = Str.camelCaseLower(name.toString()); + } + + field = fields().get(name); + + return field; + } + + private FieldAccess fakeField() { + + if (fakeField == null) { + fakeField = new ThisField(this.name.toString(), objectUnderTest); + } + + fakeField.thisObject = objectUnderTest; + + return fakeField; + } + + + /** + * Gets the field value. + * @return the value of the field + */ + public Object fieldValue( ) { + + if (!path) { + FieldAccess field1 = this.field(); + return field1.getValue(objectUnderTest); + } else { + return BeanUtils.atIndex(objectUnderTest, name.toString()); + } + } + + public int fieldInt( ) { + if (!path) { + FieldAccess field1 = this.field(); + return field1.getInt(objectUnderTest); + } else { + return BeanUtils.idxInt(objectUnderTest, name.toString()); + + } + } + + + public short fieldShort( ) { + + if (!path) { + FieldAccess field1 = this.field(); + return field1.getShort(objectUnderTest); + } else { + return BeanUtils.idxShort(objectUnderTest, name.toString()); + + } + + } + + + + public long fieldLong( ) { + if (!path) { + FieldAccess field1 = this.field(); + return field1.getLong(objectUnderTest); + } else { + return BeanUtils.idxLong(objectUnderTest, name.toString()); + + } + + + } + + + public float fieldFloat( ) { + + if (!path) { + FieldAccess field1 = this.field(); + return field1.getFloat(objectUnderTest); + } else { + return BeanUtils.idxFloat(objectUnderTest, name.toString()); + + } + + } + + + public double fieldDouble( ) { + + + + if (!path) { + FieldAccess field1 = this.field(); + return field1.getDouble(objectUnderTest); + } else { + return BeanUtils.idxDouble(objectUnderTest, name.toString()); + + } + } + + + public boolean fieldBoolean( ) { + + + if (!path) { + FieldAccess field1 = this.field(); + return field1.getBoolean(objectUnderTest); + } else { + return BeanUtils.idxBoolean(objectUnderTest, name.toString()); + + } + + } + + + public byte fieldByte( ) { + + + if (!path) { + FieldAccess field1 = this.field(); + return field1.getByte(objectUnderTest); + } else { + return BeanUtils.idxByte(objectUnderTest, name.toString()); + + } + } + + public char fieldChar( ) { + if (!path) { + FieldAccess field1 = this.field(); + return field1.getChar(objectUnderTest); + } else { + return BeanUtils.idxChar(objectUnderTest, name.toString()); + + } + + } + + + + + public Set valueSet( ) { + + if (!convert1st) { + + HashSet set = new HashSet<>(values.length); + FieldAccess field = this.field(); + Class classType = field.type(); + + for (Object v : values) { + v = Conversions.coerce(classType, v); + set.add(v); + } + + value = (VALUE)set; + + convert1st = true; + } + return (Set)value; + } + + + boolean convert1st; + + /** + * Gets the field value. + * @return the value of the field + */ + public Object value( ) { + if (!convert1st) { + FieldAccess field = field(); + if (field != null) { + switch (field.typeEnum()) { + + + case NUMBER: + + this.value = (VALUE) Conversions.coerce(field.type(), this.value); + return new MyNumber(this.value); + + + case ARRAY: + case ARRAY_INT: + case ARRAY_BYTE: + case ARRAY_SHORT: + case ARRAY_FLOAT: + case ARRAY_DOUBLE: + case ARRAY_LONG: + case ARRAY_STRING: + case ARRAY_OBJECT: + case COLLECTION: + case SET: + case LIST: + this.value = (VALUE) Conversions.coerce(field.getComponentClass(), this.value); + break; + default: + + this.value = (VALUE) Conversions.coerce(field.type(), this.value); + } + } + convert1st = true; + } + return value; + } + + boolean convert2nd; + + /** + * Gets the field value. + * @return the value of the field + */ + public Object value2( ) { + if (!convert2nd) { + FieldAccess field = this.field(); + this.value2 = (VALUE) Conversions.coerce(field.type(), this.value2); + convert2nd = true; + } + return value2; + } + + + + + + public String getName() { + return name.toString(); + } + + public Operator getOperator() { + return operator; + } + + + public VALUE getValue() { + return value; + } + + + public VALUE[] getValues() { + return values; + } + + public void setValues( VALUE[] values ) { + if ( values.length > 0 ) { + this.value = values[ 0 ]; + } + if ( values.length > 1 ) { + this.value2 = values[ 1 ]; + } + + this.values = values; + } + + + /** + * Is this a property path? + * @param prop property + * @return true or false + */ + private static boolean isPropPath(String prop) { + return BeanUtils.isPropPath(prop); + } + + @Override + public boolean equals( Object o ) { + if ( this == o ) return true; + if ( !( o instanceof Criterion ) ) return false; + + Criterion criterion = ( Criterion ) o; + + if ( name != null ? !name.equals( criterion.name ) : criterion.name != null ) return false; + if ( operator != criterion.operator ) return false; + if ( value != null ? !value.equals( criterion.value ) : criterion.value != null ) return false; + if ( !Arrays.equals( values, criterion.values ) ) return false; + + return true; + } + + + @Override + public int hashCode() { + return hashCode; + } + + public int doHashCode() { + int result = name != null ? name.hashCode() : 0; + result = 31 * result + ( operator != null ? operator.hashCode() : 0 ); + result = 31 * result + ( value != null ? value.hashCode() : 0 ); + result = 31 * result + ( values != null ? Arrays.hashCode( values ) : 0 ); + return result; + } + + @Override + public String toString() { + return toString; + } + + + public String doToString() { + CharBuf builder = CharBuf.create( 80 ); + builder.add( "c{" ); + builder.add( "\"name\":'" ); + builder.add( String.valueOf( name ) ); + builder.add( ", \"operator\":" ); + builder.add( String.valueOf( operator ) ); + builder.add( ", \"set\":" ); + builder.add( String.valueOf( value ) ); + builder.add( ", \"update\":" ); + builder.add( Arrays.toString( values ) ); + builder.add( "}" ); + return builder.toString(); + } + + public boolean isInitialized() { + return initialized; + } + + + + public void clean() { + this.field = null; + this.fields = null; + this.objectUnderTest = null; + + } + + + public abstract boolean resolve( Object o ); + + @Override + public boolean test( Object o ) { + + + FieldAccess field = null; + + try { + + requireNonNull( o, "object under test can't be null" ); + + this.objectUnderTest = o; + + initIfNeeded(); + if ( this.useDelegate ) { + + this.nativeDelegate.fields = this.fields; + this.nativeDelegate.objectUnderTest = this.objectUnderTest; + return this.nativeDelegate.resolve( o ); + + } + + field = field(); + + + if ( !path && field == null && o instanceof Map) { + return false; + } + + boolean result = resolve( o ); + + + return result; + + } catch ( Exception ex ) { + + return Exceptions.handle( Typ.bool, + sputl( "In class " + this.getClass().getName(), + "the test method is unable to test the following criteria operator", + String.valueOf( this.getOperator() ), + sputs( "The field name is : ", this.getName() ), + sputs( "The value is : ", this.getValue() ), + sputs( "The value type is : ", this.getValue().getClass().getName() ), + sputs( "The object under test : ", this.objectUnderTest ), + sputs( "The object under test type : ", + this.objectUnderTest == null ? "null" : this.objectUnderTest.getClass().getName() ), + sputs( "Field : ", + field ), + sputs( "Fields : ", + fields ), + + sputs() + + ) + , ex ); + } + } + + + private Map fields() { + + + if (objectUnderTest instanceof Map) { + return BeanUtils.getFieldsFromObject(objectUnderTest); + } + + if (fields == null) { + fields = + BeanUtils.getFieldsFromObject(objectUnderTest); + } + + return fields; + + +// if (objectUnderTest instanceof Map) { +// final Map map = (Map) objectUnderTest; +// return new Map() { +// +// @Override +// public int size() { +// return map.size(); +// } +// +// @Override +// public boolean isEmpty() { +// return map.isEmpty(); +// } +// +// @Override +// public boolean containsKey(Object key) { +// return map.containsKey(key); +// } +// +// @Override +// public boolean containsValue(Object value) { +// return map.containsValue(value); +// } +// +// @Override +// public FieldAccess get(Object okey) { +// +// final String key = okey.toString(); +// +// return new FieldAccess() { +// @Override +// public boolean injectable() { +// return false; +// } +// +// @Override +// public boolean requiresInjection() { +// return false; +// } +// +// @Override +// public boolean isNamed() { +// return false; +// } +// +// @Override +// public boolean hasAlias() { +// return false; +// } +// +// @Override +// public String alias() { +// return key; +// } +// +// @Override +// public String named() { +// return key; +// } +// +// @Override +// public String name() { +// return key; +// } +// +// @Override +// public Object getValue(Object obj) { +// +// Map map = (Map) obj; +// +// return map.get(key); +// } +// +// @Override +// public void setValue(Object obj, Object value) { +// +// Map map = (Map) obj; +// +// map.put(key, value); +// +// } +// +// @Override +// public void setFromValue(Object obj, Value value) { +// Map map = (Map) obj; +// +// map.put(key, value.toValue()); +// +// } +// +// @Override +// public boolean getBoolean(Object obj) { +// return false; +// } +// +// @Override +// public void setBoolean(Object obj, boolean value) { +// +// } +// +// @Override +// public int getInt(Object obj) { +// return 0; +// } +// +// @Override +// public void setInt(Object obj, int value) { +// +// } +// +// @Override +// public short getShort(Object obj) { +// return 0; +// } +// +// @Override +// public void setShort(Object obj, short value) { +// +// } +// +// @Override +// public char getChar(Object obj) { +// return 0; +// } +// +// @Override +// public void setChar(Object obj, char value) { +// +// } +// +// @Override +// public long getLong(Object obj) { +// return 0; +// } +// +// @Override +// public void setLong(Object obj, long value) { +// +// } +// +// @Override +// public double getDouble(Object obj) { +// return 0; +// } +// +// @Override +// public void setDouble(Object obj, double value) { +// +// } +// +// @Override +// public float getFloat(Object obj) { +// return 0; +// } +// +// @Override +// public void setFloat(Object obj, float value) { +// +// } +// +// @Override +// public byte getByte(Object obj) { +// return 0; +// } +// +// @Override +// public void setByte(Object obj, byte value) { +// +// } +// +// @Override +// public Object getObject(Object obj) { +// Map map = (Map) obj; +// +// return map.get(key); +// +// } +// +// @Override +// public void setObject(Object obj, Object value) { +// Map map = (Map) obj; +// +// map.put(key, value); +// +// +// } +// +// +// @Override +// public Class type() { +// +// Object value = map.get(key); +// if (value==null) { +// return Object.class; +// } else { +// return value.getClass(); +// } +// +// } +// +// @Override +// public TypeType typeEnum() { +// +// Object value = map.get(key); +// if (value==null) { +// return TypeType.OBJECT; +// } else { +// return TypeType.getInstanceType(value); +// } +// } +// +// @Override +// public boolean isPrimitive() { +// return false; +// } +// +// @Override +// public boolean isFinal() { +// return false; +// } +// +// @Override +// public boolean isStatic() { +// return false; +// } +// +// @Override +// public boolean isVolatile() { +// return false; +// } +// +// @Override +// public boolean isQualified() { +// return false; +// } +// +// @Override +// public boolean isReadOnly() { +// return false; +// } +// +// @Override +// public boolean isWriteOnly() { +// return false; +// } +// +// +// @Override +// public Class declaringParent() { +// return Object.class; +// } +// +// @Override +// public Object parent() { +// return map; +// } +// +// @Override +// public Field getField() { +// return null; +// } +// +// @Override +// public boolean include() { +// return false; +// } +// +// @Override +// public boolean ignore() { +// return false; +// } +// +// @Override +// public ParameterizedType getParameterizedType() { +// return null; +// } +// +// @Override +// public Class getComponentClass() { +// return null; +// } +// +// @Override +// public boolean hasAnnotation(String annotationName) { +// return false; +// } +// +// @Override +// public Map getAnnotationData(String annotationName) { +// return null; +// } +// +// @Override +// public boolean isViewActive(String activeView) { +// return false; +// } +// +// @Override +// public void setStaticValue(Object newValue) { +// +// } +// +// @Override +// public TypeType componentType() { +// return null; +// } +// }; +// } +// +// @Override +// public FieldAccess put(String key, FieldAccess value) { +// return null; +// } +// +// @Override +// public FieldAccess remove(Object key) { +// return null; +// } +// +// @Override +// public void putAll(Map m) { +// +// } +// +// @Override +// public void clear() { +// +// } +// +// @Override +// public Set keySet() { +// return map.keySet(); +// } +// +// @Override +// public Collection values() { +// return null; +// } +// +// @Override +// public Set> entrySet() { +// return null; +// } +// }; +// } else { +// +// return BeanUtils.getFieldsFromObject(objectUnderTest); +// } + } + + + + private void initForShortValue( short v ) { + + this.value = ( VALUE ) ( Short ) v; + + switch ( operator ) { + case EQUAL: + nativeDelegate = ObjectFilter.eqShort( name, v ); + break; + + case NOT_EQUAL: + nativeDelegate = ObjectFilter.notEqShort( name, v ); + break; + + case LESS_THAN: + nativeDelegate = ObjectFilter.ltShort( name, v ); + break; + + case LESS_THAN_EQUAL: + nativeDelegate = ObjectFilter.lteShort( name, v ); + break; + + case GREATER_THAN: + nativeDelegate = ObjectFilter.gtShort( name, v ); + break; + + case GREATER_THAN_EQUAL: + nativeDelegate = ObjectFilter.gteShort( name, v ); + break; + + case IN: + nativeDelegate = ObjectFilter.inShorts( name, Conversions.sarray( values ) ); + break; + + + case BETWEEN: + nativeDelegate = ObjectFilter.betweenShort( name, ( v ), + Conversions.toShort( values[1] ) ); + break; + + + case NOT_IN: + nativeDelegate = ObjectFilter.notInShorts( name, Conversions.sarray( values ) ); + + break; + + default: + useDelegate = false; + } + } + + + private void initIfNeeded() { + + if ( initialized ) return; + initialized = true; + + String name = this.name.toString(); + + FieldAccess field = field(); + if ( field == null ) { + return; + } + + Class type = field.type(); + + + if ( !type.isPrimitive() && type != Typ.date ) { + return; + } + + + if ( type == Typ.date ) { + + if ( !( value instanceof Date ) ) { + initForDate(); + } + return; + } + + + useDelegate = true; + + + if ( type == Typ.intgr ) { + int v = Conversions.toInt( value ); + initForInt( v ); + } else if ( type == Typ.bt ) { + + byte v = Conversions.toByte( value ); + + initForByte( v ); + + } else if ( type == Typ.shrt ) { + + short v = Conversions.toShort( value ); + + initForShortValue( v ); + + } else if ( type == Typ.lng ) { + + long v = Conversions.toLong( value ); + + initForLong( v ); + + + } else if ( type == Typ.flt ) { + + float v = Conversions.toFloat( value ); + + + initForFloat( v ); + + } else if ( type == Typ.dbl ) { + + double v = Conversions.toDouble( value ); + + initForDouble( v ); + + + } else if ( type == Typ.bln ) { + + + switch ( operator ) { + case EQUAL: + nativeDelegate = ObjectFilter.eqBoolean( name, Conversions.toBoolean( value ) ); + break; + + case NOT_EQUAL: + nativeDelegate = ObjectFilter.notEqBoolean( name, Conversions.toBoolean( value ) ); + break; + + + default: + useDelegate = false; + } + + } else if ( type == Typ.chr ) { + + char v = Conversions.toChar( value ); + initForChar( v ); + + } + + + } + + private void initForChar( char value ) { + + + this.value = ( VALUE ) ( Character ) value; + + switch ( operator ) { + + + case EQUAL: + nativeDelegate = ObjectFilter.eqChar( name, ( value ) ); + break; + + case NOT_EQUAL: + nativeDelegate = ObjectFilter.notEqChar( name, ( value ) ); + break; + + case LESS_THAN: + nativeDelegate = ObjectFilter.ltChar( name, ( value ) ); + break; + + case LESS_THAN_EQUAL: + nativeDelegate = ObjectFilter.lteChar( name, ( value ) ); + break; + + case GREATER_THAN: + nativeDelegate = ObjectFilter.gtChar( name, ( value ) ); + break; + + case GREATER_THAN_EQUAL: + nativeDelegate = ObjectFilter.gteChar( name, ( value ) ); + break; + + case BETWEEN: + nativeDelegate = ObjectFilter.betweenChar( name, ( value ), + Conversions.toChar( values[1] ) ); + break; + + case IN: + nativeDelegate = ObjectFilter.inChars( name, Conversions.carray( values ) ); + break; + + + case NOT_IN: + nativeDelegate = ObjectFilter.notInChars( name, Conversions.carray( values ) ); + break; + + default: + useDelegate = false; + } + } + + private void initForDouble( double value ) { + + this.value = ( VALUE ) ( Double ) value; + + switch ( operator ) { + case EQUAL: + nativeDelegate = ObjectFilter.eqDouble( name, ( value ) ); + break; + + case NOT_EQUAL: + nativeDelegate = ObjectFilter.notEqDouble( name, ( value ) ); + break; + + case LESS_THAN: + nativeDelegate = ObjectFilter.ltDouble( name, ( value ) ); + break; + + case LESS_THAN_EQUAL: + nativeDelegate = ObjectFilter.lteDouble( name, ( value ) ); + break; + + case GREATER_THAN: + nativeDelegate = ObjectFilter.gtDouble( name, ( value ) ); + break; + + case GREATER_THAN_EQUAL: + nativeDelegate = ObjectFilter.gteDouble( name, ( value ) ); + break; + + case BETWEEN: + nativeDelegate = ObjectFilter.betweenDouble( name, ( value ), + Conversions.toDouble( values[1] ) ); + break; + + case IN: + nativeDelegate = ObjectFilter.inDoubles( name, + Conversions.darray( values ) ); + break; + + + case NOT_IN: + nativeDelegate = ObjectFilter.notInDoubles( name, + Conversions.darray( values ) ); + break; + + default: + useDelegate = false; + } + } + + private void initForFloat( float value ) { + + this.value = ( VALUE ) ( Float ) value; + + switch ( operator ) { + case EQUAL: + nativeDelegate = ObjectFilter.eqFloat( name, ( value ) ); + break; + + case NOT_EQUAL: + nativeDelegate = ObjectFilter.notEqFloat( name, ( value ) ); + break; + + case LESS_THAN: + nativeDelegate = ObjectFilter.ltFloat( name, ( value ) ); + break; + + case LESS_THAN_EQUAL: + nativeDelegate = ObjectFilter.lteFloat( name, ( value ) ); + break; + + case GREATER_THAN: + nativeDelegate = ObjectFilter.gtFloat( name, ( value ) ); + break; + + case GREATER_THAN_EQUAL: + nativeDelegate = ObjectFilter.gteFloat( name, ( value ) ); + break; + + case BETWEEN: + nativeDelegate = ObjectFilter.betweenFloat( name, ( value ), + Conversions.toFloat( values[1] ) ); + break; + + case IN: + nativeDelegate = ObjectFilter.inFloats( name, Conversions.farray( values ) ); + break; + + + case NOT_IN: + nativeDelegate = ObjectFilter.notInFloats( name, Conversions.farray( values ) ); + + break; + + default: + useDelegate = false; + } + } + + private void initForLong( long value ) { + + this.value = ( VALUE ) ( Long ) value; + + switch ( operator ) { + case EQUAL: + nativeDelegate = ObjectFilter.eqLong( name, ( value ) ); + break; + + case NOT_EQUAL: + nativeDelegate = ObjectFilter.notEqLong( name, ( value ) ); + break; + + case LESS_THAN: + nativeDelegate = ObjectFilter.ltLong( name, ( value ) ); + break; + + case LESS_THAN_EQUAL: + nativeDelegate = ObjectFilter.lteLong( name, ( value ) ); + break; + + case GREATER_THAN: + nativeDelegate = ObjectFilter.gtLong( name, ( value ) ); + break; + + case GREATER_THAN_EQUAL: + nativeDelegate = ObjectFilter.gteLong( name, ( value ) ); + break; + + case IN: + nativeDelegate = ObjectFilter.inLongs( name, Conversions.larray( values ) ); + break; + + + case BETWEEN: + nativeDelegate = ObjectFilter.betweenLong( name, ( value ), + Conversions.toLong( values[1] ) ); + break; + + + case NOT_IN: + nativeDelegate = ObjectFilter.notInLongs( name, Conversions.larray( values ) ); + + break; + + default: + useDelegate = false; + } + } + + private void initForByte( byte value ) { + + this.value = ( VALUE ) ( Byte ) value; + + switch ( operator ) { + case EQUAL: + nativeDelegate = ObjectFilter.eqByte(name, (value)); + break; + + case NOT_EQUAL: + nativeDelegate = ObjectFilter.notEqByte(name, (value)); + break; + + case LESS_THAN: + nativeDelegate = ObjectFilter.ltByte(name, (value)); + break; + + case LESS_THAN_EQUAL: + nativeDelegate = ObjectFilter.lteByte(name, (value)); + break; + + case GREATER_THAN: + nativeDelegate = ObjectFilter.gtByte(name, (value)); + break; + + case GREATER_THAN_EQUAL: + nativeDelegate = ObjectFilter.gteByte(name, (value)); + break; + + case IN: + nativeDelegate = ObjectFilter.inBytes(name, Conversions.barray(values)); + break; + + + case NOT_IN: + nativeDelegate = ObjectFilter.notInBytes(name, Conversions.barray(values)); + + break; + + + case BETWEEN: + nativeDelegate = ObjectFilter.betweenByte(name, (value), + Conversions.toByte(values[1])); + break; + + + default: + useDelegate = false; + } + } + + private void initForDate() { + value = ( VALUE ) Conversions.toDate( value ); + + if ( operator == Operator.BETWEEN ) { + values[ 0 ] = ( VALUE ) Conversions.toDate( values[ 0 ] ); + + values[ 1 ] = ( VALUE ) Conversions.toDate( values[ 1 ] ); + + } + + } + + private void initForInt( int v ) { + this.value = ( VALUE ) ( Integer ) v; + + + switch ( operator ) { + case EQUAL: + nativeDelegate = ObjectFilter.eqInt(name, v); + break; + + case NOT_EQUAL: + nativeDelegate = ObjectFilter.notEqInt(name, v); + break; + + case LESS_THAN: + nativeDelegate = ObjectFilter.ltInt(name, v); + break; + + case LESS_THAN_EQUAL: + nativeDelegate = ObjectFilter.lteInt(name, v); + break; + + case GREATER_THAN: + nativeDelegate = ObjectFilter.gtInt(name, v); + break; + + case GREATER_THAN_EQUAL: + nativeDelegate = ObjectFilter.gteInt(name, v); + break; + + case BETWEEN: + nativeDelegate = ObjectFilter.betweenInt(name, v, + Conversions.toInt(values[1])); + break; + + case IN: + nativeDelegate = ObjectFilter.inInts(name, Conversions.iarray(values)); + break; + + + case NOT_IN: + nativeDelegate = ObjectFilter.notInInts(name, Conversions.iarray(values)); + + break; + + default: + useDelegate = false; + } + } + + + + static class ThisMap implements Map { + + ThisField thisField; + private final String name; + + + ThisMap (String name, Object thisObject) { + this.name = name; + this.thisField = new ThisField(name, thisObject); + } + + + @Override + public int size() { + return 0; + } + + @Override + public boolean isEmpty() { + return false; + } + + @Override + public boolean containsKey(Object key) { + return false; + } + + @Override + public boolean containsValue(Object value) { + return false; + } + + @Override + public FieldAccess get(Object key) { + return thisField; + + } + + @Override + public FieldAccess put(String key, FieldAccess value) { + return null; + } + + @Override + public FieldAccess remove(Object key) { + return null; + } + + @Override + public void putAll(Map m) { + + } + + @Override + public void clear() { + + } + + @Override + public Set keySet() { + return null; + } + + @Override + public Collection values() { + return null; + } + + @Override + public Set> entrySet() { + return null; + } + } + + static class ThisField implements FieldAccess { + + + Object thisObject; + private final String name; + + ThisField(String name, Object thisObject) { + this.name = name; + this.thisObject = thisObject; + + + } + + @Override + public boolean injectable() { + return false; + } + + @Override + public boolean requiresInjection() { + return false; + } + + @Override + public boolean isNamed() { + return false; + } + + @Override + public boolean hasAlias() { + return false; + } + + @Override + public String alias() { + return null; + } + + @Override + public String named() { + return null; + } + + @Override + public String name() { + return null; + } + + @Override + public Object getValue(Object obj) { + if (name.equals("this")) { + return thisObject; + } else { + return BeanUtils.atIndex(thisObject, name); + } + } + + @Override + public void setValue(Object obj, Object value) { + + } + + @Override + public void setFromValue(Object obj, Value value) { + + } + + @Override + public boolean getBoolean(Object obj) { + return false; + } + + @Override + public void setBoolean(Object obj, boolean value) { + + } + + @Override + public int getInt(Object obj) { + return 0; + } + + @Override + public void setInt(Object obj, int value) { + + } + + @Override + public short getShort(Object obj) { + return 0; + } + + @Override + public void setShort(Object obj, short value) { + + } + + @Override + public char getChar(Object obj) { + return 0; + } + + @Override + public void setChar(Object obj, char value) { + + } + + @Override + public long getLong(Object obj) { + return 0; + } + + @Override + public void setLong(Object obj, long value) { + + } + + @Override + public double getDouble(Object obj) { + return 0; + } + + @Override + public void setDouble(Object obj, double value) { + + } + + @Override + public float getFloat(Object obj) { + return 0; + } + + @Override + public void setFloat(Object obj, float value) { + + } + + @Override + public byte getByte(Object obj) { + return 0; + } + + @Override + public void setByte(Object obj, byte value) { + + } + + @Override + public Object getObject(Object obj) { + return thisObject; + } + + @Override + public void setObject(Object obj, Object value) { + + } + + @Override + public TypeType typeEnum() { + Object o = this.getValue(this.thisObject); + return TypeType.getInstanceType(o); + } + + @Override + public boolean isPrimitive() { + return false; + } + + @Override + public boolean isFinal() { + return false; + } + + @Override + public boolean isStatic() { + return false; + } + + @Override + public boolean isVolatile() { + return false; + } + + @Override + public boolean isQualified() { + return false; + } + + @Override + public boolean isReadOnly() { + return false; + } + + @Override + public boolean isWriteOnly() { + return false; + } + + @Override + public Class type() { + if (this.name.equals("this")) { + return this.thisObject != null ? this.thisObject.getClass() : Object.class; + } else { + return Object.class; + } + } + + @Override + public Class declaringParent() { + return null; + } + + @Override + public Object parent() { + return null; + } + + @Override + public Field getField() { + return null; + } + + @Override + public boolean include() { + return false; + } + + @Override + public boolean ignore() { + return false; + } + + @Override + public ParameterizedType getParameterizedType() { + return null; + } + + @Override + public Class getComponentClass() { + Object o = this.getValue(this.thisObject); + if (o instanceof Collection) { + Collection c = (Collection) o; + if (c.iterator().hasNext()) { + return c.iterator().next().getClass(); + } + + } + return Object.class; + + } + + @Override + public boolean hasAnnotation(String annotationName) { + return false; + } + + @Override + public Map getAnnotationData(String annotationName) { + return null; + } + + @Override + public boolean isViewActive(String activeView) { + return false; + } + + @Override + public void setStaticValue(Object newValue) { + + } + + @Override + public TypeType componentType() { + return null; + } + } + + private static class MyNumber extends Number implements Comparable { + + Object value; + + MyNumber(Object value) { + + this.value = value; + } + + @Override + public int intValue() { + return Conversions.toInt(value); + } + + @Override + public long longValue() { + + return Conversions.toLong(value); + } + + @Override + public float floatValue() { + + return Conversions.toFloat(value); + } + + @Override + public double doubleValue() { + return Conversions.toDouble(value); + } + + @Override + public int compareTo(Number number) { + double thisDouble = this.doubleValue(); + + double thatValue = number.doubleValue(); + + if (thisDouble > thatValue) { + return 1; + } else if(thisDouble < thatValue) { + return -1; + } else { + return 0; + } + + } + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/criteria/DoubleCollector.java b/datastructures-json-boon/src/main/java/org/boon/criteria/DoubleCollector.java new file mode 100644 index 0000000..d611d7a --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/criteria/DoubleCollector.java @@ -0,0 +1,92 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.criteria; + +import org.boon.collections.DoubleList; +import org.boon.collections.FloatList; +import org.boon.core.reflection.BeanUtils; +import org.boon.core.reflection.fields.FieldAccess; + +import java.util.Collection; +import java.util.List; +import java.util.Map; + + + +/** + * Collects primitive values from Data repo results. + * It avoids the creation of many wrapper objects. + * It also provides a wicked fast version of List which can do + * mean, median, standard deviation, sum, etc. over the returned results. + */ +public class DoubleCollector extends Selector { + + /** + * Factory for int collector. + * @param propertyName name of property to collect + * @return new values + */ + public static DoubleCollector intCollector(String propertyName) { + return new DoubleCollector(propertyName); + } + + private DoubleList list; + + public DoubleCollector(String fieldName) { + super(fieldName); + } + + @Override + public void handleRow(int index, Map row, Object item, Map fields) { + double value; + if (path) { + value = BeanUtils.idxDouble(item, this.name); + } else { + value = fields.get(name).getDouble(item); + } + list.add( value ); + } + + @Override + public void handleStart(Collection results) { + list = new DoubleList(results.size()); + + + } + + @Override + public void handleComplete(List> rows) { + + } + + public DoubleList list() { + return list; + } +} + diff --git a/datastructures-json-boon/src/main/java/org/boon/criteria/FloatCollector.java b/datastructures-json-boon/src/main/java/org/boon/criteria/FloatCollector.java new file mode 100644 index 0000000..a57b75c --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/criteria/FloatCollector.java @@ -0,0 +1,90 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.criteria; + +import org.boon.collections.FloatList; +import org.boon.core.reflection.BeanUtils; +import org.boon.core.reflection.fields.FieldAccess; + +import java.util.Collection; +import java.util.List; +import java.util.Map; + + +/** + * Collects primitive values from Data repo results. + * It avoids the creation of many wrapper objects. + * It also provides a wicked fast version of List which can do + * mean, median, standard deviation, sum, etc. over the returned results. + */ +public class FloatCollector extends Selector { + + /** + * Factory for int collector. + * @param propertyName name of property to collect + * @return new values + */ + public static DoubleCollector intCollector(String propertyName) { + return new DoubleCollector(propertyName); + } + + private FloatList list; + + public FloatCollector(String fieldName) { + super(fieldName); + } + + @Override + public void handleRow(int index, Map row, Object item, Map fields) { + float value; + if (path) { + value = BeanUtils.idxFloat(item, this.name); + } else { + value = fields.get(name).getFloat(item); + } + list.add( value ); + } + + @Override + public void handleStart(Collection results) { + list = new FloatList(results.size()); + + + } + + @Override + public void handleComplete(List> rows) { + + } + + public FloatList list() { + return list; + } +} + diff --git a/datastructures-json-boon/src/main/java/org/boon/criteria/IntCollector.java b/datastructures-json-boon/src/main/java/org/boon/criteria/IntCollector.java new file mode 100644 index 0000000..d4838df --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/criteria/IntCollector.java @@ -0,0 +1,88 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.criteria; + +import org.boon.collections.IntList; +import org.boon.core.reflection.BeanUtils; +import org.boon.core.reflection.fields.FieldAccess; + +import java.util.Collection; +import java.util.List; +import java.util.Map; + +/** + * Collects primitive values from Data repo results. + * It avoids the creation of many wrapper objects. + * It also provides a wicked fast version of List which can do + * mean, median, standard deviation, sum, etc. over the returned results. + */ +public class IntCollector extends Selector { + + /** + * Factory for int collector. + * @param propertyName name of property to collect + * @return new values + */ + public static IntCollector intCollector(String propertyName) { + return new IntCollector(propertyName); + } + + private IntList list; + + public IntCollector(String fieldName) { + super(fieldName); + } + + @Override + public void handleRow(int index, Map row, Object item, Map fields) { + int value; + if (path) { + value = BeanUtils.idxInt(item, this.name); + } else { + value = fields.get(name).getInt(item); + } + list.add( value ); + } + + @Override + public void handleStart(Collection results) { + list = new IntList(results.size()); + + + } + + @Override + public void handleComplete(List> rows) { + + } + + public IntList list() { + return list; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/criteria/ObjectFilter.java b/datastructures-json-boon/src/main/java/org/boon/criteria/ObjectFilter.java new file mode 100644 index 0000000..411ebb2 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/criteria/ObjectFilter.java @@ -0,0 +1,1562 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.criteria; + + +import org.boon.Boon; +import org.boon.core.Conversions; +import org.boon.core.Predicate; +import org.boon.core.Typ; +import org.boon.core.TypeType; +import org.boon.core.reflection.BeanUtils; +import org.boon.core.reflection.Invoker; +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.criteria.internal.*; + +import java.util.*; + +import static org.boon.Boon.fromJson; +import static org.boon.Boon.iterator; +import static org.boon.Exceptions.die; +import static org.boon.Lists.atIndex; +import static org.boon.Ok.okOrDie; + + +/** + * Filters objects based on Criteria and Predicates. + * Also allows construction of predicates. + */ +public class ObjectFilter { + + + /** + * Does the object match this expression. + * An expression is a collection of criteria. + * @param obj object in question + * @param exp expression + * @return true or false + */ + public static boolean matches( Object obj, Criteria... exp ) { + return ObjectFilter.and( exp ).test( obj ); + } + + /** + * Does the object match this predicate + * @param obj object in question + * @param exp predicate + * @return true or false + */ + public static boolean matches( Object obj, Predicate exp ) { + return exp.test(obj); + } + + + public static boolean matches( Object obj, List expressions ) { + return ObjectFilter.and( expressions.toArray( new Criteria[expressions.size()] ) ).test( obj ); + } + + public static List filter( Collection items, List expressions ) { + if ( items.size() == 0 ) { + return Collections.EMPTY_LIST; + } + + List results = new ArrayList<>(); + for ( T item : items ) { + if (ObjectFilter.and( expressions.toArray( new Criteria[expressions.size()] ) ).test( item )) { + results.add( item ); + } + } + return results; + } + + public static List filter( Collection items, Criteria... exp ) { + if ( items.size() == 0 ) { + return Collections.EMPTY_LIST; + } + + Group and = ObjectFilter.and(exp); + + List results = new ArrayList<>(); + for ( T item : items ) { + if ( and.test( item ) ) { + results.add( item ); + } + } + return results; + } + + public static Not not( Criteria expression ) { + return new Not( expression ); + } + + public static Group and( Criteria... expressions ) { + return new Group.And( expressions ); + } + + + + public static Group or( Criteria... expressions ) { + return new Group.Or( expressions ); + } + + public static Criterion eq( final Object name, final Object value ) { + return new Criterion( name.toString(), Operator.EQUAL, value ) { + @Override + public boolean resolve( Object owner ) { + return Boon.equals(fieldValue(), value()); + } + }; + } + + + public static Criterion typeOf( final String className ) { + return new Criterion( "_type", Operator.EQUAL, className ) { + @Override + public boolean resolve( Object owner ) { + + Class cls = owner.getClass(); + while ( cls != Typ.object ) { + String simpleName = cls.getSimpleName(); + String name = cls.getName(); + if ( simpleName.equals( className ) || name.equals( className ) ) { + return true; + } + + + Class[] interfaces = cls.getInterfaces(); + for ( Class i : interfaces ) { + simpleName = i.getSimpleName(); + name = i.getName(); + + if ( simpleName.equals( className ) || name.equals( className ) ) { + return true; + } + } + cls = cls.getSuperclass(); + } + return false; + } + }; + } + + public static Criterion instanceOf( final Class cls ) { + return new Criterion( "_type", Operator.EQUAL, cls.getName() ) { + @Override + public boolean resolve( Object owner ) { + return Typ.isSuperClass(owner.getClass(), cls); + } + }; + } + + public static Criterion implementsInterface( final Class cls ) { + return new Criterion( "_type", Operator.EQUAL, cls.getName() ) { + @Override + public boolean resolve( Object owner ) { + return Typ.implementsInterface( owner.getClass(), cls ); + } + }; + } + + public static Criterion notEq( final Object name, final Object value ) { + return new Criterion( name.toString(), Operator.NOT_EQUAL, value ) { + @Override + public boolean resolve( Object owner ) { + return !fieldValue().equals(value()); + } + }; + } + + /** This has to convert values to field type. */ + public static Criterion notIn( final Object name, final Object... values ) { + return new Criterion( name.toString(), Operator.NOT_IN, values ) { + + @Override + public boolean resolve( Object owner ) { + + + Object fieldValue = fieldValue(); + if ( value == null ) { + return false; + } + return !valueSet().contains( fieldValue ); + } + }; + } + + public static Criterion in( final Object name, final Object... values ) { + return new Criterion( name.toString(), Operator.IN, values ) { + + @Override + public boolean resolve( Object owner ) { + + + Object fieldValue = fieldValue(); + if ( value == null ) { + return false; + } + return valueSet().contains(fieldValue); + } + }; + } + + public static Criterion lt( final Object name, final Object value ) { + return new Criterion( name.toString(), Operator.LESS_THAN, value ) { + @Override + public boolean resolve( Object owner ) { + + return ( ( Comparable ) value() ).compareTo( fieldValue() ) > 0; + } + }; + } + + public static Criterion lte( final Object name, final Object value ) { + return new Criterion( name.toString(), Operator.LESS_THAN_EQUAL, value ) { + @Override + public boolean resolve( Object owner ) { + return ( ( Comparable ) value() ).compareTo( fieldValue() ) >= 0; + } + }; + } + + public static Criterion gt( final Object name, final Object value ) { + return new Criterion( name.toString(), Operator.GREATER_THAN, value ) { + @Override + public boolean resolve( Object owner ) { + return ( ( Comparable ) value() ).compareTo( fieldValue() ) < 0; + } + }; + } + + public static Criterion gte( final Object name, final Object value ) { + return new Criterion( name.toString(), Operator.GREATER_THAN_EQUAL, value ) { + @Override + public boolean resolve( Object owner ) { + return ( ( Comparable ) value() ).compareTo( fieldValue() ) <= 0; + } + }; + } + + public static Criterion between( final Object name, final Object value, final Object value2 ) { + return new Criterion( name.toString(), Operator.BETWEEN, value, value2 ) { + @Override + public boolean resolve( Object owner ) { + + return ( ( Comparable ) value() ).compareTo( fieldValue() ) <= 0 && + ( ( Comparable ) value2() ).compareTo( fieldValue( ) ) >= 0; + } + }; + } + + + + public static Criterion between( Class clazz, Object name, final String svalue, final String svalue2 ) { + + FieldAccess field = null; + Criterion c = null; + + if (clazz != null) { + field = BeanUtils.getField(clazz, name.toString()); + } + + if ( field == null ) { + c = between( name, svalue, svalue2 ); + } else { + + Object o = Conversions.coerce( field.type(), svalue ); + Object o2 = Conversions.coerce( field.type(), svalue2 ); + + c = between( name, o, o2 ); + + } + + + + return c; + } + + + + public static Criterion startsWith( final Object name, final Object value ) { + return new Criterion( name.toString(), Operator.STARTS_WITH, value ) { + + @Override + public boolean resolve( Object owner ) { + + Object fieldValue = fieldValue(); + + if (fieldValue == null) { + return false; + } + + return fieldValue.toString().startsWith(value.toString()); + + } + }; + } + + public static Criterion endsWith( final Object name, final Object value ) { + return new Criterion( name.toString(), Operator.ENDS_WITH, value ) { + + @Override + public boolean resolve( Object owner ) { + + Object fieldValue = fieldValue(); + + if (fieldValue == null) { + return false; + } + + return fieldValue.toString().endsWith(value.toString()); + } + }; + } + + public static Criterion notContains( final Object name, final Object value ) { + return doContains( name, value, true ); + } + + public static Criterion contains( final Object name, final Object value ) { + return doContains( name, value, false ); + } + + private static Criterion doContains( final Object name, final Object value, final boolean not ) { + return new Criterion( name.toString(), not ? Operator.NOT_CONTAINS : Operator.CONTAINS, value ) { + + @Override + public boolean resolve( Object owner ) { + + boolean returnVal; + FieldAccess field = field(); + + Object fieldValue = fieldValue(); + Object value = value(); + if ( Typ.implementsInterface( field.type(), Typ.collection ) ) { + Collection collection = ( Collection ) fieldValue; + returnVal = collection.contains( value ); + } else if ( field.type().isArray() ) { + returnVal = false; + Object array = fieldValue; + Iterator iter = iterator( array ); + while ( iter.hasNext() ) { + Object i = iter.next(); + if ( i.equals( value ) ) { + returnVal = true; + } + } + } else { + returnVal = fieldValue.toString().contains(value.toString()); + } + return not ? !returnVal : returnVal; + } + }; + } + + public static Criterion notEmpty( final Object name ) { + return doEmpty( name, true ); + } + + public static Criterion empty( final Object name ) { + return doEmpty( name, false ); + } + + private static Criterion doEmpty( final Object name, final boolean not ) { + return new Criterion( name.toString(), not ? Operator.NOT_EMPTY : Operator.IS_EMPTY, "" ) { + String sValue = value instanceof String ? ( String ) value : value.toString(); + + @Override + public boolean resolve( Object owner ) { + + boolean returnVal; + + FieldAccess field = field(); + + Object fieldValue = fieldValue(); + + if ( Typ.implementsInterface( field.type(), Typ.collection ) ) { + Collection collection = ( Collection ) fieldValue; + returnVal = collection == null || collection.isEmpty(); + } else if ( field.type().isArray() ) { + Object array = fieldValue; + returnVal = array == null || Boon.len( array ) == 0; + } else { + returnVal = fieldValue == null || Boon.len( fieldValue ) == 0; + } + return not ? !returnVal : returnVal; + } + }; + } + + public static Criterion notNull( final Object name ) { + return doIsNull( name, true ); + } + + public static Criterion isNull( final Object name ) { + return doIsNull( name, false ); + } + + private static Criterion doIsNull( final Object name, final boolean not ) { + return new Criterion( name.toString(), not ? Operator.NOT_NULL : Operator.IS_NULL, "" ) { + + @Override + public boolean resolve( Object owner ) { + + + Object fieldValue = fieldValue( ); + + boolean isNull = fieldValue == null; + return not ? !isNull : isNull; + } + }; + } + + + // I am going to addObject date handling, but not now. TODO +// +// public static Query betweenYears(Object name, int year1, int year2) { +// +// return new Criterion(name.toString(), Operator.EQUAL, year1) { +// @Override +// public boolean resolve( , Object owner) { +// return set.equals(field.readNestedValue(owner)) ; +// } +// }; +// } + + + // TODO regex suppot +// public static Query matches(Object name, Object set) { +// return new Criterion(name.toString(), Operator.EQUAL, set) { +// @Override +// public boolean resolve( , Object owner) { +// return set.equals(field.readNestedValue(owner)) ; +// } +// }; +// } + + + // + //Boolean + + + // + // + // + // LONG + + + //Char + // + // + // + + //Int Int Int + // + // + // + public static Criterion eqInt( final Object name, final int compareValue ) { + return new Criterion( name.toString(), Operator.EQUAL, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + + return fieldInt() == compareValue; + } + + }; + } + + public static Criterion notEqInt( final Object name, final int compareValue ) { + return new Criterion( name.toString(), Operator.NOT_EQUAL, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + return fieldInt() != compareValue; + } + }; + } + + public static Criterion notInInts( final Object name, final int... compareValues ) { + return new Criterion( name.toString(), Operator.NOT_IN, compareValues ) { + @Override + public boolean resolve( final Object owner ) { + int value = fieldInt(); + + for ( int compareValue : compareValues ) { + if ( value == compareValue ) { + return false; + } + } + return true; + } + }; + } + + public static Criterion inInts( final Object name, final int... compareValues ) { + return new Criterion ( name.toString(), Operator.IN, compareValues ) { + @Override + public boolean resolve( final Object owner ) { + int value = fieldInt(); + + for ( int compareValue : compareValues ) { + if ( value == compareValue ) { + return true; + } + } + return false; + } + }; + } + + public static Criterion ltInt( final Object name, final int compareValue ) { + return new Criterion ( name.toString(), Operator.LESS_THAN, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + int value = fieldInt(); + return value < compareValue; + } + }; + } + + public static Criterion lteInt( final Object name, final int compareValue ) { + return new Criterion ( name.toString(), Operator.LESS_THAN_EQUAL, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + int value = fieldInt(); + return value <= compareValue; + } + }; + } + + public static Criterion gtInt( final Object name, final int compareValue ) { + return new Criterion ( name.toString(), Operator.GREATER_THAN, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + int value = fieldInt(); + return value > compareValue; + } + }; + } + + public static Criterion gteInt( final Object name, final int compareValue ) { + return new Criterion ( name.toString(), Operator.GREATER_THAN_EQUAL, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + int value = fieldInt(); + return value >= compareValue; + } + }; + } + + public static Criterion betweenInt( final Object name, final int start, final int stop ) { + return new Criterion ( name.toString(), Operator.BETWEEN, start, stop ) { + @Override + public boolean resolve( final Object owner ) { + int value = fieldInt(); + return value >= start && value <= stop; + } + }; + } + + //Float + // + // + // + public static Criterion eqFloat( final Object name, final float compareValue ) { + return new Criterion ( name.toString(), Operator.EQUAL, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + float value = fieldFloat(); + return value == compareValue; + } + + }; + } + + public static Criterion notEqFloat( final Object name, final float compareValue ) { + return new Criterion ( name.toString(), Operator.NOT_EQUAL, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + float value = fieldFloat(); + return value != compareValue; + } + }; + } + + public static Criterion notInFloats( final Object name, final float... compareValues ) { + return new Criterion ( name.toString(), Operator.NOT_IN, compareValues ) { + @Override + public boolean resolve( final Object owner ) { + float value = fieldFloat(); + + for ( float compareValue : compareValues ) { + if ( value == compareValue ) { + return false; + } + } + return true; + } + }; + } + + public static Criterion inFloats( final Object name, final float... compareValues ) { + return new Criterion ( name.toString(), Operator.IN, compareValues ) { + @Override + public boolean resolve( final Object owner ) { + float value = fieldFloat(); + + for ( float compareValue : compareValues ) { + if ( value == compareValue ) { + return true; + } + } + return false; + } + }; + } + + public static Criterion ltFloat( final Object name, final float compareValue ) { + return new Criterion ( name.toString(), Operator.LESS_THAN, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + float value = fieldFloat(); + return value < compareValue; + } + }; + } + + public static Criterion lteFloat( final Object name, final float compareValue ) { + return new Criterion ( name.toString(), Operator.LESS_THAN_EQUAL, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + float value = fieldFloat(); + return value <= compareValue; + } + }; + } + + public static Criterion gtFloat( final Object name, final float compareValue ) { + return new Criterion ( name.toString(), Operator.GREATER_THAN, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + float value = fieldFloat(); + return value > compareValue; + } + }; + } + + public static Criterion gteFloat( final Object name, final float compareValue ) { + return new Criterion ( name.toString(), Operator.GREATER_THAN_EQUAL, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + float value = fieldFloat(); + return value >= compareValue; + } + }; + } + + public static Criterion betweenFloat( final Object name, final float start, final float stop ) { + return new Criterion ( name.toString(), Operator.BETWEEN, start, stop ) { + @Override + public boolean resolve( final Object owner ) { + float value = fieldFloat(); + return value >= start && value <= stop; + } + }; + } + + + public static Criterion eqBoolean( final Object name, final boolean compareValue ) { + return new Criterion ( name.toString(), Operator.EQUAL, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + boolean value = fieldBoolean(); + return value == compareValue; + } + + }; + } + + public static Criterion notEqBoolean( final Object name, final boolean compareValue ) { + return new Criterion ( name.toString(), Operator.NOT_EQUAL, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + boolean value = fieldBoolean(); + return value != compareValue; + } + }; + } + + //Double + // + // + // + public static Criterion eqDouble( final Object name, final double compareValue ) { + return new Criterion ( name.toString(), Operator.EQUAL, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + double value = fieldDouble(); + return value == compareValue; + } + + }; + } + + public static Criterion notEqDouble( final Object name, final double compareValue ) { + return new Criterion ( name.toString(), Operator.NOT_EQUAL, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + double value = fieldDouble(); + return value != compareValue; + } + }; + } + + public static Criterion notInDoubles( final Object name, final double... compareValues ) { + return new Criterion ( name.toString(), Operator.NOT_IN, compareValues ) { + @Override + public boolean resolve( final Object owner ) { + double value = fieldDouble(); + + for ( double compareValue : compareValues ) { + if ( value == compareValue ) { + return false; + } + } + return true; + } + }; + } + + public static Criterion inDoubles( final Object name, final double... compareValues ) { + return new Criterion ( name.toString(), Operator.IN, compareValues ) { + @Override + public boolean resolve( final Object owner ) { + double value = fieldDouble(); + + for ( double compareValue : compareValues ) { + if ( value == compareValue ) { + return true; + } + } + return false; + } + }; + } + + public static Criterion ltDouble( final Object name, final double compareValue ) { + return new Criterion ( name.toString(), Operator.LESS_THAN, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + double value = fieldDouble(); + return value < compareValue; + } + }; + } + + public static Criterion lteDouble( final Object name, final double compareValue ) { + return new Criterion ( name.toString(), Operator.LESS_THAN_EQUAL, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + double value = fieldDouble(); + return value <= compareValue; + } + }; + } + + public static Criterion gtDouble( final Object name, final double compareValue ) { + return new Criterion ( name.toString(), Operator.GREATER_THAN, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + double value = fieldDouble(); + return value > compareValue; + } + }; + } + + public static Criterion gteDouble( final Object name, final double compareValue ) { + return new Criterion ( name.toString(), Operator.GREATER_THAN_EQUAL, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + double value = fieldDouble(); + return value >= compareValue; + } + }; + } + + public static Criterion betweenDouble( final Object name, final double start, final double stop ) { + return new Criterion ( name.toString(), Operator.BETWEEN, start, stop ) { + @Override + public boolean resolve( final Object owner ) { + double value = fieldDouble(); + return value >= start && value <= stop; + } + }; + } + + //Short + // + // + // + public static Criterion eqShort( final Object name, final short compareValue ) { + return new Criterion ( name.toString(), Operator.EQUAL, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + short value = fieldShort(); + return value == compareValue; + } + + }; + } + + public static Criterion notEqShort( final Object name, final short compareValue ) { + return new Criterion ( name.toString(), Operator.NOT_EQUAL, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + short value = fieldShort(); + return value != compareValue; + } + }; + } + + public static Criterion notInShorts( final Object name, final short... compareValues ) { + return new Criterion ( name.toString(), Operator.NOT_IN, compareValues ) { + @Override + public boolean resolve( final Object owner ) { + short value = fieldShort(); + + for ( short compareValue : compareValues ) { + if ( value == compareValue ) { + return false; + } + } + return true; + } + }; + } + + public static Criterion inShorts( final Object name, final short... compareValues ) { + return new Criterion ( name.toString(), Operator.IN, compareValues ) { + @Override + public boolean resolve( final Object owner ) { + short value = fieldShort(); + + for ( short compareValue : compareValues ) { + if ( value == compareValue ) { + return true; + } + } + return false; + } + }; + } + + public static Criterion ltShort( final Object name, final short compareValue ) { + return new Criterion ( name.toString(), Operator.LESS_THAN, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + short value = fieldShort(); + return value < compareValue; + } + }; + } + + public static Criterion lteShort( final Object name, final short compareValue ) { + return new Criterion ( name.toString(), Operator.LESS_THAN_EQUAL, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + short value = fieldShort(); + return value <= compareValue; + } + }; + } + + public static Criterion gtShort( final Object name, final short compareValue ) { + return new Criterion ( name.toString(), Operator.GREATER_THAN, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + short value = fieldShort(); + return value > compareValue; + } + }; + } + + public static Criterion gteShort( final Object name, final short compareValue ) { + return new Criterion ( name.toString(), Operator.GREATER_THAN_EQUAL, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + short value = fieldShort(); + return value >= compareValue; + } + }; + } + + public static Criterion betweenShort( final Object name, final short start, final short stop ) { + return new Criterion ( name.toString(), Operator.BETWEEN, start, stop ) { + @Override + public boolean resolve( final Object owner ) { + short value = fieldShort(); + return value >= start && value <= stop; + } + }; + } + + //Byte + // + // + // + public static Criterion eqByte( final Object name, final byte compareValue ) { + return new Criterion ( name.toString(), Operator.EQUAL, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + byte value = fieldByte(); + return value == compareValue; + } + + }; + } + + public static Criterion notEqByte( final Object name, final byte compareValue ) { + return new Criterion ( name.toString(), Operator.NOT_EQUAL, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + byte value = fieldByte(); + return value != compareValue; + } + }; + } + + public static Criterion notInBytes( final Object name, final byte... compareValues ) { + return new Criterion ( name.toString(), Operator.NOT_IN, compareValues ) { + @Override + public boolean resolve( final Object owner ) { + byte value = fieldByte(); + + for ( byte compareValue : compareValues ) { + if ( value == compareValue ) { + return false; + } + } + return true; + } + }; + } + + public static Criterion inBytes( final Object name, final byte... compareValues ) { + return new Criterion ( name.toString(), Operator.IN, compareValues ) { + @Override + public boolean resolve( final Object owner ) { + byte value = fieldByte(); + + for ( byte compareValue : compareValues ) { + if ( value == compareValue ) { + return true; + } + } + return false; + } + }; + } + + public static Criterion ltByte( final Object name, final byte compareValue ) { + return new Criterion ( name.toString(), Operator.LESS_THAN, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + byte value = fieldByte(); + return value < compareValue; + } + }; + } + + public static Criterion lteByte( final Object name, final byte compareValue ) { + return new Criterion ( name.toString(), Operator.LESS_THAN_EQUAL, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + byte value = fieldByte(); + return value <= compareValue; + } + }; + } + + public static Criterion gtByte( final Object name, final byte compareValue ) { + return new Criterion ( name.toString(), Operator.GREATER_THAN, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + byte value = fieldByte(); + return value > compareValue; + } + }; + } + + public static Criterion gteByte( final Object name, final byte compareValue ) { + return new Criterion ( name.toString(), Operator.GREATER_THAN_EQUAL, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + byte value = fieldByte(); + return value >= compareValue; + } + }; + } + + public static Criterion betweenByte( final Object name, final byte start, final byte stop ) { + return new Criterion ( name.toString(), Operator.BETWEEN, start, stop ) { + @Override + public boolean resolve( final Object owner ) { + byte value = fieldByte(); + return value >= start && value <= stop; + } + }; + } + + //Long + // + // + // + public static Criterion eqLong( final Object name, final long compareValue ) { + return new Criterion ( name.toString(), Operator.EQUAL, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + long value = fieldLong(); + return value == compareValue; + } + + }; + } + + public static Criterion notEqLong( final Object name, final long compareValue ) { + return new Criterion ( name.toString(), Operator.NOT_EQUAL, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + long value = fieldLong(); + return value != compareValue; + } + }; + } + + public static Criterion notInLongs( final Object name, final long... compareValues ) { + return new Criterion ( name.toString(), Operator.NOT_IN, compareValues ) { + @Override + public boolean resolve( final Object owner ) { + long value = fieldLong(); + + for ( long compareValue : compareValues ) { + if ( value == compareValue ) { + return false; + } + } + return true; + } + }; + } + + public static Criterion inLongs( final Object name, final long... compareValues ) { + return new Criterion ( name.toString(), Operator.IN, compareValues ) { + @Override + public boolean resolve( final Object owner ) { + long value = fieldLong(); + + for ( long compareValue : compareValues ) { + if ( value == compareValue ) { + return true; + } + } + return false; + } + }; + } + +// +// public static Criterion notInLongs( final Object name, final long... compareValues ) { +// return new Criterion ( name.toString(), Operator.NOT_IN, compareValues ) { +// @Override +// public boolean resolve( final Object owner ) { +// FieldAccess field = fields.get( name ); +// byte value = field.getLong( owner ); +// +// for ( long compareValue : compareValues ) { +// if ( value == compareValue ) { +// return false; +// } +// } +// return true; +// } +// }; +// } + + + public static Criterion ltLong( final Object name, final long compareValue ) { + return new Criterion ( name.toString(), Operator.LESS_THAN, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + long value = fieldLong(); + return value < compareValue; + } + }; + } + + public static Criterion lteLong( final Object name, final long compareValue ) { + return new Criterion ( name.toString(), Operator.LESS_THAN_EQUAL, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + long value = fieldLong(); + return value <= compareValue; + } + }; + } + + public static Criterion gtLong( final Object name, final long compareValue ) { + return new Criterion ( name.toString(), Operator.GREATER_THAN, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + long value = fieldLong(); + return value > compareValue; + } + }; + } + + public static Criterion gteLong( final Object name, final long compareValue ) { + return new Criterion ( name.toString(), Operator.GREATER_THAN_EQUAL, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + long value = fieldLong(); + return value >= compareValue; + } + }; + } + + public static Criterion betweenLong( final Object name, final long start, final long stop ) { + return new Criterion ( name.toString(), Operator.BETWEEN, start, stop ) { + @Override + public boolean resolve( final Object owner ) { + long value = fieldLong(); + return value >= start && value <= stop; + } + }; + } + + // + // + // + // + public static Criterion eqChar( final Object name, final char compareValue ) { + return new Criterion ( name.toString(), Operator.EQUAL, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + char value = fieldChar(); + return value == compareValue; + } + + }; + } + + public static Criterion notEqChar( final Object name, final char compareValue ) { + return new Criterion ( name.toString(), Operator.NOT_EQUAL, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + char value = fieldChar(); + return value != compareValue; + } + }; + } + + public static Criterion notInChars( final Object name, final char... compareValues ) { + return new Criterion ( name.toString(), Operator.NOT_IN, compareValues ) { + @Override + public boolean resolve( final Object owner ) { + char value = fieldChar(); + + for ( char compareValue : compareValues ) { + if ( value == compareValue ) { + return false; + } + } + return true; + } + }; + } + + public static Criterion inChars( final Object name, final char... compareValues ) { + return new Criterion ( name.toString(), Operator.IN, compareValues ) { + @Override + public boolean resolve( final Object owner ) { + char value = fieldChar(); + + for ( char compareValue : compareValues ) { + if ( value == compareValue ) { + return true; + } + } + return false; + } + }; + } + + public static Criterion ltChar( final Object name, final char compareValue ) { + return new Criterion ( name.toString(), Operator.LESS_THAN, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + char value = fieldChar(); + return value < compareValue; + } + }; + } + + public static Criterion lteChar( final Object name, final char compareValue ) { + return new Criterion ( name.toString(), Operator.LESS_THAN_EQUAL, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + char value = fieldChar(); + return value <= compareValue; + } + }; + } + + public static Criterion gtChar( final Object name, final char compareValue ) { + return new Criterion ( name.toString(), Operator.GREATER_THAN, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + char value = fieldChar(); + return value > compareValue; + } + }; + } + + public static Criterion gteChar( final Object name, final char compareValue ) { + return new Criterion ( name.toString(), Operator.GREATER_THAN_EQUAL, compareValue ) { + @Override + public boolean resolve( final Object owner ) { + char value = fieldChar(); + return value >= compareValue; + } + }; + } + + public static Criterion betweenChar( final Object name, final char start, final char stop ) { + return new Criterion ( name.toString(), Operator.BETWEEN, start, stop ) { + @Override + public boolean resolve( final Object owner ) { + char value = fieldChar(); + return value >= start && value <= stop; + } + }; + } + + + /** + * Make criteria configurable + * @param operator + * @param type + * @param values + * @return + */ + public static Criteria createCriteria(String name, Operator operator, TypeType type, Class classType, List values) { + + okOrDie("Values must be passed", values); + + Object value = values.get(0); + + switch (operator) { + case EQUAL: + switch (type){ + case CHAR: + return eqChar(name, Conversions.toChar(value)); + + case BYTE: + return eqByte(name, Conversions.toByte(value)); + case BOOLEAN: + return eqBoolean(name, Conversions.toBoolean(value)); + case INT: + return eqInt(name, Conversions.toInt(value)); + case FLOAT: + return eqFloat(name, Conversions.toFloat(value)); + case SHORT: + return eqShort(name, Conversions.toShort(value)); + case DOUBLE: + return eqDouble(name, Conversions.toDouble(value)); + case LONG: + return eqLong(name, Conversions.toLong(value)); + + default: + return eq(name, Conversions.coerce(classType, value)); + } + case NOT_EQUAL: + switch (type){ + case CHAR: + return notEqChar(name, Conversions.toChar(value)); + case BYTE: + return notEqByte(name, Conversions.toByte(value)); + case BOOLEAN: + return notEqBoolean(name, Conversions.toBoolean(value)); + case INT: + return notEqInt(name, Conversions.toInt(value)); + case FLOAT: + return notEqFloat(name, Conversions.toFloat(value)); + case SHORT: + return notEqShort(name, Conversions.toShort(value)); + case DOUBLE: + return notEqDouble(name, Conversions.toDouble(value)); + case LONG: + return notEqLong(name, Conversions.toLong(value)); + + default: + return notEq(name, Conversions.coerce(classType, value)); + } + case GREATER_THAN: + switch (type){ + case CHAR: + return gtChar(name, Conversions.toChar(value)); + case BYTE: + return gtByte(name, Conversions.toByte(value)); + case INT: + return gtInt(name, Conversions.toInt(value)); + case FLOAT: + return gtFloat(name, Conversions.toFloat(value)); + case SHORT: + return gtShort(name, Conversions.toShort(value)); + case DOUBLE: + return gtDouble(name, Conversions.toDouble(value)); + case LONG: + return gtLong(name, Conversions.toLong(value)); + + default: + return gt(name, Conversions.coerce(classType, value)); + } + case LESS_THAN: + switch (type){ + case CHAR: + return ltChar(name, Conversions.toChar(value)); + case BYTE: + return ltByte(name, Conversions.toByte(value)); + case INT: + return ltInt(name, Conversions.toInt(value)); + case FLOAT: + return ltFloat(name, Conversions.toFloat(value)); + case SHORT: + return ltShort(name, Conversions.toShort(value)); + case DOUBLE: + return ltDouble(name, Conversions.toDouble(value)); + case LONG: + return ltLong(name, Conversions.toLong(value)); + + default: + return lt(name, Conversions.coerce(classType, value)); + } + case GREATER_THAN_EQUAL: + switch (type){ + case CHAR: + return gteChar(name, Conversions.toChar(value)); + case BYTE: + return gteByte(name, Conversions.toByte(value)); + case INT: + return gteInt(name, Conversions.toInt(value)); + case FLOAT: + return gteFloat(name, Conversions.toFloat(value)); + case SHORT: + return gteShort(name, Conversions.toShort(value)); + case DOUBLE: + return gteDouble(name, Conversions.toDouble(value)); + case LONG: + return gteLong(name, Conversions.toLong(value)); + + default: + return gte(name, Conversions.coerce(classType, value)); + } + case LESS_THAN_EQUAL: + switch (type){ + case CHAR: + return lteChar(name, Conversions.toChar(value)); + case BYTE: + return lteByte(name, Conversions.toByte(value)); + case INT: + return lteInt(name, Conversions.toInt(value)); + case FLOAT: + return lteFloat(name, Conversions.toFloat(value)); + case SHORT: + return lteShort(name, Conversions.toShort(value)); + case DOUBLE: + return lteDouble(name, Conversions.toDouble(value)); + case LONG: + return lteLong(name, Conversions.toLong(value)); + + default: + return lte(name, Conversions.coerce(classType, value)); + } + + case BETWEEN: + + okOrDie("Values must be at least 2 in size", values.size()>1); + Object value2 = values.get(1); + switch (type){ + case CHAR: + return betweenChar(name, Conversions.toChar(value), + Conversions.toChar(value2)); + case BYTE: + return betweenByte(name, Conversions.toByte(value), + Conversions.toByte(value2)); + case INT: + return betweenInt(name, Conversions.toInt(value), + Conversions.toInt(value2)); + case FLOAT: + return betweenFloat(name, Conversions.toFloat(value), + Conversions.toFloat(value2)); + case SHORT: + return betweenShort(name, Conversions.toShort(value), + Conversions.toShort(value2)); + case DOUBLE: + return betweenDouble(name, Conversions.toDouble(value), + Conversions.toDouble(value2)); + case LONG: + return betweenLong(name, Conversions.toLong(value), + Conversions.toLong(value2)); + + default: + return between(name, Conversions.coerce(classType, value), Conversions.coerce(classType, value2)); + } + case IN: + + switch (type){ + case CHAR: + return inChars(name, Conversions.carray(values)); + case BYTE: + return inBytes(name, Conversions.barray(values)); + case INT: + return inInts(name, Conversions.iarray(values)); + case FLOAT: + return inFloats(name, Conversions.farray(values)); + case SHORT: + return inShorts(name, Conversions.sarray(values)); + case DOUBLE: + return inDoubles(name, Conversions.darray(values)); + case LONG: + return inLongs(name, Conversions.larray(values)); + + default: + return in(name, Conversions.toArray(classType, (List)values)); + } + case NOT_IN: + + switch (type){ + case CHAR: + return notInChars(name, Conversions.carray(values)); + case BYTE: + return notInBytes(name, Conversions.barray(values)); + case INT: + return notInInts(name, Conversions.iarray(values)); + case FLOAT: + return notInFloats(name, Conversions.farray(values)); + case SHORT: + return notInShorts(name, Conversions.sarray(values)); + case DOUBLE: + return notInDoubles(name, Conversions.darray(values)); + case LONG: + return notInLongs(name, Conversions.larray(values)); + + default: + return notIn(name, Conversions.toArray(classType, (List) values)); + } + + case CONTAINS: + return contains(name, Conversions.coerce(classType, value)); + + case NOT_CONTAINS: + return notContains(name, Conversions.coerce(classType, value)); + + + case STARTS_WITH: + return startsWith(name, value); + + case ENDS_WITH: + return endsWith(name, value); + + case NOT_EMPTY: + return notEmpty(name); + + case IS_EMPTY: + return empty(name); + + + + } + + + + return die(Criteria.class, "Not Found", name, operator, type, values); + } + + + /** + * Make criteria configurable + * @param operator + * @param values + * @return + */ + public static Criteria createCriteriaFromClass(String name, Class cls, Operator operator, List values) { + + if (operator == Operator.AND) { + return new Group.And(cls, values); + } else if (operator == Operator.OR) { + + return new Group.Or(cls, values); + } else { + FieldAccess fieldAccess = BeanUtils.idxField(cls, name); + return createCriteria(name, operator, fieldAccess.typeEnum(), (Class) fieldAccess.type(), values); + } + } + + + /** + * Creates criteria from a list. This is used to configure Criteria in JSON. + * @param list list to configure a single criteria + * @return criteria + */ + public static Criteria criteriaFromList(List list) { + + List args = new ArrayList(list); + + Object o = atIndex(args, -1); + if (! (o instanceof List) ) { + atIndex(args, -1, Collections.singletonList(o)); + } + + + return (Criteria) Invoker.invokeFromList(ObjectFilter.class, + "createCriteriaFromClass", args); + + } + + /** + * Converts a JSON string into a Criteria. + * @param json + * @return + */ + public static Criteria criteriaFromJson(String json) { + + return (Criteria) Invoker.invokeFromObject(ObjectFilter.class, + "createCriteriaFromClass", fromJson(json)); + + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/criteria/ProjectedSelector.java b/datastructures-json-boon/src/main/java/org/boon/criteria/ProjectedSelector.java new file mode 100644 index 0000000..862aa81 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/criteria/ProjectedSelector.java @@ -0,0 +1,563 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.criteria; + + +import org.boon.core.Typ; +import org.boon.core.reflection.fields.FieldAccess; + +import java.util.Collection; +import java.util.List; +import java.util.Map; + +import static org.boon.Lists.list; +import static org.boon.Str.join; +import static org.boon.core.Conversions.*; + +public abstract class ProjectedSelector extends Selector { + + public static List projections( ProjectedSelector... projections ) { + return list( projections ); + } + + + public static Selector max( final String fieldName ) { + return new Selector( fieldName, join( '.', "max", fieldName ) ) { + Comparable max; + + @Override + public void handleRow( int index, Map row, Object item, Map fields ) { + Comparable value = ( Comparable ) this.getPropertyValue(item, fields); + if ( max == null ) { + max = value; + } + + if ( value.compareTo( max ) > 0 ) { + max = value; + } + } + + @Override + public void handleStart( Collection results ) { + max = null; + } + + @Override + public void handleComplete( List> rows ) { + if ( rows.size() > 0 ) { + rows.get( 0 ).put( this.alias, max ); + } + } + }; + } + + + public static Selector min( final String fieldName ) { + return new Selector( fieldName, join( '.', "min", fieldName ) ) { + Comparable min; + + @Override + public void handleRow( int index, Map row, Object item, Map fields ) { + Comparable value = ( Comparable ) this.getPropertyValue(item, fields); + + if ( min == null ) { + min = value; + } + + if ( value.compareTo( min ) < 0 ) { + min = value; + } + } + + @Override + public void handleStart( Collection results ) { + min = null; + } + + @Override + public void handleComplete( List> rows ) { + if ( rows.size() > 0 ) { + rows.get( 0 ).put( this.alias, min ); + } + } + }; + } + + + public static Selector sum( final String fieldName ) { + return new Selector( fieldName, join( '.', "sum", fieldName ) ) { + long sum = 0; + + @Override + public void handleRow( int index, Map row, Object item, Map fields ) { + + FieldAccess field = fields.get( fieldName ); + if ( field.type() == Typ.intgr ) { + int value = field.getInt( item ); + sum += value; + } else { + + Comparable value = ( Comparable ) this.getPropertyValue(item, fields); + + Integer ovalue = toInt( value ); + sum += ovalue; + + } + + } + + @Override + public void handleStart( Collection results ) { + sum = Integer.MIN_VALUE; + } + + @Override + public void handleComplete( List> rows ) { + if ( rows.size() > 0 ) { + rows.get( 0 ).put( this.alias, sum ); + } + } + }; + } + + public static Selector sumFloat( final String fieldName ) { + return new Selector( fieldName, join( '.', "sum", fieldName ) ) { + double sum = 0; + + @Override + public void handleRow( int index, Map row, Object item, Map fields ) { + + FieldAccess field = fields.get( fieldName ); + if ( field.type() == Typ.flt ) { + float value = field.getFloat( item ); + sum += value; + } else { + Comparable value = ( Comparable ) this.getPropertyValue(item, fields); + + Float ovalue = toFloat( value ); + sum += ovalue; + + } + + } + + @Override + public void handleStart( Collection results ) { + sum = Integer.MIN_VALUE; + } + + @Override + public void handleComplete( List> rows ) { + if ( rows.size() > 0 ) { + rows.get( 0 ).put( this.alias, sum ); + } + + } + }; + } + + + public static Selector maxInt( final String fieldName ) { + return new Selector( fieldName, join( '.', "max", fieldName ) ) { + int max = Integer.MIN_VALUE; + + @Override + public void handleRow( int index, Map row, Object item, Map fields ) { + FieldAccess field = fields.get( fieldName ); + if ( field.type() == Typ.intgr ) { + int value = field.getInt( item ); + if ( value > max ) { + max = value; + } + } else { + Integer ovalue = toInt( field.getValue( item ) ); + if ( ovalue > max ) { + max = ovalue; + } + + } + + + } + + @Override + public void handleStart( Collection results ) { + max = Integer.MIN_VALUE; + } + + @Override + public void handleComplete( List> rows ) { + if ( rows.size() > 0 ) { + rows.get( 0 ).put( this.alias, max ); + } + } + }; + } + + public static Selector maxLong( final String fieldName ) { + return new Selector( fieldName, join( '.', "max", fieldName ) ) { + long max = Long.MIN_VALUE; + + @Override + public void handleRow( int index, Map row, Object item, Map fields ) { + FieldAccess field = fields.get( fieldName ); + if ( field.type() == Typ.lng ) { + long value = field.getLong( item ); + if ( value > max ) { + max = value; + } + } else { + Long ovalue = toLong( field.getValue( item ) ); + if ( ovalue > max ) { + max = ovalue; + } + + } + + + } + + @Override + public void handleStart( Collection results ) { + max = Long.MIN_VALUE; + } + + @Override + public void handleComplete( List> rows ) { + if ( rows.size() > 0 ) { + rows.get( 0 ).put( this.alias, max ); + } + + } + }; + } + + public static Selector minInt( final String fieldName ) { + return new Selector( fieldName, join( '.', "min", fieldName ) ) { + int min = Integer.MAX_VALUE; + + @Override + public void handleRow( int index, Map row, Object item, Map fields ) { + FieldAccess field = fields.get( fieldName ); + if ( field.type() == Typ.intgr ) { + int value = field.getInt( item ); + if ( value < min ) { + min = value; + } + } else { + Integer ovalue = toInt( field.getValue( item ) ); + if ( ovalue < min ) { + min = ovalue; + } + + } + } + + @Override + public void handleStart( Collection results ) { + min = Integer.MAX_VALUE; + } + + @Override + public void handleComplete( List> rows ) { + if ( rows.size() > 0 ) { + rows.get( 0 ).put( this.alias, min ); + } + + } + }; + } + + public static Selector minLong( final String fieldName ) { + return new Selector( fieldName, join( '.', "min", fieldName ) ) { + long min = Long.MAX_VALUE; + + @Override + public void handleRow( int index, Map row, Object item, Map fields ) { + FieldAccess field = fields.get( fieldName ); + if ( field.type() == Typ.lng ) { + long value = field.getLong( item ); + if ( value < min ) { + min = value; + } + } else { + Long ovalue = toLong( field.getValue( item ) ); + if ( ovalue < min ) { + min = ovalue; + } + + } + } + + @Override + public void handleStart( Collection results ) { + min = Long.MAX_VALUE; + } + + @Override + public void handleComplete( List> rows ) { + if ( rows.size() > 0 ) { + rows.get( 0 ).put( this.alias, min ); + } + + } + }; + } + + public static Selector maxFloat( final String fieldName ) { + return new Selector( fieldName, join( '.', "max", fieldName ) ) { + float max = Float.MIN_VALUE; + + @Override + public void handleRow( int index, Map row, Object item, Map fields ) { + FieldAccess field = fields.get( fieldName ); + if ( field.type() == Typ.flt ) { + float value = field.getFloat( item ); + if ( value > max ) { + max = value; + } + } else { + Float ovalue = toFloat( field.getValue( item ) ); + if ( ovalue > max ) { + max = ovalue; + } + + } + } + + @Override + public void handleStart( Collection results ) { + max = Float.MIN_VALUE; + } + + @Override + public void handleComplete( List> rows ) { + if ( rows.size() > 0 ) { + rows.get( 0 ).put( this.alias, max ); + } + } + }; + } + + public static Selector minFloat( final String fieldName ) { + return new Selector( fieldName, join( '.', "min", fieldName ) ) { + + float min = Float.MAX_VALUE; + + @Override + public void handleRow( int index, Map row, Object item, Map fields ) { + FieldAccess field = fields.get( fieldName ); + + if ( field.type() == Typ.flt ) { + float value = field.getFloat( item ); + if ( value > min ) { + min = value; + } + } else { + Float ovalue = toFloat( field.getValue( item ) ); + if ( ovalue > min ) { + min = ovalue; + } + + } + } + + @Override + public void handleStart( Collection results ) { + min = Float.MAX_VALUE; + } + + @Override + public void handleComplete( List> rows ) { + if ( rows.size() > 0 ) { + rows.get( 0 ).put( this.alias, min ); + } + + } + }; + } + + public static Selector maxDouble( final String fieldName ) { + return new Selector( fieldName, join( '.', "max", fieldName ) ) { + double max = Double.MIN_VALUE; + + @Override + public void handleRow( int index, Map row, Object item, Map fields ) { + double value = fields.get( fieldName ).getDouble( item ); + if ( value > max ) { + max = value; + } + } + + @Override + public void handleStart( Collection results ) { + max = Double.MIN_VALUE; + } + + @Override + public void handleComplete( List> rows ) { + if ( rows.size() > 0 ) { + rows.get( 0 ).put( alias, max ); + } + } + }; + } + + public static Selector minDouble( final String fieldName ) { + return new Selector( fieldName, join( '.', "min", fieldName ) ) { + double min = Double.MAX_VALUE; + + @Override + public void handleRow( int index, Map row, Object item, Map fields ) { + double value = fields.get( fieldName ).getDouble( item ); + if ( value < min ) { + min = value; + } + } + + @Override + public void handleStart( Collection results ) { + min = Double.MIN_VALUE; + } + + @Override + public void handleComplete( List> rows ) { + if ( rows.size() > 0 ) { + rows.get( 0 ).put( alias, min ); + } + } + }; + } + + public static Selector minShort( final String fieldName ) { + return new Selector( fieldName, join( '.', "min", fieldName ) ) { + short min = Short.MAX_VALUE; + + @Override + public void handleRow( int index, Map row, Object item, Map fields ) { + short value = fields.get( fieldName ).getShort( item ); + if ( value < min ) { + min = value; + } + } + + @Override + public void handleStart( Collection results ) { + min = Short.MAX_VALUE; + } + + @Override + public void handleComplete( List> rows ) { + if ( rows.size() > 0 ) { + rows.get( 0 ).put( alias, min ); + } + } + }; + } + + public static Selector maxShort( final String fieldName ) { + return new Selector( fieldName, join( '.', "max", fieldName ) ) { + short max = Short.MIN_VALUE; + + @Override + public void handleRow( int index, Map row, Object item, Map fields ) { + short value = fields.get( fieldName ).getShort( item ); + if ( value > max ) { + max = value; + } + } + + @Override + public void handleStart( Collection results ) { + max = Short.MIN_VALUE; + } + + @Override + public void handleComplete( List> rows ) { + if ( rows.size() > 0 ) { + rows.get( 0 ).put( alias, max ); + } + } + }; + } + + public static Selector maxByte( final String fieldName ) { + return new Selector( fieldName, join( '.', "max", fieldName ) ) { + byte max = Byte.MIN_VALUE; + + @Override + public void handleRow( int index, Map row, Object item, Map fields ) { + byte value = fields.get( fieldName ).getByte( item ); + if ( value > max ) { + max = value; + } + } + + @Override + public void handleStart( Collection results ) { + max = Byte.MIN_VALUE; + } + + @Override + public void handleComplete( List> rows ) { + if ( rows.size() > 0 ) { + rows.get( 0 ).put( alias, max ); + } + } + }; + } + + + public static Selector minByte( final String fieldName ) { + return new Selector( fieldName, join( '.', "min", fieldName ) ) { + byte min = Byte.MAX_VALUE; + + @Override + public void handleRow( int index, Map row, Object item, Map fields ) { + byte value = fields.get( fieldName ).getByte( item ); + if ( value < min ) { + min = value; + } + } + + @Override + public void handleStart( Collection results ) { + min = Byte.MIN_VALUE; + } + + @Override + public void handleComplete( List> rows ) { + if ( rows.size() > 0 ) { + rows.get( 0 ).put( alias, min ); + } + } + }; + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/criteria/Selector.java b/datastructures-json-boon/src/main/java/org/boon/criteria/Selector.java new file mode 100644 index 0000000..e4a0f31 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/criteria/Selector.java @@ -0,0 +1,490 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.criteria; + + +import org.boon.core.Function; +import org.boon.core.reflection.BeanUtils; +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.template.Template; + +import java.util.*; + +import static org.boon.Lists.list; +import static org.boon.Boon.joinBy; + +public abstract class Selector { + + + + + /** + * Performs collections from the results. + * @param selectors list of selectors + * @param results results we are selecting from + * @return map of selected items per row + */ + public static void collectFrom(List selectors, Collection results) { + + if (results.size() == 0) { + return; + } + Map fields = BeanUtils.getFieldsFromObject(results.iterator().next()); + + collectFrom(selectors, results, fields); + } + + /** + * Performs collections from the results. + * @param selectors list of selectors + * @param results results we are selecting from + * @param fields fields + * @return map of selected items per row + */ + public static void collectFrom(List selectors, Collection results, Map fields) { + + + for ( Selector s : selectors ) { + s.handleStart( results ); + } + + + int index = 0; + for ( Object item : results ) { + for ( Selector s : selectors ) { + s.handleRow( index, null, item, fields ); + } + index++; + } + + for ( Selector s : selectors ) { + s.handleComplete( null ); + } + + } + + /** + * Performs the actual selection from the results. + * @param selectors list of selectors + * @param results results we are selecting from + * @param List of items + * @return map of selected items per row + */ + public static List> selectFrom(List selectors, Collection results) { + + if (results.size() == 0) { + return Collections.EMPTY_LIST; + } + Map fields = BeanUtils.getFieldsFromObject(results.iterator().next()); + + return selectFrom(selectors, results, fields); + } + + /** + * Performs the actual selection from the results. + * @param selectors list of selectors + * @param results results we are selecting from + * @param fields fields + * @param List of items + * @return map of selected items per row + */ + public static List> selectFrom(List selectors, Collection results, Map fields) { + List> rows = new ArrayList<>( results.size() ); + + + for ( Selector s : selectors ) { + s.handleStart( results ); + } + + + int index = 0; + for ( ITEM item : results ) { + Map row = new LinkedHashMap<>(); + for ( Selector s : selectors ) { + s.handleRow( index, row, item, fields ); + } + index++; + rows.add( row ); + } + + for ( Selector s : selectors ) { + s.handleComplete( rows ); + } + + return rows; + } + + + /** Create a list of selectors. + * + * @param selects array of selectors + * @return + */ + public static List selects( Selector... selects ) { + return list( selects ); + } + + protected String name; + + protected String alias; + + protected final boolean path; + + + /** + * Is this a property path? + * @param prop property + * @return true or false + */ + private static boolean isPropPath(String prop) { + return BeanUtils.isPropPath(prop); + } + + /** + * Default constructor. + */ + public Selector() { + path = false; + } + + + /** + * + * @param nameOrPath name of property path + * + * @param alias alias of property path + */ + public Selector( String nameOrPath, String alias ) { + name = nameOrPath; + this.alias = alias == null ? nameOrPath : alias; + path = isPropPath(name); + } + + + /** + * + * @param nameOrPath name of property path + * + */ + public Selector( String nameOrPath ) { + name = nameOrPath; + alias = name; + path = isPropPath(name); + } + + + public String getName() { + return name; + } + + + protected void getPropertyValueAndPutIntoRow(Map row, Object item, Map fields) { + if (!path && fields!=null) { + row.put( this.alias, fields.get( this.name ).getValue( item ) ); + } else { + row.put( this.alias, BeanUtils.atIndex(item, name) ); + } + } + + + protected Object getPropertyValue(Object item, Map fields) { + if (!path && fields!=null ) { + return fields.get( this.name ).getValue( item ); + } else { + return BeanUtils.atIndex(item, name); + } + } + + + /** + * Allows you to select a property or property path. + * @param propName name of property or property path + * @return returns a Selector + */ + public static Selector select( final String propName ) { + return new Selector( propName, propName ) { + + @Override + public void handleRow( int index, Map row, + Object item, Map fields ) { + + getPropertyValueAndPutIntoRow(row, item, fields); + } + + + @Override + public void handleStart( Collection results ) { + } + + @Override + public void handleComplete( List> rows ) { + } + }; + } + + /** + * Selects but allows having a different alias for the output. + * @param propName name of property or property path to select + * @param alias name that the value will be selected as. + * @return selector + */ + public static Selector selectAs( final String propName, final String alias ) { + return new Selector( propName, alias ) { + + @Override + public void handleRow( int index, Map row, + Object item, Map fields ) { + + + getPropertyValueAndPutIntoRow(row, item, fields); + } + + @Override + public void handleStart( Collection results ) { + } + + @Override + public void handleComplete( List> rows ) { + } + }; + } + + + + /** + * Selects but allows having a different alias for the output. + * @param propName name of property or property path to select + * @param alias name that the value will be selected as. + * @param transform Function that allows you to convert from an object into another object + * @return selector + * */ + public static Selector selectAs( final String propName, final String alias, + final Function transform) { + return new Selector( propName, alias ) { + + @Override + public void handleRow( int index, Map row, + Object item, Map fields ) { + + if (!path && fields!=null) { + row.put( this.name, transform.apply(fields.get( this.name ).getValue( item )) ); + } else { + row.put( alias, transform.apply(BeanUtils.atIndex( item, propName )) ); + } + } + + @Override + public void handleStart( Collection results ) { + } + + @Override + public void handleComplete( List> rows ) { + } + }; + } + + /** + * Selects but allows having a different alias for the output. + \ * @param alias name that the value will be selected as. + * @param transform Function that allows you to convert from an object into another object + * @return selector + * */ + public static Selector selectAsTemplate( final String alias, + final String template, + final Template transform) { + return new Selector( alias, alias ) { + + @Override + public void handleRow( int index, Map row, + Object item, Map fields ) { + + if (!path && fields!=null) { + row.put( this.name, transform.replace(template, item) ); + } else { + row.put( alias, transform.replace(template, item) ); + } + } + + @Override + public void handleStart( Collection results ) { + } + + @Override + public void handleComplete( List> rows ) { + } + }; + } + + public static Selector toStr( final String name ) { + return new Selector( name + ".toString()", null ) { + @Override + public void handleRow( int index, Map row, Object item, Map fields ) { + Object selected = fields.get( this.name ).getValue( item ); + row.put( this.name, selected == null ? "" : selected.toString() ); + } + + @Override + public void handleStart( Collection results ) { + } + + @Override + public void handleComplete( List> rows ) { + } + }; + } + + public static Selector toStr() { + return new Selector( "toString()", null ) { + @Override + public void handleRow( int index, Map row, Object item, Map fields ) { + row.put( this.name, item.toString() ); + } + + @Override + public void handleStart( Collection results ) { + } + + @Override + public void handleComplete( List> rows ) { + } + }; + } + + @Deprecated + public static Selector select( final String... ppath ) { + return new Selector( joinBy( '.', ppath ), null ) { + int index = 0; + + @Override + public void handleRow( int rowNum, Map row, + Object item, Map fields ) { + + Object o = BeanUtils.getPropByPath( item, ppath ); + + + row.put( this.name, o ); + } + + + @Override + public void handleStart( Collection results ) { + } + + @Override + public void handleComplete( List> rows ) { + } + }; + } + + @Deprecated + public static Selector toStr( final String... ppath ) { + return new Selector( joinBy( '.', ppath ) + ".toString()", null ) { + int index = 0; + + @Override + public void handleRow( int rowNum, Map row, + Object item, Map fields ) { + + Object o = BeanUtils.getPropByPath( item, ppath ); + + + row.put( this.name, o == null ? "" : o.toString() ); + } + + + @Override + public void handleStart( Collection results ) { + } + + @Override + public void handleComplete( List> rows ) { + } + }; + } + + @Deprecated + public static Selector selectPropPath( final String... ppath ) { + return new Selector( joinBy( '.', ppath ), null ) { + @Override + public void handleRow( int rowNum, Map row, + Object item, Map fields ) { + + Object o = BeanUtils.getPropByPath( item, ppath ); + + row.put( this.name, o ); + } + + @Override + public void handleStart( Collection results ) { + } + + @Override + public void handleComplete( List> rows ) { + } + }; + } + + /** + * Just grabs the index of the result set. + * @return + */ + public static Selector rowId() { + + return new Selector( "rowId", null ) { + @Override + public void handleRow( int index, Map row, Object item, Map fields ) { + row.put( name, index ); + } + + @Override + public void handleStart( Collection results ) { + } + + @Override + public void handleComplete( List> rows ) { + } + }; + } + + + + + + public abstract void handleRow( int index, Map row, + Object item, + Map fields ); + + public abstract void handleStart( Collection results ); + + public abstract void handleComplete( List> rows ); + + public String getAlias() { + return alias; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/criteria/Update.java b/datastructures-json-boon/src/main/java/org/boon/criteria/Update.java new file mode 100644 index 0000000..fce66d6 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/criteria/Update.java @@ -0,0 +1,153 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.criteria; + +import org.boon.Lists; +import org.boon.datarepo.ObjectEditor; + +import java.io.Serializable; +import java.util.List; + + +public abstract class Update implements Serializable { + + private String name; + + public String getName() { + return name; + } + + + public abstract void doSet( ObjectEditor repo, Object item ); + + public static Update set( final String name, final int value ) { + return new Update() { + @Override + public void doSet( ObjectEditor repo, Object item ) { + repo.modify( item, name, value ); + } + }; + } + + public static Update delete( ) { + return new Update() { + @Override + public void doSet( ObjectEditor repo, Object item ) { + repo.delete( item ); + } + }; + } + + public static Update incInt( final String name ) { + return new Update() { + @Override + public void doSet( ObjectEditor repo, Object item ) { + int v = repo.getInt( item, name ); + v++; + repo.modify( item, name, v ); + } + }; + } + + public static Update incPercent( final String name, final int percent ) { + return new Update() { + + //Avoid the lookupWithDefault, pass the fields. + @Override + public void doSet( ObjectEditor repo, Object item ) { + int value = repo.getInt( item, name ); + double dvalue = value; + double dprecent = percent / 100.0; + dvalue = dvalue + ( dvalue * dprecent ); + value = ( int ) dvalue; + repo.modify( item, name, value ); + } + }; + } + + public static Update set( final String name, final long value ) { + return new Update() { + @Override + public void doSet( ObjectEditor repo, Object item ) { + repo.modify( item, name, value ); + } + }; + } + + public static Update set( final String name, final Object value ) { + return new Update() { + @Override + public void doSet( ObjectEditor repo, Object item ) { + repo.modify( item, name, value ); + } + }; + } + + public static Update set( final String name, final byte value ) { + return new Update() { + @Override + public void doSet( ObjectEditor repo, Object item ) { + repo.modify( item, name, value ); + } + }; + } + + public static Update set( final String name, final float value ) { + return new Update() { + @Override + public void doSet( ObjectEditor repo, Object item ) { + repo.modify( item, name, value ); + } + }; + } + + public static Update set( final String name, final char value ) { + return new Update() { + @Override + public void doSet( ObjectEditor repo, Object item ) { + repo.modify( item, name, value ); + } + }; + } + + public static Update set( final String name, final String value ) { + return new Update() { + @Override + public void doSet( ObjectEditor repo, Object item ) { + repo.modify( item, name, value ); + } + }; + } + + public static List update( Update... values ) { + return Lists.list( values ); + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/criteria/internal/Criteria.java b/datastructures-json-boon/src/main/java/org/boon/criteria/internal/Criteria.java new file mode 100644 index 0000000..e063af1 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/criteria/internal/Criteria.java @@ -0,0 +1,41 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.criteria.internal; + + +import org.boon.core.Predicate; + + +public abstract class Criteria implements Predicate { + + + + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/criteria/internal/Group.java b/datastructures-json-boon/src/main/java/org/boon/criteria/internal/Group.java new file mode 100644 index 0000000..75f43ef --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/criteria/internal/Group.java @@ -0,0 +1,149 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.criteria.internal; + +import org.boon.Lists; +import org.boon.core.reflection.Invoker; +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.criteria.ObjectFilter; +import org.boon.primitive.CharBuf; + +import java.util.*; + +import static org.boon.Lists.atIndex; + +public abstract class Group extends Criteria { + + protected List expressions; + + + private Grouping grouping = Grouping.AND; + + + + + public Group( Grouping grouping, Criteria... expressions ) { + this.grouping = grouping; + this.expressions = Lists.list(expressions); + + } + + + + public Group( Grouping grouping, Class cls, List list ) { + this.grouping = grouping; + + ArrayList criteriaArrayList = new ArrayList(); + List> lists = (List>)list; + for (List args : lists) { + args = new ArrayList(args); + args.add(1, cls); + + Object o = atIndex(args, -1); + if (! (o instanceof List) ) { + atIndex(args, -1, Collections.singletonList(o)); + } + Criteria criteria = (Criteria) Invoker.invokeFromObject(ObjectFilter.class, "createCriteriaFromClass", args); + criteriaArrayList.add(criteria); + } + this.expressions = criteriaArrayList; + + } + + + public Grouping getGrouping() { + return grouping; + } + + + public List getExpressions() { + return expressions; + } + + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + + Group group = (Group) o; + + if (expressions != null ? !expressions.equals(group.expressions) : group.expressions != null) return false; + if (grouping != group.grouping) return false; + + return true; + } + + + + + public static class And extends Group { + + public And( Criteria... expressions ) { + super( Grouping.AND, expressions ); + } + + public And( Class cls, List list ) { + super( Grouping.AND, cls, list ); + } + + @Override + public boolean test( Object owner ) { + for ( Criteria c : expressions ) { + if ( !c.test( owner ) ) { + return false; + } + } + return true; + } + } + + public static class Or extends Group { + + public Or( Criteria... expressions ) { + super( Grouping.OR, expressions ); + } + + public Or( Class cls, List list ) { + super( Grouping.OR, cls, list ); + } + + + @Override + public boolean test( Object owner ) { + for ( Criteria c : expressions ) { + if ( c.test( owner ) ) { + return true; + } + } + return false; + } + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/criteria/internal/Grouping.java b/datastructures-json-boon/src/main/java/org/boon/criteria/internal/Grouping.java new file mode 100644 index 0000000..9ea021e --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/criteria/internal/Grouping.java @@ -0,0 +1,34 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.criteria.internal; + +public enum Grouping { + AND, + OR +} diff --git a/datastructures-json-boon/src/main/java/org/boon/criteria/internal/Not.java b/datastructures-json-boon/src/main/java/org/boon/criteria/internal/Not.java new file mode 100644 index 0000000..04b4402 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/criteria/internal/Not.java @@ -0,0 +1,45 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.criteria.internal; + + +public class Not extends Criteria { + + private final Criteria expression; + + public Not( Criteria expression ) { + this.expression = expression; + } + + + @Override + public boolean test( Object owner ) { + return !this.expression.test( owner ); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/criteria/internal/Operator.java b/datastructures-json-boon/src/main/java/org/boon/criteria/internal/Operator.java new file mode 100644 index 0000000..cb0ce04 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/criteria/internal/Operator.java @@ -0,0 +1,63 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.criteria.internal; + +public enum Operator { + EQUAL, //Indexed + NOT_EQUAL, //Not Indexed + + //Not implemented + NOT_NULL, //Not Indexed + IS_NULL, //Not Indexed + IS_EMPTY, //Not Indexed + NOT_EMPTY, //Not indexed + + + LESS_THAN, //Indexed + LESS_THAN_EQUAL, //Indexed + GREATER_THAN, //Indexed + GREATER_THAN_EQUAL,//Indexed + BETWEEN, //Indexed for strings + + + STARTS_WITH, //Indexed for strings + ENDS_WITH, //Not indexed + CONTAINS, //Not indexed + NOT_CONTAINS,//Not indexed + MATCHES, //Not implemented yet + IN, //Not indexed + NOT_IN, //Not Indexed + NOT, + + AND, //FOR JSON CONFIG + OR + + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/criteria/internal/QueryFactory.java b/datastructures-json-boon/src/main/java/org/boon/criteria/internal/QueryFactory.java new file mode 100644 index 0000000..b778fce --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/criteria/internal/QueryFactory.java @@ -0,0 +1,70 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.criteria.internal; + + +import org.boon.criteria.ObjectFilter; + +import java.util.ArrayList; +import java.util.Collection; +import java.util.Collections; +import java.util.List; + + +public class QueryFactory { + + public static boolean test( Object obj, Criteria exp ) { + return exp.test( obj ); + } + + public static boolean andTest( Object obj, Criteria... exp ) { + return ObjectFilter.and( exp ).test( obj ); + } + + public static boolean orTest( Object obj, Criteria... exp ) { + return ObjectFilter.or( exp ).test( obj ); + } + + + public static List filter( Collection items, Criteria exp ) { + if ( items.size() == 0 ) { + return Collections.EMPTY_LIST; + } + + List results = new ArrayList<>(); + for ( T item : items ) { + if ( exp.test( item ) ) { + results.add( item ); + } + } + return results; + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/criteria/internal/Visitor.java b/datastructures-json-boon/src/main/java/org/boon/criteria/internal/Visitor.java new file mode 100644 index 0000000..f5d8157 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/criteria/internal/Visitor.java @@ -0,0 +1,38 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.criteria.internal; + +import java.util.List; + +public interface Visitor { + + public abstract void visit( KEY key, ITEM item, Object currentProperty, List propertyPath ); + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/Bag.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/Bag.java new file mode 100644 index 0000000..a771225 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/Bag.java @@ -0,0 +1,54 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ +package org.boon.datarepo; + +import java.util.Collection; +import java.util.List; + +/** + * Holds stuff + * It is like a listStream but not guaranteed to be ordered. + * + * @param TypeType of Stuff you want to hold. + * @author Rick Hightower + */ +public interface Bag { + boolean add( ITEM item ); + + boolean delete( ITEM item ); + + List all(); + + int size(); + + Collection toCollection(); + + void clear(); + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/CollectionDecorator.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/CollectionDecorator.java new file mode 100644 index 0000000..08c9b5b --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/CollectionDecorator.java @@ -0,0 +1,50 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ +package org.boon.datarepo; + +import java.util.Collection; + + +/** + * Decorates a collection. + *

+ * Adds SearchableCollection to a collection. + *

+ *

+ *

+ *

+ * + * @see Collections.QList + * @see Collections.QSet + * @see Collections + */ +public interface CollectionDecorator { + SearchableCollection searchCollection(); + + Collection collection(); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/Collections.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/Collections.java new file mode 100644 index 0000000..cac6b34 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/Collections.java @@ -0,0 +1,495 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ +package org.boon.datarepo; + +import org.boon.core.Typ; +import org.boon.core.reflection.BeanUtils; +import org.boon.core.reflection.Fields; +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.criteria.internal.Criteria; +import org.boon.datarepo.impl.decorators.FilterWithSimpleCache; +import org.boon.datarepo.spi.SPIFactory; +import org.boon.datarepo.spi.SearchIndex; +import org.boon.datarepo.spi.SearchableCollectionComposer; +import org.boon.core.Function; + +import java.util.*; + +import static org.boon.Exceptions.requireNonNull; + + +/** + * Wraps regular collections in data repo searchable collections. + */ +public class Collections { + + + /** + * $q turns a listStream into a querying listStream. + * + * @param list the listStream you want to convert + * @param classes classes you want to be able to criteria. + * @param The type this criteria listStream will return + * @return generic listStream decorated with criteria features. + */ + public static List $q( final List list, Class... classes ) { + return listQuery( list, true, true, classes ); + } + + /** + * $c turns a listStream back into a regular listStream. + * This is the reverse of $q. + * + * @param list the listStream + * @param the type of the listStream. + * @return the new decorated listStream. + * @see Collections#plainList(List) + */ + public static List $c( final List list ) { + return plainList( list ); + } + + /** + * $c turns a listStream back into a regular listStream. + * This is the reverse of $q. + * + * @param list the listStream + * @param the type of the listStream. + * @return the new decorated listStream. + * @see Collections#$c(List) + */ + private static List plainList( List list ) { + if ( list instanceof QList ) { + return ( ( QList ) list ).list; + } else { + return list; + } + } + + + /** + * listQuery turns a listStream into a querying listStream. + * + * @param list the listStream you want to convert + * @param The type this criteria listStream will return + * @return generic listStream decorated with criteria features. + * @see Collections#$q(List, Class[]) + */ + public static List listQuery( final List list ) { + return listQuery( list, true, true ); + } + + /** + * listQuery turns a listStream into a querying listStream. + * + * @param list the listStream you want to convert + * @param classes classes you want to be able to criteria. + * @param The type this criteria listStream will return + * @param useField use the field instead of the property + * @param useUnSafe use unsafe + * @param classes listStream of classes that we can criteria against, these can be component classes + * @return generic listStream decorated with criteria features. + */ + public static List listQuery( final List list, boolean useField, boolean useUnSafe, Class... classes ) { + if ( list == null || list.size() == 0 ) { + return list; + } + + SearchableCollectionComposer query = null; + + if ( classes == null || classes.length == 0 ) { + Class clazz = list.get( 0 ).getClass(); + + query = getSearchableCollectionComposer( list, useField, useUnSafe, clazz ); + + } else { + query = getSearchableCollectionComposer( list, useField, useUnSafe, classes ); + + } + + return new QList( list, ( SearchableCollection ) query ); + } + + /** + * Decorates a set with additional criteria capabilities. + * + * @param set set to decorate + * @param generic type + * @return new decorated listStream + */ + public static Set $q( final Set set ) { + return setQuery( set, true, true ); + } + + /** + * Un-decorates a set with additional criteria capabilities. + * + * @param set set to un-decorate + * @param generic type + * @return new decorated listStream + */ + public static Set $c( final Set set ) { + return plainSet( set ); + } + + + /** + * Un-decorates a set with additional criteria capabilities. + * + * @param set set to un-decorate + * @param generic type + * @return new decorated listStream + */ + private static Set plainSet( Set set ) { + if ( set instanceof QSet ) { + return ( ( QSet ) set ).set; + } else { + return set; + } + } + + /** + * Decorates a set with additional criteria capabilities. + * + * @param set set to un-decorate + * @param generic type + * @return new decorated listStream + */ + public static Set setQuery( final Set set ) { + return setQuery( set, true, true ); + } + + /** + * Decorates a set with all sorts of chocolaty richness + * + * @param set + * @param useField + * @param useUnSafe + * @param + * @return + */ + public static Set setQuery( final Set set, boolean useField, boolean useUnSafe ) { + if ( set == null || set.size() == 0 ) { + return set; + } + + Class clazz = set.iterator().next().getClass(); + + SearchableCollectionComposer query = getSearchableCollectionComposer( set, useField, useUnSafe, clazz ); + + return new QSet( set, ( SearchableCollection ) query ); + } + + /** + * This is the internal method that does it all. :) + * + * @param set + * @param useField + * @param useUnSafe + * @param classes + * @param + * @return + */ + private static SearchableCollectionComposer getSearchableCollectionComposer( Collection set, boolean useField, boolean useUnSafe, Class... classes ) { + SearchableCollectionComposer query = SPIFactory.getSearchableCollectionFactory().get(); + + + Map fields = new LinkedHashMap<>(); + + for ( Class cls : classes ) { + + Map fieldsSubType + = BeanUtils.getFieldsFromObject( cls ); + + for ( String sKey : fieldsSubType.keySet() ) { + if ( !fields.containsKey( sKey ) ) { + fields.put( sKey, fieldsSubType.get( sKey ) ); + } + } + + + } + + String primaryKey = findPrimaryKey( fields ); + FieldAccess field = fields.get( primaryKey ); + Function keyGetter = createKeyGetter( field ); + + query.setFields( fields ); + query.setPrimaryKeyGetter( keyGetter ); + query.setPrimaryKeyName( primaryKey ); + Filter filter = SPIFactory.getFilterFactory().get(); + query.setFilter( filter ); + + + LookupIndex index = SPIFactory.getUniqueLookupIndexFactory().apply( fields.get( primaryKey ).type() ); + index.setKeyGetter( keyGetter ); + ( ( SearchableCollection ) query ).addLookupIndex( primaryKey, index ); + + + for ( FieldAccess f : fields.values() ) { + if ( f.name().equals( primaryKey ) ) { + continue; + } + if ( Typ.isBasicType( f.type() ) ) { + configIndexes( ( SearchableCollection ) query, f.name(), fields ); + } + } + + query.init(); + + query.setFilter( new FilterWithSimpleCache( filter ) ); + + ( ( SearchableCollection ) query ).addAll( set ); + return query; + } + + + /** + * Allow you to criteria a criteria-able listStream. + * + * @param list the listStream you want to criteria + * @param expressions array of expressions + * @param the type of the listStream + * @return the criteria results or an empty listStream if the listStream was not a criteria-able listStream. + */ + public static List query( final List list, Criteria... expressions ) { + if ( list instanceof QList ) { + QList qlist = ( QList ) list; + return qlist.searchCollection().query( expressions ); + } else { + throw new DataRepoException( "Not a criteria-able listStream." ); + } + } + + /** + * Allow you to criteria a criteria-able listStream. + * + * @param list the listStream you want to criteria + * @param expressions array of expressions + * @param the type of the listStream + * @return the criteria results or an empty listStream if the listStream was not a criteria-able listStream. + */ + public static List sortedQuery( final List list, String sortBy, Criteria... expressions ) { + if ( list instanceof QList ) { + QList qlist = ( QList ) list; + return qlist.searchCollection().sortedQuery( sortBy, expressions ); + } else { + throw new DataRepoException( "Not a criteria-able listStream." ); + } + } + + + /** + * Allow you to criteria a criteria-able listStream. + * + * @param set the set you want to criteria + * @param expressions array of expressions + * @param the type of the listStream + * @return the criteria results or an empty listStream if the listStream was not a criteria-able listStream. + */ + public static List query( final Set set, Criteria... expressions ) { + if ( set instanceof QSet ) { + QSet qset = ( QSet ) set; + return qset.searchCollection().query( expressions ); + } + return null; + } + + /** + * Allow you to criteria a criteria-able listStream. + * + * @param set the set you want to criteria + * @param expressions array of expressions + * @param the type of the listStream + * @return the criteria results or an empty listStream if the listStream was not a criteria-able listStream. + */ + public static List sortedQuery( final Set set, String sortBy, Criteria... expressions ) { + if ( set instanceof QSet ) { + QSet qset = ( QSet ) set; + return qset.searchCollection().sortedQuery( sortBy, expressions ); + } + return null; + } + + /** + * placeholder for a generic way to discover a primary key. + * Right now the primarykey must be called id. + * + * @param fields fields we are going to search for the primary key + * @return + */ + private static String findPrimaryKey( Map fields ) { + return "id"; + } + + + /** + * Create key getter. + * + * @param field + * @return + */ + private static Function createKeyGetter( final FieldAccess field ) { + + requireNonNull( field, "field cannot be null" ); + return new Function() { + @Override + public Object apply( Object o ) { + + if ( Fields.hasField( o.getClass(), field.name() ) ) { + return field.getValue( o ); + } else { + return null; + } + } + }; + } + + + /** + * Helper class that holds an inner set and a searchable collection. + * TODO we need a navigable version of this. + * + * @param + */ + static class QSet extends AbstractSet implements CollectionDecorator { + final Set set; + final SearchableCollection searchCollection; + + QSet( Set set, SearchableCollection searchCollection ) { + this.set = set; + this.searchCollection = searchCollection; + } + + @Override + public boolean add( T item ) { + searchCollection.add( item ); + return set.add( item ); + } + + @Override + public boolean remove( Object item ) { + searchCollection.delete( ( T ) item ); + return set.remove( item ); + } + + + @Override + public Iterator iterator() { + return set.iterator(); + } + + @Override + public int size() { + return set.size(); + } + + @Override + public SearchableCollection searchCollection() { + return searchCollection; + } + + @Override + public Collection collection() { + return set; + } + } + + /** + * @param + */ + static class QList extends AbstractList implements CollectionDecorator { + List list; + SearchableCollection query; + + QList( List list, SearchableCollection query ) { + this.list = list; + this.query = query; + } + + @Override + public boolean add( T item ) { + query.add( item ); + return list.add( item ); + } + + @Override + public boolean remove( Object item ) { + query.delete( ( T ) item ); + return list.remove( item ); + } + + + @Override + public T get( int index ) { + return list.get( index ); + } + + + @Override + public int size() { + return list.size(); + } + + + @Override + public SearchableCollection searchCollection() { + return query; + } + + @Override + public Collection collection() { + return this.list; + } + } + + + /** + * Configures the indexes. + * + * @param query the search criteria + * @param prop the prop + * @param fields the reflected fields + */ + private static void configIndexes( SearchableCollection query, String prop, + Map fields ) { + + SearchIndex searchIndex = SPIFactory.getSearchIndexFactory().apply( fields.get( prop ).type() ); + searchIndex.init(); + Function kg = createKeyGetter( fields.get( prop ) ); + searchIndex.setKeyGetter( kg ); + query.addSearchIndex( prop, searchIndex ); + + LookupIndex index = SPIFactory.getLookupIndexFactory().apply( fields.get( prop ).type() ); + index.setKeyGetter( kg ); + query.addLookupIndex( prop, index ); + + } + + +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/DataRepoException.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/DataRepoException.java new file mode 100644 index 0000000..ff1b679 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/DataRepoException.java @@ -0,0 +1,55 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ +package org.boon.datarepo; + +/** + * Generic DataRepoException + */ +public class DataRepoException extends RuntimeException { + public DataRepoException() { + super(); //To change body of overridden methods use File | Settings | File Templates. + } + + public DataRepoException( String message ) { + super( message ); //To change body of overridden methods use File | Settings | File Templates. + } + + public DataRepoException( String message, Throwable cause ) { + super( message, cause ); //To change body of overridden methods use File | Settings | File Templates. + } + + public DataRepoException( Throwable cause ) { + super( cause ); //To change body of overridden methods use File | Settings | File Templates. + } + + protected DataRepoException( String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace ) { + super( message, cause, enableSuppression, writableStackTrace ); + } + + +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/Filter.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/Filter.java new file mode 100644 index 0000000..4b250af --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/Filter.java @@ -0,0 +1,44 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ +package org.boon.datarepo; + +import org.boon.criteria.internal.Criteria; + + +/** + * Allows you to search an data repo. + * + * @author Rick Hightower + */ +public interface Filter { + + ResultSet filter( Criteria... expressions ); + + void invalidate(); + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/LookupIndex.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/LookupIndex.java new file mode 100644 index 0000000..f5dd6cc --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/LookupIndex.java @@ -0,0 +1,60 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ +package org.boon.datarepo; + +import org.boon.core.Function; + +import java.util.List; + +/** + * Creates a simple lookupWithDefault index (like a hash map). + * + * @param The key + * @param The item + */ +public interface LookupIndex extends Bag { + ITEM get( KEY key ); + + void setKeyGetter( Function keyGetter ); + + List getAll( KEY key ); + + boolean deleteByKey( KEY key ); + + boolean isPrimaryKeyOnly(); + + void setInputKeyTransformer( Function func ); + + void setBucketSize( int size ); + + void init(); + + boolean has( KEY key ); + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/ObjectEditor.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/ObjectEditor.java new file mode 100644 index 0000000..95bf5e2 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/ObjectEditor.java @@ -0,0 +1,190 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ +package org.boon.datarepo; + +import org.boon.criteria.Update; + +import java.util.Collection; +import java.util.List; + +public interface ObjectEditor extends Bag { + + + ITEM get( KEY key ); + + KEY getKey( ITEM item ); + + + void put( ITEM item ); + + void removeByKey( KEY key ); + + void removeAll( ITEM... items ); + + void removeAllAsync( Collection items ); + + void addAll( ITEM... items ); + + void addAllAsync( Collection items ); + + void modifyAll( ITEM... items ); + + void modifyAll( Collection items ); + + + void modify( ITEM item ); + + void update( ITEM item ); + + /* Does basic conversion */ + void modifyByValue( ITEM item, String property, String value ); + + void modify( ITEM item, String property, Object value ); + + void modify( ITEM item, String property, int value ); + + void modify( ITEM item, String property, long value ); + + void modify( ITEM item, String property, char value ); + + void modify( ITEM item, String property, short value ); + + void modify( ITEM item, String property, byte value ); + + void modify( ITEM item, String property, float value ); + + void modify( ITEM item, String property, double value ); + + void modify( ITEM item, Update... values ); + + void updateByValue( KEY key, String property, String value ); + + void update( KEY key, String property, Object value ); + + void update( KEY key, String property, int value ); + + void update( KEY key, String property, long value ); + + void update( KEY key, String property, char value ); + + void update( KEY key, String property, short value ); + + void update( KEY key, String property, byte value ); + + void update( KEY key, String property, float value ); + + void update( KEY key, String property, double value ); + + void update( KEY key, Update... values ); + + + boolean compareAndUpdate( KEY key, String property, Object compare, Object value ); + + boolean compareAndUpdate( KEY key, String property, int compare, int value ); + + boolean compareAndUpdate( KEY key, String property, long compare, long value ); + + boolean compareAndUpdate( KEY key, String property, char compare, char value ); + + boolean compareAndUpdate( KEY key, String property, short compare, short value ); + + boolean compareAndUpdate( KEY key, String property, byte compare, byte value ); + + boolean compareAndUpdate( KEY key, String property, float compare, float value ); + + boolean compareAndUpdate( KEY key, String property, double compare, double value ); + + + boolean compareAndIncrement( KEY key, String property, int compare ); + + boolean compareAndIncrement( KEY key, String property, long compare ); + + boolean compareAndIncrement( KEY key, String property, short compare ); + + boolean compareAndIncrement( KEY key, String property, byte compare ); + + + void addAll( List items ); + + + Object readNestedValue( KEY key, String... properties ); + + int readNestedInt( KEY key, String... properties ); + + short readNestedShort( KEY key, String... properties ); + + char readNestedChar( KEY key, String... properties ); + + byte readNestedByte( KEY key, String... properties ); + + double readNestedDouble( KEY key, String... properties ); + + float readNestedFloat( KEY key, String... properties ); + + long readNestedLong( KEY key, String... properties ); + + + Object readObject( KEY key, String property ); + + T readValue( KEY key, String property, Class type ); + + int readInt( KEY key, String property ); + + long readLong( KEY key, String property ); + + char readChar( KEY key, String property ); + + short readShort( KEY key, String property ); + + byte readByte( KEY key, String property ); + + float readFloat( KEY key, String property ); + + double readDouble( KEY key, String property ); + + + Object getObject( ITEM item, String property ); + + T getValue( ITEM item, String property, Class type ); + + int getInt( ITEM item, String property ); + + long getLong( ITEM item, String property ); + + char getChar( ITEM item, String property ); + + short getShort( ITEM item, String property ); + + byte getByte( ITEM item, String property ); + + float getFloat( ITEM item, String property ); + + double getDouble( ITEM item, String property ); + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/PlanStep.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/PlanStep.java new file mode 100644 index 0000000..e71d6d6 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/PlanStep.java @@ -0,0 +1,34 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo; + +public class PlanStep { + String type; + String details; +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/PlanSteps.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/PlanSteps.java new file mode 100644 index 0000000..5a2cdf9 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/PlanSteps.java @@ -0,0 +1,34 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo; + +public enum PlanSteps { + USE_INDEX, + LINEAR_SEARCH; +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/Repo.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/Repo.java new file mode 100644 index 0000000..856c1b8 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/Repo.java @@ -0,0 +1,68 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ +package org.boon.datarepo; + + +import org.boon.criteria.internal.Criteria; +import org.boon.criteria.Update; + +import java.util.List; + +/** + * Repo, A Repo is like a DAO object or a Repository object. + * + * @param + * @param //SearchableCollection, + */ +public interface Repo extends ObjectEditor, SearchableCollection { + + + Repo init(List items); + + void updateByFilter( String property, Object value, Criteria... expressions ); + + void updateByFilterUsingValue( String property, String value, Criteria... expressions ); + + void updateByFilter( String property, int value, Criteria... expressions ); + + void updateByFilter( String property, long value, Criteria... expressions ); + + void updateByFilter( String property, char value, Criteria... expressions ); + + void updateByFilter( String property, short value, Criteria... expressions ); + + void updateByFilter( String property, byte value, Criteria... expressions ); + + void updateByFilter( String property, float value, Criteria... expressions ); + + void updateByFilter( String property, double value, Criteria... expressions ); + + void updateByFilter( List values, Criteria... expressions ); + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/RepoBuilder.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/RepoBuilder.java new file mode 100644 index 0000000..18bd734 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/RepoBuilder.java @@ -0,0 +1,122 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ +package org.boon.datarepo; + +import org.boon.datarepo.modification.ModificationListener; +import org.boon.datarepo.spi.RepoComposer; +import org.boon.datarepo.spi.SearchIndex; +import org.boon.core.Function; +import org.boon.core.Supplier; + +import java.util.Comparator; +import java.util.Locale; +import java.util.logging.Level; + +/** + * Provides a builder for Repos. + */ +public interface RepoBuilder { + + + public RepoBuilder searchIndexFactory( Function factory ); + + public RepoBuilder lookupIndexFactory( Function factory ); + + public RepoBuilder uniqueLookupIndexFactory( Function factory ); + + public RepoBuilder uniqueSearchIndexFactory( Function factory ); + + public RepoBuilder repoFactory( Supplier factory ); + + public RepoBuilder primaryKey( String propertyName ); + + public RepoBuilder lookupIndex( String propertyName ); + + public RepoBuilder uniqueLookupIndex( String propertyName ); + + public RepoBuilder searchIndex( String propertyName ); + + public RepoBuilder uniqueSearchIndex( String propertyName ); + + public RepoBuilder collateIndex( String propertyName, Comparator collator ); + + public RepoBuilder collateIndex( String propertyName ); + + public RepoBuilder collateIndex( String propertyName, Locale locale ); + + public RepoBuilder keyGetter( String propertyName, Function key ); + + public RepoBuilder filterFactory( Supplier factory ); + + + public RepoBuilder usePropertyForAccess( boolean useProperty ); + + public RepoBuilder useFieldForAccess( boolean useField ); + + public RepoBuilder useUnsafe( boolean useUnSafe ); + + public RepoBuilder nullChecks( boolean nullChecks ); + + public RepoBuilder addLogging( boolean logging ); + + public RepoBuilder cloneEdits( boolean cloneEdits ); + + public RepoBuilder useCache(); + + public RepoBuilder storeKeyInIndexOnly(); + + RepoBuilder events( ModificationListener... listeners ); + + RepoBuilder debug(); + + + Repo build( Class key, Class clazz, Class... all ); + + + RepoBuilder level( Level info ); + + RepoBuilder upperCaseIndex( String property ); + + RepoBuilder lowerCaseIndex( String property ); + + RepoBuilder camelCaseIndex( String property ); + + RepoBuilder underBarCaseIndex( String property ); + + @Deprecated + RepoBuilder nestedIndex( String... propertyPath ); + + RepoBuilder indexHierarchy(); + + RepoBuilder indexBucketSize( String propertyName, int size ); + + RepoBuilder hashCodeOptimizationOn(); + + + RepoBuilder removeDuplication( boolean removeDuplication ); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/Repos.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/Repos.java new file mode 100644 index 0000000..e7c895c --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/Repos.java @@ -0,0 +1,71 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ +package org.boon.datarepo; + +import org.boon.datarepo.spi.RepoComposer; +import org.boon.datarepo.spi.SPIFactory; +import org.boon.datarepo.spi.SearchIndex; +import org.boon.core.Function; +import org.boon.core.Supplier; + +public class Repos { + + public static void setRepoBuilder( Supplier factory ) { + SPIFactory.setRepoBuilderFactory( factory ); + } + + public static void setDefaultSearchIndexFactory( Function factory ) { + SPIFactory.setSearchIndexFactory( factory ); + } + + public static void setLookupIndexFactory( Function factory ) { + SPIFactory.setLookupIndexFactory( factory ); + } + + public static void setUniqueLookupIndexFactory( Function factory ) { + SPIFactory.setUniqueLookupIndexFactory( factory ); + } + + public static void setUniqueSearchIndexFactory( Function factory ) { + SPIFactory.setUniqueSearchIndexFactory( factory ); + } + + public static void setRepoFactory( Supplier factory ) { + SPIFactory.setRepoFactory( factory ); + } + + public static void setFilterFactory( Supplier factory ) { + SPIFactory.setFilterFactory( factory ); + } + + public static RepoBuilder builder() { + SPIFactory.init(); + return SPIFactory.getRepoBuilderFactory().get(); + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/ResultSet.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/ResultSet.java new file mode 100644 index 0000000..5e6dba7 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/ResultSet.java @@ -0,0 +1,130 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo; + +import org.boon.criteria.internal.Criteria; +import org.boon.criteria.Selector; +import org.boon.sort.Sort; + +import java.util.Collection; +import java.util.List; +import java.util.Map; +import java.util.Set; + +public interface ResultSet extends Iterable { + + ResultSet expectOne(); + + + ResultSet expectOne( Class clz ); + + + ResultSet expectMany(); + + ResultSet expectNone(); + + ResultSet expectOneOrMany(); + + ResultSet removeDuplication(); + + ResultSet sort( Sort sort ); + + Collection filter( Criteria criteria ); + + ResultSet>> select( Selector... selectors ); + + int[] selectInts( Selector selector ); + + float[] selectFloats( Selector selector ); + + short[] selectShorts( Selector selector ); + + double[] selectDoubles( Selector selector ); + + byte[] selectBytes( Selector selector ); + + char[] selectChars( Selector selector ); + + Object[] selectObjects( Selector selector ); + + OBJ[] selectObjects( Class cls, Selector selector ); + + ResultSet selectObjectsAsResultSet( Class cls, Selector selector ); + + + Collection asCollection(); + + String asJSONString(); + + List> asListOfMaps(); + + List asList(); + + + List asList(Class cls); + + Set asSet(); + + List queryPlan(); + + T firstItem(); + + Map firstMap(); + + String firstJSON(); + + int firstInt( Selector selector ); + + float firstFloat( Selector selector ); + + short firstShort( Selector selector ); + + double firstDouble( Selector selector ); + + byte firstByte( Selector selector ); + + char firstChar( Selector selector ); + + Object firstObject( Selector selector ); + + OBJ firstObject( Class cls, Selector selector ); + + + List paginate( int start, int size ); + + List> paginateMaps( int start, int size ); + + String paginateJSON( int start, int size ); + + //Size can vary if you allow duplication. + //The size can change after removeDuplication. + int size(); + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/SearchableCollection.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/SearchableCollection.java new file mode 100644 index 0000000..48c18d9 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/SearchableCollection.java @@ -0,0 +1,131 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ +package org.boon.datarepo; + +import org.boon.criteria.internal.Criteria; +import org.boon.criteria.Selector; +import org.boon.sort.Sort; +import org.boon.criteria.internal.Visitor; +import org.boon.datarepo.spi.SearchIndex; + +import java.util.Collection; +import java.util.List; +import java.util.Map; + +public interface SearchableCollection extends Collection { + + ITEM get( KEY key ); + + KEY getKey( ITEM item ); + + void invalidateIndex( String property, ITEM item ); + + void validateIndex( String property, ITEM item ); + + public void validateIndexes( ITEM item ); + + int count( KEY key, String property, int value ); + + int count( KEY key, String property, short value ); + + int count( KEY key, String property, byte value ); + + int count( KEY key, String property, long value ); + + int count( KEY key, String property, char value ); + + int count( KEY key, String property, float value ); + + int count( KEY key, String property, double value ); + + int count( KEY key, String property, Object value ); + + T max( KEY key, String property, Class type ); + + String maxString( KEY key, String property ); + + Number maxNumber( KEY key, String property ); + + int maxInt( KEY key, String property ); + + long maxLong( KEY key, String property ); + + double maxDouble( KEY key, String property ); + + T min( KEY key, String property, Class type ); + + String minString( KEY key, String property ); + + Number minNumber( KEY key, String property ); + + int minInt( KEY key, String property ); + + long minLong( KEY key, String property ); + + double minDouble( KEY key, String property ); + + + ResultSet results( Criteria... expressions ); + + List query( Criteria... expressions ); + + + List query( List expressions ); + + List sortedQuery( String sortBy, Criteria... expressions ); + + List sortedQuery( Sort sortBy, Criteria... expressions ); + + List> queryAsMaps( Criteria... expressions ); + + List> query( List selectors, Criteria... expressions ); + + List> sortedQuery( String sortBy, List selectors, Criteria... expressions ); + + List> sortedQuery( Sort sortBy, List selectors, Criteria... expressions ); + + void query( Visitor visitor, Criteria... expressions ); + + void sortedQuery( Visitor visitor, String sortBy, Criteria... expressions ); + + void sortedQuery( Visitor visitor, Sort sortBy, Criteria... expressions ); + + + boolean delete( ITEM item ); + + + void addSearchIndex( String name, SearchIndex si ); + + void addLookupIndex( String name, LookupIndex si ); + + + List all(); + + void removeByKey( KEY key ); + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/FilterDefault.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/FilterDefault.java new file mode 100644 index 0000000..c42ba26 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/FilterDefault.java @@ -0,0 +1,432 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.impl; + +import org.boon.Sets; +import org.boon.core.Conversions; +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.criteria.ObjectFilter; +import org.boon.criteria.Criterion; +import org.boon.criteria.internal.*; +import org.boon.datarepo.Filter; +import org.boon.datarepo.LookupIndex; +import org.boon.datarepo.ResultSet; +import org.boon.datarepo.SearchableCollection; +import org.boon.datarepo.spi.FilterComposer; +import org.boon.datarepo.spi.ResultSetInternal; +import org.boon.datarepo.spi.SearchIndex; + +import java.util.Collections; +import java.util.List; +import java.util.Map; +import java.util.Set; + +import static org.boon.criteria.ObjectFilter.instanceOf; +import static org.boon.criteria.ObjectFilter.not; + +/** + * This class should be renamed mother of all beasts. + * This class is the reason I have no hair. + * It implements the first cut of a decent criteria plan. + * + * @author Rick Hightower + */ +public class FilterDefault implements Filter, FilterComposer { + + private Set indexedOperators = + Sets.set( Operator.BETWEEN, Operator.EQUAL, Operator.STARTS_WITH, + Operator.GREATER_THAN, Operator.GREATER_THAN_EQUAL, + Operator.LESS_THAN, Operator.LESS_THAN_EQUAL ); + + private Map fields; + private SearchableCollection searchableCollection; + private Map searchIndexMap; + private Map lookupIndexMap; + + + /** + * Seems innocent enough. Give me some criteria expressions, + * and i will give you a nice results set. + * + * @param expressions listStream of expressions + * @return result set + * @see ResultSet + * @see Criteria + */ + @Override + public ResultSet filter( Criteria... expressions ) { + try { + return mainQueryPlan( expressions ); + } finally { + } + } + + + /** + * This is the main criteria plan in case the name was not + * obvious. + * + * @param expressions + * @return + * @author Rick Hightower + */ + private ResultSet mainQueryPlan( Criteria[] expressions ) { + + + + ResultSetInternal results = new ResultSetImpl( this.fields ); + + if (expressions == null || expressions.length == 0) { + results.addResults ( searchableCollection.all() ); + } + + /* I am sure this looked easy to read when I wrote it. + * If there is only one expression and first expression is a group then + * the group is that first expression otherwise wrap + * all of the expressions in an and clause. */ + Group group = expressions.length == + 1 && expressions[ 0 ] instanceof Group + ? ( Group ) expressions[ 0 ] : ObjectFilter.and( expressions ); + + /** + * Run the filter on the group. + */ + doFilterGroup( group, results ); + + return results; + } + + + private void orPlanWithIndex( Criterion criterion, ResultSetInternal results ) { + + + Operator operator = criterion.getOperator(); + if ( operator == Operator.EQUAL && lookupIndexMap.get( criterion.getName() ) != null ) { + doFilterWithIndex( criterion, fields, results ); + } else if ( this.isIndexed( criterion.getName() ) && Sets.in( operator, indexedOperators ) ) { + doFilterWithIndex( criterion, fields, results ); + } else { + List list = QueryFactory.filter( this.searchableCollection.all(), criterion ); + results.addResults( list ); + } + + } + + @Override + public void invalidate() { + + } + + /** + * Run the filter on the group. + * + * @param group here is the group + * @param results here are the results + */ + private void doFilterGroup( Group group, ResultSetInternal results ) { + /* The group was n or group so handle it that way. */ + if ( group.getGrouping() == Grouping.OR ) { + /* nice short method name, or. */ + or( group.getExpressions(), fields, results ); + } else { + /* create a result internal (why?), wrap the fields in the result set + internal, and pass that to the and method. + */ + ResultSetInternal resultsForAnd = new ResultSetImpl( fields ); + and( group.getExpressions(), fields, resultsForAnd ); + results.addResults( resultsForAnd.asList() ); + } + } + + private void or( List expressions, + Map fields, ResultSetInternal results ) { + + + for ( Criteria expression : expressions ) { + if ( expression instanceof Criterion ) { + orPlanWithIndex( ( Criterion ) expression, results ); + } else if ( expression instanceof Group ) { + doFilterGroup( ( Group ) expression, results ); + } + } + } + + + private void and( List expressions, Map fields, ResultSetInternal resultSet ) { + + Set expressionSet = Sets.set( expressions ); + + + boolean foundIndex = applyIndexedFiltersForAnd( expressions, fields, expressionSet, resultSet ); + + resultSet.andResults(); + applyLinearSearch(expressionSet, resultSet, foundIndex); + applyGroups( expressionSet, resultSet ); + + + } + + + private boolean applyIndexedFiltersForAnd( List expressions, Map fields, Set expressionSet, ResultSetInternal resultSet ) { + Criterion criteria = null; + boolean foundIndex = false; + + + if ( expressions.size() == 1 && expressions.get(0) instanceof Criterion ) { + criteria = ( Criterion ) expressions.get(0); + foundIndex = doFilterWithIndex( criteria, fields, resultSet ); + if ( foundIndex ) { + expressionSet.remove( criteria ); + } + + return foundIndex; + } + + int foundCount =0 ; + + for ( Criteria expression : expressions ) { + /* + * See if the criteria has an index + */ + if ( expression instanceof Criterion ) { + criteria = ( Criterion ) expression; + + + if (doFilterWithIndex( criteria, fields, resultSet )) { + foundCount++; + } + + } + } + return foundCount > 0; + } + + +// private List applyGroupsWithIndexesForAnd(List items, Set expressionSet) { +// +// List listOfSets = new ArrayList(); +// listOfSets.addObject(new HashSet(items)); +// +// List expressionsWeEvaluated = new ArrayList<>(); +// +// outer: +// for (Query expression : expressionSet) { +// +// if (expression instanceof Group) { +// Group group = (Group) expression; +// for (Query innerExpression : group.getExpressions()) { +// //Don't allow non-index Criterion to avoid too many scans +// if (innerExpression instanceof Criterion) { +// Criterion c = (Criterion) innerExpression; +// if (!this.isIndexed(c.name())) { +// continue outer; +// } +// } +// //Don't allow any ors to avoid long scans, at this point +// //This is simple for now, it does not recusively look for indexes, future one should. +// else if (innerExpression instanceof Group) { +// continue; +// } +// } +// +// +// /* +// At this point, this group should be indexed only +// */ +// List listStream = doFilterGroup((Group) expression); +// if (listStream.size() > 0) { +// listOfSets.addObject(new HashSet(listStream)); +// expressionsWeEvaluated.addObject(expression); +// } +// } +// } +// List results = reduceToResults(listOfSets); +// expressionSet.removeAll(expressionsWeEvaluated); +// +// return results; +// } + + + private void applyGroups( Set expressionSet, ResultSetInternal resultSet ) { + + if ( expressionSet.size() == 0 ) { + return; + } + + + for ( Criteria expression : expressionSet ) { + + if ( expression instanceof Group ) { + doFilterGroup( ( Group ) expression, resultSet ); + } + } + } + + + private void applyLinearSearch( Set expressionSet, ResultSetInternal resultSet, boolean foundIndex ) { + + if ( expressionSet.size() == 0 ) { + return; + } + + Criteria[] expressions = Conversions.array( Criteria.class, QueryFactory.filter( expressionSet, not( instanceOf( Group.class ) ) ) ); + + if ( foundIndex ) { + resultSet.filterAndPrune( ObjectFilter.and( expressions ) ); + } else { + resultSet.addResults( + QueryFactory.filter( searchableCollection.all(), + ObjectFilter.and( expressions ) ) + ); + } + for ( Criteria expression : expressions ) { + expressionSet.remove( expression ); + } + + } + + + private boolean isIndexed( String name ) { + return searchIndexMap.containsKey( name ); + } + + private boolean doFilterWithIndex( Criterion criterion, Map fields, ResultSetInternal resultSet ) { + + + boolean indexed = indexedOperators.contains( criterion.getOperator() ); + + if ( !indexed ) { + return false; + } + + + String name = criterion.getName(); + Object value = criterion.getValue(); + Operator operator = criterion.getOperator(); + SearchIndex searchIndex = searchIndexMap.get( name ); + LookupIndex lookupIndex = lookupIndexMap.get( name ); + List resultList = null; + boolean foundIndex; + + if ( lookupIndex != null && operator == Operator.EQUAL ) { + foundIndex = true; + resultList = lookupIndex.getAll( value ); + if ( resultList != null ) { + resultSet.addResults( resultList ); + return foundIndex; + } else { + resultSet.addResults( Collections.EMPTY_LIST ); + return foundIndex; + } + } + + if ( searchIndex == null ) { + return false; + } + + foundIndex = true; + + + switch ( operator ) { + case EQUAL: + resultList = processResultsFromIndex( searchIndex, searchIndex.findEquals( value ) ); + break; + case STARTS_WITH: + resultList = searchIndex.findStartsWith( value ); + break; + + case GREATER_THAN: + resultList = searchIndex.findGreaterThan( value ); + break; + + case GREATER_THAN_EQUAL: + resultList = searchIndex.findGreaterThanEqual( value ); + break; + + case LESS_THAN: + resultList = searchIndex.findLessThan( value ); + break; + + case LESS_THAN_EQUAL: + resultList = searchIndex.findLessThanEqual( value ); + break; + + case BETWEEN: + resultList = searchIndex.findBetween( criterion.getValue(), criterion.getValues()[ 1 ] ); + break; + + + } + + criterion.clean(); + + if ( resultList != null ) { + resultSet.addResults( resultList ); + return foundIndex; + } else { + return foundIndex; + } + + } + + private List processResultsFromIndex( SearchIndex searchIndex, List results ) { + if ( searchIndex.isPrimaryKeyOnly() ) { + //TODO iterate through listStream and lookupWithDefault items from keys, and put those in the actual results + return null; + } else { + return results; + } + } + + + @Override + public void setSearchableCollection( SearchableCollection searchableCollection ) { + this.searchableCollection = searchableCollection; + } + + @Override + public void setFields( Map fields ) { + this.fields = fields; + } + + @Override + public void setSearchIndexMap( Map searchIndexMap ) { + this.searchIndexMap = searchIndexMap; + } + + @Override + public void setLookupIndexMap( Map lookupIndexMap ) { + this.lookupIndexMap = lookupIndexMap; + } + + @Override + public void init() { + + } +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/ObjectEditorDefault.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/ObjectEditorDefault.java new file mode 100644 index 0000000..c6ced5e --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/ObjectEditorDefault.java @@ -0,0 +1,824 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.impl; + +import org.boon.core.reflection.BeanUtils; +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.criteria.Update; +import org.boon.datarepo.DataRepoException; +import org.boon.datarepo.ObjectEditor; +import org.boon.datarepo.SearchableCollection; +import org.boon.datarepo.spi.ObjectEditorComposer; + +import java.util.*; +import java.util.logging.Level; +import java.util.logging.Logger; + + +public class ObjectEditorDefault implements ObjectEditorComposer, ObjectEditor { + + private Logger log = Logger.getLogger( ObjectEditorDefault.class.getName() ); + + protected SearchableCollection query; + protected Map fields = new LinkedHashMap<>(); + private boolean hashCodeOptimization; + + + private boolean lookupAndExcept; + + + public void put( ITEM item ) { + if ( !this.add( item ) ) { + throw new DataRepoException( "Unable to addObject item " + item ); + } + } + + public void removeByKey( KEY key ) { + query.removeByKey( key ); + } + + public void removeAll( ITEM... items ) { + for ( ITEM item : items ) { + this.delete( item ); + } + } + + public void removeAllAsync( Collection items ) { + for ( ITEM item : items ) { + this.delete( item ); + } + } + + public void addAll( ITEM... items ) { + for ( ITEM item : items ) { + this.add( item ); + } + } + + + public void addAllAsync( Collection items ) { + query.addAll( items ); + } + + public void modifyAll( ITEM... items ) { + for ( ITEM item : items ) { + this.modify( item ); + } + } + + public void modifyAll( Collection items ) { + for ( ITEM item : items ) { + this.modify( item ); + } + } + + public void modify( ITEM item ) { + + /** See if we have an original. */ + KEY key = query.getKey( item ); + ITEM oldItem = this.doGet( key ); + + if ( oldItem != null ) { + delete( oldItem ); + } else { + log.warning( String.format( "An original item was not in the repo %s", item ) ); + } + + this.query.validateIndexes( item ); + + if ( log.isLoggable( Level.FINE ) ) { + log.fine( String.format( "This item %s was modified like this %s", oldItem, item ) ); + } + + + } + + @Override + public void update( ITEM item ) { + KEY key = query.getKey( item ); + ITEM oldItem = this.doGet( key ); + + if ( oldItem == null ) { + throw new DataRepoException( "Unable to perform update, the object does not exist" ); + } + this.query.delete( oldItem ); + this.query.validateIndexes( item ); + + if ( log.isLoggable( Level.FINE ) ) { + log.fine( String.format( "This item %s was modified like this %s", oldItem, item ) ); + } + + } + + public void modify( ITEM item, String property, Object value ) { + item = lookupAndExpect( item ); + query.invalidateIndex( property, item ); + fields.get( property ).setObject( item, value ); + optimizeHash( item ); + query.validateIndex( property, item ); + } + + private void optimizeHash( ITEM item ) { + if ( !hashCodeOptimization ) { + return; + } + FieldAccess hashCode = fields.get( "_hashCode" ); + if ( hashCode == null ) { + return; + } else { + hashCode.setInt( item, -1 ); + hashCode.setInt( item, item.hashCode() ); + } + } + + public void modifyByValue( ITEM item, String property, String value ) { + item = lookupAndExpect( item ); + query.invalidateIndex( property, item ); + fields.get( property ).setValue( item, value ); + optimizeHash( item ); + query.validateIndex( property, item ); + + } + + public void modify( ITEM item, String property, int value ) { + item = lookupAndExpect( item ); + query.invalidateIndex( property, item ); + fields.get( property ).setInt( item, value ); + optimizeHash( item ); + query.validateIndex( property, item ); + } + + public void modify( ITEM item, String property, long value ) { + item = lookupAndExpect( item ); + query.invalidateIndex( property, item ); + fields.get( property ).setLong( item, value ); + optimizeHash( item ); + query.validateIndex( property, item ); + } + + public void modify( ITEM item, String property, char value ) { + item = lookupAndExpect( item ); + query.invalidateIndex( property, item ); + fields.get( property ).setChar( item, value ); + optimizeHash( item ); + query.validateIndex( property, item ); + } + + public void modify( ITEM item, String property, short value ) { + item = lookupAndExpect( item ); + query.invalidateIndex( property, item ); + fields.get( property ).setShort( item, value ); + optimizeHash( item ); + query.validateIndex( property, item ); + } + + public void modify( ITEM item, String property, byte value ) { + item = lookupAndExpect( item ); + query.invalidateIndex( property, item ); + fields.get( property ).setByte( item, value ); + optimizeHash( item ); + query.validateIndex( property, item ); + } + + public void modify( ITEM item, String property, float value ) { + item = lookupAndExpect( item ); + query.invalidateIndex( property, item ); + fields.get( property ).setFloat( item, value ); + optimizeHash( item ); + query.validateIndex( property, item ); + } + + public void modify( ITEM item, String property, double value ) { + item = lookupAndExpect( item ); + query.invalidateIndex( property, item ); + fields.get( property ).setDouble( item, value ); + optimizeHash( item ); + query.validateIndex( property, item ); + } + + public void modify( ITEM item, Update... values ) { + item = lookupAndExpect( item ); + for ( Update value : values ) { + query.invalidateIndex( value.getName(), item ); + value.doSet( this, item ); + optimizeHash( item ); + query.validateIndex( value.getName(), item ); + } + + } + + public void update( KEY key, String property, Object value ) { + ITEM item = lookupAndExpectByKey( key ); + query.invalidateIndex( property, item ); + final FieldAccess fieldAccess = fields.get(property); + if (fieldAccess==null) { + BeanUtils.idx(item, property, value); + } else { + fieldAccess.setObject(item, value); + } + optimizeHash( item ); + query.validateIndex( property, item ); + } + + public void updateByValue( KEY key, String property, String value ) { + ITEM item = lookupAndExpectByKey( key ); + query.invalidateIndex( property, item ); + final FieldAccess fieldAccess = fields.get(property); + if (fieldAccess==null) { + BeanUtils.idx(item, property, value); + } else { + fieldAccess.setValue(item, value); + } + + optimizeHash( item ); + query.validateIndex( property, item ); + } + + public void update( KEY key, String property, int value ) { + ITEM item = lookupAndExpectByKey( key ); + query.invalidateIndex( property, item ); + + final FieldAccess fieldAccess = fields.get(property); + if (fieldAccess==null) { + BeanUtils.idx(item, property, value); + } else { + fieldAccess.setInt( item, value ); + } + + optimizeHash( item ); + query.validateIndex( property, item ); + } + + public void update( KEY key, String property, long value ) { + ITEM item = lookupAndExpectByKey( key ); + query.invalidateIndex( property, item ); + + + final FieldAccess fieldAccess = fields.get(property); + if (fieldAccess==null) { + BeanUtils.idx(item, property, value); + } else { + fieldAccess.setLong( item, value ); + } + optimizeHash( item ); + query.validateIndex( property, item ); + } + + public void update( KEY key, String property, char value ) { + ITEM item = lookupAndExpectByKey( key ); + query.invalidateIndex( property, item ); + + + final FieldAccess fieldAccess = fields.get(property); + if (fieldAccess==null) { + BeanUtils.idx(item, property, value); + } else { + fieldAccess.setChar( item, value ); + } + optimizeHash( item ); + query.validateIndex( property, item ); + } + + public void update( KEY key, String property, short value ) { + ITEM item = lookupAndExpectByKey( key ); + query.invalidateIndex( property, item ); + + + final FieldAccess fieldAccess = fields.get(property); + if (fieldAccess==null) { + BeanUtils.idx(item, property, value); + } else { + fieldAccess.setShort( item, value ); + } + + optimizeHash( item ); + query.validateIndex( property, item ); + } + + public void update( KEY key, String property, byte value ) { + ITEM item = lookupAndExpectByKey( key ); + query.invalidateIndex( property, item ); + + + final FieldAccess fieldAccess = fields.get(property); + if (fieldAccess==null) { + BeanUtils.idx(item, property, value); + } else { + fieldAccess.setByte( item, value ); + } + + optimizeHash( item ); + query.validateIndex( property, item ); + } + + public void update( KEY key, String property, float value ) { + ITEM item = lookupAndExpectByKey( key ); + query.invalidateIndex( property, item ); + + + final FieldAccess fieldAccess = fields.get(property); + if (fieldAccess==null) { + BeanUtils.idx(item, property, value); + } else { + fieldAccess.setFloat( item, value ); + } + + optimizeHash( item ); + query.validateIndex( property, item ); + } + + public void update( KEY key, String property, double value ) { + ITEM item = lookupAndExpectByKey( key ); + query.invalidateIndex( property, item ); + + + final FieldAccess fieldAccess = fields.get(property); + if (fieldAccess==null) { + BeanUtils.idx(item, property, value); + } else { + fieldAccess.setDouble( item, value ); + } + + optimizeHash( item ); + query.validateIndex( property, item ); + } + + public void update( KEY key, Update... values ) { + ITEM item = lookupAndExpectByKey( key ); + + for ( Update value : values ) { + query.invalidateIndex( value.getName(), item ); + value.doSet( this, item ); + optimizeHash( item ); + query.validateIndex( value.getName(), item ); + } + } + + public boolean compareAndUpdate( KEY key, String property, Object compare, Object value ) { + ITEM item = lookupAndExpectByKey( key ); + FieldAccess field = fields.get( property ); + boolean set = false; + if ( field.getObject( item ).equals( compare ) ) { + query.invalidateIndex( property, item ); + field.setObject( item, value ); + set = true; + optimizeHash( item ); + query.validateIndex( property, item ); + } + return set; + } + + public boolean compareAndUpdate( KEY key, String property, int compare, int value ) { + ITEM item = lookupAndExpectByKey( key ); + FieldAccess field = fields.get( property ); + boolean set = false; + if ( field.getInt( item ) == ( compare ) ) { + query.invalidateIndex( property, item ); + field.setInt( item, value ); + set = true; + optimizeHash( item ); + query.validateIndex( property, item ); + } + return set; + } + + public boolean compareAndUpdate( KEY key, String property, long compare, long value ) { + ITEM item = lookupAndExpectByKey( key ); + FieldAccess field = fields.get( property ); + boolean set = false; + if ( field.getLong( item ) == ( compare ) ) { + query.invalidateIndex( property, item ); + field.setLong( item, value ); + set = true; + optimizeHash( item ); + query.validateIndex( property, item ); + } + return set; + } + + public boolean compareAndUpdate( KEY key, String property, char compare, char value ) { + ITEM item = lookupAndExpectByKey( key ); + FieldAccess field = fields.get( property ); + boolean set = false; + if ( field.getChar( item ) == ( compare ) ) { + query.invalidateIndex( property, item ); + field.setChar( item, value ); + set = true; + optimizeHash( item ); + query.validateIndex( property, item ); + } + return set; + } + + public boolean compareAndUpdate( KEY key, String property, short compare, short value ) { + ITEM item = lookupAndExpectByKey( key ); + FieldAccess field = fields.get( property ); + boolean set = false; + if ( field.getShort( item ) == ( compare ) ) { + query.invalidateIndex( property, item ); + field.setShort( item, value ); + set = true; + optimizeHash( item ); + query.validateIndex( property, item ); + } + return set; + + } + + public boolean compareAndUpdate( KEY key, String property, byte compare, byte value ) { + ITEM item = lookupAndExpectByKey( key ); + FieldAccess field = fields.get( property ); + boolean set = false; + if ( field.getByte( item ) == ( compare ) ) { + query.invalidateIndex( property, item ); + field.setByte( item, value ); + set = true; + optimizeHash( item ); + query.validateIndex( property, item ); + } + return set; + } + + public boolean compareAndUpdate( KEY key, String property, float compare, float value ) { + ITEM item = lookupAndExpectByKey( key ); + FieldAccess field = fields.get( property ); + boolean set = false; + if ( field.getFloat( item ) == ( compare ) ) { + query.invalidateIndex( property, item ); + field.setFloat( item, value ); + set = true; + optimizeHash( item ); + query.validateIndex( property, item ); + } + return set; + } + + public boolean compareAndUpdate( KEY key, String property, double compare, double value ) { + ITEM item = lookupAndExpectByKey( key ); + FieldAccess field = fields.get( property ); + boolean set = false; + if ( field.getDouble( item ) == ( compare ) ) { + query.invalidateIndex( property, item ); + field.setDouble( item, value ); + set = true; + optimizeHash( item ); + query.validateIndex( property, item ); + } + return set; + } + + public boolean compareAndIncrement( KEY key, String property, int compare ) { + ITEM item = lookupAndExpectByKey( key ); + FieldAccess field = fields.get( property ); + boolean set = false; + if ( field.getInt( item ) == ( compare ) ) { + query.invalidateIndex( property, item ); + field.setInt( item, ( compare + 1 ) ); + set = true; + optimizeHash( item ); + query.validateIndex( property, item ); + } + return set; + + } + + public boolean compareAndIncrement( KEY key, String property, long compare ) { + ITEM item = lookupAndExpectByKey( key ); + FieldAccess field = fields.get( property ); + boolean set = false; + if ( field.getLong( item ) == ( compare ) ) { + query.invalidateIndex( property, item ); + field.setLong( item, ( compare + 1 ) ); + set = true; + optimizeHash( item ); + query.validateIndex( property, item ); + } + return set; + } + + public boolean compareAndIncrement( KEY key, String property, short compare ) { + ITEM item = lookupAndExpectByKey( key ); + FieldAccess field = fields.get( property ); + boolean set = false; + if ( field.getShort( item ) == ( compare ) ) { + query.invalidateIndex( property, item ); + field.setShort( item, ( short ) ( compare + 1 ) ); + set = true; + optimizeHash( item ); + query.validateIndex( property, item ); + } + return set; + } + + public boolean compareAndIncrement( KEY key, String property, byte compare ) { + ITEM item = lookupAndExpectByKey( key ); + FieldAccess field = fields.get( property ); + boolean set = false; + if ( field.getByte( item ) == ( compare ) ) { + query.invalidateIndex( property, item ); + field.setByte( item, ( byte ) ( compare + 1 ) ); + set = true; + optimizeHash( item ); + query.validateIndex( property, item ); + } + return set; + } + + @Override + public void addAll( List items ) { + query.addAll( items ); + } + + + public boolean add( ITEM item ) { + return query.add( item ); + } + + + public void setFields( Map fields ) { + + if (fields != null) { + this.fields = fields; + } else { + fields = Collections.EMPTY_MAP; + } + } + + + @Override + public void setSearchableCollection( SearchableCollection searchableCollection ) { + this.query = searchableCollection; + } + + @Override + public void init() { + } + + @Override + public void hashCodeOptimizationOn() { + this.hashCodeOptimization = true; + } + + + public ITEM get( KEY key ) { + return ( ITEM ) query.get( key ); + } + + private ITEM doGet( KEY key ) { + return ( ITEM ) query.get( key ); + } + + @Override + public KEY getKey( ITEM item ) { + return ( KEY ) query.getKey( item ); + } + + private ITEM lookupAndExpect( ITEM item ) { + if ( !lookupAndExcept ) { + return item; + } + + KEY key = getKey( item ); + ITEM oldItem = this.doGet( key ); + + + if ( oldItem == null ) { + throw new IllegalStateException( + String.format( "An original item was not in the repo %s", item ) ); + + } + return oldItem; + } + + private ITEM lookupAndExpectByKey( KEY key ) { + ITEM oldItem = this.doGet( key ); + + if ( oldItem == null ) { + + throw new IllegalStateException( + String.format( "An original item was not" + + " in the repo at this key %s", key ) ); + + + } + return oldItem; + } + + + @Override + public void clear() { + query.clear(); + } + + @Override + public boolean delete( ITEM item ) { + return query.delete( item ); + + } + + @Override + public List all() { + return query.all(); //To change body of implemented methods use File | Settings | File Templates. + } + + @Override + public int size() { + return query.size(); + + } + + @Override + public Collection toCollection() { + return query; + } + + + public SearchableCollection query() { + return query; + } + + + @Override + public Object readNestedValue( KEY key, String... properties ) { + ITEM item = this.get( key ); + return BeanUtils.getPropertyValue( item, properties ); + } + + + @Override + public int readNestedInt( KEY key, String... properties ) { + ITEM item = this.get( key ); + return BeanUtils.getPropertyInt( item, properties ); + } + + @Override + public short readNestedShort( KEY key, String... properties ) { + ITEM item = this.get( key ); + return BeanUtils.getPropertyShort( item, properties ); + } + + @Override + public char readNestedChar( KEY key, String... properties ) { + ITEM item = this.get( key ); + return BeanUtils.getPropertyChar( item, properties ); + } + + @Override + public byte readNestedByte( KEY key, String... properties ) { + ITEM item = this.get( key ); + return BeanUtils.getPropertyByte( item, properties ); + } + + @Override + public double readNestedDouble( KEY key, String... properties ) { + ITEM item = this.get( key ); + return BeanUtils.getPropertyDouble( item, properties ); + } + + @Override + public float readNestedFloat( KEY key, String... properties ) { + ITEM item = this.get( key ); + return BeanUtils.getPropertyFloat( item, properties ); + } + + @Override + public long readNestedLong( KEY key, String... properties ) { + ITEM item = this.get( key ); + return BeanUtils.getPropertyLong( item, properties ); + } + + + @Override + public Object readObject( KEY key, String property ) { + ITEM item = this.get( key ); + return this.fields.get( property ).getObject( item ); + } + + + @Override + public T readValue( KEY key, String property, Class type ) { + ITEM item = this.get( key ); + return ( T ) this.fields.get( property ).getValue( item ); + } + + @Override + public int readInt( KEY key, String property ) { + ITEM item = this.get( key ); + return this.fields.get( property ).getInt( item ); + } + + @Override + public long readLong( KEY key, String property ) { + ITEM item = this.get( key ); + return this.fields.get( property ).getLong( item ); + } + + @Override + public char readChar( KEY key, String property ) { + ITEM item = this.get( key ); + return this.fields.get( property ).getChar( item ); + } + + @Override + public short readShort( KEY key, String property ) { + ITEM item = this.get( key ); + return this.fields.get( property ).getShort( item ); + } + + @Override + public byte readByte( KEY key, String property ) { + ITEM item = this.get( key ); + return this.fields.get( property ).getByte( item ); + } + + @Override + public float readFloat( KEY key, String property ) { + ITEM item = this.get( key ); + return this.fields.get( property ).getFloat( item ); + + } + + @Override + public double readDouble( KEY key, String property ) { + ITEM item = this.get( key ); + return this.fields.get( property ).getDouble( item ); + + } + + @Override + public Object getObject( ITEM item, String property ) { + return this.fields.get( property ).getObject( item ); + } + + @Override + public T getValue( ITEM item, String property, Class type ) { + return ( T ) this.fields.get( property ).getValue( item ); + } + + @Override + public int getInt( ITEM item, String property ) { + return this.fields.get( property ).getInt( item ); + } + + @Override + public long getLong( ITEM item, String property ) { + return this.fields.get( property ).getLong( item ); + } + + @Override + public char getChar( ITEM item, String property ) { + return this.fields.get( property ).getChar( item ); + } + + @Override + public short getShort( ITEM item, String property ) { + return this.fields.get( property ).getShort( item ); + } + + @Override + public byte getByte( ITEM item, String property ) { + return this.fields.get( property ).getByte( item ); + } + + @Override + public float getFloat( ITEM item, String property ) { + return this.fields.get( property ).getFloat( item ); + } + + @Override + public double getDouble( ITEM item, String property ) { + return this.fields.get( property ).getDouble( item ); + } + + + public void setLookupAndExcept( boolean lookupAndExcept ) { + this.lookupAndExcept = lookupAndExcept; + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/RepoBuilderDefault.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/RepoBuilderDefault.java new file mode 100644 index 0000000..aeef54b --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/RepoBuilderDefault.java @@ -0,0 +1,1138 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.impl; + +import org.boon.Exceptions; +import org.boon.Str; +import org.boon.core.Typ; +import org.boon.core.reflection.BeanUtils; +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.datarepo.*; +import org.boon.datarepo.impl.decorators.FilterWithSimpleCache; +import org.boon.datarepo.impl.decorators.ObjectEditorCloneDecorator; +import org.boon.datarepo.impl.decorators.ObjectEditorEventDecorator; +import org.boon.datarepo.impl.decorators.ObjectEditorLogNullCheckDecorator; +import org.boon.datarepo.impl.indexes.NestedKeySearchIndex; +import org.boon.datarepo.impl.indexes.TypeHierarchyIndex; +import org.boon.datarepo.modification.ModificationListener; +import org.boon.datarepo.spi.*; +import org.boon.core.Function; +import org.boon.functions.PropertyNameUtils; +import org.boon.core.Supplier; + +import java.math.BigDecimal; +import java.text.Collator; +import java.util.*; +import java.util.logging.Level; + +import static org.boon.Exceptions.requireNonNull; + + +/** + * This class is used to build Repo objects. + * + * @author Rick Hightower + */ +public class RepoBuilderDefault implements RepoBuilder { + + /** + * Search index factory. + * + * @see org.boon.datarepo.impl.indexes.SearchIndexDefault + */ + Function searchIndexFactory; + /** + * Lookup index factory. + * + * @see org.boon.datarepo.impl.indexes.LookupIndexDefault + */ + Function lookupIndexFactory; + /** + * Unique lookupWithDefault index factory. + * + * @see org.boon.datarepo.impl.indexes.UniqueLookupIndex + */ + Function uniqueLookupIndexFactory; + /** + * Unique search index factory. + * + * @see org.boon.datarepo.impl.indexes.UniqueSearchIndex + */ + Function uniqueSearchIndexFactory; + + /** + * Sets the Object Editor Factory + * + * @see ObjectEditor + */ + Supplier objectEditorFactory; + + /** + * Sets the searchableCollectionFactory. + * + * @see SearchableCollectionComposer + */ + Supplier searchableCollectionFactory; + + /** + * Repo composer factory + * + * @see RepoComposer + */ + Supplier repoComposerFactory; + + /** + * @see Filter + */ + Supplier filterFactory; + + /** + * Primary key for this object. + */ + String primaryKey; + + + /** + * This holds the set of search indexes that the Repo will manage + */ + Set searchIndexes = new HashSet<>(); + /** + * This holds the set of lookupIndexes that the Repo will manage. + */ + Set lookupIndexes = new HashSet<>(); + /** + * This holds the uniqueSearchIndexes that this repo will manage. + */ + Set uniqueSearchIndexes = new HashSet<>(); + /** + * This holds the uniqueLookupIndexes that this repo will manager. + */ + Set uniqueLookupIndexes = new HashSet<>(); + + /** + * If we are dealing with a complex key, like a derived key or some sort of + * fancy nested and/or composite key, then we just tell the Repo + * how to access the key with this here map. + *

+ * This maps property names to a Function (just like a method pointer that + * returns something. + *

+ * In our case, they give us the key and the Function gives them the value of the key. + */ + Map keyGetterMap = new HashMap(); + + + /** + * Sets if we should use the field directly. + */ + boolean useField = true; + + /** + * Sets if we should use unsafe (fast) access to the field. + */ + boolean useUnSafe = false; + + /** + * Checks to see if we should enable runtime null checking and logging + * This essentially means that we will not allow null keys or values. + */ + boolean nullChecksAndLogging; + + + /** + * If you turn this on, then every time an object is sent to be + * edited or added it is cloned. + * In a multi-threaded application, this should prevent MT from + * accessing objects that is in the data repo. + */ + boolean cloneEdits; + + /** + * This is not implemented yet. + * It would allow to have only keys in the repo and the actual data could live + * elsewhere like a cache or an off JVM heap RAM location. + * It is is in the plans. + */ + boolean storeKeyInIndexOnly; + + /** + * This would turn on extra debugging. + */ + boolean debug; + + /** + * This sets up the log level for the builder. + */ + Level level = Level.FINER; + + + /** + * This keeps a listStream of fields that we are reading per object. + * + * @see FieldAccess + */ + private Map fields; + + + /** + * This provides an interface to the composable nature of a Repo. + * + * @see RepoComposer + */ + private RepoComposer repo; + + /** + * This is the Object editor that we are constructing. + * + * @see ObjectEditor + */ + private ObjectEditor editor; + + + /** + * This is the Searchable Collection that the data repo uses + * that we are constructing. + * + * @see SearchableCollection + */ + private SearchableCollectionComposer query; + + + /** + * Turns caching on. Caching is very rudimentary at this point. + * This can cache complex queries and hold on the results until + * there is an update. + */ + private boolean cache = false; + + /** + * Holds a collection of comparators that will be used per property for the Repo. + */ + private Map collators = new HashMap<>(); + + + /** + * Holds a collection of key transformers per property for the Repo. + *

+ * Key transformers are used to for example make a case insensitive search. + * It determines how the key is indexed. + */ + private Map keyTransformers = new HashMap<>(); + + + /** + * This holds a set of nestedIndexes. + *

+ * Employee.address.zip would be a nested index. + */ + @Deprecated + private Map nestedIndexes = new HashMap<>(); + + + /** + * Turning on this flag, turns on indexing type hierarchy. + */ + private boolean indexHierarchy; + + /** + * For non-unique indexes, this sets up how many values you would like + * the index to hold initially. (It expands automatically). + */ + private Map indexBucketSize = new HashMap<>(); + + + /** + * Turns on hashCode Optimization. + * This means we will try to store the hashCode, and hold on to it + * unless the object changes. + */ + private boolean hashCodeOptimizationOn; + + /** + * If you want duplicates removed from query results. + */ + private boolean removeDuplication; + + /** + * turn on modification events listenting. + */ + boolean events = false; + + /** + * Listen to modification changes. + */ + ModificationListener[] listeners; + private Class itemClass; + + + /** + * Turns on property access instead of field access. + * Field is the default. + * + * @param useProperty do you want property access or not + * @return RepoBuilder + */ + public RepoBuilder usePropertyForAccess( boolean useProperty ) { + this.useField = !useProperty; + return this; + } + + /** + * Turns on field access instead of property access. + * Field is the default. + * + * @param useField do you want field access or not + * @return RepoBuilder + */ + public RepoBuilder useFieldForAccess( boolean useField ) { + this.useField = useField; + return this; + + } + + /** + * Turns on field unsafe access instead of reflection. + * Reflection is the default. + * + * @param useUnSafe use unsafe + * @return RepoBuilder + */ + public RepoBuilder useUnsafe( boolean useUnSafe ) { + this.useUnSafe = useUnSafe; + return this; + + } + + /** + * Turns on logging and null checking for the Repo. + * + * @param nullChecks do you want null checks? + * @return RepoBuilder + * @see ObjectEditorLogNullCheckDecorator + */ + @Override + public RepoBuilder nullChecks( boolean nullChecks ) { + this.nullChecksAndLogging = nullChecks; + return this; + } + + /** + * Turns on logging and null checking for the Repo. + * + * @param logging do you want null checks? + * @return RepoBuilder + * @see ObjectEditorLogNullCheckDecorator + */ + @Override + public RepoBuilder addLogging( boolean logging ) { + this.nullChecksAndLogging = logging; + return this; + } + + /** + * Clones the object in the repo before editing and also + * clones returns values. + * This should limit two threads from getting the same object that is in + * the repo. + * + * @param cloneEdits do you want cloning? + * @return RepoBuilder + * @see ObjectEditorCloneDecorator + */ + @Override + public RepoBuilder cloneEdits( boolean cloneEdits ) { + this.cloneEdits = cloneEdits; + return this; + } + + /** + * This caches query results until there is an update. + * + * @return RepoBuilder + */ + @Override + public RepoBuilder useCache() { + this.cache = true; + return this; + } + + /** + * Stores only the keys in the index. The data is stored elsewhere. + * This is not implemented yet. + * + * @return RepoBuilder + */ + @Override + public RepoBuilder storeKeyInIndexOnly() { + this.storeKeyInIndexOnly = true; + + return this; + } + + /** + * Register event listeners for modification changes. + * + * @param listeners listStream of event listeners + * @return RepoBuilder + * @see ObjectEditorEventDecorator + */ + @Override + public RepoBuilder events( ModificationListener... listeners ) { + events = true; + this.listeners = listeners; + return this; + } + + + /** + * @return + */ + @Override + public RepoBuilder debug() { + this.debug = true; + return this; + } + + /** + * @param factory + * @return + */ + @Override + public RepoBuilder searchIndexFactory( Function factory ) { + this.searchIndexFactory = factory; + return this; + } + + /** + * @param factory + * @return + */ + @Override + public RepoBuilder uniqueLookupIndexFactory( Function factory ) { + this.uniqueLookupIndexFactory = factory; + return this; + } + + /** + * @param factory + * @return + */ + @Override + public RepoBuilder uniqueSearchIndexFactory( Function factory ) { + this.uniqueSearchIndexFactory = factory; + return this; + } + + /** + * @param factory + * @return + */ + @Override + public RepoBuilder lookupIndexFactory( Function factory ) { + this.lookupIndexFactory = factory; + return this; + } + + /** + * @param factory + * @return + */ + @Override + public RepoBuilder repoFactory( Supplier factory ) { + this.repoComposerFactory = factory; + return this; + } + + /** + * @param factory + * @return + */ + @Override + public RepoBuilder filterFactory( Supplier factory ) { + this.filterFactory = factory; + return this; + } + + /** + * @param propertyName + * @return + */ + @Override + public RepoBuilder primaryKey( String propertyName ) { + this.primaryKey = propertyName; + return this; + } + + /** + * @param propertyName + * @return + */ + @Override + public RepoBuilder lookupIndex( String propertyName ) { + this.lookupIndexes.add( propertyName ); + return this; + } + + /** + * @param propertyName + * @return + */ + @Override + public RepoBuilder uniqueLookupIndex( String propertyName ) { + return this.lookupIndex( propertyName, true ); + } + + /** + * @param propertyName + * @param unique + * @return + */ + public RepoBuilder lookupIndex( String propertyName, boolean unique ) { + if ( unique ) { + this.uniqueLookupIndexes.add( propertyName ); + } else { + this.lookupIndexes.add( propertyName ); + } + return this; + } + + /** + * @param propertyName + * @return + */ + @Override + public RepoBuilder searchIndex( String propertyName ) { + this.searchIndexes.add( propertyName ); + return this; + } + + /** + * @param propertyName + * @return + */ + @Override + public RepoBuilder uniqueSearchIndex( String propertyName ) { + return searchIndex( propertyName, true ); + } + + + /** + * @param propertyName + * @return + */ + @Override + public RepoBuilder collateIndex( String propertyName ) { + collators.put( propertyName, Collator.getInstance() ); + return this; + } + + /** + * @param propertyName + * @param locale + * @return + */ + @Override + public RepoBuilder collateIndex( String propertyName, Locale locale ) { + collators.put( propertyName, Collator.getInstance( locale ) ); + return this; + } + + /** + * @param propertyName + * @param collator + * @return + */ + @Override + public RepoBuilder collateIndex( String propertyName, Comparator collator ) { + collators.put( propertyName, collator ); + return this; + } + + /** + * @param propertyName + * @param unique + * @return + */ + public RepoBuilder searchIndex( String propertyName, boolean unique ) { + if ( unique ) { + this.uniqueSearchIndexes.add( propertyName ); + } else { + this.searchIndexes.add( propertyName ); + } + return this; + } + + /** + * @param propertyName + * @param keyGetter + * @return + */ + @Override + public RepoBuilder keyGetter( String propertyName, Function keyGetter ) { + keyGetterMap.put( propertyName, keyGetter ); + return this; + } + + /** + * + */ + private void initializeTheFactories() { + + if ( this.repoComposerFactory == null ) { + this.repoComposerFactory = SPIFactory.getRepoFactory(); + } + if ( this.lookupIndexFactory == null ) { + this.lookupIndexFactory = SPIFactory.getLookupIndexFactory(); + } + if ( this.searchIndexFactory == null ) { + this.searchIndexFactory = SPIFactory.getSearchIndexFactory(); + } + if ( this.uniqueLookupIndexFactory == null ) { + this.uniqueLookupIndexFactory = SPIFactory.getUniqueLookupIndexFactory(); + } + if ( this.uniqueSearchIndexFactory == null ) { + this.uniqueSearchIndexFactory = SPIFactory.getUniqueSearchIndexFactory(); + } + if ( this.searchableCollectionFactory == null ) { + this.searchableCollectionFactory = SPIFactory.getSearchableCollectionFactory(); + } + if ( this.filterFactory == null ) { + this.filterFactory = SPIFactory.getFilterFactory(); + } + + if ( this.objectEditorFactory == null ) { + this.objectEditorFactory = SPIFactory.getObjectEditorFactory(); + } + + } + + /** + * @param key + * @param clazz + * @param classes + * @param + * @param + * @return + */ + @Override + public Repo build( Class key, Class clazz, Class... classes ) { + return build( null, key, clazz, classes ); + } + + /** + * @param primitiveKey + * @param key + * @param clazz + * @param classes + * @param + * @param + * @return + */ + public Repo build( Class primitiveKey, Class key, Class clazz, Class... classes ) { + + /* Initialize factories. */ + initializeTheFactories(); + + + /* Reflect and load all of the fields. */ + loadFields( clazz, classes ); + + this.itemClass = clazz; + + + + /* Construct */ + this.repo = this.repoComposerFactory.get(); + this.editor = constructObjectEditor( fields ); + SearchableCollectionComposer query = constructSearchableCollection( primitiveKey, clazz, repo, fields ); + query.setRemoveDuplication( this.removeDuplication ); + + /* Inject */ + repo.setSearchableCollection( ( SearchableCollection ) query ); + ( ( ObjectEditorComposer ) editor ).setSearchableCollection( ( SearchableCollection ) query ); + + editor = decorateEditor( editor ); + repo.setObjectEditor( ( ObjectEditor ) editor ); + + return ( Repo ) repo; + } + + /** + * @param clazz + * @param classes + * @param + */ + private void loadFields( Class clazz, Class[] classes ) { + + + + if (Typ.isMap(clazz)) { + return; + } + /** + * Load all of the fields that we need. + */ + this.fields = BeanUtils.getFieldsFromObject( clazz ); + + for ( Class cls : classes ) { + Map fieldsComponentType + = BeanUtils.getFieldsFromObject( cls ); + + for ( String sKey : fieldsComponentType.keySet() ) { + if ( !fields.containsKey( sKey ) ) { + fields.put( sKey, fieldsComponentType.get( sKey ) ); + } + } + } + } + + /** + * @param primitiveKey + * @param itemClazz + * @param repo + * @param fields + * @return + */ + private SearchableCollectionComposer constructSearchableCollection( Class primitiveKey, Class itemClazz, RepoComposer repo, Map fields ) { + + /* Create the searchable collection. */ + query = searchableCollectionFactory.get(); + + /* Create the filter object. */ + Filter filter = this.filterFactory.get(); + + + configPrimaryKey( primitiveKey == null ? itemClazz : primitiveKey, fields ); + + + configIndexes( repo, fields ); + + + query.setFilter( filter ); + + + query.setFields( fields ); + + query.init(); + + if ( this.cache ) { + filter = new FilterWithSimpleCache( filter ); + } + + query.setFilter( filter ); + + return query; + } + + private ObjectEditor constructObjectEditor( Map fields ) { + ObjectEditorComposer editorComposer = this.objectEditorFactory.get(); + if ( this.hashCodeOptimizationOn ) { + editorComposer.hashCodeOptimizationOn(); + } + + ObjectEditor editor = ( ObjectEditor ) editorComposer; + editorComposer.init(); + + if ( this.cloneEdits ) { + editorComposer.setLookupAndExcept( true ); + } + + editorComposer.setFields( fields ); + return editor; + } + + + private ObjectEditor decorateEditor( ObjectEditor editor ) { + if ( debug || nullChecksAndLogging ) { + ObjectEditorLogNullCheckDecorator logNullCheckDecorator = new ObjectEditorLogNullCheckDecorator( editor ); + logNullCheckDecorator.setLevel( level ); + logNullCheckDecorator.setDebug( debug ); + + editor = logNullCheckDecorator; + } + + if ( cloneEdits ) { + editor = new ObjectEditorCloneDecorator( editor ); + } + + if ( events ) { + ObjectEditorEventDecorator eventManager = new ObjectEditorEventDecorator( editor ); + for ( ModificationListener l : listeners ) { + eventManager.add( l ); + } + editor = eventManager; + } + return editor; + } + + @Override + public RepoBuilder level( Level level ) { + this.level = level; + return this; + } + + @Override + public RepoBuilder upperCaseIndex( String property ) { + this.keyTransformers.put( property, PropertyNameUtils.upperCase ); + return this; + } + + @Override + public RepoBuilder lowerCaseIndex( String property ) { + this.keyTransformers.put( property, PropertyNameUtils.lowerCase ); + return this; + + } + + @Override + public RepoBuilder camelCaseIndex( String property ) { + this.keyTransformers.put( property, PropertyNameUtils.camelCase ); + return this; + + } + + @Override + public RepoBuilder underBarCaseIndex( String property ) { + this.keyTransformers.put( property, PropertyNameUtils.underBarCase ); + return this; + } + + @Deprecated + @Override + public RepoBuilder nestedIndex( String... propertyPath ) { + + this.nestedIndexes.put( Str.join( '.', propertyPath ), propertyPath ); + + return this; + + } + + @Override + public RepoBuilder indexHierarchy() { + this.indexHierarchy = true; + return this; + } + + @Override + public RepoBuilder indexBucketSize( String propertyName, int size ) { + this.indexBucketSize.put( propertyName, size ); + return this; + } + + @Override + public RepoBuilder hashCodeOptimizationOn() { + this.hashCodeOptimizationOn = true; + return this; + } + + @Override + public RepoBuilder removeDuplication( boolean removeDuplication ) { + this.removeDuplication = removeDuplication; + return this; + } + + private Function createKeyGetter( final FieldAccess field ) { + Exceptions.requireNonNull( field, "field cannot be null" ); + + return new Function() { + @Override + public Object apply( Object o ) { + return field.getValue( o ); + } + }; + } + + /** + * @param repo + * @param fields + */ + private void configIndexes( RepoComposer repo, + Map fields ) { + + if ( this.indexHierarchy ) { + TypeHierarchyIndex index = new TypeHierarchyIndex(); + index.setComparator( this.collators.get( "_type" ) ); + index.setInputKeyTransformer( this.keyTransformers.get( "_type" ) ); + index.init(); + ( ( SearchableCollection ) query ).addSearchIndex( "_type", index ); + } + + for ( String prop : nestedIndexes.keySet() ) { + NestedKeySearchIndex index = new NestedKeySearchIndex( this.nestedIndexes.get( prop ) ); + configIndex( prop, index ); + } + for ( String prop : searchIndexes ) { + SearchIndex searchIndex = null; + + if (!Typ.isMap(itemClass) && !isPropPath(prop)) { + FieldAccess fieldAccess = fields.get( prop ); + + requireNonNull( fieldAccess, "Field access for property was null. " + prop ); + + Class type = fieldAccess.type(); + + searchIndex = this.searchIndexFactory.apply( type ); + } else { + searchIndex = this.searchIndexFactory.apply( null ); + + } + configSearchIndex( fields, prop, searchIndex ); + + } + for ( String prop : uniqueSearchIndexes ) { + + if (!Typ.isMap(itemClass) && !isPropPath(prop)) { + + FieldAccess fieldAccess = fields.get( prop ); + requireNonNull( fieldAccess, "Field access for property was null. " + prop ); + + SearchIndex searchIndex = this.uniqueSearchIndexFactory.apply( fieldAccess.type() ); + configSearchIndex( fields, prop, searchIndex ); + } else { + + SearchIndex searchIndex = this.uniqueSearchIndexFactory.apply( Object.class ); + configSearchIndex( fields, prop, searchIndex ); + + } + } + + for ( String prop : lookupIndexes ) { + + if ( !Typ.isMap(itemClass) && !isPropPath(prop) ) { + + + FieldAccess fieldAccess = fields.get( prop ); + Exceptions.requireNonNull( fieldAccess, "Field access for property was null. " + prop ); + + LookupIndex index = this.lookupIndexFactory.apply( fieldAccess.type() ); + configLookupIndex( fields, prop, index ); + } else { + + + LookupIndex index = this.lookupIndexFactory.apply( Object.class ); + configLookupIndex( fields, prop, index ); + + } + } + for ( String prop : uniqueLookupIndexes ) { + + + if (!Typ.isMap(itemClass) && !isPropPath(prop) ) { + + + FieldAccess fieldAccess = fields.get( prop ); + Exceptions.requireNonNull( fieldAccess, "Field access for property was null. " + prop ); + + + LookupIndex index = this.uniqueLookupIndexFactory.apply( fieldAccess.type() ); + configLookupIndex( fields, prop, index ); + } else { + + LookupIndex index = this.uniqueLookupIndexFactory.apply( Object.class ); + configLookupIndex( fields, prop, index ); + + } + } + + } + + private boolean isPropPath(String prop) { + if (prop.contains(".")) return true; + if (prop.equals("this")) return true; + if (prop.equals("[")) return true; + + return false; + } + + private void configLookupIndex( Map fields, String prop, LookupIndex index ) { + Function kg = getKeyGetterOrCreate( fields, prop ); + + + + index.setInputKeyTransformer( this.keyTransformers.get( prop ) ); + index.setKeyGetter( kg ); + index.setBucketSize( this.indexBucketSize.get( prop ) == null ? 3 : this.indexBucketSize.get( prop ) ); + + index.init(); + ( ( SearchableCollection ) query ).addLookupIndex( prop, index ); + } + + private void configSearchIndex( Map fields, String prop, SearchIndex searchIndex ) { + + FieldAccess fieldAccess = fields == null ? null : fields.get(prop); + + Comparator comparator = this.collators.get(prop); + if (comparator==null) { + if (fieldAccess!=null && fieldAccess.type() == Typ.number) { + comparator = new Comparator() { + @Override + public int compare(Number o1, Number o2) { + + if (o1 instanceof Long) { + long long1 = o1.longValue(); + long long2 = o2.longValue(); + if (long1 > long2) { + return 1; + } else if (long1 < long2) { + return -1; + } else { + return 0; + } + } else if (o1 instanceof Double) { + double long1 = o1.doubleValue(); + double long2 = o2.doubleValue(); + if (long1 > long2) { + return 1; + } else if (long1 < long2) { + return -1; + } else { + return 0; + } + } else if (o1 instanceof BigDecimal) { + double long1 = o1.doubleValue(); + double long2 = o2.doubleValue(); + if (long1 > long2) { + return 1; + } else if (long1 < long2) { + return -1; + } else { + return 0; + } + } else { + double long1 = o1.doubleValue(); + double long2 = o2.doubleValue(); + if (long1 > long2) { + return 1; + } else if (long1 < long2) { + return -1; + } else { + return 0; + } + } + + } + }; + } + } + + searchIndex.setComparator( comparator ); + searchIndex.setInputKeyTransformer( this.keyTransformers.get( prop ) ); + Function kg = getKeyGetterOrCreate( fields, prop ); + searchIndex.setKeyGetter( kg ); + searchIndex.setBucketSize( this.indexBucketSize.get( prop ) == null ? 3 : this.indexBucketSize.get( prop ) ); + + searchIndex.init(); + ( ( SearchableCollection ) query ).addSearchIndex( prop, searchIndex ); + } + + private void configIndex( String prop, NestedKeySearchIndex index ) { + index.setComparator( this.collators.get( prop ) ); + index.setInputKeyTransformer( this.keyTransformers.get( prop ) ); + index.setBucketSize( this.indexBucketSize.get( prop ) == null ? 3 : this.indexBucketSize.get( prop ) ); + index.init(); + ( ( SearchableCollection ) query ).addSearchIndex( prop, index ); + } + + private Function getKeyGetterOrCreate( Map fields, + final String prop ) { + if (Typ.isMap(itemClass)) { + + + Function kg = null; + + kg = this.keyGetterMap.get( prop ); + + if ( kg == null ) { + + keyGetterMap.put( prop, new Function() { + @Override + public Object apply(Object o) { + return BeanUtils.atIndex(o, prop); + } + } ); + } + return this.keyGetterMap.get( prop ); + + } + + + Exceptions.requireNonNull( fields, "fields cannot be null" ); + Exceptions.requireNonNull( prop, "prop cannot be null" ); + + Function kg = null; + + kg = this.keyGetterMap.get( prop ); + + if ( kg == null ) { + + if (prop.contains(".") || prop.contains("this") || prop.contains("[")) { + keyGetterMap.put(prop, new Function() { + @Override + public Object apply(Object o) { + return BeanUtils.atIndex(o, prop); + } + } ); + kg = this.keyGetterMap.get( prop ); + + } else { + FieldAccess field = fields.get( prop ); + kg = createKeyGetter( field ); + keyGetterMap.put( prop, kg ); + } + } + return kg; + + } + + private void configPrimaryKey( Class type, Map fields ) { + + Exceptions.requireNonNull( primaryKey, "primary key cannot be null" ); + + LookupIndex primaryKeyIndex = this.uniqueLookupIndexFactory.apply( type ); + + + if ( !Typ.isMap(itemClass) && !fields.containsKey( primaryKey ) ) { + throw new IllegalStateException( + String.format( "Fields does not have primary key %s", + primaryKey ) ); + } + + + primaryKeyIndex.setKeyGetter( getKeyGetterOrCreate( fields, this.primaryKey ) ); + query.setPrimaryKeyName( this.primaryKey ); + query.setPrimaryKeyGetter( this.keyGetterMap.get( this.primaryKey ) ); + + + ( ( SearchableCollection ) query ).addLookupIndex( this.primaryKey, primaryKeyIndex ); + + + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/RepoDefault.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/RepoDefault.java new file mode 100644 index 0000000..8e268b1 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/RepoDefault.java @@ -0,0 +1,786 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.impl; + +import org.boon.criteria.Selector; +import org.boon.criteria.Update; +import org.boon.criteria.internal.*; +import org.boon.datarepo.*; +import org.boon.datarepo.spi.RepoComposer; +import org.boon.datarepo.spi.SearchIndex; +import org.boon.sort.Sort; + +import java.util.Collection; +import java.util.Iterator; +import java.util.List; +import java.util.Map; + + +/** + * Default Repo implementation. + * + * @param primary key or handleUnexpectedException of object. + * @param item that this repo holds. + */ +public class RepoDefault implements Repo, RepoComposer { + + private ObjectEditor editor; + private SearchableCollection query; + + @Override + public Repo init(List items) { + this.addAll(items); + return this; + } + + @Override + public void updateByFilter( String property, Object value, Criteria... expressions ) { + List items = query.query( expressions ); + for ( ITEM item : items ) { + modify( item, property, value ); + } + } + + @Override + public void updateByFilterUsingValue( String property, String value, Criteria... expressions ) { + List items = query.query( expressions ); + for ( ITEM item : items ) { + modifyByValue( item, property, value ); + } + } + + @Override + public void updateByFilter( String property, int value, Criteria... expressions ) { + List items = query.query( expressions ); + for ( ITEM item : items ) { + modify( item, property, value ); + } + } + + @Override + public void updateByFilter( String property, long value, Criteria... expressions ) { + List items = query.query( expressions ); + for ( ITEM item : items ) { + modify( item, property, value ); + } + } + + @Override + public void updateByFilter( String property, char value, Criteria... expressions ) { + List items = query.query( expressions ); + for ( ITEM item : items ) { + modify( item, property, value ); + } + } + + @Override + public void updateByFilter( String property, short value, Criteria... expressions ) { + List items = query.query( expressions ); + for ( ITEM item : items ) { + modify( item, property, value ); + } + } + + @Override + public void updateByFilter( String property, byte value, Criteria... expressions ) { + List items = query.query( expressions ); + for ( ITEM item : items ) { + modify( item, property, value ); + } + } + + @Override + public void updateByFilter( String property, float value, Criteria... expressions ) { + List items = query.query( expressions ); + for ( ITEM item : items ) { + modify( item, property, value ); + } + } + + @Override + public void updateByFilter( String property, double value, Criteria... expressions ) { + List items = query.query( expressions ); + for ( ITEM item : items ) { + modify( item, property, value ); + } + } + + @Override + public void updateByFilter( List values, Criteria... expressions ) { + List items = query.query( expressions ); + for ( ITEM item : items ) { + + for ( Update value : values ) { + query.invalidateIndex( value.getName(), item ); + value.doSet( this, item ); + query.validateIndex( value.getName(), item ); + } + } + } + + + @Override + public ITEM get( KEY key ) { + return editor.get( key ); + } + + @Override + public KEY getKey( ITEM item ) { + return editor.getKey( item ); + } + + @Override + public void invalidateIndex( String property, ITEM item ) { + query.invalidateIndex( property, item ); + } + + @Override + public void validateIndex( String property, ITEM item ) { + query.validateIndex( property, item ); + } + + @Override + public void validateIndexes( ITEM item ) { + query.validateIndexes( item ); + } + + @Override + public Object readObject( KEY key, String property ) { + return editor.readObject( key, property ); + } + + @Override + public T readValue( KEY key, String property, Class type ) { + return editor.readValue( key, property, type ); + } + + @Override + public int readInt( KEY key, String property ) { + return editor.readInt( key, property ); + } + + @Override + public long readLong( KEY key, String property ) { + return editor.readLong( key, property ); + } + + @Override + public char readChar( KEY key, String property ) { + return editor.readChar( key, property ); + } + + @Override + public short readShort( KEY key, String property ) { + return editor.readShort( key, property ); + } + + @Override + public byte readByte( KEY key, String property ) { + return editor.readByte( key, property ); + } + + @Override + public float readFloat( KEY key, String property ) { + return editor.readFloat( key, property ); + } + + @Override + public double readDouble( KEY key, String property ) { + return editor.readDouble( key, property ); + } + + @Override + public Object getObject( ITEM item, String property ) { + return editor.getObject( item, property ); + } + + @Override + public T getValue( ITEM item, String property, Class type ) { + return editor.getValue( item, property, type ); + } + + @Override + public int getInt( ITEM item, String property ) { + return editor.getInt( item, property ); + } + + @Override + public long getLong( ITEM item, String property ) { + return editor.getLong( item, property ); + + } + + @Override + public char getChar( ITEM item, String property ) { + return editor.getChar( item, property ); + } + + @Override + public short getShort( ITEM item, String property ) { + return editor.getShort( item, property ); + } + + @Override + public byte getByte( ITEM item, String property ) { + return editor.getByte( item, property ); + } + + @Override + public float getFloat( ITEM item, String property ) { + return editor.getFloat( item, property ); + } + + @Override + public double getDouble( ITEM item, String property ) { + return editor.getDouble( item, property ); + } + + @Override + public int count( KEY key, String property, int value ) { + return query.count( key, property, value ); + } + + @Override + public int count( KEY key, String property, short value ) { + return query.count( key, property, value ); + } + + @Override + public int count( KEY key, String property, byte value ) { + return query.count( key, property, value ); + } + + @Override + public int count( KEY key, String property, long value ) { + return query.count( key, property, value ); + } + + @Override + public int count( KEY key, String property, char value ) { + return query.count( key, property, value ); + } + + @Override + public int count( KEY key, String property, float value ) { + return query.count( key, property, value ); + } + + @Override + public int count( KEY key, String property, double value ) { + return query.count( key, property, value ); + } + + @Override + public int count( KEY key, String property, Object value ) { + return query.count( key, property, value ); + } + + @Override + public T max( KEY key, String property, Class type ) { + return query.max( key, property, type ); + } + + @Override + public String maxString( KEY key, String property ) { + return query.maxString( key, property ); + } + + @Override + public Number maxNumber( KEY key, String property ) { + return query.maxNumber( key, property ); + } + + @Override + public int maxInt( KEY key, String property ) { + return query.maxInt( key, property ); + } + + @Override + public long maxLong( KEY key, String property ) { + return query.maxLong( key, property ); + } + + @Override + public double maxDouble( KEY key, String property ) { + return query.maxDouble( key, property ); + } + + @Override + public T min( KEY key, String property, Class type ) { + return query.min( key, property, type ); + } + + @Override + public String minString( KEY key, String property ) { + return query.minString( key, property ); + } + + @Override + public Number minNumber( KEY key, String property ) { + return query.minNumber( key, property ); + } + + @Override + public int minInt( KEY key, String property ) { + return query.minInt( key, property ); + } + + @Override + public long minLong( KEY key, String property ) { + return query.minLong( key, property ); + } + + @Override + public double minDouble( KEY key, String property ) { + return query.minDouble( key, property ); + } + + @Override + public ResultSet results( Criteria... expressions ) { + return query.results( expressions ); + } + + @Override + public List query( Criteria... expressions ) { + return query.query( expressions ); + } + + @Override + public List query(List expressions) { + return query.query(expressions); + } + + @Override + public List sortedQuery( String sortBy, Criteria... expressions ) { + return query.sortedQuery( sortBy, expressions ); + } + + @Override + public List sortedQuery( Sort sortBy, Criteria... expressions ) { + return query.sortedQuery( sortBy, expressions ); + } + + @Override + public List> queryAsMaps( Criteria... expressions ) { + return query.queryAsMaps( expressions ); + } + + @Override + public List> query( List selectors, Criteria... expressions ) { + return query.query( selectors, expressions ); + } + + @Override + public List> sortedQuery( String sortBy, List selectors, Criteria... expressions ) { + return query.sortedQuery( sortBy, selectors, expressions ); + } + + @Override + public List> sortedQuery( Sort sortBy, List selectors, Criteria... expressions ) { + return query.sortedQuery( sortBy, selectors, expressions ); + } + + @Override + public void query( Visitor visitor, Criteria... expressions ) { + query.query( visitor, expressions ); + } + + @Override + public void sortedQuery( Visitor visitor, String sortBy, Criteria... expressions ) { + query.query( visitor, expressions ); + } + + @Override + public void sortedQuery( Visitor visitor, Sort sortBy, Criteria... expressions ) { + query.sortedQuery( visitor, sortBy, expressions ); + } + + @Override + public void put( ITEM item ) { + editor.put( item ); + } + + @Override + public void removeByKey( KEY key ) { + editor.removeByKey( key ); + } + + @Override + public void removeAll( ITEM... items ) { + editor.removeAll( items ); + } + + @Override + public void removeAllAsync( Collection items ) { + editor.removeAllAsync( items ); + } + + @Override + public void addAll( ITEM... items ) { + editor.addAll( items ); + } + + @Override + public void addAllAsync( Collection items ) { + editor.addAllAsync( items ); + } + + @Override + public void modifyAll( ITEM... items ) { + editor.modifyAll( items ); + } + + @Override + public void modifyAll( Collection items ) { + editor.modifyAll( items ); + } + + @Override + public void modify( ITEM item ) { + editor.modify( item ); + } + + @Override + public void update( ITEM item ) { + editor.update( item ); + } + + @Override + public void modifyByValue( ITEM item, String property, String value ) { + editor.modifyByValue( item, property, value ); + } + + @Override + public void modify( ITEM item, String property, Object value ) { + editor.modify( item, property, value ); + } + + @Override + public void modify( ITEM item, String property, int value ) { + editor.modify( item, property, value ); + } + + @Override + public void modify( ITEM item, String property, long value ) { + editor.modify( item, property, value ); + } + + @Override + public void modify( ITEM item, String property, char value ) { + editor.modify( item, property, value ); + } + + @Override + public void modify( ITEM item, String property, short value ) { + editor.modify( item, property, value ); + } + + @Override + public void modify( ITEM item, String property, byte value ) { + editor.modify( item, property, value ); + } + + @Override + public void modify( ITEM item, String property, float value ) { + editor.modify( item, property, value ); + } + + @Override + public void modify( ITEM item, String property, double value ) { + editor.modify( item, property, value ); + } + + @Override + public void modify( ITEM item, Update... values ) { + editor.modify( item, values ); + } + + @Override + public void updateByValue( KEY key, String property, String value ) { + editor.updateByValue( key, property, value ); + } + + @Override + public void update( KEY key, String property, Object value ) { + editor.update( key, property, value ); + } + + @Override + public void update( KEY key, String property, int value ) { + editor.update( key, property, value ); + } + + @Override + public void update( KEY key, String property, long value ) { + editor.update( key, property, value ); + } + + @Override + public void update( KEY key, String property, char value ) { + editor.update( key, property, value ); + } + + @Override + public void update( KEY key, String property, short value ) { + editor.update( key, property, value ); + } + + @Override + public void update( KEY key, String property, byte value ) { + editor.update( key, property, value ); + } + + @Override + public void update( KEY key, String property, float value ) { + editor.update( key, property, value ); + } + + @Override + public void update( KEY key, String property, double value ) { + editor.update( key, property, value ); + } + + @Override + public void update( KEY key, Update... values ) { + editor.update( key, values ); + } + + @Override + public boolean compareAndUpdate( KEY key, String property, Object compare, Object value ) { + return editor.compareAndUpdate( key, property, compare, value ); + } + + @Override + public boolean compareAndUpdate( KEY key, String property, int compare, int value ) { + return editor.compareAndUpdate( key, property, compare, value ); + } + + @Override + public boolean compareAndUpdate( KEY key, String property, long compare, long value ) { + return editor.compareAndUpdate( key, property, compare, value ); + } + + @Override + public boolean compareAndUpdate( KEY key, String property, char compare, char value ) { + return editor.compareAndUpdate( key, property, compare, value ); + } + + @Override + public boolean compareAndUpdate( KEY key, String property, short compare, short value ) { + return editor.compareAndUpdate( key, property, compare, value ); + } + + @Override + public boolean compareAndUpdate( KEY key, String property, byte compare, byte value ) { + return editor.compareAndUpdate( key, property, compare, value ); + } + + @Override + public boolean compareAndUpdate( KEY key, String property, float compare, float value ) { + return editor.compareAndUpdate( key, property, compare, value ); + } + + @Override + public boolean compareAndUpdate( KEY key, String property, double compare, double value ) { + return editor.compareAndUpdate( key, property, compare, value ); + } + + @Override + public boolean compareAndIncrement( KEY key, String property, int compare ) { + return editor.compareAndIncrement( key, property, compare ); + } + + @Override + public boolean compareAndIncrement( KEY key, String property, long compare ) { + return editor.compareAndIncrement( key, property, compare ); + } + + @Override + public boolean compareAndIncrement( KEY key, String property, short compare ) { + return editor.compareAndIncrement( key, property, compare ); + } + + @Override + public boolean compareAndIncrement( KEY key, String property, byte compare ) { + return editor.compareAndIncrement( key, property, compare ); + } + + @Override + public void addAll( List items ) { + editor.addAll( items ); + } + + @Override + public Object readNestedValue( KEY key, String... properties ) { + return editor.readNestedValue( key, properties ); + } + + @Override + public int readNestedInt( KEY key, String... properties ) { + return editor.readNestedInt( key, properties ); + } + + @Override + public short readNestedShort( KEY key, String... properties ) { + return editor.readNestedShort( key, properties ); + } + + @Override + public char readNestedChar( KEY key, String... properties ) { + return editor.readNestedChar( key, properties ); + } + + @Override + public byte readNestedByte( KEY key, String... properties ) { + return editor.readNestedByte( key, properties ); + } + + @Override + public double readNestedDouble( KEY key, String... properties ) { + return editor.readNestedDouble( key, properties ); + } + + @Override + public float readNestedFloat( KEY key, String... properties ) { + return editor.readNestedFloat( key, properties ); + } + + @Override + public long readNestedLong( KEY key, String... properties ) { + return editor.readNestedLong( key, properties ); + } + + @Override + public boolean add( ITEM item ) { + return editor.add( item ); + } + + @Override + public boolean remove( Object o ) { + return query.remove( o ); + } + + @Override + public boolean containsAll( Collection c ) { + return query.containsAll( c ); + } + + @Override + public boolean addAll( Collection c ) { + return query.addAll( c ); + } + + @Override + public boolean removeAll( Collection c ) { + return query.removeAll( c ); + } + + @Override + public boolean retainAll( Collection c ) { + return query.retainAll( c ); + } + + @Override + public boolean delete( ITEM item ) { + return editor.delete( item ); + } + + @Override + public void addSearchIndex( String name, SearchIndex si ) { + query.addSearchIndex( name, si ); + } + + @Override + public void addLookupIndex( String name, LookupIndex si ) { + query.addLookupIndex( name, si ); + } + + @Override + public List all() { + return editor.all(); + } + + @Override + public int size() { + return editor.size(); + } + + @Override + public boolean isEmpty() { + + return query.isEmpty(); + } + + @Override + public boolean contains( Object o ) { + return query.contains( o ); + } + + @Override + public Iterator iterator() { + return query.iterator(); + } + + + @Override + public Object[] toArray() { + return query.toArray(); + + } + + @Override + public T[] toArray( T[] a ) { + return query.toArray( a ); + } + + @Override + public Collection toCollection() { + return editor.toCollection(); + } + + @Override + public void clear() { + editor.clear(); + } + + + @Override + public void setSearchableCollection( SearchableCollection searchableCollection ) { + this.query = searchableCollection; + } + + @Override + public void init() { + } + + @Override + public void setObjectEditor( ObjectEditor editor ) { + this.editor = editor; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/ResultSetImpl.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/ResultSetImpl.java new file mode 100644 index 0000000..902c1b1 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/ResultSetImpl.java @@ -0,0 +1,644 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.impl; + +import org.boon.core.reflection.BeanUtils; +import org.boon.core.Conversions; +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.criteria.internal.Criteria; +import org.boon.criteria.internal.QueryFactory; +import org.boon.criteria.Selector; +import org.boon.sort.Sort; +import org.boon.datarepo.DataRepoException; +import org.boon.datarepo.PlanStep; +import org.boon.datarepo.ResultSet; +import org.boon.datarepo.spi.ResultSetInternal; + +import java.lang.reflect.Array; +import java.util.*; + +import static org.boon.Boon.toJson; +import static org.boon.Lists.list; +import static org.boon.core.reflection.MapObjectConversion.toMap; + +public class ResultSetImpl implements ResultSetInternal { + + private List results; + private List> allResults; + private int totalSize; + + private List lastList; + + private Map fields; + + + public ResultSetImpl( Map fields ) { + this.fields = fields; + this.allResults = new ArrayList<>(); + } + + + public ResultSetImpl( List results, Map fields ) { + this.fields = fields; + this.allResults = new ArrayList<>(); + this.addResults( results ); + } + + public ResultSetImpl( List results ) { + if ( results.size() > 0 ) { + this.fields = BeanUtils.getFieldsFromObject( results.get( 0 )); + } else { + this.fields = Collections.EMPTY_MAP; + } + this.allResults = new ArrayList<>(); + this.addResults( results ); + } + + private void prepareResults() { + if ( results == null && allResults.size() == 1 ) { + results = allResults.get( 0 ); + } else if ( results == null ) { + + results = new ArrayList<>( totalSize ); + + for ( List list : allResults ) { + for ( T item : list ) { + results.add( item ); + } + } + } + allResults.clear(); + totalSize = 0; + } + + + public void addResults( List results ) { + lastList = results; + totalSize += results.size(); + allResults.add( results ); + } + + @Override + public ResultSet expectOne() { + prepareResults(); + if ( results.size() == 0 ) { + throw new DataRepoException( "Expected one result, no results" ); + } else if ( results.size() > 1 ) { + throw new DataRepoException( "Expected one result, but have many" ); + } + return this; + } + + @Override + public ResultSet expectOne( Class clz ) { + return ( ResultSet ) this.expectOne(); + } + + @Override + public ResultSet expectMany() { + prepareResults(); + + if ( results.size() <= 1 ) { + throw new DataRepoException( "Expected many" ); + } + return this; + } + + @Override + public ResultSet expectNone() { + prepareResults(); + + if ( results.size() != 0 ) { + throw new DataRepoException( "Expected none" ); + } + return this; + } + + @Override + public ResultSet expectOneOrMany() { + prepareResults(); + + if ( results.size() >= 1 ) { + throw new DataRepoException( "Expected one or many" ); + } + return this; + } + + @Override + public ResultSet removeDuplication() { + prepareResults(); + results = new ArrayList( asSet() ); + return this; + } + + @Override + public ResultSet sort( Sort sort ) { + prepareResults(); + sort.sort( results ); + return this; + } + + @Override + public Collection filter( Criteria criteria ) { + prepareResults(); + return QueryFactory.filter( results, criteria ); + } + + @Override + public void filterAndPrune( Criteria criteria ) { + prepareResults(); + this.results = QueryFactory.filter( results, criteria ); + } + + + @Override + public ResultSet>> select( Selector... selectors ) { + prepareResults(); + return new ResultSetImpl( + Selector.selectFrom( + Arrays.asList(selectors), results, fields), + fields ); + + } + + @Override + public int[] selectInts( Selector selector ) { + prepareResults(); + + int[] values = new int[ results.size() ]; + + List> maps = Selector.selectFrom(list(selector), results, fields); + + String keyName = selector.getName(); + for ( int index = 0; index < values.length; index++ ) { + Map map = maps.get( index ); + values[ index ] = Conversions.toInt( map.get( keyName ) ); + } + return values; + } + + @Override + public float[] selectFloats( Selector selector ) { + prepareResults(); + + float[] values = new float[ results.size() ]; + + List> maps = Selector.selectFrom(list(selector), results, fields); + + String keyName = selector.getName(); + for ( int index = 0; index < values.length; index++ ) { + Map map = maps.get( index ); + values[ index ] = Conversions.toFloat( map.get( keyName ) ); + } + return values; + } + + @Override + public short[] selectShorts( Selector selector ) { + prepareResults(); + + short[] values = new short[ results.size() ]; + + List> maps = Selector.selectFrom(list(selector), results, fields); + + String keyName = selector.getName(); + for ( int index = 0; index < values.length; index++ ) { + Map map = maps.get( index ); + values[ index ] = Conversions.toShort( map.get( keyName ) ); + } + return values; + } + + @Override + public double[] selectDoubles( Selector selector ) { + prepareResults(); + + double[] values = new double[ results.size() ]; + + List> maps = Selector.selectFrom(list(selector), results, fields); + + String keyName = selector.getName(); + for ( int index = 0; index < values.length; index++ ) { + Map map = maps.get( index ); + values[ index ] = Conversions.toDouble( map.get( keyName ) ); + } + return values; + } + + @Override + public byte[] selectBytes( Selector selector ) { + prepareResults(); + + byte[] values = new byte[ results.size() ]; + + List> maps = Selector.selectFrom(list(selector), results, fields); + + String keyName = selector.getName(); + for ( int index = 0; index < values.length; index++ ) { + Map map = maps.get( index ); + values[ index ] = Conversions.toByte( map.get( keyName ) ); + } + return values; + } + + @Override + public char[] selectChars( Selector selector ) { + prepareResults(); + + char[] values = new char[ results.size() ]; + + List> maps = Selector.selectFrom(list(selector), results, fields); + + String keyName = selector.getName(); + for ( int index = 0; index < values.length; index++ ) { + Map map = maps.get( index ); + values[ index ] = Conversions.toChar( map.get( keyName ) ); + } + return values; + } + + @Override + public Object[] selectObjects( Selector selector ) { + prepareResults(); + + Object[] values = new Object[ results.size() ]; + + List> maps = Selector.selectFrom(list(selector), results, fields); + + String keyName = selector.getName(); + for ( int index = 0; index < values.length; index++ ) { + Map map = maps.get( index ); + values[ index ] = map.get( keyName ); + } + return values; + } + + @Override + public OBJ[] selectObjects( Class cls, Selector selector ) { + prepareResults(); + + Object values = Array.newInstance( cls, results.size() ); + + List> maps = Selector.selectFrom(list(selector), results, fields); + + String keyName = selector.getName(); + for ( int index = 0; index < results.size(); index++ ) { + Map map = maps.get( index ); + BeanUtils.idx ( values, index, map.get ( keyName ) ); + } + return ( OBJ[] ) values; + } + + + @Override + public ResultSet selectObjectsAsResultSet( Class cls, Selector selector ) { + prepareResults(); + + Object values = Array.newInstance( cls, results.size() ); + + List> maps = Selector.selectFrom(list(selector), results, fields); + + String keyName = selector.getName(); + for ( int index = 0; index < results.size(); index++ ) { + Map map = maps.get( index ); + BeanUtils.idx ( values, index, map.get ( keyName ) ); + } + OBJ[] array = ( OBJ[] ) values; + List list = new ArrayList( Arrays.asList( array ) ); + return new ResultSetImpl( list ); + } + + @Override + public Collection asCollection() { + prepareResults(); + + return results; + } + + @Override + public String asJSONString() { + prepareResults(); + + throw new RuntimeException( "NOT IMPLEMENTED" ); + } + + @Override + public List> asListOfMaps() { + prepareResults(); + + + List> items = new ArrayList<>( results.size() ); + for ( T item : results ) { + items.add( toMap( item ) ); + } + return items; + + } + + @Override + public List asList() { + prepareResults(); + + return results; + } + + @Override + public List asList(Class cls) { + return (List)asList(); + } + + @Override + public Set asSet() { + prepareResults(); + + return new HashSet( results ); + } + + @Override + public List queryPlan() { + throw new RuntimeException( "NOT IMPLEMENTED" ); + } + + @Override + public T firstItem() { + prepareResults(); + + return results.get(0); + } + + @Override + public Map firstMap() { + prepareResults(); + return toMap(this.firstItem()); + } + + @Override + public String firstJSON() { + return toJson( firstItem () ); + } + + @Override + public int firstInt( Selector selector ) { + prepareResults(); + + int[] values = new int[ 1 ]; + + List> maps = Selector.selectFrom(list(selector), results, fields); + + String keyName = selector.getAlias(); + for ( int index = 0; index < values.length && index < maps.size(); index++ ) { + Map map = maps.get( index ); + values[ index ] = Conversions.toInt(map.get(keyName)); + if ( index == 1 ) { + break; + } + } + return values[ 0 ]; + + + } + + @Override + public float firstFloat( Selector selector ) { + prepareResults(); + + float[] values = new float[ 1 ]; + + List> maps = Selector.selectFrom(list(selector), results, fields); + + String keyName = selector.getName(); + for ( int index = 0; index < values.length; index++ ) { + Map map = maps.get( index ); + values[ index ] = Conversions.toFloat(map.get(keyName)); + if ( index == 1 ) { + break; + } + } + return values[ 1 ]; + } + + @Override + public short firstShort( Selector selector ) { + prepareResults(); + + short[] values = new short[ 1 ]; + + List> maps = Selector.selectFrom(list(selector), results, fields); + + String keyName = selector.getName(); + for ( int index = 0; index < values.length; index++ ) { + Map map = maps.get( index ); + values[ index ] = Conversions.toShort(map.get(keyName)); + if ( index == 1 ) { + break; + } + } + return values[ 1 ]; + } + + @Override + public double firstDouble( Selector selector ) { + prepareResults(); + + double[] values = new double[ 1 ]; + + List> maps = Selector.selectFrom(list(selector), results, fields); + + String keyName = selector.getName(); + for ( int index = 0; index < values.length; index++ ) { + Map map = maps.get( index ); + values[ index ] = Conversions.toDouble(map.get(keyName)); + if ( index == 1 ) { + break; + } + } + return values[ 1 ]; + } + + @Override + public byte firstByte( Selector selector ) { + prepareResults(); + + byte[] values = new byte[ 1 ]; + + List> maps = Selector.selectFrom(list(selector), results, fields); + + String keyName = selector.getName(); + for ( int index = 0; index < values.length; index++ ) { + Map map = maps.get( index ); + values[ index ] = Conversions.toByte(map.get(keyName)); + if ( index == 1 ) { + break; + } + } + return values[ 1 ]; + } + + @Override + public char firstChar( Selector selector ) { + prepareResults(); + + char[] values = new char[ 1 ]; + + List> maps = Selector.selectFrom(list(selector), results, fields); + + String keyName = selector.getName(); + for ( int index = 0; index < values.length; index++ ) { + Map map = maps.get( index ); + values[ index ] = Conversions.toChar(map.get(keyName)); + if ( index == 1 ) { + break; + } + } + return values[ 1 ]; + } + + @Override + public Object firstObject( Selector selector ) { + prepareResults(); + + Object[] values = new Object[ 1 ]; + + List> maps = Selector.selectFrom(list(selector), results, fields); + + String keyName = selector.getName(); + for ( int index = 0; index < values.length; index++ ) { + Map map = maps.get( index ); + values[ index ] = map.get( keyName ); + if ( index == 1 ) { + break; + } + } + return values[ 1 ]; + } + + @Override + public OBJ firstObject( Class cls, Selector selector ) { + prepareResults(); + + Object[] values = new Object[ 1 ]; + + List> maps = Selector.selectFrom(list(selector), results, fields); + + String keyName = selector.getName(); + for ( int index = 0; index < values.length; index++ ) { + Map map = maps.get( index ); + values[ index ] = map.get( keyName ); + if ( index == 1 ) { + break; + } + } + return ( OBJ ) values[ 1 ]; + } + + @Override + public List paginate( int start, int size ) { + prepareResults(); + + return results.subList( start, start + size ); + } + + @Override + public List> paginateMaps( int start, int size ) { + prepareResults(); + + List> mapResults = new ArrayList<>(); + List list = this.paginate( start, size ); + + for ( T item : list ) { + mapResults.add( toMap( item ) ); + } + + return mapResults; + } + + @Override + public String paginateJSON( int start, int size ) { + prepareResults(); + + throw new RuntimeException( "NOT IMPLEMENTED" ); + } + + @Override + public int size() { + if ( results != null ) { + return this.results.size(); + } else { + return totalSize; + } + } + + @Override + public Iterator iterator() { + prepareResults(); + return this.results.iterator(); + } + + @Override + public int lastSize() { + if ( lastList == null ) { + return 0; + } else { + return lastList.size(); + } + + } + + public void andResults() { + + int size = Integer.MAX_VALUE; + List finalResult = Collections.emptyList(); + + for (List result : allResults) { + + if (result.size()==0) { + finalResult = Collections.emptyList(); + size=0; + break; + } + if (result.size() < size) { + size = result.size(); + } + } + + + for (List result : allResults) { + + if (result.size() ==size) { + finalResult = result; + break; + } + } + + allResults.clear(); + allResults.add(finalResult); + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/SearchableCollectionDefault.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/SearchableCollectionDefault.java new file mode 100644 index 0000000..c83affa --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/SearchableCollectionDefault.java @@ -0,0 +1,729 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.impl; + +import org.boon.Boon; +import org.boon.Exceptions; +import org.boon.core.Conversions; +import org.boon.core.reflection.Reflection; +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.criteria.internal.Criteria; +import org.boon.criteria.Selector; +import org.boon.sort.Sort; +import org.boon.criteria.internal.Visitor; +import org.boon.datarepo.Filter; +import org.boon.datarepo.LookupIndex; +import org.boon.datarepo.ResultSet; +import org.boon.datarepo.SearchableCollection; +import org.boon.datarepo.impl.indexes.UniqueLookupIndex; +import org.boon.datarepo.spi.FilterComposer; +import org.boon.datarepo.spi.SearchIndex; +import org.boon.datarepo.spi.SearchableCollectionComposer; +import org.boon.core.Function; + +import java.util.*; +import java.util.logging.Logger; + +import static org.boon.Lists.list; +import static org.boon.Boon.isArray; +import static org.boon.core.reflection.MapObjectConversion.toMap; + +public class SearchableCollectionDefault implements SearchableCollection, SearchableCollectionComposer { + + + private Logger log = Logger.getLogger( RepoDefault.class.getName() ); + + protected Map lookupIndexMap = new LinkedHashMap<>(); + protected Map searchIndexMap = new LinkedHashMap<>(); + protected Set indexes = new LinkedHashSet<>(); + protected Filter filter; + + protected Map fields = new LinkedHashMap<>(); + protected UniqueLookupIndex primaryIndex; + + protected Function primaryKeyGetter; + protected String primaryKeyName; + + + protected boolean removeDuplication = true; + + + @Override + public boolean delete( ITEM item ) { + for ( LookupIndex index : indexes ) { + index.delete( item ); + } + return true; + } + + public boolean add( ITEM item ) { + + Exceptions.requireNonNull( item, "No nulls allowed in repo" ); + + KEY key = getKey( item ); + if ( primaryIndex.has( key ) ) { + return false; + } + + validateIndexes( item ); + return true; + } + + public void validateIndexes( ITEM item ) { + for ( LookupIndex index : indexes ) { + index.add( item ); + } + } + + + public ITEM get( KEY key ) { + LookupIndex lookupIndex = primaryIndex; + return ( ITEM ) lookupIndex.get( key ); + } + + public KEY getKey( ITEM item ) { + return ( KEY ) this.primaryKeyGetter.apply( item ); + } + + + public void setRemoveDuplication( boolean removeDuplication ) { + this.removeDuplication = removeDuplication; + } + + @Override + public int count( KEY key, String property, int value ) { + + SearchIndex index = this.searchIndexMap.get( property ); + + if ( index == null ) { + throw new IllegalStateException( String.format( + + "No searchIndex was found so you can't do a count for \n " + + "key %s \t property %s \t set %s", key, property, value ) ); + } + + return index.count( key ); + + } + + @Override + public int count( KEY key, String property, short value ) { + SearchIndex index = this.searchIndexMap.get( property ); + + if ( index == null ) { + throw new IllegalStateException( String.format( "No searchIndex was found so you can't do a count for \n " + + "key %s \t property %s \t set %s", key, property, value ) ); + } + + return index.count( key ); + } + + @Override + public int count( KEY key, String property, byte value ) { + SearchIndex index = this.searchIndexMap.get( property ); + + if ( index == null ) { + throw new IllegalStateException( String.format( "No searchIndex was found so you can't do a count for \n " + + "key %s \t property %s \t set %s", key, property, value ) ); + } + + return index.count( key ); + } + + @Override + public int count( KEY key, String property, long value ) { + SearchIndex index = this.searchIndexMap.get( property ); + + if ( index == null ) { + throw new IllegalStateException( + String.format( "No searchIndex was found so you can't do a count for \n " + + "key %s \t property %s \t set %s", key, property, value ) ); + } + + return index.count( key ); + } + + @Override + public int count( KEY key, String property, char value ) { + SearchIndex index = this.searchIndexMap.get( property ); + + if ( index == null ) { + throw new IllegalStateException( + String.format( "No searchIndex was found so you can't do a count for \n " + + "key %s \t property %s \t set %s", key, property, value ) ); + } + + return index.count( key ); + } + + @Override + public int count( KEY key, String property, float value ) { + SearchIndex index = this.searchIndexMap.get( property ); + + if ( index == null ) { + throw new IllegalStateException( + String.format( "No searchIndex was found so you can't do a count for \n " + + "key %s \t property %s \t set %s", key, property, value ) ); + } + + return index.count( key ); + } + + @Override + public int count( KEY key, String property, double value ) { + SearchIndex index = this.searchIndexMap.get( property ); + + if ( index == null ) { + throw new IllegalStateException( + String.format( "No searchIndex was found so you can't do a count for \n " + + "key %s \t property %s \t set %s", key, property, value ) ); + } + + return index.count( key ); + } + + @Override + public int count( KEY key, String property, Object value ) { + SearchIndex index = this.searchIndexMap.get( property ); + + if ( index == null ) { + throw new IllegalStateException( + String.format( "No searchIndex was found so you can't do a count for \n " + + "key %s \t property %s \t set %s", key, property, value ) ); + } + + return index.count( key ); + } + + @Override + public T max( KEY key, String property, Class type ) { + SearchIndex index = this.searchIndexMap.get( property ); + if ( index != null ) { + ITEM item = ( ITEM ) index.max(); + if ( item != null ) { + return ( T ) this.fields.get( property ).getValue( item ); + } + } + return null; + } + + @Override + public String maxString( KEY key, String property ) { + SearchIndex index = this.searchIndexMap.get( property ); + if ( index != null ) { + ITEM item = ( ITEM ) index.max(); + if ( item != null ) { + return ( String ) this.fields.get( property ).getObject( item ); + } + } + return null; + } + + @Override + public Number maxNumber( KEY key, String property ) { + SearchIndex index = this.searchIndexMap.get( property ); + if ( index != null ) { + ITEM item = ( ITEM ) index.max(); + if ( item != null ) { + return ( Number ) this.fields.get( property ).getValue( item ); + } + } + return Double.NaN; + } + + @Override + public int maxInt( KEY key, String property ) { + SearchIndex index = this.searchIndexMap.get( property ); + if ( index != null ) { + ITEM item = ( ITEM ) index.max(); + if ( item != null ) { + return this.fields.get( property ).getInt( item ); + } + } + return Integer.MIN_VALUE; + } + + @Override + public long maxLong( KEY key, String property ) { + SearchIndex index = this.searchIndexMap.get( property ); + if ( index != null ) { + ITEM item = ( ITEM ) index.max(); + if ( item != null ) { + FieldAccess field = this.fields.get( property ); + + if ( field.type() == long.class ) { + return field.getLong( item ); + } + } + } + return Long.MIN_VALUE; + } + + @Override + public double maxDouble( KEY key, String property ) { + SearchIndex index = this.searchIndexMap.get( property ); + if ( index != null ) { + ITEM item = ( ITEM ) index.max(); + if ( item != null ) { + return this.fields.get( property ).getDouble( item ); + } + } + return Integer.MIN_VALUE; + } + + @Override + public T min( KEY key, String property, Class type ) { + SearchIndex index = this.searchIndexMap.get( property ); + if ( index != null ) { + ITEM item = ( ITEM ) index.min(); + if ( item != null ) { + return ( T ) this.fields.get( property ).getValue( item ); + } + } + return null; + } + + @Override + public String minString( KEY key, String property ) { + SearchIndex index = this.searchIndexMap.get( property ); + if ( index != null ) { + ITEM item = ( ITEM ) index.min(); + if ( item != null ) { + return ( String ) this.fields.get( property ).getObject( item ); + } + } + return ""; + } + + @Override + public Number minNumber( KEY key, String property ) { + SearchIndex index = this.searchIndexMap.get( property ); + if ( index != null ) { + ITEM item = ( ITEM ) index.min(); + if ( item != null ) { + return ( Number ) this.fields.get( property ).getValue( item ); + } + } + return Double.NaN; + } + + @Override + public int minInt( KEY key, String property ) { + SearchIndex index = this.searchIndexMap.get( property ); + if ( index != null ) { + ITEM item = ( ITEM ) index.min(); + if ( item != null ) { + return this.fields.get( property ).getInt( item ); + } + } + return Integer.MAX_VALUE; + } + + @Override + public long minLong( KEY key, String property ) { + SearchIndex index = this.searchIndexMap.get( property ); + if ( index != null ) { + ITEM item = ( ITEM ) index.min(); + if ( item != null ) { + FieldAccess field = this.fields.get( property ); + + if ( field.type() == long.class ) { + return field.getLong( item ); + } + } + } + return Long.MAX_VALUE; + } + + @Override + public double minDouble( KEY key, String property ) { + SearchIndex index = this.searchIndexMap.get( property ); + if ( index != null ) { + ITEM item = ( ITEM ) index.min(); + if ( item != null ) { + return this.fields.get( property ).getDouble( item ); + } + } + return Double.MAX_VALUE; + } + + @Override + public ResultSet results( Criteria... expressions ) { + return this.filter.filter( expressions ); + } + + @Override + public List query( Criteria... expressions ) { + if ( expressions == null || expressions.length == 0 ) { + return this.all(); + } else { + if ( this.removeDuplication ) { + return ( List ) this.filter.filter( expressions ).removeDuplication().asList(); + } else { + return ( List ) this.filter.filter( expressions ).asList(); + } + } + } + + @Override + public List query(List expressions) { + return this.query(Conversions.toArray(Criteria.class, expressions)); + } + + @Override + public List sortedQuery( final String sortBy, Criteria... expressions ) { + Sort asc = Sort.asc( sortBy ); + return sortedQuery( asc, expressions ); + } + + @Override + public List sortedQuery( Sort sortBy, Criteria... expressions ) { + List results = this.query( expressions ); + sortBy.sort( results ); + return results; + } + + @Override + public List> queryAsMaps( Criteria... expressions ) { + List items = this.query( expressions ); + List> results = new ArrayList<>( items.size() ); + for ( ITEM item : items ) { + results.add( toMap( item ) ); + } + return results; + } + + @Override + public List> sortedQuery( final String sortBy, List selectors, Criteria... expressions ) { + + Sort asc = Sort.asc( sortBy ); + return sortedQuery( asc, selectors, expressions ); + } + + @Override + public List> sortedQuery( Sort sortBy, List selectors, Criteria... expressions ) { + final List> results = query( selectors, expressions ); + sortBy.sort( results ); + return results; + } + + private void visit( KEY key, ITEM item, Visitor visitor, Object o, List path, int levels ) { + if ( o == null ) { + return; + } + levels++; + if ( levels > 20 ) { + return; + } + visitor.visit( key, item, o, path ); + + + if ( o.getClass().isPrimitive() ) { + return; + } + + + if ( o.getClass().getName().startsWith( "java" ) ) { + return; + } + + + if ( isArray( o ) || o instanceof Collection ) { + + int index = 0; + Iterator iterator = Boon.iterator( o ); + while ( iterator.hasNext() ) { + path.add( String.format( "[%s]", index ) ); + Object objectItem = iterator.next(); + visit( key, item, visitor, objectItem, path, levels ); + path.remove( path.size() - 1 ); + index++; + + } + + } + + Map accessorFields = Reflection.getAllAccessorFields( o.getClass() ); + for ( FieldAccess field : accessorFields.values() ) { + if ( field.isStatic() ) { + continue; + } + path.add( field.name() ); + visit( key, item, visitor, field.getValue( o ), path, levels ); + path.remove( path.size() - 1 ); + + } + + + } + + @Override + public void query( Visitor visitor, Criteria... expressions ) { + List items = this.query( expressions ); + for ( ITEM item : items ) { + KEY key = ( KEY ) this.primaryKeyGetter.apply( item ); + int levels = 0; + visit( key, item, visitor, item, list( "root" ), levels ); + } + + } + + @Override + public void sortedQuery( Visitor visitor, String sortBy, Criteria... expressions ) { + Sort asc = Sort.asc( sortBy ); + sortedQuery( visitor, asc, expressions ); + } + + @Override + public void sortedQuery( Visitor visitor, Sort sortBy, Criteria... expressions ) { + List items = this.sortedQuery( sortBy, expressions ); + for ( ITEM item : items ) { + KEY key = ( KEY ) this.primaryKeyGetter.apply( item ); + int levels = 0; + visit( key, item, visitor, item, list( "root" ), levels ); + } + } + + @Override + public List> query( List selectors, Criteria... expressions ) { + + List results = this.query( expressions ); + + return Selector.selectFrom(selectors, results, fields); + } + + + public void invalidateIndex( String property, ITEM item ) { + + + LookupIndex index = this.searchIndexMap.get( property ); + if ( index != null ) { + index.delete( item ); + } + + index = this.lookupIndexMap.get( property ); + if ( index != null ) { + index.delete( item ); + } + filter.invalidate(); + + } + + public void validateIndex( String property, ITEM item ) { + LookupIndex index = this.searchIndexMap.get( property ); + if ( index != null ) { + index.add( item ); + } + + index = this.lookupIndexMap.get( property ); + if ( index != null ) { + index.add( item ); + } + + } + + + @Override + public void clear() { + for ( LookupIndex index : indexes ) { + index.clear(); + } + + } + + + public void setFilter( Filter filter ) { + this.filter = filter; + } + + + public void addSearchIndex( String name, SearchIndex si ) { + log.config( String.format( "search index added name %s", name ) ); + searchIndexMap.put( name, si ); + indexes.add( si ); + } + + public void addLookupIndex( String name, LookupIndex si ) { + log.config( String.format( "lookupWithDefault index added name %s", name ) ); + + lookupIndexMap.put( name, si ); + indexes.add( si ); + } + + public List all() { + return primaryIndex.all(); + } + + + public void setPrimaryKeyName( String primaryKey ) { + this.primaryKeyName = primaryKey; + } + + public Collection toCollection() { + return this.primaryIndex.toCollection(); + } + + public boolean isEmpty() { + return this.primaryIndex.toCollection().isEmpty(); + } + + + public Iterator iterator() { + return primaryIndex.toCollection().iterator(); + } + + + public Object[] toArray() { + return primaryIndex.toCollection().toArray(); + } + + public T[] toArray( T[] a ) { + return primaryIndex.toCollection().toArray( a ); + } + + + public void setPrimaryKeyGetter( Function getter ) { + log.config( String.format( "primary key getter set %s", getter ) ); + + this.primaryKeyGetter = getter; + } + + @Override + public void init() { + this.primaryIndex = ( UniqueLookupIndex ) this.lookupIndexMap.get( this.primaryKeyName ); + if ( filter instanceof FilterComposer ) { + FilterComposer fc = ( FilterComposer ) filter; + fc.setFields( fields ); + fc.setLookupIndexMap( this.lookupIndexMap ); + fc.setSearchIndexMap( this.searchIndexMap ); + fc.setSearchableCollection( this ); + fc.init(); + } + indexes.add( this.primaryIndex ); + } + + @Override + public void setFields( Map fields ) { + this.fields = fields; + } + + + public int size() { + return primaryIndex.size(); + } + + public boolean addAll( Collection items ) { + for ( ITEM item : items ) { + this.add( item ); + } + return true; + } + + public boolean remove( Object o ) { + KEY key = null; + ITEM item = null; + item = ( ITEM ) o; + delete( item ); + return true; + } + + public void removeByKey( KEY key ) { + ITEM item = this.get( key ); + this.delete( item ); + } + + + public boolean containsAll( Collection c ) { + + for ( Object object : c ) { + KEY key = null; + ITEM item = null; + try { + key = ( KEY ) object; + item = get( key ); + } catch ( ClassCastException ex ) { + ITEM itemArg = ( ITEM ) object; + key = this.getKey( itemArg ); + item = get( key ); + } + if ( item == null ) { + return true; + } + } + return false; + } + + + public boolean removeAll( Collection items ) { + for ( Object o : items ) { + remove( o ); + } + return true; + } + + + public boolean retainAll( Collection c ) { + for ( Object object : c ) { + KEY key = null; + ITEM item = null; + try { + key = ( KEY ) object; + item = get( key ); + } catch ( ClassCastException ex ) { + item = ( ITEM ) object; + } + if ( item == null ) { + return true; + } + } + return false; + } + + + public boolean contains( Object o ) { + KEY key = null; + ITEM item = null; + try { + key = ( KEY ) o; + item = get( key ); + } catch ( ClassCastException ex ) { + ITEM itemArg = ( ITEM ) o; + key = getKey( itemArg ); + item = get( key ); + } + if ( item == null ) { + return true; + } else { + return false; + } + + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/decorators/FilterDecoratorBase.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/decorators/FilterDecoratorBase.java new file mode 100644 index 0000000..6493492 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/decorators/FilterDecoratorBase.java @@ -0,0 +1,55 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.impl.decorators; + +import org.boon.criteria.internal.Criteria; +import org.boon.datarepo.Filter; +import org.boon.datarepo.ResultSet; + +/** + * Checking + */ +public class FilterDecoratorBase implements Filter { + + Filter delegate; + + FilterDecoratorBase( Filter delegate ) { + this.delegate = delegate; + } + + @Override + public ResultSet filter( Criteria... expressions ) { + return delegate.filter( expressions ); + } + + @Override + public void invalidate() { + delegate.invalidate(); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/decorators/FilterWithCache.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/decorators/FilterWithCache.java new file mode 100644 index 0000000..28579e2 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/decorators/FilterWithCache.java @@ -0,0 +1,79 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.impl.decorators; + +import org.boon.cache.Cache; +import org.boon.core.Supplier; +import org.boon.criteria.ObjectFilter; +import org.boon.criteria.internal.Criteria; +import org.boon.criteria.internal.Group; +import org.boon.datarepo.Filter; +import org.boon.datarepo.ResultSet; + +public class FilterWithCache extends FilterDecoratorBase { + + private final Supplier> cacheFactory; + + private Cache cache; + + public FilterWithCache( final Filter delegate, final Supplier> cacheFactory ) { + super( delegate ); + this.cacheFactory = cacheFactory; + this.cache = cacheFactory.get(); + } + + @Override + public ResultSet filter( Criteria... expressions ) { + Group and = ObjectFilter.and( expressions ); + + ResultSet results = cache.get( and ); + + + if ( results != null ) { + cache.put( and, results ); + return results; + } + + + results = super.filter( expressions ); + + cache.put( and, results ); + + return results; + } + + @Override + public void invalidate() { + + cache = this.cacheFactory.get(); + super.invalidate(); + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/decorators/FilterWithSimpleCache.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/decorators/FilterWithSimpleCache.java new file mode 100644 index 0000000..071ff7c --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/decorators/FilterWithSimpleCache.java @@ -0,0 +1,85 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.impl.decorators; + +import org.boon.cache.Cache; +import org.boon.cache.CacheType; +import org.boon.cache.SimpleConcurrentCache; +import org.boon.criteria.ObjectFilter; +import org.boon.criteria.internal.Criteria; +import org.boon.criteria.internal.Group; +import org.boon.datarepo.Filter; +import org.boon.datarepo.ResultSet; + +public class FilterWithSimpleCache extends FilterDecoratorBase { + + /* The fifo cache is meant for a routine that is maybe using a few queries in a loop. */ + private Cache fifoCache = new SimpleConcurrentCache<>( 50, false, CacheType.FIFO ); + private Cache lruCache = new SimpleConcurrentCache<>( 1_000, false, CacheType.LRU ); + + + @Override + public ResultSet filter( Criteria... expressions ) { + Group and = ObjectFilter.and( expressions ); + + ResultSet results = fifoCache.get( and ); + + + if ( results == null ) { + results = lruCache.get( and ); + if ( results != null ) { + fifoCache.put( and, results ); + return results; + } + } + + + results = super.filter( expressions ); + + fifoCache.put( and, results ); + lruCache.put( and, results ); + + return results; + } + + @Override + public void invalidate() { + + /* The fifo cache is meant for a routine that is maybe using a few queries in a loop. */ + fifoCache = new SimpleConcurrentCache<>( 50, false, CacheType.FIFO ); + lruCache = new SimpleConcurrentCache<>( 1_000, false, CacheType.LRU ); + super.invalidate(); + } + + public FilterWithSimpleCache( Filter delegate ) { + super( delegate ); + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/decorators/ObjectEditorCloneDecorator.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/decorators/ObjectEditorCloneDecorator.java new file mode 100644 index 0000000..6f603f1 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/decorators/ObjectEditorCloneDecorator.java @@ -0,0 +1,76 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.impl.decorators; + +import org.boon.datarepo.ObjectEditor; + +import static org.boon.core.reflection.BeanUtils.copy; + + +public class ObjectEditorCloneDecorator extends ObjectEditorDecoratorBase { + + public ObjectEditorCloneDecorator() { + + } + + + public void modify( ITEM item ) { + item = copy( item ); + super.modify( item ); + } + + @Override + public void put( ITEM item ) { + item = copy( item ); + super.put( item ); + } + + + @Override + public boolean add( ITEM item ) { + item = copy( item ); + return super.add( item ); + } + + @Override + public ITEM get( KEY key ) { + ITEM item = super.get( key ); + if ( item != null ) { + return copy( item ); + } + return item; + } + + public ObjectEditorCloneDecorator( ObjectEditor oe ) { + super( oe ); + + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/decorators/ObjectEditorDecoratorBase.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/decorators/ObjectEditorDecoratorBase.java new file mode 100644 index 0000000..2be4d77 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/decorators/ObjectEditorDecoratorBase.java @@ -0,0 +1,394 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.impl.decorators; + +import org.boon.criteria.Update; +import org.boon.datarepo.ObjectEditor; + +import java.util.Collection; +import java.util.List; + +public class ObjectEditorDecoratorBase implements ObjectEditor { + private final ObjectEditor objectEditorDefault; + + public ObjectEditorDecoratorBase() { + this.objectEditorDefault = null; + } + + public ObjectEditorDecoratorBase( ObjectEditor oe ) { + this.objectEditorDefault = oe; + + } + + public ObjectEditor delegate() { + return objectEditorDefault; + } + + public void put( ITEM item ) { + objectEditorDefault.put( item ); + } + + public void removeByKey( KEY key ) { + objectEditorDefault.removeByKey( key ); + } + + public void removeAll( ITEM... items ) { + objectEditorDefault.removeAll( items ); + } + + public void removeAllAsync( Collection items ) { + objectEditorDefault.removeAllAsync( items ); + } + + public void addAll( ITEM... items ) { + objectEditorDefault.addAll( items ); + } + + public void addAllAsync( Collection items ) { + objectEditorDefault.addAllAsync( items ); + } + + public void modifyAll( ITEM... items ) { + objectEditorDefault.modifyAll( items ); + } + + public void modifyAll( Collection items ) { + objectEditorDefault.modifyAll( items ); + } + + public void modify( ITEM item ) { + objectEditorDefault.modify( item ); + } + + @Override + public void update( ITEM item ) { + objectEditorDefault.update( item ); + } + + public void modify( ITEM item, String property, Object value ) { + objectEditorDefault.modify( item, property, value ); + } + + public void modifyByValue( ITEM item, String property, String value ) { + objectEditorDefault.modifyByValue( item, property, value ); + } + + public void modify( ITEM item, String property, int value ) { + objectEditorDefault.modify( item, property, value ); + } + + public void modify( ITEM item, String property, long value ) { + objectEditorDefault.modify( item, property, value ); + } + + public void modify( ITEM item, String property, char value ) { + objectEditorDefault.modify( item, property, value ); + } + + public void modify( ITEM item, String property, short value ) { + objectEditorDefault.modify( item, property, value ); + } + + public void modify( ITEM item, String property, byte value ) { + objectEditorDefault.modify( item, property, value ); + } + + public void modify( ITEM item, String property, float value ) { + objectEditorDefault.modify( item, property, value ); + } + + public void modify( ITEM item, String property, double value ) { + objectEditorDefault.modify( item, property, value ); + } + + public void modify( ITEM item, Update... values ) { + objectEditorDefault.modify( item, values ); + } + + public void update( KEY key, String property, Object value ) { + objectEditorDefault.update( key, property, value ); + } + + public void updateByValue( KEY key, String property, String value ) { + objectEditorDefault.updateByValue( key, property, value ); + } + + public void update( KEY key, String property, int value ) { + objectEditorDefault.update( key, property, value ); + } + + public void update( KEY key, String property, long value ) { + objectEditorDefault.update( key, property, value ); + } + + public void update( KEY key, String property, char value ) { + objectEditorDefault.update( key, property, value ); + } + + public void update( KEY key, String property, short value ) { + objectEditorDefault.update( key, property, value ); + } + + public void update( KEY key, String property, byte value ) { + objectEditorDefault.update( key, property, value ); + } + + public void update( KEY key, String property, float value ) { + objectEditorDefault.update( key, property, value ); + } + + public void update( KEY key, String property, double value ) { + objectEditorDefault.update( key, property, value ); + } + + public void update( KEY key, Update... values ) { + objectEditorDefault.update( key, values ); + } + + public boolean compareAndUpdate( KEY key, String property, Object compare, Object value ) { + return objectEditorDefault.compareAndUpdate( key, property, compare, value ); + } + + public boolean compareAndUpdate( KEY key, String property, int compare, int value ) { + return objectEditorDefault.compareAndUpdate( key, property, compare, value ); + } + + public boolean compareAndUpdate( KEY key, String property, long compare, long value ) { + return objectEditorDefault.compareAndUpdate( key, property, compare, value ); + } + + public boolean compareAndUpdate( KEY key, String property, char compare, char value ) { + return objectEditorDefault.compareAndUpdate( key, property, compare, value ); + } + + public boolean compareAndUpdate( KEY key, String property, short compare, short value ) { + return objectEditorDefault.compareAndUpdate( key, property, compare, value ); + } + + public boolean compareAndUpdate( KEY key, String property, byte compare, byte value ) { + return objectEditorDefault.compareAndUpdate( key, property, compare, value ); + } + + public boolean compareAndUpdate( KEY key, String property, float compare, float value ) { + return objectEditorDefault.compareAndUpdate( key, property, compare, value ); + } + + public boolean compareAndUpdate( KEY key, String property, double compare, double value ) { + return objectEditorDefault.compareAndUpdate( key, property, compare, value ); + } + + public boolean compareAndIncrement( KEY key, String property, int compare ) { + return objectEditorDefault.compareAndIncrement( key, property, compare ); + } + + public boolean compareAndIncrement( KEY key, String property, long compare ) { + return objectEditorDefault.compareAndIncrement( key, property, compare ); + } + + public boolean compareAndIncrement( KEY key, String property, short compare ) { + return objectEditorDefault.compareAndIncrement( key, property, compare ); + } + + public boolean compareAndIncrement( KEY key, String property, byte compare ) { + return objectEditorDefault.compareAndIncrement( key, property, compare ); + } + + public void addAll( List items ) { + objectEditorDefault.addAll( items ); + } + + @Override + public Object readNestedValue( KEY key, String... properties ) { + return objectEditorDefault.readNestedValue( key, properties ); + } + + @Override + public int readNestedInt( KEY key, String... properties ) { + return objectEditorDefault.readNestedInt( key, properties ); + } + + @Override + public short readNestedShort( KEY key, String... properties ) { + return objectEditorDefault.readNestedShort( key, properties ); + } + + @Override + public char readNestedChar( KEY key, String... properties ) { + return objectEditorDefault.readNestedChar( key, properties ); + } + + @Override + public byte readNestedByte( KEY key, String... properties ) { + return objectEditorDefault.readNestedByte( key, properties ); + } + + @Override + public double readNestedDouble( KEY key, String... properties ) { + return objectEditorDefault.readNestedDouble( key, properties ); + } + + @Override + public float readNestedFloat( KEY key, String... properties ) { + return objectEditorDefault.readNestedFloat( key, properties ); + } + + @Override + public long readNestedLong( KEY key, String... properties ) { + return objectEditorDefault.readNestedLong( key, properties ); + } + + @Override + public Object readObject( KEY key, String property ) { + return objectEditorDefault.readObject( key, property ); + } + + @Override + public T readValue( KEY key, String property, Class type ) { + return objectEditorDefault.readValue( key, property, type ); + } + + @Override + public int readInt( KEY key, String property ) { + return objectEditorDefault.readInt( key, property ); + } + + @Override + public long readLong( KEY key, String property ) { + return objectEditorDefault.readLong( key, property ); + + } + + @Override + public char readChar( KEY key, String property ) { + return objectEditorDefault.readChar( key, property ); + + } + + @Override + public short readShort( KEY key, String property ) { + return objectEditorDefault.readShort( key, property ); + + } + + @Override + public byte readByte( KEY key, String property ) { + return objectEditorDefault.readByte( key, property ); + + } + + @Override + public float readFloat( KEY key, String property ) { + return objectEditorDefault.readFloat( key, property ); + } + + @Override + public double readDouble( KEY key, String property ) { + return objectEditorDefault.readDouble( key, property ); + + } + + @Override + public Object getObject( ITEM item, String property ) { + return objectEditorDefault.getObject( item, property ); + } + + @Override + public T getValue( ITEM item, String property, Class type ) { + return objectEditorDefault.getValue( item, property, type ); + } + + @Override + public int getInt( ITEM item, String property ) { + return objectEditorDefault.getInt( item, property ); + } + + @Override + public long getLong( ITEM item, String property ) { + return objectEditorDefault.getLong( item, property ); + } + + @Override + public char getChar( ITEM item, String property ) { + return objectEditorDefault.getChar( item, property ); + } + + @Override + public short getShort( ITEM item, String property ) { + return objectEditorDefault.getShort( item, property ); + } + + @Override + public byte getByte( ITEM item, String property ) { + return objectEditorDefault.getByte( item, property ); + } + + @Override + public float getFloat( ITEM item, String property ) { + return objectEditorDefault.getFloat( item, property ); + } + + @Override + public double getDouble( ITEM item, String property ) { + return objectEditorDefault.getDouble( item, property ); + } + + public boolean add( ITEM item ) { + return objectEditorDefault.add( item ); + } + + + public ITEM get( KEY key ) { + return objectEditorDefault.get( key ); + } + + public KEY getKey( ITEM item ) { + return objectEditorDefault.getKey( item ); + } + + public void clear() { + objectEditorDefault.clear(); + } + + public boolean delete( ITEM item ) { + return objectEditorDefault.delete( item ); + } + + public List all() { + return objectEditorDefault.all(); + } + + public int size() { + return objectEditorDefault.size(); + } + + public Collection toCollection() { + return objectEditorDefault.toCollection(); + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/decorators/ObjectEditorEventDecorator.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/decorators/ObjectEditorEventDecorator.java new file mode 100644 index 0000000..c651703 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/decorators/ObjectEditorEventDecorator.java @@ -0,0 +1,310 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.impl.decorators; + + +import org.boon.criteria.Update; +import org.boon.datarepo.ObjectEditor; +import org.boon.datarepo.modification.ModificationEvent; +import org.boon.datarepo.modification.ModificationListener; + +import java.util.List; +import java.util.concurrent.CopyOnWriteArrayList; + +import static org.boon.Lists.list; +import static org.boon.datarepo.modification.ModificationEvent.createModification; +import static org.boon.datarepo.modification.ModificationType.*; + +public class ObjectEditorEventDecorator extends ObjectEditorDecoratorBase { + + List> listeners = new CopyOnWriteArrayList<>(); + + public void add( ModificationListener l ) { + listeners.add( l ); + + + } + + public void remove( ModificationListener l ) { + listeners.add( l ); + } + + public ObjectEditorEventDecorator() { + + } + + public ObjectEditorEventDecorator( ObjectEditor oe ) { + super( oe ); + + } + + + public void modify( ITEM item ) { + fire( createModification( BEFORE_MODIFY, super.getKey( item ), item, null, null ) ); + super.modify( item ); + fire( createModification( AFTER_MODIFY, super.getKey( item ), item, null, null ) ); + } + + public void update( ITEM item ) { + fire( createModification( BEFORE_UPDATE, super.getKey( item ), item, null, null ) ); + super.modify( item ); + fire( createModification( AFTER_UPDATE, super.getKey( item ), item, null, null ) ); + } + + private void fire( ModificationEvent event ) { + for ( ModificationListener l : listeners ) { + l.modification( event ); + } + } + + public void modify( ITEM item, String property, Object value ) { + fire( createModification( BEFORE_MODIFY, super.getKey( item ), item, property, value ) ); + super.modify( item, property, value ); + fire( createModification( AFTER_MODIFY, super.getKey( item ), item, property, value ) ); + + } + + public void modifyByValue( ITEM item, String property, String value ) { + fire( createModification( BEFORE_MODIFY, super.getKey( item ), item, property, value ) ); + super.modifyByValue( item, property, value ); + fire( createModification( AFTER_MODIFY, super.getKey( item ), item, property, value ) ); + + } + + public void modify( ITEM item, String property, int value ) { + fire( createModification( BEFORE_MODIFY, super.getKey( item ), item, property, value ) ); + super.modify( item, property, value ); + fire( createModification( AFTER_MODIFY, super.getKey( item ), item, property, value ) ); + + } + + public void modify( ITEM item, String property, long value ) { + fire( createModification( BEFORE_MODIFY, super.getKey( item ), item, property, value ) ); + super.modify( item, property, value ); + fire( createModification( AFTER_MODIFY, super.getKey( item ), item, property, value ) ); + } + + public void modify( ITEM item, String property, char value ) { + fire( createModification( BEFORE_MODIFY, super.getKey( item ), item, property, value ) ); + super.modify( item, property, value ); + fire( createModification( AFTER_MODIFY, super.getKey( item ), item, property, value ) ); + } + + public void modify( ITEM item, String property, short value ) { + fire( createModification( BEFORE_MODIFY, super.getKey( item ), item, property, value ) ); + super.modify( item, property, value ); + fire( createModification( AFTER_MODIFY, super.getKey( item ), item, property, value ) ); + } + + public void modify( ITEM item, String property, byte value ) { + fire( createModification( BEFORE_MODIFY, super.getKey( item ), item, property, value ) ); + super.modify( item, property, value ); + fire( createModification( AFTER_MODIFY, super.getKey( item ), item, property, value ) ); + } + + public void modify( ITEM item, String property, float value ) { + fire( createModification( BEFORE_MODIFY, super.getKey( item ), item, property, value ) ); + super.modify( item, property, value ); + fire( createModification( AFTER_MODIFY, super.getKey( item ), item, property, value ) ); + } + + public void modify( ITEM item, String property, double value ) { + fire( createModification( BEFORE_MODIFY, super.getKey( item ), item, property, value ) ); + super.modify( item, property, value ); + fire( createModification( AFTER_MODIFY, super.getKey( item ), item, property, value ) ); + } + + public void modify( ITEM item, Update... values ) { + fire( createModification( BEFORE_MODIFY_BY_VALUE_SETTERS, super.getKey( item ), item, null, values ) ); + super.modify( item, values ); + fire( createModification( AFTER_MODIFY_BY_VALUE_SETTERS, super.getKey( item ), item, null, values ) ); + } + + public void update( KEY key, String property, Object value ) { + fire( createModification( BEFORE_UPDATE, key, ( ITEM ) null, property, value ) ); + super.update( key, property, value ); + fire( createModification( AFTER_UPDATE, key, ( ITEM ) null, property, value ) ); + } + + public void updateByValue( KEY key, String property, String value ) { + fire( createModification( BEFORE_UPDATE, key, ( ITEM ) null, property, value ) ); + super.update( key, property, value ); + fire( createModification( AFTER_UPDATE, key, ( ITEM ) null, property, value ) ); + } + + public void update( KEY key, String property, int value ) { + fire( createModification( BEFORE_UPDATE, key, ( ITEM ) null, property, value ) ); + super.update( key, property, value ); + fire( createModification( AFTER_UPDATE, key, ( ITEM ) null, property, value ) ); + } + + public void update( KEY key, String property, long value ) { + fire( createModification( BEFORE_UPDATE, key, ( ITEM ) null, property, value ) ); + super.update( key, property, value ); + fire( createModification( AFTER_UPDATE, key, ( ITEM ) null, property, value ) ); + } + + public void update( KEY key, String property, char value ) { + fire( createModification( BEFORE_UPDATE, key, ( ITEM ) null, property, value ) ); + super.update( key, property, value ); + fire( createModification( AFTER_UPDATE, key, ( ITEM ) null, property, value ) ); + } + + public void update( KEY key, String property, short value ) { + fire( createModification( BEFORE_UPDATE, key, ( ITEM ) null, property, value ) ); + super.update( key, property, value ); + fire( createModification( AFTER_UPDATE, key, ( ITEM ) null, property, value ) ); + } + + public void update( KEY key, String property, byte value ) { + fire( createModification( BEFORE_UPDATE, key, ( ITEM ) null, property, value ) ); + super.update( key, property, value ); + fire( createModification( AFTER_UPDATE, key, ( ITEM ) null, property, value ) ); + } + + public void update( KEY key, String property, float value ) { + fire( createModification( BEFORE_UPDATE, key, ( ITEM ) null, property, value ) ); + super.update( key, property, value ); + fire( createModification( AFTER_UPDATE, key, ( ITEM ) null, property, value ) ); + } + + public void update( KEY key, String property, double value ) { + fire( createModification( BEFORE_UPDATE, key, ( ITEM ) null, property, value ) ); + super.update( key, property, value ); + fire( createModification( AFTER_UPDATE, key, ( ITEM ) null, property, value ) ); + } + + public void update( KEY key, Update... values ) { + fire( createModification( BEFORE_UPDATE_BY_VALUE_SETTERS, key, ( ITEM ) null, null, values ) ); + super.update( key, values ); + fire( createModification( AFTER_UPDATE_BY_VALUE_SETTERS, key, ( ITEM ) null, null, values ) ); + } + + public boolean compareAndUpdate( KEY key, String property, Object compare, Object value ) { + fire( createModification( BEFORE_UPDATE, key, ( ITEM ) null, property, list( compare, value ) ) ); + boolean updated = super.compareAndUpdate( key, property, compare, value ); + if ( updated ) { + fire( createModification( AFTER_UPDATE, key, ( ITEM ) null, property, list( compare, value ) ) ); + } + return updated; + } + + public boolean compareAndUpdate( KEY key, String property, int compare, int value ) { + fire( createModification( BEFORE_UPDATE, key, ( ITEM ) null, property, list( compare, value ) ) ); + boolean updated = super.compareAndUpdate( key, property, compare, value ); + if ( updated ) { + fire( createModification( AFTER_UPDATE, key, ( ITEM ) null, property, list( compare, value ) ) ); + } + return updated; + } + + public boolean compareAndUpdate( KEY key, String property, long compare, long value ) { + fire( createModification( BEFORE_UPDATE, key, ( ITEM ) null, property, list( compare, value ) ) ); + boolean updated = super.compareAndUpdate( key, property, compare, value ); + if ( updated ) { + fire( createModification( AFTER_UPDATE, key, ( ITEM ) null, property, list( compare, value ) ) ); + } + return updated; + } + + public boolean compareAndUpdate( KEY key, String property, char compare, char value ) { + fire( createModification( BEFORE_UPDATE, key, ( ITEM ) null, property, list( ( char ) compare, ( char ) value ) ) ); + boolean updated = super.compareAndUpdate( key, property, compare, value ); + if ( updated ) { + fire( createModification( AFTER_UPDATE, key, ( ITEM ) null, property, list( ( char ) compare, ( char ) value ) ) ); + } + return updated; + } + + public boolean compareAndUpdate( KEY key, String property, short compare, short value ) { + fire( createModification( BEFORE_UPDATE, key, ( ITEM ) null, property, list( compare, value ) ) ); + boolean updated = super.compareAndUpdate( key, property, compare, value ); + if ( updated ) { + fire( createModification( AFTER_UPDATE, key, ( ITEM ) null, property, list( compare, value ) ) ); + } + return updated; + } + + public boolean compareAndUpdate( KEY key, String property, byte compare, byte value ) { + fire( createModification( BEFORE_UPDATE, key, ( ITEM ) null, property, list( compare, value ) ) ); + boolean updated = super.compareAndUpdate( key, property, compare, value ); + if ( updated ) { + fire( createModification( AFTER_UPDATE, key, ( ITEM ) null, property, list( compare, value ) ) ); + } + return updated; + } + + public boolean compareAndUpdate( KEY key, String property, float compare, float value ) { + fire( createModification( BEFORE_UPDATE, key, ( ITEM ) null, property, list( compare, value ) ) ); + boolean updated = super.compareAndUpdate( key, property, compare, value ); + if ( updated ) { + fire( createModification( AFTER_UPDATE, key, ( ITEM ) null, property, list( compare, value ) ) ); + } + return updated; + } + + public boolean compareAndUpdate( KEY key, String property, double compare, double value ) { + fire( createModification( BEFORE_UPDATE, key, ( ITEM ) null, property, list( compare, value ) ) ); + boolean updated = super.compareAndUpdate( key, property, compare, value ); + if ( updated ) { + fire( createModification( AFTER_UPDATE, key, ( ITEM ) null, property, list( compare, value ) ) ); + } + return updated; + } + + public boolean compareAndIncrement( KEY key, String property, int compare ) { + fire( createModification( BEFORE_INCREMENT, key, ( ITEM ) null, property, compare ) ); + boolean updated = super.compareAndIncrement( key, property, compare ); + fire( createModification( AFTER_INCREMENT, key, ( ITEM ) null, property, compare ) ); + return updated; + } + + public boolean compareAndIncrement( KEY key, String property, long compare ) { + fire( createModification( BEFORE_INCREMENT, key, ( ITEM ) null, property, compare ) ); + boolean updated = super.compareAndIncrement( key, property, compare ); + fire( createModification( AFTER_INCREMENT, key, ( ITEM ) null, property, compare ) ); + return updated; + } + + public boolean compareAndIncrement( KEY key, String property, short compare ) { + fire( createModification( BEFORE_INCREMENT, key, ( ITEM ) null, property, compare ) ); + boolean updated = super.compareAndIncrement( key, property, compare ); + fire( createModification( AFTER_INCREMENT, key, ( ITEM ) null, property, compare ) ); + return updated; + } + + public boolean compareAndIncrement( KEY key, String property, byte compare ) { + fire( createModification( BEFORE_INCREMENT, key, ( ITEM ) null, property, compare ) ); + boolean updated = super.compareAndIncrement( key, property, compare ); + fire( createModification( AFTER_INCREMENT, key, ( ITEM ) null, property, compare ) ); + return updated; + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/decorators/ObjectEditorLogNullCheckDecorator.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/decorators/ObjectEditorLogNullCheckDecorator.java new file mode 100644 index 0000000..4dd4fde --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/decorators/ObjectEditorLogNullCheckDecorator.java @@ -0,0 +1,454 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.impl.decorators; + + +import org.boon.criteria.Update; +import org.boon.datarepo.ObjectEditor; + +import java.util.logging.Level; +import java.util.logging.Logger; + +import static org.boon.Exceptions.requireNonNull; + + +public class ObjectEditorLogNullCheckDecorator extends ObjectEditorDecoratorBase { + + Logger logger = Logger.getLogger( ObjectEditorLogNullCheckDecorator.class.getName() ); + Level level = Level.FINER; + + + private boolean debug = false; + + void log( final String msg, final Object... items ) { + + if ( debug ) { + System.out.printf( msg, items ); + } + String message = String.format( msg, items ); + logger.log( level, message ); + + } + + + public void setLevel( Level level ) { + this.level = level; + } + + public void setDebug( boolean debug ) { + this.debug = debug; + } + + + public void setLogger( Logger logger ) { + this.logger = logger; + } + + public ObjectEditorLogNullCheckDecorator() { + + + } + + public ObjectEditorLogNullCheckDecorator( ObjectEditor oe ) { + super( oe ); + + } + + + @Override + public void put( ITEM item ) { + requireNonNull( item, "item cannot be null" ); + log( "put (item=%s)", item ); + super.put( item ); + } + + + @Override + public boolean add( ITEM item ) { + requireNonNull( item, "item cannot be null" ); + log( "addObject (item=%s)", item ); + return super.add( item ); + } + + @Override + public ITEM get( KEY key ) { + requireNonNull( key, "key cannot be null" ); + log( "get (key=%s)", key ); + + return super.get( key ); + } + + + @Override + public void modify( ITEM item ) { + requireNonNull( item, "item cannot be null" ); + log( "modify (item=%s)", item ); + + super.modify( item ); + } + + @Override + public void modify( ITEM item, String property, Object value ) { + requireNonNull( item, "item cannot be null" ); + requireNonNull( property, "property cannot be null" ); + requireNonNull( value, "value cannot be null" ); + + log( "modify (item=%s, property=%s, set=%s)", item, property, value ); + + super.modify( item, property, value ); + } + + @Override + public void modifyByValue( ITEM item, String property, String value ) { + requireNonNull( item, "item cannot be null" ); + requireNonNull( property, "property cannot be null" ); + requireNonNull( value, "value cannot be null" ); + + log( "modify (item=%s, property=%s, set=%s)", item, property, value ); + + super.modifyByValue( item, property, value ); + } + + @Override + public void modify( ITEM item, String property, int value ) { + requireNonNull( item, "item cannot be null" ); + requireNonNull( property, "property cannot be null" ); + requireNonNull( value, "value cannot be null" ); + + log( "modify (item=%s, property=%s, set=%s)", item, property, value ); + + super.modify( item, property, value ); + } + + @Override + public void modify( ITEM item, String property, long value ) { + + requireNonNull( item, "item cannot be null" ); + requireNonNull( property, "property cannot be null" ); + requireNonNull( value, "value cannot be null" ); + + log( "modify (item=%s, property=%s, set=%s)", item, property, value ); + + super.modify( item, property, value ); + } + + @Override + public void modify( ITEM item, String property, char value ) { + + requireNonNull( item, "item cannot be null" ); + requireNonNull( property, "property cannot be null" ); + requireNonNull( value, "value cannot be null" ); + + log( "modify (item=%s, property=%s, set=%s)", item, property, value ); + + super.modify( item, property, value ); + } + + @Override + public void modify( ITEM item, String property, short value ) { + + requireNonNull( item, "item cannot be null" ); + requireNonNull( property, "property cannot be null" ); + requireNonNull( value, "value cannot be null" ); + + log( "modify (item=%s, property=%s, set=%s)", item, property, value ); + + super.modify( item, property, value ); + } + + @Override + public void modify( ITEM item, String property, byte value ) { + requireNonNull( item, "item cannot be null" ); + requireNonNull( property, "property cannot be null" ); + requireNonNull( value, "value cannot be null" ); + + log( "modify (item=%s, property=%s, set=%s)", item, property, value ); + + super.modify( item, property, value ); + } + + @Override + public void modify( ITEM item, String property, float value ) { + requireNonNull( item, "item cannot be null" ); + requireNonNull( property, "property cannot be null" ); + requireNonNull( value, "value cannot be null" ); + + log( "modify (item=%s, property=%s, set=%s)", item, property, value ); + + super.modify( item, property, value ); + } + + @Override + public void modify( ITEM item, String property, double value ) { + requireNonNull( item, "item cannot be null" ); + requireNonNull( property, "property cannot be null" ); + requireNonNull( value, "value cannot be null" ); + + log( "modify (item=%s, property=%s, set=%s)", item, property, value ); + + super.modify( item, property, value ); + } + + @Override + public void modify( ITEM item, Update... values ) { + requireNonNull( item, "item cannot be null" ); + requireNonNull( values, "value cannot be null" ); + + log( "modify (item=%s, property=%s, update=%s)", item, values ); + + super.modify( item, values ); + } + + @Override + public void update( KEY key, String property, Object value ) { + requireNonNull( key, "key cannot be null" ); + requireNonNull( property, "property cannot be null" ); + requireNonNull( value, "value cannot be null" ); + log( "update (key=%s, property=%s, set=%s)", key, property, value ); + + super.update( key, property, value ); + } + + @Override + public void updateByValue( KEY key, String property, String value ) { + requireNonNull( key, "key cannot be null" ); + requireNonNull( property, "property cannot be null" ); + requireNonNull( value, "value cannot be null" ); + log( "updateByValue (key=%s, property=%s, set=%s)", key, property, value ); + + super.updateByValue( key, property, value ); + } + + @Override + public void update( KEY key, String property, int value ) { + requireNonNull( key, "key cannot be null" ); + requireNonNull( property, "property cannot be null" ); + requireNonNull( value, "value cannot be null" ); + log( "update (key=%s, property=%s, set=%s)", key, property, value ); + super.update( key, property, value ); + } + + @Override + public void update( KEY key, String property, long value ) { + requireNonNull( key, "key cannot be null" ); + requireNonNull( property, "property cannot be null" ); + requireNonNull( value, "value cannot be null" ); + log( "update (key=%s, property=%s, set=%s)", key, property, value ); + + super.update( key, property, value ); + } + + @Override + public void update( KEY key, String property, char value ) { + requireNonNull( key, "key cannot be null" ); + requireNonNull( property, "property cannot be null" ); + requireNonNull( value, "value cannot be null" ); + log( "update (key=%s, property=%s, set=%s)", key, property, value ); + + super.update( key, property, value ); + } + + @Override + public void update( KEY key, String property, short value ) { + requireNonNull( key, "key cannot be null" ); + requireNonNull( property, "property cannot be null" ); + requireNonNull( value, "value cannot be null" ); + log( "update (key=%s, property=%s, set=%s)", key, property, value ); + + super.update( key, property, value ); + } + + @Override + public void update( KEY key, String property, byte value ) { + requireNonNull( key, "key cannot be null" ); + requireNonNull( property, "property cannot be null" ); + requireNonNull( value, "value cannot be null" ); + log( "update (key=%s, property=%s, set=%s)", key, property, value ); + + super.update( key, property, value ); + } + + @Override + public void update( KEY key, String property, float value ) { + requireNonNull( key, "key cannot be null" ); + requireNonNull( property, "property cannot be null" ); + requireNonNull( value, "value cannot be null" ); + log( "update (key=%s, property=%s, set=%s)", key, property, value ); + + super.update( key, property, value ); + } + + @Override + public void update( KEY key, String property, double value ) { + requireNonNull( key, "key cannot be null" ); + requireNonNull( property, "property cannot be null" ); + requireNonNull( value, "value cannot be null" ); + log( "update (key=%s, property=%s, set=%s)", key, property, value ); + + super.update( key, property, value ); + } + + @Override + public void update( KEY key, Update... values ) { + requireNonNull( key, "key cannot be null" ); + requireNonNull( values, "values cannot be null" ); + + log( "update (key=%s, update=%s)", key, values ); + + super.update( key, values ); + } + + @Override + public boolean compareAndUpdate( KEY key, String property, Object compare, Object value ) { + requireNonNull( key, "key cannot be null" ); + requireNonNull( property, "property cannot be null" ); + requireNonNull( compare, "compare cannot be null" ); + requireNonNull( value, "value cannot be null" ); + log( "compareAndUpdate (key=%s, property=%s, compare=%s, set=%s)", key, property, compare, value ); + + return super.compareAndUpdate( key, property, compare, value ); + } + + @Override + public boolean compareAndUpdate( KEY key, String property, int compare, int value ) { + requireNonNull( key, "key cannot be null" ); + requireNonNull( property, "property cannot be null" ); + requireNonNull( compare, "compare cannot be null" ); + requireNonNull( value, "value cannot be null" ); + log( "compareAndUpdate (key=%s, property=%s, compare=%s, set=%s)", key, property, compare, value ); + + return super.compareAndUpdate( key, property, compare, value ); + } + + @Override + public boolean compareAndUpdate( KEY key, String property, long compare, long value ) { + requireNonNull( key, "key cannot be null" ); + requireNonNull( property, "property cannot be null" ); + requireNonNull( compare, "compare cannot be null" ); + requireNonNull( value, "value cannot be null" ); + log( "compareAndUpdate (key=%s, property=%s, compare=%s, set=%s)", key, property, compare, value ); + + return super.compareAndUpdate( key, property, compare, value ); + } + + @Override + public boolean compareAndUpdate( KEY key, String property, char compare, char value ) { + requireNonNull( key, "key cannot be null" ); + requireNonNull( property, "property cannot be null" ); + requireNonNull( compare, "compare cannot be null" ); + requireNonNull( value, "value cannot be null" ); + log( "compareAndUpdate (key=%s, property=%s, compare=%s, set=%s)", key, property, compare, value ); + + return super.compareAndUpdate( key, property, compare, value ); + } + + @Override + public boolean compareAndUpdate( KEY key, String property, short compare, short value ) { + requireNonNull( key, "key cannot be null" ); + requireNonNull( property, "property cannot be null" ); + requireNonNull( compare, "compare cannot be null" ); + requireNonNull( value, "value cannot be null" ); + log( "compareAndUpdate (key=%s, property=%s, compare=%s, set=%s)", key, property, compare, value ); + + return super.compareAndUpdate( key, property, compare, value ); + } + + @Override + public boolean compareAndUpdate( KEY key, String property, byte compare, byte value ) { + requireNonNull( key, "key cannot be null" ); + requireNonNull( property, "property cannot be null" ); + requireNonNull( compare, "compare cannot be null" ); + requireNonNull( value, "value cannot be null" ); + log( "compareAndUpdate (key=%s, property=%s, compare=%s, set=%s)", key, property, compare, value ); + + return super.compareAndUpdate( key, property, compare, value ); + } + + @Override + public boolean compareAndUpdate( KEY key, String property, float compare, float value ) { + requireNonNull( key, "key cannot be null" ); + requireNonNull( property, "property cannot be null" ); + requireNonNull( compare, "compare cannot be null" ); + requireNonNull( value, "value cannot be null" ); + log( "compareAndUpdate (key=%s, property=%s, compare=%s, set=%s)", key, property, compare, value ); + + return super.compareAndUpdate( key, property, compare, value ); + } + + @Override + public boolean compareAndUpdate( KEY key, String property, double compare, double value ) { + requireNonNull( key, "key cannot be null" ); + requireNonNull( property, "property cannot be null" ); + requireNonNull( compare, "compare cannot be null" ); + requireNonNull( value, "value cannot be null" ); + log( "compareAndUpdate (key=%s, property=%s, compare=%s, set=%s)", key, property, compare, value ); + + return super.compareAndUpdate( key, property, compare, value ); + } + + @Override + public boolean compareAndIncrement( KEY key, String property, int compare ) { + requireNonNull( key, "key cannot be null" ); + requireNonNull( property, "property cannot be null" ); + requireNonNull( compare, "compare cannot be null" ); + log( "compareAndIncrement (key=%s, property=%s, compare=%s)", key, property, compare ); + + return super.compareAndIncrement( key, property, compare ); + } + + @Override + public boolean compareAndIncrement( KEY key, String property, long compare ) { + requireNonNull( key, "key cannot be null" ); + requireNonNull( property, "property cannot be null" ); + requireNonNull( compare, "compare cannot be null" ); + log( "compareAndIncrement (key=%s, property=%s, compare=%s)", key, property, compare ); + + return super.compareAndIncrement( key, property, compare ); + } + + @Override + public boolean compareAndIncrement( KEY key, String property, short compare ) { + requireNonNull( key, "key cannot be null" ); + requireNonNull( property, "property cannot be null" ); + requireNonNull( compare, "compare cannot be null" ); + log( "compareAndIncrement (key=%s, property=%s, set=%s)", key, property, compare ); + + return super.compareAndIncrement( key, property, compare ); + } + + @Override + public boolean compareAndIncrement( KEY key, String property, byte compare ) { + requireNonNull( key, "key cannot be null" ); + requireNonNull( property, "property cannot be null" ); + requireNonNull( compare, "compare cannot be null" ); + log( "compareAndIncrement (key=%s, property=%s, set=%s)", key, property, compare ); + + return super.compareAndIncrement( key, property, compare ); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/BaseIndexWrapper.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/BaseIndexWrapper.java new file mode 100644 index 0000000..fcefdd5 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/BaseIndexWrapper.java @@ -0,0 +1,210 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.impl.indexes; + +import org.boon.datarepo.spi.SearchIndex; +import org.boon.core.Function; + +import java.util.Collection; +import java.util.Comparator; +import java.util.List; + + +/** + * Allows more complex indexes. + * + * @see NestedKeySearchIndex + * @see TypeHierarchyIndex + */ +public abstract class BaseIndexWrapper implements SearchIndex { + protected final String[] path; + protected SearchIndexDefault index = new SearchIndexDefault( Object.class ); + + public BaseIndexWrapper( String... path ) { + this.path = path; + } + + @Override + public Object findFirst() { + return index.findFirst(); + } + + @Override + public Object findLast() { + return index.findLast(); + } + + @Override + public Object findFirstKey() { + return index.findFirstKey(); + } + + @Override + public Object findLastKey() { + return index.findLastKey(); + } + + @Override + public List findEquals( Object o ) { + return index.findEquals( o ); + } + + @Override + public List findStartsWith( Object keyFrag ) { + return index.findEquals( keyFrag ); + } + + @Override + public List findEndsWith( Object keyFrag ) { + return index.findEndsWith( keyFrag ); + } + + @Override + public List findContains( Object keyFrag ) { + return index.findContains( keyFrag ); + } + + @Override + public List findBetween( Object start, Object end ) { + return index.findBetween( start, end ); + } + + @Override + public List findGreaterThan( Object o ) { + return index.findGreaterThan( o ); + } + + @Override + public List findLessThan( Object o ) { + return index.findLessThan( o ); + } + + @Override + public List findGreaterThanEqual( Object o ) { + return index.findGreaterThanEqual( o ); + + } + + @Override + public List findLessThanEqual( Object o ) { + return index.findLessThanEqual( o ); + } + + @Override + public Object min() { + return index.min(); + } + + @Override + public Object max() { + return index.max(); + } + + @Override + public int count( Object o ) { + return index.count( o ); + } + + @Override + public void setComparator( Comparator collator ) { + index.setComparator( collator ); + } + + @Override + public Object get( Object o ) { + return index.get( o ); + } + + @Override + public void setKeyGetter( Function keyGetter ) { + index.setKeyGetter( keyGetter ); + } + + @Override + public List getAll( Object o ) { + return index.getAll( o ); + } + + @Override + public boolean deleteByKey( Object o ) { + return index.deleteByKey( o ); + } + + @Override + public boolean isPrimaryKeyOnly() { + return index.isPrimaryKeyOnly(); + } + + @Override + public void init() { + index.init(); + } + + @Override + public void setInputKeyTransformer( Function func ) { + index.setInputKeyTransformer( func ); + } + + @Override + public abstract boolean add( Object o ); + + protected abstract List getKeys( Object o ); + + @Override + public abstract boolean delete( Object o ); + + @Override + public List all() { + return index.all(); + } + + @Override + public int size() { + return index.size(); + } + + @Override + public Collection toCollection() { + return index.toCollection(); + } + + @Override + public void clear() { + index.clear(); + } + + public void setBucketSize( int size ) { + index.setBucketSize( size ); + } + + + public boolean has( Object key ) { + return index.has( key ); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/LookupIndexDefault.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/LookupIndexDefault.java new file mode 100644 index 0000000..a24be69 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/LookupIndexDefault.java @@ -0,0 +1,313 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.impl.indexes; + +import org.boon.Exceptions; +import org.boon.datarepo.LookupIndex; +import org.boon.datarepo.spi.SPIFactory; +import org.boon.core.Function; + +import java.util.*; +import java.util.logging.Level; +import java.util.logging.Logger; + + +/** + * A really simple lookupWithDefault index that uses a standard java.util.HashMap. + * + * @param key to lookupWithDefault + * @param value + */ +public class LookupIndexDefault implements LookupIndex { + + + protected Function keyGetter; + protected Function primaryKeyGetter; + + protected Map map; + private Logger log = Logger.getLogger( LookupIndexDefault.class.getName() ); + protected boolean storeKeyInIndexOnly; + private Function keyTransformer; + + protected int keyBucketSize = 3; + + + public LookupIndexDefault( Class keyType ) { + + + if ( log.isLoggable( Level.FINE ) ) { + log.fine( String.format( "key type %s ", keyType.getName() ) ); + } + + if ( keyType == null ) { + return; + } + map = SPIFactory.getMapCreatorFactory().get().createMap( keyType ); + + } + + + protected void addManyKeys( ITEM item, List keys ) { + for ( KEY key : keys ) { + if ( key != null ) { + this.put( item, key ); + } + } + } + + @Override + public boolean add( ITEM item ) { + + if ( log.isLoggable( Level.FINE ) ) { + log.fine( String.format( "addObject item = %s", item ) ); + } + + KEY key = keyGetter.apply( item ); + if ( key == null ) { + return false; + } + + put( item, key ); + return true; + + } + + private void put( ITEM item, KEY key ) { + + MultiValue mv=null; + Object primaryKey=null; + + try { + + if (log.isLoggable(Level.FINE)) { + log.fine(String.format("put item = %s with key = %s ", item, key)); + } + + key = getKey(key); + + + if (key instanceof Collection) { + Collection collection = (Collection) key; + + for (Object keyComponent : collection) { + + if (keyComponent == null) { + continue; + } + mv = map.get(keyComponent); + mv = mvCreateOrAddToMV(mv, item); + map.put((KEY) keyComponent, mv); + } + return; + } + + + mv = map.get(key); + if (storeKeyInIndexOnly) { + primaryKey = primaryKeyGetter.apply(item); + + mv = mvCreateOrAddToMV(mv, primaryKey); + } else { + mv = mvCreateOrAddToMV(mv, item); + } + + map.put(key, mv); + + }catch (Exception ex) { + Exceptions.handle(ex, "Problem putting item in lookupWithDefault index, item=", item, "key=", key, "mv=", mv, + "primaryKey=", primaryKey); + } + } + + private MultiValue mvCreateOrAddToMV( MultiValue mv, Object obj ) { + return MultiValue.add( mv, obj, keyBucketSize ); + } + + + protected final void removeManyKeys( ITEM item, List keys ) { + for ( KEY key : keys ) { + if ( key != null ) { + removeKey( item, key ); + } + } + } + + @Override + public boolean delete( ITEM item ) { + KEY key = keyGetter.apply( item ); + + + return removeKey( item, key ); + + } + + private boolean removeKey( ITEM item, KEY key ) { + key = getKey( key ); + + if ( key == null ) { + return false; + } + + if (key instanceof Collection) { + Collection collection = (Collection) key; + for (Object objKey : collection) { + removeKey ( item, (KEY) objKey ); + } + } else { + MultiValue mv = map.get( key ); + + if ( mv == null ) { + return false; + } + + mv = MultiValue.remove( mv, item ); + + if ( mv == null ) { + map.remove( key ); + } + } + return true; + + } + + + public void setKeyGetter( Function keyGetter ) { + Exceptions.requireNonNull( keyGetter, "keyGetter cannot be null" ); + this.keyGetter = keyGetter; + } + + public void setPrimaryKeyGetter( Function keyGetter ) { + Exceptions.requireNonNull( keyGetter, "keyGetter cannot be null" ); + storeKeyInIndexOnly = true; + this.primaryKeyGetter = keyGetter; + } + + @Override + public List all() { + + if ( log.isLoggable( Level.FINE ) ) { + log.fine( "all called" ); + } + + List results = new ArrayList<>( map.size() ); + for ( MultiValue values : map.values() ) { + values.addTo( results ); + } + return results; + } + + @Override + public int size() { + return this.map.size(); + } + + @Override + public Collection toCollection() { + return ( Collection ) this.map.values(); + } + + + @Override + public ITEM get( KEY key ) { + + key = getKey( key ); + + MultiValue mv = map.get( key ); + if ( mv == null ) { + return null; + } else { + return ( ITEM ) mv.getValue(); + } + } + + protected KEY getKey( KEY key ) { + if ( keyTransformer != null ) { + key = this.keyTransformer.apply( key ); + } + return key; + } + + + public List getAll( KEY key ) { + key = getKey( key ); + + MultiValue mv = map.get( key ); + if ( mv == null ) { + return null; + } else { + return mv.getValues(); + } + } + + @Override + public boolean deleteByKey( KEY key ) { + key = getKey( key ); + + this.map.remove( key ); + return true; + } + + + //TODO implement so we can store only primary keys in a index to make indexes smaller if + //we ever decide to cache actual items + @Override + public boolean isPrimaryKeyOnly() { + return storeKeyInIndexOnly; + } + + @Override + public void setInputKeyTransformer( Function func ) { + this.keyTransformer = func; + } + + @Override + public void setBucketSize( int size ) { + this.keyBucketSize = size; + } + + @Override + public void init() { + } + + @Override + public boolean has( KEY key ) { + return this.map.containsKey( key ); + } + + + @Override + public void clear() { + + if ( log.isLoggable( Level.FINE ) ) { + log.fine( "clear called" ); + } + this.map.clear(); + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/MultiValue.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/MultiValue.java new file mode 100644 index 0000000..29410b3 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/MultiValue.java @@ -0,0 +1,103 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.impl.indexes; + +import java.util.ArrayList; +import java.util.List; + +/** + * Internal class support class. + * It tries to hide single values and nulls from the parent class. + * + * @param Value we are holding + */ +class MultiValue { + List values = null; + + public static MultiValue add( MultiValue org, T newItem, int bucketSize ) { + if ( org == null ) { + return new MultiValue<>( newItem, bucketSize ); + } else { + + org.add( newItem ); + } + return org; + } + + public static MultiValue remove( MultiValue org, T removeItem ) { + if ( org == null ) { + return null; + } + + if ( removeItem != null ) { + org.remove( removeItem ); + } + + return org.size() == 0 ? null : org; + } + + private MultiValue() { + + } + + private MultiValue( T item, int bucketSize ) { + values = new ArrayList( bucketSize ); + values.add( item ); + + } + + private void add( T item ) { + + values.add( item ); + } + + private void remove( T item ) { + values.remove( item ); + } + + T getValue() { + + return ( values.size() > 0 ) ? values.get( 0 ) : null; + } + + final List getValues() { + return values; + } + + + int size() { + return values.size(); + } + + void addTo( List results ) { + results.addAll( values ); + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/NestedKeySearchIndex.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/NestedKeySearchIndex.java new file mode 100644 index 0000000..0133dfd --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/NestedKeySearchIndex.java @@ -0,0 +1,74 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.impl.indexes; + +import org.boon.core.reflection.BeanUtils; + +import java.util.List; + +import static org.boon.core.Conversions.toList; + + +/** + * This allows nested key look-ups. + */ +public class NestedKeySearchIndex extends BaseIndexWrapper { + + public NestedKeySearchIndex( String... path ) { + super( path ); + + } + + @Override + public boolean add( Object o ) { + + List keys = getKeys( o ); + index.addManyKeys( o, keys ); + return true; + } + + @Override + protected List getKeys( Object o ) { + Object list = BeanUtils.getPropByPath( o, this.path ); + return toList( list ); + } + + @Override + public boolean delete( Object o ) { + List keys = getKeys( o ); + index.removeManyKeys( o, keys ); + + return true; + } + + @Override + public boolean has( Object o ) { + return index.has( o ); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/SearchIndexDefault.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/SearchIndexDefault.java new file mode 100644 index 0000000..b397dbd --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/SearchIndexDefault.java @@ -0,0 +1,363 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.impl.indexes; + +import org.boon.core.Typ; +import org.boon.datarepo.spi.SPIFactory; +import org.boon.datarepo.spi.SearchIndex; +import org.boon.core.Function; +import org.boon.primitive.CharBuf; + +import java.math.BigDecimal; +import java.text.Collator; +import java.util.*; + +/** + * Default Search Index which uses a TreeMap + * + * @param Key we are indexing on. + * @param The items we are indexing. + */ +public class SearchIndexDefault extends LookupIndexDefault implements SearchIndex { + private NavigableMap navigableMap; + + private Comparator collator; + + private Class keyType; + + + + public SearchIndexDefault( Class keyType ) { + super( keyType ); + this.keyType = keyType; + + } + + + + public SearchIndexDefault( Class keyType, List items, Function keyGetter ) { + super( null ); + super.keyGetter = keyGetter; + super.map = SPIFactory.getMapCreatorFactory().get().createNavigableMap( keyType ); + this.navigableMap = ( NavigableMap ) super.map; + + for ( ITEM item : items ) { + add( item ); + } + + + } + + public SearchIndexDefault( Class keyType, List items, Function keyGetter, Collator collator ) { + super( null ); + super.keyGetter = keyGetter; + super.map = SPIFactory.getMapCreatorFactory().get().createNavigableMap( keyType, collator ); + this.navigableMap = ( NavigableMap ) super.map; + + for ( ITEM item : items ) { + add( item ); + } + + + } + + @Override + public void setComparator( Comparator collator ) { + this.collator = collator; + } + + @Override + public void init() { + + if (this.collator!=null) { + super.map = SPIFactory.getMapCreatorFactory().get().createNavigableMap(this.keyType, this.collator); + + } else { + if (keyType == Typ.number) { + super.map = SPIFactory.getMapCreatorFactory().get().createNavigableMap(keyType, new Comparator() { + @Override + public int compare(Number o1, Number o2) { + + if (o1 instanceof Long) { + long long1 = o1.longValue(); + long long2 = o2.longValue(); + if (long1 > long2) { + return 1; + } else if (long1 < long2) { + return -1; + } else { + return 0; + } + } else if (o1 instanceof Double) { + double long1 = o1.doubleValue(); + double long2 = o2.doubleValue(); + if (long1 > long2) { + return 1; + } else if (long1 < long2) { + return -1; + } else { + return 0; + } + } else if (o1 instanceof BigDecimal) { + double long1 = o1.doubleValue(); + double long2 = o2.doubleValue(); + if (long1 > long2) { + return 1; + } else if (long1 < long2) { + return -1; + } else { + return 0; + } + } else { + double long1 = o1.doubleValue(); + double long2 = o2.doubleValue(); + if (long1 > long2) { + return 1; + }else if (long1 < long2) { + return -1; + } else { + return 0; + } + } + + } + }); + } else { + super.map = SPIFactory.getMapCreatorFactory().get().createNavigableMap(this.keyType); + + } + } + + this.navigableMap = ( NavigableMap ) super.map; + + } + + + @Override + public ITEM findFirst() { + return ( ITEM ) this.navigableMap.firstEntry().getValue().getValue(); + } + + @Override + public ITEM findLast() { + return ( ITEM ) this.navigableMap.lastEntry().getValue().getValue(); + } + + @Override + public KEY findFirstKey() { + return this.navigableMap.firstEntry().getKey(); + } + + @Override + public KEY findLastKey() { + return this.navigableMap.lastEntry().getKey(); + } + + @Override + public List findEquals( KEY key ) { + key = getKey( key ); + MultiValue items = navigableMap.get( key ); + if ( items == null ) { + return null; + } + return items.getValues(); + } + + @Override + public List findStartsWith( KEY keyFrag ) { + + keyFrag = getKey( keyFrag ); + List results; + + if ( keyFrag instanceof String ) { + String start = ( String ) keyFrag; + if ( start.length() == 0 || start == null ) { + return Collections.EMPTY_LIST; + } + + char endLetter = start.charAt( start.length() - 1 ); + String sub = start.substring( 0, start.length() - 1 ); + + CharBuf after = CharBuf.create( start.length() ); + + after.add( sub ); + after.add( ( char ) ( endLetter + 1 ) ); + + NavigableMap sortMap = ( NavigableMap ) this.navigableMap; + + + SortedMap sortedSubMap = sortMap.subMap( start, after.toString() ); + + if ( sortedSubMap.size() > 0 ) { + results = new ArrayList<>(); + for ( MultiValue values : sortedSubMap.values() ) { + values.addTo( results ); + } + return results; + } + return Collections.EMPTY_LIST; + } + return Collections.EMPTY_LIST; + + } + + @Override + public List findEndsWith( KEY keyFrag ) { + keyFrag = getKey( keyFrag ); + + List results = new ArrayList<>(); + + if ( keyFrag instanceof String ) { + + Collection values = navigableMap.values(); + for ( MultiValue mv : values ) { + for ( ITEM value : mv.getValues() ) { + String svalue = ( String ) this.keyGetter.apply( value ); + if ( svalue.endsWith( ( String ) keyFrag ) ) { + results.add( value ); + } + } + } + } + return results; + } + + @Override + public List findContains( KEY keyFrag ) { + keyFrag = getKey( keyFrag ); + + List results = new ArrayList<>(); + + if ( keyFrag instanceof String ) { + + Collection values = navigableMap.values(); + for ( MultiValue mv : values ) { + for ( ITEM value : mv.getValues() ) { + + String svalue = ( String ) this.keyGetter.apply( value ); + if ( svalue.endsWith( ( String ) keyFrag ) ) { + results.add( value ); + } + } + } + } + return results; + } + + + boolean init; + + void initIfNeeded() { + if ( !init ) { + init = true; + ITEM item = ( ITEM ) ( ( MultiValue ) this.navigableMap.firstEntry() ).getValue(); + + } + } + + @Override + public List findBetween( KEY start, KEY end ) { + start = getKey( start ); + end = getKey( end ); + + + SortedMap keyMultiValueSortedMap = this.navigableMap.subMap( start, end ); + + return getResults( keyMultiValueSortedMap ); + + } + + private List getResults( SortedMap keyMultiValueSortedMap ) { + List results = null; + if ( keyMultiValueSortedMap.size() > 0 ) { + results = new ArrayList<>(); + for ( MultiValue values : keyMultiValueSortedMap.values() ) { + values.addTo( results ); + } + return results; + } + return Collections.EMPTY_LIST; + } + + @Override + public List findGreaterThan( KEY key ) { + key = getKey( key ); + + + SortedMap keyMultiValueSortedMap = this.navigableMap.tailMap( key, false ); + return getResults( keyMultiValueSortedMap ); + } + + @Override + public List findLessThan( KEY key ) { + key = getKey( key ); + + SortedMap keyMultiValueSortedMap = this.navigableMap.headMap( key, false ); + return getResults( keyMultiValueSortedMap ); + } + + @Override + public List findGreaterThanEqual( KEY key ) { + key = getKey( key ); + + SortedMap keyMultiValueSortedMap = this.navigableMap.tailMap( key ); + return getResults( keyMultiValueSortedMap ); + } + + @Override + public List findLessThanEqual( KEY key ) { + key = getKey( key ); + + SortedMap keyMultiValueSortedMap = this.navigableMap.headMap( key ); + return getResults( keyMultiValueSortedMap ); + } + + + @Override + public ITEM min() { + return ( ITEM ) this.navigableMap.firstEntry().getValue().getValue(); + } + + @Override + public ITEM max() { + return ( ITEM ) this.navigableMap.lastEntry().getValue().getValue(); + } + + @Override + public int count( KEY key ) { + return this.navigableMap.get( key ).size(); + } + + + @Override + public int size() { + return this.navigableMap.size(); + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/TypeHierarchyIndex.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/TypeHierarchyIndex.java new file mode 100644 index 0000000..d9e5eed --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/TypeHierarchyIndex.java @@ -0,0 +1,75 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.impl.indexes; + + +import java.util.ArrayList; +import java.util.List; + +/** + * This allows search based on type hierarchy. + */ +public class TypeHierarchyIndex extends BaseIndexWrapper { + + @Override + public boolean add( Object o ) { + List keys = getKeys( o ); + index.addManyKeys( o, keys ); + return true; + } + + @Override + public boolean delete( Object o ) { + List keys = getKeys( o ); + index.removeManyKeys( o, keys ); + return true; + + } + + @Override + protected List getKeys( Object o ) { + List list = new ArrayList(); + Class cls = o.getClass(); + + while ( cls != null && cls != Object.class ) { + list.add( cls.getSimpleName() ); + list.add( cls.getName() ); + + for ( Class i : cls.getInterfaces() ) { + list.add( i.getSimpleName() ); + list.add( i.getName() ); + } + + cls = cls.getSuperclass(); + } + return list; + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/UniqueLookupIndex.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/UniqueLookupIndex.java new file mode 100644 index 0000000..d73ca09 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/UniqueLookupIndex.java @@ -0,0 +1,182 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.impl.indexes; + +import org.boon.datarepo.LookupIndex; +import org.boon.datarepo.spi.SPIFactory; +import org.boon.core.Function; + +import java.util.*; +import java.util.logging.Level; +import java.util.logging.Logger; + +import static org.boon.Lists.list; + +public class UniqueLookupIndex implements LookupIndex { + + protected Function keyGetter; + protected Map map = null; + + + private Logger log = Logger.getLogger( UniqueLookupIndex.class.getName() ); + + private Function keyTransformer; + + public UniqueLookupIndex( Class keyType ) { + if ( keyType == null ) { + return; + } + map = SPIFactory.getMapCreatorFactory().get().createMap( keyType ); + + } + + @Override + public ITEM get( KEY key ) { + key = getKey( key ); + return map.get( key ); + } + + @Override + public void setKeyGetter( Function keyGetter ) { + this.keyGetter = keyGetter; + } + + @Override + public boolean add( ITEM item ) { + + if ( log.isLoggable( Level.FINE ) ) { + log.fine( String.format( "addObject item = %s", item ) ); + } + + KEY key = keyGetter.apply( item ); + if ( key == null ) { + return false; + } + + /* You can not addObject the same key twice. */ + if ( this.map.containsKey( key ) ) { + return false; + } + + map.put( key, item ); + return true; + + } + + @Override + public boolean delete( ITEM item ) { + + if ( log.isLoggable( Level.FINE ) ) { + log.fine( String.format( "delete item = %s", item ) ); + } + + KEY key = keyGetter.apply( item ); + key = getKey( key ); + return map.remove( key ) != null; + } + + @Override + public List all() { + + if ( log.isLoggable( Level.FINE ) ) { + log.fine( "all called " ); + } + + return new ArrayList<>( map.values() ); + } + + @Override + public List getAll( KEY key ) { + + if ( log.isLoggable( Level.FINE ) ) { + log.fine( "getAll called " ); + } + + return list( this.get( key ) ); + } + + @Override + public int size() { + return this.map.size(); + } + + @Override + public Collection toCollection() { + return new HashSet( this.map.values() ); + } + + @Override + public void clear() { + this.map.clear(); + } + + @Override + public boolean deleteByKey( KEY key ) { + key = getKey( key ); + return this.map.remove( key ) != null; + } + + @Override + public boolean isPrimaryKeyOnly() { + return false; + } + + @Override + public void init() { + + } + + @Override + public boolean has( KEY key ) { + if ( key == null ) { + return false; + } + return this.map.containsKey( key ); + } + + + @Override + public void setInputKeyTransformer( Function func ) { + this.keyTransformer = func; + } + + @Override + public void setBucketSize( int size ) { + + } + + protected KEY getKey( KEY key ) { + if ( keyTransformer != null ) { + key = this.keyTransformer.apply( key ); + } + return key; + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/UniqueSearchIndex.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/UniqueSearchIndex.java new file mode 100644 index 0000000..6ea7e3a --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/indexes/UniqueSearchIndex.java @@ -0,0 +1,229 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.impl.indexes; + +import org.boon.datarepo.spi.SPIFactory; +import org.boon.datarepo.spi.SearchIndex; +import org.boon.core.Function; +import org.boon.primitive.CharBuf; + +import java.util.*; + +import static org.boon.Lists.list; + +/** + * Default Search Index which uses a TreeMap + * + * @param Key we are indexing on. + * @param The items we are indexing. + */ +public class UniqueSearchIndex extends UniqueLookupIndex implements SearchIndex { + private Class keyType; + + private NavigableMap navigableMap; + private Comparator collator; + + public UniqueSearchIndex( Class keyType ) { + super( keyType ); + this.keyType = keyType; + + } + + public UniqueSearchIndex( Class keyType, List items, Function keyGetter ) { + super( keyType ); + super.keyGetter = keyGetter; + super.map + = SPIFactory.getMapCreatorFactory().get().createMap( keyType ); + + this.navigableMap = ( NavigableMap ) super.map; + + for ( ITEM item : items ) { + add( item ); + } + + + } + + @Override + public void setComparator( Comparator collator ) { + this.collator = collator; + } + + @Override + public void init() { + super.map + = SPIFactory.getMapCreatorFactory().get().createNavigableMap( keyType, collator ); + + this.navigableMap = ( NavigableMap ) super.map; + + } + + @Override + public ITEM findFirst() { + return this.navigableMap.firstEntry().getValue(); + } + + @Override + public ITEM findLast() { + return this.navigableMap.lastEntry().getValue(); + } + + @Override + public KEY findFirstKey() { + return this.navigableMap.firstEntry().getKey(); + } + + @Override + public KEY findLastKey() { + return this.navigableMap.lastEntry().getKey(); + } + + @Override + public List findEquals( KEY key ) { + key = getKey( key ); + return list( navigableMap.get( key ) ); + } + + @Override + public List findStartsWith( KEY keyFrag ) { + keyFrag = getKey( keyFrag ); + + List results; + + if ( keyFrag instanceof String ) { + String start = ( String ) keyFrag; + if ( start.length() == 0 || start == null ) { + return Collections.EMPTY_LIST; + } + + char endLetter = start.charAt( start.length() - 1 ); + String sub = start.substring( 0, start.length() - 1 ); + + CharBuf after = CharBuf.create( start.length() ); + + after.add( String.valueOf( sub ) ); + after.add( ( char ) ( endLetter + 1 ) ); + + NavigableMap> sortMap = ( NavigableMap> ) this.navigableMap; + + + SortedMap> sortedSubMap = sortMap.subMap( start, after.toString() ); + + if ( sortedSubMap.size() > 0 ) { + results = new ArrayList<>(); + for ( MultiValue values : sortedSubMap.values() ) { + values.addTo( results ); + } + return results; + } + return Collections.EMPTY_LIST; + } + return Collections.EMPTY_LIST; + + } + + @Override + public List findEndsWith( KEY keyFrag ) { + throw new UnsupportedOperationException( "findEndsWith Not supported" ); + } + + @Override + public List findContains( KEY keyFrag ) { + throw new UnsupportedOperationException( "findContains Not supported" ); + } + + @Override + public List findBetween( KEY start, KEY end ) { + start = getKey( start ); + end = getKey( end ); + + SortedMap keyMultiValueSortedMap = this.navigableMap.subMap( start, end ); + + return new ArrayList<>( keyMultiValueSortedMap.values() ); + + } + + + @Override + public List findGreaterThan( KEY key ) { + key = getKey( key ); + + SortedMap keyMultiValueSortedMap = this.navigableMap.tailMap( key, false ); + return new ArrayList<>( keyMultiValueSortedMap.values() ); + } + + @Override + public List findLessThan( KEY key ) { + key = getKey( key ); + SortedMap keyMultiValueSortedMap = this.navigableMap.headMap( key, false ); + return new ArrayList<>( keyMultiValueSortedMap.values() ); + } + + @Override + public List findGreaterThanEqual( KEY key ) { + key = getKey( key ); + SortedMap keyMultiValueSortedMap = this.navigableMap.tailMap( key ); + return new ArrayList<>( keyMultiValueSortedMap.values() ); + } + + @Override + public List findLessThanEqual( KEY key ) { + key = getKey( key ); + SortedMap keyMultiValueSortedMap = this.navigableMap.headMap( key ); + return new ArrayList<>( keyMultiValueSortedMap.values() ); + } + + @Override + public ITEM min() { + return this.navigableMap.firstEntry().getValue(); + } + + @Override + public ITEM max() { + return this.navigableMap.lastEntry().getValue(); + } + + @Override + public List getAll( KEY key ) { + return this.findEquals( key ); + } + + @Override + public int size() { + return this.navigableMap.size(); + } + + + @Override + public int count( KEY key ) { + return this.navigableMap.containsKey( key ) ? 1 : 0; + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/maps/JavaUtilMap.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/maps/JavaUtilMap.java new file mode 100644 index 0000000..ab37902 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/maps/JavaUtilMap.java @@ -0,0 +1,157 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.impl.maps; + +import org.boon.datarepo.spi.TypedMap; + +import java.util.concurrent.ConcurrentHashMap; + +import static org.boon.core.Conversions.wrapAsObject; + +public class JavaUtilMap extends ConcurrentHashMap implements TypedMap { + + public JavaUtilMap() { + super(); + } + + @Override + public final boolean put( K key, boolean i ) { + return ( Boolean ) super.put( key, ( V ) wrapAsObject( i ) ); + } + + @Override + public final boolean getBoolean( K key ) { + return ( Boolean ) super.get( key ); + } + + @Override + public V put( byte key, V v ) { + return super.put( ( K ) wrapAsObject( key ), v ); + } + + @Override + public final byte put( K key, byte i ) { + return ( Byte ) super.put( key, ( V ) wrapAsObject( i ) ); + } + + @Override + public final byte getByte( K key ) { + return ( Byte ) super.get( key ); + } + + @Override + public V put( short key, V v ) { + return super.put( ( K ) wrapAsObject( key ), v ); + } + + @Override + public final short put( K key, short i ) { + return ( Short ) super.put( key, ( V ) wrapAsObject( i ) ); + } + + @Override + public final short getShort( K key ) { + return ( Short ) super.get( key ); + } + + @Override + public V put( int key, V v ) { + return super.put( ( K ) wrapAsObject( key ), v ); + } + + @Override + public final int put( K key, int i ) { + return ( Integer ) super.put( key, ( V ) wrapAsObject( i ) ); + } + + @Override + public final int getInt( K key ) { + return ( Integer ) super.get( key ); + } + + @Override + public V put( long key, V v ) { + return super.put( ( K ) wrapAsObject( key ), v ); + } + + @Override + public final long put( K key, long i ) { + return ( Long ) super.put( key, ( V ) wrapAsObject( i ) ); + } + + @Override + public final long getLong( K key ) { + return ( Long ) super.get( key ); + } + + @Override + public V put( float key, V v ) { + return super.put( ( K ) wrapAsObject( key ), v ); + } + + @Override + public final float put( K key, float i ) { + return ( Float ) super.put( key, ( V ) wrapAsObject( i ) ); + } + + @Override + public final float getFloat( K key ) { + return ( Float ) super.get( key ); + } + + @Override + public V put( double key, V v ) { + return super.put( ( K ) wrapAsObject( key ), v ); + } + + @Override + public final double put( K key, double i ) { + return ( Double ) super.put( key, ( V ) wrapAsObject( i ) ); + } + + @Override + public final double getDouble( K key ) { + return ( Double ) super.get( key ); + } + + @Override + public final V put( char key, V v ) { + return super.put( ( K ) wrapAsObject( key ), v ); + } + + @Override + public final char put( K key, char i ) { + return ( Character ) super.put( key, ( V ) wrapAsObject( i ) ); + } + + @Override + public final char getChar( K key ) { + return ( Character ) super.get( key ); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/maps/JavaUtilNavigableMap.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/maps/JavaUtilNavigableMap.java new file mode 100644 index 0000000..18ef937 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/maps/JavaUtilNavigableMap.java @@ -0,0 +1,163 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.impl.maps; + +import org.boon.datarepo.spi.TypedMap; + +import java.util.Comparator; +import java.util.concurrent.ConcurrentSkipListMap; + +import static org.boon.core.Conversions.wrapAsObject; + + +public class JavaUtilNavigableMap extends ConcurrentSkipListMap implements TypedMap { + + public JavaUtilNavigableMap() { + } + + public JavaUtilNavigableMap( Comparator comparator ) { + super( comparator ); + } + + @Override + public final boolean put( K key, boolean i ) { + return ( Boolean ) super.put( key, ( V ) wrapAsObject( i ) ); + } + + @Override + public final boolean getBoolean( K key ) { + return ( Boolean ) super.get( key ); + } + + @Override + public V put( byte key, V v ) { + return super.put( ( K ) wrapAsObject( key ), v ); + } + + @Override + public final byte put( K key, byte i ) { + return ( Byte ) super.put( key, ( V ) wrapAsObject( i ) ); + } + + @Override + public final byte getByte( K key ) { + return ( Byte ) super.get( key ); + } + + @Override + public V put( short key, V v ) { + return super.put( ( K ) wrapAsObject( key ), v ); + } + + @Override + public final short put( K key, short i ) { + return ( Short ) super.put( key, ( V ) wrapAsObject( i ) ); + } + + @Override + public final short getShort( K key ) { + return ( Short ) super.get( key ); + } + + @Override + public V put( int key, V v ) { + return super.put( ( K ) wrapAsObject( key ), v ); + } + + @Override + public final int put( K key, int i ) { + return ( Integer ) super.put( key, ( V ) wrapAsObject( i ) ); + } + + @Override + public final int getInt( K key ) { + return ( Integer ) super.get( key ); + } + + @Override + public V put( long key, V v ) { + return super.put( ( K ) wrapAsObject( key ), v ); + } + + @Override + public final long put( K key, long i ) { + return ( Long ) super.put( key, ( V ) wrapAsObject( i ) ); + } + + @Override + public final long getLong( K key ) { + return ( Long ) super.get( key ); + } + + @Override + public V put( float key, V v ) { + return super.put( ( K ) wrapAsObject( key ), v ); + } + + @Override + public final float put( K key, float i ) { + return ( Float ) super.put( key, ( V ) wrapAsObject( i ) ); + } + + @Override + public final float getFloat( K key ) { + return ( Float ) super.get( key ); + } + + @Override + public V put( double key, V v ) { + return super.put( ( K ) wrapAsObject( key ), v ); + } + + @Override + public final double put( K key, double i ) { + return ( Double ) super.put( key, ( V ) wrapAsObject( i ) ); + } + + @Override + public final double getDouble( K key ) { + return ( Double ) super.get( key ); + } + + @Override + public final V put( char key, V v ) { + return super.put( ( K ) wrapAsObject( key ), v ); + } + + @Override + public final char put( K key, char i ) { + return ( Character ) super.put( key, ( V ) wrapAsObject( i ) ); + } + + @Override + public final char getChar( K key ) { + return ( Character ) super.get( key ); + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/maps/MapCreatorImpl.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/maps/MapCreatorImpl.java new file mode 100644 index 0000000..dfbd577 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/impl/maps/MapCreatorImpl.java @@ -0,0 +1,61 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.impl.maps; + +import org.boon.datarepo.spi.MapCreator; + +import java.util.Comparator; +import java.util.Map; +import java.util.NavigableMap; + +public class MapCreatorImpl implements MapCreator { + @Override + public NavigableMap createNavigableMap( Class keyType ) { + if ( keyType == String.class ) { + return new JavaUtilNavigableMap(); + } else { + return new JavaUtilNavigableMap(); + } + } + + @Override + public NavigableMap createNavigableMap( Class keyType, Comparator collator ) { + + if ( collator != null ) { + return new JavaUtilNavigableMap( collator ); + } else { + return new JavaUtilNavigableMap(); + } + } + + @Override + public Map createMap( Class keyType ) { + return new JavaUtilMap(); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/modification/ModificationEvent.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/modification/ModificationEvent.java new file mode 100644 index 0000000..9028fc8 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/modification/ModificationEvent.java @@ -0,0 +1,259 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.modification; + + +public abstract class ModificationEvent { + + public static final String ROOT_PROPERTY = "ROOT"; + + private KEY key; + private ITEM item; + private String property = ROOT_PROPERTY; + + private ModificationType type; + + public ModificationEvent() { + + } + + public ModificationEvent( KEY k, ITEM i, ModificationType t, String p ) { + key = k; + item = i; + type = t; + if ( p != null ) { + this.property = p; + } + } + + public ITEM getItem() { + return item; + } + + public KEY getKey() { + return key; + } + + + public abstract boolean booleanValue(); + + public abstract int intValue(); + + public abstract short shortValue(); + + public abstract char charValue(); + + public abstract byte byteValue(); + + public abstract long longValue(); + + public abstract float floatValue(); + + public abstract double doubleValue(); + + public abstract Object objectValue(); + + public abstract String value(); + + @Override + public String toString() { + return "ModificationEvent{" + + "key=" + key + + ", item=" + item + + ", property='" + property + '\'' + + ", type=" + type + + '}'; + } + + static class ModficationEventImpl extends ModificationEvent { + + + public ModficationEventImpl() { + + } + + public ModficationEventImpl( KEY k, ITEM i, ModificationType t, String p ) { + super( k, i, t, p ); + } + + @Override + public boolean booleanValue() { + throw new UnsupportedOperationException( "not supported" ); + } + + @Override + public int intValue() { + throw new UnsupportedOperationException( "not supported" ); + } + + @Override + public short shortValue() { + throw new UnsupportedOperationException( "not supported" ); + } + + @Override + public char charValue() { + throw new UnsupportedOperationException( "not supported" ); + } + + @Override + public byte byteValue() { + throw new UnsupportedOperationException( "not supported" ); + } + + @Override + public long longValue() { + throw new UnsupportedOperationException( "not supported" ); + } + + + @Override + public float floatValue() { + throw new UnsupportedOperationException( "not supported" ); + } + + @Override + public double doubleValue() { + throw new UnsupportedOperationException( "not supported" ); + } + + @Override + public String value() { + throw new UnsupportedOperationException( "not supported" ); + } + + @Override + public Object objectValue() { + throw new UnsupportedOperationException( "not supported" ); + } + + } + + + public static ModificationEvent createModification( + final ModificationType type, final KEY key, final ITEM item, + final String property, final boolean value ) { + return new ModficationEventImpl( key, item, type, property ) { + boolean v = value; + + public boolean booleanValue() { + return v; + } + }; + } + + public static ModificationEvent createModification( + final ModificationType type, final KEY key, final ITEM item, final String property, final Object value ) { + return new ModficationEventImpl( key, item, type, property ) { + Object v = value; + + public Object objectValue() { + return v; + } + }; + } + + public static ModificationEvent createModification( + final ModificationType type, final KEY key, final ITEM item, final String property, final String value ) { + return new ModficationEventImpl( key, item, type, property ) { + String v = value; + + public String value() { + return v; + } + }; + } + + public static ModificationEvent createModification( final ModificationType type, + final KEY key, final ITEM item, final String property, final byte value ) { + return new ModficationEventImpl( key, item, type, property ) { + byte v = value; + + public byte byteValue() { + return v; + } + }; + } + + public static ModificationEvent createModification( + final ModificationType type, final KEY key, final ITEM item, final String property, final short value ) { + return new ModficationEventImpl( key, item, type, property ) { + short v = value; + + public short shortValue() { + return v; + } + }; + } + + public static ModificationEvent createModification( + final ModificationType type, final KEY key, final ITEM item, final String property, final int value ) { + return new ModficationEventImpl( key, item, type, property ) { + int v = value; + + public int intValue() { + return v; + } + }; + } + + public static ModificationEvent createModification( + final ModificationType type, final KEY key, final ITEM item, final String property, final long value ) { + return new ModficationEventImpl( key, item, type, property ) { + long v = value; + + public long longValue() { + return v; + } + }; + } + + public static ModificationEvent createModification( + final ModificationType type, final KEY key, final ITEM item, final String property, final float value ) { + return new ModficationEventImpl( key, item, type, property ) { + float v = value; + + public float floatValue() { + return v; + } + }; + } + + public static ModificationEvent createModification( + final ModificationType type, final KEY key, final ITEM item, final String property, final double value ) { + return new ModficationEventImpl( key, item, type, property ) { + double v = value; + + public double doubleValue() { + return v; + } + }; + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/modification/ModificationListener.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/modification/ModificationListener.java new file mode 100644 index 0000000..4833f6d --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/modification/ModificationListener.java @@ -0,0 +1,36 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.modification; + + +public interface ModificationListener { + + void modification( ModificationEvent event ); + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/modification/ModificationType.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/modification/ModificationType.java new file mode 100644 index 0000000..8a514f0 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/modification/ModificationType.java @@ -0,0 +1,48 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.modification; + +public enum ModificationType { + + BEFORE_INCREMENT, //update a single property + AFTER_INCREMENT, //update a single property + + BEFORE_UPDATE, //update a single property + BEFORE_MODIFY, //modify an entire object, remove and re-addObject it + BEFORE_ADD, //Add a new object + AFTER_UPDATE, //update a single property + AFTER_MODIFY, //modify an entire object, remove and re-addObject it + AFTER_ADD, //Add a new object + + BEFORE_MODIFY_BY_VALUE_SETTERS, + AFTER_MODIFY_BY_VALUE_SETTERS, + BEFORE_UPDATE_BY_VALUE_SETTERS, + AFTER_UPDATE_BY_VALUE_SETTERS, + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/spi/FilterComposer.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/spi/FilterComposer.java new file mode 100644 index 0000000..50b82e7 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/spi/FilterComposer.java @@ -0,0 +1,49 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.spi; + + +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.datarepo.LookupIndex; +import org.boon.datarepo.SearchableCollection; + +import java.util.Map; + +public interface FilterComposer { + + public void setSearchableCollection( SearchableCollection searchableCollection ); + + public void setFields( Map fields ); + + public void setSearchIndexMap( Map searchIndexMap ); + + public void setLookupIndexMap( Map lookupIndexMap ); + + public void init(); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/spi/MapCreator.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/spi/MapCreator.java new file mode 100644 index 0000000..077359b --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/spi/MapCreator.java @@ -0,0 +1,42 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.spi; + +import java.util.Comparator; +import java.util.Map; +import java.util.NavigableMap; + +public interface MapCreator { + NavigableMap createNavigableMap( Class keyType ); + + NavigableMap createNavigableMap( Class keyType, Comparator comparator ); + + Map createMap( Class keyType ); + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/spi/ObjectEditorComposer.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/spi/ObjectEditorComposer.java new file mode 100644 index 0000000..6cc7c8e --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/spi/ObjectEditorComposer.java @@ -0,0 +1,47 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.spi; + +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.datarepo.SearchableCollection; + +import java.util.Map; + +public interface ObjectEditorComposer { + void setFields( Map fields ); + + void setSearchableCollection( SearchableCollection searchableCollection ); + + void init(); + + void hashCodeOptimizationOn(); + + public void setLookupAndExcept( boolean lookupAndExcept ); + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/spi/RepoComposer.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/spi/RepoComposer.java new file mode 100644 index 0000000..1c33d37 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/spi/RepoComposer.java @@ -0,0 +1,45 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.spi; + +import org.boon.datarepo.ObjectEditor; +import org.boon.datarepo.SearchableCollection; + +/** + * Used by RepoBuilder to addObject indexes to Repo. + */ +public interface RepoComposer { + + + void setSearchableCollection( SearchableCollection searchableCollection ); + + void init(); + + void setObjectEditor( ObjectEditor editor ); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/spi/ResultSetInternal.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/spi/ResultSetInternal.java new file mode 100644 index 0000000..bea6e04 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/spi/ResultSetInternal.java @@ -0,0 +1,46 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.spi; + +import org.boon.criteria.internal.Criteria; +import org.boon.datarepo.ResultSet; + +import java.util.List; + +public interface ResultSetInternal extends ResultSet { + + void addResults( List results ); + + void filterAndPrune( Criteria criteria ); + + + int lastSize(); + + void andResults(); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/spi/SPIFactory.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/spi/SPIFactory.java new file mode 100644 index 0000000..ced794d --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/spi/SPIFactory.java @@ -0,0 +1,231 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.spi; + +import org.boon.core.Typ; +import org.boon.datarepo.Filter; +import org.boon.datarepo.LookupIndex; +import org.boon.datarepo.RepoBuilder; +import org.boon.datarepo.impl.*; +import org.boon.datarepo.impl.indexes.LookupIndexDefault; +import org.boon.datarepo.impl.indexes.SearchIndexDefault; +import org.boon.datarepo.impl.indexes.UniqueLookupIndex; +import org.boon.datarepo.impl.indexes.UniqueSearchIndex; +import org.boon.datarepo.impl.maps.MapCreatorImpl; +import org.boon.core.Function; +import org.boon.core.Supplier; + + +/** + * Helper class for SPIFactory interface. + */ +public class SPIFactory { + + static Supplier mapCreatorFactory = null; + static Supplier repoBuilderFactory = null; + static Function searchIndexFactory = null; + static Function uniqueLookupIndexFactory = null; + static Function uniqueSearchIndexFactory = null; + static Function lookupIndexFactory = null; + static Supplier repoFactory = null; + static Supplier filterFactory = null; + static Supplier searchableCollectionFactory = null; + static Supplier objectEditorFactory; + + public static Supplier getMapCreatorFactory() { + return mapCreatorFactory; + } + + public static Supplier getSearchableCollectionFactory() { + return searchableCollectionFactory; + } + + public static Supplier getRepoBuilderFactory() { + return repoBuilderFactory; + } + + public static Function getSearchIndexFactory() { + return searchIndexFactory; + } + + public static Function getUniqueSearchIndexFactory() { + return uniqueSearchIndexFactory; + } + + public static Function getLookupIndexFactory() { + return lookupIndexFactory; + } + + public static Function getUniqueLookupIndexFactory() { + return uniqueLookupIndexFactory; + } + + public static Supplier getRepoFactory() { + return repoFactory; + } + + public static Supplier getFilterFactory() { + return filterFactory; + } + + public static void init() { + + if ( mapCreatorFactory == null ) { + mapCreatorFactory = new Supplier() { + @Override + public MapCreator get() { + return new MapCreatorImpl(); + } + }; + } + if ( repoBuilderFactory == null ) { + repoBuilderFactory = new Supplier() { + @Override + public RepoBuilder get() { + return new RepoBuilderDefault(); + } + }; + } + if ( searchIndexFactory == null ) { + searchIndexFactory = new Function() { + public SearchIndex apply( Class keyType ) { + if ( keyType == Typ.string ) { + return new SearchIndexDefault( keyType ); + } + else{ + return new SearchIndexDefault( keyType ); + } + } + }; + } + if ( lookupIndexFactory == null ) { + lookupIndexFactory = new Function() { + @Override + public LookupIndex apply( Class keyType ) { + return new LookupIndexDefault( keyType ); + } + }; + } + if ( uniqueLookupIndexFactory == null ) { + uniqueLookupIndexFactory = new Function() { + @Override + public LookupIndex apply( Class keyType ) { + return new UniqueLookupIndex( keyType ); + } + }; + } + if ( uniqueSearchIndexFactory == null ) { + uniqueSearchIndexFactory = new Function() { + @Override + public SearchIndex apply( Class keyType ) { + return new UniqueSearchIndex( keyType ); + } + }; + } + + if ( repoFactory == null ) { + repoFactory = new Supplier() { + @Override + public RepoComposer get() { + return new RepoDefault<>(); + } + }; + } + + if ( filterFactory == null ) { + filterFactory = new Supplier() { + @Override + public Filter get() { + return new FilterDefault(); + } + }; + } + + if ( searchableCollectionFactory == null ) { + searchableCollectionFactory = new Supplier() { + @Override + public SearchableCollectionComposer get() { + return new SearchableCollectionDefault(); + } + }; + } + + if ( objectEditorFactory == null ) { + objectEditorFactory = new Supplier() { + @Override + public ObjectEditorComposer get() { + return new ObjectEditorDefault(); + } + }; + } + + } + + static { + init(); + } + + + public static void setMapCreatorFactory( Supplier mapCreatorFactory ) { + SPIFactory.mapCreatorFactory = mapCreatorFactory; + } + + public static void setRepoBuilderFactory( Supplier repoBuilderFactory ) { + SPIFactory.repoBuilderFactory = repoBuilderFactory; + } + + public static void setSearchIndexFactory( Function searchIndexFactory ) { + SPIFactory.searchIndexFactory = searchIndexFactory; + } + + public static void setLookupIndexFactory( Function lookupIndexFactory ) { + SPIFactory.lookupIndexFactory = lookupIndexFactory; + } + + + public static void setUniqueLookupIndexFactory( Function lookupIndexFactory ) { + SPIFactory.uniqueLookupIndexFactory = lookupIndexFactory; + } + + public static void setUniqueSearchIndexFactory( Function factory ) { + SPIFactory.uniqueSearchIndexFactory = factory; + } + + public static void setRepoFactory( Supplier repoFactory ) { + SPIFactory.repoFactory = repoFactory; + } + + public static void setFilterFactory( Supplier filterFactory ) { + SPIFactory.filterFactory = filterFactory; + } + + public static Supplier getObjectEditorFactory() { + return objectEditorFactory; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/spi/SearchIndex.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/spi/SearchIndex.java new file mode 100644 index 0000000..0575641 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/spi/SearchIndex.java @@ -0,0 +1,89 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.spi; + +import org.boon.datarepo.LookupIndex; + +import java.util.Comparator; +import java.util.List; + +/** + * SearchIndex + * + * @param Key we are indexing on. + * @param The item that we are indexing. + */ +public interface SearchIndex extends LookupIndex { + + ITEM findFirst(); + + ITEM findLast(); + + KEY findFirstKey(); + + KEY findLastKey(); + + List findEquals( KEY key ); + + List findStartsWith( KEY keyFrag ); + + List findEndsWith( KEY keyFrag ); + + List findContains( KEY keyFrag ); + + List findBetween( KEY start, KEY end ); + + List findGreaterThan( KEY key ); + + List findLessThan( KEY key ); + + List findGreaterThanEqual( KEY key ); + + List findLessThanEqual( KEY key ); + + ITEM min(); + + ITEM max(); + + int count( KEY key ); + + void setComparator( Comparator collator ); + + +// List findEquals (KEY key, int start, int length); +// List findStartsWith(KEY keyFrag, int start, int length); +// List findEndsWith(KEY keyFrag, int start, int length); +// List findContains(KEY keyFrag, int start, int length); +// List findBetween(KEY startKey, KEY endKey, int start, int length); +// List findGreaterThan(KEY key, int start, int length); +// List findLessThan(KEY key, int start, int length); +// List findGreaterThanEqual(KEY key, int start, int length); +// List findLessThanEqual(KEY key, int start, int length); + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/spi/SearchableCollectionComposer.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/spi/SearchableCollectionComposer.java new file mode 100644 index 0000000..2266bb3 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/spi/SearchableCollectionComposer.java @@ -0,0 +1,50 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.spi; + +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.datarepo.Filter; +import org.boon.core.Function; + +import java.util.Map; + +public interface SearchableCollectionComposer { + void setPrimaryKeyName( String primaryKey ); + + + void setPrimaryKeyGetter( Function function ); + + void init(); + + void setFields( Map fields ); + + void setFilter( Filter filter ); + + void setRemoveDuplication( boolean b ); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/datarepo/spi/TypedMap.java b/datastructures-json-boon/src/main/java/org/boon/datarepo/spi/TypedMap.java new file mode 100644 index 0000000..a4bd4a6 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/datarepo/spi/TypedMap.java @@ -0,0 +1,81 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.datarepo.spi; + +public interface TypedMap { + + + boolean put( K key, boolean i ); + + boolean getBoolean( K key ); + + V put( byte key, V v ); + + byte put( K key, byte i ); + + byte getByte( K key ); + + V put( short key, V v ); + + short put( K key, short i ); + + short getShort( K key ); + + V put( int key, V v ); + + int put( K key, int i ); + + int getInt( K key ); + + V put( long key, V v ); + + long put( K key, long i ); + + long getLong( K key ); + + V put( float key, V v ); + + float put( K key, float i ); + + float getFloat( K key ); + + V put( double key, V v ); + + double put( K key, double i ); + + double getDouble( K key ); + + V put( char key, V v ); + + char put( K key, char i ); + + char getChar( K key ); + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/di/Context.java b/datastructures-json-boon/src/main/java/org/boon/di/Context.java new file mode 100644 index 0000000..9a7c9af --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/di/Context.java @@ -0,0 +1,65 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.di; + + +public interface Context extends Module { + + + Object invoke( String objectName, String methodName, Object args); + + + Object invokeOverload( String objectName, String methodName, Object args); + + + + Object invokeFromJson( String objectName, String methodName, String args); + + + Object invokeOverloadFromJson( String objectName, String methodName, String args); + + Context add( Module module ); + + Context remove( Module module ); + + Context addFirst( Module module ); + + Iterable children(); + + void resolveProperties( Object o ); + + void resolvePropertiesIgnoreRequired( Object o ); + + void debug( ); + + Context combine( Context newContext ); + Context combineFirst( Context newContext ); + + +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/di/Creator.java b/datastructures-json-boon/src/main/java/org/boon/di/Creator.java new file mode 100644 index 0000000..bf646ab --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/di/Creator.java @@ -0,0 +1,59 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.di; + +import org.boon.Maps; + +import java.util.Map; + +/** + * Created by Richard on 2/4/14. + */ +public class Creator { + + public static T create(Class type, Map map) { + Context context = DependencyInjection.fromMap(map); + context.add( DependencyInjection.classes(type) ); + return context.get( type ); + } + + + public static T create(Class type, Context context) { + context.add( DependencyInjection.classes(type) ); + return context.get( type ); + } + + + public static T newOf( Class type, Object... args ) { + Map map = Maps.mapFromArray( args ); + Context context = DependencyInjection.fromMap(map); + context.add( DependencyInjection.classes(type) ); + return context.get( type ); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/di/DependencyInjection.java b/datastructures-json-boon/src/main/java/org/boon/di/DependencyInjection.java new file mode 100644 index 0000000..c5021b0 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/di/DependencyInjection.java @@ -0,0 +1,82 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.di; + +import org.boon.Lists; +import org.boon.di.impl.ContextImpl; +import org.boon.di.modules.InstanceModule; +import org.boon.di.modules.SupplierModule; + +import java.util.List; +import java.util.Map; + +public class DependencyInjection { + + + public static Context context( final Module... modules ) { + return new ContextImpl( modules ); + } + + public static Module classes( Class... classes ) { + List wrap = Lists.wrap(ProviderInfo.class, classes); + return new SupplierModule(wrap); + } + + + + public static Module objects( Object... objects ) { + + + List wrap = (List) Lists.mapBy(objects, ProviderInfo.class, "objectProviderOf"); + + return new SupplierModule( wrap ); + } + + + public static Module prototypes( Object... objects ) { + + List wrap = (List) Lists.mapBy(objects, ProviderInfo.class, "prototypeProviderOf"); + + return new SupplierModule( wrap ); + } + + public static Module module( Object module ) { + + return new InstanceModule( module ); + } + + public static Module suppliers( ProviderInfo... suppliers ) { + + return new SupplierModule( suppliers ); + } + + public static Context fromMap( Map map ) { + return new ContextImpl(new SupplierModule( map )); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/di/In.java b/datastructures-json-boon/src/main/java/org/boon/di/In.java new file mode 100644 index 0000000..46e4ea8 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/di/In.java @@ -0,0 +1,53 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.di; + + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +/** + * @author Rick Hightower + * + * Same effect at @Inject @Required if no argument passed. + * Same effect as @Inject if @In(required=false) is passed. + * + * Same effect as @Inject @Named("bar") @Required if @In(value="bar" ) + */ +@Target( {ElementType.METHOD, ElementType.FIELD, ElementType.TYPE, ElementType.PARAMETER} ) +@Retention( RetentionPolicy.RUNTIME ) +public @interface In { + boolean required() default true; + + String value() default ""; + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/di/Inject.java b/datastructures-json-boon/src/main/java/org/boon/di/Inject.java new file mode 100644 index 0000000..288cf83 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/di/Inject.java @@ -0,0 +1,43 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.di; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + + +/** + * @author Rick Hightower + */ +@Target({ElementType.METHOD, ElementType.FIELD}) +@Retention(RetentionPolicy.RUNTIME) +public @interface Inject { +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/di/Module.java b/datastructures-json-boon/src/main/java/org/boon/di/Module.java new file mode 100644 index 0000000..e539a64 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/di/Module.java @@ -0,0 +1,77 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.di; + +import org.boon.core.Supplier; + +public interface Module { + + public T get( Class type ); + + + public Object get( String name ); + + + public T get( Class type, String name ); + + + + public ProviderInfo getProviderInfo( Class type ); + + + public ProviderInfo getProviderInfo( String name ); + + + public ProviderInfo getProviderInfo( Class type, String name ); + + + + public boolean has( Class type ); + + public boolean has( String name ); + + + + public Supplier getSupplier( Class type, String name ); + + + public Supplier getSupplier( Class type ); + + public void parent(Context context); + + + + public Iterable values(); + + public Iterable names(); + + + public Iterable> types(); + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/di/Named.java b/datastructures-json-boon/src/main/java/org/boon/di/Named.java new file mode 100644 index 0000000..f30fbd4 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/di/Named.java @@ -0,0 +1,43 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.di; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +/** + * @author Rick Hightower + */ +@Target( {ElementType.METHOD, ElementType.FIELD, ElementType.TYPE} ) +@Retention( RetentionPolicy.RUNTIME ) +public @interface Named { + String value() default ""; +} diff --git a/datastructures-json-boon/src/main/java/org/boon/di/PostConstruct.java b/datastructures-json-boon/src/main/java/org/boon/di/PostConstruct.java new file mode 100644 index 0000000..3fb68e2 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/di/PostConstruct.java @@ -0,0 +1,43 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.di; + + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +/** + * @author Rick Hightower + */ +@Target( {ElementType.METHOD} ) +@Retention( RetentionPolicy.RUNTIME ) +public @interface PostConstruct { +} diff --git a/datastructures-json-boon/src/main/java/org/boon/di/ProviderInfo.java b/datastructures-json-boon/src/main/java/org/boon/di/ProviderInfo.java new file mode 100644 index 0000000..10a8e68 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/di/ProviderInfo.java @@ -0,0 +1,168 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.di; + +import org.boon.core.Supplier; + +/** + * Created by Richard on 2/3/14. + */ +public class ProviderInfo { + + private String name; + private Class type; + private Supplier supplier; + private T object; + + + private boolean postConstructCalled; + + + boolean prototype; + + + public ProviderInfo( Class type) { + this.type = type; + } + +// public ProviderInfo( T object) { +// this.object = object; +// } + + public ProviderInfo( String name, Class type, Supplier supplier, T object ) { + this.name = name; + this.type = type; + this.supplier = supplier; + this.object = object; + } + + + public ProviderInfo( String name, Class type, Supplier supplier, T object, boolean prototype ) { + this.name = name; + this.type = type; + this.supplier = supplier; + this.object = object; + this.prototype = prototype; + } + + public static ProviderInfo providerOf( Class type, Supplier supplier ) { + return new ProviderInfo<>( null, type, supplier, null ); + } + + + public static ProviderInfo providerOf( String name, Class type, Supplier supplier ) { + return new ProviderInfo<>( name, type, supplier, null ); + } + + + public static ProviderInfo providerOf( String name, Supplier supplier ) { + return new ProviderInfo<>( name, null, supplier, null ); + } + + + public static ProviderInfo providerOf( String name, Class type ) { + return new ProviderInfo<>( name, type, null, null ); + } + + + public static ProviderInfo providerOf( Class type ) { + return new ProviderInfo<>( null, type, null, null ); + } + + + public static ProviderInfo providerOf( String name, T object ) { + return new ProviderInfo<>( name, null, null, object ); + } + + + public static ProviderInfo providerOf( T object ) { + return new ProviderInfo<>( null, null, null, object ); + } + + + public static ProviderInfo objectProviderOf( T object ) { + return new ProviderInfo<>( null, null, null, object ); + } + + + public static ProviderInfo prototypeProviderOf( T object ) { + return new ProviderInfo<>( null, null, null, object, true ); + } + + public static ProviderInfo provider( Object name, Object value ) { + + ProviderInfo info; + + if (value instanceof ProviderInfo ) { + ProviderInfo valueInfo = ( ProviderInfo ) value; + info = new ProviderInfo( name.toString(), valueInfo.type(), valueInfo.supplier(), valueInfo.value() ); + } else if (value instanceof Class) { + info = new ProviderInfo( name.toString(), (Class) value, null, null ); + } else if (value instanceof Supplier) { + info = new ProviderInfo( name.toString(), null, (Supplier) value, null ); + } else { + if (value == null) { + info = new ProviderInfo( name.toString(), null, null, value ); + } else { + info = new ProviderInfo( name.toString(), value.getClass(), null, value ); + } + } + return info; + } + + public Class type() { + return type; + } + + public Supplier supplier() { + return supplier; + } + + public String name() { + return name; + } + + public Object value() { + return object; + } + + + public boolean isPostConstructCalled() { + return postConstructCalled; + } + + public void setPostConstructCalled(boolean postConstructCalled) { + this.postConstructCalled = postConstructCalled; + } + + + public boolean prototype() { + return prototype; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/di/Required.java b/datastructures-json-boon/src/main/java/org/boon/di/Required.java new file mode 100644 index 0000000..8681711 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/di/Required.java @@ -0,0 +1,43 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.di; + + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +/** + * @author Rick Hightower + */ +@Target( {ElementType.METHOD, ElementType.FIELD, ElementType.TYPE, ElementType.PARAMETER} ) +@Retention( RetentionPolicy.RUNTIME ) +public @interface Required { +} diff --git a/datastructures-json-boon/src/main/java/org/boon/di/impl/ContextImpl.java b/datastructures-json-boon/src/main/java/org/boon/di/impl/ContextImpl.java new file mode 100644 index 0000000..50cebf3 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/di/impl/ContextImpl.java @@ -0,0 +1,765 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.di.impl; + +import org.boon.Boon; +import org.boon.Exceptions; +import org.boon.Logger; +import org.boon.collections.ConcurrentLinkedHashSet; +import org.boon.core.Supplier; +import org.boon.core.Typ; +import org.boon.core.reflection.Fields; +import org.boon.core.reflection.Invoker; +import org.boon.core.reflection.MapObjectConversion; +import org.boon.core.reflection.Reflection; +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.di.Context; +import org.boon.di.Module; +import org.boon.di.ProviderInfo; +import org.boon.logging.LogLevel; +import org.boon.logging.TerminalLogger; + +import java.util.ArrayList; +import java.util.List; +import java.util.Map; +import java.util.concurrent.atomic.AtomicReference; + +import static org.boon.Boon.*; +import static org.boon.Exceptions.die; +import static org.boon.Exceptions.handle; +import static org.boon.core.reflection.BeanUtils.idxBoolean; +import static org.boon.json.JsonFactory.fromJson; + +public class ContextImpl implements Context, Module { + + protected ConcurrentLinkedHashSet modules = new ConcurrentLinkedHashSet<>(); + private String name; + private AtomicReference parent = new AtomicReference<>(); + + private Class contextImpl = ContextImpl.class; + private Logger logger = configurableLogger(contextImpl); + + private boolean debug; + + + public void initDebug() { + if (Boon.debugOn()) { + logger.level(LogLevel.DEBUG); + logger.tee(new TerminalLogger()); + this.debug = true; + } + + if (logger.debugOn()) { + debug = true; + } + } + + public ContextImpl() { + initDebug(); + } + + + public ContextImpl(Module... modules) { + initDebug(); + for (Module module : modules) { + module.parent(this); + this.modules.add(module); + } + } + + + public Context combine(Context newContext) { + + ContextImpl newContextImpl = (ContextImpl) newContext; + + for (Module module : newContextImpl.modules) { + module.parent(this); + this.modules.add(module); + } + return this; + } + + + public Context combineFirst(Context newContext) { + + ContextImpl newContextImpl = (ContextImpl) newContext; + + for (Module module : newContextImpl.modules) { + module.parent(this); + this.modules.addFirst(module); + } + return this; + } + + @Override + public void parent(Context context) { + if (debug) logger.debug(contextImpl, "parent"); + this.parent.set(context); + } + + @Override + public Iterable values() { + + + if (debug) logger.debug(contextImpl, "values()", "IN"); + + List list = new ArrayList(); + for (Module m : modules) { + + for (Object o : m.values()) { + list.add(o); + } + } + + + if (debug) logger.debug(contextImpl, "values()", "OUT", list); + return list; + } + + @Override + public Iterable names() { + if (debug) logger.debug(contextImpl, "names()", "IN"); + + + List list = new ArrayList(); + for (Module m : modules) { + + for (String n : m.names()) { + list.add(n); + } + } + + if (debug) logger.debug(contextImpl, "names()", "OUT", list); + return list; + } + + @Override + public Iterable> types() { + + if (debug) logger.debug(contextImpl, "types()", "IN"); + List list = new ArrayList(); + for (Module m : modules) { + + for (Class c : m.types()) { + list.add(c); + } + } + + if (debug) logger.debug(contextImpl, "types()", "OUT", list); + return list; + } + + + @Override + public Iterable children() { + return modules; + } + + public void setName(String name) { + this.name = name; + } + + + @Override + public T get(Class type) { + + try { + + + if (debug) logger.debug(contextImpl, "get(type)", "IN", type); + + Object object = null; + for (Module module : modules) { + + if (module.has(type)) { + object = module.get(type); + break; + } + } + + resolveProperties(true, object, getProviderInfo(type)); + + + if (debug) logger.debug(contextImpl, "get(type)", "OUT", object); + return (T) object; + } catch (Exception ex) { + return (T) Exceptions.handle(Object.class, ex, "Unable to get type", type); + } + } + + + @Override + public T get(Class type, String name) { + + if (debug) logger.debug(contextImpl, "get(type, name)", "IN", type, name); + + try { + + + + T object = null; + for (Module module : modules) { + + if (module.has(name)) { + object = module.get(type, name); + break; + } + } + + resolveProperties(true, object, getProviderInfo(type, name)); + + + if (debug) logger.debug(contextImpl, "get(type, name)", "IN", type, name, "OUT", object); + + return object; + } catch (Exception ex) { + return (T) Exceptions.handle(Object.class, ex, "Unable to get type", type, name); + } + + } + + @Override + public ProviderInfo getProviderInfo(Class type) { + + if (debug) logger.debug(contextImpl, "getProviderInfo(type)", "IN", type); + try { + + ProviderInfo pi = null; + for (Module module : modules) { + + if (module.has(type)) { + pi = module.getProviderInfo(type); + break; + } + } + + + if (debug) logger.debug(contextImpl, "getProviderInfo(type)", "IN", type, "OUT", pi); + return pi; + } catch (Exception ex) { + return Exceptions.handle(ProviderInfo.class, ex, "Unable to get type", type); + } + + +} + + @Override + public ProviderInfo getProviderInfo(String name) { + + + try { + if (debug) logger.debug(contextImpl, "getProviderInfo(name)", "IN", name); + + ProviderInfo pi = null; + for (Module module : modules) { + + if (module.has(name)) { + pi = module.getProviderInfo(name); + break; + } + } + + + if (debug) logger.debug(contextImpl, "getProviderInfo(name)", "IN", name, "OUT", pi); + return pi; + }catch (Exception ex) { + return Exceptions.handle(ProviderInfo.class, ex, "Unable to get name", name); + } + + + } + + @Override + public ProviderInfo getProviderInfo(Class type, String name) { + + + if (debug) logger.debug(contextImpl, "getProviderInfo( type, name )", "IN", type, name); + + try { + ProviderInfo pi = null; + for (Module module : modules) { + + if (module.has(name)) { + pi = module.getProviderInfo(type, name); + break; + } + } + + + if (debug) logger.debug(contextImpl, "getProviderInfo( type, name )", "IN", type, name, "OUT", pi); + return pi; + } catch (Exception ex) { + return Exceptions.handle(ProviderInfo.class, ex, "Unable to get type/name", type, name); + } + + } + + @Override + public boolean has(Class type) { + + + if (debug) logger.debug(contextImpl, "has( type )", "IN", type); + + + if (debug) logger.debug(contextImpl, "has( type )", "IN", type); + + for (Module module : modules) { + + if (module.has(type)) { + + if (debug) logger.debug(contextImpl, "has( type )", "IN", type, "OUT", true); + return true; + } + } + + + if (debug) logger.debug(contextImpl, "has( type )", "IN", type, "OUT", false); + return false; + } + + @Override + public boolean has(String name) { + + for (Module module : modules) { + + if (module.has(name)) { + + if (debug) logger.debug(contextImpl, "has( name )", "IN", name, "OUT", true); + return true; + } + } + + + if (debug) logger.debug(contextImpl, "has( name )", "IN", name, "OUT", false); + return false; + } + + @Override + public Supplier getSupplier(final Class type, final String name) { + + + try { + + + Supplier supplier = null; + for (Module module : modules) { + + if (module.has(name)) { + supplier = module.getSupplier(type, name); + break; + } + } + + final Supplier s = supplier; + final Context resolver = this; + + + return new Supplier() { + String supplierName = name; + Class supplierType = type; + + @Override + public T get() { + T o = s.get(); + resolver.resolveProperties(o); + return o; + } + }; + + + } catch (Exception ex) { + return Exceptions.handle(Supplier.class, ex, "Unable to get type", type, name); + } + + } + + @Override + public Supplier getSupplier(Class type) { + + try { + + + Supplier supplier = null; + for (Module module : modules) { + + if (module.has(type)) { + supplier = module.getSupplier(type); + break; + } + } + + final Supplier s = supplier; + + + final Context resolver = (Context) this; + + return new Supplier() { + @Override + public T get() { + T o = s.get(); + resolveProperties(o); + return o; + } + }; + + + } catch (Exception ex) { + return Exceptions.handle(Supplier.class, ex, "Unable to get type", type); + } + } + + + private void resolveProperties(boolean enforce, Object object, ProviderInfo info) { + + if (debug) logger.debug(contextImpl, "resolveProperties(enforce, object, info )", "IN", + enforce, object, info); + + + if (object != null) { + + /* Since there is no concept of singleton or scope, you need some sort of flag to determine + if injection has already happened for objects that are like singletons. + */ + if (Fields.hasField(object, "__init__")) { + if (idxBoolean(object, "__init__")) { + + + if (debug) logger.debug(contextImpl, "Object was initialized already"); + + return; + } + } + + if (info != null && info.isPostConstructCalled() && info.value() != null && !info.prototype()) { + return; + } + + Map fields = Reflection.getAllAccessorFields(object.getClass(), true); + for (FieldAccess field : fields.values()) { + + if ((field.injectable())) { + + handleInjectionOfField(enforce, object, field); + } + + + } + + + if (debug) logger.debug(contextImpl, "Invoking post construct start...", object); + Invoker.invokeMethodWithAnnotationNoReturn(object, "postConstruct"); + if (debug) logger.debug(contextImpl, "Invoking post construct done...", object); + + if (info != null && info.value() != null && !info.prototype()) { + + if (debug) logger.debug(contextImpl, "Setting post construct property on provider info...", + object); + info.setPostConstructCalled(true); + } + } + + if (debug) logger.debug(contextImpl, "resolveProperties(enforce, object, info )", "OUT", + enforce, object, info); + + + } + + public void resolveProperties(Object object) { + + resolveProperties(true, object, null); + + } + + + public void resolvePropertiesIgnoreRequired(Object object) { + + resolveProperties(false, object, null); + + } + + private void handleInjectionOfField(boolean enforce, Object object, FieldAccess field) { + + if (debug) logger.debug(contextImpl, "handleInjectionOfField(enforce, object, field )", "IN", + enforce, object, field); + + try { + + Object value = null; + + if (field.type().isPrimitive() || Typ.isBasicType(field.type())) { + handleInjectionOfBasicField(enforce, object, field); + return; + } + + + boolean fieldNamed = field.isNamed(); + if (fieldNamed && field.type() != Supplier.class) { + value = this.get(field.type(), field.named()); + } else if (fieldNamed && field.type() == Supplier.class) { + value = this.getSupplier(field.getComponentClass(), field.named()); + } else { + value = this.get(field.type()); + } + + if (value == null && field.isNamed()) { + value = get(field.named()); + if (value != null) { + field.type().isAssignableFrom(value.getClass()); + } + } + + if (enforce && field.requiresInjection()) { + if (value == null) { + + debug(); + die(sputs( + "Unable to inject into", field.name(), " of ", field.parent(), "with alias\n", + field.named(), "was named", field.isNamed(), "field info", + field, "\n" + )); + } + } + + if (debug) logger.debug(contextImpl, "handleInjectionOfField(enforce, object, field )", "IN", + enforce, object, field, "\n", "FIELD INJECTION", "into", object, field.name(), "with value", value, + "VALUE TYPE", className(value), field.type()); + + field.setValue(object, value); + + } catch (Exception ex) { + Exceptions.handle(ex, + "handleInjectionOfField failed for ", + "enforce", enforce, "Object", object, "FieldAccess", field); + } + } + + private void handleInjectionOfBasicField(boolean enforce, Object object, FieldAccess field) { + + try { + + if (debug) logger.debug(contextImpl, "handleInjectionOfBasicField(enforce, object, field )", "IN", + enforce, object, field); + + String name = null; + if (field.isNamed()) { + if (debug) logger.debug(contextImpl, "handleInjectionOfBasicField", "FIELD IS NAMED"); + + name = field.alias(); + + if (debug) logger.debug(contextImpl, "handleInjectionOfBasicField", "FIELD IS NAMED", "name", name); + } + + if (name == null) { + + name = field.name(); + if (debug) + logger.debug(contextImpl, "handleInjectionOfBasicField", "USING FIELD NAME AS NAME", "name", name); + + } + + Object value = this.get(name); + + if (value == null) { + if (debug) + logger.debug(contextImpl, "handleInjectionOfBasicField", "NAME NOT FOUND IN CONTEXT", "name", name); + + name = Boon.add(field.declaringParent().getName(), ".", field.alias()); + } + + value = this.get(name); + + if (value == null) { + if (debug) + logger.debug(contextImpl, "handleInjectionOfBasicField", "NAME NOT FOUND IN CONTEXT", "name", name); + + name = Boon.add(field.declaringParent().getPackage().getName(), ".", field.alias()); + } + + + value = this.get(name); + + if (debug && value == null) { + logger.debug(contextImpl, "handleInjectionOfBasicField", "NAME NOT FOUND IN CONTEXT", "name", name); + } + + if (enforce && value == null && field.requiresInjection()) { + die("Basic field", field.name(), "needs injection for class", field.declaringParent()); + } + + + if (debug) logger.debug(contextImpl, "handleInjectionOfBasicField(enforce, object, field )", "IN", + enforce, object, field, "\n", "FIELD INJECTION", "into", object, field.name(), "with value", value, + "VALUE TYPE", className(value), field.type()); + + + if (value != null) { + field.setValue(object, value); + } + + if (debug) logger.debug(contextImpl, "handleInjectionOfBasicField(enforce, object, field )", "OUT", + enforce, object, field); + + } catch (Exception ex) { + Exceptions.handle(ex, + "BASIC handleInjectionOfBasicField failed for ", + "enforce", enforce, "Object", object, "FieldAccess", field); + } + + } + + public void debug() { + + puts(this, "----debug----"); + + if (this.parent.get() != null) { + + puts(this, "delegating to parent----"); + this.parent.get().debug(); + + } else { + + displayModuleInfo(); + } + } + + private void displayModuleInfo() { + + int index = 0; + + for (Module module : modules) { + + if (module instanceof ContextImpl) { + ContextImpl context = (ContextImpl) module; + context.displayModuleInfo(); + } else { + puts(index, module); + + puts("Names:---------------------------"); + for (String name : module.names()) { + puts(" ", name); + } + + + puts("TypeType--:---------------------------"); + for (Class cls : module.types()) { + puts(" ", name); + } + + + puts("Object--:---------------------------"); + for (Object value : module.values()) { + puts(" ", name); + } + } + + index++; + } + } + + + @Override + public Object get(String name) { + + try { + + Object object = null; + for (Module module : modules) { + + if (module.has(name)) { + object = module.get(name); + break; + } + } + + if (object instanceof Map) { + Map map = (Map) object; + if (map.containsKey("class")) { + object = MapObjectConversion.fromMap(map); + } + } + + resolveProperties(true, object, getProviderInfo(name)); + + return object; + } catch (Exception ex) { + return Exceptions.handle(Object.class, ex, "name", name); + } + } + + @Override + public Object invoke(String objectName, String methodName, Object args) { + Object object = this.get(objectName); + return Invoker.invokeFromObject(object, methodName, args); + } + + @Override + public Object invokeOverload(String objectName, String methodName, Object args) { + Object object = this.get(objectName); + return Invoker.invokeOverloadedFromObject(object, methodName, args); + } + + @Override + public Object invokeFromJson(String objectName, String methodName, String args) { + return invoke(objectName, methodName, fromJson(args)); + } + + @Override + public Object invokeOverloadFromJson(String objectName, String methodName, String args) { + return invokeOverload(objectName, methodName, fromJson(args)); + } + + @Override + public Context add(Module module) { + module.parent(this); + this.modules.add(module); + return this; + } + + @Override + public Context remove(Module module) { + module.parent(null); + this.modules.remove(module); + return this; + } + + @Override + public Context addFirst(Module module) { + module.parent(this); + this.modules.addFirst(module); + return this; + } + + + @Override + public String toString() { + return "ContextImpl{" + + ", name='" + name + '\'' + + '}'; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/di/modules/BaseModule.java b/datastructures-json-boon/src/main/java/org/boon/di/modules/BaseModule.java new file mode 100644 index 0000000..929ccec --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/di/modules/BaseModule.java @@ -0,0 +1,84 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.di.modules; + +import org.boon.core.Supplier; +import org.boon.di.Context; +import org.boon.di.Module; + +import java.util.concurrent.atomic.AtomicReference; + +/** + * Created by Richard on 2/5/14. + */ +public abstract class BaseModule implements Module{ + + private AtomicReference parent = new AtomicReference<>( ); + + @Override + public void parent(Context context) { + this.parent.set( context ); + } + + @Override + public T get( Class type ) { + return null; + } + + @Override + public Object get( String name ) { + return null; + } + + @Override + public T get( Class type, String name ) { + return null; + } + + @Override + public boolean has( Class type ) { + return false; + } + + @Override + public boolean has( String name ) { + return false; + } + + @Override + public Supplier getSupplier( Class type, String name ) { + return null; + } + + @Override + public Supplier getSupplier( Class type ) { + return null; + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/di/modules/InstanceModule.java b/datastructures-json-boon/src/main/java/org/boon/di/modules/InstanceModule.java new file mode 100644 index 0000000..fdc22ba --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/di/modules/InstanceModule.java @@ -0,0 +1,289 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.di.modules; + +import org.boon.Exceptions; +import org.boon.Sets; +import org.boon.collections.MultiMap; +import org.boon.collections.MultiMapImpl; +import org.boon.core.Supplier; +import org.boon.core.reflection.ClassMeta; +import org.boon.core.reflection.MethodAccess; +import org.boon.di.ProviderInfo; + +import java.util.Map; +import java.util.Set; +import java.util.concurrent.ConcurrentHashMap; + + +public class InstanceModule extends BaseModule { + + private Map supplierTypeMap = new ConcurrentHashMap<>(); + private MultiMapImpl supplierNameMap = new MultiMapImpl<>(); + + private Object module; + + + public InstanceModule( Object object ) { + module = object; + + ClassMeta classMeta = ClassMeta.classMeta(object.getClass()); + Iterable methods = (Iterable)classMeta.methods(); + + for ( MethodAccess method : methods) { + + if ( !method.isStatic() && method.name().startsWith( "provide" ) ) { + addCreationMethod( method, false ); + } else if (!method.isStatic() && method.name().startsWith( "create" )) { + addCreationMethod( method, true ); + + } + } + + + } + + private static class InternalSupplier implements Supplier { + + private final Object module; + + private final MethodAccess method; + + InternalSupplier( MethodAccess method, Object module ) { + this.method = method; + this.module = module; + } + + @Override + public Object get() { + try { + return method.invoke( module ); + } catch ( Exception e ) { + return Exceptions.handle( Object.class, e ); + } + } + } + + private Supplier createSupplier( final MethodAccess method ) { + return new InternalSupplier( method, module ); + } + + @Override + public T get( Class type ) { + + + ProviderInfo pi = supplierTypeMap.get(type); + if (pi!=null) { + return (T)pi.supplier().get(); + } + return null; + + + } + + @Override + public Object get( String name ) { + + + ProviderInfo pi = supplierNameMap.get(name); + if (pi!=null) { + return pi.supplier().get(); + } + return null; + + } + + + @Override + public T get( Class type, String name ) { + + return getSupplier( type, name ).get(); + } + + @Override + public ProviderInfo getProviderInfo(Class type) { + return this.supplierTypeMap.get(type); + } + + @Override + public ProviderInfo getProviderInfo(String name) { + return this.supplierNameMap.get(name); + } + + @Override + public ProviderInfo getProviderInfo(Class type, String name) { + return doGetProvider(type, name); + } + + + + private ProviderInfo doGetProvider( final Class type, final String name ) { + + + Set set = Sets.set( supplierNameMap.getAll( name ) ); + + + ProviderInfo nullTypeInfo = null; + + for ( ProviderInfo info : set ) { + + if ( info.type() == null ) { + nullTypeInfo = info; + + continue; + } + if ( type.isAssignableFrom( info.type() ) ) { + return info; + } + } + return nullTypeInfo; + } + + + @Override + public Supplier getSupplier( final Class type, final String name ) { + + try { + Set set = Sets.set(supplierNameMap.getAll(name)); + for ( ProviderInfo s : set ) { + InternalSupplier supplier = ( InternalSupplier ) s.supplier(); + if ( type.isAssignableFrom( supplier.method.returnType() ) ) { + return (Supplier)supplier; + } + } + + return new Supplier() { + @Override + public T get() { + return null; + } + }; + + } catch ( Exception e ) { + Exceptions.handle( e ); + return null; + } + + } + + @Override + public Supplier getSupplier( Class type ) { + Supplier supplier = ( Supplier ) supplierTypeMap.get( type ); + if (supplier == null ) { + supplier = new Supplier() { + @Override + public T get() { + return null; + } + }; + } + + return supplier; + } + + @Override + public Iterable values() { + return (Iterable) (Object) supplierTypeMap.values(); + } + + @Override + public Iterable names() { + + return supplierNameMap.keySet(); + } + + @Override + public Iterable types() { + return supplierTypeMap.keySet(); + } + + @Override + public boolean has( Class type ) { + return supplierTypeMap.containsKey( type ); + } + + @Override + public boolean has( String name ) { + return supplierNameMap.containsKey( name ); + } + + + private void addCreationMethod(MethodAccess method, boolean creates) { + + Object providerInfo=creates ? null : new Object(); + + /** See if the name is in the method and that one takes precedence if found. */ + String named = NamedUtils.namedValueForMethod( method ); + boolean foundName = named != null; + + Class cls = method.returnType(); + + + /* Next see if named is in the class. */ + if ( !foundName ) { + named = NamedUtils.namedValueForClass( cls ); + foundName = named != null; + } + + Supplier supplier = createSupplier( method ); + this.supplierTypeMap.put(cls, new ProviderInfo(named, cls, supplier, providerInfo)); + + Class superClass = cls.getSuperclass(); + + + Class[] superTypes = cls.getInterfaces(); + + for ( Class superType : superTypes ) { + this.supplierTypeMap.put(superType, new ProviderInfo(named, cls, supplier, providerInfo)); + } + + if ( superClass != null ) { + while ( superClass != Object.class ) { + this.supplierTypeMap.put(superClass, new ProviderInfo(named, cls, supplier, providerInfo)); + + /* Next see if named is in the super if not found. */ + if ( !foundName ) { + named = NamedUtils.namedValueForClass( cls ); + foundName = named != null; + } + superTypes = cls.getInterfaces(); + for ( Class superType : superTypes ) { + this.supplierTypeMap.put(superType, new ProviderInfo(named, cls, supplier, providerInfo)); + } + superClass = superClass.getSuperclass(); + } + } + + + if ( foundName ) { + this.supplierNameMap.put(named, new ProviderInfo(named, cls, supplier, providerInfo)); + } + + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/di/modules/NamedUtils.java b/datastructures-json-boon/src/main/java/org/boon/di/modules/NamedUtils.java new file mode 100644 index 0000000..a2ab14b --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/di/modules/NamedUtils.java @@ -0,0 +1,98 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.di.modules; + +import org.boon.Maps; +import org.boon.Sets; +import org.boon.Str; +import org.boon.core.reflection.*; + +import java.lang.reflect.Method; +import java.util.Map; +import java.util.Set; + +import static org.boon.Str.uncapitalize; + +/** + * Created by Richard on 2/3/14. + */ +public class NamedUtils { + + private static Set annotationsThatHaveNamed = Sets.set( "jsonProperty", "serializedName", "named", "id", "in", "qualifier" ); + + + public static String namedValueForClass( Class type ) { + + ClassMeta cls = ClassMeta.classMeta(type); + + + String named = findNamed( cls, type ); + + return named; + } + + + + public static String namedValueForMethod( MethodAccess method ) { + + String named = findNamed( method, method.returnType() ); + + /** If named is null for this method, then check the name of the return class type class. */ + if (named == null) { + named = namedValueForClass(method.returnType()); + } + return named; + } + + private static String findNamed( Annotated annotated, Class type ) { + String named = null; + + for (String annotationName : annotationsThatHaveNamed) { + named = getName( annotated, annotationName, type ); + if (named != null) { + break; + } + } + + + return named; + } + + private static String getName( Annotated annotated, String annotationName, Class type ) { + String named = null; + if ( annotated.hasAnnotation(annotationName) ) { + named = ( String ) annotated.annotation( annotationName ).getValues().get( "value" ); + if ( Str.isEmpty( named )) { + named = uncapitalize( type.getSimpleName() ); + } + } + return named; + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/di/modules/SupplierModule.java b/datastructures-json-boon/src/main/java/org/boon/di/modules/SupplierModule.java new file mode 100644 index 0000000..07ec5ae --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/di/modules/SupplierModule.java @@ -0,0 +1,370 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.di.modules; + +import org.boon.Exceptions; +import org.boon.Sets; +import org.boon.collections.MultiMap; +import org.boon.collections.MultiMapImpl; +import org.boon.core.Supplier; +import org.boon.core.reflection.BeanUtils; +import org.boon.core.reflection.MapObjectConversion; +import org.boon.core.reflection.Reflection; +import org.boon.di.ProviderInfo; + +import java.util.ArrayList; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.concurrent.ConcurrentHashMap; + +import static org.boon.di.modules.NamedUtils.namedValueForClass; + +/** + * Created by Richard on 2/3/14. + */ +public class SupplierModule extends BaseModule { + + private Map supplierTypeMap = new ConcurrentHashMap<>(); + + private MultiMapImpl supplierNameMap = new MultiMapImpl<>(); + + public SupplierModule( ProviderInfo... suppliers ) { + supplierExtraction( suppliers ); + } + + + public SupplierModule( List suppliers ) { + supplierExtraction( suppliers.toArray(new ProviderInfo[suppliers.size()]) ); + } + + + + @Override + public Iterable values() { + return (Iterable) (Object)supplierNameMap.values(); + } + + @Override + public Iterable names() { + return supplierNameMap.keySet(); + } + + @Override + public Iterable types() { + return supplierTypeMap.keySet(); + } + + public SupplierModule( Map map ) { + List list = new ArrayList<>( ); + + for (Map.Entry entry : map.entrySet()) { + Object key = entry.getKey(); + Object value = entry.getValue(); + if (value instanceof Map) { + Map valueMap = (Map ) value; + ProviderInfo pi = addProviderFromMapToList(key, valueMap); + list.add( pi ); + + } else { + list.add( ProviderInfo.provider( key, value )); + } + } + supplierExtraction( list.toArray( new ProviderInfo[list.size()] ) ); + } + + private ProviderInfo addProviderFromMapToList( final Object key, final Map valueMap) { + if (valueMap.containsKey( "class" )) { + CharSequence className = (String) valueMap.get( "class" ); + if (className!=null) { + try { + + final Class type = (Class) Class.forName( className.toString()); + + final Supplier supplier = new Supplier() { + @Override + public Object get() { + return MapObjectConversion.fromMap(valueMap); + } + }; + return ProviderInfo.providerOf( key.toString(), type, supplier ); + } catch ( ClassNotFoundException e ) { + return ProviderInfo.provider( key, valueMap ) ; + } + + } + + } + return ProviderInfo.provider( key, valueMap ) ; + + } + + + @Override + public T get( Class type ) { + ProviderInfo pi = supplierTypeMap.get(type); + if (pi!=null) { + return (T) pi.supplier().get(); + } + return null; + + } + + @Override + public Object get( String name ) { + + ProviderInfo pi = supplierNameMap.get(name); + if (pi!=null) { + return pi.supplier().get(); + } + return null; + + + } + + @Override + public T get( Class type, String name ) { + ProviderInfo providerInfo = getProviderInfo(type, name); + if (providerInfo!=null) { + return (T)providerInfo.supplier().get(); + } + return null; + } + + @Override + public ProviderInfo getProviderInfo(Class type) { + return supplierTypeMap.get(type); + } + + @Override + public ProviderInfo getProviderInfo(String name) { + return supplierNameMap.get(name); + } + + @Override + public ProviderInfo getProviderInfo(Class type, String name) { + return doGetProvider(type, name); + } + + + @Override + public Supplier getSupplier( final Class type, final String name ) { + + + ProviderInfo nullInfo = null; + + try { + Set set = Sets.set( supplierNameMap.getAll( name ) ); + + for ( ProviderInfo info : set ) { + + if ( info.type() == null ) { + nullInfo = info; + continue; + } + if ( type.isAssignableFrom( info.type() ) ) { + return ( Supplier ) info.supplier(); + } + } + + return ( Supplier ) ( nullInfo != null ? nullInfo.supplier() : new Supplier() { + @Override + public T get() { + return null; + } + }); + + } catch ( Exception e ) { + Exceptions.handle( e ); + return null; + } + } + + + private ProviderInfo doGetProvider( final Class type, final String name ) { + + + Set set = Sets.set( supplierNameMap.getAll( name ) ); + + + ProviderInfo nullTypeInfo = null; + + for ( ProviderInfo info : set ) { + + if ( info.type() == null ) { + nullTypeInfo = info; + + continue; + } + if ( type.isAssignableFrom( info.type() ) ) { + return info; + } + } + return nullTypeInfo; + } + + + @Override + public Supplier getSupplier( Class type ) { + Supplier supplier = ( Supplier ) supplierTypeMap.get( type ); + if (supplier == null ) { + supplier = new Supplier() { + @Override + public T get() { + return null; + } + }; + } + + return supplier; + } + + + @Override + public boolean has( Class type ) { + return supplierTypeMap.containsKey( type ); + } + + @Override + public boolean has( String name ) { + return supplierNameMap.containsKey( name ); + } + + + private void extractClassIntoMaps( ProviderInfo info, Class type, boolean foundName, Supplier supplier ) { + + if ( type == null ) { + return; + } + String named = null; + + + Class superClass = type.getSuperclass(); + + + Class[] superTypes = type.getInterfaces(); + + for ( Class superType : superTypes ) { + this.supplierTypeMap.put( superType, info ); + } + + while ( superClass != Object.class ) { + this.supplierTypeMap.put( superClass, info ); + + if ( !foundName ) { + named = NamedUtils.namedValueForClass( superClass ); + if ( named != null ) { + supplierNameMap.put( named, new ProviderInfo( named, type, supplier, null ) ); + foundName = true; + } + } + + superTypes = type.getInterfaces(); + for ( Class superType : superTypes ) { + this.supplierTypeMap.put( superType, info ); + } + superClass = superClass.getSuperclass(); + } + + + } + + + private void supplierExtraction( ProviderInfo[] suppliers ) { + for ( ProviderInfo providerInfo : suppliers ) { + + Class type = providerInfo.type(); + /* Get type from value. */ + if ( type == null && providerInfo.value() != null ) { + type = providerInfo.value().getClass(); + + } + String named = providerInfo.name(); + Supplier supplier = providerInfo.supplier(); + + if ( supplier == null ) { + supplier = createSupplier( providerInfo.prototype(), type, providerInfo.value() ); + providerInfo = new ProviderInfo(named, type, supplier, providerInfo.value()); + } + + if ( type != null ) { + + supplierTypeMap.put( type, providerInfo ); + + + /* Named passed in overrides name in class annotation @Named. */ + if ( named == null ) { + + named = namedValueForClass( type ); + } + } + + extractClassIntoMaps( providerInfo, type, named != null, supplier ); + if ( named != null ) { + supplierNameMap.put( named, new ProviderInfo( named, type, supplier, providerInfo.value() ) ); + } + } + } + + + private Supplier createSupplier( final boolean prototype, final Class type, final Object value ) { + if ( value != null && !prototype) { + return new Supplier() { + @Override + public Object get() { + return value; + } + }; + } else if (value!=null && prototype) { + return new Supplier() { + @Override + public Object get() { + return BeanUtils.copy(value); + } + }; + } else if ( type != null ) { + return new Supplier() { + @Override + public Object get() { + return Reflection.newInstance( type ); + } + }; + } else { + return new Supplier() { + @Override + public Object get() { + return null; + } + }; + } + } + + + +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/expression/BoonExpressionContext.java b/datastructures-json-boon/src/main/java/org/boon/expression/BoonExpressionContext.java new file mode 100644 index 0000000..2ce321e --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/expression/BoonExpressionContext.java @@ -0,0 +1,504 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.expression; + +import org.boon.*; +import org.boon.core.Conversions; +import org.boon.core.reflection.BeanUtils; +import org.boon.core.reflection.ClassMeta; +import org.boon.core.reflection.MethodAccess; +import org.boon.json.JsonParserAndMapper; +import org.boon.json.JsonParserFactory; +import org.boon.primitive.Arry; + +import java.util.*; + +import static org.boon.Boon.puts; +import static org.boon.Exceptions.die; +import static org.boon.Str.slc; +import static org.boon.json.JsonFactory.fromJson; + +/** + * Created by Richard on 2/10/14. + */ +public class BoonExpressionContext implements ExpressionContext { + + + private LinkedList context; + + private BoonExpressionContext parent; + + private final JsonParserAndMapper jsonParser = new JsonParserFactory().lax().create(); + + + /** Functions can be used anywhere where expressions can be used. */ + protected Map staticMethodMap = new HashMap<>(100); + + + public BoonExpressionContext(final List root) { + + + this.context = new LinkedList<>(); + + if (root!=null) { + this.context.add(root); + } + + addFunctions("fn", StandardFunctions.class); + + parent = this; + + } + + public void addFunctions(String prefix, Class functions) { + + final ClassMeta funcs = ClassMeta.classMeta(functions); + + + for (MethodAccess m : funcs.methods()) { + if (m.isStatic()) { + String funcName = Str.add(prefix, ":", m.name()); + staticMethodMap.put(funcName, m); + } + } + } + + public void initContext(Object... array) { + + this.context = new LinkedList<>(); + if (array==null) { + return; + } + + for (Object root : array ) { + if (root == null) { + continue; + } + if (root instanceof CharSequence) { + + String str = root.toString().trim(); + + if (str.startsWith("[") || str.startsWith("{")) { + this.context.add( + fromJson(root.toString() + ) + ); + } + + } else { + this.context.add(root); + } + + parent=this; + } + + } + + + public void addFunctions(Class functionsClass) { + + final ClassMeta standardFunctionsClassMeta = ClassMeta.classMeta(functionsClass); + + + for (MethodAccess m : standardFunctionsClassMeta.methods()) { + if (m.isStatic()) { + String funcName = Str.add(m.name()); + staticMethodMap.put(funcName, m); + } + } + } + + public BoonExpressionContext(final Object... array) { + + + + this.context = new LinkedList<>(); + + + initContext(array); + + addFunctions("fn", StandardFunctions.class); + + } + + + + + + + + @Override + public char idxChar( String property ) { + + return Conversions.toChar(this.lookup(property)); + } + + + + Object findProperty(String propertyPath, boolean searchChildren) { + + + //We have to cache the prop path and create a lookup object that we look up + //too expensive but ok for now. + + Object defaultValue; + + String formatRule = null; + + + Object outputValue=null; + + + if (propertyPath.indexOf('|') != -1) { + + String[] splitByPipe = Str.splitByPipe(propertyPath); + defaultValue = splitByPipe[1]; + propertyPath = splitByPipe[0]; + + } else { + defaultValue = null; + } + + if (propertyPath.indexOf('%') != -1) { + + String[] splitByPercentSign = StringScanner.split(propertyPath, '%', 1); + formatRule = splitByPercentSign[1]; + propertyPath = splitByPercentSign[0]; + } + + + for (Object ctx : this.context) { + + if (searchChildren && ctx instanceof BoonExpressionContext) { + BoonExpressionContext basicContext = (BoonExpressionContext) ctx; + outputValue = basicContext.findProperty(propertyPath, true); + if (outputValue!=null) { + break; + } + } else if (ctx instanceof Pair) { + Pair pair = (Pair)ctx; + if(pair.getKey().equals(propertyPath)) { + outputValue = pair.getValue(); + break; + } else if (propertyPath.startsWith(pair.getKey())){ + + String subPath = StringScanner.substringAfter( + propertyPath, pair.getKey()); + + Object o = pair.getValue(); + outputValue = BeanUtils.idx(o, subPath); + break; + } + + } else { + outputValue = BeanUtils.idx(ctx, propertyPath); + if (outputValue != null) { + + break; + } + } + } + + if (outputValue==null) { + outputValue = defaultValue; + } + + if (formatRule!=null) { + outputValue = applyFormatRule(formatRule, outputValue); + + } + return outputValue; + + } + + + private Object applyFormatRule(String formatRule, Object outputValue) { + + return String.format(Str.add("%",formatRule), outputValue); + } + + + @Override + public byte idxByte( String property ) { + + + return Conversions.toByte(this.lookup(property)); + } + + @Override + public short idxShort( String property ) { + + return Conversions.toShort(this.lookup(property)); + } + + @Override + public String idxString( String property ) { + + return Conversions.toString(this.lookup(property)); + } + + @Override + public int idxInt( String property ) { + + return Conversions.toInt(this.lookup(property)); + } + + @Override + public float idxFloat( String property ) { + + return Conversions.toFloat(this.lookup(property)); + } + + @Override + public double idxDouble( String property ) { + + return Conversions.toDouble(this.lookup(property)); + } + + @Override + public long idxLong( String property ) { + + return Conversions.toLong(this.lookup(property)); + } + + @Override + public Object idx( String property ) { + + return this.lookup(property); + } + + @Override + public T idx( Class type, String property ) { + + return (T) this.lookup(property); + + } + + public int size() { + return context.size(); + } + + public boolean isEmpty() { + return context.isEmpty(); + } + + public Object get( Object key ) { + + return this.lookup((key.toString())); + + } + + + + @Override + public void put(String key, Object value) { + Pair pair = new Pair<>(key, value); + context.add(0, pair); + } + + + /** + * Lookup an object and use its name as the default value if not found. + * + * @param objectName + * @return + */ + public Object lookup(String objectName) { + return lookupWithDefault(objectName, objectName); + } + + + + + /** + * Lookup an object and supply a default value. + * @param objectExpression + * @param defaultValue + * @return + */ + + private Object doLookup(String objectExpression, Object defaultValue, boolean searchChildren) { + + if (Str.isEmpty(objectExpression)) { + return defaultValue; + } + + char firstChar = Str.idx(objectExpression, 0); + char secondChar = Str.idx(objectExpression, 1); + char lastChar = Str.idx(objectExpression, -1); + + boolean escape = false; + + switch(firstChar) { + case '$': + if (lastChar=='}') { + objectExpression = slc(objectExpression, 2, -1); + } else { + objectExpression = slc(objectExpression, 1); + } + break; + case '{': + if (secondChar=='{' && lastChar=='}') { + char thirdChar = Str.idx(objectExpression, 2); + + if (thirdChar == '{') { + escape = true; + objectExpression = slc(objectExpression, 3, -3); + }else { + objectExpression = slc(objectExpression, 2, -2); + } + } + else { + if (lastChar == '}') { + return jsonParser.parse(objectExpression); + } else { + escape = true; + objectExpression = slc(objectExpression, 1); + } + } + break; + case '[': + return jsonParser.parse(objectExpression); + case '.': + if (secondChar=='.') { + + String newExp = slc(objectExpression, 2); + return parent.doLookup(newExp, newExp, false); + } + } + + Object value; + lastChar = Str.idx(objectExpression, -1); + if (lastChar==')') { + value = handleFunction(objectExpression, searchChildren); + } else { + + + value = findProperty(objectExpression, searchChildren); + + value = value == null ? defaultValue : value; + + } + + if (!escape) { + return value; + } else { + return StandardFunctions.escapeXml(value); + } + + } + public Object lookupWithDefault(String objectExpression, Object defaultValue) { + return doLookup(objectExpression, defaultValue, true); + } + + private Object handleFunction(String functionCall, boolean searchChildren) { + + //"$fn:lower($fn:upper(session.request.name))" + + + + final String[] split = StringScanner.split(functionCall, '(', 1); + + + String methodName = split[0]; + String arguments = slc(split[1], 0, -1) ; + List args = getObjectFromArguments(arguments, searchChildren); + + MethodAccess method = this.staticMethodMap.get(methodName); + + if (method!=null) { + + return method.invokeDynamic(null, Arry.objectArray(args)); + } else { + return handleMethodCall(methodName, args); + } + + } + + private Object handleMethodCall(String objectPath, List args) { + + final int lastIndexOf = objectPath.lastIndexOf('.'); + + String beanPath = objectPath.substring(0, lastIndexOf); + String methodName = objectPath.substring(lastIndexOf+1, objectPath.length()); + + Object bean = lookup(beanPath); + + if (bean == null) { + return null; + } + + final Class cls = Boon.cls(bean); + + if (cls == null) { + return null; + } + + final ClassMeta classMeta = ClassMeta.classMeta(cls); + + final MethodAccess method = classMeta.method(methodName); + + if (method==null) { + return null; + } + + return method.invokeDynamic(bean, Arry.array(args)); + } + + protected List getObjectFromArguments(String arguments, boolean searchChildren) { + + final String[] strings = StringScanner.splitByChars(arguments, ','); + + List list = new ArrayList(); + + for (String string : strings) { + Object object = doLookup(string, string, searchChildren); + list.add(object); + } + + return list; + + + } + + + + public void pushContext(Object value) { + final BoonExpressionContext child = new BoonExpressionContext((Object) value); + child.parent = this; + this.context.add(0, child); + } + + + public void removeLastContext() { + this.context.remove(0); + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/expression/ExpressionContext.java b/datastructures-json-boon/src/main/java/org/boon/expression/ExpressionContext.java new file mode 100644 index 0000000..70f161d --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/expression/ExpressionContext.java @@ -0,0 +1,70 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.expression; + + + +public interface ExpressionContext { + + char idxChar(String property); + + byte idxByte(String property); + + short idxShort(String property); + + String idxString(String property); + + int idxInt(String property); + + float idxFloat(String property); + + double idxDouble(String property); + + long idxLong(String property); + + Object idx(String property); + + T idx(Class type, String property); + + void initContext(Object[] root); + + Object lookup(String path); + + Object lookupWithDefault(String s, Object defaultValue); + + void pushContext(Object values); + + void removeLastContext(); + + void put(String var, Object value); + + void addFunctions(Class functions); + + void addFunctions(String prefix, Class functions); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/expression/StandardFunctions.java b/datastructures-json-boon/src/main/java/org/boon/expression/StandardFunctions.java new file mode 100644 index 0000000..e16ef4e --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/expression/StandardFunctions.java @@ -0,0 +1,370 @@ +package org.boon.expression; + +import org.boon.Boon; +import org.boon.Str; +import org.boon.StringScanner; +import org.boon.core.Conversions; +import org.boon.sort.Sort; +import org.boon.sort.Sorting; + +import java.util.Collection; +import java.util.Collections; +import java.util.List; + +import static org.boon.Exceptions.die; + +/** + * Created by Richard on 9/17/14. + */ +public class StandardFunctions { + + public static boolean contains(Object string, Object searchString) { + + + if (string == null || searchString == null) { + return false; + } + + return string.toString().contains(searchString.toString()); + } + + public static boolean containsIgnoreCase(Object string, Object searchString) { + + if (string == null || searchString == null) { + return false; + } + + return string.toString().toUpperCase().contains(searchString.toString().toUpperCase()); + } + + + public static boolean endsWith(Object string, Object searchString) { + + + if (string == null || searchString == null) { + return false; + } + + return string.toString().endsWith(searchString.toString()); + } + + public static boolean startsWith(Object string, Object searchString) { + + + if (string == null || searchString == null) { + return false; + } + + return string.toString().startsWith(searchString.toString()); + } + + public static String escapeXml(Object string) { + + return string.toString().replace("<", "<"); + } + + + public static int indexOf(Object string, Object searchString) { + + + if (string == null || searchString == null) { + return -1; + } + return string.toString().indexOf(searchString.toString()); + } + + public static int length(Object item) { + + + if (item == null ) { + return 0; + } + return Conversions.len(item); + } + + + public static int len(Object item) { + + + if (item == null ) { + return 0; + } + return Conversions.len(item); + } + + + public static String replace(Object string, Object orgSubStr, Object newSubStr) { + + + if (string == null ) { + return ""; + } + + if (orgSubStr==null || newSubStr == null) { + return string.toString(); + } + + return string.toString().replace(orgSubStr.toString(), newSubStr.toString()); + } + + public static String[] split(Object string, Object split) { + + + if (string == null ) { + return new String[0]; + } + + if (Str.isEmpty(split)) { + return new String[]{string.toString()}; + } + + if (split.toString().length()==1) { + return StringScanner.split(string.toString(), split.toString().charAt(0)); + } else { + + return string.toString().split(split.toString()); + } + } + + public static String substring(Object string, int start, int stop) { + + + if (string == null ) { + return ""; + } + + + return Str.slc(string.toString(), start, stop); + } + + + public static String slc(Object string, int start, int stop) { + + + if (string == null ) { + return ""; + } + + + return Str.slc(string.toString(), start, stop); + } + + + public static String slc(Object string, int start) { + + + if (string == null ) { + return ""; + } + + + return Str.slc(string.toString(), start); + } + + + public static String slcEnd(Object string, int end) { + + + if (string == null ) { + return ""; + } + + + return Str.slcEnd(string.toString(), end); + } + + + + public static String substringAfter(Object string, Object after) { + + + if (string == null ) { + return ""; + } + + if (Str.isEmpty(after)) { + return string.toString(); + } + + return StringScanner.substringAfter(string.toString(), after.toString()); + } + + + public static String substringBefore(Object string, Object before) { + + + if (string == null ) { + return ""; + } + + if (Str.isEmpty(before)) { + return string.toString(); + } + + return StringScanner.substringBefore(string.toString(), before.toString()); + } + + + public static String toLowerCase(Object string) { + + + if (string == null ) { + return ""; + } + + + return Str.lower(string.toString()); + } + + + public static String lower(Object string) { + + + if (string == null ) { + return ""; + } + + + return Str.lower(string.toString()); + } + + public static String upper(Object string) { + + + if (string == null ) { + return ""; + } + + + return Str.upper(string.toString()); + } + + public static String trim(Object string) { + + + if (string == null ) { + return ""; + } + + + return string.toString().trim(); + } + + public static String join(Object objects, Object join) { + return Str.joinCollection(join.toString(), Conversions.toList(objects)); + } + + + public static Object sortBy (Object... args) { + Object collection = args[0]; + final List list = Conversions.toList(collection); + + + if (args.length == 2) { + String property = (String) args[1]; + Sort.sortBy(property).sort(list); + return list; + } else if (args.length > 2) { + + String property = (String) args[1]; + + boolean asc; + boolean split; + + if (property.endsWith("_asc")) { + asc = true; + split = true; + + } else if (property.endsWith("_desc" )) { + asc = false; + split = true; + } else { + split = false; + asc = true; + } + + if (split) { + property = StringScanner.split(property, '_')[0]; + } + + final Sort sort = asc ? Sort.sortBy(property) : Sort.sortByDesc(property); + for (int index=2; index< args.length; index++) { + property = args[index].toString(); + + if (property.endsWith("_asc")) { + asc = true; + split = true; + + } else if (property.endsWith("_desc" )) { + asc = false; + split = true; + } else { + split = false; + asc = true; + } + + if (split) { + property = StringScanner.split(property, '_')[0]; + } + if (asc) { + sort.thenAsc(property); + }else { + sort.thenDesc(property); + } + } + sort.sort(list); + return list; + } else { + die("Wrong number of arguments to sort", args); + return ""; + } + + + } + + + public static Object sort (Object collection) { + final List list = Conversions.toList(collection); + + Sorting.sort(list); + return list; + } + + public static Object sortByDesc (Object... args) { + Object collection = args[0]; + final List list = Conversions.toList(collection); + + + if (args.length == 2) { + String property = (String) args[1]; + Sort.sortBy(property).sort(list); + return list; + } else if (args.length > 2) { + + String property = (String) args[1]; + + final Sort sort = Sort.sortByDesc(property); + for (int index=2; index< args.length; index++) { + sort.sortByDesc(args[index].toString()); + } + sort.sort(list); + return list; + } else { + die("Wrong number of arguments to sort", args); + return ""; + } + + } + + + public static Object sortDesc (Object collection) { + final List list = Conversions.toList(collection); + + Sorting.sortDesc(list); + return list; + } + + + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/functions/PropertyNameUtils.java b/datastructures-json-boon/src/main/java/org/boon/functions/PropertyNameUtils.java new file mode 100644 index 0000000..3d6de22 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/functions/PropertyNameUtils.java @@ -0,0 +1,80 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.functions; + +import org.boon.Str; +import org.boon.core.Function; + +public class PropertyNameUtils { + + + public static Function underBarCase = new Function() { + @Override + public String apply( String in ) { + return Str.underBarCase( in ); + } + }; + public static Function camelCase = new Function() { + @Override + public String apply( String in ) { + return Str.camelCase( in ); + } + }; + + + public static Function camelCaseUpper = new Function() { + @Override + public String apply( String in ) { + return Str.camelCaseUpper( in ); + } + }; + + + public static Function camelCaseLower = new Function() { + @Override + public String apply( String in ) { + return Str.camelCaseLower( in ); + } + }; + + public static Function upperCase = new Function() { + @Override + public String apply( String in ) { + return in.toUpperCase(); + } + }; + + public static Function lowerCase = new Function() { + @Override + public String apply( String in ) { + return in.toLowerCase(); + } + }; + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/JsonCreator.java b/datastructures-json-boon/src/main/java/org/boon/json/JsonCreator.java new file mode 100644 index 0000000..14610ab --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/JsonCreator.java @@ -0,0 +1,75 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json; + +import org.boon.IO; +import org.boon.config.ContextConfig; +import org.boon.di.Creator; + +import java.util.LinkedHashMap; +import java.util.List; +import java.util.Map; + + +/** + * Created by Richard on 2/4/14. + */ +public class JsonCreator { + + public static T createFromJsonMap(Class type, String str) { + Map config = new JsonParserFactory().createLaxParser().parseMap( str ); + return Creator.create( type, config ); + } + + public static T createFromJsonMapResource(Class type, String resource) { + Map config = null; + JsonParserAndMapper laxParser = new JsonParserFactory().createLaxParser(); + + if (resource.endsWith( ".json" )) { + config = laxParser.parseMap( IO.read(resource) ); + } else if (resource.endsWith( "/" )) { + config = new LinkedHashMap<>( ); + handleDir( config, laxParser, resource ); + } + return Creator.create( type, config ); + } + + + private static void handleDir( Map config, JsonParserAndMapper laxParser, String resource ) { + Map fileConfig; + List jsonFiles = IO.listByExt( resource, ".json" ); + for ( String jsonFile : jsonFiles ) { + String contents = IO.read( jsonFile ); + fileConfig = laxParser.parseMap( contents ); + config.putAll( fileConfig ); + } + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/JsonException.java b/datastructures-json-boon/src/main/java/org/boon/json/JsonException.java new file mode 100644 index 0000000..81b31fe --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/JsonException.java @@ -0,0 +1,52 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json; + +import org.boon.Exceptions; + +public class JsonException extends RuntimeException { + + static void handleException( Exception ex ) { + throw new JsonException( ex ); + } + + + public JsonException( String message, Throwable cause ) { + super( message, cause ); + } + + public JsonException( String message ) { + super( message ); + } + + public JsonException( Throwable cause ) { + super( cause ); + } + +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/json/JsonFactory.java b/datastructures-json-boon/src/main/java/org/boon/json/JsonFactory.java new file mode 100644 index 0000000..3bb4c58 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/JsonFactory.java @@ -0,0 +1,116 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json; + +import org.boon.json.implementation.ObjectMapperImpl; + +import java.io.Reader; +import java.util.List; + +/** + * Created by rick on 1/4/14. + */ +public class JsonFactory { + + + private static ObjectMapper json = JsonFactory.create(); + + public static ObjectMapper create () { + JsonParserFactory jsonParserFactory = new JsonParserFactory(); + jsonParserFactory.lax(); + + return new ObjectMapperImpl(jsonParserFactory, new JsonSerializerFactory()); + } + + public static String toJson(Object value) { + return json.toJson( value ); + } + + public static void toJson(Object value, Appendable appendable) { + json.toJson( value, appendable ); + } + + public static T fromJson(String str, Class clazz) { + return json.fromJson(str, clazz); + } + + + public static List fromJsonArray(String str, Class clazz) { + return json.parser().parseList(clazz, str); + } + + public static Object fromJson(String str) { + return json.fromJson(str); + } + + public static Object fromJson(Reader reader) { + return json.fromJson(reader); + } + + public static ObjectMapper create (JsonParserFactory parserFactory, JsonSerializerFactory serializerFactory) { + return new ObjectMapperImpl(parserFactory, serializerFactory); + } + + public static ObjectMapper createUseProperties (boolean useJsonDates) { + JsonParserFactory jpf = new JsonParserFactory(); + jpf.usePropertiesFirst(); + JsonSerializerFactory jsf = new JsonSerializerFactory(); + + jsf.usePropertiesFirst(); + + if (useJsonDates) { + jsf.useJsonFormatForDates(); + } + return new ObjectMapperImpl(jpf, jsf); + } + + public static ObjectMapper createUseAnnotations (boolean useJsonDates) { + JsonParserFactory jpf = new JsonParserFactory(); + JsonSerializerFactory jsf = new JsonSerializerFactory(); + + jsf.useAnnotations(); + + if (useJsonDates) { + jsf.useJsonFormatForDates(); + } + return new ObjectMapperImpl(jpf, jsf); + } + + + public static ObjectMapper createUseJSONDates () { + JsonParserFactory jpf = new JsonParserFactory(); + JsonSerializerFactory jsf = new JsonSerializerFactory(); + jsf.useJsonFormatForDates(); + return new ObjectMapperImpl(jpf, jsf); + } + + public static String niceJson(String str) { + return str.replace('\'', '\"'); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/JsonMappingParser.java b/datastructures-json-boon/src/main/java/org/boon/json/JsonMappingParser.java new file mode 100644 index 0000000..fb6f0d6 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/JsonMappingParser.java @@ -0,0 +1,840 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json; + +import org.boon.Exceptions; +import org.boon.IO; +import org.boon.core.Typ; +import org.boon.core.Value; +import org.boon.core.reflection.MapObjectConversion; +import org.boon.core.reflection.Mapper; +import org.boon.core.reflection.fields.FieldsAccessor; +import org.boon.core.value.ValueContainer; +import org.boon.json.implementation.*; +import org.boon.primitive.CharBuf; +import org.boon.primitive.InMemoryInputStream; + + +import java.io.*; +import java.math.BigDecimal; +import java.math.BigInteger; +import java.nio.charset.Charset; +import java.nio.charset.StandardCharsets; +import java.nio.file.Files; +import java.nio.file.Path; +import java.util.Date; +import java.util.List; +import java.util.Map; + + +public class JsonMappingParser implements JsonParserAndMapper { + + + + private final JsonParserAndMapper objectParser; + private final JsonParserAndMapper basicParser; + + + private final JsonParserAndMapper largeFileParser; + private final Mapper mapper; + + private final Charset charset; + + private CharBuf charBuf; + + + private char[] copyBuf; + private int bufSize = 1024*4; + + + public JsonMappingParser( Mapper mapper, Charset charset, + boolean lax, + boolean chop, boolean lazyChop ) { + + + this.charset = charset; + this.mapper = mapper; + + if ( lax ) { + this.basicParser = new BaseJsonParserAndMapper( new JsonParserLax ( false, chop, lazyChop ), mapper); + this.objectParser = new BaseJsonParserAndMapper(new JsonParserLax ( true ), mapper); + } else { + this.basicParser = new BaseJsonParserAndMapper( new JsonFastParser ( false, chop, lazyChop ), mapper); + this.objectParser = new BaseJsonParserAndMapper(new JsonFastParser ( true ), mapper); + } + + ( (BaseJsonParserAndMapper ) basicParser).setCharset ( charset ); + ( (BaseJsonParserAndMapper ) objectParser).setCharset ( charset ); + + + largeFileParser = new JsonParserFactory().createCharacterSourceParser(); + + } + + + @Override + public Map parseMap( String value ) { + return basicParser.parseMap( value ); + } + + @Override + public Map parseMap( char[] value ) { + return basicParser.parseMap( value ); + } + + @Override + public Map parseMap( byte[] value ) { + return basicParser.parseMap( value ); + } + + @Override + public Map parseMap( byte[] value, Charset charset ) { + return basicParser.parseMap( value, charset ); + } + + @Override + public Map parseMap( InputStream value, Charset charset ) { + return basicParser.parseMap( value, charset ); + } + + @Override + public Map parseMap( CharSequence value ) { + return basicParser.parseMap( value ); + } + + @Override + public Map parseMap( InputStream value ) { + return basicParser.parseMap( value ); + } + + @Override + public Map parseMap( Reader value ) { + return basicParser.parseMap( value ); + } + + @Override + public Map parseMapFromFile( String file ) { + + return ( Map ) parseFile( file ); + } + + @Override + public List parseList( Class componentType, String jsonString ) { + return objectParser.parseList( componentType, jsonString); + } + + @Override + public List parseList( Class componentType, InputStream input ) { + return objectParser.parseList( componentType, input); + } + + @Override + public List parseList( Class componentType, Reader reader ) { + return objectParser.parseList( componentType, reader); + } + + @Override + public List parseList( Class componentType, InputStream input, Charset charset ) { + return objectParser.parseList( componentType, input, charset); + } + + @Override + public List parseList( Class componentType, byte[] jsonBytes ) { + return objectParser.parseList( componentType, jsonBytes); + } + + @Override + public List parseList( Class componentType, byte[] jsonBytes, Charset charset ) { + return objectParser.parseList( componentType, jsonBytes, charset); + } + + @Override + public List parseList( Class componentType, char[] chars ) { + return objectParser.parseList( componentType, chars); + } + + @Override + public List parseList( Class componentType, CharSequence jsonSeq ) { + return objectParser.parseList( componentType, jsonSeq); + } + + @Override + public List parseListFromFile( Class componentType, String fileName ) { + return objectParser.parseListFromFile( componentType, fileName); + } + + @Override + public final T parse( Class type, String value ) { + + if ( Typ.isBasicTypeOrCollection( type ) ){ + Object obj = basicParser.parse( type, value ); + return (T) obj; + } else { + Object object = objectParser.parse( Map.class, value ); + return finalExtract( type, object ); + } + } + + private T finalExtract( Class type, Object object ) { + + if (object instanceof Map ) { + Map objectMap = ( Map ) object; + return mapper.fromValueMap( objectMap, type ); + } + + if (object instanceof ValueContainer) { + object = ((ValueContainer) object).toValue(); + } + + if (object instanceof List ) { + List list = ( List ) object; + return MapObjectConversion.fromList ( list, type ); + } else { + return (T)object; + } + } + + + @Override + public final T parse( Class type, byte[] value ) { + + if ( type==Object.class || type == Map.class || type == List.class || Typ.isBasicType ( type ) ) { + if (value.length < 100_000) { + return this.basicParser.parse( type, value ); + } else { + return this.basicParser.parseAsStream ( type, value ); + } + } else { + Object object = objectParser.parse( Map.class, value ); + return finalExtract( type, object ); + } + } + + @Override + public final T parse( Class type, byte[] value, Charset charset ) { + + if ( type==Object.class || type == Map.class || type == List.class || Typ.isBasicType ( type ) ) { + return this.basicParser.parse( type, value, charset ); + } else { + Object object = objectParser.parse( Map.class, value ); + return finalExtract( type, object ); + } + } + + @Override + public final T parse( Class type, CharSequence value ) { + if ( type==Object.class || type == Map.class || type == List.class || Typ.isBasicType ( type ) ) { + return basicParser.parse( type, value ); + } else { + Object object = objectParser.parse( Map.class, value ); + return finalExtract( type, object ); + } + } + + @Override + public final T parse( Class type, char[] value ) { + if ( type==Object.class || type == Map.class || type == List.class || Typ.isBasicType ( type ) ) { + return basicParser.parse( type, value ); + } else { + Object object = objectParser.parse( Map.class, value ); + return finalExtract( type, object ); + } + + } + + + + @Override + public final T parse( Class type, Reader reader ) { + + if (copyBuf==null) { + copyBuf = new char[bufSize]; + } + + charBuf = IO.read( reader, charBuf, bufSize, copyBuf ); + return parse( type, charBuf.readForRecycle() ); + + } + + @Override + public T parseFile( Class type, String fileName ) { + int bufSize = this.bufSize; + try { + + + Path filePath = IO.path ( fileName ); + long size = Files.size ( filePath ); + + if (size > 10_000_000) { + return this.largeFileParser.parseFile( type, fileName ); + } else { + size = size > 2_000_000 ? bufSize : size; + this.bufSize = (int)size; + } + + if (size < 1_000_000) { + return parse ( type, Files.newInputStream ( filePath ), charset ); + } else { + return parse ( type, Files.newBufferedReader ( filePath, charset ) ); + } + } catch ( IOException ex ) { + return Exceptions.handle (type, fileName, ex); + } finally { + this.bufSize = bufSize; + } + } + + @Override + public int parseInt( String jsonString ) { + return basicParser.parseInt( jsonString ); + } + + @Override + public int parseInt( InputStream input ) { + return basicParser.parseInt( input ); + } + + @Override + public int parseInt( InputStream input, Charset charset ) { + return basicParser.parseInt( input, charset ); + } + + @Override + public int parseInt( byte[] jsonBytes ) { + return basicParser.parseInt( jsonBytes ); + } + + @Override + public int parseInt( byte[] jsonBytes, Charset charset ) { + return basicParser.parseInt( jsonBytes, charset ); + } + + @Override + public int parseInt( char[] chars ) { + return basicParser.parseInt( chars ); + } + + @Override + public int parseInt( CharSequence jsonSeq ) { + return basicParser.parseInt( jsonSeq ); + } + + @Override + public int parseIntFromFile( String fileName ) { + return basicParser.parseIntFromFile( fileName ); + } + + @Override + public long parseLong( String jsonString ) { + return basicParser.parseLong( jsonString ); + } + + @Override + public long parseLong( InputStream input ) { + return basicParser.parseLong( input ); + } + + @Override + public long parseLong( InputStream input, Charset charset ) { + return basicParser.parseLong( input, charset ); + } + + @Override + public long parseLong( byte[] jsonBytes ) { + return basicParser.parseLong( jsonBytes ); + } + + @Override + public long parseLong( byte[] jsonBytes, Charset charset ) { + return basicParser.parseLong( jsonBytes, charset ); + } + + @Override + public long parseLong( char[] chars ) { + return basicParser.parseLong( chars ); + } + + @Override + public long parseLong( CharSequence jsonSeq ) { + return basicParser.parseLong( jsonSeq ); + } + + @Override + public long parseLongFromFile( String fileName ) { + return basicParser.parseLongFromFile( fileName ); + } + + @Override + public String parseString( String value ) { + return basicParser.parseString( value ); + } + + @Override + public String parseString( InputStream value ) { + + return basicParser.parseString( value ); + } + + @Override + public String parseString( InputStream value, Charset charset ) { + + return basicParser.parseString( value, charset ); + } + + @Override + public String parseString( byte[] value ) { + + return basicParser.parseString( value ); + } + + @Override + public String parseString( byte[] value, Charset charset ) { + + return basicParser.parseString( value, charset ); + } + + @Override + public String parseString( char[] value ) { + + + return basicParser.parseString( value ); + } + + @Override + public String parseString( CharSequence value ) { + + + return basicParser.parseString( value ); + } + + @Override + public String parseStringFromFile( String value ) { + + return basicParser.parseStringFromFile( value ); + } + + @Override + public double parseDouble( String value ) { + return basicParser.parseDouble( value ); + } + + @Override + public double parseDouble( InputStream value ) { + return basicParser.parseDouble( value ); + } + + @Override + public double parseDouble( byte[] value ) { + return basicParser.parseDouble( value ); + } + + @Override + public double parseDouble( char[] value ) { + return basicParser.parseDouble( value ); + } + + @Override + public double parseDouble( CharSequence value ) { + return basicParser.parseDouble( value ); + } + + @Override + public double parseDouble( byte[] value, Charset charset ) { + return basicParser.parseDouble( value, charset ); + } + + @Override + public double parseDouble( InputStream value, Charset charset ) { + return basicParser.parseDouble( value, charset ); + } + + @Override + public double parseDoubleFromFile( String fileName ) { + return basicParser.parseDoubleFromFile( fileName ); + } + + @Override + public float parseFloat( String value ) { + return basicParser.parseFloat( value ); + } + + @Override + public float parseFloat( InputStream value ) { + return basicParser.parseFloat( value ); + } + + @Override + public float parseFloat( byte[] value ) { + return basicParser.parseFloat( value ); + } + + @Override + public float parseFloat( char[] value ) { + return basicParser.parseFloat( value ); + } + + @Override + public float parseFloat( CharSequence value ) { + return basicParser.parseFloat( value ); + } + + @Override + public float parseFloat( byte[] value, Charset charset ) { + return basicParser.parseFloat( value, charset ); + } + + @Override + public float parseFloat( InputStream value, Charset charset ) { + return basicParser.parseFloat( value, charset ); + } + + @Override + public float parseFloatFromFile( String fileName ) { + return basicParser.parseFloatFromFile( fileName ); + } + + @Override + public BigDecimal parseBigDecimal( String value ) { + return basicParser.parseBigDecimal( value ); + } + + @Override + public BigDecimal parseBigDecimal( InputStream value ) { + return basicParser.parseBigDecimal( value ); + } + + @Override + public BigDecimal parseBigDecimal( byte[] value ) { + return basicParser.parseBigDecimal( value ); + } + + @Override + public BigDecimal parseBigDecimal( char[] value ) { + return basicParser.parseBigDecimal( value ); + } + + @Override + public BigDecimal parseBigDecimal( CharSequence value ) { + return basicParser.parseBigDecimal( value ); + } + + @Override + public BigDecimal parseBigDecimal( byte[] value, Charset charset ) { + return basicParser.parseBigDecimal( value, charset ); + } + + @Override + public BigDecimal parseBigDecimal( InputStream value, Charset charset ) { + return basicParser.parseBigDecimal( value, charset ); + } + + @Override + public BigDecimal parseBigDecimalFromFile( String fileName ) { + return basicParser.parseBigDecimalFromFile( fileName ); + } + + @Override + public BigInteger parseBigInteger( String value ) { + return basicParser.parseBigInteger( value ); + } + + @Override + public BigInteger parseBigInteger( InputStream value ) { + return basicParser.parseBigInteger( value ); + } + + @Override + public BigInteger parseBigInteger( byte[] value ) { + return basicParser.parseBigInteger( value ); + } + + @Override + public BigInteger parseBigInteger( char[] value ) { + return basicParser.parseBigInteger( value ); + } + + @Override + public BigInteger parseBigInteger( CharSequence value ) { + return basicParser.parseBigInteger( value ); + } + + @Override + public BigInteger parseBigInteger( byte[] value, Charset charset ) { + return basicParser.parseBigInteger( value, charset ); + } + + @Override + public BigInteger parseBigInteger( InputStream value, Charset charset ) { + return basicParser.parseBigInteger( value, charset ); + } + + @Override + public BigInteger parseBigIntegerFile( String fileName ) { + return basicParser.parseBigIntegerFile( fileName ); + } + + @Override + public Date parseDate( String jsonString ) { + return basicParser.parseDate( jsonString ); + } + + @Override + public Date parseDate( InputStream input ) { + return basicParser.parseDate( input ); + } + + @Override + public Date parseDate( InputStream input, Charset charset ) { + return basicParser.parseDate( input, charset ); + } + + @Override + public Date parseDate( byte[] jsonBytes ) { + return basicParser.parseDate( jsonBytes ); + } + + @Override + public Date parseDate( byte[] jsonBytes, Charset charset ) { + return basicParser.parseDate( jsonBytes, charset ); + } + + @Override + public Date parseDate( char[] chars ) { + return basicParser.parseDate( chars ); + } + + @Override + public Date parseDate( CharSequence jsonSeq ) { + return basicParser.parseDate( jsonSeq ); + } + + @Override + public Date parseDateFromFile( String fileName ) { + return basicParser.parseDateFromFile( fileName ); + } + + @Override + public short parseShort( String jsonString ) { + return basicParser.parseShort( jsonString ); + } + + @Override + public byte parseByte( String jsonString ) { + return basicParser.parseByte( jsonString ); + } + + @Override + public char parseChar( String jsonString ) { + return basicParser.parseChar( jsonString ); + } + + @Override + public T parseEnum( Class type, String jsonString ) { + return basicParser.parseEnum( type, jsonString ); + } + + @Override + public char[] parseCharArray( String jsonString ) { + return basicParser.parseCharArray( jsonString ); + } + + @Override + public byte[] parseByteArray( String jsonString ) { + return basicParser.parseByteArray( jsonString ); + } + + @Override + public short[] parseShortArray( String jsonString ) { + return basicParser.parseShortArray( jsonString ); + } + + @Override + public int[] parseIntArray( String jsonString ) { + return basicParser.parseIntArray( jsonString ); + } + + @Override + public float[] parseFloatArray( String jsonString ) { + return basicParser.parseFloatArray( jsonString ); + } + + @Override + public double[] parseDoubleArray( String jsonString ) { + return basicParser.parseDoubleArray( jsonString ); + } + + @Override + public long[] parseLongArray( String jsonString ) { + return basicParser.parseLongArray( jsonString ); + } + + @Override + public Object parse( String jsonString ) { + return basicParser.parse( jsonString ); + } + + + @Override + public Object parse( CharSequence charSequence ) { + return basicParser.parse( charSequence ); + } + + + @Override + public Object parse ( char[] chars ) { + return basicParser.parse ( chars ); + } + + @Override + public Object parse( Reader reader ) { + return basicParser.parse ( reader ); + } + + @Override + public Object parse( InputStream input ) { + return basicParser.parse ( input ); + } + + @Override + public Object parse( InputStream input, Charset charset ) { + return basicParser.parse ( input, charset ); + } + + + + @Override + public Object parse( byte[] bytes ) { + return parse(bytes, charset); + } + + @Override + public Object parse ( byte[] bytes, Charset charset ) { + + if (bytes.length > 100_000) { + return parse(new InMemoryInputStream(bytes), charset); + } else { + return basicParser.parse(bytes, charset); + } + } + + @Override + public Object parseDirect( byte[] value ) { + if ( value.length < 20_000 && charset == StandardCharsets.UTF_8 ) { + CharBuf builder = CharBuf.createFromUTF8Bytes( value ); + return parse( builder.toCharArray() ); + } else { + return this.parse( new InMemoryInputStream( value ) ); + } + } + + @Override + public Object parseAsStream( byte[] value ) { + return basicParser.parseAsStream ( value ); + } + + @Override + public Object parseFile( String fileName ) { + + int bufSize = this.bufSize; + try { + + + Path filePath = IO.path ( fileName ); + long size = Files.size ( filePath ); + + if (size > 10_000_000) { + return this.largeFileParser.parseFile( fileName ); + } else { + size = size > 2_000_000 ? bufSize : size; + this.bufSize = (int)size; + } + + if (size < 1_000_000) { + return parse ( Files.newInputStream ( filePath ), charset ); + } else { + return parse ( Files.newBufferedReader ( filePath, charset ) ); + } + } catch ( IOException ex ) { + return Exceptions.handle (Typ.object, fileName, ex); + } finally { + this.bufSize = bufSize; + } + + } + + @Override + public void close() { + + } + + + @Override + public final T parse( Class type, InputStream input ) { + if (copyBuf==null) { + copyBuf = new char[bufSize]; + } + + charBuf = IO.read( input, charBuf, this.charset, bufSize, copyBuf ); + return parse( type, charBuf.readForRecycle() ); + } + + @Override + public final T parse( Class type, InputStream input, Charset charset ) { + if (copyBuf==null) { + copyBuf = new char[bufSize]; + } + + charBuf = IO.read( input, charBuf, charset, bufSize, copyBuf ); + return parse( type, charBuf.readForRecycle() ); + } + + + @Override + public final T parseDirect( Class type, byte[] value ) { + if ( value.length < 20_000 && charset == StandardCharsets.UTF_8 ) { + CharBuf builder = CharBuf.createFromUTF8Bytes( value ); + return parse( type, builder.toCharArray() ); + } else { + return this.parse( type, new InMemoryInputStream( value ) ); + } + } + + @Override + public final T parseAsStream( Class type, byte[] value ) { + if (copyBuf==null) { + copyBuf = new char[bufSize]; + } + + charBuf = IO.read( new InputStreamReader ( new InMemoryInputStream(value), charset ), charBuf, value.length, copyBuf ); + return this.basicParser.parse ( type, charBuf.readForRecycle () ); + } + + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/JsonParser.java b/datastructures-json-boon/src/main/java/org/boon/json/JsonParser.java new file mode 100644 index 0000000..4e4bbb1 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/JsonParser.java @@ -0,0 +1,44 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json; + +import java.io.InputStream; +import java.io.Reader; +import java.nio.charset.Charset; + +public interface JsonParser { + Object parse( String jsonString ); + Object parse( byte[] bytes ); + Object parse( byte[] bytes, Charset charset ); + Object parse( CharSequence charSequence ); + Object parse( char[] chars ); + Object parse( Reader reader ); + Object parse( InputStream input ); + Object parse( InputStream input, Charset charset ); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/JsonParserAndMapper.java b/datastructures-json-boon/src/main/java/org/boon/json/JsonParserAndMapper.java new file mode 100644 index 0000000..528412c --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/JsonParserAndMapper.java @@ -0,0 +1,184 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json; + +import java.io.InputStream; +import java.io.Reader; +import java.math.BigDecimal; +import java.math.BigInteger; +import java.nio.charset.Charset; +import java.util.Date; +import java.util.List; +import java.util.Map; + +public interface JsonParserAndMapper extends JsonParser { + + + Map parseMap( String value ); + Map parseMap( char [] value ); + Map parseMap( byte[] value ); + Map parseMap( byte[] value, Charset charset ); + Map parseMap( InputStream value, Charset charset ); + Map parseMap( CharSequence value ); + Map parseMap( InputStream value ); + Map parseMap( Reader value ); + Map parseMapFromFile( String file ); + + List parseList( Class componentType, String jsonString ); + List parseList( Class componentType, InputStream input ); + List parseList( Class componentType, Reader reader ); + List parseList( Class componentType, InputStream input, Charset charset ); + List parseList( Class componentType, byte[] jsonBytes ); + List parseList( Class componentType, byte[] jsonBytes, Charset charset ); + List parseList( Class componentType, char[] chars ); + List parseList( Class componentType, CharSequence jsonSeq ); + List parseListFromFile( Class componentType, String fileName ); + + T parse( Class type, String jsonString ); + T parse( Class type, byte[] bytes ); + T parse( Class type, byte[] bytes, Charset charset ); + T parse( Class type, CharSequence charSequence ); + T parse( Class type, char[] chars ); + T parse( Class type, Reader reader ); + T parse( Class type, InputStream input ); + T parse( Class type, InputStream input, Charset charset ); + T parseDirect( Class type, byte[] value ); + T parseAsStream( Class type, byte[] value ); + T parseFile( Class type, String fileName); + + + + int parseInt( String jsonString ); + int parseInt( InputStream input ); + int parseInt( InputStream input, Charset charset ); + int parseInt( byte[] jsonBytes ); + int parseInt( byte[] jsonBytes, Charset charset ); + int parseInt( char[] chars ); + int parseInt( CharSequence jsonSeq ); + int parseIntFromFile( String fileName ); + + long parseLong( String jsonString ); + long parseLong( InputStream input ); + long parseLong( InputStream input, Charset charset ); + long parseLong( byte[] jsonBytes ); + long parseLong( byte[] jsonBytes, Charset charset ); + long parseLong( char[] chars ); + long parseLong( CharSequence jsonSeq ); + long parseLongFromFile( String fileName ); + + + + String parseString( String value ); + String parseString( InputStream value ); + String parseString( InputStream value, Charset charset ); + String parseString( byte[] value ); + String parseString( byte[] value, Charset charset ); + String parseString( char[] value ); + String parseString( CharSequence value ); + String parseStringFromFile( String value ); + + double parseDouble( String value ); + double parseDouble( InputStream value ); + double parseDouble( byte[] value ); + double parseDouble( char[] value ); + double parseDouble( CharSequence value ); + double parseDouble( byte[] value, Charset charset ); + double parseDouble( InputStream value, Charset charset ); + double parseDoubleFromFile( String fileName ); + + float parseFloat( String value ); + float parseFloat( InputStream value ); + float parseFloat( byte[] value ); + float parseFloat( char[] value ); + float parseFloat( CharSequence value ); + float parseFloat( byte[] value, Charset charset ); + float parseFloat( InputStream value, Charset charset ); + float parseFloatFromFile( String fileName ); + + + BigDecimal parseBigDecimal( String value ); + BigDecimal parseBigDecimal( InputStream value ); + BigDecimal parseBigDecimal( byte[] value ); + BigDecimal parseBigDecimal( char[] value ); + BigDecimal parseBigDecimal( CharSequence value ); + BigDecimal parseBigDecimal( byte[] value, Charset charset ); + BigDecimal parseBigDecimal( InputStream value, Charset charset ); + BigDecimal parseBigDecimalFromFile( String fileName ); + + + BigInteger parseBigInteger( String value ); + BigInteger parseBigInteger( InputStream value ); + BigInteger parseBigInteger( byte[] value ); + BigInteger parseBigInteger( char[] value ); + BigInteger parseBigInteger( CharSequence value ); + BigInteger parseBigInteger( byte[] value, Charset charset ); + BigInteger parseBigInteger( InputStream value, Charset charset ); + BigInteger parseBigIntegerFile( String fileName ); + + Date parseDate( String jsonString ); + Date parseDate( InputStream input ); + Date parseDate( InputStream input, Charset charset ); + Date parseDate( byte[] jsonBytes ); + Date parseDate( byte[] jsonBytes, Charset charset ); + Date parseDate( char[] chars ); + Date parseDate( CharSequence jsonSeq ); + Date parseDateFromFile( String fileName ); + + + + short parseShort ( String jsonString ); + byte parseByte ( String jsonString ); + char parseChar ( String jsonString ); + T parseEnum ( Class type, String jsonString ); + + public char [] parseCharArray ( String jsonString ); + public byte [] parseByteArray ( String jsonString ); + public short [] parseShortArray ( String jsonString ); + public int [] parseIntArray ( String jsonString ); + public float [] parseFloatArray ( String jsonString ); + public double [] parseDoubleArray ( String jsonString ); + public long [] parseLongArray ( String jsonString ); + + + Object parse( String jsonString ); + Object parse( byte[] bytes ); + Object parse( byte[] bytes, Charset charset ); + Object parse( CharSequence charSequence ); + Object parse( char[] chars ); + Object parse( Reader reader ); + Object parse( InputStream input ); + Object parse( InputStream input, Charset charset ); + Object parseDirect( byte[] value ); + Object parseAsStream( byte[] value ); + Object parseFile( String fileName); + + + void close(); + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/JsonParserEvents.java b/datastructures-json-boon/src/main/java/org/boon/json/JsonParserEvents.java new file mode 100644 index 0000000..7961bd0 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/JsonParserEvents.java @@ -0,0 +1,56 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json; + +import java.util.List; +import java.util.Map; + +/** + * Created by Richard on 2/5/14. + */ +public interface JsonParserEvents { + + boolean objectStart(int index); + boolean objectEnd(int index, Map object); + + boolean objectFieldName(int index, Map map, CharSequence name); + boolean objectField(int index, Map map, CharSequence name, Object field); + + boolean arrayStart(int index); + boolean arrayEnd(int index, List list); + boolean arrayItem(int index, List list, Object item); + + + boolean number(int startIndex, int endIndex, Number number); + boolean string(int startIndex, int endIndex, CharSequence string); + + boolean bool( int endIndex, boolean value); + boolean nullValue( int endIndex); + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/JsonParserFactory.java b/datastructures-json-boon/src/main/java/org/boon/json/JsonParserFactory.java new file mode 100644 index 0000000..e854c65 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/JsonParserFactory.java @@ -0,0 +1,355 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json; + +import org.boon.Str; +import org.boon.core.reflection.Mapper; +import org.boon.core.reflection.MapperComplex; +import org.boon.core.reflection.MapperSimple; +import org.boon.core.reflection.fields.*; +import org.boon.json.implementation.*; + +import java.nio.charset.Charset; +import java.nio.charset.StandardCharsets; +import java.util.Set; + +public class JsonParserFactory { + + + private Charset charset = StandardCharsets.UTF_8; + private boolean lax; + private boolean chop = false; + private boolean lazyChop = true; + private FieldAccessMode fieldAccessType = FieldAccessMode.FIELD; + private boolean useAnnotations=true; + private boolean caseInsensitiveFields; + + private Set ignoreSet; + private String view; + private boolean respectIgnore=true; + private boolean acceptSingleValueAsArray; + + private boolean checkDates=true; + + + public FieldAccessMode getFieldAccessType() { + return fieldAccessType; + } + + + public boolean isChop() { + return chop; + } + + public JsonParserFactory setChop( boolean chop ) { + this.chop = chop; + return this; + } + + public boolean isLazyChop() { + return lazyChop; + } + + public JsonParserFactory setLazyChop( boolean lazyChop ) { + this.lazyChop = lazyChop; + return this; + } + + public JsonParserFactory lax() { + lax = true; + return this; + } + + public JsonParserFactory strict() { + lax = false; + return this; + } + + + public JsonParserFactory setCharset( Charset charset ) { + this.charset = charset; + return this; + } + + + + + + + + public JsonParserAndMapper createFastParser() { + BaseJsonParserAndMapper jsonParser = new BaseJsonParserAndMapper( + new JsonFastParser ( false, chop, lazyChop, checkDates ), + createMapper()); + jsonParser.setCharset ( charset ); + return jsonParser; + } + + private Mapper createMapper() { + if (useAnnotations && !caseInsensitiveFields && + !acceptSingleValueAsArray && ignoreSet == null + && Str.isEmpty(view) && respectIgnore) { + return new MapperSimple(fieldAccessType.create(true)); + } + return new MapperComplex(fieldAccessType, useAnnotations, + caseInsensitiveFields, ignoreSet, view, + respectIgnore, acceptSingleValueAsArray); + } + + + public JsonParserAndMapper createFastObjectMapperParser() { + BaseJsonParserAndMapper jsonParser = new BaseJsonParserAndMapper( + new JsonFastParser ( true ), + createMapper()); + jsonParser.setCharset ( charset ); + return jsonParser; + } + + + + + public JsonParserAndMapper createUTF8DirectByteParser() { + BaseJsonParserAndMapper jsonParser = new BaseJsonParserAndMapper( + new JsonUTF8Parser ( ), + createMapper() + ); + + jsonParser.setCharset ( StandardCharsets.UTF_8 ); + return jsonParser; + + } + + public JsonParserAndMapper createASCIIParser() { + BaseJsonParserAndMapper jsonParser = new BaseJsonParserAndMapper( + new JsonAsciiParser ( ), + createMapper() + ); + + jsonParser.setCharset ( StandardCharsets.US_ASCII ); + return jsonParser; + + } + + + public JsonParserAndMapper createLaxParser() { + BaseJsonParserAndMapper jsonParser = new BaseJsonParserAndMapper( + new JsonParserLax ( false, chop, lazyChop, checkDates ), + createMapper()); + + jsonParser.setCharset ( charset ); + return jsonParser; + } + + + + public JsonParserAndMapper createParserWithEvents(JsonParserEvents events) { + BaseJsonParserAndMapper jsonParser = new BaseJsonParserAndMapper( + new JsonParserLax ( false, chop, lazyChop, false, events ), + createMapper() + ); + + jsonParser.setCharset ( charset ); + return jsonParser; + } + + + public JsonParserAndMapper createCharacterSourceParser() { + BaseJsonParserAndMapper jsonParser = new BaseJsonParserAndMapper( new JsonParserUsingCharacterSource ( ), + createMapper()); + + jsonParser.setCharset ( charset ); + return jsonParser; + } + + public JsonParserAndMapper createJsonCharArrayParser() { + BaseJsonParserAndMapper jsonParser = new BaseJsonParserAndMapper( new JsonParserCharArray( ), + createMapper()); + + jsonParser.setCharset ( charset ); + return jsonParser; + } + + public JsonParserAndMapper createPlistParser() { + + if (charset==null) { + charset= StandardCharsets.US_ASCII; + } + BaseJsonParserAndMapper jsonParser = new BaseJsonParserAndMapper( new PlistParser ( false, chop, lazyChop ), + + createMapper() + ); + + jsonParser.setCharset ( charset ); + return jsonParser; + } + + public JsonParserAndMapper createLazyFinalParser() { + return createFastParser(); + } + + public JsonParserAndMapper createJsonParserForJsonPath() { + return createFastParser(); + } + + public JsonParserAndMapper create() { + + + + if ( charset == null ) { + charset = StandardCharsets.UTF_8; + } + + return new JsonMappingParser ( + createMapper(), charset, + lax, chop, lazyChop ); + } + + + public boolean isUsePropertiesFirst () { + return fieldAccessType == FieldAccessMode.PROPERTY_THEN_FIELD; + } + + + public JsonParserFactory usePropertiesFirst () { + fieldAccessType = FieldAccessMode.PROPERTY_THEN_FIELD; + return this; + } + + public boolean isUseFieldsFirst () { + return this.fieldAccessType == FieldAccessMode.FIELD_THEN_PROPERTY; + + } + + + public JsonParserFactory useFieldsFirst () { + this.fieldAccessType = FieldAccessMode.FIELD_THEN_PROPERTY; + return this; + } + + + public JsonParserFactory useFieldsOnly () { + this.fieldAccessType = FieldAccessMode.FIELD; + return this; + } + + + + public JsonParserFactory usePropertyOnly () { + this.fieldAccessType = FieldAccessMode.PROPERTY; + return this; + } + + + + public JsonParserFactory useAnnotations () { + this.useAnnotations = true; + return this; + } + + public boolean isUseAnnotations() { + return useAnnotations; + } + + public JsonParserFactory setUseAnnotations( boolean useAnnotations ) { + this.useAnnotations = useAnnotations; + return this; + + } + + + public JsonParserFactory caseInsensitiveFields () { + this.caseInsensitiveFields = true; + return this; + } + + public boolean isCaseInsensitiveFields() { + return caseInsensitiveFields; + } + + public JsonParserFactory setCaseInsensitiveFields( boolean caseInsensitiveFields ) { + this.caseInsensitiveFields = caseInsensitiveFields; + return this; + + } + + + + + public Set getIgnoreSet() { + return ignoreSet; + } + + public JsonParserFactory setIgnoreSet(Set ignoreSet) { + this.ignoreSet = ignoreSet; + return this; + } + + public String getView() { + return view; + } + + public JsonParserFactory setView(String view) { + this.view = view; + return this; + } + + public boolean isRespectIgnore() { + return respectIgnore; + } + + public JsonParserFactory setRespectIgnore(boolean respectIgnore) { + this.respectIgnore = respectIgnore; + return this; + } + + public JsonParserFactory acceptSingleValueAsArray () { + this.acceptSingleValueAsArray = true; + return this; + } + + public boolean isAcceptSingleValueAsArray() { + return acceptSingleValueAsArray; + } + + public JsonParserFactory setAcceptSingleValueAsArray( boolean acceptSingleValueAsArray ) { + this.acceptSingleValueAsArray = acceptSingleValueAsArray; + return this; + + } + + + public JsonParserFactory setCheckDates(boolean flag) { + this.checkDates = flag; + return this; + } + + public boolean isCheckDatesSet() { + return checkDates; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/JsonSerializer.java b/datastructures-json-boon/src/main/java/org/boon/json/JsonSerializer.java new file mode 100644 index 0000000..e20a143 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/JsonSerializer.java @@ -0,0 +1,43 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json; + +import org.boon.primitive.CharBuf; + + +/** + * Created by rick on 12/26/13. + */ +public interface JsonSerializer { + + CharBuf serialize( Object obj ); + + + void serialize(CharBuf charBuf, Object obj ); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/JsonSerializerFactory.java b/datastructures-json-boon/src/main/java/org/boon/json/JsonSerializerFactory.java new file mode 100644 index 0000000..146b558 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/JsonSerializerFactory.java @@ -0,0 +1,416 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json; + +import org.boon.core.reflection.fields.*; +import org.boon.json.serializers.*; +import org.boon.json.serializers.impl.*; + +import java.util.*; +import java.util.concurrent.ConcurrentHashMap; +import java.util.concurrent.CopyOnWriteArrayList; + +/** + * Created by rick on 12/26/13. + */ +public class JsonSerializerFactory { + + private boolean outputType = false; + + private FieldAccessMode fieldAccessType = FieldAccessMode.FIELD; + private boolean includeNulls = false; + private boolean useAnnotations = false; + private boolean includeEmpty = false; + private boolean jsonFormatForDates = false; + private boolean handleSimpleBackReference = true; + private boolean handleComplexBackReference = false; + private boolean includeDefault = false; + private boolean cacheInstances = true; + private boolean encodeStrings = true; + private boolean serializeAsSupport = true; + private boolean asciiOnly = true; + private String view; + + private List filterProperties = null; + private List customFieldSerializers = null; + private Map customObjectSerializers = null; + private boolean serializeMapKeys; + + + public JsonSerializer create() { + + if ( !outputType && !includeEmpty && !includeNulls && !useAnnotations && !serializeMapKeys && + !jsonFormatForDates && handleSimpleBackReference && + !handleComplexBackReference && !includeDefault && filterProperties == null + && customFieldSerializers == null && customObjectSerializers == null && + fieldAccessType == FieldAccessMode.FIELD) { + return getJsonSimpleSerializer(); + } else { + + InstanceSerializer instanceSerializer; + CollectionSerializer collectionSerializer; + ArraySerializer arraySerializer; + UnknownSerializer unknownSerializer; + DateSerializer dateSerializer; + FieldsAccessor fieldsAccessor; + + ObjectSerializer objectSerializer; + MapSerializer mapSerializer; + FieldSerializer fieldSerializer; + + + instanceSerializer = new InstanceSerializerImpl(); + + if (customObjectSerializers != null ) { + + objectSerializer = new CustomObjectSerializerImpl(outputType, customObjectSerializers, includeNulls); + } else { + objectSerializer = new BasicObjectSerializerImpl(includeNulls, outputType); + } + + + StringSerializer stringSerializer = getStringSerializer(); + + if (!serializeMapKeys) { + mapSerializer = new MapSerializerImpl(includeNulls); + } else { + mapSerializer = new MapSerializerThatEncodesKeys(includeNulls); + } + + if ( useAnnotations || includeNulls || includeEmpty || handleComplexBackReference + || !includeDefault || view!=null) { + fieldSerializer = new FieldSerializerUseAnnotationsImpl( + includeNulls, + includeDefault, useAnnotations, + includeEmpty, handleSimpleBackReference, + handleComplexBackReference, + customObjectSerializers, + filterProperties, + null, + customFieldSerializers, + view); + } else { + fieldSerializer = new FieldSerializerImpl(); + } + collectionSerializer = new CollectionSerializerImpl(); + arraySerializer = ( ArraySerializer ) collectionSerializer; + unknownSerializer = new UnknownSerializerImpl (); + + if (jsonFormatForDates) { + dateSerializer = new JsonDateSerializer(); + } else { + dateSerializer = new DateSerializerImpl(); + } + + + + switch ( fieldAccessType ) { + case FIELD: + fieldsAccessor = new FieldFieldsAccessor( useAnnotations ); + break; + case PROPERTY: + fieldsAccessor = new PropertyFieldAccessor( useAnnotations ); + break; + case FIELD_THEN_PROPERTY: + fieldsAccessor = new FieldsAccessorFieldThenProp( useAnnotations ); + break; + case PROPERTY_THEN_FIELD: + fieldsAccessor = new FieldsAccessorsPropertyThenField( useAnnotations ); + break; + default: + fieldsAccessor = new FieldFieldsAccessor( useAnnotations ); + + } + + return new JsonSerializerImpl ( + objectSerializer, + stringSerializer, + mapSerializer, + fieldSerializer, + instanceSerializer, + collectionSerializer, + arraySerializer, + unknownSerializer, + dateSerializer, + fieldsAccessor, + asciiOnly + ); + } + + } + + protected JsonSerializer getJsonSimpleSerializer() { + return new JsonSimpleSerializerImpl(view, encodeStrings, serializeAsSupport, asciiOnly); + } + + protected StringSerializer getStringSerializer() { + return new StringSerializerImpl(encodeStrings, asciiOnly, includeEmpty); + } + + + public JsonSerializerFactory addFilter ( FieldFilter filter ) { + if ( filterProperties == null ) { + filterProperties = new CopyOnWriteArrayList<> (); + } + filterProperties.add ( filter ); + return this; + } + + public JsonSerializerFactory addPropertySerializer ( CustomFieldSerializer serializer ) { + if ( customFieldSerializers == null ) { + customFieldSerializers = new CopyOnWriteArrayList<> (); + } + customFieldSerializers.add ( serializer ); + return this; + } + + public JsonSerializerFactory addTypeSerializer ( Class type, CustomObjectSerializer serializer ) { + + if ( customObjectSerializers == null ) { + customObjectSerializers = new ConcurrentHashMap<> (); + } + customObjectSerializers.put(type, serializer); + return this; + } + + public boolean isOutputType () { + return outputType; + } + + public JsonSerializerFactory setOutputType ( boolean outputType ) { + this.outputType = outputType; + return this; + } + + + + public JsonSerializerFactory outputType ( ) { + this.outputType = true; + return this; + } + + public boolean isUsePropertiesFirst () { + return fieldAccessType == FieldAccessMode.PROPERTY_THEN_FIELD; + } + + + public JsonSerializerFactory usePropertiesFirst () { + fieldAccessType = FieldAccessMode.PROPERTY_THEN_FIELD; + return this; + } + + public boolean isUseFieldsFirst () { + return this.fieldAccessType == FieldAccessMode.FIELD_THEN_PROPERTY; + + } + + + public JsonSerializerFactory useFieldsFirst () { + this.fieldAccessType = FieldAccessMode.FIELD_THEN_PROPERTY; + return this; + } + + + public JsonSerializerFactory useFieldsOnly () { + this.fieldAccessType = FieldAccessMode.FIELD; + return this; + } + + + + public JsonSerializerFactory usePropertyOnly () { + this.fieldAccessType = FieldAccessMode.PROPERTY; + return this; + } + + public boolean isIncludeNulls () { + return includeNulls; + } + + public JsonSerializerFactory setIncludeNulls ( boolean includeNulls ) { + this.includeNulls = includeNulls; + return this; + } + + + public boolean isAsciiOnly () { + return asciiOnly; + } + + + public JsonSerializerFactory setAsciiOnly ( boolean asciiOnly ) { + this.asciiOnly = asciiOnly; + return this; + } + + public JsonSerializerFactory asciiOnly ( ) { + this.asciiOnly = true; + return this; + } + + public JsonSerializerFactory includeNulls () { + this.includeNulls = true; + return this; + } + + public boolean isUseAnnotations () { + return useAnnotations; + } + + public JsonSerializerFactory setUseAnnotations ( boolean useAnnotations ) { + this.useAnnotations = useAnnotations; + return this; + } + + + public JsonSerializerFactory useAnnotations () { + this.useAnnotations = true; + return this; + } + + + public boolean isIncludeEmpty () { + return includeEmpty; + } + + public JsonSerializerFactory setIncludeEmpty ( boolean includeEmpty ) { + this.includeEmpty = includeEmpty; + return this; + } + + + public JsonSerializerFactory includeEmpty () { + this.includeEmpty = true; + return this; + } + + public boolean isHandleSimpleBackReference () { + return handleSimpleBackReference; + } + + public JsonSerializerFactory setHandleSimpleBackReference ( boolean handleSimpleBackReference ) { + this.handleSimpleBackReference = handleSimpleBackReference; + return this; + } + + public boolean isHandleComplexBackReference () { + return handleComplexBackReference; + } + + public JsonSerializerFactory setHandleComplexBackReference ( boolean handleComplexBackReference ) { + this.handleComplexBackReference = handleComplexBackReference; + return this; + } + + + public JsonSerializerFactory handleComplexBackReference () { + this.handleComplexBackReference = true; + return this; + } + + + public boolean isJsonFormatForDates () { + return jsonFormatForDates; + } + + public JsonSerializerFactory setJsonFormatForDates ( boolean jsonFormatForDates ) { + this.jsonFormatForDates = jsonFormatForDates; + return this; + } + + + public JsonSerializerFactory useJsonFormatForDates () { + this.jsonFormatForDates = true; + return this; + } + + + public boolean isIncludeDefault () { + return includeDefault; + } + + public JsonSerializerFactory setIncludeDefault ( boolean includeDefault ) { + this.includeDefault = includeDefault; + return this; + } + + + public JsonSerializerFactory includeDefaultValues () { + this.includeDefault = true; + return this; + } + + + public boolean isCacheInstances () { + return cacheInstances; + } + + public JsonSerializerFactory setCacheInstances ( boolean cacheInstances ) { + this.cacheInstances = cacheInstances; + return this; + } + + + public JsonSerializerFactory usedCacheInstances () { + this.cacheInstances = true; + return this; + } + + public String getView() { + return view; + } + + public JsonSerializerFactory setView( String view ) { + this.view = view; + return this; + } + + public boolean isEncodeStrings() { + return encodeStrings; + } + + public JsonSerializerFactory setEncodeStrings(boolean encodeStrings) { + this.encodeStrings = encodeStrings; + return this; + } + + public boolean isSerializeAsSupport() { + return serializeAsSupport; + } + + public JsonSerializerFactory setSerializeAsSupport(boolean serializeAsSupport) { + this.serializeAsSupport = serializeAsSupport; + return this; + } + + public JsonSerializerFactory setSerializeMapKeys(boolean serializeMapKeys) { + this.serializeMapKeys = serializeMapKeys; + return this; + } +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/json/JsonSlurper.java b/datastructures-json-boon/src/main/java/org/boon/json/JsonSlurper.java new file mode 100644 index 0000000..4a3917a --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/JsonSlurper.java @@ -0,0 +1,212 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ +package org.boon.json; + +import org.boon.IO; +import org.boon.HTTP; +import org.boon.json.implementation.JsonParserUsingCharacterSource; + +import java.io.File; +import java.io.IOException; +import java.io.Reader; +import java.io.StringReader; +import java.net.URL; +import java.nio.charset.Charset; +import java.nio.charset.StandardCharsets; +import java.nio.file.Files; +import java.util.*; + +/** + * JSON slurper which parses text or reader content into a data structure of lists and maps. + *

+ * Example usage: + *

+ * def slurper = new JsonSlurper()
+ * def result = slurper.parseText('{"person":{"name":"Guillaume","age":33,"pets":["dog","cat"]}}')
+ *
+ * assert result.person.name == "Guillaume"
+ * assert result.person.age == 33
+ * assert result.person.pets.size() == 2
+ * assert result.person.pets[0] == "dog"
+ * assert result.person.pets[1] == "cat"
+ * 
+ * + * @author Guillaume Laforge + * @author Rick Hightower + * @since 1.8.0 + */ +public class JsonSlurper { + + /** + * Parse a text representation of a JSON data structure + * + * @param text JSON text to parse + * @return a data structure of lists and maps + */ + public Object parseText(String text) { + if (text == null || text.length() == 0) { + throw new IllegalArgumentException("The JSON input text should neither be null nor empty."); + } + + return JsonFactory.create().fromJson ( text ); + } + + /** + * Parse a JSON data structure from content from a reader + * + * @param reader reader over a JSON content + * @return a data structure of lists and maps + */ + public Object parse(Reader reader) { + return new JsonParserUsingCharacterSource ( ).parse ( reader ); + } + + + /** + * Parse a JSON data structure from content within a given File. + * + * @param file File containing JSON content + * @return a data structure of lists and maps + * @since 2.2.0 + */ + public Object parse(File file) { + return parseFile(file, null); + } + + /** + * Parse a JSON data structure from content within a given File. + * + * @param file File containing JSON content + * @param charset the charset for this File + * @return a data structure of lists and maps + * @since 2.2.0 + */ + public Object parse(File file, String charset) { + return parseFile(file, charset); + } + + /** Slight changes to remove groovy dependencies .*/ + private Object parseFile(File file, String scharset) { + Charset charset = scharset==null || scharset.length ()==0 ? StandardCharsets.UTF_8 : Charset.forName ( scharset ); + + if (file.length() > 2_000_000) { + try (Reader reader = Files.newBufferedReader( IO.path ( file.toString () ), charset )) { + return parse(reader); + } catch(IOException ioe) { + throw new JsonException("Unable to process file: " + file.getPath(), ioe); + } + } else { + try { + return JsonFactory.create().fromJson ( Files.newBufferedReader( IO.path ( file.toString () ), charset ) ); + } catch ( IOException e ) { + throw new JsonException("Unable to process file: " + file.getPath(), e); + } + } + } + + /** + * Parse a JSON data structure from content at a given URL. + * + * @param url URL containing JSON content + * @return a data structure of lists and maps + * @since 2.2.0 + */ + public Object parse(URL url) { + return parseURL(url, null); + } + + /** + * Parse a JSON data structure from content at a given URL. + * + * @param url URL containing JSON content + * @param params connection parameters + * @return a data structure of lists and maps + * @since 2.2.0 + */ + public Object parse(URL url, Map params) { + return parseURL(url, params); + } + + /** + * Parse a JSON data structure from content at a given URL. Convenience variant when using Groovy named parameters for the connection params. + * + * @param params connection parameters + * @param url URL containing JSON content + * @return a data structure of lists and maps + * @since 2.2.0 + */ + public Object parse(Map params, URL url) { + return parseURL(url, params); + } + + private Object parseURL(URL url, Map params) { + return parse(new StringReader ( IO.read ( url.toString () ))); + } + + /** + * Parse a JSON data structure from content at a given URL. + * + * @param url URL containing JSON content + * @param charset the charset for this File + * @return a data structure of lists and maps + * @since 2.2.0 + */ + public Object parse(URL url, String charset) { + return parseURL(url, null, charset); + } + + /** + * Parse a JSON data structure from content at a given URL. + * + * @param url URL containing JSON content + * @param params connection parameters + * @param charset the charset for this File + * @return a data structure of lists and maps + * @since 2.2.0 + */ + public Object parse(URL url, Map params, String charset) { + return parseURL(url, params, charset); + } + + /** + * Parse a JSON data structure from content at a given URL. Convenience variant when using Groovy named parameters for the connection params. + * + * @param params connection parameters + * @param url URL containing JSON content + * @param charset the charset for this File + * @return a data structure of lists and maps + * @since 2.2.0 + */ + public Object parse(Map params, URL url, String charset) { + return parseURL(url, params, charset); + } + + private Object parseURL(URL url, Map params, String charset) { + return parse(new StringReader( HTTP.getJSONWithParams ( url.toString (), null, params ))); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/ObjectMapper.java b/datastructures-json-boon/src/main/java/org/boon/json/ObjectMapper.java new file mode 100644 index 0000000..bbfdee9 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/ObjectMapper.java @@ -0,0 +1,281 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json; + + +import java.io.*; +import java.nio.charset.Charset; +import java.util.Collection; + + + +/** + * This mapper (or, data binder, or codec) provides functionality for + * converting between Java objects (instances of JDK provided core classes, + * beans), and matching JSON constructs. + * It will use instances of {@link JsonParserAndMapper} and {@link JsonSerializer} + * for implementing actual reading/writing of JSON. + *

+ */ +public interface ObjectMapper { + + /** + * Method to deserialize JSON content into a non-container + * type typically a bean or wrapper type. + *

+ * Note: this method should NOT be used if the result type is a + * container ({@link Collection} or {@link java.util.Map}. + * The reason is that due to type erasure, key and value types + * can not be introspected when using this method. + */ + T readValue(String src, Class valueType); + + /** + * Method to deserialize JSON content into a non-container + * type typically a bean or wrapper type. + *

+ * Note: this method should NOT be used if the result type is a + * container ({@link Collection} or {@link java.util.Map}. + * The reason is that due to type erasure, key and value types + * can not be introspected when using this method. + */ + T readValue(File src, Class valueType); + + + /** + * Method to deserialize JSON content into a non-container + * type typically a bean or wrapper type. + *

+ * Note: this method should NOT be used if the result type is a + * container ({@link Collection} or {@link java.util.Map}. + * The reason is that due to type erasure, key and value types + * can not be introspected when using this method. + */ + T readValue(byte[] src, Class valueType); + + + /** + * Method to deserialize JSON content into a non-container + * type typically a bean or wrapper type. + *

+ * Note: this method should NOT be used if the result type is a + * container ({@link Collection} or {@link java.util.Map}. + * The reason is that due to type erasure, key and value types + * can not be introspected when using this method. + */ + T readValue(char[] src, Class valueType); + + + /** + * Method to deserialize JSON content into a non-container + * type typically a bean or wrapper type. + *

+ * Note: this method should NOT be used if the result type is a + * container ({@link Collection} or {@link java.util.Map}. + * The reason is that due to type erasure, key and value types + * can not be introspected when using this method. + */ + T readValue(Reader src, Class valueType); + + + /** + * Method to deserialize JSON content into a non-container + * type typically a bean or wrapper type. + *

+ * Note: this method should NOT be used if the result type is a + * container ({@link Collection} or {@link java.util.Map}. + * The reason is that due to type erasure, key and value types + * can not be introspected when using this method. + */ + T readValue(InputStream src, Class valueType); + + + + /** + * Method to deserialize JSON content into a container like Set or List. + *

+ * Note: this method should be used if the result type is a + * container ({@link Collection}. + * The reason is that due to type erasure, key and value types + * can not be introspected without using this method. + */ + , C> T readValue(String src, Class valueType, Class componentType); + /** + * Method to deserialize JSON content into a container like Set or List. + *

+ * Note: this method should be used if the result type is a + * container ({@link Collection}. + * The reason is that due to type erasure, key and value types + * can not be introspected without using this method. + */ + , C> T readValue(File src, Class valueType, Class componentType); + /** + * Method to deserialize JSON content into a container like Set or List. + *

+ * Note: this method should be used if the result type is a + * container ({@link Collection}. + * The reason is that due to type erasure, key and value types + * can not be introspected without using this method. + */ + , C> T readValue(byte[] src, Class valueType, Class componentType); + /** + * Method to deserialize JSON content into a container like Set or List. + *

+ * Note: this method should be used if the result type is a + * container ({@link Collection}. + * The reason is that due to type erasure, key and value types + * can not be introspected without using this method. + */ + , C> T readValue(char[] src, Class valueType, Class componentType); + /** + * Method to deserialize JSON content into a container like Set or List. + *

+ * Note: this method should be used if the result type is a + * container ({@link Collection}. + * The reason is that due to type erasure, key and value types + * can not be introspected without using this method. + */ + , C> T readValue(Reader src, Class valueType, Class componentType); + /** + * Method to deserialize JSON content into a container like Set or List. + *

+ * Note: this method should be used if the result type is a + * container ({@link Collection}. + * The reason is that due to type erasure, key and value types + * can not be introspected without using this method. + */ + , C> T readValue(InputStream src, Class valueType, Class componentType); + + /** + * Method to deserialize JSON content into a container like Set or List. + *

+ * Note: this method should be used if the result type is a + * container ({@link Collection}. + * The reason is that due to type erasure, key and value types + * can not be introspected without using this method. + */ + , C> T readValue(byte[] src, Charset charset, Class valueType, Class componentType); + + /** + * Method to deserialize JSON content into a container like Set or List. + *

+ * Note: this method should be used if the result type is a + * container ({@link Collection}. + * The reason is that due to type erasure, key and value types + * can not be introspected without using this method. + */ + , C> T readValue(InputStream src, Charset charset, Class valueType, Class componentType); + + /** + * Method that can be used to serialize any Java value as + * JSON output, written to File provided. + */ + void writeValue(File dest, Object value); + + /** + * Method that can be used to serialize any Java value as + * JSON output, using output stream provided (using encoding + * UTF8. + *

+ * Note: method does not close the underlying stream explicitly + * here. + */ + public void writeValue(OutputStream dest, Object value); + + + /** + * Method that can be used to serialize any Java value as + * JSON output, using Writer provided. + *

+ * Note: method does not close the underlying stream explicitly + * here. + */ + public void writeValue(Writer dest, Object value); + + + /** + * Method that can be used to serialize any Java value as + * a String. Functionally equivalent to calling + * {@link #writeValue(Writer,Object)} with {@link StringWriter} + * and constructing String, but more efficient. + *

+ */ + public String writeValueAsString(Object value); + + + + + /** + * Method that can be used to serialize any Java value as + * a char[]. Functionally equivalent to calling + * {@link #writeValue(Writer,Object)} with {@link StringWriter} + * and constructing String, but more efficient. + *

+ */ + public char[] writeValueAsCharArray(Object value); + + /** + * Method that can be used to serialize any Java value as + * a byte array. + * Encoding used will be UTF-8. + */ + public byte[] writeValueAsBytes(Object value); + + /** + * Method that can be used to serialize any Java value as + * a byte array. + */ + public byte[] writeValueAsBytes(Object value, Charset charset); + + + + + public JsonParserAndMapper parser(); + + public JsonSerializer serializer(); + + + + public String toJson(Object value); + public void toJson(Object value, Appendable appendable); + public T fromJson(String json, Class clazz); + public T fromJson(byte[] bytes, Class clazz); + public T fromJson(char[] chars, Class clazz); + public T fromJson(Reader reader, Class clazz); + public T fromJson(InputStream reader, Class clazz); + + public Object fromJson(String json); + public Object fromJson(Reader reader); + public Object fromJson(byte[] bytes); + public Object fromJson(char[] chars); + public Object fromJson(InputStream reader); + + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/ObjectSerializationData.java b/datastructures-json-boon/src/main/java/org/boon/json/ObjectSerializationData.java new file mode 100644 index 0000000..e9a1d82 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/ObjectSerializationData.java @@ -0,0 +1,47 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json; + +import org.boon.primitive.CharBuf; + +/** + * Created by rick on 12/27/13. + */ +public class ObjectSerializationData { + + public final Object instance; + public final Class type; + public final CharBuf output; + + public ObjectSerializationData ( Object instance, Class type, CharBuf output ) { + this.instance = instance; + this.type = type; + this.output = output; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/annotations/Expose.java b/datastructures-json-boon/src/main/java/org/boon/json/annotations/Expose.java new file mode 100644 index 0000000..f87922f --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/annotations/Expose.java @@ -0,0 +1,50 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.annotations; + + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +/** + * Stops field or property from being serialized into JSON. + * Does not stop field from being populated. + * + * @author Rick Hightower + * + */ +@Target({ ElementType.METHOD, ElementType.FIELD }) +@Retention( RetentionPolicy.RUNTIME) +public @interface Expose { + + boolean deserialize() default true; + boolean serialize(); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/annotations/JsonIgnore.java b/datastructures-json-boon/src/main/java/org/boon/json/annotations/JsonIgnore.java new file mode 100644 index 0000000..06a7374 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/annotations/JsonIgnore.java @@ -0,0 +1,46 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.annotations; +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +/** + * Stops field or property from being serialized into JSON. + * Does not stop field from being populated. + * + * @author Rick Hightower + * + */ +@Target({ ElementType.METHOD, ElementType.FIELD }) +@Retention(RetentionPolicy.RUNTIME) +public @interface JsonIgnore { + boolean value() default true; +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/json/annotations/JsonIgnoreProperties.java b/datastructures-json-boon/src/main/java/org/boon/json/annotations/JsonIgnoreProperties.java new file mode 100644 index 0000000..1832f71 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/annotations/JsonIgnoreProperties.java @@ -0,0 +1,41 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.annotations; + + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Target ({ ElementType.TYPE }) +@Retention ( RetentionPolicy.RUNTIME) +public @interface JsonIgnoreProperties { + String [] value(); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/annotations/JsonInclude.java b/datastructures-json-boon/src/main/java/org/boon/json/annotations/JsonInclude.java new file mode 100644 index 0000000..396e46b --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/annotations/JsonInclude.java @@ -0,0 +1,46 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.annotations; + + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Target ({ ElementType.METHOD, ElementType.FIELD }) +@Retention ( RetentionPolicy.RUNTIME) +public @interface JsonInclude { + + public static enum Include { + ALWAYS, NON_DEFAULT, NON_EMPTY, NON_NULL + } + + Include value() default Include.ALWAYS; +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/annotations/JsonProperty.java b/datastructures-json-boon/src/main/java/org/boon/json/annotations/JsonProperty.java new file mode 100644 index 0000000..9619aa7 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/annotations/JsonProperty.java @@ -0,0 +1,40 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.annotations; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Target({ ElementType.METHOD, ElementType.FIELD }) +@Retention( RetentionPolicy.RUNTIME) +public @interface JsonProperty { + String value(); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/annotations/JsonViews.java b/datastructures-json-boon/src/main/java/org/boon/json/annotations/JsonViews.java new file mode 100644 index 0000000..8383e9f --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/annotations/JsonViews.java @@ -0,0 +1,48 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.annotations; + + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +/** + * + * @author Rick Hightower + * + */ +@Target ({ ElementType.METHOD, ElementType.FIELD }) +@Retention ( RetentionPolicy.RUNTIME) +public @interface JsonViews { + + String[] includeWithViews(); + String[] ignoreWithViews(); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/annotations/SerializedName.java b/datastructures-json-boon/src/main/java/org/boon/json/annotations/SerializedName.java new file mode 100644 index 0000000..ebb07d4 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/annotations/SerializedName.java @@ -0,0 +1,41 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.annotations; + + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Target({ ElementType.METHOD, ElementType.FIELD }) +@Retention( RetentionPolicy.RUNTIME) +public @interface SerializedName { + String value(); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/implementation/BaseJsonParser.java b/datastructures-json-boon/src/main/java/org/boon/json/implementation/BaseJsonParser.java new file mode 100644 index 0000000..59b8137 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/implementation/BaseJsonParser.java @@ -0,0 +1,177 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.implementation; + +import org.boon.IO; +import org.boon.core.reflection.FastStringUtils; +import org.boon.json.JsonParser; +import org.boon.primitive.CharBuf; +import org.boon.primitive.IOInputStream; + +import java.io.*; +import java.nio.charset.Charset; +import java.nio.charset.StandardCharsets; + +import java.util.concurrent.ConcurrentHashMap; + +/** + * Created by Richard on 2/2/14. + */ +public abstract class BaseJsonParser implements JsonParser { + + + protected static final int COLON = ':'; + protected static final int COMMA = ','; + protected static final int CLOSED_CURLY = '}'; + protected static final int CLOSED_BRACKET = ']'; + + protected static final int LETTER_E = 'e'; + protected static final int LETTER_BIG_E = 'E'; + + protected static final int MINUS = '-'; + protected static final int PLUS = '+'; + + protected static final int DECIMAL_POINT = '.'; + + + protected static final int ALPHA_0 = '0'; + protected static final int ALPHA_1 = '1'; + protected static final int ALPHA_2 = '2'; + protected static final int ALPHA_3 = '3'; + protected static final int ALPHA_4 = '4'; + protected static final int ALPHA_5 = '5'; + protected static final int ALPHA_6 = '6'; + protected static final int ALPHA_7 = '7'; + protected static final int ALPHA_8 = '8'; + protected static final int ALPHA_9 = '9'; + + + protected static final int DOUBLE_QUOTE = '"'; + + protected static final int ESCAPE = '\\'; + + protected static final boolean internKeys = Boolean.parseBoolean( System.getProperty( "org.boon.json.implementation.internKeys", "false" ) ); + protected static ConcurrentHashMap internedKeysCache; + + protected Charset charset = StandardCharsets.UTF_8; + + + protected int bufSize = 1024; + + protected char[] copyBuf; + + + static { + if ( internKeys ) { + internedKeysCache = new ConcurrentHashMap<>(); + } + } + + + + protected String charDescription( int c ) { + String charString; + if ( c == ' ' ) { + charString = "[SPACE]"; + } else if ( c == '\t' ) { + charString = "[TAB]"; + + } else if ( c == '\n' ) { + charString = "[NEWLINE]"; + + } else { + charString = "'" + (char)c + "'"; + } + + charString = charString + " with an int value of " + ( ( int ) c ); + return charString; + } + + + + + + public void setCharset( Charset charset ) { + this.charset = charset; + } + + + @Override + public Object parse ( String jsonString ) { + return parse ( FastStringUtils.toCharArray ( jsonString ) ); + } + + @Override + public Object parse ( byte[] bytes ) { + return parse ( bytes, charset ); + } + + + @Override + public Object parse ( CharSequence charSequence ) { + return parse ( FastStringUtils.toCharArray ( charSequence ) ); + } + + @Override + public Object parse( Reader reader ) { + + if (copyBuf==null) { + copyBuf = new char[bufSize]; + } + + fileInputBuf = IO.read ( reader, fileInputBuf, bufSize, copyBuf ); + return parse( fileInputBuf.readForRecycle() ); + + } + + @Override + public Object parse ( InputStream input ) { + return parse ( input, charset ); + } + + + + @Override + public Object parse ( InputStream inputStream, Charset charset ) { + + + + return parse ( new InputStreamReader ( inputStream, charset ) ); + } + + + + private CharBuf fileInputBuf; + + + + int[] indexHolder = new int[1]; + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/implementation/BaseJsonParserAndMapper.java b/datastructures-json-boon/src/main/java/org/boon/json/implementation/BaseJsonParserAndMapper.java new file mode 100644 index 0000000..f9e9bf1 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/implementation/BaseJsonParserAndMapper.java @@ -0,0 +1,805 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.implementation; + +import org.boon.Exceptions; +import org.boon.IO; +import org.boon.core.Conversions; +import org.boon.core.Typ; +import org.boon.core.TypeType; +import org.boon.core.Value; +import org.boon.core.reflection.MapObjectConversion; +import org.boon.core.reflection.Mapper; +import org.boon.json.JsonParser; +import org.boon.json.JsonParserAndMapper; +import org.boon.primitive.CharBuf; +import org.boon.primitive.InMemoryInputStream; + +import java.io.*; +import java.math.BigDecimal; +import java.math.BigInteger; +import java.nio.charset.Charset; +import java.nio.charset.StandardCharsets; +import java.nio.file.Files; +import java.nio.file.Path; +import java.util.Date; +import java.util.List; +import java.util.Map; + +public class BaseJsonParserAndMapper implements JsonParserAndMapper { + + + + protected final JsonParser parser; + private final CharBuf builder = CharBuf.create( 20 ); + private final Mapper mapper; + + protected Charset charset = StandardCharsets.UTF_8; + + + protected int bufSize = 1024; + private char[] copyBuf; + + + public BaseJsonParserAndMapper( JsonParser parser, Mapper mapper ) { + this.parser = parser; + this.mapper = mapper; + + } + + + + protected final T convert( Class clz, Object object ) { + if (object == null ) { + return null; + } + + TypeType coerceTo = TypeType.getType(clz); + + switch ( coerceTo ) { + case MAP: + case LIST: + case OBJECT: + return (T)object; + + } + + TypeType coerceFrom = TypeType.getType(object.getClass()); + + switch ( coerceFrom ) { + + case VALUE_MAP: + return mapper.fromValueMap( ( Map ) object, clz ); + + case MAP: + return mapper.fromMap ( ( Map ) object, clz ); + + case VALUE: + return (T)( (Value) object).toValue (); + + case LIST: + return (T) mapper.convertListOfMapsToObjects( (List)object, clz); + + default: + if ( Typ.isBasicTypeOrCollection( clz ) ) { + return Conversions.coerce(coerceTo, clz, object); + } else { + return (T)object; + } + } + + } + + + public void setCharset( Charset charset ) { + this.charset = charset; + } + + + @Override + public Map parseMap ( String jsonString ) { + return (Map) parse ( jsonString ); + } + + @Override + public List parseList ( Class componentType, String jsonString ) { + List list = parse ( List.class, jsonString ); + return convertList( componentType, list ); + } + + private List convertList( Class componentType, List list ) { + + List l = list; + return MapObjectConversion.convertListOfMapsToObjects(componentType, (List)l ); + } + + + @Override + public List parseList ( Class componentType, Reader reader ) { + List list = parse ( List.class, reader ); + return convertList( componentType, list ); + } + + @Override + public List parseList ( Class componentType, InputStream input ) { + List list = parse ( List.class, input ); + return convertList( componentType, list ); + } + + @Override + public List parseList ( Class componentType, InputStream input, Charset charset ) { + List list = parse ( List.class, input, charset ); + return convertList( componentType, list ); + } + + @Override + public List parseList ( Class componentType, byte[] jsonBytes ) { + List list = parse ( List.class, jsonBytes ); + return convertList( componentType, list ); + } + + @Override + public List parseList ( Class componentType, byte[] jsonBytes, Charset charset ) { + List list = parse ( List.class, jsonBytes, charset ); + return convertList( componentType, list ); + } + + @Override + public List parseList ( Class componentType, char[] chars ) { + List list = parse ( List.class, chars ); + return convertList( componentType, list ); + } + + @Override + public List parseList ( Class componentType, CharSequence jsonSeq ) { + List list = parse ( List.class, jsonSeq ); + return convertList( componentType, list ); + } + + @Override + public List parseListFromFile ( Class componentType, String fileName ) { + List list = parseFile ( List.class, fileName ); + return convertList( componentType, list ); + } + + + @Override + public T parse( Class type, String jsonString ) { + return convert( type, parse( jsonString ) ); + } + + @Override + public T parse( Class type, byte[] bytes ) { + return convert( type, parse( bytes ) ); + } + + @Override + public T parse( Class type, byte[] bytes, Charset charset ) { + return convert (type, parse(bytes, charset)); + } + + + @Override + public Date parseDate ( String jsonString ) { + return Conversions.toDate ( parse ( jsonString ) ); + } + + @Override + public Date parseDate ( InputStream input ) { + return Conversions.toDate ( parse ( input ) ); + } + + @Override + public Date parseDate ( InputStream input, Charset charset ) { + return Conversions.toDate ( parse ( input ) ); + } + + @Override + public Date parseDate ( byte[] jsonBytes ) { + return Conversions.toDate ( parse ( jsonBytes ) ); + } + + @Override + public Date parseDate ( byte[] jsonBytes, Charset charset ) { + return Conversions.toDate ( parse ( jsonBytes, charset ) ); + } + + @Override + public Date parseDate ( char[] chars ) { + return Conversions.toDate ( parse ( chars ) ); + } + + @Override + public Date parseDate ( CharSequence jsonSeq ) { + return Conversions.toDate ( parse ( jsonSeq ) ); + } + + @Override + public Date parseDateFromFile ( String fileName ) { + return Conversions.toDate ( parseFile ( fileName ) ); + } + + @Override + public float[] parseFloatArray ( String jsonString ) { + List list = (List ) parse ( jsonString ); + return Conversions.farray ( list ); + } + + @Override + public double[] parseDoubleArray ( String jsonString ) { + List list = (List ) parse ( jsonString ); + return Conversions.darray ( list ); + } + + @Override + public long[] parseLongArray ( String jsonString ) { + List list = (List ) parse ( jsonString ); + return Conversions.larray ( list ); + } + + @Override + public int [] parseIntArray ( String jsonString ) { + List list = (List ) parse ( jsonString ); + return Conversions.iarray ( list ); + } + + @Override + public T parseEnum ( Class type, String jsonString ) { + Object obj = parse ( jsonString ); + return Conversions.toEnum ( type, obj ); + } + + @Override + public short parseShort ( String jsonString ) { + return Conversions.toShort ( parse (jsonString) ); + } + + @Override + public byte parseByte ( String jsonString ) { + + return Conversions.toByte ( parse ( jsonString ) ); + } + + @Override + public char parseChar ( String jsonString ) { + return Conversions.toChar ( parse ( jsonString ) ); + } + + @Override + public char[] parseCharArray ( String jsonString ) { + return Conversions.carray ( parse ( jsonString ) ); + } + + @Override + public byte[] parseByteArray ( String jsonString ) { + return Conversions.barray ( parse ( jsonString ) ); + } + + @Override + public short[] parseShortArray ( String jsonString ) { + return Conversions.sarray ( parse ( jsonString ) ); + } + + + + @Override + public int parseInt ( String jsonString ) { + return Conversions.toInt ( parse ( jsonString ) ); + } + + @Override + public int parseInt ( InputStream input ) { + return Conversions.toInt ( parse ( input ) ); + } + + @Override + public int parseInt ( InputStream input, Charset charset ) { + return Conversions.toInt ( parse ( input, charset ) ); + } + + @Override + public int parseInt ( byte[] jsonBytes ) { + return Conversions.toInt ( parse ( jsonBytes ) ); + } + + @Override + public int parseInt ( byte[] jsonBytes, Charset charset ) { + return Conversions.toInt ( parse ( jsonBytes, charset ) ); + } + + @Override + public int parseInt ( char[] chars ) { + return Conversions.toInt ( parse ( chars ) ); + } + + @Override + public int parseInt ( CharSequence jsonSeq ) { + return Conversions.toInt ( parse ( jsonSeq ) ); + } + + @Override + public int parseIntFromFile ( String fileName ) { + return Conversions.toInt ( parseFile ( fileName ) ); + } + + + + + @Override + public long parseLong ( String jsonString ) { + return Conversions.toLong ( parse (jsonString) ); + } + + @Override + public long parseLong ( InputStream input ) { + return Conversions.toLong ( parse ( input ) ); + } + + @Override + public long parseLong ( InputStream input, Charset charset ) { + return Conversions.toLong ( parse ( input, charset ) ); + } + + @Override + public long parseLong ( byte[] jsonBytes ) { + return Conversions.toLong ( parse ( jsonBytes ) ); + } + + @Override + public long parseLong ( byte[] jsonBytes, Charset charset ) { + return Conversions.toLong ( parse ( jsonBytes, charset ) ); + } + + @Override + public long parseLong ( char[] chars ) { + return Conversions.toLong ( parse ( chars ) ); + } + + @Override + public long parseLong ( CharSequence jsonSeq ) { + return Conversions.toLong ( parse ( jsonSeq ) ); + } + + @Override + public long parseLongFromFile ( String fileName ) { + return Conversions.toLong ( parseFile ( fileName ) ); + } + + @Override + public String parseString( String value ) { + return Conversions.toString( parse ( value ) ); + } + + @Override + public String parseString( InputStream value ) { + return Conversions.toString( parse ( value ) ); + } + + @Override + public String parseString( InputStream value, Charset charset ) { + return Conversions.toString( parse ( value, charset ) ); + } + + @Override + public String parseString( byte[] value ) { + return Conversions.toString( parse ( value ) ); + } + + @Override + public String parseString( byte[] value, Charset charset ) { + return Conversions.toString( parse ( value, charset ) ); + } + + @Override + public String parseString( char[] value ) { + return Conversions.toString( parse ( value ) ); + } + + @Override + public String parseString( CharSequence value ) { + return Conversions.toString( parse ( value ) ); + } + + @Override + public String parseStringFromFile( String value ) { + return Conversions.toString( parseFile ( value ) ); + } + + + @Override + public double parseDouble ( String value ) { + return Conversions.toDouble ( parse ( value ) ); + } + + @Override + public double parseDouble ( InputStream value ) { + return Conversions.toDouble ( parse ( value ) ); + } + + @Override + public double parseDouble ( byte[] value ) { + return Conversions.toDouble ( parse ( value ) ); + } + + @Override + public double parseDouble ( char[] value ) { + return Conversions.toDouble ( parse ( value ) ); + } + + @Override + public double parseDouble ( CharSequence value ) { + return Conversions.toDouble ( parse ( value ) ); + } + + @Override + public double parseDouble ( byte[] value, Charset charset ) { + return Conversions.toDouble ( parse ( value, charset ) ); + } + + @Override + public double parseDouble ( InputStream value, Charset charset ) { + return Conversions.toDouble ( parse ( value, charset ) ); + } + + @Override + public double parseDoubleFromFile ( String fileName ) { + return Conversions.toDouble ( parseFile ( fileName ) ); + } + + + @Override + public float parseFloat ( String value ) { + return Conversions.toFloat ( parse ( value ) ); + } + + @Override + public float parseFloat ( InputStream value ) { + return Conversions.toFloat ( parse ( value ) ); + } + + @Override + public float parseFloat ( byte[] value ) { + return Conversions.toFloat ( parse ( value ) ); + } + + @Override + public float parseFloat ( char[] value ) { + return Conversions.toFloat ( parse ( value ) ); + } + + @Override + public float parseFloat ( CharSequence value ) { + return Conversions.toFloat ( parse ( value ) ); + } + + @Override + public float parseFloat ( byte[] value, Charset charset ) { + return Conversions.toFloat ( parse ( value, charset ) ); + } + + @Override + public float parseFloat ( InputStream value, Charset charset ) { + return Conversions.toFloat ( parse ( value, charset ) ); + } + + @Override + public float parseFloatFromFile ( String fileName ) { + return Conversions.toFloat ( parseFile ( fileName ) ); + } + + + + + @Override + public BigDecimal parseBigDecimal ( String value ) { + return Conversions.toBigDecimal ( parse ( value ) ); + } + + @Override + public BigDecimal parseBigDecimal ( InputStream value ) { + return Conversions.toBigDecimal ( parse ( value ) ); + } + + @Override + public BigDecimal parseBigDecimal ( byte[] value ) { + return Conversions.toBigDecimal ( parse ( value ) ); + } + + @Override + public BigDecimal parseBigDecimal ( char[] value ) { + return Conversions.toBigDecimal ( parse ( value ) ); + } + + @Override + public BigDecimal parseBigDecimal ( CharSequence value ) { + return Conversions.toBigDecimal ( parse ( value ) ); + } + + @Override + public BigDecimal parseBigDecimal ( byte[] value, Charset charset ) { + return Conversions.toBigDecimal ( parse ( value, charset ) ); + } + + @Override + public BigDecimal parseBigDecimal ( InputStream value, Charset charset ) { + return Conversions.toBigDecimal ( parse ( value, charset ) ); + } + + @Override + public BigDecimal parseBigDecimalFromFile ( String fileName ) { + return Conversions.toBigDecimal ( parseFile ( fileName ) ); + } + + + + + @Override + public BigInteger parseBigInteger ( String value ) { + return Conversions.toBigInteger ( parse ( value ) ); + } + + @Override + public BigInteger parseBigInteger ( InputStream value ) { + return Conversions.toBigInteger ( parse ( value ) ); + } + + @Override + public BigInteger parseBigInteger ( byte[] value ) { + return Conversions.toBigInteger ( parse ( value ) ); + } + + @Override + public BigInteger parseBigInteger ( char[] value ) { + return Conversions.toBigInteger ( parse ( value ) ); + } + + @Override + public BigInteger parseBigInteger ( CharSequence value ) { + return Conversions.toBigInteger ( parse ( value ) ); + } + + @Override + public BigInteger parseBigInteger ( byte[] value, Charset charset ) { + return Conversions.toBigInteger ( parse ( value, charset ) ); + } + + @Override + public BigInteger parseBigInteger ( InputStream value, Charset charset ) { + return Conversions.toBigInteger ( parse ( value, charset ) ); + } + + @Override + public BigInteger parseBigIntegerFile ( String fileName ) { + return Conversions.toBigInteger ( parseFile ( fileName ) ); + } + + + + + + @Override + public Object parseDirect ( byte[] value ) { + builder.addAsUTF( value ); + return parse(builder.readForRecycle() ); + } + + + @Override + public T parseDirect( Class type, byte[] value ) { + builder.addAsUTF( value ); + return parse ( type, builder.readForRecycle () ); + } + + + + + @Override + public T parseAsStream( Class type, byte[] value ) { + return this.parse ( type, new InMemoryInputStream( value ) ); + } + + + @Override + public T parse( Class type, CharSequence charSequence ) { + return parse ( type, charSequence.toString () ); + } + + @Override + public T parse( Class type, char[] chars ) { + return convert(type, parse(chars)); + } + + @Override + public Object parseAsStream ( byte[] value ) { + return this.parse( new InMemoryInputStream( value ) ); + } + + @Override + public Object parseFile ( String fileName ) { + try { + Path filePath = IO.path ( fileName ); + long size = Files.size ( filePath ); + size = size > 2_000_000_000 ? 1_000_000 : size; + if (copyBuf==null) { + copyBuf = new char[bufSize]; + } + + Reader reader = Files.newBufferedReader ( IO.path ( fileName ), charset); + fileInputBuf = IO.read( reader, fileInputBuf, (int)size, copyBuf ); + return parse( fileInputBuf.readForRecycle() ); + } catch ( IOException ex ) { + return Exceptions.handle ( Object.class, fileName, ex ); + } + + } + + @Override + public void close() { + + } + + + private CharBuf fileInputBuf; + + @Override + public T parse( Class type, Reader reader ) { + + if (copyBuf==null) { + copyBuf = new char[bufSize]; + } + + fileInputBuf = IO.read( reader, fileInputBuf, bufSize, copyBuf ); + return parse( type, fileInputBuf.readForRecycle() ); + + } + + + @Override + public T parse( Class type, InputStream input ) { + if (copyBuf==null) { + copyBuf = new char[bufSize]; + } + + fileInputBuf = IO.read( input, fileInputBuf, charset, bufSize, copyBuf ); + return parse( type, fileInputBuf.readForRecycle() ); + } + + + @Override + public T parse( Class type, InputStream input, Charset charset ) { + fileInputBuf = IO.read( input, fileInputBuf, charset, bufSize, copyBuf ); + return parse( type, fileInputBuf.readForRecycle() ); + } + + + @Override + public T parseFile( Class type, String fileName ) { + + try { + Path filePath = IO.path ( fileName ); + long size = Files.size ( filePath ); + size = size > 2_000_000_000 ? 1_000_000 : size; + Reader reader = Files.newBufferedReader ( IO.path ( fileName ), charset); + fileInputBuf = IO.read( reader, fileInputBuf, (int)size, copyBuf ); + return parse( type, fileInputBuf.readForRecycle() ); + } catch ( IOException ex ) { + return Exceptions.handle ( type, fileName, ex ); + } + } + + + + + + @Override + public Map parseMap ( char[] value ) { + return (Map) parse(value); + } + + @Override + public Map parseMap ( byte[] value ) { + return (Map) parse(value); + } + + @Override + public Map parseMap ( byte[] value, Charset charset ) { + return (Map) parse(value, charset); + } + + @Override + public Map parseMap ( InputStream value, Charset charset ) { + return (Map) parse(value, charset); + } + + @Override + public Map parseMap ( CharSequence value ) { + return (Map) parse(value); + } + + @Override + public Map parseMap ( InputStream value ) { + return (Map) parse(value); + } + + @Override + public Map parseMap ( Reader value ) { + return (Map) parse ( value ); + } + + @Override + public Map parseMapFromFile ( String file ) { + return (Map) parseFile(file); + } + + + + + @Override + public Object parse( String jsonString ) { + return parser.parse( jsonString ); + } + + @Override + public Object parse( byte[] bytes ) { + return parser.parse( bytes ); + } + + @Override + public Object parse( byte[] bytes, Charset charset ) { + return parser.parse( bytes, charset ); + } + + @Override + public Object parse( CharSequence charSequence ) { + return parser.parse( charSequence ); + } + + + @Override + public Object parse( char[] chars ){ + return parser.parse( chars ); + } + + @Override + public Object parse( Reader reader ){ + return parser.parse( reader ); + } + + @Override + public Object parse( InputStream input ){ + return parser.parse( input ); + } + + @Override + public Object parse( InputStream input, Charset charset ){ + return parser.parse( input, charset ); + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonAsciiParser.java b/datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonAsciiParser.java new file mode 100644 index 0000000..a01b613 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonAsciiParser.java @@ -0,0 +1,78 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.implementation; + +import org.boon.primitive.ByteScanner; +import org.boon.primitive.CharScanner; + +import java.nio.charset.StandardCharsets; + +/** + * Created by rick on 12/15/13. + */ +public class JsonAsciiParser extends JsonBaseByteArrayParser { + + public JsonAsciiParser() { + this.charset = StandardCharsets.US_ASCII; + } + + protected final String decodeString() { + + byte[] array = charArray; + int index = __index; + int currentChar = array[index]; + + if ( index < array.length && currentChar == '"' ) { + index++; + } + + final int startIndex = index; + + + boolean encoded = ByteScanner.hasEscapeChar(array, index, indexHolder); + index = indexHolder[0]; + + + + String value = null; + if ( encoded ) { + index = ByteScanner.findEndQuote ( array, index); + value = builder.decodeJsonString ( array, startIndex, index ).toString (); + builder.recycle (); + } else { + value = new String( array, startIndex, ( index - startIndex ) ); + } + + if ( index < charArray.length ) { + index++; + } + __index = index; + return value; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonBaseByteArrayParser.java b/datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonBaseByteArrayParser.java new file mode 100644 index 0000000..c14b03c --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonBaseByteArrayParser.java @@ -0,0 +1,640 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.implementation; + +import org.boon.IO; +import org.boon.core.Typ; +import org.boon.core.reflection.MapObjectConversion; +import org.boon.json.JsonException; +import org.boon.collections.LazyMap; +import org.boon.primitive.Byt; +import org.boon.primitive.ByteScanner; +import org.boon.primitive.CharBuf; +import org.boon.primitive.InMemoryInputStream; + +import java.io.InputStream; +import java.nio.charset.Charset; +import java.util.*; + +import static org.boon.primitive.ByteScanner.skipWhiteSpaceFast; + +/** + * Created by rick on 12/15/13. + */ +public abstract class JsonBaseByteArrayParser extends BaseJsonParser { + + protected byte[] charArray; + protected int __index; + protected int __currentChar; + + + protected static final int NEW_LINE = '\n'; + + protected static final int RETURN = '\r'; + + protected static final int SPACE = ' '; + + + protected static final int TAB = '\t'; + protected static final int BELL = '\b'; + protected static final int FORM_FEED = '\f'; + + protected static final int COLON = ':'; + + protected static final int OPEN_CURLY = '{'; + + + protected static final int OPEN_BRACKET = '['; + + + + + protected static final int LETTER_N = 'n'; + + + protected static final int LETTER_U = 'u'; + + protected static final int LETTER_L = 'l'; + + protected static final int LETTER_T = 't'; + + protected static final int LETTER_R = 'r'; + + + protected static final int LETTER_F = 'f'; + + protected static final int LETTER_A = 'a'; + + + protected static final int LETTER_S = 's'; + + + protected final CharBuf builder = CharBuf.create( 20 ); + + + protected final boolean hasMore() { + return __index < lastIndex; + } + + + protected final boolean hasCurrent() { + return __index <= lastIndex; + } + + + protected final void skipWhiteSpaceIfNeeded() { + int ix = __index; + + + if (hasCurrent ()) { + this.__currentChar = this.charArray[ix]; + } + + if (__currentChar <= 32) { + ix = skipWhiteSpaceFast ( this.charArray, ix ); + this.__currentChar = this.charArray[ix]; + __index = ix; + } + + + + } + + + protected final int nextChar() { + + try { + if ( hasMore() ) { + __index++; + return __currentChar = charArray[ __index ]; + } else { + return '\u0000'; + } + } catch ( Exception ex ) { + throw new JsonException( exceptionDetails( "unable to advance character" ), ex ); + } + } + + protected String exceptionDetails( String message ) { + return ByteScanner.errorDetails(message, charArray, __index, __currentChar); + } + + + + private static int skipWhiteSpaceFastBytes( byte [] array, int index ) { + int c; + for (; index< array.length; index++ ) { + c = array [index]; + if ( c > 32 ) { + + return index; + } + } + return index-1; + } + + + protected final void skipWhiteSpace() { + __index = skipWhiteSpaceFastBytes ( this.charArray, __index ); + this.__currentChar = this.charArray[__index]; + } + + + protected int lastIndex; + + private Object decode( byte[] cs ) { + + lastIndex = cs.length -1; + charArray = cs; + __index = 0; + return decodeValue(); + } + + + public T parse( Class type, String str ) { + return this.parse( type, str.getBytes( charset ) ); + } + + public T parse( Class type, byte[] bytes ) { + + if ( type == Map.class || type == List.class || Typ.isBasicType (type) ) { + return ( T ) this.decode( bytes ); + } else { + Map objectMap = ( Map ) this.decode( bytes ); + return MapObjectConversion.fromMap ( objectMap, type ); + } + + } + + @Override + public Object parse ( byte[] bytes ) { + return this.decode ( bytes ); + } + + + + public T parse( Class type, InputStream input ) { + return parse( type, IO.input( input ) ); + } + + public T parse( Class type, CharSequence charSequence ) { + return parse( type, charSequence.toString() ); + } + + public T parse( Class type, char[] chars ) { + + return parse( type, new String( chars ) ); + } + + + protected void complain( String complaint ) { + throw new JsonException( exceptionDetails( complaint ) ); + } + + + + protected final Object decodeJsonObject() { + + + if ( __currentChar == OPEN_CURLY ) { + __index++; + } + + LazyMap map = new LazyMap (); + + for (; __index < this.charArray.length; __index++ ) { + + skipWhiteSpaceIfNeeded (); + + + if ( __currentChar == DOUBLE_QUOTE ) { + + String key = + decodeString(); + + if ( internKeys ) { + String keyPrime = internedKeysCache.get( key ); + if ( keyPrime == null ) { + key = key.intern(); + internedKeysCache.put( key, key ); + } else { + key = keyPrime; + } + } + + skipWhiteSpaceIfNeeded (); + + if ( __currentChar != COLON ) { + + complain( "expecting current character to be " + charDescription( __currentChar ) + "\n" ); + } + __index++; + + skipWhiteSpaceIfNeeded (); + + Object value = decodeValue(); + + skipWhiteSpaceIfNeeded (); + map.put( key, value ); + + + } + if ( __currentChar == CLOSED_CURLY ) { + __index++; + break; + } else if ( __currentChar == COMMA) { + continue; + } else { + complain( + "expecting '}' or ',' but got current char " + charDescription( __currentChar ) ); + + } + } + + + return map; + } + + + + protected final Object decodeValue() { + Object value = null; + + done: + for (; __index < this.charArray.length; __index++ ) { + __currentChar = charArray[ __index ]; + + + switch ( __currentChar ) { + case NEW_LINE: + break; + + case RETURN: + case SPACE: + case TAB: + case BELL: + case FORM_FEED: + break; + + case DOUBLE_QUOTE: + value = decodeString (); + break done; + + + case LETTER_T: + value = decodeTrue(); + break done; + + case LETTER_F: + value = decodeFalse(); + break done; + + case LETTER_N: + value = decodeNull(); + break done; + + case OPEN_BRACKET: + value = decodeJsonArray(); + break done; + + case OPEN_CURLY: + value = decodeJsonObject(); + break done; + + case ALPHA_1: + case ALPHA_2: + case ALPHA_3: + case ALPHA_4: + case ALPHA_5: + case ALPHA_6: + case ALPHA_7: + case ALPHA_8: + case ALPHA_9: + case ALPHA_0: + value = decodeNumber(); + break done; + + case MINUS: + value = decodeNumber(); + break done; + + default: + throw new JsonException( exceptionDetails( "Unable to determine the " + + "current character, it is not a string, number, array, or object" ) ); + + } + } + + return value; + } + + + + int[] endIndex = new int[1]; + + private final Object decodeNumber() { + + Number num = ByteScanner.parseJsonNumber( charArray, __index, charArray.length, endIndex ); + __index = endIndex[0]; + + return num; + } + + + + protected final static byte[] NULL = Byt.bytes( "null" ); + + protected final Object decodeNull() { + + if ( __index + NULL.length <= charArray.length ) { + if ( charArray[ __index ] == LETTER_N && + charArray[ ++__index ] == LETTER_U && + charArray[ ++__index ] == LETTER_L && + charArray[ ++__index ] == LETTER_L ) { + nextChar(); + return null; + } + } + throw new JsonException( exceptionDetails( "null not parsed properly" ) ); + } + + protected final static byte[] TRUE = Byt.bytes( "true" ); + + protected final boolean decodeTrue() { + + if ( __index + TRUE.length <= charArray.length ) { + if ( charArray[ __index ] == LETTER_T && + charArray[ ++__index ] == LETTER_R && + charArray[ ++__index ] == LETTER_U && + charArray[ ++__index ] == LETTER_E ) { + + nextChar(); + return true; + + } + } + + throw new JsonException( exceptionDetails( "true not parsed properly" ) ); + } + + + protected final static byte[] FALSE = Byt.bytes( "false" ); + + protected final boolean decodeFalse() { + + if ( __index + FALSE.length <= charArray.length ) { + if ( charArray[ __index ] == LETTER_F && + charArray[ ++__index ] == LETTER_A && + charArray[ ++__index ] == LETTER_L && + charArray[ ++__index ] == LETTER_S && + charArray[ ++__index ] == LETTER_E ) { + nextChar(); + return false; + } + } + throw new JsonException( exceptionDetails( "false not parsed properly" ) ); + } + + + + protected abstract String decodeString(); + + + + protected final List decodeJsonArray() { + + + ArrayList list = null; + + boolean foundEnd = false; + byte [] charArray = this.charArray; + + try { + if ( __currentChar == '[' ) { + __index++; + } + + + skipWhiteSpaceIfNeeded (); + + + /* the list might be empty */ + if ( __currentChar == ']' ) { + __index++; + return Collections.EMPTY_LIST; + } + + list = new ArrayList(); + + + int c; + + loop: + while ( this.hasMore() ) { + + Object arrayItem = decodeValue(); + + list.add( arrayItem ); + + + while (true) { + c = charArray[__index]; + if ( c == ',' ) { + __index++; + continue loop; + } else if ( c == ']' ) { + foundEnd = true; + __index++; + break loop; + } else if (c <= 32) { + __index++; + continue; + } else { + break; + } + + } + + + + c = charArray[__index]; + + if ( c == ',' ) { + __index++; + continue; + } else if ( c == ']' ) { + __index++; + foundEnd = true; + break; + } else { + + String charString = charDescription( c ); + + complain( + String.format( "expecting a ',' or a ']', " + + " but got \nthe current character of %s " + + " on array index of %s \n", charString, list.size() ) + ); + + } + } + + }catch ( Exception ex ) { + if (ex instanceof JsonException) { + JsonException jsonException = (JsonException) ex; + throw jsonException; + } + throw new JsonException ( exceptionDetails("issue parsing JSON array"), ex ); + } + if (!foundEnd ) { + complain ( "Did not find end of Json Array" ); + } + return list; + + } + + protected final List decodeJsonArrayOLD() { + if ( __currentChar == OPEN_BRACKET ) { + this.nextChar(); + } + + skipWhiteSpace(); + + /* the list might be empty */ + if ( __currentChar == CLOSED_BRACKET ) { + this.nextChar(); + return Collections.EMPTY_LIST; + } + + + ArrayList list = new ArrayList(); + + boolean foundEnd = false; + + + + int arrayIndex = 0; + + + try { + while ( this.hasMore() ) { + skipWhiteSpace(); + + Object arrayItem = decodeValue(); + + list.add( arrayItem ); + + arrayIndex++; + + __currentChar = this.charArray[__index]; + + + if ( __currentChar == COMMA ) { + this.nextChar(); + continue; + } else if ( __currentChar == CLOSED_BRACKET ) { + this.nextChar(); + foundEnd = true; + break; + } + + skipWhiteSpace(); + + + if ( __currentChar == COMMA ) { + this.nextChar(); + continue; + } else if ( __currentChar == CLOSED_BRACKET ) { + this.nextChar(); + foundEnd = true; + break; + } else { + String charString = charDescription( __currentChar ); + + complain( + String.format( "expecting a ',' or a ']', " + + " but got \nthe current character of %s " + + " on array index of %s \n", charString, arrayIndex ) + ); + + } + } + }catch (Exception ex) { + throw new JsonException( exceptionDetails( ex.getMessage() ), ex ); + } + + if (!foundEnd) { + complain( "No end bracket found for JSON Array" ); + } + return list; + } + + + public T parseDirect( Class type, byte[] value ) { + return this.parse( type, value ); + } + + public T parseAsStream( Class type, byte[] value ) { + return this.parse( type, new InMemoryInputStream( value ) ); + } + + + + public T parse( Class type, byte[] bytes, Charset charset ) { + return parse ( type, bytes ); + } + + + public T parseFile( Class type, String fileName ) { + return parse(type, IO.input ( fileName )); + } + + + + @Override + public Object parse ( char[] chars ) { + return parse ( new String (chars) ); + } + + @Override + public Object parse ( String string ) { + return parse ( string.getBytes ( charset ) ); + } + + + @Override + public Object parse ( byte[] bytes, Charset charset ) { + + return parse ( bytes ); + } + + + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonFastParser.java b/datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonFastParser.java new file mode 100644 index 0000000..0291c09 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonFastParser.java @@ -0,0 +1,335 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.implementation; + +import org.boon.core.TypeType; +import org.boon.core.Value; +import org.boon.core.value.*; +import org.boon.primitive.CharScanner; + +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; + + +/** + * This works in index overlay mode or chop mode. + * Chop mode reduces possibility of memory leak but causes a few more buffer copies as it chops up the buffer. + */ +public class JsonFastParser extends JsonParserCharArray { + + protected static ValueContainer EMPTY_LIST = new ValueContainer ( Collections.emptyList() ); + + protected final boolean useValues; + protected final boolean chop; + protected final boolean lazyChop; + protected final boolean checkDates; + + public boolean isUseValues() { + return useValues; + } + + public JsonFastParser( ) { + this( false ); + } + + public JsonFastParser( boolean useValues ) { + this( useValues, false ); + } + + public JsonFastParser( boolean useValues, boolean chop ) { + this( useValues, chop, !chop ); + } + + public JsonFastParser( boolean useValues, boolean chop, boolean lazyChop ) { + this( useValues, chop, lazyChop, true ); + } + + public JsonFastParser( boolean useValues, boolean chop, boolean lazyChop, boolean checkDates ) { + this.useValues = useValues; + this.chop = chop; + this.lazyChop = lazyChop; + this.checkDates = checkDates; + } + + protected final Value decodeJsonObjectLazyFinalParse() { + + char[] array = charArray; + + if ( __currentChar == '{' ) + __index++; + + ValueMap map = useValues ? new ValueMapImpl () : new LazyValueMap ( lazyChop ); + Value value = new ValueContainer ( map ); + + objectLoop: + for (; __index < array.length; __index++ ) { + skipWhiteSpaceIfNeeded (); + switch ( __currentChar ) { + + case '"': + Value key = decodeStringOverlay (); + skipWhiteSpaceIfNeeded (); + + if ( __currentChar != ':' ) { + + complain ( "expecting current character to be " + charDescription ( __currentChar ) + "\n" ); + } + __index++; + + Value item = decodeValueOverlay (); + + skipWhiteSpaceIfNeeded (); + + + MapItemValue miv = new MapItemValue ( key, item ); + + map.add ( miv ); + } + + switch ( __currentChar ) { + case '}': + __index++; + break objectLoop; + + case ',': + continue; + + default: + + complain ( + "expecting '}' or ',' but got current char " + charDescription ( __currentChar ) ); + + } + } + return value; + } + + private Value decodeValueOverlay() { + + skipWhiteSpaceIfNeeded (); + + switch ( __currentChar ) { + + case '"': + return decodeStringOverlay (); + + case '{': + return decodeJsonObjectLazyFinalParse (); + + case 't': + return decodeTrue () == true ? ValueContainer.TRUE : ValueContainer.FALSE; + + case 'f': + return decodeFalse () == false ? ValueContainer.FALSE : ValueContainer.TRUE; + + case 'n': + return decodeNull () == null ? ValueContainer.NULL : ValueContainer.NULL; + + case '[': + return decodeJsonArrayOverlay (); + + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + case '0': + return decodeNumberOverlay (false); + + case '-': + return decodeNumberOverlay (true); + + default: + complain ( "Unable to determine the " + + "current character, it is not a string, number, array, or object" ); + return null; + } + } + + private final Value decodeNumberOverlay(final boolean minus) { + + char[] array = charArray; + + final int startIndex = __index; + int index = __index; + char currentChar; + boolean doubleFloat = false; + + if (minus && index + 1 < array.length) { + index++; + } + + while (true) { + currentChar = array[index]; + if (CharScanner.isNumberDigit ( currentChar )) { + //noop + } else if ( currentChar <= 32 ) { //white + break; + } else if ( CharScanner.isDelimiter ( currentChar ) ) { + break; + } else if ( CharScanner.isDecimalChar(currentChar) ) { + doubleFloat = true; + } + index++; + if (index >= array.length) break; + } + + __index = index; + __currentChar = currentChar; + + TypeType type = doubleFloat ? TypeType.DOUBLE : TypeType.INT; + + NumberValue value = new NumberValue ( chop, type, startIndex, __index, this.charArray ); + + return value; + } + + private Value decodeStringOverlay() { + + char[] array = charArray; + int index = __index; + char currentChar = charArray[index]; + + if ( index < array.length && currentChar == '"' ) { + index++; + } + + final int startIndex = index; + + boolean encoded = CharScanner.hasEscapeChar ( array, index, indexHolder ); + index = indexHolder[0]; + + if (encoded) { + index = CharScanner.findEndQuote ( array, index ); + } + + Value value = new CharSequenceValue ( chop, TypeType.STRING, startIndex, index, array, encoded, checkDates ); + + if ( index < array.length ) { + index++; + } + + __index = index; + return value; + } + + private Value decodeJsonArrayOverlay() { + + char [] array = charArray; + if ( __currentChar == '[' ) { + __index++; + } + + skipWhiteSpaceIfNeeded (); + + /* the list might be empty */ + if ( __currentChar == ']' ) { + __index++; + return EMPTY_LIST; + } + + List list; + + if ( useValues ) { + list = new ArrayList<> (); + } else { + list = new ValueList ( lazyChop ); + } + + Value value = new ValueContainer ( list ); + + Value item; + char c; + int lastIndex; + boolean foundEnd = false; + + arrayLoop: + for ( ;__index < array.length; __index++) { + item = decodeValueOverlay (); + + list.add ( item ); + c = currentChar(); + switch (c) { + case ',': + continue; + case ']': + __index++; + foundEnd = true; + break arrayLoop; + } + + + lastIndex = __index; + skipWhiteSpaceIfNeeded (); + c = currentChar(); + + switch (c) { + case ',': + continue; + case ']': + if (__index == lastIndex) { + complain ( "missing ]" ); + } + foundEnd = true; + __index++; + break arrayLoop; + default: + complain ( + String.format ( "expecting a ',' or a ']', " + + " but got \nthe current character of %s " + + " on array size of %s \n", charDescription ( __currentChar ), list.size () ) + ); + } + } + + + if (!foundEnd ) { + complain ( "Did not find end of Json Array" ); + } + return value; + } + + public Object parse( char[] chars ) { + lastIndex = chars.length -1; + __index = 0; + charArray = chars; + + Value value = decodeValueOverlay( ); + if (value.isContainer ()) { + return value.toValue (); + } else { + return value; + } + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonParserCharArray.java b/datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonParserCharArray.java new file mode 100644 index 0000000..7d16bf8 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonParserCharArray.java @@ -0,0 +1,521 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.implementation; + +import org.boon.core.reflection.FastStringUtils; +import org.boon.json.JsonException; +import org.boon.collections.LazyMap; +import org.boon.primitive.CharBuf; +import org.boon.primitive.CharScanner; +import org.boon.primitive.Chr; + +import java.nio.charset.Charset; +import java.util.*; + +import static org.boon.primitive.CharScanner.*; + +/** + * Converts an input JSON String into Java objects works with String or char array + * as input. Produces an Object which can be any of the basic JSON types mapped + * to Java. + *

+ */ +public class JsonParserCharArray extends BaseJsonParser { + + protected char[] charArray; + protected int __index; + protected char __currentChar; + + + + + + protected int lastIndex; + + @Override + public Object parse ( final char[] chars ) { + __index = 0; + charArray = chars; + lastIndex = chars.length -1; + Object value = decodeValue(); + return value; + } + + + + public Object parse ( byte[] bytes, Charset charset ) { + final char[] chars = FastStringUtils.toCharArrayFromBytes( bytes, charset ); + return parse( chars ); + } + + protected final boolean hasMore() { + return __index < lastIndex; + } + + + protected final boolean hasCurrent() { + return __index <= lastIndex; + } + + + + protected final void skipWhiteSpaceIfNeeded() { + int ix = __index; + + + if (hasCurrent ()) { + this.__currentChar = this.charArray[ix]; + } + + if (__currentChar <= 32) { + ix = skipWhiteSpaceFast ( this.charArray, ix ); + this.__currentChar = this.charArray[ix]; + __index = ix; + } + + + + } + + protected final char nextChar() { + + try { + if ( hasMore() ) { + __index++; + return __currentChar = charArray[ __index ]; + } else { + return '\u0000'; + } + } catch ( Exception ex ) { + throw new JsonException( exceptionDetails( "unable to advance character" ), ex ); + } + } + + + protected String exceptionDetails( String message ) { + return CharScanner.errorDetails ( message, charArray, __index, __currentChar ); + } + + + + + + protected final Object decodeJsonObject() { + + + if ( __currentChar == '{' ) { + __index++; + } + + LazyMap map = new LazyMap (); + + for (; __index < this.charArray.length; __index++ ) { + + skipWhiteSpaceIfNeeded (); + + + if ( __currentChar == '"' ) { + + String key = + decodeString(); + + if ( internKeys ) { + String keyPrime = internedKeysCache.get( key ); + if ( keyPrime == null ) { + key = key.intern(); + internedKeysCache.put( key, key ); + } else { + key = keyPrime; + } + } + + skipWhiteSpaceIfNeeded (); + + if ( __currentChar != ':' ) { + + complain( "expecting current character to be " + charDescription( __currentChar ) + "\n" ); + } + __index++; + + skipWhiteSpaceIfNeeded (); + + Object value = decodeValueInternal(); + + skipWhiteSpaceIfNeeded (); + map.put( key, value ); + + + } + if ( __currentChar == '}' ) { + __index++; + break; + } else if ( __currentChar == ',' ) { + continue; + } else { + complain( + "expecting '}' or ',' but got current char " + charDescription( __currentChar ) ); + + } + } + + + return map; + } + + + protected final void complain( String complaint ) { + throw new JsonException( exceptionDetails( complaint ) ); + } + + + protected Object decodeValue() { + return decodeValueInternal(); + } + + private final Object decodeValueInternal() { + Object value = null; + skipWhiteSpaceIfNeeded (); + + switch ( __currentChar ) { + + case '"': + value = decodeString(); + break; + + + case 't': + value = decodeTrue(); + break; + + case 'f': + value = decodeFalse(); + break; + + case 'n': + value = decodeNull(); + break; + + case '[': + value = decodeJsonArray(); + break; + + + + + case '{': + value = decodeJsonObject(); + break; + + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + value = decodeNumber(); + break; + case '-': + value = decodeNumber(); + break; + + default: + throw new JsonException( exceptionDetails( "Unable to determine the " + + "current character, it is not a string, number, array, or object" ) ); + + } + + return value; + } + + + + int[] endIndex = new int[1]; + + private final Object decodeNumber() { + + Number num = CharScanner.parseJsonNumber( charArray, __index, charArray.length, endIndex ); + __index = endIndex[0]; + + return num; + } + + + + + protected static final char[] NULL = Chr.chars( "null" ); + + protected final Object decodeNull() { + + if ( __index + NULL.length <= charArray.length ) { + if ( charArray[ __index ] == 'n' && + charArray[ ++__index ] == 'u' && + charArray[ ++__index ] == 'l' && + charArray[ ++__index ] == 'l' ) { + __index++; + return null; + } + } + throw new JsonException( exceptionDetails( "null not parse properly" ) ); + } + + + protected static final char[] TRUE = Chr.chars( "true" ); + + protected final boolean decodeTrue() { + + if ( __index + TRUE.length <= charArray.length ) { + if ( charArray[ __index ] == 't' && + charArray[ ++__index ] == 'r' && + charArray[ ++__index ] == 'u' && + charArray[ ++__index ] == 'e' ) { + + __index++; + return true; + + } + } + + throw new JsonException( exceptionDetails( "true not parsed properly" ) ); + } + + + protected static char[] FALSE = Chr.chars( "false" ); + + protected final boolean decodeFalse() { + + if ( __index + FALSE.length <= charArray.length ) { + if ( charArray[ __index ] == 'f' && + charArray[ ++__index ] == 'a' && + charArray[ ++__index ] == 'l' && + charArray[ ++__index ] == 's' && + charArray[ ++__index ] == 'e' ) { + __index++; + return false; + } + } + throw new JsonException( exceptionDetails( "false not parsed properly" ) ); + } + + + + private CharBuf builder = CharBuf.create( 20 ); +// +// private String decodeString() { +// +// +// char[] array = charArray; +// int index = __index; +// char currentChar = charArray[index]; +// +// if (index < array.length && currentChar == '"') { +// index++; +// } +// +// final int startIndex = index; +// +// +// boolean escape = false; +// +// boolean hasEscaped = false; +// +// +// while (true) { +// currentChar = array[index]; +// if (isDoubleQuote(currentChar)) { +// if (!escape) { +// break; +// } +// } +// if (isEscape(currentChar)) { +// hasEscaped = true; +// escape = true; +// } else { +// escape = false; +// } +// index++; +// if (index >= array.length) break; +// } +// +// +// String value = null; +// if (hasEscaped) { +// value = JsonStringDecoder.decodeForSure(array, startIndex, index); +// } else { +// value = new String(array, startIndex, (index - startIndex)); +// } +// +// if (index < charArray.length) { +// index++; +// } +// __index = index; +// return value; +// +// } + + + private String decodeString() { + + char[] array = charArray; + int index = __index; + char currentChar = array[index]; + + if ( index < array.length && currentChar == '"' ) { + index++; + } + + final int startIndex = index; + + + boolean encoded = CharScanner.hasEscapeChar ( array, index, indexHolder ); + index = indexHolder[0]; + + + + String value = null; + if ( encoded ) { + index = CharScanner.findEndQuote ( array, index); + value = builder.decodeJsonString ( array, startIndex, index ).toString (); + builder.recycle (); + } else { + value = new String( array, startIndex, ( index - startIndex ) ); + } + + if ( index < charArray.length ) { + index++; + } + __index = index; + return value; + } + + protected final List decodeJsonArray() { + + + ArrayList list = null; + + boolean foundEnd = false; + char [] charArray = this.charArray; + + try { + if ( __currentChar == '[' ) { + __index++; + } + + + skipWhiteSpaceIfNeeded (); + + + /* the list might be empty */ + if ( __currentChar == ']' ) { + __index++; + return Collections.EMPTY_LIST; + } + + list = new ArrayList(); + + + char c; + + loop: + while ( this.hasMore() ) { + + Object arrayItem = decodeValueInternal(); + + list.add( arrayItem ); + + + while (true) { + c = charArray[__index]; + if ( c == ',' ) { + __index++; + continue loop; + } else if ( c == ']' ) { + foundEnd = true; + __index++; + break loop; + } else if (c <= 32) { + __index++; + continue; + } else { + break; + } + + } + + + + c = charArray[__index]; + + if ( c == ',' ) { + __index++; + continue; + } else if ( c == ']' ) { + __index++; + foundEnd = true; + break; + } else { + + String charString = charDescription( c ); + + complain( + String.format( "expecting a ',' or a ']', " + + " but got \nthe current character of %s " + + " on array index of %s \n", charString, list.size() ) + ); + + } + } + + }catch ( Exception ex ) { + if (ex instanceof JsonException) { + JsonException jsonException = (JsonException) ex; + throw jsonException; + } + throw new JsonException ( exceptionDetails("issue parsing JSON array"), ex ); + } + if (!foundEnd ) { + complain ( "Did not find end of Json Array" ); + } + return list; + + } + + protected final char currentChar() { + if (__index > lastIndex) { + return 0; + } + else { + return charArray[__index]; + } + } + +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonParserLax.java b/datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonParserLax.java new file mode 100644 index 0000000..2c22d0d --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonParserLax.java @@ -0,0 +1,802 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.implementation; + + +import org.boon.core.TypeType; +import org.boon.core.Value; +import org.boon.core.reflection.fields.FieldAccessMode; +import org.boon.core.reflection.fields.FieldsAccessor; +import org.boon.core.value.*; +import org.boon.json.JsonException; +import org.boon.json.JsonParserEvents; + +import java.util.*; + +import static org.boon.primitive.CharScanner.isDecimalChar; +import static org.boon.primitive.CharScanner.isDelimiter; +import static org.boon.primitive.CharScanner.isNumberDigit; + +/** + * Created by rick on 12/12/13. + */ +public class JsonParserLax extends JsonFastParser { + + private static ValueContainer EMPTY_LIST = new ValueContainer ( Collections.emptyList() ); + + private final JsonParserEvents events; + + + public JsonParserLax() { + this( FieldAccessMode.FIELD ); + } + + public JsonParserLax( FieldAccessMode mode ) { + this( mode, true ); + } + + public JsonParserLax( FieldAccessMode mode, boolean useAnnotations ) { + this( FieldAccessMode.create(mode, useAnnotations) ); + } + + public JsonParserLax( FieldsAccessor fieldsAccessor ) { + this( false ); + } + + public JsonParserLax( boolean useValues ) { + this( useValues, false ); + } + + public JsonParserLax( boolean useValues, boolean chop ) { + this( useValues, chop, !chop ); + } + + public JsonParserLax( boolean useValues, boolean chop, boolean lazyChop ) { + this( useValues, chop, lazyChop, true ); + } + + public JsonParserLax( boolean useValues, boolean chop, boolean lazyChop, boolean defaultCheckDates ) { + this( useValues, chop, lazyChop, defaultCheckDates, null ); + } + + public JsonParserLax( boolean useValues, boolean chop, boolean lazyChop, boolean defaultCheckDates, JsonParserEvents events) { + super(useValues, chop, lazyChop, defaultCheckDates); + this.events = events; + } + + private Value decodeJsonObjectLax(boolean isRoot) { + + if ( __currentChar == '{' ) + this.nextChar(); + + + ValueMap map = useValues ? new ValueMapImpl () : new LazyValueMap ( lazyChop ); + + if (events!=null ) { + if (isRoot) root = map; + if (!events.objectStart(__index))stop(); + + } + Value value = new ValueContainer ( map ); + + skipWhiteSpaceIfNeeded (); + int startIndexOfKey = __index; + Value key; + MapItemValue miv; + Value item; + + done: + for (; __index < this.charArray.length; __index++ ) { + + skipWhiteSpaceIfNeeded (); + + switch ( __currentChar ) { + case '/': /* */ // + handleComment(); + startIndexOfKey = __index; + break; + + case '#': + handleBashComment(); + startIndexOfKey = __index; + break; + + case ':': + char startChar = charArray[ startIndexOfKey ]; + if ( startChar == ',' ) { + startIndexOfKey++; + } + + key = extractLaxString( startIndexOfKey, __index - 1, false, false ); + + if (events!=null) if(!events.objectFieldName( __index, map, (CharSequenceValue) key ))stop(); + __index++; //skip : + + + item = decodeValueInternal(); + if (events!=null) if(!events.objectField( __index, map, (CharSequenceValue) key, item ))stop(); + skipWhiteSpaceIfNeeded (); + + miv = new MapItemValue( key, item ); + + map.add( miv ); + + startIndexOfKey = __index; + if ( __currentChar == '}' ) { + __index++; + break done; + } + + break; + + case '\'': + key = decodeStringSingle( ); + + + if (events!=null) if(!events.objectFieldName( __index, map, (CharSequenceValue) key ))stop(); + + skipWhiteSpaceIfNeeded (); + + if ( __currentChar != ':' ) { + + complain( "expecting current character to be ':' but got " + charDescription( __currentChar ) + "\n" ); + } + __index++; + item = decodeValueInternal(); + + if (events!=null) if (!events.objectField( __index, map, ( CharSequenceValue ) key, item ))stop(); + + + skipWhiteSpaceIfNeeded (); + + miv = new MapItemValue( key, item ); + + map.add( miv ); + startIndexOfKey = __index; + if ( __currentChar == '}' ) { + __index++; + break done; + } + + break; + + case '"': + key = decodeStringDouble( ); + + if (events!=null) events.objectFieldName( __index, map, (CharSequenceValue) key ); + + skipWhiteSpaceIfNeeded (); + + if ( __currentChar != ':' ) { + + complain( "expecting current character to be ':' but got " + charDescription( __currentChar ) + "\n" ); + } + __index++; + item = decodeValueInternal(); + + if (events!=null) if(!events.objectField( __index, map, (CharSequenceValue) key, item ))stop(); + + skipWhiteSpaceIfNeeded (); + + miv = new MapItemValue( key, item ); + + map.add( miv ); + startIndexOfKey = __index; + if ( __currentChar == '}' ) { + __index++; + break done; + } + + break; + + case '}': + __index++; + break done; + } + } + + + if (events!=null) if (!events.objectEnd( __index, map ))stop(); + return value; + } + + private Value extractLaxString( int startIndexOfKey, int end, boolean encoded, boolean checkDate ) { + char startChar; + startIndexLookup: + for (; startIndexOfKey < __index && startIndexOfKey < charArray.length; startIndexOfKey++ ) { + startChar = charArray[ startIndexOfKey ]; + switch ( startChar ) { + case ' ': + case '\n': + case '\t': + continue; + + default: + break startIndexLookup; + } + } + + char endChar; + int endIndex = end >= charArray.length ? charArray.length - 1 : end; + endIndexLookup: + for (; endIndex >= startIndexOfKey + 1 && endIndex >= 0; endIndex-- ) { + endChar = charArray[ endIndex ]; + switch ( endChar ) { + case ' ': + case '\n': + case '\t': + case '}': + continue; + case ',': + case ';': + continue; + + case ']': + continue; + default: + break endIndexLookup; + } + } + CharSequenceValue value = new CharSequenceValue ( chop, TypeType.STRING, startIndexOfKey, endIndex + 1, this.charArray, encoded, checkDate ); + if (events!=null) if (!events.string( startIndexOfKey, endIndex + 1, value ))stop(); + return value; + } + + + + Object root; + + + @Override + public Object parse( char[] chars ) { + lastIndex = chars.length -1; + + try { + + + __index = 0; + charArray = chars; + + Value value = decodeValueInternal( true ); + if (value.isContainer ()) { + return value.toValue (); + } else { + return value; + } + + } catch (StopException stop) { + return root; + } + + } + + + + + + protected final Value decodeValueInternal() { + return decodeValueInternal( false ); + } + protected final Value decodeValueInternal(boolean isRoot) { + Value value = null; + + for (; __index < charArray.length; __index++ ) { + skipWhiteSpaceIfNeeded (); + + switch ( __currentChar ) { + case '\n': + break; + + case '\r': + break; + + case ' ': + break; + + case '\t': + break; + + case '\b': + break; + + case '\f': + break; + + case '/': /* */ // + handleComment(); + break; + + case '#': + handleBashComment(); + break; + + case '"': + value = decodeStringDouble( ); + break; + + case '\'': + value = decodeStringSingle( ); + break; + + + case 't': + if ( isTrue() ) { + return decodeTrueWithEvents() == true ? ValueContainer.TRUE : ValueContainer.FALSE; + } else { + value = decodeStringLax(); + } + break; + + case 'f': + if ( isFalse() ) { + return decodeFalseWithEvents() == false ? ValueContainer.FALSE : ValueContainer.TRUE; + } else { + value = decodeStringLax(); + } + break; + + case 'n': + if ( isNull() ) { + return decodeNullWithEvents() == null ? ValueContainer.NULL : ValueContainer.NULL; + } else { + value = decodeStringLax(); + } + + break; + + case '[': + value = decodeJsonArrayLax(isRoot); + break; + + case '{': + value = decodeJsonObjectLax(isRoot); + break; + + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + case '0': + return decodeNumberLax (false); + + case '-': + return decodeNumberLax (true); + + default: + value = decodeStringLax(); + } + + if ( value != null ) { + return value; + } + } + + return null; + } + + + private void handleBashComment() { + for (; __index < charArray.length; __index++ ) { + __currentChar = charArray[ __index ]; + + if ( __currentChar == '\n' ) { + __index++; + return; + } + } + } + + private void handleComment() { + + if ( hasMore() ) { + __index++; + __currentChar = charArray[ __index ]; + + switch ( __currentChar ) { + case '*': + for (; __index < charArray.length; __index++ ) { + __currentChar = charArray[ __index ]; + + if ( __currentChar == '*' ) { + if ( hasMore() ) { + __index++; + __currentChar = charArray[ __index ]; + if ( __currentChar == '/' ) { + if ( hasMore() ) { + __index++; + return; + } + } + } else { + complain( "missing close of comment" ); + } + } + } + + case '/': + for (; __index < charArray.length; __index++ ) { + __currentChar = charArray[ __index ]; + + if ( __currentChar == '\n' ) { + if ( hasMore() ) { + __index++; + return; + } else { + return; + } + } + } + } + } + } + + protected final Value decodeNumberLax(boolean minus) { + + char[] array = charArray; + + final int startIndex = __index; + int index = __index; + char currentChar; + boolean doubleFloat = false; + + if (minus && index + 1 < array.length) { + index++; + } + + while (true) { + currentChar = array[index]; + if ( isNumberDigit ( currentChar )) { + //noop + } else if ( currentChar <= 32 ) { //white + break; + } else if ( isDelimiter ( currentChar ) ) { + break; + } else if ( isDecimalChar (currentChar) ) { + doubleFloat = true; + } + index++; + if (index >= array.length) break; + } + + __index = index; + __currentChar = currentChar; + + TypeType type = doubleFloat ? TypeType.DOUBLE : TypeType.INT; + + NumberValue value = new NumberValue ( chop, type, startIndex, __index, this.charArray ); + if (events!=null) if (!events.number( startIndex, __index, value ))stop(); + + return value; + } + + private boolean isNull() { + if ( __index + NULL.length <= charArray.length ) { + if ( charArray[ __index ] == 'n' && + charArray[ __index + 1 ] == 'u' && + charArray[ __index + 2 ] == 'l' && + charArray[ __index + 3 ] == 'l' ) { + return true; + } + } + return false; + } + + private boolean isTrue() { + if ( __index + TRUE.length <= charArray.length ) { + if ( charArray[ __index ] == 't' && + charArray[ __index + 1 ] == 'r' && + charArray[ __index + 2 ] == 'u' && + charArray[ __index + 3 ] == 'e' ) { + return true; + + } + } + return false; + } + + private boolean isFalse() { + if ( __index + FALSE.length <= charArray.length ) { + if ( charArray[ __index ] == 'f' && + charArray[ __index + 1 ] == 'a' && + charArray[ __index + 2 ] == 'l' && + charArray[ __index + 3 ] == 's' && + charArray[ __index + 4 ] == 'e' ) { + return true; + } + } + return false; + } + + private Value decodeStringLax() { + int index = __index; + char currentChar; + final int startIndex = __index; + boolean encoded = false; + char [] charArray = this.charArray; + + for (; index < charArray.length; index++ ) { + currentChar = charArray[ index ]; + + if (isDelimiter( currentChar )) break; + else if (currentChar == '\\') break; + } + + Value value = this.extractLaxString( startIndex, index, encoded, checkDates); + __index = index; + return value; + } + + private Value decodeStringDouble( ) { + + __currentChar = charArray[ __index ]; + + if ( __index < charArray.length && __currentChar == '"' ) { + __index++; + } + + final int startIndex = __index; + + boolean escape = false; + boolean encoded = false; + + done: + for (; __index < this.charArray.length; __index++ ) { + __currentChar = charArray[ __index ]; + switch ( __currentChar ) { + + case '"': + if ( !escape ) { + break done; + } else { + escape = false; + continue; + } + + case '\\': + if ( !escape ) { + escape = true; + } else { + escape = false; + } + encoded = true; + continue; + } + escape = false; + } + + CharSequenceValue value = new CharSequenceValue ( chop, TypeType.STRING, startIndex, __index, this.charArray, encoded, checkDates ); + + if ( __index < charArray.length ) { + __index++; + } + if (events!=null) if (!events.string( startIndex, __index, value )) stop(); + + return value; + } + + private Value decodeStringSingle( ) { + + __currentChar = charArray[ __index ]; + + if ( __index < charArray.length && __currentChar == '\'' ) { + __index++; + } + + final int startIndex = __index; + + boolean escape = false; + boolean encoded = false; + int minusCount = 0; + int colonCount = 0; + + done: + for (; __index < this.charArray.length; __index++ ) { + __currentChar = charArray[ __index ]; + switch ( __currentChar ) { + + case '\'': + if ( !escape ) { + break done; + } else { + escape = false; + continue; + } + + case '\\': + encoded = true; + escape = true; + continue; + + case '-': + minusCount++; + break; + case ':': + colonCount++; + break; + } + escape = false; + } + + boolean checkDates = this.checkDates && !encoded && minusCount >= 2 && colonCount >= 2; + + CharSequenceValue value = new CharSequenceValue ( chop, TypeType.STRING, startIndex, __index, this.charArray, encoded, checkDates ); + + if ( __index < charArray.length ) { + __index++; + } + + + if (events!=null) if (!events.string( startIndex, __index, value )) stop(); + return value; + } + + private Value decodeJsonArrayLax(boolean isRoot) { + + if (events!=null) if (!events.arrayStart( __index )) stop(); + + if ( __currentChar == '[' ) { + __index++; + } + + + skipWhiteSpaceIfNeeded (); + + if ( __currentChar == ']' ) { + __index++; + return EMPTY_LIST; + } + + List list; + + if ( useValues ) { + list = new ArrayList<>(); + } else { + list = new ValueList ( lazyChop ); + } + + if (events!=null && isRoot) { + root = list; + } + + Value value = new ValueContainer ( list ); + + do { + + skipWhiteSpaceIfNeeded (); + + Object arrayItem = decodeValueInternal(); + + + list.add( arrayItem ); + + if (events!=null) if (!events.arrayItem( __index, list, arrayItem )) stop(); + + skipWhiteSpaceIfNeeded (); + + char c = __currentChar; + + if ( c == ',' ) { + __index++; + continue; + } else if ( c == ']' ) { + __index++; + break; + } else { + String charString = charDescription( c ); + + complain( + String.format( "expecting a ',' or a ']', " + + " but got \nthe current character of %s " + + " on array index of %s \n", charString, list.size() ) + ); + } + } while ( this.hasMore() ); + + + if (events!=null) if (!events.arrayEnd( __index, list )) stop(); + return value; + } + + + public static class StopException extends JsonException { + public StopException( String message ) { + super( message ); + } + + } + private void stop () { + throw new StopException( "STOPPED BY EVENT HANDLER at index " + __index ); + } + + + protected final boolean decodeTrueWithEvents() { + + if ( __index + TRUE.length <= charArray.length ) { + if ( charArray[ __index ] == 't' && + charArray[ ++__index ] == 'r' && + charArray[ ++__index ] == 'u' && + charArray[ ++__index ] == 'e' ) { + + if (events!=null) if (!events.bool( __index, true )) stop(); + + __index++; + return true; + + } + } + + throw new JsonException( exceptionDetails( "true not parsed properly" ) ); + } + + + + protected final boolean decodeFalseWithEvents() { + + if ( __index + FALSE.length <= charArray.length ) { + if ( charArray[ __index ] == 'f' && + charArray[ ++__index ] == 'a' && + charArray[ ++__index ] == 'l' && + charArray[ ++__index ] == 's' && + charArray[ ++__index ] == 'e' ) { + if (events!=null) if (!events.bool( __index, false )) stop(); + + __index++; + + return false; + } + } + throw new JsonException( exceptionDetails( "false not parsed properly" ) ); + } + + + + + protected final Object decodeNullWithEvents() { + + if ( __index + NULL.length <= charArray.length ) { + if ( charArray[ __index ] == 'n' && + charArray[ ++__index ] == 'u' && + charArray[ ++__index ] == 'l' && + charArray[ ++__index ] == 'l' ) { + __index++; + if (events!=null) if (!events.nullValue( __index )) stop(); + + return null; + } + } + throw new JsonException( exceptionDetails( "null not parse properly" ) ); + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonParserUsingCharacterSource.java b/datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonParserUsingCharacterSource.java new file mode 100644 index 0000000..25e5f48 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonParserUsingCharacterSource.java @@ -0,0 +1,448 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.implementation; + +import org.boon.Boon; +import org.boon.collections.LazyMap; +import org.boon.core.reflection.BeanUtils; +import org.boon.json.JsonException; +import org.boon.primitive.*; + +import java.io.*; +import java.nio.charset.Charset; +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; + + + +/** + * Converts an input JSON String into Java objects works with String or char array + * as input. Produces an Object which can be any of the basic JSON types mapped + * to Java. + *

+ */ +public class JsonParserUsingCharacterSource extends BaseJsonParser { + + private CharacterSource characterSource; + + public JsonParserUsingCharacterSource() { + } + + + + + + + + protected String exceptionDetails( String message ) { + return characterSource.errorDetails ( message ); + } + + + protected final Object decodeJsonObject() { + LazyMap map = new LazyMap (); + + try { + + CharacterSource characterSource = this.characterSource; + + if ( characterSource.currentChar() == '{' ) { + characterSource.nextChar(); + } + + + while (characterSource.hasChar()) { + + characterSource.skipWhiteSpace (); + + + if ( characterSource.currentChar () == DOUBLE_QUOTE ) { + + String key = decodeString(); + //puts ("key", key); + + if ( internKeys ) { + String keyPrime = internedKeysCache.get( key ); + if ( keyPrime == null ) { + key = key.intern(); + internedKeysCache.put( key, key ); + } else { + key = keyPrime; + } + } + + characterSource.skipWhiteSpace (); + if ( characterSource.currentChar() != COLON ) { + + complain( "expecting current character to be : but was " + charDescription( characterSource.currentChar() ) + "\n" ); + } + + characterSource.nextChar (); + + characterSource.skipWhiteSpace(); + + Object value = decodeValue(); + + + + characterSource.skipWhiteSpace(); + + map.put( key, value ); + + + } + + int ch = characterSource.currentChar(); + if ( ch == '}' ) { + characterSource.nextChar(); + break; + } else if ( ch == ',' ) { + characterSource.nextChar(); + continue; + } else { + complain( + "expecting '}' or ',' but got current char " + charDescription( ch ) ); + + } + } + } catch (Exception ex) { + if (ex instanceof JsonException) { + throw ex; + } + throw new JsonException ( exceptionDetails ( "Unable to parse JSON object" ), ex ); + } + + + return map; + } + + + protected final void complain( String complaint ) { + throw new JsonException( exceptionDetails( complaint ) ); + } + + + + private final Object decodeValue() { + CharacterSource characterSource = this.characterSource; + Object value = null; + characterSource.skipWhiteSpace (); + + switch ( characterSource.currentChar () ) { + + case '"': + value = decodeString(); + break; + + + case 't': + value = decodeTrue(); + break; + + case 'f': + value = decodeFalse(); + break; + + case 'n': + value = decodeNull(); + break; + + case '[': + value = decodeJsonArray(); + break; + + case '{': + value = decodeJsonObject(); + break; + + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + value = decodeNumber(false); + break; + + case '-': + value = decodeNumber(true); + break; + + default: + throw new JsonException( exceptionDetails( "Unable to determine the " + + "current character, it is not a string, number, array, or object" ) ); + + } + + return value; + } + + + + + private final Object decodeNumber(boolean negative) { + + char[] chars = characterSource.readNumber (); + Object value = null; + + if ( CharScanner.hasDecimalChar ( chars, negative ) ) { + value = CharScanner.parseDouble( chars ); + } else if (CharScanner.isInteger ( chars )) { + value = CharScanner.parseInt ( chars ); + } else if (CharScanner.isLong( chars )) { + value = CharScanner.parseLong ( chars ); + } + + return value; + } + + + + protected static final char[] NULL = Chr.chars ( "null" ); + + protected final Object decodeNull() { + if ( !characterSource.consumeIfMatch ( NULL ) ) { + throw new JsonException( exceptionDetails( "null not parse properly" ) ); + } + return null; + } + + + protected static final char[] TRUE = Chr.chars( "true" ); + + protected final boolean decodeTrue() { + + if ( characterSource.consumeIfMatch ( TRUE ) ) { + return true; + } else { + throw new JsonException( exceptionDetails( "true not parsed properly" ) ); + } + } + + + protected static char[] FALSE = Chr.chars( "false" ); + + protected final boolean decodeFalse() { + + if ( characterSource.consumeIfMatch ( FALSE ) ) { + return false; + } else { + throw new JsonException( exceptionDetails( "false not parsed properly" ) ); + } + + } + + + + private CharBuf builder = CharBuf.create( 20 ); + + private String decodeString() { + + CharacterSource characterSource = this.characterSource; + + + characterSource.nextChar(); + + + char [] chars = characterSource.findNextChar ( '"', '\\' ); + + + + String value = null; + if ( characterSource.hadEscape() ) { + value = builder.decodeJsonString ( chars ).toString (); + builder.recycle (); + } else { + value = new String( chars ); + } + + return value; + } + + + protected final List decodeJsonArray() { + + ArrayList list = null; + + boolean foundEnd = false; + try { + + + CharacterSource characterSource = this.characterSource; + + if ( this.characterSource.currentChar() == '[' ) { + characterSource.nextChar(); + } + + + characterSource.skipWhiteSpace (); + + + + /* the list might be empty */ + if ( this.characterSource.currentChar() == ']' ) { + characterSource.nextChar(); + return Collections.EMPTY_LIST; + } + + list = new ArrayList(); + + + + do { + + characterSource.skipWhiteSpace (); + + Object arrayItem = decodeValue (); + + list.add( arrayItem ); + + + + characterSource.skipWhiteSpace (); + + int c = characterSource.currentChar(); + + if ( c == COMMA ) { + characterSource.nextChar(); + continue; + } else if ( c == CLOSED_BRACKET ) { + foundEnd = true; + characterSource.nextChar(); + break; + } else { + + String charString = charDescription( c ); + + complain( + String.format( "expecting a ',' or a ']', " + + " but got \nthe current character of %s " + + " on array index of %s \n", charString, list.size() ) + ); + + } + } while ( characterSource.hasChar () ); + + + } catch (Exception ex) { + if (ex instanceof JsonException) { + throw ex; + } + + throw new JsonException (exceptionDetails("Unexpected issue"), ex ); + } + + if (!foundEnd) { + throw new JsonException (exceptionDetails("Could not find end of JSON array") ); + + } + return list; + + } + + + + + + @Override + public Object parse ( char[] chars ) { + characterSource = new CharArrayCharacterSource ( chars ); + return decodeValue (); + } + + + + + + + @Override + public Object parse( Reader reader ) { + + if (reader instanceof StringReader) { + try { + String str = BeanUtils.idxStr(reader, "str"); + int length = BeanUtils.idxInt(reader, "length"); + int next = BeanUtils.idxInt(reader, "next"); + + if (str!= null && next == 0 && length == str.length()) { + return parse(str); + } + } catch (Exception ex) { + Boon.logger("JSON PARSER").fatal(ex); + } + } + + + characterSource = new ReaderCharacterSource ( reader ); + return this.decodeValue (); + + } + + + @Override + public Object parse ( byte[] value, Charset charset ) { + if (value.length < 20_000) { + characterSource = new CharArrayCharacterSource ( new String ( value, charset ) ); + return this.decodeValue (); + + } else { + return parse(new InMemoryInputStream(value), charset); + } + } + + + IOInputStream ioInputStream; + + @Override + public Object parse ( InputStream inputStream, Charset charset ) { + + if (inputStream instanceof ByteArrayInputStream ) { + + return parse ( new InputStreamReader( inputStream, charset ) ); + + } else { + ioInputStream = IOInputStream.input(ioInputStream, 50_000).input(inputStream); + return parse ( new InputStreamReader( ioInputStream, charset ) ); + + } + + + + } + + + + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonStringDecoder.java b/datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonStringDecoder.java new file mode 100644 index 0000000..de2c3c8 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonStringDecoder.java @@ -0,0 +1,69 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.implementation; + +import org.boon.primitive.CharBuf; +import org.boon.primitive.Chr; + +public class JsonStringDecoder { + + + + + + + public static String decode( char[] chars, int start, int to ) { + + if ( !Chr.contains( chars, '\\', start, to - start ) ) { + return new String( chars, start, to - start ); + } + return decodeForSure( chars, start, to ); + } + + + + public static String decodeForSure( char[] chars, int start, int to ) { + + CharBuf builder = CharBuf.create( to - start ); + builder.decodeJsonString(chars, start, to); + return builder.toString(); + + } + + + public static String decodeForSure( CharBuf charBuf, char[] chars, int start, int to ) { + + charBuf.recycle(); + + charBuf.decodeJsonString(chars, start, to); + return charBuf.toString(); + + } + +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonUTF8Parser.java b/datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonUTF8Parser.java new file mode 100644 index 0000000..2b58067 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/implementation/JsonUTF8Parser.java @@ -0,0 +1,77 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.implementation; + + +import org.boon.primitive.ByteScanner; + + + +public class JsonUTF8Parser extends JsonBaseByteArrayParser { + + + + + + protected final String decodeString() { + + byte[] array = charArray; + int index = __index; + int currentChar = array[index]; + + if ( index < array.length && currentChar == DOUBLE_QUOTE ) { + index++; + } + + final int startIndex = index; + + + boolean encoded = ByteScanner.hasEscapeCharUTF8(array, index, indexHolder); + index = indexHolder[0]; + + + + String value = null; + if ( encoded ) { + index = ByteScanner.findEndQuoteUTF8( array, index); + value = builder.decodeJsonString ( array, startIndex, index ).toString (); + builder.recycle (); + } else { + value = new String( array, startIndex, ( index - startIndex ) ); + } + + if ( index < charArray.length ) { + index++; + } + __index = index; + return value; + } + +} + diff --git a/datastructures-json-boon/src/main/java/org/boon/json/implementation/ObjectMapperImpl.java b/datastructures-json-boon/src/main/java/org/boon/json/implementation/ObjectMapperImpl.java new file mode 100644 index 0000000..bc27549 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/implementation/ObjectMapperImpl.java @@ -0,0 +1,325 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.implementation; + +import org.boon.Exceptions; +import org.boon.IO; +import org.boon.json.*; + +import java.io.*; +import java.nio.charset.Charset; +import java.nio.charset.StandardCharsets; +import java.util.*; + + +public class ObjectMapperImpl implements ObjectMapper { + + + private final JsonParserFactory parserFactory; + private final JsonSerializerFactory serializerFactory; + + public ObjectMapperImpl (JsonParserFactory parserFactory, JsonSerializerFactory serializerFactory) { + + this.parserFactory = parserFactory; + this.serializerFactory = serializerFactory; + + } + + public ObjectMapperImpl () { + + this.parserFactory = new JsonParserFactory(); + this.serializerFactory = new JsonSerializerFactory(); + + this.serializerFactory.useFieldsOnly(); + + } + + + @Override + public T readValue( final String src, final Class valueType ) { + + return this.parserFactory.create().parse( valueType, src ); + } + + @Override + public T readValue( File src, Class valueType ) { + + return this.parserFactory.create().parseFile( valueType, src.toString() ); + } + + @Override + public T readValue( byte[] src, Class valueType ) { + return this.parserFactory.create().parse( valueType, src ); + } + + @Override + public T readValue( char[] src, Class valueType ) { + return this.parserFactory.create().parse( valueType, src ); + } + + @Override + public T readValue( Reader src, Class valueType ) { + return this.parserFactory.create().parse( valueType, src ); + } + + @Override + public T readValue( InputStream src, Class valueType ) { + return this.parserFactory.create().parse( valueType, src ); + } + + @Override + public , C> T readValue( String src, Class valueType, Class componentType ) { + + Class type = valueType; + if (type == List.class) { + return(T) this.parserFactory.create().parseList( componentType, src ); + } else if (type == Set.class) { + return (T) new HashSet(this.parserFactory.create().parseList( componentType, src )); + } else if (type == LinkedHashSet.class) { + return (T) new LinkedHashSet<>(this.parserFactory.create().parseList( componentType, src )); + } else { + return(T) this.parserFactory.create().parseList( componentType, src ); + } + } + + @Override + public , C> T readValue( File src, Class valueType, Class componentType ) { + Class type = valueType; + if (type == List.class) { + return(T) this.parserFactory.create().parseListFromFile( componentType, src.toString() ); + } else if (type == Set.class) { + return (T) new HashSet(this.parserFactory.create().parseListFromFile( componentType, src.toString() )); + } else if (type == LinkedHashSet.class) { + return (T) new LinkedHashSet<>(this.parserFactory.create().parseListFromFile( componentType, src.toString() )); + } else { + return(T) this.parserFactory.create().parseListFromFile( componentType, src.toString() ); + } + } + + @Override + public , C> T readValue( byte[] src, Class valueType, Class componentType ) { + Class type = valueType; + if (type == List.class) { + return(T) this.parserFactory.create().parseList( componentType, src ); + } else if (type == Set.class) { + return (T) new HashSet(this.parserFactory.create().parseList( componentType, src )); + } else if (type == LinkedHashSet.class) { + return (T) new LinkedHashSet<>(this.parserFactory.create().parseList( componentType, src )); + } else { + return(T) this.parserFactory.create().parseList( componentType, src ); + } + } + + @Override + public , C> T readValue( char[] src, Class valueType, Class componentType ) { + Class type = valueType; + if (type == List.class) { + return(T) this.parserFactory.create().parseList( componentType, src ); + } else if (type == Set.class) { + return (T) new HashSet(this.parserFactory.create().parseList( componentType, src )); + } else if (type == LinkedHashSet.class) { + return (T) new LinkedHashSet<>(this.parserFactory.create().parseList( componentType, src )); + } else { + return(T) this.parserFactory.create().parseList( componentType, src ); + } + } + + @Override + public , C> T readValue( Reader src, Class valueType, Class componentType ) { + Class type = valueType; + if (type == List.class) { + return(T) this.parserFactory.create().parseList( componentType, src ); + } else if (type == Set.class) { + return (T) new HashSet(this.parserFactory.create().parseList( componentType, src )); + } else if (type == LinkedHashSet.class) { + return (T) new LinkedHashSet<>(this.parserFactory.create().parseList( componentType, src )); + } else { + return(T) this.parserFactory.create().parseList( componentType, src ); + } + } + + @Override + public , C> T readValue( InputStream src, Class valueType, Class componentType ) { + Class type = valueType; + if (type == List.class) { + return(T) this.parserFactory.create().parseList( componentType, src ); + } else if (type == Set.class) { + return (T) new HashSet(this.parserFactory.create().parseList( componentType, src )); + } else if (type == LinkedHashSet.class) { + return (T) new LinkedHashSet<>(this.parserFactory.create().parseList( componentType, src )); + } else { + return(T) this.parserFactory.create().parseList( componentType, src ); + } + } + + @Override + public , C> T readValue( byte[] src, Charset charset, Class valueType, Class componentType ) { + Class type = valueType; + if (type == List.class) { + return(T) this.parserFactory.create().parseList( componentType, src, charset ); + } else if (type == Set.class) { + return (T) new HashSet(this.parserFactory.create().parseList( componentType, src, charset )); + } else if (type == LinkedHashSet.class) { + return (T) new LinkedHashSet<>(this.parserFactory.create().parseList( componentType, src, charset )); + } else { + return(T) this.parserFactory.create().parseList( componentType, src, charset ); + } + } + + @Override + public , C> T readValue( InputStream src, Charset charset, Class valueType, Class componentType ) { + Class type = valueType; + if (type == List.class) { + return(T) this.parserFactory.create().parseList( componentType, src, charset ); + } else if (type == Set.class) { + return (T) new HashSet(this.parserFactory.create().parseList( componentType, src, charset )); + } else if (type == LinkedHashSet.class) { + return (T) new LinkedHashSet<>(this.parserFactory.create().parseList( componentType, src, charset )); + } else { + return(T) this.parserFactory.create().parseList( componentType, src, charset ); + } + } + + @Override + public void writeValue( File dest, Object value ) { + IO.write( IO.path( dest.toString() ), serializerFactory.create().serialize( value ).toString()); + } + + @Override + public void writeValue( OutputStream dest, Object value ) { + + IO.writeNoClose( dest, serializerFactory.create().serialize( value ).toString() ); + } + + @Override + public void writeValue( Writer dest, Object value ) { + + char [] chars = serializerFactory.create().serialize( value ).toCharArray(); + + try { + dest.write( chars ); + } catch ( IOException e ) { + Exceptions.handle( e ); + } + } + + @Override + public String writeValueAsString( Object value ) { + return serializerFactory.create().serialize( value ).toString(); + } + + @Override + public char[] writeValueAsCharArray( Object value ) { + return serializerFactory.create().serialize( value ).toCharArray(); + } + + @Override + public byte[] writeValueAsBytes( Object value ) { + return serializerFactory.create().serialize( value ).toString().getBytes( StandardCharsets.UTF_8 ); + } + + @Override + public byte[] writeValueAsBytes( Object value, Charset charset ) { + return serializerFactory.create().serialize( value ).toString().getBytes( charset ); + } + + @Override + public JsonParserAndMapper parser() { + return parserFactory.create(); + } + + @Override + public JsonSerializer serializer() { + return serializerFactory.create(); + } + + @Override + public String toJson( Object value ) { + return this.writeValueAsString ( value ); + } + + @Override + public void toJson( Object value, Appendable appendable ) { + try { + appendable.append ( this.writeValueAsString ( value ) ); + } catch ( IOException e ) { + Exceptions.handle ( e ); + } + } + + @Override + public T fromJson( String json, Class clazz ) { + return readValue ( json, clazz ); + } + + @Override + public T fromJson( byte[] bytes, Class clazz ) { + return readValue ( bytes, clazz ); + } + + @Override + public T fromJson( char[] chars, Class clazz ) { + return readValue ( chars, clazz ); + } + + @Override + public T fromJson( Reader reader, Class clazz ) { + return readValue ( reader, clazz ); + } + + @Override + public T fromJson( InputStream inputStream, Class clazz ) { + return readValue ( inputStream, clazz ); + } + + @Override + public Object fromJson( String json ) { + return parser().parse(json); + } + + @Override + public Object fromJson( Reader reader ) { + return parser().parse(reader); + } + + @Override + public Object fromJson( byte[] bytes ) { + return parser().parse(bytes); + } + + @Override + public Object fromJson( char[] chars ) { + return parser().parse(chars); + } + + @Override + public Object fromJson( InputStream reader ) { + return parser().parse(reader); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/implementation/PlistParser.java b/datastructures-json-boon/src/main/java/org/boon/json/implementation/PlistParser.java new file mode 100644 index 0000000..f56d475 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/implementation/PlistParser.java @@ -0,0 +1,567 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.implementation; + +import org.boon.core.TypeType; +import org.boon.core.Value; +import org.boon.core.value.*; + +import java.util.ArrayList; +import java.util.List; + +import static org.boon.primitive.CharScanner.*; + +/** + * Created by rick on 12/21/13. + */ +public class PlistParser extends JsonFastParser { + + + protected static final int CLOSED_PAREN = ')'; + protected static final int SEMI_COLON = ';'; + + + public PlistParser() { + } + + public PlistParser( boolean useValues ) { + super ( useValues ); + } + + public PlistParser( boolean useValues, boolean chop ) { + super ( useValues, chop ); + } + + public PlistParser( boolean useValues, boolean chop, boolean lazyChop ) { + super ( useValues, chop, lazyChop ); + } + + public PlistParser( boolean useValues, boolean chop, boolean lazyChop, boolean checkDates ) { + super ( useValues, chop, lazyChop, checkDates ); + } + + private Value decodeJsonObjectLax() { + + if ( __currentChar == '{' ) + this.nextChar(); + + ValueMap map = useValues ? new ValueMapImpl() : new LazyValueMap( lazyChop ); + Value value = new ValueContainer ( map ); + + skipWhiteSpaceIfNeeded (); + int startIndexOfKey = __index; + Value key; + MapItemValue miv; + Value item; + + done: + for (; __index < this.charArray.length; __index++ ) { + + skipWhiteSpaceIfNeeded (); + + switch ( __currentChar ) { + case '/': /* */ // + handleComment(); + startIndexOfKey = __index; + break; + + case '#': + handleBashComment(); + startIndexOfKey = __index; + break; + + case '=': + + char startChar = charArray[ startIndexOfKey ]; + if ( startChar == ';' ) { + startIndexOfKey++; + } + + + key = extractLaxString( startIndexOfKey, __index - 1, false, false ); + __index++; //skip : + + + item = decodeValuePlist(); + skipWhiteSpaceIfNeeded (); + + miv = new MapItemValue( key, item ); + + map.add( miv ); + + startIndexOfKey = __index; + if ( __currentChar == '}' ) { + __index++; + break done; + } + + break; + + case '"': + key = decodeStringPlist( ); + + + skipWhiteSpaceIfNeeded (); + + if ( __currentChar != '=' ) { + + complain( "expecting current character to be '=' but got " + charDescription( __currentChar ) + "\n" ); + } + __index++; + item = decodeValuePlist(); + + + skipWhiteSpaceIfNeeded (); + miv = new MapItemValue( key, item ); + + map.add( miv ); + + startIndexOfKey = __index; + if ( __currentChar == '}' ) { + __index++; + if ( hasMore() ) { + if ( charArray[ __index ] == ';' ) { + __index++; + } + } + break done; + } + + break; + + + case '}': + __index++; + if ( hasMore() ) { + if ( charArray[ __index ] == ';' ) { + __index++; + } + } + break done; + } + } + + return value; + } + + private Value extractLaxString( int startIndexOfKey, int end, boolean encoded, boolean checkDate ) { + char startChar; + startIndexLookup: + for (; startIndexOfKey < __index && startIndexOfKey < charArray.length; startIndexOfKey++ ) { + startChar = charArray[ startIndexOfKey ]; + switch ( startChar ) { + case ' ': + case '\n': + case '\t': + continue; + + default: + break startIndexLookup; + } + } + + char endChar; + int endIndex = end >= charArray.length ? charArray.length - 1 : end; + endIndexLookup: + for (; endIndex >= startIndexOfKey + 1 && endIndex >= 0; endIndex-- ) { + endChar = charArray[ endIndex ]; + switch ( endChar ) { + case ' ': + case '\n': + case '\t': + case '}': + continue; + case ',': + case ';': + continue; + + case ')': + continue; + default: + break endIndexLookup; + } + } + return new CharSequenceValue ( chop, TypeType.STRING, startIndexOfKey, endIndex + 1, this.charArray, encoded, checkDate ); + } + + private Value decodeValuePlist() { + Value value = null; + + for (; __index < charArray.length; __index++ ) { + skipWhiteSpaceIfNeeded (); + + switch ( __currentChar ) { + + case '/': /* */ // + handleComment(); + break; + + case '#': + handleBashComment(); + break; + + case '"': + value = decodeStringPlist( ); + break; + + case 't': + if ( isTrue() ) { + return decodeTrue() == true ? ValueContainer.TRUE : ValueContainer.FALSE; + } else { + value = decodeStringLax(); + } + break; + + case 'f': + if ( isFalse() ) { + return decodeFalse() == false ? ValueContainer.FALSE : ValueContainer.TRUE; + } else { + value = decodeStringLax(); + } + break; + + case 'n': + if ( isNull() ) { + return decodeNull() == null ? ValueContainer.NULL : ValueContainer.NULL; + } else { + value = decodeStringLax(); + } + + break; + + case '(': + value = decodeJsonArrayLax(); + break; + + case '{': + value = decodeJsonObjectLax(); + break; + + + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + value = decodeNumberPLIST( false ); + break; + case '-': + value = decodeNumberPLIST( true ); + break; + + default: + value = decodeStringLax(); + + } + + if ( value != null ) { + return value; + } + } + + return null; + } + + private void handleBashComment() { + for (; __index < charArray.length; __index++ ) { + __currentChar = charArray[ __index ]; + + if ( __currentChar == '\n' ) { + __index++; + return; + } + } + } + + private void handleComment() { + + + if ( hasMore() ) { + + __index++; + __currentChar = charArray[ __index ]; + + switch ( __currentChar ) { + case '*': + for (; __index < charArray.length; __index++ ) { + __currentChar = charArray[ __index ]; + + if ( __currentChar == '*' ) { + if ( hasMore() ) { + __index++; + __currentChar = charArray[ __index ]; + if ( __currentChar == '/' ) { + if ( hasMore() ) { + __index++; + return; + } + } + } else { + complain( "missing close of comment" ); + } + } + + + } + + case '/': + for (; __index < charArray.length; __index++ ) { + __currentChar = charArray[ __index ]; + + if ( __currentChar == '\n' ) { + if ( hasMore() ) { + __index++; + return; + } else { + return; + } + } + } + } + + } + + + } + + + + + protected static boolean isPLISTDelimiter( int c ) { + + return c == SEMI_COLON || c == CLOSED_CURLY || c == CLOSED_PAREN || c == COMMA; + } + + protected Value decodeNumberPLIST( boolean minus ) { + char[] array = charArray; + + final int startIndex = __index; + int index = __index; + char currentChar; + boolean doubleFloat = false; + + if ( minus && index + 1 < array.length ) { + index++; + } + + + while ( true ) { + currentChar = array[ index ]; + if ( isNumberDigit( currentChar ) ) { + //noop + } else if ( currentChar <= 32 ) { //white + break; + } else if ( isPLISTDelimiter( currentChar ) ) { + break; + } else if ( isDecimalChar( currentChar ) ) { + doubleFloat = true; + } + index++; + if ( index >= array.length ) break; + } + + __index = index; + __currentChar = currentChar; + + TypeType type = doubleFloat ? TypeType.DOUBLE : TypeType.INT; + + NumberValue value = new NumberValue ( chop, type, startIndex, __index, this.charArray ); + + return value; + } + + private boolean isNull() { + + if ( __index + NULL.length <= charArray.length ) { + if ( charArray[ __index ] == 'n' && + charArray[ __index + 1 ] == 'u' && + charArray[ __index + 2 ] == 'l' && + charArray[ __index + 3 ] == 'l' ) { + return true; + } + } + return false; + } + + private boolean isTrue() { + + if ( __index + TRUE.length <= charArray.length ) { + if ( charArray[ __index ] == 't' && + charArray[ __index + 1 ] == 'r' && + charArray[ __index + 2 ] == 'u' && + charArray[ __index + 3 ] == 'e' ) { + return true; + + } + } + return false; + } + + private boolean isFalse() { + + if ( __index + FALSE.length <= charArray.length ) { + if ( charArray[ __index ] == 'f' && + charArray[ __index + 1 ] == 'a' && + charArray[ __index + 2 ] == 'l' && + charArray[ __index + 3 ] == 's' && + charArray[ __index + 4 ] == 'e' ) { + return true; + } + } + return false; + } + + private Value decodeStringLax() { + int index = __index; + char currentChar = charArray[ __index ]; + final int startIndex = __index; + boolean encoded = false; + char [] charArray = this.charArray; + + for (; index < charArray.length; index++ ) { + currentChar = charArray[ index ]; + + if (isPLISTDelimiter( currentChar )) break; + else if (currentChar == '\\') break; + } + + Value value = this.extractLaxString( startIndex, index, encoded, checkDates ); + + __index = index; + return value; + } + + private Value decodeStringPlist( ) { + + char[] array = charArray; + int index = __index; + char currentChar = charArray[index]; + + if ( index < array.length && currentChar == '"' ) { + index++; + } + + final int startIndex = index; + + boolean encoded = hasEscapeChar ( array, index, indexHolder ); + index = indexHolder[0]; + + if (encoded) { + index = findEndQuote ( array, index ); + } + + Value value = new CharSequenceValue ( chop, TypeType.STRING, startIndex, index, array, encoded, checkDates ); + + if ( index < array.length ) { + index++; + } + + __index = index; + return value; + } + + private Value decodeJsonArrayLax() { + + if ( __currentChar == '(' ) { + __index++; + } + + skipWhiteSpaceIfNeeded (); + + /* the list might be empty */ + if ( __currentChar == ')' ) { + __index++; + return EMPTY_LIST; + } + + List list; + + if ( useValues ) { + list = new ArrayList<>(); + } else { + list = new ValueList( lazyChop ); + } + + Value value = new ValueContainer ( list ); + + skipWhiteSpaceIfNeeded (); + + do { + skipWhiteSpaceIfNeeded (); + + Object arrayItem = decodeValuePlist(); + + list.add( arrayItem ); + + skipWhiteSpaceIfNeeded (); + + char c = __currentChar; + + if ( c == ',' ) { + __index++; + continue; + } else if ( c == ')' ) { + __index++; + break; + } else { + + String charString = charDescription( c ); + + complain( + String.format( "expecting a ',' or a ')', " + + " but got \nthe current character of %s " + + " on array index of %s \n", charString, list.size() ) + ); + + } + } while ( this.hasMore() ); + + return value; + } + + + public Object parse( char[] chars ) { + lastIndex = chars.length -1; + __index = 0; + charArray = chars; + + Value value = decodeValuePlist(); + if (value.isContainer ()) { + return value.toValue (); + } else { + return value; + } + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/serializers/ArraySerializer.java b/datastructures-json-boon/src/main/java/org/boon/json/serializers/ArraySerializer.java new file mode 100644 index 0000000..9052e02 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/serializers/ArraySerializer.java @@ -0,0 +1,41 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.serializers; + +import org.boon.json.JsonSerializer; +import org.boon.primitive.CharBuf; + +/** + * Created by rick on 1/1/14. + */ +public interface ArraySerializer { + + void serializeArray(JsonSerializerInternal serializer, Object instance, CharBuf builder ) ; + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/serializers/CollectionSerializer.java b/datastructures-json-boon/src/main/java/org/boon/json/serializers/CollectionSerializer.java new file mode 100644 index 0000000..f107b8b --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/serializers/CollectionSerializer.java @@ -0,0 +1,42 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.serializers; + +import org.boon.json.JsonSerializer; +import org.boon.primitive.CharBuf; + +import java.util.Collection; + +/** + * Created by rick on 1/1/14. + */ +public interface CollectionSerializer { + void serializeCollection(JsonSerializerInternal serializer, Collection collection, CharBuf builder ); + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/serializers/CustomFieldSerializer.java b/datastructures-json-boon/src/main/java/org/boon/json/serializers/CustomFieldSerializer.java new file mode 100644 index 0000000..b6cab76 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/serializers/CustomFieldSerializer.java @@ -0,0 +1,41 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.serializers; + +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.primitive.CharBuf; + +/** + * Created by rick on 1/2/14. + */ +public interface CustomFieldSerializer { + + boolean serializeField(JsonSerializerInternal serializer, Object parent, FieldAccess fieldAccess, CharBuf builder ); + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/serializers/CustomObjectSerializer.java b/datastructures-json-boon/src/main/java/org/boon/json/serializers/CustomObjectSerializer.java new file mode 100644 index 0000000..ee63b3f --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/serializers/CustomObjectSerializer.java @@ -0,0 +1,42 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.serializers; + +import org.boon.primitive.CharBuf; + +/** + * Created by rick on 1/2/14. + */ +public interface CustomObjectSerializer { + + Class type(); + + void serializeObject(JsonSerializerInternal serializer, T instance, CharBuf builder ); + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/serializers/DateSerializer.java b/datastructures-json-boon/src/main/java/org/boon/json/serializers/DateSerializer.java new file mode 100644 index 0000000..d61ad8d --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/serializers/DateSerializer.java @@ -0,0 +1,43 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.serializers; + +import org.boon.json.JsonSerializer; +import org.boon.primitive.CharBuf; + +import java.util.Date; + +/** + * Created by rick on 1/1/14. + */ +public interface DateSerializer { + + void serializeDate (JsonSerializerInternal jsonSerializer, Date date, CharBuf builder ); + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/serializers/FieldFilter.java b/datastructures-json-boon/src/main/java/org/boon/json/serializers/FieldFilter.java new file mode 100644 index 0000000..477c5af --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/serializers/FieldFilter.java @@ -0,0 +1,38 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.serializers; + +import org.boon.core.reflection.fields.FieldAccess; + +/** + * Created by rick on 1/2/14. + */ +public interface FieldFilter { + boolean include (Object parent, FieldAccess fieldAccess); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/serializers/FieldSerializer.java b/datastructures-json-boon/src/main/java/org/boon/json/serializers/FieldSerializer.java new file mode 100644 index 0000000..2c90c12 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/serializers/FieldSerializer.java @@ -0,0 +1,42 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.serializers; + +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.json.JsonSerializer; +import org.boon.primitive.CharBuf; + +/** + * Created by rick on 1/1/14. + */ +public interface FieldSerializer { + + boolean serializeField(JsonSerializerInternal serializer, Object parent, FieldAccess fieldAccess, CharBuf builder ); + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/serializers/InstanceSerializer.java b/datastructures-json-boon/src/main/java/org/boon/json/serializers/InstanceSerializer.java new file mode 100644 index 0000000..c3bcb49 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/serializers/InstanceSerializer.java @@ -0,0 +1,42 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.serializers; + +import org.boon.json.serializers.impl.JsonSerializerImpl; +import org.boon.primitive.CharBuf; + +/** + * Created by rick on 1/1/14. + */ +public interface InstanceSerializer { + void serializeInstance(JsonSerializerInternal serializer, Object instance, CharBuf builder ); + void serializeSubtypeInstance( JsonSerializerInternal serializer, Object instance, CharBuf builder ); + + void serializeInstance(JsonSerializerImpl jsonSerializer, Object obj, CharBuf builder, boolean includeTypeInfo); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/serializers/JsonSerializerInternal.java b/datastructures-json-boon/src/main/java/org/boon/json/serializers/JsonSerializerInternal.java new file mode 100644 index 0000000..733018a --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/serializers/JsonSerializerInternal.java @@ -0,0 +1,72 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.serializers; + +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.json.JsonSerializer; +import org.boon.primitive.CharBuf; + +import java.util.Collection; +import java.util.Date; +import java.util.Map; + +/** + * Created by rick on 1/2/14. + */ +public interface JsonSerializerInternal extends JsonSerializer { + + CharBuf serialize ( Object obj ); + + void serializeDate ( Date date, CharBuf builder ); + + + void serializeString ( String obj, CharBuf builder ); + + void serializeCollection ( Collection collection, CharBuf builder ); + + void serializeMap ( Map map, CharBuf builder ); + + void serializeArray ( Object array, CharBuf builder ); + + void serializeInstance ( Object obj, CharBuf builder ); + + void serializeInstance ( Object obj, CharBuf builder, boolean includeTypeInfo ); + + void serializeSubtypeInstance( Object obj, CharBuf builder ); + + + void serializeUnknown ( Object obj, CharBuf builder ); + + void serializeObject ( Object value, CharBuf builder ); + + Map getFields ( Class aClass ); + + boolean serializeField ( Object instance, FieldAccess fieldAccess, CharBuf builder ); + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/serializers/MapSerializer.java b/datastructures-json-boon/src/main/java/org/boon/json/serializers/MapSerializer.java new file mode 100644 index 0000000..2b6979c --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/serializers/MapSerializer.java @@ -0,0 +1,41 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.serializers; + +import org.boon.primitive.CharBuf; + +import java.util.Map; + +/** + * Created by rick on 1/1/14. + */ +public interface MapSerializer { + void serializeMap ( JsonSerializerInternal serializer, Map map, CharBuf builder ); + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/serializers/ObjectSerializer.java b/datastructures-json-boon/src/main/java/org/boon/json/serializers/ObjectSerializer.java new file mode 100644 index 0000000..f81d3d5 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/serializers/ObjectSerializer.java @@ -0,0 +1,40 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.serializers; + +import org.boon.primitive.CharBuf; + +/** + * Created by rick on 1/1/14. + */ +public interface ObjectSerializer { + + void serializeObject(JsonSerializerInternal serializer, Object instance, CharBuf builder ); + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/serializers/StringSerializer.java b/datastructures-json-boon/src/main/java/org/boon/json/serializers/StringSerializer.java new file mode 100644 index 0000000..749425d --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/serializers/StringSerializer.java @@ -0,0 +1,41 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.serializers; + +import org.boon.json.JsonSerializer; +import org.boon.primitive.CharBuf; + +/** + * Created by rick on 1/1/14. + */ +public interface StringSerializer { + + void serializeString(JsonSerializerInternal serializer, String string, CharBuf builder ); + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/serializers/UnknownSerializer.java b/datastructures-json-boon/src/main/java/org/boon/json/serializers/UnknownSerializer.java new file mode 100644 index 0000000..bcccd4c --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/serializers/UnknownSerializer.java @@ -0,0 +1,39 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.serializers; + +import org.boon.primitive.CharBuf; + +/** + * Created by rick on 1/1/14. + */ +public interface UnknownSerializer { + + void serializeUnknown ( JsonSerializerInternal serializer, Object unknown, CharBuf builder ); +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/AbstractCustomFieldSerializer.java b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/AbstractCustomFieldSerializer.java new file mode 100644 index 0000000..e0ae526 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/AbstractCustomFieldSerializer.java @@ -0,0 +1,62 @@ +package org.boon.json.serializers.impl; + +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.json.serializers.CustomFieldSerializer; +import org.boon.json.serializers.JsonSerializerInternal; +import org.boon.primitive.CharBuf; + +/** + * Custom serializer for a specific field of a specific class.
+ * The field is identified by its name, not by its alias (specified by the annotation + * {@link org.boon.json.annotations.SerializedName}).
+ */ +public abstract class AbstractCustomFieldSerializer implements CustomFieldSerializer { + private final Class parentClass; + private final String fieldName; + + /** + * Constructor of the serializer. + * @param parentClass Class containing the field to serialize. + * @param fieldName Name of the field to serialize. + */ + public AbstractCustomFieldSerializer(Class parentClass, String fieldName) { + super(); + this.fieldName = fieldName; + this.parentClass = parentClass; + } + + @Override + public boolean serializeField(JsonSerializerInternal serializer, Object parent, FieldAccess fieldAccess, CharBuf builder) { + // It only check parent class equality, doesn't work with inheritance + if (parentClass == parent.getClass() && fieldName.equals(fieldAccess.name())) { + Object value = fieldAccess.getValue(parent); + serialize(serializer, parent, fieldAccess, value, builder); + return true; + } + return false; + } + + /** + * This method has to be overloaded to specify how this field is serialized.
+ * For example: + * + *
+	 * {@code
+	 * if (value != null) {
+	 * 	builder.addJsonFieldName(fieldAcces.name());
+	 * 	builder.addQuoted(value.toString());
+	 * } else {
+	 * 	builder.addJsonFieldName(fieldAcces.name());
+	 * 	builder.addQuoted("N/A");
+	 * }
+	 * 
+ * @param serializer JsonSerializer to help serializing dates, arrays... + * @param parent Class containing the field. + * @param fieldAccess Field access. + * @param value Value of the field. + * @param builder Json builder. + */ + protected abstract void serialize(JsonSerializerInternal serializer, Object parent, FieldAccess fieldAccess, Object value, + CharBuf builder); + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/AbstractCustomObjectSerializer.java b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/AbstractCustomObjectSerializer.java new file mode 100644 index 0000000..88f19db --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/AbstractCustomObjectSerializer.java @@ -0,0 +1,46 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.serializers.impl; + +import org.boon.json.serializers.CustomObjectSerializer; + +public abstract class AbstractCustomObjectSerializer implements CustomObjectSerializer { + + protected Class clazz; + public AbstractCustomObjectSerializer (Class clazz) { + this.clazz = clazz; + } + + @Override + public Class type () { + return clazz; + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/BasicObjectSerializerImpl.java b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/BasicObjectSerializerImpl.java new file mode 100644 index 0000000..c0162cc --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/BasicObjectSerializerImpl.java @@ -0,0 +1,186 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.serializers.impl; + +import org.boon.core.TypeType; +import org.boon.core.Value; +import org.boon.json.serializers.JsonSerializerInternal; +import org.boon.json.serializers.ObjectSerializer; +import org.boon.primitive.CharBuf; + +import java.math.BigDecimal; +import java.math.BigInteger; +import java.util.Collection; +import java.util.Currency; +import java.util.Date; +import java.util.Map; +import java.util.TimeZone; + +/** + * Created by rick on 1/1/14. + */ +public class BasicObjectSerializerImpl implements ObjectSerializer { + private final boolean includeNulls; + private final boolean includeTypeInfo; + + public BasicObjectSerializerImpl(boolean includeNulls, boolean includeTypeInfo) { + this.includeNulls = includeNulls; + this.includeTypeInfo = includeTypeInfo; + + } + + @Override + public final void serializeObject (JsonSerializerInternal jsonSerializer, Object obj, CharBuf builder ) { + + TypeType type = TypeType.getInstanceType(obj); + + switch ( type ) { + + case NULL: + if (includeNulls) builder.addNull(); + return; + case INT: + builder.addInt ( int.class.cast ( obj ) ); + return; + case BOOLEAN: + builder.addBoolean ( boolean.class.cast ( obj ) ); + return; + case BYTE: + builder.addByte ( byte.class.cast ( obj ) ); + return; + case LONG: + builder.addLong ( long.class.cast ( obj ) ); + return; + case DOUBLE: + builder.addDouble ( double.class.cast ( obj ) ); + return; + case FLOAT: + builder.addFloat ( float.class.cast ( obj ) ); + return; + case SHORT: + builder.addShort ( short.class.cast ( obj ) ); + return; + case CHAR: + builder.addChar ( char.class.cast ( obj ) ); + return; + case BIG_DECIMAL: + builder.addBigDecimal ( ( BigDecimal ) obj ); + return; + case BIG_INT: + builder.addBigInteger ( ( BigInteger ) obj ); + return; + case DATE: + jsonSerializer.serializeDate ( ( Date ) obj, builder ); + return; + case STRING: + jsonSerializer.serializeString ( ( String ) obj, builder ); + return; + case CLASS: + builder.addQuoted ( (( Class ) obj).getName() ); + return; + + case TIME_ZONE: + TimeZone zone = (TimeZone) obj; + + builder.addQuoted ( zone.getID() ); + return; + + + case CHAR_SEQUENCE: + jsonSerializer.serializeString ( obj.toString (), builder ); + return; + case BOOLEAN_WRAPPER: + builder.addBoolean ( ( Boolean ) obj ); + return; + case INTEGER_WRAPPER: + builder.addInt ( (Integer) obj); + return; + case LONG_WRAPPER: + builder.addLong ( (Long) obj); + return; + case FLOAT_WRAPPER: + builder.addFloat ( (Float) obj); + return; + case DOUBLE_WRAPPER: + builder.addDouble ( (Double) obj); + return; + case SHORT_WRAPPER: + builder.addShort ( (Short) obj); + return; + case BYTE_WRAPPER: + builder.addByte ( (Byte) obj); + return; + case CHAR_WRAPPER: + builder.addChar ( (Character) obj); + return; + case ENUM: + builder.addQuoted ( obj.toString () ); + return; + + case COLLECTION: + case LIST: + case SET: + jsonSerializer.serializeCollection ( ( Collection ) obj, builder ); + return; + case MAP: + jsonSerializer.serializeMap ( ( Map ) obj, builder ); + return; + + case ARRAY: + case ARRAY_INT: + case ARRAY_BYTE: + case ARRAY_SHORT: + case ARRAY_FLOAT: + case ARRAY_DOUBLE: + case ARRAY_LONG: + case ARRAY_STRING: + case ARRAY_OBJECT: + jsonSerializer.serializeArray ( obj, builder ); + return; + + case VALUE: + Value value = (Value) obj; + serializeObject( jsonSerializer, value.toValue(), builder ); + return; + + case INSTANCE: + jsonSerializer.serializeInstance ( obj, builder, includeTypeInfo ); + return; + case CURRENCY: + builder.addCurrency(( Currency ) obj ); + return; + default: + jsonSerializer.serializeUnknown(obj, builder); + + + } + + + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/CollectionSerializerImpl.java b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/CollectionSerializerImpl.java new file mode 100644 index 0000000..283199a --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/CollectionSerializerImpl.java @@ -0,0 +1,89 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.serializers.impl; + +import org.boon.json.serializers.ArraySerializer; +import org.boon.json.serializers.CollectionSerializer; +import org.boon.json.serializers.JsonSerializerInternal; +import org.boon.primitive.CharBuf; + +import java.lang.reflect.Array; +import java.util.Collection; + +public class CollectionSerializerImpl implements CollectionSerializer, ArraySerializer { + + private static final char [] EMPTY_LIST_CHARS = {'[', ']'}; + + + @Override + public final void serializeCollection ( JsonSerializerInternal serializer, Collection collection, CharBuf builder ) { + if ( collection.size () == 0 ) { + builder.addChars ( EMPTY_LIST_CHARS ); + return; + } + + builder.addChar( '[' ); + for ( Object o : collection ) { + if (o == null) { + builder.addNull(); + builder.addChar ( ',' ); + continue; + } + serializer.serializeObject(o, builder); + builder.addChar ( ',' ); + } + builder.removeLastChar (); + builder.addChar( ']' ); + + } + + @Override + public void serializeArray ( JsonSerializerInternal serializer, Object array, CharBuf builder ) { + if ( Array.getLength ( array ) == 0 ) { + builder.addChars ( EMPTY_LIST_CHARS ); + return; + } + + builder.addChar( '[' ); + final int length = Array.getLength ( array ); + for ( int index = 0; index < length; index++ ) { + final Object o = Array.get(array, index); + if (o == null) { + builder.addNull(); + builder.addChar ( ',' ); + continue; + } + serializer.serializeObject ( o, builder ); + builder.addChar ( ',' ); + } + builder.removeLastChar (); + builder.addChar( ']' ); + + } +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/CustomObjectSerializerImpl.java b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/CustomObjectSerializerImpl.java new file mode 100644 index 0000000..0e52364 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/CustomObjectSerializerImpl.java @@ -0,0 +1,167 @@ +package org.boon.json.serializers.impl; + +import org.boon.Sets; +import org.boon.core.TypeType; +import org.boon.core.Value; +import org.boon.json.serializers.CustomObjectSerializer; +import org.boon.json.serializers.JsonSerializerInternal; +import org.boon.json.serializers.ObjectSerializer; +import org.boon.primitive.CharBuf; + +import java.math.BigDecimal; +import java.math.BigInteger; +import java.util.*; + +/** + * Created by Richard on 9/14/14. + */ +public class CustomObjectSerializerImpl implements ObjectSerializer { + + + private final Map overrideMap; + private final Set noHandle = Sets.safeSet(Class.class); + + + private final boolean typeInfo; + + private final boolean includeNulls; + + public CustomObjectSerializerImpl(boolean typeInfo, Map overrideMap, boolean includeNulls) { + this.overrideMap = overrideMap; + this.typeInfo = typeInfo; + this.includeNulls = includeNulls; + } + + + @Override + public final void serializeObject (JsonSerializerInternal jsonSerializer, Object obj, CharBuf builder ) { + + TypeType type = TypeType.getInstanceType(obj); + switch ( type ) { + + case NULL: + if (includeNulls) builder.addNull(); + return; + case INT: + builder.addInt ( int.class.cast ( obj ) ); + return; + case BOOLEAN: + builder.addBoolean ( boolean.class.cast ( obj ) ); + return; + case BYTE: + builder.addByte ( byte.class.cast ( obj ) ); + return; + case LONG: + builder.addLong ( long.class.cast ( obj ) ); + return; + case DOUBLE: + builder.addDouble ( double.class.cast ( obj ) ); + return; + case FLOAT: + builder.addFloat ( float.class.cast ( obj ) ); + return; + case SHORT: + builder.addShort ( short.class.cast ( obj ) ); + return; + case CHAR: + builder.addChar ( char.class.cast ( obj ) ); + return; + case BIG_DECIMAL: + builder.addBigDecimal ( (BigDecimal) obj ); + return; + case BIG_INT: + builder.addBigInteger ( (BigInteger) obj ); + return; + case DATE: + jsonSerializer.serializeDate ( (Date) obj, builder ); + return; + case STRING: + jsonSerializer.serializeString ( ( String ) obj, builder ); + return; + case CLASS: + builder.addQuoted ( (( Class ) obj).getName() ); + return; + + case TIME_ZONE: + TimeZone zone = (TimeZone) obj; + + builder.addQuoted ( zone.getID() ); + return; + + + case CHAR_SEQUENCE: + jsonSerializer.serializeString ( obj.toString (), builder ); + return; + case BOOLEAN_WRAPPER: + builder.addBoolean ( ( Boolean ) obj ); + return; + case INTEGER_WRAPPER: + builder.addInt ( (Integer) obj); + return; + case LONG_WRAPPER: + builder.addLong ( (Long) obj); + return; + case FLOAT_WRAPPER: + builder.addFloat ( (Float) obj); + return; + case DOUBLE_WRAPPER: + builder.addDouble ( (Double) obj); + return; + case SHORT_WRAPPER: + builder.addShort ( (Short) obj); + return; + case BYTE_WRAPPER: + builder.addByte ( (Byte) obj); + return; + case CHAR_WRAPPER: + builder.addChar ( (Character) obj); + return; + case ENUM: + builder.addQuoted ( obj.toString () ); + return; + + case COLLECTION: + case LIST: + case SET: + jsonSerializer.serializeCollection ( (Collection) obj, builder ); + return; + case MAP: + jsonSerializer.serializeMap ( (Map) obj, builder ); + return; + + case ARRAY: + case ARRAY_INT: + case ARRAY_BYTE: + case ARRAY_SHORT: + case ARRAY_FLOAT: + case ARRAY_DOUBLE: + case ARRAY_LONG: + case ARRAY_STRING: + case ARRAY_OBJECT: + jsonSerializer.serializeArray ( obj, builder ); + return; + + + case VALUE: + Value value = (Value) obj; + serializeObject( jsonSerializer, value.toValue(), builder ); + return; + + + case INSTANCE: + SerializeUtils.handleInstance(jsonSerializer, obj, builder, + overrideMap, noHandle, typeInfo, type); + return; + case CURRENCY: + builder.addCurrency((Currency) obj ); + return; + default: + jsonSerializer.serializeUnknown(obj, builder); + + + } + + + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/DateSerializerImpl.java b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/DateSerializerImpl.java new file mode 100644 index 0000000..dbe4686 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/DateSerializerImpl.java @@ -0,0 +1,45 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.serializers.impl; + +import org.boon.json.serializers.DateSerializer; +import org.boon.json.serializers.JsonSerializerInternal; +import org.boon.primitive.CharBuf; + +import java.util.Date; + +/** + * Created by rick on 1/1/14. + */ +public class DateSerializerImpl implements DateSerializer { + @Override + public final void serializeDate ( JsonSerializerInternal jsonSerializer, Date date, CharBuf builder ) { + builder.addLong(date.getTime ()); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/FieldSerializerImpl.java b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/FieldSerializerImpl.java new file mode 100644 index 0000000..9732611 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/FieldSerializerImpl.java @@ -0,0 +1,283 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.serializers.impl; + +import org.boon.core.TypeType; +import org.boon.core.reflection.FastStringUtils; +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.json.serializers.FieldSerializer; +import org.boon.json.serializers.JsonSerializerInternal; +import org.boon.primitive.CharBuf; + +import java.math.BigDecimal; +import java.math.BigInteger; +import java.util.Collection; +import java.util.Currency; +import java.util.Date; +import java.util.Map; +import java.util.TimeZone; + +/** + * Created by rick on 1/1/14. + */ +public class FieldSerializerImpl implements FieldSerializer { + + + private void serializeFieldName ( String name, CharBuf builder ) { + builder.addJsonFieldName ( FastStringUtils.toCharArray ( name ) ); + } + + @Override + public final boolean serializeField ( JsonSerializerInternal serializer, Object parent, FieldAccess fieldAccess, CharBuf builder ) { + + final String fieldName = fieldAccess.name(); + final TypeType typeEnum = fieldAccess.typeEnum (); + switch ( typeEnum ) { + case INT: + int value = fieldAccess.getInt ( parent ); + if (value !=0) { + serializeFieldName ( fieldName, builder ); + builder.addInt ( value ); + return true; + } + return false; + case BOOLEAN: + boolean bvalue = fieldAccess.getBoolean ( parent ); + if ( bvalue ) { + serializeFieldName ( fieldName, builder ); + builder.addBoolean ( bvalue ); + return true; + } + return false; + + case BYTE: + byte byvalue = fieldAccess.getByte ( parent ); + if ( byvalue != 0 ) { + serializeFieldName ( fieldName, builder ); + builder.addByte ( byvalue ); + return true; + } + return false; + case LONG: + long lvalue = fieldAccess.getLong ( parent ); + if ( lvalue != 0 ) { + serializeFieldName ( fieldName, builder ); + builder.addLong ( lvalue ); + return true; + } + return false; + case DOUBLE: + double dvalue = fieldAccess.getDouble ( parent ); + if ( dvalue != 0 ) { + serializeFieldName ( fieldName, builder ); + builder.addDouble ( dvalue ); + return true; + } + return false; + case FLOAT: + float fvalue = fieldAccess.getFloat ( parent ); + if ( fvalue != 0 ) { + serializeFieldName ( fieldName, builder ); + builder.addFloat ( fvalue ); + return true; + } + return false; + case SHORT: + short svalue = fieldAccess.getShort( parent ); + if ( svalue != 0 ) { + serializeFieldName ( fieldName, builder ); + builder.addShort ( svalue ); + return true; + } + return false; + case CHAR: + char cvalue = fieldAccess.getChar( parent ); + if ( cvalue != 0 ) { + serializeFieldName ( fieldName, builder ); + builder.addChar( cvalue ); + return true; + } + return false; + + } + + Object value = fieldAccess.getObject ( parent ); + + if ( value == null ) { + return false; + } + + /* Avoid back reference and infinite loops. */ + if ( value == parent ) { + return false; + } + + switch ( typeEnum ) { + case BIG_DECIMAL: + serializeFieldName ( fieldName, builder ); + builder.addBigDecimal ( (BigDecimal ) value ); + return true; + case BIG_INT: + serializeFieldName ( fieldName, builder ); + builder.addBigInteger ( ( BigInteger ) value ); + return true; + case DATE: + serializeFieldName ( fieldName, builder ); + serializer.serializeDate ( ( Date ) value, builder ); + return true; + case STRING: + serializeFieldName ( fieldName, builder ); + serializer.serializeString ( ( String ) value, builder ); + return true; + case CLASS: + serializeFieldName ( fieldName, builder ); + builder.addQuoted ( (( Class ) value).getName()); + return true; + + case TIME_ZONE: + + serializeFieldName ( fieldName, builder ); + TimeZone zone = (TimeZone) value; + + builder.addQuoted ( zone.getID() ); + return true; + case CHAR_SEQUENCE: + serializeFieldName ( fieldName, builder ); + serializer.serializeString ( value.toString (), builder ); + return true; + case NUMBER: + serializeFieldName ( fieldName, builder ); + builder.addString ( value.toString() ); + return true; + + + + case BOOLEAN_WRAPPER: + serializeFieldName ( fieldName, builder ); + builder.addBoolean ( ( Boolean ) value ); + return true; + case INTEGER_WRAPPER: + serializeFieldName ( fieldName, builder ); + builder.addInt ( ( Integer ) value ); + return true; + case LONG_WRAPPER: + serializeFieldName ( fieldName, builder ); + builder.addLong ( ( Long ) value ); + return true; + case FLOAT_WRAPPER: + serializeFieldName ( fieldName, builder ); + builder.addFloat ( ( Float ) value ); + return true; + case DOUBLE_WRAPPER: + serializeFieldName ( fieldName, builder ); + builder.addDouble ( ( Double ) value ); + return true; + case SHORT_WRAPPER: + serializeFieldName ( fieldName, builder ); + builder.addShort ( ( Short ) value ); + return true; + case BYTE_WRAPPER: + serializeFieldName ( fieldName, builder ); + builder.addByte ( ( Byte ) value ); + return true; + case CHAR_WRAPPER: + serializeFieldName ( fieldName, builder ); + builder.addChar ( ( Character ) value ); + return true; + case ENUM: + serializeFieldName ( fieldName, builder ); + builder.addQuoted ( value.toString () ); + return true; + case COLLECTION: + case LIST: + case SET: + Collection collection = (Collection) value; + if ( collection.size () > 0) { + serializeFieldName ( fieldName, builder ); + serializer.serializeCollection ( collection, builder ); + return true; + } + return false; + case MAP: + Map map = (Map) value; + if ( map.size () > 0) { + serializeFieldName ( fieldName, builder ); + serializer.serializeMap ( map, builder ); + return true; + } + return false; + + + case ARRAY: + case ARRAY_INT: + case ARRAY_BYTE: + case ARRAY_SHORT: + case ARRAY_FLOAT: + case ARRAY_DOUBLE: + case ARRAY_LONG: + case ARRAY_STRING: + case ARRAY_OBJECT: + Object [] array = (Object []) value; + if ( array.length > 0) { + serializeFieldName ( fieldName, builder ); + serializer.serializeArray ( value, builder ); + return true; + } + return false; + + + + case INTERFACE: + case ABSTRACT: + serializeFieldName ( fieldName, builder ); + serializer.serializeSubtypeInstance ( value, builder ); + return true; + + case INSTANCE: + serializeFieldName ( fieldName, builder ); + if ( fieldAccess.type() == value.getClass () ) { + serializer.serializeInstance ( value, builder ); + } else { + serializer.serializeSubtypeInstance ( value, builder ); + } + return true; + + case CURRENCY: + serializeFieldName ( fieldName, builder ); + builder.addCurrency ( (Currency ) value ); + return true; + + default: + serializeFieldName ( fieldName, builder ); + serializer.serializeUnknown ( value, builder ); + return true; + } + + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/FieldSerializerUseAnnotationsImpl.java b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/FieldSerializerUseAnnotationsImpl.java new file mode 100644 index 0000000..e88c3ac --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/FieldSerializerUseAnnotationsImpl.java @@ -0,0 +1,417 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.serializers.impl; + +import org.boon.Sets; +import org.boon.Str; +import org.boon.core.TypeType; +import org.boon.core.reflection.FastStringUtils; +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.json.serializers.*; +import org.boon.primitive.Arry; +import org.boon.primitive.CharBuf; + +import java.math.BigDecimal; +import java.math.BigInteger; +import java.util.*; + +/** + * Created by rick on 1/1/14. + */ +public class FieldSerializerUseAnnotationsImpl implements FieldSerializer { + + private final boolean includeNulls; + private final boolean includeDefault; + private final boolean useAnnotations; + private final boolean includeEmpty; + private final boolean handleSimpleBackReference; + private final boolean handleComplexBackReference; + private final String view; + private IdentityHashMap idMap; + private Map overrideMap; + private Map customFieldSerializerMap; + private List customFieldSerializers; + + private final Set noHandle = Sets.safeSet(Class.class); + + private final List filterProperties; + + + + + public FieldSerializerUseAnnotationsImpl ( boolean includeNulls, + boolean includeDefault, boolean useAnnotations, + boolean includeEmpty, boolean handleSimpleBackReference, + boolean handleComplexBackReference, + Map overrideMap, + List filterProperties, + Map customFieldSerializerMap, + List customFieldSerializers, + String view) { + this.includeNulls = includeNulls; + this.includeDefault = includeDefault; + this.useAnnotations = useAnnotations; + this.includeEmpty = includeEmpty; + this.handleSimpleBackReference = handleSimpleBackReference; + this.handleComplexBackReference = handleComplexBackReference; + this.view = view; + + if (handleComplexBackReference) { + idMap = new IdentityHashMap ( ); + } + + this.overrideMap = overrideMap; + this.filterProperties = filterProperties; + this.customFieldSerializerMap = customFieldSerializerMap; + this.customFieldSerializers = customFieldSerializers; + + } + + private void serializeFieldName ( String name, CharBuf builder ) { + builder.addJsonFieldName ( FastStringUtils.toCharArray ( name ) ); + } + + @Override + public final boolean serializeField ( JsonSerializerInternal serializer, Object parent, FieldAccess fieldAccess, CharBuf builder ) { + + final String fieldName = fieldAccess.alias(); + final TypeType typeEnum = fieldAccess.typeEnum(); + + if ( useAnnotations && fieldAccess.ignore() ) { + return false; + } + + if ( useAnnotations && view != null && !fieldAccess.isViewActive(view) ) { + return false; + } + + + final boolean include = (useAnnotations && fieldAccess.include()); + + + if (filterProperties != null ) { + for (FieldFilter filter: filterProperties) { + if (!filter.include ( parent, fieldAccess )) { + return false; + } + } + } + + + if ( customFieldSerializerMap != null ) { + + final CustomFieldSerializer customFieldSerializer = customFieldSerializerMap.get ( fieldAccess.name() ); + if ( customFieldSerializer.serializeField (serializer, parent, fieldAccess, builder) ) { + return true; + } + } + + if ( customFieldSerializers != null ) { + + for (CustomFieldSerializer cfs : customFieldSerializers) { + if (cfs.serializeField ( serializer, parent, fieldAccess, builder ) == true) { + return true; + } + } + + } + + + + switch ( typeEnum ) { + case INT: + int value = fieldAccess.getInt ( parent ); + if (includeDefault || include || value !=0) { + serializeFieldName ( fieldName, builder ); + builder.addInt ( value ); + return true; + } + return false; + case BOOLEAN: + boolean bvalue = fieldAccess.getBoolean ( parent ); + if (includeDefault || include || bvalue ) { + serializeFieldName ( fieldName, builder ); + builder.addBoolean ( bvalue ); + return true; + } + return false; + + case BYTE: + byte byvalue = fieldAccess.getByte ( parent ); + if (includeDefault || include || byvalue != 0 ) { + serializeFieldName ( fieldName, builder ); + builder.addByte ( byvalue ); + return true; + } + return false; + case LONG: + long lvalue = fieldAccess.getLong ( parent ); + if ( includeDefault || include || lvalue != 0 ) { + serializeFieldName ( fieldName, builder ); + builder.addLong ( lvalue ); + return true; + } + return false; + case DOUBLE: + double dvalue = fieldAccess.getDouble ( parent ); + if (includeDefault || include || dvalue != 0 ) { + serializeFieldName ( fieldName, builder ); + builder.addDouble ( dvalue ); + return true; + } + return false; + case FLOAT: + float fvalue = fieldAccess.getFloat ( parent ); + if (includeDefault || include || fvalue != 0.0f ) { + serializeFieldName ( fieldName, builder ); + builder.addFloat ( fvalue ); + return true; + } + return false; + case SHORT: + short svalue = fieldAccess.getShort( parent ); + if (includeDefault || include || svalue != 0 ) { + serializeFieldName ( fieldName, builder ); + builder.addShort ( svalue ); + return true; + } + return false; + case CHAR: + char cvalue = fieldAccess.getChar( parent ); + if (includeDefault || include || cvalue != 0 ) { + serializeFieldName ( fieldName, builder ); + builder.addQuoted( "" + cvalue ); + return true; + } + return false; + + } + + Object value = fieldAccess.getObject ( parent ); + + if (!includeNulls && !include && value == null ) { + return false; + } + + + if ((includeNulls || fieldAccess.include()) && value == null ) { + serializeFieldName ( fieldName, builder ); + builder.addNull (); + return true; + } + + + + + + + + switch ( typeEnum ) { + case BIG_DECIMAL: + serializeFieldName ( fieldName, builder ); + builder.addBigDecimal ( (BigDecimal ) value ); + return true; + case BIG_INT: + serializeFieldName ( fieldName, builder ); + builder.addBigInteger ( ( BigInteger ) value ); + return true; + case DATE: + serializeFieldName ( fieldName, builder ); + serializer.serializeDate ( ( Date ) value, builder ); + return true; + case STRING: + String string = (String) value; + if (includeEmpty || !Str.empty(string)) { + serializeFieldName ( fieldName, builder ); + serializer.serializeString( string, builder ); + return true; + } + return false; + case CLASS: + serializeFieldName ( fieldName, builder ); + builder.addQuoted ( (( Class ) value).getName()); + return true; + + case TIME_ZONE: + + serializeFieldName ( fieldName, builder ); + TimeZone zone = (TimeZone) value; + + builder.addQuoted ( zone.getID() ); + return true; + case CHAR_SEQUENCE: + String s2 = value.toString(); + if (includeEmpty || include || s2.length() > 0) { + serializeFieldName ( fieldName, builder ); + serializer.serializeString( s2, builder ); + return true; + } + return false; + + + case BOOLEAN_WRAPPER: + serializeFieldName ( fieldName, builder ); + builder.addBoolean ( ( Boolean ) value ); + return true; + case INTEGER_WRAPPER: + serializeFieldName ( fieldName, builder ); + builder.addInt ( ( Integer ) value ); + return true; + case LONG_WRAPPER: + serializeFieldName ( fieldName, builder ); + builder.addLong ( ( Long ) value ); + return true; + case FLOAT_WRAPPER: + serializeFieldName ( fieldName, builder ); + builder.addFloat ( ( Float ) value ); + return true; + case DOUBLE_WRAPPER: + serializeFieldName ( fieldName, builder ); + builder.addDouble ( ( Double ) value ); + return true; + case SHORT_WRAPPER: + serializeFieldName ( fieldName, builder ); + builder.addShort ( ( Short ) value ); + return true; + case BYTE_WRAPPER: + serializeFieldName ( fieldName, builder ); + builder.addByte ( ( Byte ) value ); + return true; + case CHAR_WRAPPER: + serializeFieldName ( fieldName, builder ); + builder.addQuoted ( value.toString() ); + return true; + case ENUM: + serializeFieldName ( fieldName, builder ); + builder.addQuoted ( value.toString () ); + return true; + case COLLECTION: + case LIST: + case SET: + Collection collection = (Collection) value; + if (includeEmpty || include || collection.size () > 0) { + serializeFieldName ( fieldName, builder ); + serializer.serializeCollection ( collection, builder ); + return true; + } + return false; + case MAP: + Map map = (Map) value; + if (includeEmpty || include || map.size () > 0) { + serializeFieldName ( fieldName, builder ); + serializer.serializeMap ( map, builder ); + return true; + } + return false; + + + case ARRAY: + case ARRAY_INT: + case ARRAY_BYTE: + case ARRAY_SHORT: + case ARRAY_FLOAT: + case ARRAY_DOUBLE: + case ARRAY_LONG: + case ARRAY_STRING: + case ARRAY_OBJECT: + if (includeEmpty || include || Arry.len(value) > 0) { + serializeFieldName ( fieldName, builder ); + serializer.serializeArray ( value, builder ); + return true; + } + return false; + + case INTERFACE: + case ABSTRACT: + if (handleSimpleBackReference && value == parent ) { + return false; + } else if (handleComplexBackReference) { + if ( idMap.containsKey ( value ) ) { + return false; + } else { + idMap.put ( value, value ); + } + } + + serializeFieldName ( fieldName, builder ); + + if (overrideMap!=null) { + + SerializeUtils.handleInstance(serializer, value, builder, + overrideMap, noHandle, false, typeEnum); + + } else { + serializer.serializeSubtypeInstance(value, builder); + } + + return true; + case INSTANCE: + if (handleSimpleBackReference && value == parent ) { + return false; + } else if (handleComplexBackReference) { + if ( idMap.containsKey ( value ) ) { + return false; + } else { + idMap.put ( value, value ); + } + } + + serializeFieldName ( fieldName, builder ); + + + if (overrideMap!=null) { + + SerializeUtils.handleInstance(serializer, value, builder, + overrideMap, noHandle, false, typeEnum); + + } else { + if ( fieldAccess.type() == value.getClass () ) { + serializer.serializeInstance ( value, builder ); + } else { + serializer.serializeSubtypeInstance ( value, builder ); + } + } + + + return true; + + case CURRENCY: + serializeFieldName ( fieldName, builder ); + builder.addCurrency(( Currency ) value ); + return true; + + default: + serializeFieldName ( fieldName, builder ); + serializer.serializeUnknown ( value, builder ); + return true; + + } + + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/InstanceSerializerImpl.java b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/InstanceSerializerImpl.java new file mode 100644 index 0000000..8943391 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/InstanceSerializerImpl.java @@ -0,0 +1,130 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.serializers.impl; + +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.json.serializers.InstanceSerializer; +import org.boon.json.serializers.JsonSerializerInternal; +import org.boon.primitive.CharBuf; + +import java.util.Collection; +import java.util.Map; + +/** + * Created by rick on 1/1/14. + */ +public class InstanceSerializerImpl implements InstanceSerializer{ + + @Override + public final void serializeInstance ( JsonSerializerInternal serializer, Object instance, CharBuf builder ) { + final Map fieldAccessors = serializer.getFields(instance.getClass ()); + final Collection values = fieldAccessors.values (); + + + + builder.addChar( '{' ); + + int index = 0; + for ( FieldAccess fieldAccess : values ) { + if (serializer.serializeField ( instance, fieldAccess, builder ) ) { + builder.addChar ( ',' ); + index++; + } + } + if ( index > 0 ) { + builder.removeLastChar(); + } + builder.addChar( '}' ); + + } + + @Override + public void serializeSubtypeInstance( JsonSerializerInternal serializer, Object instance, CharBuf builder ) { + + + builder.addString( "{\"class\":" ); + builder.addQuoted ( instance.getClass ().getName () ); + final Map fieldAccessors = serializer.getFields ( instance.getClass () ); + + int index = 0; + Collection values = fieldAccessors.values(); + int length = values.size(); + + if ( length > 0 ) { + builder.addChar( ',' ); + + + for ( FieldAccess fieldAccess : values ) { + boolean sent = serializer.serializeField ( instance, fieldAccess, builder ); + if (sent) { + index++; + builder.addChar( ',' ); + } + } + + + if ( index > 0 ) { + builder.removeLastChar(); + } + + builder.addChar( '}' ); + + + } + + } + + @Override + public void serializeInstance(JsonSerializerImpl serializer, Object instance, CharBuf builder, boolean includeTypeInfo) { + + final Map fieldAccessors = serializer.getFields(instance.getClass ()); + final Collection values = fieldAccessors.values (); + + if (includeTypeInfo) { + builder.addString("{\"class\":"); + builder.addQuoted(instance.getClass().getName()); + builder.addChar ( ',' ); + } else { + + builder.addChar('{'); + } + int index = 0; + for ( FieldAccess fieldAccess : values ) { + if (serializer.serializeField ( instance, fieldAccess, builder ) ) { + builder.addChar ( ',' ); + index++; + } + } + if ( index > 0 ) { + builder.removeLastChar(); + } + builder.addChar( '}' ); + + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/JsonDateSerializer.java b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/JsonDateSerializer.java new file mode 100644 index 0000000..77af307 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/JsonDateSerializer.java @@ -0,0 +1,65 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.serializers.impl; + +import org.boon.cache.Cache; +import org.boon.cache.CacheType; +import org.boon.cache.SimpleCache; +import org.boon.core.Dates; +import org.boon.core.reflection.FastStringUtils; +import org.boon.json.serializers.DateSerializer; +import org.boon.json.serializers.JsonSerializerInternal; +import org.boon.primitive.CharBuf; + +import java.util.Calendar; +import java.util.Date; +import java.util.TimeZone; + +/** + * Created by rick on 1/4/14. + */ +public class JsonDateSerializer implements DateSerializer { + + private final Calendar calendar = Calendar.getInstance( TimeZone.getTimeZone( "GMT" ) ); + private final Cache dateCache = new SimpleCache<>(200, CacheType.LRU); + + + @Override + public final void serializeDate( JsonSerializerInternal jsonSerializer, Date date, CharBuf builder ) { + String string = dateCache.get ( date ); + if ( string == null) { + CharBuf buf = CharBuf.create ( Dates.JSON_TIME_LENGTH ); + Dates.jsonDateChars ( calendar, date, buf ); + string = buf.toString(); + dateCache.put ( date, string ); + + } + builder.addChars ( FastStringUtils.toCharArray( string ) ); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/JsonSerializerImpl.java b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/JsonSerializerImpl.java new file mode 100644 index 0000000..120e541 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/JsonSerializerImpl.java @@ -0,0 +1,259 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.serializers.impl; + +import org.boon.Exceptions; +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.core.reflection.fields.FieldsAccessor; +import org.boon.core.reflection.fields.FieldsAccessorFieldThenProp; +import org.boon.json.serializers.*; +import org.boon.primitive.CharBuf; + +import java.util.Collection; +import java.util.Date; +import java.util.Map; + +import static org.boon.Exceptions.handle; + +/** + * Created by rick on 1/1/14. + */ +public class JsonSerializerImpl implements JsonSerializerInternal { + + private final ObjectSerializer objectSerializer; + private final StringSerializer stringSerializer; + private final MapSerializer mapSerializer; + private final FieldSerializer fieldSerializer; + + private final InstanceSerializer instanceSerializer; + private final CollectionSerializer collectionSerializer; + private final ArraySerializer arraySerializer; + private final UnknownSerializer unknownSerializer; + private final DateSerializer dateSerializer; + private final FieldsAccessor fieldsAccessor; + + + private CharBuf builder = CharBuf.create( 4000 ); + + public JsonSerializerImpl () { + + instanceSerializer = new InstanceSerializerImpl (); + objectSerializer = new BasicObjectSerializerImpl (false, true); + stringSerializer = new StringSerializerImpl (true, false, true); + mapSerializer = new MapSerializerImpl (false); + fieldSerializer = new FieldSerializerImpl (); + collectionSerializer = new CollectionSerializerImpl (); + arraySerializer = (ArraySerializer) collectionSerializer; + unknownSerializer = new UnknownSerializerImpl (); + dateSerializer = new DateSerializerImpl (); + fieldsAccessor = new FieldsAccessorFieldThenProp(true); + + } + + public JsonSerializerImpl ( final ObjectSerializer objectSerializer, + final StringSerializer stringSerializer, + final MapSerializer mapSerializer, + final FieldSerializer fieldSerializer, + final InstanceSerializer instanceSerializer, + final CollectionSerializer collectionSerializer, + final ArraySerializer arraySerializer, + final UnknownSerializer unknownSerializer, + final DateSerializer dateSerializer, + final FieldsAccessor fieldsAccessor, + final boolean asAscii + + ) { + + + + + if (fieldsAccessor == null) { + this.fieldsAccessor = new FieldsAccessorFieldThenProp (true); + } else { + this.fieldsAccessor = fieldsAccessor; + } + + + if (dateSerializer == null) { + this.dateSerializer = new DateSerializerImpl (); + } else { + this.dateSerializer = dateSerializer; + } + + if (unknownSerializer == null) { + this.unknownSerializer = new UnknownSerializerImpl(); + } else { + this.unknownSerializer = unknownSerializer; + } + + + if (arraySerializer == null) { + this.arraySerializer = new CollectionSerializerImpl (); + } else { + this.arraySerializer = arraySerializer; + } + + if (collectionSerializer == null) { + this.collectionSerializer = new CollectionSerializerImpl (); + } else { + this.collectionSerializer = collectionSerializer; + } + + + if (instanceSerializer == null) { + this.instanceSerializer = new InstanceSerializerImpl (); + } else { + this.instanceSerializer = instanceSerializer; + } + + if (objectSerializer == null) { + this.objectSerializer = new BasicObjectSerializerImpl (false, true); + } else { + this.objectSerializer = objectSerializer; + } + + if (stringSerializer == null) { + this.stringSerializer = new StringSerializerImpl (true, asAscii, false); + } else { + this.stringSerializer = stringSerializer; + } + + if (mapSerializer == null) { + this.mapSerializer = new MapSerializerImpl(false); + } else { + this.mapSerializer = mapSerializer; + } + + if (fieldSerializer == null) { + this.fieldSerializer = new FieldSerializerImpl(); + } else { + this.fieldSerializer = fieldSerializer; + } + + } + + + + + + + + public final CharBuf serialize( Object obj ) { + + builder.readForRecycle (); + try { + serializeObject( obj, builder ); + } catch ( Exception ex ) { + return Exceptions.handle ( CharBuf.class, "unable to serializeObject", ex ); + } + return builder; + } + + + public final boolean serializeField ( Object parent, FieldAccess fieldAccess, CharBuf builder ) { + + return fieldSerializer.serializeField ( this, parent, fieldAccess, builder ); + } + + public final void serializeObject( Object obj, CharBuf builder ) { + + objectSerializer.serializeObject ( this, obj, builder ); + + } + + public final void serializeString( String str, CharBuf builder ) { + this.stringSerializer.serializeString ( this, str, builder ); + } + + + public final void serializeMap( Map map, CharBuf builder ) { + this.mapSerializer.serializeMap ( this, map, builder ); + + } + + public final void serializeCollection( Collection collection, CharBuf builder ) { + + this.collectionSerializer.serializeCollection ( this, collection, builder ); + } + + + + public final void serializeArray( Object obj, CharBuf builder ) { + this.arraySerializer.serializeArray ( this, obj, builder ); + } + + + + public final void serializeUnknown ( Object obj, CharBuf builder ) { + this.unknownSerializer.serializeUnknown ( this, obj, builder ); + } + + public final void serializeDate ( Date date, CharBuf builder ) { + + this.dateSerializer.serializeDate ( this, date, builder ); + + } + + + + + + public final void serializeInstance ( Object obj, CharBuf builder ) { + this.instanceSerializer.serializeInstance ( this, obj, builder ); + + } + + @Override + public void serializeInstance(Object obj, CharBuf builder, boolean includeTypeInfo) { + this.instanceSerializer.serializeInstance ( this, obj, builder, includeTypeInfo ); + + } + + @Override + public void serializeSubtypeInstance( Object obj, CharBuf builder ) { + this.instanceSerializer.serializeSubtypeInstance ( this, obj, builder ); + } + + public final Map getFields ( Class aClass ) { + return fieldsAccessor.getFields ( aClass ); + } + + + @Override + public void serialize(CharBuf builder, Object obj) { + + try { + serializeObject( obj, builder ); + } catch ( Exception ex ) { + handle("unable to serializeObject", ex); + } + } + +} + diff --git a/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/JsonSimpleSerializerImpl.java b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/JsonSimpleSerializerImpl.java new file mode 100644 index 0000000..0b137c0 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/JsonSimpleSerializerImpl.java @@ -0,0 +1,821 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.serializers.impl; + + +import org.boon.Boon; +import org.boon.Exceptions; +import org.boon.Maps; +import org.boon.Str; +import org.boon.cache.SimpleCache; +import org.boon.core.TypeType; +import org.boon.core.Value; +import org.boon.core.reflection.FastStringUtils; +import org.boon.core.reflection.Invoker; +import org.boon.core.reflection.Reflection; +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.json.serializers.JsonSerializerInternal; +import org.boon.primitive.CharBuf; + +import java.lang.reflect.Array; +import java.math.BigDecimal; +import java.math.BigInteger; +import java.util.*; +import java.util.concurrent.ConcurrentHashMap; + +import static org.boon.Exceptions.die; +import static org.boon.Exceptions.handle; + +/** + * + * This is a simple fast serializer. + * It excludes default values, i.e., int v by default is 0. + * It excludes nulls and empties as well. + */ +public class JsonSimpleSerializerImpl implements JsonSerializerInternal { + private final Map , Map> fieldMap = new ConcurrentHashMap<>( ); + private final String view; + private final boolean encodeStrings; + + private final boolean serializeAsSupport; + + + private final CharBuf builder; + + private int level; + + private boolean asciiOnly; + + public JsonSimpleSerializerImpl() { + + this.view = null; + this.encodeStrings = true; + serializeAsSupport = true; + builder = CharBuf.create( 4000 ); + + + } + + + public JsonSimpleSerializerImpl(boolean encodeStrings) { + + this.view = null; + this.encodeStrings = encodeStrings; + + serializeAsSupport = true; + builder = CharBuf.create( 4000 ); + + + } + + + + + public JsonSimpleSerializerImpl(String view, boolean encodeStrings, + boolean serializeAsSupport, boolean asciiOnly) { + + this.encodeStrings = encodeStrings; + this.serializeAsSupport = serializeAsSupport; + this.view = view; + builder = CharBuf.create( 4000 ); + this.asciiOnly = asciiOnly; + + } + + + + SimpleCache stringCache; + CharBuf encodedJsonChars; + + public final void serializeString( String str, CharBuf builder ) { + + if (encodeStrings && !Str.empty(str)) { + + if (stringCache == null) { + stringCache = new SimpleCache<>(1000); + encodedJsonChars = CharBuf.create(str.length()); + + } + + String encodedString = stringCache.get(str); + if (encodedString == null) { + + + + encodedJsonChars.asJsonString(str, asciiOnly); + encodedString = encodedJsonChars.toStringAndRecycle(); + stringCache.put(str, encodedString); + } + + builder.add(encodedString); + + } else { + builder.addQuoted(str); + } + + } + + + public CharBuf serialize( Object obj ) { + level=0; + + builder.readForRecycle (); + try { + serializeObject( obj, builder ); + } catch ( Exception ex ) { + return handle(CharBuf.class, "unable to serializeObject", ex); + } + return builder; + } + + @Override + public void serialize(CharBuf builder, Object obj) { + level = 0; + + try { + serializeObject( obj, builder ); + } catch ( Exception ex ) { + handle("unable to serializeObject", ex); + } + } + + + public final boolean serializeField ( Object parent, FieldAccess fieldAccess, CharBuf builder ) { + + + + final String fieldName = fieldAccess.name(); + final TypeType typeEnum = fieldAccess.typeEnum (); + + + //try { + + + if ( view!=null ){ + if (!fieldAccess.isViewActive( view ) ) { + return false; + } + } + + switch ( typeEnum ) { + + case INT: + int value = fieldAccess.getInt ( parent ); + if (value !=0) { + serializeFieldName ( fieldName, builder ); + builder.addInt ( value ); + return true; + } + return false; + case BOOLEAN: + boolean bvalue = fieldAccess.getBoolean ( parent ); + if ( bvalue ) { + serializeFieldName ( fieldName, builder ); + builder.addBoolean ( bvalue ); + return true; + } + return false; + + case BYTE: + byte byvalue = fieldAccess.getByte ( parent ); + if ( byvalue != 0 ) { + serializeFieldName ( fieldName, builder ); + builder.addByte ( byvalue ); + return true; + } + return false; + case LONG: + long lvalue = fieldAccess.getLong ( parent ); + if ( lvalue != 0 ) { + serializeFieldName ( fieldName, builder ); + builder.addLong ( lvalue ); + return true; + } + return false; + + case DOUBLE: + double dvalue = fieldAccess.getDouble ( parent ); + if ( dvalue != 0 ) { + serializeFieldName ( fieldName, builder ); + builder.addDouble ( dvalue ); + return true; + } + return false; + case FLOAT: + float fvalue = fieldAccess.getFloat ( parent ); + if ( fvalue != 0 ) { + serializeFieldName ( fieldName, builder ); + builder.addFloat ( fvalue ); + return true; + } + return false; + case SHORT: + short svalue = fieldAccess.getShort( parent ); + if ( svalue != 0 ) { + serializeFieldName ( fieldName, builder ); + builder.addShort ( svalue ); + return true; + } + return false; + case CHAR: + char cvalue = fieldAccess.getChar( parent ); + if ( cvalue != 0 ) { + serializeFieldName ( fieldName, builder ); + builder.addQuoted( "" + cvalue ); + return true; + } + return false; + + } + + Object value = fieldAccess.getObject ( parent ); + + if ( value == null ) { + return false; + } + + /* Avoid back reference and infinite loops. */ + if ( value == parent ) { + return false; + } + + switch ( typeEnum ) { + case BIG_DECIMAL: + serializeFieldName ( fieldName, builder ); + builder.addBigDecimal ( (BigDecimal) value ); + return true; + case NUMBER: + Number nvalue = (Number) fieldAccess.getObject(parent); + if ( nvalue.intValue() != 0 ) { + serializeFieldName ( fieldName, builder ); + builder.addString(nvalue.toString()); + return true; + } + return false; + case BIG_INT: + serializeFieldName ( fieldName, builder ); + builder.addBigInteger((BigInteger) value); + return true; + case DATE: + serializeFieldName ( fieldName, builder ); + serializeDate((Date) value, builder); + return true; + case STRING: + if(Str.empty((String)value)){ + return false; + } + serializeFieldName ( fieldName, builder ); + serializeString((String) value, builder); + return true; + case CLASS: + serializeFieldName ( fieldName, builder ); + builder.addQuoted ( (( Class ) value).getName()); + return true; + + case CHAR_SEQUENCE: + serializeFieldName ( fieldName, builder ); + serializeString ( value.toString (), builder ); + return true; + + case INTEGER_WRAPPER: + serializeFieldName ( fieldName, builder ); + builder.addInt ( ( Integer ) value ); + return true; + case BOOLEAN_WRAPPER: + serializeFieldName ( fieldName, builder ); + builder.addBoolean ( ( Boolean ) value ); + return true; + case LONG_WRAPPER: + serializeFieldName ( fieldName, builder ); + builder.addLong ( ( Long ) value ); + return true; + case FLOAT_WRAPPER: + serializeFieldName ( fieldName, builder ); + builder.addFloat ( ( Float ) value ); + return true; + case DOUBLE_WRAPPER: + serializeFieldName ( fieldName, builder ); + builder.addDouble ( ( Double ) value ); + return true; + case SHORT_WRAPPER: + serializeFieldName ( fieldName, builder ); + builder.addShort ( ( Short ) value ); + return true; + case BYTE_WRAPPER: + serializeFieldName ( fieldName, builder ); + builder.addByte ( ( Byte ) value ); + return true; + case CHAR_WRAPPER: + serializeFieldName ( fieldName, builder ); + builder.addQuoted ( (( Character ) value).toString() ); + return true; + case ENUM: + serializeFieldName ( fieldName, builder ); + builder.addQuoted ( value.toString () ); + return true; + case COLLECTION: + case LIST: + case SET: + Collection collection = (Collection) value; + if ( collection.size () > 0) { + serializeFieldName ( fieldName, builder ); + this.serializeCollection ( collection, builder ); + return true; + } + return false; + case MAP: + Map map = (Map) value; + if ( map.size () > 0) { + serializeFieldName ( fieldName, builder ); + this.serializeMap ( map, builder ); + return true; + } + return false; + + + case ARRAY: + case ARRAY_INT: + case ARRAY_BYTE: + case ARRAY_SHORT: + case ARRAY_FLOAT: + case ARRAY_DOUBLE: + case ARRAY_LONG: + case ARRAY_STRING: + case ARRAY_OBJECT: + if (value.getClass().isArray()) { + if ( Array.getLength (value) > 0) { + serializeFieldName ( fieldName, builder ); + this.serializeArray ( fieldAccess.componentType(), value, builder ); + return true; + } + } + return false; + + case INTERFACE: + case ABSTRACT: + serializeFieldName ( fieldName, builder ); + serializeSubtypeInstance ( value, builder ); + return true; + + case OBJECT: + serializeFieldName ( fieldName, builder ); + final TypeType instanceType = TypeType.getInstanceType(value); + if (instanceType== TypeType.INSTANCE) { + serializeSubtypeInstance(value, builder); + } else { + serializeObject(value, builder); + } + return true; + + case INSTANCE: + serializeFieldName ( fieldName, builder ); + serializeInstance ( value, builder ); + return true; + + case SYSTEM: + return false; + + + case TIME_ZONE: + + serializeFieldName ( fieldName, builder ); + TimeZone zone = (TimeZone) value; + + builder.addQuoted ( zone.getID() ); + return true; + + case CURRENCY: + serializeFieldName ( fieldName, builder ); + serializeCurrency ( (Currency) value, builder ); + return true; + + default: + serializeFieldName ( fieldName, builder ); + serializeUnknown(value, builder); + return true; + } + +// } catch (Exception ex) { +// return handle(Boolean.class, ex, "Unable to serialize field", fieldName, "from parent object", parent, +// "type enum", typeEnum); +// } + + } + + + + + public final void serializeDate ( Date date, CharBuf builder ) { + builder.addLong(date.getTime ()); + } + + + public final void serializeCurrency ( Currency currency, CharBuf builder ) { + builder.addChar ( '"' ); + builder.addString(currency.getCurrencyCode()); + builder.addChar ( '"' ); + } + + public final void serializeObject( Object obj, CharBuf builder ) { + + + TypeType type = TypeType.getInstanceType(obj); + + switch ( type ) { + + case NULL: + builder.addNull(); + return; + case INT: + builder.addInt ( int.class.cast ( obj ) ); + return; + case BOOLEAN: + builder.addBoolean ( boolean.class.cast ( obj ) ); + return; + case BYTE: + builder.addByte ( byte.class.cast ( obj ) ); + return; + case LONG: + builder.addLong ( long.class.cast ( obj ) ); + return; + case DOUBLE: + builder.addDouble ( double.class.cast ( obj ) ); + return; + case FLOAT: + builder.addFloat ( float.class.cast ( obj ) ); + return; + case SHORT: + builder.addShort ( short.class.cast ( obj ) ); + return; + case CHAR: + builder.addChar ( char.class.cast ( obj ) ); + return; + case BIG_DECIMAL: + builder.addBigDecimal ( ( BigDecimal ) obj ); + return; + case BIG_INT: + builder.addBigInteger ( ( BigInteger ) obj ); + return; + case DATE: + serializeDate ( ( Date ) obj, builder ); + return; + case CLASS: + builder.addQuoted ( (( Class ) obj).getName() ); + return; + + case STRING: + serializeString ( ( String ) obj, builder ); + return; + case CHAR_SEQUENCE: + serializeString ( obj.toString(), builder ); + return; + case BOOLEAN_WRAPPER: + builder.addBoolean ( ( Boolean ) obj ); + return; + case INTEGER_WRAPPER: + builder.addInt ( (Integer) obj); + return; + case LONG_WRAPPER: + builder.addLong ( (Long) obj); + return; + case FLOAT_WRAPPER: + builder.addFloat ( (Float) obj); + return; + case DOUBLE_WRAPPER: + builder.addDouble ( (Double) obj); + return; + case SHORT_WRAPPER: + builder.addShort ( (Short) obj); + return; + case BYTE_WRAPPER: + builder.addByte ( (Byte) obj); + return; + case CHAR_WRAPPER: + builder.addChar ( (Character) obj); + return; + case ENUM: + builder.addQuoted ( obj.toString () ); + return; + + case TIME_ZONE: + TimeZone zone = (TimeZone) obj; + + builder.addQuoted ( zone.getID() ); + return; + + + case COLLECTION: + case LIST: + case SET: + this.serializeCollection ( (Collection) obj, builder ); + return; + case MAP: + this.serializeMap ( ( Map ) obj, builder ); + return; + + + case ARRAY: + case ARRAY_INT: + case ARRAY_BYTE: + case ARRAY_SHORT: + case ARRAY_FLOAT: + case ARRAY_DOUBLE: + case ARRAY_LONG: + case ARRAY_STRING: + case ARRAY_OBJECT: + this.serializeArray ( obj, builder ); + return; + case ABSTRACT: + case INTERFACE: + serializeSubtypeInstance ( obj, builder ); + return; + + case VALUE: + Value value = (Value) obj; + serializeObject( value.toValue(), builder ); + return; + + case INSTANCE: + serializeInstance ( obj, builder ); + return; + case CURRENCY: + serializeCurrency ( ( Currency ) obj, builder ); + return; + default: + + this.serializeUnknown(obj, builder); + + + } + + + } + + + public void serializeUnknown ( Object obj, CharBuf builder ) { + //try { + builder.addQuoted ( obj.toString () ); + //} catch (Exception ex) { + //unknown so... TODO log + // + //} + } + + + + public final void serializeInstance ( Object instance, CharBuf builder ) { + + try { + + level++; + + if (level > 100) { + die("Detected circular dependency", builder.toString()); + } + + if (serializeAsSupport && Reflection.respondsTo(instance, "serializeAs")) { + serializeObject(Invoker.invoke(instance, "serializeAs"), builder); + return; + } + + final Collection fields = getFields(instance.getClass()).values(); + + + builder.addChar( '{' ); + + int index = 0; + for ( FieldAccess fieldAccess : fields ) { + if (serializeField ( instance, fieldAccess, builder ) ) { + builder.add(','); + index++; + } + } + if ( index > 0 ) { + builder.removeLastChar(); + } + builder.addChar( '}' ); + + + } catch (Exception ex) { + Exceptions.handle(ex, "serialize instance", instance, + "class name of instance", Boon.className(instance), + "obj", instance); + } finally { + level--; + } + + } + + @Override + public void serializeInstance(Object obj, CharBuf builder, boolean includeTypeInfo) { + + this.serializeInstance(obj, builder); + + } + + + public Map getFields( Class aClass ) { + Map map = fieldMap.get( aClass ); + if (map == null) { + map = doGetFields ( aClass ); + fieldMap.put ( aClass, map ); + } + return map; + + } + + private final Map doGetFields ( Class aClass ) { + Map fields = Maps.copy ( Reflection.getPropertyFieldAccessMapFieldFirstForSerializer ( aClass ) ); + + List removeFields = new ArrayList<>(); + + for (FieldAccess field : fields.values()) { + if (field.isWriteOnly ()) { + removeFields.add(field); + } + } + + for (FieldAccess fieldAccess : removeFields) { + fields.remove(fieldAccess.name()); + } + return fields; + } + + + private static final char [] EMPTY_MAP_CHARS = {'{', '}'}; + + public final void serializeMap( Map smap, CharBuf builder ) { + + Map map = smap; + if ( map.size () == 0 ) { + builder.addChars ( EMPTY_MAP_CHARS ); + return; + } + + + builder.addChar( '{' ); + + int index=0; + final Set entrySet = map.entrySet(); + for ( Map.Entry entry : entrySet ) { + if (entry.getValue ()!=null ) { + serializeFieldName ( Str.toString(entry.getKey()), builder ); + serializeObject( entry.getValue(), builder ); + builder.addChar ( ',' ); + index++; + } + } + if (index>0) + builder.removeLastChar (); + builder.addChar( '}' ); + + } + + + public final void serializeArray ( TypeType componentType, Object objectArray, CharBuf builder ) { + + + switch (componentType) { + case STRING: //optimization + String[] array = (String[]) objectArray; + final int length = array.length; + + builder.addChar( '[' ); + for ( int index = 0; index < length; index++ ) { + serializeString( array[index], builder ); + builder.addChar ( ',' ); + } + builder.removeLastChar (); + builder.addChar( ']' ); + break; + default: + serializeArray(objectArray, builder); + } + } + + @Override + public final void serializeArray ( Object array, CharBuf builder ) { + + if ( Array.getLength (array) == 0 ) { + builder.addChars ( EMPTY_LIST_CHARS ); + return; + } + + builder.addChar( '[' ); + final int length = Array.getLength( array ); + + for ( int index = 0; index < length; index++ ) { + final Object o = Array.get(array, index); + if (o == null) { + builder.addNull(); + builder.addChar ( ',' ); + continue; + } + serializeObject( Array.get( array, index ), builder ); + builder.addChar ( ',' ); + } + builder.removeLastChar (); + builder.addChar( ']' ); + + } + + private void serializeFieldName ( String name, CharBuf builder ) { + builder.addJsonFieldName ( FastStringUtils.toCharArray ( name ) ); + } + + + private static final char [] EMPTY_LIST_CHARS = {'[', ']'}; + + public final void serializeCollection( Collection collection, CharBuf builder ) { + + if ( collection.size () == 0 ) { + builder.addChars ( EMPTY_LIST_CHARS ); + return; + } + + builder.addChar( '[' ); + for ( Object o : collection ) { + if (o == null) { + builder.addNull(); + } else { + serializeObject(o, builder); + } + builder.addChar ( ',' ); + + } + builder.removeLastChar (); + builder.addChar( ']' ); + + } + + + + + + @Override + public void serializeSubtypeInstance( Object instance, CharBuf builder ) { + + level++; + + if (level > 100) { + die("Detected circular dependency", builder.toString()); + } + + final Map fieldAccessors = getFields(instance.getClass ()); + final Collection values = fieldAccessors.values (); + + builder.addString( "{\"class\":" ); + builder.addQuoted ( instance.getClass ().getName () ); + + int index = 0; + int length = values.size(); + + if ( length > 0 ) { + builder.addChar( ',' ); + + for ( FieldAccess fieldAccess : values ) { + if (serializeField ( instance, fieldAccess, builder ) ) { + builder.addChar ( ',' ); + index++; + } + } + if ( index > 0 ) { + builder.removeLastChar(); + } + builder.addChar( '}' ); + + } + + level--; + } + + + +} + diff --git a/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/MapSerializerImpl.java b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/MapSerializerImpl.java new file mode 100644 index 0000000..a45707d --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/MapSerializerImpl.java @@ -0,0 +1,92 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.serializers.impl; + +import org.boon.core.reflection.FastStringUtils; +import org.boon.json.serializers.JsonSerializerInternal; +import org.boon.json.serializers.MapSerializer; +import org.boon.primitive.CharBuf; + +import java.util.Map; +import java.util.Set; + +/** + * Created by rick on 1/1/14. + */ +public class MapSerializerImpl implements MapSerializer { + private static final char [] EMPTY_MAP_CHARS = {'{', '}'}; + private final boolean includeNulls; + + public MapSerializerImpl(boolean includeNulls) { + this.includeNulls = includeNulls; + } + + + private void serializeFieldName ( String name, CharBuf builder ) { + builder.addJsonFieldName ( FastStringUtils.toCharArray ( name ) ); + } + + @Override + public final void serializeMap ( JsonSerializerInternal serializer, Map map, CharBuf builder ) { + + if ( map.size () == 0 ) { + builder.addChars ( EMPTY_MAP_CHARS ); + return; + } + + + builder.addChar( '{' ); + + final Set> entrySet = map.entrySet(); + int index=0; + + if (!includeNulls) { + for (Map.Entry entry : entrySet) { + if (entry.getValue() != null) { + serializeFieldName(entry.getKey().toString(), builder); + serializer.serializeObject(entry.getValue(), builder); + builder.addChar(','); + index++; + } + } + }else { + for (Map.Entry entry : entrySet) { + serializeFieldName(entry.getKey().toString(), builder); + serializer.serializeObject(entry.getValue(), builder); + builder.addChar(','); + index++; + + } + } + if (index>0) + builder.removeLastChar (); + builder.addChar( '}' ); + + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/MapSerializerThatEncodesKeys.java b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/MapSerializerThatEncodesKeys.java new file mode 100644 index 0000000..bbafbce --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/MapSerializerThatEncodesKeys.java @@ -0,0 +1,66 @@ +package org.boon.json.serializers.impl; + + +import org.boon.json.serializers.JsonSerializerInternal; +import org.boon.json.serializers.MapSerializer; +import org.boon.primitive.CharBuf; + +import java.util.Map; +import java.util.Set; + +/** + * Created by rick on 12/14/15. + */ +public class MapSerializerThatEncodesKeys implements MapSerializer { + private static final char[] EMPTY_MAP_CHARS = {'{', '}'}; + private final boolean includeNulls; + + public MapSerializerThatEncodesKeys(boolean includeNulls) { + this.includeNulls = includeNulls; + } + + + private void serializeFieldName(JsonSerializerInternal serializer, Object key, CharBuf builder) { + serializer.serializeObject(key, builder); + builder.add(':'); + + } + + @Override + public final void serializeMap(JsonSerializerInternal serializer, Map map, CharBuf builder) { + + if (map.size() == 0) { + builder.addChars(EMPTY_MAP_CHARS); + return; + } + + + builder.addChar('{'); + + final Set> entrySet = map.entrySet(); + int index = 0; + + if (!includeNulls) { + for (Map.Entry entry : entrySet) { + if (entry.getValue() != null) { + serializeFieldName(serializer, entry.getKey(), builder); + serializer.serializeObject(entry.getValue(), builder); + builder.addChar(','); + index++; + } + } + } else { + for (Map.Entry entry : entrySet) { + serializeFieldName(serializer, entry.getKey(), builder); + serializer.serializeObject(entry.getValue(), builder); + builder.addChar(','); + index++; + + } + } + if (index > 0) + builder.removeLastChar(); + builder.addChar('}'); + + } +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/SerializeUtils.java b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/SerializeUtils.java new file mode 100644 index 0000000..2d57c7f --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/SerializeUtils.java @@ -0,0 +1,79 @@ +package org.boon.json.serializers.impl; + +import org.boon.Boon; +import org.boon.core.TypeType; +import org.boon.json.serializers.CustomObjectSerializer; +import org.boon.json.serializers.JsonSerializerInternal; +import org.boon.primitive.CharBuf; + +import java.util.Collection; +import java.util.Map; +import java.util.Set; + +/** + * Created by Richard on 9/16/14. + */ +public class SerializeUtils { + + + public static void handleInstance(JsonSerializerInternal jsonSerializer, + Object obj, CharBuf builder, + Map overrideMap, + Set noHandle, boolean typeInfo, + TypeType type) { + if (overrideMap!=null) { + Class cls = Boon.cls(obj); + if (cls != null && !cls.isPrimitive() && !noHandle.contains(cls)) { + CustomObjectSerializer customObjectSerializer = overrideMap.get(cls); + if (customObjectSerializer != null) { + customObjectSerializer.serializeObject(jsonSerializer, obj, builder); + return; + } + customObjectSerializer = overrideMap.get(cls.getSuperclass()); + if (customObjectSerializer != null) { + overrideMap.put(cls.getSuperclass(), customObjectSerializer); //Remember this + customObjectSerializer.serializeObject(jsonSerializer, obj, builder); + return; + } + + final Class[] interfaces = cls.getInterfaces(); + for (Class interf : interfaces) { + + customObjectSerializer = overrideMap.get(interf); + if (customObjectSerializer != null) { + overrideMap.put(interf, customObjectSerializer); //Remember this + customObjectSerializer.serializeObject(jsonSerializer, obj, builder); + return; + } + + } + + noHandle.add(cls); + + } + } + + + switch (type) { + case MAP: + jsonSerializer.serializeMap((Map) obj, builder); + return; + case COLLECTION: + case LIST: + case SET: + jsonSerializer.serializeCollection((Collection)obj, builder); + return; + case INSTANCE: + jsonSerializer.serializeInstance(obj, builder, typeInfo); + return; + case INTERFACE: + case ABSTRACT: + jsonSerializer.serializeSubtypeInstance(obj, builder); + return; + + default: + jsonSerializer.serializeUnknown(obj, builder); + } + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/StringSerializerImpl.java b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/StringSerializerImpl.java new file mode 100644 index 0000000..311791f --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/StringSerializerImpl.java @@ -0,0 +1,64 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.serializers.impl; + +import org.boon.Str; +import org.boon.json.serializers.JsonSerializerInternal; +import org.boon.json.serializers.StringSerializer; +import org.boon.primitive.CharBuf; + +/** + * Created by rick on 1/1/14. + */ +public class StringSerializerImpl implements StringSerializer { + + final boolean encodeStrings; + final boolean asAscii; + final boolean includeEmpty; + + public StringSerializerImpl(boolean encodeStrings, boolean asAscii, boolean includeEmpty) { + + this.encodeStrings = encodeStrings; + this.asAscii = asAscii; + this.includeEmpty = includeEmpty; + } + + @Override + public final void serializeString ( JsonSerializerInternal serializer, String string, CharBuf builder ) { + if(includeEmpty || !Str.empty(string)){ + + if (encodeStrings) { + + builder.asJsonString(string, asAscii); + } else { + builder.addQuoted(string); + } + } + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/UnknownSerializerImpl.java b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/UnknownSerializerImpl.java new file mode 100644 index 0000000..cf7b8b7 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/json/serializers/impl/UnknownSerializerImpl.java @@ -0,0 +1,43 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.json.serializers.impl; + +import org.boon.json.serializers.JsonSerializerInternal; +import org.boon.json.serializers.UnknownSerializer; +import org.boon.primitive.CharBuf; + +/** + * Created by rick on 1/1/14. + */ +public class UnknownSerializerImpl implements UnknownSerializer{ + @Override + public final void serializeUnknown ( JsonSerializerInternal serializer, Object unknown, CharBuf builder ) { + builder.addQuoted ( unknown.toString () ); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/logging/ConfigurableLogger.java b/datastructures-json-boon/src/main/java/org/boon/logging/ConfigurableLogger.java new file mode 100644 index 0000000..02d5a71 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/logging/ConfigurableLogger.java @@ -0,0 +1,318 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.logging; + +import org.boon.core.Handler; + +import static org.boon.primitive.Arry.array; +import static org.boon.logging.LogRecord.after; +import static org.boon.logging.LogRecord.before; + +/** + * Created by Richard on 3/5/14. + */ +public class ConfigurableLogger implements LoggerDelegate{ + + + private transient volatile LoggerDelegate logger; + private final Handler handler; + final LoggerDelegate original; + + public static final HandlerNoOP noOP = new HandlerNoOP(); + + + + public synchronized void unwrap() { + logger = original; + } + + public ConfigurableLogger(final LoggerDelegate delegate, Handler logRecordHandler) { + this.logger = delegate; + this.handler = logRecordHandler; + original = logger; + } + + + public ConfigurableLogger(final LoggerDelegate delegate) { + this.logger = delegate; + this.handler = noOP; + original = logger; + } + + + public synchronized void tee(LoggerDelegate newLogger) { + logger = new TeeLoggerWrapper(logger, newLogger); + } + + + public synchronized void handler(Handler handler) { + logger = new ConfigurableLogger(logger, handler); + } + + + public synchronized void teeAndHandler(LoggerDelegate newLogger, Handler handler) { + logger = new TeeLoggerWrapper(logger, newLogger); + } + + public boolean infoOn() { + + return logger.infoOn(); + } + + public boolean debugOn() { + return logger.debugOn(); + } + + public boolean traceOn() { + return logger.traceOn(); + } + + public void fatal(final Object message) { + handler.handle(before(array(message), LogLevel.FATAL)); + logger.fatal(message); + + handler.handle(after(array(message), LogLevel.FATAL)); + } + + public void fatal(final Object message, final Throwable throwable) { + + handler.handle(before(array(message), throwable, LogLevel.FATAL)); + logger.fatal(message, throwable); + + handler.handle(after(array(message), throwable, LogLevel.FATAL)); + } + + public void error(final Object message) { + + handler.handle(before(array(message), LogLevel.ERROR)); + logger.error(message); + + handler.handle(after(array(message), LogLevel.ERROR)); + } + + public void error(final Object message, final Throwable throwable) { + + handler.handle(before(array(message), throwable, LogLevel.ERROR)); + logger.error(message, throwable); + + handler.handle(after(array(message), throwable, LogLevel.ERROR)); + } + + public void warn(final Object message) { + + handler.handle(before(array(message), LogLevel.WARN)); + logger.warn(message); + + handler.handle(after(array(message), LogLevel.WARN)); + } + + public void warn(final Object message, final Throwable throwable) { + + handler.handle(before(array(message), throwable, LogLevel.WARN)); + logger.warn(message, throwable); + + handler.handle(after(array(message), throwable, LogLevel.WARN)); + } + + public void info(final Object message) { + + handler.handle(before(array(message), LogLevel.INFO)); + logger.info(message); + + handler.handle(after(array(message), LogLevel.INFO)); + } + + public void info(final Object message, final Throwable throwable) { + + handler.handle(before(array(message), throwable, LogLevel.INFO)); + logger.info(message, throwable); + + handler.handle(after(array(message), throwable, LogLevel.INFO)); + } + + public void debug(final Object message) { + + handler.handle(before(array(message), LogLevel.DEBUG)); + logger.debug(message); + handler.handle(after(array(message), LogLevel.DEBUG)); + + } + + public void debug(final Object message, final Throwable throwable) { + + handler.handle(before(array(message), throwable, LogLevel.DEBUG)); + logger.debug(message, throwable); + handler.handle(after(array(message), throwable, LogLevel.DEBUG)); + } + + public void trace(final Object message) { + + handler.handle(before(array(message), LogLevel.TRACE)); + logger.trace(message); + + handler.handle(after(array(message), LogLevel.TRACE)); + } + + public void trace(final Object message, final Throwable throwable) { + + handler.handle(before(array(message), throwable, LogLevel.TRACE)); + logger.trace(message, throwable); + handler.handle(after(array(message), throwable, LogLevel.TRACE)); + } + + + public LoggerDelegate level(LogLevel level) { + logger.level(level); + return this; + } + + + + public LoggerDelegate turnOff() { + logger.turnOff(); + return this; + } + + public void fatal(Object... messages) { + + handler.handle(before(messages, LogLevel.FATAL)); + logger.fatal(messages); + + handler.handle(after(messages, LogLevel.FATAL)); + } + + public void fatal(Throwable throwable, Object... messages) { + + handler.handle(before(messages, throwable, LogLevel.FATAL)); + logger.fatal(throwable, messages); + + handler.handle(after(messages, throwable, LogLevel.FATAL)); + } + + public void error(Object... messages) { + + handler.handle(before(messages, LogLevel.ERROR)); + logger.error(messages); + + handler.handle(after(messages, LogLevel.ERROR)); + } + + public void error(Throwable throwable, Object... messages) { + + handler.handle(before(messages, throwable, LogLevel.ERROR)); + logger.error(throwable, messages); + + handler.handle(after(messages, throwable, LogLevel.ERROR)); + } + + public void warn(Object... messages) { + + handler.handle(before(messages, LogLevel.WARN)); + logger.warn(messages); + + handler.handle(after(messages, LogLevel.WARN)); + } + + public void warn(Throwable throwable, Object... messages) { + + handler.handle(before(messages, throwable, LogLevel.WARN)); + + logger.warn(throwable, messages); + + handler.handle(after(messages, throwable, LogLevel.WARN)); + } + + public void info(Object... messages) { + + handler.handle(before(messages, LogLevel.INFO)); + logger.info(messages); + + handler.handle(after(messages, LogLevel.INFO)); + } + + public void info(Throwable throwable, Object... messages) { + + handler.handle(before(messages, throwable, LogLevel.INFO)); + logger.info(throwable, messages); + + handler.handle(after(messages, throwable, LogLevel.INFO)); + } + + public void config(Object... messages) { + + handler.handle(before(messages, LogLevel.CONFIG)); + logger.config(messages); + + handler.handle(after(messages, LogLevel.CONFIG)); + } + + public void config(Throwable throwable, Object... messages) { + + handler.handle(before(messages, throwable, LogLevel.CONFIG)); + logger.config(throwable, messages); + + handler.handle(after(messages, throwable, LogLevel.CONFIG)); + } + + public void debug(Object... messages) { + + handler.handle(before(messages, LogLevel.DEBUG)); + logger.debug(messages); + + handler.handle(after(messages, LogLevel.DEBUG)); + } + + public void debug(Throwable throwable, Object... messages) { + + handler.handle(before(messages, throwable, LogLevel.DEBUG)); + logger.debug(throwable, messages); + + handler.handle(after(messages, throwable, LogLevel.DEBUG)); + } + + public void trace(Object... messages) { + + handler.handle(before(messages, LogLevel.TRACE)); + logger.trace(messages); + + handler.handle(after(messages, LogLevel.TRACE)); + + } + + public void trace(Throwable throwable, Object... messages) { + + handler.handle(before(messages, throwable, LogLevel.TRACE)); + logger.trace(throwable, messages); + + handler.handle(after(messages, throwable, LogLevel.TRACE)); + + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/logging/HandlerNoOP.java b/datastructures-json-boon/src/main/java/org/boon/logging/HandlerNoOP.java new file mode 100644 index 0000000..450ee3b --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/logging/HandlerNoOP.java @@ -0,0 +1,40 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.logging; + +import org.boon.core.Handler; + +/** + * Created by Richard on 3/5/14. + */ +public final class HandlerNoOP implements Handler { + @Override + public final void handle(LogRecord event) { + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/logging/InMemoryLogger.java b/datastructures-json-boon/src/main/java/org/boon/logging/InMemoryLogger.java new file mode 100644 index 0000000..6710e3a --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/logging/InMemoryLogger.java @@ -0,0 +1,311 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.logging; + +import org.boon.primitive.CharBuf; +import static org.boon.logging.LogLevel.*; + +/** + * Created by Richard on 3/5/14. + */ +public class InMemoryLogger implements LoggerDelegate { + + private LogLevel level = DEBUG; + + private CharBuf buf = CharBuf.create(100); + + + /** + * + * + * @return + */ + @Override + public boolean infoOn() { + switch (level) { + case INFO: + case ERROR: + case FATAL: + case WARN: + return true; + } + return false; + } + + @Override + public boolean debugOn() { + switch (level) { + case INFO: + case ERROR: + case FATAL: + case WARN: + case CONFIG: + case DEBUG: + return true; + } + return false; + } + + @Override + public boolean traceOn() { + switch (level) { + case INFO: + case ERROR: + case FATAL: + case WARN: + case CONFIG: + case DEBUG: + case TRACE: + return true; + } + return false; + } + + @Override + public LoggerDelegate level(LogLevel level) { + this.level = level; + return this; + } + + @Override + public LoggerDelegate turnOff() { + this.level = OFF; + return this; + } + + @Override + public void fatal(Object... messages) { + if (level.ordinal() <= FATAL.ordinal()) { + buf.puts(FATAL, messages); + } + } + + @Override + public void fatal(Throwable t, Object... messages) { + if (level.ordinal() <= FATAL.ordinal()) { + buf.puts(FATAL, t, messages); + } + + } + + @Override + public void error(Object... messages) { + if (level.ordinal() <= ERROR.ordinal()) { + buf.puts(ERROR, messages); + } + + } + + @Override + public void error(Throwable t, Object... messages) { + if (level.ordinal() <= ERROR.ordinal()) { + buf.puts(ERROR, t, messages); + } + + } + + @Override + public void warn(Object... messages) { + if (level.ordinal() <= WARN.ordinal()) { + buf.puts(WARN, messages); + } + + } + + @Override + public void warn(Throwable t, Object... messages) { + if (level.ordinal() <= WARN.ordinal()) { + buf.puts(WARN, t, messages); + } + + } + + @Override + public void info(Object... messages) { + if (level.ordinal() <= INFO.ordinal()) { + buf.puts(INFO, messages); + } + + } + + @Override + public void info(Throwable t, Object... messages) { + if (level.ordinal() <= INFO.ordinal()) { + buf.puts(INFO, t, messages); + } + + } + + @Override + public void config(Object... messages) { + if (level.ordinal() <= CONFIG.ordinal()) { + buf.puts(CONFIG, messages); + } + + } + + @Override + public void config(Throwable t, Object... messages) { + if (level.ordinal() <= CONFIG.ordinal()) { + buf.puts(CONFIG, t, messages); + } + + } + + @Override + public void debug(Object... messages) { + if (level.ordinal() <= DEBUG.ordinal()) { + buf.puts(DEBUG, messages); + } + + } + + @Override + public void debug(Throwable t, Object... messages) { + if (level.ordinal() <= DEBUG.ordinal()) { + buf.puts(DEBUG, t, messages); + } + + } + + @Override + public void trace(Object... messages) { + if (level.ordinal() <= TRACE.ordinal()) { + buf.puts(TRACE, messages); + } + + } + + @Override + public void trace(Throwable t, Object... messages) { + if (level.ordinal() <= TRACE.ordinal()) { + buf.puts(TRACE, t, messages); + } + + } + + @Override + public void fatal(Object message) { + if (level.ordinal() <= FATAL.ordinal()) { + buf.puts(FATAL, message); + } + + } + + @Override + public void fatal(Object message, Throwable t) { + if (level.ordinal() <= FATAL.ordinal()) { + buf.puts(FATAL, t, message); + } + + } + + @Override + public void error(Object message) { + if (level.ordinal() <= ERROR.ordinal()) { + buf.puts(ERROR, message); + } + + } + + @Override + public void error(Object message, Throwable t) { + if (level.ordinal() <= ERROR.ordinal()) { + buf.puts(ERROR, t, message); + } + + } + + @Override + public void warn(Object message) { + if (level.ordinal() <= WARN.ordinal()) { + buf.puts(WARN, message); + } + + } + + @Override + public void warn(Object message, Throwable t) { + if (level.ordinal() <= WARN.ordinal()) { + buf.puts(WARN, t, message); + } + + } + + @Override + public void info(Object message) { + if (level.ordinal() <= INFO.ordinal()) { + buf.puts(INFO, message); + } + + } + + @Override + public void info(Object message, Throwable t) { + if (level.ordinal() <= INFO.ordinal()) { + buf.puts(INFO, t, message); + } + + } + + @Override + public void debug(Object message) { + if (level.ordinal() <= DEBUG.ordinal()) { + buf.puts(DEBUG, message); + } + + } + + @Override + public void debug(Object message, Throwable t) { + if (level.ordinal() <= DEBUG.ordinal()) { + buf.puts(DEBUG, t, message); + } + + } + + @Override + public void trace(Object message) { + if (level.ordinal() <= TRACE.ordinal()) { + buf.puts(TRACE, message); + } + + } + + @Override + public void trace(Object message, Throwable t) { + if (level.ordinal() <= TRACE.ordinal()) { + buf.puts(TRACE, t, message); + } + } + + public CharBuf getBuf() { + return buf; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/logging/InMemoryThreadLocalLogger.java b/datastructures-json-boon/src/main/java/org/boon/logging/InMemoryThreadLocalLogger.java new file mode 100644 index 0000000..b08ff4e --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/logging/InMemoryThreadLocalLogger.java @@ -0,0 +1,344 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.logging; + +import org.boon.primitive.CharBuf; + +import static org.boon.logging.LogLevel.*; +import static org.boon.logging.LogLevel.DEBUG; +import static org.boon.logging.LogLevel.TRACE; + +/** + * Created by Richard on 3/5/14. + */ +public class InMemoryThreadLocalLogger implements LoggerDelegate{ + + + + private LogLevel level = DEBUG; + + private static ThreadLocal bufTL = new ThreadLocal<>(); + + + public InMemoryThreadLocalLogger(LogLevel level) { + this.level = level; + } + + private static CharBuf buf() { + CharBuf buf = bufTL.get(); + if (buf == null) { + buf = CharBuf.create(100); + bufTL.set(buf); + } + return buf; + } + + + public static void start() { + buf(); + } + + + public static CharBuf getBuffer() { + return buf(); + } + + public static void clear() { + bufTL.set(null); + } + + + /** + * + * + * @return + */ + @Override + public boolean infoOn() { + switch (level) { + case INFO: + case ERROR: + case FATAL: + case WARN: + return true; + } + return false; + } + + @Override + public boolean debugOn() { + switch (level) { + case INFO: + case ERROR: + case FATAL: + case WARN: + case CONFIG: + case DEBUG: + return true; + } + return false; + } + + @Override + public boolean traceOn() { + switch (level) { + case INFO: + case ERROR: + case FATAL: + case WARN: + case CONFIG: + case DEBUG: + case TRACE: + return true; + } + return false; + } + + @Override + public LoggerDelegate level(LogLevel level) { + this.level = level; + return this; + } + + @Override + public LoggerDelegate turnOff() { + this.level = OFF; + return this; + } + + @Override + public void fatal(Object... messages) { + if (level.ordinal() <= FATAL.ordinal()) { + buf().puts(FATAL, messages); + } + } + + @Override + public void fatal(Throwable t, Object... messages) { + if (level.ordinal() <= FATAL.ordinal()) { + buf().puts(FATAL, t, messages); + } + + } + + @Override + public void error(Object... messages) { + if (level.ordinal() <= ERROR.ordinal()) { + buf().puts(ERROR, messages); + } + + } + + @Override + public void error(Throwable t, Object... messages) { + if (level.ordinal() <= ERROR.ordinal()) { + buf().puts(ERROR, t, messages); + } + + } + + @Override + public void warn(Object... messages) { + if (level.ordinal() <= WARN.ordinal()) { + buf().puts(WARN, messages); + } + + } + + @Override + public void warn(Throwable t, Object... messages) { + if (level.ordinal() <= WARN.ordinal()) { + buf().puts(WARN, t, messages); + } + + } + + @Override + public void info(Object... messages) { + if (level.ordinal() <= INFO.ordinal()) { + buf().puts(INFO, messages); + } + + } + + @Override + public void info(Throwable t, Object... messages) { + if (level.ordinal() <= INFO.ordinal()) { + buf().puts(INFO, t, messages); + } + + } + + @Override + public void config(Object... messages) { + if (level.ordinal() <= CONFIG.ordinal()) { + buf().puts(CONFIG, messages); + } + + } + + @Override + public void config(Throwable t, Object... messages) { + if (level.ordinal() <= CONFIG.ordinal()) { + buf().puts(CONFIG, t, messages); + } + + } + + @Override + public void debug(Object... messages) { + if (level.ordinal() <= DEBUG.ordinal()) { + buf().puts(DEBUG, messages); + } + + } + + @Override + public void debug(Throwable t, Object... messages) { + if (level.ordinal() <= DEBUG.ordinal()) { + buf().puts(DEBUG, t, messages); + } + + } + + @Override + public void trace(Object... messages) { + if (level.ordinal() <= TRACE.ordinal()) { + buf().puts(TRACE, messages); + } + + } + + @Override + public void trace(Throwable t, Object... messages) { + if (level.ordinal() <= TRACE.ordinal()) { + buf().puts(TRACE, t, messages); + } + + } + + @Override + public void fatal(Object message) { + if (level.ordinal() <= FATAL.ordinal()) { + buf().puts(FATAL, message); + } + + } + + @Override + public void fatal(Object message, Throwable t) { + if (level.ordinal() <= FATAL.ordinal()) { + buf().puts(FATAL, t, message); + } + + } + + @Override + public void error(Object message) { + if (level.ordinal() <= ERROR.ordinal()) { + buf().puts(ERROR, message); + } + + } + + @Override + public void error(Object message, Throwable t) { + if (level.ordinal() <= ERROR.ordinal()) { + buf().puts(ERROR, t, message); + } + + } + + @Override + public void warn(Object message) { + if (level.ordinal() <= WARN.ordinal()) { + buf().puts(WARN, message); + } + + } + + @Override + public void warn(Object message, Throwable t) { + if (level.ordinal() <= WARN.ordinal()) { + buf().puts(WARN, t, message); + } + + } + + @Override + public void info(Object message) { + if (level.ordinal() <= INFO.ordinal()) { + buf().puts(INFO, message); + } + + } + + @Override + public void info(Object message, Throwable t) { + if (level.ordinal() <= INFO.ordinal()) { + buf().puts(INFO, t, message); + } + + } + + @Override + public void debug(Object message) { + if (level.ordinal() <= DEBUG.ordinal()) { + buf().puts(DEBUG, message); + } + + } + + @Override + public void debug(Object message, Throwable t) { + if (level.ordinal() <= DEBUG.ordinal()) { + buf().puts(DEBUG, t, message); + } + + } + + @Override + public void trace(Object message) { + if (level.ordinal() <= TRACE.ordinal()) { + buf().puts(TRACE, message); + } + + } + + @Override + public void trace(Object message, Throwable t) { + if (level.ordinal() <= TRACE.ordinal()) { + buf().puts(TRACE, t, message); + } + } + + public CharBuf getBuf() { + return buf(); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/logging/JDKLogger.java b/datastructures-json-boon/src/main/java/org/boon/logging/JDKLogger.java new file mode 100644 index 0000000..8346e64 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/logging/JDKLogger.java @@ -0,0 +1,284 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.logging; + + +import java.util.logging.Level; + +import static org.boon.Boon.sputs; +import static org.boon.Str.str; + +public class JDKLogger implements LoggerDelegate { + private final java.util.logging.Logger logger; + + + + + JDKLogger(final String name) { + logger = java.util.logging.Logger.getLogger(name); + + } + + @Override + public boolean infoOn() { + return logger.isLoggable(Level.INFO); + } + + @Override + public boolean debugOn() { + return logger.isLoggable(Level.FINE); + } + + @Override + public boolean traceOn() { + return logger.isLoggable(Level.FINEST); + } + + + @Override + public void fatal(Object... messages) { + logger.log(Level.SEVERE, sputs(messages)); + } + + @Override + public void fatal(Throwable t, Object... messages) { + + logger.log(Level.SEVERE, sputs(messages), t); + } + + + public void fatal(final Exception message) { + logger.log(Level.SEVERE, "", message); + } + + + public void error(final Exception message) { + logger.log(Level.SEVERE, "", message); + } + + + public void warn(final Exception message) { + logger.log(Level.WARNING, "", message); + } + + @Override + public void error(Object... messages) { + + logger.log(Level.SEVERE, sputs(messages)); + + } + + @Override + public void error(Throwable t, Object... messages) { + + logger.log(Level.SEVERE, sputs(messages), t); + } + + @Override + public void warn(Object... messages) { + + + logger.log(Level.WARNING, sputs(messages)); + + } + + @Override + public void warn(Throwable t, Object... messages) { + + logger.log(Level.WARNING, sputs(messages), t); + + } + + @Override + public void info(Object... messages) { + + + logger.log(Level.INFO, sputs(messages)); + } + + @Override + public void info(Throwable t, Object... messages) { + + logger.log(Level.INFO, sputs(messages), t); + + } + + + @Override + public void config(Object... messages) { + + + logger.log(Level.CONFIG, sputs(messages)); + } + + @Override + public void config(Throwable t, Object... messages) { + + logger.log(Level.CONFIG, sputs(messages), t); + + } + + @Override + public void debug(Object... messages) { + + logger.log(Level.FINE, sputs(messages)); + + } + + @Override + public void debug(Throwable t, Object... messages) { + + logger.log(Level.FINE, sputs(messages), t); + + } + + @Override + public void trace(Object... messages) { + + logger.log(Level.FINEST, sputs(messages)); + + } + + @Override + public void trace(Throwable t, Object... messages) { + + logger.log(Level.FINEST, sputs(messages), t); + + } + + + public LogLevel level() { + Level level = logger.getLevel(); + if (level == Level.FINE) { + return LogLevel.DEBUG; + } else if (level == Level.FINEST) { + return LogLevel.TRACE; + } else if (level == Level.CONFIG) { + return LogLevel.CONFIG; + } else if (level == Level.INFO) { + return LogLevel.INFO; + } else if (level == Level.WARNING) { + return LogLevel.WARN; + } else if (level == Level.SEVERE) { + return LogLevel.FATAL; + } + return LogLevel.ERROR; + } + + public LoggerDelegate level(LogLevel level) { + switch (level) { + case DEBUG: + logger.setLevel( Level.FINE ); + break; + + case TRACE: + logger.setLevel( Level.FINEST ); + break; + + case CONFIG: + logger.setLevel( Level.CONFIG ); + break; + + case INFO: + logger.setLevel( Level.INFO ); + break; + + case WARN: + logger.setLevel( Level.WARNING ); + break; + + + case ERROR: + logger.setLevel( Level.SEVERE ); + break; + + case FATAL: + logger.setLevel( Level.SEVERE ); + break; + + } + return this; + } + + + public LoggerDelegate turnOff() { + logger.setLevel(Level.OFF); + return this; + } + + + public void fatal(final Object message) { + logger.log(Level.SEVERE, str(message)); + } + + public void fatal(final Object message, final Throwable t) { + logger.log(Level.SEVERE, str(message) , t); + } + + public void error(final Object message) { + logger.log(Level.SEVERE, str(message)); + } + + public void error(final Object message, final Throwable t) { + logger.log(Level.SEVERE, str(message), t); + + } + + public void warn(final Object message) { + logger.log(Level.WARNING, str(message)); + } + + public void warn(final Object message, final Throwable t) { + logger.log(Level.WARNING, str(message), t); + } + + public void info(final Object message) { + logger.log(Level.INFO, str(message)); + } + + public void info(final Object message, final Throwable t) { + logger.log(Level.INFO, str(message), t); + } + + public void debug(final Object message) { + logger.log(Level.FINE, str(message)); + } + + public void debug(final Object message, final Throwable t) { + logger.log(Level.FINE, str(message), t); + } + + public void trace(final Object message) { + logger.log(Level.FINEST, str(message)); + } + + public void trace(final Object message, final Throwable t) { + logger.log(Level.FINEST, str(message), t); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/logging/JDKLoggerFactory.java b/datastructures-json-boon/src/main/java/org/boon/logging/JDKLoggerFactory.java new file mode 100644 index 0000000..80ee19e --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/logging/JDKLoggerFactory.java @@ -0,0 +1,41 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.logging; + +public class JDKLoggerFactory implements LoggerFactory { + + public LoggerDelegate logger(final String name) { + return new JDKLogger(name); + } + + @Override + public LoggerDelegate apply(String logName) { + return logger(logName); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/logging/LogLevel.java b/datastructures-json-boon/src/main/java/org/boon/logging/LogLevel.java new file mode 100644 index 0000000..aa76da2 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/logging/LogLevel.java @@ -0,0 +1,44 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.logging; + +/** + * Created by Richard on 3/5/14. + */ +public enum LogLevel { + ALL, + TRACE, + DEBUG, + CONFIG, + INFO, + WARN, + ERROR, + FATAL, + OFF +} diff --git a/datastructures-json-boon/src/main/java/org/boon/logging/LogRecord.java b/datastructures-json-boon/src/main/java/org/boon/logging/LogRecord.java new file mode 100644 index 0000000..c4960ed --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/logging/LogRecord.java @@ -0,0 +1,102 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.logging; + +import java.util.Arrays; + +/** + * Created by Richard on 3/5/14. + */ +public class LogRecord { + + public final Object[] messages; + public final Throwable throwable; + public final LogLevel level; + public final boolean before; + + + + public static LogRecord before(Object[] messages, Throwable throwable, LogLevel level) { + return new LogRecord(messages, throwable, level, true); + } + + + public static LogRecord after(Object[] messages, Throwable throwable, LogLevel level) { + return new LogRecord(messages, throwable, level, false); + + } + + + public static LogRecord before(Object[] messages, LogLevel level) { + return new LogRecord(messages, null, level, true); + + } + + + public static LogRecord after(Object[] messages, LogLevel level) { + return new LogRecord(messages, null, level, false); + + } + + + public LogRecord(Object[] messages, Throwable throwable, LogLevel level, boolean before) { + this.messages = messages; + this.throwable = throwable; + this.level = level; + this.before = before; + } + + public LogRecord() { + messages = null; + throwable = null; + level = null; + before = false; + } + + public Object[] getMessages() { + return messages; + } + + public Throwable getThrowable() { + return throwable; + } + + public LogLevel getLevel() { + return level; + } + + @Override + public String toString() { + return "LogRecord{" + + "messages=" + Arrays.toString(messages) + + ", throwable=" + throwable + + ", level=" + level + + '}'; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/logging/LoggerDelegate.java b/datastructures-json-boon/src/main/java/org/boon/logging/LoggerDelegate.java new file mode 100644 index 0000000..22c6414 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/logging/LoggerDelegate.java @@ -0,0 +1,100 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.logging; + +/** + * Created by Richard on 3/5/14. + */ +public interface LoggerDelegate { + + boolean infoOn(); + + boolean debugOn(); + + boolean traceOn(); + + LoggerDelegate level(LogLevel level); + + LoggerDelegate turnOff(); + + void fatal(Object... messages); + + void fatal(Throwable t, Object... messages); + + void error(Object... messages); + + void error(Throwable t, Object... messages); + + void warn(Object... messages); + + void warn(Throwable t, Object... messages); + + void info(Object... messages); + + void info(Throwable t, Object... messages); + + void config(Object... messages); + + void config(Throwable t, Object... messages); + + void debug(Object... messages); + + void debug(Throwable t, Object... messages); + + void trace(Object... messages); + + void trace(Throwable t, Object... messages); + + void fatal(final Object message); + + void fatal(final Object message, final Throwable t); + + void error(final Object message); + + void error(final Object message, final Throwable t); + + void warn(final Object message); + + void warn(final Object message, final Throwable t); + + void info(final Object message); + + void info(final Object message, final Throwable t); + + void debug(final Object message); + + void debug(final Object message, final Throwable t); + + void trace(final Object message); + + void trace(final Object message, final Throwable t); + + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/logging/LoggerFactory.java b/datastructures-json-boon/src/main/java/org/boon/logging/LoggerFactory.java new file mode 100644 index 0000000..c4ca808 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/logging/LoggerFactory.java @@ -0,0 +1,35 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.logging; + +import org.boon.core.Function; + +public interface LoggerFactory extends Function{ + public LoggerDelegate logger(final String name); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/logging/Logging.java b/datastructures-json-boon/src/main/java/org/boon/logging/Logging.java new file mode 100644 index 0000000..ee94dfe --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/logging/Logging.java @@ -0,0 +1,204 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.logging; + + +import org.boon.core.Sys; + +import java.lang.ref.WeakReference; +import java.util.concurrent.ConcurrentHashMap; +import java.util.concurrent.ConcurrentMap; + +/** + * @author Rick Hightower + */ +public class Logging { + + + private final static Context _context; + private static WeakReference weakContext = new WeakReference<>( null ); + + + private static class Context { + + + private static volatile LoggerFactory factory; + + private static final ConcurrentMap loggers = new ConcurrentHashMap<>(); + + + private static final ConcurrentMap configurableLoggers + = new ConcurrentHashMap<>(); + + + } + + static { + + boolean noStatics = Boolean.getBoolean( "org.boon.noStatics" ); + if ( noStatics || Sys.inContainer() ) { + + _context = null; + weakContext = new WeakReference<>( new Context() ); + + } else { + _context = new Context(); + } + } + + + + /* Manages weak references. */ + private static Context context() { + + if ( _context != null ) { + return _context; + } else { + Context context = weakContext.get(); + if ( context == null ) { + context = new Context(); + weakContext = new WeakReference<>( context ); + } + return context; + } + } + + + public static final String LOGGER_FACTORY_CLASS_NAME = "org.boon.logger-logger-factory-class-name"; + + + static { + init(); + } + + public static synchronized void init() { + LoggerFactory factory; + + String className = JDKLoggerFactory.class.getName(); + try { + className = System.getProperty(LOGGER_FACTORY_CLASS_NAME); + } catch (Exception e) { + } + + if (className != null) { + ClassLoader loader = Thread.currentThread().getContextClassLoader(); + try { + Class clz = loader.loadClass(className); + factory = (LoggerFactory) clz.newInstance(); + } catch (Exception e) { + throw new IllegalArgumentException("Error instantiating transformer class \"" + + className + "\"", e); + } + } else { + factory = new JDKLoggerFactory(); + } + + context().factory = factory; + } + + + public static ConfigurableLogger configurableLogger(final Class clazz) { + return configurableLogger(clazz.getName()); + } + + + public static ConfigurableLogger configurableLogger(final String name) { + ConfigurableLogger loggerDelegate = context().configurableLoggers.get(name); + + if (loggerDelegate == null) { + + loggerDelegate = new ConfigurableLogger(logger(name)); + + ConfigurableLogger oldLoggerDelegate = context().configurableLoggers.putIfAbsent(name, loggerDelegate); + + if (oldLoggerDelegate != null) { + loggerDelegate = oldLoggerDelegate; + } + } + + return loggerDelegate; + } + + + public static LoggerDelegate logger(final Class clazz) { + return logger(clazz.getName()); + } + + public static LoggerDelegate logger(final String name) { + LoggerDelegate loggerDelegate = context().loggers.get(name); + + if (loggerDelegate == null) { + + loggerDelegate = context().factory.logger(name); + + LoggerDelegate oldLoggerDelegate = context().loggers.putIfAbsent(name, loggerDelegate); + + if (oldLoggerDelegate != null) { + loggerDelegate = oldLoggerDelegate; + } + } + + return loggerDelegate; + } + + public static void setLevel(String name, LogLevel level) { + logger(name).level(level); + } + + + public static void turnOnInMemoryConfigLoggerAll(String name) { + + ConfigurableLogger configurableLogger = configurableLogger(name); + configurableLogger.tee(new InMemoryThreadLocalLogger(LogLevel.ALL)); + } + + + public static void turnOffInMemoryConfigLoggerAll(String name) { + + ConfigurableLogger configurableLogger = configurableLogger(name); + configurableLogger.unwrap(); + } + + public static void removeLogger(String name) { + context().loggers.remove(name); + context().configurableLoggers.remove(name); + } + + + public static void removeLogger(final Class clazz) { + context().loggers.remove(clazz.getName()); + context().configurableLoggers.remove(clazz.getName()); + } + + + + public static Object contextToHold() { + return context(); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/logging/TeeLoggerWrapper.java b/datastructures-json-boon/src/main/java/org/boon/logging/TeeLoggerWrapper.java new file mode 100644 index 0000000..485288a --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/logging/TeeLoggerWrapper.java @@ -0,0 +1,264 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.logging; + +import org.boon.core.Handler; + +/** + * Created by Richard on 3/5/14. + */ +public final class TeeLoggerWrapper extends ConfigurableLogger { + private final LoggerDelegate logger; + + public static final HandlerNoOP noOP = new HandlerNoOP(); + + public TeeLoggerWrapper(LoggerDelegate delegate1, LoggerDelegate delegate2, Handler logRecordHandler) { + super(delegate1, logRecordHandler); + this.logger = delegate2; + } + + + public TeeLoggerWrapper(LoggerDelegate delegate1, LoggerDelegate delegate2) { + super(delegate1, noOP); + this.logger = delegate2; + } + + @Override + public boolean infoOn() { + return super.infoOn(); + } + + @Override + public boolean debugOn() { + return super.debugOn(); + } + + @Override + public boolean traceOn() { + return super.traceOn(); + } + + @Override + public void fatal(Object message) { + super.fatal(message); + logger.fatal(message); + + } + + @Override + public void fatal(Object message, Throwable throwable) { + + super.fatal(message, throwable); + logger.fatal(message, throwable); + + } + + @Override + public void error(Object message) { + super.error(message); + logger.error(message); + + } + + @Override + public void error(Object message, Throwable throwable) { + super.error(message, throwable); + logger.error(message, throwable); + + } + + @Override + public void warn(Object message) { + super.warn(message); + logger.warn(message); + + } + + @Override + public void warn(Object message, Throwable throwable) { + super.warn(message, throwable); + logger.warn(message, throwable); + + } + + @Override + public void info(Object message) { + super.info(message); + logger.info(message); + + } + + @Override + public void info(Object message, Throwable throwable) { + super.info(message, throwable); + logger.info(message, throwable); + + } + + @Override + public void debug(Object message) { + super.debug(message); + logger.debug(message); + + } + + @Override + public void debug(Object message, Throwable throwable) { + super.debug(message, throwable); + logger.debug(message, throwable); + + } + + @Override + public void trace(Object message) { + super.trace(message); + logger.trace(message); + + } + + @Override + public void trace(Object message, Throwable throwable) { + super.trace(message, throwable); + logger.trace(message, throwable); + + } + + @Override + public LoggerDelegate level(LogLevel level) { + super.level(level); + logger.level(level); + return this; + + } + + @Override + public LoggerDelegate turnOff() { + super.turnOff(); + logger.turnOff(); + return this; + } + + @Override + public void fatal(Object... messages) { + super.fatal(messages); + logger.fatal(messages); + + } + + @Override + public void fatal(Throwable throwable, Object... messages) { + super.fatal(throwable, messages); + logger.fatal(throwable, messages); + + } + + @Override + public void error(Object... messages) { + super.error(messages); + logger.error(messages); + + } + + @Override + public void error(Throwable throwable, Object... messages) { + super.error(throwable, messages); + logger.error(throwable, messages); + + } + + @Override + public void warn(Object... messages) { + super.warn(messages); + logger.warn(messages); + + } + + @Override + public void warn(Throwable throwable, Object... messages) { + super.warn(throwable, messages); + logger.warn(throwable, messages); + + } + + @Override + public void info(Object... messages) { + super.info(messages); + logger.info(messages); + + } + + @Override + public void info(Throwable throwable, Object... messages) { + super.info(throwable, messages); + logger.info(throwable, messages); + + } + + @Override + public void config(Object... messages) { + super.config(messages); + logger.config(messages); + + } + + @Override + public void config(Throwable throwable, Object... messages) { + super.config(throwable, messages); + logger.config(throwable, messages); + + } + + @Override + public void debug(Object... messages) { + super.debug(messages); + logger.debug(messages); + + } + + @Override + public void debug(Throwable throwable, Object... messages) { + super.debug(throwable, messages); + logger.debug(throwable, messages); + + } + + @Override + public void trace(Object... messages) { + super.trace(messages); + logger.trace(messages); + + } + + @Override + public void trace(Throwable throwable, Object... messages) { + super.trace(throwable, messages); + logger.trace(throwable, messages); + + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/logging/TerminalLogger.java b/datastructures-json-boon/src/main/java/org/boon/logging/TerminalLogger.java new file mode 100644 index 0000000..ce403c7 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/logging/TerminalLogger.java @@ -0,0 +1,311 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.logging; + + +import static org.boon.Boon.puts; +import static org.boon.logging.LogLevel.*; +import static org.boon.logging.LogLevel.DEBUG; +import static org.boon.logging.LogLevel.TRACE; + +/** + * Created by Richard on 3/5/14. + */ +public class TerminalLogger implements LoggerDelegate { + + + + private LogLevel level = DEBUG; + + + /** + * + * + * @return + */ + @Override + public boolean infoOn() { + switch (level) { + case INFO: + case ERROR: + case FATAL: + case WARN: + return true; + } + return false; + } + + @Override + public boolean debugOn() { + switch (level) { + case INFO: + case ERROR: + case FATAL: + case WARN: + case CONFIG: + case DEBUG: + return true; + } + return false; + } + + @Override + public boolean traceOn() { + switch (level) { + case INFO: + case ERROR: + case FATAL: + case WARN: + case CONFIG: + case DEBUG: + case TRACE: + return true; + } + return false; + } + + @Override + public TerminalLogger level(LogLevel level) { + this.level = level; + return this; + } + + @Override + public LoggerDelegate turnOff() { + this.level = OFF; + return this; + } + + @Override + public void fatal(Object... messages) { + if (level.ordinal() <= FATAL.ordinal()) { + puts(FATAL, messages); + } + } + + @Override + public void fatal(Throwable t, Object... messages) { + if (level.ordinal() <= FATAL.ordinal()) { + puts(FATAL, t, messages); + } + + } + + @Override + public void error(Object... messages) { + if (level.ordinal() <= ERROR.ordinal()) { + puts(ERROR, messages); + } + + } + + @Override + public void error(Throwable t, Object... messages) { + if (level.ordinal() <= ERROR.ordinal()) { + puts(ERROR, t, messages); + } + + } + + @Override + public void warn(Object... messages) { + if (level.ordinal() <= WARN.ordinal()) { + puts(WARN, messages); + } + + } + + @Override + public void warn(Throwable t, Object... messages) { + if (level.ordinal() <= WARN.ordinal()) { + puts(WARN, t, messages); + } + + } + + @Override + public void info(Object... messages) { + if (level.ordinal() <= INFO.ordinal()) { + puts(INFO, messages); + } + + } + + @Override + public void info(Throwable t, Object... messages) { + if (level.ordinal() <= INFO.ordinal()) { + puts(INFO, t, messages); + } + + } + + @Override + public void config(Object... messages) { + if (level.ordinal() <= CONFIG.ordinal()) { + puts(CONFIG, messages); + } + + } + + @Override + public void config(Throwable t, Object... messages) { + if (level.ordinal() <= CONFIG.ordinal()) { + puts(CONFIG, t, messages); + } + + } + + @Override + public void debug(Object... messages) { + if (level.ordinal() <= DEBUG.ordinal()) { + puts(DEBUG, messages); + } + + } + + @Override + public void debug(Throwable t, Object... messages) { + if (level.ordinal() <= DEBUG.ordinal()) { + puts(DEBUG, t, messages); + } + + } + + @Override + public void trace(Object... messages) { + if (level.ordinal() <= TRACE.ordinal()) { + puts(TRACE, messages); + } + + } + + @Override + public void trace(Throwable t, Object... messages) { + if (level.ordinal() <= TRACE.ordinal()) { + puts(TRACE, t, messages); + } + + } + + @Override + public void fatal(Object message) { + if (level.ordinal() <= FATAL.ordinal()) { + puts(FATAL, message); + } + + } + + @Override + public void fatal(Object message, Throwable t) { + if (level.ordinal() <= FATAL.ordinal()) { + puts(FATAL, t, message); + } + + } + + @Override + public void error(Object message) { + if (level.ordinal() <= ERROR.ordinal()) { + puts(ERROR, message); + } + + } + + @Override + public void error(Object message, Throwable t) { + if (level.ordinal() <= ERROR.ordinal()) { + puts(ERROR, t, message); + } + + } + + @Override + public void warn(Object message) { + if (level.ordinal() <= WARN.ordinal()) { + puts(WARN, message); + } + + } + + @Override + public void warn(Object message, Throwable t) { + if (level.ordinal() <= WARN.ordinal()) { + puts(WARN, t, message); + } + + } + + @Override + public void info(Object message) { + if (level.ordinal() <= INFO.ordinal()) { + puts(INFO, message); + } + + } + + @Override + public void info(Object message, Throwable t) { + if (level.ordinal() <= INFO.ordinal()) { + puts(INFO, t, message); + } + + } + + @Override + public void debug(Object message) { + if (level.ordinal() <= DEBUG.ordinal()) { + puts(DEBUG, message); + } + + } + + @Override + public void debug(Object message, Throwable t) { + if (level.ordinal() <= DEBUG.ordinal()) { + puts(DEBUG, t, message); + } + + } + + @Override + public void trace(Object message) { + if (level.ordinal() <= TRACE.ordinal()) { + puts(TRACE, message); + } + + } + + @Override + public void trace(Object message, Throwable t) { + if (level.ordinal() <= TRACE.ordinal()) { + puts(TRACE, t, message); + } + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/messages/MessageSpecification.java b/datastructures-json-boon/src/main/java/org/boon/messages/MessageSpecification.java new file mode 100644 index 0000000..3cfc8a0 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/messages/MessageSpecification.java @@ -0,0 +1,267 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.messages; + +import org.boon.validation.ValidationContext; + +import java.io.Serializable; +import java.util.ArrayList; +import java.util.List; + + +/** + * Contains information about how to generate a message. + * This class knows how to create a message. + * It will look up the message in the resource bundle if it + * starts with a "{". + *

+ * Future: It will look up the message in the + * EL context if it starts with a "#{" + */ +public class MessageSpecification implements Serializable { + private static final long serialVersionUID = 1L; + + + /** + * The detailMessage part of the message. + */ + private String detailMessage = "detailMessage"; + /** + * The summaryMessage part of the message. + */ + private String summaryMessage = "summaryMessage"; + /** + * Arguments that get passed to the detailMessage message. + */ + private List detailArgs; + /** + * Arguments that get passed to the summaryMessage message. + */ + private List summaryArgs; + + /** + * The name of this message specification, used to look up information + * in the resource bundle if needed. + */ + private String name; + /** + * Used to create messages that inherit properties from their parents. + */ + private String parent; + + + /** + * Who is this message about? For example for field validation + * the subject is the name of the field. + */ + private String subject = ""; + + private boolean noSummary; + + private static final String SUMMARY_KEY = ".summary"; + private static final String DETAIL_KEY = ".detail"; + + /** + * The init method tries to generate the message keys. + * You should only call the init method if you don't inject + * values into the detailMessage and summaryMessage. + */ + public void init() { + /* If the parent and name are equal to null, + * use the classname to load listFromClassLoader. + * */ + if ( name == null && parent == null ) { + this.setDetailMessage( "{" + this.getClass().getName() + DETAIL_KEY + "}" ); + this.setSummaryMessage( "{" + this.getClass().getName() + SUMMARY_KEY + "}" ); + /* If the parent is null and the name is not, + * use the name to load listFromClassLoader. + */ + } else if ( name != null && parent == null ) { + this.setDetailMessage( "{" + "message." + getName() + DETAIL_KEY + "}" ); + this.setSummaryMessage( "{" + "message." + getName() + SUMMARY_KEY + "}" ); + /* If the parent is present, initialize the message keys + * with the parent name. + */ + } else if ( parent != null ) { + this.setDetailMessage( "{" + "message." + parent + DETAIL_KEY + "}" ); + this.setSummaryMessage( "{" + "message." + parent + SUMMARY_KEY + "}" ); + } + } + + public boolean isNoSummary() { + return noSummary; + } + + public void setNoSummary( boolean noSummary ) { + this.noSummary = noSummary; + } + + /** + * Create the summaryMessage message. + */ + public String createSummaryMessage( Object... args ) { + return createMessage( summaryMessage, summaryArgs, args ); + } + + /** + * Create the detailMessage message. + */ + public String createDetailMessage( Object... args ) { + return createMessage( detailMessage, detailArgs, args ); + } + + /** + * Creates a message. + * + * @param argKeys arguments to lookupWithDefault that were configured. + * @param args Arguments that were passed via the object that wants to + * generate the message + */ + public String createMessage( String key, List argKeys, Object... args ) { + /* Look up the message. */ + String message = getMessage( key ); + + /* Holds the actual arguments. */ + Object[] actualArgs; + + /* If they passed arguments, + * then use this as the actual arguments. */ + if ( args.length > 0 ) { + actualArgs = args; + /* If they did not pass arguments, use the configured ones. */ + } else if ( argKeys != null ) { + /* Convert the keys to values. */ + actualArgs = keysToValues( argKeys ); + } else { + actualArgs = new Object[]{ }; + } + + return doCreateMessage( message, actualArgs ); + + } + + /** + * Actually creates the message. + * + * @param message The message that was looked up. + * @param actualArgs Arguments to the message. + * @return + */ + @SuppressWarnings ( "unchecked" ) + private String doCreateMessage( String message, Object[] actualArgs ) { + + return ValidationContext.get().createMessage( message, getSubject(), actualArgs ); + } + + private String getMessage( String key ) { + + return ValidationContext.get().getMessage( key ); + } + + + /** + * Convert the keys to values. + */ + private Object[] keysToValues( List argKeys ) { + List values = new ArrayList<>(); + for ( String key : argKeys ) { + values.add( getMessage( key ) ); + } + return values.toArray(); + } + + /** + * Allows client objects to set the subject for the current thread + * per instance of the MessageSpecification. + */ + public void setCurrentSubject( String subject ) { + ValidationContext.get().setCurrentSubject( subject ); + } + + /** + * Gets the current subject or the configured subject if the + * current subject is not found. + */ + public String getSubject() { + return ValidationContext.get().getCurrentSubject() == null ? this.subject : + ValidationContext.get().getCurrentSubject(); + } + + + protected String getDetailMessage() { + return this.detailMessage; + } + + public void setDetailMessage( String detailKey ) { + this.detailMessage = detailKey; + } + + protected String getSummaryMessage() { + return this.summaryMessage; + } + + public void setSummaryMessage( String summaryKey ) { + this.summaryMessage = summaryKey; + } + + protected List getDetailArgs() { + return this.detailArgs; + } + + public void setDetailArgs( List argKeys ) { + this.detailArgs = argKeys; + } + + protected List getSummaryArgs() { + return this.summaryArgs; + } + + public void setSummaryArgs( List summaryArgKeys ) { + this.summaryArgs = summaryArgKeys; + } + + public void setName( String aName ) { + this.name = aName; + } + + public String getName() { + return this.name; + } + + + public void setParent( String parent ) { + this.parent = parent; + } + + + public void setSubject( String subject ) { + this.subject = subject; + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/messages/MessageUtils.java b/datastructures-json-boon/src/main/java/org/boon/messages/MessageUtils.java new file mode 100644 index 0000000..32a3025 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/messages/MessageUtils.java @@ -0,0 +1,285 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.messages; + +import java.util.MissingResourceException; +import java.util.ResourceBundle; + +/** + * Functions to aid developing JSF applications. + */ +public final class MessageUtils { + public static final String TOOL_TIP = "toolTip"; + public static final String LABEL_TOOL_TIP = "labelToolTip"; + + /** + * Stops creation of a new MessageUtils object. + */ + private MessageUtils() { + } + + public static String createLabelNoPlural( String fieldName, final ResourceBundle bundle ) { + if ( fieldName.endsWith( "es" ) ) { + fieldName = fieldName.substring( 0, fieldName.length() - 2 ); + } else if ( fieldName.endsWith( "s" ) ) { + fieldName = fieldName.substring( 0, fieldName.length() - 1 ); + } + return getLabel( fieldName, bundle ); + } + + + /** + * Get the field label. + * + * @param fieldName fieldName + * @param bundle ResourceBundle + * @return Label from the Message Source. + */ + public static String getLabel( final String fieldName, + final ResourceBundle bundle ) { + + String label; + + /** Look for fieldName, e.g., firstName. */ + try { + label = bundle.getString( fieldName ); + } catch ( MissingResourceException mre ) { + label = generateLabelValue( fieldName ); + } + + return label; + } + + /** + * Get the field label. + * + * @param namespace Namespace is a qualifier usually the name of a Form or Entity. + * @param fieldName fieldName is the name of the label we want to look up. + * @param bundle ResourceBundle + * @return Label from the Message Source. + */ + public static String createLabelWithNameSpace( final String namespace, final String fieldName, + final ResourceBundle bundle ) { + + String label; + try { + try { + /** Look for name-space + . + fieldName, e.g., Employee.firstName. */ + label = bundle.getString( namespace + '.' + fieldName ); + } catch ( MissingResourceException mre ) { + /** Look for fieldName only, e.g., firstName. */ + label = bundle.getString( fieldName ); + } + } catch ( MissingResourceException mre ) { + /** If you can't find the label, generate it thus, "firstName" becomes "First Name".*/ + label = generateLabelValue( fieldName ); + } + + return label; + } + +// public static String createLabelWithNameSpace(final String namespace, final String fieldName) { +// +// return createLabelWithNameSpace(namespace, fieldName, CrankContext.getResourceBundleLocator().getBundle()); +// } +// +// public static String createLabel(final String fieldName) { +// return createLabelWithNameSpace(null, fieldName, CrankContext.getResourceBundleLocator().getBundle()); +// } + + + /** + * Get the tool tip. + * + * @param namespace Namespace is a qualifier usually the name of a Form or Entity. + * @param fieldName fieldName is the name of the tool tip we want to look up. + * @param bundle bundle + * @return Tool Tip from the Message Source. + */ + public static String createToolTipWithNameSpace( final String namespace, final String fieldName, + final ResourceBundle bundle, final String toolTipType ) { + + String toolTip = null; + try { + try { + /** Look for name-space + . + fieldName, e.g., Employee.firstName.toolTip. */ + toolTip = bundle.getString( namespace + '.' + fieldName + '.' + + toolTipType ); + } catch ( MissingResourceException mre ) { + /** Look for fieldName only, e.g., firstName.toolTip. */ + toolTip = bundle.getString( fieldName + '.' + toolTipType ); + } + } catch ( MissingResourceException mre ) { + } + + return toolTip; + } + + + /** + * Generate the field. Transforms firstName into First Name. This allows + * reasonable defaults for labels. + * + * @param fieldName fieldName + * @return generated label name. + */ + public static String generateLabelValue( final String fieldName ) { + + final StringBuilder buffer = new StringBuilder( fieldName.length() * 2 ); + + + class GenerationCommand { + boolean capNextChar = false; + boolean lastCharWasUpperCase = false; + boolean lastCharWasNumber = false; + boolean lastCharWasSpecial = false; + boolean shouldContinue = true; + char[] chars = fieldName.toCharArray(); + + void processFieldName() { + + for ( int index = 0; index < chars.length; index++ ) { + char cchar = chars[ index ]; + shouldContinue = true; + + processCharWasNumber( buffer, index, cchar ); + if ( !shouldContinue ) { + continue; + } + + processCharWasUpperCase( buffer, index, cchar ); + if ( !shouldContinue ) { + continue; + } + + processSpecialChars( buffer, cchar ); + + if ( !shouldContinue ) { + continue; + } + + cchar = processCapitalizeCommand( cchar ); + + cchar = processFirstCharacterCheck( buffer, index, cchar ); + + if ( !shouldContinue ) { + continue; + } + + buffer.append( cchar ); + } + + } + + private void processCharWasNumber( StringBuilder buffer, + int index, char cchar ) { + if ( lastCharWasSpecial ) { + return; + } + + if ( Character.isDigit( cchar ) ) { + + if ( index != 0 && !lastCharWasNumber ) { + buffer.append( ' ' ); + } + + lastCharWasNumber = true; + buffer.append( cchar ); + + this.shouldContinue = false; + } else { + lastCharWasNumber = false; + } + } + + private char processFirstCharacterCheck( final StringBuilder buffer, + int index, char cchar ) { + /* Always capitalize the first character. */ + if ( index == 0 ) { + cchar = Character.toUpperCase( cchar ); + buffer.append( cchar ); + this.shouldContinue = false; + } + return cchar; + } + + private char processCapitalizeCommand( char cchar ) { + /* Capitalize the character. */ + if ( capNextChar ) { + capNextChar = false; + cchar = Character.toUpperCase( cchar ); + } + return cchar; + } + + private void processSpecialChars( final StringBuilder buffer, + char cchar ) { + lastCharWasSpecial = false; + /* If the character is '.' or '_' then append a space and mark + * the next iteration to capitalize. + */ + if ( cchar == '.' || cchar == '_' ) { + buffer.append( ' ' ); + capNextChar = true; + lastCharWasSpecial = false; + this.shouldContinue = false; + } + + + } + + private void processCharWasUpperCase( final StringBuilder buffer, + int index, char cchar ) { + /* If the character is uppercase, append a space and keep track + * that the last character was uppercase for the next iteration. + */ + if ( Character.isUpperCase( cchar ) ) { + + if ( index != 0 && !lastCharWasUpperCase ) { + buffer.append( ' ' ); + } + + lastCharWasUpperCase = true; + buffer.append( cchar ); + + this.shouldContinue = false; + } else { + lastCharWasUpperCase = false; + } + } + } + + GenerationCommand gc = new GenerationCommand(); + gc.processFieldName(); + + /* This is a hack to get address.line_1 to work. */ + return buffer.toString().replace( " ", " " ); + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/messages/ResourceBundleLocator.java b/datastructures-json-boon/src/main/java/org/boon/messages/ResourceBundleLocator.java new file mode 100644 index 0000000..478f024 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/messages/ResourceBundleLocator.java @@ -0,0 +1,35 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.messages; + +import java.util.ResourceBundle; + +public interface ResourceBundleLocator { + public ResourceBundle getBundle(); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/primitive/Arry.java b/datastructures-json-boon/src/main/java/org/boon/primitive/Arry.java new file mode 100644 index 0000000..4d535ae --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/primitive/Arry.java @@ -0,0 +1,473 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.primitive; + + +import org.boon.Lists; +import org.boon.Universal; +import org.boon.core.reflection.Invoker; +import org.boon.core.reflection.MapObjectConversion; + +import java.lang.reflect.Array; +import java.util.Collection; +import java.util.List; +import java.util.Map; + +import static org.boon.Exceptions.die; + +@SuppressWarnings ( { "unchecked", "SuspiciousSystemArraycopy" } ) +public class Arry { + + + @Universal + public static V[] array( Class clasz, int size ) { + Object newArray = Array.newInstance( clasz, size ); + return ( V[] ) newArray; + } + + + public static V[] grow( V[] array, int size ) { + Object newArray = Array.newInstance( array.getClass().getComponentType(), + array.length + size ); + System.arraycopy( array, 0, newArray, 0, array.length ); + return ( V[] ) newArray; + } + + + public static V[] grow( V[] array ) { + Object newArray = Array.newInstance( array.getClass().getComponentType(), + array.length * 2 ); + System.arraycopy( array, 0, newArray, 0, array.length ); + return ( V[] ) newArray; + } + + public static V[] shrink( V[] array, int size ) { + Object newArray = Array.newInstance( array.getClass().getComponentType(), + array.length - size ); + System.arraycopy( array, 0, newArray, 0, array.length - size ); + return ( V[] ) newArray; + } + + public static V[] compact( V[] array ) { + + int nullCount = 0; + for ( V anArray1 : array ) { + + if ( anArray1 == null ) { + nullCount++; + } + } + Object newArray = Array.newInstance( array.getClass().getComponentType(), + array.length - nullCount ); + + int j = 0; + for ( V anArray : array ) { + + if ( anArray == null ) { + continue; + } + + Array.set( newArray, j, anArray ); + j++; + } + return ( V[] ) newArray; + } + + @SafeVarargs + public static V[] array( final V... array ) { + return array; + + } + + /* Universal methods */ + + @Universal + public static int len( V[] array ) { + return array.length; + } + + @Universal + public static int lengthOf( V[] array ) { + return array.length; + } + + @Universal + public static V idx( final V[] array, int index ) { + final int i = calculateIndex( array, index ); + + return array[ i ]; + } + + @Universal + public static Object idx( final Object array, int index ) { + final int i = calculateIndex( array, index ); + + return Array.get(array, i); + } + + + @Universal + public static Object fastIndex( final Object array, int index ) { + final int i = calculateIndex( array, index ); + + return Array.get(array, index); + } + + + @Universal + public static V atIndex( final V[] array, int index ) { + final int i = calculateIndex( array, index ); + + return array[ i ]; + } + + @Universal + public static void idx( final V[] array, int index, V value ) { + final int i = calculateIndex( array, index ); + + array[ i ] = value; + } + + @Universal + public static void atIndex( final V[] array, int index, V value ) { + final int i = calculateIndex( array, index ); + + array[ i ] = value; + } + + + @Universal + public static V[] sliceOf( V[] array, int startIndex, int endIndex ) { + + return slc(array, startIndex, endIndex); + } + + @Universal + public static V[] slc( V[] array, int startIndex, int endIndex ) { + + final int start = calculateIndex( array, startIndex ); + final int end = calculateEndIndex( array, endIndex ); + final int newLength = end - start; + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, end index %d, length %d", + startIndex, endIndex, array.length ) + ); + } + + Object newArray = Array.newInstance( array.getClass().getComponentType(), newLength ); + System.arraycopy( array, start, newArray, 0, newLength ); + return ( V[] ) newArray; + } + + + public static V[] fastSlice( V[] array, int start, int end ) { + + final int newLength = end - start; + + + Object newArray = Array.newInstance( array.getClass().getComponentType(), newLength ); + System.arraycopy( array, start, newArray, 0, newLength ); + return ( V[] ) newArray; + } + + public static Object[] fastObjectArraySlice(Object[] array, int start, int end) { + + final int newLength = end - start; + + Object [] newArray = new Object[newLength]; + System.arraycopy( array, start, newArray, 0, newLength ); + return newArray; + } + + @Universal + public static boolean in( V value, V[] array ) { + for ( V currentValue : array ) { + if ( currentValue.equals( value ) ) { + return true; + } + } + return false; + } + + + @Universal + public static V[] sliceOf( V[] array, int startIndex ) { + return slc(array, startIndex); + } + + @Universal + public static V[] slc( V[] array, int startIndex ) { + + + final int start = calculateIndex( array, startIndex ); + final int newLength = array.length - start; + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, length %d", + startIndex, array.length ) + ); + } + + Object newArray = Array.newInstance( array.getClass().getComponentType(), newLength ); + System.arraycopy( array, start, newArray, 0, newLength ); + return ( V[] ) newArray; + } + + + @Universal + public static V[] copy( V[] array ) { + Object newArray = Array.newInstance( array.getClass().getComponentType(), array.length ); + System.arraycopy( array, 0, newArray, 0, array.length ); + return ( V[] ) newArray; + } + + + @Universal + public static V[] add( V[] array, V v ) { + Object newArray = Array.newInstance( array.getClass().getComponentType(), array.length + 1 ); + System.arraycopy( array, 0, newArray, 0, array.length ); + Array.set( newArray, array.length, v ); + return ( V[] ) newArray; + } + + + @Universal + public static V[] add( V[] array, V[] array2 ) { + Object newArray = Array.newInstance( array.getClass().getComponentType(), array.length + array2.length ); + System.arraycopy( array, 0, newArray, 0, array.length ); + System.arraycopy( array2, 0, newArray, array.length, array2.length ); + + return ( V[] ) newArray; + } + + @Universal + public static V[] insert( V[] array, int index, V v ) { + Object newArray = Array.newInstance( array.getClass().getComponentType(), array.length + 1 ); + if ( index != 0 ) { + System.arraycopy( array, 0, newArray, 0, index ); + } + + + boolean lastIndex = index == array.length - 1; + int remainingArrayLengthAfterIndex = array.length - index; + + if ( lastIndex ) { + System.arraycopy( array, index, newArray, index + 1, remainingArrayLengthAfterIndex ); + + } else { + System.arraycopy( array, index, newArray, index + 1, remainingArrayLengthAfterIndex ); + + } + + Array.set( newArray, index, v ); + return ( V[] ) newArray; + } + + + @Universal + public static V[] endSliceOf( V[] array, int endIndex ) { + return slcEnd(array, endIndex); + } + + @Universal + public static V[] slcEnd( V[] array, int endIndex ) { + + final int end = calculateEndIndex( array, endIndex ); + final int newLength = end; + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "end index %d, length %d", + endIndex, array.length ) + ); + } + + Object newArray = Array.newInstance( array.getClass().getComponentType(), newLength ); + System.arraycopy( array, 0, newArray, 0, newLength ); + return ( V[] ) newArray; + } + + + + private static int calculateIndex(Object array, int originalIndex) { + final int length = Array.getLength(array); + int index = originalIndex; + + /* Adjust for reading from the right as in + -1 reads the 4th element if the length is 5 + */ + if ( index < 0 ) { + index = length + index; + } + + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + if ( index < 0 ) { + index = 0; + } + if ( index >= length ) { + index = length - 1; + } + return index; + + } + + /* End universal methods. */ + private static int calculateIndex( T[] array, int originalIndex ) { + final int length = array.length; + int index = originalIndex; + + /* Adjust for reading from the right as in + -1 reads the 4th element if the length is 5 + */ + if ( index < 0 ) { + index = length + index; + } + + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + if ( index < 0 ) { + index = 0; + } + if ( index >= length ) { + index = length - 1; + } + return index; + } + + + + /* End universal methods. */ + private static int calculateEndIndex( T[] array, int originalIndex ) { + final int length = array.length; + int index = originalIndex; + + /* Adjust for reading from the right as in + -1 reads the 4th element if the length is 5 + */ + if ( index < 0 ) { + index = length + index; + } + + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + if ( index < 0 ) { + index = 0; + } + if ( index > length ) { + index = length; + } + return index; + } + + + public static List> toListOfMaps( Object... array ) { + return MapObjectConversion.toListOfMaps( Lists.list(array) ); + } + + + public static Object reduceBy( final Object[] array, Object object ) { + + Object sum = null; + for ( Object v : array ) { + sum = Invoker.invokeReducer(object, sum, v); + } + return sum; + } + + public static int len(Object obj) { + return Array.getLength( obj ); + } + + @SuppressWarnings ( "unchecked" ) + public static V[] array( Collection collection ) { + if ( collection.size() > 0 ) { + Object newInstance = Array.newInstance( collection.iterator().next().getClass(), + collection.size() ); + return collection.toArray( ( V[] ) newInstance ); + } else { + die( "array(listStream): The collection has to have at least one item in it" ); + return null; + } + } + + + public static Object[] objectArray( Collection collection ) { + return collection.toArray(new Object[collection.size()]); + } + + + public static Object[] objectArray( Iterable iter ) { + if (iter instanceof Collection) { + return objectArray((Collection)iter); + } else { + return objectArray(Lists.list(iter)); + } + } + + public static V[] array(Class cls, Collection collection) { + Object newInstance = Array.newInstance( cls, collection.size() ); + return collection.toArray( ( V[] ) newInstance ); + } + + public static boolean equals(T[] array1, T[] array2) { + if (array1==array2) { + return true; + } + if (array1==null || array2==null) { + return false; + } + + int length = array1.length; + if (array2.length != length) { + return false; + } + + for (int index=0; index | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.primitive; + + +import org.boon.Exceptions; +import org.boon.Universal; +import org.boon.core.reflection.Invoker; + +import java.io.UnsupportedEncodingException; +import java.nio.charset.StandardCharsets; + +import static org.boon.Exceptions.die; + + +public class Byt { + + + public static byte[] grow( byte[] array, final int size ) { + + byte[] newArray = new byte[ array.length + size ]; + System.arraycopy( array, 0, newArray, 0, array.length ); + return newArray; + } + + + public static byte[] grow( byte[] array ) { + + byte[] newArray = new byte[ array.length * 2 ]; + System.arraycopy( array, 0, newArray, 0, array.length ); + return newArray; + } + + + public static byte[] shrink( byte[] array, int size ) { + + byte[] newArray = new byte[ array.length - size ]; + + System.arraycopy( array, 0, newArray, 0, array.length - size ); + return newArray; + } + + + public static byte[] compact( byte[] array ) { + + int nullCount = 0; + for ( byte ch : array ) { + + if ( ch == '\0' ) { + nullCount++; + } + } + byte[] newArray = new byte[ array.length - nullCount ]; + + int j = 0; + for ( byte ch : array ) { + + if ( ch == '\0' ) { + continue; + } + + newArray[ j ] = ch; + j++; + } + return newArray; + } + + + /** + * Creates an array of bytes + * + * @param size size of the array you want to make + * @return + */ + public static byte[] arrayOfByte( final int size ) { + return new byte[ size ]; + } + + /** + * @param array + * @return + */ + @Universal + public static byte[] array( final byte... array ) { + return array; + } + + /** + * @param array + * @return + */ + @Universal + public static byte[] bytes( final byte... array ) { + return array; + } + + /** + * @param str + * @return + */ + @Universal + public static byte[] bytes( String str ) { + return str.getBytes( StandardCharsets.UTF_8 ); + } + + + @Universal + public static int len( byte[] array ) { + return array.length; + } + + + @Universal + public static int lengthOf( byte[] array ) { + return array.length; + } + + @Universal + public static byte atIndex( final byte[] array, final int index ) { + return idx(array, index); + } + + @Universal + public static byte idx( final byte[] array, final int index ) { + final int i = calculateIndex( array, index ); + + return array[ i ]; + } + + + @Universal + public static void atIndex( final byte[] array, int index, byte value ) { + idx(array, index, value); + } + + + @Universal + public static void idx( final byte[] array, int index, byte value ) { + final int i = calculateIndex( array, index ); + + array[ i ] = value; + } + + + @Universal + public static byte[] sliceOf( byte[] array, int startIndex, int endIndex ) { + return slc (array, startIndex, endIndex); + } + + @Universal + public static byte[] slc( byte[] array, int startIndex, int endIndex ) { + + final int start = calculateIndex( array, startIndex ); + final int end = calculateEndIndex(array, endIndex); + final int newLength = end - start; + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, end index %d, length %d", + startIndex, endIndex, array.length ) + ); + } + + byte[] newArray = new byte[ newLength ]; + System.arraycopy( array, start, newArray, 0, newLength ); + return newArray; + } + + + @Universal + public static byte[] sliceOf( byte[] array, int startIndex ) { + return slc(array, startIndex); + } + + @Universal + public static byte[] slc( byte[] array, int startIndex ) { + + final int start = calculateIndex( array, startIndex ); + final int newLength = array.length - start; + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, length %d", + startIndex, array.length ) + ); + } + + byte[] newArray = new byte[ newLength ]; + System.arraycopy( array, start, newArray, 0, newLength ); + return newArray; + } + + + @Universal + public static byte[] endSliceOf( byte[] array, int endIndex ) { + return slcEnd(array, endIndex); + } + + @Universal + public static byte[] slcEnd( byte[] array, int endIndex ) { + + final int end = calculateEndIndex( array, endIndex ); + final int newLength = end; // + (endIndex < 0 ? 1 : 0); + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, length %d", + endIndex, array.length ) + ); + } + + byte[] newArray = new byte[ newLength ]; + System.arraycopy( array, 0, newArray, 0, newLength ); + return newArray; + } + + @Universal + public static boolean in( int value, byte... array ) { + for ( int currentValue : array ) { + if ( currentValue == value ) { + return true; + } + } + return false; + } + + + @Universal + public static boolean inIntArray( byte value, int[] array ) { + for ( int currentValue : array ) { + if ( currentValue == value ) { + return true; + } + } + return false; + } + + + @Universal + public static boolean in( int value, int offset, byte[] array ) { + for ( int index = offset; index < array.length; index++ ) { + int currentValue = array[ index ]; + if ( currentValue == value ) { + return true; + } + } + return false; + } + + @Universal + public static boolean in( int value, int offset, int end, byte[] array ) { + for ( int index = offset; index < end; index++ ) { + int currentValue = array[ index ]; + if ( currentValue == value ) { + return true; + } + } + return false; + } + + + @Universal + public static byte[] copy( byte[] array ) { + Exceptions.requireNonNull( array ); + byte[] newArray = new byte[ array.length ]; + System.arraycopy( array, 0, newArray, 0, array.length ); + return newArray; + } + + @Universal + public static byte[] copy( byte[] array, int offset, int length ) { + Exceptions.requireNonNull( array ); + byte[] newArray = new byte[ length ]; + System.arraycopy( array, offset, newArray, 0, length ); + return newArray; + } + + + @Universal + public static byte[] add( byte[] array, byte v ) { + byte[] newArray = new byte[ array.length + 1 ]; + System.arraycopy( array, 0, newArray, 0, array.length ); + newArray[ array.length ] = v; + return newArray; + } + + @Universal + public static byte[] add( byte[] array, byte[] array2 ) { + byte[] newArray = new byte[ array.length + array2.length ]; + System.arraycopy( array, 0, newArray, 0, array.length ); + System.arraycopy( array2, 0, newArray, array.length, array2.length ); + return newArray; + } + + + @Universal + public static byte[] insert( final byte[] array, final int idx, final byte v ) { + + if ( idx >= array.length ) { + return add( array, v ); + } + + final int index = calculateIndex( array, idx ); + + //Object newArray = Array.newInstance(array.getClass().getComponentType(), array.length+1); + byte[] newArray = new byte[ array.length + 1 ]; + + if ( index != 0 ) { + /* Copy up to the length in the array before the index. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, 0, newArray, 0, index ); + } + + + boolean lastIndex = index == array.length - 1; + int remainingIndex = array.length - index; + + if ( lastIndex ) { + /* Copy the area after the insert. Make sure we don't write over the end. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, index, newArray, index + 1, remainingIndex ); + + } else { + /* Copy the area after the insert. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, index, newArray, index + 1, remainingIndex ); + + } + + newArray[ index ] = v; + return newArray; + } + + + @Universal + public static byte[] insert( final byte[] array, final int fromIndex, final byte[] values ) { + + if ( fromIndex >= array.length ) { + return add( array, values ); + } + + final int index = calculateIndex( array, fromIndex ); + + //Object newArray = Array.newInstance(array.getClass().getComponentType(), array.length+1); + byte[] newArray = new byte[ array.length + values.length ]; + + if ( index != 0 ) { + /* Copy up to the length in the array before the index. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, 0, newArray, 0, index ); + } + + + boolean lastIndex = index == array.length - 1; + + int toIndex = index + values.length; + int remainingIndex = newArray.length - toIndex; + + if ( lastIndex ) { + /* Copy the area after the insert. Make sure we don't write over the end. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, index, newArray, index + values.length, remainingIndex ); + + } else { + /* Copy the area after the insert. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, index, newArray, index + values.length, remainingIndex ); + + } + + for ( int i = index, j = 0; i < toIndex; i++, j++ ) { + newArray[ i ] = values[ j ]; + } + return newArray; + } + + + /* End universal methods. */ + private static int calculateIndex( byte[] array, int originalIndex ) { + final int length = array.length; + + + + int index = originalIndex; + + /* Adjust for reading from the right as in + -1 reads the 4th element if the length is 5 + */ + if ( index < 0 ) { + index = length + index; + } + + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + if ( index < 0 ) { + index = 0; + } + if ( index >= length ) { + index = length - 1; + } + return index; + } + + + /* End universal methods. */ + private static int calculateEndIndex( byte[] array, int originalIndex ) { + final int length = array.length; + + + + int index = originalIndex; + + /* Adjust for reading from the right as in + -1 reads the 4th element if the length is 5 + */ + if ( index < 0 ) { + index = length + index; + } + + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + if ( index < 0 ) { + index = 0; + } + if ( index >length ) { + index = length; + } + return index; + } + + public static int idxInt( byte[] bytes, int off ) { + return ( ( bytes[ off + 3 ] & 0xFF ) ) + + ( ( bytes[ off + 2 ] & 0xFF ) << 8 ) + + ( ( bytes[ off + 1 ] & 0xFF ) << 16 ) + + ( ( bytes[ off ] ) << 24 ); + } + + + public static byte[] addInt( byte[] array, int v ) { + + byte[] arrayToHoldInt = new byte[ 4 ]; + intTo( arrayToHoldInt, 0, v ); + return add( array, arrayToHoldInt ); + + } + + public static byte[] insertIntInto( byte[] array, int index, int v ) { + + byte[] arrayToHoldInt = new byte[ 4 ]; + intTo( arrayToHoldInt, 0, v ); + return insert( array, index, arrayToHoldInt ); + + } + + + public static void intTo( byte[] b, int off, int val ) { + b[ off + 3 ] = ( byte ) ( val ); + b[ off + 2 ] = ( byte ) ( val >>> 8 ); + b[ off + 1 ] = ( byte ) ( val >>> 16 ); + b[ off ] = ( byte ) ( val >>> 24 ); + } + + public static void longTo( byte[] b, int off, long val ) { + b[ off + 7 ] = ( byte ) ( val ); + b[ off + 6 ] = ( byte ) ( val >>> 8 ); + b[ off + 5 ] = ( byte ) ( val >>> 16 ); + b[ off + 4 ] = ( byte ) ( val >>> 24 ); + b[ off + 3 ] = ( byte ) ( val >>> 32 ); + b[ off + 2 ] = ( byte ) ( val >>> 40 ); + b[ off + 1 ] = ( byte ) ( val >>> 48 ); + b[ off ] = ( byte ) ( val >>> 56 ); + } + + public static byte[] addLong( byte[] array, long value ) { + + byte[] holder = new byte[ 8 ]; + longTo( holder, 0, value ); + return add( array, holder ); + + } + + + public static long idxUnsignedInt( byte[] bytes, int off ) { + return ( ( bytes[ off + 3 ] & 0xFFL ) ) + + ( ( bytes[ off + 2 ] & 0xFFL ) << 8L ) + + ( ( bytes[ off + 1 ] & 0xFFL ) << 16L ) + + ( ( bytes[ off ] & 0xFFL ) << 24L ); + } + + public static long idxLong( byte[] b, int off ) { + return ( ( b[ off + 7 ] & 0xFFL ) ) + + ( ( b[ off + 6 ] & 0xFFL ) << 8 ) + + ( ( b[ off + 5 ] & 0xFFL ) << 16 ) + + ( ( b[ off + 4 ] & 0xFFL ) << 24 ) + + ( ( b[ off + 3 ] & 0xFFL ) << 32 ) + + ( ( b[ off + 2 ] & 0xFFL ) << 40 ) + + ( ( b[ off + 1 ] & 0xFFL ) << 48 ) + + ( ( ( long ) b[ off ] ) << 56 ); + } + + + public static short idxShort( byte[] b, int off ) { + return ( short ) ( ( b[ off + 1 ] & 0xFF ) + + ( b[ off ] << 8 ) ); + } + + public static byte[] addShort( byte[] array, short value ) { + + byte[] holder = new byte[ 2 ]; + shortTo( holder, 0, value ); + return add( array, holder ); + + } + + + public static byte[] insertShortInto( byte[] array, int index, short value ) { + + byte[] holder = new byte[ 2 ]; + shortTo( holder, 0, value ); + return insert( array, index, holder ); + + } + + + public static void shortTo( byte[] b, int off, short val ) { + b[ off + 1 ] = ( byte ) ( val ); + b[ off ] = ( byte ) ( val >>> 8 ); + } + + + public static char idxChar( byte[] b, int off ) { + return ( char ) ( ( b[ off + 1 ] & 0xFF ) + + ( b[ off ] << 8 ) ); + } + + public static byte[] addChar( byte[] array, char value ) { + byte[] holder = new byte[ 2 ]; + charTo( holder, 0, value ); + return add( array, holder ); + + } + + public static byte[] insertCharInto( byte[] array, int index, char value ) { + byte[] holder = new byte[ 2 ]; + charTo( holder, 0, value ); + return insert( array, index, holder ); + + } + + + public static void charTo( byte[] b, int off, char val ) { + b[ off + 1 ] = ( byte ) ( val ); + b[ off ] = ( byte ) ( val >>> 8 ); + } + + + public static void charTo( byte[] b, char val ) { + b[ 1 ] = ( byte ) ( val ); + b[ 0 ] = ( byte ) ( val >>> 8 ); + } + + public static float idxFloat( byte[] array, int off ) { + return Float.intBitsToFloat( idxInt( array, off ) ); + } + + public static byte[] addFloat( byte[] array, float value ) { + + byte[] holder = new byte[ 4 ]; + floatTo( holder, 0, value ); + return add( array, holder ); + + } + + public static byte[] insertFloatInto( byte[] array, int index, float value ) { + + byte[] holder = new byte[ 4 ]; + floatTo( holder, 0, value ); + return insert( array, index, holder ); + + } + + public static void floatTo( byte[] array, int off, float val ) { + intTo( array, off, Float.floatToIntBits( val ) ); + } + + + public static byte[] addDouble( byte[] array, double value ) { + Exceptions.requireNonNull( array ); + + byte[] holder = new byte[ 4 ]; + doubleTo( holder, 0, value ); + return add( array, holder ); + + } + + + public static byte[] insertDoubleInto( byte[] array, int index, double value ) { + Exceptions.requireNonNull( array ); + + byte[] holder = new byte[ 4 ]; + doubleTo( holder, 0, value ); + return insert( array, index, holder ); + + } + + + public static void doubleTo( byte[] b, int off, double val ) { + longTo( b, off, Double.doubleToLongBits( val ) ); + } + + public static double idxDouble( byte[] b, int off ) { + return Double.longBitsToDouble( idxLong( b, off ) ); + } + +// +// +// public static boolean booleanAt(byte[] b, int off) { +// return b[off] != 0; +// } +// +// +// public static boolean booleanInBytePos1(int val) { +// val = val & 0x01; +// return val != 0; +// } +// +// public static boolean booleanInBytePos2(int val) { +// val = val & 0x02; +// return val != 0; +// } +// +// +// public static boolean booleanInBytePos3(int val) { +// val = val & 0x04; +// return val != 0; +// } +// +// public static boolean booleanInBytePos4(int val) { +// val = val & 0x08; +// return val != 0; +// } +// +// public static boolean booleanInBytePos1(byte[] b, int off) { +// int val = b[off] & 0x01; +// return val != 0; +// } +// +// public static boolean booleanInBytePos2(byte[] b, int off) { +// int val = b[off] & 0x02; +// return val != 0; +// } +// +// +// public static boolean booleanInBytePos3(byte[] b, int off) { +// int val = b[off] & 0x04; +// return val != 0; +// } +// +// public static boolean booleanInBytePos4(byte[] b, int off) { +// int val = b[off] & 0x08; +// return val != 0; +// } +// +// public static boolean booleanInBytePos5(byte[] b, int off) { +// int val = b[off] & 0x10; +// return val != 0; +// } +// +// public static boolean booleanInBytePos6(byte[] b, int off) { +// int val = b[off] & 0x20; +// return val != 0; +// } +// +// public static boolean booleanInBytePos7(byte[] b, int off) { +// int val = b[off] & 0x40; +// return val != 0; +// } +// +// public static boolean booleanInBytePos8(byte[] b, int off) { +// int val = b[off] & 0x80; +// return val != 0; +// } +// +// +// public static int byteAt(byte[] b, int off) { +// return b[off]; +// } +// +// +// public static int topNibbleAt(byte[] b, int off) { +// return topNibbleAt (b[off] ); +// } +// +// public static int bottomNibbleAt(byte[] b, int off) { +// return bottomNibbleAt (b[off] ); +// } +// +// public static int topNibbleAt(int val) { +// return (val & 0xF0); +// } +// +// public static int bottomNibbleAt(int val) { +// return (val & 0x0F); +// } +// +// +// public static char charAt1(byte[] b, int off) { +// return (char) ((b[off + 1] & 0xFF) + +// (b[off] << 8)); +// } +// + + + public static void _idx( final byte[] array, int startIndex, byte[] input ) { + try { + + System.arraycopy( input, 0, array, startIndex, input.length ); + } catch ( Exception ex ) { + Exceptions.handle( String.format( "array size %d, startIndex %d, input length %d", + array.length, startIndex, input.length ), ex ); + } + } + + public static void _idx( final byte[] array, int startIndex, byte[] input, int length ) { + try { + + System.arraycopy( input, 0, array, startIndex, length ); + } catch ( Exception ex ) { + Exceptions.handle( String.format( "array size %d, startIndex %d, input length %d", + array.length, startIndex, input.length ), ex ); + } + } + + + public static void _idx( final byte[] output, int ouputStartIndex, byte[] input, int inputOffset, int length ) { + try { + + System.arraycopy( input, inputOffset, output, ouputStartIndex, length ); + } catch ( Exception ex ) { + Exceptions.handle( String.format( "array size %d, startIndex %d, input length %d", + output.length, ouputStartIndex, input.length ), ex ); + } + } + + + public static int idxUnsignedShort( byte[] buffer, int off ) { + + int ch1 = buffer[ off ] & 0xFF; + int ch2 = buffer[ off + 1 ] & 0xFF; + + return ( ch1 << 8 ) + ( ch2 << 0 ); + + + } + + public static short idxUnsignedByte( byte[] array, int location ) { + return ( short ) ( array[ location ] & 0xFF ); + } + + + public static void unsignedIntTo( byte[] b, int off, long val ) { + b[ off + 3 ] = ( byte ) ( val ); + b[ off + 2 ] = ( byte ) ( val >>> 8 ); + b[ off + 1 ] = ( byte ) ( val >>> 16 ); + b[ off ] = ( byte ) ( val >>> 24 ); + } + + public static void unsignedShortTo( byte[] buffer, int off, int value ) { + + buffer[ off + 1 ] = ( byte ) ( value ); + buffer[ off ] = ( byte ) ( value >>> 8 ); + + } + + public static void unsignedByteTo( byte[] buffer, int off, short value ) { + buffer[ off ] = ( byte ) ( value ); + + } + + public static String utfString( byte[] jsonBytes ) { + return new String (jsonBytes, StandardCharsets.UTF_8); + } + + + + public static int reduceBy( final byte[] array, Object object ) { + + int sum = 0; + for ( byte v : array ) { + sum = (int) Invoker.invokeReducer(object, sum, v); + } + return sum; + } + + + /** + * Checks to see if two arrays are equals + * @param expected expected array + * @param got got array + * @return true if equal or throws exception if not. + */ + public static boolean equalsOrDie(byte[] expected, byte[] got) { + + if (expected.length != got.length) { + die("Lengths did not match, expected length", expected.length, + "but got", got.length); + } + + for (int index=0; index< expected.length; index++) { + if (expected[index]!= got[index]) { + die("value at index did not match index", index , "expected value", + expected[index], + "but got", got[index]); + + } + } + return true; + } + + + /** + * Checks to see if two arrays are equals + * @param expected expected array + * @param got got array + * @return true if equal or false if not. + */ + public static boolean equals(byte[] expected, byte[] got) { + + if (expected.length != got.length) { + return false; + } + + for (int index=0; index< expected.length; index++) { + if (expected[index]!= got[index]) { + return false; + } + } + return true; + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/primitive/ByteBuf.java b/datastructures-json-boon/src/main/java/org/boon/primitive/ByteBuf.java new file mode 100644 index 0000000..1765b02 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/primitive/ByteBuf.java @@ -0,0 +1,749 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.primitive; + +import org.boon.Exceptions; + +import java.io.UnsupportedEncodingException; + +import static org.boon.Exceptions.die; + +public class ByteBuf implements Output { + + protected int capacity = 16; + + + protected int length = 0; + + protected byte[] buffer; + + + public static ByteBuf createExact( final int capacity ) { + return new ByteBuf( capacity ) { + public ByteBuf add( byte[] chars ) { + Byt._idx( buffer, length, chars ); + length += chars.length; + return this; + } + }; + } + + public static ByteBuf create( int capacity ) { + return new ByteBuf( capacity ); + } + + public static ByteBuf create( byte[] buffer ) { + ByteBuf buf = new ByteBuf( buffer.length ); + buf.buffer = buffer; + return buf; + } + + protected ByteBuf( int capacity ) { + this.capacity = capacity; + init(); + } + + + protected ByteBuf() { + init(); + } + + private void init() { + buffer = new byte[ capacity ]; + } + + + public ByteBuf add( String str ) { + this.add( Byt.bytes( str ) ); + return this; + + } + + + public ByteBuf add( int value ) { + + if ( 4 + length < capacity ) { + Byt.intTo( buffer, length, value ); + } else { + buffer = Byt.grow( buffer, buffer.length * 2 + 4 ); + capacity = buffer.length; + + Byt.intTo( buffer, length, value ); + } + + length += 4; + return this; + + + } + + + public ByteBuf add( float value ) { + + if ( 4 + length < capacity ) { + Byt.floatTo( buffer, length, value ); + } else { + buffer = Byt.grow( buffer, buffer.length * 2 + 4 ); + capacity = buffer.length; + + Byt.floatTo( buffer, length, value ); + } + + length += 4; + return this; + + + } + + + public ByteBuf add( char value ) { + + if ( 2 + length < capacity ) { + Byt.charTo( buffer, length, value ); + } else { + buffer = Byt.grow( buffer, buffer.length * 2 + 2 ); + capacity = buffer.length; + + Byt.charTo( buffer, length, value ); + } + + length += 2; + return this; + + + } + + + public ByteBuf add( short value ) { + + if ( 2 + length < capacity ) { + Byt.shortTo( buffer, length, value ); + } else { + buffer = Byt.grow( buffer, buffer.length * 2 + 2 ); + capacity = buffer.length; + + Byt.shortTo( buffer, length, value ); + } + + length += 2; + return this; + + + } + + public ByteBuf addByte( int value ) { + this.add( ( byte ) value ); + return this; + } + + public ByteBuf add( byte value ) { + + if ( 1 + length < capacity ) { + Byt.idx( buffer, length, value ); + } else { + buffer = Byt.grow( buffer ); + capacity = buffer.length; + + Byt.idx( buffer, length, value ); + } + + length += 1; + + return this; + + } + + public ByteBuf add( long value ) { + + if ( 8 + length < capacity ) { + Byt.longTo( buffer, length, value ); + } else { + buffer = Byt.grow( buffer, buffer.length * 2 + 8 ); + capacity = buffer.length; + + Byt.longTo( buffer, length, value ); + } + + length += 8; + return this; + + } + + public ByteBuf addUnsignedInt( long value ) { + + if ( 4 + length < capacity ) { + Byt.unsignedIntTo( buffer, length, value ); + } else { + buffer = Byt.grow( buffer, buffer.length * 2 + 4 ); + capacity = buffer.length; + + Byt.unsignedIntTo( buffer, length, value ); + } + + length += 4; + return this; + + } + + public ByteBuf add( double value ) { + + if ( 8 + length < capacity ) { + Byt.doubleTo( buffer, length, value ); + } else { + buffer = Byt.grow( buffer, buffer.length * 2 + 8 ); + capacity = buffer.length; + + Byt.doubleTo( buffer, length, value ); + } + + length += 8; + return this; + + } + + + public ByteBuf add( byte[] array ) { + if ( array.length + this.length < capacity ) { + Byt._idx( buffer, length, array ); + } else { + buffer = Byt.grow( buffer, buffer.length * 2 + array.length ); + capacity = buffer.length; + + Byt._idx( buffer, length, array ); + + } + length += array.length; + return this; + } + + + public ByteBuf add( final byte[] array, final int length ) { + if ( ( this.length + length ) < capacity ) { + Byt._idx( buffer, this.length, array, length ); + } else { + buffer = Byt.grow( buffer, buffer.length * 2 + length ); + capacity = buffer.length; + + Byt._idx( buffer, length, array, length ); + + } + this.length += length; + return this; + } + + public ByteBuf add( byte[] array, final int offset, final int length ) { + if ( ( this.length + length ) < capacity ) { + Byt._idx( buffer, length, array, offset, length ); + } else { + buffer = Byt.grow( buffer, buffer.length * 2 + length ); + capacity = buffer.length; + + Byt._idx( buffer, length, array, offset, length ); + + } + this.length += length; + return this; + } + + public byte[] readAndReset() { + byte[] bytes = this.buffer; + this.buffer = null; + return bytes; + } + + public byte[] readForRecycle() { + this.length = 0; + return this.buffer; + } + + public int len() { + return length; + } + + public ByteBuf addUrlEncodedByteArray( byte[] value ) { + + + final byte[] encoded = new byte[ 2 ]; + + for ( int index = 0; index < value.length; index++ ) { + int i = value[ index ]; + + if ( i >= 'a' && i <= 'z' ) { + this.addByte( i ); + } else if ( i >= 'A' && i <= 'Z' ) { + this.addByte( i ); + } else if ( i >= '0' && i <= '9' ) { + this.addByte( i ); + } else if ( i == '_' || i == '-' || i == '.' || i == '*' ) { + this.addByte( i ); + } else if ( i == ' ' ) { + this.addByte( '+' ); + } else { + ByteScanner.encodeByteIntoTwoAsciiCharBytes( i, encoded ); + this.addByte( '%' ); + this.addByte( encoded[ 0 ] ); + this.addByte( encoded[ 1 ] ); + } + + } + return this; + } + + public ByteBuf addJSONEncodedByteArray( byte[] value ) { + + if ( value == null ) { + this.add( "null" ); + return this; + } + + + this.addByte( '"' ); + + for ( int index = 0; index < value.length; index++ ) { + int ch = value[ index ]; + + + switch ( ch ) { + case '"': + this.addByte( '\\' ); + this.addByte( '"' ); + break; + + case '\\': + this.addByte( '\\' ); + this.addByte( '\\' ); + break; + + case '/': + this.addByte( '\\' ); + this.addByte( '/' ); + break; + + case '\n': + this.addByte( '\\' ); + this.addByte( 'n' ); + break; + + case '\t': + this.addByte( '\\' ); + this.addByte( 't' ); + break; + + case '\r': + this.addByte( '\\' ); + this.addByte( 'r' ); + break; + + case '\b': + this.addByte( '\\' ); + this.addByte( 'b' ); + break; + + case '\f': + this.addByte( '\\' ); + this.addByte( 'f' ); + break; + + + default: + if ( ch > 127 ) { + this.addByte( '\\' ); + this.addByte( 'u' ); + this.addByte( '0' ); + this.addByte( '0' ); + final byte[] encoded = new byte[ 2 ]; + ByteScanner.encodeByteIntoTwoAsciiCharBytes( ch, encoded ); + this.addByte( encoded[ 0 ] ); + this.addByte( encoded[ 1 ] ); + + } else { + this.addByte( ch ); + } + + } + } + + this.addByte( '"' ); + return this; + } + + + public ByteBuf addUrlEncoded( String key ) { + try { + this.addUrlEncodedByteArray( key.getBytes( "UTF-8" ) ); + } catch ( UnsupportedEncodingException e ) { + Exceptions.handle( e ); + } + return this; + } + + public ByteBuf addJSONEncodedString( String value ) { + try { + this.addJSONEncodedByteArray( value == null ? null : value.getBytes( "UTF-8" ) ); + } catch ( UnsupportedEncodingException e ) { + Exceptions.handle( e ); + } + return this; + } + + @Override + public void write( int b ) { + this.addByte( b ); + } + + @Override + public void write( byte[] b ) { + this.add( b ); + } + + @Override + public void write( byte[] b, int off, int len ) { + this.add( b, len ); + } + + @Override + public void writeBoolean( boolean v ) { + if ( v == true ) { + this.addByte( 1 ); + } else { + this.addByte( 0 ); + } + } + + @Override + public void writeByte( byte v ) { + this.addByte( v ); + } + + @Override + public void writeUnsignedByte( short v ) { + this.addUnsignedByte( v ); + } + + public void addUnsignedByte( short value ) { + if ( 1 + length < capacity ) { + Byt.unsignedByteTo( buffer, length, value ); + } else { + buffer = Byt.grow( buffer, buffer.length * 2 + 1 ); + capacity = buffer.length; + + Byt.unsignedByteTo( buffer, length, value ); + } + + length += 1; + + } + + @Override + public void writeShort( short v ) { + this.add( v ); + } + + @Override + public void writeUnsignedShort( int v ) { + this.addUnsignedShort( v ); + } + + public void addUnsignedShort( int value ) { + + if ( 2 + length < capacity ) { + Byt.unsignedShortTo( buffer, length, value ); + } else { + buffer = Byt.grow( buffer, buffer.length * 2 + 2 ); + capacity = buffer.length; + + Byt.unsignedShortTo( buffer, length, value ); + } + + length += 2; + + + } + + @Override + public void writeChar( char v ) { + + this.add( v ); + } + + @Override + public void writeInt( int v ) { + this.add( v ); + } + + @Override + public void writeUnsignedInt( long v ) { + this.addUnsignedInt( v ); + } + + @Override + public void writeLong( long v ) { + this.add( v ); + } + + @Override + public void writeFloat( float v ) { + this.add( v ); + } + + @Override + public void writeDouble( double v ) { + this.add( v ); + } + + @Override + public void writeLargeString( String s ) { + final byte[] bytes = Byt.bytes( s ); + this.add( bytes.length ); + this.add( bytes ); + } + + @Override + public void writeSmallString( String s ) { + final byte[] bytes = Byt.bytes( s ); + this.addUnsignedByte( ( short ) bytes.length ); + this.add( bytes ); + } + + @Override + public void writeMediumString( String s ) { + final byte[] bytes = Byt.bytes( s ); + this.addUnsignedShort( bytes.length ); + this.add( bytes ); + } + + @Override + public void writeLargeByteArray( byte[] bytes ) { + this.add( bytes.length ); + this.add( bytes ); + } + + @Override + public void writeSmallByteArray( byte[] bytes ) { + this.addUnsignedByte( ( short ) bytes.length ); + this.add( bytes ); + } + + @Override + public void writeMediumByteArray( byte[] bytes ) { + this.addUnsignedShort( bytes.length ); + this.add( bytes ); + } + + @Override + public void writeLargeShortArray( short[] values ) { + int byteSize = values.length * 2 + 4; + this.add( values.length ); + doWriteShortArray( values, byteSize ); + } + + @Override + public void writeSmallShortArray( short[] values ) { + int byteSize = values.length * 2 + 1; + this.addUnsignedByte( ( short ) values.length ); + doWriteShortArray( values, byteSize ); + } + + @Override + public void writeMediumShortArray( short[] values ) { + int byteSize = values.length * 2 + 2; + this.addUnsignedShort( values.length ); + doWriteShortArray( values, byteSize ); + } + + + private void doWriteShortArray( short[] values, int byteSize ) { + if ( !( byteSize + length < capacity ) ) { + buffer = Byt.grow( buffer, buffer.length * 2 + byteSize ); + } + for ( int index = 0; index < values.length; index++ ) { + this.add( values[ index ] ); + } + } + + + @Override + public void writeLargeIntArray( int[] values ) { + int byteSize = values.length * 4 + 4; + this.add( values.length ); + doWriteIntArray( values, byteSize ); + } + + @Override + public void writeSmallIntArray( int[] values ) { + int byteSize = values.length * 4 + 1; + this.addUnsignedByte( ( short ) values.length ); + doWriteIntArray( values, byteSize ); + } + + @Override + public void writeMediumIntArray( int[] values ) { + int byteSize = values.length * 4 + 2; + this.addUnsignedShort( values.length ); + doWriteIntArray( values, byteSize ); + } + + + private void doWriteIntArray( int[] values, int byteSize ) { + if ( !( byteSize + length < capacity ) ) { + buffer = Byt.grow( buffer, buffer.length * 2 + byteSize ); + } + for ( int index = 0; index < values.length; index++ ) { + this.add( values[ index ] ); + } + } + + public Input input() { + return new InputByteArray( this.buffer ); + } + + + @Override + public void writeLargeLongArray( long[] values ) { + int byteSize = values.length * 8 + 4; + this.add( values.length ); + doWriteLongArray( values, byteSize ); + } + + @Override + public void writeSmallLongArray( long[] values ) { + int byteSize = values.length * 8 + 1; + this.addUnsignedByte( ( short ) values.length ); + doWriteLongArray( values, byteSize ); + } + + @Override + public void writeMediumLongArray( long[] values ) { + int byteSize = values.length * 8 + 2; + this.addUnsignedShort( values.length ); + doWriteLongArray( values, byteSize ); + } + + + private void doWriteLongArray( long[] values, int byteSize ) { + if ( !( byteSize + length < capacity ) ) { + buffer = Byt.grow( buffer, buffer.length * 2 + byteSize ); + } + for ( int index = 0; index < values.length; index++ ) { + this.add( values[ index ] ); + } + } + + + @Override + public void writeLargeFloatArray( float[] values ) { + int byteSize = values.length * 4 + 4; + this.add( values.length ); + doWriteFloatArray( values, byteSize ); + + } + + @Override + public void writeSmallFloatArray( float[] values ) { + int byteSize = values.length * 4 + 1; + this.addUnsignedByte( ( short ) values.length ); + doWriteFloatArray( values, byteSize ); + } + + @Override + public void writeMediumFloatArray( float[] values ) { + int byteSize = values.length * 4 + 2; + this.addUnsignedShort( values.length ); + doWriteFloatArray( values, byteSize ); + + } + + private void doWriteFloatArray( float[] values, int byteSize ) { + if ( !( byteSize + length < capacity ) ) { + buffer = Byt.grow( buffer, buffer.length * 2 + byteSize ); + } + for ( int index = 0; index < values.length; index++ ) { + this.add( values[ index ] ); + } + } + + + @Override + public void writeLargeDoubleArray( double[] values ) { + int byteSize = values.length * 8 + 4; + this.add( values.length ); + doWriteDoubleArray( values, byteSize ); + + + } + + @Override + public void writeSmallDoubleArray( double[] values ) { + int byteSize = values.length * 8 + 1; + this.addUnsignedByte( ( short ) values.length ); + doWriteDoubleArray( values, byteSize ); + + } + + @Override + public void writeMediumDoubleArray( double[] values ) { + int byteSize = values.length * 8 + 2; + this.addUnsignedShort( values.length ); + doWriteDoubleArray( values, byteSize ); + + } + + + private void doWriteDoubleArray( double[] values, int byteSize ) { + if ( !( byteSize + length < capacity ) ) { + buffer = Byt.grow( buffer, buffer.length * 2 + byteSize ); + } + for ( int index = 0; index < values.length; index++ ) { + this.add( values[ index ] ); + } + } + + + public String toString() { + int len = len(); + + char[] chars = new char[ buffer.length ]; + for ( int index = 0; index < chars.length; index++ ) { + chars[ index ] = ( char ) buffer[ index ]; + } + return new String( chars, 0, len ); + //return new String ( this.buffer, 0, len, StandardCharsets.UTF_8 ); + } + + + public byte[] toBytes() { + return Byt.slc( this.buffer, 0, length ); + } + + + public byte[] slc( int startIndex, int endIndex ) { + return Byt.slc( this.buffer, startIndex, endIndex ); + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/primitive/ByteScanner.java b/datastructures-json-boon/src/main/java/org/boon/primitive/ByteScanner.java new file mode 100644 index 0000000..9c2f52f --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/primitive/ByteScanner.java @@ -0,0 +1,1195 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.primitive; + +import org.boon.Exceptions; + + +import java.util.Arrays; + +import static org.boon.Exceptions.die; +import static org.boon.Exceptions.handle; +import static org.boon.primitive.CharScanner.isDigit; +import static org.boon.primitive.CharScanner.isDoubleQuote; +import static org.boon.primitive.CharScanner.isEscape; + +public class ByteScanner { + + + public static boolean isDigits( final char[] inputArray ) { + for ( int index = 0; index < inputArray.length; index++ ) { + char a = inputArray[ index ]; + if ( !isDigit( a ) ) { + return false; + } + } + return true; + } + + + public static boolean hasDecimalChar( byte[] chars, boolean negative ) { + + int index =0; + + if (negative) index++; + + for (; index < chars.length; index++) { + switch ( chars[index] ) { + case CharScanner.MINUS: + case CharScanner.PLUS: + case CharScanner.LETTER_E: + case CharScanner.LETTER_BIG_E: + case CharScanner.DECIMAL_POINT: + return true; + } + } + return false; + + } + + + public static byte[][] splitExact( final byte[] inputArray, + final int split, final int resultsArrayLength ) { + /** Holds the results. */ + byte[][] results = new byte[ resultsArrayLength ][]; + + int resultIndex = 0; + int startCurrentLineIndex = 0; + int currentLineLength = 1; + + + byte c = 0; + int index = 0; + + for (; index < inputArray.length; index++, currentLineLength++ ) { + c = inputArray[ index ]; + if ( c == split ) { + + results[ resultIndex ] = Byt.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1 ); + startCurrentLineIndex = index + 1; //skip the byte + + currentLineLength = 0; + resultIndex++; + } + } + + if ( c != split ) { + + results[ resultIndex ] = Byt.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1 ); + resultIndex++; + } + + int actualLength = resultIndex; + if ( actualLength < resultsArrayLength ) { + final int newSize = resultsArrayLength - actualLength; + results = __shrink( results, newSize ); + } + return results; + } + + public static byte[][] splitExact( final byte[] inputArray, + final int resultsArrayLength, int... delims ) { + /** Holds the results. */ + byte[][] results = new byte[ resultsArrayLength ][]; + + int resultIndex = 0; + int startCurrentLineIndex = 0; + int currentLineLength = 1; + + + byte c = '\u0000'; + int index = 0; + int j; + int split; + + + for (; index < inputArray.length; index++, currentLineLength++ ) { + c = inputArray[ index ]; + + inner: + for ( j = 0; j < delims.length; j++ ) { + split = delims[ j ]; + if ( c == split ) { + + results[ resultIndex ] = Byt.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1 ); + startCurrentLineIndex = index + 1; //skip the byte + + currentLineLength = 0; + resultIndex++; + break inner; + } + } + } + + if ( !Byt.inIntArray( c, delims ) ) { + + results[ resultIndex ] = Byt.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1 ); + resultIndex++; + } + + + int actualLength = resultIndex; + if ( actualLength < resultsArrayLength ) { + final int newSize = resultsArrayLength - actualLength; + results = __shrink( results, newSize ); + } + return results; + } + + public static byte[][] split( final byte[] inputArray, + final int split ) { + /** Holds the results. */ + byte[][] results = new byte[ 16 ][]; + + int resultIndex = 0; + int startCurrentLineIndex = 0; + int currentLineLength = 1; + + + byte c = '\u0000'; + int index = 0; + + for (; index < inputArray.length; index++, currentLineLength++ ) { + c = inputArray[ index ]; + if ( c == split ) { + + if ( resultIndex == results.length ) { + + results = _grow( results ); + } + + + results[ resultIndex ] = Byt.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1 ); + startCurrentLineIndex = index + 1; //skip the byte + + currentLineLength = 0; + resultIndex++; + } + } + + if ( c != split ) { + + results[ resultIndex ] = Byt.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1 ); + resultIndex++; + } + + int actualLength = resultIndex; + if ( actualLength < results.length ) { + final int newSize = results.length - actualLength; + results = __shrink( results, newSize ); + } + return results; + } + + public static byte[][] splitByChars( final byte[] inputArray, + char... delims ) { + /** Holds the results. */ + byte[][] results = new byte[ 16 ][]; + + int resultIndex = 0; + int startCurrentLineIndex = 0; + int currentLineLength = 1; + + + byte c = '\u0000'; + int index = 0; + int j; + int split; + + + for (; index < inputArray.length; index++, currentLineLength++ ) { + + c = inputArray[ index ]; + + inner: + for ( j = 0; j < delims.length; j++ ) { + split = delims[ j ]; + if ( c == split ) { + + if ( resultIndex == results.length ) { + + results = _grow( results ); + } + + + results[ resultIndex ] = Byt.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1 ); + startCurrentLineIndex = index + 1; //skip the byte + + currentLineLength = 0; + resultIndex++; + break inner; + } + } + } + + if ( !Chr.in(c, delims) ) { + + results[ resultIndex ] = Byt.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1 ); + resultIndex++; + } + + + int actualLength = resultIndex; + if ( actualLength < results.length ) { + final int newSize = results.length - actualLength; + results = __shrink( results, newSize ); + } + return results; + } + + + public static byte[][] splitByCharsFromToDelims( final byte[] inputArray, int from, int to, + final byte... delims ) { + /** Holds the results. */ + byte[][] results = new byte[ 16 ][]; + + final int length = to - from; + + int resultIndex = 0; + int startCurrentLineIndex = 0; + int currentLineLength = 1; + + + int c = '\u0000'; + int index = from; + int j; + int split; + + + for (; index < length; index++, currentLineLength++ ) { + + c = inputArray[ index ]; + + inner: + for ( j = 0; j < delims.length; j++ ) { + split = delims[ j ]; + if ( c == split ) { + + if ( resultIndex == results.length ) { + + results = _grow( results ); + } + + + results[ resultIndex ] = Byt.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1 ); + startCurrentLineIndex = index + 1; //skip the char + + currentLineLength = 0; + resultIndex++; + break inner; + } + } + } + + if ( !Byt.in( c, delims ) ) { + + results[ resultIndex ] = Byt.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1 ); + resultIndex++; + } + + + int actualLength = resultIndex; + if ( actualLength < results.length ) { + final int newSize = results.length - actualLength; + results = __shrink( results, newSize ); + } + return results; + } + + public static byte[][] splitByCharsNoneEmpty( byte[] inputArray, + char... delims ) { + + final byte[][] results = splitByChars( inputArray, delims ); + return compact( results ); + } + + + public static byte[][] splitByCharsNoneEmpty( final byte[] inputArray, int from, int to, + final byte... delims ) { + + final byte[][] results = splitByCharsFromToDelims( inputArray, from, to, delims ); + return compact( results ); + } + + public static byte[][] compact( byte[][] array ) { + + int nullCount = 0; + for ( byte[] ch : array ) { + + if ( ch == null || ch.length == 0 ) { + nullCount++; + } + } + byte[][] newArray = new byte[ array.length - nullCount ][]; + + int j = 0; + for ( byte[] ch : array ) { + + if ( ch == null || ch.length == 0 ) { + continue; + } + + newArray[ j ] = ch; + j++; + } + return newArray; + } + + + private static byte[][] _grow( byte[][] array ) { + Exceptions.requireNonNull( array ); + + byte[][] newArray = new byte[ array.length * 2 ][]; + System.arraycopy( array, 0, newArray, 0, array.length ); + return newArray; + } + + private static byte[][] __shrink( byte[][] array, int size ) { + Exceptions.requireNonNull( array ); + byte[][] newArray = new byte[ array.length - size ][]; + + System.arraycopy( array, 0, newArray, 0, array.length - size ); + return newArray; + } + + + final static String MIN_INT_STR_NO_SIGN = String.valueOf( Integer.MIN_VALUE ).substring( 1 ); + final static String MAX_INT_STR = String.valueOf( Integer.MAX_VALUE ); + + + final static String MIN_LONG_STR_NO_SIGN = String.valueOf( Long.MIN_VALUE ).substring( 1 ); + final static String MAX_LONG_STR = String.valueOf( Long.MAX_VALUE ); + + + public static boolean isInteger( byte[] digitChars, int offset, int len + ) { + String cmpStr = digitChars[offset] == '-' ? MIN_INT_STR_NO_SIGN : MAX_INT_STR; + int cmpLen = cmpStr.length(); + if ( len < cmpLen ) return true; + if ( len > cmpLen ) return false; + + for ( int i = 0; i < cmpLen; ++i ) { + int diff = digitChars[ offset + i ] - cmpStr.charAt( i ); + if ( diff != 0 ) { + return ( diff < 0 ); + } + } + return true; + } + + public static boolean isLong( byte[] digitChars, int offset, int len + ) { + String cmpStr = digitChars[offset] == '-' ? MIN_INT_STR_NO_SIGN : MAX_INT_STR; + int cmpLen = cmpStr.length(); + if ( len < cmpLen ) return true; + if ( len > cmpLen ) return false; + + for ( int i = 0; i < cmpLen; ++i ) { + int diff = digitChars[ offset + i ] - cmpStr.charAt( i ); + if ( diff != 0 ) { + return ( diff < 0 ); + } + } + return true; + } + + + public static int parseInt( byte[] digitChars ) { + return parseIntFromTo( digitChars, 0, digitChars.length ); + } + + + + + public static int parseIntFromTo( byte[] digitChars, int offset, int to ) { + + try { + + + int num; + boolean negative=false; + int c = digitChars[ offset ]; + if (c == '-') { + offset++; + negative=true; + } + if (negative) { + num = (digitChars[ offset ] - '0'); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + } + } + } + } + } + } + } + } + } + } else { + num = (digitChars[ offset ] - '0'); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + } + } + } + } + } + } + } + } + } + + } + return negative ? num*-1 : num; + } catch ( Exception ex ) { + return handle( int.class, ex ); + } + } + + public static int parseIntIgnoreDot( byte[] digitChars, int offset, int len ) { + int num = digitChars[ offset ] - '0'; + int to = len + offset; + // This looks ugly, but appears the fastest way (as per measurements) + if ( ++offset < to ) { + num = digitChars[ offset ] != '.' ? ( num * 10 ) + ( digitChars[ offset ] - '0' ) : num; + if ( ++offset < to ) { + num = digitChars[ offset ] != '.' ? ( num * 10 ) + ( digitChars[ offset ] - '0' ) : num; + if ( ++offset < to ) { + num = digitChars[ offset ] != '.' ? ( num * 10 ) + ( digitChars[ offset ] - '0' ) : num; + if ( ++offset < to ) { + num = digitChars[ offset ] != '.' ? ( num * 10 ) + ( digitChars[ offset ] - '0' ) : num; + if ( ++offset < to ) { + num = digitChars[ offset ] != '.' ? ( num * 10 ) + ( digitChars[ offset ] - '0' ) : num; + if ( ++offset < to ) { + num = digitChars[ offset ] != '.' ? ( num * 10 ) + ( digitChars[ offset ] - '0' ) : num; + if ( ++offset < to ) { + num = digitChars[ offset ] != '.' ? ( num * 10 ) + ( digitChars[ offset ] - '0' ) : num; + if ( ++offset < to ) { + num = digitChars[ offset ] != '.' ? ( num * 10 ) + ( digitChars[ offset ] - '0' ) : num; + if ( ++offset < to ) { + num = digitChars[ offset ] != '.' ? ( num * 10 ) + ( digitChars[ offset ] - '0' ) : num; + } + } + } + } + } + } + } + } + } + return num; + } + + public static long parseLong( byte[] digitChars, int offset, int len ) { + int len1 = len - 9; + long val = parseIntFromTo(digitChars, offset, len1) * L_BILLION; + return val + ( long ) parseIntFromTo(digitChars, offset + len1, 9); + } + + public static long parseLongIgnoreDot( byte[] digitChars, int offset, int len ) { + int len1 = len - 9; + long val = parseIntIgnoreDot( digitChars, offset, len1 ) * L_BILLION; + return val + ( long ) parseIntIgnoreDot( digitChars, offset + len1, 9 ); + } + + + + public static Number parseJsonNumber( byte[] buffer ) { + return parseJsonNumber( buffer, 0, buffer.length ); + } + + + + public static Number parseJsonNumber( byte[] buffer, int from, int to ) { + return parseJsonNumber( buffer, from, to, null ); + } + + + public static Number parseJsonNumber( byte[] buffer, int from, int max, int size[] ) { + Number value = null; + boolean simple = true; + int digitsPastPoint = 0; + + int index = from; + + + if (buffer[index] == '-') { + index++; + } + + boolean foundDot = false; + for (;index= powersOf10.length-1 ) { + simple = false; + } + + + final int length = index -from; + + if (!foundDot && simple) { + if ( isInteger( buffer, from, length ) ) { + value = parseIntFromTo( buffer, from, index ); + } else { + value = parseLongFromTo( buffer, from, index ); + } + } + else if ( foundDot && simple ) { + long lvalue; + + + if ( length < powersOf10.length ) { + + if ( isInteger( buffer, from, length ) ) { + lvalue = parseIntFromToIgnoreDot( buffer, from, index ); + } else { + lvalue = parseLongFromToIgnoreDot( buffer, from, index ); + } + + double power = powersOf10[ digitsPastPoint ]; + value = lvalue / power; + + } else { + value = Double.parseDouble( new String( buffer, from, length ) ); + + } + + + } else { + value = Double.parseDouble( new String( buffer, from, index - from ) ); + } + + + if (size != null) { + size[0] = index; + } + + return value; + } + + + public static long parseLongFromTo( byte[] digitChars, int offset, int to ) { + + + long num; + boolean negative=false; + int c = digitChars[ offset ]; + if (c == '-') { + offset++; + negative=true; + } + + c = digitChars[ offset ]; + num = (c - '0'); + offset++; + + long digit; + + for (; offset < to; offset++) { + c = digitChars [offset]; + digit = ( c - '0' ); + num = ( num * 10 ) + digit; + } + + return negative ? num * -1 : num; + + } + + + public static int parseIntFromToIgnoreDot( byte[] digitChars, int offset, int to ) { + + int num; + boolean negative=false; + int c = digitChars[ offset ]; + if (c == '-') { + offset++; + negative=true; + } + + c = digitChars[ offset ]; + num = (c - '0'); + offset++; + + for (; offset < to; offset++) { + c = digitChars[ offset ]; + if (c != '.') { + num = ( num * 10 ) + ( c - '0' ); + } + + } + + return negative ? num * -1 : num; + } + + + public static long parseLongFromToIgnoreDot( byte[] digitChars, int offset, int to ) { + + long num; + boolean negative=false; + int c = digitChars[ offset ]; + if (c == '-') { + offset++; + negative=true; + } + + c = digitChars[ offset ]; + num = (c - '0'); + offset++; + + for (; offset < to; offset++) { + c = digitChars[ offset]; + if (c != '.') { + num = ( num * 10 ) + ( c - '0' ); + } + + } + + return negative ? num * -1 : num; + } + + + + + private final static long L_BILLION = 1000000000; + + + + public static float parseFloat( byte[] buffer, int from, int to ) { + return (float) parseDouble( buffer, from , to ); + } + + + public static double parseDouble( byte[] buffer ) { + return parseDouble( buffer, 0, buffer.length ); + } + + public static double parseDouble( byte[] buffer, int from, int to ) { + double value; + boolean simple = true; + int digitsPastPoint = 0; + + int index = from; + + + if (buffer[index] == '-') { + index++; + } + + boolean foundDot = false; + for (;index= powersOf10.length-1 ) { + simple = false; + } + + + final int length = index -from; + + if (!foundDot && simple) { + if ( isInteger( buffer, from, length ) ) { + value = parseIntFromTo( buffer, from, index ); + } else { + value = parseLongFromTo( buffer, from, index ); + } + } + else if ( foundDot && simple ) { + long lvalue; + + + if ( length < powersOf10.length ) { + + if ( isInteger( buffer, from, length ) ) { + lvalue = parseIntFromToIgnoreDot( buffer, from, index ); + } else { + lvalue = parseLongFromToIgnoreDot( buffer, from, index ); + } + + double power = powersOf10[ digitsPastPoint ]; + value = lvalue / power; + + } else { + value = Double.parseDouble( new String( buffer, from, length ) ); + + } + + + } else { + value = Double.parseDouble( new String( buffer, from, index - from ) ); + } + + + + return value; + } + + private static double powersOf10[] = { + 1.0, + 10.0, + 100.0, + 1_000.0, + 10_000.0, + 100_000.0, + 1_000_000.0, + 10_000_000.0, + 100_000_000.0, + 1_000_000_000.0, + 10_000_000_000.0, + 100_000_000_000.0, + 1_000_000_000_000.0, + 10_000_000_000_000.0, + 100_000_000_000_000.0, + 1_000_000_000_000_000.0, + 10_000_000_000_000_000.0, + 100_000_000_000_000_000.0, + 1_000_000_000_000_000_000.0, + + }; + + + public static double simpleDouble( byte[] buffer, boolean simple, int digitsPastPoint, int startIndex, int endIndex ) { + + double sign; + + + + if ( simple ) { + long value; + final int length = endIndex - startIndex; + + if ( isInteger( buffer, startIndex, length ) ) { + value = parseIntIgnoreDot( buffer, startIndex, length ); + } else { + value = parseLongIgnoreDot( buffer, startIndex, length ); + } + if ( digitsPastPoint < powersOf10.length ) { + double power = powersOf10[ digitsPastPoint ]; + return value / power; + + } + + + } + + return Double.parseDouble( new String( buffer, startIndex, ( endIndex - startIndex ) ) ); + } + + + public static int skipWhiteSpace( byte [] array, int index ) { + int c; + for (; index< array.length; index++ ) { + c = array [index]; + if ( c > 32 ) { + + return index; + } + } + return index; + } + + + public static int skipWhiteSpace( byte [] array, int index, final int length ) { + int c; + for (; index< length; index++ ) { + c = array [index]; + if ( c > 32 ) { + + return index; + } + } + return index; + } + + public static byte[] readNumber( byte[] array, int idx ) { + final int startIndex = idx; + + while (true) { + if ( !CharScanner.isDecimalDigit ( array[idx] )) { + break; + } else { + idx++; + if (idx >= array.length) break; + } + } + + return Arrays.copyOfRange(array, startIndex, idx); + + + } + + + + public static byte[] readNumber( byte[] array, int idx, final int len ) { + final int startIndex = idx; + + while (true) { + if ( !CharScanner.isDecimalDigit ( array[idx] )) { + break; + } else { + idx++; + if (idx >= len ) break; + } + } + + return Arrays.copyOfRange ( array, startIndex, idx ); + + + } + + + + + + + + + public static int skipWhiteSpaceFast( byte [] array ) { + int c; + int index=0; + for (; index< array.length; index++ ) { + c = array [index]; + if ( c > 32 ) { + + return index; + } + } + return index; + } + + + + public static int skipWhiteSpaceFast( byte [] array, int index ) { + int c; + for (; index< array.length; index++ ) { + c = array [index]; + if ( c > 32 ) { + + return index; + } + } + return index-1; + } + + /** + * Turns a single nibble into an ascii HEX digit. + * + * @param nibble the nibble to serializeObject. + * @return the encoded nibble (1/2 byte). + */ + protected static int encodeNibbleToHexAsciiCharByte( final int nibble ) { + + switch ( nibble ) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case 0x09: + return nibble + 0x30; // 0x30('0') - 0x39('9') + case 0x0A: + case 0x0B: + case 0x0C: + case 0x0D: + case 0x0E: + case 0x0F: + return nibble + 0x57; // 0x41('a') - 0x46('f') + default: + die( "illegal nibble: " + nibble ); + return -1; + } + } + + /** + * Turn a single bytes into two hex character representation. + * + * @param decoded the byte to serializeObject. + * @param encoded the array to which each encoded nibbles are now ascii hex representations. + */ + public static void encodeByteIntoTwoAsciiCharBytes( final int decoded, final byte[] encoded ) { + + + encoded[ 0 ] = ( byte ) encodeNibbleToHexAsciiCharByte( ( decoded >> 4 ) & 0x0F ); + encoded[ 1 ] = ( byte ) encodeNibbleToHexAsciiCharByte( decoded & 0x0F ); + } + + + public static String errorDetails( String message, byte[] array, int index, int ch ) { + CharBuf buf = CharBuf.create( 255 ); + + buf.addLine( message ); + + + buf.addLine( "" ); + buf.addLine( "The current character read is " + CharScanner.debugCharDescription(ch) ); + + + buf.addLine( message ); + + int line = 0; + int lastLineIndex = 0; + + for ( int i = 0; i < index && i < array.length; i++ ) { + if ( array[ i ] == '\n' ) { + line++; + lastLineIndex = i + 1; + } + } + + int count = 0; + + for ( int i = lastLineIndex; i < array.length; i++, count++ ) { + if ( array[ i ] == '\n' ) { + break; + } + } + + + buf.addLine( "line number " + (line + 1) ); + buf.addLine( "index number " + index ); + + + try { + buf.addLine( new String( array, lastLineIndex, count ) ); + } catch ( Exception ex ) { + + try { + int start = index = ( index - 10 < 0 ) ? 0 : index - 10; + + buf.addLine( new String( array, start, index ) ); + } catch ( Exception ex2 ) { + buf.addLine( new String( array, 0, array.length ) ); + } + } + for ( int i = 0; i < ( index - lastLineIndex ); i++ ) { + buf.add( '.' ); + } + buf.add( '^' ); + + return buf.toString(); + } + + + + public static boolean hasEscapeChar (byte []array, int index, int[] indexHolder) { + int currentChar; + for ( ; index < array.length; index++ ) { + currentChar = array[index]; + if ( isDoubleQuote ( currentChar )) { + indexHolder[0] = index; + return false; + } else if ( isEscape (currentChar) ) { + indexHolder[0] = index; + return true; + } + + } + + indexHolder[0] = index; + return false; + } + + + + public static int findEndQuote (final byte[] array, int index) { + int currentChar; + boolean escape = false; + + for ( ; index < array.length; index++ ) { + currentChar = array[index]; + if ( isDoubleQuote (currentChar )) { + if (!escape) { + break; + } + } + if ( isEscape (currentChar) ) { + if (!escape) { + escape = true; + } else { + escape = false; + } + } else { + escape = false; + } + } + return index; + } + + + + public static int findEndQuoteUTF8 (final byte[] array, int index) { + int currentChar; + boolean escape = false; + + for ( ; index < array.length; index++ ) { + currentChar = array[index]; + if (currentChar>=0) { + if ( isDoubleQuote (currentChar )) { + if (!escape) { + break; + } + } + if ( isEscape (currentChar) ) { + if (!escape) { + escape = true; + } else { + escape = false; + } + } else { + escape = false; + } + } else { + index = skipUTF8NonCharOrLongChar(currentChar, index); + } + } + return index; + } + + + + + private static int skipUTF8NonCharOrLongChar(final int c, int index) { + + + if ( ( c >> 5 ) == -2 ) { + index++; + } else if ( ( c >> 4 ) == -2 ) { + index+=2; + } else if ( ( c >> 3 ) == -2 ) { + index+=3; + } + + return index; + } + + + public static boolean hasEscapeCharUTF8 (byte []array, int index, int[] indexHolder) { + int currentChar; + for ( ; index < array.length; index++ ) { + currentChar = array[index]; + if (currentChar>=0) { + + if ( isDoubleQuote ( currentChar )) { + indexHolder[0] = index; + return false; + } else if ( isEscape (currentChar) ) { + indexHolder[0] = index; + return true; + } + } else { + index = skipUTF8NonCharOrLongChar(currentChar, index); + + } + + } + + indexHolder[0] = index; + return false; + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/primitive/CharArrayCharacterSource.java b/datastructures-json-boon/src/main/java/org/boon/primitive/CharArrayCharacterSource.java new file mode 100644 index 0000000..dc6e534 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/primitive/CharArrayCharacterSource.java @@ -0,0 +1,169 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.primitive; + +import org.boon.core.reflection.FastStringUtils; + +import java.util.Arrays; + +public class CharArrayCharacterSource implements CharacterSource { + + private char[] chars; + private int index=0; + private boolean foundEscape; + private int ch; + + + + + + public CharArrayCharacterSource ( char[] chars ) { + this.chars = chars; + } + + + public CharArrayCharacterSource ( String string ) { + this.chars = FastStringUtils.toCharArray ( string ); + } + + + @Override + public final int nextChar() { + return ch = chars[index++]; + } + + public final int safeNextChar() { + return ch = (index + 1 < chars.length ? chars[index++] : -1); + } + + + private final char[] EMPTY_CHARS = new char[0]; + + @Override + public final char[] findNextChar( final int match, final int esc ) { + int idx = index; + int startIndex = idx; + foundEscape = false; + char[] _chars = chars; + int ch = 0; + for (; idx < _chars.length; idx++) { + ch = _chars[idx]; + if ( ch == match || ch == esc ) { + if ( ch == match ) { + /** If you have found the next char, then return a copy of the buffer range.*/ + index = idx+1; + this.ch = ch; + return Arrays.copyOfRange ( _chars, startIndex, idx ); + } else if ( ch == esc ) { + foundEscape = true; + /** if we are dealing with an escape then see if the escaped char is a match + * if so, skip it. + */ + if ( idx + 1 < _chars.length) { + idx++; + } + } + } + } + + index = idx; + this.ch = ch; + return EMPTY_CHARS; + } + + + @Override + public boolean hadEscape() { + return foundEscape; + } + + public char[] readNumber( ) { + char [] results = CharScanner.readNumber( chars, index); + index += results.length; + return results; + } + + @Override + public final int currentChar() { + return chars[index]; + } + + @Override + public final boolean hasChar() { + return index + 1 < chars.length; + } + + + @Override + public final boolean consumeIfMatch( char[] match ) { + + int idx = index; + char[] _chars = chars; + + boolean ok = true; + + for (int i=0; i < match.length; i++, idx++) { + ok &= ( match[i] == _chars[idx] ); + if (!ok) break; + } + + if ( ok ) { + index = idx; + return true; + } else { + return false; + } + } + + @Override + public final int location() { + return index; + } + + + + + @Override + public void skipWhiteSpace() { + index = CharScanner.skipWhiteSpace( chars, index ); + } + + + + @Override + public String errorDetails( String message ) { + if (index < chars.length) { + ch = chars[index]; + } else { + ch = chars[chars.length-1]; + } + return CharScanner.errorDetails ( message, chars, index, ch ); + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/primitive/CharBuf.java b/datastructures-json-boon/src/main/java/org/boon/primitive/CharBuf.java new file mode 100644 index 0000000..1a8e8c2 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/primitive/CharBuf.java @@ -0,0 +1,1676 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.primitive; + +import org.boon.Lists; +import org.boon.Maps; +import org.boon.Str; +import org.boon.cache.Cache; +import org.boon.cache.CacheType; +import org.boon.cache.SimpleCache; +import org.boon.core.Conversions; +import org.boon.core.Dates; +import org.boon.core.TypeType; +import org.boon.core.reflection.FastStringUtils; +import org.boon.core.reflection.Mapper; + +import java.io.IOException; +import java.io.PrintWriter; +import java.io.Writer; +import java.math.BigDecimal; +import java.math.BigInteger; +import java.nio.charset.StandardCharsets; +import java.util.*; + +import static org.boon.Exceptions.die; +import static org.boon.Lists.toListOrSingletonList; +import static org.boon.primitive.CharScanner.*; + +/** + * This class is like a StringBuilder but it also pretends to be a PrintWriter. + * The class existed long before I added PrintWriter cababilities. + * I did look at the PrintWriter code but any code in this class should be a derivative product. + * If I copied and/or emulated any technique from PrintWriter, be assured that I give them full credit. + * + * I believe at all times the usage was small enough to be covered under "fair use". + * But to remove any doubt, the comments in question have been deleted. + * + */ +public class CharBuf extends PrintWriter implements CharSequence { + protected int capacity = 16; + protected int location = 0; + + protected char[] buffer; + + + public CharBuf( char[] buffer ) { + super(writer()); + this.buffer = buffer; + this.capacity = buffer.length; + } + + public CharBuf( byte[] bytes ) { + + super(writer()); + + String str = new String(bytes, StandardCharsets.UTF_8); + this.buffer = FastStringUtils.toCharArray(str); + this.location = buffer.length; + this.capacity = buffer.length; + + } + + public static CharBuf createExact( final int capacity ) { + return new CharBuf( capacity ) { + public CharBuf add( char[] chars ) { + Chr._idx( buffer, location, chars ); + location += chars.length; + return this; + } + }; + } + + public static CharBuf create( int capacity ) { + return new CharBuf( capacity ); + } + + public static CharBuf createCharBuf( int capacity ) { + return new CharBuf( capacity ); + } + + + public static CharBuf createCharBuf( ) { + return new CharBuf( 100 ); + } + + public static CharBuf create( char[] buffer ) { + return new CharBuf( buffer ); + } + + public static CharBuf createFromUTF8Bytes( byte[] buffer ) { + return new CharBuf( buffer ); + } + + protected CharBuf( int capacity ) { + + super(writer()); + this.capacity = capacity; + init(); + } + + + protected CharBuf() { + super(writer()); + init(); + } + + @Override + public void write( char[] cbuf, int off, int len ) { + + if ( off == 0 && cbuf.length == len ) { + this.add( cbuf ); + } else { + char[] buffer = Arrays.copyOfRange( cbuf, off, off + len ); + this.add( buffer ); + } + + } + + @Override + public void flush() { + } + + @Override + public void close() { + } + + public void init() { + buffer = new char[ capacity ]; + } + + + public final CharBuf add( Object str ) { + add( FastStringUtils.toCharArray( Str.str(str) ) ); + return this; + } + + public final CharBuf add( String str ) { + add( FastStringUtils.toCharArray( str ) ); + return this; + } + + + public final CharBuf add( CharSequence str ) { + add( FastStringUtils.toCharArray( str ) ); + return this; + } + + public final CharBuf addString( String str ) { + add( FastStringUtils.toCharArray( str ) ); + return this; + } + + public final CharBuf addObject ( Object object ) { + String str = object.toString(); + addString ( str ); + return this; + } + + public final CharBuf add( int i ) { + + add ( Integer.toString ( i )); + return this; + } + + + private Cache icache; + + public final CharBuf addInt( int i ) { + switch (i) { + case 0: + addChar('0'); + return this; + case 1: + addChar('1'); + return this; + case -1: + addChar('-'); + addChar('1'); + return this; + } + + addInt( Integer.valueOf( i ) ); + return this; + } + public final CharBuf addInt( Integer key ) { + + + if (icache == null) { + icache = new SimpleCache<> ( 1000, CacheType.LRU ); + } + char [] chars = icache.get ( key ); + + if ( chars == null ) { + String str = Integer.toString ( key ); + chars = FastStringUtils.toCharArray ( str ); + icache.put ( key, chars ); + } + + addChars ( chars ); + return this; + } + + + final char [] trueChars = "true".toCharArray (); + final char [] falseChars = "false".toCharArray (); + + public final CharBuf add( boolean b ) { + addChars ( b ? trueChars : falseChars ); + return this; + } + + + public final CharBuf addBoolean( boolean b ) { + + add ( Boolean.toString ( b )); + return this; + } + + public final CharBuf add( byte i ) { + + add ( Byte.toString ( i )); + return this; + } + + public final CharBuf addByte( byte i ) { + + addInt ( i ); + return this; + } + + + public final CharBuf add( short i ) { + + add ( Short.toString ( i )); + return this; + } + + + public final CharBuf addShort( short i ) { + + addInt ( i ); + return this; + } + + public final CharBuf add( long l ) { + add ( Long.toString ( l )); + return this; + } + + + + public final CharBuf add( double d ) { + add ( Double.toString ( d ) ); + return this; + } + + + private Cache dcache; + + + + public final CharBuf addDouble( double d ) { + addDouble( Double.valueOf( d ) ); + return this; + } + + public final CharBuf addDouble( Double key ) { + + if (dcache == null) { + dcache = new SimpleCache<> ( 100, CacheType.LRU ); + } + char [] chars = dcache.get ( key ); + + if ( chars == null ) { + String str = Double.toString ( key ); + chars = FastStringUtils.toCharArray ( str ); + dcache.put ( key, chars ); + } + + add ( chars ); + return this; + } + + + public final CharBuf add( float d ) { + add ( Float.toString ( d )); + return this; + } + + + private Cache fcache; + + public final CharBuf addFloat( float d ) { + addFloat( Float.valueOf( d ) ); + return this; + } + + + public final CharBuf addFloat( Float key ) { + + if (fcache == null) { + fcache = new SimpleCache<> ( 100, CacheType.LRU ); + } + char [] chars = fcache.get ( key ); + + if ( chars == null ) { + String str = Float.toString ( key ); + chars = FastStringUtils.toCharArray ( str ); + fcache.put ( key, chars ); + } + + add ( chars ); + + return this; + } + + public final CharBuf addChar( byte i ) { + add( ( char ) i ); + return this; + } + + + public final CharBuf addChar( int i ) { + add( ( char ) i ); + return this; + } + + + public final CharBuf addChar( short i ) { + add( ( char ) i ); + return this; + } + + + public final CharBuf addChar( final char ch ) { + + + if ( 1 + location > capacity ) { + buffer = Chr.grow( buffer ); + capacity = buffer.length; + + } + + buffer [location] = ch; + location ++; + + return this; + } + + public final CharBuf add( char ch ) { + + if ( 1 + location > capacity ) { + buffer = Chr.grow( buffer ); + capacity = buffer.length; + + } + + buffer [location] = ch; + location ++; + + return this; + } + + public CharBuf addLine( String str ) { + add( FastStringUtils.toCharArray(str)); + add( '\n' ); + return this; + } + + public CharBuf addLine( Object str ) { + add( FastStringUtils.toCharArray( + Str.str(str))); + add( '\n' ); + return this; + } + + + + public CharBuf addLine( ) { + add( '\n' ); + return this; + } + + + public CharBuf addLine( char[] chars ) { + add( chars ); + add( '\n' ); + return this; + } + + + public CharBuf addLine( CharSequence str ) { + add( str.toString() ); + add( '\n' ); + return this; + } + + public CharBuf add( char[] chars ) { + if ( chars.length + location > capacity ) { + buffer = Chr.grow( buffer, buffer.length * 2 + chars.length ); + capacity = buffer.length; + } + + Chr._idx( buffer, location, chars ); + location += chars.length; + return this; + } + + + + public final CharBuf addChars( char[] chars ) { + if ( chars.length + location > capacity ) { + buffer = Chr.grow( buffer, buffer.length * 2 + chars.length ); + capacity = buffer.length; + } + + System.arraycopy ( chars, 0, buffer, location, chars.length ); + location += chars.length; + return this; + } + + + public final CharBuf addQuoted( char[] chars ) { + + + int sizeNeeded = chars.length + 2 + location; + if ( sizeNeeded > capacity ) { + buffer = Chr.grow( buffer, sizeNeeded * 2 ); + capacity = buffer.length; + } + buffer [location] = '"'; + location++; + + System.arraycopy( chars, 0, buffer, location, chars.length ); + location += (chars.length); + buffer [location] = '"'; + location++; + + return this; + } + + public final CharBuf asJsonString(String jsonString, boolean asciiOnly) { + char[] charArray = FastStringUtils.toCharArray ( jsonString ); + return addJsonEscapedString ( charArray, asciiOnly ); + + } + + + public final CharBuf asJsonString(String jsonString) { + + return asJsonString(jsonString, false); + } + + + private static boolean isJSONEscapeOrAsciiControlOrUnicode(int c) { + + return (c < 32 || c == 34 || c == 92 || c > 127 ); + + } + + private static boolean isJSONEscapeOrAsciiControl(int c) { + + return (c < 32 || c == 34 || c == 92 ); + + } + + int jsonControlCount; + + private boolean hasAnyAsciiControlOrUnicodeChars(final char[] charArray) { + int index = 0; + char c; + while ( true ) { + c = charArray[ index ]; + if ( isJSONEscapeOrAsciiControlOrUnicode(c)) { + jsonControlCount++; + + } + if ( ++index >= charArray.length) break; + } + + return (jsonControlCount>0) ? true : false; + + } + + + private final boolean hasAnyAsciiControl(final char[] charArray) { + int index = 0; + char c; + while ( true ) { + c = charArray[ index ]; + if ( isJSONEscapeOrAsciiControl(c)) { + jsonControlCount++; + + } + if ( ++index >= charArray.length) break; + } + + return jsonControlCount>0; + + } + + public final CharBuf addJsonEscapedString( final char[] charArray ) { + + return addJsonEscapedString(charArray, false); + } + + + public final CharBuf addJsonEscapedString( final char[] charArray, boolean asciiOnly ) { + jsonControlCount = 0; + + + if (!asciiOnly) { + + if (charArray.length > 0 && hasAnyAsciiControl(charArray)) { + return doAddJsonEscapedString(charArray); + } else { + return this.addQuoted(charArray); + } + + } else { + if (charArray.length > 0 && hasAnyAsciiControlOrUnicodeChars(charArray)) { + return doAddJsonEscapedStringEscapeUnicode(charArray); + } else { + return this.addQuoted(charArray); + } + + } + } + + + final byte[] encoded = new byte[2]; + + final byte[] charTo = new byte[2]; + + + + private final CharBuf doAddJsonEscapedStringEscapeUnicode( char[] charArray ) { + + + char [] _buffer = buffer; + int _location = this.location; + + final byte[] _encoded = encoded; + + final byte[] _charTo = charTo; + /* We are making a bet that not all chars will be unicode. */ + int ensureThisMuch = charArray.length + ((jsonControlCount +2) * 5); + + int sizeNeeded = (ensureThisMuch) + _location; + if ( sizeNeeded > capacity ) { + + int growBy = ( _buffer.length * 2 ) < sizeNeeded ? sizeNeeded : (_buffer.length*2); + _buffer = Chr.grow( _buffer, growBy); + capacity = _buffer.length; + } + + + + + _buffer[_location] = '"'; + _location ++; + + int index = 0; + while ( true ) { + + char c = charArray[ index ]; + + + if ( isJSONEscapeOrAsciiControlOrUnicode(c)) { + + switch ( c ) { + case '\"': + _buffer[_location] = '\\'; + _location ++; + _buffer[_location] = '"'; + _location ++; + break; + case '\\': + _buffer[_location] = '\\'; + _location ++; + _buffer[_location] = '\\'; + _location ++; + break; + case '\b': + _buffer[_location] = '\\'; + _location ++; + _buffer[_location] = 'b'; + _location ++; + break; + case '\f': + _buffer[_location] = '\\'; + _location ++; + _buffer[_location] = 'f'; + _location ++; + break; + case '\n': + _buffer[_location] = '\\'; + _location ++; + _buffer[_location] = 'n'; + _location ++; + break; + case '\r': + _buffer[_location] = '\\'; + _location ++; + _buffer[_location] = 'r'; + _location ++; + break; + + case '\t': + _buffer[_location] = '\\'; + _location ++; + _buffer[_location] = 't'; + _location ++; + break; + + default: + + _buffer[_location] = '\\'; + _location ++; + _buffer[_location] = 'u'; + _location ++; + if (c <= 255) { + _buffer[_location] = '0'; + _location ++; + _buffer[_location] = '0'; + _location ++; + ByteScanner.encodeByteIntoTwoAsciiCharBytes( c, _encoded ); + for (int b : _encoded) { + _buffer [_location] = (char)b; + _location ++; + + } + } else { + Byt.charTo( _charTo, c ); + + for (int charByte : _charTo) { + ByteScanner.encodeByteIntoTwoAsciiCharBytes( charByte, _encoded ); + for (int b : _encoded) { + _buffer [_location] = (char)b; + _location ++; + } + } + + } + + } + }else { + + _buffer[_location] = c; + _location ++; + + } + + + if ( ++index >= charArray.length) break; + + + } + _buffer[_location] = '"'; + _location ++; + + + buffer = _buffer; + location = _location; + + return this; + } + + + private final CharBuf doAddJsonEscapedString( char[] charArray ) { + + + char [] _buffer = buffer; + int _location = this.location; + + final byte[] _encoded = encoded; + + final byte[] _charTo = charTo; + /* We are making a bet that not all chars will be unicode. */ + int ensureThisMuch = charArray.length + ((jsonControlCount +2) * 5); + + int sizeNeeded = (ensureThisMuch) + _location; + if ( sizeNeeded > capacity ) { + + int growBy = ( _buffer.length * 2 ) < sizeNeeded ? sizeNeeded : (_buffer.length*2); + _buffer = Chr.grow( _buffer, growBy); + capacity = _buffer.length; + } + + + + + _buffer[_location] = '"'; + _location ++; + + int index = 0; + while ( true ) { + + char c = charArray[ index ]; + + + if ( isJSONEscapeOrAsciiControl(c)) { + + switch ( c ) { + case '\"': + _buffer[_location] = '\\'; + _location ++; + _buffer[_location] = '"'; + _location ++; + break; + case '\\': + _buffer[_location] = '\\'; + _location ++; + _buffer[_location] = '\\'; + _location ++; + break; + case '\b': + _buffer[_location] = '\\'; + _location ++; + _buffer[_location] = 'b'; + _location ++; + break; + case '\f': + _buffer[_location] = '\\'; + _location ++; + _buffer[_location] = 'f'; + _location ++; + break; + case '\n': + _buffer[_location] = '\\'; + _location ++; + _buffer[_location] = 'n'; + _location ++; + break; + case '\r': + _buffer[_location] = '\\'; + _location ++; + _buffer[_location] = 'r'; + _location ++; + break; + + case '\t': + _buffer[_location] = '\\'; + _location ++; + _buffer[_location] = 't'; + _location ++; + break; + + default: + + _buffer[_location] = '\\'; + _location ++; + _buffer[_location] = 'u'; + _location ++; + if (c <= 255) { + _buffer[_location] = '0'; + _location ++; + _buffer[_location] = '0'; + _location ++; + ByteScanner.encodeByteIntoTwoAsciiCharBytes( c, _encoded ); + for (int b : _encoded) { + _buffer [_location] = (char)b; + _location ++; + + } + } else { + Byt.charTo( _charTo, c ); + + for (int charByte : _charTo) { + ByteScanner.encodeByteIntoTwoAsciiCharBytes( charByte, _encoded ); + for (int b : _encoded) { + _buffer [_location] = (char)b; + _location ++; + } + } + + } + + } + }else { + + _buffer[_location] = c; + _location ++; + + } + + + if ( ++index >= charArray.length) break; + + + } + _buffer[_location] = '"'; + _location ++; + + + buffer = _buffer; + location = _location; + + return this; + } + + + + + public final CharBuf addJsonFieldName( String str ) { + return addJsonFieldName ( FastStringUtils.toCharArray ( str ) ); + } + + public final CharBuf addJsonFieldName( char[] chars ) { + int sizeNeeded = chars.length + 4 + location; + if ( sizeNeeded > capacity ) { + buffer = Chr.grow( buffer, sizeNeeded * 2 ); + capacity = buffer.length; + } + buffer [location] = '"'; + location++; + + System.arraycopy( chars, 0, buffer, location, chars.length ); + + location += (chars.length); + buffer [location] = '"'; + location++; + buffer [location] = ':'; + location++; + + return this; + } + + public final CharBuf addQuoted( String str ) { + final char[] chars = FastStringUtils.toCharArray ( str ); + addQuoted ( chars ); + return this; + } + + + public CharBuf add( char[] chars, final int length ) { + if ( length + location < capacity ) { + Chr._idx( buffer, location, chars, length ); + } else { + buffer = Chr.grow( buffer, buffer.length * 2 + length ); + Chr._idx( buffer, location, chars ); + capacity = buffer.length; + } + location += length; + return this; + } + + public CharBuf add( byte[] chars ) { + if ( chars.length + location < capacity ) { + Chr._idx( buffer, location, chars ); + } else { + buffer = Chr.grow( buffer, buffer.length * 2 + chars.length ); + Chr._idx( buffer, location, chars ); + capacity = buffer.length; + } + location += chars.length; + return this; + } + + + + + public CharBuf add( byte[] bytes, int start, int end ) { + int charsLength = end - start ; + if ( charsLength + location > capacity ) { + buffer = Chr.grow( buffer, buffer.length * 2 + charsLength ); + } + Chr._idx( buffer, location, bytes, start, end ); + capacity = buffer.length; + location += charsLength; + return this; + } + + + public CharBuf add( String string, int start, int end ) { + int charsLength = end - start ; + if ( charsLength + location > capacity ) { + buffer = Chr.grow( buffer, buffer.length * 2 + charsLength ); + } + + return this.add(string.substring(start, end)); + } + + + + @Override + public int length () { + return len(); + } + + @Override + public char charAt ( int index ) { + return buffer [ index ]; + } + + @Override + public CharSequence subSequence ( int start, int end ) { + return new String (buffer, start, end - start); + } + + public String toString() { + return FastStringUtils.noCopyStringFromCharsNoCheck(buffer, location); + } + + public String toDebugString() { + return "CharBuf{" + + "capacity=" + capacity + + ", location=" + location + + '}'; + } + + public String toStringAndRecycle() { + + String str = this.toString(); + location = 0; + return str; + } + + public int len() { + return location; + } + + public char[] toCharArray() { + return this.buffer; + } + + public void _len( int location ) { + this.location = location; + } + + + public char[] readForRecycle() { + this.location = 0; + return this.buffer; + } + + + public void recycle() { + this.location = 0; + } + + + + + + public double doubleValue() { + return CharScanner.parseDouble( this.buffer, 0, location ); + } + + + public float floatValue() { + return CharScanner.parseFloat( this.buffer, 0, location ); + } + + public int intValue() { + return CharScanner.parseInt(buffer, 0, location); + } + + public long longValue() { + return CharScanner.parseLong(buffer, 0, location); + } + + + public byte byteValue() { + return ( byte ) intValue(); + } + + public short shortValue() { + return ( short ) intValue(); + } + + + public Number toIntegerWrapper() { + + if ( isInteger( buffer, 0, location ) ) { + return intValue() ; + } else { + return longValue(); + } + + } + + + public void addAsUTF( byte[] value ) { + + String str = new String(value, StandardCharsets.UTF_8); + final char[] chars = FastStringUtils.toCharArray(str); + this.add(chars); + + + } + + + + + final static char [] nullChars = "null".toCharArray (); + public final void addNull () { + this.add ( nullChars ); + } + + public char lastChar() { + return buffer[location-1]; + } + + public void removeLastChar () { + location--; + if (location < 0) { + location = 0; + } + } + + + private Cache bigDCache; + public CharBuf addBigDecimal( BigDecimal key ) { + if (bigDCache == null) { + bigDCache = new SimpleCache<> ( 100, CacheType.LRU ); + } + char [] chars = bigDCache.get ( key ); + + if ( chars == null ) { + String str = key.toString(); + chars = FastStringUtils.toCharArray ( str ); + bigDCache.put ( key, chars ); + } + + add ( chars ); + + return this; + + + } + + private Cache bigICache; + + public CharBuf addBigInteger( BigInteger key ) { + if (bigICache == null) { + bigICache = new SimpleCache<> ( 100, CacheType.LRU ); + } + char [] chars = bigICache.get ( key ); + + if ( chars == null ) { + String str = key.toString(); + chars = FastStringUtils.toCharArray ( str ); + bigICache.put ( key, chars ); + } + + add ( chars ); + + return this; + + } + + + private Cache lcache; + + + + public final CharBuf addLong( long l ) { + + addLong(Long.valueOf( l )); + return this; + } + + public final CharBuf addLong( Long key ) { + + if (lcache == null) { + lcache = new SimpleCache<> ( 100, CacheType.LRU ); + } + char [] chars = lcache.get ( key ); + + if ( chars == null ) { + String str = Long.toString ( key ); + chars = FastStringUtils.toCharArray ( str ); + lcache.put ( key, chars ); + } + + add ( chars ); + + return this; + } + + private Cache currencyCache; + public CharBuf addCurrency( Currency key ) { + if (currencyCache == null) { + currencyCache = new SimpleCache<> ( 100, CacheType.LRU ); + } + char [] chars = currencyCache.get ( key ); + + if ( chars == null ) { + String str = '"' + key.toString() + '"'; + chars = FastStringUtils.toCharArray ( str ); + currencyCache.put ( key, chars ); + } + + add ( chars ); + + return this; + + + } + + + /** + * Turn a single bytes into two hex character representation. + * + * @param decoded the byte to serializeObject. + */ + public CharSequence addHex( final int decoded ) { + + + + int _location = location; + char [] _buffer = buffer; + int _capacity = capacity; + + if ( 2 + _location > _capacity ) { + _buffer = Chr.grow( _buffer ); + _capacity = _buffer.length; + } + + _buffer [_location] = (char) encodeNibbleToHexAsciiCharByte( ( decoded >> 4 ) & 0x0F ); + _location ++; + + + _buffer [_location] = (char) encodeNibbleToHexAsciiCharByte( decoded & 0x0F );; + _location ++; + + location = _location; + buffer = _buffer; + capacity = _capacity; + return this; + } + + /** + * Turns a single nibble into an ascii HEX digit. + * + * @param nibble the nibble to serializeObject. + * @return the encoded nibble (1/2 byte). + */ + protected static int encodeNibbleToHexAsciiCharByte( final int nibble ) { + + switch ( nibble ) { + case 0x00: + case 0x01: + case 0x02: + case 0x03: + case 0x04: + case 0x05: + case 0x06: + case 0x07: + case 0x08: + case 0x09: + return nibble + 0x30; // 0x30('0') - 0x39('9') + case 0x0A: + case 0x0B: + case 0x0C: + case 0x0D: + case 0x0E: + case 0x0F: + return nibble + 0x57; // 0x41('a') - 0x46('f') + default: + die( "illegal nibble: " + nibble ); + return -1; + } + } + + public final CharBuf decodeJsonString ( char[] chars ) { + return decodeJsonString ( chars, 0, chars.length ); + } + + + static final char[] controlMap = new char[255]; + + static { + controlMap[(int)'n'] = '\n'; + controlMap[(int)'b'] = '\b'; + controlMap[(int)'/'] = '/'; + controlMap[(int)'f'] = '\f'; + controlMap[(int)'r'] = '\r'; + controlMap[(int)'t'] = '\t'; + controlMap[(int)'\\'] = '\\'; + + controlMap[(int)'"'] = '"'; + } + + public final CharBuf decodeJsonString ( char[] chars, int start, int to ) { + int len = to - start; + + + char [] buffer = this.buffer; + int location = this.location; + + + + if (len > capacity) { + buffer = Chr.grow ( buffer, (buffer.length * 2) + len ); + capacity = buffer.length; + this.buffer = buffer; + } + + char c; + int index = start; + + while (true) { + c = chars[ index ]; + if ( c == '\\' && index < (to -1)) { + index++; + c = chars[ index ]; + if (c!='u') { + buffer[location++] = controlMap[(int)c]; + } else { + + if ( index + 4 < to ) { + String hex = new String( chars, index + 1, 4 ); + char unicode = ( char ) Integer.parseInt( hex, 16 ); + buffer[location++]=unicode; + index += 4; + } + } + + } else { + buffer[location++]=c; + } + if (index >= (to -1)) { + break; + } + index++; + } + + + this.buffer = buffer; + this.location = location; + + return this; + + } + + + + + protected static final int DOUBLE_QUOTE = '"'; + + protected static final int ESCAPE = '\\'; + + + protected static final int LETTER_N = 'n'; + + + protected static final int LETTER_U = 'u'; + + + protected static final int LETTER_T = 't'; + + protected static final int LETTER_R = 'r'; + + protected static final int LETTER_B = 'b'; + + protected static final int LETTER_F = 'f'; + + protected static final int FORWARD_SLASH = '/'; + + + public final CharBuf decodeJsonString ( byte[] bytes, int start, int to ) { + + + String str = new String(bytes, start, to - start, StandardCharsets.UTF_8); + final char[] chars = FastStringUtils.toCharArray(str); + this.decodeJsonString(chars); + return this; + } + + public void ensure( int i ) { + if ( i + location > capacity ) { + buffer = Chr.grow( buffer, i * 2 ); + capacity = buffer.length; + } + } + + + @Override + public boolean equals(Object o) { + if (o == null ) { + return false; + } + + if (o instanceof CharSequence) { + return this.toString().equals(o.toString()); + } else { + return false; + } + + } + + @Override + public int hashCode() { + return this.toString().hashCode(); + } + + public CharBuf multiply(char c, int len) { + for (int index=0; index" ); + } else if (message instanceof char[]) { + add((char[])message); + } else if ( message.getClass().isArray() ) { + add( toListOrSingletonList( message ).toString() ); + } else { + add( message.toString() ); + } + add( ' ' ); + } + addLine(); + } + + + /** + * Prints an Object and then terminates the line. This method calls + * at first String.valueOf(x) to get the printed object's string value, + * then behaves as + * though it invokes {@link #print(String)} and then + * {@link #println()}. + * + * @param message The Object to be printed. + */ + public void println(String message) { + this.addLine(message); + } + + + + /** + * Prints a String and then terminates the line. This method behaves as + * though it invokes {@link #print(String)} and then + * {@link #println()}. + * + * @param object the String value to be printed + */ + public void println(Object object) { + this.addLine(Str.toString(object)); + } + + public CharBuf indent(int i) { + return multiply(' ', i); + } + + public void jsonDate(long millis) { + Dates.jsonDateChars(new Date(millis), this); + } + + + + + public PrintWriter append(CharSequence csq) { + return super.append(csq); + } + + private static Writer writer() { + return new Writer() { + @Override + public void write(char[] cbuf, int off, int len) throws IOException { + + } + + @Override + public void flush() throws IOException { + + } + + @Override + public void close() throws IOException { + + } + }; + } + + + /* Methods that do not terminate lines */ + + public void print(boolean b) { + this.addBoolean(b); + } + + public void print(char c) { + this.add(c); + } + + public void print(int i) { + this.addInt(i); + } + + public void print(long l) { + this.addLong(l); + } + + public void print(float f) { + this.add(f); + } + + public void print(double d) { + + this.add(d); + } + + public void print(char s[]) { + this.addChars(s); + } + + public void print(String s) { + if (s == null) { + s = "null"; + } + this.addString(s); + } + + public void print(Object obj) { + write(String.valueOf(obj)); + } + + /* Methods that do terminate lines */ + + public void println() { + this.addLine(); + } + + public void println(boolean x) { + this.addBoolean(x).addLine(); + } + + public void println(char x) { + this.addChar(x).addLine(); + } + + public void println(int x) { + this.addInt(x).addLine(); + + } + + public void println(long x) { + + this.addLong(x).addLine(); + } + + public void println(float x) { + add(x).addLine(); + } + + public void println(double x) { + add(x).addLine(); + } + + + public void println(char x[]) { + add(x).addLine(); + + } + + public PrintWriter printf(String format, Object ... args) { + this.addLine(String.format(format, args)); + return this; + } + + public PrintWriter printf(Locale l, String format, Object ... args) { + + this.addLine(String.format(l, format, args)); + return this; + + } + + public void display() { + + System.out.println(this.toString()); + } + + + + public CharBuf prettyPrintMap(Map map) { + return prettyPrintMap(map, 0); + + + } + + public CharBuf prettyPrintBean(Object object) { + final Map map = Maps.toPrettyMap(object); + return prettyPrintMap(map, 0); + } + + public CharBuf prettyPrintBeanWithTypes(Object object) { + final Map map = Maps.toMap(object); + return prettyPrintMap(map, 0); + } + + public CharBuf prettyPrintBean(Mapper mapper, Object object) { + return prettyPrintMap(mapper.toMap(object), 0); + } + + + public CharBuf prettyPrintMap(Map map, final int indent) { + final Set set = map.entrySet(); + + final Iterator iterator = set.iterator(); + + indent(indent * 4).add("{\n"); + + while (iterator.hasNext()) { + + Map.Entry entry = (Map.Entry)iterator.next(); + + indent((indent + 1) * 4); + + addJsonEscapedString(entry.getKey().toString().toCharArray()); + + add(" : "); + + Object value = entry.getValue(); + + prettyPrintObject(value, true, indent); + + add(",\n"); + + } + + + if (map.size()>0) { + removeLastChar(); + removeLastChar(); + add("\n"); + } + + indent(indent * 4).add('}'); + + return this; + + } + + + + public CharBuf prettyPrintCollection(Collection values, boolean type, int indent) { + + + add('['); + for (Object value : values) { + + prettyPrintObject(value, type, indent); + + + add(','); + } + + if (values.size()>0) { + removeLastChar(); + } + + add(']'); + + return this; + } + + public CharBuf prettyPrintObject(Object value, boolean type, int indent) { + + + TypeType instanceType = TypeType.getInstanceType(value); + switch (instanceType) { + + + case BYTE_WRAPPER: + case SHORT_WRAPPER: + case BOOLEAN_WRAPPER: + case BIG_DECIMAL: + case BIG_INT: + case DOUBLE_WRAPPER: + case INTEGER_WRAPPER: + case LONG_WRAPPER: + case NUMBER: + add(value); + break; + + case NULL: + addNull(); + break; + + case MAP: + prettyPrintMap((Map) value, indent + 2); + break; + + case INSTANCE: + if (type) { + prettyPrintMap(Maps.toMap(value), indent); + } else { + prettyPrintMap(Maps.toPrettyMap(value), indent); + } + break; + + + case COLLECTION: + case SET: + case LIST: + prettyPrintCollection((Collection) value, type, indent); + break; + + + + + case ARRAY: + case ARRAY_INT: + case ARRAY_BYTE: + case ARRAY_SHORT: + case ARRAY_FLOAT: + case ARRAY_DOUBLE: + case ARRAY_LONG: + case ARRAY_STRING: + case ARRAY_OBJECT: + prettyPrintCollection(Lists.list(Conversions.iterator(value)), type, indent); + break; + + case ENUM: + addJsonEscapedString(((Enum)value).name().toCharArray()); + break; + + + default: + addJsonEscapedString(value.toString().toCharArray()); + + + } + + return this; + } + + +} + diff --git a/datastructures-json-boon/src/main/java/org/boon/primitive/CharScanner.java b/datastructures-json-boon/src/main/java/org/boon/primitive/CharScanner.java new file mode 100644 index 0000000..aa7b1cf --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/primitive/CharScanner.java @@ -0,0 +1,1704 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.primitive; + + +import org.boon.core.reflection.FastStringUtils; + +import java.util.Arrays; + + +import static org.boon.Exceptions.die; +import static org.boon.Exceptions.handle; + + +/** + * This class uses int, float and double parsing that I saw in Jackson for int parsing. + * I have mentioned this many times on my blog and to Tatu on a few occasions. + * + * The work is now a complete derivative, but early versions of the int parsing + * were heavily based on the same approach used in Jackson. + * + * I believe at all times the usage was small enough to be covered under "fair use". + * And now the work has been so derived and changed that it is a different beast. + * + */ +public class CharScanner { + + + + + + protected static final int COMMA = ','; + protected static final int CLOSED_CURLY = '}'; + protected static final int CLOSED_BRACKET = ']'; + + protected static final int LETTER_E = 'e'; + protected static final int LETTER_BIG_E = 'E'; + + + protected static final int DECIMAL_POINT = '.'; + private static final int SPACE = ' '; + private static final int PIPE = '|'; + private static final char[][] EMPTY_CHAR_ARRAY_ARRAY = new char[0][0]; + + private static int NEWLINE= '\n'; + + private static int CARRIAGE_RETURN= '\r'; + + + + protected static final int ALPHA_0 = '0'; + protected static final int ALPHA_1 = '1'; + protected static final int ALPHA_2 = '2'; + protected static final int ALPHA_3 = '3'; + protected static final int ALPHA_4 = '4'; + protected static final int ALPHA_5 = '5'; + protected static final int ALPHA_6 = '6'; + protected static final int ALPHA_7 = '7'; + protected static final int ALPHA_8 = '8'; + protected static final int ALPHA_9 = '9'; + + protected static final int MINUS = '-'; + protected static final int PLUS = '+'; + + + + protected static final int DOUBLE_QUOTE = '"'; + + protected static final int ESCAPE = '\\'; + + + + + + public static boolean isDigit( int c ) { + return c >= ALPHA_0 && c <= ALPHA_9; + } + + + public static boolean isDecimalDigit( int c ) { + return isDigit ( c ) || isDecimalChar ( c ); + } + + + + public static boolean isDecimalChar ( int currentChar ) { + switch ( currentChar ) { + case MINUS: + case PLUS: + case LETTER_E: + case LETTER_BIG_E: + case DECIMAL_POINT: + return true; + } + return false; + + } + + + public static boolean hasDecimalChar( char[] chars, boolean negative ) { + + int index =0; + + if (negative) index++; + + for (; index < chars.length; index++) { + switch ( chars[index] ) { + case MINUS: + case PLUS: + case LETTER_E: + case LETTER_BIG_E: + case DECIMAL_POINT: + return true; + } + } + return false; + + } + + public static boolean isDigits( final char[] inputArray ) { + for ( int index = 0; index < inputArray.length; index++ ) { + char a = inputArray[ index ]; + if ( !isDigit( a ) ) { + return false; + } + } + return true; + } + + public static char[][] splitExact( final char[] inputArray, + final char split, final int resultsArrayLength ) { + /** Holds the results. */ + char[][] results = new char[ resultsArrayLength ][]; + + int resultIndex = 0; + int startCurrentLineIndex = 0; + int currentLineLength = 1; + + + char c = '\u0000'; + int index = 0; + + for (; index < inputArray.length; index++, currentLineLength++ ) { + c = inputArray[ index ]; + if ( c == split ) { + + results[ resultIndex ] = Chr.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1 ); + startCurrentLineIndex = index + 1; //skip the char + + currentLineLength = 0; + resultIndex++; + } + } + + if ( c != split ) { + + results[ resultIndex ] = Chr.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1 ); + resultIndex++; + } + + int actualLength = resultIndex; + if ( actualLength < resultsArrayLength ) { + final int newSize = resultsArrayLength - actualLength; + results = __shrink( results, newSize ); + } + return results; + } + + public static char[][] splitExact( final char[] inputArray, + final int resultsArrayLength, char... delims ) { + /** Holds the results. */ + char[][] results = new char[ resultsArrayLength ][]; + + int resultIndex = 0; + int startCurrentLineIndex = 0; + int currentLineLength = 1; + + + char c = '\u0000'; + int index = 0; + int j; + char split; + + + for (; index < inputArray.length; index++, currentLineLength++ ) { + c = inputArray[ index ]; + + inner: + for ( j = 0; j < delims.length; j++ ) { + split = delims[ j ]; + if ( c == split ) { + + results[ resultIndex ] = Chr.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1 ); + startCurrentLineIndex = index + 1; //skip the char + + currentLineLength = 0; + resultIndex++; + break inner; + } + } + } + + if ( !Chr.in( c, delims ) ) { + + results[ resultIndex ] = Chr.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1 ); + resultIndex++; + } + + + int actualLength = resultIndex; + if ( actualLength < resultsArrayLength ) { + final int newSize = resultsArrayLength - actualLength; + results = __shrink( results, newSize ); + } + return results; + } + + + + public static char[][] splitLines( final char[] inputArray) { + /** Holds the results. */ + char[][] results = new char[ 16 ][]; + + int resultIndex = 0; + int startCurrentLineIndex = 0; + int currentLineLength = 1; + + + int c = '\u0000'; + int index = 0; + + for (; index < inputArray.length; index++, currentLineLength++ ) { + c = inputArray[ index ]; + if ( c == NEWLINE || c == CARRIAGE_RETURN ) { + + if ( resultIndex == results.length ) { + + results = _grow( results ); + } + + + results[ resultIndex ] = Chr.copy( + inputArray, startCurrentLineIndex, currentLineLength ); + startCurrentLineIndex = index + 1; //skip the char + + currentLineLength = 0; + resultIndex++; + } + } + + if ( c != NEWLINE || c != CARRIAGE_RETURN ) { + + if (resultIndex < results.length) { + results[ resultIndex ] = Chr.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1 ); + resultIndex++; + } + } + + int actualLength = resultIndex; + if ( actualLength < results.length ) { + final int newSize = results.length - actualLength; + results = __shrink( results, newSize ); + } + return results; + } + + public static char[][] split( final char[] inputArray, + final char split ) { + /** Holds the results. */ + char[][] results = new char[ 16 ][]; + + int resultIndex = 0; + int startCurrentLineIndex = 0; + int currentLineLength = 1; + + + char c = 0; + int index = 0; + + + + for (; index < inputArray.length; index++, currentLineLength++ ) { + c = inputArray[ index ]; + if ( c == split ) { + + if ( resultIndex == results.length ) { + + results = _grow( results ); + } + + + results[ resultIndex ] = Chr.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1 ); + startCurrentLineIndex = index + 1; //skip the char + + currentLineLength = 0; + resultIndex++; + } + } + + + + if (c!=split) { + + if ( resultIndex == results.length ) { + + results = _grow( results ); + } + results[resultIndex] = Chr.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1); + resultIndex++; + } else if (index == inputArray.length) { + //noop + } else { + + if ( resultIndex == results.length ) { + + results = _grow( results ); + } + results[ resultIndex ] = Chr.copy( + inputArray, startCurrentLineIndex, inputArray.length - index - 1); + resultIndex++; + + } + + int actualLength = resultIndex; + if ( actualLength < results.length ) { + final int newSize = results.length - actualLength; + results = __shrink( results, newSize ); + } + return results; + } + + + public static char[][] splitFrom( final char[] inputArray, + final char split, int from ) { + /** Holds the results. */ + char[][] results = new char[ 16 ][]; + + int index = from; + int resultIndex = 0; + int startCurrentLineIndex = from; + int currentLineLength = 1; + + + char c = 0; + + + + for (; index < inputArray.length; index++, currentLineLength++ ) { + c = inputArray[ index ]; + if ( c == split ) { + + if ( resultIndex == results.length ) { + + results = _grow( results ); + } + + + results[ resultIndex ] = Chr.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1 ); + startCurrentLineIndex = index + 1; //skip the char + + currentLineLength = 0; + resultIndex++; + } + } + + + + if (c!=split) { + + if ( resultIndex == results.length ) { + + results = _grow( results ); + } + results[resultIndex] = Chr.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1); + resultIndex++; + } else if (index == inputArray.length) { + //noop + } else { + + if ( resultIndex == results.length ) { + + results = _grow( results ); + } + results[ resultIndex ] = Chr.copy( + inputArray, startCurrentLineIndex, inputArray.length - index - 1); + resultIndex++; + + } + + int actualLength = resultIndex; + if ( actualLength < results.length ) { + final int newSize = results.length - actualLength; + results = __shrink( results, newSize ); + } + return results; + } + + public static char[][] split( final char[] inputArray, + final char split, final int limit ) { + + + if (inputArray.length==0) { + return EMPTY_CHAR_ARRAY_ARRAY; + } + /** Holds the results. */ + char[][] results = new char[ limit + 1 ][]; + + int resultIndex = 0; + int startCurrentLineIndex = 0; + int currentLineLength = 1; + + + char c=0; + int index = 0; + + + for (; index < inputArray.length; index++, currentLineLength++ ) { + c = inputArray[ index ]; + if ( c == split ) { + + + results[ resultIndex ] = Chr.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1 ); + startCurrentLineIndex = index + 1; //skip the char + + resultIndex++; + + if ( resultIndex >= limit ) { + break; + } + + + + + currentLineLength = 0; + + } + } + + + + + if (c!=split) { + + if ( resultIndex == results.length ) { + + results = _grow( results ); + } + results[resultIndex] = Chr.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1); + resultIndex++; + } else if (index == inputArray.length) { + //noop + } else { + + if ( resultIndex == results.length ) { + + results = _grow( results ); + } + results[ resultIndex ] = Chr.copy( + inputArray, startCurrentLineIndex, inputArray.length - index - 1); + resultIndex++; + + } + + int actualLength = resultIndex; + if ( actualLength < results.length ) { + final int newSize = results.length - actualLength; + results = __shrink( results, newSize ); + } + return results; + } + + public static char[][] splitFromStartWithLimit( final char[] inputArray, + final char split, final int start, + final int limit ) { + + + if (inputArray.length==0) { + return EMPTY_CHAR_ARRAY_ARRAY; + } + /** Holds the results. */ + char[][] results = new char[ limit + 1 ][]; + + int resultIndex = 0; + int startCurrentLineIndex = 0; + int currentLineLength = 1; + + + char c=0; + int index = start; + + + for (; index < inputArray.length; index++, currentLineLength++ ) { + c = inputArray[ index ]; + if ( c == split ) { + + + results[ resultIndex ] = Chr.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1 ); + startCurrentLineIndex = index + 1; //skip the char + + resultIndex++; + + if ( resultIndex >= limit ) { + break; + } + + + + + currentLineLength = 0; + + } + } + + + + + if (c!=split) { + + if ( resultIndex == results.length ) { + + results = _grow( results ); + } + results[resultIndex] = Chr.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1); + resultIndex++; + } else if (index == inputArray.length) { + //noop + } else { + + if ( resultIndex == results.length ) { + + results = _grow( results ); + } + results[ resultIndex ] = Chr.copy( + inputArray, startCurrentLineIndex, inputArray.length - index - 1); + resultIndex++; + + } + + int actualLength = resultIndex; + if ( actualLength < results.length ) { + final int newSize = results.length - actualLength; + results = __shrink( results, newSize ); + } + return results; + } + + + public static char[][] splitByChars( final char[] inputArray, + final char... delims ) { + /** Holds the results. */ + char[][] results = new char[ 16 ][]; + + int resultIndex = 0; + int startCurrentLineIndex = 0; + int currentLineLength = 1; + + + char c = '\u0000'; + int index = 0; + int j; + char split; + + + for (; index < inputArray.length; index++, currentLineLength++ ) { + + c = inputArray[ index ]; + + inner: + for ( j = 0; j < delims.length; j++ ) { + split = delims[ j ]; + if ( c == split ) { + + if ( resultIndex == results.length ) { + + results = _grow( results ); + } + + + results[ resultIndex ] = Chr.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1 ); + startCurrentLineIndex = index + 1; //skip the char + + currentLineLength = 0; + resultIndex++; + break inner; + } + } + } + + if ( !Chr.in( c, delims ) ) { + + results[ resultIndex ] = Chr.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1 ); + resultIndex++; + } + + + int actualLength = resultIndex; + if ( actualLength < results.length ) { + final int newSize = results.length - actualLength; + results = __shrink( results, newSize ); + } + return results; + } + + public static char[][] splitByCharsFromToDelims( final char[] inputArray, int from, int to, + final char... delims ) { + /** Holds the results. */ + char[][] results = new char[ 16 ][]; + + final int length = to - from; + + int resultIndex = 0; + int startCurrentLineIndex = 0; + int currentLineLength = 1; + + + char c = '\u0000'; + int index = from; + int j; + char split; + + + for (; index < length; index++, currentLineLength++ ) { + + c = inputArray[ index ]; + + inner: + for ( j = 0; j < delims.length; j++ ) { + split = delims[ j ]; + if ( c == split ) { + + if ( resultIndex == results.length ) { + + results = _grow( results ); + } + + + results[ resultIndex ] = Chr.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1 ); + startCurrentLineIndex = index + 1; //skip the char + + currentLineLength = 0; + resultIndex++; + break inner; + } + } + } + + if ( !Chr.in( c, delims ) ) { + + results[ resultIndex ] = Chr.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1 ); + resultIndex++; + } + + + int actualLength = resultIndex; + if ( actualLength < results.length ) { + final int newSize = results.length - actualLength; + results = __shrink( results, newSize ); + } + return results; + } + + public static char[][] splitByCharsNoneEmpty( final char[] inputArray, + final char... delims ) { + + final char[][] results = splitByChars( inputArray, delims ); + return compact( results ); + } + + + public static char[][] splitByCharsNoneEmpty( final char[] inputArray, int from, int to, + final char... delims ) { + + final char[][] results = splitByCharsFromToDelims( inputArray, from, to, delims ); + return compact( results ); + } + + public static char[][] compact( char[][] array ) { + + int nullCount = 0; + for ( char[] ch : array ) { + + if ( ch == null || ch.length == 0 ) { + nullCount++; + } + } + char[][] newArray = new char[ array.length - nullCount ][]; + + int j = 0; + for ( char[] ch : array ) { + + if ( ch == null || ch.length == 0 ) { + continue; + } + + newArray[ j ] = ch; + j++; + } + return newArray; + } + + + private static char[][] _grow( char[][] array ) { + + char[][] newArray = new char[ array.length * 2 ][]; + System.arraycopy( array, 0, newArray, 0, array.length ); + return newArray; + } + + private static char[][] __shrink( char[][] array, int size ) { + char[][] newArray = new char[ array.length - size ][]; + + System.arraycopy( array, 0, ( char[][] ) newArray, 0, array.length - size ); + return newArray; + } + + + final static String MIN_LONG_STR_NO_SIGN = String.valueOf( Long.MIN_VALUE ); + final static String MAX_LONG_STR = String.valueOf( Long.MAX_VALUE ); + + + final static String MIN_INT_STR_NO_SIGN = String.valueOf( Integer.MIN_VALUE ); + final static String MAX_INT_STR = String.valueOf( Integer.MAX_VALUE ); + + + + + + public static boolean isLong( char[] digitChars ) { + return isLong ( digitChars, 0, digitChars.length ); + } + + public static boolean isLong( char[] digitChars, int offset, int len + ) { + String cmpStr = digitChars[offset]=='-' ? MIN_LONG_STR_NO_SIGN : MAX_LONG_STR; + int cmpLen = cmpStr.length(); + if ( len < cmpLen ) return true; + if ( len > cmpLen ) return false; + + for ( int i = 0; i < cmpLen; ++i ) { + int diff = digitChars[ offset + i ] - cmpStr.charAt( i ); + if ( diff != 0 ) { + return ( diff < 0 ); + } + } + return true; + } + + + + + public static boolean isInteger( char[] digitChars ) { + return isInteger ( digitChars, 0, digitChars.length ); + } + + public static boolean isInteger( char[] digitChars, int offset, int len) { + + + String cmpStr = (digitChars[offset] == '-') ? MIN_INT_STR_NO_SIGN : MAX_INT_STR; + int cmpLen = cmpStr.length(); + if ( len < cmpLen ) return true; + if ( len > cmpLen ) return false; + + for ( int i = 0; i < cmpLen; ++i ) { + int diff = digitChars[ offset + i ] - cmpStr.charAt( i ); + if ( diff != 0 ) { + return ( diff < 0 ); + } + } + return true; + } + + public static int parseInt( char[] digitChars ) { + return parseInt(digitChars, 0, digitChars.length); + } + + + + + public static int parseInt(char[] digitChars, int offset, int to) { + + try { + + + int num; + boolean negative=false; + char c = digitChars[ offset ]; + if (c == '-') { + offset++; + negative=true; + } + if (negative) { + num = (digitChars[ offset ] - '0'); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + } + } + } + } + } + } + } + } + } + } else { + num = (digitChars[ offset ] - '0'); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + if ( ++offset < to ) { + num = ( num * 10 ) + ( digitChars[ offset ] - '0' ); + } + } + } + } + } + } + } + } + } + + } + return negative ? num*-1 : num; + } catch ( Exception ex ) { + return handle( int.class, ex ); + } + } + + + public static int parseIntFromToIgnoreDot( char[] digitChars, int offset, int to ) { + + int num; + boolean negative=false; + char c = digitChars[ offset ]; + if (c == '-') { + offset++; + negative=true; + } + + c = digitChars[ offset ]; + num = (c - '0'); + offset++; + + for (; offset < to; offset++) { + c = digitChars[ offset ]; + if (c != '.') { + num = ( num * 10 ) + ( c - '0' ); + } + + } + + return negative ? num * -1 : num; + } + + + public static long parseLongFromToIgnoreDot( char[] digitChars, int offset, int to ) { + + long num; + boolean negative=false; + char c = digitChars[ offset ]; + if (c == '-') { + offset++; + negative=true; + } + + c = digitChars[ offset ]; + num = (c - '0'); + offset++; + + for (; offset < to; offset++) { + c = digitChars[ offset]; + if (c != '.') { + num = ( num * 10 ) + ( c - '0' ); + } + + } + + return negative ? num * -1 : num; + } + + public static long parseLong(char[] digitChars, int offset, int to) { + + + long num; + boolean negative=false; + char c = digitChars[ offset ]; + if (c == '-') { + offset++; + negative=true; + } + + c = digitChars[ offset ]; + num = (c - '0'); + offset++; + + long digit; + + for (; offset < to; offset++) { + c = digitChars [offset]; + digit = ( c - '0' ); + num = ( num * 10 ) + digit; + } + + return negative ? num * -1 : num; + + } + + + public static long parseLong( char[] digitChars ) { + return parseLong(digitChars, 0, digitChars.length); + } + + + + public static Number parseJsonNumber( char[] buffer ) { + return parseJsonNumber( buffer, 0, buffer.length ); + } + + + + public static Number parseJsonNumber( char[] buffer, int from, int to ) { + return parseJsonNumber( buffer, from, to, null ); + } + + + + public static final boolean isNumberDigit (int c) { + return c >= ALPHA_0 && c <= ALPHA_9; + } + + + + public static boolean isDelimiter ( int c ) { + + return c == COMMA || c == CLOSED_CURLY || c == CLOSED_BRACKET; + } + + public static Number parseJsonNumber( char[] buffer, int from, int max, int size[] ) { + Number value = null; + boolean simple = true; + int digitsPastPoint = 0; + + int index = from; + + + if (buffer[index] == '-') { + index++; + } + + boolean foundDot = false; + for (;index= powersOf10.length-1 ) { + simple = false; + } + + + final int length = index -from; + + if (!foundDot && simple) { + if ( isInteger( buffer, from, length ) ) { + value = parseInt(buffer, from, index); + } else { + value = parseLong(buffer, from, index); + } + } + else if ( foundDot && simple ) { + long lvalue; + + + if ( length < powersOf10.length ) { + + if ( isInteger( buffer, from, length ) ) { + lvalue = parseIntFromToIgnoreDot( buffer, from, index ); + } else { + lvalue = parseLongFromToIgnoreDot( buffer, from, index ); + } + + double power = powersOf10[ digitsPastPoint ]; + value = lvalue / power; + + } else { + value = Double.parseDouble( new String( buffer, from, length ) ); + + } + + + } else { + value = Double.parseDouble( new String( buffer, from, index - from ) ); + } + + + if (size != null) { + size[0] = index; + } + + return value; + } + + + public static float parseFloat( char[] buffer, int from, int to ) { + return (float) parseDouble( buffer, from , to ); + } + + public static float parseFloat( char[] buffer ) { + return (float) parseDouble( buffer, 0 , buffer.length ); + } + + + public static double parseDouble( char[] buffer ) { + return parseDouble( buffer, 0, buffer.length ); + } + + public static double parseDouble( char[] buffer, int from, int to ) { + double value; + boolean simple = true; + int digitsPastPoint = 0; + + int index = from; + boolean negative=false; + + + if (buffer[index] == 'N') { + if (to - from == 3) { + if (buffer[index + 1] == 'a' && buffer[index+2] == 'N') { + return Double.NaN; + } + } + } + + + + if (buffer[index] == '-') { + index++; + negative=true; + } + + boolean foundDot = false; + for (;index= powersOf10.length-1 ) { + simple = false; + } + + + final int length = index -from; + + if (!foundDot && simple) { + if ( isInteger( buffer, from, length ) ) { + value = parseInt(buffer, from, index); + } else { + value = parseLong(buffer, from, index); + } + } + else if ( foundDot && simple ) { + long lvalue; + + + if ( length < powersOf10.length ) { + + if ( isInteger( buffer, from, length ) ) { + lvalue = parseIntFromToIgnoreDot( buffer, from, index ); + } else { + lvalue = parseLongFromToIgnoreDot( buffer, from, index ); + } + + double power = powersOf10[ digitsPastPoint ]; + value = lvalue / power; + + } else { + value = Double.parseDouble( new String( buffer, from, length ) ); + + } + + + } else { + value = Double.parseDouble( new String( buffer, from, index - from ) ); + } + + + + if (value==0.0 && negative) { + return -0.0; + } else { + return value; + } + } + + private static double powersOf10[] = { + 1.0, + 10.0, + 100.0, + 1_000.0, + 10_000.0, + 100_000.0, + 1_000_000.0, + 10_000_000.0, + 100_000_000.0, + 1_000_000_000.0, + 10_000_000_000.0, + 100_000_000_000.0, + 1_000_000_000_000.0, + 10_000_000_000_000.0, + 100_000_000_000_000.0, + 1_000_000_000_000_000.0, + 10_000_000_000_000_000.0, + 100_000_000_000_000_000.0, + 1_000_000_000_000_000_000.0, + + }; + + + public static int skipWhiteSpace( char [] array) { + int c; + int index=0; + for (; index< array.length; index++ ) { + c = array [index]; + if ( c > 32 ) { + + return index; + } + } + return index; + } + + public static int skipWhiteSpace( char [] array, int index ) { + int c; + for (; index< array.length; index++ ) { + c = array [index]; + if ( c > 32 ) { + + return index; + } + } + return index; + } + + + + + public static int skipWhiteSpace( char [] array, int index, final int length ) { + int c; + for (; index< length; index++ ) { + c = array [index]; + if ( c > 32 ) { + + return index; + } + } + return index; + } + + public static char[] readNumber( char[] array, int idx ) { + final int startIndex = idx; + + while (true) { + if ( !CharScanner.isDecimalDigit ( array[idx] )) { + break; + } else { + idx++; + if (idx >= array.length) break; + } + } + + return Arrays.copyOfRange ( array, startIndex, idx ); + + + } + + + + public static char[] readNumber( char[] array, int idx, final int len ) { + final int startIndex = idx; + + while (true) { + if ( !CharScanner.isDecimalDigit ( array[idx] )) { + break; + } else { + idx++; + if (idx >= len ) break; + } + } + + return Arrays.copyOfRange ( array, startIndex, idx ); + + + } + + + + + + + + + public static int skipWhiteSpaceFast( char [] array ) { + int c; + int index=0; + for (; index< array.length; index++ ) { + c = array [index]; + if ( c > 32 ) { + + return index; + } + } + return index; + } + + + + public static int skipWhiteSpaceFast( char [] array, int index ) { + char c; + for (; index< array.length; index++ ) { + c = array [index]; + if ( c > 32 ) { + + return index; + } + } + return index-1; + } + + public static String errorDetails( String message, char[] array, int index, int ch ) { + CharBuf buf = CharBuf.create( 255 ); + + buf.addLine( message ); + + + buf.addLine( "" ); + buf.addLine( "The current character read is " + debugCharDescription( ch ) ); + + + buf.addLine( message ); + + int line = 0; + int lastLineIndex = 0; + + for ( int i = 0; i < index && i < array.length; i++ ) { + if ( array[ i ] == '\n' ) { + line++; + lastLineIndex = i + 1; + } + } + + int count = 0; + + for ( int i = lastLineIndex; i < array.length; i++, count++ ) { + if ( array[ i ] == '\n' ) { + break; + } + } + + + buf.addLine( "line number " + (line + 1) ); + buf.addLine( "index number " + index ); + + + try { + buf.addLine( new String( array, lastLineIndex, count ) ); + } catch ( Exception ex ) { + + try { + int start = index = ( index - 10 < 0 ) ? 0 : index - 10; + + buf.addLine( new String( array, start, index ) ); + } catch ( Exception ex2 ) { + buf.addLine( new String( array, 0, array.length ) ); + } + } + for ( int i = 0; i < ( index - lastLineIndex ); i++ ) { + buf.add( '.' ); + } + buf.add( '^' ); + + return buf.toString(); + } + + + public static String debugCharDescription( int c ) { + String charString; + if ( c == ' ' ) { + charString = "[SPACE]"; + } else if ( c == '\t' ) { + charString = "[TAB]"; + + } else if ( c == '\n' ) { + charString = "[NEWLINE]"; + + } else { + charString = "'" + (char)c + "'"; + } + + charString = charString + " with an int value of " + ( ( int ) c ); + return charString; + } + + + + public static final boolean isDoubleQuote ( int c ) { + return c == DOUBLE_QUOTE; + } + + + public static final boolean isEscape ( int c ) { + return c == ESCAPE; + } + + + + public static boolean hasEscapeChar (char []array, int index, int[] indexHolder) { + char currentChar; + for ( ; index < array.length; index++ ) { + currentChar = array[index]; + if ( isDoubleQuote ( currentChar )) { + indexHolder[0] = index; + return false; + } else if ( isEscape (currentChar) ) { + indexHolder[0] = index; + return true; + } + + } + + indexHolder[0] = index; + return false; + } + + + + + public static int findEndQuote (final char[] array, int index) { + char currentChar; + boolean escape = false; + + for ( ; index < array.length; index++ ) { + currentChar = array[index]; + if ( isDoubleQuote (currentChar )) { + if (!escape) { + break; + } + } + if ( isEscape (currentChar) ) { + if (!escape) { + escape = true; + } else { + escape = false; + } + } else { + escape = false; + } + } + return index; + } + + + public static char[][] splitComma(char[] inputArray) { + + /** Holds the results. */ + char[][] results = new char[ 16 ][]; + + int resultIndex = 0; + int startCurrentLineIndex = 0; + int currentLineLength = 1; + + + int c = '\u0000'; + int index = 0; + + for (; index < inputArray.length; index++, currentLineLength++ ) { + c = inputArray[ index ]; + if ( c == COMMA ) { + + if ( resultIndex == results.length ) { + + results = _grow( results ); + } + + + results[ resultIndex ] = Chr.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1 ); + startCurrentLineIndex = index + 1; //skip the char + + currentLineLength = 0; + resultIndex++; + } + } + + if ( c != COMMA ) { + + results[ resultIndex ] = Chr.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1 ); + resultIndex++; + } + + int actualLength = resultIndex; + if ( actualLength < results.length ) { + final int newSize = results.length - actualLength; + results = __shrink( results, newSize ); + } + return results; + + } + + + public static char[][] splitBySpace( char[] inputArray) { + return splitByChar(SPACE, inputArray); + } + + public static char[][] splitByChar(int splitChar, char[] inputArray) { + + /** Holds the results. */ + char[][] results = new char[ 16 ][]; + + int resultIndex = 0; + int startCurrentLineIndex = 0; + int currentLineLength = 1; + + final int SPLIT_CHAR = splitChar; + + int c = '\u0000'; + int index = 0; + + for (; index < inputArray.length; index++, currentLineLength++ ) { + c = inputArray[ index ]; + if ( c == SPLIT_CHAR ) { + + if ( resultIndex == results.length ) { + + results = _grow( results ); + } + + + results[ resultIndex ] = Chr.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1 ); + startCurrentLineIndex = index + 1; //skip the char + + currentLineLength = 0; + resultIndex++; + } + } + + if ( c != SPLIT_CHAR ) { + + results[ resultIndex ] = Chr.copy( + inputArray, startCurrentLineIndex, currentLineLength - 1 ); + resultIndex++; + } + + int actualLength = resultIndex; + if ( actualLength < results.length ) { + final int newSize = results.length - actualLength; + results = __shrink( results, newSize ); + } + return results; + + } + + public static int findChar(char c, char[] line) { + int idx = -1; + for ( int index = 0; index < line.length; index++) { + if ( line[index] == c ) {idx = index; break;} + } + return idx; + } + + public static int findWhiteSpace(char[] line) { + int idx = -1; + for ( int index = 0; index < line.length; index++) { + + char c = line[index]; + + switch (c) { + case '\t': + case '\n': + case '\r': + case ' ': + return index; + + } + } + return idx; + } + + + public static int findWhiteSpace( int start, char[] line) { + int idx = -1; + for ( int index = start; index < line.length; index++) { + + char c = line[index]; + + switch (c) { + case '\t': + case '\n': + case '\r': + case ' ': + return index; + + } + } + return idx; + } + + + public static int findChar(char c, int startIndex, char[] line) { + int idx = -1; + for ( int index = startIndex; index < line.length; index++) { + if ( line[index] == c ) {idx = index; break;} + } + return idx; + } + + + public static int findString(String matchString, int startIndex, char[] line) { + return findChars(FastStringUtils.toCharArray(matchString), startIndex, line); + } + + public static int findString(String matchString, char[] line) { + return findChars(FastStringUtils.toCharArray(matchString), 0, line); + } + + + public static int findChars(char[] matchChars, char[] line) { + return findChars(matchChars, 0, line); + } + + public static boolean matchChars(char[] matchChars, int startIndex, char[] line) { + + if ((line.length - startIndex) < matchChars.length) { + return false; + } + + int i = findChar(matchChars[0], startIndex, line); + + if (i == -1) { + return false; + } + + + + loop: + for (; i < line.length; i++) { + for (int j = 0; j < matchChars.length; j++) { + char c = matchChars[j]; + if (c == line[i]) { + if (j+1 == matchChars.length) { + return true; + } + i++; + continue; + } else { + i++; + break loop; + } + } + } + + return false; + } + + public static int findChars(char[] matchChars, int startIndex, char[] line) { + + if ((line.length - startIndex) < matchChars.length) { + return -1; + } + + int index = findChar(matchChars[0], startIndex, line); + + if (index == -1) { + return -1; + } + + + int i= index; + + loop: + for (; i < line.length; i++) { + for (int j = 0; j < matchChars.length; j++) { + char c = matchChars[j]; + if (c == line[i]) { + + if (j+1 == matchChars.length) { + return index; + } + i++; + continue; + } else { + i++; + break loop; + } + } + } + + return findChars(matchChars, i, line); + } + + public static char[][] splitByPipe(char[] inputArray) { + return splitByChar(PIPE, inputArray); + + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/primitive/CharacterSource.java b/datastructures-json-boon/src/main/java/org/boon/primitive/CharacterSource.java new file mode 100644 index 0000000..c71bcda --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/primitive/CharacterSource.java @@ -0,0 +1,70 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.primitive; + +/** */ +public interface CharacterSource { + + /** Skip white space. */ + void skipWhiteSpace(); + + /** returns the next character moving the file pointer or index to the next location. */ + int nextChar(); + /** returns the current character without changing the IO pointer or index. */ + int currentChar(); + /** Checks to see if there is a next character. */ + boolean hasChar(); + /** Useful for finding constants in a string like true, false, etc. */ + boolean consumeIfMatch( char[] match ); + /** This is mostly for debugging and testing. */ + int location(); + + /** Combines the operations of nextChar and hasChar. + * Characters is -1 if not found which signifies end of file. + * This might be preferable to avoid two method calls. + **/ + int safeNextChar(); + + /** + * Used to find strings and their ilk + * Finds the next non-escaped char + * @param ch character to find + * @param esc escape character to avoid next char if escaped + * @return list of chars until this is found. + */ + char[] findNextChar( int ch, int esc ); + + boolean hadEscape(); + + /** Reads a number from the character source. */ + char[] readNumber( ); + + String errorDetails( String message ); + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/primitive/Chr.java b/datastructures-json-boon/src/main/java/org/boon/primitive/Chr.java new file mode 100644 index 0000000..6b38589 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/primitive/Chr.java @@ -0,0 +1,1031 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.primitive; + + +import org.boon.Exceptions; +import org.boon.Universal; +import org.boon.core.reflection.FastStringUtils; + +import static java.lang.System.arraycopy; +import static org.boon.Boon.puts; +import static org.boon.Exceptions.die; + + +public class Chr { + + + public static final char[] DEFAULT_SPLIT = { ' ', '\t', ',', ':', ';' }; + public static final char[] NEWLINE_CHARS = { '\n', '\r' }; + private static final char[] EMPTY_CHARS = new char[0]; + + /** + * Creates an array of chars + * + * @param size size of the array you want to make + * @return + */ + public static char[] arrayOfChar( final int size ) { + return new char[ size ]; + } + + + /** + * @param array + * @return + */ + @Universal + public static char[] array( final char... array ) { + return array; + } + + @Universal + public static char[] chars( final String array ) { + return FastStringUtils.toCharArray(array); + } + + + @Universal + public static int lengthOf( char[] array ) { + return len(array); + } + + @Universal + public static int len( char[] array ) { + return array.length; + } + + + @Universal + public static char atIndex( final char[] array, final int index ) { + return idx(array, index); + } + + @Universal + public static char idx( final char[] array, final int index ) { + final int i = calculateIndex( array, index ); + + return array[ i ]; + } + + + @Universal + public static void atIndex( final char[] array, int index, char value ) { + idx(array, index, value); + } + + @Universal + public static void idx( final char[] array, int index, char value ) { + final int i = calculateIndex( array, index ); + + array[ i ] = value; + } + + + + @Universal + public static void atIndex( final char[] array, int index, char[] input ) { + idx(array, index, input); + } + + @Universal + public static void idx( final char[] array, int index, char[] input ) { + final int i = calculateIndex( array, index ); + + _idx( array, i, input ); + } + + @Universal + public static char[] sliceOf( char[] array, int startIndex, int endIndex ) { + return slc(array, startIndex, endIndex); + } + + @Universal + public static char[] slc( char[] array, int startIndex, int endIndex ) { + + final int start = calculateIndex( array, startIndex ); + final int end = calculateEndIndex( array, endIndex ); + int newLength = end - start; + + if ( newLength < 0 ) { + return EMPTY_CHARS; + } + + char[] newArray = new char[ newLength ]; + arraycopy(array, start, newArray, 0, newLength); + return newArray; + } + + + @Universal + public static char[] sliceOf( char[] array, int startIndex ) { + return slc(array, startIndex); + } + + @Universal + public static char[] slc( char[] array, int startIndex ) { + + final int start = calculateIndex( array, startIndex ); + final int newLength = array.length - start; + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, length %d", + startIndex, array.length ) + ); + } + + char[] newArray = new char[ newLength ]; + arraycopy(array, start, newArray, 0, newLength); + return newArray; + } + + + @Universal + public static char[] endSliceOf( char[] array, int endIndex ) { + return slcEnd(array, endIndex); + } + + @Universal + public static char[] slcEnd( char[] array, int endIndex ) { + + final int end = calculateEndIndex( array, endIndex ); + final int newLength = end; // + (endIndex < 0 ? 1 : 0); + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, length %d", + endIndex, array.length ) + ); + } + + char[] newArray = new char[ newLength ]; + arraycopy(array, 0, newArray, 0, newLength); + return newArray; + } + + @Universal + public static boolean in( char value, char[] array ) { + for ( char currentValue : array ) { + if ( currentValue == value ) { + return true; + } + } + return false; + } + + + @Universal + public static boolean in( char[] values, char[] array ) { + for ( char currentValue : array ) { + + for (char value : values) { + if ( currentValue == value ) { + return true; + } + } + } + return false; + } + + + + @Universal + public static boolean in( int value, char[] array ) { + for ( int currentValue : array ) { + if ( currentValue == value ) { + return true; + } + } + return false; + } + @Universal + public static boolean in( char value, int offset, char[] array ) { + for ( int index = offset; index < array.length; index++ ) { + char currentValue = array[ index ]; + if ( currentValue == value ) { + return true; + } + } + return false; + } + + + @Universal + public static boolean in( char value, int offset, int end, char[] array ) { + for ( int index = offset; index < end; index++ ) { + char currentValue = array[ index ]; + if ( currentValue == value ) { + return true; + } + } + return false; + } + + + public static char[] grow( char[] array, final int size ) { + char[] newArray = new char[ array.length + size ]; + arraycopy ( array, 0, newArray, 0, array.length ); + return newArray; + } + + + public static char[] grow( char[] array ) { + char[] newArray = new char[ (array.length+1) * 2 ]; + arraycopy ( array, 0, newArray, 0, array.length ); + return newArray; + } + + public static char[] shrink( char[] array, int size ) { + char[] newArray = new char[ array.length - size ]; + + arraycopy ( array, 0, newArray, 0, array.length - size ); + return newArray; + } + + + public static char[] compact( char[] array ) { + + int nullCount = 0; + for ( char ch : array ) { + + if ( ch == '\0' ) { + nullCount++; + } + } + char[] newArray = new char[ array.length - nullCount ]; + + int j = 0; + for ( char ch : array ) { + + if ( ch == '\0' ) { + continue; + } + + newArray[ j ] = ch; + j++; + } + return newArray; + } + + + + public static char[] remove( char c, char[] array ) { + + int removeCount = 0; + for ( char ch : array ) { + + if ( ch == c ) { + removeCount++; + } + } + char[] newArray = new char[ array.length - removeCount ]; + + int j = 0; + for ( char ch : array ) { + + if ( ch == c ) { + continue; + } + + newArray[ j ] = ch; + j++; + } + return newArray; + } + + + public static char[] remove( char c, char[] array, int start, int to ) { + + int removeCount = 0; + for (int index = start; index < to; index++ ) { + char ch = array[index]; + + if ( ch == c ) { + removeCount++; + } + } + char[] newArray = new char[ array.length - removeCount ]; + + int j = 0; + for (int index = start; index < to; index++ ) { + char ch = array[index]; + + if ( ch == c ) { + continue; + } + + newArray[ j ] = ch; + j++; + } + return newArray; + } + + + public static char[][] split( char[] chars ) { + return CharScanner.splitByChars( chars, DEFAULT_SPLIT ); + } + + public static char[][] splitLine( char[] chars ) { + return CharScanner.splitByChars( chars, NEWLINE_CHARS ); + } + + + @Universal + public static char[] copy( char[] array ) { + Exceptions.requireNonNull( array ); + char[] newArray = new char[ array.length ]; + arraycopy ( array, 0, newArray, 0, array.length ); + return newArray; + } + + @Universal + public static char[] copy( char[] array, int offset, int length ) { + char[] newArray = new char[ length ]; + arraycopy ( array, offset, newArray, 0, length ); + return newArray; + } + + + @Universal + public static char[] add( char[] array, char v ) { + Exceptions.requireNonNull( array ); + char[] newArray = new char[ array.length + 1 ]; + arraycopy ( array, 0, newArray, 0, array.length ); + newArray[ array.length ] = v; + return newArray; + } + + + @Universal + public static char[] add( char[] array, String str ) { + return add( array, str.toCharArray() ); + } + + @Universal + public static char[] add( char[] array, StringBuilder stringBuilder ) { + return add( array, getCharsFromStringBuilder( stringBuilder ) ); + } + + + @Universal + public static char[] add( char[] array, char[] array2 ) { + char[] newArray = new char[ array.length + array2.length ]; + arraycopy ( array, 0, newArray, 0, array.length ); + arraycopy ( array2, 0, newArray, array.length, array2.length ); + return newArray; + } + + + @Universal + public static char[] insert( final char[] array, final int idx, final char v ) { + Exceptions.requireNonNull( array ); + + if ( idx >= array.length ) { + return add( array, v ); + } + + final int index = calculateIndex( array, idx ); + + //Object newArray = Array.newInstance(array.getClass().getComponentType(), array.length+1); + char[] newArray = new char[ array.length + 1 ]; + + if ( index != 0 ) { + /* Copy up to the length in the array before the index. */ + /* src sbegin dst dbegin length of copy */ + arraycopy ( array, 0, newArray, 0, index ); + } + + + boolean lastIndex = index == array.length - 1; + int remainingIndex = array.length - index; + + if ( lastIndex ) { + /* Copy the area after the insert. Make sure we don't write over the end. */ + /* src sbegin dst dbegin length of copy */ + arraycopy ( array, index, newArray, index + 1, remainingIndex ); + + } else { + /* Copy the area after the insert. */ + /* src sbegin dst dbegin length of copy */ + arraycopy ( array, index, newArray, index + 1, remainingIndex ); + + } + + newArray[ index ] = v; + return newArray; + } + + + @Universal + public static char[] insert( final char[] array, final int fromIndex, String values ) { + return insert( array, fromIndex, values.toCharArray() ); + } + + + @Universal + public static char[] insert( final char[] array, final int fromIndex, StringBuilder values ) { + return insert( array, fromIndex, getCharsFromStringBuilder( values ) ); + } + + + @Universal + public static char[] insert( final char[] array, final int fromIndex, final char[] values ) { + Exceptions.requireNonNull( array ); + + if ( fromIndex >= array.length ) { + return add( array, values ); + } + + final int index = calculateIndex( array, fromIndex ); + + //Object newArray = Array.newInstance(array.getClass().getComponentType(), array.length+1); + char[] newArray = new char[ array.length + values.length ]; + + if ( index != 0 ) { + /* Copy up to the length in the array before the index. */ + /* src sbegin dst dbegin length of copy */ + arraycopy ( array, 0, newArray, 0, index ); + } + + + boolean lastIndex = index == array.length - 1; + + int toIndex = index + values.length; + int remainingIndex = newArray.length - toIndex; + + if ( lastIndex ) { + /* Copy the area after the insert. Make sure we don't write over the end. */ + /* src sbegin dst dbegin length of copy */ + arraycopy ( array, index, newArray, index + values.length, remainingIndex ); + + } else { + /* Copy the area after the insert. */ + /* src sbegin dst dbegin length of copy */ + arraycopy ( array, index, newArray, index + values.length, remainingIndex ); + + } + + for ( int i = index, j = 0; i < toIndex; i++, j++ ) { + newArray[ i ] = values[ j ]; + } + return newArray; + } + + + + /* End universal methods. */ + + + private static char[] getCharsFromStringBuilder( StringBuilder sbuf ) { + int length = sbuf.length(); + char[] array2 = new char[ sbuf.length() ]; + sbuf.getChars( 0, sbuf.length(), array2, 0 ); + return array2; + } + + private static int calculateIndex( char[] array, int originalIndex ) { + final int length = array.length; + + + + int index = originalIndex; + + /* Adjust for reading from the right as in + -1 reads the 4th element if the length is 5 + */ + if ( index < 0 ) { + index = length + index; + } + + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + if ( index < 0 ) { + index = 0; + } + if ( index >= length ) { + index = length - 1; + } + return index; + } + + + private static int calculateEndIndex( char[] array, int originalIndex ) { + final int length = array.length; + + + + int index = originalIndex; + + /* Adjust for reading from the right as in + -1 reads the 4th element if the length is 5 + */ + if ( index < 0 ) { + index = length + index; + } + + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + if ( index < 0 ) { + index = 0; + } + if ( index > length ) { + index = length; + } + return index; + } + + // + // + // + + + public static char[] rpad( final char[] in, final int size, char pad ) { + + if ( in.length >= size ) { + return in; + } + + int index = 0; + char[] newArray = new char[ size ]; + + for ( index = 0; index < in.length; index++ ) { + newArray[ index ] = in[ index ]; + } + + + for (; index < size; index++ ) { + newArray[ index ] = pad; + } + + return newArray; + } + + + public static char[] lpad( final char[] in, final int size, char pad ) { + + if ( in.length >= size ) { + return in; + } + + int delta = size - in.length; + int index = 0; + char[] newArray = new char[ size ]; + + + for (; index < delta; index++ ) { + newArray[ index ] = pad; + } + + + for ( int index2 = 0; index2 < in.length; index++, index2++ ) { + newArray[ index ] = in[ index2 ]; + } + + return newArray; + } + + + public static char[] underBarCase( char[] in ) { + + if ( in == null || in.length == 0 || in.length == 1 ) { + return in; + } + + char[] out = null; + int count = 0; + + boolean wasLower = false; + + for ( int index = 0; index < in.length; index++ ) { + char ch = in[ index ]; + boolean isUpper; + + isUpper = Character.isUpperCase( ch ); + + if ( wasLower && isUpper ) { + count++; + } + + wasLower = Character.isLowerCase( ch ); + + } + + out = new char[ in.length + count ]; + + wasLower = false; + + for ( int index = 0, secondIndex = 0; index < in.length; index++, secondIndex++ ) { + char ch = in[ index ]; + boolean isUpper; + + isUpper = Character.isUpperCase( ch ); + + if ( wasLower && isUpper ) { + out[ secondIndex ] = '_'; + secondIndex++; + } + + if ( ch == ' ' || ch == '-' || ch == '\t' || ch == '.' ) { + out[ secondIndex ] = '_'; + } else { + out[ secondIndex ] = Character.toUpperCase( ch ); + } + wasLower = Character.isLowerCase( ch ); + + } + + return out; + } + + + public static char[] camelCase( char[] in, boolean upper ) { + + if ( in == null || in.length == 0 || in.length == 1 ) { + return in; + } + + char[] out = null; + int count = 0; + for ( int index = 0; index < in.length; index++ ) { + char ch = in[ index ]; + if ( ch == '_' || ch == ' ' || ch == '\t' ) { + count++; + } + } + + out = new char[ in.length - count ]; + + + boolean upperNext = false; + + for ( int index = 0, secondIndex = 0; index < in.length; index++ ) { + char ch = in[ index ]; + if ( ch == '_' || ch == ' ' || ch == '\t' ) { + upperNext = true; + } else { + out[ secondIndex ] = upperNext ? Character.toUpperCase( ch ) : Character.toLowerCase( ch ); + upperNext = false; + secondIndex++; + } + } + + if ( upper ) { + out[ 0 ] = Character.toUpperCase( out[ 0 ] ); + } else { + out[ 0 ] = Character.toLowerCase( out[ 0 ] ); + } + + return out; + } + + + public static char[][] split( final char[] inputArray, + final char split ) { + return CharScanner.split( inputArray, split ); + + } + + + public static boolean contains( char[] chars, char c ) { + for ( int index = 0; index < chars.length; index++ ) { + char ch = chars[ index ]; + if ( ch == c ) { + return true; + } + } + return false; + } + + + public static boolean contains( char[] chars, char c, int start, final int length ) { + final int to = length + start; + for ( int index = start; index < to; index++ ) { + char ch = chars[ index ]; + if ( ch == c ) { + return true; + } + } + return false; + } + + public static void _idx( char[] buffer, int location, byte[] chars ) { + int index2 = 0; + int endLocation = ( location + chars.length ); + for ( int index = location; index < endLocation; index++, index2++ ) { + buffer[ index ] = ( char ) chars[ index2 ]; + } + } + + + public static void _idx( final char[] array, int startIndex, char[] input ) { + + arraycopy(input, 0, array, startIndex, input.length); + } + + + + public static void _idx( final char[] array, int startIndex, char[] input, final int inputLength ) { + + arraycopy(input, 0, array, startIndex, inputLength); + } + + public static void _idx( char[] buffer, int location, byte[] chars, int start, int end ) { + + int index2 = start; + int endLocation = ( location + ( end - start ) ); + for ( int index = location; index < endLocation; index++, index2++ ) { + buffer[ index ] = ( char ) chars[ index2 ]; + } + + } + + + public static char[] trim( char[] buffer, int start, int to ) { + + + while ( ( start < to ) && ( + buffer[ start ] <= ' ' ) ) { + start++; + } + while ( ( start < to ) && ( + buffer[ to - 1 ] <= ' ' ) ) { + to--; + } + return ( ( start > 0 ) || ( to < buffer.length ) ) ? + java.util.Arrays.copyOfRange( buffer, start, to ) : buffer; + } + + + public static boolean equals( char[] chars1, char[] chars2 ) { + if (chars1==null && chars2 == null) { + return true; + } + + if (chars1==null || chars2 == null) { + return false; + } + + if (chars1.length != chars2.length) { + return false; + } + + for (int index = 0; index < chars1.length; index++) { + if (chars1[index]!=chars2[index]) return false; + } + + return true; + } + + public static boolean equalsNoNullCheck( char[] chars1, char[] chars2 ) { + + if (chars1.length != chars2.length) { + return false; + } + + for (int index = 0; index < chars1.length; index++) { + if (chars1[index]!=chars2[index]) return false; + } + + return true; + } + + + + public static char[] add( char[]... strings ) { + int length = 0; + for ( char[] str : strings ) { + if ( str == null ) { + continue; + } + length += str.length; + } + CharBuf builder = CharBuf.createExact( length ); + for ( char[] str : strings ) { + if ( str == null ) { + continue; + } + builder.add( str ); + } + return builder.toCharArray (); + } + + public static char[][] splitLines(char[] chars) { + return CharScanner.splitLines(chars); + } + + public static char[][] splitComma(char[] chars) { + return CharScanner.splitComma(chars); + + } + + public static void equalsOrDie(char[] ac, char[] bc) { + char a = 0; + char b = 0; + + int indexOfDiff = -1; + int indexOfLine = 0; + + for (int index = 0; index < ac.length && index < bc.length; index++) { + a = ac[index]; + b = bc[index]; + + if (a == '\n' || b == '\n') { + indexOfLine++; + } + if (a!=b) { + indexOfDiff = index; + break; + } + } + + + if (ac.length!=bc.length) { + indexOfDiff = ac.length < bc.length ? ac.length : bc.length; + } + + if (indexOfDiff!=-1 ) { + CharBuf charBuf = CharBuf.create(ac.length + bc.length + 128); + charBuf.add("Strings are different. Problem at line ").add(indexOfLine).addLine("."); + charBuf.add("String A length = ").add(ac.length).addLine() + .add("").add(ac).add("").addLine().addLine("--- end a ---"); + charBuf.add("String B length = ").add(bc.length).addLine() + .add("").add(bc).add("").addLine().addLine("--- end b ---"); + + + char [] ac1 = null; + try { + ac1 = sliceOf(ac, indexOfDiff - 20, (ac.length - indexOfDiff) > 40 ? indexOfDiff + 10: ac.length+1 ); + } catch (Exception ex) { + ac1 = ac; + } + + + char [] bc1 = null; + try { + bc1 = sliceOf(bc, indexOfDiff - 20, (bc.length - indexOfDiff) > 40 ? indexOfDiff + 10: bc.length+1 ); + } catch (Exception ex) { + ac1 = bc; + } + + + CharBuf charBufA = CharBuf.create(ac1.length+20); + CharBuf charBufB = CharBuf.create(bc1.length+20); + + boolean found = false; + indexOfDiff = 0; + for (int index = 0; index < ac1.length || index < bc1.length; index++) { + + if (index < ac1.length) { + a = ac1[index]; + + charDescription(a, charBufA); + } + if (index < bc1.length) { + b = bc1[index]; + + charDescription(b, charBufB); + } + + if (a!=b && !found) { + found = true; + indexOfDiff = charBufA.len(); + } + + + } + + charBuf.puts(multiply('-', 10), "area of concern, line=", indexOfLine, multiply('-', 10)); + charBuf.addLine(charBufA); + charBuf.multiply('-', indexOfDiff).addLine("^"); + charBuf.addLine(charBufB); + charBuf.multiply('-', indexOfDiff).addLine("^"); + + + puts (charBuf); + die(charBuf); + + } + + + + + } + + private static void charDescription(char a, CharBuf charBufA) { + if (a == '\n') { + charBufA.add(" "); + } else if (a == '\r') { + charBufA.add(" "); + } else if (a == '\t') { + charBufA.add(" "); + } else { + charBufA.add(a); + } + } + + + public static char [] multiply (char c, int len) { + char [] out = new char[len]; + for (int index =0; index < len; index++) { + out[index] = c; + } + return out; + } + + public static boolean insideOf(char[] startsWith, char[] chars, char[] endsWith) { + + if (startsWith.length + endsWith.length > chars.length) { + return false; + } + + + + int index=0; + + if (startsWith.length > 0 ) { + if ( !(startsWith[startsWith.length-1] == chars[startsWith.length-1]) ) { + return false; + } + if ((startsWith[index] == chars[index]) ) { + index ++; + } else { + return false; + } + } + + + int endIndex=chars.length-1; + + + if (endsWith.length > 0) { + + if ( endsWith[startsWith.length-1] == chars[endIndex] ) { + endIndex--; + } else { + return false; + } + + } + + + + for (; index 0; endIndex--, i--) { + if (chars[endIndex] != endsWith[i]) { + return false; + } + } + + return true; + } + + public static boolean isEmpty(char[] messageBodyChars) { + return messageBodyChars==null || messageBodyChars.length==0; + } +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/primitive/Dbl.java b/datastructures-json-boon/src/main/java/org/boon/primitive/Dbl.java new file mode 100644 index 0000000..4da9156 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/primitive/Dbl.java @@ -0,0 +1,1182 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.primitive; + +import org.boon.Exceptions; +import org.boon.Universal; +import org.boon.core.reflection.Invoker; + +import java.lang.invoke.ConstantCallSite; +import java.lang.invoke.MethodHandle; +import java.lang.reflect.Method; +import java.util.Arrays; + +import static org.boon.Exceptions.die; +import static org.boon.Exceptions.handle; + + +public class Dbl { + + + public static double[] grow( double[] array, final int size ) { + Exceptions.requireNonNull( array ); + + double[] newArray = new double[ array.length + size ]; + System.arraycopy( array, 0, newArray, 0, array.length ); + return newArray; + } + + + public static double[] grow( double[] array ) { + Exceptions.requireNonNull( array ); + + double[] newArray = new double[ array.length * 2 ]; + System.arraycopy( array, 0, newArray, 0, array.length ); + return newArray; + } + + + public static double[] shrink( double[] array, int size ) { + Exceptions.requireNonNull( array ); + + double[] newArray = new double[ array.length - size ]; + + System.arraycopy( array, 0, newArray, 0, array.length - size ); + return newArray; + } + + + public static double[] compact( double[] array ) { + Exceptions.requireNonNull( array ); + + int nullCount = 0; + for ( double ch : array ) { + + if ( ch == '\0' ) { + nullCount++; + } + } + double[] newArray = new double[ array.length - nullCount ]; + + int j = 0; + for ( double ch : array ) { + + if ( ch == '\0' ) { + continue; + } + + newArray[ j ] = ch; + j++; + } + return newArray; + } + + + /** + * Creates an array of bytes + * + * @param size size of the array you want to make + * @return + */ + public static double[] arrayOfDouble( final int size ) { + return new double[ size ]; + } + + /** + * @param array + * @return + */ + @Universal + public static double[] array( final double... array ) { + Exceptions.requireNonNull( array ); + return array; + } + + + @Universal + public static int len( double[] array ) { + return array.length; + } + + + @Universal + public static double idx( final double[] array, final int index ) { + final int i = calculateIndex( array, index ); + + return array[ i ]; + } + + + @Universal + public static void idx( final double[] array, int index, double value ) { + final int i = calculateIndex( array, index ); + + array[ i ] = value; + } + + @Universal + public static double[] sliceOf( double[] array, int startIndex, int endIndex ) { + return slc(array, startIndex, endIndex); + } + + @Universal + public static double[] slc( double[] array, int startIndex, int endIndex ) { + + final int start = calculateIndex( array, startIndex ); + final int end = calculateEndIndex(array, endIndex); + final int newLength = end - start; + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, end index %d, length %d", + startIndex, endIndex, array.length ) + ); + } + + double[] newArray = new double[ newLength ]; + System.arraycopy( array, start, newArray, 0, newLength ); + return newArray; + } + + @Universal + public static double[] slc( double[] array, int startIndex ) { + + final int start = calculateIndex( array, startIndex ); + final int newLength = array.length - start; + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, length %d", + startIndex, array.length ) + ); + } + + double[] newArray = new double[ newLength ]; + System.arraycopy( array, start, newArray, 0, newLength ); + return newArray; + } + + + @Universal + public static double[] endSliceOf( final double[] array, final int endIndex ) { + return slcEnd(array, endIndex); + } + + + @Universal + public static double[] slcEnd( final double[] array, final int endIndex ) { + + final int end = calculateEndIndex(array, endIndex); + final int newLength = end; // + (endIndex < 0 ? 1 : 0); + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, length %d", + endIndex, array.length ) + ); + } + + double[] newArray = new double[ newLength ]; + System.arraycopy( array, 0, newArray, 0, newLength ); + return newArray; + } + + @Universal + public static boolean in( double value, double[] array ) { + for ( double currentValue : array ) { + if ( currentValue == value ) { + return true; + } + } + return false; + } + + + @Universal + public static double[] copy( double[] array ) { + double[] newArray = new double[ array.length ]; + System.arraycopy( array, 0, newArray, 0, array.length ); + return newArray; + } + + + @Universal + public static double[] add( double[] array, double v ) { + double[] newArray = new double[ array.length + 1 ]; + System.arraycopy( array, 0, newArray, 0, array.length ); + newArray[ array.length ] = v; + return newArray; + } + + @Universal + public static double[] add( double[] array, double[] array2 ) { + double[] newArray = new double[ array.length + array2.length ]; + System.arraycopy( array, 0, newArray, 0, array.length ); + System.arraycopy( array2, 0, newArray, array.length, array2.length ); + return newArray; + } + + + @Universal + public static double[] insert( final double[] array, final int idx, final double v ) { + Exceptions.requireNonNull( array ); + + if ( idx >= array.length ) { + return add( array, v ); + } + + final int index = calculateIndex( array, idx ); + + //Object newArray = Array.newInstance(array.getClass().getComponentType(), array.length+1); + double[] newArray = new double[ array.length + 1 ]; + + if ( index != 0 ) { + /* Copy up to the length in the array before the index. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, 0, newArray, 0, index ); + } + + + boolean lastIndex = index == array.length - 1; + int remainingIndex = array.length - index; + + if ( lastIndex ) { + /* Copy the area after the insert. Make sure we don't write over the end. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, index, newArray, index + 1, remainingIndex ); + + } else { + /* Copy the area after the insert. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, index, newArray, index + 1, remainingIndex ); + + } + + newArray[ index ] = v; + return newArray; + } + + + @Universal + public static double[] insert( final double[] array, final int fromIndex, final double[] values ) { + if ( fromIndex >= array.length ) { + return add( array, values ); + } + + final int index = calculateIndex( array, fromIndex ); + + //Object newArray = Array.newInstance(array.getClass().getComponentType(), array.length+1); + double[] newArray = new double[ array.length + values.length ]; + + if ( index != 0 ) { + /* Copy up to the length in the array before the index. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, 0, newArray, 0, index ); + } + + + boolean lastIndex = index == array.length - 1; + + int toIndex = index + values.length; + int remainingIndex = newArray.length - toIndex; + + if ( lastIndex ) { + /* Copy the area after the insert. Make sure we don't write over the end. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, index, newArray, index + values.length, remainingIndex ); + + } else { + /* Copy the area after the insert. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, index, newArray, index + values.length, remainingIndex ); + + } + + for ( int i = index, j = 0; i < toIndex; i++, j++ ) { + newArray[ i ] = values[ j ]; + } + return newArray; + } + + + /* End universal methods. */ + private static int calculateIndex( double[] array, int originalIndex ) { + final int length = array.length; + + int index = originalIndex; + + /* Adjust for reading from the right as in + -1 reads the 4th element if the length is 5 + */ + if ( index < 0 ) { + index = length + index; + } + + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + if ( index < 0 ) { + index = 0; + } + if ( index >= length ) { + index = length - 1; + } + return index; + } + + + /* End universal methods. */ + private static int calculateEndIndex( double[] array, int originalIndex ) { + final int length = array.length; + + Exceptions.requireNonNull( array, "array cannot be null" ); + + + int index = originalIndex; + + /* Adjust for reading from the right as in + -1 reads the 4th element if the length is 5 + */ + if ( index < 0 ) { + index = length + index; + } + + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + if ( index < 0 ) { + index = 0; + } + if ( index > length ) { + index = length; + } + return index; + } + + + /** + * Checks to see if two arrays are equals + * @param expected expected array + * @param got got array + * @return true if equal or throws exception if not. + */ + public static boolean equalsOrDie(double[] expected, double[] got) { + + if (expected.length != got.length) { + die("Lengths did not match, expected length", expected.length, + "but got", got.length); + } + + for (int index=0; index< expected.length; index++) { + if (expected[index]!= got[index]) { + die("value at index did not match index", index , "expected value", + expected[index], + "but got", got[index]); + + } + } + return true; + } + + + /** + * Checks to see if two arrays are equals + * @param expected expected array + * @param got got array + * @return true if equal or false if not. + */ + public static boolean equals(double[] expected, double[] got) { + + if (expected.length != got.length) { + return false; + } + + for (int index=0; index< expected.length; index++) { + if (expected[index]!= got[index]) { + return false; + } + } + return true; + } + + + /** Public interface for a very fast reduce by. */ + public static interface ReduceBy { + double reduce(double sum, double value); + } + + /** + * A very fast reduce by. + * If performance is your thing, this seems to be as fast a plain for loop when benchmarking with JMH. + * + * @param array array of items to reduce by + * @param reduceBy reduceBy interface + * @return the final value + */ + public static double reduceBy( final double[] array, ReduceBy reduceBy ) { + + + double sum = 0; + for ( double v : array ) { + sum = reduceBy.reduce(sum, v); + } + return sum; + } + + /** + * + * @param array array of items to reduce by + * @param start where to start in the array + * @param length where to end in the array + * @param reduceBy the function to do the reduce by + * @return the reduction + */ + public static double reduceBy( final double[] array, final int start, final int length, ReduceBy reduceBy ) { + + + double sum = 0; + + for (int index = start; index < length; index++) { + double v = array[index]; + sum = reduceBy.reduce(sum, v); + } + return sum; + } + + + /** + * + * @param array array of items to reduce by + * @param length where to end in the array + * @param reduceBy the function to do the reduce by + * @return the reduction + */ + public static double reduceBy( final double[] array, final int length, ReduceBy reduceBy ) { + + + double sum = 0; + + for (int index = 0; index < length; index++) { + double v = array[index]; + sum = reduceBy.reduce(sum, v); + } + return sum; + } + + + + + /** + * Reduce by functional support for int arrays. + * @param array array of items to reduce by + * @param object object that contains the reduce by function + * @param the type of object + * @return the final reduction + */ + public static double reduceBy( final double[] array, T object ) { + if (object.getClass().isAnonymousClass()) { + return reduceByR(array, object ); + } + + + try { + ConstantCallSite callSite = Invoker.invokeReducerLongIntReturnLongMethodHandle(object); + MethodHandle methodHandle = callSite.dynamicInvoker(); + try { + + double sum = 0; + for ( double v : array ) { + sum = (double) methodHandle.invokeExact( sum, v ); + + } + return sum; + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + } catch (Exception ex) { + return reduceByR(array, object); + } + + } + + + + + + /** + * Reduce by functional support for int arrays. + * @param array array of items to reduce by + * @param object object that contains the reduce by function + * @param the type of object + * @return the final reduction + */ + public static double reduceBy( final double[] array, T object, String methodName ) { + + if (object.getClass().isAnonymousClass()) { + return reduceByR(array, object, methodName); + } + + try { + ConstantCallSite callSite = Invoker.invokeReducerLongIntReturnLongMethodHandle(object, methodName); + MethodHandle methodHandle = callSite.dynamicInvoker(); + try { + + double sum = 0; + for ( double v : array ) { + sum = (double) methodHandle.invokeExact( sum, v ); + + } + return sum; + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + } catch (Exception ex) { + return reduceByR(array, object, methodName); + } + + + } + + + /** + * Fallback to reflection if the call-site will not work or did not work + * @param array array of items to reduce by + * @param object function object + * @param type of function object. + * @return + */ + private static double reduceByR( final double[] array, T object ) { + try { + + Method method = Invoker.invokeReducerLongIntReturnLongMethod(object); + + + double sum = 0; + for ( double v : array ) { + sum = (double) method.invoke(object, sum, v); + + } + return sum; + + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + + } + + + /** + * Reflection based reduce by. + * @param array array of items to reduce by + * @param object function + * @param methodName name of method + * @param type of function + * @return reduction + */ + private static double reduceByR( final double[] array, T object, String methodName ) { + try { + + Method method = Invoker.invokeReducerLongIntReturnLongMethod(object, methodName); + + + double sum = 0; + for ( double v : array ) { + sum = (double) method.invoke(object, sum, v); + + } + return sum; + + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + + } + + + + /** + * Reflection based reduce by. + * @param array array of items to reduce by + * @param object function + * @param methodName name of method + * @param type of function + * @return reduction + */ + private static double reduceByR( final double[] array, int length, T object, String methodName ) { + try { + + Method method = Invoker.invokeReducerLongIntReturnLongMethod(object, methodName); + + + double sum = 0; + for (int index=0; index< length; index++) { + double v = array[index]; + sum = (double) method.invoke(object, sum, v); + + } + return sum; + + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + + } + + + /** + * Reflection based reduce by. + * @param array array of items to reduce by + * @param object function + * @param type of function + * @return reduction + */ + private static double reduceByR( final double[] array, int length, T object ) { + try { + + Method method = Invoker.invokeReducerLongIntReturnLongMethod(object); + + + double sum = 0; + for (int index=0; index< length; index++) { + double v = array[index]; + sum = (double) method.invoke(object, sum, v); + + } + return sum; + + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + + } + + /** + * Reduce By + * @param array array of items to reduce by + * @param length where to end in the array + * @param object function + * @return reduction + */ + public static double reduceBy( final double[] array, int length, + Object object ) { + + + if (object.getClass().isAnonymousClass()) { + return reduceByR(array, length, object ); + } + + try { + ConstantCallSite callSite = Invoker.invokeReducerLongIntReturnLongMethodHandle(object ); + MethodHandle methodHandle = callSite.dynamicInvoker(); + try { + + double sum = 0; + for (int index=0; index < length; index++) { + double v = array[index]; + sum = (double) methodHandle.invokeExact( sum, v ); + + } + return sum; + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + } catch (Exception ex) { + return reduceByR(array, length, object ); + } + + + } + + + + /** + * Reduce By + * @param array array of items to reduce by + * @param length where to end in the array + * @param function function + * @param function functionName + * @return reduction + */ + public static double reduceBy( final double[] array, int length, + Object function, String functionName ) { + + + if (function.getClass().isAnonymousClass()) { + return reduceByR(array, length, function, functionName ); + } + + try { + ConstantCallSite callSite = Invoker.invokeReducerLongIntReturnLongMethodHandle(function, functionName ); + MethodHandle methodHandle = callSite.dynamicInvoker(); + try { + + double sum = 0; + for (int index=0; index < length; index++) { + double v = array[index]; + sum = (double) methodHandle.invokeExact( sum, v ); + + } + return sum; + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + } catch (Exception ex) { + return reduceByR(array, length, function, functionName ); + } + + + } + + + /** + * Reduce By + * @param array array of items to reduce by + * @param length where to end in the array + * @param object function + * @return reduction + */ + public static double reduceBy( final double[] array, int start, int length, + Object object ) { + + + if (object.getClass().isAnonymousClass()) { + return reduceByR(array, object ); + } + + try { + ConstantCallSite callSite = Invoker.invokeReducerLongIntReturnLongMethodHandle(object ); + MethodHandle methodHandle = callSite.dynamicInvoker(); + try { + + double sum = 0; + for (int index=start; index < length; index++) { + double v = array[index]; + sum = (double) methodHandle.invokeExact( sum, v ); + + } + return sum; + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + } catch (Exception ex) { + return reduceByR(array, object ); + } + + } + + /** + * Checks to see if two values are the same + * @param expected expected value + * @param got got value + * @return true if equal throws exception if not equal + */ + public static boolean equalsOrDie(double expected, double got) { + if (expected != got) { + return die(Boolean.class, "Expected was", expected, "but we got ", got); + } + return true; + } + + + /** + * Compares two values + * @param expected expected value + * @param got got value + * @return true or false + */ + public static boolean equals(double expected, double got) { + + return expected == got; + } + + + + /** + * Sum + * @param values values in int + * @return sum + */ + public static double sum( double[] values ) { + return sum( values, 0, values.length); + } + + + /** + * Sum + * Provides overflow protection. + * @param values values in int + * @return sum + */ + public static double sum( double[] values, int length ) { + return sum( values, 0, length); + } + + /** + * Sum + * Provides overflow protection. + * @param values values in int + * @return sum + */ + public static double sum( double[] values, int start, int length ) { + double sum = 0; + for (int index = start; index < length; index++ ) { + sum+= values[index]; + } + + if (sum < Float.MIN_VALUE) { + die ("overflow the sum is too small", sum); + } + + + if (sum > Float.MAX_VALUE) { + die ("overflow the sum is too big", sum); + } + + return (double) sum; + + + } + + + + + + + /** + * Max + * @param values values in int + * @return max + */ + public static double max( double[] values, final int start, final int length ) { + double max = Float.MIN_VALUE; + for (int index = start; index < length; index++ ) { + if ( values[index] > max ) { + max = values[index]; + } + } + + return max; + } + + + /** + * max + * @param values values in int + * @return max + */ + public static double max( double[] values ) { + return max(values, 0, values.length); + } + + + /** + * max + * @param values values in int + * @return max + */ + public static double max( double[] values, int length ) { + return max(values, 0, length); + } + + + /** + * Min + * @param values values in int + * @return min + */ + public static double min( double[] values, final int start, final int length ) { + double min = Float.MAX_VALUE; + for (int index = start; index < length; index++ ) { + if (values[index] < min) min = values[index]; + } + return min; + } + + + /** + * Min + * @param values values in int + * @return min + */ + public static double min( double[] values ) { + return min(values, 0, values.length); + } + + + /** + * Min + * @param values values in int + * @return min + */ + public static double min( double[] values, int length ) { + return min(values, 0, length); + } + + + + + /** + * Average + * @param values values + * @return average + */ + private static double mean( double[] values, final int start, final int length ) { + double mean = (sum(values, start, length))/ ((double) length); + return mean; + } + + + + /** + * Average + * @param values values + * @return average + */ + public static double mean( double[] values, final int length ) { + return mean(values, 0, length); + } + + + + + /** + * Average + * @param values values in int + * @return average + */ + public static double mean( double[] values ) { + + return mean(values, 0, values.length); + } + + + + /** + * Calculate Variance. + * + * @param values values + * @param start start + * @param length length + * @return variance + */ + public static double variance(double[] values, final int start, final int length) { + return varianceDouble(values, start, length); + } + + + + + + /** + * Calculate Variance. + * + * @param values values + * @param start start + * @param length length + * @return variance + */ + public static double varianceDouble(double[] values, final int start, final int length) { + double mean = mean(values, start, length); + double temp = 0; + for(int index = start; index < length; index++) { + double a = values[index]; + temp += (mean-a)*(mean-a); + } + return temp / length; + } + + + /** + * Calculate Variance. + * + * @param values values + * @param length length + * @return variance + */ + public static double variance(double[] values, final int length) { + return varianceDouble(values, 0, length); + } + + + /** + * Calculate Variance. + * + * @param values values + * @return variance + */ + public static double variance(double[] values) { + return varianceDouble(values, 0, values.length); + } + + + /** + * Calculate standard deviation. + * + * @param values values + * @param start start + * @param length length + * @return standard deviation + */ + public static double standardDeviation(double[] values, final int start, final int length) { + double variance = varianceDouble(values, start, length); + return Math.sqrt(variance); + } + + + /** + * Calculate standard deviation. + * + * @param values values + * @param length length + * @return standard deviation + */ + public static double standardDeviation(double[] values, final int length) { + double variance = varianceDouble(values, 0, length); + return Math.sqrt(variance); + } + + + /** + * Calculate standard deviation. + * + * @param values values + * @return standard deviation + */ + public static double standardDeviation(double[] values) { + double variance = varianceDouble(values, 0, values.length); + return Math.sqrt(variance); + } + + + /** + * Calculate Median + * + * @param start start + * @param values values + * @param length length + * @return median + */ + public static double median(double[] values, final int start, final int length) { + double[] sorted = new double[length]; + System.arraycopy(values, start, sorted, 0, length); + Arrays.sort(sorted); + + if (length % 2 == 0) { + int middle = sorted.length / 2; + double median = (sorted[middle-1] + sorted[middle]) / 2.0; + return median; + } else { + return sorted[sorted.length / 2]; + } + } + + + /** + * Calculate Median + * @param values values + * @param length length + * @return median + */ + public static double median(double[] values, final int length) { + return median(values, 0, length); + } + + + /** + * Calculate Median + * @param values values + * @return median + */ + public static double median(double[] values) { + return median(values, 0, values.length); + } + + + + /** + * Checks to see if two arrays are equals + * @param expected expected array + * @param got got array + * @return true if equal or false if not. + */ + public static boolean equals(int start, int end, double[] expected, double[] got) { + + if (expected.length != got.length) { + return false; + } + + for (int index=start; index< end; index++) { + if (expected[index]!= got[index]) { + return false; + } + } + return true; + } + + public static int hashCode(double array[]) { + + if (array == null) { + return 0; + } + + int result = 1; + for (double element : array) { + long bits = Double.doubleToLongBits(element); + result = 31 * result + (int)(bits ^ (bits >>> 32)); + } + return result; + } + + public static int hashCode(int start, int end, double array[]) { + if (array == null) + return 0; + + int result = 1; + + for (int index=start; index< end; index++) { + + long bits = Double.doubleToLongBits(array[index]); + result = 31 * result + (int)(bits ^ (bits >>> 32)); + } + + return result; + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/primitive/Flt.java b/datastructures-json-boon/src/main/java/org/boon/primitive/Flt.java new file mode 100644 index 0000000..e4b142f --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/primitive/Flt.java @@ -0,0 +1,1253 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.primitive; + +import org.boon.Exceptions; +import org.boon.Universal; +import org.boon.core.reflection.Invoker; + +import java.lang.invoke.ConstantCallSite; +import java.lang.invoke.MethodHandle; +import java.lang.reflect.Method; +import java.util.Arrays; + +import static org.boon.Exceptions.die; +import static org.boon.Exceptions.handle; + + +public class Flt { + + + public static float[] grow( float[] array, final int size ) { + Exceptions.requireNonNull( array ); + + float[] newArray = new float[ array.length + size ]; + System.arraycopy( array, 0, newArray, 0, array.length ); + return newArray; + } + + + public static float[] grow( float[] array ) { + Exceptions.requireNonNull( array ); + + float[] newArray = new float[ array.length * 2 ]; + System.arraycopy( array, 0, newArray, 0, array.length ); + return newArray; + } + + + public static float[] shrink( float[] array, int size ) { + Exceptions.requireNonNull( array ); + + float[] newArray = new float[ array.length - size ]; + + System.arraycopy( array, 0, newArray, 0, array.length - size ); + return newArray; + } + + + public static float[] compact( float[] array ) { + Exceptions.requireNonNull( array ); + + int nullCount = 0; + for ( float ch : array ) { + + if ( ch == '\0' ) { + nullCount++; + } + } + float[] newArray = new float[ array.length - nullCount ]; + + int j = 0; + for ( float ch : array ) { + + if ( ch == '\0' ) { + continue; + } + + newArray[ j ] = ch; + j++; + } + return newArray; + } + + + /** + * Creates an array of bytes + * + * @param size size of the array you want to make + * @return + */ + public static float[] arrayOfFloat( final int size ) { + return new float[ size ]; + } + + /** + * @param array + * @return + */ + @Universal + public static float[] array( final float... array ) { + Exceptions.requireNonNull( array ); + return array; + } + + + + @Universal + public static int lengthOf( float[] array ) { + return len(array); + } + + @Universal + public static int len( float[] array ) { + return array.length; + } + + + @Universal + public static float atIndex( final float[] array, final int index ) { + return idx(array, index); + } + + @Universal + public static float idx( final float[] array, final int index ) { + final int i = calculateIndex( array, index ); + + return array[ i ]; + } + + + + @Universal + public static void atIndex( final float[] array, int index, float value ) { + idx (array, index, value); + } + + @Universal + public static void idx( final float[] array, int index, float value ) { + final int i = calculateIndex( array, index ); + + array[ i ] = value; + } + + @Universal + public static float[] sliceOf( float[] array, int startIndex, int endIndex ) { + + return slc(array, startIndex, endIndex); + } + + @Universal + public static float[] slc( float[] array, int startIndex, int endIndex ) { + + final int start = calculateIndex( array, startIndex ); + final int end = calculateEndIndex( array, endIndex ); + final int newLength = end - start; + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, end index %d, length %d", + startIndex, endIndex, array.length ) + ); + } + + float[] newArray = new float[ newLength ]; + System.arraycopy( array, start, newArray, 0, newLength ); + return newArray; + } + + + @Universal + public static float[] sliceOf( float[] array, int startIndex ) { + + return slc(array, startIndex); + } + + @Universal + public static float[] slc( float[] array, int startIndex ) { + + final int start = calculateIndex( array, startIndex ); + final int newLength = array.length - start; + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, length %d", + startIndex, array.length ) + ); + } + + float[] newArray = new float[ newLength ]; + System.arraycopy( array, start, newArray, 0, newLength ); + return newArray; + } + + + + @Universal + public static float[] endOfSlice( float[] array, int endIndex ) { + return slcEnd(array, endIndex); + } + + @Universal + public static float[] slcEnd( float[] array, int endIndex ) { + + final int end = calculateEndIndex( array, endIndex ); + final int newLength = end; // + (endIndex < 0 ? 1 : 0); + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, length %d", + endIndex, array.length ) + ); + } + + float[] newArray = new float[ newLength ]; + System.arraycopy( array, 0, newArray, 0, newLength ); + return newArray; + } + + @Universal + public static boolean in( float value, float[] array ) { + for ( float currentValue : array ) { + if ( currentValue == value ) { + return true; + } + } + return false; + } + + + @Universal + public static float[] copy( float[] array ) { + Exceptions.requireNonNull( array ); + float[] newArray = new float[ array.length ]; + System.arraycopy( array, 0, newArray, 0, array.length ); + return newArray; + } + + + @Universal + public static float[] add( float[] array, float v ) { + Exceptions.requireNonNull( array ); + float[] newArray = new float[ array.length + 1 ]; + System.arraycopy( array, 0, newArray, 0, array.length ); + newArray[ array.length ] = v; + return newArray; + } + + @Universal + public static float[] add( float[] array, float[] array2 ) { + Exceptions.requireNonNull( array ); + float[] newArray = new float[ array.length + array2.length ]; + System.arraycopy( array, 0, newArray, 0, array.length ); + System.arraycopy( array2, 0, newArray, array.length, array2.length ); + return newArray; + } + + + @Universal + public static float[] insert( final float[] array, final int idx, final float v ) { + + if ( idx >= array.length ) { + return add( array, v ); + } + + final int index = calculateIndex( array, idx ); + + //Object newArray = Array.newInstance(array.getClass().getComponentType(), array.length+1); + float[] newArray = new float[ array.length + 1 ]; + + if ( index != 0 ) { + /* Copy up to the length in the array before the index. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, 0, newArray, 0, index ); + } + + + boolean lastIndex = index == array.length - 1; + int remainingIndex = array.length - index; + + if ( lastIndex ) { + /* Copy the area after the insert. Make sure we don't write over the end. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, index, newArray, index + 1, remainingIndex ); + + } else { + /* Copy the area after the insert. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, index, newArray, index + 1, remainingIndex ); + + } + + newArray[ index ] = v; + return newArray; + } + + + @Universal + public static float[] insert( final float[] array, final int fromIndex, final float[] values ) { + Exceptions.requireNonNull( array ); + + if ( fromIndex >= array.length ) { + return add( array, values ); + } + + final int index = calculateIndex( array, fromIndex ); + + //Object newArray = Array.newInstance(array.getClass().getComponentType(), array.length+1); + float[] newArray = new float[ array.length + values.length ]; + + if ( index != 0 ) { + /* Copy up to the length in the array before the index. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, 0, newArray, 0, index ); + } + + + boolean lastIndex = index == array.length - 1; + + int toIndex = index + values.length; + int remainingIndex = newArray.length - toIndex; + + if ( lastIndex ) { + /* Copy the area after the insert. Make sure we don't write over the end. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, index, newArray, index + values.length, remainingIndex ); + + } else { + /* Copy the area after the insert. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, index, newArray, index + values.length, remainingIndex ); + + } + + for ( int i = index, j = 0; i < toIndex; i++, j++ ) { + newArray[ i ] = values[ j ]; + } + return newArray; + } + + + /* End universal methods. */ + private static int calculateIndex( float[] array, int originalIndex ) { + final int length = array.length; + + + + int index = originalIndex; + + /* Adjust for reading from the right as in + -1 reads the 4th element if the length is 5 + */ + if ( index < 0 ) { + index = length + index; + } + + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + if ( index < 0 ) { + index = 0; + } + if ( index >= length ) { + index = length - 1; + } + return index; + } + + + /* End universal methods. */ + private static int calculateEndIndex( float[] array, int originalIndex ) { + final int length = array.length; + + + + int index = originalIndex; + + /* Adjust for reading from the right as in + -1 reads the 4th element if the length is 5 + */ + if ( index < 0 ) { + index = length + index; + } + + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + if ( index < 0 ) { + index = 0; + } + if ( index > length ) { + index = length; + } + return index; + } + + + /** + * Checks to see if two arrays are equals + * @param expected expected array + * @param got got array + * @return true if equal or throws exception if not. + */ + public static boolean equalsOrDie(float[] expected, float[] got) { + + if (expected.length != got.length) { + die("Lengths did not match, expected length", expected.length, + "but got", got.length); + } + + for (int index=0; index< expected.length; index++) { + if (expected[index]!= got[index]) { + die("value at index did not match index", index , "expected value", + expected[index], + "but got", got[index]); + + } + } + return true; + } + + + /** + * Checks to see if two arrays are equals + * @param expected expected array + * @param got got array + * @return true if equal or false if not. + */ + public static boolean equals(float[] expected, float[] got) { + + if (expected.length != got.length) { + return false; + } + + for (int index=0; index< expected.length; index++) { + if (expected[index]!= got[index]) { + return false; + } + } + return true; + } + + + /** Public interface for a very fast reduce by. */ + public static interface ReduceBy { + double reduce(double sum, float value); + } + + /** + * A very fast reduce by. + * If performance is your thing, this seems to be as fast a plain for loop when benchmarking with JMH. + * + * @param array array of items to reduce by + * @param reduceBy reduceBy interface + * @return the final value + */ + public static double reduceBy( final float[] array, ReduceBy reduceBy ) { + + + double sum = 0; + for ( float v : array ) { + sum = reduceBy.reduce(sum, v); + } + return sum; + } + + /** + * + * @param array array of items to reduce by + * @param start where to start in the array + * @param length where to end in the array + * @param reduceBy the function to do the reduce by + * @return the reduction + */ + public static double reduceBy( final float[] array, final int start, final int length, ReduceBy reduceBy ) { + + + double sum = 0; + + for (int index = start; index < length; index++) { + float v = array[index]; + sum = reduceBy.reduce(sum, v); + } + return sum; + } + + + /** + * + * @param array array of items to reduce by + * @param length where to end in the array + * @param reduceBy the function to do the reduce by + * @return the reduction + */ + public static double reduceBy( final float[] array, final int length, ReduceBy reduceBy ) { + + + double sum = 0; + + for (int index = 0; index < length; index++) { + float v = array[index]; + sum = reduceBy.reduce(sum, v); + } + return sum; + } + + + + + /** + * Reduce by functional support for int arrays. + * @param array array of items to reduce by + * @param object object that contains the reduce by function + * @param the type of object + * @return the final reduction + */ + public static double reduceBy( final float[] array, T object ) { + if (object.getClass().isAnonymousClass()) { + return reduceByR(array, object ); + } + + + try { + ConstantCallSite callSite = Invoker.invokeReducerLongIntReturnLongMethodHandle(object); + MethodHandle methodHandle = callSite.dynamicInvoker(); + try { + + double sum = 0; + for ( float v : array ) { + sum = (double) methodHandle.invokeExact( sum, v ); + + } + return sum; + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + } catch (Exception ex) { + return reduceByR(array, object); + } + + } + + + + + + /** + * Reduce by functional support for int arrays. + * @param array array of items to reduce by + * @param object object that contains the reduce by function + * @param the type of object + * @return the final reduction + */ + public static double reduceBy( final float[] array, T object, String methodName ) { + + if (object.getClass().isAnonymousClass()) { + return reduceByR(array, object, methodName); + } + + try { + ConstantCallSite callSite = Invoker.invokeReducerLongIntReturnLongMethodHandle(object, methodName); + MethodHandle methodHandle = callSite.dynamicInvoker(); + try { + + double sum = 0; + for ( float v : array ) { + sum = (double) methodHandle.invokeExact( sum, v ); + + } + return sum; + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + } catch (Exception ex) { + return reduceByR(array, object, methodName); + } + + + } + + + /** + * Fallback to reflection if the call-site will not work or did not work + * @param array array of items to reduce by + * @param object function object + * @param type of function object. + * @return + */ + private static double reduceByR( final float[] array, T object ) { + try { + + Method method = Invoker.invokeReducerLongIntReturnLongMethod(object); + + + double sum = 0; + for ( float v : array ) { + sum = (double) method.invoke(object, sum, v); + + } + return sum; + + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + + } + + + /** + * Reflection based reduce by. + * @param array array of items to reduce by + * @param object function + * @param methodName name of method + * @param type of function + * @return reduction + */ + private static double reduceByR( final float[] array, T object, String methodName ) { + try { + + Method method = Invoker.invokeReducerLongIntReturnLongMethod(object, methodName); + + + double sum = 0; + for ( float v : array ) { + sum = (double) method.invoke(object, sum, v); + + } + return sum; + + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + + } + + + + /** + * Reflection based reduce by. + * @param array array of items to reduce by + * @param object function + * @param methodName name of method + * @param type of function + * @return reduction + */ + private static double reduceByR( final float[] array, int length, T object, String methodName ) { + try { + + Method method = Invoker.invokeReducerLongIntReturnLongMethod(object, methodName); + + + double sum = 0; + for (int index=0; index< length; index++) { + float v = array[index]; + sum = (double) method.invoke(object, sum, v); + + } + return sum; + + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + + } + + + /** + * Reflection based reduce by. + * @param array array of items to reduce by + * @param object function + * @param type of function + * @return reduction + */ + private static double reduceByR( final float[] array, int length, T object ) { + try { + + Method method = Invoker.invokeReducerLongIntReturnLongMethod(object); + + + double sum = 0; + for (int index=0; index< length; index++) { + float v = array[index]; + sum = (double) method.invoke(object, sum, v); + + } + return sum; + + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + + } + + /** + * Reduce By + * @param array array of items to reduce by + * @param length where to end in the array + * @param object function + * @return reduction + */ + public static double reduceBy( final float[] array, int length, + Object object ) { + + + if (object.getClass().isAnonymousClass()) { + return reduceByR(array, length, object ); + } + + try { + ConstantCallSite callSite = Invoker.invokeReducerLongIntReturnLongMethodHandle(object ); + MethodHandle methodHandle = callSite.dynamicInvoker(); + try { + + double sum = 0; + for (int index=0; index < length; index++) { + float v = array[index]; + sum = (double) methodHandle.invokeExact( sum, v ); + + } + return sum; + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + } catch (Exception ex) { + return reduceByR(array, length, object ); + } + + + } + + + + /** + * Reduce By + * @param array array of items to reduce by + * @param length where to end in the array + * @param function function + * @param function functionName + * @return reduction + */ + public static double reduceBy( final float[] array, int length, + Object function, String functionName ) { + + + if (function.getClass().isAnonymousClass()) { + return reduceByR(array, length, function, functionName ); + } + + try { + ConstantCallSite callSite = Invoker.invokeReducerLongIntReturnLongMethodHandle(function, functionName ); + MethodHandle methodHandle = callSite.dynamicInvoker(); + try { + + double sum = 0; + for (int index=0; index < length; index++) { + float v = array[index]; + sum = (double) methodHandle.invokeExact( sum, v ); + + } + return sum; + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + } catch (Exception ex) { + return reduceByR(array, length, function, functionName ); + } + + + } + + + /** + * Reduce By + * @param array array of items to reduce by + * @param length where to end in the array + * @param object function + * @return reduction + */ + public static double reduceBy( final float[] array, int start, int length, + Object object ) { + + + if (object.getClass().isAnonymousClass()) { + return reduceByR(array, object ); + } + + try { + ConstantCallSite callSite = Invoker.invokeReducerLongIntReturnLongMethodHandle(object ); + MethodHandle methodHandle = callSite.dynamicInvoker(); + try { + + double sum = 0; + for (int index=start; index < length; index++) { + float v = array[index]; + sum = (double) methodHandle.invokeExact( sum, v ); + + } + return sum; + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + } catch (Exception ex) { + return reduceByR(array, object ); + } + + } + + /** + * Checks to see if two values are the same + * @param expected expected value + * @param got got value + * @return true if equal throws exception if not equal + */ + public static boolean equalsOrDie(float expected, float got) { + if (expected != got) { + return die(Boolean.class, "Expected was", expected, "but we got ", got); + } + return true; + } + + + /** + * Compares two values + * @param expected expected value + * @param got got value + * @return true or false + */ + public static boolean equals(float expected, float got) { + + return expected == got; + } + + + + /** + * Sum + * Provides overflow protection. + * @param values values in int + * @return sum + */ + public static double sum( float[] values ) { + return sum( values, 0, values.length); + } + + + /** + * Sum + * Provides overflow protection. + * @param values values in int + * @return sum + */ + public static float sum( float[] values, int length ) { + return sum( values, 0, length); + } + + /** + * Sum + * Provides overflow protection. + * @param values values in int + * @return sum + */ + public static float sum( float[] values, int start, int length ) { + double sum = 0; + for (int index = start; index < length; index++ ) { + sum+= values[index]; + } + + if (sum < Float.MIN_VALUE) { + die ("overflow the sum is too small", sum); + } + + + if (sum > Float.MAX_VALUE) { + die ("overflow the sum is too big", sum); + } + + return (float) sum; + + + } + + + + /** + * Sum + * Provides overflow protection. + * @param values values in int + * @return sum + */ + public static double bigSum( float[] values ) { + return bigSum(values, 0, values.length); + } + + + /** + * Sum + * Provides overflow protection. + * @param values values in int + * @return sum + */ + public static double bigSum( float[] values, int length ) { + return bigSum(values, 0, length); + } + + /** + * Big Sum + * @param values values in int + * @return sum + */ + public static double bigSum( float[] values, int start, int length ) { + double sum = 0; + for (int index = start; index < length; index++ ) { + sum+= values[index]; + } + + return sum; + + + } + + + + /** + * Max + * @param values values in int + * @return max + */ + public static float max( float[] values, final int start, final int length ) { + float max = Float.MIN_VALUE; + for (int index = start; index < length; index++ ) { + if ( values[index] > max ) { + max = values[index]; + } + } + + return max; + } + + + /** + * max + * @param values values in int + * @return max + */ + public static float max( float[] values ) { + return max(values, 0, values.length); + } + + + /** + * max + * @param values values in int + * @return max + */ + public static float max( float[] values, int length ) { + return max(values, 0, length); + } + + + /** + * Min + * @param values values in int + * @return min + */ + public static float min( float[] values, final int start, final int length ) { + float min = Float.MAX_VALUE; + for (int index = start; index < length; index++ ) { + if (values[index] < min) min = values[index]; + } + return min; + } + + + /** + * Min + * @param values values in int + * @return min + */ + public static float min( float[] values ) { + return min(values, 0, values.length); + } + + + /** + * Min + * @param values values in int + * @return min + */ + public static float min( float[] values, int length ) { + return min(values, 0, length); + } + + + + + /** + * Average + * @param values values in int + * @return average + */ + public static float mean( float[] values, final int start, final int length ) { + return (float) meanDouble(values, start, length); + } + + + + + /** + * Average + * @param values values in int + * @return average + */ + public static float mean( float[] values, final int length ) { + return (float) meanDouble(values, 0, length); + } + + + /** + * Average + * @param values values in int + * @return average + */ + public static float mean( float[] values ) { + + return (float) meanDouble(values, 0, values.length); + } + + + + /** + * Calculate Variance. + * + * @param values values + * @param start start + * @param length length + * @return variance + */ + public static float variance(float[] values, final int start, final int length) { + return (float) varianceDouble(values, start, length); + } + + + private static double meanDouble( float[] values, final int start, final int length ) { + double mean = ((double)bigSum(values, start, length))/ ((double) length); + return mean; + } + + + + /** + * Calculate Variance. + * + * @param values values + * @param start start + * @param length length + * @return variance + */ + public static double varianceDouble(float[] values, final int start, final int length) { + double mean = meanDouble(values, start, length); + double temp = 0; + for(int index = start; index < length; index++) { + double a = values[index]; + temp += (mean-a)*(mean-a); + } + return temp / length; + } + + + /** + * Calculate Variance. + * + * @param values values + * @param length length + * @return variance + */ + public static float variance(float[] values, final int length) { + return (float) varianceDouble(values, 0, length); + } + + + /** + * Calculate Variance. + * + * @param values values + * @return variance + */ + public static float variance(float[] values) { + return (float) varianceDouble(values, 0, values.length); + } + + + /** + * Calculate standard deviation. + * + * @param values values + * @param start start + * @param length length + * @return standard deviation + */ + public static float standardDeviation(float[] values, final int start, final int length) { + double variance = varianceDouble(values, start, length); + return (float)Math.sqrt(variance); + } + + + /** + * Calculate standard deviation. + * + * @param values values + * @param length length + * @return standard deviation + */ + public static float standardDeviation(float[] values, final int length) { + double variance = varianceDouble(values, 0, length); + return (float)Math.sqrt(variance); + } + + + /** + * Calculate standard deviation. + * + * @param values values + * @return standard deviation + */ + public static float standardDeviation(float[] values) { + double variance = varianceDouble(values, 0, values.length); + return (float)Math.sqrt(variance); + } + + + /** + * Calculate Median + * + * @param start start + * @param values values + * @param length length + * @return median + */ + public static float median(float[] values, final int start, final int length) { + float[] sorted = new float[length]; + System.arraycopy(values, start, sorted, 0, length); + Arrays.sort(sorted); + + if (length % 2 == 0) { + int middle = sorted.length / 2; + double median = (sorted[middle-1] + sorted[middle]) / 2.0; + return (float) median; + } else { + return sorted[sorted.length / 2]; + } + } + + + /** + * Calculate Median + * @param values values + * @param length length + * @return median + */ + public static float median(float[] values, final int length) { + return median(values, 0, length); + } + + + /** + * Calculate Median + * @param values values + * @return median + */ + public static float median(float[] values) { + return median(values, 0, values.length); + } + + + + /** + * Checks to see if two arrays are equals + * @param expected expected array + * @param got got array + * @return true if equal or false if not. + */ + public static boolean equals(int start, int end, float[] expected, float[] got) { + + if (expected.length != got.length) { + return false; + } + + for (int index=start; index< end; index++) { + if (expected[index]!= got[index]) { + return false; + } + } + return true; + } + + public static int hashCode(float array[]) { + if (array == null) { + return 0; + } + + int result = 1; + for (float item : array) { + + int bits = Float.floatToIntBits(item); + result = 31 * result + bits; + } + + return result; + } + + public static int hashCode(int start, int end, float array[]) { + if (array == null) { + return 0; + } + + int result = 1; + + for (int index=start; index< end; index++) { + + int bits = Float.floatToIntBits(array[index]); + result = 31 * result + bits; + } + + return result; + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/primitive/IOInputStream.java b/datastructures-json-boon/src/main/java/org/boon/primitive/IOInputStream.java new file mode 100644 index 0000000..c2e6a8c --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/primitive/IOInputStream.java @@ -0,0 +1,260 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.primitive; + + +import org.boon.Boon; + +import java.io.IOException; +import java.io.InputStream; + +/** +* Created by Richard on 3/11/14. +*/ +public final class IOInputStream extends InputStream { + + private static int defaultBufferSize = 100_000; + + private byte buffer[]; + + private InputStream inputStream; + + + + private int length; + + private int position; + + //private final boolean autoGrowToMatch; + + + + public IOInputStream() { + //autoGrowToMatch = false; + buffer = new byte[defaultBufferSize]; + + } + + public IOInputStream(int size) { + //autoGrowToMatch = false; + buffer = new byte[size]; + + } + + + public IOInputStream(int size, boolean autoGrowToMatch) { + //this.autoGrowToMatch = autoGrowToMatch; + buffer = new byte[size]; + + } + + + public static IOInputStream input(IOInputStream input) { + + if (input == null) { + return new IOInputStream(); + } else { + return input; + } + + } + + + public static IOInputStream input(IOInputStream input, int size) { + + if (input == null) { + return new IOInputStream(size); + } else { + return input; + } + + } + + + public static IOInputStream auto(IOInputStream input, int size) { + + if (input == null) { + return new IOInputStream(size, true); + } else { + return input; + } + + } + + public IOInputStream input(InputStream in) { + + try { + close(); + } catch (IOException e) { + Boon.logger("IO").warn(e.getMessage(), e); + } + + this.inputStream = in; + return this; + } + + + + + public int read() throws IOException { + + if (position >= length) { + position = 0; + int countRead = inputStream.read(buffer); + length = countRead; + if (length == -1) { + return -1; + } + + } + + int value = buffer [position]; + + position++; + return value & 0xff; + } + + + public int read(byte destination[], int destinationOffset, int destinationLength) + throws IOException { + + if (inputStream == null) { + throw new IOException("Stream is closed"); + } + + + final int available = length - position; + + + + /*There is more in the buffer than they asked for so give them what we have an increment the position. */ + if ( available >= destinationLength ) { + System.arraycopy(this.buffer, position, destination, + destinationOffset, destinationLength); + position += destinationLength; + return destinationLength; + /* There is something in the buffer. just not enough */ + } else { + + if (available>0) { + //puts (available, destinationLength, destinationOffset); + + System.arraycopy(this.buffer, position, destination, + destinationOffset, available); + + /* YOu read some so increment the destination. */ + destinationLength -= available; + destinationOffset += available; + } + + + //puts (available, destinationLength, destinationOffset); + + /* Read the buffer and server them the rest out of the buffer. */ + //grow(destination); + + + position = 0; + int countRead = inputStream.read(buffer); + length = countRead; + if (length == -1) { + return available == 0 ? -1 : available; + } + + //puts (available, destinationLength, destinationOffset); + + /* We read a new buffer in but we need the lesser of the two. */ + int amountToRead = destinationLength < length ? destinationLength : length; + System.arraycopy(this.buffer, position, destination, + destinationOffset, amountToRead); + position = amountToRead; + + destinationLength -= amountToRead; + destinationOffset += amountToRead; + + if (destinationLength==0) { + + return amountToRead + available; + + } else { + + countRead = read(destination, destinationOffset, destinationLength); + if (countRead == -1) { + return amountToRead + available; + } else { + return amountToRead + available + countRead; + } + } + + + } + + + + } + +// private final void grow(byte[] destination) { +// if (destination.length > buffer.length) { +// buffer = new byte[length]; +// } +// } + + public long skip(long n) throws IOException { + throw new IOException("Skip not supported"); + } + + public int available() throws IOException { + int totalCount = length - position; + int available = inputStream.available(); + return totalCount > (Integer.MAX_VALUE - available) + ? Integer.MAX_VALUE + : totalCount + available; + } + + public void mark(int limit) { + } + + public void reset() throws IOException { + throw new IOException("Resetting not supported"); + } + + public boolean markSupported() { + return false; + } + + public void close() throws IOException { + + if (inputStream!=null) { + inputStream.close(); + } + inputStream = null; + this.position = 0; + this.length = 0; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/primitive/IOReader.java b/datastructures-json-boon/src/main/java/org/boon/primitive/IOReader.java new file mode 100644 index 0000000..a9e1557 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/primitive/IOReader.java @@ -0,0 +1,208 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.primitive; + +import org.boon.Boon; + +import java.io.IOException; +import java.io.Reader; + +/** + * Created by Richard on 3/13/14. + */ +public class IOReader extends Reader{ + + + private static int defaultBufferSize = 100_000; + + private char buffer[]; + + private Reader reader; + + + + private int length; + + private int position; + + + + public IOReader( int size) { + + this.reader = reader; + buffer = new char[size]; + + } + + public IOReader() { + this.reader = reader; + buffer = new char[defaultBufferSize]; + } + + + + public static IOReader reader(IOReader reader, int size) { + + if (reader == null) { + return new IOReader(size); + } else { + return reader; + } + + } + + + + public IOReader reader(Reader in) { + + try { + close(); + } catch (IOException e) { + Boon.logger("IO").warn(e.getMessage(), e); + } + + this.reader = in; + return this; + } + + + + + public int read() throws IOException { + + if (position >= length) { + position = 0; + int countRead = reader.read(buffer); + length = countRead; + if (length == -1) { + return -1; + } + + } + + int value = buffer [position]; + + position++; + return value & 0xff; + } + + @Override + public int read(char[] destination, int destinationOffset, int destinationLength) throws IOException { + + if (reader == null) { + throw new IOException("Stream is closed"); + } + + + final int available = length - position; + + + + /*There is more in the buffer than they asked for so give them what we have an increment the position. */ + if ( available >= destinationLength ) { + System.arraycopy(this.buffer, position, destination, + destinationOffset, destinationLength); + position += destinationLength; + return destinationLength; + /* There is something in the buffer. just not enough */ + } else { + + if (available>0) { + //puts (available, destinationLength, destinationOffset); + + System.arraycopy(this.buffer, position, destination, + destinationOffset, available); + + /* YOu read some so increment the destination. */ + destinationLength -= available; + destinationOffset += available; + } + + + //puts (available, destinationLength, destinationOffset); + + /* Read the buffer and server them the rest out of the buffer. */ + //grow(destination); + + + position = 0; + int countRead = reader.read(buffer); + length = countRead; + if (length == -1) { + return available == 0 ? -1 : available; + } + + //puts (available, destinationLength, destinationOffset); + + /* We read a new buffer in but we need the lesser of the two. */ + int amountToRead = destinationLength < length ? destinationLength : length; + System.arraycopy(this.buffer, position, destination, + destinationOffset, amountToRead); + position = amountToRead; + + destinationLength -= amountToRead; + destinationOffset += amountToRead; + + if (destinationLength==0) { + + return amountToRead + available; + + } else { + + countRead = read(destination, destinationOffset, destinationLength); + if (countRead == -1) { + return amountToRead + available; + } else { + return amountToRead + available + countRead; + } + } + + + } + + + + } + + public long skip(long n) throws IOException { + throw new IOException("Skip not supported"); + } + + public void close() throws IOException { + + if (reader!=null) { + reader.close(); + } + reader = null; + this.position = 0; + this.length = 0; + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/primitive/InMemoryInputStream.java b/datastructures-json-boon/src/main/java/org/boon/primitive/InMemoryInputStream.java new file mode 100644 index 0000000..d3ee45f --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/primitive/InMemoryInputStream.java @@ -0,0 +1,132 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.primitive; + +import org.boon.Exceptions; + +import java.io.ByteArrayInputStream; +import java.io.IOException; + +/** + * Created by Richard on 3/11/14. + */ +public final class InMemoryInputStream extends ByteArrayInputStream { + + private static final byte BUFFER_FOR_YOU[] = new byte[1]; + + private byte buffer[]; + + private int position; + + + + public InMemoryInputStream (byte[] buffer) { + super(BUFFER_FOR_YOU); + + this.buffer = buffer; + + } + + + private int value; + public final int read() { + + if (position >= buffer.length) { + return -1; + } + value = buffer [position]; + position++; + return value & 0xff; + } + + public int read(byte b[]) throws IOException { + return read(b, 0, b.length); + } + + + public final int read(byte destination[], int destinationOffset, int destinationLength) { + + + final int available = buffer.length - position; + + int readAmount=0; + + + + /*There is more in the buffer than they asked for so give them what we have an increment the position. */ + if ( available >= destinationLength ) { + System.arraycopy(this.buffer, position, destination, + destinationOffset, destinationLength); + position += destinationLength; + readAmount = destinationLength; + /* There is something in the buffer. just not enough */ + } else if (available>0) { + //puts (available, destinationLength, destinationOffset); + + System.arraycopy(this.buffer, position, destination, + destinationOffset, available); + position+=available; + readAmount = available; + + } + + + return readAmount <= 0 ? -1 : readAmount; + + + } + + + public final long skip(long n) { + return Exceptions.die(Long.class, "Skip not supported"); + } + + public final int available() { + return buffer.length - position; + + } + + public final void mark(int limit) { + } + + public final void reset() { + Exceptions.die("Resetting not supported"); + } + + public final boolean markSupported() { + return false; + } + + public final void close() throws IOException { + + position = 0; + buffer = null; + + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/primitive/InMemoryReader.java b/datastructures-json-boon/src/main/java/org/boon/primitive/InMemoryReader.java new file mode 100644 index 0000000..137b818 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/primitive/InMemoryReader.java @@ -0,0 +1,147 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.primitive; + +import org.boon.Exceptions; +import org.boon.core.reflection.FastStringUtils; + +import java.io.ByteArrayInputStream; +import java.io.IOException; +import java.io.Reader; +import java.io.StringReader; + +/** + * Created by Richard on 3/13/14. + */ +public class InMemoryReader extends StringReader { + + + private final static String EMPTY_STRING = ""; + private char buffer[]; + + private int position; + + + public final void close() { + + position = 0; + buffer = null; + + } + + + public InMemoryReader(char[] buffer) { + super(EMPTY_STRING); + + this.buffer = buffer; + + } + + + public InMemoryReader(String bufferSource) { + super(EMPTY_STRING); + + this.buffer = FastStringUtils.toCharArray(bufferSource); + + } + + + private int value; + + public final int read() { + + if (position >= buffer.length) { + return -1; + } + value = buffer[position]; + position++; + return value & 0xff; + } + + public int read(char b[]) throws IOException { + return read(b, 0, b.length); + } + + + public int read(char destination[], int destinationOffset, int destinationLength) { + + + final int available = buffer.length - position; + + int readAmount = 0; + + + + /*There is more in the buffer than they asked for so give them what we have an increment the position. */ + if (available >= destinationLength) { + System.arraycopy(this.buffer, position, destination, + destinationOffset, destinationLength); + position += destinationLength; + readAmount = destinationLength; + /* There is something in the buffer. just not enough */ + } else if (available > 0) { + //puts (available, destinationLength, destinationOffset); + + System.arraycopy(this.buffer, position, destination, + destinationOffset, available); + position += available; + readAmount = available; + + } + + + return readAmount <= 0 ? -1 : readAmount; + + + } + + + public final long skip(long n) { + return Exceptions.die(Long.class, "Skip not supported"); + } + + + public final void mark(int limit) { + } + + public final void reset() { + Exceptions.die("Resetting not supported"); + } + + public final boolean markSupported() { + return false; + } + + public boolean ready() { + return buffer!=null; + } + +} + + diff --git a/datastructures-json-boon/src/main/java/org/boon/primitive/Input.java b/datastructures-json-boon/src/main/java/org/boon/primitive/Input.java new file mode 100644 index 0000000..5547a7e --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/primitive/Input.java @@ -0,0 +1,121 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.primitive; + + +public interface Input { + + + void readFully( byte[] b ); + + void readFully( byte[] b, int off, int len ); + + int skipBytes( int n ); + + void location( int n ); + + int location(); + + void reset(); + + boolean readBoolean(); + + byte readByte(); + + short readUnsignedByte(); + + short readShort(); + + int readUnsignedShort(); + + char readChar(); + + int readInt(); + + long readUnsignedInt(); + + long readLong(); + + float readFloat(); + + double readDouble(); + + String readSmallString(); + + String readLargeString(); + + String readMediumString(); + + + byte[] readSmallByteArray(); + + byte[] readLargeByteArray(); + + byte[] readMediumByteArray(); + + short[] readSmallShortArray(); + + short[] readLargeShortArray(); + + short[] readMediumShortArray(); + + + int[] readSmallIntArray(); + + int[] readLargeIntArray(); + + int[] readMediumIntArray(); + + byte[] readBytes( int size ); + + + long[] readSmallLongArray(); + + long[] readLargeLongArray(); + + long[] readMediumLongArray(); + + + float[] readSmallFloatArray(); + + float[] readLargeFloatArray(); + + float[] readMediumFloatArray(); + + + double[] readSmallDoubleArray(); + + double[] readLargeDoubleArray(); + + double[] readMediumDoubleArray(); + + //TODO addObject unsigned int, unsigned byte, unsigned short array + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/primitive/InputByteArray.java b/datastructures-json-boon/src/main/java/org/boon/primitive/InputByteArray.java new file mode 100644 index 0000000..07828fb --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/primitive/InputByteArray.java @@ -0,0 +1,419 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.primitive; + +import java.nio.charset.StandardCharsets; + +public class InputByteArray implements Input { + + private final byte[] array; + + private int location; + + public InputByteArray( byte[] array ) { + + this.array = array; + + } + + @Override + public void readFully( byte[] readToThis ) { + Byt._idx( readToThis, 0, array, location, readToThis.length ); + location += readToThis.length; + } + + @Override + public void readFully( byte[] readToThis, int off, int len ) { + Byt._idx( readToThis, off, array, location, len ); + location += readToThis.length; + } + + @Override + public int skipBytes( int n ) { + return location += n; + } + + @Override + public void location( int n ) { + location = n; + } + + @Override + public int location() { + return location; + } + + @Override + public void reset() { + location = 0; + } + + @Override + public boolean readBoolean() { + final byte val = Byt.idx( array, location ); + + location += 1; + + if ( val == 0 ) { + return false; + } else { + return true; + } + } + + @Override + public byte readByte() { + + byte value = Byt.idx( array, location ); + location += 1; + return value; + + } + + @Override + public short readUnsignedByte() { + + short value = Byt.idxUnsignedByte( array, location ); + location += 1; + return value; + + } + + @Override + public short readShort() { + + short value = Byt.idxShort( array, location ); + location += 2; + + return value; + } + + @Override + public int readUnsignedShort() { + + int value = Byt.idxUnsignedShort( array, location ); + location += 2; + + return value; + } + + @Override + public char readChar() { + + char value = Byt.idxChar( array, location ); + location += 2; + + return value; + } + + @Override + public int readInt() { + + int value = Byt.idxInt( array, location ); + location += 4; + + return value; + } + + @Override + public long readUnsignedInt() { + + long value = Byt.idxUnsignedInt( array, location ); + location += 4; + + return value; + } + + @Override + public long readLong() { + + long value = Byt.idxLong( array, location ); + location += 8; + + return value; + } + + @Override + public float readFloat() { + + float value = Byt.idxFloat( array, location ); + location += 4; + return value; + + } + + @Override + public double readDouble() { + + double value = Byt.idxDouble( array, location ); + location += 8; + return value; + + } + + + @Override + public String readSmallString() { + short size = this.readUnsignedByte(); + + byte[] bytes = this.readBytes( size ); + return new String( bytes, StandardCharsets.UTF_8 ); + } + + + @Override + public String readMediumString() { + int size = this.readUnsignedShort(); + + byte[] bytes = this.readBytes( size ); + + return new String( bytes, StandardCharsets.UTF_8 ); + } + + + @Override + public String readLargeString() { + int size = this.readInt(); + + + byte[] bytes = this.readBytes( size ); + + return new String( bytes, StandardCharsets.UTF_8 ); + } + + + @Override + public byte[] readSmallByteArray() { + short size = this.readUnsignedByte(); + + byte[] bytes = this.readBytes( size ); + return bytes; + } + + + @Override + public byte[] readMediumByteArray() { + int size = this.readUnsignedShort(); + + byte[] bytes = this.readBytes( size ); + + return bytes; + } + + @Override + public short[] readSmallShortArray() { + + short size = this.readUnsignedByte(); + + return doReadShortArray( size ); + + + } + + private short[] doReadShortArray( int size ) { + short[] values = new short[ size ]; + + for ( int index = 0; index < values.length; index++ ) { + values[ index ] = this.readShort(); + } + return values; + } + + @Override + public short[] readLargeShortArray() { + + int size = this.readInt(); + + return doReadShortArray( size ); + + } + + @Override + public short[] readMediumShortArray() { + + int size = this.readUnsignedShort(); + + return doReadShortArray( size ); + + } + + + @Override + public byte[] readLargeByteArray() { + int size = this.readInt(); + + + byte[] bytes = this.readBytes( size ); + + return bytes; + } + + @Override + public byte[] readBytes( int size ) { + byte[] bytes = new byte[ size ]; + this.readFully( bytes ); + return bytes; + } + + + @Override + public int[] readSmallIntArray() { + + short size = this.readUnsignedByte(); + + return doReadIntArray( size ); + + + } + + private int[] doReadIntArray( int size ) { + int[] values = new int[ size ]; + + for ( int index = 0; index < values.length; index++ ) { + values[ index ] = this.readInt(); + } + return values; + } + + @Override + public int[] readLargeIntArray() { + + int size = this.readInt(); + + return doReadIntArray( size ); + + } + + @Override + public int[] readMediumIntArray() { + + int size = this.readUnsignedShort(); + + return doReadIntArray( size ); + + } + + + /// + + + @Override + public long[] readSmallLongArray() { + + short size = this.readUnsignedByte(); + + return doReadLongArray( size ); + + + } + + private long[] doReadLongArray( int size ) { + long[] values = new long[ size ]; + + for ( int index = 0; index < values.length; index++ ) { + values[ index ] = this.readLong(); + } + return values; + } + + @Override + public long[] readLargeLongArray() { + + int size = this.readInt(); + + return doReadLongArray( size ); + + } + + @Override + public long[] readMediumLongArray() { + + int size = this.readUnsignedShort(); + + return doReadLongArray( size ); + + } + + @Override + public float[] readSmallFloatArray() { + short size = this.readUnsignedByte(); + return doReadFloatArray( size ); + } + + @Override + public float[] readLargeFloatArray() { + int size = this.readInt(); + return doReadFloatArray( size ); + } + + @Override + public float[] readMediumFloatArray() { + int size = this.readUnsignedShort(); + return doReadFloatArray( size ); + } + + private float[] doReadFloatArray( int size ) { + float[] values = new float[ size ]; + for ( int index = 0; index < values.length; index++ ) { + values[ index ] = this.readFloat(); + } + return values; + } + + + @Override + public double[] readSmallDoubleArray() { + short size = this.readUnsignedByte(); + return doReadDoubleArray( size ); + } + + @Override + public double[] readLargeDoubleArray() { + int size = this.readInt(); + return doReadDoubleArray( size ); + } + + @Override + public double[] readMediumDoubleArray() { + int size = this.readUnsignedShort(); + return doReadDoubleArray( size ); + } + + + private double[] doReadDoubleArray( int size ) { + double[] values = new double[ size ]; + for ( int index = 0; index < values.length; index++ ) { + values[ index ] = this.readDouble(); + } + return values; + } + + //TODO addObject unsigned int, unsigned byte, unsigned short + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/primitive/Int.java b/datastructures-json-boon/src/main/java/org/boon/primitive/Int.java new file mode 100644 index 0000000..cee3691 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/primitive/Int.java @@ -0,0 +1,1536 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.primitive; + +import org.boon.Exceptions; +import org.boon.StringScanner; +import org.boon.Universal; +import org.boon.collections.IntList; +import org.boon.core.reflection.BeanUtils; +import org.boon.core.reflection.Invoker; +import org.boon.core.reflection.fields.FieldAccess; + +import java.lang.invoke.ConstantCallSite; +import java.lang.invoke.MethodHandle; +import java.lang.reflect.Method; +import java.util.Arrays; +import java.util.Collection; +import java.util.List; +import java.util.Map; + +import static org.boon.Exceptions.die; +import static org.boon.Exceptions.handle; + + +/** + * Integer operations. + */ +public class Int { + + + /** + * Grown an array + * @param array array of items to grow + * @param size size you would like to grow the array to + * @return the new array + */ + public static int[] grow( int[] array, final int size ) { + + int[] newArray = new int[ array.length + size ]; + System.arraycopy( array, 0, newArray, 0, array.length ); + return newArray; + } + + + /** + * Double the size of an array. + * @param array the array you are going to double + * @return the new array with the old values copied in + */ + public static int[] grow( int[] array ) { + Exceptions.requireNonNull( array ); + + int[] newArray = new int[ array.length * 2 ]; + System.arraycopy( array, 0, newArray, 0, array.length ); + return newArray; + } + + + /** + * Shrink an array + * @param array the array you want to shrink + * @param size what size do you want the new array + * @return the new array + */ + public static int[] shrink( int[] array, int size ) { + + int[] newArray = new int[ array.length - size ]; + + System.arraycopy( array, 0, newArray, 0, array.length - size ); + return newArray; + } + + + /** + * Takes out all of the 0s + * @param array array to compact + * @return return value + */ + public static int[] compact( int[] array ) { + Exceptions.requireNonNull( array ); + + int nullCount = 0; + for ( int ch : array ) { + + if ( ch == '\0' ) { + nullCount++; + } + } + int[] newArray = new int[ array.length - nullCount ]; + + int j = 0; + for ( int ch : array ) { + + if ( ch == '\0' ) { + continue; + } + + newArray[ j ] = ch; + j++; + } + return newArray; + } + + + /** + * Creates an array of bytes + * + * @param size size of the array you want to make + * @return + */ + public static int[] arrayOfInt( final int size ) { + return new int[ size ]; + } + + /** + * @param array + * @return + */ + @Universal + public static int[] array( final int... array ) { + Exceptions.requireNonNull( array ); + return array; + } + + + /** + * Returns the lengthOf an array. + * @param array the array you are getting the length from. + * @return array length + */ + @Universal + public static int lengthOf( int[] array ) { + return len(array); + } + + + /** + * Returns the lengthOf an array. + * @param array the array you are getting the length from. + * @return array length + */ + @Universal + public static int len( int[] array ) { + return array.length; + } + + + + /** + * Returns the value at the given index. + * @param array the array you are getting the from. + * @return the value + */ + @Universal + public static int idx( final int[] array, final int index ) { + final int i = calculateIndex( array, index ); + + return array[ i ]; + } + + + + /** + * Returns the value at the given index. + * @param array the array you are getting the from. + * @return the value + */ + @Universal + public static int atIndex( final int[] array, final int index ) { + final int i = calculateIndex( array, index ); + + return array[ i ]; + } + + + /** + * Sets the value at the given index. + * @param array the array you are getting the from. + * @return the value + */ + @Universal + public static void idx( final int[] array, int index, int value ) { + final int i = calculateIndex( array, index ); + + array[ i ] = value; + } + + + /** + * Sets the value at the given index. + * @param array the array you are setting the value to. + * @param value the new value. + * @return the value + */ + @Universal + public static void atIndex( final int[] array, int index, int value ) { + final int i = calculateIndex( array, index ); + + array[ i ] = value; + } + + /** + * Grabs a slice of this array + * @param array the array you are getting slice from + * @param startIndex the start index of the slice + * @param endIndex the end index of the slice + * @return the new slice + */ + @Universal + public static int[] slc( int[] array, int startIndex, int endIndex ) { + + final int start = calculateIndex( array, startIndex ); + final int end = calculateEndIndex( array, endIndex ); + final int newLength = end - start; + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, end index %d, length %d", + startIndex, endIndex, array.length ) + ); + } + + int[] newArray = new int[ newLength ]; + System.arraycopy( array, start, newArray, 0, newLength ); + return newArray; + } + + + /** + * Grabs a slice of this array + * @param array the array you are getting slice from + * @param startIndex the start index of the slice + * @param endIndex the end index of the slice + * @return the new slice + */ + @Universal + public static int[] sliceOf( int[] array, int startIndex, int endIndex ) { + + final int start = calculateIndex( array, startIndex ); + final int end = calculateEndIndex( array, endIndex ); + final int newLength = end - start; + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, end index %d, length %d", + startIndex, endIndex, array.length ) + ); + } + + int[] newArray = new int[ newLength ]; + System.arraycopy( array, start, newArray, 0, newLength ); + return newArray; + } + + + /** + * Grabs a slice of this array + * @param array the array you are getting slice from + * @param startIndex the start index of the slice + * @return the new slice + */ + @Universal + public static int[] slc( int[] array, int startIndex ) { + + final int start = calculateIndex( array, startIndex ); + final int newLength = array.length - start; + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, length %d", + startIndex, array.length ) + ); + } + + int[] newArray = new int[ newLength ]; + System.arraycopy( array, start, newArray, 0, newLength ); + return newArray; + } + + + /** + * Grabs a slice of this array + * @param array the array you are getting slice from + * @param startIndex the start index of the slice + * @return the new slice + */ + @Universal + public static int[] sliceOf( int[] array, int startIndex ) { + + final int start = calculateIndex( array, startIndex ); + final int newLength = array.length - start; + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, length %d", + startIndex, array.length ) + ); + } + + int[] newArray = new int[ newLength ]; + System.arraycopy( array, start, newArray, 0, newLength ); + return newArray; + } + + + /** + * Grabs a slice of this array + * @param array the array you are getting slice from + * @param endIndex the end index of the slice + * @return the new slice + */ + @Universal + public static int[] slcEnd( int[] array, int endIndex ) { + + final int end = calculateEndIndex( array, endIndex ); + final int newLength = end; // + (endIndex < 0 ? 1 : 0); + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, length %d", + endIndex, array.length ) + ); + } + + int[] newArray = new int[ newLength ]; + System.arraycopy( array, 0, newArray, 0, newLength ); + return newArray; + } + + + /** + * Grabs a slice of this array + * @param array the array you are getting slice from + * @param endIndex the end index of the slice + * @return the new slice + */ + @Universal + public static int[] endSliceOf( int[] array, int endIndex ) { + + final int end = calculateEndIndex( array, endIndex ); + final int newLength = end; // + (endIndex < 0 ? 1 : 0); + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, length %d", + endIndex, array.length ) + ); + } + + int[] newArray = new int[ newLength ]; + System.arraycopy( array, 0, newArray, 0, newLength ); + return newArray; + } + + + /** + * Checks to see if a value is in the array. + * @param array the array you are getting slice from + * @return true if the value is in the array + */ + @Universal + public static boolean in( int value, int[] array ) { + for ( int currentValue : array ) { + if ( currentValue == value ) { + return true; + } + } + return false; + } + + + /** + * Copies an array. + * @param array the array you want to copy + * @return the copied array + */ + @Universal + public static int[] copy( int[] array ) { + int[] newArray = new int[ array.length ]; + System.arraycopy( array, 0, newArray, 0, array.length ); + return newArray; + } + + + /** + * Adds an int to the array. Grows the array by one and adds the int to the end. + * @param array the array + * @param v the value you are adding to the end. + * @return the new array + */ + @Universal + public static int[] add( int[] array, int v ) { + int[] newArray = new int[ array.length + 1 ]; + System.arraycopy( array, 0, newArray, 0, array.length ); + newArray[ array.length ] = v; + return newArray; + } + + /** + * adds two array together and returns the results. + * @param array first array + * @param array2 second array + * @return + */ + @Universal + public static int[] add( int[] array, int[] array2 ) { + int[] newArray = new int[ array.length + array2.length ]; + System.arraycopy( array, 0, newArray, 0, array.length ); + System.arraycopy( array2, 0, newArray, array.length, array2.length ); + return newArray; + } + + + /** + * Inserts a value in the midst of another array. + * @param array + * @param idx + * @param v + * @return + */ + @Universal + public static int[] insert( final int[] array, final int idx, final int v ) { + + if ( idx >= array.length ) { + return add( array, v ); + } + + final int index = calculateIndex( array, idx ); + + //Object newArray = Array.newInstance(array.getClass().getComponentType(), array.length+1); + int[] newArray = new int[ array.length + 1 ]; + + if ( index != 0 ) { + /* Copy up to the length in the array before the index. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, 0, newArray, 0, index ); + } + + + boolean lastIndex = index == array.length - 1; + int remainingIndex = array.length - index; + + if ( lastIndex ) { + /* Copy the area after the insert. Make sure we don't write over the end. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, index, newArray, index + 1, remainingIndex ); + + } else { + /* Copy the area after the insert. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, index, newArray, index + 1, remainingIndex ); + + } + + newArray[ index ] = v; + return newArray; + } + + + + /** + * Inserts an array in the midst of another array. + * @param array + * @return + */ + @Universal + public static int[] insert( final int[] array, final int fromIndex, final int[] values ) { + + if ( fromIndex >= array.length ) { + return add( array, values ); + } + + final int index = calculateIndex( array, fromIndex ); + + //Object newArray = Array.newInstance(array.getClass().getComponentType(), array.length+1); + int[] newArray = new int[ array.length + values.length ]; + + if ( index != 0 ) { + /* Copy up to the length in the array before the index. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, 0, newArray, 0, index ); + } + + + boolean lastIndex = index == array.length - 1; + + int toIndex = index + values.length; + int remainingIndex = newArray.length - toIndex; + + if ( lastIndex ) { + /* Copy the area after the insert. Make sure we don't write over the end. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, index, newArray, index + values.length, remainingIndex ); + + } else { + /* Copy the area after the insert. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, index, newArray, index + values.length, remainingIndex ); + + } + + for ( int i = index, j = 0; i < toIndex; i++, j++ ) { + newArray[ i ] = values[ j ]; + } + return newArray; + } + + + /** + * Calculates the index for slice notation so -1 is one minus length and so on. + * @param array array in question + * @param originalIndex the index give which might be negative or higher than length. + * @return + */ + private static int calculateIndex( int[] array, int originalIndex ) { + final int length = array.length; + + + int index = originalIndex; + + /* Adjust for reading from the right as in + -1 reads the 4th element if the length is 5 + */ + if ( index < 0 ) { + index = length + index; + } + + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + if ( index < 0 ) { + index = 0; + } + if ( index >= length ) { + index = length - 1; + } + return index; + } + + /** + * Calculates the index for slice notation so -1 is one minus length and so on. + * @param array array in question + * @param originalIndex the index give which might be negative or higher than length. + * @return + */ + private static int calculateEndIndex( int[] array, int originalIndex ) { + final int length = array.length; + + + int index = originalIndex; + + /* Adjust for reading from the right as in + -1 reads the 4th element if the length is 5 + */ + if ( index < 0 ) { + index = length + index; + } + + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + if ( index < 0 ) { + index = 0; + } + if ( index > length ) { + index = length; + } + return index; + } + + /** Public interface for a very fast reduce by. */ + public static interface ReduceBy { + long reduce(long sum, int value); + } + + /** + * A very fast reduce by. + * If performance is your thing, this seems to be as fast a plain for loop when benchmarking with JMH. + * + * @param array array of items to reduce by + * @param reduceBy reduceBy interface + * @return the final value + */ + public static long reduceBy( final int[] array, ReduceBy reduceBy ) { + + + long sum = 0; + for ( int v : array ) { + sum = reduceBy.reduce(sum, v); + } + return sum; + } + + /** + * + * @param array array of items to reduce by + * @param start where to start in the array + * @param length where to end in the array + * @param reduceBy the function to do the reduce by + * @return the reduction + */ + public static long reduceBy( final int[] array, final int start, final int length, ReduceBy reduceBy ) { + + + long sum = 0; + + for (int index = start; index < length; index++) { + int v = array[index]; + sum = reduceBy.reduce(sum, v); + } + return sum; + } + + + /** + * + * @param array array of items to reduce by + * @param length where to end in the array + * @param reduceBy the function to do the reduce by + * @return the reduction + */ + public static long reduceBy( final int[] array, final int length, ReduceBy reduceBy ) { + + + long sum = 0; + + for (int index = 0; index < length; index++) { + int v = array[index]; + sum = reduceBy.reduce(sum, v); + } + return sum; + } + + + + + /** + * Reduce by functional support for int arrays. + * @param array array of items to reduce by + * @param object object that contains the reduce by function + * @param the type of object + * @return the final reduction + */ + public static long reduceBy( final int[] array, T object ) { + if (object.getClass().isAnonymousClass()) { + return reduceByR(array, object ); + } + + + try { + ConstantCallSite callSite = Invoker.invokeReducerLongIntReturnLongMethodHandle(object); + MethodHandle methodHandle = callSite.dynamicInvoker(); + try { + + long sum = 0; + for ( int v : array ) { + sum = (long) methodHandle.invokeExact( sum, v ); + + } + return sum; + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + } catch (Exception ex) { + return reduceByR(array, object); + } + + } + + + + + + /** + * Reduce by functional support for int arrays. + * @param array array of items to reduce by + * @param object object that contains the reduce by function + * @param the type of object + * @return the final reduction + */ + public static long reduceBy( final int[] array, T object, String methodName ) { + + if (object.getClass().isAnonymousClass()) { + return reduceByR(array, object, methodName); + } + + try { + ConstantCallSite callSite = Invoker.invokeReducerLongIntReturnLongMethodHandle(object, methodName); + MethodHandle methodHandle = callSite.dynamicInvoker(); + try { + + long sum = 0; + for ( int v : array ) { + sum = (long) methodHandle.invokeExact( sum, v ); + + } + return sum; + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + } catch (Exception ex) { + return reduceByR(array, object, methodName); + } + + + } + + + /** + * Fallback to reflection if the call-site will not work or did not work + * @param array array of items to reduce by + * @param object function object + * @param type of function object. + * @return + */ + private static long reduceByR( final int[] array, T object ) { + try { + + Method method = Invoker.invokeReducerLongIntReturnLongMethod(object); + + + long sum = 0; + for ( int v : array ) { + sum = (long) method.invoke(object, sum, v); + + } + return sum; + + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + + } + + + /** + * Reflection based reduce by. + * @param array array of items to reduce by + * @param object function + * @param methodName name of method + * @param type of function + * @return reduction + */ + private static long reduceByR( final int[] array, T object, String methodName ) { + try { + + Method method = Invoker.invokeReducerLongIntReturnLongMethod(object, methodName); + + + long sum = 0; + for ( int v : array ) { + sum = (long) method.invoke(object, sum, v); + + } + return sum; + + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + + } + + + + /** + * Reflection based reduce by. + * @param array array of items to reduce by + * @param object function + * @param methodName name of method + * @param type of function + * @return reduction + */ + private static long reduceByR( final int[] array, int length, T object, String methodName ) { + try { + + Method method = Invoker.invokeReducerLongIntReturnLongMethod(object, methodName); + + + long sum = 0; + for (int index=0; index< length; index++) { + int v = array[index]; + sum = (long) method.invoke(object, sum, v); + + } + return sum; + + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + + } + + + /** + * Reflection based reduce by. + * @param array array of items to reduce by + * @param object function + * @param type of function + * @return reduction + */ + private static long reduceByR( final int[] array, int length, T object ) { + try { + + Method method = Invoker.invokeReducerLongIntReturnLongMethod(object); + + + long sum = 0; + for (int index=0; index< length; index++) { + int v = array[index]; + sum = (long) method.invoke(object, sum, v); + + } + return sum; + + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + + } + + /** + * Reduce By + * @param array array of items to reduce by + * @param length where to end in the array + * @param object function + * @return reduction + */ + public static long reduceBy( final int[] array, int length, + Object object ) { + + + if (object.getClass().isAnonymousClass()) { + return reduceByR(array, length, object ); + } + + try { + ConstantCallSite callSite = Invoker.invokeReducerLongIntReturnLongMethodHandle(object ); + MethodHandle methodHandle = callSite.dynamicInvoker(); + try { + + long sum = 0; + for (int index=0; index < length; index++) { + int v = array[index]; + sum = (long) methodHandle.invokeExact( sum, v ); + + } + return sum; + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + } catch (Exception ex) { + return reduceByR(array, length, object ); + } + + + } + + + + /** + * Reduce By + * @param array array of items to reduce by + * @param length where to end in the array + * @param function function + * @param function functionName + * @return reduction + */ + public static long reduceBy( final int[] array, int length, + Object function, String functionName ) { + + + if (function.getClass().isAnonymousClass()) { + return reduceByR(array, length, function, functionName ); + } + + try { + ConstantCallSite callSite = Invoker.invokeReducerLongIntReturnLongMethodHandle(function, functionName ); + MethodHandle methodHandle = callSite.dynamicInvoker(); + try { + + long sum = 0; + for (int index=0; index < length; index++) { + int v = array[index]; + sum = (long) methodHandle.invokeExact( sum, v ); + + } + return sum; + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + } catch (Exception ex) { + return reduceByR(array, length, function, functionName ); + } + + + } + + + /** + * Reduce By + * @param array array of items to reduce by + * @param length where to end in the array + * @param object function + * @return reduction + */ + public static long reduceBy( final int[] array, int start, int length, + Object object ) { + + + if (object.getClass().isAnonymousClass()) { + return reduceByR(array, object ); + } + + try { + ConstantCallSite callSite = Invoker.invokeReducerLongIntReturnLongMethodHandle(object ); + MethodHandle methodHandle = callSite.dynamicInvoker(); + try { + + long sum = 0; + for (int index=start; index < length; index++) { + int v = array[index]; + sum = (long) methodHandle.invokeExact( sum, v ); + + } + return sum; + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + } catch (Exception ex) { + return reduceByR(array, object ); + } + + } + + /** + * Checks to see if two values are the same + * @param expected expected value + * @param got got value + * @return true if equal throws exception if not equal + */ + public static boolean equalsOrDie(int expected, int got) { + if (expected != got) { + return die(Boolean.class, "Expected was", expected, "but we got ", got); + } + return true; + } + + /** + * Checks to see if two arrays are equals + * @param expected expected array + * @param got got array + * @return true if equal or throws exception if not. + */ + public static boolean equalsOrDie(int[] expected, int[] got) { + + if (expected.length != got.length) { + die("Lengths did not match, expected length", expected.length, + "but got", got.length); + } + + for (int index=0; index< expected.length; index++) { + if (expected[index]!= got[index]) { + die("value at index did not match index", index , "expected value", + expected[index], + "but got", got[index]); + + } + } + return true; + } + + + /** + * Compares two values + * @param expected expected value + * @param got got value + * @return true or false + */ + public static boolean equals(int expected, int got) { + + return expected == got; + } + + + /** + * Checks to see if two arrays are equals + * @param expected expected array + * @param got got array + * @return true if equal or false if not. + */ + public static boolean equals(int[] expected, int[] got) { + + if (expected.length != got.length) { + return false; + } + + for (int index=0; index< expected.length; index++) { + if (expected[index]!= got[index]) { + return false; + } + } + return true; + } + + /** + * Sum + * Provides overflow protection. + * @param values values in int + * @return sum + */ + public static int sum( int[] values ) { + return sum( values, 0, values.length); + } + + + /** + * Sum + * Provides overflow protection. + * @param values values in int + * @return sum + */ + public static int sum( int[] values, int length ) { + return sum( values, 0, length); + } + + /** + * Sum + * Provides overflow protection. + * @param values values in int + * @return sum + */ + public static int sum( int[] values, int start, int length ) { + long sum = 0; + for (int index = start; index < length; index++ ) { + sum+= values[index]; + } + + if (sum < Integer.MIN_VALUE) { + die ("overflow the sum is too small", sum); + } + + + if (sum > Integer.MAX_VALUE) { + die ("overflow the sum is too big", sum); + } + + return (int) sum; + + + } + + + + /** + * Sum + * Provides overflow protection. + * @param values values in int + * @return sum + */ + public static long bigSum( int[] values ) { + return bigSum(values, 0, values.length); + } + + + /** + * Sum + * Provides overflow protection. + * @param values values in int + * @return sum + */ + public static long bigSum( int[] values, int length ) { + return bigSum(values, 0, length); + } + + /** + * Big Sum + * @param values values in int + * @return sum + */ + public static long bigSum( int[] values, int start, int length ) { + long sum = 0; + for (int index = start; index < length; index++ ) { + sum+= values[index]; + } + + return sum; + + + } + + + + /** + * Max + * @param values values in int + * @return max + */ + public static int max( int[] values, final int start, final int length ) { + int max = Integer.MIN_VALUE; + for (int index = start; index < length; index++ ) { + if ( values[index] > max ) { + max = values[index]; + } + } + + return max; + } + + + /** + * max + * @param values values in int + * @return max + */ + public static int max( int[] values ) { + return max(values, 0, values.length); + } + + + /** + * max + * @param values values in int + * @return max + */ + public static int max( int[] values, int length ) { + return max(values, 0, length); + } + + + /** + * Min + * @param values values in int + * @return min + */ + public static int min( int[] values, final int start, final int length ) { + int min = Integer.MAX_VALUE; + for (int index = start; index < length; index++ ) { + if (values[index] < min) min = values[index]; + } + return min; + } + + + /** + * Min + * @param values values in int + * @return min + */ + public static int min( int[] values ) { + return min(values, 0, values.length); + } + + + /** + * Min + * @param values values in int + * @return min + */ + public static int min( int[] values, int length ) { + return min(values, 0, length); + } + + + + + /** + * Average + * @param values values in int + * @return average + */ + public static int mean( int[] values, final int start, final int length ) { + return (int) Math.round(meanDouble(values, start, length)); + } + + + + + /** + * Average + * @param values values in int + * @return average + */ + public static int mean( int[] values, final int length ) { + return (int) Math.round(meanDouble(values, 0, length)); + } + + + /** + * Average + * @param values values in int + * @return average + */ + public static int mean( int[] values ) { + + return (int) Math.round(meanDouble(values, 0, values.length)); + } + + + + /** + * Calculate Variance. + * + * @param values values + * @param start start + * @param length length + * @return variance + */ + public static int variance(int[] values, final int start, final int length) { + return (int) Math.round(varianceDouble(values, start, length)); + } + + + private static double meanDouble( int[] values, final int start, final int length ) { + double mean = ((double)bigSum(values, start, length))/ ((double) length); + return mean; + } + + + + /** + * Calculate Variance. + * + * @param values values + * @param start start + * @param length length + * @return variance + */ + public static double varianceDouble(int[] values, final int start, final int length) { + double mean = meanDouble(values, start, length); + double temp = 0; + for(int index = start; index < length; index++) { + double a = values[index]; + temp += (mean-a)*(mean-a); + } + return temp / length; + } + + + /** + * Calculate Variance. + * + * @param values values + * @param length length + * @return variance + */ + public static int variance(int[] values, final int length) { + return (int) Math.round(varianceDouble(values, 0, length)); + } + + + /** + * Calculate Variance. + * + * @param values values + * @return variance + */ + public static int variance(int[] values) { + return (int) Math.round(varianceDouble(values, 0, values.length)); + } + + + /** + * Calculate standard deviation. + * + * @param values values + * @param start start + * @param length length + * @return standard deviation + */ + public static int standardDeviation(int[] values, final int start, final int length) { + double variance = varianceDouble(values, start, length); + return (int)Math.round(Math.sqrt(variance)); + } + + + /** + * Calculate standard deviation. + * + * @param values values + * @param length length + * @return standard deviation + */ + public static int standardDeviation(int[] values, final int length) { + double variance = varianceDouble(values, 0, length); + return (int)Math.round(Math.sqrt(variance)); + } + + + /** + * Calculate standard deviation. + * + * @param values values + * @return standard deviation + */ + public static int standardDeviation(int[] values) { + double variance = varianceDouble(values, 0, values.length); + return (int)Math.round(Math.sqrt(variance)); + } + + + /** + * Calculate Median + * + * @param start start + * @param values values + * @param length length + * @return median + */ + public static int median(int[] values, final int start, final int length) { + int[] sorted = new int[length]; + System.arraycopy(values, start, sorted, 0, length); + Arrays.sort(sorted); + + if (length % 2 == 0) { + int middle = sorted.length / 2; + double median = (sorted[middle-1] + sorted[middle]) / 2.0; + return (int) Math.round(median); + } else { + return sorted[sorted.length / 2]; + } + } + + + /** + * Calculate Median + * @param values values + * @param length length + * @return median + */ + public static int median(int[] values, final int length) { + return median(values, 0, length); + } + + + /** + * Calculate Median + * @param values values + * @return median + */ + public static int median(int[] values) { + return median(values, 0, values.length); + } + + + + /** + * Checks to see if two arrays are equals + * @param expected expected array + * @param got got array + * @return true if equal or false if not. + */ + public static boolean equals(int start, int end, int[] expected, int[] got) { + + if (expected.length != got.length) { + return false; + } + + for (int index=start; index< end; index++) { + if (expected[index]!= got[index]) { + return false; + } + } + return true; + } + + public static int hashCode(int array[]) { + if (array == null) + return 0; + + int result = 1; + for (int element : array) { + + result = 31 * result + element; + } + + return result; + } + + public static int hashCode(int start, int end, int array[]) { + if (array == null) + return 0; + + int result = 1; + + for (int index=start; index< end; index++) { + + result = 31 * result + array[index]; + } + + return result; + } + + + /** + * Calculate a sum of a property from a list. + * @param inputList + * @param propertyPath to item we want to sum + * @return sum + */ + public static long sum( Collection inputList, String propertyPath ) { + if (inputList.size() == 0 ) { + return 0; + } + + long sum = 0l; + + if (propertyPath.contains(".") || propertyPath.contains("[")) { + + String[] properties = StringScanner.splitByDelimiters(propertyPath, ".[]"); + + for (Object o : inputList) { + sum+=BeanUtils.getPropertyInt(o, properties); + } + + } else { + + Map fields = BeanUtils.getFieldsFromObject(inputList.iterator().next()); + FieldAccess fieldAccess = fields.get(propertyPath); + for (Object o : inputList) { + sum += fieldAccess.getInt(o); + } + } + + return sum; + } + + private static double mean( Collection inputList, String propertyPath ) { + double mean = sum(inputList, propertyPath)/inputList.size(); + return Math.round(mean); + } + + + public static double variance(Collection inputList, String propertyPath) { + double mean = mean(inputList, propertyPath); + double temp = 0; + + + double a; + + if (propertyPath.contains(".") || propertyPath.contains("[")) { + + String[] properties = StringScanner.splitByDelimiters(propertyPath, ".[]"); + + for (Object o : inputList) { + a =BeanUtils.getPropertyInt(o, properties); + temp += (mean-a)*(mean-a); + } + + } else { + + Map fields = BeanUtils.getFieldsFromObject(inputList.iterator().next()); + FieldAccess fieldAccess = fields.get(propertyPath); + for (Object o : inputList) { + a = fieldAccess.getInt(o); + temp += (mean-a)*(mean-a); + } + } + + return Math.round(temp / inputList.size()); + + } + + + + /** + * Calculate standard deviation. + * + * @return standard deviation + */ + public static double standardDeviation(Collection inputList, String propertyPath) { + double variance = variance(inputList, propertyPath); + return Math.round(Math.sqrt(variance)); + } + + /** + * Calculate standard deviation. + * + * @return standard deviation + */ + public static int median(Collection inputList, String propertyPath) { + return IntList.toIntList(inputList, propertyPath).median(); + } + + + /** + * Round up to the nearest power of 2 + * @param number number you want to round up to. + * @return rounded up to the power of 2. + */ + public static int roundUpToPowerOf2( int number ) { + int rounded = number >= 1_000 + ? 1_000 + : ( rounded = Integer.highestOneBit( number ) ) != 0 + ? ( Integer.bitCount( number ) > 1 ) ? rounded << 1 : rounded + : 1; + + return rounded; + } + +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/primitive/Lng.java b/datastructures-json-boon/src/main/java/org/boon/primitive/Lng.java new file mode 100644 index 0000000..03d7d82 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/primitive/Lng.java @@ -0,0 +1,1242 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.primitive; + +import org.boon.Exceptions; +import org.boon.Universal; +import org.boon.core.reflection.Invoker; + +import java.lang.invoke.ConstantCallSite; +import java.lang.invoke.MethodHandle; +import java.lang.reflect.Method; +import java.util.Arrays; + +import static org.boon.Exceptions.die; +import static org.boon.Exceptions.handle; + + +public class Lng { + + + public static String str( long value ) { + return String.format( "%,d", value ); + } + + + public static long[] grow( long[] array, final int size ) { + Exceptions.requireNonNull( array ); + + long[] newArray = new long[ array.length + size ]; + System.arraycopy( array, 0, newArray, 0, array.length ); + return newArray; + } + + + public static long[] grow( long[] array ) { + Exceptions.requireNonNull( array ); + + long[] newArray = new long[ array.length * 2 ]; + System.arraycopy( array, 0, newArray, 0, array.length ); + return newArray; + } + + + public static long[] shrink( long[] array, int size ) { + Exceptions.requireNonNull( array ); + + long[] newArray = new long[ array.length - size ]; + + System.arraycopy( array, 0, newArray, 0, array.length - size ); + return newArray; + } + + + public static long[] compact( long[] array ) { + Exceptions.requireNonNull( array ); + + int nullCount = 0; + for ( long ch : array ) { + + if ( ch == '\0' ) { + nullCount++; + } + } + long[] newArray = new long[ array.length - nullCount ]; + + int j = 0; + for ( long ch : array ) { + + if ( ch == '\0' ) { + continue; + } + + newArray[ j ] = ch; + j++; + } + return newArray; + } + + + /** + * Creates an array of bytes + * + * @param size size of the array you want to make + * @return + */ + public static long[] arrayOfLong( final int size ) { + return new long[ size ]; + } + + /** + * @param array + * @return + */ + @Universal + public static long[] array( final long... array ) { + Exceptions.requireNonNull( array ); + return array; + } + + + @Universal + public static int len( long[] array ) { + return array.length; + } + + + @Universal + public static int lengthOf( long[] array ) { + return array.length; + } + + + @Universal + public static long idx( final long[] array, final int index ) { + final int i = calculateIndex( array, index ); + + return array[ i ]; + } + + + @Universal + public static long atIndex( final long[] array, final int index ) { + final int i = calculateIndex( array, index ); + + return array[ i ]; + } + + + @Universal + public static void idx( final long[] array, int index, long value ) { + final int i = calculateIndex( array, index ); + + array[ i ] = value; + } + + + @Universal + public static void atIndex( final long[] array, int index, long value ) { + final int i = calculateIndex( array, index ); + + array[ i ] = value; + } + + + @Universal + public static long[] slc( long[] array, int startIndex, int endIndex ) { + + final int start = calculateIndex( array, startIndex ); + final int end = calculateEndIndex( array, endIndex ); + final int newLength = end - start; + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, end index %d, length %d", + startIndex, endIndex, array.length ) + ); + } + + long[] newArray = new long[ newLength ]; + System.arraycopy( array, start, newArray, 0, newLength ); + return newArray; + } + + + @Universal + public static long[] sliceOf( long[] array, int startIndex, int endIndex ) { + + final int start = calculateIndex( array, startIndex ); + final int end = calculateEndIndex( array, endIndex ); + final int newLength = end - start; + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, end index %d, length %d", + startIndex, endIndex, array.length ) + ); + } + + long[] newArray = new long[ newLength ]; + System.arraycopy( array, start, newArray, 0, newLength ); + return newArray; + } + + + @Universal + public static long[] slc( long[] array, int startIndex ) { + + final int start = calculateIndex( array, startIndex ); + final int newLength = array.length - start; + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, length %d", + startIndex, array.length ) + ); + } + + long[] newArray = new long[ newLength ]; + System.arraycopy( array, start, newArray, 0, newLength ); + return newArray; + } + + + @Universal + public static long[] sliceOf( long[] array, int startIndex ) { + + final int start = calculateIndex( array, startIndex ); + final int newLength = array.length - start; + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, length %d", + startIndex, array.length ) + ); + } + + long[] newArray = new long[ newLength ]; + System.arraycopy( array, start, newArray, 0, newLength ); + return newArray; + } + + @Universal + public static long[] slcEnd( long[] array, int endIndex ) { + + final int end = calculateEndIndex( array, endIndex ); + final int newLength = end; // + (endIndex < 0 ? 1 : 0); + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, length %d", + endIndex, array.length ) + ); + } + + long[] newArray = new long[ newLength ]; + System.arraycopy( array, 0, newArray, 0, newLength ); + return newArray; + } + + + @Universal + public static long[] endSliceOf( long[] array, int endIndex ) { + + final int end = calculateEndIndex( array, endIndex ); + final int newLength = end; // + (endIndex < 0 ? 1 : 0); + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, length %d", + endIndex, array.length ) + ); + } + + long[] newArray = new long[ newLength ]; + System.arraycopy( array, 0, newArray, 0, newLength ); + return newArray; + } + + @Universal + public static boolean in( long value, long[] array ) { + for ( long currentValue : array ) { + if ( currentValue == value ) { + return true; + } + } + return false; + } + + + @Universal + public static long[] copy( long[] array ) { + Exceptions.requireNonNull( array ); + long[] newArray = new long[ array.length ]; + System.arraycopy( array, 0, newArray, 0, array.length ); + return newArray; + } + + + @Universal + public static long[] add( long[] array, long v ) { + Exceptions.requireNonNull( array ); + long[] newArray = new long[ array.length + 1 ]; + System.arraycopy( array, 0, newArray, 0, array.length ); + newArray[ array.length ] = v; + return newArray; + } + + @Universal + public static long[] add( long[] array, long[] array2 ) { + Exceptions.requireNonNull( array ); + long[] newArray = new long[ array.length + array2.length ]; + System.arraycopy( array, 0, newArray, 0, array.length ); + System.arraycopy( array2, 0, newArray, array.length, array2.length ); + return newArray; + } + + + @Universal + public static long[] insert( final long[] array, final int idx, final long v ) { + Exceptions.requireNonNull( array ); + + if ( idx >= array.length ) { + return add( array, v ); + } + + final int index = calculateIndex( array, idx ); + + //Object newArray = Array.newInstance(array.getClass().getComponentType(), array.length+1); + long[] newArray = new long[ array.length + 1 ]; + + if ( index != 0 ) { + /* Copy up to the length in the array before the index. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, 0, newArray, 0, index ); + } + + + boolean lastIndex = index == array.length - 1; + int remainingIndex = array.length - index; + + if ( lastIndex ) { + /* Copy the area after the insert. Make sure we don't write over the end. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, index, newArray, index + 1, remainingIndex ); + + } else { + /* Copy the area after the insert. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, index, newArray, index + 1, remainingIndex ); + + } + + newArray[ index ] = v; + return newArray; + } + + + @Universal + public static long[] insert( final long[] array, final int fromIndex, final long[] values ) { + Exceptions.requireNonNull( array ); + + if ( fromIndex >= array.length ) { + return add( array, values ); + } + + final int index = calculateIndex( array, fromIndex ); + + //Object newArray = Array.newInstance(array.getClass().getComponentType(), array.length+1); + long[] newArray = new long[ array.length + values.length ]; + + if ( index != 0 ) { + /* Copy up to the length in the array before the index. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, 0, newArray, 0, index ); + } + + + boolean lastIndex = index == array.length - 1; + + int toIndex = index + values.length; + int remainingIndex = newArray.length - toIndex; + + if ( lastIndex ) { + /* Copy the area after the insert. Make sure we don't write over the end. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, index, newArray, index + values.length, remainingIndex ); + + } else { + /* Copy the area after the insert. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, index, newArray, index + values.length, remainingIndex ); + + } + + for ( int i = index, j = 0; i < toIndex; i++, j++ ) { + newArray[ i ] = values[ j ]; + } + return newArray; + } + + + /* End universal methods. */ + private static int calculateIndex( long[] array, int originalIndex ) { + final int length = array.length; + + Exceptions.requireNonNull( array, "array cannot be null" ); + + + int index = originalIndex; + + /* Adjust for reading from the right as in + -1 reads the 4th element if the length is 5 + */ + if ( index < 0 ) { + index = length + index; + } + + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + if ( index < 0 ) { + index = 0; + } + if ( index >= length ) { + index = length - 1; + } + return index; + } + + + + /* End universal methods. */ + private static int calculateEndIndex( long[] array, int originalIndex ) { + final int length = array.length; + + Exceptions.requireNonNull( array, "array cannot be null" ); + + + int index = originalIndex; + + /* Adjust for reading from the right as in + -1 reads the 4th element if the length is 5 + */ + if ( index < 0 ) { + index = length + index; + } + + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + if ( index < 0 ) { + index = 0; + } + if ( index > length ) { + index = length; + } + return index; + } + + + /** Public interface for a very fast reduce by. */ + public static interface ReduceBy { + long reduce(long sum, long value); + } + + /** + * A very fast reduce by. + * If performance is your thing, this seems to be as fast a plain for loop when benchmarking with JMH. + * + * @param array array of items to reduce by + * @param reduceBy reduceBy interface + * @return the final value + */ + public static long reduceBy( final long[] array, ReduceBy reduceBy ) { + + + long sum = 0; + for ( long v : array ) { + sum = reduceBy.reduce(sum, v); + } + return sum; + } + + /** + * + * @param array array of items to reduce by + * @param start where to start in the array + * @param length where to end in the array + * @param reduceBy the function to do the reduce by + * @return the reduction + */ + public static long reduceBy( final long[] array, final int start, final int length, ReduceBy reduceBy ) { + + + long sum = 0; + + for (int index = start; index < length; index++) { + long v = array[index]; + sum = reduceBy.reduce(sum, v); + } + return sum; + } + + + /** + * + * @param array array of items to reduce by + * @param length where to end in the array + * @param reduceBy the function to do the reduce by + * @return the reduction + */ + public static long reduceBy( final long[] array, final int length, ReduceBy reduceBy ) { + + + long sum = 0; + + for (int index = 0; index < length; index++) { + long v = array[index]; + sum = reduceBy.reduce(sum, v); + } + return sum; + } + + + + + /** + * Reduce by functional support for int arrays. + * @param array array of items to reduce by + * @param object object that contains the reduce by function + * @param the type of object + * @return the final reduction + */ + public static long reduceBy( final long[] array, T object ) { + if (object.getClass().isAnonymousClass()) { + return reduceByR(array, object ); + } + + + try { + ConstantCallSite callSite = Invoker.invokeReducerLongIntReturnLongMethodHandle(object); + MethodHandle methodHandle = callSite.dynamicInvoker(); + try { + + long sum = 0; + for ( long v : array ) { + sum = (long) methodHandle.invokeExact( sum, v ); + + } + return sum; + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + } catch (Exception ex) { + return reduceByR(array, object); + } + + } + + + + + + /** + * Reduce by functional support for int arrays. + * @param array array of items to reduce by + * @param object object that contains the reduce by function + * @param the type of object + * @return the final reduction + */ + public static long reduceBy( final long[] array, T object, String methodName ) { + + if (object.getClass().isAnonymousClass()) { + return reduceByR(array, object, methodName); + } + + try { + ConstantCallSite callSite = Invoker.invokeReducerLongIntReturnLongMethodHandle(object, methodName); + MethodHandle methodHandle = callSite.dynamicInvoker(); + try { + + long sum = 0; + for ( long v : array ) { + sum = (long) methodHandle.invokeExact( sum, v ); + + } + return sum; + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + } catch (Exception ex) { + return reduceByR(array, object, methodName); + } + + + } + + + /** + * Fallback to reflection if the call-site will not work or did not work + * @param array array of items to reduce by + * @param object function object + * @param type of function object. + * @return + */ + private static long reduceByR( final long[] array, T object ) { + try { + + Method method = Invoker.invokeReducerLongIntReturnLongMethod(object); + + + long sum = 0; + for ( long v : array ) { + sum = (long) method.invoke(object, sum, v); + + } + return sum; + + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + + } + + + /** + * Reflection based reduce by. + * @param array array of items to reduce by + * @param object function + * @param methodName name of method + * @param type of function + * @return reduction + */ + private static long reduceByR( final long[] array, T object, String methodName ) { + try { + + Method method = Invoker.invokeReducerLongIntReturnLongMethod(object, methodName); + + + long sum = 0; + for ( long v : array ) { + sum = (long) method.invoke(object, sum, v); + + } + return sum; + + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + + } + + + + /** + * Reflection based reduce by. + * @param array array of items to reduce by + * @param object function + * @param methodName name of method + * @param type of function + * @return reduction + */ + private static long reduceByR( final long[] array, int length, T object, String methodName ) { + try { + + Method method = Invoker.invokeReducerLongIntReturnLongMethod(object, methodName); + + + long sum = 0; + for (int index=0; index< length; index++) { + long v = array[index]; + sum = (long) method.invoke(object, sum, v); + + } + return sum; + + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + + } + + + /** + * Reflection based reduce by. + * @param array array of items to reduce by + * @param object function + * @param type of function + * @return reduction + */ + private static long reduceByR( final long[] array, int length, T object ) { + try { + + Method method = Invoker.invokeReducerLongIntReturnLongMethod(object); + + + long sum = 0; + for (int index=0; index< length; index++) { + long v = array[index]; + sum = (long) method.invoke(object, sum, v); + + } + return sum; + + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + + } + + /** + * Reduce By + * @param array array of items to reduce by + * @param length where to end in the array + * @param object function + * @return reduction + */ + public static long reduceBy( final long[] array, int length, + Object object ) { + + + if (object.getClass().isAnonymousClass()) { + return reduceByR(array, length, object ); + } + + try { + ConstantCallSite callSite = Invoker.invokeReducerLongIntReturnLongMethodHandle(object ); + MethodHandle methodHandle = callSite.dynamicInvoker(); + try { + + long sum = 0; + for (int index=0; index < length; index++) { + long v = array[index]; + sum = (long) methodHandle.invokeExact( sum, v ); + + } + return sum; + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + } catch (Exception ex) { + return reduceByR(array, length, object ); + } + + + } + + + + /** + * Reduce By + * @param array array of items to reduce by + * @param length where to end in the array + * @param function function + * @param function functionName + * @return reduction + */ + public static long reduceBy( final long[] array, int length, + Object function, String functionName ) { + + + if (function.getClass().isAnonymousClass()) { + return reduceByR(array, length, function, functionName ); + } + + try { + ConstantCallSite callSite = Invoker.invokeReducerLongIntReturnLongMethodHandle(function, functionName ); + MethodHandle methodHandle = callSite.dynamicInvoker(); + try { + + long sum = 0; + for (int index=0; index < length; index++) { + long v = array[index]; + sum = (long) methodHandle.invokeExact( sum, v ); + + } + return sum; + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + } catch (Exception ex) { + return reduceByR(array, length, function, functionName ); + } + + + } + + + /** + * Reduce By + * @param array array of items to reduce by + * @param length where to end in the array + * @param object function + * @return reduction + */ + public static long reduceBy( final long[] array, int start, int length, + Object object ) { + + + if (object.getClass().isAnonymousClass()) { + return reduceByR(array, object ); + } + + try { + ConstantCallSite callSite = Invoker.invokeReducerLongIntReturnLongMethodHandle(object ); + MethodHandle methodHandle = callSite.dynamicInvoker(); + try { + + long sum = 0; + for (int index=start; index < length; index++) { + long v = array[index]; + sum = (long) methodHandle.invokeExact( sum, v ); + + } + return sum; + } catch (Throwable throwable) { + return handle(Long.class, throwable, "Unable to perform reduceBy"); + } + } catch (Exception ex) { + return reduceByR(array, object ); + } + + } + + /** + * Some quick validation for an expected value + * @param expected expected this + * @param got got this + * @return returns true or throws an exception + */ + public static boolean equalsOrDie(long expected, long got) { + if (expected != got) { + return die(Boolean.class, "Expected was", expected, "but we got ", got); + } + return true; + } + + + /** + * Some quick validation for an expected value + * @param expected expected this + * @param got got this + * @return returns true or false + */ + public static boolean equals(long expected, long got) { + + return expected == got; + } + + + + /** + * Sum + * @param values values in int + * @return sum + */ + public static long sum( long[] values ) { + return sum(values, 0, values.length); + } + + + /** + * Sum + * @param values values in int + * @return sum + */ + public static long sum( long[] values, int length ) { + return sum(values, 0, length); + } + + /** + * Big Sum + * @param values values in int + * @return sum + */ + public static long sum( long[] values, int start, int length ) { + long sum = 0; + for (int index = start; index < length; index++ ) { + sum+= values[index]; + } + return sum; + } + + + + /** + * Max + * @param values values in int + * @return max + */ + public static long max( long[] values, final int start, final int length ) { + long max = Long.MIN_VALUE; + for (int index = start; index < length; index++ ) { + if ( values[index] > max ) { + max = values[index]; + } + } + + return max; + } + + + /** + * max + * @param values values in int + * @return max + */ + public static long max( long[] values ) { + return max(values, 0, values.length); + } + + + /** + * max + * @param values values in int + * @return max + */ + public static long max( long[] values, int length ) { + return max(values, 0, length); + } + + + /** + * Min + * @param values values in int + * @return min + */ + public static long min( long[] values, final int start, final int length ) { + long min = Long.MAX_VALUE; + for (int index = start; index < length; index++ ) { + if (values[index] < min) min = values[index]; + } + return min; + } + + + /** + * Min + * @param values values in int + * @return min + */ + public static long min( long[] values ) { + return min(values, 0, values.length); + } + + + /** + * Min + * @param values values in int + * @return min + */ + public static long min( long[] values, int length ) { + return min(values, 0, length); + } + + + + + /** + * Average + * @param values values in int + * @return average + */ + public static long mean( long[] values, final int start, final int length ) { + return (long) Math.round(meanDouble(values, start, length)); + } + + + + + /** + * Average + * @param values values in int + * @return average + */ + public static long mean( long[] values, final int length ) { + return Math.round(meanDouble(values, 0, length)); + } + + + /** + * Average + * @param values values in int + * @return average + */ + public static long mean( long[] values ) { + + return Math.round(meanDouble(values, 0, values.length)); + } + + + /** + * Calculates variance + * @param values values + * @param start start + * @param length length + * @return variance + */ + public static long variance(long[] values, final int start, final int length) { + return (long) Math.round(varianceDouble(values, start, length)); + } + + + /** + * Used internally to avoid loss and rounding errors a bit. + * @param values values + * @param start start + * @param length length + * @return meanDouble + */ + public static double meanDouble( long[] values, final int start, final int length ) { + double mean = ((double)sum(values, start, length))/ ((double) length); + return mean; + } + + /** + * Internal to avoid rounding errors + * @param values values + * @param start start + * @param length length + * @return double value + */ + public static double varianceDouble(long[] values, final int start, final int length) { + double mean = meanDouble(values, start, length); + double temp = 0; + for(int index = start; index < length; index++) { + double a = values[index]; + temp += (mean-a)*(mean-a); + } + return temp / length; + } + + /** + * Calculate variance + * @param values + * @param length + * @return variance + */ + public static long variance(long[] values, final int length) { + return Math.round(varianceDouble(values, 0, length)); + } + + /** + * Calculate variance + * @param values + * @return variance + */ + public static long variance(long[] values) { + return Math.round(varianceDouble(values, 0, values.length)); + } + + /** + * Calculate standard deviation. + * + * @param values values + * @param start start + * @param length length + * @return standard deviation + */ + public static long standardDeviation(long[] values, final int start, final int length) { + double variance = varianceDouble(values, start, length); + return (int)Math.round(Math.sqrt(variance)); + } + + /** + * Calculate standard deviation. + * @param values values + * @param length length + * @return standard deviation + */ + public static long standardDeviation(long[] values, final int length) { + double variance = varianceDouble(values, 0, length); + return Math.round(Math.sqrt(variance)); + } + + + /** + * Calculate Standard Deviation + * @param values values + * @return standardDeviation + */ + public static int standardDeviation(long[] values) { + double variance = varianceDouble(values, 0, values.length); + return (int)Math.round(Math.sqrt(variance)); + } + + /** + * Calculate Median + * @param values values + * @param start start + * @param length length + * @return median + */ + public static long median(long[] values, final int start, final int length) { + long[] sorted = new long[length]; + System.arraycopy(values, start, sorted, 0, length); + Arrays.sort(sorted); + + if (length % 2 == 0) { + int middle = sorted.length / 2; + double median = (sorted[middle-1] + sorted[middle]) / 2.0; + return Math.round(median); + } else { + return sorted[sorted.length / 2]; + } + } + + + /** + * Calculate Median + * @param values values + * @param length length + * @return median + */ + public static long median(long[] values, final int length) { + return median(values, 0, length); + } + + + /** + * Calculate Median + * @param values values + * @return median + */ + public static long median(long[] values) { + return median(values, 0, values.length); + } + + + + /** + * Checks to see if two arrays are equals + * @param expected expected array + * @param got got array + * @return true if equal or throws exception if not. + */ + public static boolean equalsOrDie(long[] expected, long[] got) { + + if (expected.length != got.length) { + die("Lengths did not match, expected length", expected.length, + "but got", got.length); + } + + for (int index=0; index< expected.length; index++) { + if (expected[index]!= got[index]) { + die("value at index did not match index", index , "expected value", + expected[index], + "but got", got[index]); + + } + } + return true; + } + + + /** + * Checks to see if two arrays are equals + * @param expected expected array + * @param got got array + * @return true if equal or false if not. + */ + public static boolean equals(long[] expected, long[] got) { + + if (expected.length != got.length) { + return false; + } + + for (int index=0; index< expected.length; index++) { + if (expected[index]!= got[index]) { + return false; + } + } + return true; + } + + + /** + * Checks to see if two arrays are equals + * @param expected expected array + * @param got got array + * @return true if equal or false if not. + */ + public static boolean equals(int start, int end, long[] expected, long[] got) { + + if (expected.length != got.length) { + return false; + } + + for (int index=start; index< end; index++) { + if (expected[index]!= got[index]) { + return false; + } + } + return true; + } + + public static int hashCode(long array[]) { + if (array == null) + return 0; + + int result = 1; + for (long element : array) { + int elementHash = (int)(element ^ (element >>> 32)); + result = 31 * result + elementHash; + } + + return result; + } + + public static int hashCode(int start, int end, long array[]) { + if (array == null) + return 0; + + int result = 1; + + for (int index=start; index< end; index++) { + long element = array[index]; + int elementHash = (int)(element ^ (element >>> 32)); + result = 31 * result + elementHash; + + } + + return result; + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/primitive/Output.java b/datastructures-json-boon/src/main/java/org/boon/primitive/Output.java new file mode 100644 index 0000000..e5378bb --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/primitive/Output.java @@ -0,0 +1,112 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.primitive; + + +public interface Output { + + void write( int b ); + + void write( byte[] b ); + + void write( byte[] b, int off, int len ); + + void writeBoolean( boolean v ); + + void writeByte( byte v ); + + void writeUnsignedByte( short v ); + + void writeShort( short v ); + + void writeUnsignedShort( int v ); + + void writeChar( char v ); + + void writeInt( int v ); + + void writeUnsignedInt( long v ); + + void writeLong( long v ); + + void writeFloat( float v ); + + void writeDouble( double v ); + + + void writeLargeString( String s ); + + void writeSmallString( String s ); + + void writeMediumString( String s ); + + void writeLargeByteArray( byte[] bytes ); + + void writeSmallByteArray( byte[] bytes ); + + void writeMediumByteArray( byte[] bytes ); + + + void writeLargeShortArray( short[] values ); + + void writeSmallShortArray( short[] values ); + + void writeMediumShortArray( short[] values ); + + + void writeLargeIntArray( int[] values ); + + void writeSmallIntArray( int[] values ); + + void writeMediumIntArray( int[] values ); + + + void writeLargeLongArray( long[] values ); + + void writeSmallLongArray( long[] values ); + + void writeMediumLongArray( long[] values ); + + void writeLargeFloatArray( float[] values ); + + void writeSmallFloatArray( float[] values ); + + void writeMediumFloatArray( float[] values ); + + + void writeLargeDoubleArray( double[] values ); + + void writeSmallDoubleArray( double[] values ); + + void writeMediumDoubleArray( double[] values ); + + //TODO addObject unsigned int, unsigned byte, unsigned short array + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/primitive/ReaderCharacterSource.java b/datastructures-json-boon/src/main/java/org/boon/primitive/ReaderCharacterSource.java new file mode 100644 index 0000000..aafca71 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/primitive/ReaderCharacterSource.java @@ -0,0 +1,396 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.primitive; + +import org.boon.Exceptions; + +import java.io.*; +import java.util.Arrays; + +import static org.boon.Exceptions.die; + +public class ReaderCharacterSource implements CharacterSource { + + + private static final int MAX_TOKEN_SIZE=5; + + private final Reader reader; + private int readAheadSize; + + private int ch = -2; + + private boolean foundEscape; + + + private char[] readBuf; + + + private int index; + + private int length; + + + boolean more = true; + private boolean done = false; + + + + public ReaderCharacterSource( final Reader reader, final int readAheadSize) { + this.reader = reader; + this.readBuf = new char[readAheadSize + MAX_TOKEN_SIZE]; + this.readAheadSize = readAheadSize; + } + + + public ReaderCharacterSource( final Reader reader ) { + this.reader = reader; + this.readAheadSize = 10_000; + this.readBuf = new char[ readAheadSize + MAX_TOKEN_SIZE ]; + } + + public ReaderCharacterSource( final String string ) { + this(new StringReader ( string )); + } + + + private void readForToken() { + try { + length += reader.read ( readBuf, readBuf.length-MAX_TOKEN_SIZE, MAX_TOKEN_SIZE ); + } catch ( IOException e ) { + Exceptions.handle ( e ); + } + } + + private void ensureBuffer() { + + try { + if (index >= length && !done) { + readNextBuffer (); + } else if (done && index >=length) { + more = false; + }else { + more = true; + } + } catch ( Exception ex ) { + String str = CharScanner.errorDetails ( "ensureBuffer issue", readBuf, index, ch ); + Exceptions.handle ( str, ex ); + } + } + + private void readNextBuffer() throws IOException { + + + length = reader.read ( readBuf, 0, readAheadSize ); + + + index = 0; + if (length == -1) { + ch = -1; + length = 0; + more = false; + done = true; + } else { + more = true; + } + } + + @Override + public final int nextChar() { + ensureBuffer(); + return ch = readBuf[index++]; + } + + @Override + public final int currentChar() { + ensureBuffer(); + return readBuf[index]; + } + + @Override + public final boolean hasChar() { + ensureBuffer(); + return more; + } + + @Override + public final boolean consumeIfMatch( char[] match ) { + try { + + char [] _chars = readBuf; + int i=0; + int idx = index; + boolean ok = true; + + if ( idx + match.length > length ) { + readForToken (); + } + + for (; i < match.length; i++, idx++) { + ok &= ( match[i] == _chars[idx] ); + if (!ok) break; + } + + if ( ok ) { + index = idx; + return true; + } else { + return false; + } + } catch (Exception ex) { + String str = CharScanner.errorDetails ( "consumeIfMatch issue", readBuf, index, ch ); + return Exceptions.handle ( boolean.class, str, ex ); + } + + } + + @Override + public final int location() { + return index; + } + + public final int safeNextChar() { + try { + ensureBuffer(); + return index + 1 < readBuf.length ? readBuf[index++] : -1; + } catch (Exception ex) { + String str = CharScanner.errorDetails ( "safeNextChar issue", readBuf, index, ch ); + return Exceptions.handle ( int.class, str, ex ); + } + } + + + private final char[] EMPTY_CHARS = new char[0]; + + + @Override + public final char[] findNextChar( int match, int esc ) { + return findNextChar(false, false, match, esc); + } + + /** + * Remember that this must work past buffer reader boundaries so we need to keep + * track where we were in the nested run. + * + * If we start with match then we skip to the the next match. + * + * @param inMiddleOfString In the middle of a string. + * @param wasEscapeChar If we were called before (recursion), where we in the escape character state. + * @param match The match char is usually '"' + * @param esc The escape char is usually '\' + * @return the string from the next char. + */ + public final char[] findNextChar( boolean inMiddleOfString, boolean wasEscapeChar, int match, int esc ) { + try{ + ensureBuffer(); //grow the buffer and read in if needed + + + int idx = index; + char[] _chars = readBuf; + + int length = this.length; + + + int ch = this.ch; + + if ( !inMiddleOfString ) { + foundEscape=false; + + if ( ch == match ) { //we can start with a match but we + // ignore it if we are not in the middle of a string. + + } else if ( idx < length -1 ) { + ch = _chars[idx]; + + + if (ch == match ) { + idx++; + } + } + } + if ( idx < length ) { + ch = _chars[idx]; + } + + /* Detect an empty string and then leave unless we came into this method in the escape state.. */ + if (ch == '"' && !wasEscapeChar) { + + index = idx; + index++; + return EMPTY_CHARS; + } + int start = idx; + + if (wasEscapeChar) { + idx++; + } + + boolean foundEnd = false; //Have we actually found the end of the string? + char [] results ; //The results so far might be the whole thing if we found the end. + + boolean _foundEscape = false; + + /* Iterate through the buffer looking for the match which is the close quote most likely. */ + while (true) { + ch = _chars[idx]; + + + /* If we found the close quote " or the escape character \ */ + if ( ch == match || ch == esc ) { + if ( ch == match ) { + foundEnd = true; + break; + } else if ( ch == esc ) { + wasEscapeChar = true; + _foundEscape = true; + + /** if we are dealing with an escape then see if the escaped char is a match + * if so, skip it. + */ + if ( idx + 1 < length) { + + wasEscapeChar=false; //this denotes if we were able to skip because + // if we were not then the next method in the recursion has to if we don't find the end. + idx++; + } + } + } + + + if ( idx >= length) break; + idx++; + } + + + foundEscape = _foundEscape; + + /* After all that, we still might have an empty string! */ + if (idx == 0 ) { + results = EMPTY_CHARS; + } else { + results = Arrays.copyOfRange ( _chars, start, idx ); + } + + // At this point we have some results but it might not be all of the results if we did not + // find the close '"' (match) + index = idx; + + + /* We found everthing so make like a tree and leave. */ + if (foundEnd) { + index++; + if (index < length) { + ch = _chars[index ]; + this.ch = ch; + } + return results; + /* We did not find everything so prepare for the next buffer read. */ + } else { + /* Detect if we have more buffers to read. */ + if (index >= length && !done) { + + /*If we have more to read then read it. */ + ensureBuffer(); + /* Recursively call this method. */ + char results2[] = findNextChar(true, wasEscapeChar, match, esc); + return Chr.add(results, results2); + } else { + return die (char[].class, "Unable to find close char " + (char)match + " " + new String(results)); + } + } + } catch (Exception ex ) { + String str = CharScanner.errorDetails ( "findNextChar issue", readBuf, index, ch ); + return Exceptions.handle ( char[].class, str, ex ); + } + + + } + + @Override + public boolean hadEscape() { + return foundEscape; + } + + + @Override + public void skipWhiteSpace() { + try { + index = CharScanner.skipWhiteSpace( readBuf, index, length ); + if (index >= length && more) { + + ensureBuffer(); + + skipWhiteSpace(); + } + } catch ( Exception ex ) { + + + ex.printStackTrace(); + String str = CharScanner.errorDetails ( "skipWhiteSpaceIfNeeded issue", readBuf, index, ch ); + Exceptions.handle ( ex, str, "\n\nLENGTH", length, "INDEX", index ); + } + } + + + + + + + + public char[] readNumber( ) { + try { + ensureBuffer(); + + char [] results = CharScanner.readNumber( readBuf, index, length); + index += results.length; + + if (index >= length && more) { + ensureBuffer(); + if (length!=0) { + char results2[] = readNumber(); + return Chr.add(results, results2); + } else { + return results; + } + } else { + return results; + } + } catch (Exception ex) { + String str = CharScanner.errorDetails ( "readNumber issue", readBuf, index, ch ); + return Exceptions.handle ( char[].class, str, ex ); + } + + } + + @Override + public String errorDetails( String message ) { + + return CharScanner.errorDetails ( message, readBuf, index, ch ); + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/primitive/Shrt.java b/datastructures-json-boon/src/main/java/org/boon/primitive/Shrt.java new file mode 100644 index 0000000..a6692c8 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/primitive/Shrt.java @@ -0,0 +1,511 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.primitive; + +import org.boon.Exceptions; +import org.boon.Universal; +import org.boon.core.reflection.Invoker; + +import static org.boon.Exceptions.die; + + +public class Shrt { + + + + public static short[] shorts( short... array ) { + return array; + } + + public static short[] grow( short[] array, final int size ) { + Exceptions.requireNonNull( array ); + + short[] newArray = new short[ array.length + size ]; + System.arraycopy( array, 0, newArray, 0, array.length ); + return newArray; + } + + + public static short[] grow( short[] array ) { + Exceptions.requireNonNull( array ); + + short[] newArray = new short[ array.length * 2 ]; + System.arraycopy( array, 0, newArray, 0, array.length ); + return newArray; + } + + + public static short[] shrink( short[] array, int size ) { + Exceptions.requireNonNull( array ); + + short[] newArray = new short[ array.length - size ]; + + System.arraycopy( array, 0, newArray, 0, array.length - size ); + return newArray; + } + + + public static short[] compact( short[] array ) { + Exceptions.requireNonNull( array ); + + int nullCount = 0; + for ( short ch : array ) { + + if ( ch == '\0' ) { + nullCount++; + } + } + short[] newArray = new short[ array.length - nullCount ]; + + int j = 0; + for ( short ch : array ) { + + if ( ch == '\0' ) { + continue; + } + + newArray[ j ] = ch; + j++; + } + return newArray; + } + + + /** + * Creates an array of bytes + * + * @param size size of the array you want to make + * @return + */ + public static short[] arrayOfShort( final int size ) { + return new short[ size ]; + } + + /** + * @param array + * @return + */ + @Universal + public static short[] array( final short... array ) { + Exceptions.requireNonNull( array ); + return array; + } + + + @Universal + public static int len( short[] array ) { + return array.length; + } + + + @Universal + public static int lengthOf( short[] array ) { + return array.length; + } + + + + @Universal + public static short idx( final short[] array, final int index ) { + final int i = calculateIndex( array, index ); + + return array[ i ]; + } + + + @Universal + public static void idx( final short[] array, int index, short value ) { + final int i = calculateIndex( array, index ); + + array[ i ] = value; + } + + + @Universal + public static short[] slc( short[] array, int startIndex, int endIndex ) { + + final int start = calculateIndex( array, startIndex ); + final int end = calculateEndIndex( array, endIndex ); + final int newLength = end - start; + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, end index %d, length %d", + startIndex, endIndex, array.length ) + ); + } + + short[] newArray = new short[ newLength ]; + System.arraycopy( array, start, newArray, 0, newLength ); + return newArray; + } + + + @Universal + public static short[] sliceOf( short[] array, int startIndex, int endIndex ) { + + final int start = calculateIndex( array, startIndex ); + final int end = calculateEndIndex( array, endIndex ); + final int newLength = end - start; + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, end index %d, length %d", + startIndex, endIndex, array.length ) + ); + } + + short[] newArray = new short[ newLength ]; + System.arraycopy( array, start, newArray, 0, newLength ); + return newArray; + } + + @Universal + public static short[] slc( short[] array, int startIndex ) { + + final int start = calculateIndex( array, startIndex ); + final int newLength = array.length - start; + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, length %d", + startIndex, array.length ) + ); + } + + short[] newArray = new short[ newLength ]; + System.arraycopy( array, start, newArray, 0, newLength ); + return newArray; + } + + @Universal + public static short[] sliceOf( short[] array, int startIndex ) { + + final int start = calculateIndex( array, startIndex ); + final int newLength = array.length - start; + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, length %d", + startIndex, array.length ) + ); + } + + short[] newArray = new short[ newLength ]; + System.arraycopy( array, start, newArray, 0, newLength ); + return newArray; + } + + @Universal + public static short[] endSliceOf( short[] array, int endIndex ) { + Exceptions.requireNonNull( array ); + + final int end = calculateEndIndex( array, endIndex ); + final int newLength = end; // + (endIndex < 0 ? 1 : 0); + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, length %d", + endIndex, array.length ) + ); + } + + short[] newArray = new short[ newLength ]; + System.arraycopy( array, 0, newArray, 0, newLength ); + return newArray; + } + + @Universal + public static short[] slcEnd( short[] array, int endIndex ) { + Exceptions.requireNonNull( array ); + + final int end = calculateEndIndex( array, endIndex ); + final int newLength = end; // + (endIndex < 0 ? 1 : 0); + + if ( newLength < 0 ) { + throw new ArrayIndexOutOfBoundsException( + String.format( "start index %d, length %d", + endIndex, array.length ) + ); + } + + short[] newArray = new short[ newLength ]; + System.arraycopy( array, 0, newArray, 0, newLength ); + return newArray; + } + + @Universal + public static boolean in( short value, short[] array ) { + for ( short currentValue : array ) { + if ( currentValue == value ) { + return true; + } + } + return false; + } + + + @Universal + public static short[] copy( short[] array ) { + Exceptions.requireNonNull( array ); + short[] newArray = new short[ array.length ]; + System.arraycopy( array, 0, newArray, 0, array.length ); + return newArray; + } + + + @Universal + public static short[] add( short[] array, short v ) { + Exceptions.requireNonNull( array ); + short[] newArray = new short[ array.length + 1 ]; + System.arraycopy( array, 0, newArray, 0, array.length ); + newArray[ array.length ] = v; + return newArray; + } + + @Universal + public static short[] add( short[] array, short[] array2 ) { + Exceptions.requireNonNull( array ); + short[] newArray = new short[ array.length + array2.length ]; + System.arraycopy( array, 0, newArray, 0, array.length ); + System.arraycopy( array2, 0, newArray, array.length, array2.length ); + return newArray; + } + + + @Universal + public static short[] insert( final short[] array, final int idx, final short v ) { + Exceptions.requireNonNull( array ); + + if ( idx >= array.length ) { + return add( array, v ); + } + + final int index = calculateIndex( array, idx ); + + //Object newArray = Array.newInstance(array.getClass().getComponentType(), array.length+1); + short[] newArray = new short[ array.length + 1 ]; + + if ( index != 0 ) { + /* Copy up to the length in the array before the index. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, 0, newArray, 0, index ); + } + + + boolean lastIndex = index == array.length - 1; + int remainingIndex = array.length - index; + + if ( lastIndex ) { + /* Copy the area after the insert. Make sure we don't write over the end. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, index, newArray, index + 1, remainingIndex ); + + } else { + /* Copy the area after the insert. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, index, newArray, index + 1, remainingIndex ); + + } + + newArray[ index ] = v; + return newArray; + } + + + @Universal + public static short[] insert( final short[] array, final int fromIndex, final short[] values ) { + Exceptions.requireNonNull( array ); + + if ( fromIndex >= array.length ) { + return add( array, values ); + } + + final int index = calculateIndex( array, fromIndex ); + + //Object newArray = Array.newInstance(array.getClass().getComponentType(), array.length+1); + short[] newArray = new short[ array.length + values.length ]; + + if ( index != 0 ) { + /* Copy up to the length in the array before the index. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, 0, newArray, 0, index ); + } + + + boolean lastIndex = index == array.length - 1; + + int toIndex = index + values.length; + int remainingIndex = newArray.length - toIndex; + + if ( lastIndex ) { + /* Copy the area after the insert. Make sure we don't write over the end. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, index, newArray, index + values.length, remainingIndex ); + + } else { + /* Copy the area after the insert. */ + /* src sbegin dst dbegin length of copy */ + System.arraycopy( array, index, newArray, index + values.length, remainingIndex ); + + } + + for ( int i = index, j = 0; i < toIndex; i++, j++ ) { + newArray[ i ] = values[ j ]; + } + return newArray; + } + + + /* End universal methods. */ + private static int calculateIndex( short[] array, int originalIndex ) { + final int length = array.length; + + Exceptions.requireNonNull( array, "array cannot be null" ); + + + int index = originalIndex; + + /* Adjust for reading from the right as in + -1 reads the 4th element if the length is 5 + */ + if ( index < 0 ) { + index = length + index; + } + + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + if ( index < 0 ) { + index = 0; + } + if ( index >= length ) { + index = length - 1; + } + return index; + } + + + /* End universal methods. */ + private static int calculateEndIndex( short[] array, int originalIndex ) { + final int length = array.length; + + Exceptions.requireNonNull( array, "array cannot be null" ); + + + int index = originalIndex; + + /* Adjust for reading from the right as in + -1 reads the 4th element if the length is 5 + */ + if ( index < 0 ) { + index = length + index; + } + + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + /* Bounds check + if it is still less than 0, then they + have an negative index that is greater than length + */ + if ( index < 0 ) { + index = 0; + } + if ( index > length ) { + index = length; + } + return index; + } + + + public static int reduceBy( final short[] array, Object object ) { + + int sum = 0; + for ( short v : array ) { + sum = (short) Invoker.invokeReducer(object, sum, v); + } + return sum; + } + + + + /** + * Checks to see if two arrays are equals + * @param expected expected array + * @param got got array + * @return true if equal or throws exception if not. + */ + public static boolean equalsOrDie(short[] expected, short[] got) { + + if (expected.length != got.length) { + die("Lengths did not match, expected length", expected.length, + "but got", got.length); + } + + for (int index=0; index< expected.length; index++) { + if (expected[index]!= got[index]) { + die("value at index did not match index", index , "expected value", + expected[index], + "but got", got[index]); + + } + } + return true; + } + + + /** + * Checks to see if two arrays are equals + * @param expected expected array + * @param got got array + * @return true if equal or false if not. + */ + public static boolean equals(short[] expected, short[] got) { + + if (expected.length != got.length) { + return false; + } + + for (int index=0; index< expected.length; index++) { + if (expected[index]!= got[index]) { + return false; + } + } + return true; + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/service/Request.java b/datastructures-json-boon/src/main/java/org/boon/service/Request.java new file mode 100644 index 0000000..55b84db --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/service/Request.java @@ -0,0 +1,58 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.service; + + +/** + * @author Rick Hightower + * Generic request object for request response handling over websocket, http, mq, etc. + */ +public class Request { + + + + final String method; //could be GET, POST, or loadUser + final Object headers; //could be map or list or object + final Object params; //could be map or list or object + final Object payload; //Could be JSON payload, XML or Java objects or buffer + final String path; //could be URL, URI, or some sort of address + + final long correlationId; //used to match requests with responses. + + public Request(String method, Object headers, Object params, Object payload, String path) { + this.method = method; + this.params = params; + this.headers = headers; + this.payload = payload; + this.path = path; + this.correlationId = -1; //-1 means none + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/service/Response.java b/datastructures-json-boon/src/main/java/org/boon/service/Response.java new file mode 100644 index 0000000..eebae75 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/service/Response.java @@ -0,0 +1,110 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.service; + +import org.boon.core.Conversions; + +import java.util.Map; + +/** + * Created by Richard on 3/3/14. + */ +public class Response { + + private final int status; //200 Ok, 500 error, etc. may not be HTTP could be some other scheme, but most likely HTTP codes + private final Object headers; //could be map or list or object or JSON string + private final Object statusMessage; //Could be "OK" or the message from a java exception + private final Object payload; + private final Class enumStatusClass; + + + public Response(int status, Object headers, Object statusMessage, Object payload) { + this.status = status; + this.headers = headers; + this.statusMessage = statusMessage; + this.payload = payload; + enumStatusClass = null; + } + + + public Response(int status, Object headers, Object statusMessage, Object payload, Class enumStatusClass) { + this.status = status; + this.headers = headers; + this.statusMessage = statusMessage; + this.payload = payload; + this.enumStatusClass = enumStatusClass; + } + + + public int status() { + return status; + } + + + public E statusEnum(Class enumClass) { + return Conversions.toEnum(enumClass, status); + } + + + public Enum statusEnum() { + return Conversions.toEnum(this.enumStatusClass, status); + } + + public Object headers() { + return headers; + } + + + public Map headerMap() { + return Conversions.toMap(headers); + } + + public Object statusMessage() { + return statusMessage; + } + + + public String statusMessageAsString() { + return Conversions.toString(statusMessage); + } + + + public Object payload() { + return payload; + } + + + public String payloadAsString() { + return Conversions.toString(payload); + } + + public static Response response(int status, Map headers, String statusMessage, String payload) { + return new Response(status, headers, statusMessage, payload); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/sort/Ordering.java b/datastructures-json-boon/src/main/java/org/boon/sort/Ordering.java new file mode 100644 index 0000000..6b3cdd5 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/sort/Ordering.java @@ -0,0 +1,398 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.sort; + +import org.boon.Lists; + +import java.util.Collections; +import java.util.List; + +/** + * Created by Richard on 3/8/14. + */ +public class Ordering { + + + /** + * Does a binary search + * + * NOTE THIS WILL NOT SORT THE LIST ASCENDING. + * + * @param list items you want to search. + * @param item the item you are searching for. + * @param type of item + * @return item found or null + */ + public static T search(List list, T item) { + + if (list.size()>1) { + + Object o = list; + int index = Collections.binarySearch((List>) o, item); + return list.get(index); + } else { + return null; + } + } + + + /** + * Does a binary search + * + * + * NOTE THIS WILL NOT SORT THE LIST ASCENDING. + * + * @param list list you are searching + * @param item the item you are searching for + * @return the index of the item + */ + public static int searchForIndex(List list, Object item) { + + if (list.size()>1) { + + Object o = list; + return Collections.binarySearch((List>) o, item); + } else { + return -1; + } + } + + + /** + * Gets the max item from the list. + * Sorts the list descending first. + * + * @param list the list + * @param type of items + * @return the max item + */ + public static T max( List list ) { + + if (list.size()>1) { + Sorting.sortDesc(list); + + return list.get(0); + } else { + return null; + } + } + + /** + * Gets the max item from the array. + * Sorts the list descending first. + * + * @param array the list + * @param type of items + * @return the max item + */ + public static T max( T[] array ) { + + if (array.length > 1) { + Sorting.sortDesc(array); + + return array[0]; + } else { + return null; + } + } + + + + /** + * First of... out of hte sorts. This is the first item + * + * @param list + * @param sorts + * @param + * @return + */ + public static T firstOf( List list, Sort... sorts ) { + + if (list.size()>1) { + Sorting.sort(list, sorts); + + return list.get(0); + } else { + return null; + } + } + + /** + * From the sorts, this is the first few items. + * + * @param list + * @param count + * @param sorts + * @param + * @return + */ + public static List firstOf( List list, int count, Sort... sorts ) { + + if (list.size()>1) { + Sorting.sort(list, sorts); + + return Lists.sliceOf(list, 0, count); + } else { + return null; + } + } + + + /** + * Grabs the last items after the sort. + * @param list + * @param sorts + * @param + * @return + */ + public static T lastOf( List list, Sort... sorts ) { + + if (list.size()>1) { + Sorting.sort(list, sorts); + + return list.get(list.size()-1); + } else { + return null; + } + } + + + /** + * Grabs the last few items from the list. + * @param list + * @param count + * @param sorts + * @param + * @return + */ + public static List lastOf( List list, int count, Sort... sorts ) { + + if (list.size()>1) { + Sorting.sort(list, sorts); + + return Lists.endSliceOf(list, count *-1); + } else { + return null; + } + } + + + /** + * Returns the max value of the object with the property given. + * + * @param list + * @param sortBy + * @param + * @return + */ + public static T max( List list, String sortBy ) { + + if (list.size()>1) { + Sorting.sortDesc(list, sortBy); + + return list.get(0); + } else { + return null; + } + } + + + + /** + * Returns the max value of the object with the property given. + * + * @param array + * @param sortBy + * @param + * @return + */ + public static T max( T[] array, String sortBy ) { + + if ( array.length > 1 ) { + Sorting.sortDesc(array, sortBy); + + return array[0]; + } else { + return null; + } + } + + /** + * Returns the least few. + * @param list + * @param count + * @param + * @return + */ + public static List least( List list, int count ) { + + if (list.size()>1) { + Sorting.sort(list); + + return Lists.sliceOf(list, 0, count); + } else { + return null; + } + } + + + /** + * Returns the least few. + * @param list + * @param sortBy + * @param count + * @param + * @return + */ + public static List least( List list, String sortBy, int count ) { + + if (list.size()>1) { + Sorting.sort(list, sortBy); + + return Lists.sliceOf(list, 0, count); + } else { + return null; + } + } + + + /** + * Returns the greatest. + * @param list + * @param count + * @param + * @return + */ + public static List greatest( List list, int count ) { + + if (list.size()>1) { + Sorting.sortDesc(list); + + return Lists.sliceOf(list, 0, count); + } else { + return null; + } + } + + + /** + * Returns the greatest few. + * @param list + * @param sortBy + * @param count + * @param + * @return + */ + public static List greatest( List list, String sortBy, int count ) { + + if (list.size()>1) { + Sorting.sortDesc(list, sortBy); + + return Lists.sliceOf(list, 0, count); + } else { + return null; + } + } + + /** + * Returns the min value using a natural sort. + * @param list + * @param + * @return + */ + public static T min( List list ) { + + if (list.size()>1) { + Sorting.sort(list); + + return list.get(0); + } else { + return null; + } + } + + + /** + * Returns the max value of the object with the property given. + * + * @param array + * @param + * @return + */ + public static T min( T[] array ) { + + if ( array.length > 1 ) { + Sorting.sort(array); + + return array[0]; + } else { + return null; + } + } + + + /** + * Returns the min value after sorting by the sortBy parameter. + * @param list + * @param sortBy + * @param + * @return + */ + public static T min (List list, String sortBy) { + if (list.size()>1) { + Sorting.sort(list, sortBy); + + return list.get(0); + } else { + return null; + } + + } + + + /** + * Returns the min value of the object with the property given. + * + * @param array + * @param sortBy + * @param + * @return + */ + public static T min( T[] array, String sortBy ) { + + if ( array.length > 1 ) { + Sorting.sort(array, sortBy); + + return array[0]; + } else { + return null; + } + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/sort/Sort.java b/datastructures-json-boon/src/main/java/org/boon/sort/Sort.java new file mode 100644 index 0000000..911ee6e --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/sort/Sort.java @@ -0,0 +1,375 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.sort; + + +import org.boon.Lists; +import org.boon.core.reflection.BeanUtils; +import org.boon.core.reflection.fields.FieldAccess; + +import java.util.*; + +import static org.boon.core.Conversions.toArray; +import static org.boon.sort.UniversalComparator.universalComparator; + +/** + * Used for sorting with sorts, i.e., a collection of sorts. + */ +public class Sort { + + /** name holds the property we are sorting on. */ + private final String name; + + /** Sort type dictates ascending order or descending order. */ + private final SortType type; + + /** Sort type dictates ascending order or descending order. */ + private final boolean nullsFirst; + + /** + * A sort is a composite object that can contain other sorts. + */ + private List sorts = new ArrayList<>(); + + /** + * Cache the toString and hashCode for speed. + */ + private String toString = null; + private int hashCode = -1; + + + + public Sort() { + this.name = "this"; + this.type = SortType.ASCENDING; + this.nullsFirst = false; + this.hashCode = doHashCode(); + } + + public Sort( String name, SortType type, boolean nullsFirst ) { + this.name = name; + this.type = type; + this.nullsFirst = nullsFirst; + } + + + public Sort( String name, SortType type ) { + this.name = name; + this.type = type; + this.nullsFirst = false; + } + + + /** + * A sort ends up creating a list of comparator objects. + * There is a main comparator and then a list of composite comparators. + */ + private List comparators; + + /** The main comparator. */ + private Comparator comparator; + + + /** Helper method to create a Sort that is a composite of other sorts. + * @param sorts list of child sorts + * @return + */ + public static Sort sorts( Sort... sorts ) { + if ( sorts == null || sorts.length == 0 ) { + return null; + } + + Sort main = sorts[ 0 ]; + for ( int index = 1; index < sorts.length; index++ ) { + main.then( sorts[ index ] ); + } + return main; + } + + /** Creates an ascending sort. */ + public static Sort asc( String name ) { + return new Sort( name, SortType.ASCENDING ); + } + + + /** Creates an ascending sort. */ + public static Sort sortBy( String name ) { + return new Sort( name, SortType.ASCENDING ); + } + + + /** Creates an ascending sort. */ + public static Sort sortByNullsFirst( String name ) { + return new Sort( name, SortType.ASCENDING, true ); + } + + + /** Creates a descending sort. */ + public static Sort desc( String name ) { + return new Sort( name, SortType.DESCENDING ); + } + + + /** Creates a descending sort. */ + public static Sort sortByDesc( String name ) { + return new Sort( name, SortType.DESCENDING ); + } + + + /** Creates a descending sort. */ + public static Sort sortByDescending( String name ) { + return new Sort( name, SortType.DESCENDING ); + } + + /** Creates an descending sort. */ + public static Sort sortByDescendingNullsFirst( String name ) { + return new Sort( name, SortType.ASCENDING, true ); + } + + + /** Creates an descending sort. */ + public static Sort descNullsFirst( String name ) { + return new Sort( name, SortType.ASCENDING, true ); + } + + + public SortType getType() { + return type; + } + + public String getName() { + return name; + } + + + public Sort then( Sort sort ) { + this.sorts.add( sort ); + return this; + } + + public Sort then( String name ) { + this.sorts.add( new Sort( name, SortType.ASCENDING ) ); + return this; + } + + public Sort thenAsc( String name ) { + this.sorts.add( new Sort( name, SortType.ASCENDING ) ); + return this; + } + + public Sort thenDesc( String name ) { + this.sorts.add( new Sort( name, SortType.DESCENDING ) ); + return this; + } + + /** + * Sort if you already know the reflection fields. + * @param list sort from list + * @param fields sort from fields. + */ + public void sort( List list, Map fields ) { + Collections.sort( list, this.comparator( fields ) ); + } + + + /** + * Sort and you look up the reflection fields. + * @param list + */ + public void sort( List list ) { + if ( list == null || list.size() == 0 ) { + return; + } + + Object item = list.iterator().next(); + + Map fields = BeanUtils.getFieldsFromObject( item ); + Collections.sort( list, this.comparator( fields ) ); + } + + + /** + * Sort and you look up the reflection fields. + * @param collection the collection to sort + */ + public Collection sort( Class componentClass, Collection collection ) { + + if (collection instanceof List) { + sort((List) collection); + return collection; + } + + if ( collection == null || collection.size() == 0 ) { + return Collections.EMPTY_LIST; + } + + + Map fields = BeanUtils.getFieldsFromObject( componentClass ); + T[] array = toArray(componentClass, collection); + Arrays.sort( array, this.comparator( fields ) ); + + if (collection instanceof Set){ + return new LinkedHashSet<>( Lists.list(array)); + } else { + return Lists.list(array); + } + } + + + + /** + * Sort and you look up the reflection fields. + * @param iterable the collection to sort + */ + public Iterable sort( Class componentClass, Iterable iterable ) { + + if (iterable instanceof List) { + sort((List) iterable); + return iterable; + } + + if (iterable instanceof Collection) { + return sort(componentClass, (Collection) iterable); + } + + if ( iterable == null ) { + return Collections.EMPTY_LIST; + } + + List list = Lists.list(iterable); + sort(list); + return list; + + } + + /** + * Sort and you look up the reflection fields. + * @param array + */ + public void sort( T[] array ) { + if ( array == null || array.length == 0 ) { + return; + } + + Object item = array[0]; + + Map fields = BeanUtils.getFieldsFromObject( item ); + Arrays.sort( array, this.comparator( fields ) ); + } + + + /** This is what really does the magic. This is the comparator creator. */ + public Comparator comparator( Map fields ) { + if ( comparator == null ) { + comparator = universalComparator(this.getName(), fields, + this.getType(), this.childComparators(fields)); + } + return comparator; + } + + /** + * This creates a list of children comparators based on the child list. + * @param fields + * @return + */ + private List childComparators( Map fields ) { + if ( this.comparators == null ) { + this.comparators = new ArrayList<>( this.sorts.size() + 1 ); + + for ( Sort sort : sorts ) { + Comparator comparator = universalComparator( + sort.getName(), + fields, + sort.getType(), + sort.childComparators(fields) + ); + this.comparators.add( comparator ); + } + } + return this.comparators; + } + + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + + Sort sort = (Sort) o; + + if (hashCode != sort.hashCode) return false; + if (nullsFirst != sort.nullsFirst) return false; + if (comparator != null ? !comparator.equals(sort.comparator) : sort.comparator != null) return false; + if (comparators != null ? !comparators.equals(sort.comparators) : sort.comparators != null) return false; + if (name != null ? !name.equals(sort.name) : sort.name != null) return false; + if (sorts != null ? !sorts.equals(sort.sorts) : sort.sorts != null) return false; + if (toString != null ? !toString.equals(sort.toString) : sort.toString != null) return false; + if (type != sort.type) return false; + + return true; + } + + + + @Override + public int hashCode() { + + if (hashCode == -1) { + hashCode = doHashCode(); + } + return hashCode; + } + + public int doHashCode() { + int result = name != null ? name.hashCode() : 0; + result = 31 * result + (type != null ? type.hashCode() : 0); + result = 31 * result + (nullsFirst ? 1 : 0); + result = 31 * result + (sorts != null ? sorts.hashCode() : 0); + result = 31 * result + (toString != null ? toString.hashCode() : 0); + result = 31 * result + hashCode; + result = 31 * result + (comparators != null ? comparators.hashCode() : 0); + result = 31 * result + (comparator != null ? comparator.hashCode() : 0); + return result; + } + + + @Override + public String toString() { + return "Sort{" + + "name='" + name + '\'' + + ", type=" + type + + ", nullsFirst=" + nullsFirst + + ", sorts=" + sorts + + ", toString='" + toString + '\'' + + ", hashCode=" + hashCode + + ", comparators=" + comparators + + ", comparator=" + comparator + + '}'; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/sort/SortType.java b/datastructures-json-boon/src/main/java/org/boon/sort/SortType.java new file mode 100644 index 0000000..16a17eb --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/sort/SortType.java @@ -0,0 +1,34 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.sort; + +public enum SortType { + ASCENDING, + DESCENDING +} diff --git a/datastructures-json-boon/src/main/java/org/boon/sort/Sorting.java b/datastructures-json-boon/src/main/java/org/boon/sort/Sorting.java new file mode 100644 index 0000000..2ec006c --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/sort/Sorting.java @@ -0,0 +1,752 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.sort; + +import org.boon.*; +import org.boon.core.Typ; +import org.boon.core.reflection.BeanUtils; +import org.boon.core.Conversions; +import org.boon.core.reflection.Fields; +import org.boon.core.reflection.fields.FieldAccess; + +import java.text.Collator; +import java.util.*; + +import static org.boon.core.Conversions.toArray; + +public class Sorting { + + /** + * Gets the logger. + */ + private static final Logger log = Boon.configurableLogger(Sorting.class.getName()); + + + /** Takes a list an an array or sorts + * + * @param list list to sorts + * @param sorts what you want to sore the list by + */ + public static void sort(List list, Sort... sorts) { + Sort.sorts(sorts).sort(list); + } + + + + /** + * Sort a list. + * @param list the list you want to sort + * @param sortBy what you want to sort the list by + * @param ascending do you want ascending order + * @param nullsFirst do you want nulls first + */ + public static void sort( List list, String sortBy, boolean ascending, boolean nullsFirst ) { + if ( list == null || list.size() == 0 ) { + return; + } + + if (sortBy.equals("this")) { + + Collections.sort(list, thisUniversalComparator(ascending, nullsFirst)); + return; + } + Iterator iterator = list.iterator(); + Object object = iterator.next(); + + Map fields = null; + + if (object != null) { + fields = BeanUtils.getFieldsFromObject( object ); + } else { + while(iterator.hasNext()) { + + object = iterator.next(); + if (object!=null) { + fields = BeanUtils.getFieldsFromObject( object ); + break; + } + } + + } + + + if (fields!=null) { + + final FieldAccess field = fields.get( sortBy ); + + if ( field != null ) { + + Collections.sort( list, Sorting.universalComparator(field, ascending, nullsFirst) ); + + } + } + } + + + /** + * Sort collection. + * @param collection the collection you want to sort + * @param sortBy what you want to sort the list by + * @param ascending do you want ascending order + * @param nullsFirst do you want nulls first + */ + public static Collection sort( Class componentType, Collection collection, String sortBy, boolean ascending, boolean nullsFirst ) { + + if (collection instanceof List) { + sort ((List) collection, sortBy, ascending, nullsFirst); + return collection; + } else { + V[] array = toArray(componentType, collection); + sort(array, sortBy, ascending, nullsFirst); + if (collection instanceof LinkedHashSet) { + return new LinkedHashSet<>(Lists.list(array)); + } else { + return Lists.list(array); + } + } + } + + + /** + * Sort map entries. + * @param map the map entries you want to sort + * @param sortBy what you want to sort the list by + * @param ascending do you want ascending order + * @param nullsFirst do you want nulls first + */ + public static Collection> sortEntries( Class componentType, Map map, + String sortBy, boolean ascending, boolean nullsFirst ) { + + return sort ((Class) componentType, (Collection) map.entrySet() , sortBy, ascending, nullsFirst); + + } + + /** + * Sort map values. + * @param map the map entries you want to sort + * @param sortBy what you want to sort the list by + * @param ascending do you want ascending order + * @param nullsFirst do you want nulls first + */ + public static Collection> sortValues( Class componentType, Map map, + String sortBy, boolean ascending, boolean nullsFirst ) { + + return sort ((Class) componentType, (Collection) map.values() , sortBy, ascending, nullsFirst); + + } + + + /** + * Sort map keys. + * @param map the map entries you want to sort + * @param sortBy what you want to sort the list by + * @param ascending do you want ascending order + * @param nullsFirst do you want nulls first + */ + public static Collection> sortKeys( Class componentType, Map map, + String sortBy, boolean ascending, boolean nullsFirst ) { + + return sort ((Class) componentType, (Collection) map.keySet() , sortBy, ascending, nullsFirst); + + } + + + + + + /** + * Sort collection. + * @param iterable the iterable you want to sort + * @param sortBy what you want to sort the list by + * @param ascending do you want ascending order + * @param nullsFirst do you want nulls first + */ + public static Iterable sort( Class componentType, Iterable iterable, String sortBy, boolean ascending, boolean nullsFirst ) { + + if (iterable instanceof List) { + sort ((List) iterable, sortBy, ascending, nullsFirst); + return iterable; + } else if (iterable instanceof Collection) { + return sort (componentType, (Collection) iterable, sortBy, ascending, nullsFirst); + } else { + List list = Lists.list(iterable); + sort ( list, sortBy, ascending, nullsFirst); + return list; + } + } + + /** + * Sort an array. + * @param array the list you want to sort + * @param sortBy what you want to sort the list by + * @param ascending do you want ascending order + * @param nullsFirst do you want nulls first + */ + public static void sort( T[] array, String sortBy, boolean ascending, boolean nullsFirst ) { + if ( array == null || array.length == 0 ) { + return; + } + + if (sortBy.equals("this")) { + + Arrays.sort(array, thisUniversalComparator(ascending, nullsFirst)); + return; + } + + Object object = array[0]; + + Map fields = null; + + if (object != null) { + fields = BeanUtils.getFieldsFromObject( object ); + } else { + for (int index=1; index< array.length; index++) { + + object = array[index]; + if (object!=null) { + fields = BeanUtils.getFieldsFromObject( object ); + break; + } + } + + } + + + if (fields!=null) { + + final FieldAccess field = fields.get( sortBy ); + + if ( field != null ) { + + Arrays.sort( array, Sorting.universalComparator(field, ascending, nullsFirst) ); + + } + } + } + + + /** + * Sorts a list based on the natural ascending order. + * This puts null values last. + * @param list the list you want to sort. + */ + public static void sort( List list ) { + sort( list, "this", true, false); + } + + /** + * Sorts a array based on the natural ascending order. + * This puts null values last. + * @param array the list you want to sort. + */ + public static void sort( T[] array ) { + sort( array, "this", true, false); + } + + /** + * Sorts a collection based on the natural ascending order. + * This puts null values last. + * @param collection the list you want to sort. + */ + public static Collection sort( Class componentType, Collection collection ) { + return sort( componentType, collection, "this", true, false); + } + + /** + * Sorts a iterable based on the natural ascending order. + * This puts null values last. + * @param iterable the list you want to sort. + */ + public static Iterable sort( Class componentType, Iterable iterable ) { + return sort( componentType, iterable, "this", true, false); + } + + + + + /** + * Sorts a list based on the natural ascending order and puts null values first. + * @param list the list you want to sort. + */ + public static void sortNullsFirst( List list ) { + + sort(list, "this", true, true); + } + + /** + * Sorts an array based on the natural ascending order and puts null values first. + * @param array the list you want to sort. + */ + public static void sortNullsFirst( T[] array ) { + + sort(array, "this", true, true); + } + + /** + * Sorts a collection based on the natural ascending order. + * This puts null values first. + * @param collection the collection you want to sort. + */ + public static Collection sortNullsFirst( Class componentType, Collection collection ) { + return sort( componentType, collection, "this", true, true); + } + + + /** + * Sorts an iterable based on the natural ascending order. + * This puts null values first. + * @param iterable the list you want to sort. + */ + public static Iterable sortNullsFirst( Class componentType, Iterable iterable ) { + return sort( componentType, iterable, "this", true, true); + } + + + + + + /** + * Sorts a list based on the natural order descending order. + * This puts null values last. + * @param list the list you want to sort. + */ + public static void sortDesc( List list ) { + sort( list, "this", false, false); + + } + + /** + * Sorts a array based on the natural order descending order. + * This puts null values last. + * @param array the list you want to sort. + */ + public static void sortDesc( T[] array ) { + sort( array, "this", false, false); + + } + + /** + * Sorts a iterable based on the natural descending order. + * This puts null values last. + * @param iterable the iterable you want to sort. + */ + public static Iterable sortDesc( Class componentType, Iterable iterable ) { + return sort( componentType, iterable, "this", false, false); + } + + /** + * Sorts a collection based on the natural descending order. + * This puts null values last. + * @param collection the collection you want to sort. + */ + public static Collection sortDesc( Class componentType, Collection collection ) { + return sort( componentType, collection, "this", false, false); + } + + + + + + /** + * Sorts a list based on the natural order descending order. + * This puts null values first. + * @param list the list you want to sort. + */ + public static void sortDescNullsFirst( List list ) { + sort( list, "this", false, true); + + } + + + + /** + * Sorts a array based on the natural order descending order. + * This puts null values first. + * @param array the list you want to sort. + */ + public static void sortDescNullsFirst( T[] array ) { + sort( array, "this", false, true); + + } + + /** + * Sorts a iterable based on the natural descending order. + * This puts null values first. + * @param iterable the iterable you want to sort. + */ + public static Iterable sortDescNullsFirst( Class componentType, Iterable iterable ) { + return sort( componentType, iterable, "this", false, true); + } + + /** + * Sorts a collection based on the natural descending order. + * This puts null values first. + * @param collection the collection you want to sort. + */ + public static Collection sortDescNullsFirst( Class componentType, Collection collection ) { + return sort( componentType, collection, "this", false, true); + } + + + /** + * + * Sorts lists ascending + * Nulls last. + * @param list the list you want to sort + * @param sortBy what you want to sort the list by + */ + public static void sort( List list, String sortBy ) { + sort(list, sortBy, true, false); + } + + + + + /** + * + * Sorts array ascending + * Nulls last. + * @param array the list you want to sort + * @param sortBy what you want to sort the array by + */ + public static void sort( T[] array, String sortBy ) { + sort( array, sortBy, true, false); + + } + + /** + * + * Sorts iterable ascending + * Nulls last. + * @param iterable the list you want to sort + * @param sortBy what you want to sort the array by + */ + public static Iterable sort( Class componentType, Iterable iterable, String sortBy ) { + return sort( componentType, iterable, sortBy, true, false); + } + + + /** + * + * Sorts collection ascending + * Nulls last. + * @param collection the list you want to sort + * @param sortBy what you want to sort the array by + */ + public static Collection sort( Class componentType, Collection collection, String sortBy ) { + return sort( componentType, collection, sortBy, true, false); + } + + + + /** + * + * Sorts lists Ascending Null first + * Nulls first. + * + * @param list the list you want to sort + * @param sortBy what you want to sort the list by + */ + public static void sortNullsFirst( List list, String sortBy ) { + sort( list, sortBy, true, true); + } + + + + /** + * + * Sorts array ascending + * Nulls first. + * @param array the list you want to sort + * @param sortBy what you want to sort the array by + */ + public static void sortNullsFirst( T[] array, String sortBy ) { + sort( array, sortBy, true, true); + + } + + /** + * + * Sorts iterable ascending + * Nulls first. + * @param iterable the list you want to sort + * @param sortBy what you want to sort the array by + */ + public static Iterable sortNullsFirst( Class componentType, Iterable iterable, String sortBy ) { + return sort( componentType, iterable, sortBy, true, true); + } + + + /** + * + * Sorts collection ascending + * Nulls first. + * @param collection the list you want to sort + * @param sortBy what you want to sort the array by + */ + public static Collection sortNullsFirst( Class componentType, Collection collection, String sortBy ) { + return sort( componentType, collection, sortBy, true, true); + } + + + /** + * + * Sorts lists Descending + * @param list the list you want to sort + * @param sortBy what you want to sort the list by + */ + public static void sortDesc( List list, String sortBy ) { + sort(list, sortBy, false, false); + } + + + + + /** + * + * Sorts array Descending + * Nulls last. + * @param array the list you want to sort + * @param sortBy what you want to sort the array by + */ + public static void sortDesc( T[] array, String sortBy ) { + sort( array, sortBy, false, false); + + } + + /** + * + * Sorts iterable ascending + * Nulls last. + * @param iterable the list you want to sort + * @param sortBy what you want to sort the array by + */ + public static Iterable sortDesc( Class componentType, Iterable iterable, String sortBy ) { + return sort( componentType, iterable, sortBy, false, false); + } + + + /** + * + * Sorts collection ascending + * Nulls last. + * @param collection the list you want to sort + * @param sortBy what you want to sort the array by + */ + public static Collection sortDesc( Class componentType, Collection collection, String sortBy ) { + return sort( componentType, collection, sortBy, false, false); + } + + + + /** + * + * Sorts lists Descending + * @param list the list you want to sort + * @param sortBy what you want to sort the list by + */ + public static void sortDescNullsFirst( List list, String sortBy ) { + sort( list, sortBy, false, true); + } + + + /** + * + * Sorts array Descending + * Nulls first. + * @param array the list you want to sort + * @param sortBy what you want to sort the array by + */ + public static void sortDescNullsFirst( T[] array, String sortBy ) { + sort( array, sortBy, false, true); + + } + + /** + * + * Sorts iterable ascending + * Nulls first. + * @param iterable the list you want to sort + * @param sortBy what you want to sort the array by + */ + public static Iterable sortDescNullsFirst( Class componentType, Iterable iterable, String sortBy ) { + return sort( componentType, iterable, sortBy, false, true); + } + + + /** + * + * Sorts collection ascending + * Nulls first. + * @param collection the list you want to sort + * @param sortBy what you want to sort the array by + */ + public static Collection sortDescNullsFirst( Class componentType, Collection collection, String sortBy ) { + return sort( componentType, collection, sortBy, false, true); + } + + + + /** + * This creates the universal comparator object which is used by the sort work horse. + * + * @param field The field we are sorting on. + * @param ascending if this should be ascending or descending. + * @return + */ + public static Comparator universalComparator( final FieldAccess field, final boolean ascending, + final boolean nullsFirst) { + return new Comparator() { + @Override + public int compare( Object o1, Object o2 ) { + Object value1 = null; + Object value2 = null; + + if ( ascending ) { + value1 = field.getValue( o1 ); + value2 = field.getValue( o2 ); + } else { + value1 = field.getValue( o2 ); + value2 = field.getValue( o1 ); + } + return Sorting.compare(value1, value2, nullsFirst); + } + }; + } + + + + /** + * This creates the universal comparator object used for "this". + * + * @param ascending if this should be ascending or descending. + * @return + */ + public static Comparator thisUniversalComparator( final boolean ascending, + final boolean nullsFirst) { + return new Comparator() { + @Override + public int compare( Object o1, Object o2 ) { + Object value1; + Object value2; + + + if ( ascending ) { + value1 = ( o1 ); + value2 = ( o2 ); + } else { + value1 = ( o2 ); + value2 = ( o1 ); + } + + return Sorting.compare(value1, value2, nullsFirst); + } + }; + } + + /** + * This compares two values. + * @param value1 value1 + * @param value2 value2 + * @return + */ + public static int compare( Object value1, Object value2 ) { + return compare(value1, value2, false); + } + + /** + * This compares two values. + * If the objects are strings (CharSequence) they are always compared lexicographically. + * If the objects are comparable they are always compared using a natural order. + * + * @param value1 value1 + * @param value2 value2 + * @param nullsLast put nulls last + * + * @return + */ + public static int compare( Object value1, Object value2, boolean nullsLast ) { + + if ( value1 == null && value2 == null ) { + return 0; + } else if ( value1 == null && value2 != null ) { + return nullsLast ? -1 : 1; + } else if ( value1 != null && value2 == null ) { + return nullsLast ? 1 : -1; + } + + + /** Objects are string like so compare using collator. */ + if ( value1 instanceof CharSequence ) { + String str1 = Conversions.toString( value1 ); + String str2 = Conversions.toString( value2 ); + Collator collator = Collator.getInstance(); + return collator.compare( str1, str2 ); + + /** Objects are comparable, yeah! */ + } else if ( Typ.isComparable( value1 ) && value1.getClass() == value2.getClass()) { + Comparable c1 = Conversions.comparable(value1); + Comparable c2 = Conversions.comparable(value2); + return c1.compareTo( c2 ); + } else if ( value1 instanceof Integer && value2 instanceof Integer ) { + Comparable c1 = Conversions.comparable(value1); + Comparable c2 = Conversions.comparable(value2); + return c1.compareTo( c2 ); + } + else if ( value1 instanceof Double && value2 instanceof Double ) { + Comparable c1 = Conversions.comparable(value1); + Comparable c2 = Conversions.comparable(value2); + return c1.compareTo( c2 ); + } + else if ( value1 instanceof Long && value2 instanceof Long ) { + Comparable c1 = Conversions.comparable(value1); + Comparable c2 = Conversions.comparable(value2); + return c1.compareTo( c2 ); + } + else if ( value1 instanceof Number && value2 instanceof Number ) { + Double c1 = Conversions.toDouble(value1); + Double c2 = Conversions.toDouble(value2); + return c1.compareTo( c2 ); + } + else { + /** Object are neither String like or comparable. + * Ours it not to reason why, ours it to do or die. + * Find the first sortable field and sort by that. + * */ + String name = Fields.getSortableField( value1 ); + String sv1 = ( String ) BeanUtils.getPropByPath( value1, name ); + String sv2 = ( String ) BeanUtils.getPropByPath( value2, name ); + return Sorting.compare(sv1, sv2); + + } + + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/sort/SortingInternal.java b/datastructures-json-boon/src/main/java/org/boon/sort/SortingInternal.java new file mode 100644 index 0000000..b525411 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/sort/SortingInternal.java @@ -0,0 +1,106 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.sort; + +import org.boon.Exceptions; +import org.boon.core.reflection.fields.FieldAccess; + +import java.util.Collections; +import java.util.List; +import java.util.Map; + +import static org.boon.sort.Sorting.thisUniversalComparator; + +/** + * Created by Richard on 3/8/14. + */ +public class SortingInternal { + + + /** + * This is the work horse. It does all of the sorting work for the simple cases. + * Nulls are last by default. + * @param list the list you want to sort. + * @param sortBy what you want to sort the list by. + * @param fields the reflection fields + * @param ascending true for ascending + */ + public static void sort( List list, String sortBy, Map fields, boolean ascending) { + + sort(list, sortBy, fields, ascending, false); + + } + + /** + * This is the work horse. It does all of the sorting work for the simple cases. + * @param list the list you want to sort. + * @param sortBy what you want to sort the list by. + * @param fields the reflection fields + * @param ascending true for ascending + */ + public static void sort( List list, String sortBy, Map fields, boolean ascending, + boolean nullsFirst) { + + try { + + + /* If this list is null or empty, we have nothing to do so return. */ + if ( list == null || list.size() == 0 ) { + return; + } + + /* Grab the first item in the list and see what it is. */ + Object o = list.get( 0 ); + + /* if the sort by string is is this, and the object is comparable then use the objects + themselves for the sort. + */ + if ( sortBy.equals( "this" ) ) { + + Collections.sort(list, thisUniversalComparator(ascending, nullsFirst)); + return; + } + + /* If you did not sort by "this", then sort by the field. */ + + final FieldAccess field = fields.get( sortBy ); + + if ( field != null ) { + + Collections.sort( list, Sorting.universalComparator(field, ascending, nullsFirst) ); + + } + + } catch (Exception ex) { + Exceptions.handle(ex, "list", list, "\nsortBy", sortBy, "fields", fields, "ascending", ascending, + "nullFirst", nullsFirst); + } + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/sort/UniversalComparator.java b/datastructures-json-boon/src/main/java/org/boon/sort/UniversalComparator.java new file mode 100644 index 0000000..dec9f8f --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/sort/UniversalComparator.java @@ -0,0 +1,136 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.sort; + +import org.boon.Exceptions; +import org.boon.Str; +import org.boon.core.reflection.fields.FieldAccess; +import org.boon.primitive.Chr; + +import java.util.Comparator; +import java.util.List; +import java.util.Map; + +import static org.boon.core.reflection.BeanUtils.atIndex; + +/** + * Created by Richard on 3/8/14. + */ +public final class UniversalComparator implements Comparator { + + + final String sortBy; + final Map fields; + final SortType sortType; + final List comparators; + private final boolean byPath; + + + public UniversalComparator(String sortBy, Map fields, + SortType sortType, List comparators + ) { + this.sortBy = sortBy; + this.fields = fields; + this.sortType = sortType; + this.comparators = comparators; + + this.byPath = Str.in(Chr.array('.', '[', ']', '/'), sortBy); + + + } + + @Override + final public int compare( Object o1, Object o2 ) { + + Object value1; + Object value2; + + /** Compare by this. */ + if (byPath || o1 instanceof Map) { + /* Grab the values of the sort field. */ + if ( sortType == SortType.ASCENDING ) { + value1 = atIndex(o1, sortBy); + value2 = atIndex(o2, sortBy); + } else { + value1 = atIndex(o2, sortBy); + value2 = atIndex(o1, sortBy); + } + } + + else if ( sortBy.equals( "this" ) && o1 instanceof Comparable ) { + if ( sortType == SortType.ASCENDING ) { + value1 = o1; + value2 = o2; + } else { + value1 = o2; + value2 = o1; + } + } + + else { + /* Compare by sort field. */ + FieldAccess field = fields.get( sortBy ); + if ( field == null ) { + Exceptions.die(Str.lines( + "The fields was null for sortBy " + sortBy, + String.format("fields = %s", fields), + String.format("Outer object type = %s", o1.getClass().getName()), + String.format("Outer object is %s", o1) + )); + } + /* Grab the values of the sort field. */ + if ( sortType == SortType.ASCENDING ) { + value1 = field.getValue( o1 ); + value2 = field.getValue( o2 ); + } else { + value1 = field.getValue( o2 ); + value2 = field.getValue( o1 ); + } + } + + + int compare = Sorting.compare(value1, value2); + if ( compare == 0 ) { + for ( Comparator comparator : comparators ) { + compare = comparator.compare( o1, o2 ); + if ( compare != 0 ) { + break; + } + } + } + return compare; + } + + + public static Comparator universalComparator( final String sortBy, final Map fields, + final SortType sortType, final List comparators ) { + return new UniversalComparator(sortBy, fields, sortType, comparators) ; + } +} + diff --git a/datastructures-json-boon/src/main/java/org/boon/template/BoonCommandArgumentParser.java b/datastructures-json-boon/src/main/java/org/boon/template/BoonCommandArgumentParser.java new file mode 100644 index 0000000..81dc634 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/template/BoonCommandArgumentParser.java @@ -0,0 +1,133 @@ +package org.boon.template; + +import org.boon.Str; +import org.boon.StringScanner; +import org.boon.collections.LazyMap; +import org.boon.core.reflection.FastStringUtils; +import org.boon.json.JsonParserAndMapper; +import org.boon.json.JsonParserFactory; +import org.boon.primitive.CharScanner; + +import java.util.Map; + +/** + * Created by Richard on 9/18/14. + */ +public class BoonCommandArgumentParser { + + final JsonParserAndMapper jsonParser = new JsonParserFactory().lax().create(); + + public Map parseArguments(final String args) { + int index; + + + final char[] chars = FastStringUtils.toCharArray(args); + + index = CharScanner.skipWhiteSpace(chars); + + char c = ' '; + + if (index != chars.length) { + c = chars[index]; + } + + + if (c == '{') { + return jsonParser.parseMap(chars); + } else if (c == '[') { + LazyMap map = new LazyMap(1); + map.put("varargs", jsonParser.parse(chars)); + return map; + } + + boolean collectName = true; + + StringBuilder name = new StringBuilder(); + StringBuilder value = new StringBuilder(); + + Map params = new LazyMap(); + + params.put("commandArgs", args); + + char closeQuoteToMatch = '\"'; + + for (index = 0; index < chars.length; index++) { + c = chars[index]; + + switch (c) { + + case '\t': + case '\n': + case '\r': + case ' ': + continue; + + case '=': + collectName = false; + if (chars[index + 1] != '\'' && chars[index + 1] != '\"') { + int start = index + 1; + int end = -1; + if (chars[index + 1] == '$' && chars[index + 2] == '{') { + + end = CharScanner.findChar('}', start, chars); + if (end != -1) end++; + } else if (chars[index + 1] == '{' && chars[index + 2] == '{') { + + end = CharScanner.findChar('}', start, chars); + if (end != -1) end+=2; + } + else { + end = CharScanner.findWhiteSpace(start, chars); + } + if (end == -1) { + end = chars.length; + } + String v = Str.slc(args, start, end); + params.put(name.toString(), v); + index += v.length(); + name = new StringBuilder(); + + collectName = true; + value = new StringBuilder(); + + } else { + + closeQuoteToMatch = chars[index+1]; + index++; //skip quote + } + continue; + + + case '\"': + case '\'': + + if (c == closeQuoteToMatch) { + collectName = true; + index++; + params.put(name.toString(), value.toString()); + name = new StringBuilder(); + value = new StringBuilder(); + continue; + } + + + default: + if (collectName) { + name.append(c); + } else { + value.append(c); + } + + } + } + + if (params.size()==1) { + + + + params.put("varargs", StringScanner.splitByChars(args, ' ', '\t', '\n')); + } + return params; + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/template/BoonCoreTemplateParser.java b/datastructures-json-boon/src/main/java/org/boon/template/BoonCoreTemplateParser.java new file mode 100644 index 0000000..4f262df --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/template/BoonCoreTemplateParser.java @@ -0,0 +1,628 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.template; +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +import org.boon.Str; +import org.boon.core.reflection.FastStringUtils; +import org.boon.primitive.CharScanner; +import org.boon.template.support.Token; +import org.boon.template.support.TokenTypes; + +import java.util.ArrayList; +import java.util.List; + +import static org.boon.Boon.putl; +import static org.boon.Boon.puts; + + +/** + * @author Rick Hightower + *

+ * This supports handlebar templates, freemarker-like jstl and JSTL-like templates. + *

+ *

+ *             {{#if foo}}
+ *
+ *                  {{foo}} //Escaped
+ *
+ *                  {{{foo}}} //Unescaped
+ *             {{/if foo}}
+ *
+ *             {{#with foo}}
+ *
+ *                   {{foo}}   //Escaped
+ *                   {{{foo}}} /Unescaped
+ *
+ *             {{/with}}
+ *
+ *             {{#each fruits}}
+ *                  {{this}}
+ *             {{/each}}
+ *         
+ *

+ * see http://www.tutorialspoint.com/jsp/jsp_standard_tag_library.htm + * see http://www.tutorialspoint.com/jsp/jstl_core_foreach_tag.htm + * see http://docs.oracle.com/javaee/5/jstl/1.1/docs/tlddocs/c/forEach.html + *

+ *              
+ *
+ *                  ${fn:escapeXml(foo)} //Escaped
+ *                  ${foo} //Unescaped
+ *
+ *             
+ *
+ *             
+ *
+ *                  ${fn:escapeXml(foo)} //Escaped
+ *                  ${foo} //Unescaped
+ *
+ *             
+ *
+ *             
+ *
+ *                  ${item}
+ *
+ *             
+ *
+ *             
+ *                         
+ *             
+ *
+ *         
+ *

+ * Freemarker like + *

+ *              <#if foo>
+ *
+ *                  ${fn:escapeXml(foo)} //Escaped
+ *                  ${foo} //Unescaped
+ *
+ *             
+ *
+ *             <#with foo>
+ *
+ *                  ${fn:escapeXml(foo)} //Escaped
+ *                  ${foo} //Unescaped
+ *
+ *             
+ *
+ *             <#list fruits as fruit>
+ *
+ *                  ${fruit}
+ *
+ *             
+ *
+ *
+ *             <#list fruits>
+ *
+ *                  ${item}
+ *
+ *             
+ *
+ *
+ *         
+ *

+ * Freemarker has an expression language for if and such. + * There are no plans to add a full expression langauge to this jstl. + * The same goes for JSTL-like. Simple boolean expressions and calls to functions but no logic. + *

+ * Velocity-like + *

+ *                  
    + * #foreach( $product in $allProducts ) + *
  • $product
  • + * #end + *
+ * + * #if( $foo ) + * Velocity! + * #end + *
+ *

+ * Velocity and Freemarker have if and else, else if. + * Handlebars has if / else. Handlebars also has unless. + * JSTL just has if. + *

+ * Velocity, JSTL and Freemarker have full expression languages. + * Handlebars does not. + *

+ * The plan (currently) is for this templating to have no expressions. + * You have property paths that are either true or false only, and you can call functions + * that return true or false. Or rather true-y or falsey (null = false, empty list = false, etc.). + * Python style true or false which is more ore less what handlebars/mustache do. + * So this will be a stupid jstl, i.e., no logic other than true/false. + *

+ * Start of block characters + *

+ *             Freemarker-like
+ *
+ *             <#if  = '<#'
+ *
+ *             Velocity-like
+ *
+ *             #if = '#'
+ *
+ *             JSTL-like
+ *
+ *             
+ *         

+ *

+ * END of start block character + *

+ *             Freemarker-like
+ *
+ *             <#if blah>   = '>'
+ *                      ^
+ *                      |
+ *
+ *             Velocity-like
+ *
+ *             #if  = ' '
+ *                   ^
+ *                   |
+ *
+ *             JSTL-like
+ *
+ *               = '>'
+ *                             ^
+ *                             |
+ *
+ *             Mustache
+ *             {{#if    }  = '>'
+ *                      ^
+ *                      |
+ *
+ *
+ *         
+ *

+ * This parser merely delivers up the stuff between start and stop. + * Then there are handlers to further divide up the strings as the syntax varies a lot of how + * expression of {{if}}, {{each}}, and {{with}} are handled. + *

+ * Start of expression characters + *

+ *
+ *             Freemarker-like
+ *
+ *             ${
+ *
+ *             Velocity-like
+ *
+ *             $
+ *
+ *             JSTL-like
+ *
+ *             ${
+ *
+ *             Mustache/Handlebar
+ *             {{
+ *
+ *
+ *             Mustache/Handlebar
+ *             {{{
+ *
+ *         
+ *

+ *

+ * End of expression characters + *

+ *
+ *             Freemarker-like
+ *
+ *             }
+ *
+ *             Velocity-like
+ *
+ *             
+ *
+ *             JSTL-like
+ *
+ *             }
+ *
+ *             Mustache/Handlebar
+ *             }}
+ *
+ *
+ *             Mustache/Handlebar (NOT HANDLED BY PARSER, HANDLED BY LOOKUP)
+ *             }}}
+ *
+ *         
+ *

+ * Rather than treat mustache as having two expressions (tried that), I will treat it as one. + * Then the lookupWithDefault mechanism will handle the other case. + *

+ * Velocity allows $vice and ${vice}maniac forms. Rather than handling two forms. + * All parsers treat $vice as an expression. So that $foo is always an expression. + * This would mean for mustache you would have $vice or {{vice}}maniac. + * The caveat being that $expression handlng is a flag so you can turn it off for handlebars by default. + *

+ * One of the goals is to have the ability to write scripts 100% compatible with Handlebars. + *

+ * There is not a similar goal with Velocity, JSTL, and Freemarker. + * You can only ever write scripts that are similar to JSTL not true JSTL scripts. + * You can only ever write scripts that are similar to Velocity not true Velocity scripts. + * You can only ever write scripts that are similar to Freemarker not true Freemarker scripts. + * The goal is the ability to write scripts that are 100% Handlebar compatible and can be rendered by browser or Java. + *

+ * The goal is for BoonTemplate is to be a superset of Handlebars and always only a subset of JSTL, + * Velocity and Freemarker. + *

+ * Order of importance: + *

    + *
  1. , + *
  2. JSTL style support
  3. , + *
  4. Freemarker style support
  5. + *
  6. and then Velocity style support
  7. + *
+ *

+ * Handlebars has the advantage of the expression, and commands start with the same character, which + * will help with parsing. + *

+ *

+ *         

+ * if (sameStart) { + * look for start char of command and expression + * } else { + * look for start char of expression or command #NOTE this takes longer + * } + *

+ *

+ * Also we need to support comments. + *

+ *

+ *             Velocity like multiline
+ *             ##.
+ *             .##
+ *
+ *             Freemarker like
+ *             <#--
+ *             -->
+ *
+ *             Handlebar like
+ *             {{!
+ *             }}
+ *
+ *             JSTL like (I made this one up JSTL does not have comments JSP does. :)
+ *             
+ *         
+ *

+ * Input: + * char[] + *

+ * Output array of tokens in IndexOverlay style + *

+ *
+ *         Array item: TemplateToken (Block or Text or Expression or Comment, startIndex, stopIndex)
+ *
+ *         
+ *

+ * There is no logic in this parser. Just an array of token positions. + * It is up to BoonTemplate on how to interpret those tokens. + */ +public class BoonCoreTemplateParser implements TemplateParser { + + + char charArray[]; + + int index; + char ch; + + + private List tokenList = new ArrayList<>(); + + + @Override + public void parse(String string) { + + this.charArray = FastStringUtils.toCharArray(string); + this.index = 0; + + tokenList.clear(); + + processLoop(); + } + + private void processLoop() { + + + Token text = Token.text(index, -1); + + + for (; index < charArray.length; index++) { + ch = charArray[index]; + + if (ch == '<') { + if (CharScanner.matchChars(TokenTypes.COMMAND_START.jstlStyle(), index, this.charArray)) { + + + text = textToken(text); + + index += TokenTypes.COMMAND_START.jstlStyle().length; + handleCommand(); + } + } + + + else if (ch == '$') { + + + char ch1 = charArray[index + 1]; + if (ch1 == '{') { + if (CharScanner.matchChars(TokenTypes.EXPRESSION_START.jstlStyle(), index, this.charArray)) { + + + text = textToken(text); + + index += TokenTypes.EXPRESSION_START.jstlStyle().length; + handleCurlyExpression(); + text = Token.text(index, -1); + index--; + + + } + } else { + + + text = textToken(text); + index++; + handleExpression(null); + text = Token.text(index, -1); + index--; + + + } + + } else { + if (text == null) { + + text = Token.text(index, -1); + } + } + } + + if (text != null) { + text.stop(charArray.length); + this.tokenList.add(text); + } + } + + private void handleCurlyExpression() { + + int startIndex = index; + index = CharScanner.findChars(TokenTypes.EXPRESSION_END.jstlStyle(), index, charArray); + if (index > 0) { + this.tokenList.add(Token.expression(startIndex, index)); + index += TokenTypes.EXPRESSION_END.jstlStyle().length; + + } + } + + private void handleExpression(String term) { + + int startIndex = index; + index = CharScanner.findWhiteSpace(index, charArray); + + + if (term != null) { + if (index == -1) { + index = startIndex; + index = CharScanner.findChars(term.toCharArray(), index, charArray); + } + } + + if (index == -1) { + index = charArray.length; + } + this.tokenList.add(Token.expression(startIndex, index)); + } + + + private void handleCommand() { + + + int startIndex = index; + boolean noBody = false; + index = CharScanner.findChars(TokenTypes.COMMAND_END_START.jstlStyle(), index, charArray); + if (index == -1 ) { + return; + } + + int foundIndex = CharScanner.findChars(TokenTypes.COMMAND_START_TAG_END.jstlStyle(), index-1, charArray); + if (foundIndex!=-1) { + noBody = true; + } + + if (noBody) { + index--; + + } + + //Add this command start to the token list. + this.tokenList.add(Token.commandStart(startIndex, index)); + + + index += TokenTypes.COMMAND_END_START.jstlStyle().length; + + + if (noBody) { + + tokenList.add(Token.commandBody(index, index)); + + return; + } + + + Token commandBody = Token.commandBody(index, index); + + + tokenList.add(commandBody); + + + + Token text = Token.text(index, -1); + + + + + + + for (; index< charArray.length; index++) { + ch = charArray[index]; + + if (ch=='<') { + + if (CharScanner.matchChars(TokenTypes.COMMAND_START.jstlStyle(), index, this.charArray)) { + + + text = textToken(text); + + index+= TokenTypes.COMMAND_START.jstlStyle().length; + handleCommand(); + + } else if (CharScanner.matchChars(TokenTypes.COMMAND_START_END.jstlStyle(), index, this.charArray)) { + + + + text = textToken(text); + + commandBody.stop(index); + index++; + index = CharScanner.findChar('>', index, charArray); + break; + + } + + } else if (ch=='$') { + + char ch1 = charArray[index+1]; + if (ch1 == '{') { + if (CharScanner.matchChars(TokenTypes.EXPRESSION_START.jstlStyle(), index, this.charArray)) { + + + text = textToken(text); + + index += TokenTypes.EXPRESSION_START.jstlStyle().length; + handleCurlyExpression(); + text = Token.text(index, -1); + index--; + + + } + } else { + text = textToken(text); + + index++; + handleExpression(" getTokenList() { + return tokenList; + } + + + @Override + public void displayTokens(String template) { + + for (Token token : this.getTokenList()) { + puts("token", token, Str.slc(template, token.start(), token.stop())); + } + } + + +} + diff --git a/datastructures-json-boon/src/main/java/org/boon/template/BoonModernTemplateParser.java b/datastructures-json-boon/src/main/java/org/boon/template/BoonModernTemplateParser.java new file mode 100644 index 0000000..a103d89 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/template/BoonModernTemplateParser.java @@ -0,0 +1,550 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.template; + +import org.boon.Str; +import org.boon.core.reflection.FastStringUtils; +import org.boon.primitive.CharScanner; +import org.boon.template.support.Token; +import org.boon.template.support.TokenTypes; + +import java.util.ArrayList; +import java.util.List; + +import static org.boon.Boon.putl; +import static org.boon.Boon.puts; + +public class BoonModernTemplateParser implements TemplateParser{ + + + char charArray[]; + + int index; + int ch; + + + private List tokenList = new ArrayList<>(); + + + + public void TemplateParser() { + + } + + public void parse(String string) { + + this.charArray = FastStringUtils.toCharArray(string); + this.index = 0; + + tokenList.clear(); + + + processLoop(); + } + + @Override + public List getTokenList() { + + return this.tokenList; + } + + + @Override + public void displayTokens(String template) { + + for (Token token : this.getTokenList()) { + puts("token", token, Str.slc(template, token.start(), token.stop())); + } + } + + private void processLoop() { + + int startIndex; + + while (true) { + + startIndex = index; + + index = CharScanner.findChars(TokenTypes.EXPRESSION_START.handleBarStyle(), index, charArray); + + /* If you found something than add a text token up to the point where you found something. */ + if (index != -1) { + + if (startIndex!=index) { + tokenList.add(Token.text(startIndex, index)); + } + + index += TokenTypes.EXPRESSION_START.handleBarStyle().length; + + if (!handleCommandOrExpression()) break; + } else { + /* If you did not find anything, then just have the text token consume the rest of the buffer. */ + + if (startIndex!=charArray.length) { + tokenList.add(Token.text(startIndex, charArray.length)); + } + break; + } + + if (index > charArray.length || index == -1) { + break; + } + } + } + + private boolean handleCommandOrExpression() { + + + if (index > charArray.length) { + return false; + } + + ch = charArray[index]; + + if (ch == '#') { + return handleCommand(); + } else if (ch=='!') { + return handleComment(); + } + else { + return handleExpression(); + } + + } + + private boolean handleComment() { + index++; + int foundIndex = CharScanner.findChars( + TokenTypes.EXPRESSION_END.handleBarStyle(), index, charArray); + + if (foundIndex==-1) { + return false; + } + + index = foundIndex + TokenTypes.EXPRESSION_END.handleBarStyle().length; + return true; + } + + private boolean handleExpression() { + + int startIndex = index; + index = CharScanner.findChars(TokenTypes.EXPRESSION_END.handleBarStyle(), index, charArray); + if (index > 0) { + this.tokenList.add(Token.expression(startIndex, index)); + index += TokenTypes.EXPRESSION_END.handleBarStyle().length; + + if ( index= charArray.length) { + return false; + } + + ch = charArray[index]; + + if (ch == '#') { + if (!handleCommand()) break; //nested command + } else if (ch == '/') { + commandBody.stop(index - 2); + + + index = CharScanner.findChars(TokenTypes.EXPRESSION_END.handleBarStyle(), index, charArray); + + if (index < 0) return false; + index += TokenTypes.EXPRESSION_END.handleBarStyle().length; + break; + + } else { + + if (!handleExpression()) break; + } + + } + + + return true; + + + } + + + private Token textToken(Token text) { + if (text != null) { + text.stop(index); + if (text.start() != text.stop()) { + this.tokenList.add(text); + } + text = null; + } + return text; + } + + + +} + + +/** + * Historical + * @author Rick Hightower + *

+ * This supports handlebar templates, freemarker-like jstl and JSTL-like templates. + *

+ *

+ *             {{#if foo}}
+ *
+ *                  {{foo}} //Escaped
+ *
+ *                  {{{foo}}} //Unescaped
+ *             {{/if foo}}
+ *
+ *             {{#with foo}}
+ *
+ *                   {{foo}}   //Escaped
+ *                   {{{foo}}} /Unescaped
+ *
+ *             {{/with}}
+ *
+ *             {{#each fruits}}
+ *                  {{this}}
+ *             {{/each}}
+ *         
+ *

+ * see http://www.tutorialspoint.com/jsp/jsp_standard_tag_library.htm + * see http://www.tutorialspoint.com/jsp/jstl_core_foreach_tag.htm + * see http://docs.oracle.com/javaee/5/jstl/1.1/docs/tlddocs/c/forEach.html + *

+ *              
+ *
+ *                  ${fn:escapeXml(foo)} //Escaped
+ *                  ${foo} //Unescaped
+ *
+ *             
+ *
+ *             
+ *
+ *                  ${fn:escapeXml(foo)} //Escaped
+ *                  ${foo} //Unescaped
+ *
+ *             
+ *
+ *             
+ *
+ *                  ${item}
+ *
+ *             
+ *
+ *             
+ *                         
+ *             
+ *
+ *         
+ *

+ * Freemarker like + *

+ *              <#if foo>
+ *
+ *                  ${fn:escapeXml(foo)} //Escaped
+ *                  ${foo} //Unescaped
+ *
+ *             
+ *
+ *             <#with foo>
+ *
+ *                  ${fn:escapeXml(foo)} //Escaped
+ *                  ${foo} //Unescaped
+ *
+ *             
+ *
+ *             <#list fruits as fruit>
+ *
+ *                  ${fruit}
+ *
+ *             
+ *
+ *
+ *             <#list fruits>
+ *
+ *                  ${item}
+ *
+ *             
+ *
+ *
+ *         
+ *

+ * Freemarker has an expression language for if and such. + * There are no plans to add a full expression langauge to this jstl. + * The same goes for JSTL-like. Simple boolean expressions and calls to functions but no logic. + *

+ * Velocity-like + *

+ *                  
    + * #foreach( $product in $allProducts ) + *
  • $product
  • + * #end + *
+ * + * #if( $foo ) + * Velocity! + * #end + *
+ *

+ * Velocity and Freemarker have if and else, else if. + * Handlebars has if / else. Handlebars also has unless. + * JSTL just has if. + *

+ * Velocity, JSTL and Freemarker have full expression languages. + * Handlebars does not. + *

+ * The plan (currently) is for this templating to have no expressions. + * You have property paths that are either true or false only, and you can call functions + * that return true or false. Or rather true-y or falsey (null = false, empty list = false, etc.). + * Python style true or false which is more ore less what handlebars/mustache do. + * So this will be a stupid jstl, i.e., no logic other than true/false. + *

+ * Start of block characters + *

+ *             Freemarker-like
+ *
+ *             <#if  = '<#'
+ *
+ *             Velocity-like
+ *
+ *             #if = '#'
+ *
+ *             JSTL-like
+ *
+ *             
+ *         

+ *

+ * END of start block character + *

+ *             Freemarker-like
+ *
+ *             <#if blah>   = '>'
+ *                      ^
+ *                      |
+ *
+ *             Velocity-like
+ *
+ *             #if  = ' '
+ *                   ^
+ *                   |
+ *
+ *             JSTL-like
+ *
+ *               = '>'
+ *                             ^
+ *                             |
+ *
+ *             Mustache
+ *             {{#if    }  = '>'
+ *                      ^
+ *                      |
+ *
+ *
+ *         
+ *

+ * This parser merely delivers up the stuff between start and stop. + * Then there are handlers to further divide up the strings as the syntax varies a lot of how + * expression of {{if}}, {{each}}, and {{with}} are handled. + *

+ * Start of expression characters + *

+ *
+ *             Freemarker-like
+ *
+ *             ${
+ *
+ *             Velocity-like
+ *
+ *             $
+ *
+ *             JSTL-like
+ *
+ *             ${
+ *
+ *             Mustache/Handlebar
+ *             {{
+ *
+ *
+ *             Mustache/Handlebar
+ *             {{{
+ *
+ *         
+ *

+ *

+ * End of expression characters + *

+ *
+ *             Freemarker-like
+ *
+ *             }
+ *
+ *             Velocity-like
+ *
+ *             
+ *
+ *             JSTL-like
+ *
+ *             }
+ *
+ *             Mustache/Handlebar
+ *             }}
+ *
+ *
+ *             Mustache/Handlebar (NOT HANDLED BY PARSER, HANDLED BY LOOKUP)
+ *             }}}
+ *
+ *         
+ *

+ * Rather than treat mustache as having two expressions (tried that), I will treat it as one. + * Then the lookupWithDefault mechanism will handle the other case. + *

+ * Velocity allows $vice and ${vice}maniac forms. Rather than handling two forms. + * All parsers treat $vice as an expression. So that $foo is always an expression. + * This would mean for mustache you would have $vice or {{vice}}maniac. + * The caveat being that $expression handlng is a flag so you can turn it off for handlebars by default. + *

+ * One of the goals is to have the ability to write scripts 100% compatible with Handlebars. + *

+ * There is not a similar goal with Velocity, JSTL, and Freemarker. + * You can only ever write scripts that are similar to JSTL not true JSTL scripts. + * You can only ever write scripts that are similar to Velocity not true Velocity scripts. + * You can only ever write scripts that are similar to Freemarker not true Freemarker scripts. + * The goal is the ability to write scripts that are 100% Handlebar compatible and can be rendered by browser or Java. + *

+ * The goal is for BoonTemplate is to be a superset of Handlebars and always only a subset of JSTL, + * Velocity and Freemarker. + *

+ * Order of importance: + *

    + *
  1. , + *
  2. JSTL style support
  3. , + *
  4. Freemarker style support
  5. + *
  6. and then Velocity style support
  7. + *
+ *

+ * Handlebars has the advantage of the expression, and commands start with the same character, which + * will help with parsing. + *

+ *

+ *         

+ * if (sameStart) { + * look for start char of command and expression + * } else { + * look for start char of expression or command #NOTE this takes longer + * } + *

+ *

+ * Also we need to support comments. + *

+ *

+ *             Velocity like multiline
+ *             ##.
+ *             .##
+ *
+ *             Freemarker like
+ *             <#--
+ *             -->
+ *
+ *             Handlebar like
+ *             {{!
+ *             }}
+ *
+ *             JSTL like (I made this one up JSTL does not have comments JSP does. :)
+ *             
+ *         
+ *

+ * Input: + * char[] + *

+ * Output array of tokens in IndexOverlay style + *

+ *
+ *         Array item: TemplateToken (Block or Text or Expression or Comment, startIndex, stopIndex)
+ *
+ *         
+ *

+ * There is no logic in this parser. Just an array of token positions. + * It is up to BoonTemplate on how to interpret those tokens. + */ diff --git a/datastructures-json-boon/src/main/java/org/boon/template/BoonTemplate.java b/datastructures-json-boon/src/main/java/org/boon/template/BoonTemplate.java new file mode 100644 index 0000000..f3cd7e4 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/template/BoonTemplate.java @@ -0,0 +1,612 @@ +package org.boon.template; + +import org.boon.Boon; +import org.boon.IO; +import org.boon.Str; +import org.boon.StringScanner; +import org.boon.collections.LazyMap; +import org.boon.core.Conversions; +import org.boon.core.reflection.BeanUtils; +import org.boon.expression.BoonExpressionContext; +import org.boon.expression.ExpressionContext; +import org.boon.primitive.CharBuf; +import org.boon.template.support.LoopTagStatus; +import org.boon.template.support.Token; +import org.boon.template.support.TokenTypes; + +import java.util.*; + +import static org.boon.Boon.puts; + +/** + * Created by Richard on 9/15/14. + */ +public class BoonTemplate implements Template { + + + private CharBuf _buf = CharBuf.create(16); + private BoonTemplate parentTemplate; + private TemplateParser parser; + private String template; + private final ExpressionContext _context; + private BoonCommandArgumentParser commandArgumentParser = new BoonCommandArgumentParser(); + + private void output(Object object) { + _buf.add(object); + } + + private void output(Token token) { + _buf.add(template, token.start(), token.stop()); + } + + + public BoonTemplate() { + + parser = new BoonCoreTemplateParser(); + + _context = new BoonExpressionContext(); + + } + + + public BoonTemplate(TemplateParser templateParser) { + + parser = templateParser; + _context = new BoonExpressionContext(); + + } + + public BoonTemplate(ExpressionContext context, TemplateParser templateParser) { + + parser = templateParser; + _context = context; + + } + + + @Override + public String replace(String template, Object... context) { + + initContext(context); + this.template = template; + parser.parse(template); + _buf.readForRecycle(); + + Iterator tokens = parser.getTokenList().iterator(); + + while (tokens.hasNext()) { + final Token token = tokens.next(); + processToken(tokens, token); + } + + return _buf.toString(); + } + + + private String include(String template) { + + this.template = template; + parser.parse(template); + _buf.readForRecycle(); + + Iterator tokens = parser.getTokenList().iterator(); + + while (tokens.hasNext()) { + final Token token = tokens.next(); + processToken(tokens, token); + } + + return _buf.toString(); + } + + @Override + public String replaceFromResource(String resource, Object... context) { + final String template = Boon.resource(resource); + return replace(template, context); + } + + @Override + public String replaceFromFile(String resource, Object... context) { + final String template = IO.read(resource); + return replace(template, context); + + } + + @Override + public String replaceFromURI(String resource, Object... context) { + + final String template = IO.readResource(resource); + return replace(template, context); + + } + + public String inlcudeFromURI(String resource) { + + final String template = IO.readResource(resource); + return include(template); + + } + + private String textFromToken(Token token) { + return template.substring(token.start(), token.stop()); + } + + + protected void initContext(final Object... root) { + + _context.initContext(root); + + } + + + private Token handleCommand(String template, Token commandToken, Iterator tokens) { + + this.template = template; + + final String commandText = textFromToken(commandToken); + + int index = StringScanner.findWhiteSpace(commandText); + + String command = Str.endSliceOf(commandText, index); + + String args = Str.sliceOf(commandText, index); + + + Map params = commandArgumentParser.parseArguments(args); + + + Token bodyToken = tokens.next(); + + + int bodyTokenStop; + if (bodyToken.type() == TokenTypes.COMMAND_BODY) { + bodyTokenStop = bodyToken.stop(); + } else { + bodyTokenStop = -1; + + } + + + List commandTokens = new ArrayList<>(); + + + if (bodyToken.start() != bodyToken.stop()) { + while (tokens.hasNext()) { + final Token next = tokens.next(); + commandTokens.add(next); + if (next.stop() == bodyTokenStop) { + break; + } + + } + } + + dispatchCommand(command, params, commandTokens); + + return null; + + } + + + private void dispatchCommand( + String command, + Map params, + List commandTokens + ) { + switch (command) { + case "if": + handleIf(params, commandTokens, true); + break; + + case "unless": + handleIf(params, commandTokens, false); + break; + + case "set": + case "let": + case "var": + case "define": + case "def": + case "assign": + handleSet(params, commandTokens); + break; + + + case "insert": + case "include": + case "import": + case "template": + handleInclude(params, commandTokens); + + case "list": + case "for": + case "forEach": + case "foreach": + case "loop": + case "each": + handleLoop(params, commandTokens); + + } + + } + + + private void processCommandBodyTokens(List commandTokens) { + final Iterator commandTokenIterators + = commandTokens.iterator(); + while (commandTokenIterators.hasNext()) { + + Token token = commandTokenIterators.next(); + processToken(commandTokenIterators, token); + + } + } + + private void processToken(Iterator tokens, Token token) { + switch (token.type()) { + case TEXT: + output(token); + break; + case EXPRESSION: + String path = textFromToken(token); + output(_context.lookup(path)); + break; + case COMMAND: + handleCommand(template, token, tokens); + + break; + + + } + } + + + private String getStringParam(String param, Map params, String defaultValue) { + + String value = Str.toString(params.get(param)); + if (Str.isEmpty(value)) { + return defaultValue; + } else if (value.startsWith("$")) { + return Conversions.toString(_context.lookupWithDefault(value, defaultValue)); + + } + return value; + } + + private int getIntParam(String param, Map params, int defaultValue) { + + Object value = params.get(param); + if (value == null) { + return defaultValue; + } else if (value instanceof CharSequence && value.toString().startsWith("$")) { + return Conversions.toInt(_context.lookupWithDefault(value.toString(), defaultValue)); + + } + return Conversions.toInt(value); + } + + public void displayTokens() { + + for (Token token : parser.getTokenList()) { + puts("token", token, textFromToken(token)); + } + } + + + private void handleLoop(Map params, List commandTokens) { + + + String itemsName = Str.toString(params.get("items")); + Object object = null; + Collection items; + + + if (!Boon.isEmpty(itemsName)) { + object = _context.lookup(itemsName); + } + + if (Boon.isEmpty(object)) { + object = params.get("varargs"); + + } + + if (Boon.isStringArray(object)) { + String[] array = (String[]) object; + + List holder = new ArrayList(); + + for (int index = 0; index < array.length; index++) { + if (Str.isEmpty(array[index])) { + continue; + } + object = _context.lookup(array[index]); + + + holder.addAll(Conversions.toCollection(object)); + + } + + object = holder; + + } + + + items = Conversions.toCollection(object); + + + String var = getStringParam("var", params, "item"); + String varStatus = getStringParam("varStatus", params, "status"); + + + int begin = getIntParam("begin", params, -1); + int end = getIntParam("end", params, -1); + int step = getIntParam("step", params, -1); + + LoopTagStatus status = new LoopTagStatus(); + + status.setCount(items.size()); + + if (end != -1) { + status.setEnd(end); + } else { + end = items.size(); + } + + + if (begin != -1) { + status.setBegin(begin); + } else { + begin = 0; + } + + + if (step != -1) { + status.setStep(step); + } else { + step = 1; + } + + + Map values = new LazyMap(); + + int index = 0; + + _context.pushContext(values); + + for (Object item : items) { + + if (index >= begin && index < end && index % step == 0) { + + values.put(var, item); + values.put(varStatus, status); + + + status.setIndex(index); + + values.put("@first", status.isFirst()); + + values.put("@last", status.isLast()); + + + values.put("index", index); + values.put("@index", index); + + if (item instanceof Map.Entry) { + Map.Entry entry = (Map.Entry) item; + values.put("@key", entry.getKey()); + values.put("@value", entry.getValue()); + values.put("this", entry.getValue()); + + } else { + + values.put("this", item); + + } + processCommandBodyTokens(commandTokens); + } + index++; + } + + _context.removeLastContext(); + + + } + + + private void handleSet(Map params, List commandTokens) { + + + String var = getStringParam("var", params, ""); + String propertyPath = getStringParam("property", params, ""); + String valueExpression = Str.toString(params.get("value")); + String targetExpression = Str.toString(params.get("target")); + + + Object value = _context.lookup(valueExpression); + + Object bean = _context.lookup(targetExpression); + + if (!Str.isEmpty(propertyPath) && bean != null) { + BeanUtils.idx(bean, propertyPath, value); + } + + if (!Str.isEmpty(var)) { + _context.put(var, value); + } + + } + + + private void handleInclude(Map params, List commandTokens) { + + + Map newContext = new LazyMap(params.size()); + + for(Map.Entry entry : params.entrySet()) { + newContext.put(entry.getKey(), _context.lookupWithDefault( + entry.getValue().toString(), + entry.getValue())); + } + + final Object otype = params.get("type"); + String type; + + if (!Boon.isEmpty(otype)) { + type = otype.toString(); + } else { + type=""; + } + + TemplateParser includeParser; + + switch (type) { + case "": + try { + includeParser = parser.getClass().newInstance(); + } catch (Exception e) { + includeParser = new BoonCoreTemplateParser(); + } + break; + case "boon": + case "jsp": + case "jstl": + includeParser = new BoonCoreTemplateParser(); + break; + + case "modern": + case "mustache": + case "handlebar": + case "handlebars": + includeParser = new BoonModernTemplateParser(); + break; + + default: + includeParser = new BoonCoreTemplateParser(); + + } + + BoonTemplate template = new BoonTemplate(_context, includeParser); + template.parentTemplate = this; + _context.pushContext(newContext); + + + final String resource = (String) params.get("resource"); + + if (resource.contains(":")) { + output(template.inlcudeFromURI(resource)); + } else { + output(template.includeFromResource(resource)); + } + + _context.removeLastContext(); + + + } + + private String includeFromResource(String resource) { + final String template = Boon.resource(resource); + return include(template); + } + + private void handleIf(Map params, List commandTokens, + boolean normal) { + + boolean display = false; + + String var = getStringParam("var", params, "__none"); + + if (params.containsKey("test")) { + final String test = Str.toString(params.get("test")); + if (!Str.isEmpty(test)) { + + if ("true".equals(test)) { + display = true; + } else { + Object o = _context.lookupWithDefault(test, ""); + + display = Conversions.toBoolean(o); + } + } + } else { + final Object varargsObject = params.get("varargs"); + + if (Boon.isStringArray(varargsObject)) { + + String[] array = (String[]) varargsObject; + + if (array.length > 0) { + display = true; //for now + } + for (int index = 0; index < array.length; index++) { + + if (!Str.isEmpty(array[index])) { + Object o = _context.lookup(array[index]); + if (!Conversions.toBoolean(o)) { + display = false; + break; + } + } + } + + } else if (varargsObject instanceof Collection) { + Collection varargs = (Collection) varargsObject; + + + if (varargs.size() > 0) { + display = true; //for now + } + + + for (Object arg : varargs) { + + Object value = _context.lookup(arg.toString()); + if (!Conversions.toBoolean(value)) { + display = false; + break; + } + } + } + } + + display = display && normal; + + if (!var.equals("__none")) { + + _context.put(var, display); + + } + + + if (display) { + + processCommandBodyTokens(commandTokens); + + } + + + } + + + public static Template template() { + + return new BoonTemplate(new BoonModernTemplateParser()); + + } + + public static Template jstl() { + + return new BoonTemplate(new BoonCoreTemplateParser()); + + } + + public void addFunctions(Class functions) { + + _context.addFunctions(functions); + } + + public void addFunctions(String prefix, Class functions) { + + _context.addFunctions(prefix, functions); + } + +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/template/Commands.java b/datastructures-json-boon/src/main/java/org/boon/template/Commands.java new file mode 100644 index 0000000..3833851 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/template/Commands.java @@ -0,0 +1,53 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.template; + +import org.boon.core.Conversions; + +/** + * Created by Richard on 2/27/14. + */ +public enum Commands { + EACH, //DONE + IF, //DONE + WITH, //NOT DONE + UNLESS, //DONE + LOG, //NOT DONE + INCLUDE, //INCLUDE and import ANOTHER TEMPLATE has a name gets mapped in.. used like function if found in namespace WILL BE LIKE FREEMARKER style + UNKNOWN; + + /** + * + * @param value + * @return + */ + public static Commands command(String value) { + return Conversions.toEnum(Commands.class, value.toUpperCase(), UNKNOWN); + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/template/Template.java b/datastructures-json-boon/src/main/java/org/boon/template/Template.java new file mode 100644 index 0000000..a0d4f8f --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/template/Template.java @@ -0,0 +1,20 @@ +package org.boon.template; + +public interface Template { + + + String replace(String string, Object... context); + + String replaceFromResource(String string, Object... context); + + + String replaceFromFile(String string, Object... context); + + String replaceFromURI(String string, Object... context); + + + void addFunctions(Class functions); + + + void addFunctions(String prefix, Class functions); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/template/TemplateParser.java b/datastructures-json-boon/src/main/java/org/boon/template/TemplateParser.java new file mode 100644 index 0000000..4cfa211 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/template/TemplateParser.java @@ -0,0 +1,17 @@ +package org.boon.template; + +import org.boon.template.support.Token; + +import java.util.List; + +/** + * Created by Richard on 9/18/14. + */ +public interface TemplateParser { + void parse(String string); + + List getTokenList(); + + void displayTokens(String template); + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/template/support/LoopTagStatus.java b/datastructures-json-boon/src/main/java/org/boon/template/support/LoopTagStatus.java new file mode 100644 index 0000000..9d0f13a --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/template/support/LoopTagStatus.java @@ -0,0 +1,83 @@ +package org.boon.template.support; + +/** + * Created by Richard on 9/17/14. + */ +public class LoopTagStatus { + int count; + Object current; + Integer begin; + Integer end; + Integer step; + int index; + + public int getCount() { + return count; + } + + public void setCount(int count) { + this.count = count; + } + + public Object getCurrent() { + return current; + } + + public void setCurrent(Object current) { + this.current = current; + } + + public Integer getEnd() { + return end; + } + + public void setEnd(Integer end) { + this.end = end; + } + + public Integer getStep() { + return step; + } + + public void setStep(Integer step) { + this.step = step; + } + + public boolean isFirst() { + boolean first = false; + + if (begin==null && index==0) { + first=true; + } else if (begin!=null && index==begin) { + first = true; + } + return first; + + } + + + public int getIndex() { + return index; + } + + public void setIndex(int index) { + this.index = index; + } + + public boolean isLast() { + + + boolean last = false; + + if (end==null && index+1==count) { + last=true; + } else if (end!=null && index+1==end) { + last = true; + } + return last; + } + + public void setBegin(Integer begin) { + this.begin = begin; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/template/support/Token.java b/datastructures-json-boon/src/main/java/org/boon/template/support/Token.java new file mode 100644 index 0000000..3774a46 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/template/support/Token.java @@ -0,0 +1,79 @@ +package org.boon.template.support; + +/** +* Created by Richard on 9/17/14. +*/ +public class Token { + + int start; + int stop; + TokenTypes type; + + public int start() { + return start; + } + + + public int stop() { + return stop; + } + + public TokenTypes type() { + return type; + } + + public Token(int start, int stop, TokenTypes type) { + this.start = start; + this.stop = stop; + this.type = type; + } + + public Token() { + } + + public static Token text(int start, int stop) { + Token token = new Token(); + token.start = start; + token.stop = stop; + token.type = TokenTypes.TEXT; + return token; + } + + + public static Token commandStart(int start, int stop) { + Token token = new Token(); + token.start = start; + token.stop = stop; + token.type = TokenTypes.COMMAND; + return token; + } + + public static Token commandBody(int start, int stop) { + Token token = new Token(); + token.start = start; + token.stop = stop; + token.type = TokenTypes.COMMAND_BODY; + return token; + } + + public static Token expression(int start, int stop) { + Token token = new Token(); + token.start = start; + token.stop = stop; + token.type = TokenTypes.EXPRESSION; + return token; + } + + @Override + public String toString() { + return "Token{" + + "start=" + start + + ", stop=" + stop + + ", type=" + type + + '}'; + } + + public void stop(int index) { + stop = index; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/template/support/TokenTypes.java b/datastructures-json-boon/src/main/java/org/boon/template/support/TokenTypes.java new file mode 100644 index 0000000..6db0a82 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/template/support/TokenTypes.java @@ -0,0 +1,52 @@ +package org.boon.template.support; + +import org.boon.core.reflection.FastStringUtils; + +/** + * Created by Richard on 9/17/14. + */ +public enum TokenTypes { + COMMAND(""), + COMMAND_BODY(""), + EXPRESSION(""), + COMMAND_START("","{{/"), + COMMAND_START_TAG_END("/>"), + + COMMAND_START_END(" | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation; + +import java.io.Serializable; + + +/** + *

+ * + * BaseValidator interface for crank validation. + * This would get used by commons and our other validation mechanism. + * + *

+ * + * @author Rick Hightower + */ +public interface FieldValidator extends Serializable { + /** + * Validates a single field. + * + * @param fieldValue object to validate + * @param fieldLabel field label + * @return A messages whose hasError is set to true if there was an error. + */ + ValidatorMessageHolder validate( Object fieldValue, String fieldLabel ); +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/RecursiveDescentPropertyValidator.java b/datastructures-json-boon/src/main/java/org/boon/validation/RecursiveDescentPropertyValidator.java new file mode 100644 index 0000000..5e8bbc6 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/RecursiveDescentPropertyValidator.java @@ -0,0 +1,291 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation; + + +import org.boon.Exceptions; +import org.boon.Maps; +import org.boon.core.Typ; +import org.boon.core.reflection.BeanUtils; +import org.boon.core.reflection.Reflection; +import org.boon.validation.readers.AnnotationValidatorMetaDataReader; +import org.boon.validation.validators.CompositeValidator; + +import java.beans.BeanInfo; +import java.beans.IntrospectionException; +import java.beans.Introspector; +import java.beans.PropertyDescriptor; +import java.util.*; + + +public class RecursiveDescentPropertyValidator { + protected ValidatorMetaDataReader validatorMetaDataReader = new AnnotationValidatorMetaDataReader(); + + public class MessageHolder { + public final String propertyPath; + public final ValidatorMessageHolder holder; + + MessageHolder( String propertyPath, ValidatorMessageHolder holder ) { + this.propertyPath = propertyPath; + this.holder = holder; + } + } + + + /** + * Create the validator by looking it up in the ObjectRegistry and then + * populating it with values from the meta-data list. + * + * @param validationMetaDataList Holds metadataInformation about validation. + * @return composite validator with all of the validators for this property present. + */ + protected CompositeValidator createValidator( + List validationMetaDataList ) { + + /* + * A field (property) can be associated with many validators so we use a + * CompositeValidator to hold all of the validators associated with this + * validator. + */ + CompositeValidator compositeValidator = new CompositeValidator(); // hold + // all + // of + // the + // validators + // associated + // with + // the + // field. + + /* + * Lookup the list of validators for the current field and initialize + * them with validation meta-data properties. + */ + List validatorsList = + lookupTheListOfValidatorsAndInitializeThemWithMetaDataProperties( validationMetaDataList ); + + compositeValidator.setValidatorList( validatorsList ); + + return compositeValidator; + } + + + private List getFieldsToValidate( Object object ) { + List properties; + BeanInfo beanInfo; + try { + beanInfo = Introspector.getBeanInfo( object.getClass() ); + } catch ( IntrospectionException e ) { + + throw new RuntimeException( e ); + } + PropertyDescriptor[] propertyDescriptors = beanInfo.getPropertyDescriptors(); + properties = new ArrayList<>( propertyDescriptors.length ); + for ( PropertyDescriptor pd : propertyDescriptors ) { + if ( !pd.getName().equals( "class" ) ) { + properties.add( pd ); + } + } + return properties; + } + + protected List readMetaData( Class clazz, + String propertyName ) { + return validatorMetaDataReader.readMetaData( clazz, + propertyName ); + } + + private void validateProperty( final Object object, final Object objectProperty, final String property, + List vMessageHolders ) { + + List metaDataList = readMetaData( object.getClass(), + property ); + CompositeValidator cv = createValidator( metaDataList ); + ValidatorMessageHolder holder = cv.validate( objectProperty, property ); + vMessageHolders.add( new MessageHolder( ValidationContext.getBindingPath(), holder ) ); + } + + protected boolean shouldFieldBeValidated() { + return true; + } + + + public List validateObject( final Object object ) { + + + List list = Collections.EMPTY_LIST; + try { + ValidationContext.create(); + list = validateObjectWithMessages( object, null ); + } finally { + ValidationContext.destroy(); + } + return list; + } + + public List validateObject( final Object object, Map registry ) { + + + List list = Collections.EMPTY_LIST; + try { + ValidationContext.create(); + ValidationContext.get().setObjectRegistry( registry ); + list = validateObjectWithMessages( object, null ); + } finally { + ValidationContext.destroy(); + } + return list; + } + + + public List validateObjectWithMessages( final Object object, List validationMessages ) { + List fieldsToValidate = getFieldsToValidate( object ); + Map objectPropertiesAsMap = Maps.toMap( object ); + if ( validationMessages == null ) { + validationMessages = new ArrayList<>(); + } + + for ( PropertyDescriptor field : fieldsToValidate ) { + + /* Keep track of the field name and parentObject so the field validators can access them. */ + ValidationContext.get().pushProperty( field.getName() ); + ValidationContext.get().setParentObject( object ); + if ( shouldFieldBeValidated() ) { + Object propertyObject = objectPropertiesAsMap.get( field.getName() ); + validateProperty( object, propertyObject, field.getName(), validationMessages ); + + /* Don't validate if it is not a basic type. */ + if ( propertyObject != null && !Typ.isBasicType( propertyObject ) ) { + validateObjectWithMessages( propertyObject, validationMessages ); + } + } + ValidationContext.get().pop(); + } + + return validationMessages; + + } + + + /** + * Lookup the list of validators for the current field and initialize them + * with validation meta-data properties. + * + * @param validationMetaDataList list of validation meta-data + * @return list of field validators. + */ + private List + lookupTheListOfValidatorsAndInitializeThemWithMetaDataProperties( + List validationMetaDataList ) { + + List validatorsList = new ArrayList<>(); + + /* + * Look up the crank validators and then apply the properties from the + * validationMetaData to them. + */ + for ( ValidatorMetaData validationMetaData : validationMetaDataList ) { + /* Look up the FieldValidator. */ + FieldValidator validator = lookupValidatorInRegistry( + validationMetaData + .getName() ); + /* + * Apply the properties from the validationMetaData to the + * validator. + */ + applyValidationMetaDataPropertiesToValidator( validationMetaData, + validator ); + validatorsList.add( validator ); + } + return validatorsList; + } + + /** + * This method looks up the validator in the registry. + * + * @param validationMetaDataName The name of the validator that we are looking up. + * @return field validator + */ + private FieldValidator lookupValidatorInRegistry( + String validationMetaDataName ) { + + + Map applicationContext = ValidationContext.get().getObjectRegistry(); + + Exceptions.requireNonNull( applicationContext ); + + return ( FieldValidator ) applicationContext + .get( "/org/boon/validator/" + validationMetaDataName ); + } + + /** + * This method applies the properties from the validationMetaData to the + * validator uses Spring's BeanWrapperImpl. + * + * @param metaData validation meta data + * @param validator field validator + */ + private void applyValidationMetaDataPropertiesToValidator( + ValidatorMetaData metaData, FieldValidator validator ) { + Map properties = metaData.getProperties(); + ifPropertyBlankRemove( properties, "detailMessage" ); + ifPropertyBlankRemove( properties, "summaryMessage" ); + + BeanUtils.copyProperties( validator, + properties ); + } + + /** + * Removes a property if it is null or an empty string. + * This allows the property to have a null or emtpy string in the + * meta-data but we don't copy it to the validator if the property + * is not set. + * + * @param properties properties + * @param property property + */ + private void ifPropertyBlankRemove( Map properties, String property ) { + + Object object = properties.get( property ); + if ( object == null ) { + properties.remove( property ); + } else if ( object instanceof String ) { + String string = ( String ) object; + if ( "".equals( string.trim() ) ) { + properties.remove( property ); + } + } + } + + public void setValidatorMetaDataReader( + ValidatorMetaDataReader validatorMetaDataReader ) { + this.validatorMetaDataReader = validatorMetaDataReader; + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/Validatable.java b/datastructures-json-boon/src/main/java/org/boon/validation/Validatable.java new file mode 100644 index 0000000..d897bf4 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/Validatable.java @@ -0,0 +1,38 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation; + +/** + * The validate method invoked by the phase listener for domain-driven validation + * + * @author Paul + */ +public interface Validatable { + void validate() throws ValidationException; +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/ValidationContext.java b/datastructures-json-boon/src/main/java/org/boon/validation/ValidationContext.java new file mode 100644 index 0000000..21bc1dd --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/ValidationContext.java @@ -0,0 +1,321 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation; + +import org.boon.messages.ResourceBundleLocator; + +import java.text.MessageFormat; +import java.util.*; + +/** + * This is the validator context. + * It holds thread local state that is important to validation. + * It is an interface into underlying component and/or MVC/Model 2 architectures + * to abstract and simplify access to the context of things we need to perform validation. + * + * @author Rick Hightower + */ +public class ValidationContext { + + + private ArrayDeque bindingPath = new ArrayDeque<>(); + + + /** + * Used to find the resource bundle. This can vary based on the + * web framework you are using, and whether you want to use Spring + * Message sources or not. + */ + private ResourceBundleLocator resourceBundleLocator; + + + /** + * Holds the parent object of the field. A parent object is an + * object that contains fields. + */ + private Object parentObject; + + /** + * Context for validaiton rule variables. + */ + private Map params; + + /** + * Holds the data(context) for the current thread. + */ + private static ThreadLocal holder = new ThreadLocal<>(); + + + /** + * Used to determine if an argument or message refers to an item that + * should be looked up in the resourceBundle. + */ + private String i18nMarker = "{"; + + + private String currentSubject; + + /** + * Provides access to the ValidationContext. + * + * @return xx + */ + public static ValidationContext getCurrentInstance() { + return holder.get(); + } + + /** + * Allows the subclass to register an instance of itself + * as the context. The subclass will either be JSF, Struts 2 (WebWork) or + * Spring MVC aware. + * + * @param context xx + */ + protected void register( ValidationContext context ) { + holder.set( context ); + } + + /** + * Get the parent object. Allows the FieldValidators to access + * the parent object. + * + * @return xx + */ + public Object getParentObject() { + return parentObject; + } + + /** + * Allows our integration piece for JSF or Spring MVC to set the + * parent object. The parent object is the form bean in Spring MVC speak. + * + * @param parentObject xx + */ + public void setParentObject( Object parentObject ) { + this.parentObject = parentObject; + } + + /** + * Proivdes a list of parameters that we can access from field validators. + * + * @return xx + */ + public Map getParams() { + return params; + } + + public void setParams( Map params ) { + this.params = params; + } + + /** + * Gets the proposed property value. + * This is the value before it gets applied to the actual bean. + * + * @param propertyName xx + * @return xx + */ + public Object getProposedPropertyValue( String propertyName ) { + return null; + } + + private String calculateBindingPath() { + StringBuilder builder = new StringBuilder( 255 ); + int index = 0; + for ( String component : bindingPath ) { + index++; + builder.append( component ); + if ( index != bindingPath.size() ) { + builder.append( '.' ); + } + } + return builder.toString(); + } + + public void pop() { + bindingPath.pop(); + } + + public void pushProperty( final String component ) { + bindingPath.push( component ); + } + + public void pushObject( final Object object ) { + String simpleName = object.getClass().getSimpleName(); + simpleName = simpleName.substring( 0, 1 ).toLowerCase() + simpleName.substring( 1, simpleName.length() ); + bindingPath.push( simpleName ); + } + + public static String getBindingPath() { + if ( getCurrentInstance() != null ) { + return getCurrentInstance().calculateBindingPath(); + } + return ""; + } + + public static ValidationContext create() { + holder.set( new ValidationContext() ); + return get(); + } + + public static ValidationContext get() { + return holder.get(); + } + + public static void destroy() { + holder.set( null ); + } + + Map objectRegistry; + + public Map getObjectRegistry() { + return objectRegistry; + } + + public void setObjectRegistry( Map objectRegistry ) { + this.objectRegistry = objectRegistry; + } + + public String getMessage( String key ) { + + String message = doGetMessageFromBundle( key ); + + return message == null ? key : message; + + } + + + public String getCurrentSubject() { + return currentSubject; + } + + public void setCurrentSubject( String currentSubject ) { + this.currentSubject = currentSubject; + } + + + public String createMessage( String message, String subject, Object[] actualArgs ) { + List argumentList = new ArrayList( Arrays.asList( actualArgs ) ); + + /* If the subject is found addObject it as the first + * argument to the argument list. */ + if ( subject != null ) { + argumentList.add( 0, this.getMessage( subject ) ); + + } + try { + /* Attempt to create the message. */ + return MessageFormat.format( message, argumentList.toArray() ); + } catch ( Exception ex ) { + + return message; + } + + } + + + public void setResourceBundleLocator( ResourceBundleLocator resourceBundleLocator ) { + this.resourceBundleLocator = resourceBundleLocator; + } + + + protected ResourceBundleLocator getResourceBundleLocator() { + return resourceBundleLocator; + } + + + /** + * The doGetMessageFromBundle does a bit of magic. If the message starts with { + * than it assumes it is an i18N message and looks it up in the + * resource bundle. If it starts with #{ it assumes it is an expression + * and uses OGNL, JSF EL, or the Universal EL to look up the expression + * in the context. + */ + private String doGetMessageFromBundle( String key ) { + + if ( resourceBundleLocator == null ) { + return null; + } + /* Find the resourceBundle. */ + ResourceBundle bundle = this.resourceBundleLocator.getBundle(); + + if ( bundle == null ) { + return null; + } + + + String message = null; //holds the message + + /* If the message starts with an i18nMarker look it up + * in the resource bundle. + */ + if ( key.startsWith( this.i18nMarker ) ) { + try { + key = key.substring( 1, key.length() - 1 ); + message = lookupMessageInBundle( key, bundle, message ); + } catch ( MissingResourceException mre ) { + message = key; + } + } else { + /* + * If it does not start with those markers see if it has a ".". If + * it has a dot, try to look it up. If it is not found then just + * return the key as the message. + */ + if ( key.contains( "." ) ) { + try { + message = lookupMessageInBundle( key, bundle, message ); + } catch ( MissingResourceException mre ) { + message = key; + } + } else { + message = key; + } + } + return message; + } + + + private String lookupMessageInBundle( String key, ResourceBundle bundle, + String message ) { + if ( getCurrentSubject() != null ) { + try { + message = bundle.getString( key + "." + getCurrentSubject() ); + + } catch ( MissingResourceException mre ) { + message = bundle.getString( key ); + } + } else { + return bundle.getString( key ); + } + return message; + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/ValidationException.java b/datastructures-json-boon/src/main/java/org/boon/validation/ValidationException.java new file mode 100644 index 0000000..f1a96d5 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/ValidationException.java @@ -0,0 +1,47 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation; + +public class ValidationException extends Exception { + private String field; + + public ValidationException( String message, String field ) { + super( message ); + this.field = field; + } + + public String getField() { + return field; + } + + public void setField( String field ) { + this.field = field; + } + +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/ValidatorMessage.java b/datastructures-json-boon/src/main/java/org/boon/validation/ValidatorMessage.java new file mode 100644 index 0000000..16b6aab --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/ValidatorMessage.java @@ -0,0 +1,100 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation; + +import java.io.Serializable; + + +/** + *

+ * + * BaseValidator MessageSpecification. + * + *

+ * + * @author Rick Hightower + */ +public class ValidatorMessage implements Serializable, ValidatorMessageHolder { + private String detail; + private String summary; + private boolean hasError = false; + + + public ValidatorMessage( String summary, String detail ) { + this.summary = summary; + this.detail = detail; + hasError = true; + } + + public ValidatorMessage( String message ) { + this.summary = message; + this.detail = message; + hasError = true; + } + + public ValidatorMessage() { + this.summary = "Message not setup!"; + this.detail = "Message not setup!"; + hasError = false; + } + + public String getDetail() { + return this.detail; + } + + public void setDetail( String detail ) { + this.detail = detail; + } + + public String getSummary() { + return this.summary; + } + + public void setSummary( String summary ) { + this.summary = summary; + } + + public boolean hasError() { + return this.hasError; + } + + public void setHasError( boolean aHasError ) { + this.hasError = aHasError; + } + + + @Override + public String toString() { + return "ValidatorMessage{" + + "detail='" + detail + '\'' + + ", summary='" + summary + '\'' + + ", hasError=" + hasError + + '}'; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/ValidatorMessageHolder.java b/datastructures-json-boon/src/main/java/org/boon/validation/ValidatorMessageHolder.java new file mode 100644 index 0000000..66f50a8 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/ValidatorMessageHolder.java @@ -0,0 +1,42 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation; + +/** + *

+ * BaseValidator MessageSpecification. Marker interface. + *

+ * + * @author Rick Hightower + */ +public interface ValidatorMessageHolder { + + boolean hasError(); + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/ValidatorMessages.java b/datastructures-json-boon/src/main/java/org/boon/validation/ValidatorMessages.java new file mode 100644 index 0000000..441d844 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/ValidatorMessages.java @@ -0,0 +1,65 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation; + +import java.io.Serializable; +import java.util.ArrayList; +import java.util.Iterator; +import java.util.List; + + +/** + *

+ * A collection of messages. + *

+ * + * @author Rick Hightower + */ +public class ValidatorMessages implements Serializable, ValidatorMessageHolder, Iterable { + private List messages = new ArrayList(); + + public Iterator iterator() { + return this.messages.iterator(); + } + + public void add( ValidatorMessage message ) { + messages.add( message ); + } + + @Override + public boolean hasError() { + for ( ValidatorMessage message : messages ) { + if ( message.hasError() ) { + return true; + } + + } + return false; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/ValidatorMetaData.java b/datastructures-json-boon/src/main/java/org/boon/validation/ValidatorMetaData.java new file mode 100644 index 0000000..12db6be --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/ValidatorMetaData.java @@ -0,0 +1,74 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +/** + * + */ +package org.boon.validation; + +import java.util.HashMap; +import java.util.Map; + +/** + * Stores the validator name + * and a list of name value pairs for the validator. + */ +public class ValidatorMetaData { + private String name = null; + + private Map properties = new HashMap<>(); + + + public static ValidatorMetaData validatorMeta( String name, Map properties ) { + return new ValidatorMetaData( name, properties ); + } + + public ValidatorMetaData() { + } + + public ValidatorMetaData( String name, Map properties ) { + this.name = name; + this.properties = properties; + } + + public void setName( String name ) { + this.name = name; + } + + public String getName() { + return name; + } + + public void setProperties( Map properties ) { + this.properties = properties; + } + + public Map getProperties() { + return properties; + } +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/ValidatorMetaDataReader.java b/datastructures-json-boon/src/main/java/org/boon/validation/ValidatorMetaDataReader.java new file mode 100644 index 0000000..23be991 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/ValidatorMetaDataReader.java @@ -0,0 +1,48 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation; + +import java.util.List; + +/** + * ValidatorMetaDataReader is an extension point for classes that need + * to read validation meta-data. + *

+ * There are currently two implementations (planned) for this. + *

+ * One implementation reads the meta-data from a properties file. + * The other implementation reads the data from Java 5 Annotation. + * + * @author Rick Hightower + */ +public interface ValidatorMetaDataReader { + + public List readMetaData( Class clazz, String propertyName ); + +} \ No newline at end of file diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/Validators.java b/datastructures-json-boon/src/main/java/org/boon/validation/Validators.java new file mode 100644 index 0000000..6ffa2fb --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/Validators.java @@ -0,0 +1,132 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation; + +import org.boon.Lists; +import org.boon.validation.validators.*; + +public class Validators { + + + public static RequiredValidator required( String detailMessage, String summaryMessage ) { + RequiredValidator validator = new RequiredValidator(); + init( detailMessage, summaryMessage, validator ); + return validator; + } + + public static RequiredValidator required( String detailMessage ) { + RequiredValidator validator = new RequiredValidator(); + init( detailMessage, validator ); + return validator; + } + + private static void init( String detailMessage, BaseValidator validator ) { + validator.setDetailMessage( detailMessage ); + validator.setNoSummary( true ); + validator.init(); + } + + private static void init( String detailMessage, String summaryMessage, BaseValidator validator ) { + validator.setDetailMessage( detailMessage ); + validator.setSummaryMessage( summaryMessage ); + validator.init(); + } + + + public static LengthValidator length( int min, int max, String message ) { + LengthValidator v = new LengthValidator(); + v.setMax( max ); + v.setMin( min ); + init( message, v ); + return v; + } + + + public static LengthValidator length( String message, String summary ) { + LengthValidator eq = new LengthValidator(); + init( message, summary, eq ); + return eq; + } + + + public static CompositeValidator validators( FieldValidator... validators ) { + CompositeValidator compositeValidator = new CompositeValidator(); + compositeValidator.setValidatorList( Lists.list( validators ) ); + return compositeValidator; + + } + + + public static RegexValidator match( String match, String message, String summary ) { + RegexValidator v = new RegexValidator(); + v.setMatch( match ); + init( message, summary, v ); + return v; + } + + + public static RegexValidator dontMatch( String match, String message, String summary ) { + RegexValidator v = new RegexValidator(); + v.setMatch( match ); + v.setNegate( true ); + init( message, summary, v ); + return v; + } + + public static RegexValidator noIdenticalThreeDigits( String message, String summary ) { + return dontMatch( "000|111|222|333|444|555|666|777|888|999", message, summary ); + } + + public static RegexValidator mustBeNumeric( String message, String summary ) { + return match( "^[0-9]*$", message, summary ); + } + + + public static RegexValidator mustBeThreeDigitNumeric( String message, String summary ) { + return match( "^[0-9]{3}$", message, summary ); + } + + public static RegexValidator mustBeFourDigitNumeric( String message, String summary ) { + return match( "^[0-9]{4}$", message, summary ); + } + + public static RegexValidator personName( String message, String summary ) { + return match( "^([a-zA-Z]|[ -])*$", message, summary ); + } + + public static RegexValidator properNoun( String message, String summary ) { + return match( "^([a-zA-Z]|[ -])*$", message, summary ); + } + + public static RegexValidator address( String message, String summary ) { + return match( "^(\\d+ \\w+)|(\\w+ \\d+)$", message, summary ); + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Currency.java b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Currency.java new file mode 100644 index 0000000..30fd407 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Currency.java @@ -0,0 +1,45 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.annotations; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Retention ( RetentionPolicy.RUNTIME ) +@Target ( { ElementType.METHOD, ElementType.TYPE, ElementType.FIELD } ) +public @interface Currency { + + String detailMessage() default ""; + + String summaryMessage() default ""; + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Date.java b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Date.java new file mode 100644 index 0000000..507334a --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Date.java @@ -0,0 +1,45 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.annotations; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Retention ( RetentionPolicy.RUNTIME ) +@Target ( { ElementType.METHOD, ElementType.TYPE, ElementType.FIELD } ) +public @interface Date { + + String detailMessage() default ""; + + String summaryMessage() default ""; + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/annotations/DomainValidation.java b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/DomainValidation.java new file mode 100644 index 0000000..d2f0eb6 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/DomainValidation.java @@ -0,0 +1,48 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.annotations; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Retention ( RetentionPolicy.RUNTIME ) +@Target ( { ElementType.METHOD, ElementType.TYPE, ElementType.FIELD } ) +public @interface DomainValidation { + String detailMessage() default ""; + + String summaryMessage() default ""; + + String parentProperty() default ""; + + String method() default ""; + + boolean global() default false; +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Email.java b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Email.java new file mode 100644 index 0000000..2ca628f --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Email.java @@ -0,0 +1,45 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.annotations; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Retention ( RetentionPolicy.RUNTIME ) +@Target ( { ElementType.METHOD, ElementType.TYPE, ElementType.FIELD } ) +public @interface Email { + + String detailMessage() default ""; + + String summaryMessage() default ""; + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Equals.java b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Equals.java new file mode 100644 index 0000000..f9250b8 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Equals.java @@ -0,0 +1,47 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.annotations; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Retention ( RetentionPolicy.RUNTIME ) +@Target ( { ElementType.METHOD, ElementType.TYPE, ElementType.FIELD } ) +public @interface Equals { + + String compareToProperty(); + + String detailMessage() default ""; + + String summaryMessage() default ""; + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Length.java b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Length.java new file mode 100644 index 0000000..7f91745 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Length.java @@ -0,0 +1,47 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.annotations; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Retention ( RetentionPolicy.RUNTIME ) +@Target ( { ElementType.METHOD, ElementType.TYPE, ElementType.FIELD } ) +public @interface Length { + long min() default 1L; + + long max() default Long.MAX_VALUE; + + String detailMessage() default ""; + + String summaryMessage() default ""; + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/annotations/LongRange.java b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/LongRange.java new file mode 100644 index 0000000..98dd8f7 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/LongRange.java @@ -0,0 +1,49 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.annotations; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Retention ( RetentionPolicy.RUNTIME ) +@Target ( { ElementType.METHOD, ElementType.TYPE, ElementType.FIELD } ) +public @interface LongRange { + + long min(); + + long max(); + + String detailMessage() default ""; + + String summaryMessage() default ""; + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Loop.java b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Loop.java new file mode 100644 index 0000000..6c8025d --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Loop.java @@ -0,0 +1,42 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.annotations; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Retention ( RetentionPolicy.RUNTIME ) +@Target ( { ElementType.METHOD, ElementType.TYPE, ElementType.FIELD } ) +public @interface Loop { + String detailMessage() default ""; + + String summaryMessage() default ""; +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Number.java b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Number.java new file mode 100644 index 0000000..73681a2 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Number.java @@ -0,0 +1,45 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.annotations; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Retention ( RetentionPolicy.RUNTIME ) +@Target ( { ElementType.METHOD, ElementType.TYPE, ElementType.FIELD } ) +public @interface Number { + + String detailMessage() default ""; + + String summaryMessage() default ""; + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Phone.java b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Phone.java new file mode 100644 index 0000000..a2d52b7 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Phone.java @@ -0,0 +1,45 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.annotations; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Retention ( RetentionPolicy.RUNTIME ) +@Target ( { ElementType.METHOD, ElementType.TYPE, ElementType.FIELD } ) +public @interface Phone { + + String detailMessage() default ""; + + String summaryMessage() default ""; + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/annotations/ProperNoun.java b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/ProperNoun.java new file mode 100644 index 0000000..aaf01e2 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/ProperNoun.java @@ -0,0 +1,42 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.annotations; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Retention ( RetentionPolicy.RUNTIME ) +@Target ( { ElementType.METHOD, ElementType.TYPE, ElementType.FIELD } ) +public @interface ProperNoun { + String detailMessage() default ""; + + String summaryMessage() default ""; +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Range.java b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Range.java new file mode 100644 index 0000000..d427eec --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Range.java @@ -0,0 +1,47 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.annotations; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Retention ( RetentionPolicy.RUNTIME ) +@Target ( { ElementType.METHOD, ElementType.TYPE, ElementType.FIELD } ) +public @interface Range { + String min(); + + String max(); + + String detailMessage() default ""; + + String summaryMessage() default ""; + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Regex.java b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Regex.java new file mode 100644 index 0000000..bdc9b7c --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Regex.java @@ -0,0 +1,49 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.annotations; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Retention ( RetentionPolicy.RUNTIME ) +@Target ( { ElementType.METHOD, ElementType.TYPE, ElementType.FIELD } ) +public @interface Regex { + + String match(); + + String detailMessage() default ""; + + String summaryMessage() default ""; + + boolean negate() default false; + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Required.java b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Required.java new file mode 100644 index 0000000..5f65609 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Required.java @@ -0,0 +1,42 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.annotations; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Retention ( RetentionPolicy.RUNTIME ) +@Target ( { ElementType.METHOD, ElementType.TYPE, ElementType.FIELD } ) +public @interface Required { + String detailMessage() default ""; + + String summaryMessage() default ""; +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/annotations/StopOnRule.java b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/StopOnRule.java new file mode 100644 index 0000000..6a56f46 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/StopOnRule.java @@ -0,0 +1,42 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.annotations; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Retention ( RetentionPolicy.RUNTIME ) +@Target ( { ElementType.METHOD, ElementType.TYPE, ElementType.FIELD } ) +public @interface StopOnRule { + + String ruleName() default "first"; + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Street.java b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Street.java new file mode 100644 index 0000000..f11dcb2 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Street.java @@ -0,0 +1,45 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.annotations; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Retention ( RetentionPolicy.RUNTIME ) +@Target ( { ElementType.METHOD, ElementType.TYPE, ElementType.FIELD } ) +public @interface Street { + + String detailMessage() default ""; + + String summaryMessage() default ""; + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Zip.java b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Zip.java new file mode 100644 index 0000000..84af3de --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/annotations/Zip.java @@ -0,0 +1,45 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.annotations; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Retention ( RetentionPolicy.RUNTIME ) +@Target ( { ElementType.METHOD, ElementType.TYPE, ElementType.FIELD } ) +public @interface Zip { + + String detailMessage() default ""; + + String summaryMessage() default ""; + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/readers/AnnotationValidatorMetaDataReader.java b/datastructures-json-boon/src/main/java/org/boon/validation/readers/AnnotationValidatorMetaDataReader.java new file mode 100644 index 0000000..c745d0e --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/readers/AnnotationValidatorMetaDataReader.java @@ -0,0 +1,211 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.readers; + +import org.boon.core.reflection.AnnotationData; +import org.boon.core.reflection.Annotations; +import org.boon.validation.ValidatorMetaData; +import org.boon.validation.ValidatorMetaDataReader; + +import java.io.Serializable; +import java.util.*; +import java.util.concurrent.ConcurrentHashMap; + + +/** + *

+ * AnnotationValidatorMetaDataReader reads validation meta-data from + * annotation. + *

+ *

+ *

+ * This class reads a annotation as follows: You pass in the base package of the + * annotation it defaults to "org.boon.annotation.validation". It then takes + * the name of the ValidatorMetaData and + * capitalizes the first letter. Thus if you pass the package + * "com.my.company.annotation", and + * ValidatorMetaData.name = "required", then it will look for an + * annotation called com.my.company.annotation.Required. The idea behind this is + * that you can use annotation without polluting your model classes with Boon + * annotation. + *

+ *

+ *

+ * The parent class that owns the annotation should have annotation as follows: + *

+ *

+ *   @Required @Length (min=10, max=100)
+ *   public String getFirstName(){...
+ *
+ *   @Required @Range (min=10, max=100)
+ *   public void setAge() {...
+ * 
+ *

+ * The firstName corresponds to a property of the Foo class. The + * firstName is associated with the validation rules required + * and length. The length validation rule states the minimum and + * maximum allowed number of characters with the min and max + * parameters. + *

+ *

+ * This was take from the crank project and the crank version was also written by + * Rick Hightower. + *

+ *

+ *

+ * Two different frameworks read this meta-data (currently). + *

+ * + * @author Rick Hightower + */ +public class AnnotationValidatorMetaDataReader implements ValidatorMetaDataReader, Serializable { + + /** + * Holds a cache of meta-data to reduce parsing with regex and to avoid + * reflection. + * Since this could get hit by multiple threads. + */ + private Map> metaDataCache = + new ConcurrentHashMap<>(); + + /** + * Holds a list of packages that contain annotation that we will process. + * If the annotation package is not in this list, it will not be processed. + */ + private Set validationAnnotationPackages = new HashSet<>(); + + { + /* By default, we only process our own annotation. */ + validationAnnotationPackages.add( "org.boon.validation.annotation" ); + } + + /** + * Read the meta-data from annotation. This copies the meta-data + * from the annotation into a POJO. It first checks the meta-data cache, + * if the meta data is not found in the cache it then reads it from the + * class. + * + * @param clazz The class that contains the annotation. + * @param propertyName The name of the property that we are reading + * the annotation meta-data from. + */ + public List readMetaData( Class clazz, String propertyName ) { + + /* Generate a key to the cache based on the classname and the propertyName. */ + String propertyKey = clazz.getName() + "." + propertyName; + + /* Look up the validation meta data in the cache. */ + List validatorMetaDataList = metaDataCache.get( propertyKey ); + + /* If the meta-data was not found, then generate it. */ + if ( validatorMetaDataList == null ) { // if not found + validatorMetaDataList = extractValidatorMetaData( clazz, propertyName, validatorMetaDataList ); + /* Put it in the cache to avoid the processing in the future. + * Design notes: The processing does a lot of reflection, there + * is no need to do this each time. + */ + metaDataCache.put( propertyKey, validatorMetaDataList ); + } + + return validatorMetaDataList; + + } + + /** + * Extract BaseValidator Meta Data. + * + * @param clazz class + * @param propertyName property name + * @param validatorMetaDataList validatorMetaDataList + * @return validator meta data + */ + private List extractValidatorMetaData( Class clazz, String propertyName, List validatorMetaDataList ) { + /* If the meta-data was not found, then generate it. */ + if ( validatorMetaDataList == null ) { // if not found + /* Read the annotation from the class based on the property name. */ + Collection annotations = Annotations.getAnnotationDataForFieldAndProperty( clazz, propertyName, this.validationAnnotationPackages ); + + /* Extract the POJO based meta-data from the annotation. */ + validatorMetaDataList = + extractMetaDataFromAnnotations( annotations ); + + } + return validatorMetaDataList; + } + + /** + * Extract meta-data from the annotationData we collected thus far. + * + * @param annotations The annotationData (preprocessed annotation). + * @return list of validation meta data. + */ + private List extractMetaDataFromAnnotations( + Collection annotations ) { + List list = new ArrayList(); + + for ( AnnotationData annotationData : annotations ) { + ValidatorMetaData validatorMetaData = convertAnnotationDataToValidatorMetaData( annotationData ); + list.add( validatorMetaData ); + } + + return list; + } + + /** + * Converts an AnnotationData into a ValidatorMetaData POJO. + * + * @param annotationData annotationData + * @return validator meta data + *

+ * TODO + * @NeedsRefactoring("This method shows we are calling annotationData.getValues a lot. " + + * "Therefore, we must cache the results of getValues as the annoationData is static " + + * "per property per class. ") + */ + private ValidatorMetaData convertAnnotationDataToValidatorMetaData( + AnnotationData annotationData ) { + + ValidatorMetaData metaData = new ValidatorMetaData(); + metaData.setName( annotationData.getName() ); + + metaData.setProperties( annotationData.getValues() ); + + return metaData; + } + + /** + * We allow a set of validation annotation packages to be configured. + * + * @param validationAnnotationPackages validationAnnotationPackages + */ + public void setValidationAnnotationPackages( Set validationAnnotationPackages ) { + this.validationAnnotationPackages = validationAnnotationPackages; + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/readers/ChainValidatorMetaDataReader.java b/datastructures-json-boon/src/main/java/org/boon/validation/readers/ChainValidatorMetaDataReader.java new file mode 100644 index 0000000..f8e7686 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/readers/ChainValidatorMetaDataReader.java @@ -0,0 +1,91 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.readers; + +import org.boon.validation.ValidatorMetaData; +import org.boon.validation.ValidatorMetaDataReader; + +import java.util.ArrayList; +import java.util.LinkedHashMap; +import java.util.List; +import java.util.Map; + +/** + * This class allows you to chain validator readers. This way you can read + * validation data from more than one source. + *

+ * For example, you could read validation meta data from properties files, and + * annotation. + *

+ * The last one configured in the chain wins if you have the same type. + *

+ * You can have a required validation rule + * in a properties file and a regex in an annotation for the same property and both + * applied. Thus, it also merges as long as they are different types. + * + * @author Rick Hightower + */ +public class ChainValidatorMetaDataReader implements ValidatorMetaDataReader { + + public static final String OVERRIDE_NAME = "validator.override.name"; + + private List chain; + + public void setChain( final List chain ) { + this.chain = chain; + } + + public List readMetaData( final Class clazz, final String propertyName ) { + Map overrideMap = new LinkedHashMap(); + + /* Iterate through the chain of readers, read the validation data, put the validation data in a + * linked hash map based on the name of the validation data. As you addObject another rule with the same name + * it overrides the last. Thus, the last reader in the chain has precedence. + */ + for ( ValidatorMetaDataReader reader : chain ) { + /* Read the validation meta-data from the current reader in the chain. */ + List list = reader.readMetaData( clazz, propertyName ); + + /* Put the validation rules in the linked hash map by name so the last reader can override + * the previous reader. + */ + for ( ValidatorMetaData data : list ) { + String overrideName = data.getName(); + if ( ( data.getProperties() != null ) && ( data.getProperties().get( OVERRIDE_NAME ) != null ) ) { + overrideName = ( String ) data.getProperties().get( OVERRIDE_NAME ); + data.getProperties().remove( OVERRIDE_NAME ); + } + overrideMap.put( overrideName, data ); + } + } + /* Turn the map into a list. */ + return new ArrayList( overrideMap.values() ); + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/readers/PropertiesFileValidatorMetaDataReader.java b/datastructures-json-boon/src/main/java/org/boon/validation/readers/PropertiesFileValidatorMetaDataReader.java new file mode 100644 index 0000000..4fbec9c --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/readers/PropertiesFileValidatorMetaDataReader.java @@ -0,0 +1,247 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.readers; + +import org.boon.validation.ValidatorMetaData; +import org.boon.validation.ValidatorMetaDataReader; + +import java.io.IOException; +import java.util.*; + + +/** + *

+ * PropertiesFileValidatorMetaDataReader reads validation meta-data from + * a properties files. + *

+ *

+ *

+ * This class reads a properties file as follows:
+ *
+ * If the class name is com.foo.Foo, then the resource name is + * com.foo.Foo.properties. + *

+ *

+ *

+ * The properties file will contain validation meta-data as follows:
+ *
+ *

+ *

+ *  firstName=required; length min=10, max=100
+ *  age=required; range min=10, max=100
+ * 
+ *

+ * The firstName corresponds to a property of the Foo class. The + * firstName is associated with the validation rules required + * and length. The length validation rule states the minimum and + * maximum allowed number of characters with the min and max + * parameters. + *

+ *

+ *

+ * Two different frameworks read this meta-data (curently). Our validation + * framework, which is mostly geared towards server-side validation and our + * client-side JavaScript framework, which is geared towards producing + * client-side JavaScript. + *

+ * + * @author Rick Hightower + */ +public class PropertiesFileValidatorMetaDataReader implements ValidatorMetaDataReader { + + /** + * Holds a cache of Properties file contents to reduce IO. + */ + private Map metaDataPropsCache = + new HashMap(); + + /** + * Holds a cache of meta-data to reduce parsing with regex. + */ + private Map> metaDataCache = + new HashMap>(); + + /** + * Read the meta-data from a properties file. + */ + public List readMetaData( Class clazz, String propertyName ) { + + /* Load the properties file. */ + Properties props = loadMetaDataPropsFile( clazz ); + /* Get the raw validation data for the given property. */ + String unparsedString = props.getProperty( propertyName ); + /* Parse the string into a list of ValidationMetaData. */ + return extractMetaDataFromString( clazz, propertyName, unparsedString ); + } + + /** + * This method loads the MetaData properties file. The Properties are cached + * in metaDataPropsCache and will not be reloaded twice. + * + * @param clazzWhoseValidationMetaDataWeAreReading + * The class whose property meta-data we are retrieving. + * @return + */ + private Properties loadMetaDataPropsFile( + Class clazzWhoseValidationMetaDataWeAreReading ) { + String className = clazzWhoseValidationMetaDataWeAreReading.getName(); + + /* + * If the class is proxied there will be a $CGLIB on the end of it. + * Remove this. + */ + className = className.split( "[$]" )[ 0 ]; + + /* + * The resourceName is as follows: If the class name is com.foo.Foo Then + * the resource name is com.foo.Foo.properties. + */ + String[] sourceParts = className.split( "[.]" ); + String resourceName = ( sourceParts[ sourceParts.length - 1 ] ) + ".properties"; + + /* Check to see if this properties file was already loaded. */ + Properties validationMetaDataProps = metaDataPropsCache.get( resourceName ); + + /* If the properties file was not loaded, then load it. */ + if ( validationMetaDataProps == null ) { + validationMetaDataProps = new Properties(); + try { + /* + * Try to load the properties file that contains the validation + * meta-data. + */ + validationMetaDataProps.load( this.getClass() + .getClassLoader() + .getResourceAsStream( resourceName ) ); + } catch ( IOException ioex ) { + /* + * This can happen and is not an error. It just means there is + * no validation for this guy. Maybe we should log this. + * Note self... addObject logging capability to this project!. + */ + } + /* + * Put the properties file into the cache so we don't have to read + * it again. + */ + metaDataPropsCache.put( resourceName, validationMetaDataProps ); + } + assert validationMetaDataProps != null : + "Properties for validation meta-data were loaded"; + return validationMetaDataProps; + } + + /** + * This method extracts meta-data from a string. + * + * @param clazz + * @param propertyName + * @param unparsedString + * @return + */ + private List extractMetaDataFromString( Class clazz, + String propertyName, String unparsedString ) { + String propertyKey = clazz.getName() + "." + propertyName; + + /* See if we parsed this bad boy already. */ + List validatorMetaDataList = + metaDataCache.get( propertyKey ); + + + /* If we did not find the list, then we have some work to do.*/ + if ( validatorMetaDataList == null ) { + /* Initialize a new list. */ + validatorMetaDataList = new ArrayList(); + + /* Remember we have a string that looks like this: + * required; length min=10, max=100 + * So we need to split on semi-colon. + */ + String[] validatorsParts = unparsedString.split( "[;]" ); + + /* Now we have the two strings as follows: + * ["required", + * ["length min=10, max=100"] + * + */ + for ( String validatorString : validatorsParts ) { + ValidatorMetaData validatorMetaData = new ValidatorMetaData(); + validatorMetaDataList.add( validatorMetaData ); + + /* Now we split one of the string (we will use length) + * as follows: + * parts=["length", "min=10", "max=100"] + * */ + String[] parts = validatorString.trim().split( "[ ,]" ); + + /* The first part is the name of the validation, + * e.g., "length". + * + */ + validatorMetaData.setName( parts[ 0 ] ); + + /* If the string has more than one part, then there must + * be arguments as in: ["min=10", "max=100"] + * + * Parse the arguments and addObject them to the list as well. + */ + if ( parts.length > 1 ) { + + /* This line converts: + * + * ["length", "min=10", "max=100"] + * + * into: + * + * ["min=10", "max=100"] + */ + List values = + Arrays.asList( parts ).subList( 1, parts.length ); + + /* For each value convert it into name value pairs. */ + for ( String value : values ) { + + if ( value.indexOf( "=" ) != -1 ) { + /* Split "min=10" into ["min", "10"] */ + String[] valueParts = value.split( "[=]" ); + /* Stick this value into validatorMetaData's + * list of properties. + */ + validatorMetaData.getProperties().put( + valueParts[ 0 ], valueParts[ 1 ] ); + } + } + } + } + metaDataCache.put( propertyKey, validatorMetaDataList ); + } + return validatorMetaDataList; + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/validators/AbstractCompareValidator.java b/datastructures-json-boon/src/main/java/org/boon/validation/validators/AbstractCompareValidator.java new file mode 100644 index 0000000..dc6b817 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/validators/AbstractCompareValidator.java @@ -0,0 +1,127 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.validators; + + +import org.boon.validation.ValidationContext; +import org.boon.validation.ValidatorMessage; +import org.boon.validation.ValidatorMessageHolder; + +/** + *

+ * + * AbstractCompareValidator is the base class for all validators that compare + * two values to perform validation. + *

+ * Future versions of this class will deal with other values besides + * simple properties like expressions. + *

+ * AbstractCompareValidator + * + *

+ * + * @author Rick Hightower + */ +public abstract class AbstractCompareValidator extends BaseValidator { + + /** + * Holds the name of the variable we are getting out of the validation + * context. This variable could be another property. + */ + private String compareToProperty; + + /** + * + */ + public ValidatorMessageHolder validate( Object value, String fieldLabel ) { + + /* Create the validator message. */ + ValidatorMessage message = new ValidatorMessage(); + + if ( value == null ) { + return message; + } + + /* Get the comparison value. */ + Object compareToPropertyValue = lookupCompareToPropertyValue(); + + /* Check to see if this is valid. */ + boolean valid = checkValidity( value, compareToPropertyValue ); + + /* If it is not valid, then populate the message and + * return it regardless. + */ + if ( !valid ) { + populateMessage( message, fieldLabel ); + } + + return message; + } + + + /** + * Check Validity of the value compared to the property value. + * This class uses the jstl design pattern. Subclasses are suppose + * to override this method and this class uses IoC to delegate + * validity checking to the subclass. + * + * @param object + * @param compareToPropertyValue + * @return + */ + protected abstract boolean checkValidity( Object object, + Object compareToPropertyValue ); + + + /** + * This method looks of the ValidationContext to get the + * compareToProperty. + * + * @return + */ + protected Object lookupCompareToPropertyValue() { + return ValidationContext.getCurrentInstance() + .getProposedPropertyValue( compareToProperty ); + } + + + /** + * @param compareToProperty + */ + public void setCompareToProperty( String compareToProperty ) { + this.compareToProperty = compareToProperty; + } + + + protected String getCompareToProperty() { + return compareToProperty; + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/validators/AbstractRangeValidator.java b/datastructures-json-boon/src/main/java/org/boon/validation/validators/AbstractRangeValidator.java new file mode 100644 index 0000000..d7d1cef --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/validators/AbstractRangeValidator.java @@ -0,0 +1,72 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.validators; + + +/** + * Abstract class for range validation. + */ +@SuppressWarnings ( "unchecked" ) +public abstract class AbstractRangeValidator extends BaseValidator { + + /* The min value for comparison. */ + private Comparable realMin; + /* The max value for comparison. */ + private Comparable realMax; + /* Has this been initialized? */ + private boolean isInitialized; + + /* Allows this base class to be initialized by the subclasses. */ + protected void init( Comparable min, Comparable max ) { + this.realMin = min; + this.realMax = max; + assert min.compareTo( max ) < 0; + isInitialized = true; + } + + /* Checks to see if the value is less than the min. */ + protected boolean isValueGreaterThanMin( Comparable value ) { + if ( realMin == null ) { + return true; + } + return value.compareTo( realMin ) >= 0; + } + + /* Checks to see if the value is greater than the max. */ + protected boolean isValueLessThanMax( Comparable value ) { + if ( realMax == null ) { + return true; + } + return value.compareTo( realMax ) <= 0; + } + + public boolean isInitialized() { + return isInitialized; + } +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/validators/BaseValidator.java b/datastructures-json-boon/src/main/java/org/boon/validation/validators/BaseValidator.java new file mode 100644 index 0000000..4b0be45 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/validators/BaseValidator.java @@ -0,0 +1,80 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.validators; + + +import org.boon.core.NameAware; +import org.boon.messages.MessageSpecification; +import org.boon.validation.FieldValidator; +import org.boon.validation.ValidatorMessage; + + +/** + *

+ * + * Base class for some validators. + * + *

+ * + * @author Rick Hightower + */ +public abstract class BaseValidator extends MessageSpecification implements NameAware, FieldValidator { + + + public boolean noMessages = false; + + public boolean isNoMessages() { + return noMessages; + } + + public void setNoMessages( boolean noMessages ) { + this.noMessages = noMessages; + } + + protected void populateMessage( ValidatorMessage message, String fieldLabel, Object... args ) { + populateMessage( null, message, fieldLabel, args ); + } + + protected void populateMessage( MessageSpecification ms, ValidatorMessage message, String fieldLabel, Object... args ) { + if ( ms == null ) { + ms = this; + } + + ms.setCurrentSubject( fieldLabel ); + if ( !noMessages ) { + message.setSummary( ms.createSummaryMessage( args ) ); + message.setDetail( ms.createDetailMessage( args ) ); + } + ms.setCurrentSubject( null ); + message.setHasError( true ); + + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/validators/CommonBridgeValidator.java b/datastructures-json-boon/src/main/java/org/boon/validation/validators/CommonBridgeValidator.java new file mode 100644 index 0000000..95b1494 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/validators/CommonBridgeValidator.java @@ -0,0 +1,110 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.validators; + + +import org.boon.validation.ValidatorMessage; +import org.boon.validation.ValidatorMessageHolder; + +import java.lang.reflect.Method; + + +/** + * Invokes commons validator validators. + *

+ *

+ * + * + *

+ * + * @author Rick Hightower + */ +public class CommonBridgeValidator extends BaseValidator { + + private Class validatorClass; + private String methodName = "isValid"; + private String factoryMethod = "getInstance"; + private Object validator; + private Method validateMethod; + + public ValidatorMessageHolder validate( Object object, String fieldLabel ) { + ValidatorMessage message = new ValidatorMessage(); + if ( object == null ) { + return message; + } + boolean valid = false; + try { + initValidatorIfNeeded(); + initValidateMethodIfNeeded(); + valid = ( Boolean ) validateMethod.invoke( validator, new Object[]{ ( String ) object } ); + + } catch ( Exception exception ) { + throw new RuntimeException( "Fatal exception trying to " + + "create validator, probably a missing jar or bad " + + "class name in spring context", exception ); + } + if ( !valid ) { + populateMessage( message, fieldLabel ); + } + return message; + } + + private void initValidateMethodIfNeeded() throws Exception { + if ( validateMethod == null ) { + validateMethod = validatorClass.getMethod( methodName, new Class[]{ String.class } ); + } + } + + /** + * @throws Exception if something goes wrong + */ + private void initValidatorIfNeeded() throws Exception { + if ( validator == null ) { + if ( factoryMethod == null ) { + validator = validatorClass.newInstance(); + } else { + Method method = validatorClass.getMethod( factoryMethod ); + validator = method.invoke( null, ( Object[] ) null ); + } + } + } + + public void setMethodName( String methodName ) { + this.methodName = methodName; + } + + public void setValidatorClass( Class validatorClass ) { + this.validatorClass = validatorClass; + } + + public void setFactoryMethod( String factoryMethod ) { + this.factoryMethod = factoryMethod; + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/validators/CompositeValidator.java b/datastructures-json-boon/src/main/java/org/boon/validation/validators/CompositeValidator.java new file mode 100644 index 0000000..8381170 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/validators/CompositeValidator.java @@ -0,0 +1,154 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.validators; + + +import org.boon.validation.FieldValidator; +import org.boon.validation.ValidatorMessage; +import org.boon.validation.ValidatorMessageHolder; +import org.boon.validation.ValidatorMessages; + +import java.util.ArrayList; +import java.util.List; + + +/** + *

+ * Combines a bunch of validators into one. + *

+ * + * @author Rick Hightower + */ +public class CompositeValidator implements FieldValidator { + private List validatorList = new ArrayList<>(); + private RequiredValidator requiredValidator = null; + private List detailArgs; + private List summaryArgs; + private String stopOnRule = ""; + private boolean stopOnFirstRule = false; + private boolean stopOnBlank = true; + + public void setValidatorList( List list ) { + this.validatorList = list; + StopOnRuleValidator stopOnRuleValidator = null; + for ( FieldValidator validator : list ) { + if ( validator instanceof RequiredValidator ) { + requiredValidator = ( RequiredValidator ) validator; + } + if ( validator instanceof StopOnRuleValidator ) { + stopOnRuleValidator = ( StopOnRuleValidator ) validator; + } + } + + + if ( stopOnRuleValidator != null ) { + validatorList.remove( stopOnRule ); + String ruleName = stopOnRuleValidator.getRuleName(); + if ( "first".equals( ruleName ) || ruleName == null ) { + stopOnFirstRule = true; + } else { + stopOnRule = ruleName; + } + } + if ( requiredValidator != null ) { + validatorList.remove( requiredValidator ); + } + } + + public ValidatorMessageHolder validate( Object object, String fieldLabel ) { + + ValidatorMessages messages = new ValidatorMessages(); //holds error messages. + + /* Validate with the requiredValidator if it is present. */ + ValidatorMessage requiredMessage = validateWithRequriedIfPresent( object, fieldLabel, messages ); + + boolean proceed = !( stopOnBlank && ( object == null || object.toString().trim().length() == 0 ) ); + + /* If the requiredMessage from the requiredValidator is null, then there was not a required validator present. */ + /* If the requiredMessage is present then check to see if it has errors, only validate further if + * the requiredMessage has no error. */ + if ( requiredMessage == null || !requiredMessage.hasError() ) { + if ( proceed ) { + runValidationRules( object, fieldLabel, messages ); + } + } + + return messages; + } + + private void runValidationRules( Object object, String fieldLabel, ValidatorMessages messages ) { + for ( FieldValidator validator : validatorList ) { + putArgs( validator ); + ValidatorMessage message = ( ValidatorMessage ) validator.validate( object, fieldLabel ); + if ( message.hasError() ) { + messages.add( message ); + if ( this.stopOnFirstRule ) { + break; + } else if ( validator.getClass().getSimpleName().equalsIgnoreCase( stopOnRule ) ) { + break; + } + } + } + } + + private ValidatorMessage validateWithRequriedIfPresent( Object object, String fieldLabel, ValidatorMessages messages ) { + ValidatorMessage requiredMessage = null; + if ( requiredValidator != null ) { + putArgs( requiredValidator ); + requiredMessage = ( ValidatorMessage ) requiredValidator.validate( object, fieldLabel ); + if ( requiredMessage.hasError() ) { + messages.add( requiredMessage ); + } + } + return requiredMessage; + } + + private void putArgs( FieldValidator validator ) { + if ( validator instanceof BaseValidator ) { + BaseValidator aValidator = ( BaseValidator ) validator; + aValidator.setDetailArgs( this.detailArgs ); + aValidator.setSummaryArgs( this.summaryArgs ); + } + } + + + public void setDetailArgs( List detailArgKeys ) { + this.detailArgs = detailArgKeys; + } + + + public void setSummaryArgs( List summaryArgKeys ) { + this.summaryArgs = summaryArgKeys; + } + + public void setStopOnBlank( boolean stopOnBlank ) { + this.stopOnBlank = stopOnBlank; + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/validators/DomainValidator.java b/datastructures-json-boon/src/main/java/org/boon/validation/validators/DomainValidator.java new file mode 100644 index 0000000..24220c0 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/validators/DomainValidator.java @@ -0,0 +1,204 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.validators; + +import org.boon.core.reflection.AnnotationData; +import org.boon.core.reflection.Annotations; +import org.boon.Maps; +import org.boon.core.reflection.BeanUtils; +import org.boon.validation.ValidationContext; +import org.boon.validation.ValidatorMessage; +import org.boon.validation.ValidatorMessageHolder; + +import java.lang.reflect.InvocationTargetException; +import java.lang.reflect.Method; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; + +/** + * This validator is designed for domain-driven validation + * of a group of child objects from a parent. For instance, a parent + * with a OneToMany relationship with a child may need to validate + * the child against the other children associated with the parent. + * In this scenario, the validation framework will invoke this + * validator when the @DomainValidation annotation is used on a field + * in the child object by invoking the parent object validation + * method identified by the "method" attribute. The parent object + * is identified by the "parentProperty" attribute. If the parent + * attribute is null or missing, then the validation method + * is presumed to exist in the child. + *

+ * The validation method will be passed the child object and the + * field value as method.invoke(child, fieldValue) + * + * @author Paul Tabor + */ +public class DomainValidator extends BaseValidator { + private static final long serialVersionUID = 1L; + + private Object rootObject; + + public void setRootObject( Object rootObject ) { + this.rootObject = rootObject; + } + + private static Set allowedPackages = new HashSet(); + + static { + allowedPackages.add( "org.boon.annotation.validation" ); + } + + public DomainValidator() { + } + + @SuppressWarnings ( "unchecked" ) + public ValidatorMessageHolder validate( Object fieldValue, String fieldLabel ) { + // So, we already know that this field has been decorated with @DomainValidation annotation. + // That's why we're here. We need to read the validation attributes to find the appropriate + // jstl method (parent or child) to invoke for validation. + + String detailMessage = ""; + String summaryMessage = ""; + this.noMessages = true; + boolean error = false; + Object child; + + // The first "parent" is actually the child decorated with the validation annotation + if ( rootObject == null ) { + // Grab it from the validation context if it hasn't been provided + child = ValidationContext.getCurrentInstance().getParentObject(); + } else { + // Useful if the rootObject is injected, i.e. from a Unit test + child = rootObject; + } + + + List annotationDataForProperty = Annotations.getAnnotationDataForProperty( child.getClass(), fieldLabel, false, allowedPackages ); + if ( annotationDataForProperty.size() == 0 ) { + annotationDataForProperty = Annotations.getAnnotationDataForField( child.getClass(), fieldLabel, allowedPackages ); + } + + Map map = Maps.toMap( "name", annotationDataForProperty ); + + boolean found = map.get( "domainValidation" ) != null; + boolean sameLevel = false; + boolean noArgs = false; + + if ( found ) { + AnnotationData ad = ( AnnotationData ) map.get( "domainValidation" ); + Object parentReference = ad.getValues().get( "parentProperty" ); + Object validator = null; + + if ( ( parentReference != null ) && ( !"".equals( parentReference ) ) ) { + // If the parentProperty is specified, then find the parent class + + BeanUtils.getPropertyValue( child, ( String ) parentReference ); + + } else { + // Otherwise, the validation method is assumed to be in the child + validator = child; + sameLevel = true; + } + + noArgs = ( Boolean ) ad.getValues().get( "global" ); + + // Make sure the method exists + Method m = null; + + if ( validator != null ) { + try { + + String methodName = ( String ) ad.getValues().get( "method" ); + + if ( noArgs ) { + m = validator.getClass().getDeclaredMethod( methodName ); + } else if ( sameLevel ) { + Class[] parameters = new Class[ 1 ]; + + parameters[ 0 ] = BeanUtils.getPropertyType( child, fieldLabel ); + m = validator.getClass().getDeclaredMethod( methodName, parameters ); + } else { + Class[] parameters = new Class[ 2 ]; + parameters[ 0 ] = child.getClass(); + + + parameters[ 1 ] = BeanUtils.getPropertyType( child, fieldLabel ); + + m = validator.getClass().getDeclaredMethod( methodName, parameters ); + } + + } catch ( NoSuchMethodException nsme ) { + detailMessage = nsme.getMessage(); + summaryMessage = nsme.getMessage(); + error = true; + } catch ( Exception e ) { + detailMessage = e.getMessage(); + summaryMessage = e.getMessage(); + error = true; + } + } + + // Invoke the validation method and watch for any exceptions + try { + if ( noArgs ) { + m.invoke( validator ); + } else if ( sameLevel ) { + m.invoke( validator, new Object[]{ fieldValue } ); + } else { + m.invoke( validator, new Object[]{ child, fieldValue } ); + } + } catch ( IllegalAccessException iae ) { + detailMessage = iae.getCause().getMessage(); + summaryMessage = iae.getCause().getMessage(); + error = true; + } catch ( InvocationTargetException ite ) { + detailMessage = ite.getCause().getMessage(); + summaryMessage = ite.getCause().getMessage(); + error = true; + } catch ( Exception e ) { + detailMessage = e.getCause().getMessage(); + summaryMessage = e.getCause().getMessage(); + error = true; + } + } + + ValidatorMessage message = new ValidatorMessage(); + + // If there were any errors, populate the validation message + if ( error ) { + message = new ValidatorMessage( summaryMessage, detailMessage ); + populateMessage( message, ( noArgs ? null : fieldLabel ) ); + } + + return message; + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/validators/EqualsCompareValidator.java b/datastructures-json-boon/src/main/java/org/boon/validation/validators/EqualsCompareValidator.java new file mode 100644 index 0000000..8ddad01 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/validators/EqualsCompareValidator.java @@ -0,0 +1,42 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.validators; + +/** + * This class checks to see if the values are Equal. + */ +public class EqualsCompareValidator extends AbstractCompareValidator { + + @Override + protected boolean checkValidity( Object object, Object compareToPropertyValue ) { + boolean valid = object.equals( compareToPropertyValue ); + return valid; + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/validators/LengthValidator.java b/datastructures-json-boon/src/main/java/org/boon/validation/validators/LengthValidator.java new file mode 100644 index 0000000..683f650 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/validators/LengthValidator.java @@ -0,0 +1,82 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.validators; + +import org.boon.Boon; +import org.boon.validation.ValidatorMessage; +import org.boon.validation.ValidatorMessageHolder; + + +/** + * LongRangeValidator works with all integer ranges. + */ +public class LengthValidator extends BaseValidator { + + + /** + * The min value. + */ + private int min = 0; + /** + * The max value. + */ + private int max = Integer.MAX_VALUE; + + /** + * Perform the actual validation. + * + * @param fieldValue the value to validate + * @param fieldLabel the logical name of the value used for generating error messages + */ + public ValidatorMessageHolder validate( Object fieldValue, String fieldLabel ) { + ValidatorMessage validatorMessage = new ValidatorMessage(); + if ( fieldValue == null ) { + return validatorMessage; + } + + int len = Boon.len( fieldValue ); + + if ( !( len >= min && len <= max ) ) { + populateMessage( validatorMessage, fieldLabel, min, max ); + } + + + return validatorMessage; + + } + + public void setMax( int max ) { + this.max = max; + } + + public void setMin( int min ) { + this.min = min; + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/validators/LongRangeValidator.java b/datastructures-json-boon/src/main/java/org/boon/validation/validators/LongRangeValidator.java new file mode 100644 index 0000000..e9b9e88 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/validators/LongRangeValidator.java @@ -0,0 +1,160 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.validators; + +import org.boon.messages.MessageSpecification; +import org.boon.validation.ValidatorMessage; +import org.boon.validation.ValidatorMessageHolder; + +/** + * LongRangeValidator works with all integer ranges. + */ +public class LongRangeValidator extends AbstractRangeValidator { + + /** + * The min value. + */ + private Long min; + /** + * The max value. + */ + private Long max; + /* What type are we working with: Integer, Long, etc. */ + private Class type; + /* The underMin message used if the value is under the min. */ + private MessageSpecification underMin; + /* The overMax message used if the value is over the max. */ + private MessageSpecification overMax; + + + /** + * Perform the actual validation. + * + * @param fieldValue the value to validate + * @param fieldLabel the logical name of the value used for generating error messages + */ + @SuppressWarnings ( "unchecked" ) + public ValidatorMessageHolder validate( Object fieldValue, String fieldLabel ) { + ValidatorMessage validatorMessage = new ValidatorMessage(); + if ( fieldValue == null ) { + return validatorMessage; + } + + dynamicallyInitIfNeeded( fieldValue ); + + if ( !super.isValueGreaterThanMin( ( Comparable ) fieldValue ) ) { + populateMessage( underMin, validatorMessage, fieldLabel, min ); + } else if ( !super.isValueLessThanMax( ( Comparable ) fieldValue ) ) { + populateMessage( overMax, validatorMessage, fieldLabel, max ); + } + + return validatorMessage; + + } + + + /* Initialize this instance. */ + public void init() { + /* If the underMin message was not injected, create a default. */ + if ( underMin == null ) { + underMin = new MessageSpecification(); + underMin.setDetailMessage( "{validator.range.underMin.detail}" ); + underMin.setSummaryMessage( "{validator.range.underMin.summary}" ); + } + /* If the overMax message was not injected, create a default. */ + if ( overMax == null ) { + overMax = new MessageSpecification(); + overMax.setDetailMessage( "{validator.range.overMax.detail}" ); + overMax.setSummaryMessage( "{validator.range.overMax.summary" ); + } + /* If the type was not injected, stop initialization. */ + if ( type == null ) { + return; + } + /* Initialize based on type for all Integer value + * so that LongRangeValidator can be used + * for int, short, byte, and long. */ + if ( !isInitialized() ) { + if ( type.equals( Integer.class ) ) { + init( new Integer( min.intValue() ), new Integer( max.intValue() ) ); + } else if ( type.equals( Byte.class ) ) { + init( new Byte( min.byteValue() ), new Byte( max.byteValue() ) ); + } else if ( type.equals( Short.class ) ) { + init( new Short( min.byteValue() ), new Short( max.byteValue() ) ); + } else { + init( min, max ); + } + } + } + + + /** + * If the type was not initialized, we can still figure it out at runtime. + * + * @param value + */ + private void dynamicallyInitIfNeeded( Object value ) { + /* Check to see if this class was already initialized, + * if not, initialize it based on the type of the value. + */ + if ( !isInitialized() ) { + if ( value instanceof Integer ) { + init( new Integer( min.intValue() ), new Integer( max.intValue() ) ); + } else if ( value instanceof Byte ) { + init( new Byte( min.byteValue() ), new Byte( max.byteValue() ) ); + } else if ( value instanceof Short ) { + init( new Short( min.shortValue() ), new Short( max.shortValue() ) ); + } else { + init( min, max ); + } + } + } + + public void setMax( Long max ) { + this.max = max; + } + + + public void setMin( Long min ) { + this.min = min; + } + + public void setType( Class type ) { + this.type = type; + } + + protected void setOverMax( MessageSpecification overMax ) { + this.overMax = overMax; + } + + protected void setUnderMin( MessageSpecification underMin ) { + this.underMin = underMin; + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/validators/MatchAllRegexValidator.java b/datastructures-json-boon/src/main/java/org/boon/validation/validators/MatchAllRegexValidator.java new file mode 100644 index 0000000..f580ca1 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/validators/MatchAllRegexValidator.java @@ -0,0 +1,98 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.validators; + + +import org.boon.validation.ValidatorMessage; +import org.boon.validation.ValidatorMessageHolder; + +import java.util.HashMap; +import java.util.Map; +import java.util.regex.Pattern; + + +/** + *

+ * + * Regex validator. + * + *

+ * + * @author Rick Hightower + */ +public class MatchAllRegexValidator extends BaseValidator { + + private String[] matches; + + private Map compiledRegexCache = new HashMap(); + + + public ValidatorMessageHolder validate( Object object, String fieldLabel ) { + ValidatorMessage message = new ValidatorMessage(); + if ( object == null ) { + return message; + } + String string = object.toString(); + int validCount = 0; + + for ( String match : matches ) { + Pattern pattern = compileRegex( match ); + if ( pattern.matcher( string ).find() ) { + validCount++; + } + } + + if ( validCount != matches.length ) { + populateMessage( message, fieldLabel ); + return message; + } + + return message; + } + + /** + * Compiles a match. + * + * @return the resulting pattern object + */ + private Pattern compileRegex( String match ) { + + Pattern pattern = compiledRegexCache.get( match ); + if ( pattern == null ) { + pattern = Pattern.compile( match ); + compiledRegexCache.put( match, pattern ); + } + return pattern; + } + + public void setMatches( String[] matches ) { + this.matches = matches; + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/validators/MatchAnyRegexValidator.java b/datastructures-json-boon/src/main/java/org/boon/validation/validators/MatchAnyRegexValidator.java new file mode 100644 index 0000000..d955696 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/validators/MatchAnyRegexValidator.java @@ -0,0 +1,98 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.validators; + + +import org.boon.validation.ValidatorMessage; +import org.boon.validation.ValidatorMessageHolder; + +import java.util.HashMap; +import java.util.Map; +import java.util.regex.Pattern; + + +/** + *

+ * + * Regex validator. + * + *

+ * + * @author Rick Hightower + */ +public class MatchAnyRegexValidator extends BaseValidator { + + private String[] matches; + + private Map compiledRegexCache = new HashMap(); + + + public ValidatorMessageHolder validate( Object object, String fieldLabel ) { + ValidatorMessage message = new ValidatorMessage(); + if ( object == null ) { + return message; + } + String string = object.toString(); + int validCount = 0; + + for ( String match : matches ) { + Pattern pattern = compileRegex( match ); + if ( pattern.matcher( string ).matches() ) { + validCount++; + } + } + + if ( validCount == 0 ) { + populateMessage( message, fieldLabel ); + return message; + } + + return message; + } + + /** + * Compiles a match. + * + * @return the resulting pattern object + */ + private Pattern compileRegex( String match ) { + + Pattern pattern = compiledRegexCache.get( match ); + if ( pattern == null ) { + pattern = Pattern.compile( match ); + compiledRegexCache.put( match, pattern ); + } + return pattern; + } + + public void setMatches( String[] matches ) { + this.matches = matches; + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/validators/RegexValidator.java b/datastructures-json-boon/src/main/java/org/boon/validation/validators/RegexValidator.java new file mode 100644 index 0000000..7659bc6 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/validators/RegexValidator.java @@ -0,0 +1,113 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.validators; + + +import org.boon.validation.ValidatorMessage; +import org.boon.validation.ValidatorMessageHolder; + +import java.util.HashMap; +import java.util.Map; +import java.util.regex.Pattern; + + +/** + *

+ * + * Regex validator. + * + *

+ * + * @author Rick Hightower + */ +public class RegexValidator extends BaseValidator { + + private String match; + private boolean negate; + private Map compiledRegexCache = new HashMap<>(); + + public boolean isNegate() { + return this.negate; + } + + public void setNegate( boolean negate ) { + this.negate = negate; + } + + /** + * The match. + * + * @return the regular expression + */ + protected String getMatch() { + return this.match; + } + + public void setMatch( String regex ) { + this.match = regex; + } + + public ValidatorMessageHolder validate( Object object, String fieldLabel ) { + ValidatorMessage message = new ValidatorMessage(); + if ( object == null ) { + return message; + } + String string = object.toString(); + Pattern pattern = compileRegex(); + boolean valid; + if ( negate ) { + valid = !pattern.matcher( string ).matches(); + } else { + valid = pattern.matcher( string ).matches(); + } + + if ( !valid ) { + populateMessage( message, fieldLabel ); + return message; + } + + return message; + } + + /** + * Compiles a match. + * + * @return the resulting pattern object + */ + private Pattern compileRegex() { + + Pattern pattern = compiledRegexCache.get( getMatch() ); + if ( pattern == null ) { + pattern = Pattern.compile( getMatch() ); + compiledRegexCache.put( getMatch(), pattern ); + } + return pattern; + } + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/validators/RequiredValidator.java b/datastructures-json-boon/src/main/java/org/boon/validation/validators/RequiredValidator.java new file mode 100644 index 0000000..2cde115 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/validators/RequiredValidator.java @@ -0,0 +1,79 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.validators; + + +import org.boon.Str; +import org.boon.validation.ValidatorMessage; +import org.boon.validation.ValidatorMessageHolder; + +/** + *

+ * + * Required validator. + * + *

+ * + * @author Rick Hightower + */ +public class RequiredValidator extends BaseValidator { + + public void init() { + if ( Str.isEmpty( this.getDetailMessage() ) ) { + this.setDetailMessage( "{validator.required.detail}" ); + } + + if ( !this.isNoSummary() ) { + if ( Str.isEmpty( this.getSummaryMessage() ) ) { + this.setSummaryMessage( "{validator.required.summary}" ); + } + } + } + + public ValidatorMessageHolder validate( Object object, String fieldLabel ) { + ValidatorMessage message = new ValidatorMessage(); + + if ( object instanceof String ) { + String string = ( String ) object; + boolean valid = string != null && !string.trim().equals( "" ); + if ( !valid ) { + populateMessage( message, fieldLabel ); + } + + } else { + if ( object == null ) { + populateMessage( message, fieldLabel ); + } + } + + return message; + } + + +} diff --git a/datastructures-json-boon/src/main/java/org/boon/validation/validators/StopOnRuleValidator.java b/datastructures-json-boon/src/main/java/org/boon/validation/validators/StopOnRuleValidator.java new file mode 100644 index 0000000..9c83b82 --- /dev/null +++ b/datastructures-json-boon/src/main/java/org/boon/validation/validators/StopOnRuleValidator.java @@ -0,0 +1,60 @@ +/* + * Copyright 2013-2014 Richard M. Hightower + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * __________ _____ __ .__ + * \______ \ ____ ____ ____ /\ / \ _____ | | _|__| ____ ____ + * | | _// _ \ / _ \ / \ \/ / \ / \\__ \ | |/ / |/ \ / ___\ + * | | ( <_> | <_> ) | \ /\ / Y \/ __ \| <| | | \/ /_/ > + * |______ /\____/ \____/|___| / \/ \____|__ (____ /__|_ \__|___| /\___ / + * \/ \/ \/ \/ \/ \//_____/ + * ____. ___________ _____ ______________.___. + * | |____ ___ _______ \_ _____/ / _ \ / _____/\__ | | + * | \__ \\ \/ /\__ \ | __)_ / /_\ \ \_____ \ / | | + * /\__| |/ __ \\ / / __ \_ | \/ | \/ \ \____ | + * \________(____ /\_/ (____ / /_______ /\____|__ /_______ / / ______| + * \/ \/ \/ \/ \/ \/ + */ + +package org.boon.validation.validators; + + +import org.boon.validation.FieldValidator; +import org.boon.validation.ValidatorMessage; +import org.boon.validation.ValidatorMessageHolder; + +/** + *

+ * + * Required validator. + * + *

+ * + * @author Rick Hightower + */ +public class StopOnRuleValidator implements FieldValidator { + private String ruleName; + + public String getRuleName() { + return ruleName; + } + + public void setRuleName( String ruleName ) { + this.ruleName = ruleName; + } + + public ValidatorMessageHolder validate( Object fieldValue, String fieldLabel ) { + return new ValidatorMessage(); + } + +} diff --git a/datastructures-json-minimal/NOTICE.txt b/datastructures-json-minimal/NOTICE.txt new file mode 100644 index 0000000..7de81bb --- /dev/null +++ b/datastructures-json-minimal/NOTICE.txt @@ -0,0 +1,5 @@ +This work is derived from + +https://github.com/ralfstx/minimal-json + +Published under the MIT License \ No newline at end of file diff --git a/datastructures-json-minimal/build.gradle b/datastructures-json-minimal/build.gradle new file mode 100644 index 0000000..97b63e6 --- /dev/null +++ b/datastructures-json-minimal/build.gradle @@ -0,0 +1,5 @@ +dependencies { + testImplementation("org.mockito:mockito-core:${project.property('mockito.version')}") { + exclude group: 'org.hamcrest' + } +} \ No newline at end of file diff --git a/datastructures-json-minimal/src/main/java/module-info.java b/datastructures-json-minimal/src/main/java/module-info.java new file mode 100644 index 0000000..77105a5 --- /dev/null +++ b/datastructures-json-minimal/src/main/java/module-info.java @@ -0,0 +1,3 @@ +module org.xbib.datastructures.json { + exports org.xbib.datastructures.json; +} diff --git a/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/DefaultHandler.java b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/DefaultHandler.java new file mode 100644 index 0000000..22f5da1 --- /dev/null +++ b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/DefaultHandler.java @@ -0,0 +1,58 @@ +package org.xbib.datastructures.json; + +public class DefaultHandler implements JsonHandler { + + protected JsonValue value; + + @Override + public JsonValue getValue() { + return value; + } + + @Override + public void startObject() { + } + + @Override + public void nullValue() { + value = JsonLiteral.NULL; + } + + @Override + public void booleanValue(boolean bool) { + value = bool ? JsonLiteral.TRUE : JsonLiteral.FALSE; + } + + @Override + public void stringValue(String string) { + value = new JsonString(string); + } + + @Override + public void numberValue(String string) { + value = new JsonNumber(string); + } + + @Override + public void startArray() { + } + + @Override + public void endArray(JsonArray array) { + value = array; + } + + @Override + public void endObject(JsonObject object) { + value = object; + } + + @Override + public void objectName(JsonObject object, String name) { + } + + @Override + public void objectValue(JsonObject object, String name) { + object.add(name, value); + } +} diff --git a/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/HashIndexTable.java b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/HashIndexTable.java new file mode 100644 index 0000000..b153379 --- /dev/null +++ b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/HashIndexTable.java @@ -0,0 +1,37 @@ +package org.xbib.datastructures.json; + +/** + * + */ +public class HashIndexTable { + + private final byte[] hashTable = new byte[32]; + + public void add(String name, int index) { + int slot = hashSlotFor(name); + if (index < 0xff) { + hashTable[slot] = (byte) (index + 1); + } else { + hashTable[slot] = 0; + } + } + + public void remove(int index) { + for (int i = 0; i < hashTable.length; i++) { + if (hashTable[i] == index + 1) { + hashTable[i] = 0; + } else if (hashTable[i] > index + 1) { + hashTable[i]--; + } + } + } + + public int get(Object name) { + int slot = hashSlotFor(name); + return (hashTable[slot] & 0xff) - 1; + } + + private int hashSlotFor(Object element) { + return element.hashCode() & hashTable.length - 1; + } +} diff --git a/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/Json.java b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/Json.java new file mode 100755 index 0000000..3f2f6e3 --- /dev/null +++ b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/Json.java @@ -0,0 +1,264 @@ +package org.xbib.datastructures.json; + +import java.io.IOException; +import java.io.Reader; +import java.io.StringReader; +import java.util.Objects; + +/** + * This class serves as the entry point to the JSON API. + *

+ * To parse a given JSON input, use the parse() methods like in this + * example: + *

+ *
+ * JsonObject object = Json.parse(string).asObject();
+ * 
+ *

+ * To create a JSON data structure to be serialized, use the methods + * value(), array(), and object(). For example, the following + * snippet will produce the JSON string {"foo": 23, "bar": true}: + *

+ *
+ * String string = Json.object().add("foo", 23).add("bar", true).toString();
+ * 
+ *

+ * To create a JSON array from a given Java array, you can use one of the array() + * methods with varargs parameters: + *

+ *
+ * String[] names = ...
+ * JsonArray array = Json.array(names);
+ * 
+ */ +public final class Json { + + private Json() { + // not meant to be instantiated + } + + /** + * Returns a JsonValue instance that represents the given int value. + * + * @param value the value to get a JSON representation for + * @return a JSON value that represents the given value + */ + public static JsonValue of(int value) { + return new JsonNumber(Integer.toString(value, 10)); + } + + /** + * Returns a JsonValue instance that represents the given long value. + * + * @param value the value to get a JSON representation for + * @return a JSON value that represents the given value + */ + public static JsonValue of(long value) { + return new JsonNumber(Long.toString(value, 10)); + } + + /** + * Returns a JsonValue instance that represents the given float value. + * + * @param value the value to get a JSON representation for + * @return a JSON value that represents the given value + */ + public static JsonValue of(float value) { + if (Float.isInfinite(value) || Float.isNaN(value)) { + throw new IllegalArgumentException("Infinite and NaN values not permitted in JSON"); + } + return new JsonNumber(cutOffPointZero(Float.toString(value))); + } + + /** + * Returns a JsonValue instance that represents the given double value. + * + * @param value the value to get a JSON representation for + * @return a JSON value that represents the given value + */ + public static JsonValue of(double value) { + if (Double.isInfinite(value) || Double.isNaN(value)) { + throw new IllegalArgumentException("Infinite and NaN values not permitted in JSON"); + } + return new JsonNumber(cutOffPointZero(Double.toString(value))); + } + + /** + * Returns a JsonValue instance that represents the given string. + * + * @param string the string to get a JSON representation for + * @return a JSON value that represents the given string + */ + public static JsonValue of(String string) { + return string == null ? JsonLiteral.NULL : new JsonString(string); + } + + /** + * Returns a JsonValue instance that represents the given boolean value. + * + * @param value the value to get a JSON representation for + * @return a JSON value that represents the given value + */ + public static JsonValue of(boolean value) { + return value ? JsonLiteral.TRUE : JsonLiteral.FALSE; + } + + /** + * Creates a new empty JsonArray. This is equivalent to creating a new JsonArray using the + * constructor. + * + * @return a new empty JSON array + */ + public static JsonArray array() { + return new JsonArray(); + } + + /** + * Creates a new JsonArray that contains the JSON representations of the given int + * values. + * + * @param values the values to be included in the new JSON array + * @return a new JSON array that contains the given values + */ + public static JsonArray array(int... values) { + Objects.requireNonNull(values); + JsonArray array = new JsonArray(); + for (int value : values) { + array.add(value); + } + return array; + } + + /** + * Creates a new JsonArray that contains the JSON representations of the given long + * values. + * + * @param values the values to be included in the new JSON array + * @return a new JSON array that contains the given values + */ + public static JsonArray array(long... values) { + Objects.requireNonNull(values); + JsonArray array = new JsonArray(); + for (long value : values) { + array.add(value); + } + return array; + } + + /** + * Creates a new JsonArray that contains the JSON representations of the given float + * values. + * + * @param values the values to be included in the new JSON array + * @return a new JSON array that contains the given values + */ + public static JsonArray array(float... values) { + Objects.requireNonNull(values); + JsonArray array = new JsonArray(); + for (float value : values) { + array.add(value); + } + return array; + } + + /** + * Creates a new JsonArray that contains the JSON representations of the given double + * values. + * + * @param values the values to be included in the new JSON array + * @return a new JSON array that contains the given values + */ + public static JsonArray array(double... values) { + Objects.requireNonNull(values); + JsonArray array = new JsonArray(); + for (double value : values) { + array.add(value); + } + return array; + } + + /** + * Creates a new JsonArray that contains the JSON representations of the given + * boolean values. + * + * @param values the values to be included in the new JSON array + * @return a new JSON array that contains the given values + */ + public static JsonArray array(boolean... values) { + Objects.requireNonNull(values); + JsonArray array = new JsonArray(); + for (boolean value : values) { + array.add(value); + } + return array; + } + + /** + * Creates a new JsonArray that contains the JSON representations of the given strings. + * + * @param strings the strings to be included in the new JSON array + * @return a new JSON array that contains the given strings + */ + public static JsonArray array(String... strings) { + Objects.requireNonNull(strings); + JsonArray array = new JsonArray(); + for (String value : strings) { + array.add(value); + } + return array; + } + + /** + * Creates a new empty JsonObject. This is equivalent to creating a new JsonObject using the + * constructor. + * + * @return a new empty JSON object + */ + public static JsonObject object() { + return new JsonObject(); + } + + /** + * Parses the given input string as JSON. The input must contain a valid JSON value, optionally + * padded with whitespace. + * + * @param string the input string, must be valid JSON + * @return a value that represents the parsed JSON + * @throws IOException if the input is not valid JSON + */ + public static JsonValue parse(String string) throws IOException { + Objects.requireNonNull(string); + DefaultHandler handler = new DefaultHandler(); + new JsonReader(new StringReader(string), handler).parse(); + return handler.getValue(); + } + + /** + * Reads the entire input from the given reader and parses it as JSON. The input must contain a + * valid JSON value, optionally padded with whitespace. + *

+ * Characters are read in chunks into an input buffer. Hence, wrapping a reader in an additional + * BufferedReader likely won't improve reading performance. + *

+ * + * @param reader the reader to read the JSON value from + * @return a value that represents the parsed JSON + * @throws IOException if an I/O error occurs in the reader + * @throws JsonException if the input is not valid JSON + */ + public static JsonValue parse(Reader reader) throws IOException { + DefaultHandler handler = new DefaultHandler(); + try (reader) { + new JsonReader(reader, handler).parse(); + } + return handler.getValue(); + } + + private static String cutOffPointZero(String string) { + if (string.endsWith(".0")) { + return string.substring(0, string.length() - 2); + } + return string; + } + +} diff --git a/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonArray.java b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonArray.java new file mode 100755 index 0000000..9eb8232 --- /dev/null +++ b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonArray.java @@ -0,0 +1,382 @@ +package org.xbib.datastructures.json; + +import java.io.IOException; +import java.util.ArrayList; +import java.util.Iterator; +import java.util.List; +import java.util.Objects; + +/** + * Represents a JSON array, an ordered collection of JSON values. + *

+ * Elements can be added using the add(...) methods which accept instances of + * {@link JsonValue}, strings, primitive numbers, and boolean values. To replace an element of an + * array, use the set(int, ...) methods. + *

+ *

+ * Elements can be accessed by their index using {@link #get(int)}. This class also supports + * iterating over the elements in document order using an {@link #iterator()} or an enhanced for + * loop: + *

+ *
+ * for (JsonValue value : jsonArray) {
+ *   ...
+ * }
+ * 
+ *

+ * An equivalent {@link List} can be obtained from the method {@link #values()}. + *

+ *

+ * Note that this class is not thread-safe. If multiple threads access a + * JsonArray instance concurrently, while at least one of these threads modifies the + * contents of this array, access to the instance must be synchronized externally. Failure to do so + * may lead to an inconsistent state. + *

+ */ +public class JsonArray extends JsonValue implements Iterable { + + private final List values; + + /** + * Creates a new empty JsonArray. + */ + public JsonArray() { + values = new ArrayList<>(); + } + + /** + * Creates a new JsonArray with the contents of the specified JSON array. + * + * @param array the JsonArray to get the initial contents from, must not be null + */ + public JsonArray(JsonArray array) { + Objects.requireNonNull(array); + values = new ArrayList<>(array.values); + } + + /** + * Appends the JSON representation of the specified int value to the end of this + * array. + * + * @param value the value to add to the array + * @return the array itself, to enable method chaining + */ + public JsonArray add(int value) { + values.add(Json.of(value)); + return this; + } + + /** + * Appends the JSON representation of the specified long value to the end of this + * array. + * + * @param value the value to add to the array + * @return the array itself, to enable method chaining + */ + public JsonArray add(long value) { + values.add(Json.of(value)); + return this; + } + + /** + * Appends the JSON representation of the specified float value to the end of this + * array. + * + * @param value the value to add to the array + * @return the array itself, to enable method chaining + */ + public JsonArray add(float value) { + values.add(Json.of(value)); + return this; + } + + /** + * Appends the JSON representation of the specified double value to the end of this + * array. + * + * @param value the value to add to the array + * @return the array itself, to enable method chaining + */ + public JsonArray add(double value) { + values.add(Json.of(value)); + return this; + } + + /** + * Appends the JSON representation of the specified boolean value to the end of this + * array. + * + * @param value the value to add to the array + * @return the array itself, to enable method chaining + */ + public JsonArray add(boolean value) { + values.add(Json.of(value)); + return this; + } + + /** + * Appends the JSON representation of the specified string to the end of this array. + * + * @param value the string to add to the array + * @return the array itself, to enable method chaining + */ + public JsonArray add(String value) { + values.add(Json.of(value)); + return this; + } + + /** + * Appends the specified JSON value to the end of this array. + * + * @param value the JsonValue to add to the array, must not be null + * @return the array itself, to enable method chaining + */ + public JsonArray add(JsonValue value) { + Objects.requireNonNull(value); + values.add(value); + return this; + } + + /** + * Replaces the element at the specified position in this array with the JSON representation of + * the specified int value. + * + * @param index the index of the array element to replace + * @param value the value to be stored at the specified array position + * @return the array itself, to enable method chaining + * @throws IndexOutOfBoundsException if the index is out of range, i.e. index < 0 or + * index >= size + */ + public JsonArray set(int index, int value) { + values.set(index, Json.of(value)); + return this; + } + + /** + * Replaces the element at the specified position in this array with the JSON representation of + * the specified long value. + * + * @param index the index of the array element to replace + * @param value the value to be stored at the specified array position + * @return the array itself, to enable method chaining + * @throws IndexOutOfBoundsException if the index is out of range, i.e. index < 0 or + * index >= size + */ + public JsonArray set(int index, long value) { + values.set(index, Json.of(value)); + return this; + } + + /** + * Replaces the element at the specified position in this array with the JSON representation of + * the specified float value. + * + * @param index the index of the array element to replace + * @param value the value to be stored at the specified array position + * @return the array itself, to enable method chaining + * @throws IndexOutOfBoundsException if the index is out of range, i.e. index < 0 or + * index >= size + */ + public JsonArray set(int index, float value) { + values.set(index, Json.of(value)); + return this; + } + + /** + * Replaces the element at the specified position in this array with the JSON representation of + * the specified double value. + * + * @param index the index of the array element to replace + * @param value the value to be stored at the specified array position + * @return the array itself, to enable method chaining + * @throws IndexOutOfBoundsException if the index is out of range, i.e. index < 0 or + * index >= size + */ + public JsonArray set(int index, double value) { + values.set(index, Json.of(value)); + return this; + } + + /** + * Replaces the element at the specified position in this array with the JSON representation of + * the specified boolean value. + * + * @param index the index of the array element to replace + * @param value the value to be stored at the specified array position + * @return the array itself, to enable method chaining + * @throws IndexOutOfBoundsException if the index is out of range, i.e. index < 0 or + * index >= size + */ + public JsonArray set(int index, boolean value) { + values.set(index, Json.of(value)); + return this; + } + + /** + * Replaces the element at the specified position in this array with the JSON representation of + * the specified string. + * + * @param index the index of the array element to replace + * @param value the string to be stored at the specified array position + * @return the array itself, to enable method chaining + * @throws IndexOutOfBoundsException if the index is out of range, i.e. index < 0 or + * index >= size + */ + public JsonArray set(int index, String value) { + values.set(index, Json.of(value)); + return this; + } + + /** + * Replaces the element at the specified position in this array with the specified JSON value. + * + * @param index the index of the array element to replace + * @param value the value to be stored at the specified array position, must not be null + * @return the array itself, to enable method chaining + * @throws IndexOutOfBoundsException if the index is out of range, i.e. index < 0 or + * index >= size + */ + public JsonArray set(int index, JsonValue value) { + if (value == null) { + throw new NullPointerException("value is null"); + } + values.set(index, value); + return this; + } + + /** + * Removes the element at the specified index from this array. + * + * @param index the index of the element to remove + * @return the array itself, to enable method chaining + * @throws IndexOutOfBoundsException if the index is out of range, i.e. index < 0 or + * index >= size + */ + public JsonArray remove(int index) { + values.remove(index); + return this; + } + + /** + * Returns the number of elements in this array. + * + * @return the number of elements in this array + */ + public int size() { + return values.size(); + } + + /** + * Returns true if this array contains no elements. + * + * @return true if this array contains no elements + */ + public boolean isEmpty() { + return values.isEmpty(); + } + + /** + * Returns the value of the element at the specified position in this array. + * + * @param index the index of the array element to return + * @return the value of the element at the specified position + * @throws IndexOutOfBoundsException if the index is out of range, i.e. index < 0 or + * index >= size + */ + public JsonValue get(int index) { + return values.get(index); + } + + /** + * Returns a list of the values in this array in document order. + * + * @return a list of the values in this array + */ + public List values() { + return values; + } + + /** + * Returns an iterator over the values of this array in document order. The returned iterator + * cannot be used to modify this array. + * + * @return an iterator over the values of this array + */ + @Override + public Iterator iterator() { + final Iterator iterator = values.iterator(); + return new Iterator() { + + @Override + public boolean hasNext() { + return iterator.hasNext(); + } + + @Override + public JsonValue next() { + return iterator.next(); + } + + @Override + public void remove() { + throw new UnsupportedOperationException(); + } + }; + } + + @Override + public void write(JsonWriter writer) throws IOException { + writer.writeArrayOpen(); + Iterator iterator = iterator(); + if (iterator.hasNext()) { + iterator.next().write(writer); + while (iterator.hasNext()) { + writer.writeArraySeparator(); + iterator.next().write(writer); + } + } + writer.writeArrayClose(); + } + + @Override + public boolean isArray() { + return true; + } + + @Override + public JsonArray asArray() { + return this; + } + + @Override + public int hashCode() { + return values.hashCode(); + } + + /** + * Indicates whether a given object is "equal to" this JsonArray. An object is considered equal + * if it is also a JsonArray and both arrays contain the same list of values. + *

+ * If two JsonArrays are equal, they will also produce the same JSON output. + *

+ * + * @param object the object to be compared with this JsonArray + * @return true if the specified object is equal to this JsonArray, false + * otherwise + */ + @Override + public boolean equals(Object object) { + if (this == object) { + return true; + } + if (object == null) { + return false; + } + if (getClass() != object.getClass()) { + return false; + } + JsonArray other = (JsonArray) object; + return values.equals(other.values); + } + +} diff --git a/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonBool.java b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonBool.java new file mode 100644 index 0000000..645fcf5 --- /dev/null +++ b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonBool.java @@ -0,0 +1,17 @@ +package org.xbib.datastructures.json; + +import java.io.IOException; + +public class JsonBool extends JsonValue { + + private final boolean value; + + public JsonBool(boolean value) { + this.value = value; + } + + @Override + public void write(JsonWriter writer) throws IOException { + writer.writeString(value ? "true" : "false"); + } +} diff --git a/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonException.java b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonException.java new file mode 100755 index 0000000..7512037 --- /dev/null +++ b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonException.java @@ -0,0 +1,16 @@ +package org.xbib.datastructures.json; + +import java.io.IOException; +import java.io.UncheckedIOException; + +@SuppressWarnings("serial") +public class JsonException extends UncheckedIOException { + + public JsonException(String message) { + super(new IOException(message)); + } + + public JsonException(IOException exception) { + super(exception); + } +} diff --git a/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonHandler.java b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonHandler.java new file mode 100755 index 0000000..cecc89f --- /dev/null +++ b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonHandler.java @@ -0,0 +1,96 @@ +package org.xbib.datastructures.json; + +/** + * An interface for parser events. A {@link JsonHandler} can be given to a {@link JsonReader}. The + * parser will then call the methods of the given handler while reading the input. + * Implementations that build an object representation of the parsed JSON can return arbitrary handler + * objects for JSON arrays and JSON objects in {@link #startArray()} and {@link #startObject()}. + * These handler objects will then be provided in all subsequent parser events for this particular + * array or object. They can be used to keep track the elements of a JSON array or object. + * + * @see JsonReader + */ +public interface JsonHandler { + + /** + * Indicates a null literal in the JSON input. This method will be + * called when reading the first character of the literal. + */ + void nullValue(); + + /** + * Indicates a boolean literal (true or false) in the JSON + * input. This method will be called after reading the last character of the literal. + * + * @param value the parsed boolean value + */ + void booleanValue(boolean value); + + /** + * Indicates a string in the JSON input. This method will be called after reading the + * closing double quote character ('"'). + * + * @param string the parsed string + */ + void stringValue(String string); + + /** + * Indicates a number in the JSON input. This method will be called after reading the + * last character of the number. + * + * @param string the parsed number string + */ + void numberValue(String string); + + /** + * Indicates the beginning of an array in the JSON input. This method will be called when reading + * the opening square bracket character ('['). + */ + void startArray(); + + /** + * Indicates the end of an array in the JSON input. This method will be called after reading the + * closing square bracket character (']'). + * + * @param array the array handler returned from {@link #startArray()}, or null if not + * provided + */ + void endArray(JsonArray array); + + /** + * Indicates the beginning of an object in the JSON input. This method will be called when reading + * the opening curly bracket character ('{'). + */ + void startObject(); + + /** + * Indicates the end of an object in the JSON input. This method will be called after reading the + * closing curly bracket character ('}'). + * + * @param object the object handler returned from {@link #startObject()}, or null if not provided + */ + void endObject(JsonObject object); + + /** + * Indicates an object member name in the JSON input. This method will be called after + * reading the closing quote character ('"') of the member name. + * + * @param object the object handler returned from {@link #startObject()}, or null if not provided + * @param name the parsed member name + */ + void objectName(JsonObject object, String name); + + /** + * Indicates an object member value in the JSON input. This method will be called after + * reading the last character of the member value, just after the end method for the + * specific member type (like {@link #stringValue(String) endString()}, {@link #numberValue(String) + * endNumber()}, etc.). + * + * @param object the object handler returned from {@link #startObject()}, or null if not provided + * @param name the parsed member name + */ + void objectValue(JsonObject object, String name); + + JsonValue getValue(); + +} diff --git a/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonLiteral.java b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonLiteral.java new file mode 100755 index 0000000..35eb896 --- /dev/null +++ b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonLiteral.java @@ -0,0 +1,75 @@ +package org.xbib.datastructures.json; + +import java.io.IOException; + +/** + * A JSON literal. + */ +public class JsonLiteral extends JsonValue { + + public static final JsonLiteral NULL = new JsonLiteral("null"); + + public static final JsonLiteral TRUE = new JsonLiteral("true"); + + public static final JsonLiteral FALSE = new JsonLiteral("false"); + + private final String value; + + private final boolean isNull; + + private final boolean isTrue; + + private final boolean isFalse; + + public JsonLiteral(String value) { + this.value = value; + isNull = "null".equals(value); + isTrue = "true".equals(value); + isFalse = "false".equals(value); + } + + @Override + public void write(JsonWriter writer) throws IOException { + writer.writeLiteral(value); + } + + @Override + public String toString() { + return value; + } + + @Override + public int hashCode() { + return value.hashCode(); + } + + @Override + public boolean isNull() { + return isNull; + } + + @Override + public boolean isTrue() { + return isTrue; + } + + @Override + public boolean isFalse() { + return isFalse; + } + + @Override + public boolean isBoolean() { + return isTrue || isFalse; + } + + @Override + public boolean asBoolean() { + return isNull ? super.asBoolean() : isTrue; + } + + @Override + public boolean equals(Object object) { + return this == object || object != null && getClass() == object.getClass() && value.equals(((JsonLiteral) object).value); + } +} diff --git a/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonMapper.java b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonMapper.java new file mode 100644 index 0000000..1d3d76c --- /dev/null +++ b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonMapper.java @@ -0,0 +1,93 @@ +package org.xbib.datastructures.json; + +import java.util.ArrayList; +import java.util.Collection; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +public class JsonMapper { + + private JsonMapper() { + // do not instantiate this class + } + + public static Object asObject(JsonValue value) { + if (value.isBoolean()) { + return value.asBoolean(); + } else if (value.isInt()) { + return value.asInt(); + } else if (value.isLong()) { + return value.asLong(); + } else if (value.isFloat()) { + return value.asFloat(); + } else if (value.isDouble()) { + return value.asDouble(); + } else if (value.isString()) { + return value.asString(); + } else if (value.isArray()) { + return asList(value.asArray()); + } else if (value.isObject()) { + return asMap(value.asObject()); + } else { + return null; + } + } + + public static List asList(JsonArray array) { + List list = new ArrayList<>(array.size()); + for (JsonValue element : array) { + list.add(asObject(element)); + } + return list; + } + + public static Map asMap(JsonObject object) { + Map map = new HashMap<>(object.size(), 1.f); + for (JsonObjectMember member : object) { + map.put(member.getName(), asObject(member.getValue())); + } + return map; + } + + public static JsonValue asJsonValue(Object object) { + if (object == null) { + return JsonLiteral.NULL; + } else if (object instanceof Boolean) { + return Json.of((Boolean) object); + } else if (object instanceof Integer) { + return Json.of((Integer) object); + } else if (object instanceof Long) { + return Json.of((Long) object); + } else if (object instanceof Float) { + return Json.of((Float) object); + } else if (object instanceof Double) { + return Json.of((Double) object); + } else if (object instanceof String) { + return Json.of((String) object); + } else if (object instanceof Collection) { + return asJsonArray((Collection) object); + } else if (object instanceof Map) { + return asJsonObject((Map) object); + } else { + return null; + } + } + + public static JsonArray asJsonArray(Collection collection) { + JsonArray array = new JsonArray(); + for (Object element : collection) { + array.add(asJsonValue(element)); + } + return array; + } + + public static JsonObject asJsonObject(Map map) { + JsonObject object = new JsonObject(); + for (Map.Entry entry : map.entrySet()) { + object.add(String.valueOf(entry.getKey()), + asJsonValue(entry.getValue())); + } + return object; + } +} diff --git a/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonNull.java b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonNull.java new file mode 100644 index 0000000..53410ab --- /dev/null +++ b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonNull.java @@ -0,0 +1,11 @@ +package org.xbib.datastructures.json; + +import java.io.IOException; + +public class JsonNull extends JsonValue { + @Override + public void write(JsonWriter writer) throws IOException { + writer.writeString("null"); + } +} + diff --git a/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonNumber.java b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonNumber.java new file mode 100755 index 0000000..ac677b3 --- /dev/null +++ b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonNumber.java @@ -0,0 +1,95 @@ +package org.xbib.datastructures.json; + +import java.io.IOException; +import java.util.Objects; + +public class JsonNumber extends JsonValue { + + private final String string; + + public JsonNumber(String string) { + Objects.requireNonNull(string); + this.string = string; + } + + @Override + public String toString() { + return string; + } + + @Override + public void write(JsonWriter writer) throws IOException { + writer.writeNumber(string); + } + + @Override + public boolean isInt() { + try { + asInt(); + } catch (NumberFormatException e) { + return false; + } + return true; + } + + @Override + public boolean isLong() { + try { + asLong(); + } catch (NumberFormatException e) { + return false; + } + return true; + } + + @Override + public boolean isFloat() { + try { + asFloat(); + } catch (NumberFormatException e) { + return false; + } + return true; + } + + @Override + public boolean isDouble() { + try { + asDouble(); + } catch (NumberFormatException e) { + return false; + } + return true; + } + + @Override + public int asInt() { + return Integer.parseInt(string, 10); + } + + @Override + public long asLong() { + return Long.parseLong(string, 10); + } + + @Override + public float asFloat() { + return Float.parseFloat(string); + } + + @Override + public double asDouble() { + return Double.parseDouble(string); + } + + @Override + public int hashCode() { + return string.hashCode(); + } + + @Override + public boolean equals(Object object) { + return this == object || object != null && getClass() == object.getClass() + && string.equals(((JsonNumber) object).string); + } +} diff --git a/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonObject.java b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonObject.java new file mode 100755 index 0000000..63e367b --- /dev/null +++ b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonObject.java @@ -0,0 +1,658 @@ +package org.xbib.datastructures.json; + +import java.io.IOException; +import java.util.ArrayList; +import java.util.Collections; +import java.util.Iterator; +import java.util.List; +import java.util.Objects; + +/** + * Represents a JSON object, a set of name/value pairs, where the names are strings and the values + * are JSON values. + *

+ * Members can be added using the add(String, ...) methods which accept instances of + * {@link JsonValue}, strings, primitive numbers, and boolean values. To modify certain values of an + * object, use the set(String, ...) methods. Please note that the add + * methods are faster than set as they do not search for existing members. On the other + * hand, the add methods do not prevent adding multiple members with the same name. + * Duplicate names are discouraged but not prohibited by JSON. + *

+ *

+ * Members can be accessed by their name using {@link #get(String)}. A list of all names can be + * obtained from the method {@link #names()}. This class also supports iterating over the members in + * document order using an {@link #iterator()} or an enhanced for loop: + *

+ *
+ * for (Member member : jsonObject) {
+ *   String name = member.getName();
+ *   JsonValue value = member.getValue();
+ *   ...
+ * }
+ * 
+ *

+ * Even though JSON objects are unordered by definition, instances of this class preserve the order + * of members to allow processing in document order and to guarantee a predictable output. + *

+ *

+ * Note that this class is not thread-safe. If multiple threads access a + * JsonObject instance concurrently, while at least one of these threads modifies the + * contents of this object, access to the instance must be synchronized externally. Failure to do so + * may lead to an inconsistent state. + *

+ */ +public class JsonObject extends JsonValue implements Iterable { + + private final List names; + + private final List values; + + private final HashIndexTable table; + + /** + * Creates a new empty JsonObject. + */ + public JsonObject() { + names = new ArrayList<>(); + values = new ArrayList<>(); + table = new HashIndexTable(); + } + + /** + * Creates a new JsonObject, initialized with the contents of the specified JSON object. + * + * @param object the JSON object to get the initial contents from, must not be null + */ + public JsonObject(JsonObject object) { + Objects.requireNonNull(object); + names = new ArrayList<>(object.names); + values = new ArrayList<>(object.values); + table = new HashIndexTable(); + updateHashIndex(); + } + + /** + * Appends a new member to the end of this object, with the specified name and the JSON + * representation of the specified int value. + *

+ * This method does not prevent duplicate names. Calling this method with a name + * that already exists in the object will append another member with the same name. In order to + * replace existing members, use the method set(name, value) instead. However, + * add is much faster than set (because it does not need to + * search for existing members). Therefore add should be preferred when constructing new + * objects. + *

+ * + * @param name the name of the member to add + * @param value the value of the member to add + * @return the object itself, to enable method chaining + */ + public JsonObject add(String name, int value) { + add(name, Json.of(value)); + return this; + } + + /** + * Appends a new member to the end of this object, with the specified name and the JSON + * representation of the specified long value. + *

+ * This method does not prevent duplicate names. Calling this method with a name + * that already exists in the object will append another member with the same name. In order to + * replace existing members, use the method set(name, value) instead. However, + * add is much faster than set (because it does not need to + * search for existing members). Therefore add should be preferred when constructing new + * objects. + *

+ * + * @param name the name of the member to add + * @param value the value of the member to add + * @return the object itself, to enable method chaining + */ + public JsonObject add(String name, long value) { + add(name, Json.of(value)); + return this; + } + + /** + * Appends a new member to the end of this object, with the specified name and the JSON + * representation of the specified float value. + *

+ * This method does not prevent duplicate names. Calling this method with a name + * that already exists in the object will append another member with the same name. In order to + * replace existing members, use the method set(name, value) instead. However, + * add is much faster than set (because it does not need to + * search for existing members). Therefore add should be preferred when constructing new + * objects. + *

+ * + * @param name the name of the member to add + * @param value the value of the member to add + * @return the object itself, to enable method chaining + */ + public JsonObject add(String name, float value) { + add(name, Json.of(value)); + return this; + } + + /** + * Appends a new member to the end of this object, with the specified name and the JSON + * representation of the specified double value. + *

+ * This method does not prevent duplicate names. Calling this method with a name + * that already exists in the object will append another member with the same name. In order to + * replace existing members, use the method set(name, value) instead. However, + * add is much faster than set (because it does not need to + * search for existing members). Therefore add should be preferred when constructing new + * objects. + *

+ * + * @param name the name of the member to add + * @param value the value of the member to add + * @return the object itself, to enable method chaining + */ + public JsonObject add(String name, double value) { + add(name, Json.of(value)); + return this; + } + + /** + * Appends a new member to the end of this object, with the specified name and the JSON + * representation of the specified boolean value. + *

+ * This method does not prevent duplicate names. Calling this method with a name + * that already exists in the object will append another member with the same name. In order to + * replace existing members, use the method set(name, value) instead. However, + * add is much faster than set (because it does not need to + * search for existing members). Therefore add should be preferred when constructing new + * objects. + *

+ * + * @param name the name of the member to add + * @param value the value of the member to add + * @return the object itself, to enable method chaining + */ + public JsonObject add(String name, boolean value) { + add(name, Json.of(value)); + return this; + } + + /** + * Appends a new member to the end of this object, with the specified name and the JSON + * representation of the specified string. + *

+ * This method does not prevent duplicate names. Calling this method with a name + * that already exists in the object will append another member with the same name. In order to + * replace existing members, use the method set(name, value) instead. However, + * add is much faster than set (because it does not need to + * search for existing members). Therefore add should be preferred when constructing new + * objects. + *

+ * + * @param name the name of the member to add + * @param value the value of the member to add + * @return the object itself, to enable method chaining + */ + public JsonObject add(String name, String value) { + add(name, Json.of(value)); + return this; + } + + /** + * Appends a new member to the end of this object, with the specified name and the specified JSON + * value. + *

+ * This method does not prevent duplicate names. Calling this method with a name + * that already exists in the object will append another member with the same name. In order to + * replace existing members, use the method set(name, value) instead. However, + * add is much faster than set (because it does not need to + * search for existing members). Therefore add should be preferred when constructing new + * objects. + *

+ * + * @param name the name of the member to add + * @param value the value of the member to add, must not be null + * @return the object itself, to enable method chaining + */ + public JsonObject add(String name, JsonValue value) { + if (name == null) { + throw new NullPointerException("name is null"); + } + if (value == null) { + throw new NullPointerException("value is null"); + } + table.add(name, names.size()); + names.add(name); + values.add(value); + return this; + } + + /** + * Sets the value of the member with the specified name to the JSON representation of the + * specified int value. If this object does not contain a member with this name, a + * new member is added at the end of the object. If this object contains multiple members with + * this name, only the last one is changed. + *

+ * This method should only be used to modify existing objects. To fill a new + * object with members, the method add(name, value) should be preferred which is much + * faster (as it does not need to search for existing members). + *

+ * + * @param name the name of the member to replace + * @param value the value to set to the member + * @return the object itself, to enable method chaining + */ + public JsonObject set(String name, int value) { + set(name, Json.of(value)); + return this; + } + + /** + * Sets the value of the member with the specified name to the JSON representation of the + * specified long value. If this object does not contain a member with this name, a + * new member is added at the end of the object. If this object contains multiple members with + * this name, only the last one is changed. + *

+ * This method should only be used to modify existing objects. To fill a new + * object with members, the method add(name, value) should be preferred which is much + * faster (as it does not need to search for existing members). + *

+ * + * @param name the name of the member to replace + * @param value the value to set to the member + * @return the object itself, to enable method chaining + */ + public JsonObject set(String name, long value) { + set(name, Json.of(value)); + return this; + } + + /** + * Sets the value of the member with the specified name to the JSON representation of the + * specified float value. If this object does not contain a member with this name, a + * new member is added at the end of the object. If this object contains multiple members with + * this name, only the last one is changed. + *

+ * This method should only be used to modify existing objects. To fill a new + * object with members, the method add(name, value) should be preferred which is much + * faster (as it does not need to search for existing members). + *

+ * + * @param name the name of the member to add + * @param value the value of the member to add + * @return the object itself, to enable method chaining + */ + public JsonObject set(String name, float value) { + set(name, Json.of(value)); + return this; + } + + /** + * Sets the value of the member with the specified name to the JSON representation of the + * specified double value. If this object does not contain a member with this name, a + * new member is added at the end of the object. If this object contains multiple members with + * this name, only the last one is changed. + *

+ * This method should only be used to modify existing objects. To fill a new + * object with members, the method add(name, value) should be preferred which is much + * faster (as it does not need to search for existing members). + *

+ * + * @param name the name of the member to add + * @param value the value of the member to add + * @return the object itself, to enable method chaining + */ + public JsonObject set(String name, double value) { + set(name, Json.of(value)); + return this; + } + + /** + * Sets the value of the member with the specified name to the JSON representation of the + * specified boolean value. If this object does not contain a member with this name, + * a new member is added at the end of the object. If this object contains multiple members with + * this name, only the last one is changed. + *

+ * This method should only be used to modify existing objects. To fill a new + * object with members, the method add(name, value) should be preferred which is much + * faster (as it does not need to search for existing members). + *

+ * + * @param name the name of the member to add + * @param value the value of the member to add + * @return the object itself, to enable method chaining + */ + public JsonObject set(String name, boolean value) { + set(name, Json.of(value)); + return this; + } + + /** + * Sets the value of the member with the specified name to the JSON representation of the + * specified string. If this object does not contain a member with this name, a new member is + * added at the end of the object. If this object contains multiple members with this name, only + * the last one is changed. + *

+ * This method should only be used to modify existing objects. To fill a new + * object with members, the method add(name, value) should be preferred which is much + * faster (as it does not need to search for existing members). + *

+ * + * @param name the name of the member to add + * @param value the value of the member to add + * @return the object itself, to enable method chaining + */ + public JsonObject set(String name, String value) { + set(name, Json.of(value)); + return this; + } + + /** + * Sets the value of the member with the specified name to the specified JSON value. If this + * object does not contain a member with this name, a new member is added at the end of the + * object. If this object contains multiple members with this name, only the last one is changed. + *

+ * This method should only be used to modify existing objects. To fill a new + * object with members, the method add(name, value) should be preferred which is much + * faster (as it does not need to search for existing members). + *

+ * + * @param name the name of the member to add + * @param value the value of the member to add, must not be null + * @return the object itself, to enable method chaining + */ + public JsonObject set(String name, JsonValue value) { + if (name == null) { + throw new NullPointerException("name is null"); + } + if (value == null) { + throw new NullPointerException("value is null"); + } + int index = indexOf(name); + if (index != -1) { + values.set(index, value); + } else { + table.add(name, names.size()); + names.add(name); + values.add(value); + } + return this; + } + + /** + * Removes a member with the specified name from this object. If this object contains multiple + * members with the given name, only the last one is removed. If this object does not contain a + * member with the specified name, the object is not modified. + * + * @param name the name of the member to remove + * @return the object itself, to enable method chaining + */ + public JsonObject remove(String name) { + Objects.requireNonNull(name); + int index = indexOf(name); + if (index != -1) { + table.remove(index); + names.remove(index); + values.remove(index); + } + return this; + } + + /** + * Copies all members of the specified object into this object. When the specified object contains + * members with names that also exist in this object, the existing values in this object will be + * replaced by the corresponding values in the specified object. + * + * @param object the object to merge + * @return the object itself, to enable method chaining + */ + public JsonObject merge(JsonObject object) { + Objects.requireNonNull(object); + for (JsonObjectMember member : object) { + this.set(member.name, member.value); + } + return this; + } + + /** + * Returns the value of the member with the specified name in this object. If this object contains + * multiple members with the given name, this method will return the last one. + * + * @param name the name of the member whose value is to be returned + * @return the value of the last member with the specified name, or null if this + * object does not contain a member with that name + */ + public JsonValue get(String name) { + Objects.requireNonNull(name); + int index = indexOf(name); + return index != -1 ? values.get(index) : null; + } + + /** + * Returns the int value of the member with the specified name in this object. If + * this object does not contain a member with this name, the given default value is returned. If + * this object contains multiple members with the given name, the last one will be picked. If this + * member's value does not represent a JSON number or if it cannot be interpreted as Java + * int, an exception is thrown. + * + * @param name the name of the member whose value is to be returned + * @param defaultValue the value to be returned if the requested member is missing + * @return the value of the last member with the specified name, or the given default value if + * this object does not contain a member with that name + */ + public int getInt(String name, int defaultValue) { + JsonValue value = get(name); + return value != null ? value.asInt() : defaultValue; + } + + /** + * Returns the long value of the member with the specified name in this object. If + * this object does not contain a member with this name, the given default value is returned. If + * this object contains multiple members with the given name, the last one will be picked. If this + * member's value does not represent a JSON number or if it cannot be interpreted as Java + * long, an exception is thrown. + * + * @param name the name of the member whose value is to be returned + * @param defaultValue the value to be returned if the requested member is missing + * @return the value of the last member with the specified name, or the given default value if + * this object does not contain a member with that name + */ + public long getLong(String name, long defaultValue) { + JsonValue value = get(name); + return value != null ? value.asLong() : defaultValue; + } + + /** + * Returns the float value of the member with the specified name in this object. If + * this object does not contain a member with this name, the given default value is returned. If + * this object contains multiple members with the given name, the last one will be picked. If this + * member's value does not represent a JSON number or if it cannot be interpreted as Java + * float, an exception is thrown. + * + * @param name the name of the member whose value is to be returned + * @param defaultValue the value to be returned if the requested member is missing + * @return the value of the last member with the specified name, or the given default value if + * this object does not contain a member with that name + */ + public float getFloat(String name, float defaultValue) { + JsonValue value = get(name); + return value != null ? value.asFloat() : defaultValue; + } + + /** + * Returns the double value of the member with the specified name in this object. If + * this object does not contain a member with this name, the given default value is returned. If + * this object contains multiple members with the given name, the last one will be picked. If this + * member's value does not represent a JSON number or if it cannot be interpreted as Java + * double, an exception is thrown. + * + * @param name the name of the member whose value is to be returned + * @param defaultValue the value to be returned if the requested member is missing + * @return the value of the last member with the specified name, or the given default value if + * this object does not contain a member with that name + */ + public double getDouble(String name, double defaultValue) { + JsonValue value = get(name); + return value != null ? value.asDouble() : defaultValue; + } + + /** + * Returns the boolean value of the member with the specified name in this object. If + * this object does not contain a member with this name, the given default value is returned. If + * this object contains multiple members with the given name, the last one will be picked. If this + * member's value does not represent a JSON true or false value, an + * exception is thrown. + * + * @param name the name of the member whose value is to be returned + * @param defaultValue the value to be returned if the requested member is missing + * @return the value of the last member with the specified name, or the given default value if + * this object does not contain a member with that name + */ + public boolean getBoolean(String name, boolean defaultValue) { + JsonValue value = get(name); + return value != null ? value.asBoolean() : defaultValue; + } + + /** + * Returns the String value of the member with the specified name in this object. If + * this object does not contain a member with this name, the given default value is returned. If + * this object contains multiple members with the given name, the last one is picked. If this + * member's value does not represent a JSON string, an exception is thrown. + * + * @param name the name of the member whose value is to be returned + * @param defaultValue the value to be returned if the requested member is missing + * @return the value of the last member with the specified name, or the given default value if + * this object does not contain a member with that name + */ + public String getString(String name, String defaultValue) { + JsonValue value = get(name); + return value != null ? value.asString() : defaultValue; + } + + /** + * Returns the number of members (name/value pairs) in this object. + * + * @return the number of members in this object + */ + public int size() { + return names.size(); + } + + /** + * Returns true if this object contains no members. + * + * @return true if this object contains no members + */ + public boolean isEmpty() { + return names.isEmpty(); + } + + /** + * Returns a list of the names in this object in document order. The returned list is backed by + * this object and will reflect subsequent changes. It cannot be used to modify this object. + * Attempts to modify the returned list will result in an exception. + * + * @return a list of the names in this object + */ + public List names() { + return Collections.unmodifiableList(names); + } + + /** + * Returns an iterator over the members of this object in document order. The returned iterator + * cannot be used to modify this object. + * + * @return an iterator over the members of this object + */ + @Override + public Iterator iterator() { + final Iterator namesIterator = names.iterator(); + final Iterator valuesIterator = values.iterator(); + return new Iterator() { + @Override + public boolean hasNext() { + return namesIterator.hasNext(); + } + + @Override + public JsonObjectMember next() { + String name = namesIterator.next(); + JsonValue value = valuesIterator.next(); + return new JsonObjectMember(name, value); + } + + @Override + public void remove() { + throw new UnsupportedOperationException(); + } + + }; + } + + @Override + public void write(JsonWriter writer) throws IOException { + writer.writeObjectOpen(); + Iterator namesIterator = names.iterator(); + Iterator valuesIterator = values.iterator(); + if (namesIterator.hasNext()) { + writer.writeMemberName(namesIterator.next()); + writer.writeMemberSeparator(); + valuesIterator.next().write(writer); + while (namesIterator.hasNext()) { + writer.writeObjectSeparator(); + writer.writeMemberName(namesIterator.next()); + writer.writeMemberSeparator(); + valuesIterator.next().write(writer); + } + } + writer.writeObjectClose(); + } + + @Override + public boolean isObject() { + return true; + } + + @Override + public JsonObject asObject() { + return this; + } + + @Override + public int hashCode() { + int result = 1; + result = 31 * result + names.hashCode(); + result = 31 * result + values.hashCode(); + return result; + } + + @Override + public boolean equals(Object obj) { + if (this == obj) { + return true; + } + if (obj == null) { + return false; + } + if (getClass() != obj.getClass()) { + return false; + } + JsonObject other = (JsonObject) obj; + return names.equals(other.names) && values.equals(other.values); + } + + public int indexOf(String name) { + int index = table.get(name); + if (index != -1 && name.equals(names.get(index))) { + return index; + } + return names.lastIndexOf(name); + } + + private void updateHashIndex() { + int size = names.size(); + for (int i = 0; i < size; i++) { + table.add(names.get(i), i); + } + } + +} diff --git a/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonObjectMember.java b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonObjectMember.java new file mode 100644 index 0000000..984f514 --- /dev/null +++ b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonObjectMember.java @@ -0,0 +1,69 @@ +package org.xbib.datastructures.json; + +/** + * Represents a member of a JSON object, a pair of a name and a value. + */ +public class JsonObjectMember { + + final String name; + + final JsonValue value; + + public JsonObjectMember(String name, JsonValue value) { + this.name = name; + this.value = value; + } + + /** + * Returns the name of this member. + * + * @return the name of this member, never null + */ + public String getName() { + return name; + } + + /** + * Returns the value of this member. + * + * @return the value of this member, never null + */ + public JsonValue getValue() { + return value; + } + + @Override + public int hashCode() { + int result = 1; + result = 31 * result + name.hashCode(); + result = 31 * result + value.hashCode(); + return result; + } + + /** + * Indicates whether a given object is "equal to" this JsonObject. An object is considered equal + * if it is also a JsonObject and both objects contain the same members in + * the same order. + *

+ * If two JsonObjects are equal, they will also produce the same JSON output. + *

+ * + * @param object the object to be compared with this JsonObject + * @return true if the specified object is equal to this JsonObject, false + * otherwise + */ + @Override + public boolean equals(Object object) { + if (this == object) { + return true; + } + if (object == null) { + return false; + } + if (getClass() != object.getClass()) { + return false; + } + JsonObjectMember other = (JsonObjectMember) object; + return name.equals(other.name) && value.equals(other.value); + } +} diff --git a/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonReader.java b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonReader.java new file mode 100755 index 0000000..c5186e6 --- /dev/null +++ b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonReader.java @@ -0,0 +1,428 @@ +package org.xbib.datastructures.json; + +import java.io.IOException; +import java.io.Reader; +import java.util.Objects; + +/** + * A streaming parser for JSON text. The parser reports all events to a given handler. + */ +public class JsonReader { + + private static final int MAX_NESTING_LEVEL = 256; + + private static final int DEFAULT_BUFFER_SIZE = 8192; + + private final Reader reader; + + private final JsonHandler handler; + + private char[] buffer; + + private int index; + + private int fill; + + private int current; + + private StringBuilder captureBuffer; + + private int captureStart; + + private int nestingLevel; + + /** + * Creates a new JsonParser with the given handler. The parser will report all parser events to + * this handler. + * @param reader the reader + * @param handler the handler to process parser events + */ + public JsonReader(Reader reader, JsonHandler handler) { + Objects.requireNonNull(handler); + this.handler = handler; + this.reader = reader; + } + + /** + * Reads the entire input from the given reader and parses it as JSON. The input must contain a + * valid JSON value, optionally padded with whitespace. + *

+ * Characters are read in chunks into a default-sized input buffer. Hence, wrapping a reader in an + * additional BufferedReader likely won't improve reading performance. + *

+ * + * @throws IOException if an I/O error occurs in the reader + * @throws JsonException if the input is not valid JSON + */ + public void parse() throws IOException { + parse(DEFAULT_BUFFER_SIZE); + } + + /** + * Reads the entire input from the given reader and parses it as JSON. The input must contain a + * valid JSON value, optionally padded with whitespace. + *

+ * Characters are read in chunks into an input buffer of the given size. Hence, wrapping a reader + * in an additional BufferedReader likely won't improve reading performance. + *

+ * + * @param buffersize the size of the input buffer in chars + * @throws IOException if an I/O error occurs in the reader + * @throws JsonException if the input is not valid JSON + */ + public void parse(int buffersize) throws IOException { + if (reader == null) { + throw new NullPointerException("reader is null"); + } + if (buffersize <= 0) { + throw new IllegalArgumentException("buffersize is zero or negative"); + } + buffer = new char[buffersize]; + index = 0; + fill = 0; + current = 0; + captureStart = -1; + read(); + skipWhiteSpace(); + readValue(); + skipWhiteSpace(); + if (!isEndOfText()) { + throw error("Unexpected character"); + } + } + + private void readValue() throws IOException { + switch (current) { + case 'n': + readNull(); + break; + case 't': + readTrue(); + break; + case 'f': + readFalse(); + break; + case '"': + readString(); + break; + case '[': + readArray(); + break; + case '{': + readObject(); + break; + case '-': + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + readNumber(); + break; + default: + throw expected("value"); + } + } + + private void readArray() throws IOException { + handler.startArray(); + JsonArray array = new JsonArray(); + read(); + if (++nestingLevel > MAX_NESTING_LEVEL) { + throw error("Nesting too deep"); + } + skipWhiteSpace(); + if (readChar(']')) { + nestingLevel--; + handler.endArray(array); + return; + } + do { + skipWhiteSpace(); + readValue(); + array.add(handler.getValue()); + skipWhiteSpace(); + } while (readChar(',')); + if (!readChar(']')) { + throw expected("',' or ']'"); + } + nestingLevel--; + handler.endArray(array); + } + + private void readObject() throws IOException { + handler.startObject(); + JsonObject object = new JsonObject(); + read(); + if (++nestingLevel > MAX_NESTING_LEVEL) { + throw error("Nesting too deep"); + } + skipWhiteSpace(); + if (readChar('}')) { + nestingLevel--; + handler.endObject(object); + return; + } + do { + skipWhiteSpace(); + String name = readName(); + handler.objectName(object, name); + skipWhiteSpace(); + if (!readChar(':')) { + throw expected("':'"); + } + skipWhiteSpace(); + readValue(); + handler.objectValue(object, name); + skipWhiteSpace(); + } while (readChar(',')); + if (!readChar('}')) { + throw expected("',' or '}'"); + } + nestingLevel--; + handler.endObject(object); + } + + private String readName() throws IOException { + if (current != '"') { + throw expected("name"); + } + return readStringInternal(); + } + + private void readNull() throws IOException { + read(); + readRequiredChar('u'); + readRequiredChar('l'); + readRequiredChar('l'); + handler.nullValue(); + } + + private void readTrue() throws IOException { + read(); + readRequiredChar('r'); + readRequiredChar('u'); + readRequiredChar('e'); + handler.booleanValue(true); + } + + private void readFalse() throws IOException { + read(); + readRequiredChar('a'); + readRequiredChar('l'); + readRequiredChar('s'); + readRequiredChar('e'); + handler.booleanValue(false); + } + + private void readRequiredChar(char ch) throws IOException { + if (!readChar(ch)) { + throw expected("'" + ch + "'"); + } + } + + private void readString() throws IOException { + handler.stringValue(readStringInternal()); + } + + private String readStringInternal() throws IOException { + read(); + startCapture(); + while (current != '"') { + if (current == '\\') { + pauseCapture(); + readEscape(); + startCapture(); + } else if (current < 0x20) { + throw expected("valid string character"); + } else { + read(); + } + } + String string = endCapture(); + read(); + return string; + } + + private void readEscape() throws IOException { + read(); + switch (current) { + case '"': + case '/': + case '\\': + captureBuffer.append((char) current); + break; + case 'b': + captureBuffer.append('\b'); + break; + case 'f': + captureBuffer.append('\f'); + break; + case 'n': + captureBuffer.append('\n'); + break; + case 'r': + captureBuffer.append('\r'); + break; + case 't': + captureBuffer.append('\t'); + break; + case 'u': + char[] hexChars = new char[4]; + for (int i = 0; i < 4; i++) { + read(); + if (!isHexDigit()) { + throw expected("hexadecimal digit"); + } + hexChars[i] = (char) current; + } + captureBuffer.append((char) Integer.parseInt(new String(hexChars), 16)); + break; + default: + throw expected("valid escape sequence"); + } + read(); + } + + private void readNumber() throws IOException { + startCapture(); + readChar('-'); + int firstDigit = current; + if (!readDigit()) { + throw expected("digit"); + } + if (firstDigit != '0') { + while (readDigit()) { + } + } + readFraction(); + readExponent(); + handler.numberValue(endCapture()); + } + + private boolean readFraction() throws IOException { + if (!readChar('.')) { + return false; + } + if (!readDigit()) { + throw expected("digit"); + } + while (readDigit()) { + } + return true; + } + + private boolean readExponent() throws IOException { + if (!readChar('e') && !readChar('E')) { + return false; + } + if (!readChar('+')) { + readChar('-'); + } + if (!readDigit()) { + throw expected("digit"); + } + while (readDigit()) { + } + return true; + } + + private boolean readChar(char ch) throws IOException { + if (current != ch) { + return false; + } + read(); + return true; + } + + private boolean readDigit() throws IOException { + if (!isDigit()) { + return false; + } + read(); + return true; + } + + private void skipWhiteSpace() throws IOException { + while (isWhiteSpace()) { + read(); + } + } + + private void read() throws IOException { + if (index == fill) { + if (captureStart != -1) { + captureBuffer.append(buffer, captureStart, fill - captureStart); + captureStart = 0; + } + fill = reader.read(buffer, 0, buffer.length); + index = 0; + if (fill == -1) { + current = -1; + index++; + return; + } + } + current = buffer[index++]; + } + + private void startCapture() { + if (captureBuffer == null) { + captureBuffer = new StringBuilder(); + } + captureStart = index - 1; + } + + private void pauseCapture() { + int end = current == -1 ? index : index - 1; + captureBuffer.append(buffer, captureStart, end - captureStart); + captureStart = -1; + } + + private String endCapture() { + int start = captureStart; + int end = index - 1; + captureStart = -1; + if (captureBuffer.length() > 0) { + captureBuffer.append(buffer, start, end - start); + String captured = captureBuffer.toString(); + captureBuffer.setLength(0); + return captured; + } + return new String(buffer, start, end - start); + } + + private JsonException expected(String expected) { + if (isEndOfText()) { + return error("Unexpected end of input"); + } + return error("Expected " + expected); + } + + private JsonException error(String message) { + return new JsonException(message); + } + + private boolean isWhiteSpace() { + return current == ' ' || current == '\t' || current == '\n' || current == '\r'; + } + + private boolean isDigit() { + return current >= '0' && current <= '9'; + } + + private boolean isHexDigit() { + return current >= '0' && current <= '9' + || current >= 'a' && current <= 'f' + || current >= 'A' && current <= 'F'; + } + + private boolean isEndOfText() { + return current == -1; + } +} diff --git a/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonString.java b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonString.java new file mode 100755 index 0000000..bc9b747 --- /dev/null +++ b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonString.java @@ -0,0 +1,40 @@ +package org.xbib.datastructures.json; + +import java.io.IOException; +import java.util.Objects; + +public class JsonString extends JsonValue { + + private final String string; + + public JsonString(String string) { + Objects.requireNonNull(string); + this.string = string; + } + + @Override + public void write(JsonWriter writer) throws IOException { + writer.writeString(string); + } + + @Override + public boolean isString() { + return true; + } + + @Override + public String asString() { + return string; + } + + @Override + public int hashCode() { + return string.hashCode(); + } + + @Override + public boolean equals(Object object) { + return this == object || object != null && getClass() == object.getClass() + && string.equals(((JsonString) object).string); + } +} diff --git a/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonValue.java b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonValue.java new file mode 100755 index 0000000..823ea84 --- /dev/null +++ b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonValue.java @@ -0,0 +1,277 @@ +package org.xbib.datastructures.json; + +import java.io.IOException; +import java.io.StringWriter; +import java.io.Writer; + +/** + * Represents a JSON value. This can be a JSON object, an array, + * a number, a string, or one of the literals + * true, false, and null. + *

+ * The literals true, false, and null are + * represented by the constants + * {@code JsonLiteral.NULL}, {@code JsonLiteral.FALSE}, and {@code JsonLiteral.NULL}. + *

+ *

+ * JSON objects and arrays are represented by the subtypes + * {@link JsonObject} and {@link JsonArray}. Instances of these types can be created using the + * public constructors of these classes. + *

+ *

+ * Instances that represent JSON numbers, strings and + * boolean values can be created using the static factory methods + * {@code JSON.parse(String)}, {@code valueOf(long)}, {@code valueOf(double)}, etc. + *

+ *

+ * In order to find out whether an instance of this class is of a certain type, the methods + * {@link #isObject()}, {@link #isArray()}, {@link #isString()}, {@link #isInt()} etc. can be + * used. + *

+ *

+ * If the type of a JSON value is known, the methods {@link #asObject()}, {@link #asArray()}, + * {@link #asString()}, {@link #asInt()}, etc. can be used to get this value directly in the + * appropriate target type. + *

+ */ +public abstract class JsonValue { + + /** + * Detects whether this value represents a JSON object. If this is the case, this value is an + * instance of {@link JsonObject}. + * + * @return true if this value is an instance of JsonObject + */ + public boolean isObject() { + return false; + } + + /** + * Detects whether this value represents a JSON array. If this is the case, this value is an + * instance of {@link JsonArray}. + * + * @return true if this value is an instance of JsonArray + */ + public boolean isArray() { + return false; + } + + /** + * Detects whether this value represents a JSON number that is an integer. + * + * @return true if this value represents a JSON number that is an integer + */ + public boolean isInt() { + return false; + } + + /** + * Detects whether this value represents a JSON number that is an long. + * + * @return true if this value represents a JSON number that is an long + */ + public boolean isLong() { + return false; + } + + /** + * Detects whether this value represents a JSON number that is an float. + * + * @return true if this value represents a JSON number that is an float + */ + public boolean isFloat() { + return false; + } + + /** + * Detects whether this value represents a JSON number that is an double. + * + * @return true if this value represents a JSON number that is an double + */ + public boolean isDouble() { + return false; + } + + /** + * Detects whether this value represents a JSON string. + * + * @return true if this value represents a JSON string + */ + public boolean isString() { + return false; + } + + /** + * Detects whether this value represents a boolean value. + * + * @return true if this value represents either the JSON literal true or + * false + */ + public boolean isBoolean() { + return false; + } + + /** + * Detects whether this value represents the JSON literal true. + * + * @return true if this value represents the JSON literal true + */ + public boolean isTrue() { + return false; + } + + /** + * Detects whether this value represents the JSON literal false. + * + * @return true if this value represents the JSON literal false + */ + public boolean isFalse() { + return false; + } + + /** + * Detects whether this value represents the JSON literal null. + * + * @return true if this value represents the JSON literal null + */ + public boolean isNull() { + return false; + } + + /** + * Returns this JSON value as {@link JsonObject}, assuming that this value represents a JSON + * object. If this is not the case, an exception is thrown. + * + * @return a JSONObject for this value + * @throws UnsupportedOperationException if this value is not a JSON object + */ + public JsonObject asObject() { + throw new UnsupportedOperationException("Not an object: " + toString()); + } + + /** + * Returns this JSON value as {@link JsonArray}, assuming that this value represents a JSON array. + * If this is not the case, an exception is thrown. + * + * @return a JSONArray for this value + * @throws UnsupportedOperationException if this value is not a JSON array + */ + public JsonArray asArray() { + throw new UnsupportedOperationException("Not an array: " + toString()); + } + + /** + * Returns this JSON value as an int value, assuming that this value represents a + * JSON number that can be interpreted as Java int. If this is not the case, an + * exception is thrown. + *

+ * To be interpreted as Java int, the JSON number must neither contain an exponent + * nor a fraction part. Moreover, the number must be in the Integer range. + *

+ * + * @return this value as int + * @throws UnsupportedOperationException if this value is not a JSON number + * @throws NumberFormatException if this JSON number can not be interpreted as int value + */ + public int asInt() { + throw new UnsupportedOperationException("Not a number: " + toString()); + } + + /** + * Returns this JSON value as a long value, assuming that this value represents a + * JSON number that can be interpreted as Java long. If this is not the case, an + * exception is thrown. + *

+ * To be interpreted as Java long, the JSON number must neither contain an exponent + * nor a fraction part. Moreover, the number must be in the Long range. + *

+ * + * @return this value as long + * @throws UnsupportedOperationException if this value is not a JSON number + * @throws NumberFormatException if this JSON number can not be interpreted as long value + */ + public long asLong() { + throw new UnsupportedOperationException(); + } + + /** + * Returns this JSON value as a float value, assuming that this value represents a + * JSON number. If this is not the case, an exception is thrown. + *

+ * If the JSON number is out of the Float range, {@link Float#POSITIVE_INFINITY} or + * {@link Float#NEGATIVE_INFINITY} is returned. + *

+ * + * @return this value as float + * @throws UnsupportedOperationException if this value is not a JSON number + */ + public float asFloat() { + throw new UnsupportedOperationException(); + } + + /** + * Returns this JSON value as a double value, assuming that this value represents a + * JSON number. If this is not the case, an exception is thrown. + *

+ * If the JSON number is out of the Double range, {@link Double#POSITIVE_INFINITY} or + * {@link Double#NEGATIVE_INFINITY} is returned. + *

+ * + * @return this value as double + * @throws UnsupportedOperationException if this value is not a JSON number + */ + public double asDouble() { + throw new UnsupportedOperationException(); + } + + /** + * Returns this JSON value as String, assuming that this value represents a JSON string. If this + * is not the case, an exception is thrown. + * + * @return the string represented by this value + * @throws UnsupportedOperationException if this value is not a JSON string + */ + public String asString() { + throw new UnsupportedOperationException(); + } + + /** + * Returns this JSON value as a boolean value, assuming that this value is either + * true or false. If this is not the case, an exception is thrown. + * + * @return this value as boolean + * @throws UnsupportedOperationException if this value is neither true or false + */ + public boolean asBoolean() { + throw new UnsupportedOperationException(); + } + + /** + * Returns the JSON string for this value in its minimal form, without any additional whitespace. + * + * @return a JSON string that represents this value + */ + @Override + public String toString() { + StringWriter writer = new StringWriter(); + toString(writer, JsonWriterConfig.minimal()); + return writer.toString(); + } + + /** + * Returns the JSON string for this value using the given formatting. + * + * @param writer the writer + * @param config a configuration that controls the formatting or null for the minimal form + */ + public void toString(Writer writer, JsonWriterConfig config) { + try { + write(config.createWriter(writer)); + } catch (IOException exception) { + throw new JsonException(exception); + } + } + + public abstract void write(JsonWriter writer) throws IOException; + +} diff --git a/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonWriter.java b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonWriter.java new file mode 100755 index 0000000..7d19d60 --- /dev/null +++ b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonWriter.java @@ -0,0 +1,118 @@ +package org.xbib.datastructures.json; + +import java.io.IOException; +import java.io.Writer; + +public class JsonWriter { + + private static final int CONTROL_CHARACTERS_END = 0x001f; + + private static final char[] QUOT_CHARS = {'\\', '"'}; + private static final char[] BS_CHARS = {'\\', '\\'}; + private static final char[] LF_CHARS = {'\\', 'n'}; + private static final char[] CR_CHARS = {'\\', 'r'}; + private static final char[] TAB_CHARS = {'\\', 't'}; + private static final char[] UNICODE_2028_CHARS = {'\\', 'u', '2', '0', '2', '8'}; + private static final char[] UNICODE_2029_CHARS = {'\\', 'u', '2', '0', '2', '9'}; + private static final char[] HEX_DIGITS = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', + 'a', 'b', 'c', 'd', 'e', 'f'}; + + protected final Writer writer; + + public JsonWriter(Writer writer) { + this.writer = writer; + } + + private static char[] getReplacementChars(char ch) { + if (ch > '\\') { + if (ch < '\u2028' || ch > '\u2029') { + return null; + } + return ch == '\u2028' ? UNICODE_2028_CHARS : UNICODE_2029_CHARS; + } + if (ch == '\\') { + return BS_CHARS; + } + if (ch > '"') { + return null; + } + if (ch == '"') { + return QUOT_CHARS; + } + if (ch > CONTROL_CHARACTERS_END) { + return null; + } + if (ch == '\n') { + return LF_CHARS; + } + if (ch == '\r') { + return CR_CHARS; + } + if (ch == '\t') { + return TAB_CHARS; + } + return new char[]{'\\', 'u', '0', '0', HEX_DIGITS[ch >> 4 & 0x000f], HEX_DIGITS[ch & 0x000f]}; + } + + public void writeLiteral(String value) throws IOException { + writer.write(value); + } + + public void writeNumber(String string) throws IOException { + writer.write(string); + } + + public void writeString(String string) throws IOException { + writer.write('"'); + writeJsonString(string); + writer.write('"'); + } + + public void writeArrayOpen() throws IOException { + writer.write('['); + } + + public void writeArrayClose() throws IOException { + writer.write(']'); + } + + public void writeArraySeparator() throws IOException { + writer.write(','); + } + + public void writeObjectOpen() throws IOException { + writer.write('{'); + } + + public void writeObjectClose() throws IOException { + writer.write('}'); + } + + public void writeMemberName(String name) throws IOException { + writer.write('"'); + writeJsonString(name); + writer.write('"'); + } + + public void writeMemberSeparator() throws IOException { + writer.write(':'); + } + + public void writeObjectSeparator() throws IOException { + writer.write(','); + } + + public void writeJsonString(String string) throws IOException { + int length = string.length(); + int start = 0; + for (int index = 0; index < length; index++) { + char[] replacement = getReplacementChars(string.charAt(index)); + if (replacement != null) { + writer.write(string, start, index - start); + writer.write(replacement); + start = index + 1; + } + } + writer.write(string, start, length - start); + } +} diff --git a/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonWriterConfig.java b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonWriterConfig.java new file mode 100755 index 0000000..23c1a11 --- /dev/null +++ b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/JsonWriterConfig.java @@ -0,0 +1,28 @@ +package org.xbib.datastructures.json; + +import java.io.Writer; + +/** + * Controls the formatting of the JSON output. Use one of the available constants. + */ +@FunctionalInterface +public interface JsonWriterConfig { + + JsonWriter createWriter(Writer writer); + + /** + * Write JSON in its minimal form, without any additional whitespace. This is the default. + */ + static JsonWriterConfig minimal() { + return JsonWriter::new; + } + + /** + * Write JSON in pretty-print, with each value on a separate line and an indentation of two + * spaces. + */ + static JsonWriterConfig prettyPrint(int n) { + return new PrettyPrint(n); + } + +} diff --git a/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/PrettyPrint.java b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/PrettyPrint.java new file mode 100644 index 0000000..1794e23 --- /dev/null +++ b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/PrettyPrint.java @@ -0,0 +1,45 @@ +package org.xbib.datastructures.json; + +import java.io.Writer; +import java.util.Arrays; + +/** + * Enables human readable JSON output by inserting whitespace between values.after commas and + * colons. Example: + * + *
+ * jsonValue.writeTo(writer, WriterConfig.prettyPrint());
+ * 
+ */ +public class PrettyPrint implements JsonWriterConfig { + + private final char[] indentChars; + + public PrettyPrint(char[] indentChars) { + this.indentChars = indentChars; + } + + /** + * Print every value on a separate line. Use the given number of spaces for indentation. + * + * @param number the number of spaces to use + */ + public PrettyPrint(int number) { + this(fillChars(number)); + } + + private static char[] fillChars(int number) { + if (number < 0) { + throw new IllegalArgumentException("number is negative"); + } + char[] chars = new char[number]; + Arrays.fill(chars, ' '); + return chars; + } + + @Override + public JsonWriter createWriter(Writer writer) { + return new PrettyPrintWriter(writer, indentChars); + } + +} diff --git a/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/PrettyPrintWriter.java b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/PrettyPrintWriter.java new file mode 100644 index 0000000..af9af94 --- /dev/null +++ b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/PrettyPrintWriter.java @@ -0,0 +1,77 @@ +package org.xbib.datastructures.json; + +import java.io.IOException; +import java.io.Writer; + +public class PrettyPrintWriter extends JsonWriter { + + private final char[] indentChars; + private int indent; + + public PrettyPrintWriter(Writer writer, char[] indentChars) { + super(writer); + this.indentChars = indentChars; + } + + @Override + public void writeArrayOpen() throws IOException { + indent++; + writer.write('['); + writeNewLine(); + } + + @Override + public void writeArrayClose() throws IOException { + indent--; + writeNewLine(); + writer.write(']'); + } + + @Override + public void writeArraySeparator() throws IOException { + writer.write(','); + if (!writeNewLine()) { + writer.write(' '); + } + } + + @Override + public void writeObjectOpen() throws IOException { + indent++; + writer.write('{'); + writeNewLine(); + } + + @Override + public void writeObjectClose() throws IOException { + indent--; + writeNewLine(); + writer.write('}'); + } + + @Override + public void writeMemberSeparator() throws IOException { + writer.write(':'); + writer.write(' '); + } + + @Override + public void writeObjectSeparator() throws IOException { + writer.write(','); + if (!writeNewLine()) { + writer.write(' '); + } + } + + private boolean writeNewLine() throws IOException { + if (indentChars == null) { + return false; + } + writer.write('\n'); + for (int i = 0; i < indent; i++) { + writer.write(indentChars); + } + return true; + } + +} diff --git a/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/package-info.java b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/package-info.java new file mode 100644 index 0000000..da481b1 --- /dev/null +++ b/datastructures-json-minimal/src/main/java/org/xbib/datastructures/json/package-info.java @@ -0,0 +1,4 @@ +/** + * Classes for JSON parsing and generating. + */ +package org.xbib.datastructures.json; diff --git a/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonArrayTest.java b/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonArrayTest.java new file mode 100755 index 0000000..4053ca3 --- /dev/null +++ b/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonArrayTest.java @@ -0,0 +1,509 @@ +package org.xbib.datastructures.json.test; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertNotEquals; +import static org.junit.jupiter.api.Assertions.assertSame; +import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.mockito.Mockito.inOrder; +import static org.mockito.Mockito.mock; + +import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.mockito.InOrder; +import org.xbib.datastructures.json.Json; +import org.xbib.datastructures.json.JsonArray; +import org.xbib.datastructures.json.JsonLiteral; +import org.xbib.datastructures.json.JsonObject; +import org.xbib.datastructures.json.JsonValue; +import org.xbib.datastructures.json.JsonWriter; + +import java.io.IOException; +import java.util.ConcurrentModificationException; +import java.util.Iterator; +import java.util.List; + +public class JsonArrayTest { + + private JsonArray array; + + private static JsonArray array(String... values) { + JsonArray array = new JsonArray(); + for (String value : values) { + array.add(value); + } + return array; + } + + @BeforeEach + public void setUp() { + array = new JsonArray(); + } + + @Test + public void copyConstructorfailsWithNull() { + Assertions.assertThrows(NullPointerException.class, () -> new JsonArray(null)); + } + + @Test + public void copyConstructorhasSameValues() { + array.add(23); + JsonArray copy = new JsonArray(array); + assertEquals(array.values(), copy.values()); + } + + @Test + public void copyConstructorworksOnSafeCopy() { + JsonArray copy = new JsonArray(array); + array.add(23); + assertTrue(copy.isEmpty()); + } + + @Test + public void isEmptyisTrueAfterCreation() { + assertTrue(array.isEmpty()); + } + + @Test + public void isEmptyisFalseAfterAdd() { + array.add(true); + assertFalse(array.isEmpty()); + } + + @Test + public void sizeisZeroAfterCreation() { + assertEquals(0, array.size()); + } + + @Test + public void sizeisOneAfterAdd() { + array.add(true); + assertEquals(1, array.size()); + } + + @Test + public void iteratorisEmptyAfterCreation() { + assertFalse(array.iterator().hasNext()); + } + + @Test + public void iteratorhasNextAfterAdd() { + array.add(true); + Iterator iterator = array.iterator(); + assertTrue(iterator.hasNext()); + assertEquals(JsonLiteral.TRUE, iterator.next()); + assertFalse(iterator.hasNext()); + } + + @Test + public void iteratordoesNotAllowModification() { + Assertions.assertThrows(UnsupportedOperationException.class, () -> { + array.add(23); + Iterator iterator = array.iterator(); + iterator.next(); + iterator.remove(); + }); + } + + @Test + public void iteratordetectsConcurrentModification() { + Assertions.assertThrows(ConcurrentModificationException.class, () -> { + Iterator iterator = array.iterator(); + array.add(23); + iterator.next(); + }); + } + + @Test + public void valuesisEmptyAfterCreation() { + assertTrue(array.values().isEmpty()); + } + + @Test + public void valuescontainsValueAfterAdd() { + array.add(true); + assertEquals(1, array.values().size()); + assertEquals(JsonLiteral.TRUE, array.values().get(0)); + } + + @Test + public void valuesreflectsChanges() { + List values = array.values(); + array.add(true); + assertEquals(array.values(), values); + } + + @Test + public void getreturnsValue() { + array.add(23); + JsonValue value = array.get(0); + assertEquals(Json.of(23), value); + } + + @Test + public void getfailsWithInvalidIndex() { + Assertions.assertThrows(IndexOutOfBoundsException.class, () -> array.get(0)); + } + + @Test + public void addint() { + array.add(23); + assertEquals("[23]", array.toString()); + } + + @Test + public void addintenablesChaining() { + assertSame(array, array.add(23)); + } + + @Test + public void addlong() { + array.add(23L); + assertEquals("[23]", array.toString()); + } + + @Test + public void addlongenablesChaining() { + assertSame(array, array.add(23L)); + } + + @Test + public void addfloat() { + array.add(3.14f); + assertEquals("[3.14]", array.toString()); + } + + @Test + public void addfloatenablesChaining() { + assertSame(array, array.add(3.14f)); + } + + @Test + public void adddouble() { + array.add(3.14d); + assertEquals("[3.14]", array.toString()); + } + + @Test + public void adddoubleenablesChaining() { + assertSame(array, array.add(3.14d)); + } + + @Test + public void addboolean() { + array.add(true); + assertEquals("[true]", array.toString()); + } + + @Test + public void addbooleanenablesChaining() { + assertSame(array, array.add(true)); + } + + @Test + public void addstring() { + array.add("foo"); + assertEquals("[\"foo\"]", array.toString()); + } + + @Test + public void addstringenablesChaining() { + assertSame(array, array.add("foo")); + } + + @Test + public void addstringtoleratesNull() { + array.add((String) null); + assertEquals("[null]", array.toString()); + } + + @Test + public void addjsonNull() { + array.add(JsonLiteral.NULL); + assertEquals("[null]", array.toString()); + } + + @Test + public void addjsonArray() { + array.add(new JsonArray()); + assertEquals("[[]]", array.toString()); + } + + @Test + public void addjsonObject() { + array.add(new JsonObject()); + assertEquals("[{}]", array.toString()); + } + + @Test + public void addjsonenablesChaining() { + assertSame(array, array.add(JsonLiteral.NULL)); + } + + @Test + public void addjsonfailsWithNull() { + Assertions.assertThrows(NullPointerException.class, () -> array.add((JsonValue) null)); + } + + @Test + public void addjsonnestedArray() { + JsonArray innerArray = new JsonArray(); + innerArray.add(23); + array.add(innerArray); + assertEquals("[[23]]", array.toString()); + } + + @Test + public void addjsonnestedArraymodifiedAfterAdd() { + JsonArray innerArray = new JsonArray(); + array.add(innerArray); + innerArray.add(23); + assertEquals("[[23]]", array.toString()); + } + + @Test + public void addjsonnestedObject() { + JsonObject innerObject = new JsonObject(); + innerObject.add("a", 23); + array.add(innerObject); + assertEquals("[{\"a\":23}]", array.toString()); + } + + @Test + public void addjsonnestedObjectmodifiedAfterAdd() { + JsonObject innerObject = new JsonObject(); + array.add(innerObject); + innerObject.add("a", 23); + assertEquals("[{\"a\":23}]", array.toString()); + } + + @Test + public void setint() { + array.add(false); + array.set(0, 23); + assertEquals("[23]", array.toString()); + } + + @Test + public void setintenablesChaining() { + array.add(false); + assertSame(array, array.set(0, 23)); + } + + @Test + public void setlong() { + array.add(false); + array.set(0, 23L); + assertEquals("[23]", array.toString()); + } + + @Test + public void setlongenablesChaining() { + array.add(false); + assertSame(array, array.set(0, 23L)); + } + + @Test + public void setfloat() { + array.add(false); + array.set(0, 3.14f); + assertEquals("[3.14]", array.toString()); + } + + @Test + public void setfloatenablesChaining() { + array.add(false); + assertSame(array, array.set(0, 3.14f)); + } + + @Test + public void setdouble() { + array.add(false); + array.set(0, 3.14d); + assertEquals("[3.14]", array.toString()); + } + + @Test + public void setdoubleenablesChaining() { + array.add(false); + assertSame(array, array.set(0, 3.14d)); + } + + @Test + public void setboolean() { + array.add(false); + array.set(0, true); + assertEquals("[true]", array.toString()); + } + + @Test + public void setbooleanenablesChaining() { + array.add(false); + assertSame(array, array.set(0, true)); + } + + @Test + public void setstring() { + array.add(false); + array.set(0, "foo"); + assertEquals("[\"foo\"]", array.toString()); + } + + @Test + public void setstringenablesChaining() { + array.add(false); + assertSame(array, array.set(0, "foo")); + } + + @Test + public void setjsonNull() { + array.add(false); + array.set(0, JsonLiteral.NULL); + assertEquals("[null]", array.toString()); + } + + @Test + public void setjsonArray() { + array.add(false); + array.set(0, new JsonArray()); + assertEquals("[[]]", array.toString()); + } + + @Test + public void setjsonObject() { + array.add(false); + array.set(0, new JsonObject()); + assertEquals("[{}]", array.toString()); + } + + @Test + public void setjsonfailsWithNull() { + array.add(false); + Assertions.assertThrows(NullPointerException.class, () -> array.set(0, (JsonValue) null)); + } + + @Test + public void setjsonfailsWithInvalidIndex() { + Assertions.assertThrows(IndexOutOfBoundsException.class, () -> array.set(0, JsonLiteral.NULL)); + } + + @Test + public void setjsonenablesChaining() { + array.add(false); + assertSame(array, array.set(0, JsonLiteral.NULL)); + } + + @Test + public void setjsonreplacesDifferntArrayElements() { + array.add(3).add(6).add(9); + array.set(1, 4).set(2, 5); + assertEquals("[3,4,5]", array.toString()); + } + + @Test + public void removefailsWithInvalidIndex() { + Assertions.assertThrows(IndexOutOfBoundsException.class, () -> array.remove(0)); + } + + @Test + public void removeremovesElement() { + array.add(23); + array.remove(0); + assertEquals("[]", array.toString()); + } + + @Test + public void removekeepsOtherElements() { + array.add("a").add("b").add("c"); + array.remove(1); + assertEquals("[\"a\",\"c\"]", array.toString()); + } + + @Test + public void writeempty() throws IOException { + JsonWriter writer = mock(JsonWriter.class); + array.write(writer); + InOrder inOrder = inOrder(writer); + inOrder.verify(writer).writeArrayOpen(); + inOrder.verify(writer).writeArrayClose(); + inOrder.verifyNoMoreInteractions(); + } + + @Test + public void writewithSingleValue() throws IOException { + JsonWriter writer = mock(JsonWriter.class); + array.add(23); + array.write(writer); + InOrder inOrder = inOrder(writer); + inOrder.verify(writer).writeArrayOpen(); + inOrder.verify(writer).writeNumber("23"); + inOrder.verify(writer).writeArrayClose(); + inOrder.verifyNoMoreInteractions(); + } + + @Test + public void writewithMultipleValues() throws IOException { + JsonWriter writer = mock(JsonWriter.class); + array.add(23).add("foo").add(false); + array.write(writer); + InOrder inOrder = inOrder(writer); + inOrder.verify(writer).writeArrayOpen(); + inOrder.verify(writer).writeNumber("23"); + inOrder.verify(writer).writeArraySeparator(); + inOrder.verify(writer).writeString("foo"); + inOrder.verify(writer).writeArraySeparator(); + inOrder.verify(writer).writeLiteral("false"); + inOrder.verify(writer).writeArrayClose(); + inOrder.verifyNoMoreInteractions(); + } + + @Test + public void isArray() { + assertTrue(array.isArray()); + } + + @Test + public void asArray() { + assertSame(array, array.asArray()); + } + + @Test + public void equalstrueForSameInstance() { + assertEquals(array, array); + } + + @Test + public void equalstrueForEqualArrays() { + assertEquals(array(), array()); + assertEquals(array("foo", "bar"), array("foo", "bar")); + } + + @Test + public void equalsfalseForDifferentArrays() { + assertNotEquals(array("foo", "bar", "baz"), array("foo", "bar")); + assertNotEquals(array("bar", "foo"), array("foo", "bar")); + } + + @Test + public void equalsfalseForNull() { + assertNotEquals(array, null); + } + + @Test + public void equalsfalseForSubclass() { + assertNotEquals(new JsonArray(array) {}, array); + } + + @Test + public void hashCodeequalsForEqualArrays() { + assertEquals(array().hashCode(), array().hashCode()); + assertEquals(array("foo").hashCode(), array("foo").hashCode()); + } + + @Test + public void hashCodediffersForDifferentArrays() { + assertNotEquals(array("bar").hashCode(), array().hashCode()); + assertNotEquals(array("bar").hashCode(), array("foo").hashCode()); + } +} diff --git a/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonLiteralTest.java b/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonLiteralTest.java new file mode 100755 index 0000000..150e0a6 --- /dev/null +++ b/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonLiteralTest.java @@ -0,0 +1,114 @@ +package org.xbib.datastructures.json.test; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertNotEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.verify; +import static org.mockito.Mockito.verifyNoMoreInteractions; +import static org.xbib.datastructures.json.JsonLiteral.FALSE; +import static org.xbib.datastructures.json.JsonLiteral.NULL; +import static org.xbib.datastructures.json.JsonLiteral.TRUE; + +import org.junit.jupiter.api.Test; +import org.xbib.datastructures.json.Json; +import org.xbib.datastructures.json.JsonWriter; +import java.io.IOException; + +public class JsonLiteralTest { + + @Test + public void isNull() { + assertTrue(NULL.isNull()); + assertFalse(TRUE.isNull()); + assertFalse(FALSE.isNull()); + } + + @Test + public void isTrue() { + assertTrue(TRUE.isTrue()); + assertFalse(NULL.isTrue()); + assertFalse(FALSE.isTrue()); + } + + @Test + public void isFalse() { + assertTrue(FALSE.isFalse()); + assertFalse(NULL.isFalse()); + assertFalse(TRUE.isFalse()); + } + + @Test + public void isBoolean() { + assertTrue(TRUE.isBoolean()); + assertTrue(FALSE.isBoolean()); + assertFalse(NULL.isBoolean()); + } + + @Test + public void nullwrite() throws IOException { + JsonWriter writer = mock(JsonWriter.class); + NULL.write(writer); + verify(writer).writeLiteral("null"); + verifyNoMoreInteractions(writer); + } + + @Test + public void truewrite() throws IOException { + JsonWriter writer = mock(JsonWriter.class); + TRUE.write(writer); + verify(writer).writeLiteral("true"); + verifyNoMoreInteractions(writer); + } + + @Test + public void falsewrite() throws IOException { + JsonWriter writer = mock(JsonWriter.class); + FALSE.write(writer); + verify(writer).writeLiteral("false"); + verifyNoMoreInteractions(writer); + } + + @Test + public void nulltoString() { + assertEquals("null", NULL.toString()); + } + + @Test + public void truetoString() { + assertEquals("true", TRUE.toString()); + } + + @Test + public void falsetoString() { + assertEquals("false", FALSE.toString()); + } + + @Test + public void nullequals() { + assertEquals(NULL, NULL); + assertNotEquals(NULL, null); + assertNotEquals(TRUE, NULL); + assertNotEquals(FALSE, NULL); + assertNotEquals(Json.of("null"), NULL); + } + + @Test + public void trueequals() { + assertEquals(TRUE, TRUE); + assertNotEquals(TRUE, null); + assertNotEquals(FALSE, TRUE); + assertNotEquals(Boolean.TRUE, TRUE); + assertNotEquals(Json.of("true"), NULL); + } + + @Test + public void falseequals() { + assertEquals(FALSE, FALSE); + assertNotEquals(FALSE, null); + assertNotEquals(TRUE, FALSE); + assertNotEquals(Boolean.FALSE, FALSE); + assertNotEquals(Json.of("false"), NULL); + } +} diff --git a/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonMapperTest.java b/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonMapperTest.java new file mode 100644 index 0000000..2ca27c0 --- /dev/null +++ b/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonMapperTest.java @@ -0,0 +1,59 @@ +package org.xbib.datastructures.json.test; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import org.junit.jupiter.api.Test; +import org.xbib.datastructures.json.Json; +import org.xbib.datastructures.json.JsonMapper; +import org.xbib.datastructures.json.JsonValue; +import java.io.IOException; + +public class JsonMapperTest { + + @Test + public void mapperMapTest() throws IOException { + String json = "{\"Hello\":\"World\"}"; + JsonValue jsonValue = Json.parse(json); + Object object = JsonMapper.asObject(jsonValue); + assertEquals("{Hello=World}", object.toString()); + } + + @Test + public void mapperNumericMapTest() throws IOException { + String json = "{\"Hello\":123}"; + JsonValue jsonValue = Json.parse(json); + Object object = JsonMapper.asObject(jsonValue); + assertEquals("{Hello=123}", object.toString()); + } + + @Test + public void mapperArrayTest() throws IOException { + String json = "[\"Hello\",\"World\"]"; + JsonValue jsonValue = Json.parse(json); + Object object = JsonMapper.asObject(jsonValue); + assertEquals("[Hello, World]", object.toString()); + } + + @Test + public void mapperBooleanAndNullArrayTest() throws IOException { + String json = "[true, false, null]"; + JsonValue jsonValue = Json.parse(json); + Object object = JsonMapper.asObject(jsonValue); + assertEquals("[true, false, null]", object.toString()); + } + + @Test + public void mapperFloatArrayTest() throws IOException { + String json = "[1.23, 4.56]"; + JsonValue jsonValue = Json.parse(json); + Object object = JsonMapper.asObject(jsonValue); + assertEquals("[1.23, 4.56]", object.toString()); + } + + @Test + public void mapperIntArrayTest() throws IOException { + String json = "[123, 456]"; + JsonValue jsonValue = Json.parse(json); + Object object = JsonMapper.asObject(jsonValue); + assertEquals("[123, 456]", object.toString()); + } +} diff --git a/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonNumberTest.java b/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonNumberTest.java new file mode 100755 index 0000000..13e0ed2 --- /dev/null +++ b/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonNumberTest.java @@ -0,0 +1,147 @@ +package org.xbib.datastructures.json.test; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNotEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; +import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.xbib.datastructures.json.JsonNumber; +import org.xbib.datastructures.json.JsonWriter; +import java.io.IOException; +import java.io.StringWriter; + +public class JsonNumberTest { + + private StringWriter output; + + private JsonWriter writer; + + @BeforeEach + public void setUp() { + output = new StringWriter(); + writer = new JsonWriter(output); + } + + @Test + public void constructorfailsWithNull() { + Assertions.assertThrows(NullPointerException.class, () -> new JsonNumber(null)); + } + + @Test + public void write() throws IOException { + new JsonNumber("23").write(writer); + assertEquals("23", output.toString()); + } + + @Test + public void toStringreturnsInputString() { + assertEquals("foo", new JsonNumber("foo").toString()); + } + + @Test + public void isInt() { + assertTrue(new JsonNumber("23").isInt()); + } + + @Test + public void asInt() { + assertEquals(23, new JsonNumber("23").asInt()); + } + + @Test + public void asIntfailsWithExceedingValues() { + Assertions.assertThrows(NumberFormatException.class, () -> new JsonNumber("10000000000").asInt()); + } + + @Test + public void asIntfailsWithExponent() { + Assertions.assertThrows(NumberFormatException.class, () -> new JsonNumber("1e5").asInt()); + } + + @Test + public void asIntfailsWithFractional() { + Assertions.assertThrows(NumberFormatException.class, () -> new JsonNumber("23.5").asInt()); + } + + @Test + public void asLong() { + assertEquals(23L, new JsonNumber("23").asLong()); + } + + @Test + public void asLongfailsWithExceedingValues() { + Assertions.assertThrows(NumberFormatException.class, () -> new JsonNumber("10000000000000000000").asLong()); + } + + @Test + public void asLongfailsWithExponent() { + Assertions.assertThrows(NumberFormatException.class, () -> new JsonNumber("1e5").asLong()); + } + + @Test + public void asLongfailsWithFractional() { + Assertions.assertThrows(NumberFormatException.class, () -> new JsonNumber("23.5").asLong()); + } + + @Test + public void asFloat() { + assertEquals(23.05f, new JsonNumber("23.05").asFloat(), 0); + } + + @Test + public void asFloatreturnsInfinityForExceedingValues() { + assertEquals(Float.POSITIVE_INFINITY, new JsonNumber("1e50").asFloat(), 0); + assertEquals(Float.NEGATIVE_INFINITY, new JsonNumber("-1e50").asFloat(), 0); + } + + @Test + public void asDouble() { + double result = new JsonNumber("23.05").asDouble(); + assertEquals(23.05, result, 0); + } + + @Test + public void asDoublereturnsInfinityForExceedingValues() { + assertEquals(Double.POSITIVE_INFINITY, new JsonNumber("1e500").asDouble(), 0); + assertEquals(Double.NEGATIVE_INFINITY, new JsonNumber("-1e500").asDouble(), 0); + } + + @Test + public void equalstrueForSameInstance() { + JsonNumber number = new JsonNumber("23"); + assertEquals(number, number); + } + + @Test + public void equalstrueForEqualNumberStrings() { + assertEquals(new JsonNumber("23"), new JsonNumber("23")); + } + + @Test + public void equalsfalseForDifferentNumberStrings() { + assertNotEquals(new JsonNumber("42"), new JsonNumber("23")); + assertNotEquals(new JsonNumber("1e5"), new JsonNumber("1e+5")); + } + + @Test + public void equalsfalseForNull() { + assertNotEquals(new JsonNumber("23"), null); + } + + @Test + public void equalsfalseForSubclass() { + assertNotEquals(new JsonNumber("23") { + }, new JsonNumber("23")); + } + + @Test + public void hashCodeequalsForEqualStrings() { + assertEquals(new JsonNumber("23").hashCode(), new JsonNumber("23").hashCode()); + } + + @Test + public void hashCodediffersForDifferentStrings() { + assertNotEquals(new JsonNumber("42").hashCode(), new JsonNumber("23").hashCode()); + } +} diff --git a/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonObjectTest.java b/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonObjectTest.java new file mode 100755 index 0000000..37ce2dc --- /dev/null +++ b/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonObjectTest.java @@ -0,0 +1,904 @@ +package org.xbib.datastructures.json.test; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertNotEquals; +import static org.junit.jupiter.api.Assertions.assertNotNull; +import static org.junit.jupiter.api.Assertions.assertNull; +import static org.junit.jupiter.api.Assertions.assertSame; +import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.mockito.Mockito.inOrder; +import static org.mockito.Mockito.mock; + +import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.mockito.InOrder; +import org.xbib.datastructures.json.HashIndexTable; +import org.xbib.datastructures.json.Json; +import org.xbib.datastructures.json.JsonArray; +import org.xbib.datastructures.json.JsonLiteral; +import org.xbib.datastructures.json.JsonObject; +import org.xbib.datastructures.json.JsonObjectMember; +import org.xbib.datastructures.json.JsonValue; +import org.xbib.datastructures.json.JsonWriter; + +import java.io.IOException; +import java.util.ConcurrentModificationException; +import java.util.Iterator; +import java.util.List; +import java.util.NoSuchElementException; + +public class JsonObjectTest { + + private JsonObject object; + + private static JsonObject object(String... namesAndValues) { + JsonObject object = new JsonObject(); + for (int i = 0; i < namesAndValues.length; i += 2) { + object.add(namesAndValues[i], namesAndValues[i + 1]); + } + return object; + } + + @BeforeEach + public void setUp() { + object = new JsonObject(); + } + + @Test + public void copyConstructorfailsWithNull() { + Assertions.assertThrows(NullPointerException.class, () -> new JsonObject(null)); + } + + @Test + public void copyConstructorhasSameValues() { + object.add("foo", 23); + JsonObject copy = new JsonObject(object); + assertEquals(object.names(), copy.names()); + assertSame(object.get("foo"), copy.get("foo")); + } + + @Test + public void copyConstructorworksOnSafeCopy() { + JsonObject copy = new JsonObject(object); + object.add("foo", 23); + assertTrue(copy.isEmpty()); + } + + @Test + public void isEmptytrueAfterCreation() { + assertTrue(object.isEmpty()); + } + + @Test + public void isEmptyfalseAfterAdd() { + object.add("a", true); + assertFalse(object.isEmpty()); + } + + @Test + public void sizezeroAfterCreation() { + assertEquals(0, object.size()); + } + + @Test + public void sizeoneAfterAdd() { + object.add("a", true); + + assertEquals(1, object.size()); + } + + @Test + public void keyRepetitionallowsMultipleEntries() { + object.add("a", true); + object.add("a", "value"); + + assertEquals(2, object.size()); + } + + @Test + public void keyRepetitiongetsLastEntry() { + object.add("a", true); + object.add("a", "value"); + + assertEquals("value", object.getString("a", "missing")); + } + + @Test + public void keyRepetitionequalityConsidersRepetitions() { + object.add("a", true); + object.add("a", "value"); + JsonObject onlyFirstProperty = new JsonObject(); + onlyFirstProperty.add("a", true); + assertNotEquals(onlyFirstProperty, object); + JsonObject bothProperties = new JsonObject(); + bothProperties.add("a", true); + bothProperties.add("a", "value"); + assertEquals(bothProperties, object); + } + + @Test + public void namesemptyAfterCreation() { + assertTrue(object.names().isEmpty()); + } + + @Test + public void namescontainsNameAfterAdd() { + object.add("foo", true); + List names = object.names(); + assertEquals(1, names.size()); + assertEquals("foo", names.get(0)); + } + + @Test + public void namesreflectsChanges() { + List names = object.names(); + object.add("foo", true); + assertEquals(1, names.size()); + assertEquals("foo", names.get(0)); + } + + @Test + public void namespreventsModification() { + Assertions.assertThrows(UnsupportedOperationException.class, () -> { + List names = object.names(); + names.add("foo"); + }); + } + + @Test + public void iteratorisEmptyAfterCreation() { + assertFalse(object.iterator().hasNext()); + } + + @Test + public void iteratorhasNextAfterAdd() { + object.add("a", true); + Iterator iterator = object.iterator(); + assertTrue(iterator.hasNext()); + } + + @Test + public void iteratornextReturnsActualValue() { + object.add("a", true); + Iterator iterator = object.iterator(); + assertEquals(new JsonObjectMember("a", JsonLiteral.TRUE), iterator.next()); + } + + @Test + public void iteratornextProgressesToNextValue() { + object.add("a", true); + object.add("b", false); + Iterator iterator = object.iterator(); + iterator.next(); + assertTrue(iterator.hasNext()); + assertEquals(new JsonObjectMember("b", JsonLiteral.FALSE), iterator.next()); + } + + @Test + public void iteratornextFailsAtEnd() { + Assertions.assertThrows(NoSuchElementException.class, () -> { + Iterator iterator = object.iterator(); + iterator.next(); + }); + } + + @Test + public void iteratordoesNotAllowModification() { + Assertions.assertThrows(UnsupportedOperationException.class, () -> { + object.add("a", 23); + Iterator iterator = object.iterator(); + iterator.next(); + iterator.remove(); + }); + } + + @Test + public void iteratordetectsConcurrentModification() { + Assertions.assertThrows(ConcurrentModificationException.class, () -> { + Iterator iterator = object.iterator(); + object.add("a", 23); + iterator.next(); + }); + } + + @Test + public void getfailsWithNullName() { + Assertions.assertThrows(NullPointerException.class, () -> object.get(null)); + } + + @Test + public void getreturnsNullForNonExistingMember() { + assertNull(object.get("foo")); + } + + @Test + public void getreturnsValueForName() { + object.add("foo", true); + assertEquals(JsonLiteral.TRUE, object.get("foo")); + } + + @Test + public void getreturnsLastValueForName() { + object.add("foo", false).add("foo", true); + assertEquals(JsonLiteral.TRUE, object.get("foo")); + } + + @Test + public void getintreturnsValueFromMember() { + object.add("foo", 23); + + assertEquals(23, object.getInt("foo", 42)); + } + + @Test + public void getintreturnsDefaultForMissingMember() { + assertEquals(23, object.getInt("foo", 23)); + } + + @Test + public void getlongreturnsValueFromMember() { + object.add("foo", 23L); + + assertEquals(23L, object.getLong("foo", 42L)); + } + + @Test + public void getlongreturnsDefaultForMissingMember() { + assertEquals(23L, object.getLong("foo", 23L)); + } + + @Test + public void getfloatreturnsValueFromMember() { + object.add("foo", 3.14f); + + assertEquals(3.14f, object.getFloat("foo", 1.41f), 0); + } + + @Test + public void getfloatreturnsDefaultForMissingMember() { + assertEquals(3.14f, object.getFloat("foo", 3.14f), 0); + } + + @Test + public void getdoublereturnsValueFromMember() { + object.add("foo", 3.14); + + assertEquals(3.14, object.getDouble("foo", 1.41), 0); + } + + @Test + public void getdoublereturnsDefaultForMissingMember() { + assertEquals(3.14, object.getDouble("foo", 3.14), 0); + } + + @Test + public void getbooleanreturnsValueFromMember() { + object.add("foo", true); + assertTrue(object.getBoolean("foo", false)); + } + + @Test + public void getbooleanreturnsDefaultForMissingMember() { + assertFalse(object.getBoolean("foo", false)); + } + + @Test + public void getstringreturnsValueFromMember() { + object.add("foo", "bar"); + assertEquals("bar", object.getString("foo", "default")); + } + + @Test + public void getstringreturnsDefaultForMissingMember() { + assertEquals("default", object.getString("foo", "default")); + } + + @Test + public void addfailsWithNullName() { + Assertions.assertThrows(NullPointerException.class, () -> object.add(null, 23)); + } + + @Test + public void addint() { + object.add("a", 23); + + assertEquals("{\"a\":23}", object.toString()); + } + + @Test + public void addintenablesChaining() { + assertSame(object, object.add("a", 23)); + } + + @Test + public void addlong() { + object.add("a", 23L); + + assertEquals("{\"a\":23}", object.toString()); + } + + @Test + public void addlongenablesChaining() { + assertSame(object, object.add("a", 23L)); + } + + @Test + public void addfloat() { + object.add("a", 3.14f); + + assertEquals("{\"a\":3.14}", object.toString()); + } + + @Test + public void addfloatenablesChaining() { + assertSame(object, object.add("a", 3.14f)); + } + + @Test + public void adddouble() { + object.add("a", 3.14d); + + assertEquals("{\"a\":3.14}", object.toString()); + } + + @Test + public void adddoubleenablesChaining() { + assertSame(object, object.add("a", 3.14d)); + } + + @Test + public void addboolean() { + object.add("a", true); + + assertEquals("{\"a\":true}", object.toString()); + } + + @Test + public void addbooleanenablesChaining() { + assertSame(object, object.add("a", true)); + } + + @Test + public void addstring() { + object.add("a", "foo"); + + assertEquals("{\"a\":\"foo\"}", object.toString()); + } + + @Test + public void addstringtoleratesNull() { + object.add("a", (String) null); + + assertEquals("{\"a\":null}", object.toString()); + } + + @Test + public void addstringenablesChaining() { + assertSame(object, object.add("a", "foo")); + } + + @Test + public void addjsonNull() { + object.add("a", JsonLiteral.NULL); + + assertEquals("{\"a\":null}", object.toString()); + } + + @Test + public void addjsonArray() { + object.add("a", new JsonArray()); + assertEquals("{\"a\":[]}", object.toString()); + } + + @Test + public void addjsonObject() { + object.add("a", new JsonObject()); + assertEquals("{\"a\":{}}", object.toString()); + } + + @Test + public void addjsonenablesChaining() { + assertSame(object, object.add("a", JsonLiteral.NULL)); + } + + @Test + public void addjsonfailsWithNull() { + Assertions.assertThrows(NullPointerException.class, () -> object.add("a", (JsonValue) null)); + } + + @Test + public void addjsonnestedArray() { + JsonArray innerArray = new JsonArray(); + innerArray.add(23); + object.add("a", innerArray); + assertEquals("{\"a\":[23]}", object.toString()); + } + + @Test + public void addjsonnestedArraymodifiedAfterAdd() { + JsonArray innerArray = new JsonArray(); + object.add("a", innerArray); + innerArray.add(23); + assertEquals("{\"a\":[23]}", object.toString()); + } + + @Test + public void addjsonnestedObject() { + JsonObject innerObject = new JsonObject(); + innerObject.add("a", 23); + object.add("a", innerObject); + assertEquals("{\"a\":{\"a\":23}}", object.toString()); + } + + @Test + public void addjsonnestedObjectmodifiedAfterAdd() { + JsonObject innerObject = new JsonObject(); + object.add("a", innerObject); + innerObject.add("a", 23); + assertEquals("{\"a\":{\"a\":23}}", object.toString()); + } + + @Test + public void setint() { + object.set("a", 23); + assertEquals("{\"a\":23}", object.toString()); + } + + @Test + public void setintenablesChaining() { + assertSame(object, object.set("a", 23)); + } + + @Test + public void setlong() { + object.set("a", 23L); + assertEquals("{\"a\":23}", object.toString()); + } + + @Test + public void setlongenablesChaining() { + assertSame(object, object.set("a", 23L)); + } + + @Test + public void setfloat() { + object.set("a", 3.14f); + assertEquals("{\"a\":3.14}", object.toString()); + } + + @Test + public void setfloatenablesChaining() { + assertSame(object, object.set("a", 3.14f)); + } + + @Test + public void setdouble() { + object.set("a", 3.14d); + assertEquals("{\"a\":3.14}", object.toString()); + } + + @Test + public void setdoubleenablesChaining() { + assertSame(object, object.set("a", 3.14d)); + } + + @Test + public void setboolean() { + object.set("a", true); + + assertEquals("{\"a\":true}", object.toString()); + } + + @Test + public void setbooleanenablesChaining() { + assertSame(object, object.set("a", true)); + } + + @Test + public void setstring() { + object.set("a", "foo"); + + assertEquals("{\"a\":\"foo\"}", object.toString()); + } + + @Test + public void setstringenablesChaining() { + assertSame(object, object.set("a", "foo")); + } + + @Test + public void setjsonNull() { + object.set("a", JsonLiteral.NULL); + + assertEquals("{\"a\":null}", object.toString()); + } + + @Test + public void setjsonArray() { + object.set("a", new JsonArray()); + + assertEquals("{\"a\":[]}", object.toString()); + } + + @Test + public void setjsonObject() { + object.set("a", new JsonObject()); + + assertEquals("{\"a\":{}}", object.toString()); + } + + @Test + public void setjsonenablesChaining() { + assertSame(object, object.set("a", JsonLiteral.NULL)); + } + + @Test + public void setaddsElementIfMissing() { + object.set("a", JsonLiteral.TRUE); + + assertEquals("{\"a\":true}", object.toString()); + } + + @Test + public void setmodifiesElementIfExisting() { + object.add("a", JsonLiteral.TRUE); + + object.set("a", JsonLiteral.FALSE); + + assertEquals("{\"a\":false}", object.toString()); + } + + @Test + public void setmodifiesLastElementIfMultipleExisting() { + object.add("a", 1); + object.add("a", 2); + + object.set("a", JsonLiteral.TRUE); + + assertEquals("{\"a\":1,\"a\":true}", object.toString()); + } + + @Test + public void removefailsWithNullName() { + Assertions.assertThrows(NullPointerException.class, () -> object.remove(null)); + } + + @Test + public void removeremovesMatchingMember() { + object.add("a", 23); + + object.remove("a"); + + assertEquals("{}", object.toString()); + } + + @Test + public void removeremovesOnlyMatchingMember() { + object.add("a", 23); + object.add("b", 42); + object.add("c", true); + object.remove("b"); + assertEquals("{\"a\":23,\"c\":true}", object.toString()); + } + + @Test + public void removeremovesOnlyLastMatchingMember() { + object.add("a", 23); + object.add("a", 42); + object.remove("a"); + assertEquals("{\"a\":23}", object.toString()); + } + + @Test + public void removeremovesOnlyLastMatchingMemberafterRemove() { + object.add("a", 23); + object.remove("a"); + object.add("a", 42); + object.add("a", 47); + object.remove("a"); + assertEquals("{\"a\":42}", object.toString()); + } + + @Test + public void removedoesNotModifyObjectWithoutMatchingMember() { + object.add("a", 23); + object.remove("b"); + assertEquals("{\"a\":23}", object.toString()); + } + + @Test + public void mergefailsWithNull() { + Assertions.assertThrows(NullPointerException.class, () -> object.merge(null)); + } + + @Test + public void mergeappendsMembers() { + object.add("a", 1).add("b", 1); + object.merge(Json.object().add("c", 2).add("d", 2)); + + assertEquals(Json.object().add("a", 1).add("b", 1).add("c", 2).add("d", 2), object); + } + + @Test + public void mergereplacesMembers() { + object.add("a", 1).add("b", 1).add("c", 1); + object.merge(Json.object().add("b", 2).add("d", 2)); + assertEquals(Json.object().add("a", 1).add("b", 2).add("c", 1).add("d", 2), object); + } + + @Test + public void writeempty() throws IOException { + JsonWriter writer = mock(JsonWriter.class); + object.write(writer); + + InOrder inOrder = inOrder(writer); + inOrder.verify(writer).writeObjectOpen(); + inOrder.verify(writer).writeObjectClose(); + inOrder.verifyNoMoreInteractions(); + } + + @Test + public void writewithSingleValue() throws IOException { + JsonWriter writer = mock(JsonWriter.class); + object.add("a", 23); + + object.write(writer); + + InOrder inOrder = inOrder(writer); + inOrder.verify(writer).writeObjectOpen(); + inOrder.verify(writer).writeMemberName("a"); + inOrder.verify(writer).writeMemberSeparator(); + inOrder.verify(writer).writeNumber("23"); + inOrder.verify(writer).writeObjectClose(); + inOrder.verifyNoMoreInteractions(); + } + + @Test + public void writewithMultipleValues() throws IOException { + JsonWriter writer = mock(JsonWriter.class); + object.add("a", 23); + object.add("b", 3.14f); + object.add("c", "foo"); + object.add("d", true); + object.add("e", (String) null); + + object.write(writer); + + InOrder inOrder = inOrder(writer); + inOrder.verify(writer).writeObjectOpen(); + inOrder.verify(writer).writeMemberName("a"); + inOrder.verify(writer).writeMemberSeparator(); + inOrder.verify(writer).writeNumber("23"); + inOrder.verify(writer).writeObjectSeparator(); + inOrder.verify(writer).writeMemberName("b"); + inOrder.verify(writer).writeMemberSeparator(); + inOrder.verify(writer).writeNumber("3.14"); + inOrder.verify(writer).writeObjectSeparator(); + inOrder.verify(writer).writeMemberName("c"); + inOrder.verify(writer).writeMemberSeparator(); + inOrder.verify(writer).writeString("foo"); + inOrder.verify(writer).writeObjectSeparator(); + inOrder.verify(writer).writeMemberName("d"); + inOrder.verify(writer).writeMemberSeparator(); + inOrder.verify(writer).writeLiteral("true"); + inOrder.verify(writer).writeObjectSeparator(); + inOrder.verify(writer).writeMemberName("e"); + inOrder.verify(writer).writeMemberSeparator(); + inOrder.verify(writer).writeLiteral("null"); + inOrder.verify(writer).writeObjectClose(); + inOrder.verifyNoMoreInteractions(); + } + + @Test + public void isObject() { + assertTrue(object.isObject()); + } + + @Test + public void asObject() { + assertSame(object, object.asObject()); + } + + @Test + public void equalstrueForSameInstance() { + assertEquals(object, object); + } + + @Test + public void equalstrueForEqualObjects() { + assertEquals(object(), object()); + assertEquals(object("a", "1", "b", "2"), object("a", "1", "b", "2")); + } + + @Test + public void equalsfalseForDifferentObjects() { + assertNotEquals(object("a", "2"), object("a", "1")); + assertNotEquals(object("b", "1"), object("a", "1")); + assertNotEquals(object("b", "2", "a", "1"), object("a", "1", "b", "2")); + } + + @Test + public void equalsfalseForNull() { + assertNotEquals(new JsonObject(), null); + } + + @Test + public void equalsfalseForSubclass() { + JsonObject jsonObject = new JsonObject(); + assertNotEquals(new JsonObject(jsonObject) {}, jsonObject); + } + + @Test + public void hashCodeequalsForEqualObjects() { + assertEquals(object().hashCode(), object().hashCode()); + assertEquals(object("a", "1").hashCode(), object("a", "1").hashCode()); + } + + @Test + public void hashCodediffersForDifferentObjects() { + assertNotEquals(object("a", "1").hashCode(), object().hashCode()); + assertNotEquals(object("a", "2").hashCode(), object("a", "1").hashCode()); + assertNotEquals(object("b", "1").hashCode(), object("a", "1").hashCode()); + } + + @Test + public void indexOfreturnsNoIndexIfEmpty() { + assertEquals(-1, object.indexOf("a")); + } + + @Test + public void indexOfreturnsIndexOfMember() { + object.add("a", true); + + assertEquals(0, object.indexOf("a")); + } + + @Test + public void indexOfreturnsIndexOfLastMember() { + object.add("a", true); + object.add("a", true); + + assertEquals(1, object.indexOf("a")); + } + + @Test + public void indexOfreturnsIndexOfLastMemberafterRemove() { + object.add("a", true); + object.add("a", true); + object.remove("a"); + + assertEquals(0, object.indexOf("a")); + } + + @Test + public void indexOfreturnsUpdatedIndexAfterRemove() { + // See issue #16 + object.add("a", true); + object.add("b", true); + object.remove("a"); + + assertEquals(0, object.indexOf("b")); + } + + @Test + public void indexOfreturnsIndexOfLastMemberforBigObject() { + object.add("a", true); + // for indexes above 255, the hash index table does not return a value + for (int i = 0; i < 256; i++) { + object.add("x-" + i, 0); + } + object.add("a", true); + + assertEquals(257, object.indexOf("a")); + } + + @Test + public void hashIndexTableadd() { + HashIndexTable indexTable = new HashIndexTable(); + + indexTable.add("name-0", 0); + indexTable.add("name-1", 1); + indexTable.add("name-fe", 0xfe); + indexTable.add("name-ff", 0xff); + + assertEquals(0, indexTable.get("name-0")); + assertEquals(1, indexTable.get("name-1")); + assertEquals(0xfe, indexTable.get("name-fe")); + assertEquals(-1, indexTable.get("name-ff")); + } + + @Test + public void hashIndexTableaddoverwritesPreviousValue() { + HashIndexTable indexTable = new HashIndexTable(); + indexTable.add("name", 23); + indexTable.add("name", 42); + assertEquals(42, indexTable.get("name")); + } + + @Test + public void hashIndexTableaddclearsPreviousValueIfIndexExceeds0xff() { + HashIndexTable indexTable = new HashIndexTable(); + indexTable.add("name", 23); + indexTable.add("name", 300); + assertEquals(-1, indexTable.get("name")); + } + + @Test + public void hashIndexTableremove() { + HashIndexTable indexTable = new HashIndexTable(); + indexTable.add("name", 23); + indexTable.remove(23); + assertEquals(-1, indexTable.get("name")); + } + + @Test + public void hashIndexTableremoveupdatesSubsequentElements() { + HashIndexTable indexTable = new HashIndexTable(); + indexTable.add("foo", 23); + indexTable.add("bar", 42); + indexTable.remove(23); + assertEquals(41, indexTable.get("bar")); + } + + @Test + public void hashIndexTableremovedoesNotChangePrecedingElements() { + HashIndexTable indexTable = new HashIndexTable(); + indexTable.add("foo", 23); + indexTable.add("bar", 42); + indexTable.remove(42); + assertEquals(23, indexTable.get("foo")); + } + + @Test + public void memberreturnsNameAndValue() { + JsonObjectMember member = new JsonObjectMember("a", JsonLiteral.TRUE); + assertEquals("a", member.getName()); + assertEquals(JsonLiteral.TRUE, member.getValue()); + } + + @Test + public void memberequalstrueForSameInstance() { + JsonObjectMember member = new JsonObjectMember("a", JsonLiteral.TRUE); + assertEquals(member, member); + } + + @Test + public void memberequalstrueForEqualObjects() { + JsonObjectMember member = new JsonObjectMember("a", JsonLiteral.TRUE); + assertEquals(new JsonObjectMember("a", JsonLiteral.TRUE), member); + } + + @Test + public void memberequalsfalseForDifferingObjects() { + JsonObjectMember member = new JsonObjectMember("a", JsonLiteral.TRUE); + assertNotEquals(new JsonObjectMember("b", JsonLiteral.TRUE), member); + assertNotEquals(new JsonObjectMember("a", JsonLiteral.FALSE), member); + } + + @Test + public void memberequalsfalseForNull() { + JsonObjectMember member = new JsonObjectMember("a", JsonLiteral.TRUE); + assertNotNull(member); + } + + @Test + public void memberequalsfalseForSubclass() { + JsonObjectMember member = new JsonObjectMember("a", JsonLiteral.TRUE); + assertNotEquals(new JsonObjectMember("a", JsonLiteral.TRUE) {}, member); + } + + @Test + public void memberhashCodeequalsForEqualObjects() { + JsonObjectMember member = new JsonObjectMember("a", JsonLiteral.TRUE); + assertEquals(new JsonObjectMember("a", JsonLiteral.TRUE).hashCode(), member.hashCode()); + } + + @Test + public void memberhashCodediffersForDifferingobjects() { + JsonObjectMember member = new JsonObjectMember("a", JsonLiteral.TRUE); + assertNotEquals(new JsonObjectMember("b", JsonLiteral.TRUE).hashCode(), member.hashCode()); + assertNotEquals(new JsonObjectMember("a", JsonLiteral.FALSE).hashCode(), member.hashCode()); + } +} diff --git a/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonReaderTest.java b/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonReaderTest.java new file mode 100755 index 0000000..35e7e75 --- /dev/null +++ b/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonReaderTest.java @@ -0,0 +1,762 @@ +package org.xbib.datastructures.json.test; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertSame; +import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.xbib.datastructures.json.Json.parse; + +import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.Test; +import org.xbib.datastructures.json.DefaultHandler; +import org.xbib.datastructures.json.JsonArray; +import org.xbib.datastructures.json.JsonBool; +import org.xbib.datastructures.json.JsonException; +import org.xbib.datastructures.json.JsonHandler; +import org.xbib.datastructures.json.JsonLiteral; +import org.xbib.datastructures.json.JsonNull; +import org.xbib.datastructures.json.JsonNumber; +import org.xbib.datastructures.json.JsonObject; +import org.xbib.datastructures.json.JsonReader; +import org.xbib.datastructures.json.JsonString; +import org.xbib.datastructures.json.JsonValue; +import java.io.IOException; +import java.io.StringReader; +import java.util.Arrays; +import java.util.LinkedList; +import java.util.List; + +public class JsonReaderTest { + + @Test + public void constructorrejectsNullHandler() { + Assertions.assertThrows(NullPointerException.class, () -> new JsonReader(null, null)); + } + + @Test + public void parsestringrejectsNull() { + Assertions.assertThrows(NullPointerException.class, () -> { + JsonReader reader = new JsonReader(new StringReader(null), new TestHandler()); + reader.parse(); + }); + } + + @Test + public void parsereaderrejectsNull() { + Assertions.assertThrows(NullPointerException.class, () -> { + JsonReader reader = new JsonReader(null, new TestHandler()); + reader.parse(); + }); + } + + @Test + public void parsereaderrejectsNegativeBufferSize() { + Assertions.assertThrows(IllegalArgumentException.class, () -> { + JsonReader reader = new JsonReader(new StringReader("[]"), new TestHandler()); + reader.parse(-1); + }); + } + + @Test + public void parsestringrejectsEmpty() { + assertParseException(0, "Unexpected end of input", ""); + } + + @Test + public void parsereaderrejectsEmpty() { + JsonReader reader = new JsonReader(new StringReader(""), new TestHandler()); + Assertions.assertThrows(JsonException.class, reader::parse); + } + + @Test + public void parsenull() throws IOException { + TestHandler handler = new TestHandler(); + JsonReader reader = new JsonReader(new StringReader("null"), handler); + reader.parse(); + assertEquals("null", handler.getLog()); + } + + @Test + public void parsetrue() throws IOException { + TestHandler handler = new TestHandler(); + JsonReader reader = new JsonReader(new StringReader("true"), handler); + reader.parse(); + assertEquals("bool true", handler.getLog()); + } + + @Test + public void parsefalse() throws IOException { + TestHandler handler = new TestHandler(); + JsonReader reader = new JsonReader(new StringReader("false"), handler); + reader.parse(); + assertEquals("bool false", handler.getLog()); + } + + @Test + public void parsestring() throws IOException { + TestHandler handler = new TestHandler(); + JsonReader reader = new JsonReader(new StringReader("\"foo\""), handler); + reader.parse(); + assertEquals("string foo", handler.getLog()); + } + + @Test + public void parsestringempty() throws IOException { + TestHandler handler = new TestHandler(); + JsonReader reader = new JsonReader(new StringReader("\"\""), handler); + reader.parse(); + assertEquals("string ", handler.getLog()); + } + + @Test + public void parsenumber() throws IOException { + TestHandler handler = new TestHandler(); + JsonReader reader = new JsonReader(new StringReader("23"), handler); + reader.parse(); + assertEquals("number 23", handler.getLog()); + } + + @Test + public void parsenumbernegative() throws IOException { + TestHandler handler = new TestHandler(); + JsonReader reader = new JsonReader(new StringReader("-23"), handler); + reader.parse(); + assertEquals("number -23", handler.getLog()); + } + + @Test + public void parsenumbernegativeexponent() throws IOException { + TestHandler handler = new TestHandler(); + JsonReader reader = new JsonReader(new StringReader("-2.3e-12"), handler); + reader.parse(); + assertEquals("number -2.3e-12", handler.getLog()); + } + + @Test + public void parsearray() throws IOException { + TestHandler handler = new TestHandler(); + JsonReader reader = new JsonReader(new StringReader("[23]"), handler); + reader.parse(); + String s1 = String.join("\n", "startArray", "number 23", "endArray [23]"); + String s2 = handler.getLog(); + assertEquals(s1.length(), s2.length()); + assertEquals(s1, s2); + } + + @Test + public void parsearrayempty() throws IOException { + TestHandler handler = new TestHandler(); + JsonReader reader = new JsonReader(new StringReader("[]"), handler); + reader.parse(); + assertEquals(String.join("\n", "startArray", "endArray []"), handler.getLog()); + } + + @Test + public void parseobject() throws IOException { + TestHandler handler = new TestHandler(); + JsonReader reader = new JsonReader(new StringReader("{\"foo\": 23}"), handler); + reader.parse(); + assertEquals(String.join("\n", "startObject", + "objectName [{}, foo]", + "number 23", + "objectValue [{}, foo]", + "endObject {}"), + handler.getLog()); + } + + @Test + public void parseobjectempty() throws IOException { + TestHandler handler = new TestHandler(); + JsonReader reader = new JsonReader(new StringReader("{}"), handler); + reader.parse(); + assertEquals("startObject\nendObject {}", handler.getLog()); + } + + @Test + public void parsestripsPadding() throws IOException { + assertEquals(new JsonArray(), parse(" [ ] ")); + } + + @Test + public void parseignoresAllWhiteSpace() throws IOException { + assertEquals(new JsonArray(), parse("\t\r\n [\t\r\n ]\t\r\n ")); + } + + @Test + public void parsefailsWithUnterminatedString() { + assertParseException(5, "Unexpected end of input", "[\"foo"); + } + + @Test + public void parselineAndColumnonFirstLine() throws IOException { + TestHandler handler = new TestHandler(); + JsonReader reader = new JsonReader(new StringReader("[]"), handler); + reader.parse(); + //assertEquals("1:3", handler.lastLocation.toString()); + } + + @Test + public void parselineAndColumnafterLF() throws IOException { + TestHandler handler = new TestHandler(); + JsonReader reader = new JsonReader(new StringReader("[\n]"), handler); + reader.parse(); + //assertEquals("2:2", handler.lastLocation.toString()); + } + + @Test + public void parselineAndColumnafterCRLF() throws IOException { + TestHandler handler = new TestHandler(); + JsonReader reader = new JsonReader(new StringReader("[\r\n]"), handler); + reader.parse(); + //assertEquals("2:2", handler.lastLocation.toString()); + } + + @Test + public void parselineAndColumnafterCR() throws IOException { + TestHandler handler = new TestHandler(); + JsonReader reader = new JsonReader(new StringReader("[\r]"), handler); + reader.parse(); + //assertEquals("1:4", handler.lastLocation.toString()); + } + + @Test + public void parsehandlesInputsThatExceedBufferSize() throws IOException { + String input = "[ 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47 ]"; + DefaultHandler defHandler = new DefaultHandler(); + JsonReader reader = new JsonReader(new StringReader(input), defHandler); + reader.parse(3); + assertEquals("[2,3,5,7,11,13,17,19,23,29,31,37,41,43,47]", defHandler.getValue().toString()); + } + + @Test + public void parsehandlesStringsThatExceedBufferSize() throws IOException { + String input = "[ \"lorem ipsum dolor sit amet\" ]"; + DefaultHandler defHandler = new DefaultHandler(); + JsonReader reader = new JsonReader(new StringReader(input), defHandler); + reader.parse(3); + assertEquals("[\"lorem ipsum dolor sit amet\"]", defHandler.getValue().toString()); + } + + @Test + public void parsehandlesNumbersThatExceedBufferSize() throws IOException { + String input = "[ 3.141592653589 ]"; + DefaultHandler defHandler = new DefaultHandler(); + JsonReader reader = new JsonReader(new StringReader(input), defHandler); + reader.parse(3); + assertEquals("[3.141592653589]", defHandler.getValue().toString()); + } + + @Test + public void parsehandlesPositionsCorrectlyWhenInputExceedsBufferSize() { + final String input = "{\n \"a\": 23,\n \"b\": 42,\n}"; + TestHandler handler = new TestHandler(); + JsonReader reader = new JsonReader(new StringReader(input), handler); + Assertions.assertThrows(JsonException.class, () -> reader.parse(3)); + } + + @Test + public void parsefailsOnTooDeeplyNestedArray() { + JsonArray array = new JsonArray(); + for (int i = 0; i < 256; i++) { + array = new JsonArray().add(array); + } + final String input = array.toString(); + TestHandler handler = new TestHandler(); + JsonReader reader = new JsonReader(new StringReader(input), handler); + Assertions.assertThrows(JsonException.class, reader::parse); + } + + @Test + public void parsefailsOnTooDeeplyNestedObject() { + JsonObject object = new JsonObject(); + for (int i = 0; i < 256; i++) { + object = new JsonObject().add("foo", object); + } + final String input = object.toString(); + TestHandler handler = new TestHandler(); + JsonReader reader = new JsonReader(new StringReader(input), handler); + Assertions.assertThrows(JsonException.class, reader::parse); + } + + @Test + public void parsefailsOnTooDeeplyNestedMixedObject() { + JsonValue value = new JsonObject(); + for (int i = 0; i < 256; i++) { + value = i % 2 == 0 ? new JsonArray().add(value) : new JsonObject().add("foo", value); + } + final String input = value.toString(); + TestHandler handler = new TestHandler(); + JsonReader reader = new JsonReader(new StringReader(input), handler); + Assertions.assertThrows(JsonException.class, reader::parse); + } + + @Test + public void parsedoesNotFailWithManyArrays() throws IOException { + JsonArray array = new JsonArray(); + for (int i = 0; i < 256; i++) { + array.add(new JsonArray().add(7)); + } + final String input = array.toString(); + JsonValue result = parse(input); + assertTrue(result.isArray()); + } + + @Test + public void parsedoesNotFailWithManyEmptyArrays() throws IOException { + JsonArray array = new JsonArray(); + for (int i = 0; i < 1001; i++) { + array.add(new JsonArray()); + } + final String input = array.toString(); + JsonValue result = parse(input); + assertTrue(result.isArray()); + } + + @Test + public void parsedoesNotFailWithManyObjects() throws IOException { + JsonArray array = new JsonArray(); + for (int i = 0; i < 1001; i++) { + array.add(new JsonObject().add("a", 7)); + } + final String input = array.toString(); + JsonValue result = parse(input); + assertTrue(result.isArray()); + } + + @Test + public void parsedoesNotFailWithManyEmptyObjects() throws IOException { + JsonArray array = new JsonArray(); + for (int i = 0; i < 1001; i++) { + array.add(new JsonObject()); + } + final String input = array.toString(); + JsonValue result = parse(input); + assertTrue(result.isArray()); + } + + @Test + public void parsecanBeCalledOnce() throws IOException { + TestHandler handler = new TestHandler(); + JsonReader reader = new JsonReader(new StringReader("[23]"), handler); + reader.parse(); + assertEquals(String.join("\n", + "startArray", + "number 23", + "endArray [23]"), + handler.getLog()); + handler = new TestHandler(); + reader = new JsonReader(new StringReader("[42]"), handler); + reader.parse(); + assertEquals(String.join("\n", + "startArray", + "number 42", + "endArray [42]"), + handler.getLog()); + } + + @Test + public void arraysempty() throws IOException { + assertEquals("[]", parse("[]").toString()); + } + + @Test + public void arrayssingleValue() throws IOException { + assertEquals("[23]", parse("[23]").toString()); + } + + @Test + public void arraysmultipleValues() throws IOException { + assertEquals("[23,42]", parse("[23,42]").toString()); + } + + @Test + public void arrayswithWhitespaces() throws IOException { + assertEquals("[23,42]", parse("[ 23 , 42 ]").toString()); + } + + @Test + public void arraysnested() throws IOException { + assertEquals("[[23]]", parse("[[23]]").toString()); + assertEquals("[[[]]]", parse("[[[]]]").toString()); + assertEquals("[[23],42]", parse("[[23],42]").toString()); + assertEquals("[[23],[42]]", parse("[[23],[42]]").toString()); + assertEquals("[[23],[42]]", parse("[[23],[42]]").toString()); + assertEquals("[{\"foo\":[23]},{\"bar\":[42]}]", + parse("[{\"foo\":[23]},{\"bar\":[42]}]").toString()); + } + + @Test + public void arraysillegalSyntax() { + assertParseException(1, "Expected value", "[,]"); + assertParseException(4, "Expected ',' or ']'", "[23 42]"); + assertParseException(4, "Expected value", "[23,]"); + } + + @Test + public void arraysincomplete() { + assertParseException(1, "Unexpected end of input", "["); + assertParseException(2, "Unexpected end of input", "[ "); + assertParseException(3, "Unexpected end of input", "[23"); + assertParseException(4, "Unexpected end of input", "[23 "); + assertParseException(4, "Unexpected end of input", "[23,"); + assertParseException(5, "Unexpected end of input", "[23, "); + } + + @Test + public void objectsempty() throws IOException { + assertEquals("{}", parse("{}").toString()); + } + + @Test + public void objectssingleValue() throws IOException { + assertEquals("{\"foo\":23}", parse("{\"foo\":23}").toString()); + } + + @Test + public void objectsmultipleValues() throws IOException { + assertEquals("{\"foo\":23,\"bar\":42}", parse("{\"foo\":23,\"bar\":42}").toString()); + } + + @Test + public void objectswhitespace() throws IOException { + assertEquals("{\"foo\":23,\"bar\":42}", parse("{ \"foo\" : 23, \"bar\" : 42 }").toString()); + } + + @Test + public void objectsnested() throws IOException { + assertEquals("{\"foo\":{}}", parse("{\"foo\":{}}").toString()); + assertEquals("{\"foo\":{\"bar\":42}}", parse("{\"foo\":{\"bar\": 42}}").toString()); + assertEquals("{\"foo\":{\"bar\":{\"baz\":42}}}", + parse("{\"foo\":{\"bar\": {\"baz\": 42}}}").toString()); + assertEquals("{\"foo\":[{\"bar\":{\"baz\":[[42]]}}]}", + parse("{\"foo\":[{\"bar\": {\"baz\": [[42]]}}]}").toString()); + } + + @Test + public void objectsillegalSyntax() { + assertParseException(1, "Expected name", "{,}"); + assertParseException(1, "Expected name", "{:}"); + assertParseException(1, "Expected name", "{23}"); + assertParseException(4, "Expected ':'", "{\"a\"}"); + assertParseException(5, "Expected ':'", "{\"a\" \"b\"}"); + assertParseException(5, "Expected value", "{\"a\":}"); + assertParseException(8, "Expected name", "{\"a\":23,}"); + assertParseException(8, "Expected name", "{\"a\":23,42"); + } + + @Test + public void objectsincomplete() { + assertParseException(1, "Unexpected end of input", "{"); + assertParseException(2, "Unexpected end of input", "{ "); + assertParseException(2, "Unexpected end of input", "{\""); + assertParseException(4, "Unexpected end of input", "{\"a\""); + assertParseException(5, "Unexpected end of input", "{\"a\" "); + assertParseException(5, "Unexpected end of input", "{\"a\":"); + assertParseException(6, "Unexpected end of input", "{\"a\": "); + assertParseException(7, "Unexpected end of input", "{\"a\":23"); + assertParseException(8, "Unexpected end of input", "{\"a\":23 "); + assertParseException(8, "Unexpected end of input", "{\"a\":23,"); + assertParseException(9, "Unexpected end of input", "{\"a\":23, "); + } + + @Test + public void stringsemptyStringisAccepted() throws IOException { + assertEquals("", parse("\"\"").asString()); + } + + @Test + public void stringsasciiCharactersareAccepted() throws IOException { + assertEquals(" ", parse("\" \"").asString()); + assertEquals("a", parse("\"a\"").asString()); + assertEquals("foo", parse("\"foo\"").asString()); + assertEquals("A2-D2", parse("\"A2-D2\"").asString()); + assertEquals("\u007f", parse("\"\u007f\"").asString()); + } + + @Test + public void stringsnonAsciiCharactersareAccepted() throws IOException { + assertEquals("Русский", parse("\"Русский\"").asString()); + assertEquals("العربية", parse("\"العربية\"").asString()); + assertEquals("日本語", parse("\"日本語\"").asString()); + } + + @Test + public void stringscontrolCharactersareRejected() { + // JSON string must not contain characters < 0x20 + assertParseException(3, "Expected valid string character", "\"--\n--\""); + assertParseException(3, "Expected valid string character", "\"--\r\n--\""); + assertParseException(3, "Expected valid string character", "\"--\t--\""); + assertParseException(3, "Expected valid string character", "\"--\u0000--\""); + assertParseException(3, "Expected valid string character", "\"--\u001f--\""); + } + + @Test + public void stringsvalidEscapesareAccepted() throws IOException { + // valid escapes are \" \\ \/ \b \f \n \r \t and unicode escapes + assertEquals(" \" ", parse("\" \\\" \"").asString()); + assertEquals(" \\ ", parse("\" \\\\ \"").asString()); + assertEquals(" / ", parse("\" \\/ \"").asString()); + assertEquals(" \u0008 ", parse("\" \\b \"").asString()); + assertEquals(" \u000c ", parse("\" \\f \"").asString()); + assertEquals(" \r ", parse("\" \\r \"").asString()); + assertEquals(" \n ", parse("\" \\n \"").asString()); + assertEquals(" \t ", parse("\" \\t \"").asString()); + } + + @Test + public void stringsescapeatStart() throws IOException { + assertEquals("\\x", parse("\"\\\\x\"").asString()); + } + + @Test + public void stringsescapeatEnd() throws IOException { + assertEquals("x\\", parse("\"x\\\\\"").asString()); + } + + @Test + public void stringsillegalEscapesareRejected() { + assertParseException(2, "Expected valid escape sequence", "\"\\a\""); + assertParseException(2, "Expected valid escape sequence", "\"\\x\""); + assertParseException(2, "Expected valid escape sequence", "\"\\000\""); + } + + @Test + public void stringsvalidUnicodeEscapesareAccepted() throws IOException { + assertEquals("\u0021", parse("\"\\u0021\"").asString()); + assertEquals("\u4711", parse("\"\\u4711\"").asString()); + assertEquals("\uffff", parse("\"\\uffff\"").asString()); + assertEquals("\uabcdx", parse("\"\\uabcdx\"").asString()); + } + + @Test + public void stringsillegalUnicodeEscapesareRejected() { + assertParseException(3, "Expected hexadecimal digit", "\"\\u \""); + assertParseException(3, "Expected hexadecimal digit", "\"\\ux\""); + assertParseException(5, "Expected hexadecimal digit", "\"\\u20 \""); + assertParseException(6, "Expected hexadecimal digit", "\"\\u000x\""); + } + + @Test + public void stringsincompleteStringsareRejected() { + assertParseException(1, "Unexpected end of input", "\""); + assertParseException(4, "Unexpected end of input", "\"foo"); + assertParseException(5, "Unexpected end of input", "\"foo\\"); + assertParseException(6, "Unexpected end of input", "\"foo\\n"); + assertParseException(6, "Unexpected end of input", "\"foo\\u"); + assertParseException(7, "Unexpected end of input", "\"foo\\u0"); + assertParseException(9, "Unexpected end of input", "\"foo\\u000"); + assertParseException(10, "Unexpected end of input", "\"foo\\u0000"); + } + + @Test + public void numbersinteger() throws IOException { + assertEquals(new JsonNumber("0"), parse("0")); + assertEquals(new JsonNumber("-0"), parse("-0")); + assertEquals(new JsonNumber("1"), parse("1")); + assertEquals(new JsonNumber("-1"), parse("-1")); + assertEquals(new JsonNumber("23"), parse("23")); + assertEquals(new JsonNumber("-23"), parse("-23")); + assertEquals(new JsonNumber("1234567890"), parse("1234567890")); + assertEquals(new JsonNumber("123456789012345678901234567890"), + parse("123456789012345678901234567890")); + } + + @Test + public void numbersminusZero() throws IOException { + // allowed by JSON, allowed by Java + JsonValue value = parse("-0"); + assertEquals(0, value.asInt()); + assertEquals(0L, value.asLong()); + assertEquals(0f, value.asFloat(), 0); + assertEquals(0d, value.asDouble(), 0); + } + + @Test + public void numbersdecimal() throws IOException { + assertEquals(new JsonNumber("0.23"), parse("0.23")); + assertEquals(new JsonNumber("-0.23"), parse("-0.23")); + assertEquals(new JsonNumber("1234567890.12345678901234567890"), + parse("1234567890.12345678901234567890")); + } + + @Test + public void numberswithExponent() throws IOException { + assertEquals(new JsonNumber("0.1e9"), parse("0.1e9")); + assertEquals(new JsonNumber("0.1e9"), parse("0.1e9")); + assertEquals(new JsonNumber("0.1E9"), parse("0.1E9")); + assertEquals(new JsonNumber("-0.23e9"), parse("-0.23e9")); + assertEquals(new JsonNumber("0.23e9"), parse("0.23e9")); + assertEquals(new JsonNumber("0.23e+9"), parse("0.23e+9")); + assertEquals(new JsonNumber("0.23e-9"), parse("0.23e-9")); + } + + @Test + public void numberswithInvalidFormat() { + assertParseException(0, "Expected value", "+1"); + assertParseException(0, "Expected value", ".1"); + assertParseException(1, "Unexpected character", "02"); + assertParseException(2, "Unexpected character", "-02"); + assertParseException(1, "Expected digit", "-x"); + assertParseException(2, "Expected digit", "1.x"); + assertParseException(2, "Expected digit", "1ex"); + assertParseException(3, "Unexpected character", "1e1x"); + } + + @Test + public void numbersincomplete() { + assertParseException(1, "Unexpected end of input", "-"); + assertParseException(2, "Unexpected end of input", "1."); + assertParseException(4, "Unexpected end of input", "1.0e"); + assertParseException(5, "Unexpected end of input", "1.0e-"); + } + + @Test + public void nullcomplete() throws IOException { + assertEquals(JsonLiteral.NULL, parse("null")); + } + + @Test + public void nullincomplete() { + assertParseException(1, "Unexpected end of input", "n"); + assertParseException(2, "Unexpected end of input", "nu"); + assertParseException(3, "Unexpected end of input", "nul"); + } + + @Test + public void nullwithIllegalCharacter() { + assertParseException(1, "Expected 'u'", "nx"); + assertParseException(2, "Expected 'l'", "nux"); + assertParseException(3, "Expected 'l'", "nulx"); + assertParseException(4, "Unexpected character", "nullx"); + } + + @Test + public void truecomplete() throws IOException { + assertSame(JsonLiteral.TRUE, parse("true")); + } + + @Test + public void trueincomplete() { + assertParseException(1, "Unexpected end of input", "t"); + assertParseException(2, "Unexpected end of input", "tr"); + assertParseException(3, "Unexpected end of input", "tru"); + } + + @Test + public void truewithIllegalCharacter() { + assertParseException(1, "Expected 'r'", "tx"); + assertParseException(2, "Expected 'u'", "trx"); + assertParseException(3, "Expected 'e'", "trux"); + assertParseException(4, "Unexpected character", "truex"); + } + + @Test + public void falsecomplete() throws IOException { + assertSame(JsonLiteral.FALSE, parse("false")); + } + + @Test + public void falseincomplete() { + assertParseException(1, "Unexpected end of input", "f"); + assertParseException(2, "Unexpected end of input", "fa"); + assertParseException(3, "Unexpected end of input", "fal"); + assertParseException(4, "Unexpected end of input", "fals"); + } + + @Test + public void falsewithIllegalCharacter() { + assertParseException(1, "Expected 'a'", "fx"); + assertParseException(2, "Expected 'l'", "fax"); + assertParseException(3, "Expected 's'", "falx"); + assertParseException(4, "Expected 'e'", "falsx"); + assertParseException(5, "Unexpected character", "falsex"); + } + + private void assertParseException(int offset, String message, final String json) { + TestHandler handler = new TestHandler(); + JsonReader reader = new JsonReader(new StringReader(json), handler); + Assertions.assertThrows(JsonException.class, () -> { + try { + reader.parse(); + } catch (IOException e) { + // ignore + } + }); + } + + private static class TestHandler implements JsonHandler { + + List log = new LinkedList<>(); + + JsonValue value; + + @Override + public void nullValue() { + record("null"); + this.value = new JsonNull(); + } + + @Override + public void booleanValue(boolean value) { + record("bool", value); + this.value = new JsonBool(value); + } + + @Override + public void stringValue(String string) { + record("string", string); + this.value = new JsonString(string); + } + + @Override + public void numberValue(String string) { + record("number", string); + this.value = new JsonNumber(string); + } + + @Override + public void startArray() { + record("startArray"); + } + + @Override + public void endArray(JsonArray array) { + record("endArray", array); + this.value = array; + } + + @Override + public void startObject() { + record("startObject"); + } + + @Override + public void endObject(JsonObject object) { + record("endObject", object); + this.value = object; + } + + @Override + public void objectName(JsonObject object, String name) { + record("objectName", object, name); + } + + @Override + public void objectValue(JsonObject object, String name) { + record("objectValue", object, name); + } + + @Override + public JsonValue getValue() { + return value; + } + + private void record(String event, Object... args) { + log.add(event + (args.length == 0 ? "" : args.length == 1 ? " " + args[0] : " " + Arrays.asList(args))); + } + + String getLog() { + return String.join("\n", log); + } + + } +} diff --git a/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonStringTest.java b/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonStringTest.java new file mode 100755 index 0000000..aae517a --- /dev/null +++ b/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonStringTest.java @@ -0,0 +1,90 @@ +package org.xbib.datastructures.json.test; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNotEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; +import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.xbib.datastructures.json.JsonString; +import org.xbib.datastructures.json.JsonWriter; +import java.io.IOException; +import java.io.StringWriter; + +public class JsonStringTest { + + private StringWriter stringWriter; + + private JsonWriter jsonWriter; + + @BeforeEach + public void setUp() { + stringWriter = new StringWriter(); + jsonWriter = new JsonWriter(stringWriter); + } + + @Test + public void constructor_failsWithNull() { + Assertions.assertThrows(NullPointerException.class, () -> new JsonString(null)); + } + + @Test + public void write() throws IOException { + new JsonString("foo").write(jsonWriter); + assertEquals("\"foo\"", stringWriter.toString()); + } + + @Test + public void write_escapesStrings() throws IOException { + new JsonString("foo\\bar").write(jsonWriter); + assertEquals("\"foo\\\\bar\"", stringWriter.toString()); + } + + @Test + public void isString() { + assertTrue(new JsonString("foo").isString()); + } + + @Test + public void asString() { + assertEquals("foo", new JsonString("foo").asString()); + } + + @Test + public void equals_trueForSameInstance() { + JsonString string = new JsonString("foo"); + assertEquals(string, string); + } + + @Test + public void equals_trueForEqualStrings() { + assertEquals(new JsonString("foo"), new JsonString("foo")); + } + + @Test + public void equals_falseForDifferentStrings() { + assertNotEquals(new JsonString("foo"), new JsonString("")); + assertNotEquals(new JsonString("bar"), new JsonString("foo")); + } + + @Test + public void equals_falseForNull() { + assertNotEquals(new JsonString("foo"), null); + } + + @Test + public void equals_falseForSubclass() { + assertNotEquals(new JsonString("foo") {}, new JsonString("foo")); + } + + @Test + public void hashCode_equalsForEqualStrings() { + assertEquals(new JsonString("foo").hashCode(), new JsonString("foo").hashCode()); + } + + @Test + public void hashCode_differsForDifferentStrings() { + assertNotEquals(new JsonString("foo").hashCode(), new JsonString("").hashCode()); + assertNotEquals(new JsonString("bar").hashCode(), new JsonString("foo").hashCode()); + } +} diff --git a/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonTest.java b/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonTest.java new file mode 100755 index 0000000..a7c33a5 --- /dev/null +++ b/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonTest.java @@ -0,0 +1,212 @@ +package org.xbib.datastructures.json.test; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertSame; +import static org.junit.jupiter.api.Assertions.assertTrue; +import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.Test; +import org.xbib.datastructures.json.Json; +import org.xbib.datastructures.json.JsonArray; +import org.xbib.datastructures.json.JsonLiteral; +import org.xbib.datastructures.json.JsonObject; +import java.io.IOException; +import java.io.Reader; +import java.io.StringReader; + +public class JsonTest { + + @Test + public void literalConstants() { + assertTrue(JsonLiteral.NULL.isNull()); + assertTrue(JsonLiteral.TRUE.isTrue()); + assertTrue(JsonLiteral.FALSE.isFalse()); + } + + @Test + public void valueint() { + assertEquals("0", Json.of(0).toString()); + assertEquals("23", Json.of(23).toString()); + assertEquals("-1", Json.of(-1).toString()); + assertEquals("2147483647", Json.of(Integer.MAX_VALUE).toString()); + assertEquals("-2147483648", Json.of(Integer.MIN_VALUE).toString()); + } + + @Test + public void valuelong() { + assertEquals("0", Json.of(0L).toString()); + assertEquals("9223372036854775807", Json.of(Long.MAX_VALUE).toString()); + assertEquals("-9223372036854775808", Json.of(Long.MIN_VALUE).toString()); + } + + @Test + public void valuefloat() { + assertEquals("23.5", Json.of(23.5f).toString()); + assertEquals("-3.1416", Json.of(-3.1416f).toString()); + assertEquals("1.23E-6", Json.of(0.00000123f).toString()); + assertEquals("-1.23E7", Json.of(-12300000f).toString()); + } + + @Test + public void valuefloatcutsOffPointZero() { + assertEquals("0", Json.of(0f).toString()); + assertEquals("-1", Json.of(-1f).toString()); + assertEquals("10", Json.of(10f).toString()); + } + + @Test + public void valuefloatfailsWithInfinity() { + Assertions.assertThrows(IllegalArgumentException.class, () -> Json.of(Float.POSITIVE_INFINITY)); + } + + @Test + public void valuefloatfailsWithNaN() { + Assertions.assertThrows(IllegalArgumentException.class, () -> Json.of(Float.NaN)); + } + + @Test + public void valuedouble() { + assertEquals("23.5", Json.of(23.5d).toString()); + assertEquals("3.1416", Json.of(3.1416d).toString()); + assertEquals("1.23E-6", Json.of(0.00000123d).toString()); + assertEquals("1.7976931348623157E308", Json.of(1.7976931348623157E308d).toString()); + } + + @Test + public void valuedoublecutsOffPointZero() { + assertEquals("0", Json.of(0d).toString()); + assertEquals("-1", Json.of(-1d).toString()); + assertEquals("10", Json.of(10d).toString()); + } + + @Test + public void valuedoublefailsWithInfinity() { + Assertions.assertThrows(IllegalArgumentException.class, () -> Json.of(Double.POSITIVE_INFINITY)); + } + + @Test + public void valuedoublefailsWithNaN() { + Assertions.assertThrows(IllegalArgumentException.class, () -> Json.of(Double.NaN)); + } + + @Test + public void valueboolean() { + assertSame(JsonLiteral.TRUE, Json.of(true)); + assertSame(JsonLiteral.FALSE, Json.of(false)); + } + + @Test + public void valuestring() { + assertEquals("", Json.of("").asString()); + assertEquals("Hello", Json.of("Hello").asString()); + assertEquals("\"Hello\"", Json.of("\"Hello\"").asString()); + } + + @Test + public void valuestringtoleratesNull() { + assertSame(JsonLiteral.NULL, Json.of(null)); + } + + @Test + public void array() { + assertEquals(new JsonArray(), Json.array()); + } + + @Test + public void arrayint() { + assertEquals(new JsonArray().add(23), Json.array(23)); + assertEquals(new JsonArray().add(23).add(42), Json.array(23, 42)); + } + + @Test + public void arrayintfailsWithNull() { + Assertions.assertThrows(NullPointerException.class, () -> Json.array((int[]) null)); + } + + @Test + public void arraylong() { + assertEquals(new JsonArray().add(23L), Json.array(23L)); + assertEquals(new JsonArray().add(23L).add(42L), Json.array(23L, 42L)); + } + + @Test + public void arraylongfailsWithNull() { + Assertions.assertThrows(NullPointerException.class, () -> Json.array((long[]) null)); + } + + @Test + public void arrayfloat() { + assertEquals(new JsonArray().add(3.14f), Json.array(3.14f)); + assertEquals(new JsonArray().add(3.14f).add(1.41f), Json.array(3.14f, 1.41f)); + } + + @Test + public void arrayfloatfailsWithNull() { + Assertions.assertThrows(NullPointerException.class, () -> Json.array((float[]) null)); + } + + @Test + public void arraydouble() { + assertEquals(new JsonArray().add(3.14d), Json.array(3.14d)); + assertEquals(new JsonArray().add(3.14d).add(1.41d), Json.array(3.14d, 1.41d)); + } + + @Test + public void arraydoublefailsWithNull() { + Assertions.assertThrows(NullPointerException.class, () -> Json.array((double[]) null)); + } + + @Test + public void arrayboolean() { + assertEquals(new JsonArray().add(true), Json.array(true)); + assertEquals(new JsonArray().add(true).add(false), Json.array(true, false)); + } + + @Test + public void arraybooleanfailsWithNull() { + Assertions.assertThrows(NullPointerException.class, () -> Json.array((boolean[]) null)); + } + + @Test + public void arraystring() { + assertEquals(new JsonArray().add("foo"), Json.array("foo")); + assertEquals(new JsonArray().add("foo").add("bar"), Json.array("foo", "bar")); + } + + @Test + public void arraystringfailsWithNull() { + Assertions.assertThrows(NullPointerException.class, () -> Json.array((String[]) null)); + } + + @Test + public void object() { + assertEquals(new JsonObject(), Json.object()); + } + + @Test + public void parsestring() throws IOException { + assertEquals(Json.of(23), Json.parse("23")); + } + + @Test + public void parsestringfailsWithNull() { + Assertions.assertThrows(NullPointerException.class, () -> { + try { + Json.parse((String) null); + } catch (IOException exception) { + // + } + }); + } + + @Test + public void parsereader() throws IOException { + Reader reader = new StringReader("23"); + assertEquals(Json.of(23), Json.parse(reader)); + } + + @Test + public void parsereaderfailsWithNull() { + Assertions.assertThrows(NullPointerException.class, () -> Json.parse((Reader) null)); + } + +} diff --git a/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonWriterTest.java b/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonWriterTest.java new file mode 100755 index 0000000..0027cbd --- /dev/null +++ b/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/JsonWriterTest.java @@ -0,0 +1,145 @@ +package org.xbib.datastructures.json.test; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.xbib.datastructures.json.JsonWriter; +import java.io.IOException; +import java.io.StringWriter; + +public class JsonWriterTest { + + private StringWriter output; + + private JsonWriter writer; + + private static String string(char... chars) { + return String.valueOf(chars); + } + + @BeforeEach + public void setUp() { + output = new StringWriter(); + writer = new JsonWriter(output); + } + + @Test + public void writeLiteral() throws IOException { + writer.writeLiteral("foo"); + assertEquals("foo", output.toString()); + } + + @Test + public void writeNumber() throws IOException { + writer.writeNumber("23"); + assertEquals("23", output.toString()); + } + + @Test + public void writeStringempty() throws IOException { + writer.writeString(""); + assertEquals("\"\"", output.toString()); + } + + @Test + public void writeStingescapesBackslashes() throws IOException { + writer.writeString("foo\\bar"); + assertEquals("\"foo\\\\bar\"", output.toString()); + } + + @Test + public void writeArrayParts() throws IOException { + writer.writeArrayOpen(); + writer.writeArraySeparator(); + writer.writeArrayClose(); + assertEquals("[,]", output.toString()); + } + + @Test + public void writeObjectParts() throws IOException { + writer.writeObjectOpen(); + writer.writeMemberSeparator(); + writer.writeObjectSeparator(); + writer.writeObjectClose(); + assertEquals("{:,}", output.toString()); + } + + @Test + public void writeMemberNameempty() throws IOException { + writer.writeMemberName(""); + assertEquals("\"\"", output.toString()); + } + + @Test + public void writeMemberNameescapesBackslashes() throws IOException { + writer.writeMemberName("foo\\bar"); + assertEquals("\"foo\\\\bar\"", output.toString()); + } + + @Test + public void escapesQuotes() throws IOException { + writer.writeString("a\"b"); + assertEquals("\"a\\\"b\"", output.toString()); + } + + @Test + public void escapesEscapedQuotes() throws IOException { + writer.writeString("foo\\\"bar"); + assertEquals("\"foo\\\\\\\"bar\"", output.toString()); + } + + @Test + public void escapesNewLine() throws IOException { + writer.writeString("foo\nbar"); + assertEquals("\"foo\\nbar\"", output.toString()); + } + + @Test + public void escapesWindowsNewLine() throws IOException { + writer.writeString("foo\r\nbar"); + assertEquals("\"foo\\r\\nbar\"", output.toString()); + } + + @Test + public void escapesTabs() throws IOException { + writer.writeString("foo\tbar"); + assertEquals("\"foo\\tbar\"", output.toString()); + } + + @Test + public void escapesSpecialCharacters() throws IOException { + writer.writeString("foo\u2028bar\u2029"); + assertEquals("\"foo\\u2028bar\\u2029\"", output.toString()); + } + + @Test + public void escapesZeroCharacter() throws IOException { + writer.writeString(string('f', 'o', 'o', (char) 0, 'b', 'a', 'r')); + assertEquals("\"foo\\u0000bar\"", output.toString()); + } + + @Test + public void escapesEscapeCharacter() throws IOException { + writer.writeString(string('f', 'o', 'o', (char) 27, 'b', 'a', 'r')); + assertEquals("\"foo\\u001bbar\"", output.toString()); + } + + @Test + public void escapesControlCharacters() throws IOException { + writer.writeString(string((char) 1, (char) 8, (char) 15, (char) 16, (char) 31)); + assertEquals("\"\\u0001\\u0008\\u000f\\u0010\\u001f\"", output.toString()); + } + + @Test + public void escapesFirstChar() throws IOException { + writer.writeString(string('\\', 'x')); + assertEquals("\"\\\\x\"", output.toString()); + } + + @Test + public void escapesLastChar() throws IOException { + writer.writeString(string('x', '\\')); + assertEquals("\"x\\\\\"", output.toString()); + } + +} diff --git a/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/LargeFileTest.java b/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/LargeFileTest.java new file mode 100644 index 0000000..7dcf6d1 --- /dev/null +++ b/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/LargeFileTest.java @@ -0,0 +1,29 @@ +package org.xbib.datastructures.json.test; + +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; +import org.xbib.datastructures.json.DefaultHandler; +import org.xbib.datastructures.json.JsonReader; +import java.io.BufferedReader; +import java.io.InputStreamReader; +import java.io.StringReader; +import java.nio.file.Files; +import java.nio.file.Paths; +import java.util.zip.GZIPInputStream; + +public class LargeFileTest { + + @Disabled + @Test + public void largeFileTest() throws Exception { + try (BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(new GZIPInputStream(Files.newInputStream(Paths.get("/Users/joerg/jam.jsonlines.gz")))))) { + bufferedReader.lines().forEach(line -> { + try { + new JsonReader(new StringReader(line), new DefaultHandler()).parse(); + } catch (Exception e) { + throw new RuntimeException(line, e); + } + }); + } + } +} diff --git a/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/PrettyPrintTest.java b/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/PrettyPrintTest.java new file mode 100755 index 0000000..a2d7d5d --- /dev/null +++ b/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/PrettyPrintTest.java @@ -0,0 +1,103 @@ +package org.xbib.datastructures.json.test; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNotSame; +import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.junit.jupiter.api.Assertions.fail; +import static org.mockito.Mockito.mock; + +import org.junit.jupiter.api.Test; +import org.xbib.datastructures.json.JsonArray; +import org.xbib.datastructures.json.JsonObject; +import org.xbib.datastructures.json.JsonWriter; +import org.xbib.datastructures.json.JsonWriterConfig; +import java.io.IOException; +import java.io.StringWriter; +import java.io.Writer; +import java.util.Locale; + +public class PrettyPrintTest { + + @Test + public void testIndentWithSpaces_emptyArray() throws IOException { + StringWriter sw = new StringWriter(); + JsonWriter output = JsonWriterConfig.prettyPrint(2).createWriter(sw); + new JsonArray().write(output); + assertEquals("[\n \n]", sw.toString()); + } + + @Test + public void testIndentWithSpaces_emptyObject() throws IOException { + StringWriter sw = new StringWriter(); + JsonWriter output = JsonWriterConfig.prettyPrint(2).createWriter(sw); + new JsonObject().write(output); + assertEquals("{\n \n}", sw.toString()); + } + + @Test + public void testIndentWithSpaces_array() throws IOException { + StringWriter sw = new StringWriter(); + JsonWriter output = JsonWriterConfig.prettyPrint(2).createWriter(sw); + new JsonArray().add(23).add(42).write(output); + assertEquals("[\n 23,\n 42\n]", sw.toString()); + } + + @Test + public void testIndentWithSpaces_nestedArray() throws IOException { + StringWriter sw = new StringWriter(); + JsonWriter output = JsonWriterConfig.prettyPrint(2).createWriter(sw); + new JsonArray().add(23).add(new JsonArray().add(42)).write(output); + assertEquals("[\n 23,\n [\n 42\n ]\n]", sw.toString()); + } + + @Test + public void testIndentWithSpaces_object() throws IOException { + StringWriter sw = new StringWriter(); + JsonWriter output = JsonWriterConfig.prettyPrint(2).createWriter(sw); + new JsonObject().add("a", 23).add("b", 42).write(output); + assertEquals("{\n \"a\": 23,\n \"b\": 42\n}", sw.toString()); + } + + @Test + public void testIndentWithSpaces_nestedObject() throws IOException { + StringWriter sw = new StringWriter(); + JsonWriter output = JsonWriterConfig.prettyPrint(2).createWriter(sw); + new JsonObject().add("a", 23).add("b", new JsonObject().add("c", 42)).write(output); + assertEquals("{\n \"a\": 23,\n \"b\": {\n \"c\": 42\n }\n}", sw.toString()); + } + + @Test + public void testIndentWithSpaces_zero() throws IOException { + StringWriter sw = new StringWriter(); + JsonWriter output = JsonWriterConfig.prettyPrint(0).createWriter(sw); + new JsonArray().add(23).add(42).write(output); + assertEquals("[\n23,\n42\n]", sw.toString()); + } + + @Test + public void testIndentWithSpaces_one() throws IOException { + StringWriter sw = new StringWriter(); + JsonWriter output = JsonWriterConfig.prettyPrint(1).createWriter(sw); + new JsonArray().add(23).add(42).write(output); + assertEquals("[\n 23,\n 42\n]", sw.toString()); + } + + @Test + public void testIndentWithSpaces_failsWithNegativeValues() { + try { + JsonWriterConfig.prettyPrint(-1); + fail(); + } catch (IllegalArgumentException ex) { + assertTrue(ex.getMessage().toLowerCase(Locale.US).contains("negative")); + } + } + + @Test + public void testIndentWithSpaces_createsIndependentInstances() { + Writer writer = mock(Writer.class); + JsonWriterConfig config = JsonWriterConfig.prettyPrint(1); + Object instance1 = config.createWriter(writer); + Object instance2 = config.createWriter(writer); + assertNotSame(instance1, instance2); + } +} diff --git a/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/package-info.java b/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/package-info.java new file mode 100644 index 0000000..9a41b11 --- /dev/null +++ b/datastructures-json-minimal/src/test/java/org/xbib/datastructures/json/test/package-info.java @@ -0,0 +1 @@ +package org.xbib.datastructures.json.test; diff --git a/datastructures-json-noggit/src/main/java/org/noggit/CharArr.java b/datastructures-json-noggit/src/main/java/org/noggit/CharArr.java new file mode 100755 index 0000000..b1df206 --- /dev/null +++ b/datastructures-json-noggit/src/main/java/org/noggit/CharArr.java @@ -0,0 +1,376 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.noggit; + + +import java.io.IOException; +import java.io.Reader; +import java.io.Writer; +import java.nio.CharBuffer; + +// CharArr origins +// V1.0 7/06/97 +// V1.1 9/21/99 +// V1.2 2/02/04 // Java5 features +// V1.3 11/26/06 // Make safe for Java 1.4, work into Noggit +// @author yonik + + +// Java5 version could look like the following: +// public class CharArr implements CharSequence, Appendable, Readable, Closeable { + + +/** + * @author yonik + * @version $Id: CharArr.java 583538 2007-10-10 16:53:02Z yonik $ + */ +public class CharArr implements CharSequence, Appendable { + protected char[] buf; + protected int start; + protected int end; + + public CharArr() { + this(32); + } + + public CharArr(int size) { + buf = new char[size]; + } + + public CharArr(char[] arr, int start, int end) { + set(arr,start,end); + } + + public void setStart(int start) { this.start = start; } + public void setEnd(int end) { this.end = end; } + public void set(char[] arr, int start, int end) { + this.buf = arr; + this.start = start; + this.end = end; + } + + public char[] getArray() { return buf; } + public int getStart() { return start; } + public int getEnd() { return end; } + public int size() { return end-start; } + @Override + public int length() { return size(); } + + /** The capacity of the buffer when empty (getArray().size()) */ + public int capacity() { return buf.length; } + + + @Override + public char charAt(int index) { + return buf[start+index]; + } + + @Override + public CharArr subSequence(int start, int end) { + return new CharArr(buf, this.start+start, this.start+end); + } + + public int read() throws IOException { + if (start>=end) return -1; + return buf[start++]; + } + + public int read(char cbuf[], int off, int len) { + //TODO + return 0; + } + + public void unsafeWrite(char b) { + buf[end++] = b; + } + + public void unsafeWrite(int b) { unsafeWrite((char)b); } + + public void unsafeWrite(char b[], int off, int len) { + System.arraycopy(b, off, buf, end, len); + end += len; + } + + protected void resize(int len) { + char newbuf[] = new char[Math.max(buf.length << 1, len)]; + System.arraycopy(buf, start, newbuf, 0, size()); + buf = newbuf; + } + + public void reserve(int num) { + if (end + num > buf.length) resize(end + num); + } + + public void write(char b) { + if (end >= buf.length) { + resize(end+1); + } + unsafeWrite(b); + } + + public final void write(int b) { write((char)b); } + + public final void write(char[] b) { + write(b,0,b.length); + } + + public void write(char b[], int off, int len) { + reserve(len); + unsafeWrite(b, off, len); + } + + public final void write(CharArr arr) { + write(arr.buf, arr.start, arr.end-arr.start); + } + + public final void write(String s) { + write(s, 0, s.length()); + } + + public void write(String s, int stringOffset, int len) { + reserve(len); + s.getChars(stringOffset, len, buf, end); + end += len; + } + + public void flush() { + } + + public final void reset() { + start = end = 0; + } + + public void close() { + } + + public char[] toCharArray() { + char newbuf[] = new char[size()]; + System.arraycopy(buf, start, newbuf, 0, size()); + return newbuf; + } + + + @Override + public String toString() { + return new String(buf, start, size()); + } + + public int read(CharBuffer cb) throws IOException { + + /*** + int sz = size(); + if (sz<=0) return -1; + if (sz>0) cb.put(buf, start, sz); + return -1; + ***/ + + int sz = size(); + if (sz>0) cb.put(buf, start, sz); + start=end; + while (true) { + fill(); + int s = size(); + if (s==0) return sz==0 ? -1 : sz; + sz += s; + cb.put(buf, start, s); + } + } + + + public int fill() throws IOException { + return 0; // or -1? + } + + //////////////// Appendable methods ///////////// + @Override + public final Appendable append(CharSequence csq) throws IOException { + return append(csq, 0, csq.length()); + } + + @Override + public Appendable append(CharSequence csq, int start, int end) throws IOException { + write(csq.subSequence(start, end).toString()); + return null; + } + + @Override + public final Appendable append(char c) throws IOException { + write(c); + return this; + } +} + + +class NullCharArr extends CharArr { + public NullCharArr() { + super(new char[1],0,0); + } + @Override + public void unsafeWrite(char b) {} + + @Override + public void unsafeWrite(char b[], int off, int len) {} + + @Override + public void unsafeWrite(int b) {} + + @Override + public void write(char b) {} + + @Override + public void write(char b[], int off, int len) {} + + @Override + public void reserve(int num) {} + + @Override + protected void resize(int len) {} + + @Override + public Appendable append(CharSequence csq, int start, int end) throws IOException { + return this; + } + + @Override + public char charAt(int index) { + return 0; + } + + @Override + public void write(String s, int stringOffset, int len) { + } +} + + + +// IDEA: a subclass that refills the array from a reader? +class CharArrReader extends CharArr { + protected final Reader in; + + public CharArrReader(Reader in, int size) { + super(size); + this.in = in; + } + + @Override + public int read() throws IOException { + if (start>=end) fill(); + return start>=end ? -1 : buf[start++]; + } + + @Override + public int read(CharBuffer cb) throws IOException { + // empty the buffer and then read direct + int sz = size(); + if (sz>0) cb.put(buf,start,end); + int sz2 = in.read(cb); + if (sz2>=0) return sz+sz2; + return sz>0 ? sz : -1; + } + + @Override + public int fill() throws IOException { + if (start>=end) { + reset(); + } else if (start>0) { + System.arraycopy(buf, start, buf, 0, size()); + end=size(); start=0; + } + /*** + // fill fully or not??? + do { + int sz = in.read(buf,end,buf.length-end); + if (sz==-1) return; + end+=sz; + } while (end < buf.length); + ***/ + + int sz = in.read(buf,end,buf.length-end); + if (sz>0) end+=sz; + return sz; + } + +} + + + +class CharArrWriter extends CharArr { + protected Writer sink; + + @Override + public void flush() { + try { + sink.write(buf, start, end-start); + } catch (IOException e) { + throw new RuntimeException(e); + } + start = end = 0; + } + + @Override + public void write(char b) { + if (end >= buf.length) { + flush(); + } + unsafeWrite(b); + } + + @Override + public void write(char b[], int off, int len) { + int space = buf.length - end; + if (len < space) { + unsafeWrite(b, off, len); + } else if (len < buf.length) { + unsafeWrite(b, off, space); + flush(); + unsafeWrite(b, off+space, len-space); + } else { + flush(); + try { + sink.write(b, off, len); + } catch (IOException e) { + throw new RuntimeException(e); + } + } + } + + @Override + public void write(String s, int stringOffset, int len) { + int space = buf.length - end; + if (len < space) { + s.getChars(stringOffset, stringOffset+len, buf, end); + end += len; + } else if (len < buf.length) { + // if the data to write is small enough, buffer it. + s.getChars(stringOffset, stringOffset+space, buf, end); + flush(); + s.getChars(stringOffset+space, stringOffset+len, buf, 0); + end = len-space; + } else { + flush(); + // don't buffer, just write to sink + try { + sink.write(s, stringOffset, len); + } catch (IOException e) { + throw new RuntimeException(e); + } + + } + } +} + diff --git a/datastructures-json-noggit/src/main/java/org/noggit/CharUtil.java b/datastructures-json-noggit/src/main/java/org/noggit/CharUtil.java new file mode 100755 index 0000000..2993754 --- /dev/null +++ b/datastructures-json-noggit/src/main/java/org/noggit/CharUtil.java @@ -0,0 +1,54 @@ +/** + * Copyright 2006- Yonik Seeley + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.noggit; + + +/** + * @author yonik + * @version $Id: CharUtil.java 479919 2006-11-28 05:53:55Z yonik $ + */ +public class CharUtil { + + // belongs in number utils or charutil? + public long parseLong(char[] arr, int start, int end) { + long x = 0; + boolean negative = arr[start] == '-'; + for (int i=negative ? start+1 : start; i=0) { + int c = a[a_start] - b[b_start]; + if (c!=0) return c; + a_start++; b_start++; + } + return a_len-b_len; + } + +} diff --git a/datastructures-json-noggit/src/main/java/org/noggit/JSONParser.java b/datastructures-json-noggit/src/main/java/org/noggit/JSONParser.java new file mode 100755 index 0000000..2a13bcd --- /dev/null +++ b/datastructures-json-noggit/src/main/java/org/noggit/JSONParser.java @@ -0,0 +1,1234 @@ +/** + * Copyright 2006- Yonik Seeley + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.noggit; + +import java.io.IOException; +import java.io.Reader; + +/** + * @author yonik + * @version $Id: JSONParser.java 1099557 2011-05-04 18:54:26Z yonik $ + */ + +public class JSONParser { + + /** Event indicating a JSON string value, including member names of objects */ + public static final int STRING=1; + /** Event indicating a JSON number value which fits into a signed 64 bit integer */ + public static final int LONG=2; + /** Event indicating a JSON number value which has a fractional part or an exponent + * and with string length <= 23 chars not including sign. This covers + * all representations of normal values for Double.toString(). + */ + public static final int NUMBER=3; + /** Event indicating a JSON number value that was not produced by toString of any + * Java primitive numerics such as Double or Long. It is either + * an integer outside the range of a 64 bit signed integer, or a floating + * point value with a string representation of more than 23 chars. + */ + public static final int BIGNUMBER=4; + /** Event indicating a JSON boolean */ + public static final int BOOLEAN=5; + /** Event indicating a JSON null */ + public static final int NULL=6; + /** Event indicating the start of a JSON object */ + public static final int OBJECT_START=7; + /** Event indicating the end of a JSON object */ + public static final int OBJECT_END=8; + /** Event indicating the start of a JSON array */ + public static final int ARRAY_START=9; + /** Event indicating the end of a JSON array */ + public static final int ARRAY_END=10; + /** Event indicating the end of input has been reached */ + public static final int EOF=11; + + + /** Flags to control parsing behavior */ + public static final int ALLOW_COMMENTS = 1 << 0; + public static final int ALLOW_SINGLE_QUOTES = 1 << 1; + public static final int ALLOW_BACKSLASH_ESCAPING_ANY_CHARACTER = 1 << 2; + public static final int ALLOW_UNQUOTED_KEYS = 1 << 3; + public static final int ALLOW_UNQUOTED_STRING_VALUES = 1 << 4; + /** ALLOW_EXTRA_COMMAS causes any number of extra commas in arrays and objects to be ignored + * Note that a trailing comma in [] would be [,] (hence calling the feature "trailing" commas + * is either limiting or misleading. Since trailing commas is fundamentally incompatible with any future + * "fill-in-missing-values-with-null", it was decided to extend this feature to handle any + * number of extra commas. + */ + public static final int ALLOW_EXTRA_COMMAS = 1 << 5; + public static final int ALLOW_MISSING_COLON_COMMA_BEFORE_OBJECT = 1 << 6; + public static final int OPTIONAL_OUTER_BRACES = 1 << 7; + + public static final int FLAGS_STRICT = 0; + public static final int FLAGS_DEFAULT = ALLOW_COMMENTS | ALLOW_SINGLE_QUOTES | ALLOW_BACKSLASH_ESCAPING_ANY_CHARACTER | ALLOW_UNQUOTED_KEYS | ALLOW_UNQUOTED_STRING_VALUES | ALLOW_EXTRA_COMMAS; + + public static class ParseException extends RuntimeException { + public ParseException(String msg) { + super(msg); + } + } + + public static String getEventString( int e ) + { + switch( e ) + { + case STRING: return "STRING"; + case LONG: return "LONG"; + case NUMBER: return "NUMBER"; + case BIGNUMBER: return "BIGNUMBER"; + case BOOLEAN: return "BOOLEAN"; + case NULL: return "NULL"; + case OBJECT_START: return "OBJECT_START"; + case OBJECT_END: return "OBJECT_END"; + case ARRAY_START: return "ARRAY_START"; + case ARRAY_END: return "ARRAY_END"; + case EOF: return "EOF"; + } + return "Unknown: "+e; + } + + private static final CharArr devNull = new NullCharArr(); + + protected int flags = FLAGS_DEFAULT; + + protected final char[] buf; // input buffer with JSON text in it + protected int start; // current position in the buffer + protected int end; // end position in the buffer (one past last valid index) + protected final Reader in; // optional reader to obtain data from + protected boolean eof=false; // true if the end of the stream was reached. + protected long gpos; // global position = gpos + start + + protected int event; // last event read + + protected int stringTerm; // The terminator for the last string we read: single quote, double quote, or 0 for unterminated. + + protected boolean missingOpeningBrace = false; + + public JSONParser(Reader in) { + this(in, new char[8192]); + // 8192 matches the default buffer size of a BufferedReader so double + // buffering of the data is avoided. + } + + public JSONParser(Reader in, char[] buffer) { + this.in = in; + this.buf = buffer; + } + + // idea - if someone passes us a CharArrayReader, we could + // directly use that buffer as it's protected. + + public JSONParser(char[] data, int start, int end) { + this.in = null; + this.buf = data; + this.start = start; + this.end = end; + } + + public JSONParser(String data) { + this(data, 0, data.length()); + } + + public JSONParser(String data, int start, int end) { + this.in = null; + this.start = start; + this.end = end; + this.buf = new char[end-start]; + data.getChars(start,end,buf,0); + } + + public int getFlags() { + return flags; + } + + public int setFlags(int flags) { + int oldFlags = flags; + this.flags = flags; + return oldFlags; + } + + // temporary output buffer + private final CharArr out = new CharArr(64); + + // We need to keep some state in order to (at a minimum) know if + // we should skip ',' or ':'. + private byte[] stack = new byte[16]; + private int ptr=0; // pointer into the stack of parser states + private byte state=0; // current parser state + + // parser states stored in the stack + private static final byte DID_OBJSTART =1; // '{' just read + private static final byte DID_ARRSTART =2; // '[' just read + private static final byte DID_ARRELEM =3; // array element just read + private static final byte DID_MEMNAME =4; // object member name (map key) just read + private static final byte DID_MEMVAL =5; // object member value (map val) just read + + // info about value that was just read (or is in the middle of being read) + private int valstate; + + // push current parser state (use at start of new container) + private final void push() { + if (ptr >= stack.length) { + // doubling here is probably overkill, but anything that needs to double more than + // once (32 levels deep) is very atypical anyway. + byte[] newstack = new byte[stack.length<<1]; + System.arraycopy(stack,0,newstack,0,stack.length); + stack = newstack; + } + stack[ptr++] = state; + } + + // pop parser state (use at end of container) + private final void pop() { + if (--ptr<0) { + throw err("Unbalanced container"); + } else { + state = stack[ptr]; + } + } + + protected void fill() throws IOException { + if (in!=null) { + gpos += end; + start=0; + int num = in.read(buf,0,buf.length); + end = num>=0 ? num : 0; + } + if (start>=end) eof=true; + } + + private void getMore() throws IOException { + fill(); + if (start>=end) { + throw err(null); + } + } + + protected int getChar() throws IOException { + if (start>=end) { + fill(); + if (start>=end) return -1; + } + return buf[start++]; + } + + /** Returns true if the given character is considered to be whitespace. + * One difference between Java's Character.isWhitespace() is that this method + * considers a hard space (non-breaking space, or nbsp) to be whitespace. + */ + protected static final boolean isWhitespace(int ch) { + return (Character.isWhitespace(ch) || ch==0x00a0); + } + + private static final long WS_MASK=(1L<<' ')|(1L<<'\t')|(1L<<'\r')|(1L<<'\n')|(1L<<'#')|(1L<<'/')|(0x01); // set 1 bit so 0xA0 will be flagged as whitespace + protected int getCharNWS() throws IOException { + for (;;) { + int ch = getChar(); + // getCharNWS is normally called in the context of expecting certain JSON special characters + // such as ":}"]," + // all of these characters are below 64 (including comment chars '/' and '#', so we can make this the fast path + // even w/o checking the range first. We'll only get some false-positives while using bare strings (chars "IJMc") + if (((WS_MASK >> ch) & 0x01) == 0) { + return ch; + } else if (ch <= ' ') { // this will only be true if one of the whitespace bits was set + continue; + } else if (ch=='/') { + getSlashComment(); + } else if (ch=='#') { + getNewlineComment(); + } else if (!isWhitespace(ch)) { // we'll only reach here with certain bare strings, errors, or strange whitespace like 0xa0 + return ch; + } + + /*** + // getCharNWS is normally called in the context of expecting certain JSON special characters + // such as ":}"]," + // all of these characters are below 64 (including comment chars '/' and '#', so we can make this the fast path + if (ch < 64) { + if (((WS_MASK >> ch) & 0x01) == 0) return ch; + if (ch <= ' ') continue; // whitespace below a normal space + if (ch=='/') { + getSlashComment(); + } else if (ch=='#') { + getNewlineComment(); + } + } else if (!isWhitespace(ch)) { // check for higher whitespace like 0xA0 + return ch; + } + ***/ + + /** older code + switch (ch) { + case ' ' : + case '\t' : + case '\r' : + case '\n' : + continue outer; + case '#' : + getNewlineComment(); + continue outer; + case '/' : + getSlashComment(); + continue outer; + default: + return ch; + } + **/ + } + } + + protected int getCharNWS(int ch) throws IOException { + for (;;) { + // getCharNWS is normally called in the context of expecting certain JSON special characters + // such as ":}"]," + // all of these characters are below 64 (including comment chars '/' and '#', so we can make this the fast path + // even w/o checking the range first. We'll only get some false-positives while using bare strings (chars "IJMc") + if (((WS_MASK >> ch) & 0x01) == 0) { + return ch; + } else if (ch <= ' ') { // this will only be true if one of the whitespace bits was set + // whitespace... get new char at bottom of loop + } else if (ch == '/') { + getSlashComment(); + } else if (ch == '#') { + getNewlineComment(); + } else if (!isWhitespace(ch)) { // we'll only reach here with certain bare strings, errors, or strange whitespace like 0xa0 + return ch; + } + ch = getChar(); + } + } + + protected int getCharExpected(int expected) throws IOException { + for(;;) { + int ch = getChar(); + if (ch==expected) return expected; + if (ch==' ') continue; + return getCharNWS(ch); + } + } + + protected void getNewlineComment() throws IOException { + // read a # or a //, so go until newline + for (;;) { + int ch = getChar(); + // don't worry about DOS /r/n... we'll stop on the \r and let the rest of the whitespace + // eater consume the \n + if (ch == '\n' || ch == '\r' || ch == -1) { + return; + } + } + } + + protected void getSlashComment() throws IOException { + int ch = getChar(); + if (ch == '/') { + getNewlineComment(); + return; + } + + if (ch != '*') { + throw err("Invalid comment: expected //, /*, or #"); + } + + ch = getChar(); + for (;;) { + if (ch == '*') { + ch = getChar(); + if (ch == '/') { + return; + } else if (ch == '*') { + // handle cases of *******/ + continue; + } + } + if (ch == -1) { + return; + } + ch = getChar(); + } + } + + + protected boolean matchBareWord(char[] arr) throws IOException { + for (int i=1; i0) start--; // backup one char + String chs = "char=" + ((start>=end) ? "(EOF)" : "" + buf[start]); + String pos = "position=" + (gpos+start); + String tot = chs + ',' + pos + getContext(); + if (msg==null) { + if (start>=end) msg = "Unexpected EOF"; + else msg="JSON Parse Error"; + } + return new ParseException(msg + ": " + tot); + } + + private String getContext() { + String context = ""; + if (start>=0) { + context += " AFTER='" + errEscape(Math.max(start - 60, 0), start + 1) + "'"; + } + if (start=b) return ""; + return new String(buf, a, b-a).replaceAll("\\s+"," "); + } + + + private boolean bool; // boolean value read + private long lval; // long value read + private int nstate; // current state while reading a number + private static final int HAS_FRACTION = 0x01; // nstate flag, '.' already read + private static final int HAS_EXPONENT = 0x02; // nstate flag, '[eE][+-]?[0-9]' already read + + /** Returns the long read... only significant if valstate==LONG after + * this call. firstChar should be the first numeric digit read. + */ + private long readNumber(int firstChar, boolean isNeg) throws IOException { + out.unsafeWrite(firstChar); // unsafe OK since we know output is big enough + // We build up the number in the negative plane since it's larger (by one) than + // the positive plane. + long v = '0' - firstChar; + // can't overflow a long in 18 decimal digits (i.e. 17 additional after the first). + // we also need 22 additional to handle double so we'll handle in 2 separate loops. + int i; + for (i=0; i<17; i++) { + int ch = getChar(); + // TODO: is this switch faster as an if-then-else? + switch(ch) { + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + v = v*10 - (ch-'0'); + out.unsafeWrite(ch); + continue; + case '.': + out.unsafeWrite('.'); + valstate = readFrac(out,22-i); + return 0; + case 'e': + case 'E': + out.unsafeWrite(ch); + nstate=0; + valstate = readExp(out,22-i); + return 0; + default: + // return the number, relying on nextEvent() to return an error + // for invalid chars following the number. + if (ch!=-1) --start; // push back last char if not EOF + + valstate = LONG; + return isNeg ? v : -v; + } + } + + // after this, we could overflow a long and need to do extra checking + boolean overflow = false; + long maxval = isNeg ? Long.MIN_VALUE : -Long.MAX_VALUE; + + for (; i<22; i++) { + int ch = getChar(); + switch(ch) { + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + if (v < (0x8000000000000000L/10)) overflow=true; // can't multiply by 10 w/o overflowing + v *= 10; + int digit = ch - '0'; + if (v < maxval + digit) overflow=true; // can't add digit w/o overflowing + v -= digit; + out.unsafeWrite(ch); + continue; + case '.': + out.unsafeWrite('.'); + valstate = readFrac(out,22-i); + return 0; + case 'e': + case 'E': + out.unsafeWrite(ch); + nstate=0; + valstate = readExp(out,22-i); + return 0; + default: + // return the number, relying on nextEvent() to return an error + // for invalid chars following the number. + if (ch!=-1) --start; // push back last char if not EOF + + valstate = overflow ? BIGNUMBER : LONG; + return isNeg ? v : -v; + } + } + + + nstate=0; + valstate = BIGNUMBER; + return 0; + } + + + // read digits right of decimal point + private int readFrac(CharArr arr, int lim) throws IOException { + nstate = HAS_FRACTION; // deliberate set instead of '|' + while(--lim>=0) { + int ch = getChar(); + if (ch>='0' && ch<='9') { + arr.write(ch); + } else if (ch=='e' || ch=='E') { + arr.write(ch); + return readExp(arr,lim); + } else { + if (ch!=-1) start--; // back up + return NUMBER; + } + } + return BIGNUMBER; + } + + + // call after 'e' or 'E' has been seen to read the rest of the exponent + private int readExp(CharArr arr, int lim) throws IOException { + nstate |= HAS_EXPONENT; + int ch = getChar(); lim--; + + if (ch=='+' || ch=='-') { + arr.write(ch); + ch = getChar(); lim--; + } + + // make sure at least one digit is read. + if (ch<'0' || ch>'9') { + throw err("missing exponent number"); + } + arr.write(ch); + + return readExpDigits(arr,lim); + } + + // continuation of readExpStart + private int readExpDigits(CharArr arr, int lim) throws IOException { + while (--lim>=0) { + int ch = getChar(); + if (ch>='0' && ch<='9') { + arr.write(ch); + } else { + if (ch!=-1) start--; // back up + return NUMBER; + } + } + return BIGNUMBER; + } + + private void continueNumber(CharArr arr) throws IOException { + if (arr != out) arr.write(out); + + if ((nstate & HAS_EXPONENT)!=0){ + readExpDigits(arr, Integer.MAX_VALUE); + return; + } + if (nstate != 0) { + readFrac(arr, Integer.MAX_VALUE); + return; + } + + for(;;) { + int ch = getChar(); + if (ch>='0' && ch <='9') { + arr.write(ch); + } else if (ch=='.') { + arr.write(ch); + readFrac(arr,Integer.MAX_VALUE); + return; + } else if (ch=='e' || ch=='E') { + arr.write(ch); + readExp(arr,Integer.MAX_VALUE); + return; + } else { + if (ch!=-1) start--; + return; + } + } + } + + + private int hexval(int hexdig) { + if (hexdig>='0' && hexdig <='9') { + return hexdig-'0'; + } else if (hexdig>='A' && hexdig <='F') { + return hexdig+(10-'A'); + } else if (hexdig>='a' && hexdig <='f') { + return hexdig+(10-'a'); + } + throw err("invalid hex digit"); + } + + // backslash has already been read when this is called + private char readEscapedChar() throws IOException { + int ch = getChar(); + switch (ch) { + case '"' : return '"'; + case '\'' : return '\''; + case '\\' : return '\\'; + case '/' : return '/'; + case 'n' : return '\n'; + case 'r' : return '\r'; + case 't' : return '\t'; + case 'f' : return '\f'; + case 'b' : return '\b'; + case 'u' : + return (char)( + (hexval(getChar()) << 12) + | (hexval(getChar()) << 8) + | (hexval(getChar()) << 4) + | (hexval(getChar()))); + } + if ( (flags & ALLOW_BACKSLASH_ESCAPING_ANY_CHARACTER) != 0 && ch != EOF) { + return (char)ch; + } + throw err("Invalid character escape"); + } + + // a dummy buffer we can use to point at other buffers + private final CharArr tmp = new CharArr(null,0,0); + + private CharArr readStringChars() throws IOException { + if (stringTerm == 0) { + // "out" will already contain the first part of the bare string, so don't reset it + readStringBare(out); + return out; + } + + char terminator = (char) stringTerm; + int i; + for (i=start; i=end) { + arr.write(buf,start,middle-start); + start=middle; + getMore(); + middle=start; + } + int ch = buf[middle++]; + if (ch == terminator) { + int len = middle-start-1; + if (len>0) arr.write(buf,start,len); + start=middle; + return; + } else if (ch=='\\') { + int len = middle-start-1; + if (len>0) arr.write(buf,start,len); + start=middle; + arr.write(readEscapedChar()); + middle=start; + } + } + } + + private void readStringBare(CharArr arr) throws IOException { + if (arr != out) { + arr.append(out); + } + + for(;;) { + int ch = getChar(); + if (!isUnquotedStringChar(ch)) { + if (ch == -1) break; + if (ch == '\\') { + arr.write(readEscapedChar()); + continue; + } + start--; + break; + } + + if (ch == '\\') { + arr.write(readEscapedChar()); + continue; + } + + arr.write(ch); + } + } + + + // isName==true if this is a field name (as opposed to a value) + protected void handleNonDoubleQuoteString(int ch, boolean isName) throws IOException { + if (ch == '\'') { + stringTerm = ch; + if ((flags & ALLOW_SINGLE_QUOTES) == 0) { + throw err("Single quoted strings not allowed"); + } + } else { + if (isName && (flags & ALLOW_UNQUOTED_KEYS) == 0 + || !isName && (flags & ALLOW_UNQUOTED_STRING_VALUES) == 0 + || eof) + { + if (isName) { + throw err("Expected quoted string"); + } else { + throw err(null); + } + } + + if (!isUnquotedStringStart(ch)) { + throw err(null); + } + + stringTerm = 0; // signal for unquoted string + out.reset(); + out.unsafeWrite(ch); + } + } + + private static boolean isUnquotedStringStart(int ch) { + return Character.isJavaIdentifierStart(ch); + } + + // What characters are allowed to continue an unquoted string + // once we know we are in one. + private static boolean isUnquotedStringChar(int ch) { + return Character.isJavaIdentifierPart(ch) + || ch == '.' + || ch == '-' + || ch == '/'; + + // would checking for a-z first speed up the common case? + + // possibly much more liberal unquoted string handling... + /*** + switch (ch) { + case -1: + case ' ': + case '\t': + case '\r': + case '\n': + case '}': + case ']': + case ',': + case ':': + case '=': // reserved for future use + case '\\': // check for backslash should come after this function call + return false; + } + return true; + ***/ + } + + + /*** alternate implementation + // middle is the pointer to the middle of a buffer to start scanning for a non-string + // character ('"' or "/"). start<=middle=end) { + getMore(); + middle=start; + } else { + start = middle+1; // set buffer pointer to correct spot + if (ch=='"') { + valstate=0; + return; + } else if (ch=='\\') { + arr.write(readEscapedChar()); + if (start>=end) getMore(); + middle=start; + } + } + } + } + ***/ + + + // return the next event when parser is in a neutral state (no + // map separators or array element separators to read + private int next(int ch) throws IOException { + // TODO: try my own form of indirect jump... look up char class and index directly into handling implementation? + for(;;) { + switch (ch) { + case ' ': // this is not the exclusive list of whitespace chars... the rest are handled in default: + case '\t': + case '\r': + case '\n': + ch = getCharNWS(); // calling getCharNWS here seems faster than letting the switch handle it + break; + case '"' : + stringTerm = '"'; + valstate = STRING; + return STRING; + case '\'' : + if ((flags & ALLOW_SINGLE_QUOTES) == 0) { + throw err("Single quoted strings not allowed"); + } + stringTerm = '\''; + valstate = STRING; + return STRING; + case '{' : + push(); + state= DID_OBJSTART; + return OBJECT_START; + case '[': + push(); + state=DID_ARRSTART; + return ARRAY_START; + case '0' : + out.reset(); + //special case '0'? If next char isn't '.' val=0 + ch=getChar(); + if (ch=='.') { + start--; ch='0'; + readNumber('0',false); + return valstate; + } else if (ch>'9' || ch<'0') { + out.unsafeWrite('0'); + if (ch!=-1) start--; + lval = 0; + valstate=LONG; + return LONG; + } else { + throw err("Leading zeros not allowed"); + } + case '1' : + case '2' : + case '3' : + case '4' : + case '5' : + case '6' : + case '7' : + case '8' : + case '9' : + out.reset(); + lval = readNumber(ch,false); + return valstate; + case '-' : + out.reset(); + out.unsafeWrite('-'); + ch = getChar(); + if (ch<'0' || ch>'9') throw err("expected digit after '-'"); + lval = readNumber(ch,true); + return valstate; + case 't': + // TODO: test performance of this non-branching inline version. + // if ((('r'-getChar())|('u'-getChar())|('e'-getChar())) != 0) throw err(""); + if (matchBareWord(JSONUtil.TRUE_CHARS)) { + bool = true; + valstate = BOOLEAN; + return valstate; + } else { + valstate = STRING; + return STRING; + } + case 'f': + if (matchBareWord(JSONUtil.FALSE_CHARS)) { + bool = false; + valstate = BOOLEAN; + return valstate; + } else { + valstate = STRING; + return STRING; + } + case 'n': + if (matchBareWord(JSONUtil.NULL_CHARS)) { + valstate = NULL; + return valstate; + } else { + valstate = STRING; + return STRING; + } + case '/': + getSlashComment(); + ch = getChar(); + break; + case '#': + getNewlineComment(); + ch = getChar(); + break; + case ']': // This only happens with a trailing comma (or an error) + if (state != DID_ARRELEM || (flags & ALLOW_EXTRA_COMMAS)==0) { + throw err("Unexpected array closer ]"); + } + pop(); + return event = ARRAY_END; + case '}': // This only happens with a trailing comma (or an error) + if (state != DID_MEMVAL || (flags & ALLOW_EXTRA_COMMAS)==0) { + throw err("Unexpected object closer }"); + } + pop(); + return event = ARRAY_END; + case ',': // This only happens with input like [1,] + if ((state != DID_ARRELEM && state != DID_MEMVAL) || (flags & ALLOW_EXTRA_COMMAS)==0) { + throw err("Unexpected comma"); + } + ch = getChar(); + break; + case -1: + if (getLevel()>0) throw err("Premature EOF"); + return EOF; + default: + // Handle unusual unicode whitespace like no-break space (0xA0) + if (isWhitespace(ch)) { + ch = getChar(); // getCharNWS() would also work + break; + } + handleNonDoubleQuoteString(ch, false); + valstate = STRING; + return STRING; + // throw err(null); + } + + } + } + + @Override + public String toString() { + return "start="+start+",end="+end+",state="+state+"valstate="+valstate; + } + + + /** Returns the next event encountered in the JSON stream, one of + *
    + *
  • {@link #STRING}
  • + *
  • {@link #LONG}
  • + *
  • {@link #NUMBER}
  • + *
  • {@link #BIGNUMBER}
  • + *
  • {@link #BOOLEAN}
  • + *
  • {@link #NULL}
  • + *
  • {@link #OBJECT_START}
  • + *
  • {@link #OBJECT_END}
  • + *
  • {@link #OBJECT_END}
  • + *
  • {@link #ARRAY_START}
  • + *
  • {@link #ARRAY_END}
  • + *
  • {@link #EOF}
  • + *
+ */ + public int nextEvent() throws IOException { + if (valstate != 0) { + if (valstate == STRING) { + readStringChars2(devNull, start); + } else if (valstate == BIGNUMBER) { + continueNumber(devNull); + } + valstate = 0; + } + + int ch; + outer: for(;;) { + switch (state) { + case 0: + event = next(getChar()); + if (event == STRING && (flags & OPTIONAL_OUTER_BRACES) != 0) { + if (start > 0) start--; + missingOpeningBrace = true; + stringTerm = 0; + valstate = 0; + event = next('{'); + } + return event; + case DID_OBJSTART: + ch = getCharExpected('"'); + if (ch == '}') { + pop(); + return event = OBJECT_END; + } + if (ch == '"') { + stringTerm = ch; + } else if (ch == ',' && (flags & ALLOW_EXTRA_COMMAS) != 0) { + continue outer; + } else { + handleNonDoubleQuoteString(ch, true); + } + state = DID_MEMNAME; + valstate = STRING; + return event = STRING; + case DID_MEMNAME: + ch = getCharExpected(':'); + if (ch != ':') { + if ((ch == '{' || ch == '[') && (flags & ALLOW_MISSING_COLON_COMMA_BEFORE_OBJECT) != 0) { + start--; + } else { + throw err("Expected key,value separator ':'"); + } + } + state = DID_MEMVAL; // set state first because it might be pushed... + return event = next(getChar()); + case DID_MEMVAL: + ch = getCharExpected(','); + if (ch == '}') { + pop(); + return event = OBJECT_END; + } else if (ch != ',') { + if ((flags & ALLOW_EXTRA_COMMAS) != 0 && (ch == '\'' || ch == '"' || Character.isLetter(ch))) { + start--; + } else if (missingOpeningBrace && ch == -1 && (flags & OPTIONAL_OUTER_BRACES) != 0) { + missingOpeningBrace = false; + pop(); + return event = OBJECT_END; + } else throw err("Expected ',' or '}'"); + } + ch = getCharExpected('"'); + if (ch == '"') { + stringTerm = ch; + } else if ((ch == ',' || ch== '}') && (flags & ALLOW_EXTRA_COMMAS) != 0) { + if (ch==',') continue outer; + pop(); + return event = OBJECT_END; + } else { + handleNonDoubleQuoteString(ch, true); + } + state = DID_MEMNAME; + valstate = STRING; + return event = STRING; + case DID_ARRSTART: + ch = getCharNWS(); + if (ch == ']') { + pop(); + return event = ARRAY_END; + } + state = DID_ARRELEM; // set state first, might be pushed... + return event = next(ch); + case DID_ARRELEM: + ch = getCharExpected(','); + if (ch == ',') { + // state = DID_ARRELEM; // redundant + return event = next(getChar()); + } else if (ch == ']') { + pop(); + return event = ARRAY_END; + } else { + if ((ch == '{' || ch == '[') && (flags & ALLOW_MISSING_COLON_COMMA_BEFORE_OBJECT) != 0) { + return event = next(ch); + } else { + throw err("Expected ',' or ']'"); + } + } + } + } // end for(;;) + } + + public int lastEvent() { + return event; + } + + public boolean wasKey() + { + return state == DID_MEMNAME; + } + + + private void goTo(int what) throws IOException { + if (valstate==what) { valstate=0; return; } + if (valstate==0) { + /*int ev = */nextEvent(); // TODO + if (valstate!=what) { + throw err("type mismatch"); + } + valstate=0; + } + else { + throw err("type mismatch"); + } + } + + /** Returns the JSON string value, decoding any escaped characters. */ + public String getString() throws IOException { + return getStringChars().toString(); + } + + /** Returns the characters of a JSON string value, decoding any escaped characters. + *

The underlying buffer of the returned CharArr should *not* be + * modified as it may be shared with the input buffer. + *

The returned CharArr will only be valid up until + * the next JSONParser method is called. Any required data should be + * read before that point. + */ + public CharArr getStringChars() throws IOException { + goTo(STRING); + return readStringChars(); + } + + /** Reads a JSON string into the output, decoding any escaped characters. */ + public void getString(CharArr output) throws IOException { + goTo(STRING); + readStringChars2(output,start); + } + + /** Reads a number from the input stream and parses it as a long, only if + * the value will in fact fit into a signed 64 bit integer. */ + public long getLong() throws IOException { + goTo(LONG); + return lval; + } + + /** Reads a number from the input stream and parses it as a double */ + public double getDouble() throws IOException { + return Double.parseDouble(getNumberChars().toString()); + } + + /** Returns the characters of a JSON numeric value. + *

The underlying buffer of the returned CharArr should *not* be + * modified as it may be shared with the input buffer. + *

The returned CharArr will only be valid up until + * the next JSONParser method is called. Any required data should be + * read before that point. + */ + public CharArr getNumberChars() throws IOException { + int ev=0; + if (valstate==0) ev = nextEvent(); + + if (valstate == LONG || valstate == NUMBER) { + valstate=0; + return out; + } + else if (valstate==BIGNUMBER) { + continueNumber(out); + valstate=0; + return out; + } else { + throw err("Unexpected " + ev); + } + } + + /** Reads a JSON numeric value into the output. */ + public void getNumberChars(CharArr output) throws IOException { + int ev=0; + if (valstate==0) ev=nextEvent(); + if (valstate == LONG || valstate == NUMBER) output.write(this.out); + else if (valstate==BIGNUMBER) { + continueNumber(output); + } else { + throw err("Unexpected " + ev); + } + valstate=0; + } + + /** Reads a boolean value */ + public boolean getBoolean() throws IOException { + goTo(BOOLEAN); + return bool; + } + + /** Reads a null value */ + public void getNull() throws IOException { + goTo(NULL); + } + + /** + * @return the current nesting level, the number of parent objects or arrays. + */ + public int getLevel() { + return ptr; + } + + public long getPosition() + { + return gpos+start; + } +} diff --git a/datastructures-json-noggit/src/main/java/org/noggit/JSONParserWS.java b/datastructures-json-noggit/src/main/java/org/noggit/JSONParserWS.java new file mode 100644 index 0000000..2da22a4 --- /dev/null +++ b/datastructures-json-noggit/src/main/java/org/noggit/JSONParserWS.java @@ -0,0 +1,139 @@ +/** + * Copyright 2006- Yonik Seeley + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.noggit; + + +import java.io.IOException; +import java.io.Reader; + +public class JSONParserWS extends JSONParser { + + public static abstract class WhitespaceHandler { + public abstract void whitespaceNotification(int state, CharArr whitespace, boolean containsComment); + } + + private CharArr outWS = new CharArr(64); + private WhitespaceHandler wsHandler = new WhitespaceHandler() { + @Override + public void whitespaceNotification(int state, CharArr whitespace, boolean containsComment) { + System.out.println("state=" + state + " comment=" + containsComment + " ws="+whitespace.toString()); + } + }; + + public JSONParserWS(Reader in) { + super(in); + } + + public JSONParserWS(Reader in, char[] buffer) { + super(in, buffer); + } + + public JSONParserWS(char[] data, int start, int end) { + super(data, start, end); + } + + public JSONParserWS(String data) { + super(data); + } + + public JSONParserWS(String data, int start, int end) { + super(data, start, end); + } + + public void setWhitespaceHandler(WhitespaceHandler wsHandler) { + this.wsHandler = wsHandler; + } + + + // TODO: use subclassing if handling comments is sufficiently slower? + protected int getCharNWS() throws IOException { + outWS.reset(); + + outer: for (;;) { + int ch = getChar(); + switch (ch) { + case ' ' : + case '\t' : + case '\r' : + case '\n' : + outWS.write(ch); + continue outer; + case '#' : + getNewlineComment(); + continue outer; + case '/' : + getSlashComment(); + continue outer; + default: + return ch; + } + } + } + + protected void getNewlineComment() throws IOException { + // read a # or a //, so go until newline + for (;;) { + int ch = getChar(); + if (ch != -1) outWS.write(ch); + // don't worry about DOS /r/n... we'll stop on the \r and let the rest of the whitespace + // eater consume the \n + if (ch == '\n' || ch == '\r' || ch == -1) { + return; + } + + + } + } + + protected void getSlashComment() throws IOException { + int ch = getChar(); + if (ch != -1) outWS.write(ch); + + if (ch == '/') { + getNewlineComment(); + return; + } + + if (ch != '*') { + throw err("Invalid comment: expected //, /*, or #"); + } + + ch = getChar(); + if (ch != -1) outWS.write(ch); + + for (;;) { + if (ch == '*') { + ch = getChar(); + if (ch != -1) outWS.write(ch); + + if (ch == '/') { + return; + } else if (ch == '*') { + // handle cases of *******/ + continue; + } + } + if (ch == -1) { + return; + } + ch = getChar(); + if (ch != -1) outWS.write(ch); + } + } + + +} diff --git a/datastructures-json-noggit/src/main/java/org/noggit/JSONUtil.java b/datastructures-json-noggit/src/main/java/org/noggit/JSONUtil.java new file mode 100755 index 0000000..3f51091 --- /dev/null +++ b/datastructures-json-noggit/src/main/java/org/noggit/JSONUtil.java @@ -0,0 +1,195 @@ +/** + * Copyright 2006- Yonik Seeley + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.noggit; + +import java.util.Arrays; + +/** + * @author yonik + * @version $Id: JSONUtil.java 1209632 2011-12-02 18:48:42Z yonik $ + */ + +public class JSONUtil { + public static final char[] TRUE_CHARS = new char[] {'t','r','u','e'}; + public static final char[] FALSE_CHARS = new char[] {'f','a','l','s','e'}; + public static final char[] NULL_CHARS = new char[] {'n','u','l','l'}; + public static final char[] HEX_CHARS = new char[] {'0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f'}; + public static final char VALUE_SEPARATOR = ','; + public static final char NAME_SEPARATOR = ':'; + public static final char OBJECT_START = '{'; + public static final char OBJECT_END = '}'; + public static final char ARRAY_START = '['; + public static final char ARRAY_END = ']'; + + public static String toJSON(Object o) { + CharArr out = new CharArr(); + new JSONWriter(out).write(o); + return out.toString(); + } + + /** + * @param o The object to convert to JSON + * @param indentSize The number of space characters to use as an indent (default 2). 0=newlines but no spaces, -1=no indent at all. + * @return + */ + public static String toJSON(Object o, int indentSize) { + CharArr out = new CharArr(); + new JSONWriter(out,indentSize).write(o); + return out.toString(); + } + + public static void writeNumber(int number, CharArr out) { + out.write(Integer.toString(number)); + } + + public static void writeNumber(long number, CharArr out) { + out.write(Long.toString(number)); + } + + public static void writeNumber(float number, CharArr out) { + out.write(Float.toString(number)); + } + + public static void writeNumber(double number, CharArr out) { + out.write(Double.toString(number)); + } + + public static void writeString(CharArr val, CharArr out) { + writeString(val.getArray(), val.getStart(), val.getEnd(), out); + } + + public static void writeString(char[] val, int start, int end, CharArr out) { + out.write('"'); + writeStringPart(val,start,end,out); + out.write('"'); + } + + public static void writeString(String val, int start, int end, CharArr out) { + out.write('"'); + writeStringPart(val,start,end,out); + out.write('"'); + } + + public static void writeString(CharSequence val, int start, int end, CharArr out) { + out.write('"'); + writeStringPart(val,start,end,out); + out.write('"'); + } + + public static void writeStringPart(char[] val, int start, int end, CharArr out) { + for (int i=start; i=1f, (ch*146087937)&0xd6a01f80) is 0 only for characters that need escaping: " \\ u2028 u2029 + // and has 7 false positives: 204a 4051 802f c022 c044 e04a e04b + if (ch > 0x1f && ((ch * 146087937) & 0xd6a01f80) != 0) { + out.write(ch); + } else { + writeChar(ch, out); + } + } + } + + public static void writeChar(char ch, CharArr out) { + switch(ch) { + case '"': + case '\\': + out.write('\\'); + out.write(ch); + break; + case '\r': out.write('\\'); out.write('r'); break; + case '\n': out.write('\\'); out.write('n'); break; + case '\t': out.write('\\'); out.write('t'); break; + case '\b': out.write('\\'); out.write('b'); break; + case '\f': out.write('\\'); out.write('f'); break; + // case '/': + case '\u2028': // valid JSON, but not valid json script + case '\u2029': + unicodeEscape(ch,out); + break; + default: + if (ch <= 0x1F) { + unicodeEscape(ch,out); + } else { + out.write(ch); + } + } + } + + + public static void writeStringPart(String chars, int start, int end, CharArr out) { + // TODO: write in chunks? + + int toWrite = end - start; + char[] arr = out.getArray(); + int pos = out.getEnd(); + int space = arr.length - pos; + if (space < toWrite) { + writeStringPart((CharSequence)chars, start, end, out); + return; + } + + // get chars directly from String into output array + chars.getChars(start, end, arr, pos); + + int endInOut = pos + toWrite; + out.setEnd(endInOut); + for (int i=pos; i=1f, (ch*146087937)&0xd6a01f80) is 0 only for characters that need escaping: " \\ u2028 u2029 + // and has 7 false positives: 204a 4051 802f c022 c044 e04a e04b + if (ch<=0x1f || ((ch*146087937)&0xd6a01f80)==0 ) { + // We hit a char that needs escaping. do the rest char by char. + out.setEnd(i); + writeStringPart((CharSequence)chars, start+(i-pos), end, out); + return; + } + } + } + + public static void writeStringPart(CharSequence chars, int start, int end, CharArr out) { + for (int i=start; i=1f, (ch*146087937)&0xd6a01f80) is 0 only for characters that need escaping: " \\ u2028 u2029 + // and has 7 false positives: 204a 4051 802f c022 c044 e04a e04b + if ( ch>0x1f && ((ch*146087937)&0xd6a01f80)!=0 ) { + out.write(ch); + } else { + writeChar(ch, out); + } + } + } + + + public static void unicodeEscape(int ch, CharArr out) { + out.write('\\'); + out.write('u'); + out.write(HEX_CHARS[ch>>>12]); + out.write(HEX_CHARS[(ch>>>8)&0xf]); + out.write(HEX_CHARS[(ch>>>4)&0xf]); + out.write(HEX_CHARS[ch&0xf]); + } + + public static void writeNull(CharArr out) { + out.write(NULL_CHARS); + } + + public static void writeBoolean(boolean val, CharArr out) { + out.write(val ? TRUE_CHARS : FALSE_CHARS); + } + +} diff --git a/datastructures-json-noggit/src/main/java/org/noggit/JSONWriter.java b/datastructures-json-noggit/src/main/java/org/noggit/JSONWriter.java new file mode 100755 index 0000000..e014969 --- /dev/null +++ b/datastructures-json-noggit/src/main/java/org/noggit/JSONWriter.java @@ -0,0 +1,349 @@ +/** + * Copyright 2006- Yonik Seeley + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.noggit; + +import java.util.*; + +/** + * @author yonik + * @version $Id: JSONWriter.java 1211150 2011-12-06 21:10:01Z yonik $ + */ +public class JSONWriter { + + /** Implement this interface on your class to support serialization */ + public static interface Writable { + public void write(JSONWriter writer); + } + + protected int level; + protected int indent; + protected final CharArr out; + + /** + * @param out the CharArr to write the output to. + * @param indentSize The number of space characters to use as an indent (default 2). 0=newlines but no spaces, -1=no indent at all. + */ + public JSONWriter(CharArr out, int indentSize) { + this.out = out; + this.indent = indentSize; + } + + public JSONWriter(CharArr out) { + this(out, 2); + } + + public void setIndentSize(int indentSize) { + this.indent = indentSize; + } + + public void indent() { + if (indent >= 0) { + out.write('\n'); + if (indent > 0) { + int spaces = level*indent; + out.reserve(spaces); + for (int i=0; i)o); + } else if (o instanceof Collection) { + write((Collection)o); + } else if (o instanceof Boolean) { + write(((Boolean)o).booleanValue()); + } else if (o instanceof CharSequence) { + writeString((CharSequence)o); + } else if (o instanceof Writable) { + ((Writable) o).write(this); + } else if (o instanceof Object[]) { + write(Arrays.asList((Object[])o)); + } else if (o instanceof int[]) { + write((int[])o); + } else if (o instanceof float[]) { + write((float[])o); + } else if (o instanceof long[]) { + write((long[])o); + } else if (o instanceof double[]) { + write((double[])o); + } else if (o instanceof short[]) { + write((short[])o); + } else if (o instanceof boolean[]) { + write((boolean[])o); + } else if (o instanceof char[]) { + write((char[])o); + } else if (o instanceof byte[]) { + write((byte[])o); + } else { + handleUnknownClass(o); + } + } + + /** Override this method for custom handling of unknown classes. Also see the Writable interface. */ + public void handleUnknownClass(Object o) { + writeString(o.toString()); + } + + public void write(Map val) { + startObject(); + int sz = val.size(); + boolean first = true; + for (Map.Entry entry : val.entrySet()) { + if (first) { + first = false; + } else { + writeValueSeparator(); + } + if (sz>1) indent(); + writeString(entry.getKey().toString()); + writeNameSeparator(); + write(entry.getValue()); + } + endObject(); + } + + public void write(Collection val) { + startArray(); + int sz = val.size(); + boolean first = true; + for (Object o : val) { + if (first) { + first = false; + } else { + writeValueSeparator(); + } + if (sz>1) indent(); + write(o); + } + endArray(); + } + + /** A byte[] may be either a single logical value, or a list of small integers. + * It's up to the implementation to decide. + */ + public void write(byte[] val) { + startArray(); + boolean first = true; + for (short v : val) { + if (first) { + first = false; + } else { + writeValueSeparator(); + } + write(v); + } + endArray(); + } + + public void write(short[] val) { + startArray(); + boolean first = true; + for (short v : val) { + if (first) { + first = false; + } else { + writeValueSeparator(); + } + write(v); + } + endArray(); + } + + public void write(int[] val) { + startArray(); + boolean first = true; + for (int v : val) { + if (first) { + first = false; + } else { + writeValueSeparator(); + } + write(v); + } + endArray(); + } + + public void write(long[] val) { + startArray(); + boolean first = true; + for (long v : val) { + if (first) { + first = false; + } else { + writeValueSeparator(); + } + write(v); + } + endArray(); + } + + public void write(float[] val) { + startArray(); + boolean first = true; + for (float v : val) { + if (first) { + first = false; + } else { + writeValueSeparator(); + } + write(v); + } + endArray(); + } + + public void write(double[] val) { + startArray(); + boolean first = true; + for (double v : val) { + if (first) { + first = false; + } else { + writeValueSeparator(); + } + write(v); + } + endArray(); + } + + public void write(boolean[] val) { + startArray(); + boolean first = true; + for (boolean v : val) { + if (first) { + first = false; + } else { + writeValueSeparator(); + } + write(v); + } + endArray(); + } + + + public void write(short number) { write ((int)number); } + public void write(byte number) { write((int)number); } + + + public void writeNull() { + JSONUtil.writeNull(out); + } + + public void writeString(String str) { + JSONUtil.writeString(str,0,str.length(),out); + } + + public void writeString(CharSequence str) { + JSONUtil.writeString(str,0,str.length(),out); + } + + public void writeString(CharArr str) { + JSONUtil.writeString(str,out); + } + + public void writeStringStart() { + out.write('"'); + } + + public void writeStringChars(CharArr partialStr) { + JSONUtil.writeStringPart(partialStr.getArray(), partialStr.getStart(), partialStr.getEnd(), out); + } + + public void writeStringEnd() { + out.write('"'); + } + + public void write(long number) { + JSONUtil.writeNumber(number,out); + } + + public void write(int number) { + JSONUtil.writeNumber(number,out); + } + + public void write(double number) { + JSONUtil.writeNumber(number,out); + } + + public void write(float number) { + JSONUtil.writeNumber(number,out); + } + + public void write(boolean bool) { + JSONUtil.writeBoolean(bool,out); + } + + public void write(char[] val) { + JSONUtil.writeString(val, 0, val.length, out); + } + + public void writeNumber(CharArr digits) { + out.write(digits); + } + + public void writePartialNumber(CharArr digits) { + out.write(digits); + } + + public void startObject() { + out.write('{'); + level++; + } + + public void endObject() { + out.write('}'); + level--; + } + + public void startArray() { + out.write('['); + level++; + } + + public void endArray() { + out.write(']'); + level--; + } + + public void writeValueSeparator() { + out.write(','); + } + + public void writeNameSeparator() { + out.write(':'); + } + +} + diff --git a/datastructures-json-noggit/src/main/java/org/noggit/ObjectBuilder.java b/datastructures-json-noggit/src/main/java/org/noggit/ObjectBuilder.java new file mode 100644 index 0000000..8cc0051 --- /dev/null +++ b/datastructures-json-noggit/src/main/java/org/noggit/ObjectBuilder.java @@ -0,0 +1,155 @@ +/** + * Copyright 2006- Yonik Seeley + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.noggit; + +import java.util.*; +import java.io.IOException; +import java.math.BigDecimal; +import java.math.BigInteger; + +/** + * @author yonik + * @version $Id$ + */ +public class ObjectBuilder { + + public static Object fromJSON(String json) throws IOException { + JSONParser p = new JSONParser(json); + return getVal(p); + } + + public static Object getVal(JSONParser parser) throws IOException { + return new ObjectBuilder(parser).getVal(); + } + + final JSONParser parser; + + public ObjectBuilder(JSONParser parser) throws IOException { + this.parser = parser; + if (parser.lastEvent()==0) parser.nextEvent(); + } + + + public Object getVal() throws IOException { + int ev = parser.lastEvent(); + switch(ev) { + case JSONParser.STRING: return getString(); + case JSONParser.LONG: return getLong(); + case JSONParser.NUMBER: return getNumber(); + case JSONParser.BIGNUMBER: return getBigNumber(); + case JSONParser.BOOLEAN: return getBoolean(); + case JSONParser.NULL: return getNull(); + case JSONParser.OBJECT_START: return getObject(); + case JSONParser.OBJECT_END: return null; // OR ERROR? + case JSONParser.ARRAY_START: return getArray(); + case JSONParser.ARRAY_END: return null; // OR ERROR? + case JSONParser.EOF: return null; // OR ERROR? + default: return null; // OR ERROR? + } + } + + + public Object getString() throws IOException { + return parser.getString(); + } + + public Object getLong() throws IOException { + return Long.valueOf(parser.getLong()); + } + + public Object getNumber() throws IOException { + CharArr num = parser.getNumberChars(); + String numstr = num.toString(); + double d = Double.parseDouble(numstr); + if (!Double.isInfinite(d)) return Double.valueOf(d); + // TODO: use more efficient constructor in Java5 + return new BigDecimal(num.buf, num.start, num.size()); + } + + public Object getBigNumber() throws IOException { + CharArr num = parser.getNumberChars(); + String numstr = num.toString(); + for(int ch; (ch=num.read())!=-1;) { + if (ch=='.' || ch=='e' || ch=='E') return new BigDecimal(numstr); + } + return new BigInteger(numstr); + } + + public Object getBoolean() throws IOException { + return parser.getBoolean(); + } + + public Object getNull() throws IOException { + parser.getNull(); + return null; + } + + public Object newObject() throws IOException { + return new LinkedHashMap(); + } + + public Object getKey() throws IOException { + return parser.getString(); + } + + @SuppressWarnings("unchecked") + public void addKeyVal(Object map, Object key, Object val) throws IOException { + /* Object prev = */((Map) map).put(key, val); + // TODO: test for repeated value? + } + + public Object objectEnd(Object obj) { + return obj; + } + + + public Object getObject() throws IOException { + Object m = newObject(); + for(;;) { + int ev = parser.nextEvent(); + if (ev==JSONParser.OBJECT_END) return objectEnd(m); + Object key = getKey(); + ev = parser.nextEvent(); + Object val = getVal(); + addKeyVal(m, key, val); + } + } + + public Object newArray() { + return new ArrayList(); + } + + @SuppressWarnings("unchecked") + public void addArrayVal(Object arr, Object val) throws IOException { + ((List)arr).add(val); + } + + public Object endArray(Object arr) { + return arr; + } + + public Object getArray() throws IOException { + Object arr = newArray(); + for(;;) { + int ev = parser.nextEvent(); + if (ev==JSONParser.ARRAY_END) return endArray(arr); + Object val = getVal(); + addArrayVal(arr, val); + } + } + +} diff --git a/datastructures-json-noggit/src/test/java/org/noggit/CharArrTest.java b/datastructures-json-noggit/src/test/java/org/noggit/CharArrTest.java new file mode 100644 index 0000000..d36833e --- /dev/null +++ b/datastructures-json-noggit/src/test/java/org/noggit/CharArrTest.java @@ -0,0 +1,22 @@ +package org.noggit; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import org.junit.jupiter.api.Test; + +/** + * Created by eudoden on 07/01/2016. + */ +public class CharArrTest { + + @Test + public void testFixWriteCharArrToCharArr() throws Exception { + CharArr target = new CharArr(10); + target.append("1"); + assertEquals(1,target.size()); + CharArr source = new CharArr(10); + source.append("23"); + assertEquals(2, source.size()); + target.write(source); + assertEquals(3, target.size()); + } +} \ No newline at end of file diff --git a/datastructures-json-noggit/src/test/java/org/noggit/MyParse.java b/datastructures-json-noggit/src/test/java/org/noggit/MyParse.java new file mode 100755 index 0000000..06ad750 --- /dev/null +++ b/datastructures-json-noggit/src/test/java/org/noggit/MyParse.java @@ -0,0 +1,104 @@ +/** + * Copyright 2006- Yonik Seeley + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.noggit; + +import java.io.StringReader; + +// handling numbers... either put a limit of buffersize on the number +// while reading it all into another buffer, or ??? + +/* +ISSUE: repeated keys in a map... is it an issue? +Leave it to a higher level to validate this? + +The JSON standard says that keys *SHOULD* be unique, not *MUST*!!! +That means we should support this when parsing. +*/ + + +/** + * @author yonik + * @version $Id: MyParse.java 479919 2006-11-28 05:53:55Z yonik $ + */ +public class MyParse { + public static void main(String[] args) throws Exception { + StringReader sr; + sr = new StringReader("\"hello\""); + sr = new StringReader("[\"a\",\"b\"]"); + sr = new StringReader(" [ \"a\" , \"b\" ] "); + sr = new StringReader(" [ 1 , 23, 456,7890 ,999] "); + sr = new StringReader("{}"); + sr = new StringReader("{ \"a\" : 1}"); + sr = new StringReader("[[1]]"); + + JSONParser js = new JSONParser(sr); + int maxEv=100; + for (int i=0; i0 ? buf[0] : -1; + default: break; + } + } + } + + public static int parseJSON(String s) throws IOException { + JSONParser sr = new JSONParser(new StringReader(s)); + for(;;) { + int ev = sr.nextEvent(); + switch (ev) { + case JSONParser.EOF: return 1; + case JSONParser.STRING: return sr.getStringChars().read(); // first char + case JSONParser.LONG: return (int)sr.getLong(); + default: break; + } + } + } + + + public static void main(String[] argv) throws Exception { + int iter = Integer.parseInt(argv[0]); + + String[] xml = { + " 1 2 3 4 5 ", + " 1 2 3 4 5 ", + " val1 val2 val3 val4 val5 ", + "big nesting", + "" + + " val1a val2a val3a val4a val5a " + + " val1b val2b val3b val4b val5b " + + " val1c val2c val3c val4c val5c " + + " val1d val2d val3d val4d val5d " + + " val1e val2e val3e val4e val5e " + + "" + }; + + String[] json = { + "[ 1, 2, 3, 4, 5 ]", + "[ \"1\", \"2\", \"3\", \"4\", \"5\" ] ", + "{ \"k1\":\"val1\", \"k2\":\"val2\", \"k3\":\"val3\", \"k4\":\"val4\", \"k5\":\"val5\" }", + "{\"a\":{\"b\":{\"c\":{\"d\":{\"e\":{\"f\":{\"g\":{\"h\":{\"i\":{\"j\":{}}}}}}}}}}}", + "[" + + "{ \"k1\":\"val1a\", \"k2\":\"val2a\", \"k3\":\"val3a\", \"k4\":\"val4a\", \"k5\":\"val5a\" }," + + "{ \"k1\":\"val1b\", \"k2\":\"val2b\", \"k3\":\"val3b\", \"k4\":\"val4b\", \"k5\":\"val5b\" }," + + "{ \"k1\":\"val1c\", \"k2\":\"val2c\", \"k3\":\"val3c\", \"k4\":\"val4c\", \"k5\":\"val5c\" }," + + "{ \"k1\":\"val1d\", \"k2\":\"val2d\", \"k3\":\"val3d\", \"k4\":\"val4d\", \"k5\":\"val5d\" }," + + "{ \"k1\":\"val1e\", \"k2\":\"val2e\", \"k3\":\"val3e\", \"k4\":\"val4e\", \"k5\":\"val5e\" }" + +"]", + }; + + long start = System.currentTimeMillis(); + + int s = 0; + int ret=0; + for (int i=0; i=xml.length) s=0; + // String val = xml[s]; + // System.out.println(val); + // ret += parseXML(val); + String val = json[s]; + ret += parseJSON(val); + s++; + } + + + long end = System.currentTimeMillis(); + System.out.println("Result:"+ret+", TIME="+(end-start)); + } + ***/ + +} diff --git a/datastructures-json-noggit/src/test/java/org/noggit/TestJSONParser.java b/datastructures-json-noggit/src/test/java/org/noggit/TestJSONParser.java new file mode 100755 index 0000000..4624bf0 --- /dev/null +++ b/datastructures-json-noggit/src/test/java/org/noggit/TestJSONParser.java @@ -0,0 +1,698 @@ +/** + * Copyright 2006- Yonik Seeley + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.noggit; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.junit.jupiter.api.Assertions.fail; +import org.junit.jupiter.api.Test; +import java.io.IOException; +import java.io.StringReader; +import java.util.Map; +import java.util.Random; + + +/** + * @author yonik + * @version $Id: TestJSONParser.java 1099557 2011-05-04 18:54:26Z yonik $ + */ +public class TestJSONParser { + + public static Random r = new Random(); + + // these are to aid in debugging if an unexpected error occurs + static int parserType; + static int bufferSize; + static String parserInput; + static JSONParser lastParser; + + static int flags = JSONParser.FLAGS_DEFAULT; // the default + + public static String lastParser() { + return "parserType=" + parserType + + (parserType==1 ? " bufferSize=" + bufferSize : "") + + " parserInput='" + parserInput + "'" + "flags : " + lastParser.flags; + } + + public static JSONParser getParser(String s) { + return getParser(s, r.nextInt(2), -1); + } + + public static JSONParser getParser(String s, int type, int bufSize) { + parserInput = s; + parserType = type; + + JSONParser parser=null; + switch (type) { + case 0: + // test directly using input buffer + parser = new JSONParser(s.toCharArray(),0,s.length()); + break; + case 1: + // test using Reader... + // small input buffers can help find bugs on boundary conditions + + if (bufSize < 1) bufSize = r.nextInt(25) + 1; + bufferSize = bufSize;// record in case there is an error + parser = new JSONParser(new StringReader(s), new char[bufSize]); + break; + } + if (parser == null) return null; + + lastParser = parser; + + if (flags != JSONParser.FLAGS_DEFAULT) { + parser.setFlags(flags); + } + + return parser; + } + + /** for debugging purposes + public void testSpecific() throws Exception { + JSONParser parser = getParser("[0",1,1); + for (;;) { + int ev = parser.nextEvent(); + if (ev == JSONParser.EOF) { + break; + } else { + System.out.println("got " + JSONParser.getEventString(ev)); + } + } + } + **/ + + public static byte[] events = new byte[256]; + static { + events['{'] = JSONParser.OBJECT_START; + events['}'] = JSONParser.OBJECT_END; + events['['] = JSONParser.ARRAY_START; + events[']'] = JSONParser.ARRAY_END; + events['s'] = JSONParser.STRING; + events['b'] = JSONParser.BOOLEAN; + events['l'] = JSONParser.LONG; + events['n'] = JSONParser.NUMBER; + events['N'] = JSONParser.BIGNUMBER; + events['0'] = JSONParser.NULL; + events['e'] = JSONParser.EOF; + } + + // match parser states with the expected states + public static void parse(JSONParser p, String input, String expected) throws IOException { + expected += "e"; + for (int i=0; i>1) + 1; + for (int j=0; j L(Object... lst) { + return Arrays.asList(lst); + } + public static Object[] A(Object... lst) { + return lst; + } + public static Map O(Object... lst) { + LinkedHashMap map = new LinkedHashMap(); + for (int i=0; i val = new LinkedHashMap(); + val.put("a",1); + val.put("b",2); + writer.write(val); + } + } + + public void testWritable() throws Exception { + test("[{'a':1,'b':2}]", L(new Custom()), -1); + test("[10,{'a':1,'b':2},20]", L(10, new Custom(), 20), -1); + } + + public void testUnknown() throws Exception { + test("['a,\\\"b\\\",c']", L(new Unknown()), -1); + } + +} diff --git a/datastructures-json-noggit/src/test/java/org/noggit/TestObjectBuilder.java b/datastructures-json-noggit/src/test/java/org/noggit/TestObjectBuilder.java new file mode 100644 index 0000000..7bafeb2 --- /dev/null +++ b/datastructures-json-noggit/src/test/java/org/noggit/TestObjectBuilder.java @@ -0,0 +1,102 @@ +/** + * Copyright 2006- Yonik Seeley + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.noggit; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import org.junit.jupiter.api.Test; +import java.io.IOException; +import java.util.*; + +/** + * @author yonik + * @version $Id$ + */ +public class TestObjectBuilder { + + private void test(String val, Object expected) throws IOException { + val = val.replace('\'','"'); + Object v = ObjectBuilder.fromJSON(val); + + String s1 = JSONUtil.toJSON(v,-1); + String s2 = JSONUtil.toJSON(expected,-1); + assertEquals(s1, s2); + + // not make sure that it round-trips correctly + JSONParser p2 = TestJSONParser.getParser(s1); + Object v2 = ObjectBuilder.getVal(p2); + String s3 = JSONUtil.toJSON(v2,-1); + assertEquals(s1, s3); + } + + public static List L(Object... lst) { + return Arrays.asList(lst); + } + + public static Object[] A(Object... lst) { + return lst; + } + + public static Map O(Object... lst) { + LinkedHashMap map = new LinkedHashMap(); + for (int i=0; i vals = new ArrayList(); + static List objs = new ArrayList(); + static boolean ws = false; + static boolean nows = false; + static boolean writer = false; + + public static void main(String[] args) throws Exception { + int i=0; + while (i out = new ArrayList(); + for (String val : vals) { + Object o = ObjectBuilder.fromJSON(val); + if (writer) { + objs.add(o); + } else if (ws) { + String s = JSONUtil.toJSON(o, 2); + out.add(s); + } else if (nows) { + String s = JSONUtil.toJSON(o, -1); + out.add(s); + } + } + if (!writer) + vals = out; + } + + // calculate total size per iteration + int sz = 0; + for (String val : vals) { + sz += val.length(); + } + + long start = System.currentTimeMillis(); + + int ret=0; + for (int j=0; j map) throws IOException { + Objects.requireNonNull(map); + beginObject(); + map.forEach((k, v) -> { + try { + writeString(k); + writeObject(v); + } catch (IOException e) { + throw new UncheckedIOException(e); + } + }); + endObject(); + return this; + } + + public Generator write(Collection collection) throws IOException { + Objects.requireNonNull(collection); + beginArray(); + collection.forEach(v -> { + try { + writeObject(v); + } catch (IOException e) { + throw new UncheckedIOException(e); + } + }); + endArray(); + return this; + } + + private void writeString(String string, boolean escape) throws IOException { + beforeWrite(); + if (escape) { + if (string == null) { + writeNull(); + } else { + string(string); + } + } else { + writer.write(string); + } + afterWrite(); + } + + private void beginStructure() throws IOException { + final int state = context.state; + switch (context.state) { + case JsonContext.PropertyKey: + writer.write(':'); + break; + case JsonContext.ArrayValue: + writer.write(','); + break; + case JsonContext.StartObject: + break; + case JsonContext.StartArray: + break; + default: + throw new JsonException("illegal state : " + state); + } + } + + private void endStructure() { + context = context.parent; + if (context == null) { + return; + } + int newState = -1; + switch (context.state) { + case JsonContext.PropertyKey: + newState = JsonContext.PropertyValue; + break; + case JsonContext.StartArray: + newState = JsonContext.ArrayValue; + break; + case JsonContext.ArrayValue: + break; + case JsonContext.StartObject: + newState = JsonContext.PropertyKey; + break; + default: + break; + } + if (newState != -1) { + context.state = newState; + } + } + + private void beforeWrite() throws IOException { + if (context == null) { + return; + } + switch (context.state) { + case JsonContext.StartObject: + case JsonContext.StartArray: + break; + case JsonContext.PropertyKey: + writer.write(':'); + break; + case JsonContext.PropertyValue: + writer.write(','); + break; + case JsonContext.ArrayValue: + writer.write(','); + break; + default: + break; + } + } + + private void afterWrite() { + if (context == null) { + return; + } + int newState = -1; + switch (context.state) { + case JsonContext.PropertyKey: + newState = JsonContext.PropertyValue; + break; + case JsonContext.StartObject: + case JsonContext.PropertyValue: + newState = JsonContext.PropertyKey; + break; + case JsonContext.StartArray: + newState = JsonContext.ArrayValue; + break; + case JsonContext.ArrayValue: + break; + default: + break; + } + if (newState != -1) { + context.state = newState; + } + } + + private void string(String string) throws IOException { + writer.write('"'); + int start = 0; + int l = string.length(); + for (int i = 0; i < l; i++) { + char c = string.charAt(i); + if (c == '"' || c < 32 || c >= 127 || c == '\\') { + if (start < i) { + writer.write(string, start, i - start); + } + start = i; + writer.write(escapeCharacter(c)); + } + } + if (start < l) { + writer.write(string, start, l - start); + } + writer.write('"'); + } + + private static String escapeCharacter(char c) { + switch (c) { + case '\n': + return "\\n"; + case '\r': + return "\\r"; + case '\t': + return "\\t"; + case '\\': + return "\\\\"; + case '\'': + return "\\'"; + case '\"': + return "\\\""; + } + String hex = Integer.toHexString(c); + return "\\u0000".substring(0, 6 - hex.length()) + hex; + } + + private static class JsonContext { + + final static int StartObject = 1001; + final static int PropertyKey = 1002; + final static int PropertyValue = 1003; + final static int StartArray = 1004; + final static int ArrayValue = 1005; + + private final JsonContext parent; + + private int state; + + public JsonContext(JsonContext parent, int state) { + this.parent = parent; + this.state = state; + } + } + + @Override + public String toString() { + return writer.toString(); + } +} diff --git a/datastructures-json/src/main/java/org/xbib/datastructures/json/JsonException.java b/datastructures-json/src/main/java/org/xbib/datastructures/json/JsonException.java new file mode 100644 index 0000000..7512037 --- /dev/null +++ b/datastructures-json/src/main/java/org/xbib/datastructures/json/JsonException.java @@ -0,0 +1,16 @@ +package org.xbib.datastructures.json; + +import java.io.IOException; +import java.io.UncheckedIOException; + +@SuppressWarnings("serial") +public class JsonException extends UncheckedIOException { + + public JsonException(String message) { + super(new IOException(message)); + } + + public JsonException(IOException exception) { + super(exception); + } +} diff --git a/datastructures-json/src/main/java/org/xbib/datastructures/json/Lexer.java b/datastructures-json/src/main/java/org/xbib/datastructures/json/Lexer.java new file mode 100644 index 0000000..85deba6 --- /dev/null +++ b/datastructures-json/src/main/java/org/xbib/datastructures/json/Lexer.java @@ -0,0 +1,1158 @@ +package org.xbib.datastructures.json; + +import static org.xbib.datastructures.json.token.TokenType.BEGIN_ARRAY; +import static org.xbib.datastructures.json.token.TokenType.BEGIN_OBJECT; +import static org.xbib.datastructures.json.token.TokenType.END_ARRAY; +import static org.xbib.datastructures.json.token.TokenType.END_OBJECT; +import static org.xbib.datastructures.json.token.TokenType.NAME; +import static org.xbib.datastructures.json.token.TokenType.NONE; +import static org.xbib.datastructures.json.token.TokenType.NULL; +import static org.xbib.datastructures.json.token.TokenType.VALUE; +import org.xbib.datastructures.json.token.Token; +import org.xbib.datastructures.json.token.TokenType; +import org.xbib.datastructures.tiny.TinyList; +import org.xbib.datastructures.tiny.TinyMap; +import java.io.EOFException; +import java.io.IOException; +import java.io.Reader; +import java.util.Collection; +import java.util.LinkedList; +import java.util.Map; +import java.util.Queue; + +public class Lexer { + + private static final char[] NON_EXECUTE_PREFIX = ")]}'\n".toCharArray(); + private static final long MIN_INCOMPLETE_INTEGER = Long.MIN_VALUE / 10; + private static final int PEEKED_NONE = 0; + private static final int PEEKED_BEGIN_OBJECT = 1; + private static final int PEEKED_END_OBJECT = 2; + private static final int PEEKED_BEGIN_ARRAY = 3; + private static final int PEEKED_END_ARRAY = 4; + //private static final int PEEKED_TRUE = 5; + //private static final int PEEKED_FALSE = 6; + private static final int PEEKED_NULL = 7; + private static final int PEEKED_SINGLE_QUOTED = 8; + private static final int PEEKED_DOUBLE_QUOTED = 9; + private static final int PEEKED_UNQUOTED = 10; + private static final int PEEKED_BUFFERED = 11; + private static final int PEEKED_SINGLE_QUOTED_NAME = 12; + private static final int PEEKED_DOUBLE_QUOTED_NAME = 13; + private static final int PEEKED_UNQUOTED_NAME = 14; + //private static final int PEEKED_LONG = 15; + //private static final int PEEKED_NUMBER = 16; + private static final int PEEKED_EOF = 17; + private static final int NUMBER_CHAR_NONE = 0; + private static final int NUMBER_CHAR_SIGN = 1; + private static final int NUMBER_CHAR_DIGIT = 2; + private static final int NUMBER_CHAR_DECIMAL = 3; + private static final int NUMBER_CHAR_FRACTION_DIGIT = 4; + private static final int NUMBER_CHAR_EXP_E = 5; + private static final int NUMBER_CHAR_EXP_SIGN = 6; + private static final int NUMBER_CHAR_EXP_DIGIT = 7; + + + /** + * An array with no elements requires no separators or newlines before + * it is closed. + */ + private static final int EMPTY_ARRAY = 1; + + /** + * A array with at least one value requires a comma and newline before + * the next element. + */ + private static final int NONEMPTY_ARRAY = 2; + + /** + * An object with no name/value pairs requires no separators or newlines + * before it is closed. + */ + private static final int EMPTY_OBJECT = 3; + + /** + * An object whose most recent element is a key. The next element must + * be a value. + */ + private static final int DANGLING_NAME = 4; + + /** + * An object with at least one name/value pair requires a comma and + * newline before the next element. + */ + private static final int NONEMPTY_OBJECT = 5; + + /** + * No object or array has been started. + */ + private static final int EMPTY_DOCUMENT = 6; + + /** + * A document with at an array or object. + */ + private static final int NONEMPTY_DOCUMENT = 7; + + /** + * A document that's been closed and cannot be accessed. + */ + private static final int CLOSED = 8; + + + private final StringBuilder stringBuilder = new StringBuilder(); + + private final char[] buffer = new char[1024]; + + private Token currentToken; + + //private int peeked = PEEKED_NONE; + + private final Reader in; + + private boolean lenient = false; + + private int pos = 42; + + private int limit = 42; + + private int lineNumber = 42; + + private int lineStart = 42; + + //private long peekedLong = 123; + + //private int peekedNumberLength = 100; + + private int[] stack = new int[32]; + + private int stackSize = -1; + + private StringBuilder[] pathNames = new StringBuilder[32]; + + private int[] pathIndices = new int[32]; + { + for (int i = 0; i < pathNames.length; i++) { + pathNames[i] = new StringBuilder(); + } + } + + public Lexer(Reader in) { + this(in, false); + } + + public Lexer(Reader in, boolean isLenient) { + this.in = in; + clear(); + setLenient(isLenient); + } + + public Object nextObject() throws IOException { + TokenType tokenType = next(); + switch (tokenType) { + case BEGIN_ARRAY: + return nextList(); + case BEGIN_OBJECT: + return nextMap(); + //case NUMBER: + // return nextNumber(); + //case BOOLEAN: + // return nextBoolean(); + case NULL: + nextNull(); + return null; + default: + return nextString(); + } + } + + public Map nextMap() throws IOException { + beginObject(); + TinyMap.Builder map = TinyMap.builder(); + while (hasNext()) { + String name = nextName().toString(); + Object object = nextObject(); + map.put(name, object); + } + endObject(); + return map.build(); + } + + public Collection nextList() throws IOException { + beginArray(); + TinyList.Builder list = TinyList.builder(); + while (hasNext()) { + Object object = nextObject(); + list.add(object); + } + endArray(); + return list; + } + + public void clear() { + if (stackSize < 0) stackSize = 0; + for (int i = 0; i < stackSize; i++) { + pathNames[i].setLength(0); + } + this.stringBuilder.setLength(0); + //this.peeked = PEEKED_NONE; + this.currentToken = null; + this.pos = 0; + this.limit = 0; + this.lineNumber = 0; + this.lineStart = 0; + this.stackSize = 0; + this.stack[stackSize++] = EMPTY_DOCUMENT; + } + + public final boolean isLenient() { + return lenient; + } + + public final void setLenient(boolean lenient) { + this.lenient = lenient; + } + + public void beginArray() throws IOException { + Token token = currentToken; + if (token == null) { + token = doPeek(); + } + if (token.getType() == BEGIN_ARRAY) { + push(EMPTY_ARRAY); + pathIndices[stackSize - 1] = 0; + currentToken = null; + } else { + throw new IOException("Expected BEGIN_ARRAY but was " + next() + locationString()); + } + } + + public void endArray() throws IOException { + Token token = currentToken; + if (token == null) { + token = doPeek(); + } + if (token.getType() == END_ARRAY) { + stackSize--; + pathIndices[stackSize - 1]++; + currentToken = null; + } else { + throw new IOException("Expected END_ARRAY but was " + next() + locationString()); + } + } + + public void beginObject() throws IOException { + Token token = currentToken; + if (token == null) { + token = doPeek(); + } + if (token.getType() == BEGIN_OBJECT) { + push(EMPTY_OBJECT); + currentToken = null; + } else { + throw new IOException("Expected BEGIN_OBJECT but was " + next() + locationString()); + } + } + + public void endObject() throws IOException { + Token token = currentToken; + if (token == null) { + token = doPeek(); + } + if (token.getType() == END_OBJECT) { + stackSize--; + pathNames[stackSize].setLength(0); + pathIndices[stackSize - 1]++; + currentToken = null; + } else { + throw new IOException("Expected END_OBJECT but was " + next() + locationString()); + } + } + + public boolean hasNext() throws IOException { + Token token = currentToken; + if (token == null) { + token = doPeek(); + } + return token.getType() != END_OBJECT && token.getType() != END_ARRAY; + } + + public Token next() throws IOException { + Token token = currentToken; + if (token == null) { + token = doPeek(); + } + return token; + /*switch (token.getType()) { + case PEEKED_BEGIN_OBJECT: + return BEGIN_OBJECT; + case PEEKED_END_OBJECT: + return TokenType.END_OBJECT; + case PEEKED_BEGIN_ARRAY: + return BEGIN_ARRAY; + case PEEKED_END_ARRAY: + return END_ARRAY; + case PEEKED_SINGLE_QUOTED_NAME: + case PEEKED_DOUBLE_QUOTED_NAME: + case PEEKED_UNQUOTED_NAME: + return TokenType.NAME; + // case PEEKED_TRUE: + // case PEEKED_FALSE: + // return TokenType.BOOLEAN; + case PEEKED_NULL: + return TokenType.NULL; + case PEEKED_SINGLE_QUOTED: + case PEEKED_DOUBLE_QUOTED: + case PEEKED_UNQUOTED: + case PEEKED_BUFFERED: + return TokenType.VALUE; + //case PEEKED_LONG: + //case PEEKED_NUMBER: + // return TokenType.NUMBER; + default: + assert p == PEEKED_EOF; + return TokenType.END_DOCUMENT; + }*/ + } + + private Token doPeek() throws IOException { + int peekStack = stack[stackSize - 1]; + if (peekStack == EMPTY_ARRAY) { + stack[stackSize - 1] = NONEMPTY_ARRAY; + } else if (peekStack == NONEMPTY_ARRAY) { + int c = nextNonWhitespace(true); + switch (c) { + case ']': + return currentToken = new Token(END_ARRAY, 0); + case ';': + checkLenient(); + case ',': + break; + default: + throw syntaxError("Unterminated array"); + } + } else if (peekStack == EMPTY_OBJECT || peekStack == NONEMPTY_OBJECT) { + stack[stackSize - 1] = DANGLING_NAME; + if (peekStack == NONEMPTY_OBJECT) { + int c = nextNonWhitespace(true); + switch (c) { + case '}': + return currentToken = new Token(END_OBJECT, 0); + case ';': + checkLenient(); + case ',': + break; + default: + throw syntaxError("Unterminated object"); + } + } + int c = nextNonWhitespace(true); + switch (c) { + case '"': + //return peeked = PEEKED_DOUBLE_QUOTED_NAME; + return currentToken = new Token(NAME, 0); + case '\'': + checkLenient(); + //return peeked = PEEKED_SINGLE_QUOTED_NAME; + return currentToken = new Token(NAME, 0); + case '}': + if (peekStack != NONEMPTY_OBJECT) { + //return peeked = PEEKED_END_OBJECT; + return currentToken = new Token(END_OBJECT, 0); + } else { + throw syntaxError("Expected name"); + } + default: + checkLenient(); + pos--; + if (isLiteral((char) c)) { + //return peeked = PEEKED_UNQUOTED_NAME; + return currentToken = new Token(NAME, 0); + } else { + throw syntaxError("Expected name"); + } + } + } else if (peekStack == DANGLING_NAME) { + stack[stackSize - 1] = NONEMPTY_OBJECT; + int c = nextNonWhitespace(true); + switch (c) { + case ':': + break; + case '=': + checkLenient(); + if ((pos < limit || fillBuffer(1)) && buffer[pos] == '>') { + pos++; + } + break; + default: + throw syntaxError("Expected ':'"); + } + } else if (peekStack == EMPTY_DOCUMENT) { + if (lenient) { + consumeNonExecutePrefix(); + } + stack[stackSize - 1] = NONEMPTY_DOCUMENT; + } else if (peekStack == NONEMPTY_DOCUMENT) { + int c = nextNonWhitespace(false); + if (c == -1) { + //return peeked = PEEKED_EOF; + return null; + } else { + checkLenient(); + pos--; + } + } else if (peekStack == CLOSED) { + throw new IOException("closed"); + } + int c = nextNonWhitespace(true); + switch (c) { + case ']': + if (peekStack == EMPTY_ARRAY) { + //return peeked = PEEKED_END_ARRAY; + return currentToken = new Token(END_ARRAY, 0); + } + case ';': + case ',': + if (peekStack == EMPTY_ARRAY || peekStack == NONEMPTY_ARRAY) { + checkLenient(); + pos--; + //return peeked = PEEKED_NULL; + return currentToken = new Token(NULL, 0); + } else { + throw syntaxError("Unexpected value"); + } + case '\'': + checkLenient(); + //return peeked = PEEKED_SINGLE_QUOTED; + return currentToken = new Token(NAME, 0); + case '"': + //return peeked = PEEKED_DOUBLE_QUOTED; + return currentToken = new Token(NAME, 0); + case '[': + //return peeked = PEEKED_BEGIN_ARRAY; + return currentToken = new Token(BEGIN_ARRAY, 0); + case '{': + //return peeked = PEEKED_BEGIN_OBJECT; + return currentToken = new Token(BEGIN_OBJECT, 0); + default: + pos--; + } + Token result = peekKeyword(); + if (result != null) { + return result; + } + result = peekNumber(); + if (result != null) { + return result; + } + if (!isLiteral(buffer[pos])) { + throw syntaxError("Expected value"); + } + checkLenient(); + //return peeked = PEEKED_UNQUOTED; + return currentToken = new Token(NAME, 0); + } + + private Token peekKeyword() throws IOException { + char c = buffer[pos]; + String keyword; + String keywordUpper; + //int peeking; + Token token; + if (c == 't' || c == 'T') { + keyword = "true"; + keywordUpper = "TRUE"; + //peeking = PEEKED_TRUE; + token = new Token(VALUE, 0, "true"); + } else if (c == 'f' || c == 'F') { + keyword = "false"; + keywordUpper = "FALSE"; + //peeking = PEEKED_FALSE; + token = new Token(VALUE, 0, "false"); + } else if (c == 'n' || c == 'N') { + keyword = "null"; + keywordUpper = "NULL"; + token = new Token(NULL, 0); //PEEKED_NULL; + } else { + return null; + } + int length = keyword.length(); + for (int i = 1; i < length; i++) { + if (pos + i >= limit && !fillBuffer(i + 1)) { + //return PEEKED_NONE; + return null; + } + c = buffer[pos + i]; + if (c != keyword.charAt(i) && c != keywordUpper.charAt(i)) { + //return PEEKED_NONE; + return null; + } + } + if ((pos + length < limit || fillBuffer(length + 1)) + && isLiteral(buffer[pos + length])) { + //return PEEKED_NONE; + return null; + } + pos += length; + return currentToken = token; + } + + private Token peekNumber() throws IOException { + char[] buffer = this.buffer; + int p = pos; + int l = limit; + long value = 0; + boolean negative = false; + boolean fitsInLong = true; + int last = NUMBER_CHAR_NONE; + int i = 0; + charactersOfNumber: + for (; true; i++) { + if (p + i == l) { + if (i == buffer.length) { + return null; + } + if (!fillBuffer(i + 1)) { + break; + } + p = pos; + l = limit; + } + char c = buffer[p + i]; + switch (c) { + case '-': + if (last == NUMBER_CHAR_NONE) { + negative = true; + last = NUMBER_CHAR_SIGN; + continue; + } else if (last == NUMBER_CHAR_EXP_E) { + last = NUMBER_CHAR_EXP_SIGN; + continue; + } + return null; + case '+': + if (last == NUMBER_CHAR_EXP_E) { + last = NUMBER_CHAR_EXP_SIGN; + continue; + } + return null; + case 'e': + case 'E': + if (last == NUMBER_CHAR_DIGIT || last == NUMBER_CHAR_FRACTION_DIGIT) { + last = NUMBER_CHAR_EXP_E; + continue; + } + return null; + case '.': + if (last == NUMBER_CHAR_DIGIT) { + last = NUMBER_CHAR_DECIMAL; + continue; + } + return null; + default: + if (c < '0' || c > '9') { + if (!isLiteral(c)) { + break charactersOfNumber; + } + return null; + } + if (last == NUMBER_CHAR_SIGN || last == NUMBER_CHAR_NONE) { + value = -(c - '0'); + last = NUMBER_CHAR_DIGIT; + } else if (last == NUMBER_CHAR_DIGIT) { + if (value == 0) { + return null; + } + long newValue = value * 10 - (c - '0'); + fitsInLong &= value > MIN_INCOMPLETE_INTEGER + || (value == MIN_INCOMPLETE_INTEGER && newValue < value); + value = newValue; + } else if (last == NUMBER_CHAR_DECIMAL) { + last = NUMBER_CHAR_FRACTION_DIGIT; + } else if (last == NUMBER_CHAR_EXP_E || last == NUMBER_CHAR_EXP_SIGN) { + last = NUMBER_CHAR_EXP_DIGIT; + } + } + } + if (last == NUMBER_CHAR_DIGIT && fitsInLong && (value != Long.MIN_VALUE || negative) && (value != 0 || !negative)) { + //peekedLong = negative ? value : -value; + pos += i; + //return peeked = PEEKED_LONG; + //return peeked = PEEKED_UNQUOTED; + return currentToken = new Token(VALUE, 0, String.valueOf(negative ? value : -value)); + } else if (last == NUMBER_CHAR_DIGIT || last == NUMBER_CHAR_FRACTION_DIGIT || last == NUMBER_CHAR_EXP_DIGIT) { + //peekedNumberLength = i; + //return peeked = PEEKED_NUMBER; + //return peeked = PEEKED_UNQUOTED; + return currentToken = new Token(VALUE, 0, String.valueOf(value)); + } else { + return null; + } + } + + private boolean isLiteral(char c) throws IOException { + switch (c) { + case '/': + case '\\': + case ';': + case '#': + case '=': + checkLenient(); + case '{': + case '}': + case '[': + case ']': + case ':': + case ',': + case ' ': + case '\t': + case '\f': + case '\r': + case '\n': + return false; + default: + return true; + } + } + + public StringBuilder nextName() throws IOException { + int p = peeked; + if (p == PEEKED_NONE) { + p = doPeek(); + } + StringBuilder result; + if (p == PEEKED_UNQUOTED_NAME) { + result = nextUnquotedValue(); + } else if (p == PEEKED_SINGLE_QUOTED_NAME) { + result = nextQuotedValue('\''); + } else if (p == PEEKED_DOUBLE_QUOTED_NAME) { + result = nextQuotedValue('"'); + } else { + throw new IOException("Expected a name, but was " + next() + locationString()); + } + peeked = PEEKED_NONE; + StringBuilder target = pathNames[stackSize - 1]; + target.setLength(0); + target.append(result); + return target; + } + + public String nextString() throws IOException { + int p = peeked; + if (p == PEEKED_NONE) { + p = doPeek(); + } + StringBuilder result = new StringBuilder(); + if (p == PEEKED_UNQUOTED) { + result.append(nextUnquotedValue()); + } else if (p == PEEKED_SINGLE_QUOTED) { + result.append(nextQuotedValue('\'')); + } else if (p == PEEKED_DOUBLE_QUOTED) { + result.append(nextQuotedValue('"')); + } else if (p == PEEKED_BUFFERED) { + result.append(stringBuilder); + //} else if (p == PEEKED_LONG) { + // result.append(stringBuilder); + // result.setLength(0); + // result.append(peekedLong); + //} else if (p == PEEKED_NUMBER) { + // result.append(makeStringFromBuffer(buffer, pos, peekedNumberLength)); + // pos += peekedNumberLength; + } else { + throw new IOException("Expected a string, but was " + next() + locationString()); + } + peeked = PEEKED_NONE; + pathIndices[stackSize - 1]++; + return result.toString(); + } + + /*public boolean nextBoolean() throws IOException { + int p = peeked; + if (p == PEEKED_NONE) { + p = doPeek(); + } + if (p == PEEKED_TRUE) { + peeked = PEEKED_NONE; + pathIndices[stackSize - 1]++; + return true; + } else if (p == PEEKED_FALSE) { + peeked = PEEKED_NONE; + pathIndices[stackSize - 1]++; + return false; + } + throw new IOException("Expected a boolean, but was " + peek() + locationString()); + }*/ + + public void nextNull() throws IOException { + Token token = currentToken; + if (token == null) { + token = doPeek(); + } + if (token.getType() == NULL) { + currentToken = null; + pathIndices[stackSize - 1]++; + } else { + throw new IOException("Expected null, but was " + next() + locationString()); + } + } + + /*public Object nextNumber() throws IOException { + int p = peeked; + if (p == PEEKED_NONE) { + p = doPeek(); + } + if (p == PEEKED_LONG) { + peeked = PEEKED_NONE; + pathIndices[stackSize - 1]++; + return peekedLong; + } + StringBuilder builder = this.stringBuilder; + if (p == PEEKED_NUMBER) { + builder.setLength(0); + builder.append(buffer, pos, peekedNumberLength); + pos += peekedNumberLength; + } else if (p == PEEKED_SINGLE_QUOTED || p == PEEKED_DOUBLE_QUOTED) { + builder = nextQuotedValue(p == PEEKED_SINGLE_QUOTED ? '\'' : '"'); + } else if (p == PEEKED_UNQUOTED) { + builder = nextUnquotedValue(); + } else if (p != PEEKED_BUFFERED) { + throw new IOException("Expected a number, but was " + peek() + locationString()); + } + peeked = PEEKED_BUFFERED; + String s = builder.toString(); + double d = Double.parseDouble(s); + if (!lenient && (Double.isNaN(d) || Double.isInfinite(d))) { + throw new IOException("NaN and infinities forbidden: " + d + locationString()); + } + builder.setLength(0); + peeked = PEEKED_NONE; + pathIndices[stackSize - 1]++; + return d; + }*/ + + private StringBuilder makeStringFromBuffer(char[] buffer, int pos, int length) { + stringBuilder.setLength(0); + stringBuilder.append(buffer, pos, length); + return stringBuilder; + } + + private StringBuilder nextQuotedValue(char quote) throws IOException { + char[] buffer = this.buffer; + StringBuilder builder = stringBuilder; + builder.setLength(0); + while (true) { + int p = pos; + int l = limit; + int start = p; + while (p < l) { + int c = buffer[p++]; + if (c == quote) { + pos = p; + int len = p - start - 1; + builder.append(buffer, start, len); + return builder; + } else if (c == '\\') { + pos = p; + int len = p - start - 1; + builder.append(buffer, start, len); + builder.append(readEscapeCharacter()); + p = pos; + l = limit; + start = p; + } else if (c == '\n') { + lineNumber++; + lineStart = p; + } + } + builder.append(buffer, start, p - start); + pos = p; + if (!fillBuffer(1)) { + throw syntaxError("Unterminated string"); + } + } + } + + @SuppressWarnings("fallthrough") + private StringBuilder nextUnquotedValue() throws IOException { + StringBuilder builder = stringBuilder; + builder.setLength(0); + int i = 0; + findNonLiteralCharacter: + while (true) { + for (; pos + i < limit; i++) { + switch (buffer[pos + i]) { + case '/': + case '\\': + case ';': + case '#': + case '=': + checkLenient(); // fall-through + case '{': + case '}': + case '[': + case ']': + case ':': + case ',': + case ' ': + case '\t': + case '\f': + case '\r': + case '\n': + break findNonLiteralCharacter; + } + } + builder.append(buffer, pos, i); + pos += i; + i = 0; + if (!fillBuffer(1)) { + break; + } + } + builder.append(buffer, pos, i); + pos += i; + return builder; + } + + private void skipUnquotedValue() throws IOException { + do { + int i = 0; + for (; pos + i < limit; i++) { + switch (buffer[pos + i]) { + case '/': + case '\\': + case ';': + case '#': + case '=': + checkLenient(); + case '{': + case '}': + case '[': + case ']': + case ':': + case ',': + case ' ': + case '\t': + case '\f': + case '\r': + case '\n': + pos += i; + return; + } + } + pos += i; + } while (fillBuffer(1)); + } + + private void skipQuotedValue(char quote) throws IOException { + char[] buffer = this.buffer; + do { + int p = pos; + int l = limit; + while (p < l) { + int c = buffer[p++]; + if (c == quote) { + pos = p; + return; + } else if (c == '\\') { + pos = p; + readEscapeCharacter(); + p = pos; + l = limit; + } else if (c == '\n') { + lineNumber++; + lineStart = p; + } + } + pos = p; + } while (fillBuffer(1)); + throw syntaxError("Unterminated string"); + } + + public void skipValue() throws IOException { + int count = 0; + do { + Token token = currentToken; + if (token == null) { + token = doPeek(); + } + if (token.getType() == BEGIN_ARRAY) { + push(EMPTY_ARRAY); + count++; + } else if (token.getType() == BEGIN_OBJECT) { + push(EMPTY_OBJECT); + count++; + } else if (token.getType() == END_ARRAY) { + stackSize--; + count--; + } else if (token.getType() == END_OBJECT) { + stackSize--; + count--; + //} else if (token.getType() == PEEKED_UNQUOTED_NAME || p == PEEKED_UNQUOTED) { + } else if (token.getType() == NAME && token.getValue() == null) { + skipUnquotedValue(); + //} else if (token.getType() == NAME && token.getValue() == null) { + } else if ((token.getType() == NAME || token.getType() == VALUE) && "'".equals(token.getValue())) { + skipQuotedValue('\''); + //} else if (p == PEEKED_DOUBLE_QUOTED || p == PEEKED_DOUBLE_QUOTED_NAME) { + } else if ((token.getType() == NAME || token.getType() == VALUE) && "\"".equals(token.getValue())) { + skipQuotedValue('"'); + //} else if (p == PEEKED_NUMBER) { + // pos += peekedNumberLength; + } + currentToken = null; + } while (count != 0); + pathIndices[stackSize - 1]++; + pathNames[stackSize - 1].setLength(0); + pathNames[stackSize - 1].append("null"); + } + + private void push(int newTop) { + if (stackSize == stack.length) { + int[] newStack = new int[stackSize * 2]; + int[] newPathIndices = new int[stackSize * 2]; + StringBuilder[] newPathNames = new StringBuilder[stackSize * 2]; + System.arraycopy(stack, 0, newStack, 0, stackSize); + System.arraycopy(pathIndices, 0, newPathIndices, 0, stackSize); + System.arraycopy(pathNames, 0, newPathNames, 0, stackSize); + for (int i = stackSize; i < newPathNames.length; i++) { + newPathNames[i] = new StringBuilder(); + } + stack = newStack; + pathIndices = newPathIndices; + pathNames = newPathNames; + } + stack[stackSize++] = newTop; + } + + private boolean fillBuffer(int minimum) throws IOException { + char[] buffer = this.buffer; + lineStart -= pos; + if (limit != pos) { + limit -= pos; + System.arraycopy(buffer, pos, buffer, 0, limit); + } else { + limit = 0; + } + pos = 0; + int total; + while ((total = in.read(buffer, limit, buffer.length - limit)) != -1) { + limit += total; + if (lineNumber == 0 && lineStart == 0 && limit > 0 && buffer[0] == '\ufeff') { + pos++; + lineStart++; + minimum++; + } + if (limit >= minimum) { + return true; + } + } + return false; + } + + private int nextNonWhitespace(boolean throwOnEof) throws IOException { + char[] buffer = this.buffer; + int p = pos; + int l = limit; + while (true) { + if (p == l) { + pos = p; + if (!fillBuffer(1)) { + break; + } + p = pos; + l = limit; + } + int c = buffer[p++]; + if (c == '\n') { + lineNumber++; + lineStart = p; + continue; + } else if (c == ' ' || c == '\r' || c == '\t') { + continue; + } + if (c == '/') { + pos = p; + if (p == l) { + pos--; + boolean charsLoaded = fillBuffer(2); + pos++; + if (!charsLoaded) { + return c; + } + } + checkLenient(); + char peek = buffer[pos]; + switch (peek) { + case '*': + pos++; + if (!skipTo("*/")) { + throw syntaxError("Unterminated comment"); + } + p = pos + 2; + l = limit; + continue; + case '/': + pos++; + skipToEndOfLine(); + p = pos; + l = limit; + continue; + default: + return c; + } + } else if (c == '#') { + pos = p; + checkLenient(); + skipToEndOfLine(); + p = pos; + l = limit; + } else { + pos = p; + return c; + } + } + if (throwOnEof) { + throw new EOFException("End of input" + locationString()); + } else { + return -1; + } + } + + private void checkLenient() throws IOException { + if (!lenient) { + throw syntaxError("Use setLenient(true) to accept malformed JSON"); + } + } + + private void skipToEndOfLine() throws IOException { + while (pos < limit || fillBuffer(1)) { + char c = buffer[pos++]; + if (c == '\n') { + lineNumber++; + lineStart = pos; + break; + } else if (c == '\r') { + break; + } + } + } + + private boolean skipTo(String toFind) throws IOException { + int length = toFind.length(); + outer: + for (; pos + length <= limit || fillBuffer(length); pos++) { + if (buffer[pos] == '\n') { + lineNumber++; + lineStart = pos + 1; + continue; + } + for (int c = 0; c < length; c++) { + if (buffer[pos + c] != toFind.charAt(c)) { + continue outer; + } + } + return true; + } + return false; + } + + private String locationString() { + int line = lineNumber + 1; + int column = pos - lineStart + 1; + return " at line " + line + " column " + column + " path " + getPath(); + } + + public StringBuilder getPath() { + StringBuilder result = stringBuilder; + result.setLength(0); + result.append('$'); + for (int i = 0, size = stackSize; i < size; i++) { + switch (stack[i]) { + case EMPTY_ARRAY: + case NONEMPTY_ARRAY: + result.append('[').append(pathIndices[i]).append(']'); + break; + + case EMPTY_OBJECT: + case DANGLING_NAME: + case NONEMPTY_OBJECT: + result.append('.'); + if (pathNames[i].length() > 0) { + result.append(pathNames[i]); + } + break; + + case NONEMPTY_DOCUMENT: + case EMPTY_DOCUMENT: + case CLOSED: + break; + } + } + return result; + } + + private char readEscapeCharacter() throws IOException { + if (pos == limit && !fillBuffer(1)) { + throw syntaxError("Unterminated escape sequence"); + } + char escaped = buffer[pos++]; + switch (escaped) { + case 'u': + if (pos + 4 > limit && !fillBuffer(4)) { + throw syntaxError("Unterminated escape sequence"); + } + char result = 0; + for (int i = pos, end = i + 4; i < end; i++) { + char c = buffer[i]; + result <<= 4; + if (c >= '0' && c <= '9') { + result += (c - '0'); + } else if (c >= 'a' && c <= 'f') { + result += (c - 'a' + 10); + } else if (c >= 'A' && c <= 'F') { + result += (c - 'A' + 10); + } else { + throw new NumberFormatException("\\u" + makeStringFromBuffer(buffer, pos, 4)); + } + } + pos += 4; + return result; + case 't': + return '\t'; + case 'b': + return '\b'; + case 'n': + return '\n'; + case 'r': + return '\r'; + case 'f': + return '\f'; + case '\n': + lineNumber++; + lineStart = pos; + case '\'': + case '"': + case '\\': + case '/': + return escaped; + default: + throw syntaxError("Invalid escape sequence"); + } + } + + private IOException syntaxError(String message) throws IOException { + throw new IOException(message + locationString()); + } + + private void consumeNonExecutePrefix() throws IOException { + nextNonWhitespace(true); + pos--; + if (pos + NON_EXECUTE_PREFIX.length > limit && !fillBuffer(NON_EXECUTE_PREFIX.length)) { + return; + } + for (int i = 0; i < NON_EXECUTE_PREFIX.length; i++) { + if (buffer[pos + i] != NON_EXECUTE_PREFIX[i]) { + return; // not a security token! + } + } + pos += NON_EXECUTE_PREFIX.length; + } +} diff --git a/datastructures-json/src/main/java/org/xbib/datastructures/json/OldLexer.java b/datastructures-json/src/main/java/org/xbib/datastructures/json/OldLexer.java new file mode 100644 index 0000000..3d64ef8 --- /dev/null +++ b/datastructures-json/src/main/java/org/xbib/datastructures/json/OldLexer.java @@ -0,0 +1,1124 @@ +package org.xbib.datastructures.json; + +import org.xbib.datastructures.json.token.Token; +import org.xbib.datastructures.json.token.TokenType; +import org.xbib.datastructures.tiny.TinyList; +import org.xbib.datastructures.tiny.TinyMap; +import java.io.EOFException; +import java.io.IOException; +import java.io.Reader; +import java.util.Collection; +import java.util.LinkedList; +import java.util.Map; +import java.util.Queue; + +public class OldLexer { + + private static final char[] NON_EXECUTE_PREFIX = ")]}'\n".toCharArray(); + private static final long MIN_INCOMPLETE_INTEGER = Long.MIN_VALUE / 10; + private static final int PEEKED_NONE = 0; + private static final int PEEKED_BEGIN_OBJECT = 1; + private static final int PEEKED_END_OBJECT = 2; + private static final int PEEKED_BEGIN_ARRAY = 3; + private static final int PEEKED_END_ARRAY = 4; + //private static final int PEEKED_TRUE = 5; + //private static final int PEEKED_FALSE = 6; + private static final int PEEKED_NULL = 7; + private static final int PEEKED_SINGLE_QUOTED = 8; + private static final int PEEKED_DOUBLE_QUOTED = 9; + private static final int PEEKED_UNQUOTED = 10; + private static final int PEEKED_BUFFERED = 11; + private static final int PEEKED_SINGLE_QUOTED_NAME = 12; + private static final int PEEKED_DOUBLE_QUOTED_NAME = 13; + private static final int PEEKED_UNQUOTED_NAME = 14; + //private static final int PEEKED_LONG = 15; + //private static final int PEEKED_NUMBER = 16; + private static final int PEEKED_EOF = 17; + private static final int NUMBER_CHAR_NONE = 0; + private static final int NUMBER_CHAR_SIGN = 1; + private static final int NUMBER_CHAR_DIGIT = 2; + private static final int NUMBER_CHAR_DECIMAL = 3; + private static final int NUMBER_CHAR_FRACTION_DIGIT = 4; + private static final int NUMBER_CHAR_EXP_E = 5; + private static final int NUMBER_CHAR_EXP_SIGN = 6; + private static final int NUMBER_CHAR_EXP_DIGIT = 7; + + + /** + * An array with no elements requires no separators or newlines before + * it is closed. + */ + private static final int EMPTY_ARRAY = 1; + + /** + * A array with at least one value requires a comma and newline before + * the next element. + */ + private static final int NONEMPTY_ARRAY = 2; + + /** + * An object with no name/value pairs requires no separators or newlines + * before it is closed. + */ + private static final int EMPTY_OBJECT = 3; + + /** + * An object whose most recent element is a key. The next element must + * be a value. + */ + private static final int DANGLING_NAME = 4; + + /** + * An object with at least one name/value pair requires a comma and + * newline before the next element. + */ + private static final int NONEMPTY_OBJECT = 5; + + /** + * No object or array has been started. + */ + private static final int EMPTY_DOCUMENT = 6; + + /** + * A document with at an array or object. + */ + private static final int NONEMPTY_DOCUMENT = 7; + + /** + * A document that's been closed and cannot be accessed. + */ + private static final int CLOSED = 8; + + private final Queue tokens; + + + private final StringBuilder stringBuilder = new StringBuilder(); + private final char[] buffer = new char[1024]; + private int peeked = PEEKED_NONE; + private final Reader in; + private boolean lenient = false; + private int pos = 42; + private int limit = 42; + private int lineNumber = 42; + private int lineStart = 42; + //private long peekedLong = 123; + //private int peekedNumberLength = 100; + private int[] stack = new int[32]; + private int stackSize = -1; + private StringBuilder[] pathNames = new StringBuilder[32]; + private int[] pathIndices = new int[32]; + { + for (int i = 0; i < pathNames.length; i++) { + pathNames[i] = new StringBuilder(); + } + } + + public OldLexer(Reader in) { + this(in, false); + } + + public OldLexer(Reader in, boolean isLenient) { + this.in = in; + this.tokens = new LinkedList<>(); + clear(); + setLenient(isLenient); + } + + public Object nextObject() throws IOException { + TokenType tokenType = peek(); + switch (tokenType) { + case BEGIN_ARRAY: + return nextList(); + case BEGIN_OBJECT: + return nextMap(); + //case NUMBER: + // return nextNumber(); + //case BOOLEAN: + // return nextBoolean(); + case NULL: + nextNull(); + return null; + default: + return nextString(); + } + } + + public Map nextMap() throws IOException { + beginObject(); + TinyMap.Builder map = TinyMap.builder(); + while (hasNext()) { + String name = nextName().toString(); + Object object = nextObject(); + map.put(name, object); + } + endObject(); + return map.build(); + } + + public Collection nextList() throws IOException { + beginArray(); + TinyList.Builder list = TinyList.builder(); + while (hasNext()) { + Object object = nextObject(); + list.add(object); + } + endArray(); + return list; + } + + public void clear() { + if (stackSize < 0) stackSize = 0; + for (int i = 0; i < stackSize; i++) { + pathNames[i].setLength(0); + } + this.stringBuilder.setLength(0); + this.peeked = PEEKED_NONE; + this.pos = 0; + this.limit = 0; + this.lineNumber = 0; + this.lineStart = 0; + this.stackSize = 0; + //this.peekedLong = 0; + //this.peekedNumberLength = 0; + this.stack[stackSize++] = EMPTY_DOCUMENT; + } + + public final boolean isLenient() { + return lenient; + } + + public final void setLenient(boolean lenient) { + this.lenient = lenient; + } + + public void beginArray() throws IOException { + int p = peeked; + if (p == PEEKED_NONE) { + p = doPeek(); + } + if (p == PEEKED_BEGIN_ARRAY) { + push(EMPTY_ARRAY); + pathIndices[stackSize - 1] = 0; + peeked = PEEKED_NONE; + } else { + throw new IOException("Expected BEGIN_ARRAY but was " + peek() + locationString()); + } + } + + public void endArray() throws IOException { + int p = peeked; + if (p == PEEKED_NONE) { + p = doPeek(); + } + if (p == PEEKED_END_ARRAY) { + stackSize--; + pathIndices[stackSize - 1]++; + peeked = PEEKED_NONE; + } else { + throw new IOException("Expected END_ARRAY but was " + peek() + locationString()); + } + } + + public void beginObject() throws IOException { + int p = peeked; + if (p == PEEKED_NONE) { + p = doPeek(); + } + if (p == PEEKED_BEGIN_OBJECT) { + push(EMPTY_OBJECT); + peeked = PEEKED_NONE; + } else { + throw new IOException("Expected BEGIN_OBJECT but was " + peek() + locationString()); + } + } + + public void endObject() throws IOException { + int p = peeked; + if (p == PEEKED_NONE) { + p = doPeek(); + } + if (p == PEEKED_END_OBJECT) { + stackSize--; + pathNames[stackSize].setLength(0); + pathIndices[stackSize - 1]++; + peeked = PEEKED_NONE; + } else { + throw new IOException("Expected END_OBJECT but was " + peek() + locationString()); + } + } + + public boolean hasNext() throws IOException { + int p = peeked; + if (p == PEEKED_NONE) { + p = doPeek(); + } + return p != PEEKED_END_OBJECT && p != PEEKED_END_ARRAY; + } + + public TokenType peek() throws IOException { + int p = peeked; + if (p == PEEKED_NONE) { + p = doPeek(); + } + switch (p) { + case PEEKED_BEGIN_OBJECT: + return TokenType.BEGIN_OBJECT; + case PEEKED_END_OBJECT: + return TokenType.END_OBJECT; + case PEEKED_BEGIN_ARRAY: + return TokenType.BEGIN_ARRAY; + case PEEKED_END_ARRAY: + return TokenType.END_ARRAY; + case PEEKED_SINGLE_QUOTED_NAME: + case PEEKED_DOUBLE_QUOTED_NAME: + case PEEKED_UNQUOTED_NAME: + return TokenType.NAME; + // case PEEKED_TRUE: + // case PEEKED_FALSE: + // return TokenType.BOOLEAN; + case PEEKED_NULL: + return TokenType.NULL; + case PEEKED_SINGLE_QUOTED: + case PEEKED_DOUBLE_QUOTED: + case PEEKED_UNQUOTED: + case PEEKED_BUFFERED: + return TokenType.VALUE; + //case PEEKED_LONG: + //case PEEKED_NUMBER: + // return TokenType.NUMBER; + default: + assert p == PEEKED_EOF; + return TokenType.END_DOCUMENT; + } + } + + int doPeek() throws IOException { + int peekStack = stack[stackSize - 1]; + if (peekStack == EMPTY_ARRAY) { + stack[stackSize - 1] = NONEMPTY_ARRAY; + } else if (peekStack == NONEMPTY_ARRAY) { + int c = nextNonWhitespace(true); + switch (c) { + case ']': + return peeked = PEEKED_END_ARRAY; + case ';': + checkLenient(); + case ',': + break; + default: + throw syntaxError("Unterminated array"); + } + } else if (peekStack == EMPTY_OBJECT || peekStack == NONEMPTY_OBJECT) { + stack[stackSize - 1] = DANGLING_NAME; + if (peekStack == NONEMPTY_OBJECT) { + int c = nextNonWhitespace(true); + switch (c) { + case '}': + return peeked = PEEKED_END_OBJECT; + case ';': + checkLenient(); + case ',': + break; + default: + throw syntaxError("Unterminated object"); + } + } + int c = nextNonWhitespace(true); + switch (c) { + case '"': + return peeked = PEEKED_DOUBLE_QUOTED_NAME; + case '\'': + checkLenient(); + return peeked = PEEKED_SINGLE_QUOTED_NAME; + case '}': + if (peekStack != NONEMPTY_OBJECT) { + return peeked = PEEKED_END_OBJECT; + } else { + throw syntaxError("Expected name"); + } + default: + checkLenient(); + pos--; + if (isLiteral((char) c)) { + return peeked = PEEKED_UNQUOTED_NAME; + } else { + throw syntaxError("Expected name"); + } + } + } else if (peekStack == DANGLING_NAME) { + stack[stackSize - 1] = NONEMPTY_OBJECT; + int c = nextNonWhitespace(true); + switch (c) { + case ':': + break; + case '=': + checkLenient(); + if ((pos < limit || fillBuffer(1)) && buffer[pos] == '>') { + pos++; + } + break; + default: + throw syntaxError("Expected ':'"); + } + } else if (peekStack == EMPTY_DOCUMENT) { + if (lenient) { + consumeNonExecutePrefix(); + } + stack[stackSize - 1] = NONEMPTY_DOCUMENT; + } else if (peekStack == NONEMPTY_DOCUMENT) { + int c = nextNonWhitespace(false); + if (c == -1) { + return peeked = PEEKED_EOF; + } else { + checkLenient(); + pos--; + } + } else if (peekStack == CLOSED) { + throw new IOException("closed"); + } + int c = nextNonWhitespace(true); + switch (c) { + case ']': + if (peekStack == EMPTY_ARRAY) { + return peeked = PEEKED_END_ARRAY; + } + case ';': + case ',': + if (peekStack == EMPTY_ARRAY || peekStack == NONEMPTY_ARRAY) { + checkLenient(); + pos--; + return peeked = PEEKED_NULL; + } else { + throw syntaxError("Unexpected value"); + } + case '\'': + checkLenient(); + return peeked = PEEKED_SINGLE_QUOTED; + case '"': + return peeked = PEEKED_DOUBLE_QUOTED; + case '[': + return peeked = PEEKED_BEGIN_ARRAY; + case '{': + return peeked = PEEKED_BEGIN_OBJECT; + default: + pos--; + } + int result = peekKeyword(); + if (result != PEEKED_NONE) { + return result; + } + result = peekNumber(); + if (result != PEEKED_NONE) { + return result; + } + if (!isLiteral(buffer[pos])) { + throw syntaxError("Expected value"); + } + checkLenient(); + return peeked = PEEKED_UNQUOTED; + } + + private int peekKeyword() throws IOException { + char c = buffer[pos]; + String keyword; + String keywordUpper; + int peeking; + /*if (c == 't' || c == 'T') { + keyword = "true"; + keywordUpper = "TRUE"; + peeking = PEEKED_TRUE; + } else if (c == 'f' || c == 'F') { + keyword = "false"; + keywordUpper = "FALSE"; + peeking = PEEKED_FALSE; + } else */ + if (c == 'n' || c == 'N') { + keyword = "null"; + keywordUpper = "NULL"; + peeking = PEEKED_NULL; + } else { + return PEEKED_NONE; + } + int length = keyword.length(); + for (int i = 1; i < length; i++) { + if (pos + i >= limit && !fillBuffer(i + 1)) { + return PEEKED_NONE; + } + c = buffer[pos + i]; + if (c != keyword.charAt(i) && c != keywordUpper.charAt(i)) { + return PEEKED_NONE; + } + } + if ((pos + length < limit || fillBuffer(length + 1)) + && isLiteral(buffer[pos + length])) { + return PEEKED_NONE; + } + pos += length; + return peeked = peeking; + } + + private int peekNumber() throws IOException { + char[] buffer = this.buffer; + int p = pos; + int l = limit; + long value = 0; + boolean negative = false; + boolean fitsInLong = true; + int last = NUMBER_CHAR_NONE; + int i = 0; + charactersOfNumber: + for (; true; i++) { + if (p + i == l) { + if (i == buffer.length) { + return PEEKED_NONE; + } + if (!fillBuffer(i + 1)) { + break; + } + p = pos; + l = limit; + } + char c = buffer[p + i]; + switch (c) { + case '-': + if (last == NUMBER_CHAR_NONE) { + negative = true; + last = NUMBER_CHAR_SIGN; + continue; + } else if (last == NUMBER_CHAR_EXP_E) { + last = NUMBER_CHAR_EXP_SIGN; + continue; + } + return PEEKED_NONE; + case '+': + if (last == NUMBER_CHAR_EXP_E) { + last = NUMBER_CHAR_EXP_SIGN; + continue; + } + return PEEKED_NONE; + case 'e': + case 'E': + if (last == NUMBER_CHAR_DIGIT || last == NUMBER_CHAR_FRACTION_DIGIT) { + last = NUMBER_CHAR_EXP_E; + continue; + } + return PEEKED_NONE; + case '.': + if (last == NUMBER_CHAR_DIGIT) { + last = NUMBER_CHAR_DECIMAL; + continue; + } + return PEEKED_NONE; + default: + if (c < '0' || c > '9') { + if (!isLiteral(c)) { + break charactersOfNumber; + } + return PEEKED_NONE; + } + if (last == NUMBER_CHAR_SIGN || last == NUMBER_CHAR_NONE) { + value = -(c - '0'); + last = NUMBER_CHAR_DIGIT; + } else if (last == NUMBER_CHAR_DIGIT) { + if (value == 0) { + return PEEKED_NONE; + } + long newValue = value * 10 - (c - '0'); + fitsInLong &= value > MIN_INCOMPLETE_INTEGER + || (value == MIN_INCOMPLETE_INTEGER && newValue < value); + value = newValue; + } else if (last == NUMBER_CHAR_DECIMAL) { + last = NUMBER_CHAR_FRACTION_DIGIT; + } else if (last == NUMBER_CHAR_EXP_E || last == NUMBER_CHAR_EXP_SIGN) { + last = NUMBER_CHAR_EXP_DIGIT; + } + } + } + if (last == NUMBER_CHAR_DIGIT && fitsInLong && (value != Long.MIN_VALUE || negative) && (value != 0 || !negative)) { + //peekedLong = negative ? value : -value; + pos += i; + //return peeked = PEEKED_LONG; + return peeked = PEEKED_UNQUOTED; + } else if (last == NUMBER_CHAR_DIGIT || last == NUMBER_CHAR_FRACTION_DIGIT || last == NUMBER_CHAR_EXP_DIGIT) { + //peekedNumberLength = i; + //return peeked = PEEKED_NUMBER; + return peeked = PEEKED_UNQUOTED; + } else { + return PEEKED_NONE; + } + } + + private boolean isLiteral(char c) throws IOException { + switch (c) { + case '/': + case '\\': + case ';': + case '#': + case '=': + checkLenient(); + case '{': + case '}': + case '[': + case ']': + case ':': + case ',': + case ' ': + case '\t': + case '\f': + case '\r': + case '\n': + return false; + default: + return true; + } + } + + public StringBuilder nextName() throws IOException { + int p = peeked; + if (p == PEEKED_NONE) { + p = doPeek(); + } + StringBuilder result; + if (p == PEEKED_UNQUOTED_NAME) { + result = nextUnquotedValue(); + } else if (p == PEEKED_SINGLE_QUOTED_NAME) { + result = nextQuotedValue('\''); + } else if (p == PEEKED_DOUBLE_QUOTED_NAME) { + result = nextQuotedValue('"'); + } else { + throw new IOException("Expected a name, but was " + peek() + locationString()); + } + peeked = PEEKED_NONE; + StringBuilder target = pathNames[stackSize - 1]; + target.setLength(0); + target.append(result); + return target; + } + + public String nextString() throws IOException { + int p = peeked; + if (p == PEEKED_NONE) { + p = doPeek(); + } + StringBuilder result = new StringBuilder(); + if (p == PEEKED_UNQUOTED) { + result.append(nextUnquotedValue()); + } else if (p == PEEKED_SINGLE_QUOTED) { + result.append(nextQuotedValue('\'')); + } else if (p == PEEKED_DOUBLE_QUOTED) { + result.append(nextQuotedValue('"')); + } else if (p == PEEKED_BUFFERED) { + result.append(stringBuilder); + //} else if (p == PEEKED_LONG) { + // result.append(stringBuilder); + // result.setLength(0); + // result.append(peekedLong); + //} else if (p == PEEKED_NUMBER) { + // result.append(makeStringFromBuffer(buffer, pos, peekedNumberLength)); + // pos += peekedNumberLength; + } else { + throw new IOException("Expected a string, but was " + peek() + locationString()); + } + peeked = PEEKED_NONE; + pathIndices[stackSize - 1]++; + return result.toString(); + } + + /*public boolean nextBoolean() throws IOException { + int p = peeked; + if (p == PEEKED_NONE) { + p = doPeek(); + } + if (p == PEEKED_TRUE) { + peeked = PEEKED_NONE; + pathIndices[stackSize - 1]++; + return true; + } else if (p == PEEKED_FALSE) { + peeked = PEEKED_NONE; + pathIndices[stackSize - 1]++; + return false; + } + throw new IOException("Expected a boolean, but was " + peek() + locationString()); + }*/ + + public void nextNull() throws IOException { + int p = peeked; + if (p == PEEKED_NONE) { + p = doPeek(); + } + if (p == PEEKED_NULL) { + peeked = PEEKED_NONE; + pathIndices[stackSize - 1]++; + } else { + throw new IOException("Expected null, but was " + peek() + locationString()); + } + } + + /*public Object nextNumber() throws IOException { + int p = peeked; + if (p == PEEKED_NONE) { + p = doPeek(); + } + if (p == PEEKED_LONG) { + peeked = PEEKED_NONE; + pathIndices[stackSize - 1]++; + return peekedLong; + } + StringBuilder builder = this.stringBuilder; + if (p == PEEKED_NUMBER) { + builder.setLength(0); + builder.append(buffer, pos, peekedNumberLength); + pos += peekedNumberLength; + } else if (p == PEEKED_SINGLE_QUOTED || p == PEEKED_DOUBLE_QUOTED) { + builder = nextQuotedValue(p == PEEKED_SINGLE_QUOTED ? '\'' : '"'); + } else if (p == PEEKED_UNQUOTED) { + builder = nextUnquotedValue(); + } else if (p != PEEKED_BUFFERED) { + throw new IOException("Expected a number, but was " + peek() + locationString()); + } + peeked = PEEKED_BUFFERED; + String s = builder.toString(); + double d = Double.parseDouble(s); + if (!lenient && (Double.isNaN(d) || Double.isInfinite(d))) { + throw new IOException("NaN and infinities forbidden: " + d + locationString()); + } + builder.setLength(0); + peeked = PEEKED_NONE; + pathIndices[stackSize - 1]++; + return d; + }*/ + + private StringBuilder makeStringFromBuffer(char[] buffer, int pos, int length) { + stringBuilder.setLength(0); + stringBuilder.append(buffer, pos, length); + return stringBuilder; + } + + private StringBuilder nextQuotedValue(char quote) throws IOException { + char[] buffer = this.buffer; + StringBuilder builder = stringBuilder; + builder.setLength(0); + while (true) { + int p = pos; + int l = limit; + int start = p; + while (p < l) { + int c = buffer[p++]; + if (c == quote) { + pos = p; + int len = p - start - 1; + builder.append(buffer, start, len); + return builder; + } else if (c == '\\') { + pos = p; + int len = p - start - 1; + builder.append(buffer, start, len); + builder.append(readEscapeCharacter()); + p = pos; + l = limit; + start = p; + } else if (c == '\n') { + lineNumber++; + lineStart = p; + } + } + builder.append(buffer, start, p - start); + pos = p; + if (!fillBuffer(1)) { + throw syntaxError("Unterminated string"); + } + } + } + + @SuppressWarnings("fallthrough") + private StringBuilder nextUnquotedValue() throws IOException { + StringBuilder builder = stringBuilder; + builder.setLength(0); + int i = 0; + findNonLiteralCharacter: + while (true) { + for (; pos + i < limit; i++) { + switch (buffer[pos + i]) { + case '/': + case '\\': + case ';': + case '#': + case '=': + checkLenient(); // fall-through + case '{': + case '}': + case '[': + case ']': + case ':': + case ',': + case ' ': + case '\t': + case '\f': + case '\r': + case '\n': + break findNonLiteralCharacter; + } + } + builder.append(buffer, pos, i); + pos += i; + i = 0; + if (!fillBuffer(1)) { + break; + } + } + builder.append(buffer, pos, i); + pos += i; + return builder; + } + + private void skipQuotedValue(char quote) throws IOException { + char[] buffer = this.buffer; + do { + int p = pos; + int l = limit; + while (p < l) { + int c = buffer[p++]; + if (c == quote) { + pos = p; + return; + } else if (c == '\\') { + pos = p; + readEscapeCharacter(); + p = pos; + l = limit; + } else if (c == '\n') { + lineNumber++; + lineStart = p; + } + } + pos = p; + } while (fillBuffer(1)); + throw syntaxError("Unterminated string"); + } + + private void skipUnquotedValue() throws IOException { + do { + int i = 0; + for (; pos + i < limit; i++) { + switch (buffer[pos + i]) { + case '/': + case '\\': + case ';': + case '#': + case '=': + checkLenient(); + case '{': + case '}': + case '[': + case ']': + case ':': + case ',': + case ' ': + case '\t': + case '\f': + case '\r': + case '\n': + pos += i; + return; + } + } + pos += i; + } while (fillBuffer(1)); + } + + public void close() throws IOException { + if (in != null) { + in.close(); + } + clear(); + stack[0] = CLOSED; + stackSize = 1; + } + + public void skipValue() throws IOException { + int count = 0; + do { + int p = peeked; + if (p == PEEKED_NONE) { + p = doPeek(); + } + if (p == PEEKED_BEGIN_ARRAY) { + push(EMPTY_ARRAY); + count++; + } else if (p == PEEKED_BEGIN_OBJECT) { + push(EMPTY_OBJECT); + count++; + } else if (p == PEEKED_END_ARRAY) { + stackSize--; + count--; + } else if (p == PEEKED_END_OBJECT) { + stackSize--; + count--; + } else if (p == PEEKED_UNQUOTED_NAME || p == PEEKED_UNQUOTED) { + skipUnquotedValue(); + } else if (p == PEEKED_SINGLE_QUOTED || p == PEEKED_SINGLE_QUOTED_NAME) { + skipQuotedValue('\''); + } else if (p == PEEKED_DOUBLE_QUOTED || p == PEEKED_DOUBLE_QUOTED_NAME) { + skipQuotedValue('"'); + //} else if (p == PEEKED_NUMBER) { + // pos += peekedNumberLength; + } + peeked = PEEKED_NONE; + } while (count != 0); + pathIndices[stackSize - 1]++; + pathNames[stackSize - 1].setLength(0); + pathNames[stackSize - 1].append("null"); + } + + private void push(int newTop) { + if (stackSize == stack.length) { + int[] newStack = new int[stackSize * 2]; + int[] newPathIndices = new int[stackSize * 2]; + StringBuilder[] newPathNames = new StringBuilder[stackSize * 2]; + System.arraycopy(stack, 0, newStack, 0, stackSize); + System.arraycopy(pathIndices, 0, newPathIndices, 0, stackSize); + System.arraycopy(pathNames, 0, newPathNames, 0, stackSize); + for (int i = stackSize; i < newPathNames.length; i++) { + newPathNames[i] = new StringBuilder(); + } + stack = newStack; + pathIndices = newPathIndices; + pathNames = newPathNames; + } + stack[stackSize++] = newTop; + } + + private boolean fillBuffer(int minimum) throws IOException { + char[] buffer = this.buffer; + lineStart -= pos; + if (limit != pos) { + limit -= pos; + System.arraycopy(buffer, pos, buffer, 0, limit); + } else { + limit = 0; + } + pos = 0; + int total; + while ((total = in.read(buffer, limit, buffer.length - limit)) != -1) { + limit += total; + if (lineNumber == 0 && lineStart == 0 && limit > 0 && buffer[0] == '\ufeff') { + pos++; + lineStart++; + minimum++; + } + if (limit >= minimum) { + return true; + } + } + return false; + } + + private int nextNonWhitespace(boolean throwOnEof) throws IOException { + char[] buffer = this.buffer; + int p = pos; + int l = limit; + while (true) { + if (p == l) { + pos = p; + if (!fillBuffer(1)) { + break; + } + p = pos; + l = limit; + } + int c = buffer[p++]; + if (c == '\n') { + lineNumber++; + lineStart = p; + continue; + } else if (c == ' ' || c == '\r' || c == '\t') { + continue; + } + if (c == '/') { + pos = p; + if (p == l) { + pos--; + boolean charsLoaded = fillBuffer(2); + pos++; + if (!charsLoaded) { + return c; + } + } + checkLenient(); + char peek = buffer[pos]; + switch (peek) { + case '*': + pos++; + if (!skipTo("*/")) { + throw syntaxError("Unterminated comment"); + } + p = pos + 2; + l = limit; + continue; + case '/': + pos++; + skipToEndOfLine(); + p = pos; + l = limit; + continue; + default: + return c; + } + } else if (c == '#') { + pos = p; + checkLenient(); + skipToEndOfLine(); + p = pos; + l = limit; + } else { + pos = p; + return c; + } + } + if (throwOnEof) { + throw new EOFException("End of input" + locationString()); + } else { + return -1; + } + } + + private void checkLenient() throws IOException { + if (!lenient) { + throw syntaxError("Use setLenient(true) to accept malformed JSON"); + } + } + + private void skipToEndOfLine() throws IOException { + while (pos < limit || fillBuffer(1)) { + char c = buffer[pos++]; + if (c == '\n') { + lineNumber++; + lineStart = pos; + break; + } else if (c == '\r') { + break; + } + } + } + + private boolean skipTo(String toFind) throws IOException { + int length = toFind.length(); + outer: + for (; pos + length <= limit || fillBuffer(length); pos++) { + if (buffer[pos] == '\n') { + lineNumber++; + lineStart = pos + 1; + continue; + } + for (int c = 0; c < length; c++) { + if (buffer[pos + c] != toFind.charAt(c)) { + continue outer; + } + } + return true; + } + return false; + } + + private String locationString() { + int line = lineNumber + 1; + int column = pos - lineStart + 1; + return " at line " + line + " column " + column + " path " + getPath(); + } + + public StringBuilder getPath() { + StringBuilder result = stringBuilder; + result.setLength(0); + result.append('$'); + for (int i = 0, size = stackSize; i < size; i++) { + switch (stack[i]) { + case EMPTY_ARRAY: + case NONEMPTY_ARRAY: + result.append('[').append(pathIndices[i]).append(']'); + break; + + case EMPTY_OBJECT: + case DANGLING_NAME: + case NONEMPTY_OBJECT: + result.append('.'); + if (pathNames[i].length() > 0) { + result.append(pathNames[i]); + } + break; + + case NONEMPTY_DOCUMENT: + case EMPTY_DOCUMENT: + case CLOSED: + break; + } + } + return result; + } + + private char readEscapeCharacter() throws IOException { + if (pos == limit && !fillBuffer(1)) { + throw syntaxError("Unterminated escape sequence"); + } + char escaped = buffer[pos++]; + switch (escaped) { + case 'u': + if (pos + 4 > limit && !fillBuffer(4)) { + throw syntaxError("Unterminated escape sequence"); + } + char result = 0; + for (int i = pos, end = i + 4; i < end; i++) { + char c = buffer[i]; + result <<= 4; + if (c >= '0' && c <= '9') { + result += (c - '0'); + } else if (c >= 'a' && c <= 'f') { + result += (c - 'a' + 10); + } else if (c >= 'A' && c <= 'F') { + result += (c - 'A' + 10); + } else { + throw new NumberFormatException("\\u" + makeStringFromBuffer(buffer, pos, 4)); + } + } + pos += 4; + return result; + case 't': + return '\t'; + case 'b': + return '\b'; + case 'n': + return '\n'; + case 'r': + return '\r'; + case 'f': + return '\f'; + case '\n': + lineNumber++; + lineStart = pos; + case '\'': + case '"': + case '\\': + case '/': + return escaped; + default: + throw syntaxError("Invalid escape sequence"); + } + } + + private IOException syntaxError(String message) throws IOException { + throw new IOException(message + locationString()); + } + + private void consumeNonExecutePrefix() throws IOException { + nextNonWhitespace(true); + pos--; + if (pos + NON_EXECUTE_PREFIX.length > limit && !fillBuffer(NON_EXECUTE_PREFIX.length)) { + return; + } + for (int i = 0; i < NON_EXECUTE_PREFIX.length; i++) { + if (buffer[pos + i] != NON_EXECUTE_PREFIX[i]) { + return; // not a security token! + } + } + pos += NON_EXECUTE_PREFIX.length; + } +} diff --git a/datastructures-json/src/main/java/org/xbib/datastructures/json/Parser.java b/datastructures-json/src/main/java/org/xbib/datastructures/json/Parser.java new file mode 100644 index 0000000..2e4eb23 --- /dev/null +++ b/datastructures-json/src/main/java/org/xbib/datastructures/json/Parser.java @@ -0,0 +1,85 @@ +package org.xbib.datastructures.json; + +import org.xbib.datastructures.json.model.HashNode; +import org.xbib.datastructures.json.model.ListNode; +import org.xbib.datastructures.json.model.Node; +import org.xbib.datastructures.json.model.ValueNode; +import org.xbib.datastructures.json.token.Token; +import org.xbib.datastructures.json.token.TokenType; +import java.io.IOException; +import java.io.Reader; + +public class Parser { + + private final Lexer lexer; + + private Node root; + + private Token token; + + public Parser(Reader reader) { + this.lexer = new Lexer(reader); + } + + public void parse() throws IOException { + root = parseNode(null); + } + + public Node getNode() { + return root; + } + + private Node parseNode(Node parent) throws IOException { + if (token == null) { + token = lexer.next(); + if (token == null) { + return null; + } + } + switch (token.getType()) { + case BEGIN_ARRAY: + return parseListNode(parent); + case BEGIN_OBJECT: + return parseHashNode(parent); + case VALUE: + return parseValueNode(parent); + default: + return null; + } + } + + private ListNode parseListNode(Node parent) throws IOException { + ListNode node = new ListNode(parent); + while (token != null && token.getType() == TokenType.BEGIN_ARRAY) { + token = lexer.next(); + if (token != null) { + node.addItem(parseNode(node)); + } + } + return node; + } + + private HashNode parseHashNode(Node parent) throws IOException { + HashNode node = new HashNode(parent); + while (token != null && token.getType() == TokenType.BEGIN_OBJECT) { + String key = token.getValue(); + token = lexer.next(); + if (token != null) { + node.putChild(key, parseNode(node)); + } + } + return node; + } + + private ValueNode parseValueNode(Node parent) throws IOException { + ValueNode node = new ValueNode(parent); + if (token.getType() == TokenType.VALUE) { + node.setType(ValueNode.TextType.LINE); + node.setValue(token.getValue()); + token = lexer.next(); + } else { + node.setValue(""); + } + return node; + } +} diff --git a/datastructures-json/src/main/java/org/xbib/datastructures/json/model/HashNode.java b/datastructures-json/src/main/java/org/xbib/datastructures/json/model/HashNode.java new file mode 100644 index 0000000..e19c5bf --- /dev/null +++ b/datastructures-json/src/main/java/org/xbib/datastructures/json/model/HashNode.java @@ -0,0 +1,30 @@ +package org.xbib.datastructures.json.model; + +import org.xbib.datastructures.tiny.TinyMap; +import java.util.Map; + +public class HashNode extends Node { + + private final TinyMap.Builder children; + + public HashNode(Node parent) { + super(parent); + this.children = TinyMap.builder(); + } + + public Map getChildren() { + return children.build(); + } + + public boolean hasChild(String name) { + return children.containsKey(name); + } + + public Node getChild(String name) { + return children.get(name); + } + + public void putChild(String name, Node node) { + children.put(name, node); + } +} diff --git a/datastructures-json/src/main/java/org/xbib/datastructures/json/model/ListNode.java b/datastructures-json/src/main/java/org/xbib/datastructures/json/model/ListNode.java new file mode 100644 index 0000000..c7de1bc --- /dev/null +++ b/datastructures-json/src/main/java/org/xbib/datastructures/json/model/ListNode.java @@ -0,0 +1,34 @@ +package org.xbib.datastructures.json.model; + +import org.xbib.datastructures.tiny.TinyList; +import java.util.List; + +public class ListNode extends Node { + + private final TinyList.Builder items; + + public ListNode(Node parent) { + super(parent); + this.items = TinyList.builder(); + } + + public List getItems() { + return items.build(); + } + + public boolean hasItem(int index) { + return index >= 0 && index < items.size(); + } + + public Node getItem(int index) { + return items.get(index); + } + + public void addItem(Node node) { + items.add(node); + } + + public void insertItem(int index, Node node) { + items.add(index, node); + } +} diff --git a/datastructures-json/src/main/java/org/xbib/datastructures/json/model/Node.java b/datastructures-json/src/main/java/org/xbib/datastructures/json/model/Node.java new file mode 100644 index 0000000..1ddd96f --- /dev/null +++ b/datastructures-json/src/main/java/org/xbib/datastructures/json/model/Node.java @@ -0,0 +1,14 @@ +package org.xbib.datastructures.json.model; + +public abstract class Node { + + private final int depth; + + public Node(Node parent) { + this.depth = parent != null ? parent.depth + 1 : 0; + } + + public int getDepth() { + return depth; + } +} diff --git a/datastructures-json/src/main/java/org/xbib/datastructures/json/model/ValueNode.java b/datastructures-json/src/main/java/org/xbib/datastructures/json/model/ValueNode.java new file mode 100644 index 0000000..d583d69 --- /dev/null +++ b/datastructures-json/src/main/java/org/xbib/datastructures/json/model/ValueNode.java @@ -0,0 +1,45 @@ +package org.xbib.datastructures.json.model; + +public class ValueNode extends Node { + + private String value; + + private TextType type; + + public ValueNode(Node parent) { + this(parent, ""); + } + + public ValueNode(Node parent, String value) { + this(parent, value, TextType.LINE); + } + + public ValueNode(Node parent, String value, TextType type) { + super(parent); + this.value = value; + this.type = type; + } + + public void setValue(String value) { + this.value = value; + } + + public String getValue() { + return value; + } + + public void setType(TextType type) { + this.type = type; + } + + public TextType getType() { + return type; + } + + public enum TextType { + LINE, + MULTILINE, + TEXT, + TEXT_ANGLE + } +} diff --git a/datastructures-json/src/main/java/org/xbib/datastructures/json/token/Token.java b/datastructures-json/src/main/java/org/xbib/datastructures/json/token/Token.java new file mode 100644 index 0000000..1cab86c --- /dev/null +++ b/datastructures-json/src/main/java/org/xbib/datastructures/json/token/Token.java @@ -0,0 +1,32 @@ +package org.xbib.datastructures.json.token; + +public class Token { + + private final TokenType type; + + private final int depth; + + private final String value; + + public Token(TokenType type, int depth) { + this(type, depth, null); + } + + public Token(TokenType type, int depth, String value) { + this.type = type; + this.depth = depth; + this.value = value; + } + + public TokenType getType() { + return type; + } + + public int getDepth() { + return depth; + } + + public String getValue() { + return value; + } +} diff --git a/datastructures-json/src/main/java/org/xbib/datastructures/json/token/TokenType.java b/datastructures-json/src/main/java/org/xbib/datastructures/json/token/TokenType.java new file mode 100644 index 0000000..3b8424c --- /dev/null +++ b/datastructures-json/src/main/java/org/xbib/datastructures/json/token/TokenType.java @@ -0,0 +1,13 @@ +package org.xbib.datastructures.json.token; + +public enum TokenType { + NONE, + BEGIN_ARRAY, + END_ARRAY, + BEGIN_OBJECT, + END_OBJECT, + NAME, + VALUE, + NULL, + END_DOCUMENT +} diff --git a/datastructures-json/src/test/java/org/xbib/datastructures/json/test/GeneratorTest.java b/datastructures-json/src/test/java/org/xbib/datastructures/json/test/GeneratorTest.java new file mode 100644 index 0000000..8b52ebb --- /dev/null +++ b/datastructures-json/src/test/java/org/xbib/datastructures/json/test/GeneratorTest.java @@ -0,0 +1,110 @@ +package org.xbib.datastructures.json.test; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.xbib.datastructures.json.Generator; +import org.xbib.datastructures.json.Lexer; +import java.io.IOException; +import java.io.StringReader; +import java.io.StringWriter; +import java.util.Collection; +import java.util.List; +import java.util.Map; + +public class GeneratorTest { + + Generator generator; + + @BeforeEach + public void setup() { + StringWriter sw = new StringWriter(); + generator = new Generator(sw); + } + + @Test + public void testArrayStr() throws IOException { + generator.beginArray() + .writeString("a") + .writeString("b") + .writeString("c") + .endArray(); + String s = generator.toString(); + assertEquals("[\"a\",\"b\",\"c\"]", s); + Lexer lexer = new Lexer(new StringReader(s)); + Collection list = lexer.nextList(); + assertEquals("[a, b, c]", list.toString()); + } + + @Test + public void testArrayNum() throws IOException { + generator.beginArray() + .writeNumber(1) + .writeNumber(2) + .writeNumber(3) + .endArray(); + String s = generator.toString(); + assertEquals("[1,2,3]", s); + Lexer lexer = new Lexer(new StringReader(s)); + Collection list = lexer.nextList(); + assertEquals("[1, 2, 3]", list.toString()); + } + + @Test + public void testArrayFloat() throws IOException { + generator.beginArray() + .writeNumber(1.0) + .writeNumber(2.0) + .writeNumber(3.0) + .endArray(); + String s = generator.toString(); + assertEquals("[1.0,2.0,3.0]", s); + Lexer lexer = new Lexer(new StringReader(s)); + Collection list = lexer.nextList(); + assertEquals("[1.0, 2.0, 3.0]", list.toString()); + } + + @Test + public void testArrayFromCollection() throws IOException { + generator.write(List.of("a", "b", "c")); + assertEquals("[\"a\",\"b\",\"c\"]", generator.toString()); + } + + @Test + public void testObjectStr() throws IOException { + generator.beginObject() + .writeString("a") + .writeString("b") + .endObject(); + String s = generator.toString(); + assertEquals("{\"a\":\"b\"}", s); + Lexer lexer = new Lexer(new StringReader(s)); + Map map = lexer.nextMap(); + assertEquals("{a=b}", map.toString()); + } + + @Test + public void testObjectNum() throws IOException { + generator.beginObject() + .writeString("a") + .writeNumber(1) + .endObject(); + String s = generator.toString(); + assertEquals("{\"a\":1}", s); + Lexer lexer = new Lexer(new StringReader(s)); + Map map = lexer.nextMap(); + assertEquals("{a=1}", map.toString()); + } + + @Test + public void testObjectStrFromMap() throws IOException { + generator.write(Map.of("a", "b")); + assertEquals("{\"a\":\"b\"}", generator.toString()); + } + + @Test + public void testObjectNumFromMap() throws IOException { + generator.write(Map.of("a", 2)); + assertEquals("{\"a\":2}", generator.toString()); + } +} diff --git a/datastructures-json/src/test/java/org/xbib/datastructures/json/test/LargeFileTest.java b/datastructures-json/src/test/java/org/xbib/datastructures/json/test/LargeFileTest.java new file mode 100644 index 0000000..b1fa6c1 --- /dev/null +++ b/datastructures-json/src/test/java/org/xbib/datastructures/json/test/LargeFileTest.java @@ -0,0 +1,30 @@ +package org.xbib.datastructures.json.test; + +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; +import org.xbib.datastructures.json.Lexer; +import java.io.BufferedReader; +import java.io.IOException; +import java.io.InputStreamReader; +import java.io.StringReader; +import java.nio.file.Files; +import java.nio.file.Paths; +import java.util.zip.GZIPInputStream; + +public class LargeFileTest { + + @Disabled + @Test + public void largeFileTest() throws IOException { + try (BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(new GZIPInputStream(Files.newInputStream(Paths.get("/Users/joerg/jam.jsonlines.gz")))))) { + bufferedReader.lines().forEach(line -> { + try { + Lexer lexer = new Lexer(new StringReader(line)); + lexer.nextObject(); + } catch (IOException e) { + throw new RuntimeException(line, e); + } + }); + } + } +} diff --git a/datastructures-json/src/test/java/org/xbib/datastructures/json/test/LexerText.java b/datastructures-json/src/test/java/org/xbib/datastructures/json/test/LexerText.java new file mode 100644 index 0000000..9daed83 --- /dev/null +++ b/datastructures-json/src/test/java/org/xbib/datastructures/json/test/LexerText.java @@ -0,0 +1,174 @@ +package org.xbib.datastructures.json.test; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertFalse; +import com.google.gson.Gson; +import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.xbib.datastructures.json.Lexer; +import org.xbib.datastructures.json.token.TokenType; +import java.io.IOException; +import java.io.StringReader; +import java.util.logging.Logger; + +public class LexerText { + + private static final Logger logger = Logger.getLogger(LexerText.class.getName()); + + private Gson gson; + + @BeforeEach + public void setUp() { + gson = new Gson(); + } + + @Test + public void testDecoderIsLenientByDefaultButReaderIsNot() { + Lexer lexer = new Lexer(new StringReader("{a:1}")); + assertFalse(lexer.isLenient()); + } + + @Test + public void testValid() throws IOException { + // no ints because of gson adheres to "Javascript has no ints" + assertValidJson(1, "{a:1.0}"); + assertValidJson(2, "{a:1.0}{b:3.0}"); + assertValidJson(2, "{a:1.0}\n\t{b:3.0}"); + assertValidJson(1, "{'a':[1.0, '2', true, null]}"); + } + + @Test + public void testLists() throws Exception { + //assertListOf("[1, 2, 3, 99999]", com.google.gson.stream.JsonReader::nextLong, Lexer::nextNumber); + //assertListOf("[1.0, 2.0, 4.5, NaN]", com.google.gson.stream.JsonReader::nextDouble, Lexer::nextNumber); + //assertListOf("[true, false]", com.google.gson.stream.JsonReader::nextBoolean, Lexer::nextBoolean); + assertListOf("[1, '2', \"3\", 4.5, NaN]", com.google.gson.stream.JsonReader::nextString, Lexer::nextString); + assertListOf("[null, null]", com.google.gson.stream.JsonReader::nextNull, Lexer::nextNull); + } + + @Test + public void testInvalid() throws IOException { + assertInvalidJson(false, "Use setLenient(true)", "1-", com.google.gson.stream.JsonReader::peek, Lexer::next); + assertInvalidJson(false, "Use setLenient(true)", "1+", com.google.gson.stream.JsonReader::peek, Lexer::next); + assertInvalidJson(false, "Use setLenient(true)", "01", com.google.gson.stream.JsonReader::peek, Lexer::next); + //assertInvalidJson(false, "Use setLenient(true)", "f", com.google.gson.stream.JsonReader::nextBoolean, Lexer::nextBoolean); + //assertInvalidJson(false, "Use setLenient(true)", "felse", com.google.gson.stream.JsonReader::nextBoolean, Lexer::nextBoolean); + //assertInvalidJson(true, "Expected a double, but was BOOLEAN", "true", com.google.gson.stream.JsonReader::nextDouble, Lexer::nextNumber); + //assertInvalidJson(false, "NaN and infinities forbidden", "\"NaN\"", com.google.gson.stream.JsonReader::nextDouble, Lexer::nextNumber); + assertInvalidJson(true, "Unterminated string", "\"NaN", com.google.gson.stream.JsonReader::nextString, Lexer::nextString); + assertInvalidJson(true, "Unterminated string", "\"NaN", com.google.gson.stream.JsonReader::skipValue, Lexer::skipValue); + assertInvalidJson(true, "Unterminated string", "'NaN", com.google.gson.stream.JsonReader::skipValue, Lexer::skipValue); + assertInvalidJson(true, "Use setLenient(true)", "{test;", x -> { + x.beginObject(); + x.peek(); + x.setLenient(false); + x.skipValue(); + }, x -> { + x.beginObject(); + x.next(); + x.setLenient(false); + x.skipValue(); + }); + assertInvalidJson(true, "Use setLenient(true)", "{test;", x -> { + x.beginObject(); + x.peek(); + x.setLenient(false); + x.nextName(); + }, x -> { + x.beginObject(); + x.next(); + x.setLenient(false); + x.nextName(); + }); + /*assertInvalidJson(true, "Unterminated array ", "[1[", x -> { + x.beginArray(); + x.nextDouble(); + x.nextDouble(); + }, x -> { + x.beginArray(); + x.nextNumber(); + x.nextNumber(); + });*/ + assertInvalidJson(true, "Unterminated comment", "/*", com.google.gson.stream.JsonReader::skipValue, Lexer::skipValue); + } + + private void assertValidJson(int expectedDocs, String s) throws IOException { + int actualDocs = 0; + try (com.google.gson.stream.JsonReader expectedReader = new com.google.gson.stream.JsonReader(new StringReader(s))) { + Lexer lexer = new Lexer(new StringReader(s), true); + expectedReader.setLenient(true); + while (expectedReader.peek() != com.google.gson.stream.JsonToken.END_DOCUMENT) { + Object expectedValue = gson.fromJson(expectedReader, Object.class); + Object value = lexer.nextObject(); + logger.info("expected = " + expectedValue + " " + expectedValue.getClass()); + logger.info("value = " + value + " " + value.getClass()); + assertEquals(expectedValue.toString(), value.toString()); + actualDocs++; + } + } + assertEquals(actualDocs, expectedDocs); + } + + private void assertListOf(String s, CheckedFunction expectedFn, CheckedFunction actualFn) throws Exception { + try (com.google.gson.stream.JsonReader expectedReader = new com.google.gson.stream.JsonReader(new StringReader(s))) { + expectedReader.setLenient(true); + expectedReader.beginArray(); + Lexer lexer = new Lexer(new StringReader(s), true); + lexer.beginArray(); + while (expectedReader.hasNext()) { + T expectedValue = expectedFn.apply(expectedReader); + assertEquals(actualFn.apply(lexer), expectedValue); + } + assertFalse(lexer.hasNext()); + assertEquals(lexer.next(), TokenType.END_ARRAY); + expectedReader.endArray(); + lexer.endArray(); + assertEquals(lexer.next().name(), com.google.gson.stream.JsonToken.END_DOCUMENT.name()); + assertEquals(expectedReader.peek().name(), com.google.gson.stream.JsonToken.END_DOCUMENT.name()); + } + } + + private void assertListOf(String s, VoidCheckedFunction expectedFn, VoidCheckedFunction actualFn) throws Exception { + assertListOf(s, x -> { + expectedFn.apply(x); + return null; + }, x -> { + actualFn.apply(x); + return null; + }); + } + + private void assertInvalidJson(boolean isLenient, String exception, String s, VoidCheckedFunction expectedFn, VoidCheckedFunction actualFn) throws IOException { + assertInvalidJson(isLenient, exception, s, x -> { + expectedFn.apply(x); + return null; + }, x -> { + actualFn.apply(x); + return null; + }); + } + + private void assertInvalidJson(boolean isLenient, String exception, String s, CheckedFunction expectedFn, CheckedFunction actualFn) throws IOException { + try (com.google.gson.stream.JsonReader expectedReader = new com.google.gson.stream.JsonReader(new StringReader(s))) { + Lexer lexer = new Lexer(new StringReader(s), isLenient); + expectedReader.setLenient(isLenient); + Assertions.assertThrows(Exception.class, () -> { + expectedFn.apply(expectedReader); + }); + Assertions.assertThrows(Exception.class, () -> { + actualFn.apply(lexer); + }); + } + } + + @FunctionalInterface + public interface CheckedFunction { + R apply(T t) throws Exception; + } + + @FunctionalInterface + public interface VoidCheckedFunction { + void apply(T t) throws Exception; + } +} diff --git a/datastructures-tiny/NOTICE.txt b/datastructures-tiny/NOTICE.txt index f11db3c..be2c92b 100644 --- a/datastructures-tiny/NOTICE.txt +++ b/datastructures-tiny/NOTICE.txt @@ -7,7 +7,6 @@ https://github.com/intelie/tinymap - Serialization removed - Object reuse removed -- no TinyList -- no JSON parser - Builder classes moved to internal classes -- multi map added \ No newline at end of file +- multi map added +- JSON parser moved to datatstructures-json-tiny diff --git a/datastructures-tiny/build.gradle b/datastructures-tiny/build.gradle index 458148a..50d4350 100644 --- a/datastructures-tiny/build.gradle +++ b/datastructures-tiny/build.gradle @@ -1,20 +1,4 @@ -sourceSets { - jmh { - java.srcDirs = ['src/jmh/java'] - resources.srcDirs = ['src/jmh/resources'] - compileClasspath += sourceSets.main.runtimeClasspath - } -} dependencies { api project(':datastructures-common') - jmhImplementation 'org.openjdk.jmh:jmh-core:1.21' - jmhAnnotationProcessor 'org.openjdk.jmh:jmh-generator-annprocess:1.21' } - -task jmh(type: JavaExec, group: 'jmh', dependsOn: jmhClasses) { - main = 'org.openjdk.jmh.Main' - classpath = sourceSets.jmh.compileClasspath + sourceSets.jmh.runtimeClasspath -} - -classes.finalizedBy(jmhClasses) diff --git a/datastructures-tiny/src/jmh/java/org/xbib/datastructures/tiny/jmh/CollectionAdditionTest.java b/datastructures-tiny/src/jmh/java/org/xbib/datastructures/tiny/jmh/CollectionAdditionTest.java index ca97090..d3dd2a8 100644 --- a/datastructures-tiny/src/jmh/java/org/xbib/datastructures/tiny/jmh/CollectionAdditionTest.java +++ b/datastructures-tiny/src/jmh/java/org/xbib/datastructures/tiny/jmh/CollectionAdditionTest.java @@ -20,12 +20,12 @@ import java.util.TreeSet; @State(Scope.Benchmark) @BenchmarkMode(Mode.Throughput) -@Warmup(iterations = 10) +@Warmup(iterations = 5) @Fork(1) -@Measurement(iterations = 10) +@Measurement(iterations = 5) public class CollectionAdditionTest { - private static final int COLLECTION_SIZE = 1_000_000; + private static final int COLLECTION_SIZE = 1_000; @Benchmark public List arrayList() { diff --git a/datastructures-tiny/src/jmh/java/org/xbib/datastructures/tiny/jmh/CollectionRemovalTest.java b/datastructures-tiny/src/jmh/java/org/xbib/datastructures/tiny/jmh/CollectionRemovalTest.java index 015852b..c687cb3 100644 --- a/datastructures-tiny/src/jmh/java/org/xbib/datastructures/tiny/jmh/CollectionRemovalTest.java +++ b/datastructures-tiny/src/jmh/java/org/xbib/datastructures/tiny/jmh/CollectionRemovalTest.java @@ -21,12 +21,12 @@ import java.util.TreeSet; @State(Scope.Benchmark) @BenchmarkMode(Mode.Throughput) -@Warmup(iterations = 10) +@Warmup(iterations = 5) @Fork(1) -@Measurement(iterations = 10) +@Measurement(iterations = 5) public class CollectionRemovalTest { - private static final int COLLECTION_SIZE = 25_000; + private static final int COLLECTION_SIZE = 1_000; private ArrayList arrayList; private LinkedList linkedList; diff --git a/datastructures-tiny/src/jmh/java/org/xbib/datastructures/tiny/jmh/CollectionRetrievalTest.java b/datastructures-tiny/src/jmh/java/org/xbib/datastructures/tiny/jmh/CollectionRetrievalTest.java index b797f81..d2ac0b2 100644 --- a/datastructures-tiny/src/jmh/java/org/xbib/datastructures/tiny/jmh/CollectionRetrievalTest.java +++ b/datastructures-tiny/src/jmh/java/org/xbib/datastructures/tiny/jmh/CollectionRetrievalTest.java @@ -21,12 +21,12 @@ import java.util.TreeSet; @State(Scope.Benchmark) @BenchmarkMode(Mode.Throughput) -@Warmup(iterations = 10) +@Warmup(iterations = 5) @Fork(1) -@Measurement(iterations = 10) +@Measurement(iterations = 5) public class CollectionRetrievalTest { - private static final int COLLECTION_SIZE = 25_000; + private static final int COLLECTION_SIZE = 1_000; private ArrayList arrayList; private LinkedList linkedList; diff --git a/datastructures-tiny/src/jmh/java/org/xbib/datastructures/tiny/jmh/MapAdditionTest.java b/datastructures-tiny/src/jmh/java/org/xbib/datastructures/tiny/jmh/MapAdditionTest.java index c6576ca..e74b182 100644 --- a/datastructures-tiny/src/jmh/java/org/xbib/datastructures/tiny/jmh/MapAdditionTest.java +++ b/datastructures-tiny/src/jmh/java/org/xbib/datastructures/tiny/jmh/MapAdditionTest.java @@ -19,12 +19,12 @@ import java.util.concurrent.ConcurrentHashMap; @State(Scope.Benchmark) @BenchmarkMode(Mode.Throughput) -@Warmup(iterations = 10) +@Warmup(iterations = 5) @Fork(value = 1) -@Measurement(iterations = 10) +@Measurement(iterations = 5) public class MapAdditionTest { - private static final int COLLECTION_SIZE = 1_000_000; + private static final int COLLECTION_SIZE = 1_000; @Benchmark public Map hashMap() { diff --git a/datastructures-tiny/src/jmh/java/org/xbib/datastructures/tiny/jmh/MapRemovalTest.java b/datastructures-tiny/src/jmh/java/org/xbib/datastructures/tiny/jmh/MapRemovalTest.java index 7ea61c6..0354302 100644 --- a/datastructures-tiny/src/jmh/java/org/xbib/datastructures/tiny/jmh/MapRemovalTest.java +++ b/datastructures-tiny/src/jmh/java/org/xbib/datastructures/tiny/jmh/MapRemovalTest.java @@ -22,12 +22,12 @@ import java.util.concurrent.ConcurrentHashMap; @State(Scope.Benchmark) @BenchmarkMode(Mode.Throughput) -@Warmup(iterations = 10) +@Warmup(iterations = 5) @Fork(value = 1) -@Measurement(iterations = 10) +@Measurement(iterations = 5) public class MapRemovalTest { - private static final int COLLECTION_SIZE = 25_000; + private static final int COLLECTION_SIZE = 1_000; private HashMap hashMap; private LinkedHashMap linkedHashMap; diff --git a/datastructures-tiny/src/jmh/java/org/xbib/datastructures/tiny/jmh/MapRetrievalTest.java b/datastructures-tiny/src/jmh/java/org/xbib/datastructures/tiny/jmh/MapRetrievalTest.java index 2146df4..4e89288 100644 --- a/datastructures-tiny/src/jmh/java/org/xbib/datastructures/tiny/jmh/MapRetrievalTest.java +++ b/datastructures-tiny/src/jmh/java/org/xbib/datastructures/tiny/jmh/MapRetrievalTest.java @@ -22,12 +22,12 @@ import java.util.concurrent.ConcurrentHashMap; @State(Scope.Benchmark) @BenchmarkMode(Mode.Throughput) -@Warmup(iterations = 10) +@Warmup(iterations = 5) @Fork(1) -@Measurement(iterations = 10) +@Measurement(iterations = 5) public class MapRetrievalTest { - private static final int COLLECTION_SIZE = 25_000; + private static final int COLLECTION_SIZE = 1_000; private HashMap hashMap; private LinkedHashMap linkedHashMap; diff --git a/datastructures-tiny/src/main/java/module-info.java b/datastructures-tiny/src/main/java/module-info.java index 7f6dc03..20d189a 100644 --- a/datastructures-tiny/src/main/java/module-info.java +++ b/datastructures-tiny/src/main/java/module-info.java @@ -1,4 +1,5 @@ module org.xbib.datastructures.tiny { exports org.xbib.datastructures.tiny; - requires transitive org.xbib.datastructures.common; + requires org.xbib.datastructures.common; + requires java.logging; } diff --git a/datastructures-tiny/src/main/java/org/xbib/datastructures/tiny/IndexedCollectionBase.java b/datastructures-tiny/src/main/java/org/xbib/datastructures/tiny/IndexedCollectionBase.java index f0dc371..3beb406 100644 --- a/datastructures-tiny/src/main/java/org/xbib/datastructures/tiny/IndexedCollectionBase.java +++ b/datastructures-tiny/src/main/java/org/xbib/datastructures/tiny/IndexedCollectionBase.java @@ -109,7 +109,7 @@ public abstract class IndexedCollectionBase extends AbstractCollection imp private int next; private int prev; - public CollectionIterator(int fromIndex) { + private CollectionIterator(int fromIndex) { this.current = -1; this.next = findNext(fromIndex); this.prev = findPrev(fromIndex - 1); diff --git a/datastructures-tiny/src/main/java/org/xbib/datastructures/tiny/IndexedList.java b/datastructures-tiny/src/main/java/org/xbib/datastructures/tiny/IndexedList.java new file mode 100644 index 0000000..86144ff --- /dev/null +++ b/datastructures-tiny/src/main/java/org/xbib/datastructures/tiny/IndexedList.java @@ -0,0 +1,11 @@ +package org.xbib.datastructures.tiny; + +import java.util.List; + +public interface IndexedList extends List, IndexedCollection { + + T removeLast(); + + @Override + IndexedList subList(int fromIndex, int toIndex); +} diff --git a/datastructures-tiny/src/main/java/org/xbib/datastructures/tiny/IndexedListBase.java b/datastructures-tiny/src/main/java/org/xbib/datastructures/tiny/IndexedListBase.java new file mode 100644 index 0000000..04d9400 --- /dev/null +++ b/datastructures-tiny/src/main/java/org/xbib/datastructures/tiny/IndexedListBase.java @@ -0,0 +1,186 @@ +package org.xbib.datastructures.tiny; + +import java.util.Collection; +import java.util.List; +import java.util.ListIterator; +import java.util.Objects; +import java.util.function.Consumer; + +public abstract class IndexedListBase extends IndexedCollectionBase implements IndexedList { + + @Override + public boolean addAll(int index, Collection collection) { + boolean added = false; + for (T obj : collection) { + add(index++, obj); + added = true; + } + return added; + } + + @Override + public boolean equals(Object that) { + if (this == that) { + return true; + } + if (!(that instanceof List) || size() != ((List) that).size()) { + return false; + } + List list = (List) that; + int index = 0; + for (Object obj : list) { + if (!Objects.equals(obj, get(index++))) { + return false; + } + } + return true; + } + + @Override + public int hashCode() { + int hash = 1; + for (int i = 0; i < rawSize(); i++) { + hash = 31 * hash + Objects.hashCode(getEntryAt(i)); + } + return hash; + } + + @Override + public final boolean isRemoved(int index) { + return false; + } + + @Override + public final int rawSize() { + return size(); + } + + @Override + public T get(int index) { + return getEntryAt(index); + } + + @Override + public void add(int index, T obj) { + Preconditions.checkElementIndex(index, size() + 1); + for (int i = index; i < rawSize(); i++) { + obj = set(i, obj); + } + add(obj); + } + + @Override + public boolean removeAt(int index) { + remove(index); + return true; + } + + @Override + public T remove(int index) { + Preconditions.checkElementIndex(index, rawSize()); + T obj = removeLast(); + for (int i = rawSize() - 1; i >= index; i--) { + obj = set(i, obj); + } + return obj; + } + + @Override + public int indexOf(Object o) { + for (int i = 0; i < rawSize(); i++) { + if (Objects.equals(o, getEntryAt(i))) { + return i; + } + } + return -1; + } + + @Override + public int lastIndexOf(Object o) { + for (int i = rawSize() - 1; i >= 0; i--) { + if (Objects.equals(o, getEntryAt(i))) { + return i; + } + } + return -1; + } + + @Override + public ListIterator listIterator() { + return iterator(); + } + + @Override + public ListIterator listIterator(int fromIndex) { + return iterator(fromIndex); + } + + @Override + public IndexedList subList(int fromIndex, int toIndex) { + return new SubList(fromIndex, toIndex); + } + + @Override + public void forEach(Consumer action) { + for (int i = 0; i < rawSize(); i++) { + action.accept(getEntryAt(i)); + } + } + + public interface Immutable extends IndexedList { + @Override + default T set(int index, T obj) { + throw new UnsupportedOperationException("modification not supported: " + this); + } + + @Override + default T removeLast() { + throw new UnsupportedOperationException("modification not supported: " + this); + } + + @Override + default int addOrGetIndex(T obj) { + throw new UnsupportedOperationException("modification not supported: " + this); + } + } + + private class SubList extends IndexedListBase { + + private final int fromIndex; + private int toIndex; + + public SubList(int fromIndex, int toIndex) { + this.fromIndex = fromIndex; + this.toIndex = toIndex; + } + + @Override + public int addOrGetIndex(T obj) { + IndexedListBase.this.add(toIndex, obj); + toIndex++; + return -1; + } + + @Override + public int size() { + return toIndex - fromIndex; + } + + @Override + public T set(int index, T obj) { + Preconditions.checkElementIndex(index, toIndex - fromIndex); + return IndexedListBase.this.set(index + fromIndex, obj); + } + + @Override + public T removeLast() { + return IndexedListBase.this.remove(toIndex - 1); + } + + @Override + public T getEntryAt(int index) { + Preconditions.checkElementIndex(index, toIndex - fromIndex); + return IndexedListBase.this.getEntryAt(index + fromIndex); + } + } +} diff --git a/datastructures-tiny/src/main/java/org/xbib/datastructures/tiny/Preconditions.java b/datastructures-tiny/src/main/java/org/xbib/datastructures/tiny/Preconditions.java index 193a374..c534bdd 100644 --- a/datastructures-tiny/src/main/java/org/xbib/datastructures/tiny/Preconditions.java +++ b/datastructures-tiny/src/main/java/org/xbib/datastructures/tiny/Preconditions.java @@ -2,23 +2,15 @@ package org.xbib.datastructures.tiny; public abstract class Preconditions { - public static void checkArgument(boolean expression, Object errorMessage) { + public static void checkArgument(boolean expression, String errorMessage) { if (!expression) { - throw new IllegalArgumentException(String.valueOf(errorMessage)); + throw new IllegalArgumentException(errorMessage); } } - public static void checkArgument(boolean expression, - String errorMessageTemplate, - Object... errorMessageArgs) { + public static void checkState(boolean expression, String errorMessage) { if (!expression) { - throw new IllegalArgumentException(format(errorMessageTemplate, errorMessageArgs)); - } - } - - public static void checkState(boolean expression, Object errorMessage) { - if (!expression) { - throw new IllegalStateException(String.valueOf(errorMessage)); + throw new IllegalStateException(errorMessage); } } @@ -38,7 +30,7 @@ public abstract class Preconditions { } } - public static String format(String template, Object... args) { + private static String format(String template, Object... args) { template = String.valueOf(template); StringBuilder builder = new StringBuilder(template.length() + 16 * args.length); int templateStart = 0; diff --git a/datastructures-tiny/src/main/java/org/xbib/datastructures/tiny/TinyList.java b/datastructures-tiny/src/main/java/org/xbib/datastructures/tiny/TinyList.java new file mode 100644 index 0000000..37c8f67 --- /dev/null +++ b/datastructures-tiny/src/main/java/org/xbib/datastructures/tiny/TinyList.java @@ -0,0 +1,91 @@ +package org.xbib.datastructures.tiny; + +import java.util.Arrays; + +public class TinyList extends IndexedListBase implements IndexedListBase.Immutable { + + private final Object[] elements; + + private TinyList(Object[] elements) { + this.elements = elements; + } + + public static TinyList.Builder builder() { + return new TinyList.Builder<>(); + } + + @Override + public int size() { + return this.elements.length; + } + + @SuppressWarnings("unchecked") + @Override + public T getEntryAt(int index) { + return (T) elements[index]; + } + + public static class Builder + extends IndexedListBase + implements IndexedCollectionBase.NoAdditiveChange { + + private Object[] values; + + private int size; + + private Builder() { + this(4); + } + + private Builder(int initialSize) { + values = new Object[initialSize]; + clear(); + } + + @Override + public int addOrGetIndex(T obj) { + int index = size++; + if (index == values.length) { + values = Arrays.copyOf(values, values.length >> 1); + } + values[index] = obj; + return ~index; + } + + @Override + public T set(int index, T obj) { + T old = getEntryAt(index); + values[index] = obj; + return old; + } + + @SuppressWarnings("unchecked") + @Override + public T getEntryAt(int index) { + Preconditions.checkElementIndex(index, size); + return (T) values[index]; + } + + @Override + public void clear() { + Arrays.fill(values, 0, size, null); + size = 0; + } + + @Override + public int size() { + return size; + } + + @Override + public T removeLast() { + T old = set(size - 1, null); + size--; + return old; + } + + public TinyList build() { + return new TinyList<>(Arrays.copyOf(values, size)); + } + } +} diff --git a/datastructures-tiny/src/main/java/org/xbib/datastructures/tiny/TinyMap.java b/datastructures-tiny/src/main/java/org/xbib/datastructures/tiny/TinyMap.java index cc8195b..0d235f3 100644 --- a/datastructures-tiny/src/main/java/org/xbib/datastructures/tiny/TinyMap.java +++ b/datastructures-tiny/src/main/java/org/xbib/datastructures/tiny/TinyMap.java @@ -76,10 +76,7 @@ public abstract class TinyMap extends IndexedMapBase { }; } - public void compact() { - keys.compact(); - } - + @Override public V put(K key, V value) { int index = keys.addOrGetIndex(key); if (index >= 0) { @@ -142,16 +139,6 @@ public abstract class TinyMap extends IndexedMapBase { return keys.rawSize(); } - public TinyMap build() { - return buildWithKeys(this.keys.build()); - } - - public TinyMap buildWithKeys(TinySet keys) { - compact(); - Preconditions.checkArgument(keys.size() == size(), "Must have same size"); - return new SizeAny<>(keys, Arrays.copyOf(values, keys.size())); - } - @Override public void clear() { Arrays.fill(values, 0, keys.rawSize(), null); @@ -183,15 +170,31 @@ public abstract class TinyMap extends IndexedMapBase { public int compareTo(Builder o) { return keySet().compareTo(o.keySet()); } + + public TinyMap buildWithKeys(TinySet keys) { + compact(); + Preconditions.checkArgument(keys.size() == size(), + "Must have same size"); + return new SizeAny<>(keys, Arrays.copyOf(values, keys.size())); + } + + public void compact() { + keys.compact(); + } + + public TinyMap build() { + return buildWithKeys(this.keys.build()); + } } public static class SizeAny extends TinyMap { - public final Object[] values; + private final Object[] values; public SizeAny(TinySet keys, Object[] values) { super(keys); - Preconditions.checkArgument(keys.size() == values.length, "keys and values must have same size"); + Preconditions.checkArgument(keys.size() == values.length, + "keys and values must have same size"); this.values = values; } diff --git a/datastructures-tiny/src/main/java/org/xbib/datastructures/tiny/TinySet.java b/datastructures-tiny/src/main/java/org/xbib/datastructures/tiny/TinySet.java index 01419a9..43ca743 100644 --- a/datastructures-tiny/src/main/java/org/xbib/datastructures/tiny/TinySet.java +++ b/datastructures-tiny/src/main/java/org/xbib/datastructures/tiny/TinySet.java @@ -14,23 +14,13 @@ public abstract class TinySet extends IndexedSetBase { return key == null ? 0 : (h = key.hashCode() * 0x85ebca6b) ^ h >>> 16; } - public static TinySet createUnsafe(Object[] keys) { - if (keys.length == 0) { - return new Empty<>(); - } else if (keys.length < 0xFF) { - return new Small<>(keys); - } else if (keys.length < 0xFFFF) { - return new Medium<>(keys); - } else { - return new Large<>(keys); - } - } - public static Builder builder() { return new Builder<>(); } - public static class Empty extends TinySet implements Immutable { + public static class Empty + extends TinySet + implements Immutable { @Override public int getIndex(Object key) { @@ -48,7 +38,9 @@ public abstract class TinySet extends IndexedSetBase { } } - private static abstract class ArrayTableSet extends TinySet implements Immutable { + private static abstract class ArrayTableSet + extends TinySet + implements Immutable { protected final Object[] keys; @@ -60,7 +52,8 @@ public abstract class TinySet extends IndexedSetBase { for (int j = 0; j < keys.length; j++) { Object key = keys[j]; int hash = ~getIndex(key); - Preconditions.checkArgument(hash >= 0, "duplicate key: %s", key); + Preconditions.checkArgument(hash >= 0, + "duplicate key: " + key); tableSet(table, hash, j); } } @@ -105,7 +98,8 @@ public abstract class TinySet extends IndexedSetBase { int mask = table.length - 1; int hash = hash(key) & mask; int collisions = 0; - for (int i = table[hash] & 0xFF; i < 0xFF; i = table[hash = (hash + ++collisions) & mask] & 0xFF) { + for (int i = table[hash] & 0xFF; i < 0xFF; + i = table[hash = (hash + ++collisions) & mask] & 0xFF) { if (Objects.equals(key, keys[i])) { return i; } @@ -138,7 +132,8 @@ public abstract class TinySet extends IndexedSetBase { int mask = table.length - 1; int hash = hash(key) & mask; int collisions = 0; - for (int i = table[hash] & 0xFFFF; i < 0xFFFF; i = table[hash = (hash + ++collisions) & mask] & 0xFFFF) { + for (int i = table[hash] & 0xFFFF; i < 0xFFFF; + i = table[hash = (hash + ++collisions) & mask] & 0xFFFF) { if (Objects.equals(key, keys[i])) { return i; } @@ -171,7 +166,8 @@ public abstract class TinySet extends IndexedSetBase { int mask = table.length - 1; int hash = hash(key) & mask; int collisions = 0; - for (int i = table[hash]; i >= 0; i = table[hash = (hash + ++collisions) & mask]) { + for (int i = table[hash]; i >= 0; + i = table[hash = (hash + ++collisions) & mask]) { if (Objects.equals(key, keys[i])) { return i; } @@ -180,7 +176,9 @@ public abstract class TinySet extends IndexedSetBase { } } - public static class Builder extends IndexedSetBase implements IndexedCollectionBase.NoAdditiveChange { + public static class Builder + extends IndexedSetBase + implements IndexedCollectionBase.NoAdditiveChange { private static final Object TOMBSTONE = new Object() { @@ -201,24 +199,13 @@ public abstract class TinySet extends IndexedSetBase { private int size = 0; Builder() { - this(16); + this(4); } - Builder(int expectedSize) { - this.keys = new Object[expectedSize]; - this.inverse = new int[expectedSize]; - forceRehash(TinySet.tableSize(expectedSize)); - } - - private static int hash(Object key) { - int h; - return key == null ? 0 : (h = key.hashCode() * 0x85ebca6b) ^ h >>> 16; - } - - private static int[] newTable(int size) { - int[] table = new int[size]; - Arrays.fill(table, -1); - return table; + Builder(int initialSize) { + this.keys = new Object[initialSize]; + this.inverse = new int[initialSize]; + forceRehash(TinySet.tableSize(initialSize)); } public void compact() { @@ -242,18 +229,6 @@ public abstract class TinySet extends IndexedSetBase { this.rawSize = index; } - private void forceRehash(int newSize) { - this.table = newTable(newSize); - this.size = 0; - compact(); - } - - private void softClearTable() { - for (int i = 0; i < rawSize; i++) { - table[inverse[i]] = -1; - } - } - @SuppressWarnings("unchecked") @Override public T getEntryAt(int index) { @@ -277,25 +252,13 @@ public abstract class TinySet extends IndexedSetBase { return ~newIndex; } - private int checkOverflow(T key, int index) { - if (rawSize == keys.length) { - int newSize = keys.length + (keys.length >> 1); - keys = Arrays.copyOf(keys, newSize); - inverse = Arrays.copyOf(inverse, newSize); - } - if (2 * (rawSize + 1) > table.length) { - forceRehash(table.length * 2); - index = getIndex(key); - } - return index; - } - @Override public int getIndex(Object key) { int collisions = 0; int mask = table.length - 1; int hash = hash(key) & mask; - for (int i = table[hash]; i >= 0; i = table[hash = (hash + ++collisions) & mask]) { + for (int i = table[hash]; i >= 0; + i = table[hash = (hash + ++collisions) & mask]) { if (Objects.equals(key, keys[i])) { return i; } @@ -316,10 +279,18 @@ public abstract class TinySet extends IndexedSetBase { return keys[index] == TOMBSTONE; } + @Override public int size() { return size; } + @Override + public void clear() { + Arrays.fill(keys, 0, rawSize, null); + softClearTable(); + size = rawSize = 0; + } + @Override public int rawSize() { return rawSize; @@ -327,14 +298,52 @@ public abstract class TinySet extends IndexedSetBase { public TinySet build() { compact(); - return TinySet.createUnsafe(Arrays.copyOf(keys, size)); + Object[] o = Arrays.copyOf(keys, size); + if (o.length == 0) { + return new Empty<>(); + } else if (o.length < 0xFF) { + return new Small<>(o); + } else if (o.length < 0xFFFF) { + return new Medium<>(o); + } else { + return new Large<>(o); + } } - @Override - public void clear() { - Arrays.fill(keys, 0, rawSize, null); - softClearTable(); - size = rawSize = 0; + private void forceRehash(int newSize) { + this.table = newTable(newSize); + this.size = 0; + compact(); + } + + private void softClearTable() { + for (int i = 0; i < rawSize; i++) { + table[inverse[i]] = -1; + } + } + + private int checkOverflow(T key, int index) { + if (rawSize == keys.length) { + int newSize = keys.length + (keys.length >> 1); + keys = Arrays.copyOf(keys, newSize); + inverse = Arrays.copyOf(inverse, newSize); + } + if (2 * (rawSize + 1) > table.length) { + forceRehash(table.length * 2); + index = getIndex(key); + } + return index; + } + + private static int hash(Object key) { + int h; + return key == null ? 0 : (h = key.hashCode() * 0x85ebca6b) ^ h >>> 16; + } + + private static int[] newTable(int size) { + int[] table = new int[size]; + Arrays.fill(table, -1); + return table; } } } diff --git a/datastructures-tiny/src/test/java/org/xbib/datastructures/tiny/TinyListTest.java b/datastructures-tiny/src/test/java/org/xbib/datastructures/tiny/TinyListTest.java new file mode 100644 index 0000000..de060e6 --- /dev/null +++ b/datastructures-tiny/src/test/java/org/xbib/datastructures/tiny/TinyListTest.java @@ -0,0 +1,102 @@ +package org.xbib.datastructures.tiny; + +import static org.hamcrest.CoreMatchers.equalTo; +import static org.hamcrest.MatcherAssert.assertThat; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; +import org.junit.jupiter.api.Assertions; +import org.junit.jupiter.api.Test; +import java.io.IOException; +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; + +public class TinyListTest { + + @Test + public void testSimple() { + TinyList.Builder builder = TinyList.builder(); + builder.add("a"); + builder.add("b"); + builder.add("c"); + assertEquals("[a, b, c]", builder.build().toString()); + } + + @Test + public void testIndexOfAndLastIndexOf() { + TinyList.Builder builder = TinyList.builder(); + builder.add("aaa"); + builder.add("bbb"); + builder.add("bbb"); + builder.add("bbb"); + builder.add("ccc"); + assertThat(builder.indexOf("bbb"), equalTo(builder.build().indexOf("bbb"))); + assertThat(builder.indexOf("bbb"), equalTo(1)); + assertThat(builder.lastIndexOf("bbb"), equalTo(builder.build().lastIndexOf("bbb"))); + assertThat(builder.lastIndexOf("bbb"), equalTo(3)); + assertThat(builder.indexOf("xxx"), equalTo(builder.build().indexOf("xxx"))); + assertThat(builder.indexOf("xxx"), equalTo(-1)); + assertThat(builder.lastIndexOf("xxx"), equalTo(builder.build().lastIndexOf("xxx"))); + assertThat(builder.lastIndexOf("xxx"), equalTo(-1)); + } + + @Test + public void testBuildAndGet() { + TinyList.Builder builder = TinyList.builder(); + assertThat(builder.size(), equalTo(0)); + builder.add("aaa"); + builder.add(123); + assertThat(builder.size(), equalTo(2)); + List list = builder.build(); + assertThat(list.get(0), equalTo("aaa")); + assertThat(list.get(1), equalTo(123)); + Assertions.assertThrows(IndexOutOfBoundsException.class, () -> list.get(2)); + assertThat(list.size(), equalTo(2)); + assertTrue(list.containsAll(List.of("aaa", 123))); + } + + @Test + public void testBuildEmpty() throws IOException, ClassNotFoundException { + testCount(0); + } + + @Test + public void testBuildGiant() { + testCount(1000); + } + + @Test + public void testBuildAlmostThere() { + testCount(255); + } + + private void testCount(int count) { + TinyList.Builder builder = TinyList.builder(); + List expected = new ArrayList<>(); + for (int i = 0; i < count; i++) { + builder.add("aaa" + i); + expected.add("aaa" + i); + } + TinyList list = builder.build(); + assertThat(list.size(), equalTo(expected.size())); + for (int i = 0; i < expected.size(); i++) { + assertThat(list.get(i), equalTo(expected.get(i))); + } + assertThat(list.toString(), equalTo(expected.toString())); + assertThat(list, equalTo(expected)); + assertThat(expected, equalTo(list)); + assertThat(list.hashCode(), equalTo(expected.hashCode())); + } + + @Test + public void immutableIsImmutable() { + TinyList.Builder builder = TinyList.builder(); + builder.add("aaa"); + TinyList map = builder.build(); + Assertions.assertThrows(UnsupportedOperationException.class, () -> map.clear()); + Assertions.assertThrows(UnsupportedOperationException.class, () -> map.remove("aaa")); + Assertions.assertThrows(UnsupportedOperationException.class, () -> map.addAll(Collections.singleton("abc"))); + Assertions.assertThrows(UnsupportedOperationException.class, () -> map.add("abc")); + Assertions.assertThrows(UnsupportedOperationException.class, () -> map.set(42, "abc")); + } +} diff --git a/datastructures-tiny/src/test/java/org/xbib/datastructures/tiny/TinySetTest.java b/datastructures-tiny/src/test/java/org/xbib/datastructures/tiny/TinySetTest.java index a4162d4..3445e4d 100644 --- a/datastructures-tiny/src/test/java/org/xbib/datastructures/tiny/TinySetTest.java +++ b/datastructures-tiny/src/test/java/org/xbib/datastructures/tiny/TinySetTest.java @@ -4,15 +4,24 @@ import org.hamcrest.CoreMatchers; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; import static org.hamcrest.CoreMatchers.equalTo; -import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.number.OrderingComparison.lessThan; import static org.hamcrest.MatcherAssert.assertThat; +import static org.junit.jupiter.api.Assertions.assertEquals; import java.util.Collections; import java.util.LinkedHashSet; import java.util.Set; public class TinySetTest { + @Test + public void testSimple() { + TinySet.Builder builder = TinySet.builder(); + builder.add("a"); + builder.add("b"); + builder.add("c"); + assertEquals("[a, b, c]", builder.build().toString()); + } + @Test public void testBuildAndGet() { TinySet.Builder builder = TinySet.builder(); @@ -98,7 +107,7 @@ public class TinySetTest { testCount(123, true); } - private void testCount(int count, boolean withNull) throws Exception { + private void testCount(int count, boolean withNull) { TinySet.Builder builder = TinySet.builder(); LinkedHashSet expectedSet = new LinkedHashSet<>(); for (int i = 0; i < count; i++) { diff --git a/datastructures-xslx/src/main/java/com/incesoft/tools/excel/support/CellFormat.java b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/support/CellFormat.java new file mode 100644 index 0000000..4479a2b --- /dev/null +++ b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/support/CellFormat.java @@ -0,0 +1,62 @@ +package com.incesoft.tools.excel.support; + +public class CellFormat { + public CellFormat() { + super(); + } + + public CellFormat(int foreColor, int backColor, int cellIndex) { + super(); + this.foreColor = foreColor; + this.backColor = backColor; + this.cellIndex = cellIndex; + } + + private String fontName = "宋体"; + + public String getFontName() { + return fontName; + } + + public void setFontName(String fontName) { + this.fontName = fontName; + } + + /** + * foreground/word color + */ + private int foreColor = -1; + /** + * background color + */ + private int backColor = -1; + /** + * the index of cell in the row + */ + private int cellIndex; + + public int getCellIndex() { + return cellIndex; + } + + public void setCellIndex(int cellIndex) { + this.cellIndex = cellIndex; + } + + public int getForeColor() { + return foreColor; + } + + public void setForeColor(int foreColor) { + this.foreColor = foreColor; + } + + public int getBackColor() { + return backColor; + } + + public void setBackColor(int backColor) { + this.backColor = backColor; + } + +} diff --git a/datastructures-xslx/src/main/java/com/incesoft/tools/excel/support/XLSReaderSupport.java b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/support/XLSReaderSupport.java new file mode 100644 index 0000000..c41009d --- /dev/null +++ b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/support/XLSReaderSupport.java @@ -0,0 +1,143 @@ +package com.incesoft.tools.excel.support; + +import java.io.File; +import java.text.SimpleDateFormat; + +import org.xbib.datastructures.xslx.ExcelRowIterator; +import org.xbib.datastructures.xslx.ReaderSupport; + +import jxl.Cell; +import jxl.CellType; +import jxl.DateCell; +import jxl.Sheet; +import jxl.Workbook; + +public class XLSReaderSupport extends ReaderSupport { + + private Workbook workbook; + + private Sheet[] sheets; + + private File inputFile; + + public class XLSObjectIterator implements ExcelRowIterator { + byte sheetindex; + + int totalSheet; + + int rowPos = -1; + + Sheet theSheet; + + int currentSheetrowcount; + + public void init() { + sheetindex = 0; + theSheet = sheets[sheetindex]; + totalSheet = sheets.length; + currentSheetrowcount = theSheet.getRows(); + } + + public boolean nextRow() { + rowPos++; + if (rowPos == currentSheetrowcount) {// 当读取最后一行,如果当前读取的是当前sheet的最后一行 + sheetindex++; + if (sheetindex < totalSheet) { + rowPos = 1;// 切换到下一个sheet,的首行 + theSheet = sheets[sheetindex]; + currentSheetrowcount = theSheet.getRows(); + if (rowPos >= currentSheetrowcount) { + return false; + } + return true; + } else { + return false;// 所有记录里面的最后一行 + } + + } + return true; + } + + public String getCellValue(int col) { + if (col < 0) + return null; + try { + return trimNull(theSheet.getCell(col, rowPos)); + } catch (RuntimeException e) { + throw e; + } + } + + public byte getSheetIndex() { + return sheetindex; + } + + public int getRowPos() { + return rowPos; + } + + public int getCellCount() { + Cell[] row = theSheet.getRow(rowPos); + return row == null ? 0 : row.length; + } + + public void prevRow() { + rowPos--; + if (rowPos == -1) { + rowPos = 0; + } + } + } + + public void open() { + try { + if (!inputFile.exists()) { + throw new IllegalStateException("not found file " + + inputFile.getAbsoluteFile()); + } + workbook = Workbook.getWorkbook(inputFile); + sheets = workbook.getSheets(); + } catch (Exception e) { + throw new RuntimeException(e); + } + } + + public ExcelRowIterator rowIterator() { + XLSObjectIterator iterator = new XLSObjectIterator(); + iterator.init(); + return iterator; + } + + public void close() { + if (this.workbook != null) { + this.workbook.close(); + this.workbook = null; + } + } + + private final static SimpleDateFormat sdf = new SimpleDateFormat( + "yyyy-MM-dd"); + + private static String trimNull(Cell inputcell) { + if (inputcell == null) + return null; + + if (inputcell.getType() == CellType.DATE) { + DateCell dateCell = (DateCell) inputcell; + return sdf.format(dateCell.getDate()); + } + + String input = inputcell.getContents().trim(); + if (input.length() == 0) + return null; + return input; + } + + public void setInputFile(File file) { + this.inputFile = file; + } + + public Workbook getWorkbook() { + return workbook; + } +} diff --git a/datastructures-xslx/src/main/java/com/incesoft/tools/excel/support/XLSWriterSupport.java b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/support/XLSWriterSupport.java new file mode 100644 index 0000000..253522f --- /dev/null +++ b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/support/XLSWriterSupport.java @@ -0,0 +1,146 @@ +package com.incesoft.tools.excel.support; + +import java.io.IOException; +import java.util.ArrayList; +import java.util.Collections; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import jxl.Workbook; +import jxl.format.Colour; +import jxl.format.RGB; +import jxl.write.Label; +import jxl.write.WritableCell; +import jxl.write.WritableCellFormat; +import jxl.write.WritableFont; +import jxl.write.WritableSheet; +import jxl.write.WritableWorkbook; +import jxl.write.WriteException; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; + +import org.xbib.datastructures.xslx.WriterSupport; + +/** + * @author floyd + * + */ +public class XLSWriterSupport extends WriterSupport { + WritableSheet sheet; + + WritableWorkbook workbook; + + public void open() { + try { + if (file != null) { + workbook = Workbook.createWorkbook(file); + } else if (output != null) { + workbook = Workbook.createWorkbook(output); + } else { + throw new IllegalStateException("no output specified"); + } + } catch (IOException e) { + throw new RuntimeException(e); + } + } + + private static int getRGB(Colour c) { + RGB defaultRGB = c.getDefaultRGB(); + return defaultRGB.getRed() << 16 | defaultRGB.getGreen() << 8 | defaultRGB.getBlue(); + } + + public static Colour transformColor(int c) { + int result = Collections.binarySearch(colours, c & 0x00ffffff); + if (result < 0) { + result = -(result + 1); + if (result > colours.size() - 1) { + result = colours.size() - 1; + } + } + return colourMap.get(colours.get(result)); + } + + static List colours = new ArrayList(); + static Map colourMap = new HashMap(); + static { + for (Colour c : Colour.getAllColours()) { + colourMap.put(getRGB(c), c); + colours.add(getRGB(c)); + } + Collections.sort(colours); + } + + private static final Log log = LogFactory.getLog(XLSWriterSupport.class); + + @Override + public void writeRow(String[] rowData, CellFormat[] formats) { + for (int col = 0; col < rowData.length; col++) { + String cellString = rowData[col]; + if (cellString != null) { + CellFormat format = null; + if (formats != null && formats.length > 0) { + for (CellFormat cellFormat : formats) { + if (cellFormat != null && cellFormat.getCellIndex() == col) { + format = cellFormat; + break; + } + } + } + Label label = new Label(col, rowpos, cellString); + try { + sheet.addCell(label); + } catch (Exception e) { + throw new RuntimeException(e); + } + if (format != null) { + WritableCell c = workbook.getSheet(0).getWritableCell(col, rowpos); + WritableCellFormat newFormat = c.getCellFormat() == null ? new WritableCellFormat() + : new WritableCellFormat(c.getCellFormat()); + if (format != null && (format.getBackColor() != -1 || format.getForeColor() != -1)) { + if (format.getBackColor() != -1) { + try { + newFormat.setBackground(transformColor(format.getBackColor())); + } catch (WriteException e) { + log.error("", e); + } + } + if (format.getForeColor() != -1) { + try { + WritableFont writableFont = new WritableFont(WritableFont.createFont(format + .getFontName())); + writableFont.setColour(Colour.PINK2); + newFormat.setFont(writableFont); + } catch (WriteException e) { + log.error("", e); + } + } + } + c.setCellFormat(newFormat); + } + } + } + } + + public void writeRow(String[] rowData) { + writeRow(rowData, null); + } + + public void close() { + try { + workbook.write(); + workbook.close(); + } catch (Exception e) { + throw new RuntimeException(e); + } + } + + public void createNewSheet() { + sheet = workbook.createSheet("sheet" + sheetIndex + 1, sheetIndex); + } + + public int getMaxRowNumOfSheet() { + return 60000; + } +} diff --git a/datastructures-xslx/src/main/java/com/incesoft/tools/excel/support/XLSXReaderSupport.java b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/support/XLSXReaderSupport.java new file mode 100644 index 0000000..4a4fb7e --- /dev/null +++ b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/support/XLSXReaderSupport.java @@ -0,0 +1,175 @@ +package com.incesoft.tools.excel.support; + +import java.io.File; + +import org.xbib.datastructures.xslx.ExcelRowIterator; +import org.xbib.datastructures.xslx.ReaderSupport; +import com.incesoft.tools.excel.xlsx.Cell; +import com.incesoft.tools.excel.xlsx.Sheet; +import com.incesoft.tools.excel.xlsx.SimpleXLSXWorkbook; +import com.incesoft.tools.excel.xlsx.Sheet.SheetRowReader; + +public class XLSXReaderSupport extends ReaderSupport { + + private SimpleXLSXWorkbook wb; + + private Sheet sheet; + + public XLSXReaderSupport() { + } + + private File inputFile; + + private boolean lazy = true; + + protected class LazyXLSXObjectIterator implements ExcelRowIterator { + + public int getCellCount() { + return curRow != null ? curRow.length : 0; + } + + public String getCellValue(int col) { + if (curRow == null || col > curRow.length - 1 + || curRow[col] == null) + return null; + String v = curRow[col].getValue(); + return v == null || v.trim().length() == 0 ? null : v.trim(); + } + + public int getRowPos() { + return reader.getStatus().getRowIndex() - (nextRow != null ? 1 : 0); + } + + public byte getSheetIndex() { + return (byte) sheet.getSheetIndex(); + } + + SheetRowReader reader; + + public void init() { + reader = sheet.newReader(); + } + + private Cell[] curRow; + + private Cell[] lastRow; + + private Cell[] nextRow; + + public boolean nextRow() { + if (nextRow != null) { + lastRow = curRow; + curRow = nextRow; + nextRow = null; + } else { + if (curRow != null) { + lastRow = curRow; + } + curRow = reader.readRow(); + } + return curRow != null; + } + + public void prevRow() { + if (nextRow == null) { + nextRow = curRow; + curRow = lastRow; + lastRow = null; + } + } + } + + protected class XLSXObjectIterator implements ExcelRowIterator { + + int currentSheetRowCount; + + int rowPos = -1; + + public void init() { + currentSheetRowCount = sheet.getRowCount(); + } + + public boolean nextRow() { + rowPos++; + if (rowPos == currentSheetRowCount) {// 当读取最后一行,如果当前读取的是当前sheet的最后一行 + return false;// 所有记录里面的最后一行 + } + return true; + } + + public String getCellValue(int col) { + if (col < 0) + return null; + String v = sheet.getCellValue(rowPos, col); + return v == null || v.trim().length() == 0 ? null : v.trim(); + } + + public byte getSheetIndex() { + return (byte) sheet.getSheetIndex(); + } + + public int getRowPos() { + return rowPos; + } + + public int getCellCount() { + Cell[] row = sheet.getRows().get(rowPos); + return row == null ? 0 : row.length; + } + + public void prevRow() { + rowPos--; + if (rowPos == -1) { + rowPos = 0; + } + } + } + + public void open() { + try { + if (!inputFile.exists()) { + throw new IllegalStateException("not found file " + + inputFile.getAbsoluteFile()); + } + wb = new SimpleXLSXWorkbook(inputFile); + sheet = wb.getSheet(0, !lazy); + } catch (Exception e) { + throw new RuntimeException(e); + } + } + + public ExcelRowIterator rowIterator() { + ExcelRowIterator iterator = lazy ? new LazyXLSXObjectIterator() + : new XLSXObjectIterator(); + iterator.init(); + return iterator; + } + + public void close() { + if (sheet != null) { + sheet.cleanUp(); + sheet = null; + } + if (this.wb != null) { + this.wb.close(); + this.wb = null; + } + } + + public void setInputFile(File file) { + this.inputFile = file; + } + + public SimpleXLSXWorkbook getWorkbook() { + return wb; + } + + public void setLazy(boolean lazy) { + this.lazy = lazy; + } + + public boolean isLazy() { + return lazy; + } + +} \ No newline at end of file diff --git a/datastructures-xslx/src/main/java/com/incesoft/tools/excel/support/XLSXWriterSupport.java b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/support/XLSXWriterSupport.java new file mode 100644 index 0000000..a991897 --- /dev/null +++ b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/support/XLSXWriterSupport.java @@ -0,0 +1,101 @@ +package com.incesoft.tools.excel.support; + +import java.io.File; +import java.io.FileOutputStream; +import java.io.OutputStream; + +import org.apache.commons.io.IOUtils; + +import org.xbib.datastructures.xslx.WriterSupport; +import com.incesoft.tools.excel.xlsx.CellStyle; +import com.incesoft.tools.excel.xlsx.Fill; +import com.incesoft.tools.excel.xlsx.Font; +import com.incesoft.tools.excel.xlsx.Sheet; +import com.incesoft.tools.excel.xlsx.SimpleXLSXWorkbook; + +/** + * @author floyd + * + */ +public class XLSXWriterSupport extends WriterSupport { + SimpleXLSXWorkbook workbook; + + public void open() { + if (getClass().getResource("/empty.xlsx") == null) { + throw new IllegalStateException("no empty.xlsx found in classpath"); + } + workbook = new SimpleXLSXWorkbook(new File(getClass().getResource("/empty.xlsx").getFile())); + } + + Sheet sheet; + + protected int getMaxRowNumOfSheet() { + return Integer.MAX_VALUE / 2; + } + + public void writeRow(String[] rowData) { + writeRow(rowData, null); + } + + public void writeRow(String[] rowData, CellFormat[] formats) { + for (int col = 0; col < rowData.length; col++) { + String string = rowData[col]; + if (string == null) + continue; + CellFormat format = null; + if (formats != null && formats.length > 0) { + for (CellFormat cellFormat : formats) { + if (cellFormat != null && cellFormat.getCellIndex() == col) { + format = cellFormat; + break; + } + } + } + CellStyle cellStyle = null; + if (format != null && (format.getBackColor() != -1 || format.getForeColor() != -1)) { + Font font = null; + Fill fill = null; + if (format.getForeColor() != -1) { + font = workbook.createFont(); + font.setColor(format.getForeColor()); + } + if (format.getBackColor() != -1) { + fill = workbook.createFill(); + fill.setFgColor(format.getBackColor()); + } + cellStyle = workbook.createStyle(font, fill); + } + sheet.modify(rowpos, col, string, cellStyle); + } + } + + public void close() { + if (workbook == null) + return; + OutputStream fos = null; + try { + if (file != null) { + fos = new FileOutputStream(file); + } else if (output != null) { + fos = output; + } else { + throw new IllegalStateException("no output specified"); + } + workbook.commit(fos); + } catch (Exception e) { + throw new RuntimeException(e); + } finally { + if (fos != null) + IOUtils.closeQuietly(fos); + if (workbook != null) + workbook.close(); + } + } + + public void createNewSheet() { + if (sheetIndex > 0) { + throw new IllegalStateException("only one sheet allowed"); + } + sheet = workbook.getSheet(sheetIndex, true); + } +} diff --git a/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/Cell.java b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/Cell.java new file mode 100644 index 0000000..3ebd40a --- /dev/null +++ b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/Cell.java @@ -0,0 +1,93 @@ +package com.incesoft.tools.excel.xlsx; + + +/** + * @author floyd + * + */ +public class Cell { + Cell(String r, String s, String t, String v, String text) { + this.text = text; + this.v = v; + this.r = r; + this.s = s; + this.t = t; + } + + Cell() { + super(); + } + + private String text; + + private String v; + + private String r; + + private String s; + + private String t; + + private String comment; + + public String getComment() { + return comment; + } + + public void setComment(String comment) { + this.comment = comment; + } + + String getR() { + return r; + } + + void setR(String r) { + this.r = r; + } + + String getS() { + return s; + } + + void setS(String s) { + this.s = s; + } + + String getT() { + return t; + } + + void setT(String t) { + this.t = t; + } + + String getText() { + return text; + } + + void setText(String text) { + this.text = text; + } + + String getV() { + return v; + } + + void setV(String v) { + this.v = v; + } + + public String getValue() { + if (text != null) + return text; + if (v != null) + return v; + else + return null; + } + + public String toString() { + return getValue(); + } +} diff --git a/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/CellStyle.java b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/CellStyle.java new file mode 100644 index 0000000..a22ab84 --- /dev/null +++ b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/CellStyle.java @@ -0,0 +1,86 @@ +package com.incesoft.tools.excel.xlsx; + + +import javax.xml.stream.XMLStreamException; +import javax.xml.stream.XMLStreamWriter; + +/** + * Font registered in styles.xml + * + * @author floyd + * + */ +public class CellStyle extends IndexedObject implements SerializableEntry { + Font font; + + Fill fill; + + public Fill getFill() { + return fill; + } + + void setFill(Fill fill) { + this.fill = fill; + } + + public Font getFont() { + return font; + } + + void setFont(Font font) { + this.font = font; + } + + /** + * + */ + public void serialize(XMLStreamWriter writer) throws XMLStreamException { + writer.writeStartElement("xf"); + writer.writeAttribute("numFmtId", "0"); + if (font != null) + writer.writeAttribute("fontId", String.valueOf(font.getIndex())); + if (fill != null) + writer.writeAttribute("fillId", String.valueOf(fill.getIndex())); + writer.writeAttribute("borderId", "0"); + writer.writeAttribute("xfId", "0"); + + writer.writeStartElement("alignment"); + writer.writeAttribute("vertical", "center"); + writer.writeEndElement();// end alignment + + writer.writeEndElement();// end xf + } + + @Override + public int hashCode() { + final int PRIME = 31; + int result = 1; + result = PRIME * result + ((fill == null) ? 0 : fill.hashCode()); + result = PRIME * result + ((font == null) ? 0 : font.hashCode()); + return result; + } + + @Override + public boolean equals(Object obj) { + if (this == obj) + return true; + if (obj == null) + return false; + if (getClass() != obj.getClass()) + return false; + final CellStyle other = (CellStyle) obj; + if (fill == null) { + if (other.fill != null) + return false; + } else if (!fill.equals(other.fill)) + return false; + if (font == null) { + if (other.font != null) + return false; + } else if (!font.equals(other.font)) + return false; + return true; + } + +} diff --git a/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/ExcelUtils.java b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/ExcelUtils.java new file mode 100644 index 0000000..0d5040c --- /dev/null +++ b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/ExcelUtils.java @@ -0,0 +1,79 @@ +package com.incesoft.tools.excel.xlsx; + +import java.io.File; +import java.io.FileInputStream; +import java.io.IOException; +import java.io.InputStream; +import java.util.ArrayList; +import java.util.Enumeration; +import java.util.List; +import java.util.zip.ZipEntry; +import java.util.zip.ZipFile; + +import org.apache.commons.codec.digest.DigestUtils; +import org.apache.commons.io.IOUtils; +import org.apache.commons.lang.StringUtils; + +public class ExcelUtils { + + /** + * Excel 2007+ using the OOXML format(actually is a zip) + * + * @return + */ + public static boolean isOOXML(InputStream inputStream) { + try { + return inputStream.read() == 0x50 && inputStream.read() == 0x4b && inputStream.read() == 0x03 + && inputStream.read() == 0x04; + } catch (IOException e) { + throw new RuntimeException(e); + } + } + + /** + * check excel version + * + * @param file + * @return 'xlsx' for 07 or 'xls' for 03 + */ + public static String getExcelExtensionName(File file) { + FileInputStream stream = null; + try { + stream = new FileInputStream(file); + return isOOXML(stream) ? "xlsx" : "xls"; + } catch (IOException e) { + throw new RuntimeException(e); + } finally { + if (stream != null) { + IOUtils.closeQuietly(stream); + } + } + } + + public static String checksumZipContent(File f) { + ZipFile zipFile = null; + try { + zipFile = new ZipFile(f); + Enumeration e = zipFile.entries(); + List crcs = new ArrayList(); + while (e.hasMoreElements()) { + ZipEntry entry = e.nextElement(); + crcs.add(entry.getCrc()); + } + return DigestUtils.shaHex(StringUtils.join(crcs, "")); + } catch (Exception e) { + throw new RuntimeException("", e); + } finally { + try { + if (zipFile != null) + zipFile.close(); + } catch (IOException e) {} + } + } + + public static void main(String[] args) { + File file = new File("/(全部-实例备份)(20120215154228)..xlsx"); + System.out.println(checksumZipContent(file)); + System.out.println(file.delete()); + } +} \ No newline at end of file diff --git a/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/Fill.java b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/Fill.java new file mode 100644 index 0000000..31e1063 --- /dev/null +++ b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/Fill.java @@ -0,0 +1,71 @@ +package com.incesoft.tools.excel.xlsx; + + +import javax.xml.stream.XMLStreamException; +import javax.xml.stream.XMLStreamWriter; + +/** + * @author floyd + * + */ +public class Fill extends IndexedObject implements SerializableEntry { + Fill() { + } + + String fgColor; + + public String getFgColor() { + return fgColor; + } + + public void setFgColor(Integer fgColor) { + this.fgColor = Integer.toHexString(fgColor); + } + + public void setFgColor(String fgColor) { + this.fgColor = fgColor; + } + + /** + * + * + */ + public void serialize(XMLStreamWriter writer) throws XMLStreamException { + writer.writeStartElement("fill"); + + writer.writeStartElement("patternFill"); + writer.writeAttribute("patternType", "solid"); + + writer.writeStartElement("fgColor"); + writer.writeAttribute("rgb", fgColor); + writer.writeEndElement();// end fgColor + + writer.writeEndElement();// end patternFill + writer.writeEndElement();// end fill + } + + @Override + public int hashCode() { + final int PRIME = 31; + int result = 1; + result = PRIME * result + ((fgColor == null) ? 0 : fgColor.hashCode()); + return result; + } + + @Override + public boolean equals(Object obj) { + if (this == obj) + return true; + if (obj == null) + return false; + if (getClass() != obj.getClass()) + return false; + final Fill other = (Fill) obj; + if (fgColor == null) { + if (other.fgColor != null) + return false; + } else if (!fgColor.equals(other.fgColor)) + return false; + return true; + } +} diff --git a/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/Font.java b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/Font.java new file mode 100644 index 0000000..8b883aa --- /dev/null +++ b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/Font.java @@ -0,0 +1,83 @@ +package com.incesoft.tools.excel.xlsx; + +import javax.xml.stream.XMLStreamException; +import javax.xml.stream.XMLStreamWriter; + +/** + * partial font of RichText OR font registered in sharedStrings(index > 0) + * + * @author floyd + * + */ +public class Font extends IndexedObject implements SerializableEntry { + Font() { + } + + String color; + + // short sz; + // String fontName; + // String family; + // String charset; + + public void setColor(int color) { + this.color = Integer.toHexString(color); + } + + public String getColor() { + return color; + } + + public void setColor(String color) { + this.color = color; + } + + /** + * + * + * + */ + public void serialize(XMLStreamWriter writer) throws XMLStreamException { + writer.writeStartElement("font"); + writer.writeStartElement("color"); + writer.writeAttribute("rgb", color); + writer.writeEndElement(); + writer.writeEndElement(); + } + + public void serializeAsRichText(XMLStreamWriter writer) + throws XMLStreamException { + writer.writeStartElement("rPr"); + writer.writeStartElement("color"); + writer.writeAttribute("rgb", color); + writer.writeEndElement(); + writer.writeEndElement(); + } + + @Override + public int hashCode() { + final int PRIME = 31; + int result = 1; + result = PRIME * result + ((color == null) ? 0 : color.hashCode()); + return result; + } + + @Override + public boolean equals(Object obj) { + if (this == obj) + return true; + if (obj == null) + return false; + if (getClass() != obj.getClass()) + return false; + final Font other = (Font) obj; + if (color == null) { + if (other.color != null) + return false; + } else if (!color.equals(other.color)) + return false; + return true; + } + +} diff --git a/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/FontRegion.java b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/FontRegion.java new file mode 100644 index 0000000..be690b4 --- /dev/null +++ b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/FontRegion.java @@ -0,0 +1,40 @@ +package com.incesoft.tools.excel.xlsx; + +/** + * @author floyd + * + */ +public class FontRegion { + + public FontRegion(short start, short end, Font font) { + super(); + this.start = start; + this.end = end; + this.font = font; + } + public FontRegion() { + super(); + // TODO Auto-generated constructor stub + } + short start; + short end; + Font font; + short getEnd() { + return end; + } + void setEnd(short end) { + this.end = end; + } + Font getFont() { + return font; + } + void setFont(Font font) { + this.font = font; + } + short getStart() { + return start; + } + void setStart(short start) { + this.start = start; + } +} diff --git a/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/IndexedObject.java b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/IndexedObject.java new file mode 100644 index 0000000..bb6e7f0 --- /dev/null +++ b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/IndexedObject.java @@ -0,0 +1,19 @@ +package com.incesoft.tools.excel.xlsx; + + +/** + * @author floyd + * + */ +public abstract class IndexedObject { + int index; + + int getIndex() { + return index; + } + + void setIndex(int index) { + this.index = index; + } + +} diff --git a/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/ParsableEntry.java b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/ParsableEntry.java new file mode 100644 index 0000000..b8697b8 --- /dev/null +++ b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/ParsableEntry.java @@ -0,0 +1,12 @@ +package com.incesoft.tools.excel.xlsx; + + +import javax.xml.stream.XMLStreamReader; + +/** + * @author floyd + * + */ +public interface ParsableEntry { + public void parse(XMLStreamReader reader); +} diff --git a/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/RichText.java b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/RichText.java new file mode 100644 index 0000000..a5c3713 --- /dev/null +++ b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/RichText.java @@ -0,0 +1,106 @@ +package com.incesoft.tools.excel.xlsx; + + +import java.util.ArrayList; +import java.util.List; + +import javax.xml.stream.XMLStreamException; +import javax.xml.stream.XMLStreamReader; +import javax.xml.stream.XMLStreamWriter; + +/** + * @author floyd + * + * afa 你好 + * df + */ +public class RichText extends SharedStringText { + public RichText(String text) { + super(text); + } + + RichText() { + super(); + } + + private List regions; + + public static final int RANGE_ALL_TEXT = -1; + + private void writeTagT(XMLStreamWriter writer, String text, int start, + int end) throws XMLStreamException { + writer.writeStartElement("t"); + if (text.charAt(start) == ' ' || text.charAt(end - 1) == ' ') + writer.writeAttribute("xml:space", "preserve"); + writer.writeCharacters(text.substring(start, end)); + writer.writeEndElement();// end t + } + + public void serialize(XMLStreamWriter writer) throws XMLStreamException { + if (text == null || text.length() == 0) { + throw new IllegalStateException("empty text of rich text,index=" + + getIndex()); + } + writer.writeStartElement("si"); + + short lastEnd = 0; + for (FontRegion region : regions) { + if (region.start == RANGE_ALL_TEXT) { + // if range all text,there'll be no more region + region.start = 0; + region.end = (short) text.length(); + } + if (lastEnd < region.getStart()) { + writer.writeStartElement("r"); + writeTagT(writer, text, lastEnd, region.getStart()); + writer.writeEndElement();// end r + } + writer.writeStartElement("r"); + region.getFont().serializeAsRichText(writer); + writeTagT(writer, text, region.getStart(), region.getEnd()); + writer.writeEndElement();// end r + + lastEnd = region.getEnd(); + } + // TAIL + if (lastEnd < text.length()) { + writer.writeStartElement("r"); + writeTagT(writer, text, lastEnd, text.length()); + writer.writeEndElement();// end r + } + writer.writeEndElement(); + } + + public void parse(XMLStreamReader reader) { + + } + + public void applyFont(Font font) { + applyFont(font, RANGE_ALL_TEXT, RANGE_ALL_TEXT); + } + + public void applyFont(Font font, int start, int end) { + if (start != RANGE_ALL_TEXT && start >= end) { + throw new IllegalArgumentException("apply font with start >= end"); + } + if (regions == null) { + regions = new ArrayList(2); + } + if (start == RANGE_ALL_TEXT && regions.size() > 0) { + regions.clear(); + } + regions.add(new FontRegion((short) start, (short) end, font)); + } + + public String getText() { + return text; + } + + public void setText(String text) { + this.text = text; + } + + public List getRegions() { + return regions; + } +} diff --git a/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/SerializableEntry.java b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/SerializableEntry.java new file mode 100644 index 0000000..e304a8a --- /dev/null +++ b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/SerializableEntry.java @@ -0,0 +1,13 @@ +package com.incesoft.tools.excel.xlsx; + + +import javax.xml.stream.XMLStreamException; +import javax.xml.stream.XMLStreamWriter; + +/** + * @author floyd + * + */ +public interface SerializableEntry { + public void serialize(XMLStreamWriter writer) throws XMLStreamException; +} diff --git a/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/SharedStringText.java b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/SharedStringText.java new file mode 100644 index 0000000..0675f28 --- /dev/null +++ b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/SharedStringText.java @@ -0,0 +1,43 @@ +package com.incesoft.tools.excel.xlsx; + + +import javax.xml.stream.XMLStreamException; +import javax.xml.stream.XMLStreamWriter; + +/** + * @author floyd + * + */ +public class SharedStringText extends IndexedObject implements + SerializableEntry { + + protected String text; + + public SharedStringText(String text) { + this.text = text; + } + + SharedStringText() { + } + + public void serialize(XMLStreamWriter writer) throws XMLStreamException { + if (text == null) { + throw new IllegalStateException("empty text of plain text,index=" + + getIndex()); + } + writer.writeStartElement("si"); + writer.writeStartElement("t"); + writer.writeCharacters(text); + writer.writeEndElement(); + writer.writeEndElement(); + } + + public String getText() { + return text; + } + + public void setText(String text) { + this.text = text; + } + +} diff --git a/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/Sheet.java b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/Sheet.java new file mode 100644 index 0000000..871d56b --- /dev/null +++ b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/Sheet.java @@ -0,0 +1,737 @@ +package com.incesoft.tools.excel.xlsx; + + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; + +import javax.xml.stream.XMLStreamException; +import javax.xml.stream.XMLStreamReader; +import javax.xml.stream.XMLStreamWriter; + +import com.incesoft.tools.excel.xlsx.SimpleXLSXWorkbook.ModifyEntry; +import com.incesoft.tools.excel.xlsx.SimpleXLSXWorkbook.XMLStreamCreator; + +/** + * One Sheet in a workbook.It provides read and write functions of the + * rows/cells. + * + * @author floyd + * + */ +public class Sheet { + + private int sheetIndex; + + private SimpleXLSXWorkbook workbook; + + public Sheet(int sheetIndex, SimpleXLSXWorkbook workbook) { + this.sheetIndex = sheetIndex; + this.workbook = workbook; + } + + List parsedRows = new ArrayList(); + + // READ>>> + /** + * sheetParser + */ + XMLStreamReader reader; + + /** + * convenient methods to load all rows + * + */ + boolean alreadyParsed = false; + + void parseAllRows() { + if (!alreadyParsed) { + alreadyParsed = true; + new SheetRowReader(this, workbook.getSheetReader(sheetIndex + 1), + true).readRow(); + } + } + + public static final Cell[] EMPTY_ROW = new Cell[0]; + + /** + * Load row one by one for performance consideration. If using this method + * with {@link #setAddToMemory(boolean)}=true,you should be careful with + * the 'modifyXXX' methods,because it won't put any rows into memory -- sth + * like 'readonly' mode.Besides,the stream-modify api will come in soon. + * + * @return null if there is no more rows + */ + + public static class IteratorStatus { + int rowIndex = -1; + + public int getRowIndex() { + return rowIndex; + } + } + + public static class SheetRowReader { + public final static int MAX_COLUMN_SPAN = (('Z' - 'A') + 1) * 2; + + IteratorStatus status = new IteratorStatus(); + + Sheet sheet; + + XMLStreamReader reader; + + boolean loadEagerly; + + SheetRowReader(Sheet sheet, XMLStreamReader reader, boolean loadEagerly) { + this.sheet = sheet; + this.reader = reader; + this.loadEagerly = loadEagerly; + } + + public IteratorStatus getStatus() { + return status; + } + + private int lastRowIndex = -1; + + private Cell[] delayRow; + + /** + * iterate over the rows(including empty rows) + * + * @return null when no more rows. + */ + public Cell[] readRow() { + try { + if (!loadEagerly) { + status.rowIndex++;// new row + if (status.rowIndex < lastRowIndex) {// empty rows + return EMPTY_ROW; + } + if (delayRow != null) { + Cell[] ret = delayRow; + delayRow = null; + return ret; + } + } + + Cell[] ret = null; + String r, s = null, t, text; + String v; + int columnspan; + String spans; + while (reader.hasNext()) { + int type = reader.next(); + switch (type) { + case XMLStreamReader.START_ELEMENT: + if ("row".equals(reader.getLocalName())) { + spans = reader.getAttributeValue(null, "spans"); + if (spans == null) { + // empty row + ret = EMPTY_ROW; + } else { + lastRowIndex = Integer.valueOf(reader + .getAttributeValue(null, "r")) - 1; + columnspan = Integer.valueOf(spans + .substring(spans.indexOf(":") + 1)); + if (columnspan > MAX_COLUMN_SPAN) { + columnspan = MAX_COLUMN_SPAN; + } + ret = new Cell[columnspan]; + } + } else if ("c".equals(reader.getLocalName())) { + if (ret != null) { + t = reader.getAttributeValue(null, "t"); + // s = reader.getAttributeValue(null, "s"); + r = reader.getAttributeValue(null, "r"); + text = null; + v = null; + while (reader.hasNext()) { + type = reader.next(); + if (type == XMLStreamReader.CHARACTERS) { + v = reader.getText(); + if ("s".equals(t)) { + text = sheet.workbook + .getSharedStringValue(Integer + .valueOf(v)); + } + } else if (type == XMLStreamReader.END_ELEMENT + && "c" + .equals(reader + .getLocalName())) { + break; + } + } + if (r.charAt(1) < 'A') {// number + ret[r.charAt(0) - 'A'] = new Cell(r, s, t, + v, text); + } else if (r.length() > 2 && r.charAt(2) < 'A') { + int i = (r.charAt(1) - 'A') + (r.charAt(0) - 'A' + 1) * 26; + if (i < MAX_COLUMN_SPAN) + ret[i] = new Cell(r, s, t, v, text); + } + // ignore columns larger than ZZ + } else { + throw new IllegalStateException( + " mal-format"); + } + } + break; + case XMLStreamReader.END_ELEMENT: + if ("row".equals(reader.getLocalName())) { + if (loadEagerly) { + status.rowIndex++; + if (status.rowIndex < lastRowIndex) { + if (sheet.addToMemory) { + // fill the empty rows + for (int i = 0; i < lastRowIndex + - status.rowIndex; i++) { + sheet.parsedRows.add(EMPTY_ROW); + } + } + } + status.rowIndex = lastRowIndex; + } + if (sheet.addToMemory) { + sheet.parsedRows.add(ret); + } + if (loadEagerly) { + ret = null; + } else if (status.rowIndex < lastRowIndex) { + delayRow = ret; + return EMPTY_ROW; + } else { + return ret; + } + } + break; + default: + break; + } + } + } catch (XMLStreamException e) { + throw new RuntimeException(e); + } + return null; + } + + public void remove() { + throw new UnsupportedOperationException(); + } + + } + + public SheetRowReader newReader() { + return new SheetRowReader(this, + workbook.getSheetReader(sheetIndex + 1), false); + } + + private boolean addToMemory = true; + + /** + * Should only be called in one loop while termination condition is + * nextRow() == null + * + * @return + */ + public List getRows() { + if (!(alreadyParsed && addToMemory)) { + throw new IllegalStateException( + "rows not parsed,it should only be used in classic mode"); + } + return parsedRows; + } + + private int rowCount = -2; + + // count of the lazy or non-lazy rows + public int getRowCount() { + if (alreadyParsed && addToMemory) { + return parsedRows.size(); + } + if (rowCount == -2) { + rowCount = 0; + XMLStreamReader reader = workbook.getSheetReader(sheetIndex + 1); + try { + // + // ... + loopR: while (reader.hasNext()) { + int type = reader.next(); + switch (type) { + case XMLStreamReader.START_ELEMENT: + if ("dimension".equals(reader.getLocalName())) { + String v = reader.getAttributeValue(null, "ref"); + if (v != null) { + String[] spanPair = v.replaceAll("[A-Z]", "") + .split(":"); + if (spanPair.length == 2) { + try { + rowCount = Integer.valueOf(spanPair[1]) + - Integer.valueOf(spanPair[0]) + + 1; + } catch (NumberFormatException e) { + } + break loopR; + } + } + } else if ("row".equals(reader.getLocalName())) { + int r = Integer.valueOf(reader.getAttributeValue( + null, "r")); + if (r > rowCount) + rowCount = r; + } + break; + } + } + } catch (XMLStreamException e) { + throw new RuntimeException(e); + } finally { + try { + reader.close(); + } catch (XMLStreamException e) { + } + } + } + return rowCount; + } + + public void clearRows() { + parsedRows.clear(); + } + + public String getCellValue(int row, int column) { + if (!(alreadyParsed && addToMemory)) { + throw new IllegalStateException( + "rows not parsed,it should only be used in classic mode"); + } + if (row < parsedRows.size()) { + Cell[] rowEntry = parsedRows.get(row); + if (rowEntry == EMPTY_ROW) { + return null; + } + if (column < rowEntry.length) { + return rowEntry[column] == null ? null : rowEntry[column] + .getValue(); + } + return null; + } + return null; + } + + public String getCellValue(String cellId) { + if (!(alreadyParsed && addToMemory)) { + throw new IllegalStateException( + "rows not parsed,it should only be used in classic mode"); + } + return getCellValue(Integer.valueOf(cellId.substring(1)) - 1, cellId + .charAt(0) - 'A'); + } + + // READ<<< + + // MODIFY>>> + int modifiedRowLength = 0; + + int lastCommittedRowLength = 0; + + public boolean isModified() { + // more than once commit/merge + return lastCommittedRowLength > 0 || modifiedRowLength > 0; + } + + /** + * {rowIndex,modifications} + */ + HashMap> modifications = new HashMap>( + 100); + + /** + * max row index have been modified - for append/add convenience + * + * @return + */ + public int getModfiedRowLength() { + return modifiedRowLength == 0 ? lastCommittedRowLength + : modifiedRowLength; + } + + public int modify(int r, int c, String comment) { + if (c > SheetRowReader.MAX_COLUMN_SPAN - 1) { + throw new IllegalArgumentException("column index(" + c + + ") exceeded the limit(" + + (SheetRowReader.MAX_COLUMN_SPAN - 1) + ")"); + } + if (r == -1) { + r = getModfiedRowLength(); + } else if (lastCommittedRowLength > 0 && r < lastCommittedRowLength) { + throw new IllegalStateException("after merge,only add allowed"); + } + // resize + if (r >= modifiedRowLength) { + modifiedRowLength = r + 1; + } + // modify + List modified = modifications.get(r); + if (modified == null) { + modified = new ArrayList(); + modifications.put(r, modified); + } + modified.add(new ModifyEntry(r, c, null, null, comment)); + return r; + } + + /** + * + * @param r + * -1 to append + * @param c + * @param text + * @param style + */ + public int modify(int r, int c, String text, CellStyle style) { + if (c > SheetRowReader.MAX_COLUMN_SPAN - 1) { + throw new IllegalArgumentException("column index(" + c + + ") exceeded the limit(" + + (SheetRowReader.MAX_COLUMN_SPAN - 1) + ")"); + } + if (r == -1) { + r = getModfiedRowLength(); + } else if (lastCommittedRowLength > 0 && r < lastCommittedRowLength) { + throw new IllegalStateException("after merge,only add allowed"); + } + // resize + if (r >= modifiedRowLength) { + modifiedRowLength = r + 1; + } + // modify + List modified = modifications.get(r); + if (modified == null) { + modified = new ArrayList(); + modifications.put(r, modified); + } + SharedStringText t = null; + if (text != null) { + t = workbook.createPlainText(text); + t.setText(text); + } + modified.add(new ModifyEntry(r, c, t, style)); + return r; + } + + public int modify(int r, int c, RichText text, CellStyle style) { + if (c > SheetRowReader.MAX_COLUMN_SPAN - 1) { + throw new IllegalArgumentException("column index(" + c + + ") exceeded the limit(" + + (SheetRowReader.MAX_COLUMN_SPAN - 1) + ")"); + } + if (r == -1) { + r = getModfiedRowLength(); + } else if (lastCommittedRowLength > 0 && r < lastCommittedRowLength) { + throw new IllegalStateException("after merge,only add allowed"); + } + // resize + if (r >= modifiedRowLength) { + modifiedRowLength = r + 1; + } + // modify + List modified = modifications.get(r); + if (modified == null) { + modified = new ArrayList(); + modifications.put(r, modified); + } + modified.add(new ModifyEntry(r, c, text, style)); + return r; + } + + public void writeDocumentStart(XMLStreamWriter writer) + throws XMLStreamException { + // PATCH ,cause XmlStreamRead's START_DOCUMENT event never occurred + writer.writeStartDocument("UTF-8", "1.0"); + } + + private Cell modifyCellInternal(ModifyEntry modification, Cell cell) { + if (modification != null) { + if (cell == null) { + cell = new Cell(); + } + // if text changed or region font applied + SharedStringText text = modification.text; + if (text != null) { + if (text instanceof RichText) { + if (text.getText() == null && cell != null) { + if (cell.getValue() == null) { + throw new IllegalStateException( + "there is no cell content for richtext modification,cell=" + + getCellId(modification.r, + modification.c)); + } + text.setText(cell.getValue()); + } + } + cell.setV(String.valueOf(text.getIndex())); + cell.setT("s"); + } + if (modification.style != null) + cell.setS(String.valueOf(modification.style.index)); + if (modification.comment != null) + cell.setComment(modification.comment); + } + return cell; + } + + private class SheetWriter { + XMLStreamWriter xmlWriter; + + int rowIndex = -1; + + SheetCommentWriter commentWriter; + + public SheetWriter(XMLStreamWriter xmlWriter, + SheetCommentWriter commentWriter) { + super(); + this.xmlWriter = xmlWriter; + this.commentWriter = commentWriter; + } + + void writeStart() throws XMLStreamException { + xmlWriter.writeStartDocument("UTF-8", "1.0"); + xmlWriter.writeStartElement("worksheet"); + xmlWriter + .writeNamespace("xmlns", + "http://schemas.openxmlformats.org/spreadsheetml/2006/main"); + xmlWriter + .writeNamespace("r", + "http://schemas.openxmlformats.org/officeDocument/2006/relationships"); + xmlWriter.writeStartElement("sheetData"); + } + + void writeEnd(String commentRId, String vmlRid, String settingRid) + throws XMLStreamException { + xmlWriter.writeEndElement();// end sheetData + if (settingRid != null) { + xmlWriter.writeStartElement("pageSetup"); + xmlWriter.writeAttribute("r:id", settingRid); + xmlWriter.writeEndElement(); + } + if (commentWriter.startWriten) { + // refer to the vml drawing -- the design sucks + // + if (vmlRid == null) + throw new IllegalStateException("vmlRid should not be null"); + xmlWriter.writeStartElement("legacyDrawing"); + xmlWriter.writeAttribute("r:id", vmlRid); + xmlWriter.writeEndElement(); + } + xmlWriter.writeEndElement();// end worksheet + // end the comment if necessary + commentWriter.writeEnd(); + } + + private Cell cell; + + void writeRow(Cell[] row, int rowIndex) throws XMLStreamException { + this.rowIndex = rowIndex; + int maxCol = 0;// max column index + List modificationList = modifications.isEmpty() ? null + : modifications.get(rowIndex); + if (modificationList != null) { + for (ModifyEntry entry : modificationList) { + if (entry.c >= maxCol) { + maxCol = entry.c; + } + } + } else if (row == EMPTY_ROW) { + // no modfication and new raw rowdata + return; + } + + // resize the row if necessary + if (row == EMPTY_ROW) { + row = new Cell[maxCol + 1]; + } else if (maxCol > row.length - 1) { + Cell[] newrow = new Cell[maxCol + 1]; + System.arraycopy(row, 0, newrow, 0, row.length); + row = newrow; + } + + /** + * + */ + xmlWriter.writeStartElement("row"); + xmlWriter.writeAttribute("r", String.valueOf(rowIndex + 1)); + xmlWriter.writeAttribute("spans", "1:" + row.length); + + // modifiy cells + if (modificationList != null) { + for (ModifyEntry modification : modificationList) { + row[modification.c] = modifyCellInternal(modification, + row[modification.c]); + } + } + + // serialize the row + for (int col = 0; col < row.length; col++) { + cell = row[col]; + if (cell == null) + continue; + + if (cell.getR() == null) { + cell.setR(getCellId(rowIndex, col)); + } + writeCell(rowIndex, col, cell, xmlWriter); + } + + xmlWriter.writeEndElement();// end row + } + + private void writeCell(int row, int c, Cell cell, XMLStreamWriter writer) + throws XMLStreamException { + if (cell != null) { + writer.writeStartElement("c"); + writer.writeAttribute("r", cell.getR()); + if (cell.getS() != null) { + writer.writeAttribute("s", cell.getS()); + } + if (cell.getT() != null) { + writer.writeAttribute("t", cell.getT()); + } + if (cell.getV() != null) { + writer.writeStartElement("v"); + writer.writeCharacters(String.valueOf(cell.getV())); + writer.writeEndElement(); + } + if (cell.getComment() != null) + commentWriter.writeComment(row, c, cell.getComment()); + writer.writeEndElement();// end c + } + } + } + + private SheetWriter sheetsWriter; + + void writeSheetStart(XMLStreamWriter writer, + XMLStreamCreator commentWriter, XMLStreamCreator vmlWriter) + throws XMLStreamException { + if (sheetsWriter != null) { + throw new IllegalStateException("sheets can only be merged once."); + } + sheetsWriter = new SheetWriter(writer, new SheetCommentWriter( + commentWriter, vmlWriter)); + sheetsWriter.writeStart(); + } + + public boolean isCommentModified() { + return this.sheetsWriter != null + && this.sheetsWriter.commentWriter != null + && this.sheetsWriter.commentWriter.startWriten; + } + + void writeSheetEnd(String commentRId, String vmlRid, String settingRid) + throws XMLStreamException { + sheetsWriter.writeEnd(commentRId, vmlRid, settingRid); + } + + void writeSheet() throws XMLStreamException { + merged = true; + // after merged & clean up,just append + for (int rowIndex = sheetsWriter.rowIndex; rowIndex < modifiedRowLength; rowIndex++) { + sheetsWriter.writeRow(EMPTY_ROW, rowIndex); + } + cleanUp(); + } + + private boolean merged = false; + + /** + * + * + * @param writer + * @throws XMLStreamException + */ + void mergeSheet() throws XMLStreamException { + if (merged) { + writeSheet(); + return; + } + + merged = true; + if (alreadyParsed) { + int rowLen = Math.max(parsedRows.size(), modifiedRowLength); + for (int rowIndex = 0; rowIndex < rowLen; rowIndex++) { + if (rowIndex < parsedRows.size()) { + sheetsWriter.writeRow(parsedRows.get(rowIndex), rowIndex); + } else { + sheetsWriter.writeRow(EMPTY_ROW, rowIndex); + } + } + } else { + SheetRowReader rowReader = newReader(); + Cell[] row = null; + int rowIndex = -1; + while ((row = rowReader.readRow()) != null) { + // check replace rows + rowIndex = rowReader.getStatus().getRowIndex(); + sheetsWriter.writeRow(row, rowIndex); + } + // tail - add + if (modifiedRowLength - 1 > rowIndex) { + for (int i = rowIndex + 1; i < modifiedRowLength; i++) { + sheetsWriter.writeRow(EMPTY_ROW, i); + } + } + } + cleanUp(); + } + + // MODFIY<<< + + public void cleanUp() { + if (sheetsWriter != null) + lastCommittedRowLength = sheetsWriter.rowIndex + 1; + modifiedRowLength = 0; + parsedRows.clear(); + modifications.clear(); + } + + // UTILS>>> + + static private char[] COLUMNS; + static { + COLUMNS = new char[26]; + for (int i = 0; i < COLUMNS.length; i++) { + COLUMNS[i] = (char) (i + (int) 'A'); + } + } + + public static String getCellId(int r, int c) { + if (c <= 25) { + return COLUMNS[c] + String.valueOf(r + 1); + } else { + return String.valueOf(new char[] { COLUMNS[c / COLUMNS.length - 1], + COLUMNS[c % COLUMNS.length] }) + + String.valueOf(r + 1); + } + } + + // UTILS<<< + + void setWorkbook(SimpleXLSXWorkbook workbook) { + this.workbook = workbook; + } + + public void setAddToMemory(boolean addToMemory) { + this.addToMemory = addToMemory; + } + + public int getSheetIndex() { + return sheetIndex; + } + + public boolean isMerged() { + return merged; + } + +} diff --git a/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/SheetCommentWriter.java b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/SheetCommentWriter.java new file mode 100644 index 0000000..bff3fb7 --- /dev/null +++ b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/SheetCommentWriter.java @@ -0,0 +1,176 @@ +package com.incesoft.tools.excel.xlsx; + + +import java.util.StringTokenizer; + +import javax.xml.stream.XMLStreamException; +import javax.xml.stream.XMLStreamWriter; + +import org.apache.commons.lang.StringUtils; + +import com.incesoft.tools.excel.xlsx.SimpleXLSXWorkbook.XMLStreamCreator; + + +/** + * + * @author floyd + * + */ +public class SheetCommentWriter { + + XMLStreamWriter commentsWriter; + + XMLStreamWriter vmlWriter; + + XMLStreamCreator commentWriterCreator; + + XMLStreamCreator vmlWriterCreator; + + public SheetCommentWriter(XMLStreamCreator commentWriterCreator, + XMLStreamCreator vmlWriterCreator) { + super(); + this.commentWriterCreator = commentWriterCreator; + this.vmlWriterCreator = vmlWriterCreator; + } + + public SheetCommentWriter() { + } + + public void writeStart() throws XMLStreamException { + if (commentsWriter == null) { + commentsWriter = commentWriterCreator.createWriter(); + vmlWriter = vmlWriterCreator.createWriter(); + } + // + // + // 作者 + // + commentsWriter.writeStartDocument("UTF-8", "1.0"); + commentsWriter.writeStartElement("comments"); + commentsWriter.writeNamespace("xmlns", + "http://schemas.openxmlformats.org/spreadsheetml/2006/main"); + commentsWriter.writeStartElement("authors"); + commentsWriter.writeStartElement("author"); + commentsWriter.writeCharacters("sjxlsx"); + commentsWriter.writeEndElement();// end author + commentsWriter.writeEndElement();// end authors + commentsWriter.writeStartElement("commentList"); + + // + vmlWriter.writeStartElement("xml"); + vmlWriter.writeNamespace("xmlns", + "http://schemas.openxmlformats.org/spreadsheetml/2006/main"); + vmlWriter.writeNamespace("v", "urn:schemas-microsoft-com:vml"); + vmlWriter + .writeNamespace("o", "urn:schemas-microsoft-com:office:office"); + vmlWriter.writeNamespace("x", "urn:schemas-microsoft-com:office:excel"); + // + // + // [VML REFERENCE]->http://www.w3.org/TR/NOTE-VML#_Toc416858391 + vmlWriter.writeStartElement("v:shapetype"); + vmlWriter.writeAttribute("id", this.shapeTypeId); + vmlWriter.writeAttribute("coordsize", "21600,21600"); + vmlWriter.writeAttribute("path", "m,l,21600r21600,l21600,xe"); + vmlWriter.writeEndElement();// end v:shapetype + } + + public void writeEnd() throws XMLStreamException { + if (startWriten) { + commentsWriter.writeEndElement();// end commentList + commentsWriter.writeEndElement();// end comments + vmlWriter.writeEndElement();// end xml + } + } + + private String shapeTypeId = "_x0000_m1027"; + + private String shapeTypeRefId = "#" + this.shapeTypeId; + + boolean startWriten = false; + + // aaasdf + // sdf adsf df + + // + // + // 0 + // 0 + // 1, 15, 0, 15, 3, 18, 3, 15 + // + // + /** + *
+	 * My Explaination:
+	 * x:Anchor=1, 15, 0, 16, 3, 3, 4, 18
+	 * --- the left&top point accordinate---
+	 * 1 - the cell(x) relative to,15 - the x offset relative to cell(Y) in pixel;
+	 * 0 - the cell(y) relative to,16 - the y offset relative to cell(X) in pixel;
+	 * --- the right&bottom point accordinate---
+	 * 3 - the cell(x) relative to,3 - the x offset relative to cell(Y) in pixel;
+	 * 4 - the cell(y) relative to,18 - the y offset relative to cell(X) in pixel;
+	 * 
+ * + * @param r + * @param c + * @param comment + * @throws XMLStreamException + */ + public void writeComment(int r, int c, String comment) + throws XMLStreamException { + if (!startWriten) { + startWriten = true; + writeStart(); + } + // write comments + commentsWriter.writeStartElement("comment"); + commentsWriter.writeAttribute("ref", Sheet.getCellId(r, c)); + commentsWriter.writeAttribute("authorId", "0"); + + commentsWriter.writeStartElement("text"); + commentsWriter.writeStartElement("r"); + commentsWriter.writeStartElement("t"); + if (comment.charAt(0) < ' ' + || comment.charAt(comment.length() - 1) == ' ') + commentsWriter.writeAttribute("xml:space", "preserve"); + commentsWriter.writeCharacters(comment); + commentsWriter.writeEndElement();// end t + commentsWriter.writeEndElement();// end r + commentsWriter.writeEndElement();// end text + commentsWriter.writeEndElement();// end comment + + // write vml drawings + vmlWriter.writeStartElement("v:shape"); + vmlWriter.writeAttribute("type", this.shapeTypeRefId); + vmlWriter.writeAttribute("fillcolor", "#ffffe1"); + vmlWriter.writeAttribute("o:insetmode", "auto"); + + vmlWriter.writeStartElement("x:ClientData"); + vmlWriter.writeAttribute("ObjectType", "Note"); + vmlWriter.writeStartElement("x:Row"); + vmlWriter.writeCharacters(String.valueOf(r)); + vmlWriter.writeEndElement();// end x:row + vmlWriter.writeStartElement("x:Column"); + vmlWriter.writeCharacters(String.valueOf(c)); + vmlWriter.writeEndElement();// end x:column + // + // 1, 15, 0, 15, 3, 18, 3, 15 + vmlWriter.writeStartElement("x:Anchor"); + String anchorPoints = StringUtils.join(new Object[] { + // start point(x,y) + c + 1, 15, r, 15, + // end point(x,y) + c + 1 + 2, 15, + r + 2 + new StringTokenizer(comment, "\n").countTokens(), 15 }, + ","); + vmlWriter.writeCharacters(anchorPoints); + vmlWriter.writeEndElement();// end x:Anchor + vmlWriter.writeEndElement();// end x:ClientData + vmlWriter.writeEndElement();// end v:shape + } +} diff --git a/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/SimpleXLSXWorkbook.java b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/SimpleXLSXWorkbook.java new file mode 100644 index 0000000..a404c56 --- /dev/null +++ b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/SimpleXLSXWorkbook.java @@ -0,0 +1,1170 @@ +package com.incesoft.tools.excel.xlsx; + +import java.io.ByteArrayInputStream; +import java.io.ByteArrayOutputStream; +import java.io.File; +import java.io.IOException; +import java.io.InputStream; +import java.io.OutputStream; +import java.io.OutputStreamWriter; +import java.io.UnsupportedEncodingException; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collection; +import java.util.Enumeration; +import java.util.HashMap; +import java.util.HashSet; +import java.util.LinkedHashMap; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.regex.Pattern; +import java.util.zip.ZipEntry; +import java.util.zip.ZipFile; +import java.util.zip.ZipOutputStream; + +import javax.xml.stream.XMLInputFactory; +import javax.xml.stream.XMLOutputFactory; +import javax.xml.stream.XMLStreamException; +import javax.xml.stream.XMLStreamReader; +import javax.xml.stream.XMLStreamWriter; + +import org.apache.commons.io.IOUtils; +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; + +/** + * A simple implementation of OOXML(Excel part) to read and modify Excel 2007+ + * documents + * + * @author floyd + * + */ +public class SimpleXLSXWorkbook { + static { + // this the fastest stax implementation by test,especially when doing + // output + if ("false".equals(System.getProperty("ince.tools.excel.disableXMLOptimize"))) { + System.setProperty("javax.xml.stream.XMLInputFactory", "com.ctc.wstx.stax.WstxInputFactory"); + System.setProperty("javax.xml.stream.XMLOutputFactory", "com.ctc.wstx.stax.WstxOutputFactory"); + } + } + + ZipFile zipfile; + + private InputStream findData(String name) { + try { + ZipEntry entry = zipfile.getEntry(name); + if (entry != null) { + return zipfile.getInputStream(entry); + } + } catch (IOException e) { + throw new RuntimeException(e); + } + return null; + } + + private static final String PATH_XL_RELATION = "xl/_rels/workbook.xml.rels"; + + private static final String PATH_XL_RELATION_SHEETS = "xl/worksheets/_rels/sheet%d.xml.rels"; + + private static final String PATH_SHAREDSTRINGS = "xl/sharedStrings.xml"; + + private static final String PATH_CONTENT_TYPES = "[Content_Types].xml"; + + static private List blackListPatterns = new ArrayList(); + + static private List blackList = Arrays.asList(".*comments\\d+\\.xml", ".*calcChain\\.xml", + ".*drawings/vmlDrawing\\d+\\.vml"); + static { + for (String pstr : blackList) { + blackListPatterns.add(Pattern.compile(pstr)); + } + } + + public SimpleXLSXWorkbook(File file) { + try { + this.zipfile = new ZipFile(file); + InputStream stream = findData(PATH_SHAREDSTRINGS); + if (stream != null) { + parseSharedStrings(stream); + } + initSheets(); + } catch (Exception e) { + throw new RuntimeException(e); + } + } + + public void close() { + if (this.zipfile != null) + try { + this.zipfile.close(); + this.zipfile = null; + } catch (IOException e) { + log.error("", e); + } + this.commiter = null; + this.sharedStrings.clear(); + this.sharedStrings = null; + this.fills.clear(); + this.fonts.clear(); + for (Sheet s : sheets) { + s.cleanUp(); + } + this.sheets.clear(); + this.styles.clear(); + } + + // Parse sharedStrings.xml >>> + BidirectionMap sharedStrings = new BidirectionMap(); + + // DualHashBidiMap sharedStrings = new DualHashBidiMap(); + + int sharedStringLen = 0; + + private int addSharedString(String string) { + if (string == null) + throw new IllegalArgumentException("null string added to SharedStrings"); + + Integer i = (Integer) sharedStrings.inverse().get(string); + if (i != null) { + return i; + } else { + sharedStrings.put(sharedStringLen++, string); + return sharedStringLen - 1; + } + } + + /** + * sharedString -> rich text + * + * @return + */ + public RichText createRichText() { + RichText text = new RichText(); + int i = addRichText(text); + text.setIndex(i); + return text; + } + + /** + * sharedString -> plain text + * + * @param text + * @return + */ + public SharedStringText createPlainText(String text) { + SharedStringText sharedStringText = new SharedStringText(); + sharedStringText.setIndex(addSharedString(text)); + sharedStringText.setText(text); + return sharedStringText; + } + + private int addRichText(RichText richText) { + if (richText == null) { + throw new IllegalArgumentException("null rich text added to sharedStrings"); + } + sharedStrings.put(sharedStringLen++, richText); + return sharedStringLen - 1; + } + + String getSharedStringValue(int i) { + Object obj = sharedStrings.get(i); + if (obj instanceof String) { + return (String) obj; + } + return null; + } + + // int getSharedStringIndex(String string) { + // Integer i = (Integer) sharedStrings.inverseBidiMap().get(string); + // if (i != null) { + // return i; + // } else { + // return -1; + // } + // } + + XMLInputFactory inputFactory = XMLInputFactory.newInstance(); + + private String getSheetPath(int i) { + return String.format(PATH_SHEET, i); + } + + private String getSheetCommentPath(int i) { + return String.format(PATH_SHEET_COMMENT, i); + } + + private String getSheetCommentDrawingPath(int i) { + return String.format(PATH_SHEET_COMMENT_VMLDRAWING, i); + } + + private void parseSharedStrings(InputStream inputStream) throws Exception { + XMLStreamReader reader = inputFactory.createXMLStreamReader(inputStream); + int type; + boolean si = false; + StringBuilder builder = new StringBuilder(100); + while (reader.hasNext()) { + type = reader.next(); + switch (type) { + case XMLStreamReader.CHARACTERS: + if (si) + builder.append(reader.getText()); + break; + case XMLStreamReader.START_ELEMENT: + if ("si".equals(reader.getLocalName())) { + builder.setLength(0); + si = true; + } + break; + case XMLStreamReader.END_ELEMENT: + if ("si".equals(reader.getLocalName())) { + for (int j = builder.length() - 1; j >= 0; j--) { + if (builder.charAt(j) == '_' && j - 6 >= 0 && builder.charAt(j - 5) == 'x' + && builder.charAt(j - 6) == '_') { + builder.delete(j - 6, j + 1); + j = j - 6; + } + } + sharedStrings.put(sharedStringLen++, builder.toString()); + si = false; + } + break; + default: + break; + } + } + } + + // Parse sharedStrings.xml <<< + + private static final String PATH_SHEET = "xl/worksheets/sheet%d.xml"; + + private static final String PATH_SHEET_COMMENT = "xl/comments%d.xml"; + + private static final String PATH_SHEET_COMMENT_VMLDRAWING = "xl/drawings/vmlDrawing%d.vml"; + + private static final String PATH_STYLES = "xl/styles.xml"; + + private static final String STR_XML_HEAD = ""; + private static final byte[] DATA_XL_WORKSHEETS__RELS_SHEET = (STR_XML_HEAD + "") + .getBytes(); + + XMLStreamReader getReader(String resourceId) { + InputStream stream = findData(resourceId); + if (stream == null) { + if (resourceId.startsWith("xl/worksheets/_rels/sheet")) { + byte[] b = new byte[DATA_XL_WORKSHEETS__RELS_SHEET.length]; + System.arraycopy(DATA_XL_WORKSHEETS__RELS_SHEET, 0, b, 0, b.length); + stream = new ByteArrayInputStream(b); + } else + throw new RuntimeException("resource not found,resourceId=" + resourceId); + } + try { + XMLStreamReader reader = inputFactory.createXMLStreamReader(stream); + return reader; + } catch (XMLStreamException e) { + throw new RuntimeException(e); + } + } + + XMLStreamReader getSheetReader(Integer sheetId) { + if (sheetId == null) { + sheetId = 1; + } + return getReader(getSheetPath(sheetId)); + } + + XMLStreamReader getStylesReader() { + return getReader(PATH_STYLES); + } + + // SHEET>>> + List sheets = new ArrayList(); + + private void initSheets() { + for (int i = 0; true; i++) { + ZipEntry entry = zipfile.getEntry(getSheetPath(i + 1)); + if (entry == null) { + break; + } + sheets.add(new Sheet(i, this)); + } + } + + /** + * create new sheet added to exists sheet list + */ + public Sheet createSheet() { + Sheet sheet = new Sheet(sheets.size(), this); + sheets.add(sheet); + return sheet; + } + + public int getSheetCount() { + return sheets.size(); + } + + /** + * Get sheet by index(0~sheetCount-1) + * + * @param i + * @return + */ + public Sheet getSheet(int i) { + return getSheet(i, true); + } + + /** + * Get sheet by index(0~sheetCount-1) + * + * @param i + * @param parseAllRow + * true to load all rows;false for lazy loading without memory + * consuming({@link Sheet#setAddToMemory(boolean)=false}) when + * doing iterator by {@link Sheet#nextRow()} + * @return + */ + public Sheet getSheet(int i, boolean parseAllRow) { + if (i >= sheets.size()) + throw new IllegalArgumentException("sheet " + i + " not exists!SheetCount=" + sheets.size()); + Sheet sheet = sheets.get(i); + if (parseAllRow) + sheet.parseAllRows(); + else + sheet.setAddToMemory(false); + return sheet; + } + + // SHEET<<< + + // MODIFY >>> + List fonts = new ArrayList(); + + List fills = new ArrayList(); + + List styles = new ArrayList(); + + private static void writeStart(XMLStreamReader reader, XMLStreamWriter writer, String... attributes) + throws XMLStreamException { + writer.writeStartElement(reader.getLocalName()); + for (int i = 0; i < attributes.length; i += 2) { + writer.writeAttribute(attributes[i], attributes[i + 1]); + } + + if (reader != null) { + for (int i = 0; i < reader.getNamespaceCount(); i++) { + writer.writeNamespace(reader.getNamespacePrefix(i), reader.getNamespaceURI(i)); + } + String attName; + for (int i = 0; i < reader.getAttributeCount(); i++) { + attName = reader.getAttributeLocalName(i); + if (attributes.length > 0) { + for (int j = 0; j < attributes.length; j += 2) { + if (!attName.equals(attributes[j])) { + if (reader.getAttributePrefix(i) != null + && reader.getAttributePrefix(i).length() > 0) { + writer.writeAttribute(reader.getAttributePrefix(i), writer + .getNamespaceContext().getNamespaceURI(reader.getAttributePrefix(i)), + reader.getAttributeLocalName(i), reader.getAttributeValue(i)); + } else { + writer.writeAttribute(reader.getAttributeLocalName(i), + reader.getAttributeValue(i)); + } + } + } + } else { + if (reader.getAttributePrefix(i) != null && reader.getAttributePrefix(i).length() > 0) { + writer.writeAttribute(reader.getAttributePrefix(i), writer.getNamespaceContext() + .getNamespaceURI(reader.getAttributePrefix(i)), reader + .getAttributeLocalName(i), reader.getAttributeValue(i)); + } else { + writer.writeAttribute(reader.getAttributeLocalName(i), reader.getAttributeValue(i)); + } + } + } + } + } + + // private boolean addIndex(List list, IndexedObject obj, int indexOffset) { + // if (obj == null) + // return false; + // int pos = list.indexOf(obj); + // if (pos == -1) { + // obj.setIndex(indexOffset + list.size()); + // list.add(obj); + // return true; + // } else { + // obj.setIndex(((IndexedObject) list.get(pos)).getIndex()); + // return false; + // } + // } + + private static void writeDocumentStart(XMLStreamWriter writer) throws XMLStreamException { + // PATCH ,cause XmlStreamRead's START_DOCUMENT event never occurred + writer.writeStartDocument("UTF-8", "1.0"); + } + + /** + * + * + * 啊上的发放 afa 你好 df + * + * + * + * @param writer + * @throws XMLStreamException + */ + private void mergeSharedStrings(XMLStreamWriter writer) throws XMLStreamException { + writeDocumentStart(writer); + + writer.writeStartElement("sst"); + writer.writeNamespace("xmlns", "http://schemas.openxmlformats.org/spreadsheetml/2006/main"); + + for (int i = 0; i < sharedStringLen; i++) { + Object obj = sharedStrings.get(i); + if (obj instanceof SharedStringText) { + ((SharedStringText) obj).serialize(writer); + } else { + try { + writer.writeStartElement("si"); + writer.writeStartElement("t"); + writer.writeCharacters((String) obj); + writer.writeEndElement(); + writer.writeEndElement(); + } catch (RuntimeException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + } + } + + writer.writeEndElement();// end sst + } + + private void mergeStyles(XMLStreamWriter writer) throws XMLStreamException { + prepareStylesCount(); + + XMLStreamReader reader = getStylesReader(); + + writeDocumentStart(writer); + while (reader.hasNext()) { + int event = reader.next(); + switch (event) { + case XMLStreamReader.START_ELEMENT: + // merge fonts , fills , styles + if ("fonts".equals(reader.getLocalName())) { + // Integer offset = + // Integer.valueOf(reader.getAttributeValue( + // null, "count")); + // for (CellStyle cellStyle : styles) { + // addIndex(fonts, cellStyle.getFont(), offset); + // } + writeStart(reader, writer, "count", String.valueOf(fontsCountOffset + fonts.size())); + } else if ("fills".equals(reader.getLocalName())) { + // Integer offset = + // Integer.valueOf(reader.getAttributeValue( + // null, "count")); + // for (CellStyle cellStyle : styles) { + // addIndex(fills, cellStyle.getFill(), offset); + // } + writeStart(reader, writer, "count", String.valueOf(fillsCountOffset + fills.size())); + } else if ("cellXfs".equals(reader.getLocalName())) { + // Integer offset = + // Integer.valueOf(reader.getAttributeValue( + // null, "count")); + // for (CellStyle cellStyle : styles) { + // addIndex(styles, cellStyle, offset); + // } + writeStart(reader, writer, "count", String.valueOf(stylesCountOffset + styles.size())); + } else { + writeStart(reader, writer); + } + break; + case XMLStreamReader.END_ELEMENT: + if ("fonts".equals(reader.getLocalName())) { + for (Font font : fonts) { + font.serialize(writer); + } + } + if ("fills".equals(reader.getLocalName())) { + for (Fill fill : fills) { + fill.serialize(writer); + } + } + if ("cellXfs".equals(reader.getLocalName())) { + for (CellStyle cellStyle : styles) { + cellStyle.serialize(writer); + } + } + writer.writeEndElement(); + break; + case XMLStreamReader.CHARACTERS: + writer.writeCharacters(reader.getText()); + break; + default: + break; + } + } + } + + private static final String NS_SHAREDSTRINGS = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/sharedStrings"; + + private static final String NS_VMLDRAWING = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/vmlDrawing"; + + private static final String NS_COMMENT = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/comments"; + + private void mergeContentTypes(XMLStreamReader reader, XMLStreamWriter writer, String... overrides) + throws XMLStreamException { + // create sharedStrings relation if absent + writeDocumentStart(writer); + HashSet existsTargets = new HashSet(); + while (reader.hasNext()) { + int type = reader.next(); + switch (type) { + case XMLStreamReader.START_ELEMENT: + if ("Override".equals(reader.getLocalName())) { + existsTargets.add(reader.getAttributeValue(null, "PartName")); + } else if ("Default".equals(reader.getLocalName())) { + existsTargets.add(reader.getAttributeValue(null, "Extension")); + } + writeStart(reader, writer); + break; + case XMLStreamReader.END_ELEMENT: + if ("Types".equals(reader.getLocalName())) { + for (int i = 0; i < overrides.length; i += 3) { + if (!existsTargets.contains(overrides[i + 1])) { + writer.writeStartElement(overrides[i]); + if ("Override".equals(overrides[i])) + writer.writeAttribute("PartName", overrides[i + 1]); + else + writer.writeAttribute("Extension", overrides[i + 1]); + writer.writeAttribute("ContentType", overrides[i + 2]); + writer.writeEndElement(); + } + } + } + writer.writeEndElement(); + break; + case XMLStreamReader.START_DOCUMENT: + writeStart(reader, writer); + break; + case XMLStreamReader.CHARACTERS: + writer.writeCharacters(reader.getText()); + break; + default: + break; + } + } + writer.close(); + } + + private static class RelationShipMerger { + public String[] targets;// {target,type},... + + public RelationShipMerger(String[] targets) { + super(); + this.targets = targets; + } + + public Map mergeRelation(XMLStreamReader reader, XMLStreamWriter writer) + throws XMLStreamException { + // create sharedStrings relation if absent + writeDocumentStart(writer); + int maxRid = 0; + Integer rid; + HashMap existTargets = new HashMap(); + while (reader.hasNext()) { + int type = reader.next(); + switch (type) { + case XMLStreamReader.START_ELEMENT: + if ("Relationship".equals(reader.getLocalName())) { + String ridStr = reader.getAttributeValue(null, "Id"); + rid = Integer.valueOf(ridStr.replace("rId", "")); + if (rid > maxRid) { + maxRid = rid; + } + existTargets.put(reader.getAttributeValue(null, "Target"), ridStr); + } + writeStart(reader, writer); + break; + case XMLStreamReader.END_ELEMENT: + if ("Relationships".equals(reader.getLocalName())) { + for (int i = 0; i < targets.length; i += 2) { + if (!existTargets.containsKey(targets[i])) { + // + writer.writeStartElement("Relationship"); + writer.writeAttribute("Type", targets[i + 1]); + writer.writeAttribute("Target", targets[i]); + writer.writeAttribute("Id", "rId" + String.valueOf(++maxRid)); + writer.writeEndElement(); + existTargets.put(targets[i], "rId" + maxRid); + } + } + } + writer.writeEndElement(); + break; + case XMLStreamReader.START_DOCUMENT: + writeStart(reader, writer); + break; + case XMLStreamReader.CHARACTERS: + writer.writeCharacters(reader.getText()); + break; + default: + break; + } + } + writer.close(); + return existTargets; + } + } + + int fontsCountOffset = 0; + + int fillsCountOffset = 0; + + int stylesCountOffset = 0; + + boolean stylesCountLoaded = false; + + private void prepareStylesCount() { + if (stylesCountLoaded) + return; + stylesCountLoaded = true; + + try { + XMLStreamReader reader = getStylesReader(); + loop1: while (reader.hasNext()) { + int event = reader.next(); + switch (event) { + case XMLStreamReader.START_ELEMENT: + if ("fonts".equals(reader.getLocalName())) { + fontsCountOffset = Integer.valueOf(reader.getAttributeValue(null, "count")); + } + if ("fills".equals(reader.getLocalName())) { + fillsCountOffset = Integer.valueOf(reader.getAttributeValue(null, "count")); + } + if ("cellXfs".equals(reader.getLocalName())) { + stylesCountOffset = Integer.valueOf(reader.getAttributeValue(null, "count")); + break loop1; + } + break; + case XMLStreamReader.END_ELEMENT: + break; + default: + break; + } + } + } catch (XMLStreamException e) { + throw new RuntimeException(e); + } + } + + /** + * Create gloabl font + * + * @return + */ + public Font createFont() { + return new Font(); + } + + public Fill createFill() { + return new Fill(); + } + + public CellStyle createStyle(Font font, Fill fill) { + if (font == null && fill == null) { + throw new IllegalArgumentException("either font or fill is required"); + } + if (font != null && font.getColor() == null) { + throw new IllegalArgumentException("either font color required"); + } + if (fill != null && fill.getFgColor() == null) { + throw new IllegalArgumentException("either fill fgcolor required"); + } + + prepareStylesCount(); + + int pos = -1; + if (font != null) { + pos = fonts.indexOf(font); + if (pos == -1) { + font.setIndex(fontsCountOffset + fonts.size()); + fonts.add(font); + } else { + font = fonts.get(pos); + } + } + if (fill != null) { + pos = fills.indexOf(fill); + if (pos == -1) { + fill.setIndex(fillsCountOffset + fills.size()); + fills.add(fill); + } else { + fill = fills.get(pos); + } + } + + CellStyle style = new CellStyle(); + style.setFill(fill); + style.setFont(font); + pos = styles.indexOf(style); + if (pos == -1) { + style.setIndex(stylesCountOffset + styles.size()); + styles.add(style); + } else { + style = styles.get(pos); + } + return style; + } + + static class ModifyEntry { + int r; + + int c; + + String comment; + + SharedStringText text; + + /** + * font for all string in the cell + */ + CellStyle style; + + public ModifyEntry(int r, int c, SharedStringText text, CellStyle style, String comment) { + super(); + this.r = r; + this.c = c; + this.comment = comment; + this.text = text; + this.style = style; + } + + public ModifyEntry(int r, int c, SharedStringText text, CellStyle style) { + super(); + this.text = text; + this.style = style; + this.r = r; + this.c = c; + } + } + + XMLOutputFactory outputFactory = XMLOutputFactory.newInstance(); + + XMLStreamWriter newWriter(OutputStream outputStream) throws UnsupportedEncodingException, + XMLStreamException { + return outputFactory.createXMLStreamWriter(new OutputStreamWriter(outputStream, "UTF-8")); + } + + abstract static class XMLStreamCreator { + protected XMLStreamWriter writer; + + protected XMLStreamReader reader; + + public XMLStreamCreator() { + super(); + } + + public XMLStreamReader createReader() throws XMLStreamException { + return reader = createReaderInternal(); + } + + abstract XMLStreamReader createReaderInternal(); + + abstract XMLStreamWriter createWriterInternal(); + + public XMLStreamWriter createWriter() throws XMLStreamException { + return writer = createWriterInternal(); + } + + public XMLStreamReader getReader() { + return reader; + } + + public XMLStreamWriter getWriter() { + return writer; + } + } + + public static class Commiter { + SimpleXLSXWorkbook wb; + + HashSet mergedItems = new HashSet(); + + private Commiter(SimpleXLSXWorkbook wb, OutputStream output) { + this.wb = wb; + zos = new ZipOutputStream(output); + } + + ZipOutputStream zos; + + boolean modified = false; + + public void beginCommit() { + } + + XMLStreamWriter sheetWriter; + + Sheet lastCommitSheet; + + private class SheetCommentXMLStreamCreator extends XMLStreamCreator { + ByteArrayOutputStream output; + + XMLStreamReader createReaderInternal() { + throw new RuntimeException("not implemented"); + } + + XMLStreamWriter createWriterInternal() { + output = new ByteArrayOutputStream(); + try { + return writer = wb.outputFactory.createXMLStreamWriter(output); + } catch (XMLStreamException e) { + throw new RuntimeException("create xml stream writer failed", e); + } + } + + public ByteArrayOutputStream getOutput() { + return output; + } + } + + SheetCommentXMLStreamCreator commentStreamCreator; + + SheetCommentXMLStreamCreator vmlStreamCreator; + + /** + * begin to write the sheet + * + * @param sheet + * @throws IOException + * @throws XMLStreamException + */ + public void beginCommitSheet(Sheet sheet) throws IOException, XMLStreamException { + sheetWriter = newWriter(wb.getSheetPath(sheet.getSheetIndex() + 1)); + lastCommitSheet = sheet; + commentStreamCreator = new SheetCommentXMLStreamCreator(); + vmlStreamCreator = new SheetCommentXMLStreamCreator(); + sheet.writeSheetStart(sheetWriter, commentStreamCreator, vmlStreamCreator); + } + + /** + * merge the sheet's modifications + */ + public void commitSheetModifications() { + try { + if (lastCommitSheet == null) + throw new IllegalStateException("plz call beginCommitSheet(Sheet) first"); + lastCommitSheet.mergeSheet(); + } catch (XMLStreamException e) { + throw new RuntimeException(e); + } + } + + /** + * Can be called more than once to write incremental rows. If the + * current sheet is modified,the modifications will be lost.So call + * {@link #commitSheetModifications()} before this method if u have any + * modifications. + */ + public void commitSheetWrites() { + try { + if (lastCommitSheet == null) + throw new IllegalStateException("plz call beginCommitSheet(Sheet) first"); + lastCommitSheet.writeSheet(); + } catch (XMLStreamException e) { + throw new RuntimeException(e); + } + } + + public void endCommitSheet() throws IOException, XMLStreamException { + if (lastCommitSheet == null) + throw new IllegalStateException("plz call beginCommitSheet(Sheet) first"); + int sheet = lastCommitSheet.getSheetIndex() + 1; + String commentRid = null; + String vmlRid = null; + String settingRid = null; + // merge relation + String relationPath = String.format(PATH_XL_RELATION_SHEETS, sheet); + ByteArrayOutputStream relation_baos = new ByteArrayOutputStream(); + String[] relationsToMerge = {}; + if (commentStreamCreator.getWriter() != null) { + relationsToMerge = new String[] { "../comments" + sheet + ".xml", NS_COMMENT, + "../drawings/vmlDrawing" + sheet + ".vml", NS_VMLDRAWING }; + } + XMLStreamWriter writer = wb.newWriter(relation_baos); + Map rids = new RelationShipMerger(relationsToMerge).mergeRelation( + wb.getReader(relationPath), writer); + writer.close(); + relation_baos.close(); + commentRid = rids.get("../comments" + sheet + ".xml"); + vmlRid = rids.get("../drawings/vmlDrawing" + sheet + ".vml"); + settingRid = rids.get("../printerSettings/printerSettings" + sheet + ".bin"); + // end sheet commit + lastCommitSheet.writeSheetEnd(commentRid, vmlRid, settingRid); + sheetWriter.close(); + lastCommitSheet.clearRows(); + if (commentStreamCreator.getWriter() != null) { + + commentStreamCreator.getWriter().close(); + commentStreamCreator.getOutput().close(); + newZipEntry(wb.getSheetCommentPath(sheet)); + zos.write(commentStreamCreator.getOutput().toByteArray()); + + vmlStreamCreator.getWriter().close(); + vmlStreamCreator.getOutput().close(); + newZipEntry(wb.getSheetCommentDrawingPath(sheet)); + zos.write(vmlStreamCreator.getOutput().toByteArray()); + } + newZipEntry(relationPath); + zos.write(relation_baos.toByteArray()); + } + + public void endCommit() { + try { + for (int i = 0; i < wb.sheets.size(); i++) { + Sheet s = wb.sheets.get(i); + if (s.isModified()) { + modified = true; + mergedItems.add(wb.getSheetPath(i + 1)); + } + } + if (modified) { + commitStyles(); + mergeSheets(); + commitContentTypes(); + commitRelation(); + commitSharedStrings(); + } + commitUnmodifiedStream(); + zos.close(); + } catch (Exception e) { + throw new RuntimeException(e); + } + } + + private void newZipEntry(String path) { + try { + zos.putNextEntry(new ZipEntry(path)); + mergedItems.add(path); + } catch (Exception e) { + throw new RuntimeException(e); + } + } + + private XMLStreamWriter newWriter(String path) { + try { + newZipEntry(path); + return wb.newWriter(zos); + } catch (Exception e) { + throw new RuntimeException(e); + } + } + + public void mergeSheets() { + try { + for (int i = 0; i < wb.sheets.size(); i++) { + Sheet s = wb.sheets.get(i); + if (s.isModified() && !s.isMerged()) { + beginCommitSheet(s); + s.mergeSheet(); + endCommitSheet(); + } + } + } catch (Exception e) { + throw new RuntimeException(e); + } + } + + // + // + // + private void commitContentTypes() { + try { + XMLStreamWriter writer = newWriter(PATH_CONTENT_TYPES); + ArrayList parts = new ArrayList(); + if (wb.sharedStringLen > 0) { + parts.add("Override"); + parts.add("/xl/sharedStrings.xml"); + parts.add("application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml"); + } + boolean commentModified = false; + for (int i = 0; i < wb.sheets.size(); i++) { + Sheet s = wb.sheets.get(i); + if (s.isCommentModified()) { + commentModified = true; + // comments + parts.add("Override"); + parts.add("/xl/comments" + (s.getSheetIndex() + 1) + ".xml"); + parts.add("application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml"); + // vml drawings + } + } + if (commentModified) { + parts.add("Default"); + parts.add("vml"); + parts.add("application/vnd.openxmlformats-officedocument.vmlDrawing"); + } + wb.mergeContentTypes(wb.getReader(PATH_CONTENT_TYPES), writer, + parts.toArray(new String[parts.size()])); + } catch (Exception e) { + throw new RuntimeException(e); + } + } + + private void commitRelation() { + try { + XMLStreamWriter writer = newWriter(PATH_XL_RELATION); + if (wb.sharedStringLen > 0) + new RelationShipMerger(new String[] { "sharedStrings.xml", NS_SHAREDSTRINGS }) + .mergeRelation(wb.getReader(PATH_XL_RELATION), writer); + } catch (Exception e) { + throw new RuntimeException(e); + } + } + + private void commitStyles() { + try { + XMLStreamWriter writer = newWriter(PATH_STYLES); + wb.mergeStyles(writer); + writer.close(); + } catch (Exception e) { + throw new RuntimeException(e); + } + } + + private void commitSharedStrings() { + try { + XMLStreamWriter writer = newWriter(PATH_SHAREDSTRINGS); + wb.mergeSharedStrings(writer); + writer.close(); + } catch (Exception e) { + throw new RuntimeException(e); + } + } + + private void commitUnmodifiedStream() throws IOException { + Enumeration entries = wb.zipfile.entries(); + loop1: for (; entries.hasMoreElements();) { + ZipEntry entry = entries.nextElement(); + + if (!modified || !mergedItems.contains(entry.getName())) { + for (Pattern p : blackListPatterns) { + if (p.matcher(entry.getName()).matches()) { + continue loop1; + } + } + zos.putNextEntry(new ZipEntry(entry.getName())); + IOUtils.copy(wb.zipfile.getInputStream(entry), zos); + } + } + } + } + + Commiter commiter; + + public Commiter newCommiter(OutputStream output) { + return commiter = new Commiter(this, output); + } + + /** + * commit all modifications + * + */ + public void commit(OutputStream output) throws Exception { + if (commiter != null) { + throw new IllegalStateException( + "cannot commit again - newCommiter() or commit() has been called already."); + } + commiter = newCommiter(output); + commiter.beginCommit(); + commiter.endCommit(); + } + + // MODIFY <<< + + // TEST + public static void testMergeStyles(SimpleXLSXWorkbook excel, XMLStreamWriter writer) throws Exception { + // CellStyle style = excel.createStyle(); + // style.setFont(new Font()); + // style.getFont().setColor("FFFF0000"); + // style = excel.createStyle(); + // style.setFont(new Font()); + // style.setFill(new Fill()); + // style.getFont().setColor("FF0000FF"); + // style.getFill().setFgColor("FF00FF00"); + + } + + private static final Log log = LogFactory.getLog(SimpleXLSXWorkbook.class); + + @SuppressWarnings("unchecked") + static private class BidirectionMap implements Map { + private Map values = new LinkedHashMap(); + + private Map inverseValues = new LinkedHashMap(); + + public Map inverse() { + return inverseValues; + } + + public void clear() { + values.clear(); + inverseValues.clear(); + } + + public boolean containsKey(Object key) { + return false; + } + + public boolean containsValue(Object value) { + return false; + } + + public Set entrySet() { + throw new RuntimeException(); + } + + public Object get(Object key) { + return values.get(key); + } + + public boolean isEmpty() { + return values.isEmpty(); + } + + public Set keySet() { + throw new RuntimeException(); + } + + public Object put(Object key, Object value) { + inverseValues.put(value, key); + return values.put(key, value); + } + + public void putAll(Map m) { + throw new RuntimeException(); + } + + public Object remove(Object key) { + throw new RuntimeException(); + } + + public int size() { + return values.size(); + } + + public Collection values() { + return values.values(); + } + } + +} diff --git a/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/TestSJXLSX.java b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/TestSJXLSX.java new file mode 100644 index 0000000..22c6bd9 --- /dev/null +++ b/datastructures-xslx/src/main/java/com/incesoft/tools/excel/xlsx/TestSJXLSX.java @@ -0,0 +1,198 @@ +package com.incesoft.tools.excel.xlsx; + +import java.io.BufferedOutputStream; +import java.io.File; +import java.io.FileOutputStream; +import java.io.OutputStream; +import java.util.List; + +import com.incesoft.tools.excel.xlsx.Sheet.SheetRowReader; +import com.incesoft.tools.excel.xlsx.SimpleXLSXWorkbook.Commiter; + +/** + * @author floyd + * + */ +public class TestSJXLSX { + + public static void addStyleAndRichText(SimpleXLSXWorkbook wb, Sheet sheet) + throws Exception { + Font font2 = wb.createFont(); + font2.setColor("FFFF0000"); + Fill fill = wb.createFill(); + fill.setFgColor("FF00FF00"); + CellStyle style = wb.createStyle(font2, fill); + + RichText richText = wb.createRichText(); + richText.setText("test_text"); + Font font = wb.createFont(); + font.setColor("FFFF0000"); + richText.applyFont(font, 1, 2); + sheet.modify(2, 27, (String) null, style); + sheet.modify(2, 27, richText, null); + } + + static public void addRecordsOnTheFly(SimpleXLSXWorkbook wb, Sheet sheet, + int rowOffset) { + int columnCount = 52; + int rowCount = 10; + int offset = rowOffset == -1 ? sheet.getModfiedRowLength() : rowOffset; + for (int r = offset; r < offset + rowCount; r++) { + for (int c = 0; c < columnCount; c++) { + sheet.modify(r, c, r + "," + c, null); + } + } + } + + private static void printRow(int rowPos, Cell[] row) { + int cellPos = -1; + for (Cell cell : row) { + cellPos++; + if (cell == null) + continue; + System.out.println(Sheet.getCellId(rowPos, cellPos) + "=" + + cell.getValue()); + } + } + + public static void testLoadALL(SimpleXLSXWorkbook workbook) { + // medium data set,just load all at a time + Sheet sheetToRead = workbook.getSheet(0); + List rows = sheetToRead.getRows(); + int rowPos = 0; + for (Cell[] row : rows) { + printRow(rowPos, row); + rowPos++; + } + } + + public static void testIterateALL(SimpleXLSXWorkbook workbook) { + // here we assume that the sheet contains too many rows which will leads + // to memory overflow; + // So we get sheet without loading all records + Sheet sheetToRead = workbook.getSheet(0, false); + SheetRowReader reader = sheetToRead.newReader(); + Cell[] row; + int rowPos = 0; + while ((row = reader.readRow()) != null) { + printRow(rowPos, row); + rowPos++; + } + } + + public static void testWrite(SimpleXLSXWorkbook workbook, + OutputStream outputStream) throws Exception { + Sheet sheet = workbook.getSheet(0); + addRecordsOnTheFly(workbook, sheet, 0); + workbook.commit(outputStream); + } + + /** + * Commit serveral times for large data set + * + * @param workbook + * @param output + * @throws Exception + */ + public static void testWriteByIncrement(SimpleXLSXWorkbook workbook, + OutputStream output) throws Exception { + Commiter commiter = workbook.newCommiter(output); + commiter.beginCommit(); + + Sheet sheet = workbook.getSheet(0, false); + commiter.beginCommitSheet(sheet); + addRecordsOnTheFly(workbook, sheet, sheet.getModfiedRowLength()); + commiter.commitSheetWrites(); + // ...serveral empty rows... + addRecordsOnTheFly(workbook, sheet, 20); + commiter.commitSheetWrites(); + addRecordsOnTheFly(workbook, sheet, sheet.getModfiedRowLength()); + commiter.commitSheetWrites(); + commiter.endCommitSheet(); + + commiter.endCommit(); + } + + /** + * first, modify the original sheet; and then append some data + * + * @param workbook + * @param output + * @throws Exception + */ + public static void testMergeBeforeWrite(SimpleXLSXWorkbook workbook, + OutputStream output) throws Exception { + Sheet sheet = workbook.getSheet(0, true);// assuming original data + // set is large + // comments + addStyleAndRichText(workbook, sheet); + addRecordsOnTheFly(workbook, sheet, 5); + + sheet.modify(2, 27, "0..0 comment"); + sheet + .modify(1, 1, + "0..0 comment\n0..0 comment\n0..0 comment\n0..0 comment\n0..0 comment\n"); + + Commiter commiter = workbook.newCommiter(output); + commiter.beginCommit(); + commiter.beginCommitSheet(sheet); + // merge it first,otherwise the modification will not take effect + commiter.commitSheetModifications(); + + // start to write + // row = -1, for appending after the last row + int rowLenModified = sheet.getModfiedRowLength(); + sheet.modify(rowLenModified, 1, "append1", null); + sheet.modify(rowLenModified, 2, "append2", null); + // lets assume there are many rows here... + commiter.commitSheetWrites();// flush writes,save memory + + rowLenModified = sheet.getModfiedRowLength(); + sheet.modify(rowLenModified, 1, "append3", null); + sheet.modify(rowLenModified, 2, "append4", null); + // lets assume there are many rows here,too ... + commiter.commitSheetWrites();// flush writes,save memory + + commiter.endCommitSheet(); + commiter.endCommit(); + } + + private static SimpleXLSXWorkbook newWorkbook() { + return new SimpleXLSXWorkbook(new File("/1.xlsx")); + // return new SimpleXLSXWorkbook(new File("/sample_no_rel.xlsx")); + } + + private static OutputStream newOutput(String suffix) throws Exception { + return new BufferedOutputStream(new FileOutputStream("/sample_" + + suffix + ".xlsx")); + } + + public static void main(String[] args) throws Exception { + // READ by classic mdoe - load all records + long st = System.currentTimeMillis(); + for (int i = 0; i < 1; i++) { + SimpleXLSXWorkbook workbook = newWorkbook(); + testLoadALL(workbook); + workbook.close(); + System.out.println("=========" + i); + } + // READ by stream mode - iterate records one by one + // testIterateALL(newWorkbook()); + System.out.println(System.currentTimeMillis() - st); + // // + // // // WRITE - we take WRITE as a special kind of MODIFY + OutputStream output = newOutput("write"); + testWrite(newWorkbook(), output); + output.close(); + // // + // // // WRITE large data + // output = newOutput("write_inc"); + // testWriteByIncrement(newWorkbook(), output); + // output.close(); + // + // // MODIFY it and WRITE large data + output = newOutput("merge_write"); + testMergeBeforeWrite(newWorkbook(), output); + output.close(); + } +} diff --git a/datastructures-xslx/src/main/java/org/xbib/datastructures/xslx/ExcelRowIterator.java b/datastructures-xslx/src/main/java/org/xbib/datastructures/xslx/ExcelRowIterator.java new file mode 100644 index 0000000..6e70440 --- /dev/null +++ b/datastructures-xslx/src/main/java/org/xbib/datastructures/xslx/ExcelRowIterator.java @@ -0,0 +1,18 @@ +package org.xbib.datastructures.xslx; + +public interface ExcelRowIterator { + + public void init(); + + public boolean nextRow(); + + public String getCellValue(int col); + + public int getCellCount(); + + public byte getSheetIndex(); + + public int getRowPos(); + + public void prevRow(); +} diff --git a/datastructures-xslx/src/main/java/org/xbib/datastructures/xslx/ReaderSupport.java b/datastructures-xslx/src/main/java/org/xbib/datastructures/xslx/ReaderSupport.java new file mode 100644 index 0000000..29a492d --- /dev/null +++ b/datastructures-xslx/src/main/java/org/xbib/datastructures/xslx/ReaderSupport.java @@ -0,0 +1,31 @@ +package org.xbib.datastructures.xslx; + +import java.io.File; + +import com.incesoft.tools.excel.support.XLSReaderSupport; +import com.incesoft.tools.excel.support.XLSXReaderSupport; + +abstract public class ReaderSupport { + + public final static int TYPE_XLS = 1; + public final static int TYPE_XLSX = 2; + + abstract public void setInputFile(File file); + + abstract public void open(); + + abstract public ExcelRowIterator rowIterator(); + + abstract public void close(); + + public static ReaderSupport newInstance(int type, File f) { + ReaderSupport support = null; + if (type == TYPE_XLSX) + support = new XLSXReaderSupport(); + else + support = new XLSReaderSupport(); + support.setInputFile(f); + return support; + } + +} diff --git a/datastructures-xslx/src/main/java/org/xbib/datastructures/xslx/WriterSupport.java b/datastructures-xslx/src/main/java/org/xbib/datastructures/xslx/WriterSupport.java new file mode 100644 index 0000000..10c2ebf --- /dev/null +++ b/datastructures-xslx/src/main/java/org/xbib/datastructures/xslx/WriterSupport.java @@ -0,0 +1,82 @@ +package org.xbib.datastructures.xslx; + +import java.io.File; +import java.io.OutputStream; + +import com.incesoft.tools.excel.support.CellFormat; +import com.incesoft.tools.excel.support.XLSWriterSupport; +import com.incesoft.tools.excel.support.XLSXWriterSupport; + +abstract public class WriterSupport { + + public final static int TYPE_XLS = 1; + public final static int TYPE_XLSX = 2; + + protected File file; + + public void setFile(File file) { + this.file = file; + } + + protected OutputStream output; + + public void setOutputStream(OutputStream output) { + this.output = output; + } + + abstract protected int getMaxRowNumOfSheet(); + + abstract public void open(); + + abstract public void createNewSheet(); + + abstract public void writeRow(String[] rowData); + + abstract public void writeRow(String[] rowData, CellFormat[] formats); + + abstract public void close(); + + public static WriterSupport newInstance(int type, File f) { + WriterSupport support = null; + if (type == TYPE_XLSX) + support = new XLSXWriterSupport(); + else + support = new XLSWriterSupport(); + support.setFile(f); + return support; + } + + public static WriterSupport newInstance(int type, OutputStream outputStream) { + WriterSupport support = null; + if (type == TYPE_XLSX) + support = new XLSXWriterSupport(); + else { + support = new XLSWriterSupport(); + } + support.setOutputStream(outputStream); + return support; + } + + public int getSheetIndex() { + return sheetIndex; + } + + public int getRowPos() { + return rowpos; + } + + protected int rowpos = getMaxRowNumOfSheet(); + + protected int sheetIndex = -1; + + public void increaseRow() { + rowpos++; + + if (rowpos > getMaxRowNumOfSheet()) {// 判断是否需要新建一个sheet + sheetIndex++; + createNewSheet(); + rowpos = -1; + } + } + +} diff --git a/datastructures-yaml/build.gradle b/datastructures-yaml/build.gradle new file mode 100644 index 0000000..1a8be78 --- /dev/null +++ b/datastructures-yaml/build.gradle @@ -0,0 +1,3 @@ +dependencies { + api project(':datastructures-tiny') +} diff --git a/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/Builder.java b/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/Builder.java new file mode 100644 index 0000000..97c4198 --- /dev/null +++ b/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/Builder.java @@ -0,0 +1,50 @@ +package org.xbib.datastructures.yaml; + +import org.xbib.datastructures.yaml.model.HashNode; +import org.xbib.datastructures.yaml.model.ListNode; +import org.xbib.datastructures.yaml.model.Node; +import org.xbib.datastructures.yaml.model.ValueNode; +import java.util.List; +import java.util.Map; + +public class Builder { + + public Object object; + + public Builder(Object object) { + this.object = object; + } + + public Node build() { + return object == null ? null : internalBuild(null, object); + } + + @SuppressWarnings("unchecked") + private Node internalBuild(Node node, Object object) { + if (object instanceof List) { + ListNode listNode = new ListNode(node); + for (Object item : (List) object) { + listNode.addItem(internalBuild(listNode, item)); + } + return listNode; + } else if (object instanceof Map) { + HashNode hashNode = new HashNode(node); + for (Map.Entry kv : ((Map) object).entrySet()) { + hashNode.putChild(deliteral(kv.getKey().toString()), internalBuild(hashNode, kv.getValue())); + } + return hashNode; + } else { + return new ValueNode(node, object.toString()); + } + } + + private static String deliteral(String string) { + if (!string.contains(" ")) { + return string; + } + if (string.contains("'")) { + return "\"" + string.replace("\"", "\\\"") + "\""; + } + return "'" + string.replace("'", "\\'") + "'"; + } +} diff --git a/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/Generator.java b/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/Generator.java new file mode 100644 index 0000000..d490da8 --- /dev/null +++ b/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/Generator.java @@ -0,0 +1,149 @@ +package org.xbib.datastructures.yaml; + +import org.xbib.datastructures.yaml.model.HashNode; +import org.xbib.datastructures.yaml.model.ListNode; +import org.xbib.datastructures.yaml.model.Node; +import org.xbib.datastructures.yaml.model.ValueNode; +import org.xbib.datastructures.yaml.model.ValueNode.TextType; +import java.io.IOException; +import java.io.Writer; +import java.util.List; +import java.util.Map; + +public class Generator { + + private final Node root; + + private final int indent; + + public Generator(Node root) { + this(root, 2); + } + + public Generator(Node root, int indent) { + this.root = root; + this.indent = indent; + } + + public void generate(Writer writer) throws IOException { + try (writer) { + if (root != null) { + if (internalWrite(writer, root, null)) { + writer.append('\n'); + } + } + } + } + + private boolean internalWrite(Appendable appendable, Node curnode, Node prevnode) throws IOException { + if (curnode == null) { + return false; + } + boolean lf = false; + String indent = " ".repeat(curnode.getDepth() * this.indent); + if (curnode instanceof ValueNode) { + ValueNode txnode = (ValueNode) curnode; + lf = writeComments(appendable, txnode.getComments(), indent, false); + switch (txnode.getType()) { + case LINE: + if (lf) { + appendable.append('\n').append(indent); + } + appendable.append(txnode.getValue()); + break; + case MULTILINE: + if (lf) { + appendable.append('\n'); + } + String s = prefix(linewrap(txnode.getValue()), indent); + appendable.append(s); + break; + case TEXT: + case TEXT_ANGLE: + if (txnode.getType() == TextType.TEXT) { + appendable.append("|\n"); + } + if (txnode.getType() == TextType.TEXT_ANGLE) { + appendable.append(">\n"); + } + appendable.append(prefix(txnode.getValue(), indent)); + break; + } + return true; + } else if (curnode instanceof HashNode) { + HashNode hashNode = (HashNode) curnode; + for (Map.Entry>> knc : hashNode.getChildCommentPairs()) { + lf = writeComments(appendable, knc.getValue().getValue(), indent, lf); + if (lf || (prevnode != null && !(prevnode instanceof ListNode))) { + appendable.append("\n").append(indent); + } + appendable.append(knc.getKey()).append(": "); + lf = internalWrite(appendable, knc.getValue().getKey(), hashNode); + } + return lf; + } else if (curnode instanceof ListNode) { + ListNode listNode = (ListNode) curnode; + for (Map.Entry> nc : listNode.getItemCommentPairs()) { + lf = writeComments(appendable, nc.getValue(), indent, lf); + if (lf || (prevnode != null && !(prevnode instanceof ListNode))) { + appendable.append("\n").append(indent); + } + appendable.append("- "); + lf = internalWrite(appendable, nc.getKey(), listNode); + } + return lf; + } + return false; + } + + private boolean writeComments(Appendable appendable, List comments, String indent, boolean lf) throws IOException { + if (comments == null) { + return false; + } + for (String comment : comments) { + if (lf) { + appendable.append('\n'); + } + appendable.append(indent).append('#').append(comment); + lf = true; + } + return lf; + } + + private static String prefix(String string, String prefix) { + if (prefix == null || prefix.length() == 0) { + return string; + } + StringBuilder sb = new StringBuilder(); + String[] lines = string.replace("\r", "").split("\n"); + for (int i = 0; i < lines.length; i++) { + sb.append(prefix); + sb.append(lines[i]); + if (i != lines.length - 1) { + sb.append('\n'); + } + } + return sb.toString(); + } + + private static String linewrap(String string) { + StringBuilder sb = new StringBuilder(); + int len = 0; + String[] segments = string.split("[ \n\r\t]"); + for (int i = 0; i < segments.length; i++) { + while (i < segments.length && len + segments[i].length() <= 64) { + sb.append(segments[i]); + sb.append(' '); + len += segments[i].length(); + i++; + } + sb.deleteCharAt(sb.length() - 1); + len = 0; + if (i != segments.length - 1) { + sb.append('\n'); + } + } + return sb.toString(); + } + +} diff --git a/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/Lexer.java b/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/Lexer.java new file mode 100644 index 0000000..c1fd594 --- /dev/null +++ b/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/Lexer.java @@ -0,0 +1,320 @@ +package org.xbib.datastructures.yaml; + +import org.xbib.datastructures.yaml.token.Token; +import org.xbib.datastructures.yaml.token.TokenType; +import java.io.BufferedReader; +import java.io.IOException; +import java.io.Reader; +import java.util.ArrayList; +import java.util.LinkedList; +import java.util.List; +import java.util.Queue; + +public class Lexer { + + private static final char EOF = (char) -1; + + private static final char EOL = (char) -2; + + private static final char BOL = (char) -3; + + private final BufferedReader bufferedReader; + + private final StringBuilder stringBuilder; + + private char[] line; + + private int lineno; + + private int index; + + private final Queue tokens; + + private Token prevToken; + + private Token nextToken; + + public Lexer(Reader reader) { + this.bufferedReader = new BufferedReader(reader); + this.stringBuilder = new StringBuilder(); + tokens = new LinkedList<>(); + } + + public Token next() throws IOException { + if (!tokens.isEmpty()) { + return tokens.poll(); + } + Token token; + if (nextToken != null) { + token = nextToken; + nextToken = null; + } else { + token = nextToken(); + } + if (token == null) { + return null; + } + boolean isPipe = false; + switch (token.getType()) { + case VALUE: + List values = new ArrayList<>(); + int indent = token.getDepth(); + do { + if (token.getType() == TokenType.COMMENT) { + tokens.add(token); + } else if (token.getType() == TokenType.VALUE) { + values.add(token.getValue()); + } else { + break; + } + } while ((token = nextToken()) != null && token.getDepth() > prevToken.getDepth()); + nextToken = token; + tokens.add(values.size() == 1 + ? new Token(TokenType.VALUE_LINE, indent, values.get(0)) + : new Token(TokenType.VALUE_MULTILINE, indent, String.join(" ", values))); + return next(); + case PIPE: + isPipe = true; + case ANGLE: + List valueTokens = new ArrayList<>(); + token = nextToken(); + indent = token != null ? token.getDepth() : 0; + if (indent > prevToken.getDepth()) { + do { + valueTokens.add(token); + } + while ((token = nextToken()) != null && token.getDepth() > prevToken.getDepth()); + nextToken = token; + StringBuilder sb = new StringBuilder(); + boolean lf = false; + for (Token valtok : valueTokens) { + if (lf) { + if (isPipe) { + sb.append('\n'); + } else { + sb.append(' '); + } + } + sb.append(" ".repeat(valtok.getDepth() - indent)); + if (valtok.getType() == TokenType.COMMENT) { + sb.append('#'); + } + sb.append(valtok.getValue()); + lf = true; + } + return new Token(isPipe ? TokenType.VALUE_TEXT_PIPE : TokenType.VALUE_TEXT_ANGLE, indent, sb.toString()); + } else { + new Token(TokenType.VALUE_LINE, indent); + } + default: + if (token != null && (token.getType() == TokenType.KEY || token.getType() == TokenType.ITEM)) { + prevToken = token; + } + return token; + } + } + + private Token nextToken() throws IOException { + if (isEOF() || isEOL()) { + readline(); + if (isEOF()) { + return null; + } + } + int indent; + String value; + if (isBlank()) { + skipBlanks(); + } + if (isEOL()) { + return nextToken(); + } + if (isHash()) { + indent = index; + read(); + value = new String(line).substring(index); + readline(); + return new Token(TokenType.COMMENT, indent, value); + } else if (isHyphen() && hasRightGap()) { + indent = index; + read(2); + return new Token(TokenType.ITEM, indent); + } else if (isPipe()) { + indent = index; + read(); + return new Token(TokenType.PIPE, indent); + } else if (isRAngle()) { + indent = index; + read(); + return new Token(TokenType.ANGLE, indent); + } else if (isText()) { + indent = index; + value = extractText(); + if (isColon() && hasRightGap()) { + read(2); + return new Token(TokenType.KEY, indent, value); + } else { + return new Token(TokenType.VALUE, indent, value); + } + } + throw new YamlException("Syntax error: (" + lineno + ":" + index + ":" + new String(line)); + } + + private String extractText() throws IOException { + stringBuilder.setLength(0); + if (isSQuote()) { + read(); + while (!isSQuote() && !isEOL()) { + stringBuilder.append(current()); + read(); + } + read(); + } else if (isDQuote()) { + read(); + while (!isDQuote() && !isEOL()) { + if (isBSlash()) { + read(); + switch (current()) { + case '0': + stringBuilder.append('\0'); + break; + case 'n': + stringBuilder.append('\n'); + break; + case 'r': + stringBuilder.append('\r'); + break; + case 't': + stringBuilder.append('\t'); + break; + case '\"': + stringBuilder.append('\"'); + break; + case '\\': + stringBuilder.append('\\'); + break; + default: + stringBuilder.append('\\'); + stringBuilder.append(current()); + break; + } + } else { + stringBuilder.append(current()); + } + read(); + } + read(); + } else { + while (!isEOF() && !isEOL() && !(isColon() && hasRightGap()) && !(isHash() && hasLeftGap())) { + stringBuilder.append(current()); + read(); + } + } + return stringBuilder.toString().trim(); + } + + private void readline() throws IOException { + String buf; + do { + buf = bufferedReader.readLine(); + lineno++; + } while (buf != null && buf.trim().isEmpty()); + line = buf != null ? buf.toCharArray() : null; + index = 0; + } + + private void read() throws IOException { + read(1); + } + + private void read(int cnt) throws IOException { + index += cnt; + if (index > line.length) { + readline(); + index = 0; + } + } + + private char ch(int index) { + return line == null ? EOF + : (index >= 0 && index < line.length) ? line[index] + : index >= line.length ? EOL : BOL; + } + + private char prevChar() { + return ch(index - 1); + } + + private char current() { + return ch(index); + } + + private char nextChar() { + return ch(index + 1); + } + + private boolean hasLeftGap() { + return prevChar() == ' ' || prevChar() == BOL; + } + + private boolean hasRightGap() { + return nextChar() == ' ' || nextChar() == EOL; + } + + private boolean isEOF() { + return current() == EOF; + } + + private boolean isEOL() { + return current() == EOL; + } + + private boolean isBSlash() { + return current() == '\\'; + } + + private boolean isBlank() { + return current() == ' '; + } + + private boolean isHyphen() { + return current() == '-'; + } + + private boolean isColon() { + return current() == ':'; + } + + private boolean isRAngle() { + return current() == '>'; + } + + private boolean isPipe() { + return current() == '|'; + } + + private boolean isHash() { + return current() == '#'; + } + + private boolean isSQuote() { + return current() == '\''; + } + + private boolean isDQuote() { + return current() == '"'; + } + + private boolean isText() { + return !(current() == EOF + || current() == '#' + || current() == '|' + || (current() == '-' && hasRightGap())); + } + + private void skipBlanks() throws IOException { + while (isBlank()) { + read(); + } + } +} diff --git a/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/Parser.java b/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/Parser.java new file mode 100644 index 0000000..b62bd4e --- /dev/null +++ b/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/Parser.java @@ -0,0 +1,150 @@ +package org.xbib.datastructures.yaml; + +import org.xbib.datastructures.yaml.model.HashNode; +import org.xbib.datastructures.yaml.model.ListNode; +import org.xbib.datastructures.yaml.model.Node; +import org.xbib.datastructures.yaml.model.ValueNode; +import org.xbib.datastructures.yaml.model.ValueNode.TextType; +import org.xbib.datastructures.yaml.token.Token; +import org.xbib.datastructures.yaml.token.TokenType; +import java.io.IOException; +import java.io.Reader; +import java.util.ArrayList; +import java.util.List; +import java.util.ListIterator; + +public class Parser { + + private final Lexer lexer; + + private final List comments; + + private Node root; + + private Token token; + + public Parser(Reader reader) { + lexer = new Lexer(reader); + comments = new ArrayList<>(); + } + + public void parse() throws IOException { + root = parseNode(null, -1); + } + + public Node getNode() { + return root; + } + + private Node parseNode(Node parent, int depth) throws IOException { + if (token == null) { + token = lexer.next(); + if (token == null) { + return null; + } + } + if (token.getDepth() <= depth) { + return new ValueNode(parent); + } + switch (token.getType()) { + case COMMENT: + stashComments(); + return parseNode(parent, depth); + case ITEM: + return parseListNode(parent, token.getDepth()); + case KEY: + return parseHashNode(parent, token.getDepth()); + case VALUE: + case VALUE_LINE: + case VALUE_MULTILINE: + case VALUE_TEXT_PIPE: + case VALUE_TEXT_ANGLE: + return parseValueNode(parent, token.getDepth()); + default: + return null; + } + } + + private ListNode parseListNode(Node parent, int indent) throws IOException { + ListNode node = new ListNode(parent); + int cnt = 0; + while (token != null && token.getDepth() == indent && token.getType() == TokenType.ITEM) { + token = lexer.next(); + if (token != null) { + node.addComments(cnt, collectComments(indent)); + node.addItem(parseNode(node, indent)); + } + stashComments(); + cnt++; + } + return node; + } + + private HashNode parseHashNode(Node parent, int indent) throws IOException { + HashNode node = new HashNode(parent); + while (token != null && token.getDepth() == indent && token.getType() == TokenType.KEY) { + String key = token.getValue(); + token = lexer.next(); + if (token != null) { + node.addComments(key, collectComments(indent)); + node.putChild(key, parseNode(node, indent)); + } + stashComments(); + } + return node; + } + + private ValueNode parseValueNode(Node parent, int indent) throws IOException { + ValueNode node = new ValueNode(parent); + node.addComments(collectComments(indent)); + switch (token.getType()) { + case VALUE_LINE: + node.setType(TextType.LINE); + node.setValue(token.getValue()); + token = lexer.next(); + break; + case VALUE_MULTILINE: + node.setType(TextType.MULTILINE); + node.setValue(token.getValue()); + token = lexer.next(); + break; + case VALUE_TEXT_PIPE: + node.setType(TextType.TEXT); + node.setValue(token.getValue()); + token = lexer.next(); + break; + case VALUE_TEXT_ANGLE: + node.setType(TextType.TEXT_ANGLE); + node.setValue(token.getValue()); + token = lexer.next(); + break; + default: + node.setValue(""); + } + return node; + } + + private List collectComments(int indent) { + ListIterator iter = comments.listIterator(comments.size()); + while (iter.hasPrevious()) { + Token cmttok = iter.previous(); + if (cmttok.getDepth() != indent) { + break; + } + } + List res = new ArrayList<>(); + while (iter.hasNext()) { + Token cmttok = iter.next(); + res.add(cmttok.getValue()); + } + comments.clear(); + return res; + } + + private void stashComments() throws IOException { + while (token != null && token.getType() == TokenType.COMMENT) { + comments.add(token); + token = lexer.next(); + } + } +} diff --git a/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/Yaml.java b/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/Yaml.java new file mode 100644 index 0000000..83670d9 --- /dev/null +++ b/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/Yaml.java @@ -0,0 +1,366 @@ +package org.xbib.datastructures.yaml; + +import org.xbib.datastructures.yaml.model.HashNode; +import org.xbib.datastructures.yaml.model.ListNode; +import org.xbib.datastructures.yaml.model.Node; +import org.xbib.datastructures.yaml.model.ValueNode; +import java.io.IOException; +import java.io.Reader; +import java.io.Writer; +import java.time.Instant; + +public class Yaml { + + private final char separator; + + private Node root; + + public Yaml() { + this(null); + } + + public Yaml(Node root) { + this(root, '.'); + } + + public Yaml(Node root, char separator) { + this.root = root; + this.separator = separator; + } + + public void read(Reader reader) throws IOException { + Parser parser = new Parser(reader); + parser.parse(); + setRoot(parser.getNode()); + } + + public void save(Writer writer) throws IOException { + new Generator(getRoot()).generate(writer); + } + + public void setRoot(Node root) { + this.root = root; + } + + public Node getRoot() { + return root; + } + + public boolean exist(String path) { + return getNode(path) != null; + } + + public Boolean getBoolean(String path) { + String value = internalGet(path); + if (value == null) { + return null; + } + try { + return Boolean.valueOf(value); + } catch (NullPointerException ignore) { + return null; + } + } + + public Boolean getBoolean(String path, Boolean defaultval) { + return getBoolean(path) != null ? getBoolean(path) : defaultval; + } + + public Byte getByte(String path) { + String value = internalGet(path); + if (value == null) { + return null; + } + try { + return Byte.valueOf(value); + } catch (NumberFormatException | NullPointerException ignore) { + return null; + } + } + + public Byte getByte(String path, Byte defaultval) { + return getByte(path) != null ? getByte(path) : defaultval; + } + + public Short getShort(String path) { + String value = internalGet(path); + if (value == null) { + return null; + } + try { + return Short.valueOf(value); + } catch (NumberFormatException | NullPointerException ignore) { + return null; + } + } + + public Short getShort(String path, Short defaultval) { + return getShort(path) != null ? getShort(path) : defaultval; + } + + public Integer getInteger(String path) { + String value = internalGet(path); + if (value == null) { + return null; + } + try { + return Integer.valueOf(value); + } catch (NumberFormatException | NullPointerException ignore) { + return null; + } + } + + public Integer getInteger(String path, Integer defaultval) { + return getInteger(path) != null ? getInteger(path) : defaultval; + } + + public Long getLong(String path) { + String value = internalGet(path); + if (value == null) { + return null; + } + try { + return Long.valueOf(value); + } catch (NumberFormatException | NullPointerException ignore) { + return null; + } + } + + public Long getLong(String path, Long defaultval) { + return getLong(path) != null ? getLong(path) : defaultval; + } + + public Float getFloat(String path) { + String value = internalGet(path); + if (value == null) { + return null; + } + try { + return Float.valueOf(value); + } catch (NumberFormatException | NullPointerException ignore) { + return null; + } + } + + public Float getFloat(String path, Float defaultval) { + return getFloat(path) != null ? getFloat(path) : defaultval; + } + + public Double getDouble(String path) { + String value = internalGet(path); + if (value == null) { + return null; + } + try { + return Double.valueOf(value); + } catch (NumberFormatException | NullPointerException ignore) { + return null; + } + } + + public Double getDouble(String path, Double defaultval) { + return getDouble(path) != null ? getDouble(path) : defaultval; + } + + public Character getCharacter(String path) { + String value = internalGet(path); + if (value == null) { + return null; + } + try { + return value.charAt(0); + } catch (IndexOutOfBoundsException | NullPointerException ignore) { + return null; + } + } + + public Character getCharacter(String path, Character defaultval) { + return getCharacter(path) != null ? getCharacter(path) : defaultval; + } + + public String getString(String path) { + return internalGet(path); + } + + public String getString(String path, String defaultval) { + return getString(path) != null ? getString(path) : defaultval; + } + + public Instant getInstant(String path) { + String value = internalGet(path); + if (value == null) { + return null; + } + return Instant.parse(value); + } + + public Instant getInstant(String path, Instant defaultval) { + Instant instant = getInstant(path); + return instant != null ? instant : defaultval; + } + + public boolean set(String path, Object value) { + return set(path, value, true); + } + + private boolean set(String path, Object value, boolean rebuild) { + if (rebuild) { + if (value == null) { + //return removeNode(path); + throw new IllegalStateException("value is null"); + } + makeNode(path); + } + Node node = getNode(path); + if (!(node instanceof ValueNode)) { + return false; + } + ValueNode txnode = (ValueNode) node; + if (value instanceof String + || value instanceof Integer + || value instanceof Double + || value instanceof Long + || value instanceof Boolean + || value instanceof Float + || value instanceof Short + || value instanceof Character + || value instanceof Byte) { + txnode.setValue(String.valueOf(value)); + } else if (value instanceof Instant) { + Instant instant = (Instant) value; + txnode.setValue(instant.toString()); + } else { + txnode.setValue(value == null ? null : value.toString()); + } + return true; + } + + public boolean set(String path, Instant instant) { + return set(path, instant.toString()); + } + + public Node getNode(String path) { + return path == null ? null : internalGetNode(root, path); + } + + private Node internalGetNode(Node node, String path) { + if (node == null || path.isEmpty()) { + return node; + } + String[] sr = cut(path, separator); + String sectName = sr[0]; + String restPath = sr[1]; + if (node instanceof HashNode) { + return internalGetNode(((HashNode) node).getChild(sectName), restPath); + } else if (node instanceof ListNode) { + try { + return internalGetNode(((ListNode) node).getItem(Integer.parseInt(sectName)), restPath); + } catch (NumberFormatException ignore) { + // + } + } + return null; + } + + public void makeNode(String path) { + if (path != null) { + internalMakeNode(root, path); + } + } + + private Node internalMakeNode(Node node, String path) { + if (root != null && node == null) { + return null; + } + String sectName; + String nextSectName; + String restPath; + String[] sr = cut(path, separator); + sectName = sr[0]; + restPath = sr[1]; + sr = cut(restPath, separator); + nextSectName = sr[0]; + if (root == null) { + if (path.isEmpty()) { + root = new ValueNode(node); + } else { + try { + int i = Integer.parseInt(sectName); + return root = internalMakeNode(root = new ListNode(node), path); + } catch (NumberFormatException ignore) { + return root = internalMakeNode(root = new HashNode(node), path); + } + } + } + if (node instanceof HashNode) { + HashNode hsnode = (HashNode) node; + if (restPath.isEmpty()) { + if (!hsnode.hasChild(sectName)) { + hsnode.putChild(sectName, new ValueNode(hsnode)); + } + } else { + try { + int i = Integer.parseInt(nextSectName); + if (!hsnode.hasChild(sectName)) { + hsnode.putChild(sectName, internalMakeNode(new ListNode(node), restPath)); + } else { + internalMakeNode(hsnode.getChild(sectName), restPath); + } + } catch (NumberFormatException ignore) { + if (!hsnode.hasChild(sectName)) { + hsnode.putChild(sectName, internalMakeNode(new HashNode(node), restPath)); + } else { + internalMakeNode(hsnode.getChild(sectName), restPath); + } + } + } + } else if (node instanceof ListNode) { + ListNode lsnode = (ListNode) node; + try { + int i = Integer.parseInt(sectName); + if (restPath.isEmpty()) { + if (!lsnode.hasItem(i)) { + lsnode.insertItem(i, new ValueNode(lsnode)); + } + } else { + try { + i = Integer.parseInt(nextSectName); + if (!lsnode.hasItem(i)) { + lsnode.insertItem(i, internalMakeNode(new ListNode(node), restPath)); + } else { + internalMakeNode(lsnode.getItem(i), restPath); + } + } catch (NumberFormatException ignore) { + if (!lsnode.hasItem(i)) { + lsnode.insertItem(i, internalMakeNode(new HashNode(node), restPath)); + } else { + internalMakeNode(lsnode.getItem(i), restPath); + } + } + } + } catch (NumberFormatException ignore) { + } + } + return node; + } + + private String internalGet(String path) { + Node node = getNode(dequote(path)); + return node instanceof ValueNode ? ((ValueNode) node).getValue() : null; + } + + private static String[] cut(String string, char delimiter) { + int idx = string.indexOf(delimiter); + String seg = idx == -1 ? string : string.substring(0, idx); + String rest = idx == -1 ? "" : string.substring(idx + 1); + return new String[]{seg, rest}; + } + + private static String dequote(String string) { + if (string.startsWith("'") && string.endsWith("'") + || string.startsWith("\"") && string.endsWith("\"")) { + return string.substring(1, string.length() - 1); + } + return string; + } +} diff --git a/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/YamlException.java b/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/YamlException.java new file mode 100644 index 0000000..b0ebd49 --- /dev/null +++ b/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/YamlException.java @@ -0,0 +1,9 @@ +package org.xbib.datastructures.yaml; + +@SuppressWarnings("serial") +public class YamlException extends RuntimeException { + + public YamlException(String message) { + super(message); + } +} diff --git a/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/model/HashNode.java b/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/model/HashNode.java new file mode 100644 index 0000000..4b1be18 --- /dev/null +++ b/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/model/HashNode.java @@ -0,0 +1,56 @@ +package org.xbib.datastructures.yaml.model; + +import org.xbib.datastructures.tiny.TinyMap; +import java.util.ArrayList; +import java.util.Collection; +import java.util.Collections; +import java.util.List; +import java.util.Map; + +public class HashNode extends Node { + + private final TinyMap.Builder children; + + private final TinyMap.Builder> comments; + + public HashNode(Node parent) { + super(parent); + this.children = TinyMap.builder(); + this.comments = TinyMap.builder(); + } + + public Map getChildren() { + return children.build(); + } + + public Map> getComments() { + return comments.build(); + } + + public List>>> getChildCommentPairs() { + List>>> pairs = new ArrayList<>(); + for (Map.Entry kv : children.entrySet()) { + pairs.add(Map.entry(kv.getKey(), Map.entry(kv.getValue(), comments.getOrDefault(kv.getKey(), Collections.emptyList())))); + } + return pairs; + } + + public void addComments(String name, Collection comments) { + if (!this.comments.containsKey(name)) { + this.comments.put(name, new ArrayList<>()); + } + this.comments.get(name).addAll(comments); + } + + public boolean hasChild(String name) { + return children.containsKey(name); + } + + public Node getChild(String name) { + return children.get(name); + } + + public void putChild(String name, Node node) { + children.put(name, node); + } +} diff --git a/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/model/ListNode.java b/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/model/ListNode.java new file mode 100644 index 0000000..bc39fc8 --- /dev/null +++ b/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/model/ListNode.java @@ -0,0 +1,65 @@ +package org.xbib.datastructures.yaml.model; + +import org.xbib.datastructures.tiny.TinyList; +import java.util.ArrayList; +import java.util.List; +import java.util.Map; + +public class ListNode extends Node { + + private final TinyList.Builder items; + + private final List> comments; + + public ListNode(Node parent) { + super(parent); + this.items = TinyList.builder(); + this.comments = TinyList.builder(); + } + + public List getItems() { + return items.build(); + } + + public List> getComments() { + return comments; + } + + public List>> getItemCommentPairs() { + List>> pairs = new ArrayList<>(); + for (int i = 0; i < items.size(); i++) { + pairs.add(Map.entry(items.get(i), comments.get(i))); + } + return pairs; + } + + public void addComments(int index, List comments) { + if (index >= this.comments.size()) { + this.comments.add(index, TinyList.builder()); + } + TinyList.Builder list = (TinyList.Builder) this.comments.get(index); + if (list == null) { + list = TinyList.builder(); + } + list.addAll(comments); + this.comments.set(index, list.build()); + } + + public boolean hasItem(int index) { + return index >= 0 && index < items.size(); + } + + public Node getItem(int index) { + return items.get(index); + } + + public void addItem(Node node) { + items.add(node); + comments.add(TinyList.builder()); + } + + public void insertItem(int index, Node node) { + items.add(index, node); + comments.add(index, TinyList.builder()); + } +} diff --git a/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/model/Node.java b/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/model/Node.java new file mode 100644 index 0000000..0a8522e --- /dev/null +++ b/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/model/Node.java @@ -0,0 +1,14 @@ +package org.xbib.datastructures.yaml.model; + +public abstract class Node { + + private final int depth; + + public Node(Node parent) { + this.depth = parent != null ? parent.depth + 1 : 0; + } + + public int getDepth() { + return depth; + } +} diff --git a/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/model/ValueNode.java b/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/model/ValueNode.java new file mode 100644 index 0000000..add8218 --- /dev/null +++ b/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/model/ValueNode.java @@ -0,0 +1,63 @@ +package org.xbib.datastructures.yaml.model; + +import java.util.Collection; +import java.util.Collections; +import java.util.ArrayList; +import java.util.List; + +public class ValueNode extends Node { + + private String value; + + private TextType type; + + private List comments; + + public ValueNode(Node parent) { + this(parent, ""); + } + + public ValueNode(Node parent, String value) { + this(parent, value, TextType.LINE); + } + + public ValueNode(Node parent, String value, TextType type) { + super(parent); + this.value = value; + this.type = type; + } + + public void setValue(String value) { + this.value = value; + } + + public String getValue() { + return value; + } + + public void setType(TextType type) { + this.type = type; + } + + public TextType getType() { + return type; + } + + public List getComments() { + return comments != null ? comments : Collections.emptyList(); + } + + public void addComments(Collection comments) { + if (this.comments == null) { + this.comments = new ArrayList<>(); + } + this.comments.addAll(comments); + } + + public enum TextType { + LINE, + MULTILINE, + TEXT, + TEXT_ANGLE + } +} diff --git a/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/token/Token.java b/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/token/Token.java new file mode 100644 index 0000000..9fc19ad --- /dev/null +++ b/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/token/Token.java @@ -0,0 +1,32 @@ +package org.xbib.datastructures.yaml.token; + +public class Token { + + private final TokenType type; + + private final int depth; + + private final String value; + + public Token(TokenType type, int depth) { + this(type, depth, null); + } + + public Token(TokenType type, int depth, String value) { + this.type = type; + this.depth = depth; + this.value = value; + } + + public TokenType getType() { + return type; + } + + public int getDepth() { + return depth; + } + + public String getValue() { + return value; + } +} diff --git a/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/token/TokenType.java b/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/token/TokenType.java new file mode 100644 index 0000000..a0f465c --- /dev/null +++ b/datastructures-yaml/src/main/java/org/xbib/datastructures/yaml/token/TokenType.java @@ -0,0 +1,14 @@ +package org.xbib.datastructures.yaml.token; + +public enum TokenType { + ITEM, + KEY, + VALUE, + COMMENT, + VALUE_LINE, + VALUE_MULTILINE, + VALUE_TEXT_PIPE, + VALUE_TEXT_ANGLE, + PIPE, + ANGLE +} diff --git a/datastructures-yaml/src/test/java/org/xbib/datastructures/yaml/test/Formatter.java b/datastructures-yaml/src/test/java/org/xbib/datastructures/yaml/test/Formatter.java new file mode 100644 index 0000000..9bc6a20 --- /dev/null +++ b/datastructures-yaml/src/test/java/org/xbib/datastructures/yaml/test/Formatter.java @@ -0,0 +1,172 @@ +package org.xbib.datastructures.yaml.test; + +import org.xbib.datastructures.yaml.model.HashNode; +import org.xbib.datastructures.yaml.model.ListNode; +import org.xbib.datastructures.yaml.model.Node; +import org.xbib.datastructures.yaml.model.ValueNode; +import java.util.Map; + +public class Formatter { + + public String format(Node node) { + if (node instanceof ValueNode) { + return format((ValueNode) node); + } + if (node instanceof ListNode) { + return format((ListNode) node); + } + if (node instanceof HashNode) { + return format((HashNode) node); + } + return ""; + } + + private String format(ValueNode valueNode) { + String indent = spaces(valueNode.getDepth()); + StringBuilder sb = new StringBuilder(); + sb.append(indent); + sb.append(" 0) { + sb.append(", "); + } + sb.append(i).append(": ").append(toStringOfComments(listNode, i)) + .append('\n').append(format(listNode.getItems().get(i))); + } + sb.append('\n'); + sb.append(indent); + sb.append(']'); + } + sb.append(">"); + return sb.toString(); + } + + private String toStringOfComments(ListNode listNode, int index) { + StringBuilder sb = new StringBuilder(); + if (listNode.getComments().size() > index && + listNode.getComments().get(index) != null && + !listNode.getComments().get(index).isEmpty()) { + sb.append("comments="); + StringBuilder comments = new StringBuilder(); + for (String comment : listNode.getComments().get(index)) { + comments.append(comment); + comments.append(' '); + } + String s = excerpt(comments.toString()); + s = quote(s, true); + sb.append(s); + } + return sb.toString(); + } + + private String format(HashNode hashNode) { + StringBuilder sb = new StringBuilder(); + String indent = spaces(hashNode.getDepth()); + sb.append(indent).append(""); + return sb.toString(); + } + + private String toStringOfComments(HashNode hashNode, String name) { + StringBuilder sb = new StringBuilder(); + if (hashNode.getComments().get(name) != null && !hashNode.getComments().get(name).isEmpty()) { + sb.append("comments="); + StringBuilder comments = new StringBuilder(); + for (String comment : hashNode.getComments().get(name)) { + comments.append(comment).append(' '); + } + String s = excerpt(comments.toString()); + s = quote(s, true); + sb.append(s); + } + return sb.toString(); + } + + private String excerpt(String string) { + int len = string.length(); + if (len <= 24) { + return excerpt(string, 24); + } else if (len <= 80) { + return excerpt(string, len / 3); + } else if (len <= 160) { + return excerpt(string, 100); + } + return excerpt(string,150); + } + + private String excerpt(String string, int count) { + if (string.length() > count) { + string = string.substring(0, count) + "..."; + } + return string; + } + + private String escape(String string) { + return string.replace("\0", "\\0") + .replace("\n", "\\n") + .replace("\r", "\\r") + .replace("\t", "\\t") + .replace("\\", "\\\\"); + } + + private String quote(String string, boolean singleQuote) { + return singleQuote ? "'" + string + "'" : "\"" + string + "\""; + } + + private String spaces(int count) { + return " ".repeat(count); + } + +} diff --git a/datastructures-yaml/src/test/java/org/xbib/datastructures/yaml/test/YamlTest.java b/datastructures-yaml/src/test/java/org/xbib/datastructures/yaml/test/YamlTest.java new file mode 100644 index 0000000..b5e2b46 --- /dev/null +++ b/datastructures-yaml/src/test/java/org/xbib/datastructures/yaml/test/YamlTest.java @@ -0,0 +1,174 @@ +package org.xbib.datastructures.yaml.test; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNull; +import static org.junit.jupiter.api.Assertions.assertTrue; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.xbib.datastructures.yaml.Builder; +import org.xbib.datastructures.yaml.Generator; +import org.xbib.datastructures.yaml.model.HashNode; +import org.xbib.datastructures.yaml.model.ListNode; +import org.xbib.datastructures.yaml.model.Node; +import org.xbib.datastructures.yaml.Parser; +import org.xbib.datastructures.yaml.model.ValueNode; +import org.xbib.datastructures.yaml.Yaml; +import java.io.FileReader; +import java.io.FileWriter; +import java.io.IOException; +import java.io.InputStreamReader; +import java.io.Reader; +import java.io.StringReader; +import java.io.StringWriter; +import java.io.Writer; +import java.time.Instant; +import java.util.List; +import java.util.Map; +import java.util.logging.Level; +import java.util.logging.Logger; + +public class YamlTest { + + private static final Logger logger = Logger.getLogger(YamlTest.class.getName()); + + private Node root; + + private Yaml yaml; + + @BeforeEach + public void setup() throws IOException { + Reader reader = new InputStreamReader(YamlTest.class.getResourceAsStream("/org/xbib/datastructures/yaml/test/test.yml")); + Parser parser = new Parser(reader); + parser.parse(); + root = parser.getNode(); + yaml = new Yaml(root); + } + + @Test + public void testParser() { logger.log(Level.INFO, yaml.toString()); } + + @Test + public void testNode() { + HashNode hsnode; ListNode lsnode; ValueNode txnode; + hsnode = (HashNode) root; + txnode = (ValueNode) hsnode.getChild("test"); + assertEquals("", txnode.getValue()); + hsnode = (HashNode) root; + hsnode = (HashNode) hsnode.getChild("types"); + txnode = (ValueNode) hsnode.getChild("multiline"); + assertEquals("line 1 line 2 line 3", txnode.getValue()); + txnode = (ValueNode) hsnode.getChild("text"); + assertEquals("def func(x) do\n # do something\n print x = x * 2\nend", txnode.getValue()); + hsnode = (HashNode) root; + lsnode = (ListNode) hsnode.getChild("hash1"); + hsnode = (HashNode) lsnode.getItem(0); + lsnode = (ListNode) hsnode.getChild("hash2"); + txnode = (ValueNode) lsnode.getItem(0); + assertEquals("the treasure is deep", txnode.getValue()); + txnode.setValue("new val"); + assertEquals("new val", txnode.getValue()); + } + + @Test + public void testReadTree() { + assertEquals("", yaml.getString("test")); + assertEquals("the value", yaml.getString("the key")); + assertTrue(yaml.getBoolean("types.bool")); + assertEquals((byte) -1, yaml.getByte("types.byte")); + assertEquals((short)(3200), yaml.getShort("types.short")); + assertEquals(-2100000000, yaml.getInteger("types.int")); + assertEquals(1234321425321L, yaml.getLong("types.long")); + assertEquals(3.1415926F, yaml.getFloat("types.float")); + assertEquals(123413.4567654567654, yaml.getDouble("types.double")); + assertEquals('c', yaml.getCharacter("types.char")); + assertEquals("this is a string", yaml.getString("types.string")); + assertEquals("line 1 line 2 line 3", yaml.getString("types.multiline")); + assertEquals("def func(x) do\n # do something\n print x = x * 2\nend", yaml.getString("types.text")); + assertEquals(Instant.parse("1997-01-06T23:12:10Z"), yaml.getInstant("types.datetime")); + assertEquals("Text", yaml.getString("list.0")); + assertEquals("val", yaml.getString("list.1.key")); + assertEquals("ListOfList", yaml.getString("list.2.0")); + assertEquals("Text", yaml.getString("hash.name1")); + assertEquals("val", yaml.getString("hash.name2.key")); + assertEquals("HashOfList", yaml.getString("hash.name3.0")); + assertEquals("the treasure is deep", yaml.getString("hash1.0.hash2.0")); + } + + @Test + public void testWriteTree() { + Yaml yaml = new Yaml(); + yaml.set("key1", 123); + assertEquals( (byte)123, yaml.getByte("key1")); + yaml.set("key2.key3", 3.14); + assertTrue(3.14F - yaml.getFloat("key2.key3") < 1e-8); + yaml.set("list.0", "line1"); + yaml.set("list.1", "line2"); + assertEquals("line1", yaml.getString("list.0")); + assertEquals("line2", yaml.getString("list.1")); + logger.log(Level.INFO, yaml.toString()); + } + + @Test + public void testGenerator() throws IOException { + Writer writer = new FileWriter("build/test.yml"); + Generator generator = new Generator(root); + String text1 = writeToString(generator); + logger.log(Level.INFO, "text1 = " + text1); + generator.generate(writer); + Reader reader = new FileReader("build/test.yml"); + Parser parser = new Parser(reader); + parser.parse(); + String text2 = writeToString(new Generator(parser.getNode())); + logger.log(Level.INFO, "text2 = " + text2); + assertEquals(text1, text2); + } + + @Test + public void testBuilder() throws IOException { + List struct = List.of("Text", Map.of("key", "val"), List.of("ListOfList")); + Builder builder = new Builder(struct); + Yaml yaml = new Yaml(builder.build()); + Formatter formatter = new Formatter(); + logger.log(Level.INFO, "node1 = " + formatter.format(yaml.getRoot())); + String text1 = writeToString(new Generator(yaml.getRoot())); + logger.log(Level.INFO, "text1 = " + text1); + Parser parser = new Parser(new StringReader(text1)); + parser.parse(); + Node node = parser.getNode(); + logger.log(Level.INFO, "node2 = " + formatter.format(node)); + String text2 = writeToString(new Generator(node)); + logger.log(Level.INFO, "text2 = " + text2); + assertEquals(text1, text2); + } + + @Test + public void testYamlSetter() throws IOException { + Yaml yaml = new Yaml(); + yaml.read(new InputStreamReader(YamlTest.class.getResourceAsStream("/org/xbib/datastructures/yaml/test/example.yml"))); + yaml.set("I.hate", "Yaml"); + yaml.set("I.love", "Ruby"); + yaml.set("I.love", "Java"); + yaml.set("You.are", "Foolish"); + yaml.set("a.0", "one"); + yaml.set("a.1", "two"); + yaml.set("a.2", "three"); + yaml.save(new FileWriter("build/example.yml")); + yaml.read(new FileReader("build/example.yml")); + assertEquals("Yaml", yaml.getString("I.hate")); + assertEquals("Java", yaml.getString("I.love")); + assertEquals("Foolish", yaml.getString("You.are")); + assertNull(yaml.getString("no.where")); + assertEquals("novalue", yaml.getString("no.where", "novalue")); + } + + private String writeToString(Generator generator) { + StringWriter stringWriter = new StringWriter(); + try { + generator.generate(stringWriter); + } catch (IOException e) { + // ignore + } + return stringWriter.toString(); + } + +} diff --git a/datastructures-yaml/src/test/resources/org/xbib/datastructures/yaml/test/example.yml b/datastructures-yaml/src/test/resources/org/xbib/datastructures/yaml/test/example.yml new file mode 100644 index 0000000..e69de29 diff --git a/datastructures-yaml/src/test/resources/org/xbib/datastructures/yaml/test/test.yml b/datastructures-yaml/src/test/resources/org/xbib/datastructures/yaml/test/test.yml new file mode 100644 index 0000000..e27bc2a --- /dev/null +++ b/datastructures-yaml/src/test/resources/org/xbib/datastructures/yaml/test/test.yml @@ -0,0 +1,84 @@ +# here is a full test for the library! +# let's start form empty string value :) +test: + +# key contains space is ok +the key: the value + +# we have 10 types natively supported +# string/multiline/text are take as string +types: + # bool + bool: true + # byte + byte: -1 + # short + short: 3200 + # int + int: -2100000000 + # long + long: 1234321425321 + # float + float: 3.1415926 + # double + double: 123413.4567654567654 + # char + char: c + # string + string: this is a string + # multiline string is one string joined by space (" ") + multiline: + # value is also commentable 1 + line 1 + line 2 + # value is also commentable 2 (will move up) + line 3 + # value is also commentable 3 (will move up) + angle: > + Hello, this is + a very important message + with new lines folded into spaces + # text string is one kept literal originally (but cannot comment the value) + text: | + def func(x) do + # do something + print x = x * 2 + end + # datetime + datetime: 1997-01-06T23:12:10Z + +# list is a hetergeneous vector structure +list: + # item is text + - Text + # item is hash + - key: val + # item is list + - - ListOfList + +# hash is a named-tuple structure +hash: + # value is text + name1: + Text + # value is hash + name2: + key: val + # value is list + name3: + - HashOfList + +# let's make these structures deep :) +# +hash1: + # + - + # + hash2: + # + - + # + the treasure + is deep + +# finally, this is an orphan comment (will be removed) \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index f24d173..c37ff00 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,6 @@ group = org.xbib name = datastructures -version = 0.0.3 +version = 0.1.0 gradle.wrapper.version = 6.6.1 +mockito.version = 3.5.13 diff --git a/gradle/compile/java.gradle b/gradle/compile/java.gradle index 1624344..7cf905f 100644 --- a/gradle/compile/java.gradle +++ b/gradle/compile/java.gradle @@ -17,9 +17,7 @@ compileTestJava { jar { manifest { - attributes('Implementation-Title': project.name) attributes('Implementation-Version': project.version) - attributes('Implementation-Vendor': 'Jörg Prante') } } @@ -36,9 +34,10 @@ artifacts { archives sourcesJar, javadocJar } -//tasks.withType(JavaCompile) { -// options.compilerArgs << '-Xlint:all' -//} +tasks.withType(JavaCompile) { + // commented out mostly because of jmh generated code + // options.compilerArgs << '-Xlint:all' +} javadoc { options.addStringOption('Xdoclint:none', '-quiet') diff --git a/gradle/test/jmh.gradle b/gradle/test/jmh.gradle new file mode 100644 index 0000000..e1ae121 --- /dev/null +++ b/gradle/test/jmh.gradle @@ -0,0 +1,22 @@ +sourceSets { + jmh { + java.srcDirs = ['src/jmh/java'] + resources.srcDirs = ['src/jmh/resources'] + compileClasspath += sourceSets.main.runtimeClasspath + } +} + +dependencies { + jmhImplementation 'org.openjdk.jmh:jmh-core:1.27' + jmhAnnotationProcessor 'org.openjdk.jmh:jmh-generator-annprocess:1.27' +} + +task jmh(type: JavaExec, group: 'jmh', dependsOn: jmhClasses) { + main = 'org.openjdk.jmh.Main' + classpath = sourceSets.jmh.compileClasspath + sourceSets.jmh.runtimeClasspath + project.file('build/reports/jmh').mkdirs() + args '-rf', 'json' + args '-rff', project.file('build/reports/jmh/result.json') +} + +classes.finalizedBy(jmhClasses) diff --git a/gradle/test/junit5.gradle b/gradle/test/junit5.gradle index cfef972..1dd84e4 100644 --- a/gradle/test/junit5.gradle +++ b/gradle/test/junit5.gradle @@ -1,5 +1,5 @@ -def junitVersion = project.hasProperty('junit.version')?project.property('junit.version'):'5.6.2' +def junitVersion = project.hasProperty('junit.version')?project.property('junit.version'):'5.7.0' def hamcrestVersion = project.hasProperty('hamcrest.version')?project.property('hamcrest.version'):'2.2' dependencies { @@ -11,10 +11,11 @@ dependencies { test { useJUnitPlatform() - failFast = true + failFast = false testLogging { events 'STARTED', 'PASSED', 'FAILED', 'SKIPPED' } + jvmArgs '--add-exports=java.base/jdk.internal.ref=ALL-UNNAMED' afterSuite { desc, result -> if (!desc.parent) { println "\nTest result: ${result.resultType}" diff --git a/settings.gradle b/settings.gradle index 35b2f4f..3719506 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,2 +1,14 @@ +include 'datastructures-io' +include 'datastructures-bytes' +include 'datastructures-charset' include 'datastructures-common' include 'datastructures-tiny' +include 'datastructures-json' +include 'datastructures-yaml' +include 'datastructures-xml' +include 'datastructures-json' +include 'datastructures-json-minimal' +include 'datastructures-json-boon' +include 'datastructures-json-noggit' +include 'datastructures-csv' +include 'datastructures-xslx'